diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000000000000000000000000000000000000..4acf06c4838eec56d2f0f19a1a4f2470390d0f38 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,36 @@ +*.7z filter=lfs diff=lfs merge=lfs -text +*.arrow filter=lfs diff=lfs merge=lfs -text +*.bin filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.ckpt filter=lfs diff=lfs merge=lfs -text +*.ftz filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.h5 filter=lfs diff=lfs merge=lfs -text +*.joblib filter=lfs diff=lfs merge=lfs -text +*.lfs.* filter=lfs diff=lfs merge=lfs -text +*.mlmodel filter=lfs diff=lfs merge=lfs -text +*.model filter=lfs diff=lfs merge=lfs -text +*.msgpack filter=lfs diff=lfs merge=lfs -text +*.npy filter=lfs diff=lfs merge=lfs -text +*.npz filter=lfs diff=lfs merge=lfs -text +*.onnx filter=lfs diff=lfs merge=lfs -text +*.ot filter=lfs diff=lfs merge=lfs -text +*.parquet filter=lfs diff=lfs merge=lfs -text +*.pb filter=lfs diff=lfs merge=lfs -text +*.pickle filter=lfs diff=lfs merge=lfs -text +*.pkl filter=lfs diff=lfs merge=lfs -text +*.pt filter=lfs diff=lfs merge=lfs -text +*.pth filter=lfs diff=lfs merge=lfs -text +*.rar filter=lfs diff=lfs merge=lfs -text +*.safetensors filter=lfs diff=lfs merge=lfs -text +saved_model/**/* filter=lfs diff=lfs merge=lfs -text +*.tar.* filter=lfs diff=lfs merge=lfs -text +*.tar filter=lfs diff=lfs merge=lfs -text +*.tflite filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.wasm filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text +*tfevents* filter=lfs diff=lfs merge=lfs -text +transcription/whisperx/assets/pytorch_model.bin filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..19f8e7101a136d7263309e40c6693e2520742619 --- /dev/null +++ b/.gitignore @@ -0,0 +1,61 @@ +# Python +__pycache__/ +*.py[cod] +*.pyo +*.pyd +*.egg +*.egg-info/ +dist/ +build/ +.env +.venv/ +*.sqlite3 + +# Jupyter Notebook Checkpoints +.ipynb_checkpoints/ + +# VSCode / IDEs +.vscode/ +.idea/ + +# OS Files +.DS_Store +Thumbs.db + +# Log and Cache +*.log +*.tmp +*.bak +.cache/ +*.swp + +# Node.js +node_modules/ +npm-debug.log* + +# Compiled files +*.o +*.so +*.exe +*.dll +*.class + +# Docker +.dockerignore +docker-compose.override.yml +.docker/ + +data/*.py +session_data + +# Model files +segmentation/models/SaT_cunit_with_maze/model_finetuned + +# Ignore all large binary/log/model files +*.pth +*.bin +*.wandb +wandb/ +segmentation/models/SaT_cunit_with_maze/wandb/ +segmentation/models/SaT_cunit_with_maze/model_finetuned/ +segmentation/models/SaT_cunit_with_maze/wandb \ No newline at end of file diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000000000000000000000000000000000000..a0ba4e4b05f4f8d606f4813061f0b396b47cf17b --- /dev/null +++ b/Dockerfile @@ -0,0 +1,17 @@ +FROM continuumio/miniconda3:24.11.1-0 + +RUN useradd -m -u 1000 user +WORKDIR /app + +COPY . . + +# This is only for building docker in huggingface spaces +ENV HF_HOME=/data/.huggingface + +RUN conda env create -f environment_sate_1.5.yml + +RUN mkdir -p /app/session_data && chown -R user:user /app/session_data + +EXPOSE 7860 + +CMD ["conda", "run", "--no-capture-output", "-n", "SATE", "python", "main_socket.py", "--port", "7860", "--host", "0.0.0.0"] \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000000000000000000000000000000000000..ace1f6918ab1774b8c7c862d9755099db439aaf2 --- /dev/null +++ b/README.md @@ -0,0 +1,11 @@ +--- +title: SATEv1.5 +emoji: 👀 +colorFrom: pink +colorTo: green +sdk: docker +pinned: false +license: apache-2.0 +--- + +Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference diff --git a/annotation/__init__.py b/annotation/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..932acc8c231e7f0554568c48fe82c88eb51c8258 --- /dev/null +++ b/annotation/__init__.py @@ -0,0 +1 @@ +from .annotation_for_mazewhisper import annotate_maze_for_mazewhisper \ No newline at end of file diff --git a/annotation/annotation_for_mazewhisper.py b/annotation/annotation_for_mazewhisper.py new file mode 100644 index 0000000000000000000000000000000000000000..43e6fcc9ff4bc938492a2dfaf5a5b303e111f9ec --- /dev/null +++ b/annotation/annotation_for_mazewhisper.py @@ -0,0 +1,366 @@ +import json +import os +import re + +# read transcription_cuint.json from session_data/session_id +# read text_token item, repetition is start from and end at , the +# extract repetition information and add them to current json file, information include +# content: the content between and +# words: words index of each word in content, the index of first word in the segment is 0, index calculation ignore special token +# mark_location: the index of last words of content +# format example: +""" +"repetitions": [ + { + "content": "now the now the", + "words": [ + 1, + 2, + 3, + 4 + ], + "mark_location": 4 + } + ], +""" +def annotate_repetition_for_mazewhisper(session_id): + file_path = f"session_data/{session_id}/transcription_cunit.json" + if not os.path.exists(file_path): + print(f"File not found: {file_path}") + return + + with open(file_path, "r", encoding="utf-8") as f: + data = json.load(f) + + for segment in data["segments"]: + text_token = segment.get("text_token", "") + tokens = text_token.split() + + repetitions_list = [] + inside = False + rep_words = [] + rep_word_indices = [] + word_count = 0 # segment-level word counter + + for tok in tokens: + if tok == "": + inside = True + rep_words, rep_word_indices = [], [] + continue + elif tok == "": + inside = False + if rep_words: + clean_rep_words = [w for w in rep_words + if not (w.startswith("<") and w.endswith(">"))] + repetitions_list.append( + { + "content": " ".join(clean_rep_words), + "words": rep_word_indices.copy(), + "mark_location": rep_word_indices[-1], + } + ) + continue + + if tok.startswith("<") and tok.endswith(">"): + + if inside: + pass + else: + if inside: + rep_words.append(tok) + rep_word_indices.append(word_count) + word_count += 1 + + if repetitions_list: + segment["repetitions"] = repetitions_list + + with open(file_path, "w", encoding="utf-8") as f: + json.dump(data, f, indent=2, ensure_ascii=False) + +# read transcription_cuint.json from session_data/session_id +# read text_token item, revision is start from and end at , the +# extract revision information and add them to current json file, information include +# content: the content between and +# words: words index of each word in content, the index of first word in the segment is 0, index calculation ignore special token +# mark_location: the index of last words of content +# format example: +""" +"repetitions": [ + { + "content": "now the now the", + "words": [ + 1, + 2, + 3, + 4 + ], + "mark_location": 4 + } + ], +""" +def annotate_revision_for_mazewhisper(session_id): + file_path = f"session_data/{session_id}/transcription_cunit.json" + if not os.path.exists(file_path): + print(f"File not found: {file_path}") + return + + with open(file_path, "r", encoding="utf-8") as f: + data = json.load(f) + + for segment in data["segments"]: + text_token = segment.get("text_token", "") + tokens = text_token.split() + + revisions_list = [] + inside = False + rev_words = [] + rev_word_indices = [] + word_count = 0 + + for tok in tokens: + if tok == "": + inside = True + rev_words, rev_word_indices = [], [] + continue + elif tok == "": + inside = False + if rev_words: + clean_rev_words = [w for w in rev_words + if not (w.startswith("<") and w.endswith(">"))] + revisions_list.append( + { + "content": " ".join(clean_rev_words), + "words": rev_word_indices.copy(), + "mark_location": rev_word_indices[-1], + } + ) + continue + + if tok.startswith("<") and tok.endswith(">"): + continue + else: + if inside: + rev_words.append(tok) + rev_word_indices.append(word_count) + word_count += 1 + + if revisions_list: + segment["revisions"] = revisions_list + + with open(file_path, "w", encoding="utf-8") as f: + json.dump(data, f, indent=2, ensure_ascii=False) + + + +# read transcription_cuint.json from session_data/session_id +# read text_token item, pause is represent as +# extract pause information and add them to current json file, information include +# start: the start of pause is the end timestamp of previous non-special token. +# if no previous non-special token, start time is the end time of previous segment, then set the start time of current segment as the the end time of previous segment. +# end: the end of pause is the start timestamp of next non-special token. +# if no next non-special token, then move the and all possible special token after to the start of next segment. +# duration: the pause duration calculated by start and end. +# format example: +""" +"pauses": [ + { + "start": 364.08, + "end": 369.1, + "duration": 5.02 + }, + { + "start": 369.18, + "end": 369.56, + "duration": 0.38 + } + ], + +""" +def annotate_pause_for_mazewhisper(session_id): + + file_path = f"session_data/{session_id}/transcription_cunit.json" + + if not os.path.exists(file_path): + print(f"File not found: {file_path}") + return + + with open(file_path, 'r', encoding='utf-8') as f: + data = json.load(f) + + for i, segment in enumerate(data['segments']): + text_token = segment.get('text_token', '') + words = segment.get('words', []) + pauses_list = [] + + if '' in text_token: + tokens = text_token.split() + + for j, token in enumerate(tokens): + if token == '': + # Find start time: end timestamp of previous non-special token + start_time = None + + # Look backwards in current segment for previous word + word_idx = 0 + for k in range(j): + if not (tokens[k].startswith('<') and tokens[k].endswith('>')): + word_idx += 1 + + if word_idx > 0 and word_idx <= len(words): + start_time = words[word_idx - 1].get('end') + elif i > 0: # Use end time of previous segment + start_time = data['segments'][i - 1].get('end') + # Update current segment start time + segment['start'] = start_time + + # Find end time: start timestamp of next non-special token + end_time = None + + # Look forwards in current segment for next word + next_word_idx = 0 + for k in range(j + 1, len(tokens)): + if not (tokens[k].startswith('<') and tokens[k].endswith('>')): + next_word_idx = word_idx + 1 + break + if tokens[k].startswith('<') and tokens[k].endswith('>'): + continue + + if next_word_idx > 0 and next_word_idx <= len(words): + end_time = words[next_word_idx - 1].get('start') + elif i < len(data['segments']) - 1: # Move pause to next segment + # This is complex - for now, use next segment start + end_time = data['segments'][i + 1].get('start') if i + 1 < len(data['segments']) else segment.get('end') + + # If we have both start and end times, calculate duration + if start_time is not None and end_time is not None: + duration = round(end_time - start_time, 2) + + pause_info = { + "start": start_time, + "end": end_time, + "duration": duration + } + + pauses_list.append(pause_info) + + # Add pauses to this segment if any found + if pauses_list: + segment['pauses'] = pauses_list + + # Save the updated data back to file + with open(file_path, 'w', encoding='utf-8') as f: + json.dump(data, f, indent=2, ensure_ascii=False) + + return + + + +# read transcription_cuint.json from session_data/session_id +# read text_token item, filler words is represent as +# extract filler word information and add them to current json file, information include +# start: set to empty for now +# end: set to empty for now +# duration: set to empty for now +# format example: +""" +"fillerwords": [ + { + "start": , + "end": , + "content": "", + "duration": + } + ], +""" +# then, insert "um" as the previous token of in text_token item. +# then, insert "um" to text item and word list (timestamp set to empty for now), the location is corresponding to the location in text_token +# (this is a prelimary implementation, next steps should use maze whisper that transcript filler words content and align them directly) +def annotate_fillerword_for_mazewhisper(session_id): + + file_path = f"session_data/{session_id}/transcription_cunit.json" + + if not os.path.exists(file_path): + print(f"File not found: {file_path}") + return + + with open(file_path, 'r', encoding='utf-8') as f: + data = json.load(f) + + for segment in data['segments']: + text_token = segment.get('text_token', '') + words = segment.get('words', []) + text = segment.get('text', '') + fillerwords_list = [] + + if '' in text_token: + # Create filler word entries (preliminary implementation) + filler_count = text_token.count('') + + for _ in range(filler_count): + filler_info = { + "start": None, + "end": None, + "content": "", + "duration": None + } + fillerwords_list.append(filler_info) + + # Insert "um" before each in text_token + updated_text_token = text_token.replace('', 'um ') + segment['text_token'] = updated_text_token + + # Insert "um" in text and words list at corresponding locations + tokens = text_token.split() + text_words = text.split() + + # Find positions of and insert "um" + filler_positions = [] + word_count = 0 + + for i, token in enumerate(tokens): + if token == '': + filler_positions.append(word_count) + elif not (token.startswith('<') and token.endswith('>')): + word_count += 1 + + # Insert "um" in reverse order to maintain indices + for pos in reversed(filler_positions): + text_words.insert(pos, 'um') + + # Insert in words list with empty timestamps + um_word = { + "word": "um", + "start": None, + "end": None + } + + if pos <= len(words): + words.insert(pos, um_word) + + # Update text and words in segment + segment['text'] = ' '.join(text_words) + segment['words'] = words + + # Add fillerwords to this segment + segment['fillerwords'] = fillerwords_list + + # Save the updated data back to file + with open(file_path, 'w', encoding='utf-8') as f: + json.dump(data, f, indent=2, ensure_ascii=False) + + return + + + + + +def annotate_maze_for_mazewhisper(session_id): + annotate_fillerword_for_mazewhisper(session_id) + annotate_repetition_for_mazewhisper(session_id) + annotate_revision_for_mazewhisper(session_id) + annotate_pause_for_mazewhisper(session_id) + + print("Maze annotation completed!") + + + diff --git a/benchmark_result/segmentation/SaT_cunit_12l_results.csv b/benchmark_result/segmentation/SaT_cunit_12l_results.csv new file mode 100644 index 0000000000000000000000000000000000000000..86d9a6910900db4f26e163db97bf109c2ab6c68e --- /dev/null +++ b/benchmark_result/segmentation/SaT_cunit_12l_results.csv @@ -0,0 +1,624 @@ +word_sequence,gt_label_sequence,predict_label_sequence +once a horse met elephant and then they saw a ball in a pool and then the horse tried to swim and get the ball and the then the elephant gave him the ball and then the horse was wet and the elephant was holding the ball the end they might be the same oh well you start it off any way you want okay,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1,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 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 +once a horse and this this was a horse and saw saw that that i just talked about but the ball was not in there okay and then the elephant wanted to go in i mean not and then he his feet went like this then he hurt his knee cap and then the horse helped him then there was another elephant and he was a lifeguard and then i do not know what they did,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 1 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +but they are doing something what do you think they are doing well how you look at the picture cause i do not know oh it does not matter what do you think is happening i think they are battling okay and then they sat on the bench and then the lifeguard was mad okay,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 1,0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 1 +and are you pointing at something i am i am just i am just x okay are you all done yes okay the end once that horse and elephant was happy near the swimming pool oh and then the horse had an airplane to play with a which had ss ah something coming down the bottom okay,1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 +and the elephant went like this then he tried it and the horse went like this then they put it in the water and then the elephant went like this and then the horse was mad and then the lifeguard went like this then the elephant talked to him a little bit and then the lifeguard tried to get it but he could not,0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the horse cried an and then a elephant with a net came and she caught it and then she gave it back to the horse and then the horse went like this what does that mean they love it oh good and the end once two rabbits made a sandcastle,0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 0 0 1,0 0 0 0 1 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 1 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 1 +and it was a great one and then one did this with a and one took some s and the other one took some sand from a a pail because they were down at the beach and then he dumped it on the castle and then it tur part of it stayed the way it was but the rest turned into just a lump and then they tried to do it but it was not very good that time the end we saw two rabbits had baskets and were in part of the forest,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 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 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +or we can call it the woods yeah we can then they had a picnic then one of them belly got this big how big about this big wow and then in the picture there is a twirl around on his head and then a bigger bunny came up and they run to that bunny,0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then he falled asleep and then he did this why did he do that i do not know okay and then he was happy he was happy yes okay the end,0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 1 0 0 1 1 1 0 1,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 1 0 1 0 1 +once that little bunny was pulling a wagon and that other fat bunny came up and then he liked the balloon and then he tried to get off and then he got it off but they lost the grip and it was helium and then another man came with a bunch of balloons but x but then they he went to them and he said that it the balloons were five cents,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,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 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he could not find five cents and then they were sad then they went back to that out by the we found that other story and he said i want one of those balloons he gave him five cents and then they gave him a balloon and they gave him to them to who to them oh,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 1 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 +and then they both have one the end the el the um the little elephant is playing with her bouncy ball and the gi and the giraffe comes to meet her suddenly the ball falls in a f pool beside them the the giraffe goes and swims for it and the giraffe is so kind and brings back the ball the elephant is so happy the elephant and the giraffe meet at the pool and look at the diving board the the elephant goes to run for it,0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +but there is a sign above her head that says no running she slips and falls she she scrapes her knee and and can not swim a lifeguard comes to see what happened to her knee the and he put a bandaid on it he sets her down on a bench so it will it will it will heal and the lifeguard points to the sign that says no running the ele the elephant and giraffe are swimming together the giraffe finds a plane and starts to show it to the elephant the giraffe um the elephant grabs from it from the giraffe and swims away,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 1 0 0 0 0 0 1 +suddenly she dropped it the giraffe gets very mad and can not hold in his anger the lifeg lifeguard comes and sees what has happened the elephant starts to complain that that it was not her fault and the lifeguard tries to get the plane but no one can reach it so a lady with a net comes and pulls it out she is very kind thinks everyone and the giraffe gets his plane back everyone is very happy,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 +um a bunny and a dog were mak were making sandcastles in the sand uh sand bin um the bu the bunny um he he got a bucket and started to build a better castle suddenly he dumped all the sand on the uh the bi the other castle and everyone was disappointed the o the dog was was so sad she started to cry the dog mee meets the bunny um for a picnic they they have a picnic together except the bunny is kind of piggish he eats all the food really fast while the other one eats very slow and politely the rabbit feels very sick after his big meal the doctor has to come and help the the s sick rabbit,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,1 0 0 0 0 0 1 1 0 0 0 0 0 1 1 0 1 1 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 +the dog pulls her her over to the um to see if he is conscious the doctor says she ha he has a fever and he ate too much soon he feels better again the the the dog is has a balloon on her wagon and the bunny comes to meet her the bunny notices the nice um shiny balloon he the bunny tries to untie the balloon but the dog um the dog gets nervous and it floats away,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 +the dog gets very very mad at the bunny but when they turn around they see another man with twenty more balloons the rabbit buys one to make um but he does not have enough money for one balloon the man tells them they could ha they could get a free one and the nurse says no actually i will buy you one and she goes and buys one this makes both the bunny and the dog very happy now they both have one balloon they going at the swimming pool,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 +they putting it the ball in the swimming pool and he is trying to get it he got it she is happy the end they were dr they dry themselves dry themselves and the girl is going into the swimming pool she is dancing she is crying she gots a help from her friend,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 +put a bandage on it now sh she can go on the swimming pool she is sitting the end she is talking the boy is playing with his airplane she grab it away from him the airplane is in the swimming pool and the boy got angry and the k the man comes by them,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 +what did you say the man comes side them and the girl is talking the man was trying to get it the man can not get it woman tried to get it she gots it the boy is happy now the boy and the girl is happy now the end,0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 1 0 1 +the boy is talking to the dog and they are making a castle and the boy putting the sandcastle and the girl is so happy not the boy he is sorry for it he is what sorry and the end they are looking for easter eggs,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and they are eating he eat the whole thing he got hiccups there is his father and he have to help him and he gots a headache he is going and the end the boy is running and the boy is talking,0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 0 1 0 0 1 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 1 +and the boy is taking off the balloon the balloon is floating away and the girl went angry and there is lots of ball sh the girl is pushing the boy gots no money the man is happy the dad is here again and the man is not giving thm them balloon the man give the rat balloon rabbit a ba balloon,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 0 1 1 +and they can have one and the end she is playing with a ball then it drops in the water the cow s wants to get it and then the cow gives it back to the elephant and she likes it and the end um something is sinking something is sinking and the elephant is going to get it,0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 1 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 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and she trips and she falls and hurts her knee and the lifeguard comes and she gets a bandaid on it and she she sits on a bench the lifeguard tells her not to do it again elephant is excited to see what the giraffe has and then he tries to throw it up into the air and then the elephant grabs it away and then it sinks into the water,0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 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 1 +then the giraffe gets mad at her and the lifeguard gets mad at the gir at the elephant and he explai he tries to explain what happened and the lifeguard um tries to get it then they can not get it and then a woman comes up with a net and she gets it out and she gives it back to the giraffe and then he hugs it the end,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 1 +um the bunny and the baby elephant are building a sandcastle and then the bunny is filling up a pail with sand um then he is stuffing it on the sandcastle and then it is ruined then one of them is sad that is it they are going on a picnic they are the bunny is eating lots of stuff he is getting full and he has a stomachache,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and then one of them sees his mom rabbits mom and he tries to get her to get to get to get rabbit and she wakes him up and they go home ah that was a good one he is taking a balloon somewhere his friend is coming up to him and he and his friend likes the balloon and then his friend tries to untwist it then it goes away,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1,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 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 +and he is sad and then she is angry with rabbit and then there is a new ba balloon sale and he wants one and he gives it to him and then he wants another one and then mother is here he comes up to her and he tells her that there is balloons and she will and she is giving him money,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 +and then they both have one a balloon that is it the end there were two animals an elephant and a giraffe who wanted to play in a pool and the w there they were playing with a ball and it fell into the pool and they wanted to sw swim and get it and they thought it was fun one of them he fell he went into the water and tried to swim to the ball but the ball was floating away from him,0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the elephant and uh then the giraffe got the ball for the elephant and then the elephant was started playing with the ball again and they uh and they still wanted to play with it so they still played together the end there was a no running sign and they still wanted to play in the pool and th they were running away and then and then sh the giraffe started chasing the elephant and the elephant slipped,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 1 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 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then it hurt itself and the elephant was crying and the giraffe said are you okay and then the lifeguard came and said are you all right and the elephant got a bandaid and sat on the chair and he and the lifeguard was trying the elephant was trying to get off the bandaid and the lifeguard wa said keep it on the end the giraffe and the elephant came back to the pool with the airplane the giraffe was playing with it and tried not to drop it into the pool,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 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 1 +and the elephant was so into it he the elephant w was kept staring at it the the giraffe said hey when the elephant took the plane away and the elephant started playing with it and the elephant accidentally dropped it into the pool and the giraffe was kind of mad and then he was so mad that he growled at the elephant and the elephant was scared scared and the li and the elephant called the lifeguard to come and try to get the airplane and they looked like they tried,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and after that and af and then after that he he was trying to get the plane but he did not so the ele so the elephant did not know what to do and the giraffe was crying and the elephant decided i will have an idea and the elephant went to get a net and then he used it to get the plane and got the plane for the giraffe the end and the giraffe was really happy the end,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 1,0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 1 +there was a rabbit and a dog they were making a sandcastle and then the dog and the rabbit made the sandcastle and the dog was sitting into the sandbox and said hey rabbit we made it we made it and the and the rabbit was helping the dog make it more bigger and it and he put too much on and made it fall right down on it and then it al almost then it broke and then it was totally broken at the end of it by the end the end,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1,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 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 +um there once was a dog and a rabbit they wanted to go on a picnich picnic instead of making a sandcastle in the park rabbit wanted to have the most stuff so he took out h all of his stuff and started his stuff and the dog wanted to eat just this couple of stuff and the rabbit was totally full and he he was almost having a tummyache and then he fell down and he had a big tummyache and the dog ran to get his mom and to help,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and then the dog begged his mom to do it so the mom came and helped and he was okay the end instead of going to for a picnic and and going into the park and making a sandcastle they got a balloon and they were playing with a balloon and they tied it onto their wagon they were driving it around and the rabbit wanted to take it off and the rabbit was trying to take it off,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then he made it fly away and the rabbit did not know what to do and the dog was very mad and then they saw more balloons and wanted to get uh the dog was still mad and the rabbit was going to get another one for the dog and the balloons were five cents and he could not get it because he did not have any money and the dog was wanted to get one too and he tried to get one and the dog was waiting for the rabbit to get some money from its mom,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,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 1 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 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 1 +and it asked the mom if he could have some money to buy the balloon and he got five cents and got a balloon for the kids and they got to play all they want with the balloons the end there was a giraffe and and a a girl elephant they were playing ball by the street on the sidewalk by the swimming pool and then they dropped the ball into the pool they could not ge could not get it but giraffe dived in and k was was swimming but elephant was covering her eyes,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,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 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then he got it and gave it to her she was amazed then he was soaking wet and she hugged the ball and he looked like a genius there they were again by the pool and there was a sign by uh the diving board and it said no running so they looked at the pool amazed for some reason then elephant said i want to go on the diving board,0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and she ran to it she ran to it and she slipped and giraffe did too and she scraped her knee ouch she had xs in her eyes stars in her eyes she was crying the lifeguard came and it was an elephant,0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 0 1 +no running in the f in the no running by the side of the pool he said the lifeguard and he put a bandaid on it she still had stars in her eyes and then at least giraffe did not fall and then it felt much better see no running in the pool he said the lifeguard did not you see that sign no running he was mad there was elephant with giraffe again by the pool again,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 1 0 1 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 1 0 1 0 0 1 1 0 1 0 0 1 0 0 0 0 1 0 0 0 1 1 +they found a plane with string at the back and she had swirls in her eyes the elephant and the giraffe was spitting out spit then she caught it he was really he was like huh splash it landed in the pool oh no they said and then giraffe was very mad it was just about to sink and elephant was going,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 1 0 0 1 1 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +then the lifeguard came again and he had his hands on his hips and and the airplane was still there but it was not sinking then it was almost going down they explained to mister elephant mister elephant you see i grabbed it and i dropped it by accident in the water when giraffe was playing with it he bendednd over and he tried to he was he was um growling,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 1 1 +he could not even get it he could not even get it and then giraffe just uh started just started to cry and then miss elephant came along she had a net and she got she had a net and she looked surprised she fished it out with the net and the and then giraffe started stopped crying the lifeguard stopped um um worrying,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 1 1 +so did the elephant and gave and then with amazement she gave it to giraffe he hugged his airplane he was happy and the elephant was happy too there is a bunny and a dog were playing in the sandbox and making a sandcastle the bu the bunny was getting the sand from the bucket and the dog was making the sandcastle but he the rabbit poured all the sand on it and the dog looked um fri um surprised,0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 1 1 1 +the sandcastle was broke the bunny had his mouth open but the dog did not the dog was crying but the bunny was just nervous here is the doggy and the rabbit again um they are going for a picnic with their basks baskets in the woods the bunny was really thirsty but the dog was not he looked at him surprised,0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +there was a cake cheese and a basket and and the basket poured and a carrot the dog the bunny ate all his stuff there was an apple it was all done there was a cheese was all eaten the carrot was all eaten but the dog was still eating her sandwich and her juice drinking her juice then the the bunny had a tummyache but the dog was looking at the bunny surprised missus bunny came,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 1 +and wa and she was walking along and then the dog ran to her to doctor he was still ha he still had a tummyache and the dog was pulling her her sleeve and she looked surprised the doctor the doctor was said he has a tummyache from eating too much and he had to look uh with his tongue with a stick then she walked along with rabbit he and they went together and the dog was only left with the picnic,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +well the dog was going with a balloon on her um wagon wheel and the bunny ran to her it looked like he was jogging the bunny was surprised she had a balloon and there was there was the doggy she did not look so happy but then she screamed because the bunny was taking the balloon away from her and then he let go of the balloon it flew up and he they both yelled come back,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 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 1 0 0 0 0 1 0 0 1 0 1 +then the balloon drifted away the bunny had his ears down but the dog was very mean bad mean mad there was mister rabbit carrying some balloons they found him again with and a b by a bench and a garbage can the rabbit ran up to him and said may i please have a blue balloon s he said five dollars first he he pulled out his pockets but there was no money the dog was rushing to the bunny,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 1 0 1 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +then they looked at the mister bunny with a grin h they could not buy another balloon then missus rabbit the doctor rabbit and then was standing there and then little rabbit went to go ask her something can you bo please buy us a balloon said rabbit and then she looked at him amazed because it is for five bucks only said f the mis mister bunny then she paid five bucks and they got two balloons ten bucks and they both had their balloons,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 1 0 1 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 +and they lived happily ever after first there is a lady who is bounce a ball under the giraffe it went right beside they are working at a centre she bounced it into the wall the giraffe and the elephant are looking at it the giraffe goes and swims and get the and gets the ball then the elephant takes it he then the giraffe gets out of the water first the elephant and the giraffe see the diving board then the elephant sees it,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +then she goes to go on it she went running too fast and she fell and she bruised her knee the giraffe went down and comed to see her then and then the elephant that was a lifeguard comed to see it too the eleph the the lifeguard put a bandaid on the bruise they had to sit on the bench for awhile and they talked not allowed to they talked about they are not allowed to run okay,0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 1 +now she knows it is that it because he saw the sign because he showed him the sign because he showed her the sign now no running the giraffe and the elephant got together and the giraffe got a airplane the giraffe is putting it up high and pretending it is going then the elephant takes it and she tries to do it too but the elephant throwed it in the water,0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 1 0 1 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +the giraffe gets angry then there is a lifeguard coming along the elephant is explaining what happened the lifeguard tries to get it but she can not get it so so the giraffe starts crying then comes and then comes a lady with a net then she gets it out of the water then she gives it to the giraffe now the giraffe is hugging the airplane,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +first the rabbit sees the puppy playing in the sand he wants the rabbit sees the puppy playing in the sand and he wants to play they builded a sandcastle the rabbit filled up a bucket of sand the rabbit dumped it on the castle then the rabbit said oh no then the puppy was trying to get it off one time the puppy saw the rabbit coming with a basket and the girl had a basket the rabbit had piles of food,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +the lady did not she saw the rabbit eating so much the rabbit got really fat she was he was starting to feel dizzy he called the doctor and he got the lady the lady told the doctor to help him the doctor said you are eating too much food too fast so he takes the bunny the the dog sees the bunny coming along and the girl has a wagon with the balloon hooked on it,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +the bunny the bunny looks at it then the bunny takes it off then the bunny accidentally let it go and it going too high and they can not reach it the the dog is getting mad at the bunny they see another balloon holder so the bunny says can we have one of those balloons but none cash and it costs five dollars,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1,0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +uh they explained what happened to the balloon then they go running to go get somebody can you say that louder they went to go get somebody he is explaining about the balloon man and and we do not have enough money so she buyed two balloons and now they both got a balloon once upon a time they were playing basketball then then the boy came named giraffe,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 +the ball got stuck in the pond then he went back home then it fell back in the water and he gave the cow a nnn new then he went out of the water the end there was a girl named elephant and the giraffe went swim again the lake and then they just ran ahead then they jumped into the water,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and then they hurt her knee then they could not give a bandage and he just put on a bandage for her then it feel then they went swimming for a next time then he got mad the end once upon a time a a boy me met a girl and he was going to fly his airplane then he flew it and then then he let go of it,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 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 1 +and then she grabbed it from him and it was hers and he throwed it in the water and then he got mad at her then he got mad and he need to do something and they could not reach it so they they got a net and it was there for a long time and he got a net,0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 +then he got it then he just tried to get it then he just got it then he just give it to the boy who had it and x the end he went and he met a girl going to the the playground and she made a ca sandcastle trying making one like hers,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,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 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then it broke then they got very angry but they needed to make it all over again the end there was a boy named bunnyhead then he went to to have a picnic and met another guy with a picnic basket and they had a picnic before it it it got night time then they had two boxes of sandwiches and then they got full then they went then they then they went full,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and they get more and more then came the mommmy then the then the doctor then they ran up to her then they bumped into her and she took a temperature and she was sick and she needed to take her to a hospital the end once upon a time there was a boy and went um uh what um giving him wagon a walk,0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 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 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 +then they then they got put it on a balloon and that was good then he tighten it on very good and he gave it to the girl then then it flew away then there was no way then he was ba angry then he met a balloon guy and he bought her one and buyed a new balloon so so they c so there could be one on the wagon then he gave us one before he flew away,0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 0 0 0 0 0 0 1 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 1 +and thank you and then it went she sawed the doctor again and a little girl can you buy us a balloon and they gave him money then then he gave them balloons then they then they both had one good the end once a elephant was walking over to a giraffe with a backpack full of three balls then the balls sank into the water and floated away,0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +they tried to catch it but they nearly fell into the water they fell into the water and tried to float he tried to float to the balloon the ball but it wa but it but the ball was too fast then the elephant caught the ball and pulled giraffe out of the water then he was soaking wet then they walked home once gira giraffe and elephant were so excited they wanted to go into the pool,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +they walked over to the stairs and then they walked over to the board and then they jumped in then elephant jumped in and then elephant slipped and slide and then he fell into the water head first he did not realize that that he had no bandaid on his owie and it hurted and hurted and hurted and hurted uh momma bear poppa bear walked over to him are you okay,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 1 +no replied sister bear then they were so excited they are they v poppa bear gave him poppa elephant gave sister elephant a bandaid then it felt much better now they were ready to play in the water but then suddenly the poppa bear said you stay there do not go with the giraffe once elephant and giraffe were walking to the pool again giraffe brought an airplane and then he elephant flied it but then it sank into the water,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 1 0 1 1 0 1 0 0 0 1 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 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 1 +you said elephant you get that airplane out of the water but i can not cried elephant now it sank into the pool it sank into the pool nearly all the way poppa bear said get that airplane i can not said poppa bear said to the giraffe poppa bear tried to reach it but it was too far oh now we will never get it cried poppa bear and sister bear hold it said hold it said giraffe i got something,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1,0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 1 0 0 0 1 0 0 1 +i have an idea he he got his momma bear got the net and then he tried he got it then he tried to get it and at last he got it and then it was soaking wet that he had to waited till it was dry now it was dry and he could fly it but not into the water any more once two bunnies were playing in the sandbox one bunny build a sandcastle,0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 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 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 1 +and one digged sand to put in his bucket he poured it onto the castle and then it all broke and then it all fell and then the uh the bunny had to build it again once two bunnies were going out for a picnic ss one ate a carrot and some hot dogs then he was all full and then the second bunny drank juice and ate his sandwich and then the sandwich taste yucky,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 +and then they went home to their mom the mom said the mom said please take care of your little brother and they took care of each other then the the sister bunny and the momma baby all they walked home together once a ba a bunny was bringing uh a wagon with a balloon attached to a wheel and then the the bunny was so excited that he looked at the balloon and then he tried to put the balloon off the wheel but it was stuck and then it flew up they tried to catch it,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +but it was floating away up into the air and then it nearly disappeared and then they got so mad they had to get a different one they had to get a new one so they walked over to mister balloon and said can i have one a new balloon the bunny asked and then he gave him the nice five balloon and then he did not gi give him them one and then all of sudden brother bear brother bunny and sister bunny saw their mom and they w then they walked over the river skated over to the river and out at the river she saw their mom,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then mommy mister balloon will not give us give us a balloon and then then h then momma bunny walked over to mister balloon and said can you please give them a balloon she asked certainly replied mister balloon and then they had two balloons for themselves two friends were playing with a ball the ball went in the water the guy tried to get the ball then she uh the boy passed the the ball to the elephant and then they the boy was in love with her,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 1 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 +two friends were going for a swim and the elephant wanted to dive she tripped and and hurt her knee the lifeguard came and put a bandaid on her and she was curious and the lifeguard showed her the sign of no running the giraffe brought a airplane he was playing with it and the elephant was getting bored then the elephant took it away from the giraffe and started to play with it,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +she accidentally dropped it in the water the person was very mad at her the lifeguard came and the elephant explained to the lifeguard he tried to reach it but he could not the life the the boy was crying then somebody came in with a net and reached it and got it out and passed it to the giraffe and he was happy and so was the elephant,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +one day uh a bunny went to the park with his friend she was making his sandcastle with her he dumped it all over her sandcastle and it uh and it blew up and she was crying and he did not and he did not even say anything uh two friends went for a picnic uh the one friend ate everything he was very full he got a stomachache,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1,0 1 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 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +the little girl ran to the nurse and pulled her over to the boy and she said merry christmas and they lived happily ever after two friends went to the park and the girl had a balloon uh the boy wanted to hold the balloon he untied it and it flew up and then the girl was very mad at him then they saw a balloon person,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 +and he asked if he could have a balloon of hubbadubba uh bl and the guy said balloons five cents and they were very sad then they seen a doctor and asked and the boy asked if she can buy two balloons with five cents and they got the balloons and she paid and they loved the balloons a elephant met a a giraffe and the and the elephants ball went into the water,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +then the giraffe would get it and then she w then she was happy and then hmmm she liked her and then okay um the elephant and and the the giraffe was going to run and he was going and the elephant was going to run over to the jumping thing and then she slipped and then she fell,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1,0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 +and then the lifeguard came and then he putted a bandaid on and then then she knowed that there was no running and then she looked at the sign and it said no running and then the end the giraffe had had a airplane and he was going to throw it and and the and the elephant wanted to try too and then he s he was tr he wanted to throw it,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,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 1 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 1 0 0 0 0 0 0 0 0 0 0 0 1 +and then the elephant was going to throw it and then it sank and then then the giraffe was mad and and then the lifeguard came and then and then the lifeguard was going to get it and then he and then he was almost about to get it and then and then the giraffe was sad what happened next and then then the girl lifeguard came to get the airplane with a th a net and then she got it,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then and then she got it and then he was happy a bunny and a bunny were playing in a sandbox and then they builded a snowcastle and then the the other rabbit poured some sand in it and and one part was still fixed then what happened and then the other one was sad the end um um two rabbits had baskets,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 1 0 0 0 1 +and it had a picnic and then and then the other rabbit was full then he was hurt what happened he found a doctor and and he thoughted that guy was hurt and then the doctor came and then then the boy was better the end um the girl had a wagon with a balloon on it,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 1 0 0 0 0 0 0 0 0 0 1 +and the and the other rabbit was running and then the boy rabbit was going to take the balloon and then he and then he was trying to take it off then what happened then it flew up in the air and then then it popped and then he was going to the balloon man and then then the girl was sad what happened then and then then he was mad,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1,0 1 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 1 0 0 1 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 1 0 0 0 0 0 1 +um then the girl came then sh then she then then she wanted a balloon and then he asked the doctor that could could he have some of your money what happened then then then the boy and the girl was going to have a balloon and then they both had a balloon the end once an elephant and a giraffe were playing ball when suddenly the ball dropped into the sand that was water out they sunk the ball picked them out,0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1,1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 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 1 +but it was just the elephant and they played ball again once an an elephant and a horse were playing in the sand suddenly it was not sand they realized they fell and sunk they came out again they got hurt because that is how it looks they had to put a bandaid on a different eleph on that elephant a doctor elephant and they sat down the doctor elephant got angry,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 +once an elephant and a giraffe w were shooting airplanes when it looked when suddenly the airplane got broken and it shooted into that water into the water oh no said the little giraffe like he yelled mister fixit came and said what is all this yelling about a a a plane got stuck in the water can you take it out of course i will and he s he got angry too did not know how,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 +so he took his net out of his truck and scooped it up and that did the job and they played airplane again and they were happy they liked the the airplane it was all fixed up once a dog and a rabbit were playing in the sand they made a sandcastle and when by the time it was finished they poured some more sand and it fell down and did,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 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 1 0 1 +they built the sandcastle again it was up once a dog and a rabbit were walking down they had a picnic soon the rabbit was so tired and full that he had to go to sleep out they packed his legs got tired dog had to pull him doctor came along and fixed up the rabbit and took them home once a a dog and a rabbit were waiting down with a balloon when the balloon popped,0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 +on that hot day they all sat up went the balloon it popped out came the balloon man with lots of balloons and they gave one to each and they had lots of balloons only one popped and they liked their balloons off they went out came doctor rabbit,0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 1 +he said what are these balloons are for the balloon man gave it to us because we love balloons and ours popped away once there was uh two friends one tally and one hm snout and snout had a beautiful green ball but it fell in a pool so tally swam to get the ball and he got it back um tally was blushing his whole face went red,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 1 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 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 1 1 0 0 0 0 0 0 0 1 +this is another story about snuff snout and tally once there the pool in the last story with the beautiful green ball fell in the pool and tally got it back there was a diving board and snout said i am going to go on that diving board and i will show you a nice dive well tally said stop do not run and unfortunately snout slipped and fell and really really hurt her knee and then tally warned her because tally saw a sign that said no running snout started started to cry,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +but the lifeguard luckily saw and came to the rescue and the lifeguard gave snout a bandaid once snout stopped crying the lifeguard gave her a sticker for being such a good help not moving her knee around and stuff and then um the lifeguard pointed to the sign that said no running and snout looked and said sorry this is a story about snout and tally and tally had this nice model airplane that he was playing with by the pool he was flying it around and snout was like ooh she really wanted to play with it,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +so she snatched it away and then tally was like hey give it back it is mine and snout dropped it in the pool and then tally s said now look what you have done you should not grab and tally got really really really mad at snout and then the lifeguard asked what is the problem here kids and snout said well um ta tally here was playing with this model airplane and i i really wanted to play wis with it,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +so i grabbed it away but i accidentally dropped it in the pool so the lifeguard had to get down and stretch out for the plane but it was too too far out the lifeguard could not get it and then the the girl luckily had a net so she dipped it in the pool and luckily or not but he was lucky she did get it out,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1,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 0 0 1 0 0 1 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 1 +and then snout said sorry i dropped it in the pool once there was two animals a wolf and a bunny and they were at the beach or in a sandbox and they built a big big sandcastle the wolf was working on the tower and the bunny was um collecting the sand but then the bunny poured the who the whole bucket of sand onto the sandcastle and it ruined one tower but then the sand that was on the tower started coming down and wrecking the whole sandcastle so when that was all finished the only thing left was one tower,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 1 0 0 0 0 0 1 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the wolf started to cry and the bunny feeling bad once there was two animals a ra a hare and a wolf and the wo and the bunny thought that he was so good so he could have all the food he wanted so then once once they were finished the wolf had just a sandwich and a juice and then the rabbit was feeling kind of queasy so um the the wolf told him he would walk him home but luckily a doctor was walking by so the wolf a asked the doctor if he could um help the uh wolf and then the the wolf um brang the doctor over to the bunny,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 1 0 0 0 0 0 1 +and the the wolf said he has fainted he needs your help so the the the hare doctor said well i will give him this medicine so she did and he woke up but still he was feeling kind of queasy and then he he just took a run around the trees that is what the the doctor told him to do and then he was feeling fine two best friends named fluffball and fluffy were once playing at the park,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and and the and fluffball which was hare kept going on about this balloon he got for being the best student in his class but then the the hare said i am going to take it off and show it around but the wolf said no do not it what if you let it go it will fly up into the air but the hare did not listen so um the balloon he accidentally let it go and it went up into the air the the um the wolf got so mad at him that he he he he said i am not your friend any more but then the hare saw some some balloons,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +so he went over to the balloon guy said i want um that red one right there but it was five cents but he did not have any money so the guy that was selling the balloons said sorry but you can not have this nice red balloon and then um doctor fluffball which was fluffballs mom um asked him um fluffball asked his mom if he could have five cents because the the red balloon was five cents so doctor fluffball gave the man five cents and he got two balloons for both of them and that was that they both got a blue and red balloon playing baseball,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 +bouncing the three balls in the fall looking at a ball in the fall laying down in the fall trying to get the ball try give someone the ball in the water in the spring playing running around in the spring looking in the water in the f summer lookin running through the water in the summer running in the in the summer on the sidewalk getting hurt on the sidewalk in the summer get hurt in the summer crying,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 1 +playing in the summer sitting down on the bench in the summer sitting down on the bench in the summer get someone getting mad being happy in the fall playing in the fall with a little toy airplane playing with a little toy in the fall put his airplane in the water in the fall put the water in the in the water in fall put the water in fall,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 +put the water in fall and they happy try and get it in the water in the fall sad it in the water in the fall getting a net to try to get in the water in the fall try to get it in the fall then kind of got it giving the airplane to somebody in the f fall givin holding the airplane in the fall the end,0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1,0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 0 1 +playing playing in the sand making a sandcastle with sand playing with sand with sand playing with sand with sand playing with sand with sand uh bringing food somewhere having a picnic somewhere laying down and eating somewhere la laying down and eating somewhere,1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 +playing somewhere pulling somewhere playing somewhere playing somewhere bringing a cart on the sidewalk in the spring taking a cart somewhere in the spring taking a cart somewhere in the spring trying to get the balloon no handling and they would all go somewhere in the spring,0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 +looking up s in the sidewalk in the spring saying could i have a balloon in the spring seeing what ss getting a balloon in the spring looking at a balloon ss looking they were at a tr at a balloon in the spring but they were all gone walking in the spring um looking at the balloons pulling someone to that balloons in the spring,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 1 1 0 0 0 1 0 0 +uh getting a balloon in the spring walking once upon a time the elephant had a ball and the giraffe liked it and he decided to play with it by the pool and then he made a mistake and it falled in the water and and and the elephant thought that he could not get it but he he just tried and tried and he got it,0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 1 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he gave it back to the elephant so the elephant was very happy the end once upon a time there is a elephant and a giraffe by the diving pool and the elephant ran and slipped i think i think that is next page and he slipped and got hurt so the giraffe came running and then one of the elephants came to help with a bandage and the band and he put the bandage on,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he hurt and hurt and she had to keep her leg out like straight in front so so it would not hurt when she walks but she had to sit there x what was that last bit she has to sit there at the diving pool all day until it feeled better so and then the big elephant said no running and she went that is why he got hurt and he said so she had to sit there for time out that is why,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1,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 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 1 0 0 1 +once upon a time there is a elephant and a giraffe the giraffe had a airplane and they were at the diving pool the elephant played with the airplane and watched it zoom around and he did like and the elephant took it away and started playing with it and then it fell in the water and the giraffe stared at it what and the giraffe stared at it,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 1 1 0 0 0 0 0 1 +and then the giraffe was very mad at the elephant that the elephant was so scared so the beach the suh the the the lifeguard he he decided to take it out and he tried to get it because the elephant said so small elephant as tall as me and then he tried and tried and then i should not what is that last part then he tried and tried but he could not get it so he just tried still,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +so he could not get it and the zebra was sad so sad and then there is somebody that ha was even a bigger elephant and tried to get it with her net and she got it and she got it out for their giraffe and the giraffe was happy very very happy so the elephant and the giraffe became friends again there is so much ones about them at the diving pool the end once upon a time there was a little dog and a little rabbit they were playing in the sandbox,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 1 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 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and they builded a castle and the bunny took some sand and put it in the bucket and he started shoveling it and then the bunny poured all the sand over the sandcastle that the dog made and then the bunny said oh i am sorry i will not do that again oh the dog was very sad he cried h because the bunny was not very smart and then f and then the bunny just would not play with him and he standed still with his ears down like this,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +the end once upon a time there was a bunny and a dog they were going to have a picnic with each other and they met each other in the woods they met a what they met a each other in the woods the bunny brought lots and lots of junk that is like all food that is bad for you junk like what like junk i call it when it is food that is bad for you i call it junk,0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 1 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 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 +and the bunny ate so much of his junk he got sick and he falled down and he got dizzy and then the doggy ran to the doctor bunny to help and the doggy pulled him over and then he started working on fixing him in case he was okay well then he threw a thing at his head and tried to s make him look over there and he fixed him up he had to go home so he the doctor brought him to his home,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the doggy was very happy the end once upon a time there were a dog and a bunny and they met each other in the woods and the dog had had a balloon and the bunny came running and a bunny ca took the balloon out of the the wagon and tried to untie it but the dog said no and he would not listen,0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the dog tried to catch it and the bunny tried to catch it too but they just could not catch it oh and then the bunnys dog friend got mad and made his teeth like this and made what and made ade him mad so he would be so mad that he would just be like this standing there then he went off to get a balloon from a balloon seller that sells balloons he decided to to get one,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +he decided to get one the bunny decided to get a balloon but he did not have any money for five cents well they were sad and he did not have any balloons for each other because they wanted then the bunny wanted one too so they went off to someone that had money and then the and then he and then he bought some for them and they got two the two last ones left and they were so happy and they they have been friends with each other all day the end,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 +the elephant and the cow umhm so you have told me what is in the picture can you tell me a story about it cow elephant cow and a elephant umhm what is happening they are trying to find each other the elephant and the cow had a accident with the ball and the eleph the cow got in there the cow got what he got in there he got in there and the elephant got it,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and the cow is still in there and the cow and the the cow is dripping and she has the ball there is a slide cow and a elephant a cow and a elephant and a slide and a pool and the elephant is running and slipping and the sand and the cow and she got hurt she got hurt on her knee and it hurted and she can not go in the pool,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 +and she hurt herself uh the bo the cow and the elephant the cow the elephant has a ribbon and a dress and the cow gots a airplane and and uh she got it and it got in the water and the cow was mad and she is mad too both of them are all mad and the elephant is getting it,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 1 1 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 +he tried and tried to get it she gots a net to catch it and she is going to get it with the net and they got it back and they are happy the rabbit and the d the d he she made a a sandcastle and the rabbit gots a shovel and the rabbit wants to play and the s and he s g something is going to happen to the sandcastle and it brokeded,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 1 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 1 0 0 0 0 1 0 1 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 +and then the she is crying they got picnic baskets and they are having lunch and they are havi and the rabbit is full and the rabbit is what full and they are and and the she is hungry and the de and she goes to another lady and sh she she is going to say hi and there is the rabbits mom,0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 1 0 0 0 0 1 1 +the there is a balloon and a wagon and she is carrying and the rabbit is not the rabbit is what he is not carrying and the girl is just carrying it what did you say the rabbit was carrying nothing and there the balloon is going to be poppeded and the rab the rabbit is going to take it off and it is going away,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 +and it got away and they were go and get another one from the man can you take your fingers out of your mouth then i can hear your words better they are picking one and they are going to give one and they are gon to go the man said no and and there is there is the bunnys mom and he is the b the rabbit said he will not give me a balloon and now it he is getting one and he got both balloons,0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 +once upon a time and he is looking apples and the apples fall into a pool and uh a buddy a a guy f is catching it and he get it and he put it back and he be happy the end once upon a time are walking in a pool and he is looking backwards,0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and a girl walking and a and he stopped and he be worried and he be scared and he sit on a bench and he sit on a bench the end once upon a time out walking and he is flying a plane and he and he is playing a plane,0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 1 +then he dropped it gone is sinking and sinking and sinking and sinking and sinking and sinking and sinking and he catch it and he put it right back on his hands,0 0 0 1 0 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 +and he be happy the end you can start once upon a time once upon a time what do you see use words so i can hear you so my tape recorder can hear you hm what has happened them building and he throwing sand,0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 1 0 0 0 1,0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 1 1 1 0 1 0 1 +and messed all d up and he be sad how does it start once upon a time try again hm and he is eating and he is tired and he is going sleep and he is running and he is holding his dress,0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 1 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and he fall down and he walks the end once upon a time a tree and he catching a balloon and it pops and wants the balloons and she wants the balloons again and they popped,0 0 0 1 0 0 1 0 1 0 0 0 1 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 1,0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 1 +and they popped again and he is looking and he get and he be happy and he be happy again the end there is an elephant and a giraffe that but the elephant is bouncing a ball so fast that the giraffe wants to try and the elephant um and well the elephant and the giraffe but the giraffe is trying to get the ball in the water so he swam,0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and and the elephant was covering eyes his eyes and um the elephant was covering his eyes and his trunk was full of stuff and then h he was happy and then the giraffe was happy then the elephant started to grab it from the the giraffes hands and he said thank you and the um elephant had the ball and the giraffe was soaked so the giraffe asked him if he could bounce it but he said but the elephant laughed,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,1 0 0 0 0 0 1 0 1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 +and he said no there is the giraffe and the elephant and the giraffe has a kleenex and they were going to go in the water and um the elephant was going to go in the water but the giraffe pushed the elephant and so the elephant fell in the water and the elephant slipped when when the giraffe was running after him so he would not slip but then the elephant he got hurt and the giraffe the elephant got hurt because um he slipped,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the giraffe was running to see what was ran what was wrong and the elephant was crying and the coach came to see and the giraffe was just looking at the elephant and then the then the coach started to put a bandaid and the elephant was covering ey his eyes and um doing kind of a mad face and the giraffe was just looking but then the coach sat the elephant down on a bench and the uh um giraffe was just um holding his hands like this and the coach was pointing his finger,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,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 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and he is and the elephant was holding his hands right between his legs and then he and then the elephant um had a kind of a mad face again the giraffe and the elephant and the elephant was the giraffe was holding the airplane toy airplane and then the and the elephant wanted to play with him but the but he was still playing with it but the giraffe was still playing with it and he was making the elephant not catch it but the elephant finally caught it and then he started playing with it and the giraffe was starting to get mad,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +but the po but the toy plane went in the water so the two guy but the giraffe and the elephant um put their mouth like this but then the giraffe was really mad and the elephant was still ga still looking at the airplane and the coach came and the and he he was looking at the giraffe so um the elephant was telling him what happened and then the um the plane started to sink even more and the the elephant but the elep the coach went over to the elephant and the giraffe was um looking at the the two elephants,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 +and the elephant was screaming his head off and he was telling the coach what happened but the coach had to grab it before it sank all to the bottom but he could not reach it and the giraffe was starting to cry but this other elephant came with a net and tried to get it and the um plane was started to sinking more but he still could not reach it but he finally got it and he gave it back to the giraffe,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +now the now the giraffe and the elephant were happily were happy there is a bunny rabbit and a dog making a sandcastle there is the bunny and the dog that um are um well the bunny rabbit is digging the sand up and the dog is um making the sandcastle smoother and the bunny rabbit was pouring sand all over the sandcastle so the dog was um starting to s um uh get sad but the but half of the sandcastle was left then the dog is was starting to cry and he was starting to make it all over again there is a bunny rabbit and a dog that are going to have lunch together,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,1 1 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +there is a bunny and a dog that are having lunch there is the bunny and the dog but the bunny but but the bu dog is eating and the bunny is and the bunny is chew and the bunny is sick the bunny um is does not feel good and the dog does feel good there is a bunny and a dog but the bu bunny is a mess and the bunny is going to well the dog is going to tell the other bunny that um he has to fix him but he pulled him because he will not,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 1 1 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and he made him worse and then the bunny felt good and the dog was just by the sandbox there is a bunny and a dog and but the dog s has a balloon on his wagon and he is pulling the wagon and the bunny rabbit seen the balloon and he he was going to not try to take the balloon off but the dog did not want him to and the balloon fl flew away,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 +and both of them were trying to catch it the bunny rabbit the dog but the dog was rea really mad at him the rabbit was there is a big rabbit that had a lot of balloons and the bunny rabbit but and the dog but the dog was still mad and the w bunny rabbit went to get another one and he asked the man that has all the balloons could i have one but they were only five cents and he did not have five cents and then he said if you do not have five cents you can not um take a balloon then the dog and the bunny ra rabbit seen the doctor,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 1 +and the bunny rabbit ran but the dog stayed and the bunny rabbit said i want one of those balloons and he will not give me it then he um and the doctor had a lot of money so he gave him most of his money and there is only two left because the bunny rab the dog took most of them and the bunny and the wa the bunny and the wa the bunny and the dog had the two balloo the balloons and the then they went and both of them were really happy a giraffe and a a giraffe is watching a an elephant juggle a ball,0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 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 1 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 +and the ball gets stuck in some wa cement or a pool and the horse is swimming in to get it and he gives the elephant the balloon the ball and then he steps out and he is wet and the elephant is happy well an ele an elephant and giraffe are looking at the pool and there is and there is something behind a rock or something else and it looks like bunny ears and the elephant is talking about the bunny ears,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and they run and they run to see him and then the elephant does a stretch and and then there is a swipe and hurts her knee and then her knee and the giraffe is coming after and a lifeguard comes over to them and he is putting a bandaid on the knee and then they sit in a bench and the lifeguard is pointing to a sign that says no running there is a giraffe and a elephant by a pool,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 +and the gir giraffe has an airplane and he is flying it around in his hand and suddenly the elephant grabs the the airplane and drops it in the pool and it is sinking and the giraffe is mad at the elephant and the lifeguard is looking at them both and the airplane and the elephant is telling the lifeguard about what what happened and the lifeguard is reaching to get the airplane but he can not reach it quite reach it and the giraffe is like panting,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and the elephant is um kind kind of nervous or sad the lifeguard kind of has a smell and his ears are going up and then a an ele a girl elephant comes along with a net and she nets the airplane out and she gives it it to the giraffe and then the gir the giraffe hugs the airplane a rabbit and a mouse are playing in the sand and they are building a sandcastle with and the rabbit is filling a bucket,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and the mouse is flattening the castle and then the rabbit he pours the sand on the castle and the mouse has a kind of a whiny face because he is surprised he is doing that and he wrecks the sandcastle and then they and now they are building it again um a mouse and rabbit are going for a picnic and they are at their picnic eating the food and the rabbit is very hot because he looks hot and and the rabbit is full and the mouse is drinking juice,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 1 +and the rabbit is like really full and then there is a doctor rabbit and the mouse is running over to him and the mouse is pulling him over and he sees the rabbit and his his his stomach is really full and then he takes him off to the doctors a mouse went to a party he because it looks pretty much like there is a party balloon and the rabbit is looking at the balloon,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the rabbit is trying to untie it and he unties it and accidentally lets go and the balloon is floating away and then they are in a big fit the mouse is really mad and the rabbit is like terrifyed because the balloon fel floated away and then they see a rabbit selling balloons and the rabbit is pointing to the balloon up in the sky and and the um rabbit shows him a balloon and it says balloons five cents,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 1 0 1 +and the rabbit is looking in his pockets for five cents and the the man the rabbit is holding the balloons and the mouse and rabbit are looking at him and then th and the mouse is stays behind aside beside the balloon man the rabbit goes to get the doctor uh rabbit again and he says there is a balloon man and we do not have any money and the um doctor and the doctor rabbit is giving the the b the balloon man some money so they can have the balloon and then they get the balloons and everybody is smiling,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 +one day some kids were at a swimming pool one of the kids had a big bouncy ball the other kid wanted to try it he accidentally dropped it into the water the other kid was scared that it would go to the bottom so the kid that dropped it went into the pool and got it the other friend said thank you and the other friend gave the other kid her ball back one day some kids went to a swimming pool one of the kids said let us jump in,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +the kid wanted to jump in but she slipped and she fell on the ground and scraped her knee then the lifeguard came to help her he put a bandaid on they sat her down on the bench to rest for a while then the lifeguard pointed to a sign that says no running one day two kids were playing by a swimming pool one of the kids had brought an airplane to play with they were playing with it,0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and the other kid snatched it from their hands and she accidentally dropped it in the water the other friend got really mad at her the airplane was sinking more into the water then the k then the kid who put it in the water by accident said to the lifeguard the airplane got dropped in the water the lifeguard tried to reach it with his hands but his arms were too short the other kid who had brought the airplane started crying then one of the people who were swimming saw the airplane and got out of the pool got a fishing net and told them that they would get the airplane for them they they reached into the water,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 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 1 1 0 0 0 0 1 +and sh she got the airplane caught in the net and she gave the airplane to the kid who brought it and that kid kept it and did not let other kids play with it by the pool one day two friends were in a sandbox playing together they were building a sandcastle one of the kids dumped a bucket of sand on one end of the castle and that end collapsed and the other friend started crying one day two friends were going for a picnic one of the friends ate too much,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 1 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 1 0 0 1 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 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +when they were done they had a big tummyache and they really wanted to go home so one of the friends went to see a doctor they pulled the doctor by his sleeve to bring him over to the other friend the doctor said do not eat so much next time you have a picnic and the doctor took the other friend to his house one day in the forest two friends were walking one of the friends had a wagon with a balloon tied to it one of the friends wanted to touch it so they a so they took it off the wagon,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 1 +pretty soon it almost touched the sky and the other friend was mad at him and the string was only left so the other friend got really really really mad at him so they both went to a balloon guy the balloon guy said do you want to buy a balloon and then he also said five cents a balloon and the rabbit reached into his pockets but they were empty so the friends just looked at him,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then one of the friends went to a doctor and said that guy is not letting us have a balloon and then the doctor gave him five cents and they got a balloon and the then the doctor paid another five cents for the other friend and he got a balloon too and then they both played with their balloons all day elephant zebra what happens in the story ze zebra,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1,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 1 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 1 0 1 0 0 0 0 1 1 1 +ball zebra and elephant ze um elephant and zebra and ball zebra and the ball an and the elephant zebra and the elephant and the ball the end um elephant and zebra elephant and zebra elephant and zebra owie and uh owie elephant has a owie,1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 1,1 0 0 1 1 1 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 1 0 0 1 0 0 1 0 0 1 0 0 1 1 0 0 0 1 +and the zebra do not has a owie there is two elephants zebra two elephant two elephants and zebra two elephants and zebra two ele elephants st no zebra the end elephant and zebra,0 0 0 0 0 0 0 1 0 0 0 1 1 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 1 0 1 0 0 1,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 1 0 1 0 0 0 1 1 1 1 1 0 1 0 0 1 +uh elephant and zebra airplane uh elephant and zebra airplane elephant and zebra airplane uh it is on what is that sound what is that sound in there um elephant and zebra and airplane elephant and zebra elephant and zebra,0 0 0 1 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1,0 0 0 0 1 1 0 0 0 1 0 0 0 1 1 0 0 1 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 0 0 1 0 0 1 +two elephants and zebra elephant and zebra and airplane elephant and zebra elephant and zebra elephant and zebra elephant and zebra elephant and zebra elephant and zebra the end bunny,0 0 0 1 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 1 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 +what happens in the story um sandcastle sandcastle sandcastle and puppy and bunny sandcastle and bun uh san sandcastle and dog doggy and rabbit bunny sandcastle breaked a sandcastle breaked they are making it again the end,0 0 0 0 1 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 1 0 0 0 0 1 0 1,0 0 0 0 1 1 1 1 0 0 0 0 1 0 0 1 1 1 0 0 0 0 0 1 1 0 1 1 0 1 0 0 0 0 1 0 1 +um basket puppy and rabbit carrot i said a carrot that is it drink pa basket sandwich juice i said juice what happens in the story,0 1 0 0 1 1 0 0 0 0 0 0 1 1 0 1 1 1 0 0 1 0 0 0 0 1,1 1 0 0 1 1 0 0 0 1 0 0 1 1 1 1 1 1 0 0 1 0 0 0 0 1 +um tree tree tr tree tree tree the end uh balloon balloon balloon what happens in the story,0 1 1 0 1 1 1 0 1 0 1 1 1 0 0 0 0 1,1 0 0 1 1 0 1 0 1 1 1 0 1 0 0 0 0 1 +balloon balloon fly away balloon t popped the balloon lots of balloons lots of balloons lots of balloons five balloon lots of balloons i said lots of balloons,1 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 1 0 0 0 0 1,0 0 0 0 1 1 0 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 1 0 1 0 0 1 +lots of balloons yeah uh lots of balloons let us count the balloons in here in this picture there is nine two balloons there is two balloons none balloon one balloon two ba the end,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 1 0 1 0 1 0 0 0 1,0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 1 1 1 0 1 +um the uh giraffe s comes to see uh comes on to swim in the water and then there is an elephant and then um she is bouncing a ball and he um he is asking to play with her they play volleyball and um it actually falled in the water by accident he was going to go in the sw he was going to swim to get it and then he swan swam in and then the elephant had um her hands over her eyes and he had a mad face cause he knew he could get it,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and um the he got it he gave it back to the elephant and then the elephant um was going to fall in love with the giraffe um they wanted to go for a swim and she wanted to try the diving board she did not see um no running she was gon she was running and the um ele giraffe said um you better not run it because he saw the sign but he did not tell the elephant and she did not she did not hear him,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and then she slipped she was running to get her then she got a big owie she was crying and then the lifeguard came over and gave her a bandage she was scared and now he said there um you have a bandaid now and he was m the lifeguard was mad don not run did not you see the sign,0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 +uh um the a gir the giraffe was walking and then um a elephant came and she wanted to play with his um airplane they were taking turns the um he was playing with it and um the elephant was curious that it would go in the water and then she took it away and then it landed in the water and th he was mad at her she wa she was curious what she could um do about it,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,1 1 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 +then the lifeguard came a and he saw that it was in the water the giraffe told him that um th the elephant was took taking it away and threw it in the water and then she said i did not do it and he did it by ac he did it on purpose and then he was the lifeguard was curious and he was trying to reach it they were both curious that he could get it and then it was starting to sink more and then a girl came with a net,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and then she scooped it out and gave it back to um the uh giraffe and then she said here have your airplane back and he said thanks for getting it and they fell in love again um a girl was building a sandcastle the um bunny wanted to play with her and he they dumped some sand she was patting it down and then he put some sand on it and um it broke,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 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 1 +and then um he said oh no and she um said it is okay and he was she was crying she was trying to make it again um a boy and a girl was walking along and they were going for a picnic with each other he was eating a lot of his and he had a lot of junk he got so full and he was getting sick,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and he said i need a docor he doctor he he felt dizzy she was going to phone a doctor and then um she there is a doctor walking along and then um she ran up to him she said um my friend he has a stomachache he is dizzy he ate too much of junk and he said no and she said come on come on,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 +please help me and then she said yes and um he he said you are dizzy your temperature is five now he is okay and he went with the doctor home um she a girl was walking along and a boy was walking just for a jog and then she just walking with a balloon tied to her wagon and he wanted to play with it,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 1 0 1 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 1 +and she said no and he was tying it off the wheel and then it floated up in the air and then she was really mad at him he was scared he looked at the balloon and then they both s she was still angry at him and he saw a balloon guy and he said can i have one of those balloons and you have to pay five cents,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,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 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and they both wanted one she he was curious that um she was going to be really mad at him again and um he went to hi his mom and he was going to ask him ask her if he could have five cents and uh she said yes and she le he letted he she gave um five cents to him and they both were happy that they got a both got a balloon and they would not share theirs again and the mom wa ha was happy too um once upon a time there was a elephant,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 +and she was bouncing three balls and giraffe came and she try and he wanted to try and the elephant said okay and then the giraffe said i can not do it and then one ball wen then all three balls went into the water and then the elephant and the giraffe said oh no and then the giraffe went splashing in the water to get all three balls and then the elephant got one ball and then he wa happ and then she was happy,0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 +the end um once upon a time there was a little giraffe and he wanted to go swimming he was trying to go in the diving board and he was scared and then the elephant said i will try it out and then she was running and then the giraffe was slowing down and then n the the elephant stubbed her hurt her knee then the lifeguard came,0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 1 1 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 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 +and then the lifeguard put a bandaid on her knee and then she was on a bench and then he put her on a timeout that is it um once upon a time there was a little giraffe and a little elephant and and the little giraffe was going to throw his plane he thought it was going to go in the water then he tried and then he tried he did not let go,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 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 1 0 0 0 0 0 0 0 0 0 0 0 1 +and then the elephant took it away and then she threw it in the water then the giraffe was mad then the lifeguard came and then he said you were on another timeout for the elephant and then the lifeguard said i do not know if you should have a timeout and then the lifeguard was going to try to reach it he did not reach it then he did not know and then the giraffe was starting to cry,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +then this lady elephant came and she got a net and she was going to get it with the net and then the lady almost got it and then she got it and then the giraffe was happy once upon a tame time there was a little rabbit and a little dog and the little dog that was mak it was making a sandcastle and the rabbit joined in and then h the rabbit tried to do it,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 +well he did not get it right and then he dumped it on top and then it did not and the dogs eyes went crazy and then the dog his mouth was he was kind of it was kind of crazy and then it was trying to make it back well it did not the end once upon a tame time there was a little rabbit and a little um dog and then they wer they were going for a picnic and the rabbit said hello,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 +would you like to join my picnic well the dog said no thank you i will enjoy my picnic and then the rabbit was eating all its stuff that it brought and then he was getting so hot that he that it was get that it was burning and then he was very fat and then he was going crazy and then he saw and then she saw then the puppy saw a doctor and then and then she was bringing the doctor to the rabbit and then sh that rabbit saw the other rabbit,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and then it took it that little rabbit to the doctors that is the end once upon a time there was a little rabbit and a little dog and then the little rabbit wanted to have the balloon and then it almost took it and then he did not notice and then he untied it and then he did not know what was there and then it and then the balloon went up up up and then that dog was mad at that rabbit,0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 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 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 1 +and then another rabbit came by with some more balloons and then that d um rabbit wanted a balloon and then he saw he did not have any money and then he did not get any balloons and then one rabbit then that rabbit saw a nurse doctor and then that doctor then that little rabbit said can i have some money for one of those balloons and then he got one and then he had and then they had two for each the end giraffe and elephant were in the pool,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1,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 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 +and i wonder what were were they were bouncing the ball i wonder what will happen the ball felled in the water giraffe was swimming to get it and and giraffe got it and elephant said thank you and you are my hero giraffe said oh my pleasure and and and elephant was engaged with him elephant and giraffe were by the pool,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 1 0 0 1 0 1 0 0 0 0 1 0 0 0 0 1 0 1 1 0 0 0 0 1 0 0 0 0 0 0 1 +they i wonder what will happen elephant was running and and i wonder what will happen she slipped and she got a owie and she was crying and giraffe wa is going to help her and the lifeguard came and ss and gave her a bandaid she was so sad that sh he had to put a big bandaid on then the lifeguard let her sit down for awhile,0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +the lifeguard was so mad and it said no running and ii she was so sad giraffe and elephant were at the pool giraffe had a airplane elephant took it away from him he was so upset it felled in the pool ele and giraffe got so mad that he wanted said that he wanted a new one and she took toward to the lifeguard and said can you get that,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 +and he said did you do this and he will and she will say no she wa she was crying and said that all right i did it this is the truth i throwed it in the pool the lifeguard crawl and try to get it i wonder what will happen he could not get it and giraffe started to cry and a girl lifeguard had a net,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and try and she got it and she did giraffe was so happy that he did not have to have a new one and then he loved it and he never ever ever let elephant played with it ever again this rabbit is going to make a sandcastle with this dog the rabbit is putting sand in the pail when the dog was making a sandcastle the rabbit poured the sand onto the sandcastle the dog was sad the dog wrought so hard,0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 1 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 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 +she started she was going she wa the rabbit was upset because he was going to make another one the dog was crying the rabbit was disappointed rabbit and rabbit saw the dog dog the dog waved at rabbit they were walking to a picnic the rabbit was so hungry that he had too many junks the ra the the dog had a sandwich first soon the rabbit was fat and full the dog was still hungry,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 1 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 1 1 1 0 0 0 0 0 1 0 0 0 0 1 +then the rabbit got dizzy the ra and the dog looked at him the dog saw his mother and he said that rabbit is hurt he does not feel well then he pu the dog pulled his his mother the rabbits mother to see him and he was very ill the r the rabbit ate too much junk and and his mother was a doctor so she took care of him,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +and she took him to his house and he she said to the dog he will be okay the dog was going going for a walk with a wagon then rabbit showed up he said hi and i wonder what will happen rabbit saw the balloon and the dog said be careful the rabbit untied the balloon the the dog was disappointed,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +then rabbit let go and dog and dog was worried and he wanted she wanted her balloon back and she got very mad at rabbit he al he always bugs her then the the balloon man was carrying some balloons and the dog was still mad he said that may i have a ye white one and the and the balloon man said sure when when he got to when got to his pocket and pulled down the balloon it was five cents,0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 +and he did not have no five cents and he was he was sad then the balloon man put the balloon up again and did not listen to him then the rabbit went to the doctor again she had money and he wanted five cents he asked if you can buy me a balloon two of us because i do not have no more money and she said yes and and she and he took two balloons to them and ga and one of the money they were happy,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 1 0 0 1 +and the doctor was happy too that they have balloons first they have balling bowling balls secon second they drop one third he tried to swim and got it after she got the ball after he tried to jump with the bowling ball that is a silly idea you will fall down and hurt yourself first they saw the thing and they wanted to jump,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and then they ran and and then she ran too fast then she fell down and hurt shes knee and she cried and the coach helped her up and put a bandage and put her on the bench after she the coach said do not run because it is wet and slippery should not run like that first they first the elephant saw the giraffes airplane and then he flied it and the the elephant want to tried it,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,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 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 +then she tried it and then it accidentally dropped on the water and the the giraffe was angry and then the coach the um the coach said what is happening and she said i accidentally flied it it gone on the river the coa the coach trie um s s tried to help the coach could not help this after the giraffe has tears because he wants his airplane after the the woman in the net i got um um had a net and tried and um want helped him to get it out,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the woman tried and she got it and then the giraffe was happy after he hugged his airplane they was making a ss sandcastle the um the um the dog and then the rabbit came and helped it and then he got some sand the rabbit he poured it on the sandcastle he felled it down and then the dog tried to make another one,0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +but he could not they went for a picnic they ate their food they were full and then the rabbit had a stomachache and then he went to a doctor and then he asked the doctor to help his friend and then the doctor helped and then the doc and then he was back to normal first they were um pulling the the balloon on a wagon,0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 1 1 0 0 0 0 0 0 1 +and then he showed it to his friend and then the rabbit untied it and then it flew away and then the dog is angry and then they they saw a man buying havin have some balloons and they want to get one and then he asked for one and then h he showed how much it was for and then she she said not not to take it and then he asked the doctor to pay,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and then he he asked like like doctor um i tooked a balloon off my friends wagon and it flew away and then he paid after they both have balloons the f the only the dog has a balloon both of them have a balloon oh now at the end they do yeah um it looks like the giraffe and the elephant are playing basketball and the ball goes into the pool,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +the giraffe tries and jumps in and get it um but the elephant gets it and the giraffe looks embarrassed um it um the giraffe and the elephant want to go swimming um the the giraffe the elephant wants to go off the diving board and she starts running and the sign says no running and she slips and falls and scrapes her knee the lifeguard comes running up to her puts a bandaid on it and she is all better,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the lifeguard points out the sign and she looks really really embarrassed and guilty um the giraffe has an airplane in his hand and the elephant um really likes it um the giraffe pretends to fly it and he is making airplane noises the elephant gets jealous the elephant the elephant steals the plane away from him and i guess she tries to fly it but it goes into the water,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +uh the ele and the giraffe gets mad the lifeguard comes up the lifeguard says what happened the oh and the elephant explained it to him so now the lifeguard is trying to get the the plane back and the lifeguard can not do nothing the giraffe starts crying then s a woman comes another elephant comes up with a net scoops the airplane out and gives it back to the giraffe the giraffe and the giraffe is really really happy now the bunny and uh the dog uh the dog has built uh a sandcastle,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 1 1 0 0 0 0 0 0 1 +and the bunny wants to help the bunny scoops up uh uh a shovel uh a pi the bunny takes a shovel and scoops up some sand and then she pours it on the sandcastle she buries the sandcastle and the dog starts to cry the dog and the bunny are having a picnic the bunny starts to eat and she has a lot of junk food the bunny uh gets a really really big tummyache um the dog does not know what is happening,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 +the the dog runs up to the bunnys mom a doctor or something and the and pulls the doctor over to see the bunny the doctor um brang her back like maybe gave her a painkiller or something but but but then the bunny feels better and then they walk away the dog has a balloon the bunny wants to see the balloon so the bunny unties it from his wagon the balloon floats up in the air um the dog gets mad there is a balloon salesman on the other side of the park,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +he wants the bunny goes up to buy one but each balloon is five cents and the bunny and the dog have no money so the bunny runs up to uh to the doctor and asks if she if she um the doctor can buy uh buy a balloon for a friend the doctor goes up pays us and pays the balloon man and now each and now the dog and the bunny have a balloon there are two kids who find balls on the si on the sidewalk and then they f then they it falls into the water and they and they do not want to get wet but the um the moose got it wants gets the ball,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 1 0 0 1 +and he gives it back to the li to the elephant and then he gets out of the water and he is soaking they want to go swimming but there is no running allowed ss but they want to run to run and jump into the pool and w when the elephant is running she slips and hurts her knee and then the giraffe gets the lifeguard and he puts a bandaid on the knee and then she is all better,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then he s points to the sign and says no running allowed um the uh the giraffe and the elephant want to throw the airplane and see if it s falls into the water and when and when and he is going to start to throw and then and then the elephant grabs it away and thr and drops it in the water and then the giraffe gets really mad and and now now um now they have to go and get it because the lifeguard is there and now the elephant is saying i dropped it in by accident and the el and the lifeguard is going to get it but he can not reach and then its and then there is someone who swims ga ge gets a net and gets it the end and gives it back,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and now he is going to play with it the end theres an there is an elephant and a dog trying to build a sandcastle and the dog wants um to break it sort of and then when the rabbit pours the sand on it gonna it might break and it breaks down so now the dog tries to help him buil build it back the end the dog and the rabbit want to go swimming are going to have a picnic and the rabbit brings carrot stuff,0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 1 0 1 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 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the dog brings stuff with cheese and stuff and the rabbit is so full that the dog tries to eat the rest and the dog and then the rabbit gets sick so so the dog gets a doctor and he pulls him over because someone got sick and the doctor says open your mouth and say ah and then the rabbit felt better the end one day the rabbit and the dog meet because the dog and the rabbit are walking somewhere,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 1 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 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then they meet and the dog has a little balloon on his wagon and the rabbit sort of wants to pop it so and then he wants the now he wants to undo it the balloon and make it fly away and now the dog is sad because his balloon is gone so now the dog gets really mad at the rabbit and now the balloon is for sale so the rabbit gets one for his friend five cents but he does not have five cents so they can not get one,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +but then there is a doctor so they might ask him for five cents so they ask for five cents to get a balloon and he gives them five ce so he gives the guy five cents and they each get a balloon the end they were playing they smiled and a ball was in the in the pool the boy he wanted to catch the ball,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +so he went in and the elephant girl put her hands in front of her nose and then he caught the ball for her and she was smiling and he was all wet and he was what he was all wet is that the end yeah they found a pool,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 1 0 0 0 1,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 0 0 0 0 1 0 0 0 1 1 0 0 0 1 +and then she was talking to him and they runned and she got hurt and somebody came and ran to her she was crying she was crying so much that that the boy that ran to her gave her a bandaid she was sitting on a bench and he got very greedy he found a airplane a toy airplane then he was playing with it,0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,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 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +she grabbed it away from him then it fell in the water and then he was mad at her then a boy came walking by then she told him something then he was trying to catch it and then they he could not so he cried and then a girl came down with a fetcher with a what,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 1 +with a fetcher to oh a fetcher okay and then she tried and grabbed it and she got it for him and he was so happy the end they made a sandcastle they sc they scooped some some sand and she dumped the rabbit dumped it on right on the sandcastle and it broke,0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 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 1 +then he was crying when i when he was fixing it and it is the end of the story they went for a picnic they ate and the rabbit got a tummyache she was so full that she was growling then the boy called someone then he grabbed her to the bunny she checked her if she was well if she was what,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +if she was well then she was good and she did not have a tummyache any more and sh they had a walk they had a stroller with a balloon in the front they watched the balloon if it was coming off and he tied it right on s ti she tied it on so tight as she can then after it came up in the air and after the dog was so greedy at her and then a balloon man came,0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 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 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and h and the rabbit said can we borrow a balloon and he said would you like this one and he said yes it is five dollars and he and he checked if he had much and then they did not get a balloon and then they ran to someone they asked her th we want a balloon and she did not know why so she paid five dollars to him,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 1 0 0 0 0 0 0 0 0 1 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 1 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 1 +and they gave both of them a balloon and they liked to play with it once upon a time they had three ba balls and one went in the river and him immediately went to get it he falled in and then and he got um he went in swim to give it to the pi um the elephant again uh an then an then um and then hir it looks like they are in love once upon a time the elephant went to run an then and then they start running an her her and her got a booboo and then his mom comed put a bandaid on her,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and then her went back to her friends and then he got mad at her once upon a time he s he showed the elephant his airplane and then her grabbed it out of the out of his hands and then her dropped it into the water by mistake and then he got very angry at her and then the elephant comed and got wery angry at the pi the um at the elephant too uh then he had a a talk and then he try and reach it an and then he start trying,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +an then and then the girl come with the net got it for got it for him an then he and then he was happy and he was happy and he hugged his airplane once upon a time a dog was playing a castle and a bunny comed over to play with him and th and when he and he was holding the castle and he was um having a shovel to um pick up the sand and he was dumping on the castle and then he broke the castle and then and then he start crying,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 +once upon a time they went on a picnic and and he and and som his tongue is out like this okay you are sticking your tongue out that is what it looks like and i do not know how to do that part can you tell me in words uh it looks like he is doing oh tongue out okay and once upon a time when they was eating something um it wa um it wa um he start to have a headache and then the dog went to his mother and tried pull her to the to her kid bunny and and it start giving him medicine,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 1 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 +and then he and then they went on when he was going to play at the park the bunny went and touched the balloon he did what with the balloon touched it and he tried to pull it off and then it got go an they was an and the dog was angry no maybe the angry was not at that part the angry was this one and he was angry and then he went on with balloons,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and he gave the kid another balloon and he said he want another balloon and he said no cause he got because he needed to get five balloons because he wants five balloons x an he asked an the dog said can i have another the bunny said can i have another bunny for the dog and then the bunny went back to his mom and he said he wo he will not give me another ba he will not give me another balloon so he did ge so he give the kids two balloons and an they and then they went off home the elephant is playing with a ball,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 +and the giraffe want to play with it with the elephant in the water and they dropped it in the water and then the giraffe was going to swim and get it for the elephant and the giraffe got it for the elephant and she was happy and she said thank you to the giraffe the end the elephant and the giraffe were going swimming and the elephant was going to go in the water and she slipped,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and she hold her knee and she was crying and the her dad went to go see her and put a bandaid on her owie and then she have to sit on the bench and she and her dad said no running the end the elephant and the giraffe were playing with a airplane and the giraffe was making it fly and made the elephant dizzy and the elephant took the airplane and the giraffe was mad,0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 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 1 +and the elephant dropped the airplane in the water the giraffe was mad at her so they have to get the airplane and her dad said to her why did you drop the airplane in the water so her mother tried to get it and the giraffe was crying and the mum got it with a net she picked it out of the water and gave it back to the giraffe and the giraffe was happy and the giraffe hugged his airplane,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +the end the bunny and the dog were making a sandcastle and the bunny was filling up the bucket and the dog was breaking the sandcastle and the bunny was breaking broke some of it and then the puppy was a little bit sad and the puppy was crying the end the bunny and the dog was going on a picnic and the bunny took all of the food out and wanted the puppys food,0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 +and the bunny was full and the bunny was getting dizzy and full and the puppy went to get the doctor and puppy said that the the bunny ate too much food and the bunny was feeling sick and then the bunny was not feeling sick because the doctor made him all better the end the dog had a balloon and a wagon the bunny said can i come with you so he did,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 +the bunny was going to take off the balloon the pu dog said do not take off the balloon or it will fly away and the bunny did and the balloon flied away and the dog was mad at the bunny so he went to go see the circus bunny again to get a other balloon so the bunny got a other balloon for the dog and he did not have no money so he can buy a balloon then they were going to get some money from the doctor,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and the doctor said uh yes and the doctor gave the both of them some money to buy a balloon they both get their own balloon the end um an elephant and a giraffe went swimming the uh um s a wa they were playing with water balloons it looked like and they dropped a water balloon in the pool or the balloon um the giraffe tries to swim after it um he catches it and the elephant gets it,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and now she loves him um an elephant and a giraffe are swimming the elephant runs to the pool he slips and hurts her knee and the lifeguard comes and the giraffe helps her um the elephant cries and the lifeguard puts a bandaid on it and he sat down on a bench and the lifeguard p points to a no running sign,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 +um the elephant and the giraffe are at the swimming pool the giraffe brings a toy airplane um he the giraffe plays with it and the elephant stares at it then he the elephant grabs it from him and drops it in the pool the giraffe is mad at the elephant and the lifeguard sees it and it is starting to sink the lifeguard looks sort of angry at the ele other elephant x and um he tries to get it,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 1 +but he can not reach it the giraffe starts to cry um and then another elephant um gets a net and um and picks up the plane and gives it to the giraffe and the giraffe is happy um a dog is playing in the sand and a rabbit comes and wants to play with her he starts making a little bit of the castle while the rabb while um the dog starts making a little bit of the castle while the rabbit fills a pail up with sand and the bunny dumps it on the castle and the castle breaks and the bunny screams,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1,0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +um and the bunny pretends he did not do it but he really did and the dog is feeling sad because it is broke it broke um the bunny and the dog are going for a picnic um the dog brings sandwiches and the bunny brings carrots and sandwiches and pickles and chips and sandwiches and carrots and he gets fu the bunny gets full while the dog is still eating the bunny is feeling sick um the dog runs and gets um the doctor and he pulls the dog pulls the doctor over,0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 1 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 1 0 1 0 0 1 0 1 0 0 0 1 +um the doctor looks and tells him to open his mouth and then he is all done um the dog is pulling a wagon with a balloon and and the bunny sees her the bunny tries to get it um he gets it and the dog opens his mouth and starts to scream sort of the bunny lets it g lets go of the balloon and the dog is really mad at the bunny and he is just staring at the balloon,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and um he sees um another rabbit selling balloons he asks for some and they are five cents and he said you can not have them if you can not pay five cents and then they are really sad and then there is a bunny another bunny up there i think it is his mom and he wants to buy a balloon and they he gives five cents to him and they each get a balloon,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 1 0 0 0 0 0 0 1 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 1 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 1 +and they are playing with them there is an elephant and a giraffe the elephant is bouncing a ball and there is the giraffe guy i think is talking to her and they are watching and all of a sudden the ball that the elephant was bouncing fell into the water and they are both looking kind of sad and um excited and now the giraffe uh jumped into the water and now is swimming to catch the ball and the giraffe is back at the end of the pool and gave the ball back to the elephant and now the elephant is happy and looks happy,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +uh um the there is the giraffe and the elephant again and the elephant is looking at the water with the giraffe and now the elephant is looks like uh she is going to jump into the pool and right when she started jumping uh the elephant slipped and hurt herself and now she has a cut on her leg and now the giraffe is stand sitting by her and called the lifeguard to come and now the elephant is kind of scared that it is going to hurt when they put on the bandaid and now she is walking with the lifeguard with the bandaid on herself and she is kind of happy and kind of sad and now she is sitting the bench,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and the lifeguard is pointing to no running because she was running uh the elephant and the giraffe the elephant is looking at the giraffes airplane that he has in his hands and she is happy now the giraffe is kind of playing with the airplane and pretending that it is flying and the the elephant is trying it now and she is pretending and the giraffe is thinking she is he is scared that she is going to wreck it and now the the airplane fell into the water and now the giraffe is mad and now the lifeguard is standing there and watching them uh be mad at each other,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and now so the elephant is saying what happened and the lifeguard is wa looking at her now the lifeguard is trying to get the airplane and the now the giraffe is crying because the lifeguard can not get the airplane out of the water and now there is another uh elephant and she has a fish net and now she is trying to catch it with the fish net and she got it with the fish net and gave it to giraffe now giraffe is happy and um elephant is happy too,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 +there is a bunny and i think there is a dog and the dog has made a sandcastle in the sandbox and the bunny looks has a shovel and he looks happy and now the bunny was helping the dog to make the rest of the sandcastle and then the then the bunny pours all of the sand over onto the sandcastle and now the b the bunny wrecked the whole sandcastle the dog does not seem that uh mad and then now he looks at it now again,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 1 +and uh he is really mad and the bunny is just standing there looking kind of sad and mad too uh there is the bunny and the dog again and the bunny and the dog are going for a picnic the bunny is sitting by the dog and they are eating and the bunny has lots of food around him and now the bunny is really stuffed and the dog is still eating nicely and the dog is eating,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +and the bunny looks kind of uh really um full so now the dog is running to a parent that is walking down the road and brought the the other bunny to uh the little bunny that ate too much and now the bunny the big bunny is looking at the little bunny and now the little bunny is all better now there is the dog and the bunny again and the bunny is ru are running down the roa the s sidewalk and the dog has a a little cart with a balloon tied to it now the bunny is looking at the balloon that is tied to the cart and now the the dog is looking at the bunny and the bunny is trying to take off the balloon,0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and the bunny took off the balloon and now the balloon is sailing up in the sky and now the dog is really mad and the bunny is looking at at the balloon at the sky and now the bunny is walking down the s the sidewalk and the dog is looking at the bunny walking down and the bunny sees some balloons and the bunny sees the balloons with the man holding them and asks if she can buy one and they are they are five cents and the bunny is looking in his pockets because he does not have uh any money,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and now the both the dog and the bunny are looking at the balloons seeing if he will give them one and now the big bunny uh the little bunny is going to ask the big bunny and see if she has any money now they are asking the bunny little bunny is asking the big bunny if he can she can have a five cents to buy a balloon and so the big bunny gave the man five cents so that they can ha or ten cents so they can have two balloons and now each of them have two has a balloon the giraffe and the elephant are playing in the water and they are bouncing a ball the elephant is and the elephant is out of the water and so is the giraffe but she bounces it too hard,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +and it land in the water and the giraffe tries to get it to jump in and get it but it looks like it is hard for him to get it but then he got it and then he swam to the elephant and the elephant got it and then the giraffe got out of the water and the elephant took it from him the elephant and the giraffe are staring into the water and the elephant tries to run in the water tries she like she is on where she is on the ground,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,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 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +and then she tries to run in the water but then she slips and then she got a owie on her knee and she started to cry and then the giraffe called the lifeguard and the lifeguard help tried to help her was running over to her and the lifeguard got a bandaid and put it on her knee and then the lifeguard told her told her to bend her leg and then it felt better but then the lifeguard um showed the elephant that there was a sign that said no running,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,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 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 +and then she had to sit on the bench the elephant and the giraffe are um laughing together and the giraffe has a toy airplane in the swimming pool and then the giraffe plays with it and flies it in the air but then the elephant grabbed it away from him and started to playing with it but then she dropped it and it fell in the water and then the giraffe got really mad and the lifeguard came over and looked at the airplane and was shocked and the elephant said it was an accident,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +but then the so the lifeguard bent down and tried to get it but he was too short and then the giraffe started crying and then the elephant looked shy like kind of like she is sorry and the lifeguard did not know what to say but then a girl walked over one of the lifeguards walked over and grabbed the net and grabbed the airplane with the net and then the giraffe started stopped crying and then the lifeguard was happy and then the elephant did not know what to say and then the and then the lifeguard picked up the airplane and gave it to the giraffe,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the gir and the elephant was happy and the giraffe was very happy a dog and a a dog and a bunny uh well first the dog is playing in the sand with a shovel and then the bunny comes along with his shovel and the dog is just done his castle and the bunny is putting some sand in his sand bucket and then the bunny pours all of the sand on the castle and and then the bunny instead of the dog getting mad the bunny gets mad and then the dog starts to cry,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +a bunny is w the bunny is w walking down the road with his basket and a dog waves at the bunny with his basket and the dog takes out his sandwich and the bunny takes out her big meal that she has in her basket and then the bunny eats it all and then you can see garbage all over the mat and then the dog is just eating a sandwich and then the bunny feels a bit sick and the dog is shocked so the dog runs down the road to the bunny is granny and tells her,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,1 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the granny um well the dog is pulling the granny towards the bunny and the the granny fix like helps the bunny and then they walk home happily together the bun first the dog has a wagon with a balloon tied on it and the bunny is walking down the road waving at the dog and then the bunny says that is a nice balloon that you have and then the bunny tries to tie it off the wagon but then he did tie it off and then it floated up in the air the dog and the dog got really mad,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 +and he got so but he did not have to be mad for long because he saw a balloon carrier and the bunny was walking towards him and the bunny asked how many how much are those balloons and um the salesman said they are five cents each but the bunny did not have enough money he did not have any money and then the bunny and the dog just standed there and went gave a sad face and then the bunny walked toward this girl on the street and asked if i can get a balloon and then the girl gave her fi gave him five cent ten cents for two balloons and they both had the balloon and were very happy,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +there is a giraffe and an elephant shall i turn the page okay then then there was a ball in the water then the giraffe went to get it then the giraffe got the ball for the elephant and he was playing with it the end they wanted to go on the on the jumping thing and the elephant one want to go on it,0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then the elephant tripped then he got a owie then the lifeguard came he put a bandaid on it and they and he took it took him to the bench i do not know it there is a giraffe and an elephant the giraffe has an airplane then the elephant took it then it fell in the water,0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +then the giraffe was mad at the elephant do not know it looked like it was sinking but the lifeguard was trying to get it i do not know and the lifeguard got a net and he fished it out and he gave it back to the giraffe do not know there is two rabbits that are going to make a castle,0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +they are making one he dumped ah sand on it then it broke and and they were going to build it again the end there are two rabbits that are going picnicking they brought food to eat they ate all the food one of the rabbits are really fat then t a doctor came,0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 1 1 0 0 1 +then one of the rabbits are pulling him and then he was checking his temperature then the doctor took one of the r rabbits the end there are two rabbits that have one balloon okay anything on this page no then they took it off then it went up in the sky then it was up high,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +there was a rabbit had lots of balloons and one of the rabbits asked him if he can have one it costs five cents nothing here okay and there was a rabbit coming then he asked the rabbit if he can have money for a balloon then he then he gave the bunny gave him the money then they each got one the end a donkey thing and an elephant are playing with their ball playing basketball,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 +um the they shoot it and the ball falls into the pool that they were standing by the donkey goes in and gets it out of the water he brings it back to the elephant and the elephant is happy the elephant falls in love with him they are going to go swimming the elephant goes to run to the diving board she slips and falls and hurts herself she is bleeding because she has a cut on her knee,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +um the donkey thing goes to get the lifeguard they put a bandaid on she is okay he points to the sign that says no running and she gets um embarrassed um they are going to play with this plane near the swimming pool he is flying around with it and she wants a turn she so she grabs it from him and starts playing with it it falls into the water,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and they can not get it out he gets mad at the elephant then they call the lifeguard and then the lifeguard is looking at it the lifeguard can not reach it he still tries to reach but he still can not reach it it is sinking and the ele donkey thing is crying and the elephant feels sorry,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the lifeguard says he can not do anything then the other lifeguard comes with a net and she fishes it out with the net and then she gives it back to him and he is happy and then they are both happy the two little kids and then they play with the airplane again the rabbit and the dog are playing in the sand they are building a sandcastle he pours too much sand on the sandcastle,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 +he wrecks it um the bunny and the dog are going to go and have a picnic they are having a picnic and he is eating everything he ate all unhealthy stuff and only like a few carrots and stuff that is healthy he gets sick the dog goes to get a medic the me the medic um helps him and he is sick so she is going to cure him,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and then he take she takes her like to the doctors office place and then she is going to um make him better um the the dog and the bunny are going to go and play with their balloon th the bunny takes the balloon off the wagon he ties it off and then the dog does not want it him to it goes up in the air and they can not get it the dog gets mad at him uh they go to buy another balloon,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 +they pick one but it is five cents and they do not have any money sss and they both do not have any money so they are thinking what to do um they so so they go to their mom and she is going to give them money um she is gonna gi she is getting her money out of her pockets to give to them she gives it to them and they can buy two balloons then they are both happy,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +there is a guy gi uh have candy and he is selling it and he give and it one dropped into the water and he swims for it and he pulls um um he gots it the other guy gots it and he get um and he get and does not he does not give it to him the end the guy is going to jump into the water the guy um runs and runs and the guy the other guy he slips,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he falls down and he cries and he and he has a booboo and he puts a bandaid on it and he carries him puts him on the bench the end the guy is looking at him and he has a airplane and then the other guy takes the airplane and plays with it,0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then it falls o it falls into the water and then the other guy gets mad at him and the other guy gets m um the other guy there is two guys standing getting mad and the other guy ge um um gets scared and the other guy chases it into the water an and the other guy cries and the other guy has a net and the other guy takes it out of the pool and then he gives it back and then he he likes him,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +the end there is a there is a bunny rabbit um um gonna make a there is a bunny rabbit who made a sandcastle and they are both of them are making a sandcastle and they are they are pour they are pouring it on on the guy somebody is pouring it on and he is breaking it and the other one gets mad no not mad i forgot it breaks and they make another one the end,0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 1 0 1,0 1 0 0 1 0 0 0 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 1 +they have both baskets the bunny rabbits has baskets and they gr they are having a picnic and then the other one eats all of his and then the other one du um has uh juice and then the other one is wa um somebody is walking and somebody is pulling somebodys shirt and somebody gets mad somebody brings somebody home the end,0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 1,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 +there is a guy having a balloon in his wagon and the other one is walking and he w and he is trying to take it off and then he en unwraps it a little bit off and then it flies away and then it float he wrap um the um the string falls down why does your boss does your boss let you look at these pages she says while your doing them i am not supposed to so i am not so you can see them go ahead the guy has balloons in his hand and the and the other one buys one,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,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 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then he and then he sh then he checks in his pocket for money and he does not have money he checks it for money and he can not get one and and he was allowed to ah the other one is the uh there was a man heh uh selling balloons and then he gives one to him and the other one has a balloon and the other one has a balloon the end a elephant is going to his friend,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1,0 0 1 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 +he is saying what is there what is in there orange he said the the orange fall down in the water and then the his friend he he falled in the water he was trying to get the orange and then and then the elephant got the thing out and then the elephant got the orange out and then he walked and then he walked his and then he walked to his home the end um the the elephant and the friend he was going to the pool they were going to jump into the pool really fast,0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 1 0 0 1 0 0 0 1 1 0 1 1 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 1 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and they are going to jump into where the sides are and they and the his friend hurt his leg he hurt his leg and that hurts really bad um his f his um his brother came and he and so he and he seed what happened and he gave him a bandaid and then it hur and then he went home they were going to play pool again and then there and then he was driving airplane,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and then the his friend was driving a driving driving a airplane and playing again they are playing again they were going to jump i and the airplane got in the water okay and then he was trying to and then he was very mad and then his friend and then his sister went over to that girl t um the sister went over to the brother and then he and then the brother came over her and then and then he sawed what happened and then he is trying to get it and then he he did not know how to get it,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 +he tried he picked that and then he tried to get it hey look look behind here um the boy has girl hair the the girl was pretty then he tried to get it and she trying to get that um airplane and then he tr and then he got it and he was very happy,0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and then h and then the elephant was very happy too the end i see a bunny that is in the s um i see a dog that is in the sandbox and helping the bunny and the bunny and the bunny is making a sandcastle they are trying to make a sandcastle and he is helping and he is helping the dog and uh um the rabbit broke the doggys castle and then he was making it all over again the end um the bunny was going for a picnic,0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 +he was following the dog and then they were there already they were playing in the sandbox with a picnic and then he burped and then he burped and then he was eating all th and then the dog was eating all the other thing he was eating one at a time and then he was and then he sawed then the dog he was laying down and then he was sleeping he was kind of asleep but he did not,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 +and then and then he was turned into a doctor then he was turned into a doctor and he had and he had doctor things and and a doctor came and then he went with the doctor and then he tooked him to the doctor where the doctor thing is and then he laid down with a blankie went to sleep and then and then the doctor came to a different to a different man but it was not that man he was so he was so tall,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 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 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 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 1 +and he was trying to help the man and then he w and then the doctor came with this with the bunny he was going to the doctor the end they are going to the um circus and then the bunny was c the bunny came with him and he had and he had a balloon and then he w and then he was trying to get the balloon and he was following him and then he took it off,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +and then it po and then it was gone and they were trying to get it get get get it back and then he was very mad and then he said i am sorry and then he had a whole bunch of balloons and then he wanted and then he wanted m and then he was going to get one and then he wanted one and then he had some dollars and he was then he was going to buy one and then he gots no money,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then he could not buy one and then he was and then the doctor help him help him and then he gave him some money and then and then he wanted the balloon and then um he got a balloon for him he gave him some money and then he got a balloon and they wan and they liked and they liked it and then they said and then they said thank you the end,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 0 0 0 1 0 1 +an elephant meets a horse then the elephants ball bounces in the water the horse swims to get it the horse got the ball the elephant was happy the end an elephant and a horse wanted to go on a diving board the elephant says let us go on the diving board the elephant slips and scrapes her knee then the elephants father comes and puts a bandaid on it,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and the father said that bandaid will make sure it does not hurt the father says no running an elephant met a horse who has a toy plane the plane f he the horse pretend it pretend it flies then the elephant wants to try then the elephant threw it into the water it was sinking and the horse was mad and the elephants father came and the elephant said i threw that plane into the water by an accident,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 1 0 0 0 0 0 0 0 1 0 1 1 1 0 1 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 +and it is the horses the elephants dad could not reach it because it was too far and the horse was crying then a lady came and had a net and caught it with and almost caught it with the net and she got it with the net and gave it to the horse the horse was happy a dog and a bunny are making a sandcastle they needed thick sand but the sand was too light so it fell on the castle,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +now the castle is nothing but they could see part of the castle a bunny and a dog are going for a walk they have a picnic the bunny gets too full he the bunny gots a stomachache the dog runs to the doctor the dog pulls the doctor to the bunny the doctor said he has a stomachache then the bunnys mom came,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +a dog is pulling a wagon with a balloon the bunny says if you let go it will fly up to the sky the dog says no do not do that the balloon flied up to the sky the doggy gets mad then a man comes by with who was selling balloons the bunny picked one of the balloons which was five cents and he did not have any money so he could not buy it his mom came,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 +and the bunny says i need a five cents to buy one of those balloons then the um mother w one give five cents cents to the man then they both got balloons the end the elephant and the giraffe were playing with a ball the ball went in the water the animal was swim and got it the elephant got her ball back the elephant uh the um they were happy they were at the water pool,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 1 +the elephant was pointing at the jump board the elephant slipped the elephant got a owee the safety guard ran the safety guard put a bandaid on her she sat down the safety guard got mad at her no running they were going to play with a airplane the animal was playing with it uh the airplane,0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 1 +the elephant took the airplane the plane went in the water the animal got mad at her the safety guard was coming to check he the elephant said the airplane is in the water the safety guard tried to get it they could not get it a big elephant with a catcher got it she pulled it out the animals airplane was back,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 +they were both happy they were going to make a sandcastle the rabbit puts sand in the bucket he dumped it on the castle the sandcastle broke the dog cried they were going to go for a picnic they took their stuff out bunny ate fast what is that,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 1,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 1 +bunny ate fast he got a sore tummy he was calling the doctor the pup dragged the doctor over there you ate too you ate fast said the doctor the doctor took him with him took him wi the bunny with him bunny was coming to look at the balloon the bunny said wow the bunny untied it it flew away,0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 1,1 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 0 0 1 +dog was mad they were going to buy a new one they did not have no change actually they did not have five cents they could not buy one there was a doctor the doctor gave them twenty five cents for two balloons they got their balloon they were happy one day there was a elephant bouncing a ball,0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +it went into the water the zebra jumped in and ge gets the ball and zebra gives it back to elephant the lady smiles and the giraffe smiles one day they are both laughing and they wanted to go on the board the the elephant said to the giraffe let us go on the board and the elephant slips and he gets a booboo,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +then another el elephant comes running and look at the booboo and he puts a bandage on and now she go she is surprised no running allowed the the other elephant says one day the giraffe had a airplane in his hand he was flying it elephant took it away from him and she dropped it into the pool the giraffe got angry at the elephant but the guy came running,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 1 1 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 1 +and he sees the plane in the water the elephant said it was not me that brought it the other elephant tried to reach it then the l then the giraffe was crying i know a way to get the plane out she put in her thing and got the airplane she is she handed the the airplane to the giraffe and the giraffe hugged it one day rabbit wanted to play in the sand and so did the dog,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +the dog was going to touch it and the rabbit was filling up his bucket rabbit dumps sand on it the dog saw and and the rabbit was horrified the dog tried to fix it one day dog met rabbit and they both wanted to have a picnic rabbit ate and ate rabbit got a stomachache,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 +and the dog was eating he got sick the dog came running to a doctor he said wait a minute what is this problem about it is about him and he is sick the doctor takes him for a walk one day a dog was taking a b wrapped a balloon on her wagon the bunny sees the balloon,0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 +he ties it off he let go and it was floating away and the dog was mad at the rabbit and the rabbit sees balloons a balloons were holded by an old rabbit it is worth five cents you cannot have a balloon if you do not have any money rabbit goes to the doctor we want a balloon,0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 +she paid two two ff nickeles and now they both got balloons um a giraffe and a elephant were friends and they were playing ta with each other and then their ball went in the water and the giraffe went to try and swim for the ball and the giraffe got it and gave it to the elephant and the giraffe was soaking wet um once there was a elephant and giraffe and they wen were friends,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 +and they went to a swimming pool together and the elephant was going to jump in and she and before she jumped in um for some reason she must have forgot something she went she ran very fast with no running allowed the elephant fell down and hurt her knee she was crying and looking at the pain she is crying even more and not looking at the pain then she sat down on the bench and the lifeguard gave her a bandaid and the lifeguard said no running allowed,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 +the elephant and the giraffe went to the swimming pool and they and the giraffe brought a swimming toy with him and and he was playing it and the elephant was just like stare on it on at it like crazy the the elephant grabbed it from the giraffe it looked so neat and then she dropped it in the water the giraffe got very mad at the elephant the lifeguard came and looked at it and and came closer to the elephant and the elephant was ex trying to explain how it happened,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and the lifeguard was listening very carefully the lifeguard tried to get it but he could not the giraffe was crying the both the lifeguard and the elephant were was just kind of staring at it then a girl with a net came and the and they was sup they were like and the girl with the net was pull get trying to get the airplane with her net and she got it for the giraffe the giraffe was hugging it,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +once there was a bunny and dog and and and they were friends the dog was making a sandcastle then the bunny was about to come in with a shovel and he came in and throwed a bucket of sand the bunny dumped it onto the ca sandcastle dog was kind of sad it bro i think it broke her castle she was crying there was a dog and a bunny,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1,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 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 +they were friends and they were going to go to a picnic with each other um the the dog was taking everything out of her picnic basket but the bunny was just eating everything she took out the the bunny was very full and the dog was hardly even eat ate everything the bunny was fat and then the dog was about to drink a little bit of her juice and the bunny had a tummyache then a grownup bunny came along,0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and the and the dog was racing to her and it was like please please please and the lady was like you eat too to eat you bunny and the bunny and the grownup bunny just just went along with each other the bunny and the dog were the the bunny was running to the dog and the dog was just going her wagon in front of her with her balloon and the bunny liked the balloon he was about to pull it off and the bunny was untying it and the bunny was like the the dog was like,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 +and then the bunny untied it and the the balloon floated away they were trying to reach to get it the dog got mad at the bunny un until when the string was just left and then a bunny with balloon lots of lots of balloons came and he said come here come here the bunny and the the man with the balloons came and the bunny was like and the big bunny with the balloons was like which one do you want that one that one the little bunny was like,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 1 0 0 0 0 1 +this this one you can not have this one and then the bunny and the dog was sad and then the the same lady with the other book came and the and the bunny was running to her and the dog was just staying with the bunny with the balloons and and the dog still had her wagon and the and the grown up b girl bunny was the kid bunny was saying to the grown up girl bunny can we get one of those balloons can we get one of those balloons for the dog and the and the and she paid for it,0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 1 +and they each got a balloon two different animals were the swimming pool they wanted to play dodgeball in the water water dodgeball the ball got in the water and the an giraffe was going to get it so huh hm while he was swimming water came out of his mouth and he was all drippy then giggled he the ele the elephant watched when they were at a swimming pool the elephant wanted in the dive the diving board,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 +and there she wanted to run toward she wanted to race towards it but there was a sign that said no running she runned towards here the giraffe never runned and they huh and the elephant slipped and slipped and fall down and hurt her knee lifeguard came running she got a bandaid on it elephant sized bandaid and h bit better and the lifeguard said next time look at the sign they were at the swimming pool,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 +and the huh giraffe huh is throwing air huh super duper flying jet plane he wanted to fly it but elephant wanted to fly it into the water see if it could land on its gear but it w it was starting to sink then the giraffe got angry at her because of the plane in the water and a lifeguard huh s looked at them what is going on and they said the my friend s his super duper jet plane is in the swimming pool it is sinking he try to get it,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1,0 1 1 1 0 0 0 1 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +but he could not reach it it was starting to sink more cried then they s he who is there to swim he got something was all that looked like a big fishing net he got it out huh he got it and he tooked it out and starting stop crying then to the giraffe and got happy he hugged his plane like it was a lost memory hm there were two moles at the sandbox,0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 +one was building a sandcastle and one was building a pail one the bunny when he was done filling it up and patting it down he put it right over the the sandcastle went oh no doggy got sad bunny just whistled the animals going out for a picnic in the woods they found the perfect spot they started chowing down the doggy ate s sandwich and juice,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 +and the bunny got just a tummyache then him drinked his juice and ate a biscuit and the bunny got a sicker the bunny fainted then got there him want to get him to come he got a big tummyache he was going dizzy hm pic picnic was all gone the we bunny went back home,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 1 +one animal had a balloon and the bunny was coming towards this him he say cool balloon he untied the balloon did not know it would float up it went really high they could not get it and the balloon was gone the doggy got angry then there was a balloon saler,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 +he wanted one of the balloons to get to for his friend but he was broke s so decided to get someone who had money the bunny went to get the doctor she had lots of money huh to get a balloon then two balloons for each of them and they were pretty having fun and laughing an elephant was playing with a ball and a giraffe came to play with it um and the elephant threw the ball into the pool,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 +and then they got scared that it would sink the giraffe tried swimming to get it but he could not get it and h um but he got it and he gave the ball back to the elephant and the elephant was happy to see the ball again the elephant and the giraffe seen a diving board and the elephant said and the elephant started running and the sign said no running and then the giraffe tried to catch the elephant,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +but the elephant hurt herself and she had a cut and she got a bandaid and she felt better and the lifeguard got mad at her because the sign said no running the giraffe had a toy airplane and the elephant wanted to play with it the giraffe started flying it and then the elephant took it from him and started flying it and then it sunk underwater,0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,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 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the giraffe got mad at the elephant but the lifeguard went to get it and it was still floating in the pool and then he tried getting it from the outside of the pool and he could not reach it and then someone else came with a fishing net and got it out of the pool and gave it back to the giraffe and he was happy again a rabbit and a dog were playing in the sand they made a sandcastle the rabbit broke the sandcastle,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,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 0 0 0 0 1 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 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and the rabbit got mad and the dog started crying the rabbit and the dog went for a picnic the rabbit had more stuff to eat than the dog the rabbit got really really full and then the rabbit had a stomachache the dog ran to the rabbits mom the dog and and she went to see the rabbit um and the she was a doctor,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 1 0 1 0 0 0 1 +um the rabbit felt better and he went home the dog was with his wagon and his balloon and the rabbit wanted the balloon the rabbit untied the balloon and took it then the balloon flew up in the air and the dog got mad and there was a rabbit holding a lot of balloons and the little rabbit bought a balloon hm and the little rabbit could not buy the balloon because it was five cents,0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the dog saw the balloons and the little rabbit went to get some money from the doctor and the rabbit told the doctor that he did not have any money and she bought the balloon and the little rabbit and the dog had balloons there was this old giraffe and elephant was playing by by the pool with some bouncy balls and the giraffe came up and said can i play then he bumped the ball and then it went into the pool,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1,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 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 1 +then the giraffe swam swam and there was water came out of his ears and the elephant could not look then the giraffe gave it to the elephant and she was happy then he smiled and she smiled the end there was these two elephants the giraffe and the elephant and there was a diving board,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and the sign said no running and the elephant ran and ran and they almost slipped then she slipped and then the giraffe ran after her and then the elephant hurt herself on the knee and the giraffe looked at the sign no running and she sa and the giraffe said no running and the lifeguard came and sh sh the lifeguard put a bandaid on,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 1 0 0 1 0 0 0 0 0 1 +and she was still crying and the lifeguard helped her up and handed her to the giraffe and the lifeguard said no running the end and she got up and she was all better and he flew his airplane and he flew it and slobber came out and the gir elephant looked at the airplane,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 +and she got dizzy then she took it and flew it and the giraffe said uh then it went into the water and the giraffe got really mad at the elephant and the lifeguard came again and he looked at the elephant and there was a airplane in the water and he tried to reach it but he could not,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 +and and the giraffe started to cry and another lifeguard came and brought this net and she tried to get it and she did and she handed it back to the giraffe then the giraffe and the elephant was so happy the end there are these two bunny rabbits playing in the sand they made a castle and they are laughing,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1,1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +they starting to fix it and building new stuff the boy rabbit dumped sand on the castle sh and the a little part of the castle is showing and now it is only sand now they are trying to build it back together the end they are these two rabbits walking down the in the forest they walked and walked they met each other and they started to have a picnic with every bo and with every with that girl,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 +and then the boy rabbit ate everything up and he was full then the girl rabbit looked at the boy rabbit and the boy rabbit did not feel so good and then there was a doctor came and the girl went to get hi her and she pulled and she pulled and they finally got there and she was checking if he was all right,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 +then the doctor took him and the girl stayed there they saw these two rabbits walking down the woods again and one had a wagon and a balloon and the boy jogged and jogged and they looked at the balloon and the boy rabbit untied it and he tied it and it flew up up and away and the girl rabbit got so mad,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +there was another balloons and the girl ma rabbit was still mad and the boy asked the man a question and then the girl was coming over and the man said the balloons were five cents and the girl looked at there and the man smiled oh again there was the doctor again and sh the boy talked to the rabbit and said my sister is mad because i lost her balloon the girl is mad,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1,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 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 +here is five cents and here are two balloons he said they were so happy the end a giraffe and an elephant are bou the elephant is bouncing a ball and they are by the pool the ball falls into the pool the giraffe swims to get it um the giraffe gives the ball back to the elephant,0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 +she thanks the giraffe the elephant and the giraffe are going to the pool the elephant is pointing to the diving board she she is running so she slips she hurts her knee the lifeguard comes to see what happened the lifeguard puts a bandaid on it she the elephant sits on the bench and she smiles at the lifeguard when he points at the no running sign the elephant and the giraffe go to the pool again,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +the giraffe brings an airplane that he is trying to fly and the elephant is just looking at it then the elephant takes it away from the giraffe and she drops it into the water the giraffe gets mad at her the lifeguard comes and see what is happening the elephant is trying to explain what happened the lifeguard tries to reach it and he can not reach it and the elephant and the giraffe starts crying,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 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 1 +then another elephant comes with a um net and puts the net in the water and tries to get the airplane and she gets it out and the giraffe is happy again um two people two um animals are in the sandbox they are building a sandcastle one of them is dumping sand over the castle the sandcastle breaks because all of the sand and one of the animals gets sad two animals are going on a picnic they bring lots of food,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,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 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +and one of them is drooling over it one of them eats it all up and he gets a tomach stomachache and the doctor comes to see what is wrong with him she she one of the animals is dragging her she is she she comes and see what sees what is wrong and she helps him two animals one animal comes to see the other animal one animal looks at the balloon that she has,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +she is he is taking it off of the wagon and it flies away then one of them gets really mad then they see the balloon man and he probably goes to buy her another one and she asks for one balloon and the balloons are five cents and he is looking in his pockets and he is sad because he does not have five cents and then the doctor is just looking at the view,0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and he goes and asks for five cents and she gives the balloon man five cents and then they both get balloons an elephant is playing ball with a ball and then a giraffe is just looking at looking at the elephant like wow and the now the the elephant was bouncing it and it fell into the water and now the elephant is sad so looks like the giraffe is going to go get it and now the giraffe jumps in and is swimming to get the balloon the ball,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 +and so now she got it for the elephant and the elephant is helping him out and now the elephant is happy and the giraffe is happy too um hm um they are standing in front of a pool the giraffe and the elephant and looks like they could be feel like swimming that is all and now the elephant sees the diving board and the elephant wants to go diving into the pool and the elephant is running to go get to the diving board,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +and the giraffe is running after her and then she fell and hurt her knee and looks like she is going to cry and the giraffe is running to help her and then the lifeguard comes and is helping her and the giraffe is helping her too and now she is crying and the lifeguard is putting a bandaid on her leg and now the the lifeguard is carrying her to a bench and the hiraff the giraffe is helping her,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and the lifeguard is mad and is say and is telling her look at the sign it says no running on it and the giraffe and and the um the elephant looks like he is looks like she never i dont know i can not i dont know what she is doing let us see like hm like he is going to get very mad at her now the giraffe has a little airplane and the elephant wants to play with it too and now the giraffe is trying to make it move and the elephant is looking at it like wow and now it is the elephants turn and the elephant is trying to fly it now and now the giraffe is looking at his plane because the plane fell into the wa swimming pool,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 1 0 1 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 1 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and now the giraffe is mad at the elephant because his airplane is sinking into the water now the lifeguard looking at them and they are looking back at him now she is trying to the elephant is trying to explain to the lifeguard that the plane fell in and is asking if they can he can get it out for them and the lifeguard is trying is on his knees trying to ah get it out of the water and both of them are looking at him and the lifeguard looks like he is using all his might and now the lifeguard could not get it and the elephant s felt sad and so did the giraffe,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 +now a lady comes and she has a little net she said she would get it for them the airplane and now she is using all her might and looks like she got it and then she got it out for the li for the giraffe and the giraffe was happy and now the elephant and the giraffe are both are both happy again um two a bunny in the sandbox making a castle and another one is out on the outside going to come in and then now they are both making a bigger and bigger one,0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +and that is all that is all i can see and then one of the bunnies is pouring so much sand on and the other one is i think it is scared or something and now the sand now the sandcastle was broken and the other one just looked normal and now she is trying and trying to make a b another one because it is all broken two bunnies are walking along in maybe a forest or something and they are holding a picnic basket two picnic baskets and now they are having a picnic and all and they are eating,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +actually one of them is eating with all the food and the other one is just sitting there with his sandwich in his hand and now they are both eating and now one of themis eating and the other one has a stomachache and the other one really does not know what to do because he has a stomachache and he and he is getting dizzy and then a doctor was walking along and the other one came and told the doctor that he was that he had a stomachache and so now she is pulling the doctor to come and get the person the rabbit actually,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 +and now the doctor is operating on the guy little bunny now the little bunny is fine and he is going home with the doctor and the other one is sitting by the sand box thing or whatever the big picnic picnic thing now the two bunnies are walking along and one of them is pulling a wagon that has a balloon attached to it and now the other bunny never noticed the um balloon and is looking at the balloon and pointing at it pretty funny now the the bunny is trying to untie the balloon and the other one is looks kind of scared,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 1 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 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the balloon flew away and they are both hopping and trying to get it to catch it and the balloon gone and one of them look is just looking up and the other one is very mad now the other one sees a man selling balloons and then so he is walking along k to get a balloon for the one he made fly away now he is say he is saying to the thing the man can i have a balloon looks like it and now he got now he did not have any money for the balloons,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,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 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and li and uh the guy said it is only five cents for a balloon and then hm he looks um he looks weird now they are both looking at the guy and the guy looking down at them while he is holding the balloons and now she is running to one of the rabbit guys are running to the doctor that they saw before and the doctor there she is running to the doctor maybe to get some money and now she is he is um showing the bunny what he needs what she wants and now she is paying for it and both of the kids are happy and now they both got a balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and they are happy and the doctor is happy too it is over there was a um elephant that had a ball and um a giraffe wanted to play with the balaloo the ball too but the balloon accidentally gotinto the w into the swimming pool and and the elephant was very worried that it would it would it might sink and then the cow the giraffe came over to s to get it swim after it to get it and then he got it and he gave it to the elephant so she could play with it with him,0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 1 +and then the elephant and the giraffe came came to be friends and also they wan and they also played t with the ball together the end there was an elephant and um a g gir giraffe and the elephant ran over to the diving board and then she accidentally slipped then she and then then the giraffe came running after to see if the elephant was okay and then and then then the elephant started to cry because it really hurt she scraped her knee then the lifeguard came running over and said do not cry,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 +i will help and then he put on a bandaid on her on her scraped knee and then then she stopped crying and then the lifeguard helped her get onto the the bench so she could go over and rest her knee for awhile and then she can go back swimming and then she did not then the lifeguard said you must look at the signs that say no running or no doing anything just in case there was something slippery or you can not go on the diving board the end there was a giraffe that had an airplane and he really like it lots,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 1 0 0 0 1 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 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 +and then an elephant wanted to play with it and then he started playing with it even more and then the elephant wanted to play with it then the elephant grabbed it from the from the giraffe and then he was very angry and then it fell into the water and then they could not get it so they so they did not know what to do and then giraffe got very very angry at the elephant and then the lifeguard came over and and said what is the problem,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and elephant explained i grabbed the the toy airplane from the giraffe and then i accidentally threw it into the water and then the lifeguard tried reaching for it but he could not get it then the giraffe started to cry about he liked it then somebody came over with a net so they could get it then she reached over and got it for them then he got it back and he really really liked it again and then the elephant really really wanted to play with it,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 1 +but the giraffe was too busy playing with it the end there was a bunny and dog they wanted to build a sandcastle together and then the bunny took too much sand and then he dumped it onto the castle but the castle got ruined accidentally accidentally and then the dog was sad because her castle got knocked down the end there was a dog and a bunny,0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +they wanted to have a picnic together and they each took out all of their stuff from their baskets and ate and they ate and ate and ate until the bunny got so full he wa he felt like he was sick and then the puppy dog went to go and get doctor somebody who could help and then and then the doctor came over and helped the dog and the bunny and the bun and the doctor helped the bunny be all right again and then the bunny got taken someplace where he could be all right the end there was a dog that had a balloon hooked up onto her little wagon then the bunny wanted to have the balloon,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and so the dog let the bunny look at the balloon and then the bunny untied the balloon and then he lost the balloon but then the dog very an very sad then the dog get got very angry at the bunny and then they saw a a s a person that was selling some balloons an and then they came over to him and said can i please have another balloon a balloon but the rabbit but the little rabbit came over and said can i please have a balloon but the person said no you need some money and then he and then he showed him how much money he n how mu how much money he needed for a balloon,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +i and it was quite a bit and he did not even have any money so they could not get another balloon for the little dog and they and they were very sad and then they came over to a doctor and and the little bunny said can can you please help us get a balloon and then the doctor said all right i will get you a balloon and the and the doctor gave the the person um as much money as as they needed and then they enjoyed their balloons again,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +the end there was an elephant playing with a ball near the pool and the and a gira and a giraffe came wanted to play too the ball fell right into the pool the giraffe swam right towards w jumped into the pool and went to go get the ball the giraffe got the ball for the eleph baby for the elephant and the elephant likes the giraffe that is all the elephant and the giraffe wanted to go swimming the elephant was going on the diving board,0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +the elephant was running then she slipped she h cut her knee the lifeguard came the lifeguard put a bandaid on the lifeguard put the the elephant on on a b the bench w and the lifeguard pointed to the sign that said no running the giraffe was playing with his toy plane h um he did loops and stuff with his plane the elephant grabbed it,0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 1 0 0 1 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 1 +and it landed in the pool the giraffe was very mad the lifeguard came to s to see what the problem was h he uh the lil the little elephant told everything what happened the lifeguard tried to get the air the plane but he could not reach it then then a then an elephant with a net came the elephant with the net scooped out the plane and gave it back to the giraffe and he was happy again there is a little bun a bunny and a th and a dog,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +they are going to play in the sandbox the dog was building a sandcastle and the wa the rabbit was putting sand in a bucket he the rabbit dump dumped the sand on the sandcastles the rabbit and the do the ra the rabbit was like what happened and and the dog was trying to rebi and the little dog tried to rebuild it the little dog and the rabbit they saw were going for a picnic uh uh the the dog had a sandwich and the rabbit had carrots sandwich cake chi he had all kinds of st stuff,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 1 0 0 0 1 1 0 1 0 0 0 0 0 1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 1 0 0 0 0 1 1 1 1 0 0 0 0 0 1 1 +then he then all his food was gone then he felt sick the dog ran to get a doctor sh the dog showed where the doctor where where they were having the picnic the do the doctor they were saying ah with his stick and i think that is what he did then he felt all better the little dog was pulling a wagon with a balloon the ra and the rabbit came along the rabbit saw the balloon on the wagon tied to the wagon,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 +the rabbit untied the balloon the balloon floated away the dog was very mad the rabbit ran to a balloon man the rabbit wanted a balloon h he he had no money so they so they were very sad then the do then the doctor was walking along and the rabbit went to ask for some m went to ask for some money sh sh he told the the rabbit told the doctor everything,0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 1 0 0 0 0 1 0 1 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 1 1 +the ra the doctor gave money m money to the balloon man so they got the two balloons and now they were very ha and they were very happy uh he walks to a horsey and then the horsey fell falls down then the horsey fell in the water and then he gives the ball back to him and then they play with it and that is the end so um he goes in the sandbox with the elephant,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 +and then they walk in the into the sandbox and then they walk into the hill and then they laugh and then they got a scr and then elephant got a scrape and then he then he started to cry and then he he sat up and got a bandage bandage and he said are you okay the end um he found an airplane in the sandbox and then he and then the and then he flies it up in the sky,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and then he stands up and then he stands up in the sandbox and then they br broke the airplane in the sandbox and they dropped it and then he he it was stuck in the sandbox forever and then it was more stucker and then a lifeguard came and get it and then he got it with his and he reached it with his arm and then they were sad the lifeguard got it for him and then the lifeguard poured on the net,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 1 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 0 0 1 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 0 0 0 0 1 +and he got it and then he said here you go and then he keeped it forever the end he the dog goes in the sandbox and then he starts making the sandcastle and then the rabbit spills on it and then he and then it is all gone it x up then it was all covered up,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 1 +the end he goes looking at his favourite friend then he goes and stickes out his tongue then he had a drink and then he lies down in the sun and then he walks away then he pulls on his shirt and then he and then he talks to him and then they walk away he comes along with a balloon with with his wagon,0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +then he comes and then he walks with him then they stopped and walked in the snow then they lose the balloon and then they stop and get angry then they walk away and saw a man with balloons then they said to him balloon and then he gives him one and then they walk away and then they think the rabbit the big rabbit,0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and then they walk to his mom then they walk to their mom and then he comes and walk to the lady and then he comes and then he gets a ba another balloons balloons the end a horse a giraffe and an elephant were bouncing a ball the ball in the pool and the giraffe was scared then the giraffe um went in and swam and got the ball out then the elephant was happy,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and the giraffe was all wet and they were both happy the giraffe wa was scared to go in the water again so the elephant went in and she saw a diving board and she decided to go on the diving board and jump and then the giraffe said maybe that is a good idea the elephant went slipped and fell and the giraffe was running to the diving board the elephant hurt her her knee,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and the giraffe was scared so the giraffe helped the elephant the lifeguard came and saw the giraffe um was taking care of the elephant the lifeguard put on a bandaid it did not hurt any more so the giraffe did not look scared any more and the lifeguard was happy and then the other elephant the lifeguard looked at a sign and it said no running the giraffe and the elephant were happy,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +so they decided maybe we could fly a the giraffe decided maybe he could fly the airplane in the water and then got and then the elephant could dive down and get it and then the giraffe would throw it again into the water and the elephant would keep on getting it then it then it was then it was wanted real crazy so the elephant let him the giraffe would make made a tongue the elephant grabbed it from the giraffe and the elephant looked and the giraffe looked scared and the elephant looked happy,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 +the elephant threw it and it went in the water and the elephant looked scared and the giraffe did not know what to do the giraffe got mad at the elephant and the elephant got sad the lifeguard got mad again and they both got and they both did not know that again so the lifeguard looked nervous because the elephant looked scared and the giraffe was sad,0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +lifeguard was going to get it so the lifeguard was trying to get it and the giraffe and the elephant looked nervous the giraffe started crying and the elephant was sad and the lifeguard was nervous oh then another elephant came with a net to get it out of the water so the they could have it back again and he tried to get it out but it mm it she tried tried a lot but it would not come out,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 1 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 1 0 0 0 0 0 0 0 0 0 0 1 +then he got it out and they were happy then the giraffe was happy and the elephant was too a bunny and a dog were building a sandcastle the bunny got scared and the dog was nervous they made a sandcastle then they both were happy they poured and the rabbit poured sand over the dogs sandcastle,0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +the sandcastle broke down and the rabbit was the sandcastle did not break down and the rabbit was nervo and the dog was nervous and then the dog um tried to build it up but he was crying and the bunny was nervous the dog and the and the bunny were collecting coconuts and berries and they saw each other and then they said hi to each other and then they were happy,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 +and and they and they had a picnic they went home first and then they went back to the spot they were going to have a picnic at and then the bunny ate a lot and the dog was nervous and then the bunny ate too much he got so fat and the dog um ate the rest the rabbit did not feel well and the dog was nervous,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 1 +so the dog called the doctor and the doctor came and then the dog told him that the rabbit ate too much so he did not feel well so the doc so the dog dragged the doctor there because the rabbit was not feeling well the doctor saw that the dog that the rabbit was not fee feeling very well so um the hh he he was scared and then he felt then the doctor made the rabbit feel better and the dog was happy the dog mm pulled the wagon with a balloon tied onto it,0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 +and the rabbit saw that the dog was pulling a wagon with a balloon on it the rabbit wanted the balloon and the dog looked nervous the rabbit tried taking off the balloon the dog looked scared the rabbit was sad because it when he got off the balloon it started floating away so they were both and then one um wen and the rabbit was sad and the dog was scared the rabbit was nervous nervous and the dog was mad,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 +there is a balloon man over there uh it it was going to another bunny hu him too can i have a and the and he said um can i have a balloon and the dog was way back there so the and the rabbit was up to get a balloon and then the guy the balloon man said balloons five cents so the rabbit checked in his pocket for any money but he did not have any the rabbit looked shy and the dog did not look shy,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 1 0 1 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and then the um man looked nervous the doctor was coming and the rabbit was running to the doctor and the balloon man was selling and the dog was nervous and then um he showed the doc the rabbit showed the doctor um that he wanted a balloon to buy to five cents to buy a balloon so he could have a balloon and the dog could have a balloon then he gave him five cents for each balloon and then the balloon man gave him two balloon and then they were were happy and the balloon man was happy,0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 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 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 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 1 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 1 +and the rabb the doctor was kind of nervous the doctor was real nervous and they were both real happy uh uh the the elephant and the zebra the the zebra were going playing ball and that was on this page and and then and and then um and then the ball falls in the water and then zebra goes in to to swim to it the and then the zebra brings it to the elephant and the elephant felled in love with the zebra fell in love with the what,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 +zebra oh they went on the they are going to go on the diving board and then she goes running to the diving board then she slips and and hurts her knee gets a scrape on her knee and then the lifeguard comes to put a bandage on it and then she starts screaming and then she w and then she does not puts her leg up like it is broken then the lifeguard says no running the z the zebra finds a a plane,1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 0 0 0 1 0 1 +and the elephant said wow and then he starts flying it then elephant grabs it from the zebra and then then sh and then she started flying flying it and and and then she drops it into the water then it floats and starts sink sinking then the lifeguard comes s and then then the little boy zebra said can you get my plane and then and then the zebra said the elephant was flying it and then she dumped it into the water,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +the elephant lifeguards arms tried to grab it but she he could not then the l then the lifguard gived her trouble a and the zebra was crying and then she go and then the and then the mom gets a net and s and grabs it out of the water and gets it for the little boy then the boy was happy and they started hugging it and it was done the end there is m they are ma they are making a sandcastle,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 1 0 0 1 0 0 0 0 1 +and then a friend came and then he dug he digged some sand and put it in a bucket while the other kid was making a sandcastle and then he dumps it on the sandcastle and then and then the rabbit was mad she uh the other one st and then the mouse starts crying the end they go for a picnic and the mouse and the rabbit goes for a picnic the rabbit starts eating loud and then the rabbit got fulled while while the mouse was eating lots of sandwiches and ju drinking juice and then the rabbit ate some more,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,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 1 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 +and then he had a and a and then he got sick then the doctor came to see the rabbit and the doctor was not then the and then the mouse was dragging the doctor and then the doctor see said s seem seen what is wrong uh and then he got all better they are going to the circus and the balloon pops he ties up another balloon then it flies away and then there is and then they can not move their wagon,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +there there is a balloon man and the rabbit says i want one of those balloons um and he can not buy any because they are five cents and then he and then and then he and then he dumps his pockets out and he goes to go running to his dad to ask his dad for a balloon for his friend and the doc and then then then his dad sa says okay then they bought two balloons and then they pop them he said hi i love those rocks,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1,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 1 0 0 1 0 0 0 0 1 0 1 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 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +then that rock is falling and he that one is swimming and he gave that rock and he play and he can play with it now the end and uh b there was is elephant and this one he was jumping over an and they can run faster hm were you going to help turn yep,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 1,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 1 1 0 1 0 1 0 0 1 0 1 0 0 1 0 0 0 1 1 0 0 0 0 1 1 0 0 0 0 1 1 1 +okay he said i want to go run faster and jump over it and he said you are not big enough and he said oh yes i will she ran and and then slipped uh and he will say y ouch and that hurts he has a booboo and he tell his mom and then he still cry,1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1,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 1 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 1 +then he sit on it and he could help and do not play on the rules on the the pools once upon a time there was the this one is re really sheal he he said i like your airplane he said thank you and then it flies and he will catch it and he catch an airplane it does not fly but suddenly he the airplane did not fly up,0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 +he looks so angry and then and he said what is the matter he said i was dropping it and and he take it and it falls down then why did you did that i did not do anything he said maybe i can get it and it is too hard maybe maybe i could try again,0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +i will catch it in that net he scoop it up and that airplane works and he is so happy the end a bunny l loves the dog and they shovel the and they and that dog build a castle and the castle and that bunny just well it will fall down the castle and that bunny he he melt them he did not do it,0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 +they fix it up he waved at bunny and they eat some snacks and the rabbit is tummy is full and they got a tummyache he tell him he just look at it he just got a tummyache she really not feeling all better then she feels all better,0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 +he waved at the dog and he gets the balloon then he show at the balloon then she pull it up he did not she did and it go up and he was mad it she tell them and he look at the balloons and he said would you please get that balloon,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 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 1 +and this present number five and they love them and they tell him again and he said the balloon will not get it wo he will not get it back and they all had two balloons and last year they have a balloon the end the zebra was going to the zoo and the elephant wanted to come and show them his practice at the circus and then they saw something inside a water,0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 1 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +but the giraffe wanted to get that ball because the elephant dropped it and the elephant said thank you for getting it the elephant wanted to go swimming but it ran jumped into the pool and it hurt itself is that what is on this page the elephant ran then when it ran it just ran fast and then it um it fell down and it hurt its knee,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then another elephant came what was the lifeguard he and the lifeguard saw the elephant hurt itself then the lifeguard said you can not swim without a lifeguard if it tells you and it said go on the bench and no more going swimming until you calm down and i say so the zebra w the giraffe wanted to put his airplane in to see it swim and it and it did and then it went in the water and the giraffe did not know how to get it out but then the elephant took it from it,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 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 0 0 0 0 0 0 0 0 0 1 +and then it dropped it in the water and then the lifeguard did not know how that it airplane got in said um that is the giraffes airplane and the lifeguard tried to get it but he could not reach it and the giraffe was sad because nobody could get it then another elephant and it got um a thing what you catch fish with and it tried out to do it but it got it the airplane,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 +the elephant who caught fish gave it to the giraffe and giraffe said thank you giraffe was happy he was making a castle in in the beach what he got the sandbox he won and he made a castle there then when he was done making the castle he wanted to make another one and then he tipped sand on it but he was afraid if it was going to crash and it did crash,0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 +but he had to make another one but it was hard to make they were going to go and have a picnic and the bunny wanted to come and he said yes they eated carrots and they listened to some music and the bunny rabbit was full and the puppy dog was not and then the bunny rabbit got sick,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and the puppy dog was not very happy and then um the bunny rabbits grandma came and the puppy said the bunny rabbit is sick and they said come here come here and she came and she looked at the bunny rabbit and said you are sick then they went back home the puppy dog was all alone having a picnic they were going to a circus and they brought a wagon with a balloon on it,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then bunny wanted to grab the balloon but the puppy dog would not let it so it said it is putting it in a knot he said then it flied away and he was mad at the bunny rabbit and then there is a man with a whole bunch of balloons and puppy dog was mad but then the bunny rabbit was not he wanted some balloons and he said please can i have a balloon,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +but the man would not let him he had no money but the puppy dog did so the pup but then the bunny rabbit saw another bunny rabbit asked can i come to wherever you go can i have a balloon if you have some and he said but then he realized that is not a man that is a girl said y yes then he gave her a balloon the that is a giraffe who is laughing with the elephant,0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 1 1 0 1 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 +and then he saw the ball and then the elephant was scared and then the giraffe gave him the elephant the ball and then the giraffe came up the sidewalk and then the giraffe came up the sidewalk the the giraffe and the elephant were too scared to jump in the water and then the elephant was laughing but the giraffe was like ssss scared and then the elephant s was like tripping and then the elephant was hurt his knees and then the elephant cried,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 +then the elephant camed home and then the elephant was laughing and then the swimming man said he was pointing a hand the swimming man was what pointing his hand the elephant was laughing and the giraffe was laughing and then they were playing with the airplane and then the elephants turn to play the airplane but they dropped it in the water,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then they the elephant was scared but the giraffe was angry and then the swimming man was all mad at them but he said what happened and then he was like wo saying uhoh and then he was trying to get it but he could not and then the giraffe was crying and then the girl was trying to get a fish tank and then get it and then she got the airplane,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and then sh she gave it back to the giraffe this one the bunny was digging but this girl came and then dig and then they they both shared then they put it on together but that girl was scared and then they were like all sad and they made it back again the bunny said hi and then they went to a field tr trip,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 +and then they ate carrots but they guy did not got nothing and then they they both um shared food and then the f the bunny um dranked and the bunny was fatter and fatter and fatter and but he flew it off to this doctor bunny and then he s told the doctor that he is fff he needs help and then he said go to the doctor and then the doctor ss went to the dd to his workshop this guy was holding a balloon with a little car,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and then he was saying look my balloon and then he pulled it off and give it to the the other guy but it flewed up the sky and then the dog was all angry and then they ss and then they sawed the balloon man and then he said can i have that and but it was five dollar and then they were all sad but they saw the doctor and doctor can we buy this,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +can we buy the balloon doctor and then the doctor s gave him the money th then they b got another balloon first there is an elephant and a giraffe and the elephant is bouncing a ball turn and the elephant i think bounces it into a pool and then the giraffe dives in to get it and then the giraffe comes back and gives it to the elephant and the elephant looks like he said th looks like he is saying thank you,0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 +um there is a giraffe and an elephant standing by a pool and there is a sign that says no running so the elephant points at the diving board and she runs over there and she slips and she scrapes her knee and then the lifeguard comes and help and puts a band bandaid on her then she then he put put puts put her on a bench to sit down and then the lifeguard points his finger out saying bad i think there is an elephant and a giraffe,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,1 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 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and the giraffe is flying a toy plane around and then the elephant um looks at it and i think says that is interesting so the giraffe gives a turn to the elephant and the elephant is th um threw it into the pool and the giraffe gets mad at the elephant so the elephant asks the lifeguard to help and then talks to hi the liteguar the lifeguard what happens and the lifeguard tries to reach and get it then the lifeguard does does not know what to do and the giraffe goes on his knees and starts to cry so a dif i think a person that swims takes a n takes a net and tries to scoop it,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and she s scoops it up and gives it back to the giraffe and the giraffe holds it by like this by his neck and the elephant um has his hands like this like that in front of the giraffe there is um i think a bunny and a dog and the dog built a sandcastle and the bunny i think wants to help um the dog is smoothing the sides out while the bunny is digging sand out for the sandcastle and then the bunny pours it all over the sandcastle and he and it destroys the sandcastle and then the dog cries and tries to build a new one,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 1 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +um there is a bunny and a dog that have their baskets with uh f food in them and then the bunny dumps it all dumps it all out and the dog just takes it one at a time and then the dog is still eating and the bunny is laying on the ground with all this garbage around and then the dog is drinking a juice box and i think the bunny feels sick then uh and then the dog i think finds a doctor and the dog is pulling the doctors sleeve over to where um the bunny is laying down and the the doctor takes a thing and this little stick and like points at something,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 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 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and then the doctor brings the bunny i think home and uh the dog is standing b just standing still with a th a thing behind her back first um the dog is pulling a wagon with a balloon attached to it then the dog drops the handle and the bunny tries looks at it and then the bunny tries to untie it and it s blows away into the sky and then the dog gets mad at him and then the the da the dog is mad the bunny runs over,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 +and he sees a a balloon man selling balloons and the bunny takes one of the balloons and and on one of the balloons it says balloons five cents and then the bunny pulls out the inside of his pockets and he has got no coins so the balloon guy was holding the balloons and the bunny has his hands in his pockets with the dog behind him the um the the the p dog is standing by the balloon guy and the rab the rabbit sees this this p this girl this lady and then i th she tells he tells the lady to i think b get him a balloon,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 1 0 0 1 1 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 0 1 1 0 0 0 1 +and then the the lady takes out her wallet and puts some coins in her hand and they uh each get a balloon the elephant start the elephant starts screaming with the elephant starts doing with his trunk he s makes lots of noise do you know about the elephants oh it does not it is your story you make it up whatever you think and then they saw a egg in the water swimming they want to pick it up the elephant said uh why there is a egg,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 +i want to jump in the water and get it ah the guy swim in the water to catch it and the elephant is doing this and then the guy um swim and he give the thing for the elephant the elephant said wow and then the elephant went away the end they saw a water they want to swim in there,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 +it is like the two guys the elephant and that guy same and that is it and then the elephant said look i want to swim in the water and then they start the elephant was first the guy was behind him and he starts running i do not know what is he running for,0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and they still run again know what is he running for too and then they stopped and the elephant fell and it hurt his leg that is funny part and then a elephant came and squeezed his and then he put a bandaid and that is it elephant came,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 +and that what is what is this guys long neck what is what is this guys long neck what is his long i can not see it it is your story you make it up and he got a helicopter he flied it in the air it fell in the water it keeped flying in the sky it could not get down he was going to catch it,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +he could not okay shall i turn now oh he he wants to fly it right now the elephant is like this oh you showed me again with your face and then and then he wants to fly it the elephant catched it he must have wanted to fly it and then it fell in the water uhoh and then that guy gets mad on the elephant cause it is because it got s um it is got snuck down,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 1 1 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 +and it got stuck now and then the other guy said here is the bigger dad and the eleph the other guy the other one said look the helicopter sneaked down oh the guy the guy is trying to catch it it gots all the way there and then they could not catch it that is a long one and then the guy got a like net oh the net catch everything,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 1 +he catch fish but it is hard to catch fish they are fast and helicopter is it is just a toy down there you can catch it fast okay should i turn and then the guy catched it and he give it back to the other guy and then the elephant is really happy and he went,0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he what the ele elephant is happy and he went because he got that thing the end the other guy was building his sandcastle and the other guy with glasses they was happy and then turn the page now and then the guy w wants to mix it because he can not see or watch the guy put the pail,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +it is going to wreck it now it is lots of sand and then he wrecked it that guy that is his sandcastle he wrecked it and then the other guy build another sandcastle but it is not nice the end the guy said bye to the guy the guy with the glasses and then he went,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 +and he sit and he was playing with the sand they was eating and snow uh and snow came down um and then they was cold and they went in the house and then they came back out and it was so windy and then they came back out it was raining,0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1,0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 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 1 +and when they came back out it was sunny and when they came back out it was windy again and when they came back out it was sunny the end um the guy went with the pail with a balloon on and then they see it they want to get it to the sand they could not find the sandpile and then and then the other balloon fell in the sky balloons can fly in the sky when it is windy because it is not heavy,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 1 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 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the guy wants to take it off whoa it forgot to go it is not hanging in tight like that it is like this flied off it is gone he can not catch it in the air oh yeah if that guy was with it then it is windy so hard it can fly with it if it is hanging on,0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 +oh it is flew he took it out and it flied up and then th and then the balloon pop and the guy was mad and the other guy was sad and the other guy bought lots of balloons and he gived them to the kid and the other balloon popped the last one and then the other one popped that is it,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1,0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 +and then another one and then it is not going to pop and then okay anything to say about this page here um page eleven and then the guy look look how many balloons he say and then he give him some money and he and then they jumping to get the balloon the guy can not see,0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 +they just gather by his hand and he went and then they hung on their arm and then they hanged on on the balloon they hanged on on a balloon and then they smiling the end it looks like a giraffe and an elephant that are going swimming and they are playing with a ball although it although when um they were playing with it it um maybe bounces in the water and the giraffe tries to swim and get it,0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and the giraffe got it and gives it to the elephant and the elephant thanks him and the giraffe is smiling it looks like they might want to dive in and go swimming looks like the elephant is pointing to the diving board to um and he wants to dive and um the elephant starts to run although it is slipery so she starts to slide and she falls and hurts her knee,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then um the lifeguard comes and he puts a bandage on it then he um saying probably that there is a no running sign and that you can not that you should not run cause you can slip and fall and then he is pointing to the sign that says no running looks like they are talking about something and then he and then the giraffe looks like he is showing her his new airplane and she looks like she is getting dizzy watching it going around in circles and she takes it from him and starts to looks at him and the giraffe looks like he is getting mad and then she accidentally dropped it in the water,0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and she looks like sh she is scared or something and the giraffe looks like he is m really mad and then the lifeguard comes along and probably says what is that and what is it doing in the pool and then the elephant is probably blaming it on the giraffe that he threw it in the water and the lifeguard is trying to catch it trying to pick it up out of the water although he can not reach it and the giraffe looks like he is getting really sad so he starts to cry and then this lady elephant comes along with a net and she tries to fish it fish it out with the net,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and she gets it out and gives it back to the giraffe and he is all happy and he is hugging it it looks like two it looks like a bunny and um and a dog or something playing in the sand and they start and the bunny looks like he is helping the dog make a sandcastle and the bunny pours a whole bucket of sand on it and the dog looks like he is getting sort of worried and the bunny s gets surprised because it is all covered in sand and the dog starts to cry and the bunny looks like he is embarrasseed,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +it looks like the dog is going for a picnic and the bunny is coming along with him it looks like the bunny is looking at all this good food that he wants to eat and he eats it all and he and he i guess he has a stomachache and then he starts to feel sick and it looks likes he is fainted and the puppy the dog goes to find somebody and he fi h um he finds this um lady and he pulls the lady to where um the bunny dropped out,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 1 +and the and the lady was a doctor so she tested him to see if he was awake or not and she took him and she is probably going to take him back to the doctor office to check him up it looks like she is pull the dog is pulling a wagon with a balloon on it and the and the bunny is coming like running along and he sees the dog and he is waving and the rabbit pra um looks like he is saying um like nice balloon and then the bunny tries to pull it off,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and the dog looks like scared that it will fly away and then the bunny accidentally lets go of it and it starts to fly up in the air and they are trying to catch it although they can not and the bunny is looking up at the balloon and the dog is getting really mad and then this um old bun this bunny is selling balloons and the bunny sees it so he runs over and then he asks the bunny the older bunny for a one of the balloons,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 1 +and then the balloon man said that the balloons are five cents and the bunny looks in his pockets and he does not have any money and the bunny looks sad because he can not buy another balloon for his for the dog and then the bunny walks over to this lady and he asks her for some money and the lady gives him five cents and then they each got one of their own balloons there is an elephant and a giraffe by the swimming pool and the elephant is banging a ball with his trunk,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,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 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the elephant kno accidentally knocked the ball inside the water and the giraffe had to go and get it he had the giraffe had to swim inside the water to go and get the ball the giraffe got the ball back for the elephant and the elephant and the elephant was happy to get the ball back the elephant and the giraffe are standing by the water the elephant ran closer to the water the elephant slipped and the giraffe is running to s stop the elephant from falling on the ground and the elephant fell on his her knee and hurt it,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +the giraffe is trying to fix the elephants knee and this oth another elephant came and put a bandage on it and all the giraffe the elephant and the other elephant are the giraffe is sitting down and the gg giraffe is standing up and the elephant is still the other elephant is standing up and the girl elephant is sitting down the elephant is the elephant and the giraffe are happy the giraffe is playing with a toy plane and the elephant is looking at it and the elephant took the toy plane and started to play with it,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the elephant dropped the toy plane inside the water and the giraffe is getting mad at the elephant and the lifeguard came and s looked at the toy plane and then the elephant was looking at the lifeguard and the one the giraffe is looking at the plane and the ele the elephant asked the lifeguard to get that plane out the lifeguard is holding onto the edge and trying to get the toy plane out and the elephant and the giraffe are looking at the plane and the lifeguard can not get the eleph the um plane out so the giraffe started to cry,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and the and another lifeguard grabbed a net and tr and tried to get it out and the other lifeguard um caught it in the net in there and um the everybody was looking was proud and that other lifeguard got it for the giraffe and the giraffe was very happy and the elephant and the giraffe are very happy to get the plane back there is a rabbit and a dog playing in the sandbox and the rabbit and the dog are making a sandcastle and the rabbit fulled the bucket of sand and broke the sandcastle and now the rabbit is a bit frightened of what happened to the sandcastle,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the dog ha is trying to make the sandcastle all over again there is a dog and a rabbit they are going to have a picnic and the rabbit took all the food out and is getting very hungry the rabbit ate all his food and the dog is still drinking and eating his food very nicely and the rabbit is very ff full and the dog is still eating his food and the dog sees a doctor and ran over to the doctor and the doctor is the dog is pulling the doctors leg arm to move it over there,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the doctor is gon going to take um the the bunnys the rabbits uh is going trying to fix the rabbit and the rabbit is all better now the rabbit is running over to the dog that is pulling a wagon with a balloon on it and the rabbit is trying to grab the balloon and the rabbit is untying the balloon from the wagon and the dog is very proud and then the balloo the balloon slipped out of the rabbits hand and went flying up in the air and they are all try and the rabbit and the dog are trying to catch it and the dog is very mad at the rabbit and they s and the rabbit sees another man selling ballo a balloo a man selling balloons,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 1 +and he bought one the rabbit bought one balloon and he and the rabbit has no money for balloons and th and the rabbit and the dog are trying to get a balloon and the rabbit went to th to the to this other rabbit to the doctor and the doctor saw him and the the ra other rabbit is pointing to the balloons and the doctor is buying a balloon and both of them have a balloon the girl has three ba balls and she is and there is a a big one and a medium sized and a small ball,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and and there is um a giraffe that would like to play with one by accident he s the girl throws the ball into the pool the giraffe goes try he is in to swim for it he gives it back to the girl and says that is okay he is smiling at the girl the girl elephant and the boy giraffe are looking at the pool okay can you talk a bit louder cause someone is making noise out there what is next the girl the girl is running the girl is running mm okay,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1,1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 1 0 0 0 1 1 1 +she she accidentally slips and she hur and she hurts her knee and now she is crying crying the lifeguard comes running he put the bandage on on the um bruise and she now she is sitting down on the um bench he points to the sign that says no running and she was running the boy giraffe have a toy airplane and the girl giraffe the girl elephant is asking to play with it,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and he wa and he um and he is showing her how to do a loopdeloop with the airplane and then sh and then she takes it sh she is looking at it like it is hers she accidentally drops it into the pool the um gira the boy giraffe is getting mad at her the la the l when the lifeguard sees he he is kind of happy and he is kind of mad the girl the elephant is telling hu him what happened he is trying to reach out to get it the boy giraffe is crying because they can not get it,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +the the other gir there is another girl elephant that has a net and she thinks that she can get it and she can get it she giving it she is giving the toy airplane back to the giraffe and he is hugging it because he loves it there is a rabbit that is making a castle and there is another rabbit that wants to help that rabbit make the castle they they are helping make the castle together one one is building the castle and one is making the walls,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 +one one one is ac one accidentally pours the sand right onto the castle and the other one looks embarrassed uh after he pours it on all there is is a tower from the castle and it is all gone and the other one is kind of smiling but one has a frowning face and that other that other wa one that had a that was smiling is now crying and the other one is thinking of what he did that is the end of the story there is two there are two rabbits,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 1 +one is running to the other with a pis picnic basket and the other one is holding a pis picnic picnic basket one said one has opened up his picnic basket and he is eating all the food and the other one is s still opening hers up when he is done all his food he kinds of he kind of faints and the other and the other one is still eating uh he feels kind of sick and and he the other one is still eating the one that was still eating ru runs to get a doctor,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 +and and he is telling her him her what happened to her friend now she now she is pulling the doctor to her fr her friend the doctor is speaking to the boy and to tell him not to eat too quick now the boy is all better and now and now the girl and the boy is going home there is a girl that is pushing her wagon and uh there is a girl that is pushing her wagon and on the wagon there is a balloon and the boy and the boy rabbit is chasing after her he wants he wants the balloon so he reaches out,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1,1 0 0 0 0 1 1 1 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and she is kind of have a frowning face what kind of face a frowning face oh frowning okay when he gets his balloon the gir the girl um kind is saying hey and he is playing and he is tying it to his wrist he lets the balloon go and it floats away the girl is getting really mad at the boy,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 1 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and soon they see another rabbit that ha that is holding balloons when the bo when the boy s when the boy sees that he asks if he can have a balloon the man said it is five cents and the boy does not have any money he says it is okay maybe next time you will have some and when the boy sees the doctor he asks if he can pay for the if sh she can pay for the balloon for both of the balloons i sa the doctor says y yes and um they both get a balloon right here she is paying,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 +and they both really like their balloons there once were two friends and they were playing a game and they wanted to go swimming so then they got there and then they were playing and the ball fell in the pool so one of the friends swam out and got it and then they got it and one of the friends she took it out,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then they wanted to play again there were two friends and they were the same one in the last story and they wanted to go swimming again so they went and then one of the friends she wanted to go in right away so she ran and sh and she wanted to jump in but then she fell and she scraped her knee,0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 +and the lifeguard came and he said oh it is all right here is a bandage here you can sit here and wait til it is better and then she was happy she took a little rest there were once two friends and they wanted to go swimming so they went and one friend bought brought an airplane,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +the other friend grabbed it and said wow an airplane and then she accidentally dropped it in the pool and then the other friend was a l little bit mad so then she said uhoh and he went and then the lifeguard came and he went hmm and then she said i i accidentally dropped the airplane in the pool he tried to get it but he could not reach,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +so then the friend that ha had the airplane he was crying and then one lady she came and she had a net to get it she said do not worry i will get it and then she went and got it and then the he was happy again and then they were both happy and she was happy he got his airplane back once there were two friends,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 1 +and they went and they wanted to play in the sandbox and they built a sandcastle and it was really nice and they needed lots of sand to make it unless unless it would not work out and then he put too much sand on it that it all collapsed and fell and then and then one of them started to cry so and then he wanted to rebuild it once there were two friends and and they wanted to go on a picnic they packed all the lunch,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and when they got there they started to eat and they started to eat and one of them felt really sick so they had to get a doctor and and while the doctor was coming when the doctor was coming he felt really sick and he k he could not wait and the doctor came one of the friends she ran up to the doctor she said doctor doctor help my friend is sick,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1,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 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 1 0 0 0 0 0 0 1 +we need some help so he feels better the doctor said oh my he has a he has a very bad tummyache and he felt better because the doctor made him feel better and then he lived happily ever after there were two friends the same ones in the last story that i read and they wanted to go on a walk so they went and they and they saw and they saw somebody with balloons and they they got one and they tied it on,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 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 0 0 0 0 0 0 0 0 0 1 +but then it went up in the air and they were sad and then they they kept going and then they saw a man another man with balloons and they went they wanted to get some say so they got so they got some and then they left but then they did not have any money and he was sad and the balloon man said hm i do not know if you can get a balloon,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,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 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and they did not d get any and then they saw a lady and see she was and then he asked can you get us some money so we can get a balloon and then so she bought a balloon for them and then they were both happy uh hm once upon a time then there was a elephant going then the ra then the he came and was and a ball was in the pool then he tried to swim in there but he could not,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 1 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 1 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +then she pick the ball up then he was all wet then that is the end of the story once upon a time a elephant came along and that then then then then then she wanted to then she wanted to go but she falled on herself and the more she was running she falled and someone is going to help her and she got a br um a owie then come along elephant came then the elephant came,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 1 +and he and that was a coast then there was a owie going and there was but then there was nothing to do then the animal was all better and he said no running because if you run you fall on yourself i never do that i but i run on a sidewalk and i like like while i was two like once upon a time she did not allowed in something came and and then there was an airplane going in the water and she played it and something,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 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 1 +and she taked it away and throwed it in there um then then he was angry and she and the boy told her you did it on a purpose then a lifeguard came then then the airplane was still in there he wanted it out he tried to reach it but he could not and someone got it but she was very trifle,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 +um then someone is going to pick in a net um then someone is going to pick it then he was happy then he was glad then she was glad they were making new friends again then the end of the story once upon a time he she built a nice sandcastle but then that rabbit then the rabbit was surprised then c then they were making a other castle,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 1 0 0 0 0 0 0 1 +then someone pushed it down and that was her like like a rabbit or maybe someone else and it was rabbit and she did not do it so she tried to fix it and he was not uh pleased then that is the end of the story he she was walking by and then then a rabbit was going by and a puppy saw her,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,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 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and a puppy said i am going to picnic like you so they had a nice picnic and he was getting goofy and suddenly he was tired and he was full of candy and he is getting sicker sicker and sicker then he knowed he was getting sicker and sicker and he she needed him to help her he was so full he could not even walk and the rabbit said get up,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and then he was fine at all then she was trying to pull it but he was so happy a ra and a other rabbit came along and she said what are you doing i am just pulling some stuff and a balloon was not going up and she was happy suddenly it was going up and up and up and up and up and up then suddenly he wanted a other one,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and she was angry there she came just a sec then he was going to get a other balloon she was angry and he wanted a balloon and he said yup i want a balloon and he did not know and the said no can you see,0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 +and and he said you do not have any money that is that is not doing then then suddenly he had idea and a rabbit had money somewhere to find and that was someone else looking in a far away and she said what is it you are doing i need some money but and she said she did not know what she need the money for then then she give him some won money and they wanted two balloons,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 +that was all and he wanted them two but others heard it but there was two left then they got both the balloon and they loved it then they hugged it and then something went then then then she was surprised and that was true that is the end,0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 1 +so a guy there was a giraffe he was at the pool then he met a girl bouncing a ball but the ball fell in the water and the man the boy tried to go get it and then he got the ball and then he was still all wet because he was in his clothes there they saw a diving board and it and it said no running and the sign said but,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 +and then she started to run and then she slipped she fell on the ground and she hurt her knee and then the lifeguard came and put a bandage on it sat on a bench and then the lifeguard said you are kicked out a boy was there and the girl was there and then the boy had an airplane in his hand,0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +he flew it around like this and then the girl grabbed it out of his hand and then it slipped out of her hand and it went into the water it was a pool and then the boy got so angry and the lifeguard came and the girl said it was an accident i accidentally got the w plane in the water so the lifeguard tried to reach it,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then he could not the lifeguard girl came and picked it up with a scooper and gave it back to the boy and then he hugged it he hugged the plane well he were in the sandbox and he meant and he somebody had a sandcastle built up and they played together and he put some sand in a bucket and the other guy touched the castle and then the rabbit put the sand on the castle,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then he got so mad so then they tried to fix it there so he was on the road somewhere and he put his hand out like this and he saw somebody run down the street and then they decided to have a picnic together one is eating a carrot and then he got so full because he ate all the food and he got so full that the basket fell over,0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then his dad came and he is still laying on the carpet and then he the child pull the dads shirt and then he said go to your room now and then he he sna and then the other guy went home because the other guy was not really his child the other guy was re really not his child so the this boy met a girl pushing a wagon with a balloon attached to it and then they wanted to play together so and then the boy took the balloon off,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 +and it floated up into the air and then the girl got angry so then another man came by selling balloons so the girl wanted one so then he uh the guy looked in his pockets to see if he had any money but he did not so he had to walk back and ask somebody else to for some more money then he got more money and then they got another balloon they each got a balloon the elephant is talking to the talking to a horse,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 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 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 +the elephant is pushing the horse the elephant pushed the horse in the water the elephant is helping him out the elephant ah being nice and that is the end the elephant is being nice elephant the elephant is going to jump in the water th the elephant is running the elephant got a got an owie the elephant is crying,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 1 0 1 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 +uh the daddy is putting a bandaid on it and she is sitting on a bench uh and she was and she is be and she was just teasing she was just teasing that she had a owie the elephant is making funny faces the elephant is uh looking at the airplane the elephant s wants to fly it the elephant is the elephant is sinking it the elephant is and the elephant is looking at the airplane sinking and hm the elephant is mad,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 1 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 1 1 1 0 0 1 1 +and she s she said to her dad that that that i sinked his airplane and the dad is trying to get it and the dad is putting his hands out like this and and the ga and and the fly fly swatter uh and she is trying to get it with the fly shw ss swatter s and and she got it out for him now the elephant is happy and that is the end um they are playing in sand the rabbit is digging in sand the rabbit is putting sand on the sandcastle,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 1 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 1 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +the rabbit wrecked the sandcastle and and the piggy is sad and he is building it back up and that the end the rabbit is walking down the path the ra they are having a the pig and the rabbit are having a picnic the rabbit is eating candy the rabbit is the rabbit is feeling sick and they are gi and the and the pig has a flower in his hand and the pig is pulling the the girl bunnys hand,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 1 +and the girl bunny hit him on the head and the girl bunny is taking him and that is the end the rabbit wr walking down the path again the rabbit is looking at the balloon the pig has a f um the rabbit is untying the balloon and the balloon is going up and the pig is getting mad at the rabbit and and there is another rabbit and they are going to go buy another one,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 +and they are going to get one and then they are going to ge go get another one from someone else then they are going to go get another one from someone else and then they got one and then the and then the then the gi then the girl um and and the rabbit is running to the girl bunny the girl rabbit n and and then and and he is pointing to the balloons and and they want another balloon so they are getting their mom to buy another one and this t and they got their own this time and that is the end a girl is bouncing a b a ball,0 0 0 0 0 0 1 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 1 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,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 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 1 0 0 0 0 0 0 0 1 1 0 0 1 1 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 1 0 0 0 0 1 0 0 0 0 0 0 0 1 +the ball went into the pool the moose went to go get it the moose got it and brang it back and then he got out of the pool got out of the pool and the girl was happy they they see a pool they run to the diving pool now they are running to the diving pool okay so you were thinking about that because you knew what came next anything else on this page they see the diving board,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 1 +so they run to the diving board the girl ran so fast that she slipped and hurt her knee the lifeguard came to see to give a bandaid bandaid the the moose went to go get him the lifeguard gave her a bandaid she thought it really hurted and then the the lifeguard took her to the bench and then she tried touching it and it was better and then the lifeguard pointed to a sign,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +she looked it said no running the moose has a plane they were going to play with it at the pool the moose fl fl made it fly okay you were showing me with your hands and then the girl took it away and threw it it landed in the pool the moose got really mad the girl said oopsies,0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1,0 1 0 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 1 1 +the lifeguard came she was scared she told what how um how how it happened the lifeguard tried to reach it but he could not the moose cried the lifeguard got a net and got the plane with the net then pulled it out so sh so the moose can have it and then they had fun later there are two boys making a sandcastle one of them smoothed it up,0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 1 0 0 1 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +the other one put sand on it since he was getting tired of doing that he dumped the whole pail on and then the wh whole pail cover most of the sandcastle one of the boys started to cry two people had a picnic one of the boys ate had more than the other one the the one of the boys had l had too much to eat he got he ate a little more and he got dizzy and then and then um a the other boy saw a girl,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 1 1 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 1 +she pulled the girl to the picnic and the boy wa the boy was not so dizzy any more because the girl helped him a boy was pulling a wagon with a balloon on it the boy saw the balloon the boy was untying the balloon the balloon floated away the other boy got mad at him he so he the other boy looked up and then they saw more balloons so they went to go get one,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 +but but it costs money and that was this page and then the boy checked his pockets but he did not have five cents so the man with the balloons said no you can not have one because you do not have any money and then a boy found a girl the boy asked her nicely if she could buy him a balloon the girl gave him a balloon they both had a balloon now the elephant and the ah,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 +the giraffe was uh saw the elephant was bouncing the ball and the the ball was on the water and giraffe trying to get the ball on the water and the giraffe got it and the elephant get it and the giraffe was wet the end once upon a time a the elephant and the giraffe was saw the water and and ahh um the elephant want to go on the water and the elephant go right away to go on the water,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 1 1 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and the elephant slipped over the the ground and the elephant got hurt on the knees and the elephant was crying and the and the elephant was putting a bandaid on and the elephant was the elephant was ahh ahh mad because it hurts on the knees with the bandaid and they feel better and they sit down but the elephant ahh looked so mad because theyre the giraffe and the elephant want to go to the water the end the giraffe and the elephant,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 +the elephant saw the airplane on the giraffe hand and the elephant was saw the airplane was flying and the giraffe was standing uh with the airplane and the elephant take away from the giraffe airplane and the elephant want to see it and the elephant drop it in the water and the giraffe was very angry and the elephant and the giraffe was saw the the other elephant was saw the airplane in the water and the the elephant was uh say the she was dropped the airplane in the water and the uh the elephant trying to go get the the airplane,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 1 0 1 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 1 0 1 0 1 +and he can not get it but uh the giraffe was crying with the airplane and the then the other uh elephant will get the airplane with that thing to for the fish and she the elephant trying to get it but it is too hard to get it but she get it the elephant got it now and the uh giraffe was happy and the elephant and the giraffe was happy too the end,0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 +the bunny and the the dog the dog was making a sandcastle and the rabbit want to help the dog and the rabbit was making a sandcastle and the dog all finish and the rabbit was trying to put the sand on the castle and the dog was so scared the the rabbit trying to put the sand on the castle and there is breaked the the sandcastle and the dog was crying,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 1 0 0 0 0 1 +and the rabbit was so sorry breaked the sandcastle the end the dog and the rabbit was going to the picnic and the rabbit was have the carrot and some hot dogs and some cake and some sandwiches and the rabbit got too much to eat and the rabbit got a st stomachache and he is getting so fat and the doctor was came and saw the rabbit the and the dog tried to get the doctor and the doctor was coming and saw the rabbit there,0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and the rabbit was so have a stomachache and he feeling right sick and the rabbit go home and he felt better the end the dog and the bal the dog and the bunny was saw the balloon the color pink balloon and and the rabbit went to see the balloon and he trying to take it off for the dog and is is floating away from the dog and the dog was right angry because the bunny was let go of the balloon,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the dog and the rabbit saw lots of balloons there pink green and orange and blue and purple white and gold and the rabbit choosed the blue one and that and the the nother the another uh rabbit was right angry because that is number five so the rabbit and the dog want to pick the balloon but the doctor there because the dog was sick and the the doctor saw the dog was sick and he has got some the doctor got some monies for the dog and the rabbit for the balloons and the dog got the color the gold balloon and the rabbit got the color the blue balloon,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +the end the elephant was playing with his ball then he threw it in the pool then the giraffe catch the ball and throwed it to the elephant and he pick it up x okay what did you say they want to go in the pool he was running,0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1,0 1 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 1 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 +then he slipped then hurt his knee then he cried what is that then the lifeguard go and he closed his eyes and it hur hurt then uh the lifeguard told him that he it says no running the elephant looked at the giraffe playing then he played with it,0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 1 +then he grabbed it then he throw into the deep pool and the giraffe been angry and the lifeguard came he and he told him that he throwed um the giraffe plane into the deep he tried to grab it but he can not and there was daddy he get the plane and he catched it,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1,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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he bring it back to the giraffe and he hugged it tight to the the bunny and the dog are making a castle castle the bunny put sand in his bucket and he dump it all and he wreck the dogs castle mm he he he pretended to he did it to him the dog and the bunny went going for a picnic the bunny ate some food and he ate some more,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 1 1 0 1 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and then he has a stomachache then the dog got by the doctor and he grabbed him and he uh he told the dog that he has a stomachache and then they came the dog and the b bunny went to see the bunny the the bunny see he sees the dog then he tied up the balloon and the balloon went up and the dog got angry,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then the bunny losed it he talk the mom to give him the balloon but he do not have money the the the bunny and the dog have no money they come to go to him and then the dog the bunny goed and he gave both balloons to them bunny and the dog um the donkey wanted to play uh with with another animal with his balls um they they went to the swim pool and they they found a friend,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1 1 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 0 1 0 0 0 1 +and he jumped in the water and splashed the elephant by accident and the elephant picked the ball up and the giraffe asked if he could have it and he came out with his cloths on um they went back to the swimming pool and did not want to go into the water the elephant wanted to go in the water but the giraffe did not um the elephant asked if he could race the giraffe to the diving board but the elephant tripped and and fell and hurt her knee and the swimming person checked if he was okay and put the bandaid on her,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and she feeled all better and she stayed there so she could get better um the giraffe throwed his airplane and it flew but but by accident he th threw it too soft and it fell in the water and he tried to get it out but he and he did and without asking the elephant grabbed the airplane away from him because she wanted to play with it and because they was grabbing they grabbed,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and it fell in the water and the giraffe was angry at the elephant because she throwed it in by accident the lifeguard was mad because they throwed it in and toys was not supposed to be in the water and the elephant said look what i did it was by accident and the lifeguard tried to pick it up but he could not the lifeguard could not so he just got up,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and he had an ide a plan he but he did not his wife took um a stick with a rope on the ss on the front and he catched it out he tried to she tried to catch it out an but she could not and she did and she gave it back to the el giraffe and now he was proud of the girl because she got his plane back the bunny said hi to the dog,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and the dog was making a sandcastle and the bunny wanted to help but the dog said yes and they started building a sandcastle and then the bunny dumped a bucket and it and it and the castle fell down and the dog was mad at the bunny and the bunny was sorry because he knocked the sandcastle down and then they builded it all and then the dog builded it all up and crying the dog said hi again to the bunny,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +the bunny was racing down with a basket of food so was the dog and when they got there they unpacked the food and they started eating and the bunny tummy hurted and he was sick of the food and the dog raced to the doctor and said doctor doctor can you help my bun my friend bunny is sick doctor doctor come on come on doctor,0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 1,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 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 1 0 0 0 0 1 1 0 0 0 0 1 1 +come on my friend bunny is really sick because he eat so much food okay okay he took his temperature and he was sick sick and and then he checked the bunny again and he was all better the dog said hi again and the bunny wanted the balloon and said where did you get that from i want that balloon right now,0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 +and he untied it from the wagon and it started float floating off the wagon and the dog was mad at the bunny because he untied it and he wanted it and then the bunny had a great idea he can go over to the balloon man to buy another balloon and they asked could we have two balloons please and uh and it cost it costed five dollars and he had he did not have any money in his pocket so he could not get a balloon,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 +and they said please but no only for five dollars doctor can you help us can we have five could we have five dollars for both of us so we can have a balloon he said okay you can have balloon i i do not we do not have any money in our pockets so please can you give us five dollars so they gived him five dollars for both of us and then they got the two leftover balloons and then they was proud of the doctor because they got a balloon,0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the bunny said sorry to the dog because he uh he wanted the balloon and he untied it so he said sorry play ball and he taking swimming pool and he get it and thank you and welcome uh and over play swimming,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 1 0 1 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and go in it and and run and walk on knee and her cry and cry lots and sit on bench and stay here the what and stay on bench over play,0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 0 0 1 1 1,0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +play play a play and play a play again and play it in in water and it angry and say bad and dad what is that daddy i play in pool,1 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 1 0 0 1 1 0 0 0 1,1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 1 0 0 1 1 0 0 0 1 +and they are get it get it i am get it looking and get it and it in there i get it you get it and loffed it loved it loved it he play on s in sand and play make castle,0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1,0 0 1 0 1 0 1 0 1 0 1 0 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 1 0 1 +and dump it and what dump it oh no oops sorry and cry uhoh they go picnic and eat and they drinks juice,0 0 1 0 1 0 1 0 1 0 1 0 1 1 0 0 1 0 1 0 0 0 1,0 0 1 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 +and hungry and that girl her tummy that man sick she what sick and a bunny his tummy hurts and turn that and go doctors house he what doctor all done,0 1 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 1 0 0 1 0 0 0 1 0 1 1 0 1,0 1 0 0 1 0 1 0 0 1 0 0 1 0 0 1 0 1 1 0 0 1 0 0 0 1 0 0 1 0 1 +her play and hold that up higher tie it up and up higher and up clouds angry and man what man balloons on it him him take one,0 1 0 0 0 0 1 0 0 1 0 0 1 0 0 1 1 0 1 1 0 0 0 1 0 0 0 1,1 1 0 0 0 1 1 0 0 0 0 1 1 0 1 1 1 0 1 0 1 0 0 1 0 1 1 1 +and and x and bring doctor here and check and talk and money and balloon and two balloons and over there are these two kids one has a ball and she is bouncing it really fast by a pool,0 0 1 0 0 0 0 0 1 0 1 0 1 0 1 0 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the ball falls in so the other kid jumps in and swims to the ball and he gets it for her and then climbs out there is these two kids and they are looking at the water and one of the kids says that there is a diving board and it looks like fun and the kid who said that the diving board looks fun runs and slips and hurts her knee and the lifeguard comes and puts a bandaid on the hurt spot and puts her on a bench and shows her the sign no running there is these two kids,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,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 1 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 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +one has an airplane and he plays with it and the other one takes his airplane away and accidentally drops it in the pool and the other kid is really mad at her so she go gets so she gets a lifeguard and she asks him if he could try and get the plane out and he tries but he can not reach it and he does not know what to do and then this lifeguard with a net comes and fishes it out and gives it back to the kid,0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,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 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the kid was really happy to have his airplane back um these two kids um are going to build a sandcastle and they start building and then one of the kid um dump sand on it and then it is all flat and then the other kid cries because it is broken that is kind of dumb these two kids are going to go for a picnic and the first kid took um all this unhealthy stuff and he starts eating,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he gets all sick and the other one he gets all dizzy and the other kid runs and gets s the doctor and the other one pulls the doctor to him and then he checks him out and then he says that he is going to give him a checkup um there is these two kids one of them comes up and and says hi and he sees the other ones balloon and then he starts taking it off the wagon,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and and the other kid is yelling and then he accidentally lets go and the other kid is really mad so he sees a guy that is selling balloons and he asks if he could have a balloon and then the guy shows him that the balloons are five cents and he does not have five cents so he goes to his grandma and asks if he could have a balloon and she says yes so they both get a balloon,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +one day a giraffe saw her friend the elephant playing with a ball gira the giraffe took the ball and threw it in the po in a pool nearby the elephant was scared the ball might sink so the giraffe went to get the ball the giraffe got the ball for the elephant and the elephant was happy then the elephant thanked the giraffe one day the giraffe and the elephant were at the pool the elephant said let us go off the diving board the elephant ran,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 1 +and so did the giraffe the elephant fell and and hurt her knee the lifeguard came and helped her he put a bandaid on the elephant while the giraffe watched the lifeguard told the elephant not to run in the pool or she might slip so the elephant sat down and did not run one day in the elephant and the giraffe were at the pool the giraffe had a a a little plane the giraffe played with the plane,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +he did loops and swirls and s things like that then the elephant took the plane and tried to play with it the elephant dropped the plane into the water the giraffe got furious and the ele and the elephant got scared then the lifeguard came the elephant told the lifeguard that she was playing with the plane but she dropped it in the pool the lifeguard tried to get it he said he could not reach it,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the giraffe started crying then a woman came with a net she took the net and she took the net and took the plane out the boy was really happy and thanked the ele the woman the boy got his plane back and he was really happy and so was the elephant one day two rabbits were playing in the sandbox one rabbit was digging out some sand the other one was making a sandcastle,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +the rabbit poured the sand in the bucket on the sandcastle the rabbit got conf the rabbit poured on the sand and i can not make this one um uh just tell me what is happening the rabbit is like scared because then the other rabbit might get mad at him the dog or rabbit started to cry and the rabbit just stood there one day two friends met to go to a picnic one friend kept on eating and eating and got and keep kept on eating and eating and got really full by the time he finished he was really stuffed,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 1 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +the other friend just drank some juice and some bread w when the other friend found the doctor who was in the park h he went to get him to see if there was anything wrong with her friend she begged the doctor to come so she did so the doctor came the doctor checked the rabbit and it seemed that he had a stomachache the doctor told the rabbit to not eat too much junk food so the rabbit did not get much of a stomachache one day a the rabbit met his friend the dog which had a wagon and a balloon the rabbit liked the balloon,0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 1 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 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +so he pointed to it the rabbit untied the balloon and the dog just stood there with surprise so and then the balloon flew away the dog got mad at the rabbit then the two s saw a man holding a bunch of balloons the rabbit asked for another balloon the man told him it was five cents but the rabbit did not have any money then the other friend came,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +the rabbit went to see his mom and s and the his friend watched him as he walked to his mom he told his mom he wanted a balloon the man gave two balloons to the to the two friends and the mom paid the money they the two friends thanked their the mom um let us play boys the ball went in the water i got to swim and get it i got another ball to swim with it,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and i am playing with it aaah i am all wet the end let us swim i am jumping in the water let us run ow are you okay and it hurts i need a bandaid,0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 1 0 0 1 1 0 0 1 0 0 1 0 0 0 1,0 0 0 0 0 1 1 0 0 0 1 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 0 1 +it is still hurting i got to go to the doctor the end pigs do like this let us swim i am crying i found a airplane give me that airplane my airplane oh do not be angry at me,0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 1 +let us get it oh we got it i got it in right he getting out of the water no okay let us catch it i got it thank you my favourite airplane the end,0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 0 0 1 0 1 0 0 1 0 1,1 0 0 1 0 0 0 1 0 0 1 1 1 1 0 0 0 0 1 1 1 0 0 0 1 0 0 1 0 1 0 0 1 0 1 +um you play in the sandpack you dig a you put the sand in the bucket and you dump it on the castle and then then um then then the castle broke and then the cried the end he is walking and then he says hi he eats his sandwich with a carrot and he drinks his juice,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,1 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +and he cries um i am thirsty you stole it i said it you stole it i do not know that page should we try the next page he cries goodbye the end,0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 1 1 0 1,0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 1 1 0 1 +um here is a balloon um i am running around my balloons do not take it off ah the balloon it is flying aw the balloon is broken there is a lots balloons lots of balloons i want a balloon i only have one oh there is a lot of balloons,0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,1 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 +ah i want some balloons where can we put the balloon but our balloon is broken let us have another balloon and we got two let us have it we got two that kind the dog the giraffe and the elephant,1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 1 +the elephant was playing basketball with the giraffe and then the do elephant throw the basketball in the water the giraffe tried to save the balloon ball and the giraffe said here you go here is the balloon ball and now the elephants have the ball a giraffe and a elephant was going swimming and the elephant said i am going on the diving board and then the elephant hurts her foot and she slipped,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and she break her foot and and then the giraffe came to save her and then the swimming teacher came and then the s s the swimming teacher give her a bandaid and the swimming teacher gave her a bandaid and then and then the elephant said thank you for the bandaid and the teacher said no running said oopsie the giraffe is playing wi with his helicopter eh eh and the elephant wa want to play with with it too,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and the giraffe played with his helicopter and then the elephant take it away from him and then the elephant drop it in the water and the elephant was mad the giraffe was mad and the swimming teacher was to to look at the helicopter and then and then this the the elephant said that the airplane is in the water and then the swimming teacher is trying to save the airplane in the water and the the the swimming teacher said i can not catch the airplane and then the an and then the giraffe was crying and then a a swimming eh elephant was came to to rescue the airplane,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then and then she saved the airplane and she said here you go giraffe here is the airplane and and then the the giraffe was happy the bo the dog and and the and the bunny want to build a castle first the rabbit takes the sand in the bucket then and then the rabbit taked the sand the castle and the dog is s scared and then the ra the rabbit is scared be because the rabbit break the castle and then the dog tried to fix fix the castle,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 +the rabbit and the dog went f for a picnic and then the rabbit i is eating his her lunch and the dog is is is eating his lunch and and because the rabbit have too much lunch now rabbit have a tummyache but the dog do not and the dog only ha only have some lunch and the dog says huh the rabbit is have a tummyache and now because the dog did not eat too much only the rabbit did and the dog said mama,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 +and mommy but the rabbits mommy and he said this hey mommy here is a dog he said huh that is not my children and she said she said i do not know rabbit i am a doctor and now the rabbit has gone and the rabbit go home except the dog the dog has a a dragon,0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 1 0 0 1 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 1 +and the balloon is hold up the dragon and then the rabbit came with him and then and then the rabbit found the balloon and then the rabbit going to take it off and and and the rabbit take it off and and it float up to the sky and the rabbit and the dog try to catch it and now the dog is mad and it and the rabbit was scared and then and then the rabbit and the dog bought some more balloons,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 +and the rabbit said how much that cost it cost five cents but the rabbit had no money and the rabbit and the dog said no money aw x a balloon then they said mommy come here can you buy us a balloon and sh and the mommy said which balloons the balloons,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 1 +and then the mom buy the balloons called a nickel and then then they had the balloons then the the the cat and the the bunny and the dog is happy one day a giraffe meets an elephant playing with a ball then the ball fell into a little pool the giraffe goes into the pool to go swim to the ball to get it the giraffe got the ball and gave it to the elephant the elephant is so happy to have the ball back the giraffe gets up on shore,0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +one day an elephant and a giraffe fou found a pool the elephant decided to go down the ladder it walks but it runs but it f was tripping it hurts its knee the giraffe comes running an elephant lifeguard came to the elephant and the giraffe it helped the elephant it gave the elephant a bandage and let it sit on a bench the elephant lifeguard told the elephant no running,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 1 +one day the elephant and the giraffe saw a pool then the giraffe saw an airplane zooming by the elephant grabs the airplane from the giraffe then the airplane sinks in the pool the giraffe is mad at the elephant the elephant lifeguard comes the elephant told the lifeguard what happened the lifeguard tries to get the airplane he can not get it the giraffe is crying,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 +and the elephant is sorry then another elephant came along with a fishing net she scoops the airplane out with the fishing net she gives the airplane to the giraffe the giraffe and the elephant is happy once there was a rabbit and it meets a little animal they both try to make a sandcastle together the rabbit pours sand on the sandcastle the sandcastle goes down,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 +the rabbit feels sorry for the other animal once there was a rabbit and it meets an animal and they both want to go on a picnic they together have a picnic at the same place the rabbit eats a lot of things and he is stuffed then he feels dizzy and sleepy the other animal tells the rabbits mom it tells her to come to the rabbit,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +the other rabbit wakes up the little rabbit and they go home one day the rabbit saw an animal pulling its wagon with a balloon the rabbit s is watching the balloon the rabbit tries to untie the balloon off the wagon but it after it goes uh up in the air the other animal is mad at the rabbit then there is someone that is selling balloons and the rabbit is asking for some balloons he is looking in his pocket for money,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +but he does not have enough money so i and he sees his mom so he goes over to his mom he asks for some money to buy the balloons the mom gaves the man some money to buy two balloons they have two now the rabbit and the other ha animal has two balloons one one day um a little giraffe and um elephant they were playing with three balls and they were g they were going to go in the swimming pool so they got to the swimming pool with tickets and then they sawl a ba they saw their ball in the swimming pool,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +so they got it and then the gira the giraffe tried to come and get the balloon um balloon that they had so they he got it and then they then they got their ball and their balloon and then they went and played with them and so the elephant said thank you and then the giraffe said you are welcome and they played together with their um with their balloon one day um they the giraffe and elephant wanted to go swimming and then the giraffe ran,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and he and he ran in the swimming pool with her bathing suit on and then she then she hurt herself on the knee is that on this picture um uh yeah can you just tell me the story that is on the picture and you tell me to turn if i am not turning it fast enough and then she slipped because there was water when she was running and then and then she hurt herself so the lifeguard came and got her a bandage for her knee and then they so then they um went to swim again,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 1 1 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and she was all better so but first she had to sit on the bench a little bit and then she was okay and the lifeguard said no run can not you see the sign there is no running here the end one day there is a one day there was a giraffe and a um elephant the giraffe had a airplane and he was playing with it and then he al and then the elephant wanted to play with it,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 1 0 0 1 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 1 +so he na so um he did but then she took it away from the giraffe and then she dropped it in the water is that on this page or was that on the next page it was on that page oh okay so then it sank in and then the life then the lifeguard got mad so then the giraffe tell me should i be turning yet,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 +then the giraffe got mad at the elephant and she said she was sorry so she got her mom to catch the lifeguard is that what is on this page so the lifeguard could not reach it so she got her mom to reach it with a net and then the lifeguard she he came back to say sorry to the elephant because he he got mad at the elephant and then her mom catched it with um the thing and then the lifeguard he tried to get it again but her mom could not,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the lifeguard could not so she got a big big net and she catched it is that on this page yeah remember i can not see so i just want you to tell the story that is on the page and then all the lifeguards and then the mom had a real long net so she grabbed it and she catched it and the giraffe said thank you,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 +and then she said you are welcome and then the they were both happy again and they played with it the end one day a lit a bunny rabbit went to the beach and she saw a p and he saw a puppy and she was making a sandcastle and then the bunny said can i help and the puppy said okay then they build a sandcastle,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 +and the bunny got a bucket and she and then he got a shovel and he put it and he put sand in the bucket to make a sandcastle and the and the puppy was making the sss um a water hole and then the and then the rabbit wrecked it because he put all of all of sand on it and it pushed it down and the w puppy was very sad and then the and the puppy tried to build it again but it did not work and the rabbit was just he did not say sorry or anything,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 +one day the puppy and the rabbit came for a picnic in a forest and then uh the rabbit ate too much and he got sick and was too full so the so the puppy dog went to get some help and then she but she did not find anyone yet until he s until she saw that the rabbit was sick and and then she got a nur she got a doctor that was walking by and then she took the rabbit and and took the stomach away ache and then the bunny and the r um bunny was still sick so the puppy he um she pulled on the doctor and then the doctor went on the picnic thing,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 +and the s and he was really sick so the puppy went away because the doctor said he needs to be alone for a while and the end oh just a second i missed one did not i yeah and the it was after he needs to be alone for a while and then and then um the puppy came back and he was all better but he had to go lie in bed one day the bunny went he he one day the bunny went to the forest,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 +and he and on the way there he saw a puppy and then they and then they saw a clown with balloons and so they asked bunnys mom if they could have some money for a balloon and she said yes so then they got a balloon and then they then their balloon uh there was a balloon tied onto puppys wagon and it fell away it flew away so then um tell me when to turn and then it and then it went and it disappeared up in the air,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 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 0 1 +and puppy was mad at at bunny and then and then they saw a clown a bunny with balloons a clown bunny with balloons so they asked bunny so they asked bunnys mom if they could have some money and then they bought a balloon with their money and puppy was very happy and they both got two balloons and then puppy ran over there to get a balloon but bunny had no money so she had to go to um the mom to get his money and then after that they got some money,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 +and they gave it to the clown bunny and then they got two balloons one yellow and one red and then but first they had to get the money from the doctor that fixed that helped bunny and then so they got two balloons ye yellow and blue and then they got one for the doctor red and then i do not know you are not sure on this one nothing to say on this one okay we will just turn then and then they bought the balloons,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 +and then they and then they got two balloons and then they were happy and they played with them and then they played with them and played the end once there was a giraffe who was standing by a pool and a elephant said came with a swimsuit on and said you want to play fetch but they were not so sure about playing near the pool just then when the elephant blew it with her trunk it fell in the pool the giraffe jumped in and swam to get the balloon the ball,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 1 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 1 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 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 +the giraffe came back with it in a minute and said and the gira and the elephant said oh you you got my balloon ball thank you sometimes i get mixed up with the words the giraffe felt pleased that he that he got the ball for the for her friend but the elephant just sta just stood there and smiled the end the giraffe and the elephant went to the pool because it was a hot summer day they were they looked at the pool and they were excited,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 +but the elephant said hey i am going to go off the diving board but she did not read the sign which said no running so she ran anyway just then the el the giraffe was catching up with her when she slipped and fell on her knee she got a cut on her knee and the giraffe went to get someone a lifeguard came as quickly as possible and helped the elephant the elephant thought it was going to sting but it did not they they put on the bandage,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and it was and it looked good as new the lifeguard was disappointed and the girl stood sat on the bench and said hi and the lifeguard was pointing at the no running sign the end the giraffe and the elephant went to play by the pool and the giraffe got a new toy plane and said you want to play with me the elephant said sure the giraffe flew the plane first but the elephant was so excited she just grabbed it out of her hands,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 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 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +the giraffe said my plane give it back i was not done my turn but the elephant did not care she was just flying it around just then she flew it too high and it fell in the pool and it started to sink the giraffe was mad at the elephant but the elephant just stood there puzzled the lifeguard came right by the two girls,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 +and one of the girls said one of the elephants said i can explain i i did not do it it was the giraffe just then g g the giraffe said she is lying it was her then it came like it was a big argument so the lifeguard said cool it who dropped it in the pool and the giraffe was pointing at the elephant the lifeguard tried to get catch it,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 0 1 0 1 1 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +but it was floating in the pool the giraffe started to cry when the lifeguard said he could not reach it and the elephant felt sorry just then a lady elephant came with a net she quickly got the plane with the net and it came and she pulled it f to her she said here you go is this your airplane and the giraffe said yes thank you very much the giraffe hugged her plane,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +but the elephant was happy the end one day at the park there was a baby dog who was making a sandcastle just then a bunny came along and said can i help you the dog said sure they wanted to help build a the biggest sandcastle in the world so the rabbit was going to build it so he got some sand in a pail and started digging just then he decided that a shovel was not so slow after all so he decided to dump it on the castle,0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 1 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 1 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +so he did but when he realized he had wrecked it he was so embarrassed the dog started to cry and rebuild the sandcastle but the rabbit just stood there and looked like he did nothing the end there there once was a dog who was going on a picnic in the park and then he saw a rabbit so he they decided to go together when the om when they unpacked the lunch the rabbit was so hungry s the rabbit was so hungry,0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 +but the dog was not so the rabbit ate all the stuff when the dog was eating the bunny had already finished the bunny had a terrible stomachache while the dog was eating the dog just stood there puzzled and said are you okay and the rabbit said no i feel like i am going to hurl just then the dog ran to the doc doctor who was standing right by the path she said excuse me could you help my friend here he has a stomachache so but the doctor said no,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 1 +she had a patient who was waiting for her but the dog really needed her so she took the doctor and dragged them to the picnic the doctor said i will take your temperature now and you will feel much better just then the bunny f got up and he felt queasy then the doctor and the bunny went home they walked together back home the end,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 +there once was a dog who was pulling a wagon with a balloon tied to it then he saw the bunny then they wanted to play with the balloon the bunny wanted to touch the balloon because he thought it was cool but the dog did not really want him to so the rabbit just then the rabbit did not care about what the dog said so the rabbit untied the balloon and the dog was ss was a lit was beginning to get a little fed up just then the balloon floated away and they were trying to catch it,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +but they were too short the dog was so angry at the rabbit the rabbit just stared at the balloon and he felt like he was getting a little scared because the dog was mad just then they saw a balloon seller who had tons of balloons and he just stood there so the dog and the rabbit decided to go buy a new one the rabbit said may i have a balloon please for my friend over there the man said sure but you will have to pay for that for the balloon the rabbit looked through his pockets,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +just then it said a sign said balloons five cents and he did not have five cents he and the ra the rabbit and the dog looked at the balloon seller they told him that they did not have five cents just then the bunny went to the went to a lady who was standing nearby and he said excuse me do you have five cents because i need to buy a balloon for a friend the rabbit looked puzzled the lady rabbit gave five cents for two balloons and the bunny and the dog were jumping up and down in excitement then they both got balloons,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and they hugged and they loved them real much the end this is this story is called the ball one day this little girl was playing with a ball and a lifeguard was playing with it too and so when she was playing with the ball she accidentally dropped it in the pool and then the lifeguard went in the water and swam and got the balloon and got the ball and when he did she was so happy and then she um she asked him if he wants to play with her again the end,0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 1 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 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 0 0 1 0 1 +this story is called the scratch one day a little girl was going swimming and she was running to the board and when she did she slipped and she and when she slipped she got a cut on her knee and then the lifegua and then another lifeguard came running and said are you okay and then he put a bandaid on and then he put him on put her on the bench and she would not be able she was not able to swim but then the lifeguard was really mad because he she should have seen the the sign no running,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 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 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 1 +the end this story is called the airplane one day this little boy and this little girl were playing with an air airplane the girl asked can i play with it now and he said okay and then it and then she accidentally dropped it in the water when she did the little boy got all mad and then she went up to the lifeguard and asked the lifeguard if he could get the airplane and when he said okay i will try he tried but he could not reach it,0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 1 0 0 0 0 0 1 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 0 0 0 1 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 0 0 0 0 0 0 1 +and then he and then the little boy was crying but then the girl lifeguard came and she got a net then she tried to get it and she did and then the little boy was so happy and then the little girl said i am sorry for for wrecking your toy the end this story is called um the castle that breaks one day there is there is a little girl and a little boy who is playing in the sand,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the little girl builded a castle and the little boy dumped a bucket he did not mean to dump the bucket oh on the castle and then when he did the girl got all mad sad and she was crying and the bunny said sorry this story is called the picnic one day a little a doggy and a dog and a rabbit was eating was having a picnic and the rabbit ate too much so he got sick,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the poochy ran over to a doctor near by the pooch said help help a little boy is sick so the doctor checked the boy and said he was si he had to go home and then he felt better this story is called the puppy who had two balloons one day a pup his uh somebodys friend came over to check his balloon out and when he did he tied the rope off the the wagon and when he did the ba balloon got away and then the puppy is all mad,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 1 +and then the rabbit saw some more balloons and he asked some for a balloon but the guy said balloons are five cents and the bunny did not have any money so so the bunny said um well i accidentally lost one that my friends balloon and so he and then the balloon man said no you still need to pay five cents so then the bunny went over to an adult to ask for five cents and when he did ask she said okay and then she paid him five cents and then the boy the girl got his her balloon a another balloon back,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,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 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then she was all happy the end once upon a time there was a giraffe and a elephant playing around the pool and one of they were playing with a ball and it f it fell in the water and the giraffe swam to the balloon the ball and then he swam back to the elephant and gave it back to her and she was very happy that he got it for the elephant the end once upon a time there was a giraffe and a elephant around the pool,0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 1 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 0 0 1 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 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the elephant wanted to jump off the j the the tr um the um wanted to jump in the pool and sh when she was running to it she slipped and she fell she got a scra a scratch on her knee and the giraffe ran to the lifeguard and he got a bandaid and they they he put it on her knee and and he sent her to the the bench and and he show her no running sign the end,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 1 0 1 +one there was two friends an elephant and a giraffe the giraffe had a toy that it was a airplane he was playing around with it and a elephant wanted to play with it too and elephant took it from the giraffe and p played around with it and she dropped it into the pool and she she was very sad and the giraffe was very angry at her the lifeguard ran uh came to the elephant and the giraffe and the the el the lifeguard the elephant said that i by accident i threw the giraffes airplane inside the water,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the lifeguard was trying to get it but it was too far and he said i can not do anything and the giraffe started to cry a net catcher came to the hopeless giraffe and she had a net in her hand and she got the airplane by her net and the giraffe stopped crying and the lady gave it to the giraffe and he is very he was very happy,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 0 0 0 0 1 0 0 0 1 +the end once upon a time there was a little dog that made a castle and a a rabbit he came a along and wanted to help him and then he he dump he dumped some sand inside a bucket and the and he scooped some up and then he dumped it on there on the castle and then and it got covered and and then it really did not do it was was a cloud of sand and the dog was building it again the end,0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1,0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 +there was two friends that were walking along for a picnic and the ra the fr one of the friends had a lot of f food than the other friend and then he ate all of it and and he got really stuffed and then he he was very sick and his stomach was really hurting and one of the friends called the doctor and the dog called her the the doctor to help and the doctor said do not eat a lot of food and he went home,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 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 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 1 +and he had some rest the end once upon a time there was a two friends walking along with their wagon and one of the friends said this is a nice wagon and a nice balloon you have on it he tied it off and he and he wanted to hold it and then the balloon fell flew away and then they were re one of the friends balloon was very disappointed and one of the friends saw a a man selling balloons so he ran over there,0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he he got one from the man can i have one of those balloons he said but it was actually five cents to buy the one of the balloons it w he was really sad that he lost one of the friend his friend balloon he asked a person by if sh they had five cents and he he pointed to the balloons and he said there is only balloons for five cents and i have no money and she she bought two for each of the the friends and they said thank you thank you for the balloons,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +the end there is an elephant and a giraffe bouncing a ball having fun with the ball and the ball goes into the water gets bounced into the water the giraffe goes to get it he is really wet he gives it to the elephant and the elephant the elephant is holding it and the giraffe is smiling quite a lot the giraffe and the elephant are looking to the water and the gira the elephant sees a diving board,0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 +the elephant is running and slips on the pavement on the deck and scrapes her knee the giraffe came over and the lifeguard came over and looked at it and bandaged it up and the elephant sat on a bench and the the lifeguard pointed at the no running sign the giraffe and the elephant are playing with a airplane toy airplane the giraffe is making it go really high the elephant grabs it away and starts playing with it it goes in the water the giraffe is really mad at the elephant,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 1 +and the lifeguard sees the toy in the water and looks mad and the lifeguard and the el other elephant are talking and the lifeguard tries to reach the airplane but he can not the lifeguard is kind of shrugging his shoulders thinking what can i do and then another person comes with a net and gets it out for them and the giraffe is really really happy and the giraffe is hugging his toy the bunny and something else are playing i think it is a dog that are playing with sand,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and the bunny put is getting some sand out of a pail he dumps sand on a sandcastle then the sandcastle is all wrecked the bunny feels really bad and i think it is the dog that is crying the bunny and the dog i think are going for a picnic the dog and the the bunny is eating too much he has maybe twenty things he is eating lots and the bunny is really full,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 +and the dog is just eating his sandwich and drinking juice box and the bunny is feeling dizzy and the dog thinks oh i should go get some help so he runs to a doctor walking down the road and pulls the doctor over to her friend and the doctor checks her friend out and takes her the dogs friend home the rabbit there is the dog and the bunny the bunny is coming down the road jogging he and the dog has a wagon with a balloon tied to it the bunny grabs the balloon and the dog is kind of fine with it,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the dog kind of freaks out starts freaking out and the bunny and the dog tried to grab it but they can not because it is floating up into the air and the dog is really mad at the bunny then the do the bunny goes to the balloon man he asks for a balloon he says five cents for a balloon and the bunny has no money so the the little bunny looks at the balloon man very innocently and then goes to his the doctor his dad and i just see him going to his dad or the doctor,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,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 0 0 0 0 0 1 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 diff --git a/benchmark_result/segmentation/SaT_cunit_3l_no_shuffle_results.csv b/benchmark_result/segmentation/SaT_cunit_3l_no_shuffle_results.csv new file mode 100644 index 0000000000000000000000000000000000000000..e57efa479ac587f2863eb60593423b53589de174 --- /dev/null +++ b/benchmark_result/segmentation/SaT_cunit_3l_no_shuffle_results.csv @@ -0,0 +1,624 @@ +word_sequence,gt_label_sequence,predict_label_sequence +once a horse met elephant and then they saw a ball in a pool and then the horse tried to swim and get the ball and the then the elephant gave him the ball and then the horse was wet and the elephant was holding the ball the end they might be the same oh well you start it off any way you want okay,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 1 1 +once a horse and this this was a horse and saw saw that that i just talked about but the ball was not in there okay and then the elephant wanted to go in i mean not and then he his feet went like this then he hurt his knee cap and then the horse helped him then there was another elephant and he was a lifeguard and then i do not know what they did,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +but they are doing something what do you think they are doing well how you look at the picture cause i do not know oh it does not matter what do you think is happening i think they are battling okay and then they sat on the bench and then the lifeguard was mad okay,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 1,0 0 0 0 1 0 0 0 1 0 0 1 1 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 +and are you pointing at something i am i am just i am just x okay are you all done yes okay the end once that horse and elephant was happy near the swimming pool oh and then the horse had an airplane to play with a which had ss ah something coming down the bottom okay,1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1,0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 1 +and the elephant went like this then he tried it and the horse went like this then they put it in the water and then the elephant went like this and then the horse was mad and then the lifeguard went like this then the elephant talked to him a little bit and then the lifeguard tried to get it but he could not,0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the horse cried an and then a elephant with a net came and she caught it and then she gave it back to the horse and then the horse went like this what does that mean they love it oh good and the end once two rabbits made a sandcastle,0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 0 0 1 +and it was a great one and then one did this with a and one took some s and the other one took some sand from a a pail because they were down at the beach and then he dumped it on the castle and then it tur part of it stayed the way it was but the rest turned into just a lump and then they tried to do it but it was not very good that time the end we saw two rabbits had baskets and were in part of the forest,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,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 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 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +or we can call it the woods yeah we can then they had a picnic then one of them belly got this big how big about this big wow and then in the picture there is a twirl around on his head and then a bigger bunny came up and they run to that bunny,0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 +and then he falled asleep and then he did this why did he do that i do not know okay and then he was happy he was happy yes okay the end,0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 1 0 0 1 1 1 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 1 0 0 1 0 1 0 1 +once that little bunny was pulling a wagon and that other fat bunny came up and then he liked the balloon and then he tried to get off and then he got it off but they lost the grip and it was helium and then another man came with a bunch of balloons but x but then they he went to them and he said that it the balloons were five cents,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,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 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and he could not find five cents and then they were sad then they went back to that out by the we found that other story and he said i want one of those balloons he gave him five cents and then they gave him a balloon and they gave him to them to who to them oh,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 1 1,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 +and then they both have one the end the el the um the little elephant is playing with her bouncy ball and the gi and the giraffe comes to meet her suddenly the ball falls in a f pool beside them the the giraffe goes and swims for it and the giraffe is so kind and brings back the ball the elephant is so happy the elephant and the giraffe meet at the pool and look at the diving board the the elephant goes to run for it,0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +but there is a sign above her head that says no running she slips and falls she she scrapes her knee and and can not swim a lifeguard comes to see what happened to her knee the and he put a bandaid on it he sets her down on a bench so it will it will it will heal and the lifeguard points to the sign that says no running the ele the elephant and giraffe are swimming together the giraffe finds a plane and starts to show it to the elephant the giraffe um the elephant grabs from it from the giraffe and swims away,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 1 +suddenly she dropped it the giraffe gets very mad and can not hold in his anger the lifeg lifeguard comes and sees what has happened the elephant starts to complain that that it was not her fault and the lifeguard tries to get the plane but no one can reach it so a lady with a net comes and pulls it out she is very kind thinks everyone and the giraffe gets his plane back everyone is very happy,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 1 +um a bunny and a dog were mak were making sandcastles in the sand uh sand bin um the bu the bunny um he he got a bucket and started to build a better castle suddenly he dumped all the sand on the uh the bi the other castle and everyone was disappointed the o the dog was was so sad she started to cry the dog mee meets the bunny um for a picnic they they have a picnic together except the bunny is kind of piggish he eats all the food really fast while the other one eats very slow and politely the rabbit feels very sick after his big meal the doctor has to come and help the the s sick rabbit,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 1 0 0 1 1 +the dog pulls her her over to the um to see if he is conscious the doctor says she ha he has a fever and he ate too much soon he feels better again the the the dog is has a balloon on her wagon and the bunny comes to meet her the bunny notices the nice um shiny balloon he the bunny tries to untie the balloon but the dog um the dog gets nervous and it floats away,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 +the dog gets very very mad at the bunny but when they turn around they see another man with twenty more balloons the rabbit buys one to make um but he does not have enough money for one balloon the man tells them they could ha they could get a free one and the nurse says no actually i will buy you one and she goes and buys one this makes both the bunny and the dog very happy now they both have one balloon they going at the swimming pool,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 1 +they putting it the ball in the swimming pool and he is trying to get it he got it she is happy the end they were dr they dry themselves dry themselves and the girl is going into the swimming pool she is dancing she is crying she gots a help from her friend,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 1 +put a bandage on it now sh she can go on the swimming pool she is sitting the end she is talking the boy is playing with his airplane she grab it away from him the airplane is in the swimming pool and the boy got angry and the k the man comes by them,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +what did you say the man comes side them and the girl is talking the man was trying to get it the man can not get it woman tried to get it she gots it the boy is happy now the boy and the girl is happy now the end,0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 1 0 1 +the boy is talking to the dog and they are making a castle and the boy putting the sandcastle and the girl is so happy not the boy he is sorry for it he is what sorry and the end they are looking for easter eggs,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 1 1 +and they are eating he eat the whole thing he got hiccups there is his father and he have to help him and he gots a headache he is going and the end the boy is running and the boy is talking,0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 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 1 +and the boy is taking off the balloon the balloon is floating away and the girl went angry and there is lots of ball sh the girl is pushing the boy gots no money the man is happy the dad is here again and the man is not giving thm them balloon the man give the rat balloon rabbit a ba balloon,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 1 0 1 1 +and they can have one and the end she is playing with a ball then it drops in the water the cow s wants to get it and then the cow gives it back to the elephant and she likes it and the end um something is sinking something is sinking and the elephant is going to get it,0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 1 0 0 1 0 0 0 0 0 0 0 1 +and she trips and she falls and hurts her knee and the lifeguard comes and she gets a bandaid on it and she she sits on a bench the lifeguard tells her not to do it again elephant is excited to see what the giraffe has and then he tries to throw it up into the air and then the elephant grabs it away and then it sinks into the water,0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +then the giraffe gets mad at her and the lifeguard gets mad at the gir at the elephant and he explai he tries to explain what happened and the lifeguard um tries to get it then they can not get it and then a woman comes up with a net and she gets it out and she gives it back to the giraffe and then he hugs it the end,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +um the bunny and the baby elephant are building a sandcastle and then the bunny is filling up a pail with sand um then he is stuffing it on the sandcastle and then it is ruined then one of them is sad that is it they are going on a picnic they are the bunny is eating lots of stuff he is getting full and he has a stomachache,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then one of them sees his mom rabbits mom and he tries to get her to get to get to get rabbit and she wakes him up and they go home ah that was a good one he is taking a balloon somewhere his friend is coming up to him and he and his friend likes the balloon and then his friend tries to untwist it then it goes away,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1,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 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 +and he is sad and then she is angry with rabbit and then there is a new ba balloon sale and he wants one and he gives it to him and then he wants another one and then mother is here he comes up to her and he tells her that there is balloons and she will and she is giving him money,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then they both have one a balloon that is it the end there were two animals an elephant and a giraffe who wanted to play in a pool and the w there they were playing with a ball and it fell into the pool and they wanted to sw swim and get it and they thought it was fun one of them he fell he went into the water and tried to swim to the ball but the ball was floating away from him,0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the elephant and uh then the giraffe got the ball for the elephant and then the elephant was started playing with the ball again and they uh and they still wanted to play with it so they still played together the end there was a no running sign and they still wanted to play in the pool and th they were running away and then and then sh the giraffe started chasing the elephant and the elephant slipped,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 1 0 1 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 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and then it hurt itself and the elephant was crying and the giraffe said are you okay and then the lifeguard came and said are you all right and the elephant got a bandaid and sat on the chair and he and the lifeguard was trying the elephant was trying to get off the bandaid and the lifeguard wa said keep it on the end the giraffe and the elephant came back to the pool with the airplane the giraffe was playing with it and tried not to drop it into the pool,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the elephant was so into it he the elephant w was kept staring at it the the giraffe said hey when the elephant took the plane away and the elephant started playing with it and the elephant accidentally dropped it into the pool and the giraffe was kind of mad and then he was so mad that he growled at the elephant and the elephant was scared scared and the li and the elephant called the lifeguard to come and try to get the airplane and they looked like they tried,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and after that and af and then after that he he was trying to get the plane but he did not so the ele so the elephant did not know what to do and the giraffe was crying and the elephant decided i will have an idea and the elephant went to get a net and then he used it to get the plane and got the plane for the giraffe the end and the giraffe was really happy the end,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 1 +there was a rabbit and a dog they were making a sandcastle and then the dog and the rabbit made the sandcastle and the dog was sitting into the sandbox and said hey rabbit we made it we made it and the and the rabbit was helping the dog make it more bigger and it and he put too much on and made it fall right down on it and then it al almost then it broke and then it was totally broken at the end of it by the end the end,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 +um there once was a dog and a rabbit they wanted to go on a picnich picnic instead of making a sandcastle in the park rabbit wanted to have the most stuff so he took out h all of his stuff and started his stuff and the dog wanted to eat just this couple of stuff and the rabbit was totally full and he he was almost having a tummyache and then he fell down and he had a big tummyache and the dog ran to get his mom and to help,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the dog begged his mom to do it so the mom came and helped and he was okay the end instead of going to for a picnic and and going into the park and making a sandcastle they got a balloon and they were playing with a balloon and they tied it onto their wagon they were driving it around and the rabbit wanted to take it off and the rabbit was trying to take it off,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then he made it fly away and the rabbit did not know what to do and the dog was very mad and then they saw more balloons and wanted to get uh the dog was still mad and the rabbit was going to get another one for the dog and the balloons were five cents and he could not get it because he did not have any money and the dog was wanted to get one too and he tried to get one and the dog was waiting for the rabbit to get some money from its mom,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 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 1 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 1 +and it asked the mom if he could have some money to buy the balloon and he got five cents and got a balloon for the kids and they got to play all they want with the balloons the end there was a giraffe and and a a girl elephant they were playing ball by the street on the sidewalk by the swimming pool and then they dropped the ball into the pool they could not ge could not get it but giraffe dived in and k was was swimming but elephant was covering her eyes,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,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 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +then he got it and gave it to her she was amazed then he was soaking wet and she hugged the ball and he looked like a genius there they were again by the pool and there was a sign by uh the diving board and it said no running so they looked at the pool amazed for some reason then elephant said i want to go on the diving board,0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 1 0 0 0 0 0 0 0 1 +and she ran to it she ran to it and she slipped and giraffe did too and she scraped her knee ouch she had xs in her eyes stars in her eyes she was crying the lifeguard came and it was an elephant,0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 1 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 1 0 0 0 0 1 +no running in the f in the no running by the side of the pool he said the lifeguard and he put a bandaid on it she still had stars in her eyes and then at least giraffe did not fall and then it felt much better see no running in the pool he said the lifeguard did not you see that sign no running he was mad there was elephant with giraffe again by the pool again,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 0 1 0 1 0 1 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 1 1 +they found a plane with string at the back and she had swirls in her eyes the elephant and the giraffe was spitting out spit then she caught it he was really he was like huh splash it landed in the pool oh no they said and then giraffe was very mad it was just about to sink and elephant was going,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 1 0 0 0 1 1 0 0 0 0 1 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +then the lifeguard came again and he had his hands on his hips and and the airplane was still there but it was not sinking then it was almost going down they explained to mister elephant mister elephant you see i grabbed it and i dropped it by accident in the water when giraffe was playing with it he bendednd over and he tried to he was he was um growling,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 +he could not even get it he could not even get it and then giraffe just uh started just started to cry and then miss elephant came along she had a net and she got she had a net and she looked surprised she fished it out with the net and the and then giraffe started stopped crying the lifeguard stopped um um worrying,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 1 1 1 1 +so did the elephant and gave and then with amazement she gave it to giraffe he hugged his airplane he was happy and the elephant was happy too there is a bunny and a dog were playing in the sandbox and making a sandcastle the bu the bunny was getting the sand from the bucket and the dog was making the sandcastle but he the rabbit poured all the sand on it and the dog looked um fri um surprised,0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 1 +the sandcastle was broke the bunny had his mouth open but the dog did not the dog was crying but the bunny was just nervous here is the doggy and the rabbit again um they are going for a picnic with their basks baskets in the woods the bunny was really thirsty but the dog was not he looked at him surprised,0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 +there was a cake cheese and a basket and and the basket poured and a carrot the dog the bunny ate all his stuff there was an apple it was all done there was a cheese was all eaten the carrot was all eaten but the dog was still eating her sandwich and her juice drinking her juice then the the bunny had a tummyache but the dog was looking at the bunny surprised missus bunny came,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 1 +and wa and she was walking along and then the dog ran to her to doctor he was still ha he still had a tummyache and the dog was pulling her her sleeve and she looked surprised the doctor the doctor was said he has a tummyache from eating too much and he had to look uh with his tongue with a stick then she walked along with rabbit he and they went together and the dog was only left with the picnic,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +well the dog was going with a balloon on her um wagon wheel and the bunny ran to her it looked like he was jogging the bunny was surprised she had a balloon and there was there was the doggy she did not look so happy but then she screamed because the bunny was taking the balloon away from her and then he let go of the balloon it flew up and he they both yelled come back,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 1 0 0 1 0 1 +then the balloon drifted away the bunny had his ears down but the dog was very mean bad mean mad there was mister rabbit carrying some balloons they found him again with and a b by a bench and a garbage can the rabbit ran up to him and said may i please have a blue balloon s he said five dollars first he he pulled out his pockets but there was no money the dog was rushing to the bunny,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 1 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 +then they looked at the mister bunny with a grin h they could not buy another balloon then missus rabbit the doctor rabbit and then was standing there and then little rabbit went to go ask her something can you bo please buy us a balloon said rabbit and then she looked at him amazed because it is for five bucks only said f the mis mister bunny then she paid five bucks and they got two balloons ten bucks and they both had their balloons,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 1 0 1 1 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and they lived happily ever after first there is a lady who is bounce a ball under the giraffe it went right beside they are working at a centre she bounced it into the wall the giraffe and the elephant are looking at it the giraffe goes and swims and get the and gets the ball then the elephant takes it he then the giraffe gets out of the water first the elephant and the giraffe see the diving board then the elephant sees it,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +then she goes to go on it she went running too fast and she fell and she bruised her knee the giraffe went down and comed to see her then and then the elephant that was a lifeguard comed to see it too the eleph the the lifeguard put a bandaid on the bruise they had to sit on the bench for awhile and they talked not allowed to they talked about they are not allowed to run okay,0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 1 +now she knows it is that it because he saw the sign because he showed him the sign because he showed her the sign now no running the giraffe and the elephant got together and the giraffe got a airplane the giraffe is putting it up high and pretending it is going then the elephant takes it and she tries to do it too but the elephant throwed it in the water,0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +the giraffe gets angry then there is a lifeguard coming along the elephant is explaining what happened the lifeguard tries to get it but she can not get it so so the giraffe starts crying then comes and then comes a lady with a net then she gets it out of the water then she gives it to the giraffe now the giraffe is hugging the airplane,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 1 0 1 +first the rabbit sees the puppy playing in the sand he wants the rabbit sees the puppy playing in the sand and he wants to play they builded a sandcastle the rabbit filled up a bucket of sand the rabbit dumped it on the castle then the rabbit said oh no then the puppy was trying to get it off one time the puppy saw the rabbit coming with a basket and the girl had a basket the rabbit had piles of food,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +the lady did not she saw the rabbit eating so much the rabbit got really fat she was he was starting to feel dizzy he called the doctor and he got the lady the lady told the doctor to help him the doctor said you are eating too much food too fast so he takes the bunny the the dog sees the bunny coming along and the girl has a wagon with the balloon hooked on it,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +the bunny the bunny looks at it then the bunny takes it off then the bunny accidentally let it go and it going too high and they can not reach it the the dog is getting mad at the bunny they see another balloon holder so the bunny says can we have one of those balloons but none cash and it costs five dollars,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1,0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +uh they explained what happened to the balloon then they go running to go get somebody can you say that louder they went to go get somebody he is explaining about the balloon man and and we do not have enough money so she buyed two balloons and now they both got a balloon once upon a time they were playing basketball then then the boy came named giraffe,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 +the ball got stuck in the pond then he went back home then it fell back in the water and he gave the cow a nnn new then he went out of the water the end there was a girl named elephant and the giraffe went swim again the lake and then they just ran ahead then they jumped into the water,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and then they hurt her knee then they could not give a bandage and he just put on a bandage for her then it feel then they went swimming for a next time then he got mad the end once upon a time a a boy me met a girl and he was going to fly his airplane then he flew it and then then he let go of it,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +and then she grabbed it from him and it was hers and he throwed it in the water and then he got mad at her then he got mad and he need to do something and they could not reach it so they they got a net and it was there for a long time and he got a net,0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 1 +then he got it then he just tried to get it then he just got it then he just give it to the boy who had it and x the end he went and he met a girl going to the the playground and she made a ca sandcastle trying making one like hers,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then it broke then they got very angry but they needed to make it all over again the end there was a boy named bunnyhead then he went to to have a picnic and met another guy with a picnic basket and they had a picnic before it it it got night time then they had two boxes of sandwiches and then they got full then they went then they then they went full,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 +and they get more and more then came the mommmy then the then the doctor then they ran up to her then they bumped into her and she took a temperature and she was sick and she needed to take her to a hospital the end once upon a time there was a boy and went um uh what um giving him wagon a walk,0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 +then they then they got put it on a balloon and that was good then he tighten it on very good and he gave it to the girl then then it flew away then there was no way then he was ba angry then he met a balloon guy and he bought her one and buyed a new balloon so so they c so there could be one on the wagon then he gave us one before he flew away,0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and thank you and then it went she sawed the doctor again and a little girl can you buy us a balloon and they gave him money then then he gave them balloons then they then they both had one good the end once a elephant was walking over to a giraffe with a backpack full of three balls then the balls sank into the water and floated away,0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +they tried to catch it but they nearly fell into the water they fell into the water and tried to float he tried to float to the balloon the ball but it wa but it but the ball was too fast then the elephant caught the ball and pulled giraffe out of the water then he was soaking wet then they walked home once gira giraffe and elephant were so excited they wanted to go into the pool,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +they walked over to the stairs and then they walked over to the board and then they jumped in then elephant jumped in and then elephant slipped and slide and then he fell into the water head first he did not realize that that he had no bandaid on his owie and it hurted and hurted and hurted and hurted uh momma bear poppa bear walked over to him are you okay,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 1 1 +no replied sister bear then they were so excited they are they v poppa bear gave him poppa elephant gave sister elephant a bandaid then it felt much better now they were ready to play in the water but then suddenly the poppa bear said you stay there do not go with the giraffe once elephant and giraffe were walking to the pool again giraffe brought an airplane and then he elephant flied it but then it sank into the water,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 1 0 1 0 0 0 0 1 0 1 1 1 0 0 0 1 1 0 1 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +you said elephant you get that airplane out of the water but i can not cried elephant now it sank into the pool it sank into the pool nearly all the way poppa bear said get that airplane i can not said poppa bear said to the giraffe poppa bear tried to reach it but it was too far oh now we will never get it cried poppa bear and sister bear hold it said hold it said giraffe i got something,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1,0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 1 1 0 0 1 0 0 1 1 0 0 1 +i have an idea he he got his momma bear got the net and then he tried he got it then he tried to get it and at last he got it and then it was soaking wet that he had to waited till it was dry now it was dry and he could fly it but not into the water any more once two bunnies were playing in the sandbox one bunny build a sandcastle,0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,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 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 1 0 0 0 1 +and one digged sand to put in his bucket he poured it onto the castle and then it all broke and then it all fell and then the uh the bunny had to build it again once two bunnies were going out for a picnic ss one ate a carrot and some hot dogs then he was all full and then the second bunny drank juice and ate his sandwich and then the sandwich taste yucky,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 +and then they went home to their mom the mom said the mom said please take care of your little brother and they took care of each other then the the sister bunny and the momma baby all they walked home together once a ba a bunny was bringing uh a wagon with a balloon attached to a wheel and then the the bunny was so excited that he looked at the balloon and then he tried to put the balloon off the wheel but it was stuck and then it flew up they tried to catch it,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 1 0 0 0 0 1 +but it was floating away up into the air and then it nearly disappeared and then they got so mad they had to get a different one they had to get a new one so they walked over to mister balloon and said can i have one a new balloon the bunny asked and then he gave him the nice five balloon and then he did not gi give him them one and then all of sudden brother bear brother bunny and sister bunny saw their mom and they w then they walked over the river skated over to the river and out at the river she saw their mom,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 +and then mommy mister balloon will not give us give us a balloon and then then h then momma bunny walked over to mister balloon and said can you please give them a balloon she asked certainly replied mister balloon and then they had two balloons for themselves two friends were playing with a ball the ball went in the water the guy tried to get the ball then she uh the boy passed the the ball to the elephant and then they the boy was in love with her,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +two friends were going for a swim and the elephant wanted to dive she tripped and and hurt her knee the lifeguard came and put a bandaid on her and she was curious and the lifeguard showed her the sign of no running the giraffe brought a airplane he was playing with it and the elephant was getting bored then the elephant took it away from the giraffe and started to play with it,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +she accidentally dropped it in the water the person was very mad at her the lifeguard came and the elephant explained to the lifeguard he tried to reach it but he could not the life the the boy was crying then somebody came in with a net and reached it and got it out and passed it to the giraffe and he was happy and so was the elephant,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +one day uh a bunny went to the park with his friend she was making his sandcastle with her he dumped it all over her sandcastle and it uh and it blew up and she was crying and he did not and he did not even say anything uh two friends went for a picnic uh the one friend ate everything he was very full he got a stomachache,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1,0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 1 0 0 0 1 +the little girl ran to the nurse and pulled her over to the boy and she said merry christmas and they lived happily ever after two friends went to the park and the girl had a balloon uh the boy wanted to hold the balloon he untied it and it flew up and then the girl was very mad at him then they saw a balloon person,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and he asked if he could have a balloon of hubbadubba uh bl and the guy said balloons five cents and they were very sad then they seen a doctor and asked and the boy asked if she can buy two balloons with five cents and they got the balloons and she paid and they loved the balloons a elephant met a a giraffe and the and the elephants ball went into the water,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +then the giraffe would get it and then she w then she was happy and then hmmm she liked her and then okay um the elephant and and the the giraffe was going to run and he was going and the elephant was going to run over to the jumping thing and then she slipped and then she fell,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 1 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 1 0 0 0 1 +and then the lifeguard came and then he putted a bandaid on and then then she knowed that there was no running and then she looked at the sign and it said no running and then the end the giraffe had had a airplane and he was going to throw it and and the and the elephant wanted to try too and then he s he was tr he wanted to throw it,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +and then the elephant was going to throw it and then it sank and then then the giraffe was mad and and then the lifeguard came and then and then the lifeguard was going to get it and then he and then he was almost about to get it and then and then the giraffe was sad what happened next and then then the girl lifeguard came to get the airplane with a th a net and then she got it,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then and then she got it and then he was happy a bunny and a bunny were playing in a sandbox and then they builded a snowcastle and then the the other rabbit poured some sand in it and and one part was still fixed then what happened and then the other one was sad the end um um two rabbits had baskets,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 1 0 0 0 0 0 0 1 0 1 0 1 0 0 0 1 +and it had a picnic and then and then the other rabbit was full then he was hurt what happened he found a doctor and and he thoughted that guy was hurt and then the doctor came and then then the boy was better the end um the girl had a wagon with a balloon on it,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 1 +and the and the other rabbit was running and then the boy rabbit was going to take the balloon and then he and then he was trying to take it off then what happened then it flew up in the air and then then it popped and then he was going to the balloon man and then then the girl was sad what happened then and then then he was mad,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +um then the girl came then sh then she then then she wanted a balloon and then he asked the doctor that could could he have some of your money what happened then then then the boy and the girl was going to have a balloon and then they both had a balloon the end once an elephant and a giraffe were playing ball when suddenly the ball dropped into the sand that was water out they sunk the ball picked them out,0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1,1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +but it was just the elephant and they played ball again once an an elephant and a horse were playing in the sand suddenly it was not sand they realized they fell and sunk they came out again they got hurt because that is how it looks they had to put a bandaid on a different eleph on that elephant a doctor elephant and they sat down the doctor elephant got angry,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 1 0 0 1 +once an elephant and a giraffe w were shooting airplanes when it looked when suddenly the airplane got broken and it shooted into that water into the water oh no said the little giraffe like he yelled mister fixit came and said what is all this yelling about a a a plane got stuck in the water can you take it out of course i will and he s he got angry too did not know how,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,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 1 0 0 0 0 0 0 0 1 1 1 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 1 0 0 1 0 1 0 1 0 0 0 +so he took his net out of his truck and scooped it up and that did the job and they played airplane again and they were happy they liked the the airplane it was all fixed up once a dog and a rabbit were playing in the sand they made a sandcastle and when by the time it was finished they poured some more sand and it fell down and did,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,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 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +they built the sandcastle again it was up once a dog and a rabbit were walking down they had a picnic soon the rabbit was so tired and full that he had to go to sleep out they packed his legs got tired dog had to pull him doctor came along and fixed up the rabbit and took them home once a a dog and a rabbit were waiting down with a balloon when the balloon popped,0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 +on that hot day they all sat up went the balloon it popped out came the balloon man with lots of balloons and they gave one to each and they had lots of balloons only one popped and they liked their balloons off they went out came doctor rabbit,0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1,0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 1 1 1 +he said what are these balloons are for the balloon man gave it to us because we love balloons and ours popped away once there was uh two friends one tally and one hm snout and snout had a beautiful green ball but it fell in a pool so tally swam to get the ball and he got it back um tally was blushing his whole face went red,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 1 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 1 0 0 1 0 0 1 0 1 +this is another story about snuff snout and tally once there the pool in the last story with the beautiful green ball fell in the pool and tally got it back there was a diving board and snout said i am going to go on that diving board and i will show you a nice dive well tally said stop do not run and unfortunately snout slipped and fell and really really hurt her knee and then tally warned her because tally saw a sign that said no running snout started started to cry,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 1 0 0 1 +but the lifeguard luckily saw and came to the rescue and the lifeguard gave snout a bandaid once snout stopped crying the lifeguard gave her a sticker for being such a good help not moving her knee around and stuff and then um the lifeguard pointed to the sign that said no running and snout looked and said sorry this is a story about snout and tally and tally had this nice model airplane that he was playing with by the pool he was flying it around and snout was like ooh she really wanted to play with it,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 +so she snatched it away and then tally was like hey give it back it is mine and snout dropped it in the pool and then tally s said now look what you have done you should not grab and tally got really really really mad at snout and then the lifeguard asked what is the problem here kids and snout said well um ta tally here was playing with this model airplane and i i really wanted to play wis with it,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 1 1 0 1 1 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 1 +so i grabbed it away but i accidentally dropped it in the pool so the lifeguard had to get down and stretch out for the plane but it was too too far out the lifeguard could not get it and then the the girl luckily had a net so she dipped it in the pool and luckily or not but he was lucky she did get it out,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1,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 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 +and then snout said sorry i dropped it in the pool once there was two animals a wolf and a bunny and they were at the beach or in a sandbox and they built a big big sandcastle the wolf was working on the tower and the bunny was um collecting the sand but then the bunny poured the who the whole bucket of sand onto the sandcastle and it ruined one tower but then the sand that was on the tower started coming down and wrecking the whole sandcastle so when that was all finished the only thing left was one tower,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the wolf started to cry and the bunny feeling bad once there was two animals a ra a hare and a wolf and the wo and the bunny thought that he was so good so he could have all the food he wanted so then once once they were finished the wolf had just a sandwich and a juice and then the rabbit was feeling kind of queasy so um the the wolf told him he would walk him home but luckily a doctor was walking by so the wolf a asked the doctor if he could um help the uh wolf and then the the wolf um brang the doctor over to the bunny,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 +and the the wolf said he has fainted he needs your help so the the the hare doctor said well i will give him this medicine so she did and he woke up but still he was feeling kind of queasy and then he he just took a run around the trees that is what the the doctor told him to do and then he was feeling fine two best friends named fluffball and fluffy were once playing at the park,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 +and and the and fluffball which was hare kept going on about this balloon he got for being the best student in his class but then the the hare said i am going to take it off and show it around but the wolf said no do not it what if you let it go it will fly up into the air but the hare did not listen so um the balloon he accidentally let it go and it went up into the air the the um the wolf got so mad at him that he he he he said i am not your friend any more but then the hare saw some some balloons,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +so he went over to the balloon guy said i want um that red one right there but it was five cents but he did not have any money so the guy that was selling the balloons said sorry but you can not have this nice red balloon and then um doctor fluffball which was fluffballs mom um asked him um fluffball asked his mom if he could have five cents because the the red balloon was five cents so doctor fluffball gave the man five cents and he got two balloons for both of them and that was that they both got a blue and red balloon playing baseball,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 1 1 0 0 1 1 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 +bouncing the three balls in the fall looking at a ball in the fall laying down in the fall trying to get the ball try give someone the ball in the water in the spring playing running around in the spring looking in the water in the f summer lookin running through the water in the summer running in the in the summer on the sidewalk getting hurt on the sidewalk in the summer get hurt in the summer crying,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 1 +playing in the summer sitting down on the bench in the summer sitting down on the bench in the summer get someone getting mad being happy in the fall playing in the fall with a little toy airplane playing with a little toy in the fall put his airplane in the water in the fall put the water in the in the water in fall put the water in fall,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +put the water in fall and they happy try and get it in the water in the fall sad it in the water in the fall getting a net to try to get in the water in the fall try to get it in the fall then kind of got it giving the airplane to somebody in the f fall givin holding the airplane in the fall the end,0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 1 +playing playing in the sand making a sandcastle with sand playing with sand with sand playing with sand with sand playing with sand with sand uh bringing food somewhere having a picnic somewhere laying down and eating somewhere la laying down and eating somewhere,1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +playing somewhere pulling somewhere playing somewhere playing somewhere bringing a cart on the sidewalk in the spring taking a cart somewhere in the spring taking a cart somewhere in the spring trying to get the balloon no handling and they would all go somewhere in the spring,0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1,0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +looking up s in the sidewalk in the spring saying could i have a balloon in the spring seeing what ss getting a balloon in the spring looking at a balloon ss looking they were at a tr at a balloon in the spring but they were all gone walking in the spring um looking at the balloons pulling someone to that balloons in the spring,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 1 0 0 0 1 0 0 0 1 +uh getting a balloon in the spring walking once upon a time the elephant had a ball and the giraffe liked it and he decided to play with it by the pool and then he made a mistake and it falled in the water and and and the elephant thought that he could not get it but he he just tried and tried and he got it,0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he gave it back to the elephant so the elephant was very happy the end once upon a time there is a elephant and a giraffe by the diving pool and the elephant ran and slipped i think i think that is next page and he slipped and got hurt so the giraffe came running and then one of the elephants came to help with a bandage and the band and he put the bandage on,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he hurt and hurt and she had to keep her leg out like straight in front so so it would not hurt when she walks but she had to sit there x what was that last bit she has to sit there at the diving pool all day until it feeled better so and then the big elephant said no running and she went that is why he got hurt and he said so she had to sit there for time out that is why,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 +once upon a time there is a elephant and a giraffe the giraffe had a airplane and they were at the diving pool the elephant played with the airplane and watched it zoom around and he did like and the elephant took it away and started playing with it and then it fell in the water and the giraffe stared at it what and the giraffe stared at it,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 1 0 0 0 0 0 0 1 +and then the giraffe was very mad at the elephant that the elephant was so scared so the beach the suh the the the lifeguard he he decided to take it out and he tried to get it because the elephant said so small elephant as tall as me and then he tried and tried and then i should not what is that last part then he tried and tried but he could not get it so he just tried still,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +so he could not get it and the zebra was sad so sad and then there is somebody that ha was even a bigger elephant and tried to get it with her net and she got it and she got it out for their giraffe and the giraffe was happy very very happy so the elephant and the giraffe became friends again there is so much ones about them at the diving pool the end once upon a time there was a little dog and a little rabbit they were playing in the sandbox,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 1 0 1 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 1 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and they builded a castle and the bunny took some sand and put it in the bucket and he started shoveling it and then the bunny poured all the sand over the sandcastle that the dog made and then the bunny said oh i am sorry i will not do that again oh the dog was very sad he cried h because the bunny was not very smart and then f and then the bunny just would not play with him and he standed still with his ears down like this,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 +the end once upon a time there was a bunny and a dog they were going to have a picnic with each other and they met each other in the woods they met a what they met a each other in the woods the bunny brought lots and lots of junk that is like all food that is bad for you junk like what like junk i call it when it is food that is bad for you i call it junk,0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 1 1 +and the bunny ate so much of his junk he got sick and he falled down and he got dizzy and then the doggy ran to the doctor bunny to help and the doggy pulled him over and then he started working on fixing him in case he was okay well then he threw a thing at his head and tried to s make him look over there and he fixed him up he had to go home so he the doctor brought him to his home,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 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 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the doggy was very happy the end once upon a time there were a dog and a bunny and they met each other in the woods and the dog had had a balloon and the bunny came running and a bunny ca took the balloon out of the the wagon and tried to untie it but the dog said no and he would not listen,0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the dog tried to catch it and the bunny tried to catch it too but they just could not catch it oh and then the bunnys dog friend got mad and made his teeth like this and made what and made ade him mad so he would be so mad that he would just be like this standing there then he went off to get a balloon from a balloon seller that sells balloons he decided to to get one,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +he decided to get one the bunny decided to get a balloon but he did not have any money for five cents well they were sad and he did not have any balloons for each other because they wanted then the bunny wanted one too so they went off to someone that had money and then the and then he and then he bought some for them and they got two the two last ones left and they were so happy and they they have been friends with each other all day the end,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 1 0 1 +the elephant and the cow umhm so you have told me what is in the picture can you tell me a story about it cow elephant cow and a elephant umhm what is happening they are trying to find each other the elephant and the cow had a accident with the ball and the eleph the cow got in there the cow got what he got in there he got in there and the elephant got it,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the cow is still in there and the cow and the the cow is dripping and she has the ball there is a slide cow and a elephant a cow and a elephant and a slide and a pool and the elephant is running and slipping and the sand and the cow and she got hurt she got hurt on her knee and it hurted and she can not go in the pool,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and she hurt herself uh the bo the cow and the elephant the cow the elephant has a ribbon and a dress and the cow gots a airplane and and uh she got it and it got in the water and the cow was mad and she is mad too both of them are all mad and the elephant is getting it,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 1 0 1 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 +he tried and tried to get it she gots a net to catch it and she is going to get it with the net and they got it back and they are happy the rabbit and the d the d he she made a a sandcastle and the rabbit gots a shovel and the rabbit wants to play and the s and he s g something is going to happen to the sandcastle and it brokeded,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 1 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 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and then the she is crying they got picnic baskets and they are having lunch and they are havi and the rabbit is full and the rabbit is what full and they are and and the she is hungry and the de and she goes to another lady and sh she she is going to say hi and there is the rabbits mom,0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 1 +the there is a balloon and a wagon and she is carrying and the rabbit is not the rabbit is what he is not carrying and the girl is just carrying it what did you say the rabbit was carrying nothing and there the balloon is going to be poppeded and the rab the rabbit is going to take it off and it is going away,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and it got away and they were go and get another one from the man can you take your fingers out of your mouth then i can hear your words better they are picking one and they are going to give one and they are gon to go the man said no and and there is there is the bunnys mom and he is the b the rabbit said he will not give me a balloon and now it he is getting one and he got both balloons,0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 +once upon a time and he is looking apples and the apples fall into a pool and uh a buddy a a guy f is catching it and he get it and he put it back and he be happy the end once upon a time are walking in a pool and he is looking backwards,0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and a girl walking and a and he stopped and he be worried and he be scared and he sit on a bench and he sit on a bench the end once upon a time out walking and he is flying a plane and he and he is playing a plane,0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then he dropped it gone is sinking and sinking and sinking and sinking and sinking and sinking and sinking and he catch it and he put it right back on his hands,0 0 0 1 0 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he be happy the end you can start once upon a time once upon a time what do you see use words so i can hear you so my tape recorder can hear you hm what has happened them building and he throwing sand,0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 1 0 0 0 1,0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 0 0 1 0 0 0 1 1 0 0 0 1 1 0 0 1 1 +and messed all d up and he be sad how does it start once upon a time try again hm and he is eating and he is tired and he is going sleep and he is running and he is holding his dress,0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and he fall down and he walks the end once upon a time a tree and he catching a balloon and it pops and wants the balloons and she wants the balloons again and they popped,0 0 0 1 0 0 1 0 1 0 0 0 1 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 1,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 1 +and they popped again and he is looking and he get and he be happy and he be happy again the end there is an elephant and a giraffe that but the elephant is bouncing a ball so fast that the giraffe wants to try and the elephant um and well the elephant and the giraffe but the giraffe is trying to get the ball in the water so he swam,0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and and the elephant was covering eyes his eyes and um the elephant was covering his eyes and his trunk was full of stuff and then h he was happy and then the giraffe was happy then the elephant started to grab it from the the giraffes hands and he said thank you and the um elephant had the ball and the giraffe was soaked so the giraffe asked him if he could bounce it but he said but the elephant laughed,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 +and he said no there is the giraffe and the elephant and the giraffe has a kleenex and they were going to go in the water and um the elephant was going to go in the water but the giraffe pushed the elephant and so the elephant fell in the water and the elephant slipped when when the giraffe was running after him so he would not slip but then the elephant he got hurt and the giraffe the elephant got hurt because um he slipped,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 +and the giraffe was running to see what was ran what was wrong and the elephant was crying and the coach came to see and the giraffe was just looking at the elephant and then the then the coach started to put a bandaid and the elephant was covering ey his eyes and um doing kind of a mad face and the giraffe was just looking but then the coach sat the elephant down on a bench and the uh um giraffe was just um holding his hands like this and the coach was pointing his finger,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and he is and the elephant was holding his hands right between his legs and then he and then the elephant um had a kind of a mad face again the giraffe and the elephant and the elephant was the giraffe was holding the airplane toy airplane and then the and the elephant wanted to play with him but the but he was still playing with it but the giraffe was still playing with it and he was making the elephant not catch it but the elephant finally caught it and then he started playing with it and the giraffe was starting to get mad,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +but the po but the toy plane went in the water so the two guy but the giraffe and the elephant um put their mouth like this but then the giraffe was really mad and the elephant was still ga still looking at the airplane and the coach came and the and he he was looking at the giraffe so um the elephant was telling him what happened and then the um the plane started to sink even more and the the elephant but the elep the coach went over to the elephant and the giraffe was um looking at the the two elephants,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the elephant was screaming his head off and he was telling the coach what happened but the coach had to grab it before it sank all to the bottom but he could not reach it and the giraffe was starting to cry but this other elephant came with a net and tried to get it and the um plane was started to sinking more but he still could not reach it but he finally got it and he gave it back to the giraffe,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +now the now the giraffe and the elephant were happily were happy there is a bunny rabbit and a dog making a sandcastle there is the bunny and the dog that um are um well the bunny rabbit is digging the sand up and the dog is um making the sandcastle smoother and the bunny rabbit was pouring sand all over the sandcastle so the dog was um starting to s um uh get sad but the but half of the sandcastle was left then the dog is was starting to cry and he was starting to make it all over again there is a bunny rabbit and a dog that are going to have lunch together,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 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 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +there is a bunny and a dog that are having lunch there is the bunny and the dog but the bunny but but the bu dog is eating and the bunny is and the bunny is chew and the bunny is sick the bunny um is does not feel good and the dog does feel good there is a bunny and a dog but the bu bunny is a mess and the bunny is going to well the dog is going to tell the other bunny that um he has to fix him but he pulled him because he will not,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he made him worse and then the bunny felt good and the dog was just by the sandbox there is a bunny and a dog and but the dog s has a balloon on his wagon and he is pulling the wagon and the bunny rabbit seen the balloon and he he was going to not try to take the balloon off but the dog did not want him to and the balloon fl flew away,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 1 0 0 1 +and both of them were trying to catch it the bunny rabbit the dog but the dog was rea really mad at him the rabbit was there is a big rabbit that had a lot of balloons and the bunny rabbit but and the dog but the dog was still mad and the w bunny rabbit went to get another one and he asked the man that has all the balloons could i have one but they were only five cents and he did not have five cents and then he said if you do not have five cents you can not um take a balloon then the dog and the bunny ra rabbit seen the doctor,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 +and the bunny rabbit ran but the dog stayed and the bunny rabbit said i want one of those balloons and he will not give me it then he um and the doctor had a lot of money so he gave him most of his money and there is only two left because the bunny rab the dog took most of them and the bunny and the wa the bunny and the wa the bunny and the dog had the two balloo the balloons and the then they went and both of them were really happy a giraffe and a a giraffe is watching a an elephant juggle a ball,0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 +and the ball gets stuck in some wa cement or a pool and the horse is swimming in to get it and he gives the elephant the balloon the ball and then he steps out and he is wet and the elephant is happy well an ele an elephant and giraffe are looking at the pool and there is and there is something behind a rock or something else and it looks like bunny ears and the elephant is talking about the bunny ears,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and they run and they run to see him and then the elephant does a stretch and and then there is a swipe and hurts her knee and then her knee and the giraffe is coming after and a lifeguard comes over to them and he is putting a bandaid on the knee and then they sit in a bench and the lifeguard is pointing to a sign that says no running there is a giraffe and a elephant by a pool,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 +and the gir giraffe has an airplane and he is flying it around in his hand and suddenly the elephant grabs the the airplane and drops it in the pool and it is sinking and the giraffe is mad at the elephant and the lifeguard is looking at them both and the airplane and the elephant is telling the lifeguard about what what happened and the lifeguard is reaching to get the airplane but he can not reach it quite reach it and the giraffe is like panting,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 1 0 0 0 0 0 1 +and the elephant is um kind kind of nervous or sad the lifeguard kind of has a smell and his ears are going up and then a an ele a girl elephant comes along with a net and she nets the airplane out and she gives it it to the giraffe and then the gir the giraffe hugs the airplane a rabbit and a mouse are playing in the sand and they are building a sandcastle with and the rabbit is filling a bucket,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and the mouse is flattening the castle and then the rabbit he pours the sand on the castle and the mouse has a kind of a whiny face because he is surprised he is doing that and he wrecks the sandcastle and then they and now they are building it again um a mouse and rabbit are going for a picnic and they are at their picnic eating the food and the rabbit is very hot because he looks hot and and the rabbit is full and the mouse is drinking juice,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 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 1 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 +and the rabbit is like really full and then there is a doctor rabbit and the mouse is running over to him and the mouse is pulling him over and he sees the rabbit and his his his stomach is really full and then he takes him off to the doctors a mouse went to a party he because it looks pretty much like there is a party balloon and the rabbit is looking at the balloon,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 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 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 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 1 +and the rabbit is trying to untie it and he unties it and accidentally lets go and the balloon is floating away and then they are in a big fit the mouse is really mad and the rabbit is like terrifyed because the balloon fel floated away and then they see a rabbit selling balloons and the rabbit is pointing to the balloon up in the sky and and the um rabbit shows him a balloon and it says balloons five cents,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 +and the rabbit is looking in his pockets for five cents and the the man the rabbit is holding the balloons and the mouse and rabbit are looking at him and then th and the mouse is stays behind aside beside the balloon man the rabbit goes to get the doctor uh rabbit again and he says there is a balloon man and we do not have any money and the um doctor and the doctor rabbit is giving the the b the balloon man some money so they can have the balloon and then they get the balloons and everybody is smiling,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 +one day some kids were at a swimming pool one of the kids had a big bouncy ball the other kid wanted to try it he accidentally dropped it into the water the other kid was scared that it would go to the bottom so the kid that dropped it went into the pool and got it the other friend said thank you and the other friend gave the other kid her ball back one day some kids went to a swimming pool one of the kids said let us jump in,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 +the kid wanted to jump in but she slipped and she fell on the ground and scraped her knee then the lifeguard came to help her he put a bandaid on they sat her down on the bench to rest for a while then the lifeguard pointed to a sign that says no running one day two kids were playing by a swimming pool one of the kids had brought an airplane to play with they were playing with it,0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the other kid snatched it from their hands and she accidentally dropped it in the water the other friend got really mad at her the airplane was sinking more into the water then the k then the kid who put it in the water by accident said to the lifeguard the airplane got dropped in the water the lifeguard tried to reach it with his hands but his arms were too short the other kid who had brought the airplane started crying then one of the people who were swimming saw the airplane and got out of the pool got a fishing net and told them that they would get the airplane for them they they reached into the water,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and sh she got the airplane caught in the net and she gave the airplane to the kid who brought it and that kid kept it and did not let other kids play with it by the pool one day two friends were in a sandbox playing together they were building a sandcastle one of the kids dumped a bucket of sand on one end of the castle and that end collapsed and the other friend started crying one day two friends were going for a picnic one of the friends ate too much,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 1 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 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 1 +when they were done they had a big tummyache and they really wanted to go home so one of the friends went to see a doctor they pulled the doctor by his sleeve to bring him over to the other friend the doctor said do not eat so much next time you have a picnic and the doctor took the other friend to his house one day in the forest two friends were walking one of the friends had a wagon with a balloon tied to it one of the friends wanted to touch it so they a so they took it off the wagon,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +pretty soon it almost touched the sky and the other friend was mad at him and the string was only left so the other friend got really really really mad at him so they both went to a balloon guy the balloon guy said do you want to buy a balloon and then he also said five cents a balloon and the rabbit reached into his pockets but they were empty so the friends just looked at him,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +then one of the friends went to a doctor and said that guy is not letting us have a balloon and then the doctor gave him five cents and they got a balloon and the then the doctor paid another five cents for the other friend and he got a balloon too and then they both played with their balloons all day elephant zebra what happens in the story ze zebra,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 1 1 0 0 0 0 1 1 1 +ball zebra and elephant ze um elephant and zebra and ball zebra and the ball an and the elephant zebra and the elephant and the ball the end um elephant and zebra elephant and zebra elephant and zebra owie and uh owie elephant has a owie,1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 1,1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 +and the zebra do not has a owie there is two elephants zebra two elephant two elephants and zebra two elephants and zebra two ele elephants st no zebra the end elephant and zebra,0 0 0 0 0 0 0 1 0 0 0 1 1 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 1 0 1 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 1 0 0 1 +uh elephant and zebra airplane uh elephant and zebra airplane elephant and zebra airplane uh it is on what is that sound what is that sound in there um elephant and zebra and airplane elephant and zebra elephant and zebra,0 0 0 1 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1,1 0 0 0 1 1 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 1 +two elephants and zebra elephant and zebra and airplane elephant and zebra elephant and zebra elephant and zebra elephant and zebra elephant and zebra elephant and zebra the end bunny,0 0 0 1 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 1 1,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 1 0 1 1 +what happens in the story um sandcastle sandcastle sandcastle and puppy and bunny sandcastle and bun uh san sandcastle and dog doggy and rabbit bunny sandcastle breaked a sandcastle breaked they are making it again the end,0 0 0 0 1 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 1 0 0 0 0 1 0 1,0 0 0 0 1 1 1 1 0 0 0 0 1 0 0 1 1 1 0 0 1 0 0 1 0 1 1 0 0 1 0 0 0 0 1 0 1 +um basket puppy and rabbit carrot i said a carrot that is it drink pa basket sandwich juice i said juice what happens in the story,0 1 0 0 1 1 0 0 0 0 0 0 1 1 0 1 1 1 0 0 1 0 0 0 0 1,0 1 0 0 1 1 0 1 0 1 0 0 1 1 1 0 0 1 0 1 1 0 0 0 0 1 +um tree tree tr tree tree tree the end uh balloon balloon balloon what happens in the story,0 1 1 0 1 1 1 0 1 0 1 1 1 0 0 0 0 1,1 1 1 1 1 0 1 0 1 1 1 1 1 0 0 0 0 1 +balloon balloon fly away balloon t popped the balloon lots of balloons lots of balloons lots of balloons five balloon lots of balloons i said lots of balloons,1 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 1 0 0 0 0 1,1 1 0 1 1 1 1 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 1 0 1 0 0 1 +lots of balloons yeah uh lots of balloons let us count the balloons in here in this picture there is nine two balloons there is two balloons none balloon one balloon two ba the end,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 1 0 1 0 1 0 0 0 1,0 0 1 1 1 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 1 1 0 1 1 1 0 1 +um the uh giraffe s comes to see uh comes on to swim in the water and then there is an elephant and then um she is bouncing a ball and he um he is asking to play with her they play volleyball and um it actually falled in the water by accident he was going to go in the sw he was going to swim to get it and then he swan swam in and then the elephant had um her hands over her eyes and he had a mad face cause he knew he could get it,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and um the he got it he gave it back to the elephant and then the elephant um was going to fall in love with the giraffe um they wanted to go for a swim and she wanted to try the diving board she did not see um no running she was gon she was running and the um ele giraffe said um you better not run it because he saw the sign but he did not tell the elephant and she did not she did not hear him,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 1 0 0 1 0 0 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and then she slipped she was running to get her then she got a big owie she was crying and then the lifeguard came over and gave her a bandage she was scared and now he said there um you have a bandaid now and he was m the lifeguard was mad don not run did not you see the sign,0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 1 0 1 0 1 0 1 +uh um the a gir the giraffe was walking and then um a elephant came and she wanted to play with his um airplane they were taking turns the um he was playing with it and um the elephant was curious that it would go in the water and then she took it away and then it landed in the water and th he was mad at her she wa she was curious what she could um do about it,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 +then the lifeguard came a and he saw that it was in the water the giraffe told him that um th the elephant was took taking it away and threw it in the water and then she said i did not do it and he did it by ac he did it on purpose and then he was the lifeguard was curious and he was trying to reach it they were both curious that he could get it and then it was starting to sink more and then a girl came with a net,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and then she scooped it out and gave it back to um the uh giraffe and then she said here have your airplane back and he said thanks for getting it and they fell in love again um a girl was building a sandcastle the um bunny wanted to play with her and he they dumped some sand she was patting it down and then he put some sand on it and um it broke,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then um he said oh no and she um said it is okay and he was she was crying she was trying to make it again um a boy and a girl was walking along and they were going for a picnic with each other he was eating a lot of his and he had a lot of junk he got so full and he was getting sick,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 1 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and he said i need a docor he doctor he he felt dizzy she was going to phone a doctor and then um she there is a doctor walking along and then um she ran up to him she said um my friend he has a stomachache he is dizzy he ate too much of junk and he said no and she said come on come on,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 1 0 0 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 1 +please help me and then she said yes and um he he said you are dizzy your temperature is five now he is okay and he went with the doctor home um she a girl was walking along and a boy was walking just for a jog and then she just walking with a balloon tied to her wagon and he wanted to play with it,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 1 0 0 0 1 1 0 1 0 0 1 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and she said no and he was tying it off the wheel and then it floated up in the air and then she was really mad at him he was scared he looked at the balloon and then they both s she was still angry at him and he saw a balloon guy and he said can i have one of those balloons and you have to pay five cents,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and they both wanted one she he was curious that um she was going to be really mad at him again and um he went to hi his mom and he was going to ask him ask her if he could have five cents and uh she said yes and she le he letted he she gave um five cents to him and they both were happy that they got a both got a balloon and they would not share theirs again and the mom wa ha was happy too um once upon a time there was a elephant,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 1 0 0 0 1 0 0 0 1 +and she was bouncing three balls and giraffe came and she try and he wanted to try and the elephant said okay and then the giraffe said i can not do it and then one ball wen then all three balls went into the water and then the elephant and the giraffe said oh no and then the giraffe went splashing in the water to get all three balls and then the elephant got one ball and then he wa happ and then she was happy,0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 +the end um once upon a time there was a little giraffe and he wanted to go swimming he was trying to go in the diving board and he was scared and then the elephant said i will try it out and then she was running and then the giraffe was slowing down and then n the the elephant stubbed her hurt her knee then the lifeguard came,0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 1 1 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 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 1 1 0 0 0 1 +and then the lifeguard put a bandaid on her knee and then she was on a bench and then he put her on a timeout that is it um once upon a time there was a little giraffe and a little elephant and and the little giraffe was going to throw his plane he thought it was going to go in the water then he tried and then he tried he did not let go,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +and then the elephant took it away and then she threw it in the water then the giraffe was mad then the lifeguard came and then he said you were on another timeout for the elephant and then the lifeguard said i do not know if you should have a timeout and then the lifeguard was going to try to reach it he did not reach it then he did not know and then the giraffe was starting to cry,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 +then this lady elephant came and she got a net and she was going to get it with the net and then the lady almost got it and then she got it and then the giraffe was happy once upon a tame time there was a little rabbit and a little dog and the little dog that was mak it was making a sandcastle and the rabbit joined in and then h the rabbit tried to do it,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +well he did not get it right and then he dumped it on top and then it did not and the dogs eyes went crazy and then the dog his mouth was he was kind of it was kind of crazy and then it was trying to make it back well it did not the end once upon a tame time there was a little rabbit and a little um dog and then they wer they were going for a picnic and the rabbit said hello,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 +would you like to join my picnic well the dog said no thank you i will enjoy my picnic and then the rabbit was eating all its stuff that it brought and then he was getting so hot that he that it was get that it was burning and then he was very fat and then he was going crazy and then he saw and then she saw then the puppy saw a doctor and then and then she was bringing the doctor to the rabbit and then sh that rabbit saw the other rabbit,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 1 0 0 1 0 0 1 0 0 0 0 1 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 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and then it took it that little rabbit to the doctors that is the end once upon a time there was a little rabbit and a little dog and then the little rabbit wanted to have the balloon and then it almost took it and then he did not notice and then he untied it and then he did not know what was there and then it and then the balloon went up up up and then that dog was mad at that rabbit,0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 +and then another rabbit came by with some more balloons and then that d um rabbit wanted a balloon and then he saw he did not have any money and then he did not get any balloons and then one rabbit then that rabbit saw a nurse doctor and then that doctor then that little rabbit said can i have some money for one of those balloons and then he got one and then he had and then they had two for each the end giraffe and elephant were in the pool,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1,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 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 +and i wonder what were were they were bouncing the ball i wonder what will happen the ball felled in the water giraffe was swimming to get it and and giraffe got it and elephant said thank you and you are my hero giraffe said oh my pleasure and and and elephant was engaged with him elephant and giraffe were by the pool,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 1 0 1 0 1 0 0 1 0 1 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +they i wonder what will happen elephant was running and and i wonder what will happen she slipped and she got a owie and she was crying and giraffe wa is going to help her and the lifeguard came and ss and gave her a bandaid she was so sad that sh he had to put a big bandaid on then the lifeguard let her sit down for awhile,0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 +the lifeguard was so mad and it said no running and ii she was so sad giraffe and elephant were at the pool giraffe had a airplane elephant took it away from him he was so upset it felled in the pool ele and giraffe got so mad that he wanted said that he wanted a new one and she took toward to the lifeguard and said can you get that,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 +and he said did you do this and he will and she will say no she wa she was crying and said that all right i did it this is the truth i throwed it in the pool the lifeguard crawl and try to get it i wonder what will happen he could not get it and giraffe started to cry and a girl lifeguard had a net,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 +and try and she got it and she did giraffe was so happy that he did not have to have a new one and then he loved it and he never ever ever let elephant played with it ever again this rabbit is going to make a sandcastle with this dog the rabbit is putting sand in the pail when the dog was making a sandcastle the rabbit poured the sand onto the sandcastle the dog was sad the dog wrought so hard,0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 +she started she was going she wa the rabbit was upset because he was going to make another one the dog was crying the rabbit was disappointed rabbit and rabbit saw the dog dog the dog waved at rabbit they were walking to a picnic the rabbit was so hungry that he had too many junks the ra the the dog had a sandwich first soon the rabbit was fat and full the dog was still hungry,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 1 1 0 0 0 0 0 1 0 0 0 0 1 +then the rabbit got dizzy the ra and the dog looked at him the dog saw his mother and he said that rabbit is hurt he does not feel well then he pu the dog pulled his his mother the rabbits mother to see him and he was very ill the r the rabbit ate too much junk and and his mother was a doctor so she took care of him,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and she took him to his house and he she said to the dog he will be okay the dog was going going for a walk with a wagon then rabbit showed up he said hi and i wonder what will happen rabbit saw the balloon and the dog said be careful the rabbit untied the balloon the the dog was disappointed,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 1 +then rabbit let go and dog and dog was worried and he wanted she wanted her balloon back and she got very mad at rabbit he al he always bugs her then the the balloon man was carrying some balloons and the dog was still mad he said that may i have a ye white one and the and the balloon man said sure when when he got to when got to his pocket and pulled down the balloon it was five cents,0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 +and he did not have no five cents and he was he was sad then the balloon man put the balloon up again and did not listen to him then the rabbit went to the doctor again she had money and he wanted five cents he asked if you can buy me a balloon two of us because i do not have no more money and she said yes and and she and he took two balloons to them and ga and one of the money they were happy,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 +and the doctor was happy too that they have balloons first they have balling bowling balls secon second they drop one third he tried to swim and got it after she got the ball after he tried to jump with the bowling ball that is a silly idea you will fall down and hurt yourself first they saw the thing and they wanted to jump,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 +and then they ran and and then she ran too fast then she fell down and hurt shes knee and she cried and the coach helped her up and put a bandage and put her on the bench after she the coach said do not run because it is wet and slippery should not run like that first they first the elephant saw the giraffes airplane and then he flied it and the the elephant want to tried it,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then she tried it and then it accidentally dropped on the water and the the giraffe was angry and then the coach the um the coach said what is happening and she said i accidentally flied it it gone on the river the coa the coach trie um s s tried to help the coach could not help this after the giraffe has tears because he wants his airplane after the the woman in the net i got um um had a net and tried and um want helped him to get it out,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the woman tried and she got it and then the giraffe was happy after he hugged his airplane they was making a ss sandcastle the um the um the dog and then the rabbit came and helped it and then he got some sand the rabbit he poured it on the sandcastle he felled it down and then the dog tried to make another one,0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +but he could not they went for a picnic they ate their food they were full and then the rabbit had a stomachache and then he went to a doctor and then he asked the doctor to help his friend and then the doctor helped and then the doc and then he was back to normal first they were um pulling the the balloon on a wagon,0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 1 0 0 0 0 0 0 0 0 0 1 +and then he showed it to his friend and then the rabbit untied it and then it flew away and then the dog is angry and then they they saw a man buying havin have some balloons and they want to get one and then he asked for one and then h he showed how much it was for and then she she said not not to take it and then he asked the doctor to pay,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and then he he asked like like doctor um i tooked a balloon off my friends wagon and it flew away and then he paid after they both have balloons the f the only the dog has a balloon both of them have a balloon oh now at the end they do yeah um it looks like the giraffe and the elephant are playing basketball and the ball goes into the pool,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +the giraffe tries and jumps in and get it um but the elephant gets it and the giraffe looks embarrassed um it um the giraffe and the elephant want to go swimming um the the giraffe the elephant wants to go off the diving board and she starts running and the sign says no running and she slips and falls and scrapes her knee the lifeguard comes running up to her puts a bandaid on it and she is all better,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the lifeguard points out the sign and she looks really really embarrassed and guilty um the giraffe has an airplane in his hand and the elephant um really likes it um the giraffe pretends to fly it and he is making airplane noises the elephant gets jealous the elephant the elephant steals the plane away from him and i guess she tries to fly it but it goes into the water,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +uh the ele and the giraffe gets mad the lifeguard comes up the lifeguard says what happened the oh and the elephant explained it to him so now the lifeguard is trying to get the the plane back and the lifeguard can not do nothing the giraffe starts crying then s a woman comes another elephant comes up with a net scoops the airplane out and gives it back to the giraffe the giraffe and the giraffe is really really happy now the bunny and uh the dog uh the dog has built uh a sandcastle,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 1 1 0 0 0 1 1 0 1 +and the bunny wants to help the bunny scoops up uh uh a shovel uh a pi the bunny takes a shovel and scoops up some sand and then she pours it on the sandcastle she buries the sandcastle and the dog starts to cry the dog and the bunny are having a picnic the bunny starts to eat and she has a lot of junk food the bunny uh gets a really really big tummyache um the dog does not know what is happening,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 1 0 1 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 +the the dog runs up to the bunnys mom a doctor or something and the and pulls the doctor over to see the bunny the doctor um brang her back like maybe gave her a painkiller or something but but but then the bunny feels better and then they walk away the dog has a balloon the bunny wants to see the balloon so the bunny unties it from his wagon the balloon floats up in the air um the dog gets mad there is a balloon salesman on the other side of the park,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 +he wants the bunny goes up to buy one but each balloon is five cents and the bunny and the dog have no money so the bunny runs up to uh to the doctor and asks if she if she um the doctor can buy uh buy a balloon for a friend the doctor goes up pays us and pays the balloon man and now each and now the dog and the bunny have a balloon there are two kids who find balls on the si on the sidewalk and then they f then they it falls into the water and they and they do not want to get wet but the um the moose got it wants gets the ball,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 +and he gives it back to the li to the elephant and then he gets out of the water and he is soaking they want to go swimming but there is no running allowed ss but they want to run to run and jump into the pool and w when the elephant is running she slips and hurts her knee and then the giraffe gets the lifeguard and he puts a bandaid on the knee and then she is all better,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and then he s points to the sign and says no running allowed um the uh the giraffe and the elephant want to throw the airplane and see if it s falls into the water and when and when and he is going to start to throw and then and then the elephant grabs it away and thr and drops it in the water and then the giraffe gets really mad and and now now um now they have to go and get it because the lifeguard is there and now the elephant is saying i dropped it in by accident and the el and the lifeguard is going to get it but he can not reach and then its and then there is someone who swims ga ge gets a net and gets it the end and gives it back,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 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 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and now he is going to play with it the end theres an there is an elephant and a dog trying to build a sandcastle and the dog wants um to break it sort of and then when the rabbit pours the sand on it gonna it might break and it breaks down so now the dog tries to help him buil build it back the end the dog and the rabbit want to go swimming are going to have a picnic and the rabbit brings carrot stuff,0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 +and the dog brings stuff with cheese and stuff and the rabbit is so full that the dog tries to eat the rest and the dog and then the rabbit gets sick so so the dog gets a doctor and he pulls him over because someone got sick and the doctor says open your mouth and say ah and then the rabbit felt better the end one day the rabbit and the dog meet because the dog and the rabbit are walking somewhere,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then they meet and the dog has a little balloon on his wagon and the rabbit sort of wants to pop it so and then he wants the now he wants to undo it the balloon and make it fly away and now the dog is sad because his balloon is gone so now the dog gets really mad at the rabbit and now the balloon is for sale so the rabbit gets one for his friend five cents but he does not have five cents so they can not get one,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +but then there is a doctor so they might ask him for five cents so they ask for five cents to get a balloon and he gives them five ce so he gives the guy five cents and they each get a balloon the end they were playing they smiled and a ball was in the in the pool the boy he wanted to catch the ball,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +so he went in and the elephant girl put her hands in front of her nose and then he caught the ball for her and she was smiling and he was all wet and he was what he was all wet is that the end yeah they found a pool,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 1 +and then she was talking to him and they runned and she got hurt and somebody came and ran to her she was crying she was crying so much that that the boy that ran to her gave her a bandaid she was sitting on a bench and he got very greedy he found a airplane a toy airplane then he was playing with it,0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 +she grabbed it away from him then it fell in the water and then he was mad at her then a boy came walking by then she told him something then he was trying to catch it and then they he could not so he cried and then a girl came down with a fetcher with a what,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +with a fetcher to oh a fetcher okay and then she tried and grabbed it and she got it for him and he was so happy the end they made a sandcastle they sc they scooped some some sand and she dumped the rabbit dumped it on right on the sandcastle and it broke,0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1,0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then he was crying when i when he was fixing it and it is the end of the story they went for a picnic they ate and the rabbit got a tummyache she was so full that she was growling then the boy called someone then he grabbed her to the bunny she checked her if she was well if she was what,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 +if she was well then she was good and she did not have a tummyache any more and sh they had a walk they had a stroller with a balloon in the front they watched the balloon if it was coming off and he tied it right on s ti she tied it on so tight as she can then after it came up in the air and after the dog was so greedy at her and then a balloon man came,0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 +and h and the rabbit said can we borrow a balloon and he said would you like this one and he said yes it is five dollars and he and he checked if he had much and then they did not get a balloon and then they ran to someone they asked her th we want a balloon and she did not know why so she paid five dollars to him,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 1 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and they gave both of them a balloon and they liked to play with it once upon a time they had three ba balls and one went in the river and him immediately went to get it he falled in and then and he got um he went in swim to give it to the pi um the elephant again uh an then an then um and then hir it looks like they are in love once upon a time the elephant went to run an then and then they start running an her her and her got a booboo and then his mom comed put a bandaid on her,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and then her went back to her friends and then he got mad at her once upon a time he s he showed the elephant his airplane and then her grabbed it out of the out of his hands and then her dropped it into the water by mistake and then he got very angry at her and then the elephant comed and got wery angry at the pi the um at the elephant too uh then he had a a talk and then he try and reach it an and then he start trying,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +an then and then the girl come with the net got it for got it for him an then he and then he was happy and he was happy and he hugged his airplane once upon a time a dog was playing a castle and a bunny comed over to play with him and th and when he and he was holding the castle and he was um having a shovel to um pick up the sand and he was dumping on the castle and then he broke the castle and then and then he start crying,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 1 0 0 0 0 0 0 1 +once upon a time they went on a picnic and and he and and som his tongue is out like this okay you are sticking your tongue out that is what it looks like and i do not know how to do that part can you tell me in words uh it looks like he is doing oh tongue out okay and once upon a time when they was eating something um it wa um it wa um he start to have a headache and then the dog went to his mother and tried pull her to the to her kid bunny and and it start giving him medicine,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then he and then they went on when he was going to play at the park the bunny went and touched the balloon he did what with the balloon touched it and he tried to pull it off and then it got go an they was an and the dog was angry no maybe the angry was not at that part the angry was this one and he was angry and then he went on with balloons,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and he gave the kid another balloon and he said he want another balloon and he said no cause he got because he needed to get five balloons because he wants five balloons x an he asked an the dog said can i have another the bunny said can i have another bunny for the dog and then the bunny went back to his mom and he said he wo he will not give me another ba he will not give me another balloon so he did ge so he give the kids two balloons and an they and then they went off home the elephant is playing with a ball,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,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 1 1 1 0 1 1 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 1 +and the giraffe want to play with it with the elephant in the water and they dropped it in the water and then the giraffe was going to swim and get it for the elephant and the giraffe got it for the elephant and she was happy and she said thank you to the giraffe the end the elephant and the giraffe were going swimming and the elephant was going to go in the water and she slipped,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and she hold her knee and she was crying and the her dad went to go see her and put a bandaid on her owie and then she have to sit on the bench and she and her dad said no running the end the elephant and the giraffe were playing with a airplane and the giraffe was making it fly and made the elephant dizzy and the elephant took the airplane and the giraffe was mad,0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and the elephant dropped the airplane in the water the giraffe was mad at her so they have to get the airplane and her dad said to her why did you drop the airplane in the water so her mother tried to get it and the giraffe was crying and the mum got it with a net she picked it out of the water and gave it back to the giraffe and the giraffe was happy and the giraffe hugged his airplane,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +the end the bunny and the dog were making a sandcastle and the bunny was filling up the bucket and the dog was breaking the sandcastle and the bunny was breaking broke some of it and then the puppy was a little bit sad and the puppy was crying the end the bunny and the dog was going on a picnic and the bunny took all of the food out and wanted the puppys food,0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 +and the bunny was full and the bunny was getting dizzy and full and the puppy went to get the doctor and puppy said that the the bunny ate too much food and the bunny was feeling sick and then the bunny was not feeling sick because the doctor made him all better the end the dog had a balloon and a wagon the bunny said can i come with you so he did,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 +the bunny was going to take off the balloon the pu dog said do not take off the balloon or it will fly away and the bunny did and the balloon flied away and the dog was mad at the bunny so he went to go see the circus bunny again to get a other balloon so the bunny got a other balloon for the dog and he did not have no money so he can buy a balloon then they were going to get some money from the doctor,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and the doctor said uh yes and the doctor gave the both of them some money to buy a balloon they both get their own balloon the end um an elephant and a giraffe went swimming the uh um s a wa they were playing with water balloons it looked like and they dropped a water balloon in the pool or the balloon um the giraffe tries to swim after it um he catches it and the elephant gets it,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 +and now she loves him um an elephant and a giraffe are swimming the elephant runs to the pool he slips and hurts her knee and the lifeguard comes and the giraffe helps her um the elephant cries and the lifeguard puts a bandaid on it and he sat down on a bench and the lifeguard p points to a no running sign,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 +um the elephant and the giraffe are at the swimming pool the giraffe brings a toy airplane um he the giraffe plays with it and the elephant stares at it then he the elephant grabs it from him and drops it in the pool the giraffe is mad at the elephant and the lifeguard sees it and it is starting to sink the lifeguard looks sort of angry at the ele other elephant x and um he tries to get it,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 1 +but he can not reach it the giraffe starts to cry um and then another elephant um gets a net and um and picks up the plane and gives it to the giraffe and the giraffe is happy um a dog is playing in the sand and a rabbit comes and wants to play with her he starts making a little bit of the castle while the rabb while um the dog starts making a little bit of the castle while the rabbit fills a pail up with sand and the bunny dumps it on the castle and the castle breaks and the bunny screams,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +um and the bunny pretends he did not do it but he really did and the dog is feeling sad because it is broke it broke um the bunny and the dog are going for a picnic um the dog brings sandwiches and the bunny brings carrots and sandwiches and pickles and chips and sandwiches and carrots and he gets fu the bunny gets full while the dog is still eating the bunny is feeling sick um the dog runs and gets um the doctor and he pulls the dog pulls the doctor over,0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +um the doctor looks and tells him to open his mouth and then he is all done um the dog is pulling a wagon with a balloon and and the bunny sees her the bunny tries to get it um he gets it and the dog opens his mouth and starts to scream sort of the bunny lets it g lets go of the balloon and the dog is really mad at the bunny and he is just staring at the balloon,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and um he sees um another rabbit selling balloons he asks for some and they are five cents and he said you can not have them if you can not pay five cents and then they are really sad and then there is a bunny another bunny up there i think it is his mom and he wants to buy a balloon and they he gives five cents to him and they each get a balloon,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 1 0 1 0 1 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 1 +and they are playing with them there is an elephant and a giraffe the elephant is bouncing a ball and there is the giraffe guy i think is talking to her and they are watching and all of a sudden the ball that the elephant was bouncing fell into the water and they are both looking kind of sad and um excited and now the giraffe uh jumped into the water and now is swimming to catch the ball and the giraffe is back at the end of the pool and gave the ball back to the elephant and now the elephant is happy and looks happy,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 1 +uh um the there is the giraffe and the elephant again and the elephant is looking at the water with the giraffe and now the elephant is looks like uh she is going to jump into the pool and right when she started jumping uh the elephant slipped and hurt herself and now she has a cut on her leg and now the giraffe is stand sitting by her and called the lifeguard to come and now the elephant is kind of scared that it is going to hurt when they put on the bandaid and now she is walking with the lifeguard with the bandaid on herself and she is kind of happy and kind of sad and now she is sitting the bench,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and the lifeguard is pointing to no running because she was running uh the elephant and the giraffe the elephant is looking at the giraffes airplane that he has in his hands and she is happy now the giraffe is kind of playing with the airplane and pretending that it is flying and the the elephant is trying it now and she is pretending and the giraffe is thinking she is he is scared that she is going to wreck it and now the the airplane fell into the water and now the giraffe is mad and now the lifeguard is standing there and watching them uh be mad at each other,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and now so the elephant is saying what happened and the lifeguard is wa looking at her now the lifeguard is trying to get the airplane and the now the giraffe is crying because the lifeguard can not get the airplane out of the water and now there is another uh elephant and she has a fish net and now she is trying to catch it with the fish net and she got it with the fish net and gave it to giraffe now giraffe is happy and um elephant is happy too,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 1 0 0 0 1 +there is a bunny and i think there is a dog and the dog has made a sandcastle in the sandbox and the bunny looks has a shovel and he looks happy and now the bunny was helping the dog to make the rest of the sandcastle and then the then the bunny pours all of the sand over onto the sandcastle and now the b the bunny wrecked the whole sandcastle the dog does not seem that uh mad and then now he looks at it now again,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 +and uh he is really mad and the bunny is just standing there looking kind of sad and mad too uh there is the bunny and the dog again and the bunny and the dog are going for a picnic the bunny is sitting by the dog and they are eating and the bunny has lots of food around him and now the bunny is really stuffed and the dog is still eating nicely and the dog is eating,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and the bunny looks kind of uh really um full so now the dog is running to a parent that is walking down the road and brought the the other bunny to uh the little bunny that ate too much and now the bunny the big bunny is looking at the little bunny and now the little bunny is all better now there is the dog and the bunny again and the bunny is ru are running down the roa the s sidewalk and the dog has a a little cart with a balloon tied to it now the bunny is looking at the balloon that is tied to the cart and now the the dog is looking at the bunny and the bunny is trying to take off the balloon,0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the bunny took off the balloon and now the balloon is sailing up in the sky and now the dog is really mad and the bunny is looking at at the balloon at the sky and now the bunny is walking down the s the sidewalk and the dog is looking at the bunny walking down and the bunny sees some balloons and the bunny sees the balloons with the man holding them and asks if she can buy one and they are they are five cents and the bunny is looking in his pockets because he does not have uh any money,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 +and now the both the dog and the bunny are looking at the balloons seeing if he will give them one and now the big bunny uh the little bunny is going to ask the big bunny and see if she has any money now they are asking the bunny little bunny is asking the big bunny if he can she can have a five cents to buy a balloon and so the big bunny gave the man five cents so that they can ha or ten cents so they can have two balloons and now each of them have two has a balloon the giraffe and the elephant are playing in the water and they are bouncing a ball the elephant is and the elephant is out of the water and so is the giraffe but she bounces it too hard,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 1 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 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +and it land in the water and the giraffe tries to get it to jump in and get it but it looks like it is hard for him to get it but then he got it and then he swam to the elephant and the elephant got it and then the giraffe got out of the water and the elephant took it from him the elephant and the giraffe are staring into the water and the elephant tries to run in the water tries she like she is on where she is on the ground,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 +and then she tries to run in the water but then she slips and then she got a owie on her knee and she started to cry and then the giraffe called the lifeguard and the lifeguard help tried to help her was running over to her and the lifeguard got a bandaid and put it on her knee and then the lifeguard told her told her to bend her leg and then it felt better but then the lifeguard um showed the elephant that there was a sign that said no running,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 +and then she had to sit on the bench the elephant and the giraffe are um laughing together and the giraffe has a toy airplane in the swimming pool and then the giraffe plays with it and flies it in the air but then the elephant grabbed it away from him and started to playing with it but then she dropped it and it fell in the water and then the giraffe got really mad and the lifeguard came over and looked at the airplane and was shocked and the elephant said it was an accident,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 +but then the so the lifeguard bent down and tried to get it but he was too short and then the giraffe started crying and then the elephant looked shy like kind of like she is sorry and the lifeguard did not know what to say but then a girl walked over one of the lifeguards walked over and grabbed the net and grabbed the airplane with the net and then the giraffe started stopped crying and then the lifeguard was happy and then the elephant did not know what to say and then the and then the lifeguard picked up the airplane and gave it to the giraffe,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the gir and the elephant was happy and the giraffe was very happy a dog and a a dog and a bunny uh well first the dog is playing in the sand with a shovel and then the bunny comes along with his shovel and the dog is just done his castle and the bunny is putting some sand in his sand bucket and then the bunny pours all of the sand on the castle and and then the bunny instead of the dog getting mad the bunny gets mad and then the dog starts to cry,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 1 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 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 1 0 0 0 1 0 0 0 0 0 0 1 +a bunny is w the bunny is w walking down the road with his basket and a dog waves at the bunny with his basket and the dog takes out his sandwich and the bunny takes out her big meal that she has in her basket and then the bunny eats it all and then you can see garbage all over the mat and then the dog is just eating a sandwich and then the bunny feels a bit sick and the dog is shocked so the dog runs down the road to the bunny is granny and tells her,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 1 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 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the granny um well the dog is pulling the granny towards the bunny and the the granny fix like helps the bunny and then they walk home happily together the bun first the dog has a wagon with a balloon tied on it and the bunny is walking down the road waving at the dog and then the bunny says that is a nice balloon that you have and then the bunny tries to tie it off the wagon but then he did tie it off and then it floated up in the air the dog and the dog got really mad,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and he got so but he did not have to be mad for long because he saw a balloon carrier and the bunny was walking towards him and the bunny asked how many how much are those balloons and um the salesman said they are five cents each but the bunny did not have enough money he did not have any money and then the bunny and the dog just standed there and went gave a sad face and then the bunny walked toward this girl on the street and asked if i can get a balloon and then the girl gave her fi gave him five cent ten cents for two balloons and they both had the balloon and were very happy,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 +there is a giraffe and an elephant shall i turn the page okay then then there was a ball in the water then the giraffe went to get it then the giraffe got the ball for the elephant and he was playing with it the end they wanted to go on the on the jumping thing and the elephant one want to go on it,0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then the elephant tripped then he got a owie then the lifeguard came he put a bandaid on it and they and he took it took him to the bench i do not know it there is a giraffe and an elephant the giraffe has an airplane then the elephant took it then it fell in the water,0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +then the giraffe was mad at the elephant do not know it looked like it was sinking but the lifeguard was trying to get it i do not know and the lifeguard got a net and he fished it out and he gave it back to the giraffe do not know there is two rabbits that are going to make a castle,0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +they are making one he dumped ah sand on it then it broke and and they were going to build it again the end there are two rabbits that are going picnicking they brought food to eat they ate all the food one of the rabbits are really fat then t a doctor came,0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 1 1 0 0 1 +then one of the rabbits are pulling him and then he was checking his temperature then the doctor took one of the r rabbits the end there are two rabbits that have one balloon okay anything on this page no then they took it off then it went up in the sky then it was up high,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +there was a rabbit had lots of balloons and one of the rabbits asked him if he can have one it costs five cents nothing here okay and there was a rabbit coming then he asked the rabbit if he can have money for a balloon then he then he gave the bunny gave him the money then they each got one the end a donkey thing and an elephant are playing with their ball playing basketball,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 +um the they shoot it and the ball falls into the pool that they were standing by the donkey goes in and gets it out of the water he brings it back to the elephant and the elephant is happy the elephant falls in love with him they are going to go swimming the elephant goes to run to the diving board she slips and falls and hurts herself she is bleeding because she has a cut on her knee,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,1 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 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 +um the donkey thing goes to get the lifeguard they put a bandaid on she is okay he points to the sign that says no running and she gets um embarrassed um they are going to play with this plane near the swimming pool he is flying around with it and she wants a turn she so she grabs it from him and starts playing with it it falls into the water,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and they can not get it out he gets mad at the elephant then they call the lifeguard and then the lifeguard is looking at it the lifeguard can not reach it he still tries to reach but he still can not reach it it is sinking and the ele donkey thing is crying and the elephant feels sorry,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 +and the lifeguard says he can not do anything then the other lifeguard comes with a net and she fishes it out with the net and then she gives it back to him and he is happy and then they are both happy the two little kids and then they play with the airplane again the rabbit and the dog are playing in the sand they are building a sandcastle he pours too much sand on the sandcastle,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 +he wrecks it um the bunny and the dog are going to go and have a picnic they are having a picnic and he is eating everything he ate all unhealthy stuff and only like a few carrots and stuff that is healthy he gets sick the dog goes to get a medic the me the medic um helps him and he is sick so she is going to cure him,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then he take she takes her like to the doctors office place and then she is going to um make him better um the the dog and the bunny are going to go and play with their balloon th the bunny takes the balloon off the wagon he ties it off and then the dog does not want it him to it goes up in the air and they can not get it the dog gets mad at him uh they go to buy another balloon,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 +they pick one but it is five cents and they do not have any money sss and they both do not have any money so they are thinking what to do um they so so they go to their mom and she is going to give them money um she is gonna gi she is getting her money out of her pockets to give to them she gives it to them and they can buy two balloons then they are both happy,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +there is a guy gi uh have candy and he is selling it and he give and it one dropped into the water and he swims for it and he pulls um um he gots it the other guy gots it and he get um and he get and does not he does not give it to him the end the guy is going to jump into the water the guy um runs and runs and the guy the other guy he slips,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 1 1 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 1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and he falls down and he cries and he and he has a booboo and he puts a bandaid on it and he carries him puts him on the bench the end the guy is looking at him and he has a airplane and then the other guy takes the airplane and plays with it,0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +and then it falls o it falls into the water and then the other guy gets mad at him and the other guy gets m um the other guy there is two guys standing getting mad and the other guy ge um um gets scared and the other guy chases it into the water an and the other guy cries and the other guy has a net and the other guy takes it out of the pool and then he gives it back and then he he likes him,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 +the end there is a there is a bunny rabbit um um gonna make a there is a bunny rabbit who made a sandcastle and they are both of them are making a sandcastle and they are they are pour they are pouring it on on the guy somebody is pouring it on and he is breaking it and the other one gets mad no not mad i forgot it breaks and they make another one the end,0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 1 0 1,0 1 0 0 1 0 0 0 0 1 0 1 0 1 1 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 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 1 +they have both baskets the bunny rabbits has baskets and they gr they are having a picnic and then the other one eats all of his and then the other one du um has uh juice and then the other one is wa um somebody is walking and somebody is pulling somebodys shirt and somebody gets mad somebody brings somebody home the end,0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 1,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +there is a guy having a balloon in his wagon and the other one is walking and he w and he is trying to take it off and then he en unwraps it a little bit off and then it flies away and then it float he wrap um the um the string falls down why does your boss does your boss let you look at these pages she says while your doing them i am not supposed to so i am not so you can see them go ahead the guy has balloons in his hand and the and the other one buys one,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then he and then he sh then he checks in his pocket for money and he does not have money he checks it for money and he can not get one and and he was allowed to ah the other one is the uh there was a man heh uh selling balloons and then he gives one to him and the other one has a balloon and the other one has a balloon the end a elephant is going to his friend,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 +he is saying what is there what is in there orange he said the the orange fall down in the water and then the his friend he he falled in the water he was trying to get the orange and then and then the elephant got the thing out and then the elephant got the orange out and then he walked and then he walked his and then he walked to his home the end um the the elephant and the friend he was going to the pool they were going to jump into the pool really fast,0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 1 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 +and they are going to jump into where the sides are and they and the his friend hurt his leg he hurt his leg and that hurts really bad um his f his um his brother came and he and so he and he seed what happened and he gave him a bandaid and then it hur and then he went home they were going to play pool again and then there and then he was driving airplane,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 1 0 1 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 1 +and then the his friend was driving a driving driving a airplane and playing again they are playing again they were going to jump i and the airplane got in the water okay and then he was trying to and then he was very mad and then his friend and then his sister went over to that girl t um the sister went over to the brother and then he and then the brother came over her and then and then he sawed what happened and then he is trying to get it and then he he did not know how to get it,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 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 1 0 0 0 0 0 0 0 0 0 0 1 +he tried he picked that and then he tried to get it hey look look behind here um the boy has girl hair the the girl was pretty then he tried to get it and she trying to get that um airplane and then he tr and then he got it and he was very happy,0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and then h and then the elephant was very happy too the end i see a bunny that is in the s um i see a dog that is in the sandbox and helping the bunny and the bunny and the bunny is making a sandcastle they are trying to make a sandcastle and he is helping and he is helping the dog and uh um the rabbit broke the doggys castle and then he was making it all over again the end um the bunny was going for a picnic,0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 +he was following the dog and then they were there already they were playing in the sandbox with a picnic and then he burped and then he burped and then he was eating all th and then the dog was eating all the other thing he was eating one at a time and then he was and then he sawed then the dog he was laying down and then he was sleeping he was kind of asleep but he did not,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and then and then he was turned into a doctor then he was turned into a doctor and he had and he had doctor things and and a doctor came and then he went with the doctor and then he tooked him to the doctor where the doctor thing is and then he laid down with a blankie went to sleep and then and then the doctor came to a different to a different man but it was not that man he was so he was so tall,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and he was trying to help the man and then he w and then the doctor came with this with the bunny he was going to the doctor the end they are going to the um circus and then the bunny was c the bunny came with him and he had and he had a balloon and then he w and then he was trying to get the balloon and he was following him and then he took it off,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 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 1 +and then it po and then it was gone and they were trying to get it get get get it back and then he was very mad and then he said i am sorry and then he had a whole bunch of balloons and then he wanted and then he wanted m and then he was going to get one and then he wanted one and then he had some dollars and he was then he was going to buy one and then he gots no money,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and then he could not buy one and then he was and then the doctor help him help him and then he gave him some money and then and then he wanted the balloon and then um he got a balloon for him he gave him some money and then he got a balloon and they wan and they liked and they liked it and then they said and then they said thank you the end,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 +an elephant meets a horse then the elephants ball bounces in the water the horse swims to get it the horse got the ball the elephant was happy the end an elephant and a horse wanted to go on a diving board the elephant says let us go on the diving board the elephant slips and scrapes her knee then the elephants father comes and puts a bandaid on it,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and the father said that bandaid will make sure it does not hurt the father says no running an elephant met a horse who has a toy plane the plane f he the horse pretend it pretend it flies then the elephant wants to try then the elephant threw it into the water it was sinking and the horse was mad and the elephants father came and the elephant said i threw that plane into the water by an accident,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 1 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 1 +and it is the horses the elephants dad could not reach it because it was too far and the horse was crying then a lady came and had a net and caught it with and almost caught it with the net and she got it with the net and gave it to the horse the horse was happy a dog and a bunny are making a sandcastle they needed thick sand but the sand was too light so it fell on the castle,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 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 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +now the castle is nothing but they could see part of the castle a bunny and a dog are going for a walk they have a picnic the bunny gets too full he the bunny gots a stomachache the dog runs to the doctor the dog pulls the doctor to the bunny the doctor said he has a stomachache then the bunnys mom came,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 +a dog is pulling a wagon with a balloon the bunny says if you let go it will fly up to the sky the dog says no do not do that the balloon flied up to the sky the doggy gets mad then a man comes by with who was selling balloons the bunny picked one of the balloons which was five cents and he did not have any money so he could not buy it his mom came,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 +and the bunny says i need a five cents to buy one of those balloons then the um mother w one give five cents cents to the man then they both got balloons the end the elephant and the giraffe were playing with a ball the ball went in the water the animal was swim and got it the elephant got her ball back the elephant uh the um they were happy they were at the water pool,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 1 0 0 1 0 0 0 0 1 1 +the elephant was pointing at the jump board the elephant slipped the elephant got a owee the safety guard ran the safety guard put a bandaid on her she sat down the safety guard got mad at her no running they were going to play with a airplane the animal was playing with it uh the airplane,0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 1 +the elephant took the airplane the plane went in the water the animal got mad at her the safety guard was coming to check he the elephant said the airplane is in the water the safety guard tried to get it they could not get it a big elephant with a catcher got it she pulled it out the animals airplane was back,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 1 +they were both happy they were going to make a sandcastle the rabbit puts sand in the bucket he dumped it on the castle the sandcastle broke the dog cried they were going to go for a picnic they took their stuff out bunny ate fast what is that,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 1,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 1 0 0 1 +bunny ate fast he got a sore tummy he was calling the doctor the pup dragged the doctor over there you ate too you ate fast said the doctor the doctor took him with him took him wi the bunny with him bunny was coming to look at the balloon the bunny said wow the bunny untied it it flew away,0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 1,1 1 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 1 1 1 0 1 1 0 0 1 0 1 0 0 0 0 0 1 0 1 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 +dog was mad they were going to buy a new one they did not have no change actually they did not have five cents they could not buy one there was a doctor the doctor gave them twenty five cents for two balloons they got their balloon they were happy one day there was a elephant bouncing a ball,0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 1 +it went into the water the zebra jumped in and ge gets the ball and zebra gives it back to elephant the lady smiles and the giraffe smiles one day they are both laughing and they wanted to go on the board the the elephant said to the giraffe let us go on the board and the elephant slips and he gets a booboo,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then another el elephant comes running and look at the booboo and he puts a bandage on and now she go she is surprised no running allowed the the other elephant says one day the giraffe had a airplane in his hand he was flying it elephant took it away from him and she dropped it into the pool the giraffe got angry at the elephant but the guy came running,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 1 0 1 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +and he sees the plane in the water the elephant said it was not me that brought it the other elephant tried to reach it then the l then the giraffe was crying i know a way to get the plane out she put in her thing and got the airplane she is she handed the the airplane to the giraffe and the giraffe hugged it one day rabbit wanted to play in the sand and so did the dog,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +the dog was going to touch it and the rabbit was filling up his bucket rabbit dumps sand on it the dog saw and and the rabbit was horrified the dog tried to fix it one day dog met rabbit and they both wanted to have a picnic rabbit ate and ate rabbit got a stomachache,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 1 +and the dog was eating he got sick the dog came running to a doctor he said wait a minute what is this problem about it is about him and he is sick the doctor takes him for a walk one day a dog was taking a b wrapped a balloon on her wagon the bunny sees the balloon,0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 +he ties it off he let go and it was floating away and the dog was mad at the rabbit and the rabbit sees balloons a balloons were holded by an old rabbit it is worth five cents you cannot have a balloon if you do not have any money rabbit goes to the doctor we want a balloon,0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 +she paid two two ff nickeles and now they both got balloons um a giraffe and a elephant were friends and they were playing ta with each other and then their ball went in the water and the giraffe went to try and swim for the ball and the giraffe got it and gave it to the elephant and the giraffe was soaking wet um once there was a elephant and giraffe and they wen were friends,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 +and they went to a swimming pool together and the elephant was going to jump in and she and before she jumped in um for some reason she must have forgot something she went she ran very fast with no running allowed the elephant fell down and hurt her knee she was crying and looking at the pain she is crying even more and not looking at the pain then she sat down on the bench and the lifeguard gave her a bandaid and the lifeguard said no running allowed,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 +the elephant and the giraffe went to the swimming pool and they and the giraffe brought a swimming toy with him and and he was playing it and the elephant was just like stare on it on at it like crazy the the elephant grabbed it from the giraffe it looked so neat and then she dropped it in the water the giraffe got very mad at the elephant the lifeguard came and looked at it and and came closer to the elephant and the elephant was ex trying to explain how it happened,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the lifeguard was listening very carefully the lifeguard tried to get it but he could not the giraffe was crying the both the lifeguard and the elephant were was just kind of staring at it then a girl with a net came and the and they was sup they were like and the girl with the net was pull get trying to get the airplane with her net and she got it for the giraffe the giraffe was hugging it,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 1 +once there was a bunny and dog and and and they were friends the dog was making a sandcastle then the bunny was about to come in with a shovel and he came in and throwed a bucket of sand the bunny dumped it onto the ca sandcastle dog was kind of sad it bro i think it broke her castle she was crying there was a dog and a bunny,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 0 0 0 0 1 1 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 +they were friends and they were going to go to a picnic with each other um the the dog was taking everything out of her picnic basket but the bunny was just eating everything she took out the the bunny was very full and the dog was hardly even eat ate everything the bunny was fat and then the dog was about to drink a little bit of her juice and the bunny had a tummyache then a grownup bunny came along,0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 +and the and the dog was racing to her and it was like please please please and the lady was like you eat too to eat you bunny and the bunny and the grownup bunny just just went along with each other the bunny and the dog were the the bunny was running to the dog and the dog was just going her wagon in front of her with her balloon and the bunny liked the balloon he was about to pull it off and the bunny was untying it and the bunny was like the the dog was like,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 1 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 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 +and then the bunny untied it and the the balloon floated away they were trying to reach to get it the dog got mad at the bunny un until when the string was just left and then a bunny with balloon lots of lots of balloons came and he said come here come here the bunny and the the man with the balloons came and the bunny was like and the big bunny with the balloons was like which one do you want that one that one the little bunny was like,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 1 1 1 0 1 0 0 0 0 1 +this this one you can not have this one and then the bunny and the dog was sad and then the the same lady with the other book came and the and the bunny was running to her and the dog was just staying with the bunny with the balloons and and the dog still had her wagon and the and the grown up b girl bunny was the kid bunny was saying to the grown up girl bunny can we get one of those balloons can we get one of those balloons for the dog and the and the and she paid for it,0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 1 0 0 0 0 0 1 1 1 0 0 0 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and they each got a balloon two different animals were the swimming pool they wanted to play dodgeball in the water water dodgeball the ball got in the water and the an giraffe was going to get it so huh hm while he was swimming water came out of his mouth and he was all drippy then giggled he the ele the elephant watched when they were at a swimming pool the elephant wanted in the dive the diving board,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 +and there she wanted to run toward she wanted to race towards it but there was a sign that said no running she runned towards here the giraffe never runned and they huh and the elephant slipped and slipped and fall down and hurt her knee lifeguard came running she got a bandaid on it elephant sized bandaid and h bit better and the lifeguard said next time look at the sign they were at the swimming pool,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 +and the huh giraffe huh is throwing air huh super duper flying jet plane he wanted to fly it but elephant wanted to fly it into the water see if it could land on its gear but it w it was starting to sink then the giraffe got angry at her because of the plane in the water and a lifeguard huh s looked at them what is going on and they said the my friend s his super duper jet plane is in the swimming pool it is sinking he try to get it,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1,0 0 1 1 0 0 0 1 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +but he could not reach it it was starting to sink more cried then they s he who is there to swim he got something was all that looked like a big fishing net he got it out huh he got it and he tooked it out and starting stop crying then to the giraffe and got happy he hugged his plane like it was a lost memory hm there were two moles at the sandbox,0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 +one was building a sandcastle and one was building a pail one the bunny when he was done filling it up and patting it down he put it right over the the sandcastle went oh no doggy got sad bunny just whistled the animals going out for a picnic in the woods they found the perfect spot they started chowing down the doggy ate s sandwich and juice,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 1 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 +and the bunny got just a tummyache then him drinked his juice and ate a biscuit and the bunny got a sicker the bunny fainted then got there him want to get him to come he got a big tummyache he was going dizzy hm pic picnic was all gone the we bunny went back home,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 1 1 1 0 0 0 1 1 1 0 0 0 1 +one animal had a balloon and the bunny was coming towards this him he say cool balloon he untied the balloon did not know it would float up it went really high they could not get it and the balloon was gone the doggy got angry then there was a balloon saler,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 0 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 +he wanted one of the balloons to get to for his friend but he was broke s so decided to get someone who had money the bunny went to get the doctor she had lots of money huh to get a balloon then two balloons for each of them and they were pretty having fun and laughing an elephant was playing with a ball and a giraffe came to play with it um and the elephant threw the ball into the pool,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and then they got scared that it would sink the giraffe tried swimming to get it but he could not get it and h um but he got it and he gave the ball back to the elephant and the elephant was happy to see the ball again the elephant and the giraffe seen a diving board and the elephant said and the elephant started running and the sign said no running and then the giraffe tried to catch the elephant,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 +but the elephant hurt herself and she had a cut and she got a bandaid and she felt better and the lifeguard got mad at her because the sign said no running the giraffe had a toy airplane and the elephant wanted to play with it the giraffe started flying it and then the elephant took it from him and started flying it and then it sunk underwater,0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and the giraffe got mad at the elephant but the lifeguard went to get it and it was still floating in the pool and then he tried getting it from the outside of the pool and he could not reach it and then someone else came with a fishing net and got it out of the pool and gave it back to the giraffe and he was happy again a rabbit and a dog were playing in the sand they made a sandcastle the rabbit broke the sandcastle,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,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 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 +and the rabbit got mad and the dog started crying the rabbit and the dog went for a picnic the rabbit had more stuff to eat than the dog the rabbit got really really full and then the rabbit had a stomachache the dog ran to the rabbits mom the dog and and she went to see the rabbit um and the she was a doctor,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 +um the rabbit felt better and he went home the dog was with his wagon and his balloon and the rabbit wanted the balloon the rabbit untied the balloon and took it then the balloon flew up in the air and the dog got mad and there was a rabbit holding a lot of balloons and the little rabbit bought a balloon hm and the little rabbit could not buy the balloon because it was five cents,0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the dog saw the balloons and the little rabbit went to get some money from the doctor and the rabbit told the doctor that he did not have any money and she bought the balloon and the little rabbit and the dog had balloons there was this old giraffe and elephant was playing by by the pool with some bouncy balls and the giraffe came up and said can i play then he bumped the ball and then it went into the pool,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1,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 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +then the giraffe swam swam and there was water came out of his ears and the elephant could not look then the giraffe gave it to the elephant and she was happy then he smiled and she smiled the end there was these two elephants the giraffe and the elephant and there was a diving board,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +and the sign said no running and the elephant ran and ran and they almost slipped then she slipped and then the giraffe ran after her and then the elephant hurt herself on the knee and the giraffe looked at the sign no running and she sa and the giraffe said no running and the lifeguard came and sh sh the lifeguard put a bandaid on,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 1 1 0 1 0 0 0 1 +and she was still crying and the lifeguard helped her up and handed her to the giraffe and the lifeguard said no running the end and she got up and she was all better and he flew his airplane and he flew it and slobber came out and the gir elephant looked at the airplane,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 +and she got dizzy then she took it and flew it and the giraffe said uh then it went into the water and the giraffe got really mad at the elephant and the lifeguard came again and he looked at the elephant and there was a airplane in the water and he tried to reach it but he could not,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 0 0 0 0 1 +and and the giraffe started to cry and another lifeguard came and brought this net and she tried to get it and she did and she handed it back to the giraffe then the giraffe and the elephant was so happy the end there are these two bunny rabbits playing in the sand they made a castle and they are laughing,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1,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 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +they starting to fix it and building new stuff the boy rabbit dumped sand on the castle sh and the a little part of the castle is showing and now it is only sand now they are trying to build it back together the end they are these two rabbits walking down the in the forest they walked and walked they met each other and they started to have a picnic with every bo and with every with that girl,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 +and then the boy rabbit ate everything up and he was full then the girl rabbit looked at the boy rabbit and the boy rabbit did not feel so good and then there was a doctor came and the girl went to get hi her and she pulled and she pulled and they finally got there and she was checking if he was all right,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 +then the doctor took him and the girl stayed there they saw these two rabbits walking down the woods again and one had a wagon and a balloon and the boy jogged and jogged and they looked at the balloon and the boy rabbit untied it and he tied it and it flew up up and away and the girl rabbit got so mad,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +there was another balloons and the girl ma rabbit was still mad and the boy asked the man a question and then the girl was coming over and the man said the balloons were five cents and the girl looked at there and the man smiled oh again there was the doctor again and sh the boy talked to the rabbit and said my sister is mad because i lost her balloon the girl is mad,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 +here is five cents and here are two balloons he said they were so happy the end a giraffe and an elephant are bou the elephant is bouncing a ball and they are by the pool the ball falls into the pool the giraffe swims to get it um the giraffe gives the ball back to the elephant,0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 +she thanks the giraffe the elephant and the giraffe are going to the pool the elephant is pointing to the diving board she she is running so she slips she hurts her knee the lifeguard comes to see what happened the lifeguard puts a bandaid on it she the elephant sits on the bench and she smiles at the lifeguard when he points at the no running sign the elephant and the giraffe go to the pool again,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,1 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 1 0 0 1 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 +the giraffe brings an airplane that he is trying to fly and the elephant is just looking at it then the elephant takes it away from the giraffe and she drops it into the water the giraffe gets mad at her the lifeguard comes and see what is happening the elephant is trying to explain what happened the lifeguard tries to reach it and he can not reach it and the elephant and the giraffe starts crying,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 +then another elephant comes with a um net and puts the net in the water and tries to get the airplane and she gets it out and the giraffe is happy again um two people two um animals are in the sandbox they are building a sandcastle one of them is dumping sand over the castle the sandcastle breaks because all of the sand and one of the animals gets sad two animals are going on a picnic they bring lots of food,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,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 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +and one of them is drooling over it one of them eats it all up and he gets a tomach stomachache and the doctor comes to see what is wrong with him she she one of the animals is dragging her she is she she comes and see what sees what is wrong and she helps him two animals one animal comes to see the other animal one animal looks at the balloon that she has,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +she is he is taking it off of the wagon and it flies away then one of them gets really mad then they see the balloon man and he probably goes to buy her another one and she asks for one balloon and the balloons are five cents and he is looking in his pockets and he is sad because he does not have five cents and then the doctor is just looking at the view,0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and he goes and asks for five cents and she gives the balloon man five cents and then they both get balloons an elephant is playing ball with a ball and then a giraffe is just looking at looking at the elephant like wow and the now the the elephant was bouncing it and it fell into the water and now the elephant is sad so looks like the giraffe is going to go get it and now the giraffe jumps in and is swimming to get the balloon the ball,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 +and so now she got it for the elephant and the elephant is helping him out and now the elephant is happy and the giraffe is happy too um hm um they are standing in front of a pool the giraffe and the elephant and looks like they could be feel like swimming that is all and now the elephant sees the diving board and the elephant wants to go diving into the pool and the elephant is running to go get to the diving board,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and the giraffe is running after her and then she fell and hurt her knee and looks like she is going to cry and the giraffe is running to help her and then the lifeguard comes and is helping her and the giraffe is helping her too and now she is crying and the lifeguard is putting a bandaid on her leg and now the the lifeguard is carrying her to a bench and the hiraff the giraffe is helping her,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 +and the lifeguard is mad and is say and is telling her look at the sign it says no running on it and the giraffe and and the um the elephant looks like he is looks like she never i dont know i can not i dont know what she is doing let us see like hm like he is going to get very mad at her now the giraffe has a little airplane and the elephant wants to play with it too and now the giraffe is trying to make it move and the elephant is looking at it like wow and now it is the elephants turn and the elephant is trying to fly it now and now the giraffe is looking at his plane because the plane fell into the wa swimming pool,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 +and now the giraffe is mad at the elephant because his airplane is sinking into the water now the lifeguard looking at them and they are looking back at him now she is trying to the elephant is trying to explain to the lifeguard that the plane fell in and is asking if they can he can get it out for them and the lifeguard is trying is on his knees trying to ah get it out of the water and both of them are looking at him and the lifeguard looks like he is using all his might and now the lifeguard could not get it and the elephant s felt sad and so did the giraffe,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 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 1 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 +now a lady comes and she has a little net she said she would get it for them the airplane and now she is using all her might and looks like she got it and then she got it out for the li for the giraffe and the giraffe was happy and now the elephant and the giraffe are both are both happy again um two a bunny in the sandbox making a castle and another one is out on the outside going to come in and then now they are both making a bigger and bigger one,0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +and that is all that is all i can see and then one of the bunnies is pouring so much sand on and the other one is i think it is scared or something and now the sand now the sandcastle was broken and the other one just looked normal and now she is trying and trying to make a b another one because it is all broken two bunnies are walking along in maybe a forest or something and they are holding a picnic basket two picnic baskets and now they are having a picnic and all and they are eating,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +actually one of them is eating with all the food and the other one is just sitting there with his sandwich in his hand and now they are both eating and now one of themis eating and the other one has a stomachache and the other one really does not know what to do because he has a stomachache and he and he is getting dizzy and then a doctor was walking along and the other one came and told the doctor that he was that he had a stomachache and so now she is pulling the doctor to come and get the person the rabbit actually,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 +and now the doctor is operating on the guy little bunny now the little bunny is fine and he is going home with the doctor and the other one is sitting by the sand box thing or whatever the big picnic picnic thing now the two bunnies are walking along and one of them is pulling a wagon that has a balloon attached to it and now the other bunny never noticed the um balloon and is looking at the balloon and pointing at it pretty funny now the the bunny is trying to untie the balloon and the other one is looks kind of scared,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 1 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 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the balloon flew away and they are both hopping and trying to get it to catch it and the balloon gone and one of them look is just looking up and the other one is very mad now the other one sees a man selling balloons and then so he is walking along k to get a balloon for the one he made fly away now he is say he is saying to the thing the man can i have a balloon looks like it and now he got now he did not have any money for the balloons,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and li and uh the guy said it is only five cents for a balloon and then hm he looks um he looks weird now they are both looking at the guy and the guy looking down at them while he is holding the balloons and now she is running to one of the rabbit guys are running to the doctor that they saw before and the doctor there she is running to the doctor maybe to get some money and now she is he is um showing the bunny what he needs what she wants and now she is paying for it and both of the kids are happy and now they both got a balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 1 0 1 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and they are happy and the doctor is happy too it is over there was a um elephant that had a ball and um a giraffe wanted to play with the balaloo the ball too but the balloon accidentally gotinto the w into the swimming pool and and the elephant was very worried that it would it would it might sink and then the cow the giraffe came over to s to get it swim after it to get it and then he got it and he gave it to the elephant so she could play with it with him,0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 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 +and then the elephant and the giraffe came came to be friends and also they wan and they also played t with the ball together the end there was an elephant and um a g gir giraffe and the elephant ran over to the diving board and then she accidentally slipped then she and then then the giraffe came running after to see if the elephant was okay and then and then then the elephant started to cry because it really hurt she scraped her knee then the lifeguard came running over and said do not cry,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 1 0 0 1 +i will help and then he put on a bandaid on her on her scraped knee and then then she stopped crying and then the lifeguard helped her get onto the the bench so she could go over and rest her knee for awhile and then she can go back swimming and then she did not then the lifeguard said you must look at the signs that say no running or no doing anything just in case there was something slippery or you can not go on the diving board the end there was a giraffe that had an airplane and he really like it lots,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 +and then an elephant wanted to play with it and then he started playing with it even more and then the elephant wanted to play with it then the elephant grabbed it from the from the giraffe and then he was very angry and then it fell into the water and then they could not get it so they so they did not know what to do and then giraffe got very very angry at the elephant and then the lifeguard came over and and said what is the problem,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 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 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 +and elephant explained i grabbed the the toy airplane from the giraffe and then i accidentally threw it into the water and then the lifeguard tried reaching for it but he could not get it then the giraffe started to cry about he liked it then somebody came over with a net so they could get it then she reached over and got it for them then he got it back and he really really liked it again and then the elephant really really wanted to play with it,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 1 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 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +but the giraffe was too busy playing with it the end there was a bunny and dog they wanted to build a sandcastle together and then the bunny took too much sand and then he dumped it onto the castle but the castle got ruined accidentally accidentally and then the dog was sad because her castle got knocked down the end there was a dog and a bunny,0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +they wanted to have a picnic together and they each took out all of their stuff from their baskets and ate and they ate and ate and ate until the bunny got so full he wa he felt like he was sick and then the puppy dog went to go and get doctor somebody who could help and then and then the doctor came over and helped the dog and the bunny and the bun and the doctor helped the bunny be all right again and then the bunny got taken someplace where he could be all right the end there was a dog that had a balloon hooked up onto her little wagon then the bunny wanted to have the balloon,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and so the dog let the bunny look at the balloon and then the bunny untied the balloon and then he lost the balloon but then the dog very an very sad then the dog get got very angry at the bunny and then they saw a a s a person that was selling some balloons an and then they came over to him and said can i please have another balloon a balloon but the rabbit but the little rabbit came over and said can i please have a balloon but the person said no you need some money and then he and then he showed him how much money he n how mu how much money he needed for a balloon,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 1 +i and it was quite a bit and he did not even have any money so they could not get another balloon for the little dog and they and they were very sad and then they came over to a doctor and and the little bunny said can can you please help us get a balloon and then the doctor said all right i will get you a balloon and the and the doctor gave the the person um as much money as as they needed and then they enjoyed their balloons again,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +the end there was an elephant playing with a ball near the pool and the and a gira and a giraffe came wanted to play too the ball fell right into the pool the giraffe swam right towards w jumped into the pool and went to go get the ball the giraffe got the ball for the eleph baby for the elephant and the elephant likes the giraffe that is all the elephant and the giraffe wanted to go swimming the elephant was going on the diving board,0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +the elephant was running then she slipped she h cut her knee the lifeguard came the lifeguard put a bandaid on the lifeguard put the the elephant on on a b the bench w and the lifeguard pointed to the sign that said no running the giraffe was playing with his toy plane h um he did loops and stuff with his plane the elephant grabbed it,0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 1 0 0 1 0 0 0 1 1 0 0 1 0 1 0 0 0 1 0 1 0 0 0 0 1 1 1 1 0 1 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 1 +and it landed in the pool the giraffe was very mad the lifeguard came to s to see what the problem was h he uh the lil the little elephant told everything what happened the lifeguard tried to get the air the plane but he could not reach it then then a then an elephant with a net came the elephant with the net scooped out the plane and gave it back to the giraffe and he was happy again there is a little bun a bunny and a th and a dog,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 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 1 1 0 0 0 0 0 0 0 0 0 1 0 0 1 +they are going to play in the sandbox the dog was building a sandcastle and the wa the rabbit was putting sand in a bucket he the rabbit dump dumped the sand on the sandcastles the rabbit and the do the ra the rabbit was like what happened and and the dog was trying to rebi and the little dog tried to rebuild it the little dog and the rabbit they saw were going for a picnic uh uh the the dog had a sandwich and the rabbit had carrots sandwich cake chi he had all kinds of st stuff,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 +then he then all his food was gone then he felt sick the dog ran to get a doctor sh the dog showed where the doctor where where they were having the picnic the do the doctor they were saying ah with his stick and i think that is what he did then he felt all better the little dog was pulling a wagon with a balloon the ra and the rabbit came along the rabbit saw the balloon on the wagon tied to the wagon,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +the rabbit untied the balloon the balloon floated away the dog was very mad the rabbit ran to a balloon man the rabbit wanted a balloon h he he had no money so they so they were very sad then the do then the doctor was walking along and the rabbit went to ask for some m went to ask for some money sh sh he told the the rabbit told the doctor everything,0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 1 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 1 0 1 1 0 0 0 0 1 1 +the ra the doctor gave money m money to the balloon man so they got the two balloons and now they were very ha and they were very happy uh he walks to a horsey and then the horsey fell falls down then the horsey fell in the water and then he gives the ball back to him and then they play with it and that is the end so um he goes in the sandbox with the elephant,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 +and then they walk in the into the sandbox and then they walk into the hill and then they laugh and then they got a scr and then elephant got a scrape and then he then he started to cry and then he he sat up and got a bandage bandage and he said are you okay the end um he found an airplane in the sandbox and then he and then the and then he flies it up in the sky,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and then he stands up and then he stands up in the sandbox and then they br broke the airplane in the sandbox and they dropped it and then he he it was stuck in the sandbox forever and then it was more stucker and then a lifeguard came and get it and then he got it with his and he reached it with his arm and then they were sad the lifeguard got it for him and then the lifeguard poured on the net,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,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 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and he got it and then he said here you go and then he keeped it forever the end he the dog goes in the sandbox and then he starts making the sandcastle and then the rabbit spills on it and then he and then it is all gone it x up then it was all covered up,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 1 0 1 0 0 0 0 0 1 +the end he goes looking at his favourite friend then he goes and stickes out his tongue then he had a drink and then he lies down in the sun and then he walks away then he pulls on his shirt and then he and then he talks to him and then they walk away he comes along with a balloon with with his wagon,0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +then he comes and then he walks with him then they stopped and walked in the snow then they lose the balloon and then they stop and get angry then they walk away and saw a man with balloons then they said to him balloon and then he gives him one and then they walk away and then they think the rabbit the big rabbit,0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 +and then they walk to his mom then they walk to their mom and then he comes and walk to the lady and then he comes and then he gets a ba another balloons balloons the end a horse a giraffe and an elephant were bouncing a ball the ball in the pool and the giraffe was scared then the giraffe um went in and swam and got the ball out then the elephant was happy,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and the giraffe was all wet and they were both happy the giraffe wa was scared to go in the water again so the elephant went in and she saw a diving board and she decided to go on the diving board and jump and then the giraffe said maybe that is a good idea the elephant went slipped and fell and the giraffe was running to the diving board the elephant hurt her her knee,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 +and the giraffe was scared so the giraffe helped the elephant the lifeguard came and saw the giraffe um was taking care of the elephant the lifeguard put on a bandaid it did not hurt any more so the giraffe did not look scared any more and the lifeguard was happy and then the other elephant the lifeguard looked at a sign and it said no running the giraffe and the elephant were happy,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +so they decided maybe we could fly a the giraffe decided maybe he could fly the airplane in the water and then got and then the elephant could dive down and get it and then the giraffe would throw it again into the water and the elephant would keep on getting it then it then it was then it was wanted real crazy so the elephant let him the giraffe would make made a tongue the elephant grabbed it from the giraffe and the elephant looked and the giraffe looked scared and the elephant looked happy,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 1 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +the elephant threw it and it went in the water and the elephant looked scared and the giraffe did not know what to do the giraffe got mad at the elephant and the elephant got sad the lifeguard got mad again and they both got and they both did not know that again so the lifeguard looked nervous because the elephant looked scared and the giraffe was sad,0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 +lifeguard was going to get it so the lifeguard was trying to get it and the giraffe and the elephant looked nervous the giraffe started crying and the elephant was sad and the lifeguard was nervous oh then another elephant came with a net to get it out of the water so the they could have it back again and he tried to get it out but it mm it she tried tried a lot but it would not come out,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 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 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 +then he got it out and they were happy then the giraffe was happy and the elephant was too a bunny and a dog were building a sandcastle the bunny got scared and the dog was nervous they made a sandcastle then they both were happy they poured and the rabbit poured sand over the dogs sandcastle,0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 1 0 0 0 1 1 +the sandcastle broke down and the rabbit was the sandcastle did not break down and the rabbit was nervo and the dog was nervous and then the dog um tried to build it up but he was crying and the bunny was nervous the dog and the and the bunny were collecting coconuts and berries and they saw each other and then they said hi to each other and then they were happy,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 +and and they and they had a picnic they went home first and then they went back to the spot they were going to have a picnic at and then the bunny ate a lot and the dog was nervous and then the bunny ate too much he got so fat and the dog um ate the rest the rabbit did not feel well and the dog was nervous,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 1 +so the dog called the doctor and the doctor came and then the dog told him that the rabbit ate too much so he did not feel well so the doc so the dog dragged the doctor there because the rabbit was not feeling well the doctor saw that the dog that the rabbit was not fee feeling very well so um the hh he he was scared and then he felt then the doctor made the rabbit feel better and the dog was happy the dog mm pulled the wagon with a balloon tied onto it,0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 +and the rabbit saw that the dog was pulling a wagon with a balloon on it the rabbit wanted the balloon and the dog looked nervous the rabbit tried taking off the balloon the dog looked scared the rabbit was sad because it when he got off the balloon it started floating away so they were both and then one um wen and the rabbit was sad and the dog was scared the rabbit was nervous nervous and the dog was mad,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 +there is a balloon man over there uh it it was going to another bunny hu him too can i have a and the and he said um can i have a balloon and the dog was way back there so the and the rabbit was up to get a balloon and then the guy the balloon man said balloons five cents so the rabbit checked in his pocket for any money but he did not have any the rabbit looked shy and the dog did not look shy,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 +and then the um man looked nervous the doctor was coming and the rabbit was running to the doctor and the balloon man was selling and the dog was nervous and then um he showed the doc the rabbit showed the doctor um that he wanted a balloon to buy to five cents to buy a balloon so he could have a balloon and the dog could have a balloon then he gave him five cents for each balloon and then the balloon man gave him two balloon and then they were were happy and the balloon man was happy,0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 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 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and the rabb the doctor was kind of nervous the doctor was real nervous and they were both real happy uh uh the the elephant and the zebra the the zebra were going playing ball and that was on this page and and then and and then um and then the ball falls in the water and then zebra goes in to to swim to it the and then the zebra brings it to the elephant and the elephant felled in love with the zebra fell in love with the what,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 +zebra oh they went on the they are going to go on the diving board and then she goes running to the diving board then she slips and and hurts her knee gets a scrape on her knee and then the lifeguard comes to put a bandage on it and then she starts screaming and then she w and then she does not puts her leg up like it is broken then the lifeguard says no running the z the zebra finds a a plane,1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 1 0 0 0 0 0 1 +and the elephant said wow and then he starts flying it then elephant grabs it from the zebra and then then sh and then she started flying flying it and and and then she drops it into the water then it floats and starts sink sinking then the lifeguard comes s and then then the little boy zebra said can you get my plane and then and then the zebra said the elephant was flying it and then she dumped it into the water,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +the elephant lifeguards arms tried to grab it but she he could not then the l then the lifguard gived her trouble a and the zebra was crying and then she go and then the and then the mom gets a net and s and grabs it out of the water and gets it for the little boy then the boy was happy and they started hugging it and it was done the end there is m they are ma they are making a sandcastle,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 1 0 0 1 1 0 1 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 1 0 1 1 0 0 0 0 1 +and then a friend came and then he dug he digged some sand and put it in a bucket while the other kid was making a sandcastle and then he dumps it on the sandcastle and then and then the rabbit was mad she uh the other one st and then the mouse starts crying the end they go for a picnic and the mouse and the rabbit goes for a picnic the rabbit starts eating loud and then the rabbit got fulled while while the mouse was eating lots of sandwiches and ju drinking juice and then the rabbit ate some more,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and then he had a and a and then he got sick then the doctor came to see the rabbit and the doctor was not then the and then the mouse was dragging the doctor and then the doctor see said s seem seen what is wrong uh and then he got all better they are going to the circus and the balloon pops he ties up another balloon then it flies away and then there is and then they can not move their wagon,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +there there is a balloon man and the rabbit says i want one of those balloons um and he can not buy any because they are five cents and then he and then and then he and then he dumps his pockets out and he goes to go running to his dad to ask his dad for a balloon for his friend and the doc and then then then his dad sa says okay then they bought two balloons and then they pop them he said hi i love those rocks,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1,1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 +then that rock is falling and he that one is swimming and he gave that rock and he play and he can play with it now the end and uh b there was is elephant and this one he was jumping over an and they can run faster hm were you going to help turn yep,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 1 +okay he said i want to go run faster and jump over it and he said you are not big enough and he said oh yes i will she ran and and then slipped uh and he will say y ouch and that hurts he has a booboo and he tell his mom and then he still cry,1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1,1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +then he sit on it and he could help and do not play on the rules on the the pools once upon a time there was the this one is re really sheal he he said i like your airplane he said thank you and then it flies and he will catch it and he catch an airplane it does not fly but suddenly he the airplane did not fly up,0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 +he looks so angry and then and he said what is the matter he said i was dropping it and and he take it and it falls down then why did you did that i did not do anything he said maybe i can get it and it is too hard maybe maybe i could try again,0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +i will catch it in that net he scoop it up and that airplane works and he is so happy the end a bunny l loves the dog and they shovel the and they and that dog build a castle and the castle and that bunny just well it will fall down the castle and that bunny he he melt them he did not do it,0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +they fix it up he waved at bunny and they eat some snacks and the rabbit is tummy is full and they got a tummyache he tell him he just look at it he just got a tummyache she really not feeling all better then she feels all better,0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 +he waved at the dog and he gets the balloon then he show at the balloon then she pull it up he did not she did and it go up and he was mad it she tell them and he look at the balloons and he said would you please get that balloon,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 +and this present number five and they love them and they tell him again and he said the balloon will not get it wo he will not get it back and they all had two balloons and last year they have a balloon the end the zebra was going to the zoo and the elephant wanted to come and show them his practice at the circus and then they saw something inside a water,0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +but the giraffe wanted to get that ball because the elephant dropped it and the elephant said thank you for getting it the elephant wanted to go swimming but it ran jumped into the pool and it hurt itself is that what is on this page the elephant ran then when it ran it just ran fast and then it um it fell down and it hurt its knee,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 +and then another elephant came what was the lifeguard he and the lifeguard saw the elephant hurt itself then the lifeguard said you can not swim without a lifeguard if it tells you and it said go on the bench and no more going swimming until you calm down and i say so the zebra w the giraffe wanted to put his airplane in to see it swim and it and it did and then it went in the water and the giraffe did not know how to get it out but then the elephant took it from it,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and then it dropped it in the water and then the lifeguard did not know how that it airplane got in said um that is the giraffes airplane and the lifeguard tried to get it but he could not reach it and the giraffe was sad because nobody could get it then another elephant and it got um a thing what you catch fish with and it tried out to do it but it got it the airplane,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 +the elephant who caught fish gave it to the giraffe and giraffe said thank you giraffe was happy he was making a castle in in the beach what he got the sandbox he won and he made a castle there then when he was done making the castle he wanted to make another one and then he tipped sand on it but he was afraid if it was going to crash and it did crash,0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 +but he had to make another one but it was hard to make they were going to go and have a picnic and the bunny wanted to come and he said yes they eated carrots and they listened to some music and the bunny rabbit was full and the puppy dog was not and then the bunny rabbit got sick,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 +and the puppy dog was not very happy and then um the bunny rabbits grandma came and the puppy said the bunny rabbit is sick and they said come here come here and she came and she looked at the bunny rabbit and said you are sick then they went back home the puppy dog was all alone having a picnic they were going to a circus and they brought a wagon with a balloon on it,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then bunny wanted to grab the balloon but the puppy dog would not let it so it said it is putting it in a knot he said then it flied away and he was mad at the bunny rabbit and then there is a man with a whole bunch of balloons and puppy dog was mad but then the bunny rabbit was not he wanted some balloons and he said please can i have a balloon,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 +but the man would not let him he had no money but the puppy dog did so the pup but then the bunny rabbit saw another bunny rabbit asked can i come to wherever you go can i have a balloon if you have some and he said but then he realized that is not a man that is a girl said y yes then he gave her a balloon the that is a giraffe who is laughing with the elephant,0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +and then he saw the ball and then the elephant was scared and then the giraffe gave him the elephant the ball and then the giraffe came up the sidewalk and then the giraffe came up the sidewalk the the giraffe and the elephant were too scared to jump in the water and then the elephant was laughing but the giraffe was like ssss scared and then the elephant s was like tripping and then the elephant was hurt his knees and then the elephant cried,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 1 +then the elephant camed home and then the elephant was laughing and then the swimming man said he was pointing a hand the swimming man was what pointing his hand the elephant was laughing and the giraffe was laughing and then they were playing with the airplane and then the elephants turn to play the airplane but they dropped it in the water,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then they the elephant was scared but the giraffe was angry and then the swimming man was all mad at them but he said what happened and then he was like wo saying uhoh and then he was trying to get it but he could not and then the giraffe was crying and then the girl was trying to get a fish tank and then get it and then she got the airplane,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and then sh she gave it back to the giraffe this one the bunny was digging but this girl came and then dig and then they they both shared then they put it on together but that girl was scared and then they were like all sad and they made it back again the bunny said hi and then they went to a field tr trip,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 1 1 1 +and then they ate carrots but they guy did not got nothing and then they they both um shared food and then the f the bunny um dranked and the bunny was fatter and fatter and fatter and but he flew it off to this doctor bunny and then he s told the doctor that he is fff he needs help and then he said go to the doctor and then the doctor ss went to the dd to his workshop this guy was holding a balloon with a little car,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and then he was saying look my balloon and then he pulled it off and give it to the the other guy but it flewed up the sky and then the dog was all angry and then they ss and then they sawed the balloon man and then he said can i have that and but it was five dollar and then they were all sad but they saw the doctor and doctor can we buy this,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,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 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 +can we buy the balloon doctor and then the doctor s gave him the money th then they b got another balloon first there is an elephant and a giraffe and the elephant is bouncing a ball turn and the elephant i think bounces it into a pool and then the giraffe dives in to get it and then the giraffe comes back and gives it to the elephant and the elephant looks like he said th looks like he is saying thank you,0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 1 0 1 +um there is a giraffe and an elephant standing by a pool and there is a sign that says no running so the elephant points at the diving board and she runs over there and she slips and she scrapes her knee and then the lifeguard comes and help and puts a band bandaid on her then she then he put put puts put her on a bench to sit down and then the lifeguard points his finger out saying bad i think there is an elephant and a giraffe,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,1 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 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 +and the giraffe is flying a toy plane around and then the elephant um looks at it and i think says that is interesting so the giraffe gives a turn to the elephant and the elephant is th um threw it into the pool and the giraffe gets mad at the elephant so the elephant asks the lifeguard to help and then talks to hi the liteguar the lifeguard what happens and the lifeguard tries to reach and get it then the lifeguard does does not know what to do and the giraffe goes on his knees and starts to cry so a dif i think a person that swims takes a n takes a net and tries to scoop it,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and she s scoops it up and gives it back to the giraffe and the giraffe holds it by like this by his neck and the elephant um has his hands like this like that in front of the giraffe there is um i think a bunny and a dog and the dog built a sandcastle and the bunny i think wants to help um the dog is smoothing the sides out while the bunny is digging sand out for the sandcastle and then the bunny pours it all over the sandcastle and he and it destroys the sandcastle and then the dog cries and tries to build a new one,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 1 +um there is a bunny and a dog that have their baskets with uh f food in them and then the bunny dumps it all dumps it all out and the dog just takes it one at a time and then the dog is still eating and the bunny is laying on the ground with all this garbage around and then the dog is drinking a juice box and i think the bunny feels sick then uh and then the dog i think finds a doctor and the dog is pulling the doctors sleeve over to where um the bunny is laying down and the the doctor takes a thing and this little stick and like points at something,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 +and then the doctor brings the bunny i think home and uh the dog is standing b just standing still with a th a thing behind her back first um the dog is pulling a wagon with a balloon attached to it then the dog drops the handle and the bunny tries looks at it and then the bunny tries to untie it and it s blows away into the sky and then the dog gets mad at him and then the the da the dog is mad the bunny runs over,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 1 1 0 0 0 0 0 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 +and he sees a a balloon man selling balloons and the bunny takes one of the balloons and and on one of the balloons it says balloons five cents and then the bunny pulls out the inside of his pockets and he has got no coins so the balloon guy was holding the balloons and the bunny has his hands in his pockets with the dog behind him the um the the the p dog is standing by the balloon guy and the rab the rabbit sees this this p this girl this lady and then i th she tells he tells the lady to i think b get him a balloon,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 0 1 0 0 0 0 1 +and then the the lady takes out her wallet and puts some coins in her hand and they uh each get a balloon the elephant start the elephant starts screaming with the elephant starts doing with his trunk he s makes lots of noise do you know about the elephants oh it does not it is your story you make it up whatever you think and then they saw a egg in the water swimming they want to pick it up the elephant said uh why there is a egg,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 +i want to jump in the water and get it ah the guy swim in the water to catch it and the elephant is doing this and then the guy um swim and he give the thing for the elephant the elephant said wow and then the elephant went away the end they saw a water they want to swim in there,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 +it is like the two guys the elephant and that guy same and that is it and then the elephant said look i want to swim in the water and then they start the elephant was first the guy was behind him and he starts running i do not know what is he running for,0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and they still run again know what is he running for too and then they stopped and the elephant fell and it hurt his leg that is funny part and then a elephant came and squeezed his and then he put a bandaid and that is it elephant came,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1 +and that what is what is this guys long neck what is what is this guys long neck what is his long i can not see it it is your story you make it up and he got a helicopter he flied it in the air it fell in the water it keeped flying in the sky it could not get down he was going to catch it,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 1 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +he could not okay shall i turn now oh he he wants to fly it right now the elephant is like this oh you showed me again with your face and then and then he wants to fly it the elephant catched it he must have wanted to fly it and then it fell in the water uhoh and then that guy gets mad on the elephant cause it is because it got s um it is got snuck down,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 1 1 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 +and it got stuck now and then the other guy said here is the bigger dad and the eleph the other guy the other one said look the helicopter sneaked down oh the guy the guy is trying to catch it it gots all the way there and then they could not catch it that is a long one and then the guy got a like net oh the net catch everything,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 1 +he catch fish but it is hard to catch fish they are fast and helicopter is it is just a toy down there you can catch it fast okay should i turn and then the guy catched it and he give it back to the other guy and then the elephant is really happy and he went,0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and he what the ele elephant is happy and he went because he got that thing the end the other guy was building his sandcastle and the other guy with glasses they was happy and then turn the page now and then the guy w wants to mix it because he can not see or watch the guy put the pail,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 +it is going to wreck it now it is lots of sand and then he wrecked it that guy that is his sandcastle he wrecked it and then the other guy build another sandcastle but it is not nice the end the guy said bye to the guy the guy with the glasses and then he went,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 +and he sit and he was playing with the sand they was eating and snow uh and snow came down um and then they was cold and they went in the house and then they came back out and it was so windy and then they came back out it was raining,0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 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 1 0 0 0 0 0 1 0 0 1 +and when they came back out it was sunny and when they came back out it was windy again and when they came back out it was sunny the end um the guy went with the pail with a balloon on and then they see it they want to get it to the sand they could not find the sandpile and then and then the other balloon fell in the sky balloons can fly in the sky when it is windy because it is not heavy,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and then the guy wants to take it off whoa it forgot to go it is not hanging in tight like that it is like this flied off it is gone he can not catch it in the air oh yeah if that guy was with it then it is windy so hard it can fly with it if it is hanging on,0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 1 +oh it is flew he took it out and it flied up and then th and then the balloon pop and the guy was mad and the other guy was sad and the other guy bought lots of balloons and he gived them to the kid and the other balloon popped the last one and then the other one popped that is it,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1,0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 1 0 0 1 +and then another one and then it is not going to pop and then okay anything to say about this page here um page eleven and then the guy look look how many balloons he say and then he give him some money and he and then they jumping to get the balloon the guy can not see,0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 +they just gather by his hand and he went and then they hung on their arm and then they hanged on on the balloon they hanged on on a balloon and then they smiling the end it looks like a giraffe and an elephant that are going swimming and they are playing with a ball although it although when um they were playing with it it um maybe bounces in the water and the giraffe tries to swim and get it,0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the giraffe got it and gives it to the elephant and the elephant thanks him and the giraffe is smiling it looks like they might want to dive in and go swimming looks like the elephant is pointing to the diving board to um and he wants to dive and um the elephant starts to run although it is slipery so she starts to slide and she falls and hurts her knee,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 +and then um the lifeguard comes and he puts a bandage on it then he um saying probably that there is a no running sign and that you can not that you should not run cause you can slip and fall and then he is pointing to the sign that says no running looks like they are talking about something and then he and then the giraffe looks like he is showing her his new airplane and she looks like she is getting dizzy watching it going around in circles and she takes it from him and starts to looks at him and the giraffe looks like he is getting mad and then she accidentally dropped it in the water,0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and she looks like sh she is scared or something and the giraffe looks like he is m really mad and then the lifeguard comes along and probably says what is that and what is it doing in the pool and then the elephant is probably blaming it on the giraffe that he threw it in the water and the lifeguard is trying to catch it trying to pick it up out of the water although he can not reach it and the giraffe looks like he is getting really sad so he starts to cry and then this lady elephant comes along with a net and she tries to fish it fish it out with the net,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 +and she gets it out and gives it back to the giraffe and he is all happy and he is hugging it it looks like two it looks like a bunny and um and a dog or something playing in the sand and they start and the bunny looks like he is helping the dog make a sandcastle and the bunny pours a whole bucket of sand on it and the dog looks like he is getting sort of worried and the bunny s gets surprised because it is all covered in sand and the dog starts to cry and the bunny looks like he is embarrasseed,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +it looks like the dog is going for a picnic and the bunny is coming along with him it looks like the bunny is looking at all this good food that he wants to eat and he eats it all and he and he i guess he has a stomachache and then he starts to feel sick and it looks likes he is fainted and the puppy the dog goes to find somebody and he fi h um he finds this um lady and he pulls the lady to where um the bunny dropped out,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 +and the and the lady was a doctor so she tested him to see if he was awake or not and she took him and she is probably going to take him back to the doctor office to check him up it looks like she is pull the dog is pulling a wagon with a balloon on it and the and the bunny is coming like running along and he sees the dog and he is waving and the rabbit pra um looks like he is saying um like nice balloon and then the bunny tries to pull it off,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 +and the dog looks like scared that it will fly away and then the bunny accidentally lets go of it and it starts to fly up in the air and they are trying to catch it although they can not and the bunny is looking up at the balloon and the dog is getting really mad and then this um old bun this bunny is selling balloons and the bunny sees it so he runs over and then he asks the bunny the older bunny for a one of the balloons,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and then the balloon man said that the balloons are five cents and the bunny looks in his pockets and he does not have any money and the bunny looks sad because he can not buy another balloon for his for the dog and then the bunny walks over to this lady and he asks her for some money and the lady gives him five cents and then they each got one of their own balloons there is an elephant and a giraffe by the swimming pool and the elephant is banging a ball with his trunk,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and the elephant kno accidentally knocked the ball inside the water and the giraffe had to go and get it he had the giraffe had to swim inside the water to go and get the ball the giraffe got the ball back for the elephant and the elephant and the elephant was happy to get the ball back the elephant and the giraffe are standing by the water the elephant ran closer to the water the elephant slipped and the giraffe is running to s stop the elephant from falling on the ground and the elephant fell on his her knee and hurt it,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 +the giraffe is trying to fix the elephants knee and this oth another elephant came and put a bandage on it and all the giraffe the elephant and the other elephant are the giraffe is sitting down and the gg giraffe is standing up and the elephant is still the other elephant is standing up and the girl elephant is sitting down the elephant is the elephant and the giraffe are happy the giraffe is playing with a toy plane and the elephant is looking at it and the elephant took the toy plane and started to play with it,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the elephant dropped the toy plane inside the water and the giraffe is getting mad at the elephant and the lifeguard came and s looked at the toy plane and then the elephant was looking at the lifeguard and the one the giraffe is looking at the plane and the ele the elephant asked the lifeguard to get that plane out the lifeguard is holding onto the edge and trying to get the toy plane out and the elephant and the giraffe are looking at the plane and the lifeguard can not get the eleph the um plane out so the giraffe started to cry,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 1 0 0 0 0 0 1 +and the and another lifeguard grabbed a net and tr and tried to get it out and the other lifeguard um caught it in the net in there and um the everybody was looking was proud and that other lifeguard got it for the giraffe and the giraffe was very happy and the elephant and the giraffe are very happy to get the plane back there is a rabbit and a dog playing in the sandbox and the rabbit and the dog are making a sandcastle and the rabbit fulled the bucket of sand and broke the sandcastle and now the rabbit is a bit frightened of what happened to the sandcastle,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 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 1 1 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 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and the dog ha is trying to make the sandcastle all over again there is a dog and a rabbit they are going to have a picnic and the rabbit took all the food out and is getting very hungry the rabbit ate all his food and the dog is still drinking and eating his food very nicely and the rabbit is very ff full and the dog is still eating his food and the dog sees a doctor and ran over to the doctor and the doctor is the dog is pulling the doctors leg arm to move it over there,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 +and the doctor is gon going to take um the the bunnys the rabbits uh is going trying to fix the rabbit and the rabbit is all better now the rabbit is running over to the dog that is pulling a wagon with a balloon on it and the rabbit is trying to grab the balloon and the rabbit is untying the balloon from the wagon and the dog is very proud and then the balloo the balloon slipped out of the rabbits hand and went flying up in the air and they are all try and the rabbit and the dog are trying to catch it and the dog is very mad at the rabbit and they s and the rabbit sees another man selling ballo a balloo a man selling balloons,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 1 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 1 +and he bought one the rabbit bought one balloon and he and the rabbit has no money for balloons and th and the rabbit and the dog are trying to get a balloon and the rabbit went to th to the to this other rabbit to the doctor and the doctor saw him and the the ra other rabbit is pointing to the balloons and the doctor is buying a balloon and both of them have a balloon the girl has three ba balls and she is and there is a a big one and a medium sized and a small ball,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and and there is um a giraffe that would like to play with one by accident he s the girl throws the ball into the pool the giraffe goes try he is in to swim for it he gives it back to the girl and says that is okay he is smiling at the girl the girl elephant and the boy giraffe are looking at the pool okay can you talk a bit louder cause someone is making noise out there what is next the girl the girl is running the girl is running mm okay,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 1 0 0 0 1 1 1 +she she accidentally slips and she hur and she hurts her knee and now she is crying crying the lifeguard comes running he put the bandage on on the um bruise and she now she is sitting down on the um bench he points to the sign that says no running and she was running the boy giraffe have a toy airplane and the girl giraffe the girl elephant is asking to play with it,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,1 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and he wa and he um and he is showing her how to do a loopdeloop with the airplane and then sh and then she takes it sh she is looking at it like it is hers she accidentally drops it into the pool the um gira the boy giraffe is getting mad at her the la the l when the lifeguard sees he he is kind of happy and he is kind of mad the girl the elephant is telling hu him what happened he is trying to reach out to get it the boy giraffe is crying because they can not get it,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 1 1 0 1 0 0 0 0 0 1 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +the the other gir there is another girl elephant that has a net and she thinks that she can get it and she can get it she giving it she is giving the toy airplane back to the giraffe and he is hugging it because he loves it there is a rabbit that is making a castle and there is another rabbit that wants to help that rabbit make the castle they they are helping make the castle together one one is building the castle and one is making the walls,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +one one one is ac one accidentally pours the sand right onto the castle and the other one looks embarrassed uh after he pours it on all there is is a tower from the castle and it is all gone and the other one is kind of smiling but one has a frowning face and that other that other wa one that had a that was smiling is now crying and the other one is thinking of what he did that is the end of the story there is two there are two rabbits,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 1 +one is running to the other with a pis picnic basket and the other one is holding a pis picnic picnic basket one said one has opened up his picnic basket and he is eating all the food and the other one is s still opening hers up when he is done all his food he kinds of he kind of faints and the other and the other one is still eating uh he feels kind of sick and and he the other one is still eating the one that was still eating ru runs to get a doctor,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 +and and he is telling her him her what happened to her friend now she now she is pulling the doctor to her fr her friend the doctor is speaking to the boy and to tell him not to eat too quick now the boy is all better and now and now the girl and the boy is going home there is a girl that is pushing her wagon and uh there is a girl that is pushing her wagon and on the wagon there is a balloon and the boy and the boy rabbit is chasing after her he wants he wants the balloon so he reaches out,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 +and she is kind of have a frowning face what kind of face a frowning face oh frowning okay when he gets his balloon the gir the girl um kind is saying hey and he is playing and he is tying it to his wrist he lets the balloon go and it floats away the girl is getting really mad at the boy,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 1 1 0 0 0 1 0 1 1 0 1 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and soon they see another rabbit that ha that is holding balloons when the bo when the boy s when the boy sees that he asks if he can have a balloon the man said it is five cents and the boy does not have any money he says it is okay maybe next time you will have some and when the boy sees the doctor he asks if he can pay for the if sh she can pay for the balloon for both of the balloons i sa the doctor says y yes and um they both get a balloon right here she is paying,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 1 1 0 0 1 0 0 0 0 1 1 1 0 0 1 +and they both really like their balloons there once were two friends and they were playing a game and they wanted to go swimming so then they got there and then they were playing and the ball fell in the pool so one of the friends swam out and got it and then they got it and one of the friends she took it out,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then they wanted to play again there were two friends and they were the same one in the last story and they wanted to go swimming again so they went and then one of the friends she wanted to go in right away so she ran and sh and she wanted to jump in but then she fell and she scraped her knee,0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 +and the lifeguard came and he said oh it is all right here is a bandage here you can sit here and wait til it is better and then she was happy she took a little rest there were once two friends and they wanted to go swimming so they went and one friend bought brought an airplane,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 +the other friend grabbed it and said wow an airplane and then she accidentally dropped it in the pool and then the other friend was a l little bit mad so then she said uhoh and he went and then the lifeguard came and he went hmm and then she said i i accidentally dropped the airplane in the pool he tried to get it but he could not reach,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +so then the friend that ha had the airplane he was crying and then one lady she came and she had a net to get it she said do not worry i will get it and then she went and got it and then the he was happy again and then they were both happy and she was happy he got his airplane back once there were two friends,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,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 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 1 +and they went and they wanted to play in the sandbox and they built a sandcastle and it was really nice and they needed lots of sand to make it unless unless it would not work out and then he put too much sand on it that it all collapsed and fell and then and then one of them started to cry so and then he wanted to rebuild it once there were two friends and and they wanted to go on a picnic they packed all the lunch,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and when they got there they started to eat and they started to eat and one of them felt really sick so they had to get a doctor and and while the doctor was coming when the doctor was coming he felt really sick and he k he could not wait and the doctor came one of the friends she ran up to the doctor she said doctor doctor help my friend is sick,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1,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 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 1 0 0 0 1 +we need some help so he feels better the doctor said oh my he has a he has a very bad tummyache and he felt better because the doctor made him feel better and then he lived happily ever after there were two friends the same ones in the last story that i read and they wanted to go on a walk so they went and they and they saw and they saw somebody with balloons and they they got one and they tied it on,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 1 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 0 0 1 +but then it went up in the air and they were sad and then they they kept going and then they saw a man another man with balloons and they went they wanted to get some say so they got so they got some and then they left but then they did not have any money and he was sad and the balloon man said hm i do not know if you can get a balloon,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 1 +and they did not d get any and then they saw a lady and see she was and then he asked can you get us some money so we can get a balloon and then so she bought a balloon for them and then they were both happy uh hm once upon a time then there was a elephant going then the ra then the he came and was and a ball was in the pool then he tried to swim in there but he could not,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 1 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +then she pick the ball up then he was all wet then that is the end of the story once upon a time a elephant came along and that then then then then then she wanted to then she wanted to go but she falled on herself and the more she was running she falled and someone is going to help her and she got a br um a owie then come along elephant came then the elephant came,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 1 0 1 0 0 0 1 +and he and that was a coast then there was a owie going and there was but then there was nothing to do then the animal was all better and he said no running because if you run you fall on yourself i never do that i but i run on a sidewalk and i like like while i was two like once upon a time she did not allowed in something came and and then there was an airplane going in the water and she played it and something,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 1 +and she taked it away and throwed it in there um then then he was angry and she and the boy told her you did it on a purpose then a lifeguard came then then the airplane was still in there he wanted it out he tried to reach it but he could not and someone got it but she was very trifle,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +um then someone is going to pick in a net um then someone is going to pick it then he was happy then he was glad then she was glad they were making new friends again then the end of the story once upon a time he she built a nice sandcastle but then that rabbit then the rabbit was surprised then c then they were making a other castle,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 1 0 0 0 0 0 0 1 +then someone pushed it down and that was her like like a rabbit or maybe someone else and it was rabbit and she did not do it so she tried to fix it and he was not uh pleased then that is the end of the story he she was walking by and then then a rabbit was going by and a puppy saw her,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,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 1 0 1 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 +and a puppy said i am going to picnic like you so they had a nice picnic and he was getting goofy and suddenly he was tired and he was full of candy and he is getting sicker sicker and sicker then he knowed he was getting sicker and sicker and he she needed him to help her he was so full he could not even walk and the rabbit said get up,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 1 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 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 +and then he was fine at all then she was trying to pull it but he was so happy a ra and a other rabbit came along and she said what are you doing i am just pulling some stuff and a balloon was not going up and she was happy suddenly it was going up and up and up and up and up and up then suddenly he wanted a other one,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and she was angry there she came just a sec then he was going to get a other balloon she was angry and he wanted a balloon and he said yup i want a balloon and he did not know and the said no can you see,0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 1 +and and he said you do not have any money that is that is not doing then then suddenly he had idea and a rabbit had money somewhere to find and that was someone else looking in a far away and she said what is it you are doing i need some money but and she said she did not know what she need the money for then then she give him some won money and they wanted two balloons,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 1 +that was all and he wanted them two but others heard it but there was two left then they got both the balloon and they loved it then they hugged it and then something went then then then she was surprised and that was true that is the end,0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 1 +so a guy there was a giraffe he was at the pool then he met a girl bouncing a ball but the ball fell in the water and the man the boy tried to go get it and then he got the ball and then he was still all wet because he was in his clothes there they saw a diving board and it and it said no running and the sign said but,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 1 0 0 0 0 1 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 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 +and then she started to run and then she slipped she fell on the ground and she hurt her knee and then the lifeguard came and put a bandage on it sat on a bench and then the lifeguard said you are kicked out a boy was there and the girl was there and then the boy had an airplane in his hand,0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +he flew it around like this and then the girl grabbed it out of his hand and then it slipped out of her hand and it went into the water it was a pool and then the boy got so angry and the lifeguard came and the girl said it was an accident i accidentally got the w plane in the water so the lifeguard tried to reach it,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,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 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then he could not the lifeguard girl came and picked it up with a scooper and gave it back to the boy and then he hugged it he hugged the plane well he were in the sandbox and he meant and he somebody had a sandcastle built up and they played together and he put some sand in a bucket and the other guy touched the castle and then the rabbit put the sand on the castle,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 +and then he got so mad so then they tried to fix it there so he was on the road somewhere and he put his hand out like this and he saw somebody run down the street and then they decided to have a picnic together one is eating a carrot and then he got so full because he ate all the food and he got so full that the basket fell over,0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,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 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and then his dad came and he is still laying on the carpet and then he the child pull the dads shirt and then he said go to your room now and then he he sna and then the other guy went home because the other guy was not really his child the other guy was re really not his child so the this boy met a girl pushing a wagon with a balloon attached to it and then they wanted to play together so and then the boy took the balloon off,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and it floated up into the air and then the girl got angry so then another man came by selling balloons so the girl wanted one so then he uh the guy looked in his pockets to see if he had any money but he did not so he had to walk back and ask somebody else to for some more money then he got more money and then they got another balloon they each got a balloon the elephant is talking to the talking to a horse,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 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 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +the elephant is pushing the horse the elephant pushed the horse in the water the elephant is helping him out the elephant ah being nice and that is the end the elephant is being nice elephant the elephant is going to jump in the water th the elephant is running the elephant got a got an owie the elephant is crying,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 +uh the daddy is putting a bandaid on it and she is sitting on a bench uh and she was and she is be and she was just teasing she was just teasing that she had a owie the elephant is making funny faces the elephant is uh looking at the airplane the elephant s wants to fly it the elephant is the elephant is sinking it the elephant is and the elephant is looking at the airplane sinking and hm the elephant is mad,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 1 +and she s she said to her dad that that that i sinked his airplane and the dad is trying to get it and the dad is putting his hands out like this and and the ga and and the fly fly swatter uh and she is trying to get it with the fly shw ss swatter s and and she got it out for him now the elephant is happy and that is the end um they are playing in sand the rabbit is digging in sand the rabbit is putting sand on the sandcastle,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +the rabbit wrecked the sandcastle and and the piggy is sad and he is building it back up and that the end the rabbit is walking down the path the ra they are having a the pig and the rabbit are having a picnic the rabbit is eating candy the rabbit is the rabbit is feeling sick and they are gi and the and the pig has a flower in his hand and the pig is pulling the the girl bunnys hand,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 1 0 1 +and the girl bunny hit him on the head and the girl bunny is taking him and that is the end the rabbit wr walking down the path again the rabbit is looking at the balloon the pig has a f um the rabbit is untying the balloon and the balloon is going up and the pig is getting mad at the rabbit and and there is another rabbit and they are going to go buy another one,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 +and they are going to get one and then they are going to ge go get another one from someone else then they are going to go get another one from someone else and then they got one and then the and then the then the gi then the girl um and and the rabbit is running to the girl bunny the girl rabbit n and and then and and he is pointing to the balloons and and they want another balloon so they are getting their mom to buy another one and this t and they got their own this time and that is the end a girl is bouncing a b a ball,0 0 0 0 0 0 1 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 1 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 1 +the ball went into the pool the moose went to go get it the moose got it and brang it back and then he got out of the pool got out of the pool and the girl was happy they they see a pool they run to the diving pool now they are running to the diving pool okay so you were thinking about that because you knew what came next anything else on this page they see the diving board,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 1 +so they run to the diving board the girl ran so fast that she slipped and hurt her knee the lifeguard came to see to give a bandaid bandaid the the moose went to go get him the lifeguard gave her a bandaid she thought it really hurted and then the the lifeguard took her to the bench and then she tried touching it and it was better and then the lifeguard pointed to a sign,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +she looked it said no running the moose has a plane they were going to play with it at the pool the moose fl fl made it fly okay you were showing me with your hands and then the girl took it away and threw it it landed in the pool the moose got really mad the girl said oopsies,0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1,0 1 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 1 1 +the lifeguard came she was scared she told what how um how how it happened the lifeguard tried to reach it but he could not the moose cried the lifeguard got a net and got the plane with the net then pulled it out so sh so the moose can have it and then they had fun later there are two boys making a sandcastle one of them smoothed it up,0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 +the other one put sand on it since he was getting tired of doing that he dumped the whole pail on and then the wh whole pail cover most of the sandcastle one of the boys started to cry two people had a picnic one of the boys ate had more than the other one the the one of the boys had l had too much to eat he got he ate a little more and he got dizzy and then and then um a the other boy saw a girl,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 1 +she pulled the girl to the picnic and the boy wa the boy was not so dizzy any more because the girl helped him a boy was pulling a wagon with a balloon on it the boy saw the balloon the boy was untying the balloon the balloon floated away the other boy got mad at him he so he the other boy looked up and then they saw more balloons so they went to go get one,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 +but but it costs money and that was this page and then the boy checked his pockets but he did not have five cents so the man with the balloons said no you can not have one because you do not have any money and then a boy found a girl the boy asked her nicely if she could buy him a balloon the girl gave him a balloon they both had a balloon now the elephant and the ah,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +the giraffe was uh saw the elephant was bouncing the ball and the the ball was on the water and giraffe trying to get the ball on the water and the giraffe got it and the elephant get it and the giraffe was wet the end once upon a time a the elephant and the giraffe was saw the water and and ahh um the elephant want to go on the water and the elephant go right away to go on the water,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 1 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 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the elephant slipped over the the ground and the elephant got hurt on the knees and the elephant was crying and the and the elephant was putting a bandaid on and the elephant was the elephant was ahh ahh mad because it hurts on the knees with the bandaid and they feel better and they sit down but the elephant ahh looked so mad because theyre the giraffe and the elephant want to go to the water the end the giraffe and the elephant,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 +the elephant saw the airplane on the giraffe hand and the elephant was saw the airplane was flying and the giraffe was standing uh with the airplane and the elephant take away from the giraffe airplane and the elephant want to see it and the elephant drop it in the water and the giraffe was very angry and the elephant and the giraffe was saw the the other elephant was saw the airplane in the water and the the elephant was uh say the she was dropped the airplane in the water and the uh the elephant trying to go get the the airplane,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 0 0 0 0 0 0 0 0 1 +and he can not get it but uh the giraffe was crying with the airplane and the then the other uh elephant will get the airplane with that thing to for the fish and she the elephant trying to get it but it is too hard to get it but she get it the elephant got it now and the uh giraffe was happy and the elephant and the giraffe was happy too the end,0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 +the bunny and the the dog the dog was making a sandcastle and the rabbit want to help the dog and the rabbit was making a sandcastle and the dog all finish and the rabbit was trying to put the sand on the castle and the dog was so scared the the rabbit trying to put the sand on the castle and there is breaked the the sandcastle and the dog was crying,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and the rabbit was so sorry breaked the sandcastle the end the dog and the rabbit was going to the picnic and the rabbit was have the carrot and some hot dogs and some cake and some sandwiches and the rabbit got too much to eat and the rabbit got a st stomachache and he is getting so fat and the doctor was came and saw the rabbit the and the dog tried to get the doctor and the doctor was coming and saw the rabbit there,0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 1 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the rabbit was so have a stomachache and he feeling right sick and the rabbit go home and he felt better the end the dog and the bal the dog and the bunny was saw the balloon the color pink balloon and and the rabbit went to see the balloon and he trying to take it off for the dog and is is floating away from the dog and the dog was right angry because the bunny was let go of the balloon,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and the dog and the rabbit saw lots of balloons there pink green and orange and blue and purple white and gold and the rabbit choosed the blue one and that and the the nother the another uh rabbit was right angry because that is number five so the rabbit and the dog want to pick the balloon but the doctor there because the dog was sick and the the doctor saw the dog was sick and he has got some the doctor got some monies for the dog and the rabbit for the balloons and the dog got the color the gold balloon and the rabbit got the color the blue balloon,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 1 +the end the elephant was playing with his ball then he threw it in the pool then the giraffe catch the ball and throwed it to the elephant and he pick it up x okay what did you say they want to go in the pool he was running,0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1,0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 +then he slipped then hurt his knee then he cried what is that then the lifeguard go and he closed his eyes and it hur hurt then uh the lifeguard told him that he it says no running the elephant looked at the giraffe playing then he played with it,0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +then he grabbed it then he throw into the deep pool and the giraffe been angry and the lifeguard came he and he told him that he throwed um the giraffe plane into the deep he tried to grab it but he can not and there was daddy he get the plane and he catched it,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 +and he bring it back to the giraffe and he hugged it tight to the the bunny and the dog are making a castle castle the bunny put sand in his bucket and he dump it all and he wreck the dogs castle mm he he he pretended to he did it to him the dog and the bunny went going for a picnic the bunny ate some food and he ate some more,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and then he has a stomachache then the dog got by the doctor and he grabbed him and he uh he told the dog that he has a stomachache and then they came the dog and the b bunny went to see the bunny the the bunny see he sees the dog then he tied up the balloon and the balloon went up and the dog got angry,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +then the bunny losed it he talk the mom to give him the balloon but he do not have money the the the bunny and the dog have no money they come to go to him and then the dog the bunny goed and he gave both balloons to them bunny and the dog um the donkey wanted to play uh with with another animal with his balls um they they went to the swim pool and they they found a friend,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 1 0 0 0 1 +and he jumped in the water and splashed the elephant by accident and the elephant picked the ball up and the giraffe asked if he could have it and he came out with his cloths on um they went back to the swimming pool and did not want to go into the water the elephant wanted to go in the water but the giraffe did not um the elephant asked if he could race the giraffe to the diving board but the elephant tripped and and fell and hurt her knee and the swimming person checked if he was okay and put the bandaid on her,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and she feeled all better and she stayed there so she could get better um the giraffe throwed his airplane and it flew but but by accident he th threw it too soft and it fell in the water and he tried to get it out but he and he did and without asking the elephant grabbed the airplane away from him because she wanted to play with it and because they was grabbing they grabbed,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 +and it fell in the water and the giraffe was angry at the elephant because she throwed it in by accident the lifeguard was mad because they throwed it in and toys was not supposed to be in the water and the elephant said look what i did it was by accident and the lifeguard tried to pick it up but he could not the lifeguard could not so he just got up,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 +and he had an ide a plan he but he did not his wife took um a stick with a rope on the ss on the front and he catched it out he tried to she tried to catch it out an but she could not and she did and she gave it back to the el giraffe and now he was proud of the girl because she got his plane back the bunny said hi to the dog,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 1 +and the dog was making a sandcastle and the bunny wanted to help but the dog said yes and they started building a sandcastle and then the bunny dumped a bucket and it and it and the castle fell down and the dog was mad at the bunny and the bunny was sorry because he knocked the sandcastle down and then they builded it all and then the dog builded it all up and crying the dog said hi again to the bunny,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 +the bunny was racing down with a basket of food so was the dog and when they got there they unpacked the food and they started eating and the bunny tummy hurted and he was sick of the food and the dog raced to the doctor and said doctor doctor can you help my bun my friend bunny is sick doctor doctor come on come on doctor,0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 1 0 1 0 0 1 1 0 0 1 0 1 1 +come on my friend bunny is really sick because he eat so much food okay okay he took his temperature and he was sick sick and and then he checked the bunny again and he was all better the dog said hi again and the bunny wanted the balloon and said where did you get that from i want that balloon right now,0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 1 0 1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 1 0 1 +and he untied it from the wagon and it started float floating off the wagon and the dog was mad at the bunny because he untied it and he wanted it and then the bunny had a great idea he can go over to the balloon man to buy another balloon and they asked could we have two balloons please and uh and it cost it costed five dollars and he had he did not have any money in his pocket so he could not get a balloon,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and they said please but no only for five dollars doctor can you help us can we have five could we have five dollars for both of us so we can have a balloon he said okay you can have balloon i i do not we do not have any money in our pockets so please can you give us five dollars so they gived him five dollars for both of us and then they got the two leftover balloons and then they was proud of the doctor because they got a balloon,0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 1 1 0 0 1 1 1 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the bunny said sorry to the dog because he uh he wanted the balloon and he untied it so he said sorry play ball and he taking swimming pool and he get it and thank you and welcome uh and over play swimming,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 1 0 1 0 1,0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 +and go in it and and run and walk on knee and her cry and cry lots and sit on bench and stay here the what and stay on bench over play,0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 0 0 1 1 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 1 1 1 +play play a play and play a play again and play it in in water and it angry and say bad and dad what is that daddy i play in pool,1 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 1 0 0 1 1 0 0 0 1,1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 1 0 0 0 1 +and they are get it get it i am get it looking and get it and it in there i get it you get it and loffed it loved it loved it he play on s in sand and play make castle,0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 1 0 1 0 1 0 0 0 0 0 0 0 1 0 1 +and dump it and what dump it oh no oops sorry and cry uhoh they go picnic and eat and they drinks juice,0 0 1 0 1 0 1 0 1 0 1 0 1 1 0 0 1 0 1 0 0 0 1,0 0 1 0 0 0 1 0 0 1 1 0 1 1 0 0 0 0 1 0 0 1 1 +and hungry and that girl her tummy that man sick she what sick and a bunny his tummy hurts and turn that and go doctors house he what doctor all done,0 1 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 1 0 0 1 0 0 0 1 0 1 1 0 1,0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 1 0 0 0 1 +her play and hold that up higher tie it up and up higher and up clouds angry and man what man balloons on it him him take one,0 1 0 0 0 0 1 0 0 1 0 0 1 0 0 1 1 0 1 1 0 0 0 1 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 1 0 0 0 0 1 1 0 0 1 +and and x and bring doctor here and check and talk and money and balloon and two balloons and over there are these two kids one has a ball and she is bouncing it really fast by a pool,0 0 1 0 0 0 0 0 1 0 1 0 1 0 1 0 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 1 +and the ball falls in so the other kid jumps in and swims to the ball and he gets it for her and then climbs out there is these two kids and they are looking at the water and one of the kids says that there is a diving board and it looks like fun and the kid who said that the diving board looks fun runs and slips and hurts her knee and the lifeguard comes and puts a bandaid on the hurt spot and puts her on a bench and shows her the sign no running there is these two kids,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 +one has an airplane and he plays with it and the other one takes his airplane away and accidentally drops it in the pool and the other kid is really mad at her so she go gets so she gets a lifeguard and she asks him if he could try and get the plane out and he tries but he can not reach it and he does not know what to do and then this lifeguard with a net comes and fishes it out and gives it back to the kid,0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the kid was really happy to have his airplane back um these two kids um are going to build a sandcastle and they start building and then one of the kid um dump sand on it and then it is all flat and then the other kid cries because it is broken that is kind of dumb these two kids are going to go for a picnic and the first kid took um all this unhealthy stuff and he starts eating,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he gets all sick and the other one he gets all dizzy and the other kid runs and gets s the doctor and the other one pulls the doctor to him and then he checks him out and then he says that he is going to give him a checkup um there is these two kids one of them comes up and and says hi and he sees the other ones balloon and then he starts taking it off the wagon,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and and the other kid is yelling and then he accidentally lets go and the other kid is really mad so he sees a guy that is selling balloons and he asks if he could have a balloon and then the guy shows him that the balloons are five cents and he does not have five cents so he goes to his grandma and asks if he could have a balloon and she says yes so they both get a balloon,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 1 +one day a giraffe saw her friend the elephant playing with a ball gira the giraffe took the ball and threw it in the po in a pool nearby the elephant was scared the ball might sink so the giraffe went to get the ball the giraffe got the ball for the elephant and the elephant was happy then the elephant thanked the giraffe one day the giraffe and the elephant were at the pool the elephant said let us go off the diving board the elephant ran,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1,0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 +and so did the giraffe the elephant fell and and hurt her knee the lifeguard came and helped her he put a bandaid on the elephant while the giraffe watched the lifeguard told the elephant not to run in the pool or she might slip so the elephant sat down and did not run one day in the elephant and the giraffe were at the pool the giraffe had a a a little plane the giraffe played with the plane,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +he did loops and swirls and s things like that then the elephant took the plane and tried to play with it the elephant dropped the plane into the water the giraffe got furious and the ele and the elephant got scared then the lifeguard came the elephant told the lifeguard that she was playing with the plane but she dropped it in the pool the lifeguard tried to get it he said he could not reach it,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 1 +and the giraffe started crying then a woman came with a net she took the net and she took the net and took the plane out the boy was really happy and thanked the ele the woman the boy got his plane back and he was really happy and so was the elephant one day two rabbits were playing in the sandbox one rabbit was digging out some sand the other one was making a sandcastle,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +the rabbit poured the sand in the bucket on the sandcastle the rabbit got conf the rabbit poured on the sand and i can not make this one um uh just tell me what is happening the rabbit is like scared because then the other rabbit might get mad at him the dog or rabbit started to cry and the rabbit just stood there one day two friends met to go to a picnic one friend kept on eating and eating and got and keep kept on eating and eating and got really full by the time he finished he was really stuffed,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 +the other friend just drank some juice and some bread w when the other friend found the doctor who was in the park h he went to get him to see if there was anything wrong with her friend she begged the doctor to come so she did so the doctor came the doctor checked the rabbit and it seemed that he had a stomachache the doctor told the rabbit to not eat too much junk food so the rabbit did not get much of a stomachache one day a the rabbit met his friend the dog which had a wagon and a balloon the rabbit liked the balloon,0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +so he pointed to it the rabbit untied the balloon and the dog just stood there with surprise so and then the balloon flew away the dog got mad at the rabbit then the two s saw a man holding a bunch of balloons the rabbit asked for another balloon the man told him it was five cents but the rabbit did not have any money then the other friend came,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +the rabbit went to see his mom and s and the his friend watched him as he walked to his mom he told his mom he wanted a balloon the man gave two balloons to the to the two friends and the mom paid the money they the two friends thanked their the mom um let us play boys the ball went in the water i got to swim and get it i got another ball to swim with it,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 1 1 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and i am playing with it aaah i am all wet the end let us swim i am jumping in the water let us run ow are you okay and it hurts i need a bandaid,0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 1 0 0 1 1 0 0 1 0 0 1 0 0 0 1,0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 1 0 0 1 0 0 1 0 0 0 1 +it is still hurting i got to go to the doctor the end pigs do like this let us swim i am crying i found a airplane give me that airplane my airplane oh do not be angry at me,0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 1 0 1 0 0 0 0 0 0 1 +let us get it oh we got it i got it in right he getting out of the water no okay let us catch it i got it thank you my favourite airplane the end,0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 0 0 1 0 1 0 0 1 0 1,0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 1 1 0 0 0 1 0 0 1 0 1 0 0 1 0 1 +um you play in the sandpack you dig a you put the sand in the bucket and you dump it on the castle and then then um then then the castle broke and then the cried the end he is walking and then he says hi he eats his sandwich with a carrot and he drinks his juice,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 +and he cries um i am thirsty you stole it i said it you stole it i do not know that page should we try the next page he cries goodbye the end,0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 1 1 0 1,0 0 1 1 0 0 1 0 0 1 0 1 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 1 +um here is a balloon um i am running around my balloons do not take it off ah the balloon it is flying aw the balloon is broken there is a lots balloons lots of balloons i want a balloon i only have one oh there is a lot of balloons,0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,1 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 1 1 0 1 0 0 1 1 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 0 0 0 0 0 1 +ah i want some balloons where can we put the balloon but our balloon is broken let us have another balloon and we got two let us have it we got two that kind the dog the giraffe and the elephant,1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 +the elephant was playing basketball with the giraffe and then the do elephant throw the basketball in the water the giraffe tried to save the balloon ball and the giraffe said here you go here is the balloon ball and now the elephants have the ball a giraffe and a elephant was going swimming and the elephant said i am going on the diving board and then the elephant hurts her foot and she slipped,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and she break her foot and and then the giraffe came to save her and then the swimming teacher came and then the s s the swimming teacher give her a bandaid and the swimming teacher gave her a bandaid and then and then the elephant said thank you for the bandaid and the teacher said no running said oopsie the giraffe is playing wi with his helicopter eh eh and the elephant wa want to play with with it too,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 1 +and the giraffe played with his helicopter and then the elephant take it away from him and then the elephant drop it in the water and the elephant was mad the giraffe was mad and the swimming teacher was to to look at the helicopter and then and then this the the elephant said that the airplane is in the water and then the swimming teacher is trying to save the airplane in the water and the the the swimming teacher said i can not catch the airplane and then the an and then the giraffe was crying and then a a swimming eh elephant was came to to rescue the airplane,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 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 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 1 +and then and then she saved the airplane and she said here you go giraffe here is the airplane and and then the the giraffe was happy the bo the dog and and the and the bunny want to build a castle first the rabbit takes the sand in the bucket then and then the rabbit taked the sand the castle and the dog is s scared and then the ra the rabbit is scared be because the rabbit break the castle and then the dog tried to fix fix the castle,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 +the rabbit and the dog went f for a picnic and then the rabbit i is eating his her lunch and the dog is is is eating his lunch and and because the rabbit have too much lunch now rabbit have a tummyache but the dog do not and the dog only ha only have some lunch and the dog says huh the rabbit is have a tummyache and now because the dog did not eat too much only the rabbit did and the dog said mama,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 1 1 +and mommy but the rabbits mommy and he said this hey mommy here is a dog he said huh that is not my children and she said she said i do not know rabbit i am a doctor and now the rabbit has gone and the rabbit go home except the dog the dog has a a dragon,0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 +and the balloon is hold up the dragon and then the rabbit came with him and then and then the rabbit found the balloon and then the rabbit going to take it off and and and the rabbit take it off and and it float up to the sky and the rabbit and the dog try to catch it and now the dog is mad and it and the rabbit was scared and then and then the rabbit and the dog bought some more balloons,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the rabbit said how much that cost it cost five cents but the rabbit had no money and the rabbit and the dog said no money aw x a balloon then they said mommy come here can you buy us a balloon and sh and the mommy said which balloons the balloons,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 +and then the mom buy the balloons called a nickel and then then they had the balloons then the the the cat and the the bunny and the dog is happy one day a giraffe meets an elephant playing with a ball then the ball fell into a little pool the giraffe goes into the pool to go swim to the ball to get it the giraffe got the ball and gave it to the elephant the elephant is so happy to have the ball back the giraffe gets up on shore,0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +one day an elephant and a giraffe fou found a pool the elephant decided to go down the ladder it walks but it runs but it f was tripping it hurts its knee the giraffe comes running an elephant lifeguard came to the elephant and the giraffe it helped the elephant it gave the elephant a bandage and let it sit on a bench the elephant lifeguard told the elephant no running,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 1 +one day the elephant and the giraffe saw a pool then the giraffe saw an airplane zooming by the elephant grabs the airplane from the giraffe then the airplane sinks in the pool the giraffe is mad at the elephant the elephant lifeguard comes the elephant told the lifeguard what happened the lifeguard tries to get the airplane he can not get it the giraffe is crying,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1,0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 +and the elephant is sorry then another elephant came along with a fishing net she scoops the airplane out with the fishing net she gives the airplane to the giraffe the giraffe and the elephant is happy once there was a rabbit and it meets a little animal they both try to make a sandcastle together the rabbit pours sand on the sandcastle the sandcastle goes down,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 +the rabbit feels sorry for the other animal once there was a rabbit and it meets an animal and they both want to go on a picnic they together have a picnic at the same place the rabbit eats a lot of things and he is stuffed then he feels dizzy and sleepy the other animal tells the rabbits mom it tells her to come to the rabbit,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 +the other rabbit wakes up the little rabbit and they go home one day the rabbit saw an animal pulling its wagon with a balloon the rabbit s is watching the balloon the rabbit tries to untie the balloon off the wagon but it after it goes uh up in the air the other animal is mad at the rabbit then there is someone that is selling balloons and the rabbit is asking for some balloons he is looking in his pocket for money,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +but he does not have enough money so i and he sees his mom so he goes over to his mom he asks for some money to buy the balloons the mom gaves the man some money to buy two balloons they have two now the rabbit and the other ha animal has two balloons one one day um a little giraffe and um elephant they were playing with three balls and they were g they were going to go in the swimming pool so they got to the swimming pool with tickets and then they sawl a ba they saw their ball in the swimming pool,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 1 0 0 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 1 +so they got it and then the gira the giraffe tried to come and get the balloon um balloon that they had so they he got it and then they then they got their ball and their balloon and then they went and played with them and so the elephant said thank you and then the giraffe said you are welcome and they played together with their um with their balloon one day um they the giraffe and elephant wanted to go swimming and then the giraffe ran,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 1 +and he and he ran in the swimming pool with her bathing suit on and then she then she hurt herself on the knee is that on this picture um uh yeah can you just tell me the story that is on the picture and you tell me to turn if i am not turning it fast enough and then she slipped because there was water when she was running and then and then she hurt herself so the lifeguard came and got her a bandage for her knee and then they so then they um went to swim again,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 +and she was all better so but first she had to sit on the bench a little bit and then she was okay and the lifeguard said no run can not you see the sign there is no running here the end one day there is a one day there was a giraffe and a um elephant the giraffe had a airplane and he was playing with it and then he al and then the elephant wanted to play with it,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +so he na so um he did but then she took it away from the giraffe and then she dropped it in the water is that on this page or was that on the next page it was on that page oh okay so then it sank in and then the life then the lifeguard got mad so then the giraffe tell me should i be turning yet,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +then the giraffe got mad at the elephant and she said she was sorry so she got her mom to catch the lifeguard is that what is on this page so the lifeguard could not reach it so she got her mom to reach it with a net and then the lifeguard she he came back to say sorry to the elephant because he he got mad at the elephant and then her mom catched it with um the thing and then the lifeguard he tried to get it again but her mom could not,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and the lifeguard could not so she got a big big net and she catched it is that on this page yeah remember i can not see so i just want you to tell the story that is on the page and then all the lifeguards and then the mom had a real long net so she grabbed it and she catched it and the giraffe said thank you,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 +and then she said you are welcome and then the they were both happy again and they played with it the end one day a lit a bunny rabbit went to the beach and she saw a p and he saw a puppy and she was making a sandcastle and then the bunny said can i help and the puppy said okay then they build a sandcastle,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 1 +and the bunny got a bucket and she and then he got a shovel and he put it and he put sand in the bucket to make a sandcastle and the and the puppy was making the sss um a water hole and then the and then the rabbit wrecked it because he put all of all of sand on it and it pushed it down and the w puppy was very sad and then the and the puppy tried to build it again but it did not work and the rabbit was just he did not say sorry or anything,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +one day the puppy and the rabbit came for a picnic in a forest and then uh the rabbit ate too much and he got sick and was too full so the so the puppy dog went to get some help and then she but she did not find anyone yet until he s until she saw that the rabbit was sick and and then she got a nur she got a doctor that was walking by and then she took the rabbit and and took the stomach away ache and then the bunny and the r um bunny was still sick so the puppy he um she pulled on the doctor and then the doctor went on the picnic thing,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and the s and he was really sick so the puppy went away because the doctor said he needs to be alone for a while and the end oh just a second i missed one did not i yeah and the it was after he needs to be alone for a while and then and then um the puppy came back and he was all better but he had to go lie in bed one day the bunny went he he one day the bunny went to the forest,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 1 0 1 0 0 0 0 0 1 +and he and on the way there he saw a puppy and then they and then they saw a clown with balloons and so they asked bunnys mom if they could have some money for a balloon and she said yes so then they got a balloon and then they then their balloon uh there was a balloon tied onto puppys wagon and it fell away it flew away so then um tell me when to turn and then it and then it went and it disappeared up in the air,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and puppy was mad at at bunny and then and then they saw a clown a bunny with balloons a clown bunny with balloons so they asked bunny so they asked bunnys mom if they could have some money and then they bought a balloon with their money and puppy was very happy and they both got two balloons and then puppy ran over there to get a balloon but bunny had no money so she had to go to um the mom to get his money and then after that they got some money,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 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 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and they gave it to the clown bunny and then they got two balloons one yellow and one red and then but first they had to get the money from the doctor that fixed that helped bunny and then so they got two balloons ye yellow and blue and then they got one for the doctor red and then i do not know you are not sure on this one nothing to say on this one okay we will just turn then and then they bought the balloons,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 +and then they and then they got two balloons and then they were happy and they played with them and then they played with them and played the end once there was a giraffe who was standing by a pool and a elephant said came with a swimsuit on and said you want to play fetch but they were not so sure about playing near the pool just then when the elephant blew it with her trunk it fell in the pool the giraffe jumped in and swam to get the balloon the ball,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 +the giraffe came back with it in a minute and said and the gira and the elephant said oh you you got my balloon ball thank you sometimes i get mixed up with the words the giraffe felt pleased that he that he got the ball for the for her friend but the elephant just sta just stood there and smiled the end the giraffe and the elephant went to the pool because it was a hot summer day they were they looked at the pool and they were excited,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 +but the elephant said hey i am going to go off the diving board but she did not read the sign which said no running so she ran anyway just then the el the giraffe was catching up with her when she slipped and fell on her knee she got a cut on her knee and the giraffe went to get someone a lifeguard came as quickly as possible and helped the elephant the elephant thought it was going to sting but it did not they they put on the bandage,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 +and it was and it looked good as new the lifeguard was disappointed and the girl stood sat on the bench and said hi and the lifeguard was pointing at the no running sign the end the giraffe and the elephant went to play by the pool and the giraffe got a new toy plane and said you want to play with me the elephant said sure the giraffe flew the plane first but the elephant was so excited she just grabbed it out of her hands,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 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 1 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +the giraffe said my plane give it back i was not done my turn but the elephant did not care she was just flying it around just then she flew it too high and it fell in the pool and it started to sink the giraffe was mad at the elephant but the elephant just stood there puzzled the lifeguard came right by the two girls,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 +and one of the girls said one of the elephants said i can explain i i did not do it it was the giraffe just then g g the giraffe said she is lying it was her then it came like it was a big argument so the lifeguard said cool it who dropped it in the pool and the giraffe was pointing at the elephant the lifeguard tried to get catch it,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1 1 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +but it was floating in the pool the giraffe started to cry when the lifeguard said he could not reach it and the elephant felt sorry just then a lady elephant came with a net she quickly got the plane with the net and it came and she pulled it f to her she said here you go is this your airplane and the giraffe said yes thank you very much the giraffe hugged her plane,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 1 0 1 0 1 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 1 +but the elephant was happy the end one day at the park there was a baby dog who was making a sandcastle just then a bunny came along and said can i help you the dog said sure they wanted to help build a the biggest sandcastle in the world so the rabbit was going to build it so he got some sand in a pail and started digging just then he decided that a shovel was not so slow after all so he decided to dump it on the castle,0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 +so he did but when he realized he had wrecked it he was so embarrassed the dog started to cry and rebuild the sandcastle but the rabbit just stood there and looked like he did nothing the end there there once was a dog who was going on a picnic in the park and then he saw a rabbit so he they decided to go together when the om when they unpacked the lunch the rabbit was so hungry s the rabbit was so hungry,0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 +but the dog was not so the rabbit ate all the stuff when the dog was eating the bunny had already finished the bunny had a terrible stomachache while the dog was eating the dog just stood there puzzled and said are you okay and the rabbit said no i feel like i am going to hurl just then the dog ran to the doc doctor who was standing right by the path she said excuse me could you help my friend here he has a stomachache so but the doctor said no,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 +she had a patient who was waiting for her but the dog really needed her so she took the doctor and dragged them to the picnic the doctor said i will take your temperature now and you will feel much better just then the bunny f got up and he felt queasy then the doctor and the bunny went home they walked together back home the end,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1,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 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 1 0 1 +there once was a dog who was pulling a wagon with a balloon tied to it then he saw the bunny then they wanted to play with the balloon the bunny wanted to touch the balloon because he thought it was cool but the dog did not really want him to so the rabbit just then the rabbit did not care about what the dog said so the rabbit untied the balloon and the dog was ss was a lit was beginning to get a little fed up just then the balloon floated away and they were trying to catch it,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +but they were too short the dog was so angry at the rabbit the rabbit just stared at the balloon and he felt like he was getting a little scared because the dog was mad just then they saw a balloon seller who had tons of balloons and he just stood there so the dog and the rabbit decided to go buy a new one the rabbit said may i have a balloon please for my friend over there the man said sure but you will have to pay for that for the balloon the rabbit looked through his pockets,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 +just then it said a sign said balloons five cents and he did not have five cents he and the ra the rabbit and the dog looked at the balloon seller they told him that they did not have five cents just then the bunny went to the went to a lady who was standing nearby and he said excuse me do you have five cents because i need to buy a balloon for a friend the rabbit looked puzzled the lady rabbit gave five cents for two balloons and the bunny and the dog were jumping up and down in excitement then they both got balloons,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and they hugged and they loved them real much the end this is this story is called the ball one day this little girl was playing with a ball and a lifeguard was playing with it too and so when she was playing with the ball she accidentally dropped it in the pool and then the lifeguard went in the water and swam and got the balloon and got the ball and when he did she was so happy and then she um she asked him if he wants to play with her again the end,0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 +this story is called the scratch one day a little girl was going swimming and she was running to the board and when she did she slipped and she and when she slipped she got a cut on her knee and then the lifegua and then another lifeguard came running and said are you okay and then he put a bandaid on and then he put him on put her on the bench and she would not be able she was not able to swim but then the lifeguard was really mad because he she should have seen the the sign no running,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 1 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 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 +the end this story is called the airplane one day this little boy and this little girl were playing with an air airplane the girl asked can i play with it now and he said okay and then it and then she accidentally dropped it in the water when she did the little boy got all mad and then she went up to the lifeguard and asked the lifeguard if he could get the airplane and when he said okay i will try he tried but he could not reach it,0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then he and then the little boy was crying but then the girl lifeguard came and she got a net then she tried to get it and she did and then the little boy was so happy and then the little girl said i am sorry for for wrecking your toy the end this story is called um the castle that breaks one day there is there is a little girl and a little boy who is playing in the sand,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the little girl builded a castle and the little boy dumped a bucket he did not mean to dump the bucket oh on the castle and then when he did the girl got all mad sad and she was crying and the bunny said sorry this story is called the picnic one day a little a doggy and a dog and a rabbit was eating was having a picnic and the rabbit ate too much so he got sick,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 1 0 0 0 0 0 1 0 1 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 1 +and then the poochy ran over to a doctor near by the pooch said help help a little boy is sick so the doctor checked the boy and said he was si he had to go home and then he felt better this story is called the puppy who had two balloons one day a pup his uh somebodys friend came over to check his balloon out and when he did he tied the rope off the the wagon and when he did the ba balloon got away and then the puppy is all mad,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and then the rabbit saw some more balloons and he asked some for a balloon but the guy said balloons are five cents and the bunny did not have any money so so the bunny said um well i accidentally lost one that my friends balloon and so he and then the balloon man said no you still need to pay five cents so then the bunny went over to an adult to ask for five cents and when he did ask she said okay and then she paid him five cents and then the boy the girl got his her balloon a another balloon back,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 +and then she was all happy the end once upon a time there was a giraffe and a elephant playing around the pool and one of they were playing with a ball and it f it fell in the water and the giraffe swam to the balloon the ball and then he swam back to the elephant and gave it back to her and she was very happy that he got it for the elephant the end once upon a time there was a giraffe and a elephant around the pool,0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the elephant wanted to jump off the j the the tr um the um wanted to jump in the pool and sh when she was running to it she slipped and she fell she got a scra a scratch on her knee and the giraffe ran to the lifeguard and he got a bandaid and they they he put it on her knee and and he sent her to the the bench and and he show her no running sign the end,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 +one there was two friends an elephant and a giraffe the giraffe had a toy that it was a airplane he was playing around with it and a elephant wanted to play with it too and elephant took it from the giraffe and p played around with it and she dropped it into the pool and she she was very sad and the giraffe was very angry at her the lifeguard ran uh came to the elephant and the giraffe and the the el the lifeguard the elephant said that i by accident i threw the giraffes airplane inside the water,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and the lifeguard was trying to get it but it was too far and he said i can not do anything and the giraffe started to cry a net catcher came to the hopeless giraffe and she had a net in her hand and she got the airplane by her net and the giraffe stopped crying and the lady gave it to the giraffe and he is very he was very happy,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 1 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 0 0 1 0 0 0 1 +the end once upon a time there was a little dog that made a castle and a a rabbit he came a along and wanted to help him and then he he dump he dumped some sand inside a bucket and the and he scooped some up and then he dumped it on there on the castle and then and it got covered and and then it really did not do it was was a cloud of sand and the dog was building it again the end,0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1,0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 +there was two friends that were walking along for a picnic and the ra the fr one of the friends had a lot of f food than the other friend and then he ate all of it and and he got really stuffed and then he he was very sick and his stomach was really hurting and one of the friends called the doctor and the dog called her the the doctor to help and the doctor said do not eat a lot of food and he went home,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and he had some rest the end once upon a time there was a two friends walking along with their wagon and one of the friends said this is a nice wagon and a nice balloon you have on it he tied it off and he and he wanted to hold it and then the balloon fell flew away and then they were re one of the friends balloon was very disappointed and one of the friends saw a a man selling balloons so he ran over there,0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he he got one from the man can i have one of those balloons he said but it was actually five cents to buy the one of the balloons it w he was really sad that he lost one of the friend his friend balloon he asked a person by if sh they had five cents and he he pointed to the balloons and he said there is only balloons for five cents and i have no money and she she bought two for each of the the friends and they said thank you thank you for the balloons,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 +the end there is an elephant and a giraffe bouncing a ball having fun with the ball and the ball goes into the water gets bounced into the water the giraffe goes to get it he is really wet he gives it to the elephant and the elephant the elephant is holding it and the giraffe is smiling quite a lot the giraffe and the elephant are looking to the water and the gira the elephant sees a diving board,0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 +the elephant is running and slips on the pavement on the deck and scrapes her knee the giraffe came over and the lifeguard came over and looked at it and bandaged it up and the elephant sat on a bench and the the lifeguard pointed at the no running sign the giraffe and the elephant are playing with a airplane toy airplane the giraffe is making it go really high the elephant grabs it away and starts playing with it it goes in the water the giraffe is really mad at the elephant,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 +and the lifeguard sees the toy in the water and looks mad and the lifeguard and the el other elephant are talking and the lifeguard tries to reach the airplane but he can not the lifeguard is kind of shrugging his shoulders thinking what can i do and then another person comes with a net and gets it out for them and the giraffe is really really happy and the giraffe is hugging his toy the bunny and something else are playing i think it is a dog that are playing with sand,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and the bunny put is getting some sand out of a pail he dumps sand on a sandcastle then the sandcastle is all wrecked the bunny feels really bad and i think it is the dog that is crying the bunny and the dog i think are going for a picnic the dog and the the bunny is eating too much he has maybe twenty things he is eating lots and the bunny is really full,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and the dog is just eating his sandwich and drinking juice box and the bunny is feeling dizzy and the dog thinks oh i should go get some help so he runs to a doctor walking down the road and pulls the doctor over to her friend and the doctor checks her friend out and takes her the dogs friend home the rabbit there is the dog and the bunny the bunny is coming down the road jogging he and the dog has a wagon with a balloon tied to it the bunny grabs the balloon and the dog is kind of fine with it,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the dog kind of freaks out starts freaking out and the bunny and the dog tried to grab it but they can not because it is floating up into the air and the dog is really mad at the bunny then the do the bunny goes to the balloon man he asks for a balloon he says five cents for a balloon and the bunny has no money so the the little bunny looks at the balloon man very innocently and then goes to his the doctor his dad and i just see him going to his dad or the doctor,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 diff --git a/benchmark_result/segmentation/SaT_cunit_3l_r32a64_results.csv b/benchmark_result/segmentation/SaT_cunit_3l_r32a64_results.csv new file mode 100644 index 0000000000000000000000000000000000000000..e57efa479ac587f2863eb60593423b53589de174 --- /dev/null +++ b/benchmark_result/segmentation/SaT_cunit_3l_r32a64_results.csv @@ -0,0 +1,624 @@ +word_sequence,gt_label_sequence,predict_label_sequence +once a horse met elephant and then they saw a ball in a pool and then the horse tried to swim and get the ball and the then the elephant gave him the ball and then the horse was wet and the elephant was holding the ball the end they might be the same oh well you start it off any way you want okay,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 1 1 +once a horse and this this was a horse and saw saw that that i just talked about but the ball was not in there okay and then the elephant wanted to go in i mean not and then he his feet went like this then he hurt his knee cap and then the horse helped him then there was another elephant and he was a lifeguard and then i do not know what they did,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +but they are doing something what do you think they are doing well how you look at the picture cause i do not know oh it does not matter what do you think is happening i think they are battling okay and then they sat on the bench and then the lifeguard was mad okay,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 1,0 0 0 0 1 0 0 0 1 0 0 1 1 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 +and are you pointing at something i am i am just i am just x okay are you all done yes okay the end once that horse and elephant was happy near the swimming pool oh and then the horse had an airplane to play with a which had ss ah something coming down the bottom okay,1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1,0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 1 +and the elephant went like this then he tried it and the horse went like this then they put it in the water and then the elephant went like this and then the horse was mad and then the lifeguard went like this then the elephant talked to him a little bit and then the lifeguard tried to get it but he could not,0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the horse cried an and then a elephant with a net came and she caught it and then she gave it back to the horse and then the horse went like this what does that mean they love it oh good and the end once two rabbits made a sandcastle,0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 0 0 1 +and it was a great one and then one did this with a and one took some s and the other one took some sand from a a pail because they were down at the beach and then he dumped it on the castle and then it tur part of it stayed the way it was but the rest turned into just a lump and then they tried to do it but it was not very good that time the end we saw two rabbits had baskets and were in part of the forest,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,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 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 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +or we can call it the woods yeah we can then they had a picnic then one of them belly got this big how big about this big wow and then in the picture there is a twirl around on his head and then a bigger bunny came up and they run to that bunny,0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 +and then he falled asleep and then he did this why did he do that i do not know okay and then he was happy he was happy yes okay the end,0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 1 0 0 1 1 1 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 1 0 0 1 0 1 0 1 +once that little bunny was pulling a wagon and that other fat bunny came up and then he liked the balloon and then he tried to get off and then he got it off but they lost the grip and it was helium and then another man came with a bunch of balloons but x but then they he went to them and he said that it the balloons were five cents,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,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 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and he could not find five cents and then they were sad then they went back to that out by the we found that other story and he said i want one of those balloons he gave him five cents and then they gave him a balloon and they gave him to them to who to them oh,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 1 1,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 +and then they both have one the end the el the um the little elephant is playing with her bouncy ball and the gi and the giraffe comes to meet her suddenly the ball falls in a f pool beside them the the giraffe goes and swims for it and the giraffe is so kind and brings back the ball the elephant is so happy the elephant and the giraffe meet at the pool and look at the diving board the the elephant goes to run for it,0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +but there is a sign above her head that says no running she slips and falls she she scrapes her knee and and can not swim a lifeguard comes to see what happened to her knee the and he put a bandaid on it he sets her down on a bench so it will it will it will heal and the lifeguard points to the sign that says no running the ele the elephant and giraffe are swimming together the giraffe finds a plane and starts to show it to the elephant the giraffe um the elephant grabs from it from the giraffe and swims away,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 1 +suddenly she dropped it the giraffe gets very mad and can not hold in his anger the lifeg lifeguard comes and sees what has happened the elephant starts to complain that that it was not her fault and the lifeguard tries to get the plane but no one can reach it so a lady with a net comes and pulls it out she is very kind thinks everyone and the giraffe gets his plane back everyone is very happy,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 1 +um a bunny and a dog were mak were making sandcastles in the sand uh sand bin um the bu the bunny um he he got a bucket and started to build a better castle suddenly he dumped all the sand on the uh the bi the other castle and everyone was disappointed the o the dog was was so sad she started to cry the dog mee meets the bunny um for a picnic they they have a picnic together except the bunny is kind of piggish he eats all the food really fast while the other one eats very slow and politely the rabbit feels very sick after his big meal the doctor has to come and help the the s sick rabbit,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 1 0 0 1 1 +the dog pulls her her over to the um to see if he is conscious the doctor says she ha he has a fever and he ate too much soon he feels better again the the the dog is has a balloon on her wagon and the bunny comes to meet her the bunny notices the nice um shiny balloon he the bunny tries to untie the balloon but the dog um the dog gets nervous and it floats away,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 +the dog gets very very mad at the bunny but when they turn around they see another man with twenty more balloons the rabbit buys one to make um but he does not have enough money for one balloon the man tells them they could ha they could get a free one and the nurse says no actually i will buy you one and she goes and buys one this makes both the bunny and the dog very happy now they both have one balloon they going at the swimming pool,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 1 +they putting it the ball in the swimming pool and he is trying to get it he got it she is happy the end they were dr they dry themselves dry themselves and the girl is going into the swimming pool she is dancing she is crying she gots a help from her friend,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 1 +put a bandage on it now sh she can go on the swimming pool she is sitting the end she is talking the boy is playing with his airplane she grab it away from him the airplane is in the swimming pool and the boy got angry and the k the man comes by them,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +what did you say the man comes side them and the girl is talking the man was trying to get it the man can not get it woman tried to get it she gots it the boy is happy now the boy and the girl is happy now the end,0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 1 0 1 +the boy is talking to the dog and they are making a castle and the boy putting the sandcastle and the girl is so happy not the boy he is sorry for it he is what sorry and the end they are looking for easter eggs,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 1 1 +and they are eating he eat the whole thing he got hiccups there is his father and he have to help him and he gots a headache he is going and the end the boy is running and the boy is talking,0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 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 1 +and the boy is taking off the balloon the balloon is floating away and the girl went angry and there is lots of ball sh the girl is pushing the boy gots no money the man is happy the dad is here again and the man is not giving thm them balloon the man give the rat balloon rabbit a ba balloon,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 1 0 1 1 +and they can have one and the end she is playing with a ball then it drops in the water the cow s wants to get it and then the cow gives it back to the elephant and she likes it and the end um something is sinking something is sinking and the elephant is going to get it,0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 1 0 0 1 0 0 0 0 0 0 0 1 +and she trips and she falls and hurts her knee and the lifeguard comes and she gets a bandaid on it and she she sits on a bench the lifeguard tells her not to do it again elephant is excited to see what the giraffe has and then he tries to throw it up into the air and then the elephant grabs it away and then it sinks into the water,0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +then the giraffe gets mad at her and the lifeguard gets mad at the gir at the elephant and he explai he tries to explain what happened and the lifeguard um tries to get it then they can not get it and then a woman comes up with a net and she gets it out and she gives it back to the giraffe and then he hugs it the end,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +um the bunny and the baby elephant are building a sandcastle and then the bunny is filling up a pail with sand um then he is stuffing it on the sandcastle and then it is ruined then one of them is sad that is it they are going on a picnic they are the bunny is eating lots of stuff he is getting full and he has a stomachache,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then one of them sees his mom rabbits mom and he tries to get her to get to get to get rabbit and she wakes him up and they go home ah that was a good one he is taking a balloon somewhere his friend is coming up to him and he and his friend likes the balloon and then his friend tries to untwist it then it goes away,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1,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 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 +and he is sad and then she is angry with rabbit and then there is a new ba balloon sale and he wants one and he gives it to him and then he wants another one and then mother is here he comes up to her and he tells her that there is balloons and she will and she is giving him money,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then they both have one a balloon that is it the end there were two animals an elephant and a giraffe who wanted to play in a pool and the w there they were playing with a ball and it fell into the pool and they wanted to sw swim and get it and they thought it was fun one of them he fell he went into the water and tried to swim to the ball but the ball was floating away from him,0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the elephant and uh then the giraffe got the ball for the elephant and then the elephant was started playing with the ball again and they uh and they still wanted to play with it so they still played together the end there was a no running sign and they still wanted to play in the pool and th they were running away and then and then sh the giraffe started chasing the elephant and the elephant slipped,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 1 0 1 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 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and then it hurt itself and the elephant was crying and the giraffe said are you okay and then the lifeguard came and said are you all right and the elephant got a bandaid and sat on the chair and he and the lifeguard was trying the elephant was trying to get off the bandaid and the lifeguard wa said keep it on the end the giraffe and the elephant came back to the pool with the airplane the giraffe was playing with it and tried not to drop it into the pool,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the elephant was so into it he the elephant w was kept staring at it the the giraffe said hey when the elephant took the plane away and the elephant started playing with it and the elephant accidentally dropped it into the pool and the giraffe was kind of mad and then he was so mad that he growled at the elephant and the elephant was scared scared and the li and the elephant called the lifeguard to come and try to get the airplane and they looked like they tried,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and after that and af and then after that he he was trying to get the plane but he did not so the ele so the elephant did not know what to do and the giraffe was crying and the elephant decided i will have an idea and the elephant went to get a net and then he used it to get the plane and got the plane for the giraffe the end and the giraffe was really happy the end,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 1 +there was a rabbit and a dog they were making a sandcastle and then the dog and the rabbit made the sandcastle and the dog was sitting into the sandbox and said hey rabbit we made it we made it and the and the rabbit was helping the dog make it more bigger and it and he put too much on and made it fall right down on it and then it al almost then it broke and then it was totally broken at the end of it by the end the end,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 +um there once was a dog and a rabbit they wanted to go on a picnich picnic instead of making a sandcastle in the park rabbit wanted to have the most stuff so he took out h all of his stuff and started his stuff and the dog wanted to eat just this couple of stuff and the rabbit was totally full and he he was almost having a tummyache and then he fell down and he had a big tummyache and the dog ran to get his mom and to help,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the dog begged his mom to do it so the mom came and helped and he was okay the end instead of going to for a picnic and and going into the park and making a sandcastle they got a balloon and they were playing with a balloon and they tied it onto their wagon they were driving it around and the rabbit wanted to take it off and the rabbit was trying to take it off,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then he made it fly away and the rabbit did not know what to do and the dog was very mad and then they saw more balloons and wanted to get uh the dog was still mad and the rabbit was going to get another one for the dog and the balloons were five cents and he could not get it because he did not have any money and the dog was wanted to get one too and he tried to get one and the dog was waiting for the rabbit to get some money from its mom,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 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 1 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 1 +and it asked the mom if he could have some money to buy the balloon and he got five cents and got a balloon for the kids and they got to play all they want with the balloons the end there was a giraffe and and a a girl elephant they were playing ball by the street on the sidewalk by the swimming pool and then they dropped the ball into the pool they could not ge could not get it but giraffe dived in and k was was swimming but elephant was covering her eyes,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,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 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +then he got it and gave it to her she was amazed then he was soaking wet and she hugged the ball and he looked like a genius there they were again by the pool and there was a sign by uh the diving board and it said no running so they looked at the pool amazed for some reason then elephant said i want to go on the diving board,0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 1 0 0 0 0 0 0 0 1 +and she ran to it she ran to it and she slipped and giraffe did too and she scraped her knee ouch she had xs in her eyes stars in her eyes she was crying the lifeguard came and it was an elephant,0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 1 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 1 0 0 0 0 1 +no running in the f in the no running by the side of the pool he said the lifeguard and he put a bandaid on it she still had stars in her eyes and then at least giraffe did not fall and then it felt much better see no running in the pool he said the lifeguard did not you see that sign no running he was mad there was elephant with giraffe again by the pool again,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 0 1 0 1 0 1 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 1 1 +they found a plane with string at the back and she had swirls in her eyes the elephant and the giraffe was spitting out spit then she caught it he was really he was like huh splash it landed in the pool oh no they said and then giraffe was very mad it was just about to sink and elephant was going,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 1 0 0 0 1 1 0 0 0 0 1 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +then the lifeguard came again and he had his hands on his hips and and the airplane was still there but it was not sinking then it was almost going down they explained to mister elephant mister elephant you see i grabbed it and i dropped it by accident in the water when giraffe was playing with it he bendednd over and he tried to he was he was um growling,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 +he could not even get it he could not even get it and then giraffe just uh started just started to cry and then miss elephant came along she had a net and she got she had a net and she looked surprised she fished it out with the net and the and then giraffe started stopped crying the lifeguard stopped um um worrying,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 1 1 1 1 +so did the elephant and gave and then with amazement she gave it to giraffe he hugged his airplane he was happy and the elephant was happy too there is a bunny and a dog were playing in the sandbox and making a sandcastle the bu the bunny was getting the sand from the bucket and the dog was making the sandcastle but he the rabbit poured all the sand on it and the dog looked um fri um surprised,0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 1 +the sandcastle was broke the bunny had his mouth open but the dog did not the dog was crying but the bunny was just nervous here is the doggy and the rabbit again um they are going for a picnic with their basks baskets in the woods the bunny was really thirsty but the dog was not he looked at him surprised,0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 +there was a cake cheese and a basket and and the basket poured and a carrot the dog the bunny ate all his stuff there was an apple it was all done there was a cheese was all eaten the carrot was all eaten but the dog was still eating her sandwich and her juice drinking her juice then the the bunny had a tummyache but the dog was looking at the bunny surprised missus bunny came,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 1 +and wa and she was walking along and then the dog ran to her to doctor he was still ha he still had a tummyache and the dog was pulling her her sleeve and she looked surprised the doctor the doctor was said he has a tummyache from eating too much and he had to look uh with his tongue with a stick then she walked along with rabbit he and they went together and the dog was only left with the picnic,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +well the dog was going with a balloon on her um wagon wheel and the bunny ran to her it looked like he was jogging the bunny was surprised she had a balloon and there was there was the doggy she did not look so happy but then she screamed because the bunny was taking the balloon away from her and then he let go of the balloon it flew up and he they both yelled come back,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 1 0 0 1 0 1 +then the balloon drifted away the bunny had his ears down but the dog was very mean bad mean mad there was mister rabbit carrying some balloons they found him again with and a b by a bench and a garbage can the rabbit ran up to him and said may i please have a blue balloon s he said five dollars first he he pulled out his pockets but there was no money the dog was rushing to the bunny,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 1 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 +then they looked at the mister bunny with a grin h they could not buy another balloon then missus rabbit the doctor rabbit and then was standing there and then little rabbit went to go ask her something can you bo please buy us a balloon said rabbit and then she looked at him amazed because it is for five bucks only said f the mis mister bunny then she paid five bucks and they got two balloons ten bucks and they both had their balloons,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 1 0 1 1 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and they lived happily ever after first there is a lady who is bounce a ball under the giraffe it went right beside they are working at a centre she bounced it into the wall the giraffe and the elephant are looking at it the giraffe goes and swims and get the and gets the ball then the elephant takes it he then the giraffe gets out of the water first the elephant and the giraffe see the diving board then the elephant sees it,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +then she goes to go on it she went running too fast and she fell and she bruised her knee the giraffe went down and comed to see her then and then the elephant that was a lifeguard comed to see it too the eleph the the lifeguard put a bandaid on the bruise they had to sit on the bench for awhile and they talked not allowed to they talked about they are not allowed to run okay,0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 1 +now she knows it is that it because he saw the sign because he showed him the sign because he showed her the sign now no running the giraffe and the elephant got together and the giraffe got a airplane the giraffe is putting it up high and pretending it is going then the elephant takes it and she tries to do it too but the elephant throwed it in the water,0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +the giraffe gets angry then there is a lifeguard coming along the elephant is explaining what happened the lifeguard tries to get it but she can not get it so so the giraffe starts crying then comes and then comes a lady with a net then she gets it out of the water then she gives it to the giraffe now the giraffe is hugging the airplane,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 1 0 1 +first the rabbit sees the puppy playing in the sand he wants the rabbit sees the puppy playing in the sand and he wants to play they builded a sandcastle the rabbit filled up a bucket of sand the rabbit dumped it on the castle then the rabbit said oh no then the puppy was trying to get it off one time the puppy saw the rabbit coming with a basket and the girl had a basket the rabbit had piles of food,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +the lady did not she saw the rabbit eating so much the rabbit got really fat she was he was starting to feel dizzy he called the doctor and he got the lady the lady told the doctor to help him the doctor said you are eating too much food too fast so he takes the bunny the the dog sees the bunny coming along and the girl has a wagon with the balloon hooked on it,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +the bunny the bunny looks at it then the bunny takes it off then the bunny accidentally let it go and it going too high and they can not reach it the the dog is getting mad at the bunny they see another balloon holder so the bunny says can we have one of those balloons but none cash and it costs five dollars,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1,0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +uh they explained what happened to the balloon then they go running to go get somebody can you say that louder they went to go get somebody he is explaining about the balloon man and and we do not have enough money so she buyed two balloons and now they both got a balloon once upon a time they were playing basketball then then the boy came named giraffe,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 +the ball got stuck in the pond then he went back home then it fell back in the water and he gave the cow a nnn new then he went out of the water the end there was a girl named elephant and the giraffe went swim again the lake and then they just ran ahead then they jumped into the water,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and then they hurt her knee then they could not give a bandage and he just put on a bandage for her then it feel then they went swimming for a next time then he got mad the end once upon a time a a boy me met a girl and he was going to fly his airplane then he flew it and then then he let go of it,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +and then she grabbed it from him and it was hers and he throwed it in the water and then he got mad at her then he got mad and he need to do something and they could not reach it so they they got a net and it was there for a long time and he got a net,0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 1 +then he got it then he just tried to get it then he just got it then he just give it to the boy who had it and x the end he went and he met a girl going to the the playground and she made a ca sandcastle trying making one like hers,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then it broke then they got very angry but they needed to make it all over again the end there was a boy named bunnyhead then he went to to have a picnic and met another guy with a picnic basket and they had a picnic before it it it got night time then they had two boxes of sandwiches and then they got full then they went then they then they went full,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 +and they get more and more then came the mommmy then the then the doctor then they ran up to her then they bumped into her and she took a temperature and she was sick and she needed to take her to a hospital the end once upon a time there was a boy and went um uh what um giving him wagon a walk,0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 +then they then they got put it on a balloon and that was good then he tighten it on very good and he gave it to the girl then then it flew away then there was no way then he was ba angry then he met a balloon guy and he bought her one and buyed a new balloon so so they c so there could be one on the wagon then he gave us one before he flew away,0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and thank you and then it went she sawed the doctor again and a little girl can you buy us a balloon and they gave him money then then he gave them balloons then they then they both had one good the end once a elephant was walking over to a giraffe with a backpack full of three balls then the balls sank into the water and floated away,0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +they tried to catch it but they nearly fell into the water they fell into the water and tried to float he tried to float to the balloon the ball but it wa but it but the ball was too fast then the elephant caught the ball and pulled giraffe out of the water then he was soaking wet then they walked home once gira giraffe and elephant were so excited they wanted to go into the pool,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +they walked over to the stairs and then they walked over to the board and then they jumped in then elephant jumped in and then elephant slipped and slide and then he fell into the water head first he did not realize that that he had no bandaid on his owie and it hurted and hurted and hurted and hurted uh momma bear poppa bear walked over to him are you okay,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 1 1 +no replied sister bear then they were so excited they are they v poppa bear gave him poppa elephant gave sister elephant a bandaid then it felt much better now they were ready to play in the water but then suddenly the poppa bear said you stay there do not go with the giraffe once elephant and giraffe were walking to the pool again giraffe brought an airplane and then he elephant flied it but then it sank into the water,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 1 0 1 0 0 0 0 1 0 1 1 1 0 0 0 1 1 0 1 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +you said elephant you get that airplane out of the water but i can not cried elephant now it sank into the pool it sank into the pool nearly all the way poppa bear said get that airplane i can not said poppa bear said to the giraffe poppa bear tried to reach it but it was too far oh now we will never get it cried poppa bear and sister bear hold it said hold it said giraffe i got something,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1,0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 1 1 0 0 1 0 0 1 1 0 0 1 +i have an idea he he got his momma bear got the net and then he tried he got it then he tried to get it and at last he got it and then it was soaking wet that he had to waited till it was dry now it was dry and he could fly it but not into the water any more once two bunnies were playing in the sandbox one bunny build a sandcastle,0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,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 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 1 0 0 0 1 +and one digged sand to put in his bucket he poured it onto the castle and then it all broke and then it all fell and then the uh the bunny had to build it again once two bunnies were going out for a picnic ss one ate a carrot and some hot dogs then he was all full and then the second bunny drank juice and ate his sandwich and then the sandwich taste yucky,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 +and then they went home to their mom the mom said the mom said please take care of your little brother and they took care of each other then the the sister bunny and the momma baby all they walked home together once a ba a bunny was bringing uh a wagon with a balloon attached to a wheel and then the the bunny was so excited that he looked at the balloon and then he tried to put the balloon off the wheel but it was stuck and then it flew up they tried to catch it,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 1 0 0 0 0 1 +but it was floating away up into the air and then it nearly disappeared and then they got so mad they had to get a different one they had to get a new one so they walked over to mister balloon and said can i have one a new balloon the bunny asked and then he gave him the nice five balloon and then he did not gi give him them one and then all of sudden brother bear brother bunny and sister bunny saw their mom and they w then they walked over the river skated over to the river and out at the river she saw their mom,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 +and then mommy mister balloon will not give us give us a balloon and then then h then momma bunny walked over to mister balloon and said can you please give them a balloon she asked certainly replied mister balloon and then they had two balloons for themselves two friends were playing with a ball the ball went in the water the guy tried to get the ball then she uh the boy passed the the ball to the elephant and then they the boy was in love with her,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +two friends were going for a swim and the elephant wanted to dive she tripped and and hurt her knee the lifeguard came and put a bandaid on her and she was curious and the lifeguard showed her the sign of no running the giraffe brought a airplane he was playing with it and the elephant was getting bored then the elephant took it away from the giraffe and started to play with it,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +she accidentally dropped it in the water the person was very mad at her the lifeguard came and the elephant explained to the lifeguard he tried to reach it but he could not the life the the boy was crying then somebody came in with a net and reached it and got it out and passed it to the giraffe and he was happy and so was the elephant,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +one day uh a bunny went to the park with his friend she was making his sandcastle with her he dumped it all over her sandcastle and it uh and it blew up and she was crying and he did not and he did not even say anything uh two friends went for a picnic uh the one friend ate everything he was very full he got a stomachache,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1,0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 1 0 0 0 1 +the little girl ran to the nurse and pulled her over to the boy and she said merry christmas and they lived happily ever after two friends went to the park and the girl had a balloon uh the boy wanted to hold the balloon he untied it and it flew up and then the girl was very mad at him then they saw a balloon person,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and he asked if he could have a balloon of hubbadubba uh bl and the guy said balloons five cents and they were very sad then they seen a doctor and asked and the boy asked if she can buy two balloons with five cents and they got the balloons and she paid and they loved the balloons a elephant met a a giraffe and the and the elephants ball went into the water,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +then the giraffe would get it and then she w then she was happy and then hmmm she liked her and then okay um the elephant and and the the giraffe was going to run and he was going and the elephant was going to run over to the jumping thing and then she slipped and then she fell,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 1 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 1 0 0 0 1 +and then the lifeguard came and then he putted a bandaid on and then then she knowed that there was no running and then she looked at the sign and it said no running and then the end the giraffe had had a airplane and he was going to throw it and and the and the elephant wanted to try too and then he s he was tr he wanted to throw it,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +and then the elephant was going to throw it and then it sank and then then the giraffe was mad and and then the lifeguard came and then and then the lifeguard was going to get it and then he and then he was almost about to get it and then and then the giraffe was sad what happened next and then then the girl lifeguard came to get the airplane with a th a net and then she got it,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then and then she got it and then he was happy a bunny and a bunny were playing in a sandbox and then they builded a snowcastle and then the the other rabbit poured some sand in it and and one part was still fixed then what happened and then the other one was sad the end um um two rabbits had baskets,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 1 0 0 0 0 0 0 1 0 1 0 1 0 0 0 1 +and it had a picnic and then and then the other rabbit was full then he was hurt what happened he found a doctor and and he thoughted that guy was hurt and then the doctor came and then then the boy was better the end um the girl had a wagon with a balloon on it,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 1 +and the and the other rabbit was running and then the boy rabbit was going to take the balloon and then he and then he was trying to take it off then what happened then it flew up in the air and then then it popped and then he was going to the balloon man and then then the girl was sad what happened then and then then he was mad,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +um then the girl came then sh then she then then she wanted a balloon and then he asked the doctor that could could he have some of your money what happened then then then the boy and the girl was going to have a balloon and then they both had a balloon the end once an elephant and a giraffe were playing ball when suddenly the ball dropped into the sand that was water out they sunk the ball picked them out,0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1,1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +but it was just the elephant and they played ball again once an an elephant and a horse were playing in the sand suddenly it was not sand they realized they fell and sunk they came out again they got hurt because that is how it looks they had to put a bandaid on a different eleph on that elephant a doctor elephant and they sat down the doctor elephant got angry,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 1 0 0 1 +once an elephant and a giraffe w were shooting airplanes when it looked when suddenly the airplane got broken and it shooted into that water into the water oh no said the little giraffe like he yelled mister fixit came and said what is all this yelling about a a a plane got stuck in the water can you take it out of course i will and he s he got angry too did not know how,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,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 1 0 0 0 0 0 0 0 1 1 1 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 1 0 0 1 0 1 0 1 0 0 0 +so he took his net out of his truck and scooped it up and that did the job and they played airplane again and they were happy they liked the the airplane it was all fixed up once a dog and a rabbit were playing in the sand they made a sandcastle and when by the time it was finished they poured some more sand and it fell down and did,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,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 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +they built the sandcastle again it was up once a dog and a rabbit were walking down they had a picnic soon the rabbit was so tired and full that he had to go to sleep out they packed his legs got tired dog had to pull him doctor came along and fixed up the rabbit and took them home once a a dog and a rabbit were waiting down with a balloon when the balloon popped,0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 +on that hot day they all sat up went the balloon it popped out came the balloon man with lots of balloons and they gave one to each and they had lots of balloons only one popped and they liked their balloons off they went out came doctor rabbit,0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1,0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 1 1 1 +he said what are these balloons are for the balloon man gave it to us because we love balloons and ours popped away once there was uh two friends one tally and one hm snout and snout had a beautiful green ball but it fell in a pool so tally swam to get the ball and he got it back um tally was blushing his whole face went red,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 1 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 1 0 0 1 0 0 1 0 1 +this is another story about snuff snout and tally once there the pool in the last story with the beautiful green ball fell in the pool and tally got it back there was a diving board and snout said i am going to go on that diving board and i will show you a nice dive well tally said stop do not run and unfortunately snout slipped and fell and really really hurt her knee and then tally warned her because tally saw a sign that said no running snout started started to cry,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 1 0 0 1 +but the lifeguard luckily saw and came to the rescue and the lifeguard gave snout a bandaid once snout stopped crying the lifeguard gave her a sticker for being such a good help not moving her knee around and stuff and then um the lifeguard pointed to the sign that said no running and snout looked and said sorry this is a story about snout and tally and tally had this nice model airplane that he was playing with by the pool he was flying it around and snout was like ooh she really wanted to play with it,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 +so she snatched it away and then tally was like hey give it back it is mine and snout dropped it in the pool and then tally s said now look what you have done you should not grab and tally got really really really mad at snout and then the lifeguard asked what is the problem here kids and snout said well um ta tally here was playing with this model airplane and i i really wanted to play wis with it,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 1 1 0 1 1 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 1 +so i grabbed it away but i accidentally dropped it in the pool so the lifeguard had to get down and stretch out for the plane but it was too too far out the lifeguard could not get it and then the the girl luckily had a net so she dipped it in the pool and luckily or not but he was lucky she did get it out,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1,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 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 +and then snout said sorry i dropped it in the pool once there was two animals a wolf and a bunny and they were at the beach or in a sandbox and they built a big big sandcastle the wolf was working on the tower and the bunny was um collecting the sand but then the bunny poured the who the whole bucket of sand onto the sandcastle and it ruined one tower but then the sand that was on the tower started coming down and wrecking the whole sandcastle so when that was all finished the only thing left was one tower,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the wolf started to cry and the bunny feeling bad once there was two animals a ra a hare and a wolf and the wo and the bunny thought that he was so good so he could have all the food he wanted so then once once they were finished the wolf had just a sandwich and a juice and then the rabbit was feeling kind of queasy so um the the wolf told him he would walk him home but luckily a doctor was walking by so the wolf a asked the doctor if he could um help the uh wolf and then the the wolf um brang the doctor over to the bunny,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 +and the the wolf said he has fainted he needs your help so the the the hare doctor said well i will give him this medicine so she did and he woke up but still he was feeling kind of queasy and then he he just took a run around the trees that is what the the doctor told him to do and then he was feeling fine two best friends named fluffball and fluffy were once playing at the park,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 +and and the and fluffball which was hare kept going on about this balloon he got for being the best student in his class but then the the hare said i am going to take it off and show it around but the wolf said no do not it what if you let it go it will fly up into the air but the hare did not listen so um the balloon he accidentally let it go and it went up into the air the the um the wolf got so mad at him that he he he he said i am not your friend any more but then the hare saw some some balloons,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +so he went over to the balloon guy said i want um that red one right there but it was five cents but he did not have any money so the guy that was selling the balloons said sorry but you can not have this nice red balloon and then um doctor fluffball which was fluffballs mom um asked him um fluffball asked his mom if he could have five cents because the the red balloon was five cents so doctor fluffball gave the man five cents and he got two balloons for both of them and that was that they both got a blue and red balloon playing baseball,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 1 1 0 0 1 1 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 +bouncing the three balls in the fall looking at a ball in the fall laying down in the fall trying to get the ball try give someone the ball in the water in the spring playing running around in the spring looking in the water in the f summer lookin running through the water in the summer running in the in the summer on the sidewalk getting hurt on the sidewalk in the summer get hurt in the summer crying,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 1 +playing in the summer sitting down on the bench in the summer sitting down on the bench in the summer get someone getting mad being happy in the fall playing in the fall with a little toy airplane playing with a little toy in the fall put his airplane in the water in the fall put the water in the in the water in fall put the water in fall,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +put the water in fall and they happy try and get it in the water in the fall sad it in the water in the fall getting a net to try to get in the water in the fall try to get it in the fall then kind of got it giving the airplane to somebody in the f fall givin holding the airplane in the fall the end,0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 1 +playing playing in the sand making a sandcastle with sand playing with sand with sand playing with sand with sand playing with sand with sand uh bringing food somewhere having a picnic somewhere laying down and eating somewhere la laying down and eating somewhere,1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +playing somewhere pulling somewhere playing somewhere playing somewhere bringing a cart on the sidewalk in the spring taking a cart somewhere in the spring taking a cart somewhere in the spring trying to get the balloon no handling and they would all go somewhere in the spring,0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1,0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +looking up s in the sidewalk in the spring saying could i have a balloon in the spring seeing what ss getting a balloon in the spring looking at a balloon ss looking they were at a tr at a balloon in the spring but they were all gone walking in the spring um looking at the balloons pulling someone to that balloons in the spring,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 1 0 0 0 1 0 0 0 1 +uh getting a balloon in the spring walking once upon a time the elephant had a ball and the giraffe liked it and he decided to play with it by the pool and then he made a mistake and it falled in the water and and and the elephant thought that he could not get it but he he just tried and tried and he got it,0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he gave it back to the elephant so the elephant was very happy the end once upon a time there is a elephant and a giraffe by the diving pool and the elephant ran and slipped i think i think that is next page and he slipped and got hurt so the giraffe came running and then one of the elephants came to help with a bandage and the band and he put the bandage on,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he hurt and hurt and she had to keep her leg out like straight in front so so it would not hurt when she walks but she had to sit there x what was that last bit she has to sit there at the diving pool all day until it feeled better so and then the big elephant said no running and she went that is why he got hurt and he said so she had to sit there for time out that is why,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 +once upon a time there is a elephant and a giraffe the giraffe had a airplane and they were at the diving pool the elephant played with the airplane and watched it zoom around and he did like and the elephant took it away and started playing with it and then it fell in the water and the giraffe stared at it what and the giraffe stared at it,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 1 0 0 0 0 0 0 1 +and then the giraffe was very mad at the elephant that the elephant was so scared so the beach the suh the the the lifeguard he he decided to take it out and he tried to get it because the elephant said so small elephant as tall as me and then he tried and tried and then i should not what is that last part then he tried and tried but he could not get it so he just tried still,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +so he could not get it and the zebra was sad so sad and then there is somebody that ha was even a bigger elephant and tried to get it with her net and she got it and she got it out for their giraffe and the giraffe was happy very very happy so the elephant and the giraffe became friends again there is so much ones about them at the diving pool the end once upon a time there was a little dog and a little rabbit they were playing in the sandbox,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 1 0 1 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 1 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and they builded a castle and the bunny took some sand and put it in the bucket and he started shoveling it and then the bunny poured all the sand over the sandcastle that the dog made and then the bunny said oh i am sorry i will not do that again oh the dog was very sad he cried h because the bunny was not very smart and then f and then the bunny just would not play with him and he standed still with his ears down like this,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 +the end once upon a time there was a bunny and a dog they were going to have a picnic with each other and they met each other in the woods they met a what they met a each other in the woods the bunny brought lots and lots of junk that is like all food that is bad for you junk like what like junk i call it when it is food that is bad for you i call it junk,0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 1 1 +and the bunny ate so much of his junk he got sick and he falled down and he got dizzy and then the doggy ran to the doctor bunny to help and the doggy pulled him over and then he started working on fixing him in case he was okay well then he threw a thing at his head and tried to s make him look over there and he fixed him up he had to go home so he the doctor brought him to his home,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 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 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the doggy was very happy the end once upon a time there were a dog and a bunny and they met each other in the woods and the dog had had a balloon and the bunny came running and a bunny ca took the balloon out of the the wagon and tried to untie it but the dog said no and he would not listen,0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the dog tried to catch it and the bunny tried to catch it too but they just could not catch it oh and then the bunnys dog friend got mad and made his teeth like this and made what and made ade him mad so he would be so mad that he would just be like this standing there then he went off to get a balloon from a balloon seller that sells balloons he decided to to get one,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +he decided to get one the bunny decided to get a balloon but he did not have any money for five cents well they were sad and he did not have any balloons for each other because they wanted then the bunny wanted one too so they went off to someone that had money and then the and then he and then he bought some for them and they got two the two last ones left and they were so happy and they they have been friends with each other all day the end,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 1 0 1 +the elephant and the cow umhm so you have told me what is in the picture can you tell me a story about it cow elephant cow and a elephant umhm what is happening they are trying to find each other the elephant and the cow had a accident with the ball and the eleph the cow got in there the cow got what he got in there he got in there and the elephant got it,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the cow is still in there and the cow and the the cow is dripping and she has the ball there is a slide cow and a elephant a cow and a elephant and a slide and a pool and the elephant is running and slipping and the sand and the cow and she got hurt she got hurt on her knee and it hurted and she can not go in the pool,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and she hurt herself uh the bo the cow and the elephant the cow the elephant has a ribbon and a dress and the cow gots a airplane and and uh she got it and it got in the water and the cow was mad and she is mad too both of them are all mad and the elephant is getting it,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 1 0 1 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 +he tried and tried to get it she gots a net to catch it and she is going to get it with the net and they got it back and they are happy the rabbit and the d the d he she made a a sandcastle and the rabbit gots a shovel and the rabbit wants to play and the s and he s g something is going to happen to the sandcastle and it brokeded,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 1 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 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and then the she is crying they got picnic baskets and they are having lunch and they are havi and the rabbit is full and the rabbit is what full and they are and and the she is hungry and the de and she goes to another lady and sh she she is going to say hi and there is the rabbits mom,0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 1 +the there is a balloon and a wagon and she is carrying and the rabbit is not the rabbit is what he is not carrying and the girl is just carrying it what did you say the rabbit was carrying nothing and there the balloon is going to be poppeded and the rab the rabbit is going to take it off and it is going away,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and it got away and they were go and get another one from the man can you take your fingers out of your mouth then i can hear your words better they are picking one and they are going to give one and they are gon to go the man said no and and there is there is the bunnys mom and he is the b the rabbit said he will not give me a balloon and now it he is getting one and he got both balloons,0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 +once upon a time and he is looking apples and the apples fall into a pool and uh a buddy a a guy f is catching it and he get it and he put it back and he be happy the end once upon a time are walking in a pool and he is looking backwards,0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and a girl walking and a and he stopped and he be worried and he be scared and he sit on a bench and he sit on a bench the end once upon a time out walking and he is flying a plane and he and he is playing a plane,0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then he dropped it gone is sinking and sinking and sinking and sinking and sinking and sinking and sinking and he catch it and he put it right back on his hands,0 0 0 1 0 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he be happy the end you can start once upon a time once upon a time what do you see use words so i can hear you so my tape recorder can hear you hm what has happened them building and he throwing sand,0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 1 0 0 0 1,0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 0 0 1 0 0 0 1 1 0 0 0 1 1 0 0 1 1 +and messed all d up and he be sad how does it start once upon a time try again hm and he is eating and he is tired and he is going sleep and he is running and he is holding his dress,0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and he fall down and he walks the end once upon a time a tree and he catching a balloon and it pops and wants the balloons and she wants the balloons again and they popped,0 0 0 1 0 0 1 0 1 0 0 0 1 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 1,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 1 +and they popped again and he is looking and he get and he be happy and he be happy again the end there is an elephant and a giraffe that but the elephant is bouncing a ball so fast that the giraffe wants to try and the elephant um and well the elephant and the giraffe but the giraffe is trying to get the ball in the water so he swam,0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and and the elephant was covering eyes his eyes and um the elephant was covering his eyes and his trunk was full of stuff and then h he was happy and then the giraffe was happy then the elephant started to grab it from the the giraffes hands and he said thank you and the um elephant had the ball and the giraffe was soaked so the giraffe asked him if he could bounce it but he said but the elephant laughed,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 +and he said no there is the giraffe and the elephant and the giraffe has a kleenex and they were going to go in the water and um the elephant was going to go in the water but the giraffe pushed the elephant and so the elephant fell in the water and the elephant slipped when when the giraffe was running after him so he would not slip but then the elephant he got hurt and the giraffe the elephant got hurt because um he slipped,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 +and the giraffe was running to see what was ran what was wrong and the elephant was crying and the coach came to see and the giraffe was just looking at the elephant and then the then the coach started to put a bandaid and the elephant was covering ey his eyes and um doing kind of a mad face and the giraffe was just looking but then the coach sat the elephant down on a bench and the uh um giraffe was just um holding his hands like this and the coach was pointing his finger,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and he is and the elephant was holding his hands right between his legs and then he and then the elephant um had a kind of a mad face again the giraffe and the elephant and the elephant was the giraffe was holding the airplane toy airplane and then the and the elephant wanted to play with him but the but he was still playing with it but the giraffe was still playing with it and he was making the elephant not catch it but the elephant finally caught it and then he started playing with it and the giraffe was starting to get mad,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +but the po but the toy plane went in the water so the two guy but the giraffe and the elephant um put their mouth like this but then the giraffe was really mad and the elephant was still ga still looking at the airplane and the coach came and the and he he was looking at the giraffe so um the elephant was telling him what happened and then the um the plane started to sink even more and the the elephant but the elep the coach went over to the elephant and the giraffe was um looking at the the two elephants,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the elephant was screaming his head off and he was telling the coach what happened but the coach had to grab it before it sank all to the bottom but he could not reach it and the giraffe was starting to cry but this other elephant came with a net and tried to get it and the um plane was started to sinking more but he still could not reach it but he finally got it and he gave it back to the giraffe,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +now the now the giraffe and the elephant were happily were happy there is a bunny rabbit and a dog making a sandcastle there is the bunny and the dog that um are um well the bunny rabbit is digging the sand up and the dog is um making the sandcastle smoother and the bunny rabbit was pouring sand all over the sandcastle so the dog was um starting to s um uh get sad but the but half of the sandcastle was left then the dog is was starting to cry and he was starting to make it all over again there is a bunny rabbit and a dog that are going to have lunch together,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 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 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +there is a bunny and a dog that are having lunch there is the bunny and the dog but the bunny but but the bu dog is eating and the bunny is and the bunny is chew and the bunny is sick the bunny um is does not feel good and the dog does feel good there is a bunny and a dog but the bu bunny is a mess and the bunny is going to well the dog is going to tell the other bunny that um he has to fix him but he pulled him because he will not,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he made him worse and then the bunny felt good and the dog was just by the sandbox there is a bunny and a dog and but the dog s has a balloon on his wagon and he is pulling the wagon and the bunny rabbit seen the balloon and he he was going to not try to take the balloon off but the dog did not want him to and the balloon fl flew away,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 1 0 0 1 +and both of them were trying to catch it the bunny rabbit the dog but the dog was rea really mad at him the rabbit was there is a big rabbit that had a lot of balloons and the bunny rabbit but and the dog but the dog was still mad and the w bunny rabbit went to get another one and he asked the man that has all the balloons could i have one but they were only five cents and he did not have five cents and then he said if you do not have five cents you can not um take a balloon then the dog and the bunny ra rabbit seen the doctor,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 +and the bunny rabbit ran but the dog stayed and the bunny rabbit said i want one of those balloons and he will not give me it then he um and the doctor had a lot of money so he gave him most of his money and there is only two left because the bunny rab the dog took most of them and the bunny and the wa the bunny and the wa the bunny and the dog had the two balloo the balloons and the then they went and both of them were really happy a giraffe and a a giraffe is watching a an elephant juggle a ball,0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 +and the ball gets stuck in some wa cement or a pool and the horse is swimming in to get it and he gives the elephant the balloon the ball and then he steps out and he is wet and the elephant is happy well an ele an elephant and giraffe are looking at the pool and there is and there is something behind a rock or something else and it looks like bunny ears and the elephant is talking about the bunny ears,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and they run and they run to see him and then the elephant does a stretch and and then there is a swipe and hurts her knee and then her knee and the giraffe is coming after and a lifeguard comes over to them and he is putting a bandaid on the knee and then they sit in a bench and the lifeguard is pointing to a sign that says no running there is a giraffe and a elephant by a pool,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 +and the gir giraffe has an airplane and he is flying it around in his hand and suddenly the elephant grabs the the airplane and drops it in the pool and it is sinking and the giraffe is mad at the elephant and the lifeguard is looking at them both and the airplane and the elephant is telling the lifeguard about what what happened and the lifeguard is reaching to get the airplane but he can not reach it quite reach it and the giraffe is like panting,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 1 0 0 0 0 0 1 +and the elephant is um kind kind of nervous or sad the lifeguard kind of has a smell and his ears are going up and then a an ele a girl elephant comes along with a net and she nets the airplane out and she gives it it to the giraffe and then the gir the giraffe hugs the airplane a rabbit and a mouse are playing in the sand and they are building a sandcastle with and the rabbit is filling a bucket,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and the mouse is flattening the castle and then the rabbit he pours the sand on the castle and the mouse has a kind of a whiny face because he is surprised he is doing that and he wrecks the sandcastle and then they and now they are building it again um a mouse and rabbit are going for a picnic and they are at their picnic eating the food and the rabbit is very hot because he looks hot and and the rabbit is full and the mouse is drinking juice,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 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 1 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 +and the rabbit is like really full and then there is a doctor rabbit and the mouse is running over to him and the mouse is pulling him over and he sees the rabbit and his his his stomach is really full and then he takes him off to the doctors a mouse went to a party he because it looks pretty much like there is a party balloon and the rabbit is looking at the balloon,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 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 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 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 1 +and the rabbit is trying to untie it and he unties it and accidentally lets go and the balloon is floating away and then they are in a big fit the mouse is really mad and the rabbit is like terrifyed because the balloon fel floated away and then they see a rabbit selling balloons and the rabbit is pointing to the balloon up in the sky and and the um rabbit shows him a balloon and it says balloons five cents,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 +and the rabbit is looking in his pockets for five cents and the the man the rabbit is holding the balloons and the mouse and rabbit are looking at him and then th and the mouse is stays behind aside beside the balloon man the rabbit goes to get the doctor uh rabbit again and he says there is a balloon man and we do not have any money and the um doctor and the doctor rabbit is giving the the b the balloon man some money so they can have the balloon and then they get the balloons and everybody is smiling,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 +one day some kids were at a swimming pool one of the kids had a big bouncy ball the other kid wanted to try it he accidentally dropped it into the water the other kid was scared that it would go to the bottom so the kid that dropped it went into the pool and got it the other friend said thank you and the other friend gave the other kid her ball back one day some kids went to a swimming pool one of the kids said let us jump in,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 +the kid wanted to jump in but she slipped and she fell on the ground and scraped her knee then the lifeguard came to help her he put a bandaid on they sat her down on the bench to rest for a while then the lifeguard pointed to a sign that says no running one day two kids were playing by a swimming pool one of the kids had brought an airplane to play with they were playing with it,0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the other kid snatched it from their hands and she accidentally dropped it in the water the other friend got really mad at her the airplane was sinking more into the water then the k then the kid who put it in the water by accident said to the lifeguard the airplane got dropped in the water the lifeguard tried to reach it with his hands but his arms were too short the other kid who had brought the airplane started crying then one of the people who were swimming saw the airplane and got out of the pool got a fishing net and told them that they would get the airplane for them they they reached into the water,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and sh she got the airplane caught in the net and she gave the airplane to the kid who brought it and that kid kept it and did not let other kids play with it by the pool one day two friends were in a sandbox playing together they were building a sandcastle one of the kids dumped a bucket of sand on one end of the castle and that end collapsed and the other friend started crying one day two friends were going for a picnic one of the friends ate too much,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 1 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 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 1 +when they were done they had a big tummyache and they really wanted to go home so one of the friends went to see a doctor they pulled the doctor by his sleeve to bring him over to the other friend the doctor said do not eat so much next time you have a picnic and the doctor took the other friend to his house one day in the forest two friends were walking one of the friends had a wagon with a balloon tied to it one of the friends wanted to touch it so they a so they took it off the wagon,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +pretty soon it almost touched the sky and the other friend was mad at him and the string was only left so the other friend got really really really mad at him so they both went to a balloon guy the balloon guy said do you want to buy a balloon and then he also said five cents a balloon and the rabbit reached into his pockets but they were empty so the friends just looked at him,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +then one of the friends went to a doctor and said that guy is not letting us have a balloon and then the doctor gave him five cents and they got a balloon and the then the doctor paid another five cents for the other friend and he got a balloon too and then they both played with their balloons all day elephant zebra what happens in the story ze zebra,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 1 1 0 0 0 0 1 1 1 +ball zebra and elephant ze um elephant and zebra and ball zebra and the ball an and the elephant zebra and the elephant and the ball the end um elephant and zebra elephant and zebra elephant and zebra owie and uh owie elephant has a owie,1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 1,1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 +and the zebra do not has a owie there is two elephants zebra two elephant two elephants and zebra two elephants and zebra two ele elephants st no zebra the end elephant and zebra,0 0 0 0 0 0 0 1 0 0 0 1 1 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 1 0 1 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 1 0 0 1 +uh elephant and zebra airplane uh elephant and zebra airplane elephant and zebra airplane uh it is on what is that sound what is that sound in there um elephant and zebra and airplane elephant and zebra elephant and zebra,0 0 0 1 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1,1 0 0 0 1 1 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 1 +two elephants and zebra elephant and zebra and airplane elephant and zebra elephant and zebra elephant and zebra elephant and zebra elephant and zebra elephant and zebra the end bunny,0 0 0 1 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 1 1,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 1 0 1 1 +what happens in the story um sandcastle sandcastle sandcastle and puppy and bunny sandcastle and bun uh san sandcastle and dog doggy and rabbit bunny sandcastle breaked a sandcastle breaked they are making it again the end,0 0 0 0 1 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 1 0 0 0 0 1 0 1,0 0 0 0 1 1 1 1 0 0 0 0 1 0 0 1 1 1 0 0 1 0 0 1 0 1 1 0 0 1 0 0 0 0 1 0 1 +um basket puppy and rabbit carrot i said a carrot that is it drink pa basket sandwich juice i said juice what happens in the story,0 1 0 0 1 1 0 0 0 0 0 0 1 1 0 1 1 1 0 0 1 0 0 0 0 1,0 1 0 0 1 1 0 1 0 1 0 0 1 1 1 0 0 1 0 1 1 0 0 0 0 1 +um tree tree tr tree tree tree the end uh balloon balloon balloon what happens in the story,0 1 1 0 1 1 1 0 1 0 1 1 1 0 0 0 0 1,1 1 1 1 1 0 1 0 1 1 1 1 1 0 0 0 0 1 +balloon balloon fly away balloon t popped the balloon lots of balloons lots of balloons lots of balloons five balloon lots of balloons i said lots of balloons,1 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 1 0 0 0 0 1,1 1 0 1 1 1 1 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 1 0 1 0 0 1 +lots of balloons yeah uh lots of balloons let us count the balloons in here in this picture there is nine two balloons there is two balloons none balloon one balloon two ba the end,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 1 0 1 0 1 0 0 0 1,0 0 1 1 1 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 1 1 0 1 1 1 0 1 +um the uh giraffe s comes to see uh comes on to swim in the water and then there is an elephant and then um she is bouncing a ball and he um he is asking to play with her they play volleyball and um it actually falled in the water by accident he was going to go in the sw he was going to swim to get it and then he swan swam in and then the elephant had um her hands over her eyes and he had a mad face cause he knew he could get it,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and um the he got it he gave it back to the elephant and then the elephant um was going to fall in love with the giraffe um they wanted to go for a swim and she wanted to try the diving board she did not see um no running she was gon she was running and the um ele giraffe said um you better not run it because he saw the sign but he did not tell the elephant and she did not she did not hear him,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 1 0 0 1 0 0 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and then she slipped she was running to get her then she got a big owie she was crying and then the lifeguard came over and gave her a bandage she was scared and now he said there um you have a bandaid now and he was m the lifeguard was mad don not run did not you see the sign,0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 1 0 1 0 1 0 1 +uh um the a gir the giraffe was walking and then um a elephant came and she wanted to play with his um airplane they were taking turns the um he was playing with it and um the elephant was curious that it would go in the water and then she took it away and then it landed in the water and th he was mad at her she wa she was curious what she could um do about it,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 +then the lifeguard came a and he saw that it was in the water the giraffe told him that um th the elephant was took taking it away and threw it in the water and then she said i did not do it and he did it by ac he did it on purpose and then he was the lifeguard was curious and he was trying to reach it they were both curious that he could get it and then it was starting to sink more and then a girl came with a net,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and then she scooped it out and gave it back to um the uh giraffe and then she said here have your airplane back and he said thanks for getting it and they fell in love again um a girl was building a sandcastle the um bunny wanted to play with her and he they dumped some sand she was patting it down and then he put some sand on it and um it broke,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then um he said oh no and she um said it is okay and he was she was crying she was trying to make it again um a boy and a girl was walking along and they were going for a picnic with each other he was eating a lot of his and he had a lot of junk he got so full and he was getting sick,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 1 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and he said i need a docor he doctor he he felt dizzy she was going to phone a doctor and then um she there is a doctor walking along and then um she ran up to him she said um my friend he has a stomachache he is dizzy he ate too much of junk and he said no and she said come on come on,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 1 0 0 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 1 +please help me and then she said yes and um he he said you are dizzy your temperature is five now he is okay and he went with the doctor home um she a girl was walking along and a boy was walking just for a jog and then she just walking with a balloon tied to her wagon and he wanted to play with it,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 1 0 0 0 1 1 0 1 0 0 1 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and she said no and he was tying it off the wheel and then it floated up in the air and then she was really mad at him he was scared he looked at the balloon and then they both s she was still angry at him and he saw a balloon guy and he said can i have one of those balloons and you have to pay five cents,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and they both wanted one she he was curious that um she was going to be really mad at him again and um he went to hi his mom and he was going to ask him ask her if he could have five cents and uh she said yes and she le he letted he she gave um five cents to him and they both were happy that they got a both got a balloon and they would not share theirs again and the mom wa ha was happy too um once upon a time there was a elephant,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 1 0 0 0 1 0 0 0 1 +and she was bouncing three balls and giraffe came and she try and he wanted to try and the elephant said okay and then the giraffe said i can not do it and then one ball wen then all three balls went into the water and then the elephant and the giraffe said oh no and then the giraffe went splashing in the water to get all three balls and then the elephant got one ball and then he wa happ and then she was happy,0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 +the end um once upon a time there was a little giraffe and he wanted to go swimming he was trying to go in the diving board and he was scared and then the elephant said i will try it out and then she was running and then the giraffe was slowing down and then n the the elephant stubbed her hurt her knee then the lifeguard came,0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 1 1 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 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 1 1 0 0 0 1 +and then the lifeguard put a bandaid on her knee and then she was on a bench and then he put her on a timeout that is it um once upon a time there was a little giraffe and a little elephant and and the little giraffe was going to throw his plane he thought it was going to go in the water then he tried and then he tried he did not let go,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +and then the elephant took it away and then she threw it in the water then the giraffe was mad then the lifeguard came and then he said you were on another timeout for the elephant and then the lifeguard said i do not know if you should have a timeout and then the lifeguard was going to try to reach it he did not reach it then he did not know and then the giraffe was starting to cry,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 +then this lady elephant came and she got a net and she was going to get it with the net and then the lady almost got it and then she got it and then the giraffe was happy once upon a tame time there was a little rabbit and a little dog and the little dog that was mak it was making a sandcastle and the rabbit joined in and then h the rabbit tried to do it,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +well he did not get it right and then he dumped it on top and then it did not and the dogs eyes went crazy and then the dog his mouth was he was kind of it was kind of crazy and then it was trying to make it back well it did not the end once upon a tame time there was a little rabbit and a little um dog and then they wer they were going for a picnic and the rabbit said hello,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 +would you like to join my picnic well the dog said no thank you i will enjoy my picnic and then the rabbit was eating all its stuff that it brought and then he was getting so hot that he that it was get that it was burning and then he was very fat and then he was going crazy and then he saw and then she saw then the puppy saw a doctor and then and then she was bringing the doctor to the rabbit and then sh that rabbit saw the other rabbit,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 1 0 0 1 0 0 1 0 0 0 0 1 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 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and then it took it that little rabbit to the doctors that is the end once upon a time there was a little rabbit and a little dog and then the little rabbit wanted to have the balloon and then it almost took it and then he did not notice and then he untied it and then he did not know what was there and then it and then the balloon went up up up and then that dog was mad at that rabbit,0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 +and then another rabbit came by with some more balloons and then that d um rabbit wanted a balloon and then he saw he did not have any money and then he did not get any balloons and then one rabbit then that rabbit saw a nurse doctor and then that doctor then that little rabbit said can i have some money for one of those balloons and then he got one and then he had and then they had two for each the end giraffe and elephant were in the pool,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1,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 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 +and i wonder what were were they were bouncing the ball i wonder what will happen the ball felled in the water giraffe was swimming to get it and and giraffe got it and elephant said thank you and you are my hero giraffe said oh my pleasure and and and elephant was engaged with him elephant and giraffe were by the pool,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 1 0 1 0 1 0 0 1 0 1 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +they i wonder what will happen elephant was running and and i wonder what will happen she slipped and she got a owie and she was crying and giraffe wa is going to help her and the lifeguard came and ss and gave her a bandaid she was so sad that sh he had to put a big bandaid on then the lifeguard let her sit down for awhile,0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 +the lifeguard was so mad and it said no running and ii she was so sad giraffe and elephant were at the pool giraffe had a airplane elephant took it away from him he was so upset it felled in the pool ele and giraffe got so mad that he wanted said that he wanted a new one and she took toward to the lifeguard and said can you get that,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 +and he said did you do this and he will and she will say no she wa she was crying and said that all right i did it this is the truth i throwed it in the pool the lifeguard crawl and try to get it i wonder what will happen he could not get it and giraffe started to cry and a girl lifeguard had a net,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 +and try and she got it and she did giraffe was so happy that he did not have to have a new one and then he loved it and he never ever ever let elephant played with it ever again this rabbit is going to make a sandcastle with this dog the rabbit is putting sand in the pail when the dog was making a sandcastle the rabbit poured the sand onto the sandcastle the dog was sad the dog wrought so hard,0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 +she started she was going she wa the rabbit was upset because he was going to make another one the dog was crying the rabbit was disappointed rabbit and rabbit saw the dog dog the dog waved at rabbit they were walking to a picnic the rabbit was so hungry that he had too many junks the ra the the dog had a sandwich first soon the rabbit was fat and full the dog was still hungry,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 1 1 0 0 0 0 0 1 0 0 0 0 1 +then the rabbit got dizzy the ra and the dog looked at him the dog saw his mother and he said that rabbit is hurt he does not feel well then he pu the dog pulled his his mother the rabbits mother to see him and he was very ill the r the rabbit ate too much junk and and his mother was a doctor so she took care of him,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and she took him to his house and he she said to the dog he will be okay the dog was going going for a walk with a wagon then rabbit showed up he said hi and i wonder what will happen rabbit saw the balloon and the dog said be careful the rabbit untied the balloon the the dog was disappointed,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 1 +then rabbit let go and dog and dog was worried and he wanted she wanted her balloon back and she got very mad at rabbit he al he always bugs her then the the balloon man was carrying some balloons and the dog was still mad he said that may i have a ye white one and the and the balloon man said sure when when he got to when got to his pocket and pulled down the balloon it was five cents,0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 +and he did not have no five cents and he was he was sad then the balloon man put the balloon up again and did not listen to him then the rabbit went to the doctor again she had money and he wanted five cents he asked if you can buy me a balloon two of us because i do not have no more money and she said yes and and she and he took two balloons to them and ga and one of the money they were happy,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 +and the doctor was happy too that they have balloons first they have balling bowling balls secon second they drop one third he tried to swim and got it after she got the ball after he tried to jump with the bowling ball that is a silly idea you will fall down and hurt yourself first they saw the thing and they wanted to jump,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 +and then they ran and and then she ran too fast then she fell down and hurt shes knee and she cried and the coach helped her up and put a bandage and put her on the bench after she the coach said do not run because it is wet and slippery should not run like that first they first the elephant saw the giraffes airplane and then he flied it and the the elephant want to tried it,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then she tried it and then it accidentally dropped on the water and the the giraffe was angry and then the coach the um the coach said what is happening and she said i accidentally flied it it gone on the river the coa the coach trie um s s tried to help the coach could not help this after the giraffe has tears because he wants his airplane after the the woman in the net i got um um had a net and tried and um want helped him to get it out,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the woman tried and she got it and then the giraffe was happy after he hugged his airplane they was making a ss sandcastle the um the um the dog and then the rabbit came and helped it and then he got some sand the rabbit he poured it on the sandcastle he felled it down and then the dog tried to make another one,0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +but he could not they went for a picnic they ate their food they were full and then the rabbit had a stomachache and then he went to a doctor and then he asked the doctor to help his friend and then the doctor helped and then the doc and then he was back to normal first they were um pulling the the balloon on a wagon,0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 1 0 0 0 0 0 0 0 0 0 1 +and then he showed it to his friend and then the rabbit untied it and then it flew away and then the dog is angry and then they they saw a man buying havin have some balloons and they want to get one and then he asked for one and then h he showed how much it was for and then she she said not not to take it and then he asked the doctor to pay,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and then he he asked like like doctor um i tooked a balloon off my friends wagon and it flew away and then he paid after they both have balloons the f the only the dog has a balloon both of them have a balloon oh now at the end they do yeah um it looks like the giraffe and the elephant are playing basketball and the ball goes into the pool,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +the giraffe tries and jumps in and get it um but the elephant gets it and the giraffe looks embarrassed um it um the giraffe and the elephant want to go swimming um the the giraffe the elephant wants to go off the diving board and she starts running and the sign says no running and she slips and falls and scrapes her knee the lifeguard comes running up to her puts a bandaid on it and she is all better,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the lifeguard points out the sign and she looks really really embarrassed and guilty um the giraffe has an airplane in his hand and the elephant um really likes it um the giraffe pretends to fly it and he is making airplane noises the elephant gets jealous the elephant the elephant steals the plane away from him and i guess she tries to fly it but it goes into the water,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +uh the ele and the giraffe gets mad the lifeguard comes up the lifeguard says what happened the oh and the elephant explained it to him so now the lifeguard is trying to get the the plane back and the lifeguard can not do nothing the giraffe starts crying then s a woman comes another elephant comes up with a net scoops the airplane out and gives it back to the giraffe the giraffe and the giraffe is really really happy now the bunny and uh the dog uh the dog has built uh a sandcastle,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 1 1 0 0 0 1 1 0 1 +and the bunny wants to help the bunny scoops up uh uh a shovel uh a pi the bunny takes a shovel and scoops up some sand and then she pours it on the sandcastle she buries the sandcastle and the dog starts to cry the dog and the bunny are having a picnic the bunny starts to eat and she has a lot of junk food the bunny uh gets a really really big tummyache um the dog does not know what is happening,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 1 0 1 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 +the the dog runs up to the bunnys mom a doctor or something and the and pulls the doctor over to see the bunny the doctor um brang her back like maybe gave her a painkiller or something but but but then the bunny feels better and then they walk away the dog has a balloon the bunny wants to see the balloon so the bunny unties it from his wagon the balloon floats up in the air um the dog gets mad there is a balloon salesman on the other side of the park,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 +he wants the bunny goes up to buy one but each balloon is five cents and the bunny and the dog have no money so the bunny runs up to uh to the doctor and asks if she if she um the doctor can buy uh buy a balloon for a friend the doctor goes up pays us and pays the balloon man and now each and now the dog and the bunny have a balloon there are two kids who find balls on the si on the sidewalk and then they f then they it falls into the water and they and they do not want to get wet but the um the moose got it wants gets the ball,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 +and he gives it back to the li to the elephant and then he gets out of the water and he is soaking they want to go swimming but there is no running allowed ss but they want to run to run and jump into the pool and w when the elephant is running she slips and hurts her knee and then the giraffe gets the lifeguard and he puts a bandaid on the knee and then she is all better,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and then he s points to the sign and says no running allowed um the uh the giraffe and the elephant want to throw the airplane and see if it s falls into the water and when and when and he is going to start to throw and then and then the elephant grabs it away and thr and drops it in the water and then the giraffe gets really mad and and now now um now they have to go and get it because the lifeguard is there and now the elephant is saying i dropped it in by accident and the el and the lifeguard is going to get it but he can not reach and then its and then there is someone who swims ga ge gets a net and gets it the end and gives it back,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 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 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and now he is going to play with it the end theres an there is an elephant and a dog trying to build a sandcastle and the dog wants um to break it sort of and then when the rabbit pours the sand on it gonna it might break and it breaks down so now the dog tries to help him buil build it back the end the dog and the rabbit want to go swimming are going to have a picnic and the rabbit brings carrot stuff,0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 +and the dog brings stuff with cheese and stuff and the rabbit is so full that the dog tries to eat the rest and the dog and then the rabbit gets sick so so the dog gets a doctor and he pulls him over because someone got sick and the doctor says open your mouth and say ah and then the rabbit felt better the end one day the rabbit and the dog meet because the dog and the rabbit are walking somewhere,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then they meet and the dog has a little balloon on his wagon and the rabbit sort of wants to pop it so and then he wants the now he wants to undo it the balloon and make it fly away and now the dog is sad because his balloon is gone so now the dog gets really mad at the rabbit and now the balloon is for sale so the rabbit gets one for his friend five cents but he does not have five cents so they can not get one,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +but then there is a doctor so they might ask him for five cents so they ask for five cents to get a balloon and he gives them five ce so he gives the guy five cents and they each get a balloon the end they were playing they smiled and a ball was in the in the pool the boy he wanted to catch the ball,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +so he went in and the elephant girl put her hands in front of her nose and then he caught the ball for her and she was smiling and he was all wet and he was what he was all wet is that the end yeah they found a pool,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 1 +and then she was talking to him and they runned and she got hurt and somebody came and ran to her she was crying she was crying so much that that the boy that ran to her gave her a bandaid she was sitting on a bench and he got very greedy he found a airplane a toy airplane then he was playing with it,0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 +she grabbed it away from him then it fell in the water and then he was mad at her then a boy came walking by then she told him something then he was trying to catch it and then they he could not so he cried and then a girl came down with a fetcher with a what,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +with a fetcher to oh a fetcher okay and then she tried and grabbed it and she got it for him and he was so happy the end they made a sandcastle they sc they scooped some some sand and she dumped the rabbit dumped it on right on the sandcastle and it broke,0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1,0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then he was crying when i when he was fixing it and it is the end of the story they went for a picnic they ate and the rabbit got a tummyache she was so full that she was growling then the boy called someone then he grabbed her to the bunny she checked her if she was well if she was what,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 +if she was well then she was good and she did not have a tummyache any more and sh they had a walk they had a stroller with a balloon in the front they watched the balloon if it was coming off and he tied it right on s ti she tied it on so tight as she can then after it came up in the air and after the dog was so greedy at her and then a balloon man came,0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 +and h and the rabbit said can we borrow a balloon and he said would you like this one and he said yes it is five dollars and he and he checked if he had much and then they did not get a balloon and then they ran to someone they asked her th we want a balloon and she did not know why so she paid five dollars to him,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 1 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and they gave both of them a balloon and they liked to play with it once upon a time they had three ba balls and one went in the river and him immediately went to get it he falled in and then and he got um he went in swim to give it to the pi um the elephant again uh an then an then um and then hir it looks like they are in love once upon a time the elephant went to run an then and then they start running an her her and her got a booboo and then his mom comed put a bandaid on her,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and then her went back to her friends and then he got mad at her once upon a time he s he showed the elephant his airplane and then her grabbed it out of the out of his hands and then her dropped it into the water by mistake and then he got very angry at her and then the elephant comed and got wery angry at the pi the um at the elephant too uh then he had a a talk and then he try and reach it an and then he start trying,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +an then and then the girl come with the net got it for got it for him an then he and then he was happy and he was happy and he hugged his airplane once upon a time a dog was playing a castle and a bunny comed over to play with him and th and when he and he was holding the castle and he was um having a shovel to um pick up the sand and he was dumping on the castle and then he broke the castle and then and then he start crying,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 1 0 0 0 0 0 0 1 +once upon a time they went on a picnic and and he and and som his tongue is out like this okay you are sticking your tongue out that is what it looks like and i do not know how to do that part can you tell me in words uh it looks like he is doing oh tongue out okay and once upon a time when they was eating something um it wa um it wa um he start to have a headache and then the dog went to his mother and tried pull her to the to her kid bunny and and it start giving him medicine,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then he and then they went on when he was going to play at the park the bunny went and touched the balloon he did what with the balloon touched it and he tried to pull it off and then it got go an they was an and the dog was angry no maybe the angry was not at that part the angry was this one and he was angry and then he went on with balloons,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and he gave the kid another balloon and he said he want another balloon and he said no cause he got because he needed to get five balloons because he wants five balloons x an he asked an the dog said can i have another the bunny said can i have another bunny for the dog and then the bunny went back to his mom and he said he wo he will not give me another ba he will not give me another balloon so he did ge so he give the kids two balloons and an they and then they went off home the elephant is playing with a ball,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,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 1 1 1 0 1 1 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 1 +and the giraffe want to play with it with the elephant in the water and they dropped it in the water and then the giraffe was going to swim and get it for the elephant and the giraffe got it for the elephant and she was happy and she said thank you to the giraffe the end the elephant and the giraffe were going swimming and the elephant was going to go in the water and she slipped,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and she hold her knee and she was crying and the her dad went to go see her and put a bandaid on her owie and then she have to sit on the bench and she and her dad said no running the end the elephant and the giraffe were playing with a airplane and the giraffe was making it fly and made the elephant dizzy and the elephant took the airplane and the giraffe was mad,0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and the elephant dropped the airplane in the water the giraffe was mad at her so they have to get the airplane and her dad said to her why did you drop the airplane in the water so her mother tried to get it and the giraffe was crying and the mum got it with a net she picked it out of the water and gave it back to the giraffe and the giraffe was happy and the giraffe hugged his airplane,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +the end the bunny and the dog were making a sandcastle and the bunny was filling up the bucket and the dog was breaking the sandcastle and the bunny was breaking broke some of it and then the puppy was a little bit sad and the puppy was crying the end the bunny and the dog was going on a picnic and the bunny took all of the food out and wanted the puppys food,0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 +and the bunny was full and the bunny was getting dizzy and full and the puppy went to get the doctor and puppy said that the the bunny ate too much food and the bunny was feeling sick and then the bunny was not feeling sick because the doctor made him all better the end the dog had a balloon and a wagon the bunny said can i come with you so he did,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 +the bunny was going to take off the balloon the pu dog said do not take off the balloon or it will fly away and the bunny did and the balloon flied away and the dog was mad at the bunny so he went to go see the circus bunny again to get a other balloon so the bunny got a other balloon for the dog and he did not have no money so he can buy a balloon then they were going to get some money from the doctor,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and the doctor said uh yes and the doctor gave the both of them some money to buy a balloon they both get their own balloon the end um an elephant and a giraffe went swimming the uh um s a wa they were playing with water balloons it looked like and they dropped a water balloon in the pool or the balloon um the giraffe tries to swim after it um he catches it and the elephant gets it,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 +and now she loves him um an elephant and a giraffe are swimming the elephant runs to the pool he slips and hurts her knee and the lifeguard comes and the giraffe helps her um the elephant cries and the lifeguard puts a bandaid on it and he sat down on a bench and the lifeguard p points to a no running sign,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 +um the elephant and the giraffe are at the swimming pool the giraffe brings a toy airplane um he the giraffe plays with it and the elephant stares at it then he the elephant grabs it from him and drops it in the pool the giraffe is mad at the elephant and the lifeguard sees it and it is starting to sink the lifeguard looks sort of angry at the ele other elephant x and um he tries to get it,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 1 +but he can not reach it the giraffe starts to cry um and then another elephant um gets a net and um and picks up the plane and gives it to the giraffe and the giraffe is happy um a dog is playing in the sand and a rabbit comes and wants to play with her he starts making a little bit of the castle while the rabb while um the dog starts making a little bit of the castle while the rabbit fills a pail up with sand and the bunny dumps it on the castle and the castle breaks and the bunny screams,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +um and the bunny pretends he did not do it but he really did and the dog is feeling sad because it is broke it broke um the bunny and the dog are going for a picnic um the dog brings sandwiches and the bunny brings carrots and sandwiches and pickles and chips and sandwiches and carrots and he gets fu the bunny gets full while the dog is still eating the bunny is feeling sick um the dog runs and gets um the doctor and he pulls the dog pulls the doctor over,0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +um the doctor looks and tells him to open his mouth and then he is all done um the dog is pulling a wagon with a balloon and and the bunny sees her the bunny tries to get it um he gets it and the dog opens his mouth and starts to scream sort of the bunny lets it g lets go of the balloon and the dog is really mad at the bunny and he is just staring at the balloon,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and um he sees um another rabbit selling balloons he asks for some and they are five cents and he said you can not have them if you can not pay five cents and then they are really sad and then there is a bunny another bunny up there i think it is his mom and he wants to buy a balloon and they he gives five cents to him and they each get a balloon,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 1 0 1 0 1 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 1 +and they are playing with them there is an elephant and a giraffe the elephant is bouncing a ball and there is the giraffe guy i think is talking to her and they are watching and all of a sudden the ball that the elephant was bouncing fell into the water and they are both looking kind of sad and um excited and now the giraffe uh jumped into the water and now is swimming to catch the ball and the giraffe is back at the end of the pool and gave the ball back to the elephant and now the elephant is happy and looks happy,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 1 +uh um the there is the giraffe and the elephant again and the elephant is looking at the water with the giraffe and now the elephant is looks like uh she is going to jump into the pool and right when she started jumping uh the elephant slipped and hurt herself and now she has a cut on her leg and now the giraffe is stand sitting by her and called the lifeguard to come and now the elephant is kind of scared that it is going to hurt when they put on the bandaid and now she is walking with the lifeguard with the bandaid on herself and she is kind of happy and kind of sad and now she is sitting the bench,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and the lifeguard is pointing to no running because she was running uh the elephant and the giraffe the elephant is looking at the giraffes airplane that he has in his hands and she is happy now the giraffe is kind of playing with the airplane and pretending that it is flying and the the elephant is trying it now and she is pretending and the giraffe is thinking she is he is scared that she is going to wreck it and now the the airplane fell into the water and now the giraffe is mad and now the lifeguard is standing there and watching them uh be mad at each other,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and now so the elephant is saying what happened and the lifeguard is wa looking at her now the lifeguard is trying to get the airplane and the now the giraffe is crying because the lifeguard can not get the airplane out of the water and now there is another uh elephant and she has a fish net and now she is trying to catch it with the fish net and she got it with the fish net and gave it to giraffe now giraffe is happy and um elephant is happy too,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 1 0 0 0 1 +there is a bunny and i think there is a dog and the dog has made a sandcastle in the sandbox and the bunny looks has a shovel and he looks happy and now the bunny was helping the dog to make the rest of the sandcastle and then the then the bunny pours all of the sand over onto the sandcastle and now the b the bunny wrecked the whole sandcastle the dog does not seem that uh mad and then now he looks at it now again,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 +and uh he is really mad and the bunny is just standing there looking kind of sad and mad too uh there is the bunny and the dog again and the bunny and the dog are going for a picnic the bunny is sitting by the dog and they are eating and the bunny has lots of food around him and now the bunny is really stuffed and the dog is still eating nicely and the dog is eating,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and the bunny looks kind of uh really um full so now the dog is running to a parent that is walking down the road and brought the the other bunny to uh the little bunny that ate too much and now the bunny the big bunny is looking at the little bunny and now the little bunny is all better now there is the dog and the bunny again and the bunny is ru are running down the roa the s sidewalk and the dog has a a little cart with a balloon tied to it now the bunny is looking at the balloon that is tied to the cart and now the the dog is looking at the bunny and the bunny is trying to take off the balloon,0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the bunny took off the balloon and now the balloon is sailing up in the sky and now the dog is really mad and the bunny is looking at at the balloon at the sky and now the bunny is walking down the s the sidewalk and the dog is looking at the bunny walking down and the bunny sees some balloons and the bunny sees the balloons with the man holding them and asks if she can buy one and they are they are five cents and the bunny is looking in his pockets because he does not have uh any money,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 +and now the both the dog and the bunny are looking at the balloons seeing if he will give them one and now the big bunny uh the little bunny is going to ask the big bunny and see if she has any money now they are asking the bunny little bunny is asking the big bunny if he can she can have a five cents to buy a balloon and so the big bunny gave the man five cents so that they can ha or ten cents so they can have two balloons and now each of them have two has a balloon the giraffe and the elephant are playing in the water and they are bouncing a ball the elephant is and the elephant is out of the water and so is the giraffe but she bounces it too hard,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 1 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 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +and it land in the water and the giraffe tries to get it to jump in and get it but it looks like it is hard for him to get it but then he got it and then he swam to the elephant and the elephant got it and then the giraffe got out of the water and the elephant took it from him the elephant and the giraffe are staring into the water and the elephant tries to run in the water tries she like she is on where she is on the ground,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 +and then she tries to run in the water but then she slips and then she got a owie on her knee and she started to cry and then the giraffe called the lifeguard and the lifeguard help tried to help her was running over to her and the lifeguard got a bandaid and put it on her knee and then the lifeguard told her told her to bend her leg and then it felt better but then the lifeguard um showed the elephant that there was a sign that said no running,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 +and then she had to sit on the bench the elephant and the giraffe are um laughing together and the giraffe has a toy airplane in the swimming pool and then the giraffe plays with it and flies it in the air but then the elephant grabbed it away from him and started to playing with it but then she dropped it and it fell in the water and then the giraffe got really mad and the lifeguard came over and looked at the airplane and was shocked and the elephant said it was an accident,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 +but then the so the lifeguard bent down and tried to get it but he was too short and then the giraffe started crying and then the elephant looked shy like kind of like she is sorry and the lifeguard did not know what to say but then a girl walked over one of the lifeguards walked over and grabbed the net and grabbed the airplane with the net and then the giraffe started stopped crying and then the lifeguard was happy and then the elephant did not know what to say and then the and then the lifeguard picked up the airplane and gave it to the giraffe,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the gir and the elephant was happy and the giraffe was very happy a dog and a a dog and a bunny uh well first the dog is playing in the sand with a shovel and then the bunny comes along with his shovel and the dog is just done his castle and the bunny is putting some sand in his sand bucket and then the bunny pours all of the sand on the castle and and then the bunny instead of the dog getting mad the bunny gets mad and then the dog starts to cry,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 1 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 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 1 0 0 0 1 0 0 0 0 0 0 1 +a bunny is w the bunny is w walking down the road with his basket and a dog waves at the bunny with his basket and the dog takes out his sandwich and the bunny takes out her big meal that she has in her basket and then the bunny eats it all and then you can see garbage all over the mat and then the dog is just eating a sandwich and then the bunny feels a bit sick and the dog is shocked so the dog runs down the road to the bunny is granny and tells her,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 1 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 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the granny um well the dog is pulling the granny towards the bunny and the the granny fix like helps the bunny and then they walk home happily together the bun first the dog has a wagon with a balloon tied on it and the bunny is walking down the road waving at the dog and then the bunny says that is a nice balloon that you have and then the bunny tries to tie it off the wagon but then he did tie it off and then it floated up in the air the dog and the dog got really mad,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and he got so but he did not have to be mad for long because he saw a balloon carrier and the bunny was walking towards him and the bunny asked how many how much are those balloons and um the salesman said they are five cents each but the bunny did not have enough money he did not have any money and then the bunny and the dog just standed there and went gave a sad face and then the bunny walked toward this girl on the street and asked if i can get a balloon and then the girl gave her fi gave him five cent ten cents for two balloons and they both had the balloon and were very happy,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 +there is a giraffe and an elephant shall i turn the page okay then then there was a ball in the water then the giraffe went to get it then the giraffe got the ball for the elephant and he was playing with it the end they wanted to go on the on the jumping thing and the elephant one want to go on it,0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then the elephant tripped then he got a owie then the lifeguard came he put a bandaid on it and they and he took it took him to the bench i do not know it there is a giraffe and an elephant the giraffe has an airplane then the elephant took it then it fell in the water,0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +then the giraffe was mad at the elephant do not know it looked like it was sinking but the lifeguard was trying to get it i do not know and the lifeguard got a net and he fished it out and he gave it back to the giraffe do not know there is two rabbits that are going to make a castle,0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +they are making one he dumped ah sand on it then it broke and and they were going to build it again the end there are two rabbits that are going picnicking they brought food to eat they ate all the food one of the rabbits are really fat then t a doctor came,0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 1 1 0 0 1 +then one of the rabbits are pulling him and then he was checking his temperature then the doctor took one of the r rabbits the end there are two rabbits that have one balloon okay anything on this page no then they took it off then it went up in the sky then it was up high,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +there was a rabbit had lots of balloons and one of the rabbits asked him if he can have one it costs five cents nothing here okay and there was a rabbit coming then he asked the rabbit if he can have money for a balloon then he then he gave the bunny gave him the money then they each got one the end a donkey thing and an elephant are playing with their ball playing basketball,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 +um the they shoot it and the ball falls into the pool that they were standing by the donkey goes in and gets it out of the water he brings it back to the elephant and the elephant is happy the elephant falls in love with him they are going to go swimming the elephant goes to run to the diving board she slips and falls and hurts herself she is bleeding because she has a cut on her knee,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,1 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 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 +um the donkey thing goes to get the lifeguard they put a bandaid on she is okay he points to the sign that says no running and she gets um embarrassed um they are going to play with this plane near the swimming pool he is flying around with it and she wants a turn she so she grabs it from him and starts playing with it it falls into the water,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and they can not get it out he gets mad at the elephant then they call the lifeguard and then the lifeguard is looking at it the lifeguard can not reach it he still tries to reach but he still can not reach it it is sinking and the ele donkey thing is crying and the elephant feels sorry,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 +and the lifeguard says he can not do anything then the other lifeguard comes with a net and she fishes it out with the net and then she gives it back to him and he is happy and then they are both happy the two little kids and then they play with the airplane again the rabbit and the dog are playing in the sand they are building a sandcastle he pours too much sand on the sandcastle,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 +he wrecks it um the bunny and the dog are going to go and have a picnic they are having a picnic and he is eating everything he ate all unhealthy stuff and only like a few carrots and stuff that is healthy he gets sick the dog goes to get a medic the me the medic um helps him and he is sick so she is going to cure him,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then he take she takes her like to the doctors office place and then she is going to um make him better um the the dog and the bunny are going to go and play with their balloon th the bunny takes the balloon off the wagon he ties it off and then the dog does not want it him to it goes up in the air and they can not get it the dog gets mad at him uh they go to buy another balloon,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 +they pick one but it is five cents and they do not have any money sss and they both do not have any money so they are thinking what to do um they so so they go to their mom and she is going to give them money um she is gonna gi she is getting her money out of her pockets to give to them she gives it to them and they can buy two balloons then they are both happy,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +there is a guy gi uh have candy and he is selling it and he give and it one dropped into the water and he swims for it and he pulls um um he gots it the other guy gots it and he get um and he get and does not he does not give it to him the end the guy is going to jump into the water the guy um runs and runs and the guy the other guy he slips,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 1 1 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 1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and he falls down and he cries and he and he has a booboo and he puts a bandaid on it and he carries him puts him on the bench the end the guy is looking at him and he has a airplane and then the other guy takes the airplane and plays with it,0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +and then it falls o it falls into the water and then the other guy gets mad at him and the other guy gets m um the other guy there is two guys standing getting mad and the other guy ge um um gets scared and the other guy chases it into the water an and the other guy cries and the other guy has a net and the other guy takes it out of the pool and then he gives it back and then he he likes him,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 +the end there is a there is a bunny rabbit um um gonna make a there is a bunny rabbit who made a sandcastle and they are both of them are making a sandcastle and they are they are pour they are pouring it on on the guy somebody is pouring it on and he is breaking it and the other one gets mad no not mad i forgot it breaks and they make another one the end,0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 1 0 1,0 1 0 0 1 0 0 0 0 1 0 1 0 1 1 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 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 1 +they have both baskets the bunny rabbits has baskets and they gr they are having a picnic and then the other one eats all of his and then the other one du um has uh juice and then the other one is wa um somebody is walking and somebody is pulling somebodys shirt and somebody gets mad somebody brings somebody home the end,0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 1,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +there is a guy having a balloon in his wagon and the other one is walking and he w and he is trying to take it off and then he en unwraps it a little bit off and then it flies away and then it float he wrap um the um the string falls down why does your boss does your boss let you look at these pages she says while your doing them i am not supposed to so i am not so you can see them go ahead the guy has balloons in his hand and the and the other one buys one,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then he and then he sh then he checks in his pocket for money and he does not have money he checks it for money and he can not get one and and he was allowed to ah the other one is the uh there was a man heh uh selling balloons and then he gives one to him and the other one has a balloon and the other one has a balloon the end a elephant is going to his friend,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 +he is saying what is there what is in there orange he said the the orange fall down in the water and then the his friend he he falled in the water he was trying to get the orange and then and then the elephant got the thing out and then the elephant got the orange out and then he walked and then he walked his and then he walked to his home the end um the the elephant and the friend he was going to the pool they were going to jump into the pool really fast,0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 1 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 +and they are going to jump into where the sides are and they and the his friend hurt his leg he hurt his leg and that hurts really bad um his f his um his brother came and he and so he and he seed what happened and he gave him a bandaid and then it hur and then he went home they were going to play pool again and then there and then he was driving airplane,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 1 0 1 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 1 +and then the his friend was driving a driving driving a airplane and playing again they are playing again they were going to jump i and the airplane got in the water okay and then he was trying to and then he was very mad and then his friend and then his sister went over to that girl t um the sister went over to the brother and then he and then the brother came over her and then and then he sawed what happened and then he is trying to get it and then he he did not know how to get it,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 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 1 0 0 0 0 0 0 0 0 0 0 1 +he tried he picked that and then he tried to get it hey look look behind here um the boy has girl hair the the girl was pretty then he tried to get it and she trying to get that um airplane and then he tr and then he got it and he was very happy,0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and then h and then the elephant was very happy too the end i see a bunny that is in the s um i see a dog that is in the sandbox and helping the bunny and the bunny and the bunny is making a sandcastle they are trying to make a sandcastle and he is helping and he is helping the dog and uh um the rabbit broke the doggys castle and then he was making it all over again the end um the bunny was going for a picnic,0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 +he was following the dog and then they were there already they were playing in the sandbox with a picnic and then he burped and then he burped and then he was eating all th and then the dog was eating all the other thing he was eating one at a time and then he was and then he sawed then the dog he was laying down and then he was sleeping he was kind of asleep but he did not,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and then and then he was turned into a doctor then he was turned into a doctor and he had and he had doctor things and and a doctor came and then he went with the doctor and then he tooked him to the doctor where the doctor thing is and then he laid down with a blankie went to sleep and then and then the doctor came to a different to a different man but it was not that man he was so he was so tall,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and he was trying to help the man and then he w and then the doctor came with this with the bunny he was going to the doctor the end they are going to the um circus and then the bunny was c the bunny came with him and he had and he had a balloon and then he w and then he was trying to get the balloon and he was following him and then he took it off,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 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 1 +and then it po and then it was gone and they were trying to get it get get get it back and then he was very mad and then he said i am sorry and then he had a whole bunch of balloons and then he wanted and then he wanted m and then he was going to get one and then he wanted one and then he had some dollars and he was then he was going to buy one and then he gots no money,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and then he could not buy one and then he was and then the doctor help him help him and then he gave him some money and then and then he wanted the balloon and then um he got a balloon for him he gave him some money and then he got a balloon and they wan and they liked and they liked it and then they said and then they said thank you the end,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 +an elephant meets a horse then the elephants ball bounces in the water the horse swims to get it the horse got the ball the elephant was happy the end an elephant and a horse wanted to go on a diving board the elephant says let us go on the diving board the elephant slips and scrapes her knee then the elephants father comes and puts a bandaid on it,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and the father said that bandaid will make sure it does not hurt the father says no running an elephant met a horse who has a toy plane the plane f he the horse pretend it pretend it flies then the elephant wants to try then the elephant threw it into the water it was sinking and the horse was mad and the elephants father came and the elephant said i threw that plane into the water by an accident,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 1 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 1 +and it is the horses the elephants dad could not reach it because it was too far and the horse was crying then a lady came and had a net and caught it with and almost caught it with the net and she got it with the net and gave it to the horse the horse was happy a dog and a bunny are making a sandcastle they needed thick sand but the sand was too light so it fell on the castle,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 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 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +now the castle is nothing but they could see part of the castle a bunny and a dog are going for a walk they have a picnic the bunny gets too full he the bunny gots a stomachache the dog runs to the doctor the dog pulls the doctor to the bunny the doctor said he has a stomachache then the bunnys mom came,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 +a dog is pulling a wagon with a balloon the bunny says if you let go it will fly up to the sky the dog says no do not do that the balloon flied up to the sky the doggy gets mad then a man comes by with who was selling balloons the bunny picked one of the balloons which was five cents and he did not have any money so he could not buy it his mom came,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 +and the bunny says i need a five cents to buy one of those balloons then the um mother w one give five cents cents to the man then they both got balloons the end the elephant and the giraffe were playing with a ball the ball went in the water the animal was swim and got it the elephant got her ball back the elephant uh the um they were happy they were at the water pool,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 1 0 0 1 0 0 0 0 1 1 +the elephant was pointing at the jump board the elephant slipped the elephant got a owee the safety guard ran the safety guard put a bandaid on her she sat down the safety guard got mad at her no running they were going to play with a airplane the animal was playing with it uh the airplane,0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 1 +the elephant took the airplane the plane went in the water the animal got mad at her the safety guard was coming to check he the elephant said the airplane is in the water the safety guard tried to get it they could not get it a big elephant with a catcher got it she pulled it out the animals airplane was back,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 1 +they were both happy they were going to make a sandcastle the rabbit puts sand in the bucket he dumped it on the castle the sandcastle broke the dog cried they were going to go for a picnic they took their stuff out bunny ate fast what is that,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 1,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 1 0 0 1 +bunny ate fast he got a sore tummy he was calling the doctor the pup dragged the doctor over there you ate too you ate fast said the doctor the doctor took him with him took him wi the bunny with him bunny was coming to look at the balloon the bunny said wow the bunny untied it it flew away,0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 1,1 1 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 1 1 1 0 1 1 0 0 1 0 1 0 0 0 0 0 1 0 1 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 +dog was mad they were going to buy a new one they did not have no change actually they did not have five cents they could not buy one there was a doctor the doctor gave them twenty five cents for two balloons they got their balloon they were happy one day there was a elephant bouncing a ball,0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 1 +it went into the water the zebra jumped in and ge gets the ball and zebra gives it back to elephant the lady smiles and the giraffe smiles one day they are both laughing and they wanted to go on the board the the elephant said to the giraffe let us go on the board and the elephant slips and he gets a booboo,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then another el elephant comes running and look at the booboo and he puts a bandage on and now she go she is surprised no running allowed the the other elephant says one day the giraffe had a airplane in his hand he was flying it elephant took it away from him and she dropped it into the pool the giraffe got angry at the elephant but the guy came running,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 1 0 1 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +and he sees the plane in the water the elephant said it was not me that brought it the other elephant tried to reach it then the l then the giraffe was crying i know a way to get the plane out she put in her thing and got the airplane she is she handed the the airplane to the giraffe and the giraffe hugged it one day rabbit wanted to play in the sand and so did the dog,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +the dog was going to touch it and the rabbit was filling up his bucket rabbit dumps sand on it the dog saw and and the rabbit was horrified the dog tried to fix it one day dog met rabbit and they both wanted to have a picnic rabbit ate and ate rabbit got a stomachache,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 1 +and the dog was eating he got sick the dog came running to a doctor he said wait a minute what is this problem about it is about him and he is sick the doctor takes him for a walk one day a dog was taking a b wrapped a balloon on her wagon the bunny sees the balloon,0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 +he ties it off he let go and it was floating away and the dog was mad at the rabbit and the rabbit sees balloons a balloons were holded by an old rabbit it is worth five cents you cannot have a balloon if you do not have any money rabbit goes to the doctor we want a balloon,0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 +she paid two two ff nickeles and now they both got balloons um a giraffe and a elephant were friends and they were playing ta with each other and then their ball went in the water and the giraffe went to try and swim for the ball and the giraffe got it and gave it to the elephant and the giraffe was soaking wet um once there was a elephant and giraffe and they wen were friends,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 +and they went to a swimming pool together and the elephant was going to jump in and she and before she jumped in um for some reason she must have forgot something she went she ran very fast with no running allowed the elephant fell down and hurt her knee she was crying and looking at the pain she is crying even more and not looking at the pain then she sat down on the bench and the lifeguard gave her a bandaid and the lifeguard said no running allowed,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 +the elephant and the giraffe went to the swimming pool and they and the giraffe brought a swimming toy with him and and he was playing it and the elephant was just like stare on it on at it like crazy the the elephant grabbed it from the giraffe it looked so neat and then she dropped it in the water the giraffe got very mad at the elephant the lifeguard came and looked at it and and came closer to the elephant and the elephant was ex trying to explain how it happened,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the lifeguard was listening very carefully the lifeguard tried to get it but he could not the giraffe was crying the both the lifeguard and the elephant were was just kind of staring at it then a girl with a net came and the and they was sup they were like and the girl with the net was pull get trying to get the airplane with her net and she got it for the giraffe the giraffe was hugging it,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 1 +once there was a bunny and dog and and and they were friends the dog was making a sandcastle then the bunny was about to come in with a shovel and he came in and throwed a bucket of sand the bunny dumped it onto the ca sandcastle dog was kind of sad it bro i think it broke her castle she was crying there was a dog and a bunny,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 0 0 0 0 1 1 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 +they were friends and they were going to go to a picnic with each other um the the dog was taking everything out of her picnic basket but the bunny was just eating everything she took out the the bunny was very full and the dog was hardly even eat ate everything the bunny was fat and then the dog was about to drink a little bit of her juice and the bunny had a tummyache then a grownup bunny came along,0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 +and the and the dog was racing to her and it was like please please please and the lady was like you eat too to eat you bunny and the bunny and the grownup bunny just just went along with each other the bunny and the dog were the the bunny was running to the dog and the dog was just going her wagon in front of her with her balloon and the bunny liked the balloon he was about to pull it off and the bunny was untying it and the bunny was like the the dog was like,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 1 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 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 +and then the bunny untied it and the the balloon floated away they were trying to reach to get it the dog got mad at the bunny un until when the string was just left and then a bunny with balloon lots of lots of balloons came and he said come here come here the bunny and the the man with the balloons came and the bunny was like and the big bunny with the balloons was like which one do you want that one that one the little bunny was like,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 1 1 1 0 1 0 0 0 0 1 +this this one you can not have this one and then the bunny and the dog was sad and then the the same lady with the other book came and the and the bunny was running to her and the dog was just staying with the bunny with the balloons and and the dog still had her wagon and the and the grown up b girl bunny was the kid bunny was saying to the grown up girl bunny can we get one of those balloons can we get one of those balloons for the dog and the and the and she paid for it,0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 1 0 0 0 0 0 1 1 1 0 0 0 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and they each got a balloon two different animals were the swimming pool they wanted to play dodgeball in the water water dodgeball the ball got in the water and the an giraffe was going to get it so huh hm while he was swimming water came out of his mouth and he was all drippy then giggled he the ele the elephant watched when they were at a swimming pool the elephant wanted in the dive the diving board,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 +and there she wanted to run toward she wanted to race towards it but there was a sign that said no running she runned towards here the giraffe never runned and they huh and the elephant slipped and slipped and fall down and hurt her knee lifeguard came running she got a bandaid on it elephant sized bandaid and h bit better and the lifeguard said next time look at the sign they were at the swimming pool,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 +and the huh giraffe huh is throwing air huh super duper flying jet plane he wanted to fly it but elephant wanted to fly it into the water see if it could land on its gear but it w it was starting to sink then the giraffe got angry at her because of the plane in the water and a lifeguard huh s looked at them what is going on and they said the my friend s his super duper jet plane is in the swimming pool it is sinking he try to get it,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1,0 0 1 1 0 0 0 1 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +but he could not reach it it was starting to sink more cried then they s he who is there to swim he got something was all that looked like a big fishing net he got it out huh he got it and he tooked it out and starting stop crying then to the giraffe and got happy he hugged his plane like it was a lost memory hm there were two moles at the sandbox,0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 +one was building a sandcastle and one was building a pail one the bunny when he was done filling it up and patting it down he put it right over the the sandcastle went oh no doggy got sad bunny just whistled the animals going out for a picnic in the woods they found the perfect spot they started chowing down the doggy ate s sandwich and juice,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 1 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 +and the bunny got just a tummyache then him drinked his juice and ate a biscuit and the bunny got a sicker the bunny fainted then got there him want to get him to come he got a big tummyache he was going dizzy hm pic picnic was all gone the we bunny went back home,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 1 1 1 0 0 0 1 1 1 0 0 0 1 +one animal had a balloon and the bunny was coming towards this him he say cool balloon he untied the balloon did not know it would float up it went really high they could not get it and the balloon was gone the doggy got angry then there was a balloon saler,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 0 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 +he wanted one of the balloons to get to for his friend but he was broke s so decided to get someone who had money the bunny went to get the doctor she had lots of money huh to get a balloon then two balloons for each of them and they were pretty having fun and laughing an elephant was playing with a ball and a giraffe came to play with it um and the elephant threw the ball into the pool,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and then they got scared that it would sink the giraffe tried swimming to get it but he could not get it and h um but he got it and he gave the ball back to the elephant and the elephant was happy to see the ball again the elephant and the giraffe seen a diving board and the elephant said and the elephant started running and the sign said no running and then the giraffe tried to catch the elephant,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 +but the elephant hurt herself and she had a cut and she got a bandaid and she felt better and the lifeguard got mad at her because the sign said no running the giraffe had a toy airplane and the elephant wanted to play with it the giraffe started flying it and then the elephant took it from him and started flying it and then it sunk underwater,0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and the giraffe got mad at the elephant but the lifeguard went to get it and it was still floating in the pool and then he tried getting it from the outside of the pool and he could not reach it and then someone else came with a fishing net and got it out of the pool and gave it back to the giraffe and he was happy again a rabbit and a dog were playing in the sand they made a sandcastle the rabbit broke the sandcastle,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,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 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 +and the rabbit got mad and the dog started crying the rabbit and the dog went for a picnic the rabbit had more stuff to eat than the dog the rabbit got really really full and then the rabbit had a stomachache the dog ran to the rabbits mom the dog and and she went to see the rabbit um and the she was a doctor,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 +um the rabbit felt better and he went home the dog was with his wagon and his balloon and the rabbit wanted the balloon the rabbit untied the balloon and took it then the balloon flew up in the air and the dog got mad and there was a rabbit holding a lot of balloons and the little rabbit bought a balloon hm and the little rabbit could not buy the balloon because it was five cents,0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the dog saw the balloons and the little rabbit went to get some money from the doctor and the rabbit told the doctor that he did not have any money and she bought the balloon and the little rabbit and the dog had balloons there was this old giraffe and elephant was playing by by the pool with some bouncy balls and the giraffe came up and said can i play then he bumped the ball and then it went into the pool,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1,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 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +then the giraffe swam swam and there was water came out of his ears and the elephant could not look then the giraffe gave it to the elephant and she was happy then he smiled and she smiled the end there was these two elephants the giraffe and the elephant and there was a diving board,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +and the sign said no running and the elephant ran and ran and they almost slipped then she slipped and then the giraffe ran after her and then the elephant hurt herself on the knee and the giraffe looked at the sign no running and she sa and the giraffe said no running and the lifeguard came and sh sh the lifeguard put a bandaid on,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 1 1 0 1 0 0 0 1 +and she was still crying and the lifeguard helped her up and handed her to the giraffe and the lifeguard said no running the end and she got up and she was all better and he flew his airplane and he flew it and slobber came out and the gir elephant looked at the airplane,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 +and she got dizzy then she took it and flew it and the giraffe said uh then it went into the water and the giraffe got really mad at the elephant and the lifeguard came again and he looked at the elephant and there was a airplane in the water and he tried to reach it but he could not,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 0 0 0 0 1 +and and the giraffe started to cry and another lifeguard came and brought this net and she tried to get it and she did and she handed it back to the giraffe then the giraffe and the elephant was so happy the end there are these two bunny rabbits playing in the sand they made a castle and they are laughing,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1,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 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +they starting to fix it and building new stuff the boy rabbit dumped sand on the castle sh and the a little part of the castle is showing and now it is only sand now they are trying to build it back together the end they are these two rabbits walking down the in the forest they walked and walked they met each other and they started to have a picnic with every bo and with every with that girl,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 +and then the boy rabbit ate everything up and he was full then the girl rabbit looked at the boy rabbit and the boy rabbit did not feel so good and then there was a doctor came and the girl went to get hi her and she pulled and she pulled and they finally got there and she was checking if he was all right,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 +then the doctor took him and the girl stayed there they saw these two rabbits walking down the woods again and one had a wagon and a balloon and the boy jogged and jogged and they looked at the balloon and the boy rabbit untied it and he tied it and it flew up up and away and the girl rabbit got so mad,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +there was another balloons and the girl ma rabbit was still mad and the boy asked the man a question and then the girl was coming over and the man said the balloons were five cents and the girl looked at there and the man smiled oh again there was the doctor again and sh the boy talked to the rabbit and said my sister is mad because i lost her balloon the girl is mad,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 +here is five cents and here are two balloons he said they were so happy the end a giraffe and an elephant are bou the elephant is bouncing a ball and they are by the pool the ball falls into the pool the giraffe swims to get it um the giraffe gives the ball back to the elephant,0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 +she thanks the giraffe the elephant and the giraffe are going to the pool the elephant is pointing to the diving board she she is running so she slips she hurts her knee the lifeguard comes to see what happened the lifeguard puts a bandaid on it she the elephant sits on the bench and she smiles at the lifeguard when he points at the no running sign the elephant and the giraffe go to the pool again,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,1 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 1 0 0 1 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 +the giraffe brings an airplane that he is trying to fly and the elephant is just looking at it then the elephant takes it away from the giraffe and she drops it into the water the giraffe gets mad at her the lifeguard comes and see what is happening the elephant is trying to explain what happened the lifeguard tries to reach it and he can not reach it and the elephant and the giraffe starts crying,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 +then another elephant comes with a um net and puts the net in the water and tries to get the airplane and she gets it out and the giraffe is happy again um two people two um animals are in the sandbox they are building a sandcastle one of them is dumping sand over the castle the sandcastle breaks because all of the sand and one of the animals gets sad two animals are going on a picnic they bring lots of food,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,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 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +and one of them is drooling over it one of them eats it all up and he gets a tomach stomachache and the doctor comes to see what is wrong with him she she one of the animals is dragging her she is she she comes and see what sees what is wrong and she helps him two animals one animal comes to see the other animal one animal looks at the balloon that she has,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +she is he is taking it off of the wagon and it flies away then one of them gets really mad then they see the balloon man and he probably goes to buy her another one and she asks for one balloon and the balloons are five cents and he is looking in his pockets and he is sad because he does not have five cents and then the doctor is just looking at the view,0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and he goes and asks for five cents and she gives the balloon man five cents and then they both get balloons an elephant is playing ball with a ball and then a giraffe is just looking at looking at the elephant like wow and the now the the elephant was bouncing it and it fell into the water and now the elephant is sad so looks like the giraffe is going to go get it and now the giraffe jumps in and is swimming to get the balloon the ball,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 +and so now she got it for the elephant and the elephant is helping him out and now the elephant is happy and the giraffe is happy too um hm um they are standing in front of a pool the giraffe and the elephant and looks like they could be feel like swimming that is all and now the elephant sees the diving board and the elephant wants to go diving into the pool and the elephant is running to go get to the diving board,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and the giraffe is running after her and then she fell and hurt her knee and looks like she is going to cry and the giraffe is running to help her and then the lifeguard comes and is helping her and the giraffe is helping her too and now she is crying and the lifeguard is putting a bandaid on her leg and now the the lifeguard is carrying her to a bench and the hiraff the giraffe is helping her,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 +and the lifeguard is mad and is say and is telling her look at the sign it says no running on it and the giraffe and and the um the elephant looks like he is looks like she never i dont know i can not i dont know what she is doing let us see like hm like he is going to get very mad at her now the giraffe has a little airplane and the elephant wants to play with it too and now the giraffe is trying to make it move and the elephant is looking at it like wow and now it is the elephants turn and the elephant is trying to fly it now and now the giraffe is looking at his plane because the plane fell into the wa swimming pool,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 +and now the giraffe is mad at the elephant because his airplane is sinking into the water now the lifeguard looking at them and they are looking back at him now she is trying to the elephant is trying to explain to the lifeguard that the plane fell in and is asking if they can he can get it out for them and the lifeguard is trying is on his knees trying to ah get it out of the water and both of them are looking at him and the lifeguard looks like he is using all his might and now the lifeguard could not get it and the elephant s felt sad and so did the giraffe,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 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 1 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 +now a lady comes and she has a little net she said she would get it for them the airplane and now she is using all her might and looks like she got it and then she got it out for the li for the giraffe and the giraffe was happy and now the elephant and the giraffe are both are both happy again um two a bunny in the sandbox making a castle and another one is out on the outside going to come in and then now they are both making a bigger and bigger one,0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +and that is all that is all i can see and then one of the bunnies is pouring so much sand on and the other one is i think it is scared or something and now the sand now the sandcastle was broken and the other one just looked normal and now she is trying and trying to make a b another one because it is all broken two bunnies are walking along in maybe a forest or something and they are holding a picnic basket two picnic baskets and now they are having a picnic and all and they are eating,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +actually one of them is eating with all the food and the other one is just sitting there with his sandwich in his hand and now they are both eating and now one of themis eating and the other one has a stomachache and the other one really does not know what to do because he has a stomachache and he and he is getting dizzy and then a doctor was walking along and the other one came and told the doctor that he was that he had a stomachache and so now she is pulling the doctor to come and get the person the rabbit actually,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 +and now the doctor is operating on the guy little bunny now the little bunny is fine and he is going home with the doctor and the other one is sitting by the sand box thing or whatever the big picnic picnic thing now the two bunnies are walking along and one of them is pulling a wagon that has a balloon attached to it and now the other bunny never noticed the um balloon and is looking at the balloon and pointing at it pretty funny now the the bunny is trying to untie the balloon and the other one is looks kind of scared,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 1 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 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the balloon flew away and they are both hopping and trying to get it to catch it and the balloon gone and one of them look is just looking up and the other one is very mad now the other one sees a man selling balloons and then so he is walking along k to get a balloon for the one he made fly away now he is say he is saying to the thing the man can i have a balloon looks like it and now he got now he did not have any money for the balloons,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and li and uh the guy said it is only five cents for a balloon and then hm he looks um he looks weird now they are both looking at the guy and the guy looking down at them while he is holding the balloons and now she is running to one of the rabbit guys are running to the doctor that they saw before and the doctor there she is running to the doctor maybe to get some money and now she is he is um showing the bunny what he needs what she wants and now she is paying for it and both of the kids are happy and now they both got a balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 1 0 1 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and they are happy and the doctor is happy too it is over there was a um elephant that had a ball and um a giraffe wanted to play with the balaloo the ball too but the balloon accidentally gotinto the w into the swimming pool and and the elephant was very worried that it would it would it might sink and then the cow the giraffe came over to s to get it swim after it to get it and then he got it and he gave it to the elephant so she could play with it with him,0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 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 +and then the elephant and the giraffe came came to be friends and also they wan and they also played t with the ball together the end there was an elephant and um a g gir giraffe and the elephant ran over to the diving board and then she accidentally slipped then she and then then the giraffe came running after to see if the elephant was okay and then and then then the elephant started to cry because it really hurt she scraped her knee then the lifeguard came running over and said do not cry,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 1 0 0 1 +i will help and then he put on a bandaid on her on her scraped knee and then then she stopped crying and then the lifeguard helped her get onto the the bench so she could go over and rest her knee for awhile and then she can go back swimming and then she did not then the lifeguard said you must look at the signs that say no running or no doing anything just in case there was something slippery or you can not go on the diving board the end there was a giraffe that had an airplane and he really like it lots,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 +and then an elephant wanted to play with it and then he started playing with it even more and then the elephant wanted to play with it then the elephant grabbed it from the from the giraffe and then he was very angry and then it fell into the water and then they could not get it so they so they did not know what to do and then giraffe got very very angry at the elephant and then the lifeguard came over and and said what is the problem,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 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 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 +and elephant explained i grabbed the the toy airplane from the giraffe and then i accidentally threw it into the water and then the lifeguard tried reaching for it but he could not get it then the giraffe started to cry about he liked it then somebody came over with a net so they could get it then she reached over and got it for them then he got it back and he really really liked it again and then the elephant really really wanted to play with it,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 1 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 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +but the giraffe was too busy playing with it the end there was a bunny and dog they wanted to build a sandcastle together and then the bunny took too much sand and then he dumped it onto the castle but the castle got ruined accidentally accidentally and then the dog was sad because her castle got knocked down the end there was a dog and a bunny,0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +they wanted to have a picnic together and they each took out all of their stuff from their baskets and ate and they ate and ate and ate until the bunny got so full he wa he felt like he was sick and then the puppy dog went to go and get doctor somebody who could help and then and then the doctor came over and helped the dog and the bunny and the bun and the doctor helped the bunny be all right again and then the bunny got taken someplace where he could be all right the end there was a dog that had a balloon hooked up onto her little wagon then the bunny wanted to have the balloon,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and so the dog let the bunny look at the balloon and then the bunny untied the balloon and then he lost the balloon but then the dog very an very sad then the dog get got very angry at the bunny and then they saw a a s a person that was selling some balloons an and then they came over to him and said can i please have another balloon a balloon but the rabbit but the little rabbit came over and said can i please have a balloon but the person said no you need some money and then he and then he showed him how much money he n how mu how much money he needed for a balloon,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 1 +i and it was quite a bit and he did not even have any money so they could not get another balloon for the little dog and they and they were very sad and then they came over to a doctor and and the little bunny said can can you please help us get a balloon and then the doctor said all right i will get you a balloon and the and the doctor gave the the person um as much money as as they needed and then they enjoyed their balloons again,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +the end there was an elephant playing with a ball near the pool and the and a gira and a giraffe came wanted to play too the ball fell right into the pool the giraffe swam right towards w jumped into the pool and went to go get the ball the giraffe got the ball for the eleph baby for the elephant and the elephant likes the giraffe that is all the elephant and the giraffe wanted to go swimming the elephant was going on the diving board,0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +the elephant was running then she slipped she h cut her knee the lifeguard came the lifeguard put a bandaid on the lifeguard put the the elephant on on a b the bench w and the lifeguard pointed to the sign that said no running the giraffe was playing with his toy plane h um he did loops and stuff with his plane the elephant grabbed it,0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 1 0 0 1 0 0 0 1 1 0 0 1 0 1 0 0 0 1 0 1 0 0 0 0 1 1 1 1 0 1 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 1 +and it landed in the pool the giraffe was very mad the lifeguard came to s to see what the problem was h he uh the lil the little elephant told everything what happened the lifeguard tried to get the air the plane but he could not reach it then then a then an elephant with a net came the elephant with the net scooped out the plane and gave it back to the giraffe and he was happy again there is a little bun a bunny and a th and a dog,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 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 1 1 0 0 0 0 0 0 0 0 0 1 0 0 1 +they are going to play in the sandbox the dog was building a sandcastle and the wa the rabbit was putting sand in a bucket he the rabbit dump dumped the sand on the sandcastles the rabbit and the do the ra the rabbit was like what happened and and the dog was trying to rebi and the little dog tried to rebuild it the little dog and the rabbit they saw were going for a picnic uh uh the the dog had a sandwich and the rabbit had carrots sandwich cake chi he had all kinds of st stuff,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 +then he then all his food was gone then he felt sick the dog ran to get a doctor sh the dog showed where the doctor where where they were having the picnic the do the doctor they were saying ah with his stick and i think that is what he did then he felt all better the little dog was pulling a wagon with a balloon the ra and the rabbit came along the rabbit saw the balloon on the wagon tied to the wagon,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +the rabbit untied the balloon the balloon floated away the dog was very mad the rabbit ran to a balloon man the rabbit wanted a balloon h he he had no money so they so they were very sad then the do then the doctor was walking along and the rabbit went to ask for some m went to ask for some money sh sh he told the the rabbit told the doctor everything,0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 1 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 1 0 1 1 0 0 0 0 1 1 +the ra the doctor gave money m money to the balloon man so they got the two balloons and now they were very ha and they were very happy uh he walks to a horsey and then the horsey fell falls down then the horsey fell in the water and then he gives the ball back to him and then they play with it and that is the end so um he goes in the sandbox with the elephant,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 +and then they walk in the into the sandbox and then they walk into the hill and then they laugh and then they got a scr and then elephant got a scrape and then he then he started to cry and then he he sat up and got a bandage bandage and he said are you okay the end um he found an airplane in the sandbox and then he and then the and then he flies it up in the sky,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and then he stands up and then he stands up in the sandbox and then they br broke the airplane in the sandbox and they dropped it and then he he it was stuck in the sandbox forever and then it was more stucker and then a lifeguard came and get it and then he got it with his and he reached it with his arm and then they were sad the lifeguard got it for him and then the lifeguard poured on the net,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,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 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and he got it and then he said here you go and then he keeped it forever the end he the dog goes in the sandbox and then he starts making the sandcastle and then the rabbit spills on it and then he and then it is all gone it x up then it was all covered up,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 1 0 1 0 0 0 0 0 1 +the end he goes looking at his favourite friend then he goes and stickes out his tongue then he had a drink and then he lies down in the sun and then he walks away then he pulls on his shirt and then he and then he talks to him and then they walk away he comes along with a balloon with with his wagon,0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +then he comes and then he walks with him then they stopped and walked in the snow then they lose the balloon and then they stop and get angry then they walk away and saw a man with balloons then they said to him balloon and then he gives him one and then they walk away and then they think the rabbit the big rabbit,0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 +and then they walk to his mom then they walk to their mom and then he comes and walk to the lady and then he comes and then he gets a ba another balloons balloons the end a horse a giraffe and an elephant were bouncing a ball the ball in the pool and the giraffe was scared then the giraffe um went in and swam and got the ball out then the elephant was happy,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and the giraffe was all wet and they were both happy the giraffe wa was scared to go in the water again so the elephant went in and she saw a diving board and she decided to go on the diving board and jump and then the giraffe said maybe that is a good idea the elephant went slipped and fell and the giraffe was running to the diving board the elephant hurt her her knee,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 +and the giraffe was scared so the giraffe helped the elephant the lifeguard came and saw the giraffe um was taking care of the elephant the lifeguard put on a bandaid it did not hurt any more so the giraffe did not look scared any more and the lifeguard was happy and then the other elephant the lifeguard looked at a sign and it said no running the giraffe and the elephant were happy,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +so they decided maybe we could fly a the giraffe decided maybe he could fly the airplane in the water and then got and then the elephant could dive down and get it and then the giraffe would throw it again into the water and the elephant would keep on getting it then it then it was then it was wanted real crazy so the elephant let him the giraffe would make made a tongue the elephant grabbed it from the giraffe and the elephant looked and the giraffe looked scared and the elephant looked happy,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 1 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +the elephant threw it and it went in the water and the elephant looked scared and the giraffe did not know what to do the giraffe got mad at the elephant and the elephant got sad the lifeguard got mad again and they both got and they both did not know that again so the lifeguard looked nervous because the elephant looked scared and the giraffe was sad,0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 +lifeguard was going to get it so the lifeguard was trying to get it and the giraffe and the elephant looked nervous the giraffe started crying and the elephant was sad and the lifeguard was nervous oh then another elephant came with a net to get it out of the water so the they could have it back again and he tried to get it out but it mm it she tried tried a lot but it would not come out,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 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 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 +then he got it out and they were happy then the giraffe was happy and the elephant was too a bunny and a dog were building a sandcastle the bunny got scared and the dog was nervous they made a sandcastle then they both were happy they poured and the rabbit poured sand over the dogs sandcastle,0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 1 0 0 0 1 1 +the sandcastle broke down and the rabbit was the sandcastle did not break down and the rabbit was nervo and the dog was nervous and then the dog um tried to build it up but he was crying and the bunny was nervous the dog and the and the bunny were collecting coconuts and berries and they saw each other and then they said hi to each other and then they were happy,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 +and and they and they had a picnic they went home first and then they went back to the spot they were going to have a picnic at and then the bunny ate a lot and the dog was nervous and then the bunny ate too much he got so fat and the dog um ate the rest the rabbit did not feel well and the dog was nervous,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 1 +so the dog called the doctor and the doctor came and then the dog told him that the rabbit ate too much so he did not feel well so the doc so the dog dragged the doctor there because the rabbit was not feeling well the doctor saw that the dog that the rabbit was not fee feeling very well so um the hh he he was scared and then he felt then the doctor made the rabbit feel better and the dog was happy the dog mm pulled the wagon with a balloon tied onto it,0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 +and the rabbit saw that the dog was pulling a wagon with a balloon on it the rabbit wanted the balloon and the dog looked nervous the rabbit tried taking off the balloon the dog looked scared the rabbit was sad because it when he got off the balloon it started floating away so they were both and then one um wen and the rabbit was sad and the dog was scared the rabbit was nervous nervous and the dog was mad,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 +there is a balloon man over there uh it it was going to another bunny hu him too can i have a and the and he said um can i have a balloon and the dog was way back there so the and the rabbit was up to get a balloon and then the guy the balloon man said balloons five cents so the rabbit checked in his pocket for any money but he did not have any the rabbit looked shy and the dog did not look shy,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 +and then the um man looked nervous the doctor was coming and the rabbit was running to the doctor and the balloon man was selling and the dog was nervous and then um he showed the doc the rabbit showed the doctor um that he wanted a balloon to buy to five cents to buy a balloon so he could have a balloon and the dog could have a balloon then he gave him five cents for each balloon and then the balloon man gave him two balloon and then they were were happy and the balloon man was happy,0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 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 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and the rabb the doctor was kind of nervous the doctor was real nervous and they were both real happy uh uh the the elephant and the zebra the the zebra were going playing ball and that was on this page and and then and and then um and then the ball falls in the water and then zebra goes in to to swim to it the and then the zebra brings it to the elephant and the elephant felled in love with the zebra fell in love with the what,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 +zebra oh they went on the they are going to go on the diving board and then she goes running to the diving board then she slips and and hurts her knee gets a scrape on her knee and then the lifeguard comes to put a bandage on it and then she starts screaming and then she w and then she does not puts her leg up like it is broken then the lifeguard says no running the z the zebra finds a a plane,1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 1 0 0 0 0 0 1 +and the elephant said wow and then he starts flying it then elephant grabs it from the zebra and then then sh and then she started flying flying it and and and then she drops it into the water then it floats and starts sink sinking then the lifeguard comes s and then then the little boy zebra said can you get my plane and then and then the zebra said the elephant was flying it and then she dumped it into the water,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +the elephant lifeguards arms tried to grab it but she he could not then the l then the lifguard gived her trouble a and the zebra was crying and then she go and then the and then the mom gets a net and s and grabs it out of the water and gets it for the little boy then the boy was happy and they started hugging it and it was done the end there is m they are ma they are making a sandcastle,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 1 0 0 1 1 0 1 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 1 0 1 1 0 0 0 0 1 +and then a friend came and then he dug he digged some sand and put it in a bucket while the other kid was making a sandcastle and then he dumps it on the sandcastle and then and then the rabbit was mad she uh the other one st and then the mouse starts crying the end they go for a picnic and the mouse and the rabbit goes for a picnic the rabbit starts eating loud and then the rabbit got fulled while while the mouse was eating lots of sandwiches and ju drinking juice and then the rabbit ate some more,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and then he had a and a and then he got sick then the doctor came to see the rabbit and the doctor was not then the and then the mouse was dragging the doctor and then the doctor see said s seem seen what is wrong uh and then he got all better they are going to the circus and the balloon pops he ties up another balloon then it flies away and then there is and then they can not move their wagon,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +there there is a balloon man and the rabbit says i want one of those balloons um and he can not buy any because they are five cents and then he and then and then he and then he dumps his pockets out and he goes to go running to his dad to ask his dad for a balloon for his friend and the doc and then then then his dad sa says okay then they bought two balloons and then they pop them he said hi i love those rocks,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1,1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 +then that rock is falling and he that one is swimming and he gave that rock and he play and he can play with it now the end and uh b there was is elephant and this one he was jumping over an and they can run faster hm were you going to help turn yep,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 1 +okay he said i want to go run faster and jump over it and he said you are not big enough and he said oh yes i will she ran and and then slipped uh and he will say y ouch and that hurts he has a booboo and he tell his mom and then he still cry,1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1,1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +then he sit on it and he could help and do not play on the rules on the the pools once upon a time there was the this one is re really sheal he he said i like your airplane he said thank you and then it flies and he will catch it and he catch an airplane it does not fly but suddenly he the airplane did not fly up,0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 +he looks so angry and then and he said what is the matter he said i was dropping it and and he take it and it falls down then why did you did that i did not do anything he said maybe i can get it and it is too hard maybe maybe i could try again,0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +i will catch it in that net he scoop it up and that airplane works and he is so happy the end a bunny l loves the dog and they shovel the and they and that dog build a castle and the castle and that bunny just well it will fall down the castle and that bunny he he melt them he did not do it,0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +they fix it up he waved at bunny and they eat some snacks and the rabbit is tummy is full and they got a tummyache he tell him he just look at it he just got a tummyache she really not feeling all better then she feels all better,0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 +he waved at the dog and he gets the balloon then he show at the balloon then she pull it up he did not she did and it go up and he was mad it she tell them and he look at the balloons and he said would you please get that balloon,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 +and this present number five and they love them and they tell him again and he said the balloon will not get it wo he will not get it back and they all had two balloons and last year they have a balloon the end the zebra was going to the zoo and the elephant wanted to come and show them his practice at the circus and then they saw something inside a water,0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +but the giraffe wanted to get that ball because the elephant dropped it and the elephant said thank you for getting it the elephant wanted to go swimming but it ran jumped into the pool and it hurt itself is that what is on this page the elephant ran then when it ran it just ran fast and then it um it fell down and it hurt its knee,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 +and then another elephant came what was the lifeguard he and the lifeguard saw the elephant hurt itself then the lifeguard said you can not swim without a lifeguard if it tells you and it said go on the bench and no more going swimming until you calm down and i say so the zebra w the giraffe wanted to put his airplane in to see it swim and it and it did and then it went in the water and the giraffe did not know how to get it out but then the elephant took it from it,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and then it dropped it in the water and then the lifeguard did not know how that it airplane got in said um that is the giraffes airplane and the lifeguard tried to get it but he could not reach it and the giraffe was sad because nobody could get it then another elephant and it got um a thing what you catch fish with and it tried out to do it but it got it the airplane,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 +the elephant who caught fish gave it to the giraffe and giraffe said thank you giraffe was happy he was making a castle in in the beach what he got the sandbox he won and he made a castle there then when he was done making the castle he wanted to make another one and then he tipped sand on it but he was afraid if it was going to crash and it did crash,0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 +but he had to make another one but it was hard to make they were going to go and have a picnic and the bunny wanted to come and he said yes they eated carrots and they listened to some music and the bunny rabbit was full and the puppy dog was not and then the bunny rabbit got sick,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 +and the puppy dog was not very happy and then um the bunny rabbits grandma came and the puppy said the bunny rabbit is sick and they said come here come here and she came and she looked at the bunny rabbit and said you are sick then they went back home the puppy dog was all alone having a picnic they were going to a circus and they brought a wagon with a balloon on it,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then bunny wanted to grab the balloon but the puppy dog would not let it so it said it is putting it in a knot he said then it flied away and he was mad at the bunny rabbit and then there is a man with a whole bunch of balloons and puppy dog was mad but then the bunny rabbit was not he wanted some balloons and he said please can i have a balloon,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 +but the man would not let him he had no money but the puppy dog did so the pup but then the bunny rabbit saw another bunny rabbit asked can i come to wherever you go can i have a balloon if you have some and he said but then he realized that is not a man that is a girl said y yes then he gave her a balloon the that is a giraffe who is laughing with the elephant,0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +and then he saw the ball and then the elephant was scared and then the giraffe gave him the elephant the ball and then the giraffe came up the sidewalk and then the giraffe came up the sidewalk the the giraffe and the elephant were too scared to jump in the water and then the elephant was laughing but the giraffe was like ssss scared and then the elephant s was like tripping and then the elephant was hurt his knees and then the elephant cried,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 1 +then the elephant camed home and then the elephant was laughing and then the swimming man said he was pointing a hand the swimming man was what pointing his hand the elephant was laughing and the giraffe was laughing and then they were playing with the airplane and then the elephants turn to play the airplane but they dropped it in the water,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then they the elephant was scared but the giraffe was angry and then the swimming man was all mad at them but he said what happened and then he was like wo saying uhoh and then he was trying to get it but he could not and then the giraffe was crying and then the girl was trying to get a fish tank and then get it and then she got the airplane,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and then sh she gave it back to the giraffe this one the bunny was digging but this girl came and then dig and then they they both shared then they put it on together but that girl was scared and then they were like all sad and they made it back again the bunny said hi and then they went to a field tr trip,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 1 1 1 +and then they ate carrots but they guy did not got nothing and then they they both um shared food and then the f the bunny um dranked and the bunny was fatter and fatter and fatter and but he flew it off to this doctor bunny and then he s told the doctor that he is fff he needs help and then he said go to the doctor and then the doctor ss went to the dd to his workshop this guy was holding a balloon with a little car,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and then he was saying look my balloon and then he pulled it off and give it to the the other guy but it flewed up the sky and then the dog was all angry and then they ss and then they sawed the balloon man and then he said can i have that and but it was five dollar and then they were all sad but they saw the doctor and doctor can we buy this,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,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 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 +can we buy the balloon doctor and then the doctor s gave him the money th then they b got another balloon first there is an elephant and a giraffe and the elephant is bouncing a ball turn and the elephant i think bounces it into a pool and then the giraffe dives in to get it and then the giraffe comes back and gives it to the elephant and the elephant looks like he said th looks like he is saying thank you,0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 1 0 1 +um there is a giraffe and an elephant standing by a pool and there is a sign that says no running so the elephant points at the diving board and she runs over there and she slips and she scrapes her knee and then the lifeguard comes and help and puts a band bandaid on her then she then he put put puts put her on a bench to sit down and then the lifeguard points his finger out saying bad i think there is an elephant and a giraffe,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,1 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 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 +and the giraffe is flying a toy plane around and then the elephant um looks at it and i think says that is interesting so the giraffe gives a turn to the elephant and the elephant is th um threw it into the pool and the giraffe gets mad at the elephant so the elephant asks the lifeguard to help and then talks to hi the liteguar the lifeguard what happens and the lifeguard tries to reach and get it then the lifeguard does does not know what to do and the giraffe goes on his knees and starts to cry so a dif i think a person that swims takes a n takes a net and tries to scoop it,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and she s scoops it up and gives it back to the giraffe and the giraffe holds it by like this by his neck and the elephant um has his hands like this like that in front of the giraffe there is um i think a bunny and a dog and the dog built a sandcastle and the bunny i think wants to help um the dog is smoothing the sides out while the bunny is digging sand out for the sandcastle and then the bunny pours it all over the sandcastle and he and it destroys the sandcastle and then the dog cries and tries to build a new one,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 1 +um there is a bunny and a dog that have their baskets with uh f food in them and then the bunny dumps it all dumps it all out and the dog just takes it one at a time and then the dog is still eating and the bunny is laying on the ground with all this garbage around and then the dog is drinking a juice box and i think the bunny feels sick then uh and then the dog i think finds a doctor and the dog is pulling the doctors sleeve over to where um the bunny is laying down and the the doctor takes a thing and this little stick and like points at something,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 +and then the doctor brings the bunny i think home and uh the dog is standing b just standing still with a th a thing behind her back first um the dog is pulling a wagon with a balloon attached to it then the dog drops the handle and the bunny tries looks at it and then the bunny tries to untie it and it s blows away into the sky and then the dog gets mad at him and then the the da the dog is mad the bunny runs over,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 1 1 0 0 0 0 0 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 +and he sees a a balloon man selling balloons and the bunny takes one of the balloons and and on one of the balloons it says balloons five cents and then the bunny pulls out the inside of his pockets and he has got no coins so the balloon guy was holding the balloons and the bunny has his hands in his pockets with the dog behind him the um the the the p dog is standing by the balloon guy and the rab the rabbit sees this this p this girl this lady and then i th she tells he tells the lady to i think b get him a balloon,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 0 1 0 0 0 0 1 +and then the the lady takes out her wallet and puts some coins in her hand and they uh each get a balloon the elephant start the elephant starts screaming with the elephant starts doing with his trunk he s makes lots of noise do you know about the elephants oh it does not it is your story you make it up whatever you think and then they saw a egg in the water swimming they want to pick it up the elephant said uh why there is a egg,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 +i want to jump in the water and get it ah the guy swim in the water to catch it and the elephant is doing this and then the guy um swim and he give the thing for the elephant the elephant said wow and then the elephant went away the end they saw a water they want to swim in there,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 +it is like the two guys the elephant and that guy same and that is it and then the elephant said look i want to swim in the water and then they start the elephant was first the guy was behind him and he starts running i do not know what is he running for,0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and they still run again know what is he running for too and then they stopped and the elephant fell and it hurt his leg that is funny part and then a elephant came and squeezed his and then he put a bandaid and that is it elephant came,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1 +and that what is what is this guys long neck what is what is this guys long neck what is his long i can not see it it is your story you make it up and he got a helicopter he flied it in the air it fell in the water it keeped flying in the sky it could not get down he was going to catch it,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 1 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +he could not okay shall i turn now oh he he wants to fly it right now the elephant is like this oh you showed me again with your face and then and then he wants to fly it the elephant catched it he must have wanted to fly it and then it fell in the water uhoh and then that guy gets mad on the elephant cause it is because it got s um it is got snuck down,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 1 1 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 +and it got stuck now and then the other guy said here is the bigger dad and the eleph the other guy the other one said look the helicopter sneaked down oh the guy the guy is trying to catch it it gots all the way there and then they could not catch it that is a long one and then the guy got a like net oh the net catch everything,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 1 +he catch fish but it is hard to catch fish they are fast and helicopter is it is just a toy down there you can catch it fast okay should i turn and then the guy catched it and he give it back to the other guy and then the elephant is really happy and he went,0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and he what the ele elephant is happy and he went because he got that thing the end the other guy was building his sandcastle and the other guy with glasses they was happy and then turn the page now and then the guy w wants to mix it because he can not see or watch the guy put the pail,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 +it is going to wreck it now it is lots of sand and then he wrecked it that guy that is his sandcastle he wrecked it and then the other guy build another sandcastle but it is not nice the end the guy said bye to the guy the guy with the glasses and then he went,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 +and he sit and he was playing with the sand they was eating and snow uh and snow came down um and then they was cold and they went in the house and then they came back out and it was so windy and then they came back out it was raining,0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 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 1 0 0 0 0 0 1 0 0 1 +and when they came back out it was sunny and when they came back out it was windy again and when they came back out it was sunny the end um the guy went with the pail with a balloon on and then they see it they want to get it to the sand they could not find the sandpile and then and then the other balloon fell in the sky balloons can fly in the sky when it is windy because it is not heavy,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and then the guy wants to take it off whoa it forgot to go it is not hanging in tight like that it is like this flied off it is gone he can not catch it in the air oh yeah if that guy was with it then it is windy so hard it can fly with it if it is hanging on,0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 1 +oh it is flew he took it out and it flied up and then th and then the balloon pop and the guy was mad and the other guy was sad and the other guy bought lots of balloons and he gived them to the kid and the other balloon popped the last one and then the other one popped that is it,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1,0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 1 0 0 1 +and then another one and then it is not going to pop and then okay anything to say about this page here um page eleven and then the guy look look how many balloons he say and then he give him some money and he and then they jumping to get the balloon the guy can not see,0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 +they just gather by his hand and he went and then they hung on their arm and then they hanged on on the balloon they hanged on on a balloon and then they smiling the end it looks like a giraffe and an elephant that are going swimming and they are playing with a ball although it although when um they were playing with it it um maybe bounces in the water and the giraffe tries to swim and get it,0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the giraffe got it and gives it to the elephant and the elephant thanks him and the giraffe is smiling it looks like they might want to dive in and go swimming looks like the elephant is pointing to the diving board to um and he wants to dive and um the elephant starts to run although it is slipery so she starts to slide and she falls and hurts her knee,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 +and then um the lifeguard comes and he puts a bandage on it then he um saying probably that there is a no running sign and that you can not that you should not run cause you can slip and fall and then he is pointing to the sign that says no running looks like they are talking about something and then he and then the giraffe looks like he is showing her his new airplane and she looks like she is getting dizzy watching it going around in circles and she takes it from him and starts to looks at him and the giraffe looks like he is getting mad and then she accidentally dropped it in the water,0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and she looks like sh she is scared or something and the giraffe looks like he is m really mad and then the lifeguard comes along and probably says what is that and what is it doing in the pool and then the elephant is probably blaming it on the giraffe that he threw it in the water and the lifeguard is trying to catch it trying to pick it up out of the water although he can not reach it and the giraffe looks like he is getting really sad so he starts to cry and then this lady elephant comes along with a net and she tries to fish it fish it out with the net,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 +and she gets it out and gives it back to the giraffe and he is all happy and he is hugging it it looks like two it looks like a bunny and um and a dog or something playing in the sand and they start and the bunny looks like he is helping the dog make a sandcastle and the bunny pours a whole bucket of sand on it and the dog looks like he is getting sort of worried and the bunny s gets surprised because it is all covered in sand and the dog starts to cry and the bunny looks like he is embarrasseed,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +it looks like the dog is going for a picnic and the bunny is coming along with him it looks like the bunny is looking at all this good food that he wants to eat and he eats it all and he and he i guess he has a stomachache and then he starts to feel sick and it looks likes he is fainted and the puppy the dog goes to find somebody and he fi h um he finds this um lady and he pulls the lady to where um the bunny dropped out,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 +and the and the lady was a doctor so she tested him to see if he was awake or not and she took him and she is probably going to take him back to the doctor office to check him up it looks like she is pull the dog is pulling a wagon with a balloon on it and the and the bunny is coming like running along and he sees the dog and he is waving and the rabbit pra um looks like he is saying um like nice balloon and then the bunny tries to pull it off,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 +and the dog looks like scared that it will fly away and then the bunny accidentally lets go of it and it starts to fly up in the air and they are trying to catch it although they can not and the bunny is looking up at the balloon and the dog is getting really mad and then this um old bun this bunny is selling balloons and the bunny sees it so he runs over and then he asks the bunny the older bunny for a one of the balloons,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and then the balloon man said that the balloons are five cents and the bunny looks in his pockets and he does not have any money and the bunny looks sad because he can not buy another balloon for his for the dog and then the bunny walks over to this lady and he asks her for some money and the lady gives him five cents and then they each got one of their own balloons there is an elephant and a giraffe by the swimming pool and the elephant is banging a ball with his trunk,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and the elephant kno accidentally knocked the ball inside the water and the giraffe had to go and get it he had the giraffe had to swim inside the water to go and get the ball the giraffe got the ball back for the elephant and the elephant and the elephant was happy to get the ball back the elephant and the giraffe are standing by the water the elephant ran closer to the water the elephant slipped and the giraffe is running to s stop the elephant from falling on the ground and the elephant fell on his her knee and hurt it,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 +the giraffe is trying to fix the elephants knee and this oth another elephant came and put a bandage on it and all the giraffe the elephant and the other elephant are the giraffe is sitting down and the gg giraffe is standing up and the elephant is still the other elephant is standing up and the girl elephant is sitting down the elephant is the elephant and the giraffe are happy the giraffe is playing with a toy plane and the elephant is looking at it and the elephant took the toy plane and started to play with it,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the elephant dropped the toy plane inside the water and the giraffe is getting mad at the elephant and the lifeguard came and s looked at the toy plane and then the elephant was looking at the lifeguard and the one the giraffe is looking at the plane and the ele the elephant asked the lifeguard to get that plane out the lifeguard is holding onto the edge and trying to get the toy plane out and the elephant and the giraffe are looking at the plane and the lifeguard can not get the eleph the um plane out so the giraffe started to cry,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 1 0 0 0 0 0 1 +and the and another lifeguard grabbed a net and tr and tried to get it out and the other lifeguard um caught it in the net in there and um the everybody was looking was proud and that other lifeguard got it for the giraffe and the giraffe was very happy and the elephant and the giraffe are very happy to get the plane back there is a rabbit and a dog playing in the sandbox and the rabbit and the dog are making a sandcastle and the rabbit fulled the bucket of sand and broke the sandcastle and now the rabbit is a bit frightened of what happened to the sandcastle,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 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 1 1 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 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and the dog ha is trying to make the sandcastle all over again there is a dog and a rabbit they are going to have a picnic and the rabbit took all the food out and is getting very hungry the rabbit ate all his food and the dog is still drinking and eating his food very nicely and the rabbit is very ff full and the dog is still eating his food and the dog sees a doctor and ran over to the doctor and the doctor is the dog is pulling the doctors leg arm to move it over there,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 +and the doctor is gon going to take um the the bunnys the rabbits uh is going trying to fix the rabbit and the rabbit is all better now the rabbit is running over to the dog that is pulling a wagon with a balloon on it and the rabbit is trying to grab the balloon and the rabbit is untying the balloon from the wagon and the dog is very proud and then the balloo the balloon slipped out of the rabbits hand and went flying up in the air and they are all try and the rabbit and the dog are trying to catch it and the dog is very mad at the rabbit and they s and the rabbit sees another man selling ballo a balloo a man selling balloons,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 1 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 1 +and he bought one the rabbit bought one balloon and he and the rabbit has no money for balloons and th and the rabbit and the dog are trying to get a balloon and the rabbit went to th to the to this other rabbit to the doctor and the doctor saw him and the the ra other rabbit is pointing to the balloons and the doctor is buying a balloon and both of them have a balloon the girl has three ba balls and she is and there is a a big one and a medium sized and a small ball,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and and there is um a giraffe that would like to play with one by accident he s the girl throws the ball into the pool the giraffe goes try he is in to swim for it he gives it back to the girl and says that is okay he is smiling at the girl the girl elephant and the boy giraffe are looking at the pool okay can you talk a bit louder cause someone is making noise out there what is next the girl the girl is running the girl is running mm okay,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 1 0 0 0 1 1 1 +she she accidentally slips and she hur and she hurts her knee and now she is crying crying the lifeguard comes running he put the bandage on on the um bruise and she now she is sitting down on the um bench he points to the sign that says no running and she was running the boy giraffe have a toy airplane and the girl giraffe the girl elephant is asking to play with it,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,1 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and he wa and he um and he is showing her how to do a loopdeloop with the airplane and then sh and then she takes it sh she is looking at it like it is hers she accidentally drops it into the pool the um gira the boy giraffe is getting mad at her the la the l when the lifeguard sees he he is kind of happy and he is kind of mad the girl the elephant is telling hu him what happened he is trying to reach out to get it the boy giraffe is crying because they can not get it,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 1 1 0 1 0 0 0 0 0 1 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +the the other gir there is another girl elephant that has a net and she thinks that she can get it and she can get it she giving it she is giving the toy airplane back to the giraffe and he is hugging it because he loves it there is a rabbit that is making a castle and there is another rabbit that wants to help that rabbit make the castle they they are helping make the castle together one one is building the castle and one is making the walls,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +one one one is ac one accidentally pours the sand right onto the castle and the other one looks embarrassed uh after he pours it on all there is is a tower from the castle and it is all gone and the other one is kind of smiling but one has a frowning face and that other that other wa one that had a that was smiling is now crying and the other one is thinking of what he did that is the end of the story there is two there are two rabbits,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 1 +one is running to the other with a pis picnic basket and the other one is holding a pis picnic picnic basket one said one has opened up his picnic basket and he is eating all the food and the other one is s still opening hers up when he is done all his food he kinds of he kind of faints and the other and the other one is still eating uh he feels kind of sick and and he the other one is still eating the one that was still eating ru runs to get a doctor,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 +and and he is telling her him her what happened to her friend now she now she is pulling the doctor to her fr her friend the doctor is speaking to the boy and to tell him not to eat too quick now the boy is all better and now and now the girl and the boy is going home there is a girl that is pushing her wagon and uh there is a girl that is pushing her wagon and on the wagon there is a balloon and the boy and the boy rabbit is chasing after her he wants he wants the balloon so he reaches out,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 +and she is kind of have a frowning face what kind of face a frowning face oh frowning okay when he gets his balloon the gir the girl um kind is saying hey and he is playing and he is tying it to his wrist he lets the balloon go and it floats away the girl is getting really mad at the boy,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 1 1 0 0 0 1 0 1 1 0 1 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and soon they see another rabbit that ha that is holding balloons when the bo when the boy s when the boy sees that he asks if he can have a balloon the man said it is five cents and the boy does not have any money he says it is okay maybe next time you will have some and when the boy sees the doctor he asks if he can pay for the if sh she can pay for the balloon for both of the balloons i sa the doctor says y yes and um they both get a balloon right here she is paying,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 1 1 0 0 1 0 0 0 0 1 1 1 0 0 1 +and they both really like their balloons there once were two friends and they were playing a game and they wanted to go swimming so then they got there and then they were playing and the ball fell in the pool so one of the friends swam out and got it and then they got it and one of the friends she took it out,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then they wanted to play again there were two friends and they were the same one in the last story and they wanted to go swimming again so they went and then one of the friends she wanted to go in right away so she ran and sh and she wanted to jump in but then she fell and she scraped her knee,0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 +and the lifeguard came and he said oh it is all right here is a bandage here you can sit here and wait til it is better and then she was happy she took a little rest there were once two friends and they wanted to go swimming so they went and one friend bought brought an airplane,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 +the other friend grabbed it and said wow an airplane and then she accidentally dropped it in the pool and then the other friend was a l little bit mad so then she said uhoh and he went and then the lifeguard came and he went hmm and then she said i i accidentally dropped the airplane in the pool he tried to get it but he could not reach,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +so then the friend that ha had the airplane he was crying and then one lady she came and she had a net to get it she said do not worry i will get it and then she went and got it and then the he was happy again and then they were both happy and she was happy he got his airplane back once there were two friends,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,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 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 1 +and they went and they wanted to play in the sandbox and they built a sandcastle and it was really nice and they needed lots of sand to make it unless unless it would not work out and then he put too much sand on it that it all collapsed and fell and then and then one of them started to cry so and then he wanted to rebuild it once there were two friends and and they wanted to go on a picnic they packed all the lunch,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and when they got there they started to eat and they started to eat and one of them felt really sick so they had to get a doctor and and while the doctor was coming when the doctor was coming he felt really sick and he k he could not wait and the doctor came one of the friends she ran up to the doctor she said doctor doctor help my friend is sick,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1,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 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 1 0 0 0 1 +we need some help so he feels better the doctor said oh my he has a he has a very bad tummyache and he felt better because the doctor made him feel better and then he lived happily ever after there were two friends the same ones in the last story that i read and they wanted to go on a walk so they went and they and they saw and they saw somebody with balloons and they they got one and they tied it on,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 1 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 0 0 1 +but then it went up in the air and they were sad and then they they kept going and then they saw a man another man with balloons and they went they wanted to get some say so they got so they got some and then they left but then they did not have any money and he was sad and the balloon man said hm i do not know if you can get a balloon,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 1 +and they did not d get any and then they saw a lady and see she was and then he asked can you get us some money so we can get a balloon and then so she bought a balloon for them and then they were both happy uh hm once upon a time then there was a elephant going then the ra then the he came and was and a ball was in the pool then he tried to swim in there but he could not,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 1 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +then she pick the ball up then he was all wet then that is the end of the story once upon a time a elephant came along and that then then then then then she wanted to then she wanted to go but she falled on herself and the more she was running she falled and someone is going to help her and she got a br um a owie then come along elephant came then the elephant came,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 1 0 1 0 0 0 1 +and he and that was a coast then there was a owie going and there was but then there was nothing to do then the animal was all better and he said no running because if you run you fall on yourself i never do that i but i run on a sidewalk and i like like while i was two like once upon a time she did not allowed in something came and and then there was an airplane going in the water and she played it and something,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 1 +and she taked it away and throwed it in there um then then he was angry and she and the boy told her you did it on a purpose then a lifeguard came then then the airplane was still in there he wanted it out he tried to reach it but he could not and someone got it but she was very trifle,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +um then someone is going to pick in a net um then someone is going to pick it then he was happy then he was glad then she was glad they were making new friends again then the end of the story once upon a time he she built a nice sandcastle but then that rabbit then the rabbit was surprised then c then they were making a other castle,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 1 0 0 0 0 0 0 1 +then someone pushed it down and that was her like like a rabbit or maybe someone else and it was rabbit and she did not do it so she tried to fix it and he was not uh pleased then that is the end of the story he she was walking by and then then a rabbit was going by and a puppy saw her,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,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 1 0 1 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 +and a puppy said i am going to picnic like you so they had a nice picnic and he was getting goofy and suddenly he was tired and he was full of candy and he is getting sicker sicker and sicker then he knowed he was getting sicker and sicker and he she needed him to help her he was so full he could not even walk and the rabbit said get up,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 1 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 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 +and then he was fine at all then she was trying to pull it but he was so happy a ra and a other rabbit came along and she said what are you doing i am just pulling some stuff and a balloon was not going up and she was happy suddenly it was going up and up and up and up and up and up then suddenly he wanted a other one,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and she was angry there she came just a sec then he was going to get a other balloon she was angry and he wanted a balloon and he said yup i want a balloon and he did not know and the said no can you see,0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 1 +and and he said you do not have any money that is that is not doing then then suddenly he had idea and a rabbit had money somewhere to find and that was someone else looking in a far away and she said what is it you are doing i need some money but and she said she did not know what she need the money for then then she give him some won money and they wanted two balloons,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 1 +that was all and he wanted them two but others heard it but there was two left then they got both the balloon and they loved it then they hugged it and then something went then then then she was surprised and that was true that is the end,0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 1 +so a guy there was a giraffe he was at the pool then he met a girl bouncing a ball but the ball fell in the water and the man the boy tried to go get it and then he got the ball and then he was still all wet because he was in his clothes there they saw a diving board and it and it said no running and the sign said but,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 1 0 0 0 0 1 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 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 +and then she started to run and then she slipped she fell on the ground and she hurt her knee and then the lifeguard came and put a bandage on it sat on a bench and then the lifeguard said you are kicked out a boy was there and the girl was there and then the boy had an airplane in his hand,0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +he flew it around like this and then the girl grabbed it out of his hand and then it slipped out of her hand and it went into the water it was a pool and then the boy got so angry and the lifeguard came and the girl said it was an accident i accidentally got the w plane in the water so the lifeguard tried to reach it,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,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 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then he could not the lifeguard girl came and picked it up with a scooper and gave it back to the boy and then he hugged it he hugged the plane well he were in the sandbox and he meant and he somebody had a sandcastle built up and they played together and he put some sand in a bucket and the other guy touched the castle and then the rabbit put the sand on the castle,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 +and then he got so mad so then they tried to fix it there so he was on the road somewhere and he put his hand out like this and he saw somebody run down the street and then they decided to have a picnic together one is eating a carrot and then he got so full because he ate all the food and he got so full that the basket fell over,0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,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 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and then his dad came and he is still laying on the carpet and then he the child pull the dads shirt and then he said go to your room now and then he he sna and then the other guy went home because the other guy was not really his child the other guy was re really not his child so the this boy met a girl pushing a wagon with a balloon attached to it and then they wanted to play together so and then the boy took the balloon off,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and it floated up into the air and then the girl got angry so then another man came by selling balloons so the girl wanted one so then he uh the guy looked in his pockets to see if he had any money but he did not so he had to walk back and ask somebody else to for some more money then he got more money and then they got another balloon they each got a balloon the elephant is talking to the talking to a horse,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 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 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +the elephant is pushing the horse the elephant pushed the horse in the water the elephant is helping him out the elephant ah being nice and that is the end the elephant is being nice elephant the elephant is going to jump in the water th the elephant is running the elephant got a got an owie the elephant is crying,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 +uh the daddy is putting a bandaid on it and she is sitting on a bench uh and she was and she is be and she was just teasing she was just teasing that she had a owie the elephant is making funny faces the elephant is uh looking at the airplane the elephant s wants to fly it the elephant is the elephant is sinking it the elephant is and the elephant is looking at the airplane sinking and hm the elephant is mad,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 1 +and she s she said to her dad that that that i sinked his airplane and the dad is trying to get it and the dad is putting his hands out like this and and the ga and and the fly fly swatter uh and she is trying to get it with the fly shw ss swatter s and and she got it out for him now the elephant is happy and that is the end um they are playing in sand the rabbit is digging in sand the rabbit is putting sand on the sandcastle,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +the rabbit wrecked the sandcastle and and the piggy is sad and he is building it back up and that the end the rabbit is walking down the path the ra they are having a the pig and the rabbit are having a picnic the rabbit is eating candy the rabbit is the rabbit is feeling sick and they are gi and the and the pig has a flower in his hand and the pig is pulling the the girl bunnys hand,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 1 0 1 +and the girl bunny hit him on the head and the girl bunny is taking him and that is the end the rabbit wr walking down the path again the rabbit is looking at the balloon the pig has a f um the rabbit is untying the balloon and the balloon is going up and the pig is getting mad at the rabbit and and there is another rabbit and they are going to go buy another one,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 +and they are going to get one and then they are going to ge go get another one from someone else then they are going to go get another one from someone else and then they got one and then the and then the then the gi then the girl um and and the rabbit is running to the girl bunny the girl rabbit n and and then and and he is pointing to the balloons and and they want another balloon so they are getting their mom to buy another one and this t and they got their own this time and that is the end a girl is bouncing a b a ball,0 0 0 0 0 0 1 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 1 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 1 +the ball went into the pool the moose went to go get it the moose got it and brang it back and then he got out of the pool got out of the pool and the girl was happy they they see a pool they run to the diving pool now they are running to the diving pool okay so you were thinking about that because you knew what came next anything else on this page they see the diving board,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 1 +so they run to the diving board the girl ran so fast that she slipped and hurt her knee the lifeguard came to see to give a bandaid bandaid the the moose went to go get him the lifeguard gave her a bandaid she thought it really hurted and then the the lifeguard took her to the bench and then she tried touching it and it was better and then the lifeguard pointed to a sign,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +she looked it said no running the moose has a plane they were going to play with it at the pool the moose fl fl made it fly okay you were showing me with your hands and then the girl took it away and threw it it landed in the pool the moose got really mad the girl said oopsies,0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1,0 1 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 1 1 +the lifeguard came she was scared she told what how um how how it happened the lifeguard tried to reach it but he could not the moose cried the lifeguard got a net and got the plane with the net then pulled it out so sh so the moose can have it and then they had fun later there are two boys making a sandcastle one of them smoothed it up,0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 +the other one put sand on it since he was getting tired of doing that he dumped the whole pail on and then the wh whole pail cover most of the sandcastle one of the boys started to cry two people had a picnic one of the boys ate had more than the other one the the one of the boys had l had too much to eat he got he ate a little more and he got dizzy and then and then um a the other boy saw a girl,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 1 +she pulled the girl to the picnic and the boy wa the boy was not so dizzy any more because the girl helped him a boy was pulling a wagon with a balloon on it the boy saw the balloon the boy was untying the balloon the balloon floated away the other boy got mad at him he so he the other boy looked up and then they saw more balloons so they went to go get one,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 +but but it costs money and that was this page and then the boy checked his pockets but he did not have five cents so the man with the balloons said no you can not have one because you do not have any money and then a boy found a girl the boy asked her nicely if she could buy him a balloon the girl gave him a balloon they both had a balloon now the elephant and the ah,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +the giraffe was uh saw the elephant was bouncing the ball and the the ball was on the water and giraffe trying to get the ball on the water and the giraffe got it and the elephant get it and the giraffe was wet the end once upon a time a the elephant and the giraffe was saw the water and and ahh um the elephant want to go on the water and the elephant go right away to go on the water,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 1 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 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the elephant slipped over the the ground and the elephant got hurt on the knees and the elephant was crying and the and the elephant was putting a bandaid on and the elephant was the elephant was ahh ahh mad because it hurts on the knees with the bandaid and they feel better and they sit down but the elephant ahh looked so mad because theyre the giraffe and the elephant want to go to the water the end the giraffe and the elephant,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 +the elephant saw the airplane on the giraffe hand and the elephant was saw the airplane was flying and the giraffe was standing uh with the airplane and the elephant take away from the giraffe airplane and the elephant want to see it and the elephant drop it in the water and the giraffe was very angry and the elephant and the giraffe was saw the the other elephant was saw the airplane in the water and the the elephant was uh say the she was dropped the airplane in the water and the uh the elephant trying to go get the the airplane,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 0 0 0 0 0 0 0 0 1 +and he can not get it but uh the giraffe was crying with the airplane and the then the other uh elephant will get the airplane with that thing to for the fish and she the elephant trying to get it but it is too hard to get it but she get it the elephant got it now and the uh giraffe was happy and the elephant and the giraffe was happy too the end,0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 +the bunny and the the dog the dog was making a sandcastle and the rabbit want to help the dog and the rabbit was making a sandcastle and the dog all finish and the rabbit was trying to put the sand on the castle and the dog was so scared the the rabbit trying to put the sand on the castle and there is breaked the the sandcastle and the dog was crying,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and the rabbit was so sorry breaked the sandcastle the end the dog and the rabbit was going to the picnic and the rabbit was have the carrot and some hot dogs and some cake and some sandwiches and the rabbit got too much to eat and the rabbit got a st stomachache and he is getting so fat and the doctor was came and saw the rabbit the and the dog tried to get the doctor and the doctor was coming and saw the rabbit there,0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 1 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the rabbit was so have a stomachache and he feeling right sick and the rabbit go home and he felt better the end the dog and the bal the dog and the bunny was saw the balloon the color pink balloon and and the rabbit went to see the balloon and he trying to take it off for the dog and is is floating away from the dog and the dog was right angry because the bunny was let go of the balloon,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and the dog and the rabbit saw lots of balloons there pink green and orange and blue and purple white and gold and the rabbit choosed the blue one and that and the the nother the another uh rabbit was right angry because that is number five so the rabbit and the dog want to pick the balloon but the doctor there because the dog was sick and the the doctor saw the dog was sick and he has got some the doctor got some monies for the dog and the rabbit for the balloons and the dog got the color the gold balloon and the rabbit got the color the blue balloon,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 1 +the end the elephant was playing with his ball then he threw it in the pool then the giraffe catch the ball and throwed it to the elephant and he pick it up x okay what did you say they want to go in the pool he was running,0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1,0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 +then he slipped then hurt his knee then he cried what is that then the lifeguard go and he closed his eyes and it hur hurt then uh the lifeguard told him that he it says no running the elephant looked at the giraffe playing then he played with it,0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +then he grabbed it then he throw into the deep pool and the giraffe been angry and the lifeguard came he and he told him that he throwed um the giraffe plane into the deep he tried to grab it but he can not and there was daddy he get the plane and he catched it,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 +and he bring it back to the giraffe and he hugged it tight to the the bunny and the dog are making a castle castle the bunny put sand in his bucket and he dump it all and he wreck the dogs castle mm he he he pretended to he did it to him the dog and the bunny went going for a picnic the bunny ate some food and he ate some more,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and then he has a stomachache then the dog got by the doctor and he grabbed him and he uh he told the dog that he has a stomachache and then they came the dog and the b bunny went to see the bunny the the bunny see he sees the dog then he tied up the balloon and the balloon went up and the dog got angry,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +then the bunny losed it he talk the mom to give him the balloon but he do not have money the the the bunny and the dog have no money they come to go to him and then the dog the bunny goed and he gave both balloons to them bunny and the dog um the donkey wanted to play uh with with another animal with his balls um they they went to the swim pool and they they found a friend,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 1 0 0 0 1 +and he jumped in the water and splashed the elephant by accident and the elephant picked the ball up and the giraffe asked if he could have it and he came out with his cloths on um they went back to the swimming pool and did not want to go into the water the elephant wanted to go in the water but the giraffe did not um the elephant asked if he could race the giraffe to the diving board but the elephant tripped and and fell and hurt her knee and the swimming person checked if he was okay and put the bandaid on her,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and she feeled all better and she stayed there so she could get better um the giraffe throwed his airplane and it flew but but by accident he th threw it too soft and it fell in the water and he tried to get it out but he and he did and without asking the elephant grabbed the airplane away from him because she wanted to play with it and because they was grabbing they grabbed,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 +and it fell in the water and the giraffe was angry at the elephant because she throwed it in by accident the lifeguard was mad because they throwed it in and toys was not supposed to be in the water and the elephant said look what i did it was by accident and the lifeguard tried to pick it up but he could not the lifeguard could not so he just got up,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 +and he had an ide a plan he but he did not his wife took um a stick with a rope on the ss on the front and he catched it out he tried to she tried to catch it out an but she could not and she did and she gave it back to the el giraffe and now he was proud of the girl because she got his plane back the bunny said hi to the dog,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 1 +and the dog was making a sandcastle and the bunny wanted to help but the dog said yes and they started building a sandcastle and then the bunny dumped a bucket and it and it and the castle fell down and the dog was mad at the bunny and the bunny was sorry because he knocked the sandcastle down and then they builded it all and then the dog builded it all up and crying the dog said hi again to the bunny,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 +the bunny was racing down with a basket of food so was the dog and when they got there they unpacked the food and they started eating and the bunny tummy hurted and he was sick of the food and the dog raced to the doctor and said doctor doctor can you help my bun my friend bunny is sick doctor doctor come on come on doctor,0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 1 0 1 0 0 1 1 0 0 1 0 1 1 +come on my friend bunny is really sick because he eat so much food okay okay he took his temperature and he was sick sick and and then he checked the bunny again and he was all better the dog said hi again and the bunny wanted the balloon and said where did you get that from i want that balloon right now,0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 1 0 1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 1 0 1 +and he untied it from the wagon and it started float floating off the wagon and the dog was mad at the bunny because he untied it and he wanted it and then the bunny had a great idea he can go over to the balloon man to buy another balloon and they asked could we have two balloons please and uh and it cost it costed five dollars and he had he did not have any money in his pocket so he could not get a balloon,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and they said please but no only for five dollars doctor can you help us can we have five could we have five dollars for both of us so we can have a balloon he said okay you can have balloon i i do not we do not have any money in our pockets so please can you give us five dollars so they gived him five dollars for both of us and then they got the two leftover balloons and then they was proud of the doctor because they got a balloon,0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 1 1 0 0 1 1 1 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the bunny said sorry to the dog because he uh he wanted the balloon and he untied it so he said sorry play ball and he taking swimming pool and he get it and thank you and welcome uh and over play swimming,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 1 0 1 0 1,0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 +and go in it and and run and walk on knee and her cry and cry lots and sit on bench and stay here the what and stay on bench over play,0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 0 0 1 1 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 1 1 1 +play play a play and play a play again and play it in in water and it angry and say bad and dad what is that daddy i play in pool,1 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 1 0 0 1 1 0 0 0 1,1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 1 0 0 0 1 +and they are get it get it i am get it looking and get it and it in there i get it you get it and loffed it loved it loved it he play on s in sand and play make castle,0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 1 0 1 0 1 0 0 0 0 0 0 0 1 0 1 +and dump it and what dump it oh no oops sorry and cry uhoh they go picnic and eat and they drinks juice,0 0 1 0 1 0 1 0 1 0 1 0 1 1 0 0 1 0 1 0 0 0 1,0 0 1 0 0 0 1 0 0 1 1 0 1 1 0 0 0 0 1 0 0 1 1 +and hungry and that girl her tummy that man sick she what sick and a bunny his tummy hurts and turn that and go doctors house he what doctor all done,0 1 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 1 0 0 1 0 0 0 1 0 1 1 0 1,0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 1 0 0 0 1 +her play and hold that up higher tie it up and up higher and up clouds angry and man what man balloons on it him him take one,0 1 0 0 0 0 1 0 0 1 0 0 1 0 0 1 1 0 1 1 0 0 0 1 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 1 0 0 0 0 1 1 0 0 1 +and and x and bring doctor here and check and talk and money and balloon and two balloons and over there are these two kids one has a ball and she is bouncing it really fast by a pool,0 0 1 0 0 0 0 0 1 0 1 0 1 0 1 0 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 1 +and the ball falls in so the other kid jumps in and swims to the ball and he gets it for her and then climbs out there is these two kids and they are looking at the water and one of the kids says that there is a diving board and it looks like fun and the kid who said that the diving board looks fun runs and slips and hurts her knee and the lifeguard comes and puts a bandaid on the hurt spot and puts her on a bench and shows her the sign no running there is these two kids,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 +one has an airplane and he plays with it and the other one takes his airplane away and accidentally drops it in the pool and the other kid is really mad at her so she go gets so she gets a lifeguard and she asks him if he could try and get the plane out and he tries but he can not reach it and he does not know what to do and then this lifeguard with a net comes and fishes it out and gives it back to the kid,0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the kid was really happy to have his airplane back um these two kids um are going to build a sandcastle and they start building and then one of the kid um dump sand on it and then it is all flat and then the other kid cries because it is broken that is kind of dumb these two kids are going to go for a picnic and the first kid took um all this unhealthy stuff and he starts eating,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he gets all sick and the other one he gets all dizzy and the other kid runs and gets s the doctor and the other one pulls the doctor to him and then he checks him out and then he says that he is going to give him a checkup um there is these two kids one of them comes up and and says hi and he sees the other ones balloon and then he starts taking it off the wagon,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and and the other kid is yelling and then he accidentally lets go and the other kid is really mad so he sees a guy that is selling balloons and he asks if he could have a balloon and then the guy shows him that the balloons are five cents and he does not have five cents so he goes to his grandma and asks if he could have a balloon and she says yes so they both get a balloon,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 1 +one day a giraffe saw her friend the elephant playing with a ball gira the giraffe took the ball and threw it in the po in a pool nearby the elephant was scared the ball might sink so the giraffe went to get the ball the giraffe got the ball for the elephant and the elephant was happy then the elephant thanked the giraffe one day the giraffe and the elephant were at the pool the elephant said let us go off the diving board the elephant ran,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1,0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 +and so did the giraffe the elephant fell and and hurt her knee the lifeguard came and helped her he put a bandaid on the elephant while the giraffe watched the lifeguard told the elephant not to run in the pool or she might slip so the elephant sat down and did not run one day in the elephant and the giraffe were at the pool the giraffe had a a a little plane the giraffe played with the plane,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +he did loops and swirls and s things like that then the elephant took the plane and tried to play with it the elephant dropped the plane into the water the giraffe got furious and the ele and the elephant got scared then the lifeguard came the elephant told the lifeguard that she was playing with the plane but she dropped it in the pool the lifeguard tried to get it he said he could not reach it,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 1 +and the giraffe started crying then a woman came with a net she took the net and she took the net and took the plane out the boy was really happy and thanked the ele the woman the boy got his plane back and he was really happy and so was the elephant one day two rabbits were playing in the sandbox one rabbit was digging out some sand the other one was making a sandcastle,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +the rabbit poured the sand in the bucket on the sandcastle the rabbit got conf the rabbit poured on the sand and i can not make this one um uh just tell me what is happening the rabbit is like scared because then the other rabbit might get mad at him the dog or rabbit started to cry and the rabbit just stood there one day two friends met to go to a picnic one friend kept on eating and eating and got and keep kept on eating and eating and got really full by the time he finished he was really stuffed,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 +the other friend just drank some juice and some bread w when the other friend found the doctor who was in the park h he went to get him to see if there was anything wrong with her friend she begged the doctor to come so she did so the doctor came the doctor checked the rabbit and it seemed that he had a stomachache the doctor told the rabbit to not eat too much junk food so the rabbit did not get much of a stomachache one day a the rabbit met his friend the dog which had a wagon and a balloon the rabbit liked the balloon,0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +so he pointed to it the rabbit untied the balloon and the dog just stood there with surprise so and then the balloon flew away the dog got mad at the rabbit then the two s saw a man holding a bunch of balloons the rabbit asked for another balloon the man told him it was five cents but the rabbit did not have any money then the other friend came,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +the rabbit went to see his mom and s and the his friend watched him as he walked to his mom he told his mom he wanted a balloon the man gave two balloons to the to the two friends and the mom paid the money they the two friends thanked their the mom um let us play boys the ball went in the water i got to swim and get it i got another ball to swim with it,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 1 1 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and i am playing with it aaah i am all wet the end let us swim i am jumping in the water let us run ow are you okay and it hurts i need a bandaid,0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 1 0 0 1 1 0 0 1 0 0 1 0 0 0 1,0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 1 0 0 1 0 0 1 0 0 0 1 +it is still hurting i got to go to the doctor the end pigs do like this let us swim i am crying i found a airplane give me that airplane my airplane oh do not be angry at me,0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 1 0 1 0 0 0 0 0 0 1 +let us get it oh we got it i got it in right he getting out of the water no okay let us catch it i got it thank you my favourite airplane the end,0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 0 0 1 0 1 0 0 1 0 1,0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 1 1 0 0 0 1 0 0 1 0 1 0 0 1 0 1 +um you play in the sandpack you dig a you put the sand in the bucket and you dump it on the castle and then then um then then the castle broke and then the cried the end he is walking and then he says hi he eats his sandwich with a carrot and he drinks his juice,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 +and he cries um i am thirsty you stole it i said it you stole it i do not know that page should we try the next page he cries goodbye the end,0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 1 1 0 1,0 0 1 1 0 0 1 0 0 1 0 1 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 1 +um here is a balloon um i am running around my balloons do not take it off ah the balloon it is flying aw the balloon is broken there is a lots balloons lots of balloons i want a balloon i only have one oh there is a lot of balloons,0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,1 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 1 1 0 1 0 0 1 1 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 0 0 0 0 0 1 +ah i want some balloons where can we put the balloon but our balloon is broken let us have another balloon and we got two let us have it we got two that kind the dog the giraffe and the elephant,1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 +the elephant was playing basketball with the giraffe and then the do elephant throw the basketball in the water the giraffe tried to save the balloon ball and the giraffe said here you go here is the balloon ball and now the elephants have the ball a giraffe and a elephant was going swimming and the elephant said i am going on the diving board and then the elephant hurts her foot and she slipped,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and she break her foot and and then the giraffe came to save her and then the swimming teacher came and then the s s the swimming teacher give her a bandaid and the swimming teacher gave her a bandaid and then and then the elephant said thank you for the bandaid and the teacher said no running said oopsie the giraffe is playing wi with his helicopter eh eh and the elephant wa want to play with with it too,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 1 +and the giraffe played with his helicopter and then the elephant take it away from him and then the elephant drop it in the water and the elephant was mad the giraffe was mad and the swimming teacher was to to look at the helicopter and then and then this the the elephant said that the airplane is in the water and then the swimming teacher is trying to save the airplane in the water and the the the swimming teacher said i can not catch the airplane and then the an and then the giraffe was crying and then a a swimming eh elephant was came to to rescue the airplane,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 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 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 1 +and then and then she saved the airplane and she said here you go giraffe here is the airplane and and then the the giraffe was happy the bo the dog and and the and the bunny want to build a castle first the rabbit takes the sand in the bucket then and then the rabbit taked the sand the castle and the dog is s scared and then the ra the rabbit is scared be because the rabbit break the castle and then the dog tried to fix fix the castle,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 +the rabbit and the dog went f for a picnic and then the rabbit i is eating his her lunch and the dog is is is eating his lunch and and because the rabbit have too much lunch now rabbit have a tummyache but the dog do not and the dog only ha only have some lunch and the dog says huh the rabbit is have a tummyache and now because the dog did not eat too much only the rabbit did and the dog said mama,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 1 1 +and mommy but the rabbits mommy and he said this hey mommy here is a dog he said huh that is not my children and she said she said i do not know rabbit i am a doctor and now the rabbit has gone and the rabbit go home except the dog the dog has a a dragon,0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 +and the balloon is hold up the dragon and then the rabbit came with him and then and then the rabbit found the balloon and then the rabbit going to take it off and and and the rabbit take it off and and it float up to the sky and the rabbit and the dog try to catch it and now the dog is mad and it and the rabbit was scared and then and then the rabbit and the dog bought some more balloons,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the rabbit said how much that cost it cost five cents but the rabbit had no money and the rabbit and the dog said no money aw x a balloon then they said mommy come here can you buy us a balloon and sh and the mommy said which balloons the balloons,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 +and then the mom buy the balloons called a nickel and then then they had the balloons then the the the cat and the the bunny and the dog is happy one day a giraffe meets an elephant playing with a ball then the ball fell into a little pool the giraffe goes into the pool to go swim to the ball to get it the giraffe got the ball and gave it to the elephant the elephant is so happy to have the ball back the giraffe gets up on shore,0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +one day an elephant and a giraffe fou found a pool the elephant decided to go down the ladder it walks but it runs but it f was tripping it hurts its knee the giraffe comes running an elephant lifeguard came to the elephant and the giraffe it helped the elephant it gave the elephant a bandage and let it sit on a bench the elephant lifeguard told the elephant no running,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 1 +one day the elephant and the giraffe saw a pool then the giraffe saw an airplane zooming by the elephant grabs the airplane from the giraffe then the airplane sinks in the pool the giraffe is mad at the elephant the elephant lifeguard comes the elephant told the lifeguard what happened the lifeguard tries to get the airplane he can not get it the giraffe is crying,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1,0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 +and the elephant is sorry then another elephant came along with a fishing net she scoops the airplane out with the fishing net she gives the airplane to the giraffe the giraffe and the elephant is happy once there was a rabbit and it meets a little animal they both try to make a sandcastle together the rabbit pours sand on the sandcastle the sandcastle goes down,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 +the rabbit feels sorry for the other animal once there was a rabbit and it meets an animal and they both want to go on a picnic they together have a picnic at the same place the rabbit eats a lot of things and he is stuffed then he feels dizzy and sleepy the other animal tells the rabbits mom it tells her to come to the rabbit,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 +the other rabbit wakes up the little rabbit and they go home one day the rabbit saw an animal pulling its wagon with a balloon the rabbit s is watching the balloon the rabbit tries to untie the balloon off the wagon but it after it goes uh up in the air the other animal is mad at the rabbit then there is someone that is selling balloons and the rabbit is asking for some balloons he is looking in his pocket for money,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +but he does not have enough money so i and he sees his mom so he goes over to his mom he asks for some money to buy the balloons the mom gaves the man some money to buy two balloons they have two now the rabbit and the other ha animal has two balloons one one day um a little giraffe and um elephant they were playing with three balls and they were g they were going to go in the swimming pool so they got to the swimming pool with tickets and then they sawl a ba they saw their ball in the swimming pool,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 1 0 0 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 1 +so they got it and then the gira the giraffe tried to come and get the balloon um balloon that they had so they he got it and then they then they got their ball and their balloon and then they went and played with them and so the elephant said thank you and then the giraffe said you are welcome and they played together with their um with their balloon one day um they the giraffe and elephant wanted to go swimming and then the giraffe ran,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 1 +and he and he ran in the swimming pool with her bathing suit on and then she then she hurt herself on the knee is that on this picture um uh yeah can you just tell me the story that is on the picture and you tell me to turn if i am not turning it fast enough and then she slipped because there was water when she was running and then and then she hurt herself so the lifeguard came and got her a bandage for her knee and then they so then they um went to swim again,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 +and she was all better so but first she had to sit on the bench a little bit and then she was okay and the lifeguard said no run can not you see the sign there is no running here the end one day there is a one day there was a giraffe and a um elephant the giraffe had a airplane and he was playing with it and then he al and then the elephant wanted to play with it,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +so he na so um he did but then she took it away from the giraffe and then she dropped it in the water is that on this page or was that on the next page it was on that page oh okay so then it sank in and then the life then the lifeguard got mad so then the giraffe tell me should i be turning yet,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +then the giraffe got mad at the elephant and she said she was sorry so she got her mom to catch the lifeguard is that what is on this page so the lifeguard could not reach it so she got her mom to reach it with a net and then the lifeguard she he came back to say sorry to the elephant because he he got mad at the elephant and then her mom catched it with um the thing and then the lifeguard he tried to get it again but her mom could not,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and the lifeguard could not so she got a big big net and she catched it is that on this page yeah remember i can not see so i just want you to tell the story that is on the page and then all the lifeguards and then the mom had a real long net so she grabbed it and she catched it and the giraffe said thank you,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 +and then she said you are welcome and then the they were both happy again and they played with it the end one day a lit a bunny rabbit went to the beach and she saw a p and he saw a puppy and she was making a sandcastle and then the bunny said can i help and the puppy said okay then they build a sandcastle,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 1 +and the bunny got a bucket and she and then he got a shovel and he put it and he put sand in the bucket to make a sandcastle and the and the puppy was making the sss um a water hole and then the and then the rabbit wrecked it because he put all of all of sand on it and it pushed it down and the w puppy was very sad and then the and the puppy tried to build it again but it did not work and the rabbit was just he did not say sorry or anything,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +one day the puppy and the rabbit came for a picnic in a forest and then uh the rabbit ate too much and he got sick and was too full so the so the puppy dog went to get some help and then she but she did not find anyone yet until he s until she saw that the rabbit was sick and and then she got a nur she got a doctor that was walking by and then she took the rabbit and and took the stomach away ache and then the bunny and the r um bunny was still sick so the puppy he um she pulled on the doctor and then the doctor went on the picnic thing,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and the s and he was really sick so the puppy went away because the doctor said he needs to be alone for a while and the end oh just a second i missed one did not i yeah and the it was after he needs to be alone for a while and then and then um the puppy came back and he was all better but he had to go lie in bed one day the bunny went he he one day the bunny went to the forest,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 1 0 1 0 0 0 0 0 1 +and he and on the way there he saw a puppy and then they and then they saw a clown with balloons and so they asked bunnys mom if they could have some money for a balloon and she said yes so then they got a balloon and then they then their balloon uh there was a balloon tied onto puppys wagon and it fell away it flew away so then um tell me when to turn and then it and then it went and it disappeared up in the air,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and puppy was mad at at bunny and then and then they saw a clown a bunny with balloons a clown bunny with balloons so they asked bunny so they asked bunnys mom if they could have some money and then they bought a balloon with their money and puppy was very happy and they both got two balloons and then puppy ran over there to get a balloon but bunny had no money so she had to go to um the mom to get his money and then after that they got some money,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 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 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and they gave it to the clown bunny and then they got two balloons one yellow and one red and then but first they had to get the money from the doctor that fixed that helped bunny and then so they got two balloons ye yellow and blue and then they got one for the doctor red and then i do not know you are not sure on this one nothing to say on this one okay we will just turn then and then they bought the balloons,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 +and then they and then they got two balloons and then they were happy and they played with them and then they played with them and played the end once there was a giraffe who was standing by a pool and a elephant said came with a swimsuit on and said you want to play fetch but they were not so sure about playing near the pool just then when the elephant blew it with her trunk it fell in the pool the giraffe jumped in and swam to get the balloon the ball,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 +the giraffe came back with it in a minute and said and the gira and the elephant said oh you you got my balloon ball thank you sometimes i get mixed up with the words the giraffe felt pleased that he that he got the ball for the for her friend but the elephant just sta just stood there and smiled the end the giraffe and the elephant went to the pool because it was a hot summer day they were they looked at the pool and they were excited,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 +but the elephant said hey i am going to go off the diving board but she did not read the sign which said no running so she ran anyway just then the el the giraffe was catching up with her when she slipped and fell on her knee she got a cut on her knee and the giraffe went to get someone a lifeguard came as quickly as possible and helped the elephant the elephant thought it was going to sting but it did not they they put on the bandage,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 +and it was and it looked good as new the lifeguard was disappointed and the girl stood sat on the bench and said hi and the lifeguard was pointing at the no running sign the end the giraffe and the elephant went to play by the pool and the giraffe got a new toy plane and said you want to play with me the elephant said sure the giraffe flew the plane first but the elephant was so excited she just grabbed it out of her hands,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 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 1 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +the giraffe said my plane give it back i was not done my turn but the elephant did not care she was just flying it around just then she flew it too high and it fell in the pool and it started to sink the giraffe was mad at the elephant but the elephant just stood there puzzled the lifeguard came right by the two girls,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 +and one of the girls said one of the elephants said i can explain i i did not do it it was the giraffe just then g g the giraffe said she is lying it was her then it came like it was a big argument so the lifeguard said cool it who dropped it in the pool and the giraffe was pointing at the elephant the lifeguard tried to get catch it,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1 1 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +but it was floating in the pool the giraffe started to cry when the lifeguard said he could not reach it and the elephant felt sorry just then a lady elephant came with a net she quickly got the plane with the net and it came and she pulled it f to her she said here you go is this your airplane and the giraffe said yes thank you very much the giraffe hugged her plane,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 1 0 1 0 1 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 1 +but the elephant was happy the end one day at the park there was a baby dog who was making a sandcastle just then a bunny came along and said can i help you the dog said sure they wanted to help build a the biggest sandcastle in the world so the rabbit was going to build it so he got some sand in a pail and started digging just then he decided that a shovel was not so slow after all so he decided to dump it on the castle,0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 +so he did but when he realized he had wrecked it he was so embarrassed the dog started to cry and rebuild the sandcastle but the rabbit just stood there and looked like he did nothing the end there there once was a dog who was going on a picnic in the park and then he saw a rabbit so he they decided to go together when the om when they unpacked the lunch the rabbit was so hungry s the rabbit was so hungry,0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 +but the dog was not so the rabbit ate all the stuff when the dog was eating the bunny had already finished the bunny had a terrible stomachache while the dog was eating the dog just stood there puzzled and said are you okay and the rabbit said no i feel like i am going to hurl just then the dog ran to the doc doctor who was standing right by the path she said excuse me could you help my friend here he has a stomachache so but the doctor said no,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 +she had a patient who was waiting for her but the dog really needed her so she took the doctor and dragged them to the picnic the doctor said i will take your temperature now and you will feel much better just then the bunny f got up and he felt queasy then the doctor and the bunny went home they walked together back home the end,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1,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 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 1 0 1 +there once was a dog who was pulling a wagon with a balloon tied to it then he saw the bunny then they wanted to play with the balloon the bunny wanted to touch the balloon because he thought it was cool but the dog did not really want him to so the rabbit just then the rabbit did not care about what the dog said so the rabbit untied the balloon and the dog was ss was a lit was beginning to get a little fed up just then the balloon floated away and they were trying to catch it,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +but they were too short the dog was so angry at the rabbit the rabbit just stared at the balloon and he felt like he was getting a little scared because the dog was mad just then they saw a balloon seller who had tons of balloons and he just stood there so the dog and the rabbit decided to go buy a new one the rabbit said may i have a balloon please for my friend over there the man said sure but you will have to pay for that for the balloon the rabbit looked through his pockets,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 +just then it said a sign said balloons five cents and he did not have five cents he and the ra the rabbit and the dog looked at the balloon seller they told him that they did not have five cents just then the bunny went to the went to a lady who was standing nearby and he said excuse me do you have five cents because i need to buy a balloon for a friend the rabbit looked puzzled the lady rabbit gave five cents for two balloons and the bunny and the dog were jumping up and down in excitement then they both got balloons,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and they hugged and they loved them real much the end this is this story is called the ball one day this little girl was playing with a ball and a lifeguard was playing with it too and so when she was playing with the ball she accidentally dropped it in the pool and then the lifeguard went in the water and swam and got the balloon and got the ball and when he did she was so happy and then she um she asked him if he wants to play with her again the end,0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 +this story is called the scratch one day a little girl was going swimming and she was running to the board and when she did she slipped and she and when she slipped she got a cut on her knee and then the lifegua and then another lifeguard came running and said are you okay and then he put a bandaid on and then he put him on put her on the bench and she would not be able she was not able to swim but then the lifeguard was really mad because he she should have seen the the sign no running,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 1 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 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 +the end this story is called the airplane one day this little boy and this little girl were playing with an air airplane the girl asked can i play with it now and he said okay and then it and then she accidentally dropped it in the water when she did the little boy got all mad and then she went up to the lifeguard and asked the lifeguard if he could get the airplane and when he said okay i will try he tried but he could not reach it,0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then he and then the little boy was crying but then the girl lifeguard came and she got a net then she tried to get it and she did and then the little boy was so happy and then the little girl said i am sorry for for wrecking your toy the end this story is called um the castle that breaks one day there is there is a little girl and a little boy who is playing in the sand,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the little girl builded a castle and the little boy dumped a bucket he did not mean to dump the bucket oh on the castle and then when he did the girl got all mad sad and she was crying and the bunny said sorry this story is called the picnic one day a little a doggy and a dog and a rabbit was eating was having a picnic and the rabbit ate too much so he got sick,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 1 0 0 0 0 0 1 0 1 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 1 +and then the poochy ran over to a doctor near by the pooch said help help a little boy is sick so the doctor checked the boy and said he was si he had to go home and then he felt better this story is called the puppy who had two balloons one day a pup his uh somebodys friend came over to check his balloon out and when he did he tied the rope off the the wagon and when he did the ba balloon got away and then the puppy is all mad,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and then the rabbit saw some more balloons and he asked some for a balloon but the guy said balloons are five cents and the bunny did not have any money so so the bunny said um well i accidentally lost one that my friends balloon and so he and then the balloon man said no you still need to pay five cents so then the bunny went over to an adult to ask for five cents and when he did ask she said okay and then she paid him five cents and then the boy the girl got his her balloon a another balloon back,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 +and then she was all happy the end once upon a time there was a giraffe and a elephant playing around the pool and one of they were playing with a ball and it f it fell in the water and the giraffe swam to the balloon the ball and then he swam back to the elephant and gave it back to her and she was very happy that he got it for the elephant the end once upon a time there was a giraffe and a elephant around the pool,0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the elephant wanted to jump off the j the the tr um the um wanted to jump in the pool and sh when she was running to it she slipped and she fell she got a scra a scratch on her knee and the giraffe ran to the lifeguard and he got a bandaid and they they he put it on her knee and and he sent her to the the bench and and he show her no running sign the end,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 +one there was two friends an elephant and a giraffe the giraffe had a toy that it was a airplane he was playing around with it and a elephant wanted to play with it too and elephant took it from the giraffe and p played around with it and she dropped it into the pool and she she was very sad and the giraffe was very angry at her the lifeguard ran uh came to the elephant and the giraffe and the the el the lifeguard the elephant said that i by accident i threw the giraffes airplane inside the water,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and the lifeguard was trying to get it but it was too far and he said i can not do anything and the giraffe started to cry a net catcher came to the hopeless giraffe and she had a net in her hand and she got the airplane by her net and the giraffe stopped crying and the lady gave it to the giraffe and he is very he was very happy,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 1 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 0 0 1 0 0 0 1 +the end once upon a time there was a little dog that made a castle and a a rabbit he came a along and wanted to help him and then he he dump he dumped some sand inside a bucket and the and he scooped some up and then he dumped it on there on the castle and then and it got covered and and then it really did not do it was was a cloud of sand and the dog was building it again the end,0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1,0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 +there was two friends that were walking along for a picnic and the ra the fr one of the friends had a lot of f food than the other friend and then he ate all of it and and he got really stuffed and then he he was very sick and his stomach was really hurting and one of the friends called the doctor and the dog called her the the doctor to help and the doctor said do not eat a lot of food and he went home,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and he had some rest the end once upon a time there was a two friends walking along with their wagon and one of the friends said this is a nice wagon and a nice balloon you have on it he tied it off and he and he wanted to hold it and then the balloon fell flew away and then they were re one of the friends balloon was very disappointed and one of the friends saw a a man selling balloons so he ran over there,0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he he got one from the man can i have one of those balloons he said but it was actually five cents to buy the one of the balloons it w he was really sad that he lost one of the friend his friend balloon he asked a person by if sh they had five cents and he he pointed to the balloons and he said there is only balloons for five cents and i have no money and she she bought two for each of the the friends and they said thank you thank you for the balloons,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 +the end there is an elephant and a giraffe bouncing a ball having fun with the ball and the ball goes into the water gets bounced into the water the giraffe goes to get it he is really wet he gives it to the elephant and the elephant the elephant is holding it and the giraffe is smiling quite a lot the giraffe and the elephant are looking to the water and the gira the elephant sees a diving board,0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 +the elephant is running and slips on the pavement on the deck and scrapes her knee the giraffe came over and the lifeguard came over and looked at it and bandaged it up and the elephant sat on a bench and the the lifeguard pointed at the no running sign the giraffe and the elephant are playing with a airplane toy airplane the giraffe is making it go really high the elephant grabs it away and starts playing with it it goes in the water the giraffe is really mad at the elephant,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 +and the lifeguard sees the toy in the water and looks mad and the lifeguard and the el other elephant are talking and the lifeguard tries to reach the airplane but he can not the lifeguard is kind of shrugging his shoulders thinking what can i do and then another person comes with a net and gets it out for them and the giraffe is really really happy and the giraffe is hugging his toy the bunny and something else are playing i think it is a dog that are playing with sand,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and the bunny put is getting some sand out of a pail he dumps sand on a sandcastle then the sandcastle is all wrecked the bunny feels really bad and i think it is the dog that is crying the bunny and the dog i think are going for a picnic the dog and the the bunny is eating too much he has maybe twenty things he is eating lots and the bunny is really full,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and the dog is just eating his sandwich and drinking juice box and the bunny is feeling dizzy and the dog thinks oh i should go get some help so he runs to a doctor walking down the road and pulls the doctor over to her friend and the doctor checks her friend out and takes her the dogs friend home the rabbit there is the dog and the bunny the bunny is coming down the road jogging he and the dog has a wagon with a balloon tied to it the bunny grabs the balloon and the dog is kind of fine with it,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the dog kind of freaks out starts freaking out and the bunny and the dog tried to grab it but they can not because it is floating up into the air and the dog is really mad at the bunny then the do the bunny goes to the balloon man he asks for a balloon he says five cents for a balloon and the bunny has no money so the the little bunny looks at the balloon man very innocently and then goes to his the doctor his dad and i just see him going to his dad or the doctor,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 diff --git a/benchmark_result/segmentation/SaT_cunit_3l_r64a128_results.csv b/benchmark_result/segmentation/SaT_cunit_3l_r64a128_results.csv new file mode 100644 index 0000000000000000000000000000000000000000..e57efa479ac587f2863eb60593423b53589de174 --- /dev/null +++ b/benchmark_result/segmentation/SaT_cunit_3l_r64a128_results.csv @@ -0,0 +1,624 @@ +word_sequence,gt_label_sequence,predict_label_sequence +once a horse met elephant and then they saw a ball in a pool and then the horse tried to swim and get the ball and the then the elephant gave him the ball and then the horse was wet and the elephant was holding the ball the end they might be the same oh well you start it off any way you want okay,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 1 1 +once a horse and this this was a horse and saw saw that that i just talked about but the ball was not in there okay and then the elephant wanted to go in i mean not and then he his feet went like this then he hurt his knee cap and then the horse helped him then there was another elephant and he was a lifeguard and then i do not know what they did,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +but they are doing something what do you think they are doing well how you look at the picture cause i do not know oh it does not matter what do you think is happening i think they are battling okay and then they sat on the bench and then the lifeguard was mad okay,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 1,0 0 0 0 1 0 0 0 1 0 0 1 1 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 +and are you pointing at something i am i am just i am just x okay are you all done yes okay the end once that horse and elephant was happy near the swimming pool oh and then the horse had an airplane to play with a which had ss ah something coming down the bottom okay,1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1,0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 1 +and the elephant went like this then he tried it and the horse went like this then they put it in the water and then the elephant went like this and then the horse was mad and then the lifeguard went like this then the elephant talked to him a little bit and then the lifeguard tried to get it but he could not,0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the horse cried an and then a elephant with a net came and she caught it and then she gave it back to the horse and then the horse went like this what does that mean they love it oh good and the end once two rabbits made a sandcastle,0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 0 0 1 +and it was a great one and then one did this with a and one took some s and the other one took some sand from a a pail because they were down at the beach and then he dumped it on the castle and then it tur part of it stayed the way it was but the rest turned into just a lump and then they tried to do it but it was not very good that time the end we saw two rabbits had baskets and were in part of the forest,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,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 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 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +or we can call it the woods yeah we can then they had a picnic then one of them belly got this big how big about this big wow and then in the picture there is a twirl around on his head and then a bigger bunny came up and they run to that bunny,0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 +and then he falled asleep and then he did this why did he do that i do not know okay and then he was happy he was happy yes okay the end,0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 1 0 0 1 1 1 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 1 0 0 1 0 1 0 1 +once that little bunny was pulling a wagon and that other fat bunny came up and then he liked the balloon and then he tried to get off and then he got it off but they lost the grip and it was helium and then another man came with a bunch of balloons but x but then they he went to them and he said that it the balloons were five cents,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,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 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and he could not find five cents and then they were sad then they went back to that out by the we found that other story and he said i want one of those balloons he gave him five cents and then they gave him a balloon and they gave him to them to who to them oh,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 1 1,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 +and then they both have one the end the el the um the little elephant is playing with her bouncy ball and the gi and the giraffe comes to meet her suddenly the ball falls in a f pool beside them the the giraffe goes and swims for it and the giraffe is so kind and brings back the ball the elephant is so happy the elephant and the giraffe meet at the pool and look at the diving board the the elephant goes to run for it,0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +but there is a sign above her head that says no running she slips and falls she she scrapes her knee and and can not swim a lifeguard comes to see what happened to her knee the and he put a bandaid on it he sets her down on a bench so it will it will it will heal and the lifeguard points to the sign that says no running the ele the elephant and giraffe are swimming together the giraffe finds a plane and starts to show it to the elephant the giraffe um the elephant grabs from it from the giraffe and swims away,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 1 +suddenly she dropped it the giraffe gets very mad and can not hold in his anger the lifeg lifeguard comes and sees what has happened the elephant starts to complain that that it was not her fault and the lifeguard tries to get the plane but no one can reach it so a lady with a net comes and pulls it out she is very kind thinks everyone and the giraffe gets his plane back everyone is very happy,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 1 +um a bunny and a dog were mak were making sandcastles in the sand uh sand bin um the bu the bunny um he he got a bucket and started to build a better castle suddenly he dumped all the sand on the uh the bi the other castle and everyone was disappointed the o the dog was was so sad she started to cry the dog mee meets the bunny um for a picnic they they have a picnic together except the bunny is kind of piggish he eats all the food really fast while the other one eats very slow and politely the rabbit feels very sick after his big meal the doctor has to come and help the the s sick rabbit,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 1 0 0 1 1 +the dog pulls her her over to the um to see if he is conscious the doctor says she ha he has a fever and he ate too much soon he feels better again the the the dog is has a balloon on her wagon and the bunny comes to meet her the bunny notices the nice um shiny balloon he the bunny tries to untie the balloon but the dog um the dog gets nervous and it floats away,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 +the dog gets very very mad at the bunny but when they turn around they see another man with twenty more balloons the rabbit buys one to make um but he does not have enough money for one balloon the man tells them they could ha they could get a free one and the nurse says no actually i will buy you one and she goes and buys one this makes both the bunny and the dog very happy now they both have one balloon they going at the swimming pool,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 1 +they putting it the ball in the swimming pool and he is trying to get it he got it she is happy the end they were dr they dry themselves dry themselves and the girl is going into the swimming pool she is dancing she is crying she gots a help from her friend,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 1 +put a bandage on it now sh she can go on the swimming pool she is sitting the end she is talking the boy is playing with his airplane she grab it away from him the airplane is in the swimming pool and the boy got angry and the k the man comes by them,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +what did you say the man comes side them and the girl is talking the man was trying to get it the man can not get it woman tried to get it she gots it the boy is happy now the boy and the girl is happy now the end,0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 1 0 1 +the boy is talking to the dog and they are making a castle and the boy putting the sandcastle and the girl is so happy not the boy he is sorry for it he is what sorry and the end they are looking for easter eggs,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 1 1 +and they are eating he eat the whole thing he got hiccups there is his father and he have to help him and he gots a headache he is going and the end the boy is running and the boy is talking,0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 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 1 +and the boy is taking off the balloon the balloon is floating away and the girl went angry and there is lots of ball sh the girl is pushing the boy gots no money the man is happy the dad is here again and the man is not giving thm them balloon the man give the rat balloon rabbit a ba balloon,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 1 0 1 1 +and they can have one and the end she is playing with a ball then it drops in the water the cow s wants to get it and then the cow gives it back to the elephant and she likes it and the end um something is sinking something is sinking and the elephant is going to get it,0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 1 0 0 1 0 0 0 0 0 0 0 1 +and she trips and she falls and hurts her knee and the lifeguard comes and she gets a bandaid on it and she she sits on a bench the lifeguard tells her not to do it again elephant is excited to see what the giraffe has and then he tries to throw it up into the air and then the elephant grabs it away and then it sinks into the water,0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +then the giraffe gets mad at her and the lifeguard gets mad at the gir at the elephant and he explai he tries to explain what happened and the lifeguard um tries to get it then they can not get it and then a woman comes up with a net and she gets it out and she gives it back to the giraffe and then he hugs it the end,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +um the bunny and the baby elephant are building a sandcastle and then the bunny is filling up a pail with sand um then he is stuffing it on the sandcastle and then it is ruined then one of them is sad that is it they are going on a picnic they are the bunny is eating lots of stuff he is getting full and he has a stomachache,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then one of them sees his mom rabbits mom and he tries to get her to get to get to get rabbit and she wakes him up and they go home ah that was a good one he is taking a balloon somewhere his friend is coming up to him and he and his friend likes the balloon and then his friend tries to untwist it then it goes away,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1,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 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 +and he is sad and then she is angry with rabbit and then there is a new ba balloon sale and he wants one and he gives it to him and then he wants another one and then mother is here he comes up to her and he tells her that there is balloons and she will and she is giving him money,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then they both have one a balloon that is it the end there were two animals an elephant and a giraffe who wanted to play in a pool and the w there they were playing with a ball and it fell into the pool and they wanted to sw swim and get it and they thought it was fun one of them he fell he went into the water and tried to swim to the ball but the ball was floating away from him,0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the elephant and uh then the giraffe got the ball for the elephant and then the elephant was started playing with the ball again and they uh and they still wanted to play with it so they still played together the end there was a no running sign and they still wanted to play in the pool and th they were running away and then and then sh the giraffe started chasing the elephant and the elephant slipped,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 1 0 1 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 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and then it hurt itself and the elephant was crying and the giraffe said are you okay and then the lifeguard came and said are you all right and the elephant got a bandaid and sat on the chair and he and the lifeguard was trying the elephant was trying to get off the bandaid and the lifeguard wa said keep it on the end the giraffe and the elephant came back to the pool with the airplane the giraffe was playing with it and tried not to drop it into the pool,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the elephant was so into it he the elephant w was kept staring at it the the giraffe said hey when the elephant took the plane away and the elephant started playing with it and the elephant accidentally dropped it into the pool and the giraffe was kind of mad and then he was so mad that he growled at the elephant and the elephant was scared scared and the li and the elephant called the lifeguard to come and try to get the airplane and they looked like they tried,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and after that and af and then after that he he was trying to get the plane but he did not so the ele so the elephant did not know what to do and the giraffe was crying and the elephant decided i will have an idea and the elephant went to get a net and then he used it to get the plane and got the plane for the giraffe the end and the giraffe was really happy the end,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 1 +there was a rabbit and a dog they were making a sandcastle and then the dog and the rabbit made the sandcastle and the dog was sitting into the sandbox and said hey rabbit we made it we made it and the and the rabbit was helping the dog make it more bigger and it and he put too much on and made it fall right down on it and then it al almost then it broke and then it was totally broken at the end of it by the end the end,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 +um there once was a dog and a rabbit they wanted to go on a picnich picnic instead of making a sandcastle in the park rabbit wanted to have the most stuff so he took out h all of his stuff and started his stuff and the dog wanted to eat just this couple of stuff and the rabbit was totally full and he he was almost having a tummyache and then he fell down and he had a big tummyache and the dog ran to get his mom and to help,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the dog begged his mom to do it so the mom came and helped and he was okay the end instead of going to for a picnic and and going into the park and making a sandcastle they got a balloon and they were playing with a balloon and they tied it onto their wagon they were driving it around and the rabbit wanted to take it off and the rabbit was trying to take it off,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then he made it fly away and the rabbit did not know what to do and the dog was very mad and then they saw more balloons and wanted to get uh the dog was still mad and the rabbit was going to get another one for the dog and the balloons were five cents and he could not get it because he did not have any money and the dog was wanted to get one too and he tried to get one and the dog was waiting for the rabbit to get some money from its mom,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 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 1 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 1 +and it asked the mom if he could have some money to buy the balloon and he got five cents and got a balloon for the kids and they got to play all they want with the balloons the end there was a giraffe and and a a girl elephant they were playing ball by the street on the sidewalk by the swimming pool and then they dropped the ball into the pool they could not ge could not get it but giraffe dived in and k was was swimming but elephant was covering her eyes,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,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 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +then he got it and gave it to her she was amazed then he was soaking wet and she hugged the ball and he looked like a genius there they were again by the pool and there was a sign by uh the diving board and it said no running so they looked at the pool amazed for some reason then elephant said i want to go on the diving board,0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 1 0 0 0 0 0 0 0 1 +and she ran to it she ran to it and she slipped and giraffe did too and she scraped her knee ouch she had xs in her eyes stars in her eyes she was crying the lifeguard came and it was an elephant,0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 1 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 1 0 0 0 0 1 +no running in the f in the no running by the side of the pool he said the lifeguard and he put a bandaid on it she still had stars in her eyes and then at least giraffe did not fall and then it felt much better see no running in the pool he said the lifeguard did not you see that sign no running he was mad there was elephant with giraffe again by the pool again,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 0 1 0 1 0 1 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 1 1 +they found a plane with string at the back and she had swirls in her eyes the elephant and the giraffe was spitting out spit then she caught it he was really he was like huh splash it landed in the pool oh no they said and then giraffe was very mad it was just about to sink and elephant was going,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 1 0 0 0 1 1 0 0 0 0 1 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +then the lifeguard came again and he had his hands on his hips and and the airplane was still there but it was not sinking then it was almost going down they explained to mister elephant mister elephant you see i grabbed it and i dropped it by accident in the water when giraffe was playing with it he bendednd over and he tried to he was he was um growling,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 +he could not even get it he could not even get it and then giraffe just uh started just started to cry and then miss elephant came along she had a net and she got she had a net and she looked surprised she fished it out with the net and the and then giraffe started stopped crying the lifeguard stopped um um worrying,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 1 1 1 1 +so did the elephant and gave and then with amazement she gave it to giraffe he hugged his airplane he was happy and the elephant was happy too there is a bunny and a dog were playing in the sandbox and making a sandcastle the bu the bunny was getting the sand from the bucket and the dog was making the sandcastle but he the rabbit poured all the sand on it and the dog looked um fri um surprised,0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 1 +the sandcastle was broke the bunny had his mouth open but the dog did not the dog was crying but the bunny was just nervous here is the doggy and the rabbit again um they are going for a picnic with their basks baskets in the woods the bunny was really thirsty but the dog was not he looked at him surprised,0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 +there was a cake cheese and a basket and and the basket poured and a carrot the dog the bunny ate all his stuff there was an apple it was all done there was a cheese was all eaten the carrot was all eaten but the dog was still eating her sandwich and her juice drinking her juice then the the bunny had a tummyache but the dog was looking at the bunny surprised missus bunny came,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 1 +and wa and she was walking along and then the dog ran to her to doctor he was still ha he still had a tummyache and the dog was pulling her her sleeve and she looked surprised the doctor the doctor was said he has a tummyache from eating too much and he had to look uh with his tongue with a stick then she walked along with rabbit he and they went together and the dog was only left with the picnic,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +well the dog was going with a balloon on her um wagon wheel and the bunny ran to her it looked like he was jogging the bunny was surprised she had a balloon and there was there was the doggy she did not look so happy but then she screamed because the bunny was taking the balloon away from her and then he let go of the balloon it flew up and he they both yelled come back,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 1 0 0 1 0 1 +then the balloon drifted away the bunny had his ears down but the dog was very mean bad mean mad there was mister rabbit carrying some balloons they found him again with and a b by a bench and a garbage can the rabbit ran up to him and said may i please have a blue balloon s he said five dollars first he he pulled out his pockets but there was no money the dog was rushing to the bunny,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 1 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 +then they looked at the mister bunny with a grin h they could not buy another balloon then missus rabbit the doctor rabbit and then was standing there and then little rabbit went to go ask her something can you bo please buy us a balloon said rabbit and then she looked at him amazed because it is for five bucks only said f the mis mister bunny then she paid five bucks and they got two balloons ten bucks and they both had their balloons,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 1 0 1 1 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and they lived happily ever after first there is a lady who is bounce a ball under the giraffe it went right beside they are working at a centre she bounced it into the wall the giraffe and the elephant are looking at it the giraffe goes and swims and get the and gets the ball then the elephant takes it he then the giraffe gets out of the water first the elephant and the giraffe see the diving board then the elephant sees it,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +then she goes to go on it she went running too fast and she fell and she bruised her knee the giraffe went down and comed to see her then and then the elephant that was a lifeguard comed to see it too the eleph the the lifeguard put a bandaid on the bruise they had to sit on the bench for awhile and they talked not allowed to they talked about they are not allowed to run okay,0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 1 +now she knows it is that it because he saw the sign because he showed him the sign because he showed her the sign now no running the giraffe and the elephant got together and the giraffe got a airplane the giraffe is putting it up high and pretending it is going then the elephant takes it and she tries to do it too but the elephant throwed it in the water,0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +the giraffe gets angry then there is a lifeguard coming along the elephant is explaining what happened the lifeguard tries to get it but she can not get it so so the giraffe starts crying then comes and then comes a lady with a net then she gets it out of the water then she gives it to the giraffe now the giraffe is hugging the airplane,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 1 0 1 +first the rabbit sees the puppy playing in the sand he wants the rabbit sees the puppy playing in the sand and he wants to play they builded a sandcastle the rabbit filled up a bucket of sand the rabbit dumped it on the castle then the rabbit said oh no then the puppy was trying to get it off one time the puppy saw the rabbit coming with a basket and the girl had a basket the rabbit had piles of food,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +the lady did not she saw the rabbit eating so much the rabbit got really fat she was he was starting to feel dizzy he called the doctor and he got the lady the lady told the doctor to help him the doctor said you are eating too much food too fast so he takes the bunny the the dog sees the bunny coming along and the girl has a wagon with the balloon hooked on it,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +the bunny the bunny looks at it then the bunny takes it off then the bunny accidentally let it go and it going too high and they can not reach it the the dog is getting mad at the bunny they see another balloon holder so the bunny says can we have one of those balloons but none cash and it costs five dollars,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1,0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +uh they explained what happened to the balloon then they go running to go get somebody can you say that louder they went to go get somebody he is explaining about the balloon man and and we do not have enough money so she buyed two balloons and now they both got a balloon once upon a time they were playing basketball then then the boy came named giraffe,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 +the ball got stuck in the pond then he went back home then it fell back in the water and he gave the cow a nnn new then he went out of the water the end there was a girl named elephant and the giraffe went swim again the lake and then they just ran ahead then they jumped into the water,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and then they hurt her knee then they could not give a bandage and he just put on a bandage for her then it feel then they went swimming for a next time then he got mad the end once upon a time a a boy me met a girl and he was going to fly his airplane then he flew it and then then he let go of it,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +and then she grabbed it from him and it was hers and he throwed it in the water and then he got mad at her then he got mad and he need to do something and they could not reach it so they they got a net and it was there for a long time and he got a net,0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 1 +then he got it then he just tried to get it then he just got it then he just give it to the boy who had it and x the end he went and he met a girl going to the the playground and she made a ca sandcastle trying making one like hers,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then it broke then they got very angry but they needed to make it all over again the end there was a boy named bunnyhead then he went to to have a picnic and met another guy with a picnic basket and they had a picnic before it it it got night time then they had two boxes of sandwiches and then they got full then they went then they then they went full,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 +and they get more and more then came the mommmy then the then the doctor then they ran up to her then they bumped into her and she took a temperature and she was sick and she needed to take her to a hospital the end once upon a time there was a boy and went um uh what um giving him wagon a walk,0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 +then they then they got put it on a balloon and that was good then he tighten it on very good and he gave it to the girl then then it flew away then there was no way then he was ba angry then he met a balloon guy and he bought her one and buyed a new balloon so so they c so there could be one on the wagon then he gave us one before he flew away,0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and thank you and then it went she sawed the doctor again and a little girl can you buy us a balloon and they gave him money then then he gave them balloons then they then they both had one good the end once a elephant was walking over to a giraffe with a backpack full of three balls then the balls sank into the water and floated away,0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +they tried to catch it but they nearly fell into the water they fell into the water and tried to float he tried to float to the balloon the ball but it wa but it but the ball was too fast then the elephant caught the ball and pulled giraffe out of the water then he was soaking wet then they walked home once gira giraffe and elephant were so excited they wanted to go into the pool,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +they walked over to the stairs and then they walked over to the board and then they jumped in then elephant jumped in and then elephant slipped and slide and then he fell into the water head first he did not realize that that he had no bandaid on his owie and it hurted and hurted and hurted and hurted uh momma bear poppa bear walked over to him are you okay,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 1 1 +no replied sister bear then they were so excited they are they v poppa bear gave him poppa elephant gave sister elephant a bandaid then it felt much better now they were ready to play in the water but then suddenly the poppa bear said you stay there do not go with the giraffe once elephant and giraffe were walking to the pool again giraffe brought an airplane and then he elephant flied it but then it sank into the water,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 1 0 1 0 0 0 0 1 0 1 1 1 0 0 0 1 1 0 1 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +you said elephant you get that airplane out of the water but i can not cried elephant now it sank into the pool it sank into the pool nearly all the way poppa bear said get that airplane i can not said poppa bear said to the giraffe poppa bear tried to reach it but it was too far oh now we will never get it cried poppa bear and sister bear hold it said hold it said giraffe i got something,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1,0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 1 1 0 0 1 0 0 1 1 0 0 1 +i have an idea he he got his momma bear got the net and then he tried he got it then he tried to get it and at last he got it and then it was soaking wet that he had to waited till it was dry now it was dry and he could fly it but not into the water any more once two bunnies were playing in the sandbox one bunny build a sandcastle,0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,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 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 1 0 0 0 1 +and one digged sand to put in his bucket he poured it onto the castle and then it all broke and then it all fell and then the uh the bunny had to build it again once two bunnies were going out for a picnic ss one ate a carrot and some hot dogs then he was all full and then the second bunny drank juice and ate his sandwich and then the sandwich taste yucky,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 +and then they went home to their mom the mom said the mom said please take care of your little brother and they took care of each other then the the sister bunny and the momma baby all they walked home together once a ba a bunny was bringing uh a wagon with a balloon attached to a wheel and then the the bunny was so excited that he looked at the balloon and then he tried to put the balloon off the wheel but it was stuck and then it flew up they tried to catch it,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 1 0 0 0 0 1 +but it was floating away up into the air and then it nearly disappeared and then they got so mad they had to get a different one they had to get a new one so they walked over to mister balloon and said can i have one a new balloon the bunny asked and then he gave him the nice five balloon and then he did not gi give him them one and then all of sudden brother bear brother bunny and sister bunny saw their mom and they w then they walked over the river skated over to the river and out at the river she saw their mom,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 +and then mommy mister balloon will not give us give us a balloon and then then h then momma bunny walked over to mister balloon and said can you please give them a balloon she asked certainly replied mister balloon and then they had two balloons for themselves two friends were playing with a ball the ball went in the water the guy tried to get the ball then she uh the boy passed the the ball to the elephant and then they the boy was in love with her,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +two friends were going for a swim and the elephant wanted to dive she tripped and and hurt her knee the lifeguard came and put a bandaid on her and she was curious and the lifeguard showed her the sign of no running the giraffe brought a airplane he was playing with it and the elephant was getting bored then the elephant took it away from the giraffe and started to play with it,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +she accidentally dropped it in the water the person was very mad at her the lifeguard came and the elephant explained to the lifeguard he tried to reach it but he could not the life the the boy was crying then somebody came in with a net and reached it and got it out and passed it to the giraffe and he was happy and so was the elephant,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +one day uh a bunny went to the park with his friend she was making his sandcastle with her he dumped it all over her sandcastle and it uh and it blew up and she was crying and he did not and he did not even say anything uh two friends went for a picnic uh the one friend ate everything he was very full he got a stomachache,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1,0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 1 0 0 0 1 +the little girl ran to the nurse and pulled her over to the boy and she said merry christmas and they lived happily ever after two friends went to the park and the girl had a balloon uh the boy wanted to hold the balloon he untied it and it flew up and then the girl was very mad at him then they saw a balloon person,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and he asked if he could have a balloon of hubbadubba uh bl and the guy said balloons five cents and they were very sad then they seen a doctor and asked and the boy asked if she can buy two balloons with five cents and they got the balloons and she paid and they loved the balloons a elephant met a a giraffe and the and the elephants ball went into the water,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +then the giraffe would get it and then she w then she was happy and then hmmm she liked her and then okay um the elephant and and the the giraffe was going to run and he was going and the elephant was going to run over to the jumping thing and then she slipped and then she fell,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 1 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 1 0 0 0 1 +and then the lifeguard came and then he putted a bandaid on and then then she knowed that there was no running and then she looked at the sign and it said no running and then the end the giraffe had had a airplane and he was going to throw it and and the and the elephant wanted to try too and then he s he was tr he wanted to throw it,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +and then the elephant was going to throw it and then it sank and then then the giraffe was mad and and then the lifeguard came and then and then the lifeguard was going to get it and then he and then he was almost about to get it and then and then the giraffe was sad what happened next and then then the girl lifeguard came to get the airplane with a th a net and then she got it,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then and then she got it and then he was happy a bunny and a bunny were playing in a sandbox and then they builded a snowcastle and then the the other rabbit poured some sand in it and and one part was still fixed then what happened and then the other one was sad the end um um two rabbits had baskets,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 1 0 0 0 0 0 0 1 0 1 0 1 0 0 0 1 +and it had a picnic and then and then the other rabbit was full then he was hurt what happened he found a doctor and and he thoughted that guy was hurt and then the doctor came and then then the boy was better the end um the girl had a wagon with a balloon on it,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 1 +and the and the other rabbit was running and then the boy rabbit was going to take the balloon and then he and then he was trying to take it off then what happened then it flew up in the air and then then it popped and then he was going to the balloon man and then then the girl was sad what happened then and then then he was mad,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +um then the girl came then sh then she then then she wanted a balloon and then he asked the doctor that could could he have some of your money what happened then then then the boy and the girl was going to have a balloon and then they both had a balloon the end once an elephant and a giraffe were playing ball when suddenly the ball dropped into the sand that was water out they sunk the ball picked them out,0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1,1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +but it was just the elephant and they played ball again once an an elephant and a horse were playing in the sand suddenly it was not sand they realized they fell and sunk they came out again they got hurt because that is how it looks they had to put a bandaid on a different eleph on that elephant a doctor elephant and they sat down the doctor elephant got angry,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 1 0 0 1 +once an elephant and a giraffe w were shooting airplanes when it looked when suddenly the airplane got broken and it shooted into that water into the water oh no said the little giraffe like he yelled mister fixit came and said what is all this yelling about a a a plane got stuck in the water can you take it out of course i will and he s he got angry too did not know how,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,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 1 0 0 0 0 0 0 0 1 1 1 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 1 0 0 1 0 1 0 1 0 0 0 +so he took his net out of his truck and scooped it up and that did the job and they played airplane again and they were happy they liked the the airplane it was all fixed up once a dog and a rabbit were playing in the sand they made a sandcastle and when by the time it was finished they poured some more sand and it fell down and did,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,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 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +they built the sandcastle again it was up once a dog and a rabbit were walking down they had a picnic soon the rabbit was so tired and full that he had to go to sleep out they packed his legs got tired dog had to pull him doctor came along and fixed up the rabbit and took them home once a a dog and a rabbit were waiting down with a balloon when the balloon popped,0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 +on that hot day they all sat up went the balloon it popped out came the balloon man with lots of balloons and they gave one to each and they had lots of balloons only one popped and they liked their balloons off they went out came doctor rabbit,0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1,0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 1 1 1 +he said what are these balloons are for the balloon man gave it to us because we love balloons and ours popped away once there was uh two friends one tally and one hm snout and snout had a beautiful green ball but it fell in a pool so tally swam to get the ball and he got it back um tally was blushing his whole face went red,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 1 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 1 0 0 1 0 0 1 0 1 +this is another story about snuff snout and tally once there the pool in the last story with the beautiful green ball fell in the pool and tally got it back there was a diving board and snout said i am going to go on that diving board and i will show you a nice dive well tally said stop do not run and unfortunately snout slipped and fell and really really hurt her knee and then tally warned her because tally saw a sign that said no running snout started started to cry,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 1 0 0 1 +but the lifeguard luckily saw and came to the rescue and the lifeguard gave snout a bandaid once snout stopped crying the lifeguard gave her a sticker for being such a good help not moving her knee around and stuff and then um the lifeguard pointed to the sign that said no running and snout looked and said sorry this is a story about snout and tally and tally had this nice model airplane that he was playing with by the pool he was flying it around and snout was like ooh she really wanted to play with it,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 +so she snatched it away and then tally was like hey give it back it is mine and snout dropped it in the pool and then tally s said now look what you have done you should not grab and tally got really really really mad at snout and then the lifeguard asked what is the problem here kids and snout said well um ta tally here was playing with this model airplane and i i really wanted to play wis with it,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 1 1 0 1 1 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 1 +so i grabbed it away but i accidentally dropped it in the pool so the lifeguard had to get down and stretch out for the plane but it was too too far out the lifeguard could not get it and then the the girl luckily had a net so she dipped it in the pool and luckily or not but he was lucky she did get it out,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1,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 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 +and then snout said sorry i dropped it in the pool once there was two animals a wolf and a bunny and they were at the beach or in a sandbox and they built a big big sandcastle the wolf was working on the tower and the bunny was um collecting the sand but then the bunny poured the who the whole bucket of sand onto the sandcastle and it ruined one tower but then the sand that was on the tower started coming down and wrecking the whole sandcastle so when that was all finished the only thing left was one tower,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the wolf started to cry and the bunny feeling bad once there was two animals a ra a hare and a wolf and the wo and the bunny thought that he was so good so he could have all the food he wanted so then once once they were finished the wolf had just a sandwich and a juice and then the rabbit was feeling kind of queasy so um the the wolf told him he would walk him home but luckily a doctor was walking by so the wolf a asked the doctor if he could um help the uh wolf and then the the wolf um brang the doctor over to the bunny,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 +and the the wolf said he has fainted he needs your help so the the the hare doctor said well i will give him this medicine so she did and he woke up but still he was feeling kind of queasy and then he he just took a run around the trees that is what the the doctor told him to do and then he was feeling fine two best friends named fluffball and fluffy were once playing at the park,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 +and and the and fluffball which was hare kept going on about this balloon he got for being the best student in his class but then the the hare said i am going to take it off and show it around but the wolf said no do not it what if you let it go it will fly up into the air but the hare did not listen so um the balloon he accidentally let it go and it went up into the air the the um the wolf got so mad at him that he he he he said i am not your friend any more but then the hare saw some some balloons,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +so he went over to the balloon guy said i want um that red one right there but it was five cents but he did not have any money so the guy that was selling the balloons said sorry but you can not have this nice red balloon and then um doctor fluffball which was fluffballs mom um asked him um fluffball asked his mom if he could have five cents because the the red balloon was five cents so doctor fluffball gave the man five cents and he got two balloons for both of them and that was that they both got a blue and red balloon playing baseball,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 1 1 0 0 1 1 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 +bouncing the three balls in the fall looking at a ball in the fall laying down in the fall trying to get the ball try give someone the ball in the water in the spring playing running around in the spring looking in the water in the f summer lookin running through the water in the summer running in the in the summer on the sidewalk getting hurt on the sidewalk in the summer get hurt in the summer crying,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 1 +playing in the summer sitting down on the bench in the summer sitting down on the bench in the summer get someone getting mad being happy in the fall playing in the fall with a little toy airplane playing with a little toy in the fall put his airplane in the water in the fall put the water in the in the water in fall put the water in fall,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +put the water in fall and they happy try and get it in the water in the fall sad it in the water in the fall getting a net to try to get in the water in the fall try to get it in the fall then kind of got it giving the airplane to somebody in the f fall givin holding the airplane in the fall the end,0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 1 +playing playing in the sand making a sandcastle with sand playing with sand with sand playing with sand with sand playing with sand with sand uh bringing food somewhere having a picnic somewhere laying down and eating somewhere la laying down and eating somewhere,1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +playing somewhere pulling somewhere playing somewhere playing somewhere bringing a cart on the sidewalk in the spring taking a cart somewhere in the spring taking a cart somewhere in the spring trying to get the balloon no handling and they would all go somewhere in the spring,0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1,0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +looking up s in the sidewalk in the spring saying could i have a balloon in the spring seeing what ss getting a balloon in the spring looking at a balloon ss looking they were at a tr at a balloon in the spring but they were all gone walking in the spring um looking at the balloons pulling someone to that balloons in the spring,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 1 0 0 0 1 0 0 0 1 +uh getting a balloon in the spring walking once upon a time the elephant had a ball and the giraffe liked it and he decided to play with it by the pool and then he made a mistake and it falled in the water and and and the elephant thought that he could not get it but he he just tried and tried and he got it,0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he gave it back to the elephant so the elephant was very happy the end once upon a time there is a elephant and a giraffe by the diving pool and the elephant ran and slipped i think i think that is next page and he slipped and got hurt so the giraffe came running and then one of the elephants came to help with a bandage and the band and he put the bandage on,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he hurt and hurt and she had to keep her leg out like straight in front so so it would not hurt when she walks but she had to sit there x what was that last bit she has to sit there at the diving pool all day until it feeled better so and then the big elephant said no running and she went that is why he got hurt and he said so she had to sit there for time out that is why,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 +once upon a time there is a elephant and a giraffe the giraffe had a airplane and they were at the diving pool the elephant played with the airplane and watched it zoom around and he did like and the elephant took it away and started playing with it and then it fell in the water and the giraffe stared at it what and the giraffe stared at it,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 1 0 0 0 0 0 0 1 +and then the giraffe was very mad at the elephant that the elephant was so scared so the beach the suh the the the lifeguard he he decided to take it out and he tried to get it because the elephant said so small elephant as tall as me and then he tried and tried and then i should not what is that last part then he tried and tried but he could not get it so he just tried still,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +so he could not get it and the zebra was sad so sad and then there is somebody that ha was even a bigger elephant and tried to get it with her net and she got it and she got it out for their giraffe and the giraffe was happy very very happy so the elephant and the giraffe became friends again there is so much ones about them at the diving pool the end once upon a time there was a little dog and a little rabbit they were playing in the sandbox,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 1 0 1 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 1 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and they builded a castle and the bunny took some sand and put it in the bucket and he started shoveling it and then the bunny poured all the sand over the sandcastle that the dog made and then the bunny said oh i am sorry i will not do that again oh the dog was very sad he cried h because the bunny was not very smart and then f and then the bunny just would not play with him and he standed still with his ears down like this,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 +the end once upon a time there was a bunny and a dog they were going to have a picnic with each other and they met each other in the woods they met a what they met a each other in the woods the bunny brought lots and lots of junk that is like all food that is bad for you junk like what like junk i call it when it is food that is bad for you i call it junk,0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 1 1 +and the bunny ate so much of his junk he got sick and he falled down and he got dizzy and then the doggy ran to the doctor bunny to help and the doggy pulled him over and then he started working on fixing him in case he was okay well then he threw a thing at his head and tried to s make him look over there and he fixed him up he had to go home so he the doctor brought him to his home,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 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 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the doggy was very happy the end once upon a time there were a dog and a bunny and they met each other in the woods and the dog had had a balloon and the bunny came running and a bunny ca took the balloon out of the the wagon and tried to untie it but the dog said no and he would not listen,0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the dog tried to catch it and the bunny tried to catch it too but they just could not catch it oh and then the bunnys dog friend got mad and made his teeth like this and made what and made ade him mad so he would be so mad that he would just be like this standing there then he went off to get a balloon from a balloon seller that sells balloons he decided to to get one,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +he decided to get one the bunny decided to get a balloon but he did not have any money for five cents well they were sad and he did not have any balloons for each other because they wanted then the bunny wanted one too so they went off to someone that had money and then the and then he and then he bought some for them and they got two the two last ones left and they were so happy and they they have been friends with each other all day the end,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 1 0 1 +the elephant and the cow umhm so you have told me what is in the picture can you tell me a story about it cow elephant cow and a elephant umhm what is happening they are trying to find each other the elephant and the cow had a accident with the ball and the eleph the cow got in there the cow got what he got in there he got in there and the elephant got it,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the cow is still in there and the cow and the the cow is dripping and she has the ball there is a slide cow and a elephant a cow and a elephant and a slide and a pool and the elephant is running and slipping and the sand and the cow and she got hurt she got hurt on her knee and it hurted and she can not go in the pool,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and she hurt herself uh the bo the cow and the elephant the cow the elephant has a ribbon and a dress and the cow gots a airplane and and uh she got it and it got in the water and the cow was mad and she is mad too both of them are all mad and the elephant is getting it,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 1 0 1 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 +he tried and tried to get it she gots a net to catch it and she is going to get it with the net and they got it back and they are happy the rabbit and the d the d he she made a a sandcastle and the rabbit gots a shovel and the rabbit wants to play and the s and he s g something is going to happen to the sandcastle and it brokeded,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 1 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 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and then the she is crying they got picnic baskets and they are having lunch and they are havi and the rabbit is full and the rabbit is what full and they are and and the she is hungry and the de and she goes to another lady and sh she she is going to say hi and there is the rabbits mom,0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 1 +the there is a balloon and a wagon and she is carrying and the rabbit is not the rabbit is what he is not carrying and the girl is just carrying it what did you say the rabbit was carrying nothing and there the balloon is going to be poppeded and the rab the rabbit is going to take it off and it is going away,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and it got away and they were go and get another one from the man can you take your fingers out of your mouth then i can hear your words better they are picking one and they are going to give one and they are gon to go the man said no and and there is there is the bunnys mom and he is the b the rabbit said he will not give me a balloon and now it he is getting one and he got both balloons,0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 +once upon a time and he is looking apples and the apples fall into a pool and uh a buddy a a guy f is catching it and he get it and he put it back and he be happy the end once upon a time are walking in a pool and he is looking backwards,0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and a girl walking and a and he stopped and he be worried and he be scared and he sit on a bench and he sit on a bench the end once upon a time out walking and he is flying a plane and he and he is playing a plane,0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then he dropped it gone is sinking and sinking and sinking and sinking and sinking and sinking and sinking and he catch it and he put it right back on his hands,0 0 0 1 0 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he be happy the end you can start once upon a time once upon a time what do you see use words so i can hear you so my tape recorder can hear you hm what has happened them building and he throwing sand,0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 1 0 0 0 1,0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 0 0 1 0 0 0 1 1 0 0 0 1 1 0 0 1 1 +and messed all d up and he be sad how does it start once upon a time try again hm and he is eating and he is tired and he is going sleep and he is running and he is holding his dress,0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and he fall down and he walks the end once upon a time a tree and he catching a balloon and it pops and wants the balloons and she wants the balloons again and they popped,0 0 0 1 0 0 1 0 1 0 0 0 1 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 1,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 1 +and they popped again and he is looking and he get and he be happy and he be happy again the end there is an elephant and a giraffe that but the elephant is bouncing a ball so fast that the giraffe wants to try and the elephant um and well the elephant and the giraffe but the giraffe is trying to get the ball in the water so he swam,0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and and the elephant was covering eyes his eyes and um the elephant was covering his eyes and his trunk was full of stuff and then h he was happy and then the giraffe was happy then the elephant started to grab it from the the giraffes hands and he said thank you and the um elephant had the ball and the giraffe was soaked so the giraffe asked him if he could bounce it but he said but the elephant laughed,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 +and he said no there is the giraffe and the elephant and the giraffe has a kleenex and they were going to go in the water and um the elephant was going to go in the water but the giraffe pushed the elephant and so the elephant fell in the water and the elephant slipped when when the giraffe was running after him so he would not slip but then the elephant he got hurt and the giraffe the elephant got hurt because um he slipped,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 +and the giraffe was running to see what was ran what was wrong and the elephant was crying and the coach came to see and the giraffe was just looking at the elephant and then the then the coach started to put a bandaid and the elephant was covering ey his eyes and um doing kind of a mad face and the giraffe was just looking but then the coach sat the elephant down on a bench and the uh um giraffe was just um holding his hands like this and the coach was pointing his finger,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and he is and the elephant was holding his hands right between his legs and then he and then the elephant um had a kind of a mad face again the giraffe and the elephant and the elephant was the giraffe was holding the airplane toy airplane and then the and the elephant wanted to play with him but the but he was still playing with it but the giraffe was still playing with it and he was making the elephant not catch it but the elephant finally caught it and then he started playing with it and the giraffe was starting to get mad,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +but the po but the toy plane went in the water so the two guy but the giraffe and the elephant um put their mouth like this but then the giraffe was really mad and the elephant was still ga still looking at the airplane and the coach came and the and he he was looking at the giraffe so um the elephant was telling him what happened and then the um the plane started to sink even more and the the elephant but the elep the coach went over to the elephant and the giraffe was um looking at the the two elephants,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the elephant was screaming his head off and he was telling the coach what happened but the coach had to grab it before it sank all to the bottom but he could not reach it and the giraffe was starting to cry but this other elephant came with a net and tried to get it and the um plane was started to sinking more but he still could not reach it but he finally got it and he gave it back to the giraffe,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +now the now the giraffe and the elephant were happily were happy there is a bunny rabbit and a dog making a sandcastle there is the bunny and the dog that um are um well the bunny rabbit is digging the sand up and the dog is um making the sandcastle smoother and the bunny rabbit was pouring sand all over the sandcastle so the dog was um starting to s um uh get sad but the but half of the sandcastle was left then the dog is was starting to cry and he was starting to make it all over again there is a bunny rabbit and a dog that are going to have lunch together,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 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 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +there is a bunny and a dog that are having lunch there is the bunny and the dog but the bunny but but the bu dog is eating and the bunny is and the bunny is chew and the bunny is sick the bunny um is does not feel good and the dog does feel good there is a bunny and a dog but the bu bunny is a mess and the bunny is going to well the dog is going to tell the other bunny that um he has to fix him but he pulled him because he will not,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he made him worse and then the bunny felt good and the dog was just by the sandbox there is a bunny and a dog and but the dog s has a balloon on his wagon and he is pulling the wagon and the bunny rabbit seen the balloon and he he was going to not try to take the balloon off but the dog did not want him to and the balloon fl flew away,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 1 0 0 1 +and both of them were trying to catch it the bunny rabbit the dog but the dog was rea really mad at him the rabbit was there is a big rabbit that had a lot of balloons and the bunny rabbit but and the dog but the dog was still mad and the w bunny rabbit went to get another one and he asked the man that has all the balloons could i have one but they were only five cents and he did not have five cents and then he said if you do not have five cents you can not um take a balloon then the dog and the bunny ra rabbit seen the doctor,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 +and the bunny rabbit ran but the dog stayed and the bunny rabbit said i want one of those balloons and he will not give me it then he um and the doctor had a lot of money so he gave him most of his money and there is only two left because the bunny rab the dog took most of them and the bunny and the wa the bunny and the wa the bunny and the dog had the two balloo the balloons and the then they went and both of them were really happy a giraffe and a a giraffe is watching a an elephant juggle a ball,0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 +and the ball gets stuck in some wa cement or a pool and the horse is swimming in to get it and he gives the elephant the balloon the ball and then he steps out and he is wet and the elephant is happy well an ele an elephant and giraffe are looking at the pool and there is and there is something behind a rock or something else and it looks like bunny ears and the elephant is talking about the bunny ears,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and they run and they run to see him and then the elephant does a stretch and and then there is a swipe and hurts her knee and then her knee and the giraffe is coming after and a lifeguard comes over to them and he is putting a bandaid on the knee and then they sit in a bench and the lifeguard is pointing to a sign that says no running there is a giraffe and a elephant by a pool,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 +and the gir giraffe has an airplane and he is flying it around in his hand and suddenly the elephant grabs the the airplane and drops it in the pool and it is sinking and the giraffe is mad at the elephant and the lifeguard is looking at them both and the airplane and the elephant is telling the lifeguard about what what happened and the lifeguard is reaching to get the airplane but he can not reach it quite reach it and the giraffe is like panting,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 1 0 0 0 0 0 1 +and the elephant is um kind kind of nervous or sad the lifeguard kind of has a smell and his ears are going up and then a an ele a girl elephant comes along with a net and she nets the airplane out and she gives it it to the giraffe and then the gir the giraffe hugs the airplane a rabbit and a mouse are playing in the sand and they are building a sandcastle with and the rabbit is filling a bucket,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and the mouse is flattening the castle and then the rabbit he pours the sand on the castle and the mouse has a kind of a whiny face because he is surprised he is doing that and he wrecks the sandcastle and then they and now they are building it again um a mouse and rabbit are going for a picnic and they are at their picnic eating the food and the rabbit is very hot because he looks hot and and the rabbit is full and the mouse is drinking juice,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 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 1 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 +and the rabbit is like really full and then there is a doctor rabbit and the mouse is running over to him and the mouse is pulling him over and he sees the rabbit and his his his stomach is really full and then he takes him off to the doctors a mouse went to a party he because it looks pretty much like there is a party balloon and the rabbit is looking at the balloon,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 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 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 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 1 +and the rabbit is trying to untie it and he unties it and accidentally lets go and the balloon is floating away and then they are in a big fit the mouse is really mad and the rabbit is like terrifyed because the balloon fel floated away and then they see a rabbit selling balloons and the rabbit is pointing to the balloon up in the sky and and the um rabbit shows him a balloon and it says balloons five cents,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 +and the rabbit is looking in his pockets for five cents and the the man the rabbit is holding the balloons and the mouse and rabbit are looking at him and then th and the mouse is stays behind aside beside the balloon man the rabbit goes to get the doctor uh rabbit again and he says there is a balloon man and we do not have any money and the um doctor and the doctor rabbit is giving the the b the balloon man some money so they can have the balloon and then they get the balloons and everybody is smiling,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 +one day some kids were at a swimming pool one of the kids had a big bouncy ball the other kid wanted to try it he accidentally dropped it into the water the other kid was scared that it would go to the bottom so the kid that dropped it went into the pool and got it the other friend said thank you and the other friend gave the other kid her ball back one day some kids went to a swimming pool one of the kids said let us jump in,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 +the kid wanted to jump in but she slipped and she fell on the ground and scraped her knee then the lifeguard came to help her he put a bandaid on they sat her down on the bench to rest for a while then the lifeguard pointed to a sign that says no running one day two kids were playing by a swimming pool one of the kids had brought an airplane to play with they were playing with it,0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the other kid snatched it from their hands and she accidentally dropped it in the water the other friend got really mad at her the airplane was sinking more into the water then the k then the kid who put it in the water by accident said to the lifeguard the airplane got dropped in the water the lifeguard tried to reach it with his hands but his arms were too short the other kid who had brought the airplane started crying then one of the people who were swimming saw the airplane and got out of the pool got a fishing net and told them that they would get the airplane for them they they reached into the water,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and sh she got the airplane caught in the net and she gave the airplane to the kid who brought it and that kid kept it and did not let other kids play with it by the pool one day two friends were in a sandbox playing together they were building a sandcastle one of the kids dumped a bucket of sand on one end of the castle and that end collapsed and the other friend started crying one day two friends were going for a picnic one of the friends ate too much,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 1 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 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 1 +when they were done they had a big tummyache and they really wanted to go home so one of the friends went to see a doctor they pulled the doctor by his sleeve to bring him over to the other friend the doctor said do not eat so much next time you have a picnic and the doctor took the other friend to his house one day in the forest two friends were walking one of the friends had a wagon with a balloon tied to it one of the friends wanted to touch it so they a so they took it off the wagon,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +pretty soon it almost touched the sky and the other friend was mad at him and the string was only left so the other friend got really really really mad at him so they both went to a balloon guy the balloon guy said do you want to buy a balloon and then he also said five cents a balloon and the rabbit reached into his pockets but they were empty so the friends just looked at him,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +then one of the friends went to a doctor and said that guy is not letting us have a balloon and then the doctor gave him five cents and they got a balloon and the then the doctor paid another five cents for the other friend and he got a balloon too and then they both played with their balloons all day elephant zebra what happens in the story ze zebra,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 1 1 0 0 0 0 1 1 1 +ball zebra and elephant ze um elephant and zebra and ball zebra and the ball an and the elephant zebra and the elephant and the ball the end um elephant and zebra elephant and zebra elephant and zebra owie and uh owie elephant has a owie,1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 1,1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 +and the zebra do not has a owie there is two elephants zebra two elephant two elephants and zebra two elephants and zebra two ele elephants st no zebra the end elephant and zebra,0 0 0 0 0 0 0 1 0 0 0 1 1 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 1 0 1 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 1 0 0 1 +uh elephant and zebra airplane uh elephant and zebra airplane elephant and zebra airplane uh it is on what is that sound what is that sound in there um elephant and zebra and airplane elephant and zebra elephant and zebra,0 0 0 1 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1,1 0 0 0 1 1 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 1 +two elephants and zebra elephant and zebra and airplane elephant and zebra elephant and zebra elephant and zebra elephant and zebra elephant and zebra elephant and zebra the end bunny,0 0 0 1 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 1 1,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 1 0 1 1 +what happens in the story um sandcastle sandcastle sandcastle and puppy and bunny sandcastle and bun uh san sandcastle and dog doggy and rabbit bunny sandcastle breaked a sandcastle breaked they are making it again the end,0 0 0 0 1 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 1 0 0 0 0 1 0 1,0 0 0 0 1 1 1 1 0 0 0 0 1 0 0 1 1 1 0 0 1 0 0 1 0 1 1 0 0 1 0 0 0 0 1 0 1 +um basket puppy and rabbit carrot i said a carrot that is it drink pa basket sandwich juice i said juice what happens in the story,0 1 0 0 1 1 0 0 0 0 0 0 1 1 0 1 1 1 0 0 1 0 0 0 0 1,0 1 0 0 1 1 0 1 0 1 0 0 1 1 1 0 0 1 0 1 1 0 0 0 0 1 +um tree tree tr tree tree tree the end uh balloon balloon balloon what happens in the story,0 1 1 0 1 1 1 0 1 0 1 1 1 0 0 0 0 1,1 1 1 1 1 0 1 0 1 1 1 1 1 0 0 0 0 1 +balloon balloon fly away balloon t popped the balloon lots of balloons lots of balloons lots of balloons five balloon lots of balloons i said lots of balloons,1 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 1 0 0 0 0 1,1 1 0 1 1 1 1 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 1 0 1 0 0 1 +lots of balloons yeah uh lots of balloons let us count the balloons in here in this picture there is nine two balloons there is two balloons none balloon one balloon two ba the end,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 1 0 1 0 1 0 0 0 1,0 0 1 1 1 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 1 1 0 1 1 1 0 1 +um the uh giraffe s comes to see uh comes on to swim in the water and then there is an elephant and then um she is bouncing a ball and he um he is asking to play with her they play volleyball and um it actually falled in the water by accident he was going to go in the sw he was going to swim to get it and then he swan swam in and then the elephant had um her hands over her eyes and he had a mad face cause he knew he could get it,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and um the he got it he gave it back to the elephant and then the elephant um was going to fall in love with the giraffe um they wanted to go for a swim and she wanted to try the diving board she did not see um no running she was gon she was running and the um ele giraffe said um you better not run it because he saw the sign but he did not tell the elephant and she did not she did not hear him,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 1 0 0 1 0 0 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and then she slipped she was running to get her then she got a big owie she was crying and then the lifeguard came over and gave her a bandage she was scared and now he said there um you have a bandaid now and he was m the lifeguard was mad don not run did not you see the sign,0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 1 0 1 0 1 0 1 +uh um the a gir the giraffe was walking and then um a elephant came and she wanted to play with his um airplane they were taking turns the um he was playing with it and um the elephant was curious that it would go in the water and then she took it away and then it landed in the water and th he was mad at her she wa she was curious what she could um do about it,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 +then the lifeguard came a and he saw that it was in the water the giraffe told him that um th the elephant was took taking it away and threw it in the water and then she said i did not do it and he did it by ac he did it on purpose and then he was the lifeguard was curious and he was trying to reach it they were both curious that he could get it and then it was starting to sink more and then a girl came with a net,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and then she scooped it out and gave it back to um the uh giraffe and then she said here have your airplane back and he said thanks for getting it and they fell in love again um a girl was building a sandcastle the um bunny wanted to play with her and he they dumped some sand she was patting it down and then he put some sand on it and um it broke,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then um he said oh no and she um said it is okay and he was she was crying she was trying to make it again um a boy and a girl was walking along and they were going for a picnic with each other he was eating a lot of his and he had a lot of junk he got so full and he was getting sick,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 1 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and he said i need a docor he doctor he he felt dizzy she was going to phone a doctor and then um she there is a doctor walking along and then um she ran up to him she said um my friend he has a stomachache he is dizzy he ate too much of junk and he said no and she said come on come on,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 1 0 0 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 1 +please help me and then she said yes and um he he said you are dizzy your temperature is five now he is okay and he went with the doctor home um she a girl was walking along and a boy was walking just for a jog and then she just walking with a balloon tied to her wagon and he wanted to play with it,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 1 0 0 0 1 1 0 1 0 0 1 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and she said no and he was tying it off the wheel and then it floated up in the air and then she was really mad at him he was scared he looked at the balloon and then they both s she was still angry at him and he saw a balloon guy and he said can i have one of those balloons and you have to pay five cents,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and they both wanted one she he was curious that um she was going to be really mad at him again and um he went to hi his mom and he was going to ask him ask her if he could have five cents and uh she said yes and she le he letted he she gave um five cents to him and they both were happy that they got a both got a balloon and they would not share theirs again and the mom wa ha was happy too um once upon a time there was a elephant,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 1 0 0 0 1 0 0 0 1 +and she was bouncing three balls and giraffe came and she try and he wanted to try and the elephant said okay and then the giraffe said i can not do it and then one ball wen then all three balls went into the water and then the elephant and the giraffe said oh no and then the giraffe went splashing in the water to get all three balls and then the elephant got one ball and then he wa happ and then she was happy,0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 +the end um once upon a time there was a little giraffe and he wanted to go swimming he was trying to go in the diving board and he was scared and then the elephant said i will try it out and then she was running and then the giraffe was slowing down and then n the the elephant stubbed her hurt her knee then the lifeguard came,0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 1 1 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 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 1 1 0 0 0 1 +and then the lifeguard put a bandaid on her knee and then she was on a bench and then he put her on a timeout that is it um once upon a time there was a little giraffe and a little elephant and and the little giraffe was going to throw his plane he thought it was going to go in the water then he tried and then he tried he did not let go,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +and then the elephant took it away and then she threw it in the water then the giraffe was mad then the lifeguard came and then he said you were on another timeout for the elephant and then the lifeguard said i do not know if you should have a timeout and then the lifeguard was going to try to reach it he did not reach it then he did not know and then the giraffe was starting to cry,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 +then this lady elephant came and she got a net and she was going to get it with the net and then the lady almost got it and then she got it and then the giraffe was happy once upon a tame time there was a little rabbit and a little dog and the little dog that was mak it was making a sandcastle and the rabbit joined in and then h the rabbit tried to do it,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +well he did not get it right and then he dumped it on top and then it did not and the dogs eyes went crazy and then the dog his mouth was he was kind of it was kind of crazy and then it was trying to make it back well it did not the end once upon a tame time there was a little rabbit and a little um dog and then they wer they were going for a picnic and the rabbit said hello,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 +would you like to join my picnic well the dog said no thank you i will enjoy my picnic and then the rabbit was eating all its stuff that it brought and then he was getting so hot that he that it was get that it was burning and then he was very fat and then he was going crazy and then he saw and then she saw then the puppy saw a doctor and then and then she was bringing the doctor to the rabbit and then sh that rabbit saw the other rabbit,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 1 0 0 1 0 0 1 0 0 0 0 1 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 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and then it took it that little rabbit to the doctors that is the end once upon a time there was a little rabbit and a little dog and then the little rabbit wanted to have the balloon and then it almost took it and then he did not notice and then he untied it and then he did not know what was there and then it and then the balloon went up up up and then that dog was mad at that rabbit,0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 +and then another rabbit came by with some more balloons and then that d um rabbit wanted a balloon and then he saw he did not have any money and then he did not get any balloons and then one rabbit then that rabbit saw a nurse doctor and then that doctor then that little rabbit said can i have some money for one of those balloons and then he got one and then he had and then they had two for each the end giraffe and elephant were in the pool,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1,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 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 +and i wonder what were were they were bouncing the ball i wonder what will happen the ball felled in the water giraffe was swimming to get it and and giraffe got it and elephant said thank you and you are my hero giraffe said oh my pleasure and and and elephant was engaged with him elephant and giraffe were by the pool,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 1 0 1 0 1 0 0 1 0 1 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +they i wonder what will happen elephant was running and and i wonder what will happen she slipped and she got a owie and she was crying and giraffe wa is going to help her and the lifeguard came and ss and gave her a bandaid she was so sad that sh he had to put a big bandaid on then the lifeguard let her sit down for awhile,0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 +the lifeguard was so mad and it said no running and ii she was so sad giraffe and elephant were at the pool giraffe had a airplane elephant took it away from him he was so upset it felled in the pool ele and giraffe got so mad that he wanted said that he wanted a new one and she took toward to the lifeguard and said can you get that,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 +and he said did you do this and he will and she will say no she wa she was crying and said that all right i did it this is the truth i throwed it in the pool the lifeguard crawl and try to get it i wonder what will happen he could not get it and giraffe started to cry and a girl lifeguard had a net,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 +and try and she got it and she did giraffe was so happy that he did not have to have a new one and then he loved it and he never ever ever let elephant played with it ever again this rabbit is going to make a sandcastle with this dog the rabbit is putting sand in the pail when the dog was making a sandcastle the rabbit poured the sand onto the sandcastle the dog was sad the dog wrought so hard,0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 +she started she was going she wa the rabbit was upset because he was going to make another one the dog was crying the rabbit was disappointed rabbit and rabbit saw the dog dog the dog waved at rabbit they were walking to a picnic the rabbit was so hungry that he had too many junks the ra the the dog had a sandwich first soon the rabbit was fat and full the dog was still hungry,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 1 1 0 0 0 0 0 1 0 0 0 0 1 +then the rabbit got dizzy the ra and the dog looked at him the dog saw his mother and he said that rabbit is hurt he does not feel well then he pu the dog pulled his his mother the rabbits mother to see him and he was very ill the r the rabbit ate too much junk and and his mother was a doctor so she took care of him,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and she took him to his house and he she said to the dog he will be okay the dog was going going for a walk with a wagon then rabbit showed up he said hi and i wonder what will happen rabbit saw the balloon and the dog said be careful the rabbit untied the balloon the the dog was disappointed,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 1 +then rabbit let go and dog and dog was worried and he wanted she wanted her balloon back and she got very mad at rabbit he al he always bugs her then the the balloon man was carrying some balloons and the dog was still mad he said that may i have a ye white one and the and the balloon man said sure when when he got to when got to his pocket and pulled down the balloon it was five cents,0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 +and he did not have no five cents and he was he was sad then the balloon man put the balloon up again and did not listen to him then the rabbit went to the doctor again she had money and he wanted five cents he asked if you can buy me a balloon two of us because i do not have no more money and she said yes and and she and he took two balloons to them and ga and one of the money they were happy,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 +and the doctor was happy too that they have balloons first they have balling bowling balls secon second they drop one third he tried to swim and got it after she got the ball after he tried to jump with the bowling ball that is a silly idea you will fall down and hurt yourself first they saw the thing and they wanted to jump,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 +and then they ran and and then she ran too fast then she fell down and hurt shes knee and she cried and the coach helped her up and put a bandage and put her on the bench after she the coach said do not run because it is wet and slippery should not run like that first they first the elephant saw the giraffes airplane and then he flied it and the the elephant want to tried it,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then she tried it and then it accidentally dropped on the water and the the giraffe was angry and then the coach the um the coach said what is happening and she said i accidentally flied it it gone on the river the coa the coach trie um s s tried to help the coach could not help this after the giraffe has tears because he wants his airplane after the the woman in the net i got um um had a net and tried and um want helped him to get it out,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the woman tried and she got it and then the giraffe was happy after he hugged his airplane they was making a ss sandcastle the um the um the dog and then the rabbit came and helped it and then he got some sand the rabbit he poured it on the sandcastle he felled it down and then the dog tried to make another one,0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +but he could not they went for a picnic they ate their food they were full and then the rabbit had a stomachache and then he went to a doctor and then he asked the doctor to help his friend and then the doctor helped and then the doc and then he was back to normal first they were um pulling the the balloon on a wagon,0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 1 0 0 0 0 0 0 0 0 0 1 +and then he showed it to his friend and then the rabbit untied it and then it flew away and then the dog is angry and then they they saw a man buying havin have some balloons and they want to get one and then he asked for one and then h he showed how much it was for and then she she said not not to take it and then he asked the doctor to pay,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and then he he asked like like doctor um i tooked a balloon off my friends wagon and it flew away and then he paid after they both have balloons the f the only the dog has a balloon both of them have a balloon oh now at the end they do yeah um it looks like the giraffe and the elephant are playing basketball and the ball goes into the pool,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +the giraffe tries and jumps in and get it um but the elephant gets it and the giraffe looks embarrassed um it um the giraffe and the elephant want to go swimming um the the giraffe the elephant wants to go off the diving board and she starts running and the sign says no running and she slips and falls and scrapes her knee the lifeguard comes running up to her puts a bandaid on it and she is all better,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the lifeguard points out the sign and she looks really really embarrassed and guilty um the giraffe has an airplane in his hand and the elephant um really likes it um the giraffe pretends to fly it and he is making airplane noises the elephant gets jealous the elephant the elephant steals the plane away from him and i guess she tries to fly it but it goes into the water,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +uh the ele and the giraffe gets mad the lifeguard comes up the lifeguard says what happened the oh and the elephant explained it to him so now the lifeguard is trying to get the the plane back and the lifeguard can not do nothing the giraffe starts crying then s a woman comes another elephant comes up with a net scoops the airplane out and gives it back to the giraffe the giraffe and the giraffe is really really happy now the bunny and uh the dog uh the dog has built uh a sandcastle,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 1 1 0 0 0 1 1 0 1 +and the bunny wants to help the bunny scoops up uh uh a shovel uh a pi the bunny takes a shovel and scoops up some sand and then she pours it on the sandcastle she buries the sandcastle and the dog starts to cry the dog and the bunny are having a picnic the bunny starts to eat and she has a lot of junk food the bunny uh gets a really really big tummyache um the dog does not know what is happening,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 1 0 1 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 +the the dog runs up to the bunnys mom a doctor or something and the and pulls the doctor over to see the bunny the doctor um brang her back like maybe gave her a painkiller or something but but but then the bunny feels better and then they walk away the dog has a balloon the bunny wants to see the balloon so the bunny unties it from his wagon the balloon floats up in the air um the dog gets mad there is a balloon salesman on the other side of the park,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 +he wants the bunny goes up to buy one but each balloon is five cents and the bunny and the dog have no money so the bunny runs up to uh to the doctor and asks if she if she um the doctor can buy uh buy a balloon for a friend the doctor goes up pays us and pays the balloon man and now each and now the dog and the bunny have a balloon there are two kids who find balls on the si on the sidewalk and then they f then they it falls into the water and they and they do not want to get wet but the um the moose got it wants gets the ball,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 +and he gives it back to the li to the elephant and then he gets out of the water and he is soaking they want to go swimming but there is no running allowed ss but they want to run to run and jump into the pool and w when the elephant is running she slips and hurts her knee and then the giraffe gets the lifeguard and he puts a bandaid on the knee and then she is all better,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and then he s points to the sign and says no running allowed um the uh the giraffe and the elephant want to throw the airplane and see if it s falls into the water and when and when and he is going to start to throw and then and then the elephant grabs it away and thr and drops it in the water and then the giraffe gets really mad and and now now um now they have to go and get it because the lifeguard is there and now the elephant is saying i dropped it in by accident and the el and the lifeguard is going to get it but he can not reach and then its and then there is someone who swims ga ge gets a net and gets it the end and gives it back,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 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 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and now he is going to play with it the end theres an there is an elephant and a dog trying to build a sandcastle and the dog wants um to break it sort of and then when the rabbit pours the sand on it gonna it might break and it breaks down so now the dog tries to help him buil build it back the end the dog and the rabbit want to go swimming are going to have a picnic and the rabbit brings carrot stuff,0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 +and the dog brings stuff with cheese and stuff and the rabbit is so full that the dog tries to eat the rest and the dog and then the rabbit gets sick so so the dog gets a doctor and he pulls him over because someone got sick and the doctor says open your mouth and say ah and then the rabbit felt better the end one day the rabbit and the dog meet because the dog and the rabbit are walking somewhere,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then they meet and the dog has a little balloon on his wagon and the rabbit sort of wants to pop it so and then he wants the now he wants to undo it the balloon and make it fly away and now the dog is sad because his balloon is gone so now the dog gets really mad at the rabbit and now the balloon is for sale so the rabbit gets one for his friend five cents but he does not have five cents so they can not get one,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +but then there is a doctor so they might ask him for five cents so they ask for five cents to get a balloon and he gives them five ce so he gives the guy five cents and they each get a balloon the end they were playing they smiled and a ball was in the in the pool the boy he wanted to catch the ball,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +so he went in and the elephant girl put her hands in front of her nose and then he caught the ball for her and she was smiling and he was all wet and he was what he was all wet is that the end yeah they found a pool,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 1 +and then she was talking to him and they runned and she got hurt and somebody came and ran to her she was crying she was crying so much that that the boy that ran to her gave her a bandaid she was sitting on a bench and he got very greedy he found a airplane a toy airplane then he was playing with it,0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 +she grabbed it away from him then it fell in the water and then he was mad at her then a boy came walking by then she told him something then he was trying to catch it and then they he could not so he cried and then a girl came down with a fetcher with a what,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +with a fetcher to oh a fetcher okay and then she tried and grabbed it and she got it for him and he was so happy the end they made a sandcastle they sc they scooped some some sand and she dumped the rabbit dumped it on right on the sandcastle and it broke,0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1,0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then he was crying when i when he was fixing it and it is the end of the story they went for a picnic they ate and the rabbit got a tummyache she was so full that she was growling then the boy called someone then he grabbed her to the bunny she checked her if she was well if she was what,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 +if she was well then she was good and she did not have a tummyache any more and sh they had a walk they had a stroller with a balloon in the front they watched the balloon if it was coming off and he tied it right on s ti she tied it on so tight as she can then after it came up in the air and after the dog was so greedy at her and then a balloon man came,0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 +and h and the rabbit said can we borrow a balloon and he said would you like this one and he said yes it is five dollars and he and he checked if he had much and then they did not get a balloon and then they ran to someone they asked her th we want a balloon and she did not know why so she paid five dollars to him,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 1 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and they gave both of them a balloon and they liked to play with it once upon a time they had three ba balls and one went in the river and him immediately went to get it he falled in and then and he got um he went in swim to give it to the pi um the elephant again uh an then an then um and then hir it looks like they are in love once upon a time the elephant went to run an then and then they start running an her her and her got a booboo and then his mom comed put a bandaid on her,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and then her went back to her friends and then he got mad at her once upon a time he s he showed the elephant his airplane and then her grabbed it out of the out of his hands and then her dropped it into the water by mistake and then he got very angry at her and then the elephant comed and got wery angry at the pi the um at the elephant too uh then he had a a talk and then he try and reach it an and then he start trying,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +an then and then the girl come with the net got it for got it for him an then he and then he was happy and he was happy and he hugged his airplane once upon a time a dog was playing a castle and a bunny comed over to play with him and th and when he and he was holding the castle and he was um having a shovel to um pick up the sand and he was dumping on the castle and then he broke the castle and then and then he start crying,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 1 0 0 0 0 0 0 1 +once upon a time they went on a picnic and and he and and som his tongue is out like this okay you are sticking your tongue out that is what it looks like and i do not know how to do that part can you tell me in words uh it looks like he is doing oh tongue out okay and once upon a time when they was eating something um it wa um it wa um he start to have a headache and then the dog went to his mother and tried pull her to the to her kid bunny and and it start giving him medicine,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then he and then they went on when he was going to play at the park the bunny went and touched the balloon he did what with the balloon touched it and he tried to pull it off and then it got go an they was an and the dog was angry no maybe the angry was not at that part the angry was this one and he was angry and then he went on with balloons,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and he gave the kid another balloon and he said he want another balloon and he said no cause he got because he needed to get five balloons because he wants five balloons x an he asked an the dog said can i have another the bunny said can i have another bunny for the dog and then the bunny went back to his mom and he said he wo he will not give me another ba he will not give me another balloon so he did ge so he give the kids two balloons and an they and then they went off home the elephant is playing with a ball,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,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 1 1 1 0 1 1 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 1 +and the giraffe want to play with it with the elephant in the water and they dropped it in the water and then the giraffe was going to swim and get it for the elephant and the giraffe got it for the elephant and she was happy and she said thank you to the giraffe the end the elephant and the giraffe were going swimming and the elephant was going to go in the water and she slipped,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and she hold her knee and she was crying and the her dad went to go see her and put a bandaid on her owie and then she have to sit on the bench and she and her dad said no running the end the elephant and the giraffe were playing with a airplane and the giraffe was making it fly and made the elephant dizzy and the elephant took the airplane and the giraffe was mad,0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and the elephant dropped the airplane in the water the giraffe was mad at her so they have to get the airplane and her dad said to her why did you drop the airplane in the water so her mother tried to get it and the giraffe was crying and the mum got it with a net she picked it out of the water and gave it back to the giraffe and the giraffe was happy and the giraffe hugged his airplane,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +the end the bunny and the dog were making a sandcastle and the bunny was filling up the bucket and the dog was breaking the sandcastle and the bunny was breaking broke some of it and then the puppy was a little bit sad and the puppy was crying the end the bunny and the dog was going on a picnic and the bunny took all of the food out and wanted the puppys food,0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 +and the bunny was full and the bunny was getting dizzy and full and the puppy went to get the doctor and puppy said that the the bunny ate too much food and the bunny was feeling sick and then the bunny was not feeling sick because the doctor made him all better the end the dog had a balloon and a wagon the bunny said can i come with you so he did,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 +the bunny was going to take off the balloon the pu dog said do not take off the balloon or it will fly away and the bunny did and the balloon flied away and the dog was mad at the bunny so he went to go see the circus bunny again to get a other balloon so the bunny got a other balloon for the dog and he did not have no money so he can buy a balloon then they were going to get some money from the doctor,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and the doctor said uh yes and the doctor gave the both of them some money to buy a balloon they both get their own balloon the end um an elephant and a giraffe went swimming the uh um s a wa they were playing with water balloons it looked like and they dropped a water balloon in the pool or the balloon um the giraffe tries to swim after it um he catches it and the elephant gets it,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 +and now she loves him um an elephant and a giraffe are swimming the elephant runs to the pool he slips and hurts her knee and the lifeguard comes and the giraffe helps her um the elephant cries and the lifeguard puts a bandaid on it and he sat down on a bench and the lifeguard p points to a no running sign,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 +um the elephant and the giraffe are at the swimming pool the giraffe brings a toy airplane um he the giraffe plays with it and the elephant stares at it then he the elephant grabs it from him and drops it in the pool the giraffe is mad at the elephant and the lifeguard sees it and it is starting to sink the lifeguard looks sort of angry at the ele other elephant x and um he tries to get it,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 1 +but he can not reach it the giraffe starts to cry um and then another elephant um gets a net and um and picks up the plane and gives it to the giraffe and the giraffe is happy um a dog is playing in the sand and a rabbit comes and wants to play with her he starts making a little bit of the castle while the rabb while um the dog starts making a little bit of the castle while the rabbit fills a pail up with sand and the bunny dumps it on the castle and the castle breaks and the bunny screams,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +um and the bunny pretends he did not do it but he really did and the dog is feeling sad because it is broke it broke um the bunny and the dog are going for a picnic um the dog brings sandwiches and the bunny brings carrots and sandwiches and pickles and chips and sandwiches and carrots and he gets fu the bunny gets full while the dog is still eating the bunny is feeling sick um the dog runs and gets um the doctor and he pulls the dog pulls the doctor over,0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +um the doctor looks and tells him to open his mouth and then he is all done um the dog is pulling a wagon with a balloon and and the bunny sees her the bunny tries to get it um he gets it and the dog opens his mouth and starts to scream sort of the bunny lets it g lets go of the balloon and the dog is really mad at the bunny and he is just staring at the balloon,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and um he sees um another rabbit selling balloons he asks for some and they are five cents and he said you can not have them if you can not pay five cents and then they are really sad and then there is a bunny another bunny up there i think it is his mom and he wants to buy a balloon and they he gives five cents to him and they each get a balloon,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 1 0 1 0 1 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 1 +and they are playing with them there is an elephant and a giraffe the elephant is bouncing a ball and there is the giraffe guy i think is talking to her and they are watching and all of a sudden the ball that the elephant was bouncing fell into the water and they are both looking kind of sad and um excited and now the giraffe uh jumped into the water and now is swimming to catch the ball and the giraffe is back at the end of the pool and gave the ball back to the elephant and now the elephant is happy and looks happy,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 1 +uh um the there is the giraffe and the elephant again and the elephant is looking at the water with the giraffe and now the elephant is looks like uh she is going to jump into the pool and right when she started jumping uh the elephant slipped and hurt herself and now she has a cut on her leg and now the giraffe is stand sitting by her and called the lifeguard to come and now the elephant is kind of scared that it is going to hurt when they put on the bandaid and now she is walking with the lifeguard with the bandaid on herself and she is kind of happy and kind of sad and now she is sitting the bench,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and the lifeguard is pointing to no running because she was running uh the elephant and the giraffe the elephant is looking at the giraffes airplane that he has in his hands and she is happy now the giraffe is kind of playing with the airplane and pretending that it is flying and the the elephant is trying it now and she is pretending and the giraffe is thinking she is he is scared that she is going to wreck it and now the the airplane fell into the water and now the giraffe is mad and now the lifeguard is standing there and watching them uh be mad at each other,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and now so the elephant is saying what happened and the lifeguard is wa looking at her now the lifeguard is trying to get the airplane and the now the giraffe is crying because the lifeguard can not get the airplane out of the water and now there is another uh elephant and she has a fish net and now she is trying to catch it with the fish net and she got it with the fish net and gave it to giraffe now giraffe is happy and um elephant is happy too,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 1 0 0 0 1 +there is a bunny and i think there is a dog and the dog has made a sandcastle in the sandbox and the bunny looks has a shovel and he looks happy and now the bunny was helping the dog to make the rest of the sandcastle and then the then the bunny pours all of the sand over onto the sandcastle and now the b the bunny wrecked the whole sandcastle the dog does not seem that uh mad and then now he looks at it now again,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 +and uh he is really mad and the bunny is just standing there looking kind of sad and mad too uh there is the bunny and the dog again and the bunny and the dog are going for a picnic the bunny is sitting by the dog and they are eating and the bunny has lots of food around him and now the bunny is really stuffed and the dog is still eating nicely and the dog is eating,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and the bunny looks kind of uh really um full so now the dog is running to a parent that is walking down the road and brought the the other bunny to uh the little bunny that ate too much and now the bunny the big bunny is looking at the little bunny and now the little bunny is all better now there is the dog and the bunny again and the bunny is ru are running down the roa the s sidewalk and the dog has a a little cart with a balloon tied to it now the bunny is looking at the balloon that is tied to the cart and now the the dog is looking at the bunny and the bunny is trying to take off the balloon,0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the bunny took off the balloon and now the balloon is sailing up in the sky and now the dog is really mad and the bunny is looking at at the balloon at the sky and now the bunny is walking down the s the sidewalk and the dog is looking at the bunny walking down and the bunny sees some balloons and the bunny sees the balloons with the man holding them and asks if she can buy one and they are they are five cents and the bunny is looking in his pockets because he does not have uh any money,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 +and now the both the dog and the bunny are looking at the balloons seeing if he will give them one and now the big bunny uh the little bunny is going to ask the big bunny and see if she has any money now they are asking the bunny little bunny is asking the big bunny if he can she can have a five cents to buy a balloon and so the big bunny gave the man five cents so that they can ha or ten cents so they can have two balloons and now each of them have two has a balloon the giraffe and the elephant are playing in the water and they are bouncing a ball the elephant is and the elephant is out of the water and so is the giraffe but she bounces it too hard,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 1 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 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +and it land in the water and the giraffe tries to get it to jump in and get it but it looks like it is hard for him to get it but then he got it and then he swam to the elephant and the elephant got it and then the giraffe got out of the water and the elephant took it from him the elephant and the giraffe are staring into the water and the elephant tries to run in the water tries she like she is on where she is on the ground,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 +and then she tries to run in the water but then she slips and then she got a owie on her knee and she started to cry and then the giraffe called the lifeguard and the lifeguard help tried to help her was running over to her and the lifeguard got a bandaid and put it on her knee and then the lifeguard told her told her to bend her leg and then it felt better but then the lifeguard um showed the elephant that there was a sign that said no running,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 +and then she had to sit on the bench the elephant and the giraffe are um laughing together and the giraffe has a toy airplane in the swimming pool and then the giraffe plays with it and flies it in the air but then the elephant grabbed it away from him and started to playing with it but then she dropped it and it fell in the water and then the giraffe got really mad and the lifeguard came over and looked at the airplane and was shocked and the elephant said it was an accident,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 +but then the so the lifeguard bent down and tried to get it but he was too short and then the giraffe started crying and then the elephant looked shy like kind of like she is sorry and the lifeguard did not know what to say but then a girl walked over one of the lifeguards walked over and grabbed the net and grabbed the airplane with the net and then the giraffe started stopped crying and then the lifeguard was happy and then the elephant did not know what to say and then the and then the lifeguard picked up the airplane and gave it to the giraffe,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the gir and the elephant was happy and the giraffe was very happy a dog and a a dog and a bunny uh well first the dog is playing in the sand with a shovel and then the bunny comes along with his shovel and the dog is just done his castle and the bunny is putting some sand in his sand bucket and then the bunny pours all of the sand on the castle and and then the bunny instead of the dog getting mad the bunny gets mad and then the dog starts to cry,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 1 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 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 1 0 0 0 1 0 0 0 0 0 0 1 +a bunny is w the bunny is w walking down the road with his basket and a dog waves at the bunny with his basket and the dog takes out his sandwich and the bunny takes out her big meal that she has in her basket and then the bunny eats it all and then you can see garbage all over the mat and then the dog is just eating a sandwich and then the bunny feels a bit sick and the dog is shocked so the dog runs down the road to the bunny is granny and tells her,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 1 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 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the granny um well the dog is pulling the granny towards the bunny and the the granny fix like helps the bunny and then they walk home happily together the bun first the dog has a wagon with a balloon tied on it and the bunny is walking down the road waving at the dog and then the bunny says that is a nice balloon that you have and then the bunny tries to tie it off the wagon but then he did tie it off and then it floated up in the air the dog and the dog got really mad,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and he got so but he did not have to be mad for long because he saw a balloon carrier and the bunny was walking towards him and the bunny asked how many how much are those balloons and um the salesman said they are five cents each but the bunny did not have enough money he did not have any money and then the bunny and the dog just standed there and went gave a sad face and then the bunny walked toward this girl on the street and asked if i can get a balloon and then the girl gave her fi gave him five cent ten cents for two balloons and they both had the balloon and were very happy,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 +there is a giraffe and an elephant shall i turn the page okay then then there was a ball in the water then the giraffe went to get it then the giraffe got the ball for the elephant and he was playing with it the end they wanted to go on the on the jumping thing and the elephant one want to go on it,0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then the elephant tripped then he got a owie then the lifeguard came he put a bandaid on it and they and he took it took him to the bench i do not know it there is a giraffe and an elephant the giraffe has an airplane then the elephant took it then it fell in the water,0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +then the giraffe was mad at the elephant do not know it looked like it was sinking but the lifeguard was trying to get it i do not know and the lifeguard got a net and he fished it out and he gave it back to the giraffe do not know there is two rabbits that are going to make a castle,0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +they are making one he dumped ah sand on it then it broke and and they were going to build it again the end there are two rabbits that are going picnicking they brought food to eat they ate all the food one of the rabbits are really fat then t a doctor came,0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 1 1 0 0 1 +then one of the rabbits are pulling him and then he was checking his temperature then the doctor took one of the r rabbits the end there are two rabbits that have one balloon okay anything on this page no then they took it off then it went up in the sky then it was up high,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +there was a rabbit had lots of balloons and one of the rabbits asked him if he can have one it costs five cents nothing here okay and there was a rabbit coming then he asked the rabbit if he can have money for a balloon then he then he gave the bunny gave him the money then they each got one the end a donkey thing and an elephant are playing with their ball playing basketball,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 +um the they shoot it and the ball falls into the pool that they were standing by the donkey goes in and gets it out of the water he brings it back to the elephant and the elephant is happy the elephant falls in love with him they are going to go swimming the elephant goes to run to the diving board she slips and falls and hurts herself she is bleeding because she has a cut on her knee,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,1 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 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 +um the donkey thing goes to get the lifeguard they put a bandaid on she is okay he points to the sign that says no running and she gets um embarrassed um they are going to play with this plane near the swimming pool he is flying around with it and she wants a turn she so she grabs it from him and starts playing with it it falls into the water,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and they can not get it out he gets mad at the elephant then they call the lifeguard and then the lifeguard is looking at it the lifeguard can not reach it he still tries to reach but he still can not reach it it is sinking and the ele donkey thing is crying and the elephant feels sorry,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 +and the lifeguard says he can not do anything then the other lifeguard comes with a net and she fishes it out with the net and then she gives it back to him and he is happy and then they are both happy the two little kids and then they play with the airplane again the rabbit and the dog are playing in the sand they are building a sandcastle he pours too much sand on the sandcastle,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 +he wrecks it um the bunny and the dog are going to go and have a picnic they are having a picnic and he is eating everything he ate all unhealthy stuff and only like a few carrots and stuff that is healthy he gets sick the dog goes to get a medic the me the medic um helps him and he is sick so she is going to cure him,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then he take she takes her like to the doctors office place and then she is going to um make him better um the the dog and the bunny are going to go and play with their balloon th the bunny takes the balloon off the wagon he ties it off and then the dog does not want it him to it goes up in the air and they can not get it the dog gets mad at him uh they go to buy another balloon,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 +they pick one but it is five cents and they do not have any money sss and they both do not have any money so they are thinking what to do um they so so they go to their mom and she is going to give them money um she is gonna gi she is getting her money out of her pockets to give to them she gives it to them and they can buy two balloons then they are both happy,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +there is a guy gi uh have candy and he is selling it and he give and it one dropped into the water and he swims for it and he pulls um um he gots it the other guy gots it and he get um and he get and does not he does not give it to him the end the guy is going to jump into the water the guy um runs and runs and the guy the other guy he slips,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 1 1 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 1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and he falls down and he cries and he and he has a booboo and he puts a bandaid on it and he carries him puts him on the bench the end the guy is looking at him and he has a airplane and then the other guy takes the airplane and plays with it,0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +and then it falls o it falls into the water and then the other guy gets mad at him and the other guy gets m um the other guy there is two guys standing getting mad and the other guy ge um um gets scared and the other guy chases it into the water an and the other guy cries and the other guy has a net and the other guy takes it out of the pool and then he gives it back and then he he likes him,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 +the end there is a there is a bunny rabbit um um gonna make a there is a bunny rabbit who made a sandcastle and they are both of them are making a sandcastle and they are they are pour they are pouring it on on the guy somebody is pouring it on and he is breaking it and the other one gets mad no not mad i forgot it breaks and they make another one the end,0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 1 0 1,0 1 0 0 1 0 0 0 0 1 0 1 0 1 1 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 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 1 +they have both baskets the bunny rabbits has baskets and they gr they are having a picnic and then the other one eats all of his and then the other one du um has uh juice and then the other one is wa um somebody is walking and somebody is pulling somebodys shirt and somebody gets mad somebody brings somebody home the end,0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 1,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +there is a guy having a balloon in his wagon and the other one is walking and he w and he is trying to take it off and then he en unwraps it a little bit off and then it flies away and then it float he wrap um the um the string falls down why does your boss does your boss let you look at these pages she says while your doing them i am not supposed to so i am not so you can see them go ahead the guy has balloons in his hand and the and the other one buys one,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then he and then he sh then he checks in his pocket for money and he does not have money he checks it for money and he can not get one and and he was allowed to ah the other one is the uh there was a man heh uh selling balloons and then he gives one to him and the other one has a balloon and the other one has a balloon the end a elephant is going to his friend,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 +he is saying what is there what is in there orange he said the the orange fall down in the water and then the his friend he he falled in the water he was trying to get the orange and then and then the elephant got the thing out and then the elephant got the orange out and then he walked and then he walked his and then he walked to his home the end um the the elephant and the friend he was going to the pool they were going to jump into the pool really fast,0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 1 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 +and they are going to jump into where the sides are and they and the his friend hurt his leg he hurt his leg and that hurts really bad um his f his um his brother came and he and so he and he seed what happened and he gave him a bandaid and then it hur and then he went home they were going to play pool again and then there and then he was driving airplane,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 1 0 1 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 1 +and then the his friend was driving a driving driving a airplane and playing again they are playing again they were going to jump i and the airplane got in the water okay and then he was trying to and then he was very mad and then his friend and then his sister went over to that girl t um the sister went over to the brother and then he and then the brother came over her and then and then he sawed what happened and then he is trying to get it and then he he did not know how to get it,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 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 1 0 0 0 0 0 0 0 0 0 0 1 +he tried he picked that and then he tried to get it hey look look behind here um the boy has girl hair the the girl was pretty then he tried to get it and she trying to get that um airplane and then he tr and then he got it and he was very happy,0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and then h and then the elephant was very happy too the end i see a bunny that is in the s um i see a dog that is in the sandbox and helping the bunny and the bunny and the bunny is making a sandcastle they are trying to make a sandcastle and he is helping and he is helping the dog and uh um the rabbit broke the doggys castle and then he was making it all over again the end um the bunny was going for a picnic,0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 +he was following the dog and then they were there already they were playing in the sandbox with a picnic and then he burped and then he burped and then he was eating all th and then the dog was eating all the other thing he was eating one at a time and then he was and then he sawed then the dog he was laying down and then he was sleeping he was kind of asleep but he did not,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and then and then he was turned into a doctor then he was turned into a doctor and he had and he had doctor things and and a doctor came and then he went with the doctor and then he tooked him to the doctor where the doctor thing is and then he laid down with a blankie went to sleep and then and then the doctor came to a different to a different man but it was not that man he was so he was so tall,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and he was trying to help the man and then he w and then the doctor came with this with the bunny he was going to the doctor the end they are going to the um circus and then the bunny was c the bunny came with him and he had and he had a balloon and then he w and then he was trying to get the balloon and he was following him and then he took it off,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 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 1 +and then it po and then it was gone and they were trying to get it get get get it back and then he was very mad and then he said i am sorry and then he had a whole bunch of balloons and then he wanted and then he wanted m and then he was going to get one and then he wanted one and then he had some dollars and he was then he was going to buy one and then he gots no money,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and then he could not buy one and then he was and then the doctor help him help him and then he gave him some money and then and then he wanted the balloon and then um he got a balloon for him he gave him some money and then he got a balloon and they wan and they liked and they liked it and then they said and then they said thank you the end,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 +an elephant meets a horse then the elephants ball bounces in the water the horse swims to get it the horse got the ball the elephant was happy the end an elephant and a horse wanted to go on a diving board the elephant says let us go on the diving board the elephant slips and scrapes her knee then the elephants father comes and puts a bandaid on it,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and the father said that bandaid will make sure it does not hurt the father says no running an elephant met a horse who has a toy plane the plane f he the horse pretend it pretend it flies then the elephant wants to try then the elephant threw it into the water it was sinking and the horse was mad and the elephants father came and the elephant said i threw that plane into the water by an accident,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 1 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 1 +and it is the horses the elephants dad could not reach it because it was too far and the horse was crying then a lady came and had a net and caught it with and almost caught it with the net and she got it with the net and gave it to the horse the horse was happy a dog and a bunny are making a sandcastle they needed thick sand but the sand was too light so it fell on the castle,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 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 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +now the castle is nothing but they could see part of the castle a bunny and a dog are going for a walk they have a picnic the bunny gets too full he the bunny gots a stomachache the dog runs to the doctor the dog pulls the doctor to the bunny the doctor said he has a stomachache then the bunnys mom came,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 +a dog is pulling a wagon with a balloon the bunny says if you let go it will fly up to the sky the dog says no do not do that the balloon flied up to the sky the doggy gets mad then a man comes by with who was selling balloons the bunny picked one of the balloons which was five cents and he did not have any money so he could not buy it his mom came,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 +and the bunny says i need a five cents to buy one of those balloons then the um mother w one give five cents cents to the man then they both got balloons the end the elephant and the giraffe were playing with a ball the ball went in the water the animal was swim and got it the elephant got her ball back the elephant uh the um they were happy they were at the water pool,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 1 0 0 1 0 0 0 0 1 1 +the elephant was pointing at the jump board the elephant slipped the elephant got a owee the safety guard ran the safety guard put a bandaid on her she sat down the safety guard got mad at her no running they were going to play with a airplane the animal was playing with it uh the airplane,0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 1 +the elephant took the airplane the plane went in the water the animal got mad at her the safety guard was coming to check he the elephant said the airplane is in the water the safety guard tried to get it they could not get it a big elephant with a catcher got it she pulled it out the animals airplane was back,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 1 +they were both happy they were going to make a sandcastle the rabbit puts sand in the bucket he dumped it on the castle the sandcastle broke the dog cried they were going to go for a picnic they took their stuff out bunny ate fast what is that,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 1,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 1 0 0 1 +bunny ate fast he got a sore tummy he was calling the doctor the pup dragged the doctor over there you ate too you ate fast said the doctor the doctor took him with him took him wi the bunny with him bunny was coming to look at the balloon the bunny said wow the bunny untied it it flew away,0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 1,1 1 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 1 1 1 0 1 1 0 0 1 0 1 0 0 0 0 0 1 0 1 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 +dog was mad they were going to buy a new one they did not have no change actually they did not have five cents they could not buy one there was a doctor the doctor gave them twenty five cents for two balloons they got their balloon they were happy one day there was a elephant bouncing a ball,0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 1 +it went into the water the zebra jumped in and ge gets the ball and zebra gives it back to elephant the lady smiles and the giraffe smiles one day they are both laughing and they wanted to go on the board the the elephant said to the giraffe let us go on the board and the elephant slips and he gets a booboo,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then another el elephant comes running and look at the booboo and he puts a bandage on and now she go she is surprised no running allowed the the other elephant says one day the giraffe had a airplane in his hand he was flying it elephant took it away from him and she dropped it into the pool the giraffe got angry at the elephant but the guy came running,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 1 0 1 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +and he sees the plane in the water the elephant said it was not me that brought it the other elephant tried to reach it then the l then the giraffe was crying i know a way to get the plane out she put in her thing and got the airplane she is she handed the the airplane to the giraffe and the giraffe hugged it one day rabbit wanted to play in the sand and so did the dog,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +the dog was going to touch it and the rabbit was filling up his bucket rabbit dumps sand on it the dog saw and and the rabbit was horrified the dog tried to fix it one day dog met rabbit and they both wanted to have a picnic rabbit ate and ate rabbit got a stomachache,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 1 +and the dog was eating he got sick the dog came running to a doctor he said wait a minute what is this problem about it is about him and he is sick the doctor takes him for a walk one day a dog was taking a b wrapped a balloon on her wagon the bunny sees the balloon,0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 +he ties it off he let go and it was floating away and the dog was mad at the rabbit and the rabbit sees balloons a balloons were holded by an old rabbit it is worth five cents you cannot have a balloon if you do not have any money rabbit goes to the doctor we want a balloon,0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 +she paid two two ff nickeles and now they both got balloons um a giraffe and a elephant were friends and they were playing ta with each other and then their ball went in the water and the giraffe went to try and swim for the ball and the giraffe got it and gave it to the elephant and the giraffe was soaking wet um once there was a elephant and giraffe and they wen were friends,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 +and they went to a swimming pool together and the elephant was going to jump in and she and before she jumped in um for some reason she must have forgot something she went she ran very fast with no running allowed the elephant fell down and hurt her knee she was crying and looking at the pain she is crying even more and not looking at the pain then she sat down on the bench and the lifeguard gave her a bandaid and the lifeguard said no running allowed,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 +the elephant and the giraffe went to the swimming pool and they and the giraffe brought a swimming toy with him and and he was playing it and the elephant was just like stare on it on at it like crazy the the elephant grabbed it from the giraffe it looked so neat and then she dropped it in the water the giraffe got very mad at the elephant the lifeguard came and looked at it and and came closer to the elephant and the elephant was ex trying to explain how it happened,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the lifeguard was listening very carefully the lifeguard tried to get it but he could not the giraffe was crying the both the lifeguard and the elephant were was just kind of staring at it then a girl with a net came and the and they was sup they were like and the girl with the net was pull get trying to get the airplane with her net and she got it for the giraffe the giraffe was hugging it,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 1 +once there was a bunny and dog and and and they were friends the dog was making a sandcastle then the bunny was about to come in with a shovel and he came in and throwed a bucket of sand the bunny dumped it onto the ca sandcastle dog was kind of sad it bro i think it broke her castle she was crying there was a dog and a bunny,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 0 0 0 0 1 1 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 +they were friends and they were going to go to a picnic with each other um the the dog was taking everything out of her picnic basket but the bunny was just eating everything she took out the the bunny was very full and the dog was hardly even eat ate everything the bunny was fat and then the dog was about to drink a little bit of her juice and the bunny had a tummyache then a grownup bunny came along,0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 +and the and the dog was racing to her and it was like please please please and the lady was like you eat too to eat you bunny and the bunny and the grownup bunny just just went along with each other the bunny and the dog were the the bunny was running to the dog and the dog was just going her wagon in front of her with her balloon and the bunny liked the balloon he was about to pull it off and the bunny was untying it and the bunny was like the the dog was like,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 1 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 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 +and then the bunny untied it and the the balloon floated away they were trying to reach to get it the dog got mad at the bunny un until when the string was just left and then a bunny with balloon lots of lots of balloons came and he said come here come here the bunny and the the man with the balloons came and the bunny was like and the big bunny with the balloons was like which one do you want that one that one the little bunny was like,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 1 1 1 0 1 0 0 0 0 1 +this this one you can not have this one and then the bunny and the dog was sad and then the the same lady with the other book came and the and the bunny was running to her and the dog was just staying with the bunny with the balloons and and the dog still had her wagon and the and the grown up b girl bunny was the kid bunny was saying to the grown up girl bunny can we get one of those balloons can we get one of those balloons for the dog and the and the and she paid for it,0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 1 0 0 0 0 0 1 1 1 0 0 0 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and they each got a balloon two different animals were the swimming pool they wanted to play dodgeball in the water water dodgeball the ball got in the water and the an giraffe was going to get it so huh hm while he was swimming water came out of his mouth and he was all drippy then giggled he the ele the elephant watched when they were at a swimming pool the elephant wanted in the dive the diving board,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 +and there she wanted to run toward she wanted to race towards it but there was a sign that said no running she runned towards here the giraffe never runned and they huh and the elephant slipped and slipped and fall down and hurt her knee lifeguard came running she got a bandaid on it elephant sized bandaid and h bit better and the lifeguard said next time look at the sign they were at the swimming pool,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 +and the huh giraffe huh is throwing air huh super duper flying jet plane he wanted to fly it but elephant wanted to fly it into the water see if it could land on its gear but it w it was starting to sink then the giraffe got angry at her because of the plane in the water and a lifeguard huh s looked at them what is going on and they said the my friend s his super duper jet plane is in the swimming pool it is sinking he try to get it,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1,0 0 1 1 0 0 0 1 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +but he could not reach it it was starting to sink more cried then they s he who is there to swim he got something was all that looked like a big fishing net he got it out huh he got it and he tooked it out and starting stop crying then to the giraffe and got happy he hugged his plane like it was a lost memory hm there were two moles at the sandbox,0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 +one was building a sandcastle and one was building a pail one the bunny when he was done filling it up and patting it down he put it right over the the sandcastle went oh no doggy got sad bunny just whistled the animals going out for a picnic in the woods they found the perfect spot they started chowing down the doggy ate s sandwich and juice,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 1 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 +and the bunny got just a tummyache then him drinked his juice and ate a biscuit and the bunny got a sicker the bunny fainted then got there him want to get him to come he got a big tummyache he was going dizzy hm pic picnic was all gone the we bunny went back home,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 1 1 1 0 0 0 1 1 1 0 0 0 1 +one animal had a balloon and the bunny was coming towards this him he say cool balloon he untied the balloon did not know it would float up it went really high they could not get it and the balloon was gone the doggy got angry then there was a balloon saler,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 0 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 +he wanted one of the balloons to get to for his friend but he was broke s so decided to get someone who had money the bunny went to get the doctor she had lots of money huh to get a balloon then two balloons for each of them and they were pretty having fun and laughing an elephant was playing with a ball and a giraffe came to play with it um and the elephant threw the ball into the pool,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and then they got scared that it would sink the giraffe tried swimming to get it but he could not get it and h um but he got it and he gave the ball back to the elephant and the elephant was happy to see the ball again the elephant and the giraffe seen a diving board and the elephant said and the elephant started running and the sign said no running and then the giraffe tried to catch the elephant,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 +but the elephant hurt herself and she had a cut and she got a bandaid and she felt better and the lifeguard got mad at her because the sign said no running the giraffe had a toy airplane and the elephant wanted to play with it the giraffe started flying it and then the elephant took it from him and started flying it and then it sunk underwater,0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and the giraffe got mad at the elephant but the lifeguard went to get it and it was still floating in the pool and then he tried getting it from the outside of the pool and he could not reach it and then someone else came with a fishing net and got it out of the pool and gave it back to the giraffe and he was happy again a rabbit and a dog were playing in the sand they made a sandcastle the rabbit broke the sandcastle,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,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 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 +and the rabbit got mad and the dog started crying the rabbit and the dog went for a picnic the rabbit had more stuff to eat than the dog the rabbit got really really full and then the rabbit had a stomachache the dog ran to the rabbits mom the dog and and she went to see the rabbit um and the she was a doctor,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 +um the rabbit felt better and he went home the dog was with his wagon and his balloon and the rabbit wanted the balloon the rabbit untied the balloon and took it then the balloon flew up in the air and the dog got mad and there was a rabbit holding a lot of balloons and the little rabbit bought a balloon hm and the little rabbit could not buy the balloon because it was five cents,0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the dog saw the balloons and the little rabbit went to get some money from the doctor and the rabbit told the doctor that he did not have any money and she bought the balloon and the little rabbit and the dog had balloons there was this old giraffe and elephant was playing by by the pool with some bouncy balls and the giraffe came up and said can i play then he bumped the ball and then it went into the pool,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1,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 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +then the giraffe swam swam and there was water came out of his ears and the elephant could not look then the giraffe gave it to the elephant and she was happy then he smiled and she smiled the end there was these two elephants the giraffe and the elephant and there was a diving board,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +and the sign said no running and the elephant ran and ran and they almost slipped then she slipped and then the giraffe ran after her and then the elephant hurt herself on the knee and the giraffe looked at the sign no running and she sa and the giraffe said no running and the lifeguard came and sh sh the lifeguard put a bandaid on,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 1 1 0 1 0 0 0 1 +and she was still crying and the lifeguard helped her up and handed her to the giraffe and the lifeguard said no running the end and she got up and she was all better and he flew his airplane and he flew it and slobber came out and the gir elephant looked at the airplane,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 +and she got dizzy then she took it and flew it and the giraffe said uh then it went into the water and the giraffe got really mad at the elephant and the lifeguard came again and he looked at the elephant and there was a airplane in the water and he tried to reach it but he could not,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 0 0 0 0 1 +and and the giraffe started to cry and another lifeguard came and brought this net and she tried to get it and she did and she handed it back to the giraffe then the giraffe and the elephant was so happy the end there are these two bunny rabbits playing in the sand they made a castle and they are laughing,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1,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 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +they starting to fix it and building new stuff the boy rabbit dumped sand on the castle sh and the a little part of the castle is showing and now it is only sand now they are trying to build it back together the end they are these two rabbits walking down the in the forest they walked and walked they met each other and they started to have a picnic with every bo and with every with that girl,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 +and then the boy rabbit ate everything up and he was full then the girl rabbit looked at the boy rabbit and the boy rabbit did not feel so good and then there was a doctor came and the girl went to get hi her and she pulled and she pulled and they finally got there and she was checking if he was all right,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 +then the doctor took him and the girl stayed there they saw these two rabbits walking down the woods again and one had a wagon and a balloon and the boy jogged and jogged and they looked at the balloon and the boy rabbit untied it and he tied it and it flew up up and away and the girl rabbit got so mad,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +there was another balloons and the girl ma rabbit was still mad and the boy asked the man a question and then the girl was coming over and the man said the balloons were five cents and the girl looked at there and the man smiled oh again there was the doctor again and sh the boy talked to the rabbit and said my sister is mad because i lost her balloon the girl is mad,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 +here is five cents and here are two balloons he said they were so happy the end a giraffe and an elephant are bou the elephant is bouncing a ball and they are by the pool the ball falls into the pool the giraffe swims to get it um the giraffe gives the ball back to the elephant,0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 +she thanks the giraffe the elephant and the giraffe are going to the pool the elephant is pointing to the diving board she she is running so she slips she hurts her knee the lifeguard comes to see what happened the lifeguard puts a bandaid on it she the elephant sits on the bench and she smiles at the lifeguard when he points at the no running sign the elephant and the giraffe go to the pool again,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,1 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 1 0 0 1 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 +the giraffe brings an airplane that he is trying to fly and the elephant is just looking at it then the elephant takes it away from the giraffe and she drops it into the water the giraffe gets mad at her the lifeguard comes and see what is happening the elephant is trying to explain what happened the lifeguard tries to reach it and he can not reach it and the elephant and the giraffe starts crying,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 +then another elephant comes with a um net and puts the net in the water and tries to get the airplane and she gets it out and the giraffe is happy again um two people two um animals are in the sandbox they are building a sandcastle one of them is dumping sand over the castle the sandcastle breaks because all of the sand and one of the animals gets sad two animals are going on a picnic they bring lots of food,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,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 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +and one of them is drooling over it one of them eats it all up and he gets a tomach stomachache and the doctor comes to see what is wrong with him she she one of the animals is dragging her she is she she comes and see what sees what is wrong and she helps him two animals one animal comes to see the other animal one animal looks at the balloon that she has,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +she is he is taking it off of the wagon and it flies away then one of them gets really mad then they see the balloon man and he probably goes to buy her another one and she asks for one balloon and the balloons are five cents and he is looking in his pockets and he is sad because he does not have five cents and then the doctor is just looking at the view,0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and he goes and asks for five cents and she gives the balloon man five cents and then they both get balloons an elephant is playing ball with a ball and then a giraffe is just looking at looking at the elephant like wow and the now the the elephant was bouncing it and it fell into the water and now the elephant is sad so looks like the giraffe is going to go get it and now the giraffe jumps in and is swimming to get the balloon the ball,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 +and so now she got it for the elephant and the elephant is helping him out and now the elephant is happy and the giraffe is happy too um hm um they are standing in front of a pool the giraffe and the elephant and looks like they could be feel like swimming that is all and now the elephant sees the diving board and the elephant wants to go diving into the pool and the elephant is running to go get to the diving board,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and the giraffe is running after her and then she fell and hurt her knee and looks like she is going to cry and the giraffe is running to help her and then the lifeguard comes and is helping her and the giraffe is helping her too and now she is crying and the lifeguard is putting a bandaid on her leg and now the the lifeguard is carrying her to a bench and the hiraff the giraffe is helping her,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 +and the lifeguard is mad and is say and is telling her look at the sign it says no running on it and the giraffe and and the um the elephant looks like he is looks like she never i dont know i can not i dont know what she is doing let us see like hm like he is going to get very mad at her now the giraffe has a little airplane and the elephant wants to play with it too and now the giraffe is trying to make it move and the elephant is looking at it like wow and now it is the elephants turn and the elephant is trying to fly it now and now the giraffe is looking at his plane because the plane fell into the wa swimming pool,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 +and now the giraffe is mad at the elephant because his airplane is sinking into the water now the lifeguard looking at them and they are looking back at him now she is trying to the elephant is trying to explain to the lifeguard that the plane fell in and is asking if they can he can get it out for them and the lifeguard is trying is on his knees trying to ah get it out of the water and both of them are looking at him and the lifeguard looks like he is using all his might and now the lifeguard could not get it and the elephant s felt sad and so did the giraffe,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 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 1 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 +now a lady comes and she has a little net she said she would get it for them the airplane and now she is using all her might and looks like she got it and then she got it out for the li for the giraffe and the giraffe was happy and now the elephant and the giraffe are both are both happy again um two a bunny in the sandbox making a castle and another one is out on the outside going to come in and then now they are both making a bigger and bigger one,0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +and that is all that is all i can see and then one of the bunnies is pouring so much sand on and the other one is i think it is scared or something and now the sand now the sandcastle was broken and the other one just looked normal and now she is trying and trying to make a b another one because it is all broken two bunnies are walking along in maybe a forest or something and they are holding a picnic basket two picnic baskets and now they are having a picnic and all and they are eating,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +actually one of them is eating with all the food and the other one is just sitting there with his sandwich in his hand and now they are both eating and now one of themis eating and the other one has a stomachache and the other one really does not know what to do because he has a stomachache and he and he is getting dizzy and then a doctor was walking along and the other one came and told the doctor that he was that he had a stomachache and so now she is pulling the doctor to come and get the person the rabbit actually,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 +and now the doctor is operating on the guy little bunny now the little bunny is fine and he is going home with the doctor and the other one is sitting by the sand box thing or whatever the big picnic picnic thing now the two bunnies are walking along and one of them is pulling a wagon that has a balloon attached to it and now the other bunny never noticed the um balloon and is looking at the balloon and pointing at it pretty funny now the the bunny is trying to untie the balloon and the other one is looks kind of scared,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 1 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 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the balloon flew away and they are both hopping and trying to get it to catch it and the balloon gone and one of them look is just looking up and the other one is very mad now the other one sees a man selling balloons and then so he is walking along k to get a balloon for the one he made fly away now he is say he is saying to the thing the man can i have a balloon looks like it and now he got now he did not have any money for the balloons,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and li and uh the guy said it is only five cents for a balloon and then hm he looks um he looks weird now they are both looking at the guy and the guy looking down at them while he is holding the balloons and now she is running to one of the rabbit guys are running to the doctor that they saw before and the doctor there she is running to the doctor maybe to get some money and now she is he is um showing the bunny what he needs what she wants and now she is paying for it and both of the kids are happy and now they both got a balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 1 0 1 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and they are happy and the doctor is happy too it is over there was a um elephant that had a ball and um a giraffe wanted to play with the balaloo the ball too but the balloon accidentally gotinto the w into the swimming pool and and the elephant was very worried that it would it would it might sink and then the cow the giraffe came over to s to get it swim after it to get it and then he got it and he gave it to the elephant so she could play with it with him,0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 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 +and then the elephant and the giraffe came came to be friends and also they wan and they also played t with the ball together the end there was an elephant and um a g gir giraffe and the elephant ran over to the diving board and then she accidentally slipped then she and then then the giraffe came running after to see if the elephant was okay and then and then then the elephant started to cry because it really hurt she scraped her knee then the lifeguard came running over and said do not cry,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 1 0 0 1 +i will help and then he put on a bandaid on her on her scraped knee and then then she stopped crying and then the lifeguard helped her get onto the the bench so she could go over and rest her knee for awhile and then she can go back swimming and then she did not then the lifeguard said you must look at the signs that say no running or no doing anything just in case there was something slippery or you can not go on the diving board the end there was a giraffe that had an airplane and he really like it lots,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 +and then an elephant wanted to play with it and then he started playing with it even more and then the elephant wanted to play with it then the elephant grabbed it from the from the giraffe and then he was very angry and then it fell into the water and then they could not get it so they so they did not know what to do and then giraffe got very very angry at the elephant and then the lifeguard came over and and said what is the problem,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 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 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 +and elephant explained i grabbed the the toy airplane from the giraffe and then i accidentally threw it into the water and then the lifeguard tried reaching for it but he could not get it then the giraffe started to cry about he liked it then somebody came over with a net so they could get it then she reached over and got it for them then he got it back and he really really liked it again and then the elephant really really wanted to play with it,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 1 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 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +but the giraffe was too busy playing with it the end there was a bunny and dog they wanted to build a sandcastle together and then the bunny took too much sand and then he dumped it onto the castle but the castle got ruined accidentally accidentally and then the dog was sad because her castle got knocked down the end there was a dog and a bunny,0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +they wanted to have a picnic together and they each took out all of their stuff from their baskets and ate and they ate and ate and ate until the bunny got so full he wa he felt like he was sick and then the puppy dog went to go and get doctor somebody who could help and then and then the doctor came over and helped the dog and the bunny and the bun and the doctor helped the bunny be all right again and then the bunny got taken someplace where he could be all right the end there was a dog that had a balloon hooked up onto her little wagon then the bunny wanted to have the balloon,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and so the dog let the bunny look at the balloon and then the bunny untied the balloon and then he lost the balloon but then the dog very an very sad then the dog get got very angry at the bunny and then they saw a a s a person that was selling some balloons an and then they came over to him and said can i please have another balloon a balloon but the rabbit but the little rabbit came over and said can i please have a balloon but the person said no you need some money and then he and then he showed him how much money he n how mu how much money he needed for a balloon,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 1 +i and it was quite a bit and he did not even have any money so they could not get another balloon for the little dog and they and they were very sad and then they came over to a doctor and and the little bunny said can can you please help us get a balloon and then the doctor said all right i will get you a balloon and the and the doctor gave the the person um as much money as as they needed and then they enjoyed their balloons again,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +the end there was an elephant playing with a ball near the pool and the and a gira and a giraffe came wanted to play too the ball fell right into the pool the giraffe swam right towards w jumped into the pool and went to go get the ball the giraffe got the ball for the eleph baby for the elephant and the elephant likes the giraffe that is all the elephant and the giraffe wanted to go swimming the elephant was going on the diving board,0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +the elephant was running then she slipped she h cut her knee the lifeguard came the lifeguard put a bandaid on the lifeguard put the the elephant on on a b the bench w and the lifeguard pointed to the sign that said no running the giraffe was playing with his toy plane h um he did loops and stuff with his plane the elephant grabbed it,0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 1 0 0 1 0 0 0 1 1 0 0 1 0 1 0 0 0 1 0 1 0 0 0 0 1 1 1 1 0 1 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 1 +and it landed in the pool the giraffe was very mad the lifeguard came to s to see what the problem was h he uh the lil the little elephant told everything what happened the lifeguard tried to get the air the plane but he could not reach it then then a then an elephant with a net came the elephant with the net scooped out the plane and gave it back to the giraffe and he was happy again there is a little bun a bunny and a th and a dog,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 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 1 1 0 0 0 0 0 0 0 0 0 1 0 0 1 +they are going to play in the sandbox the dog was building a sandcastle and the wa the rabbit was putting sand in a bucket he the rabbit dump dumped the sand on the sandcastles the rabbit and the do the ra the rabbit was like what happened and and the dog was trying to rebi and the little dog tried to rebuild it the little dog and the rabbit they saw were going for a picnic uh uh the the dog had a sandwich and the rabbit had carrots sandwich cake chi he had all kinds of st stuff,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 +then he then all his food was gone then he felt sick the dog ran to get a doctor sh the dog showed where the doctor where where they were having the picnic the do the doctor they were saying ah with his stick and i think that is what he did then he felt all better the little dog was pulling a wagon with a balloon the ra and the rabbit came along the rabbit saw the balloon on the wagon tied to the wagon,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +the rabbit untied the balloon the balloon floated away the dog was very mad the rabbit ran to a balloon man the rabbit wanted a balloon h he he had no money so they so they were very sad then the do then the doctor was walking along and the rabbit went to ask for some m went to ask for some money sh sh he told the the rabbit told the doctor everything,0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 1 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 1 0 1 1 0 0 0 0 1 1 +the ra the doctor gave money m money to the balloon man so they got the two balloons and now they were very ha and they were very happy uh he walks to a horsey and then the horsey fell falls down then the horsey fell in the water and then he gives the ball back to him and then they play with it and that is the end so um he goes in the sandbox with the elephant,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 +and then they walk in the into the sandbox and then they walk into the hill and then they laugh and then they got a scr and then elephant got a scrape and then he then he started to cry and then he he sat up and got a bandage bandage and he said are you okay the end um he found an airplane in the sandbox and then he and then the and then he flies it up in the sky,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and then he stands up and then he stands up in the sandbox and then they br broke the airplane in the sandbox and they dropped it and then he he it was stuck in the sandbox forever and then it was more stucker and then a lifeguard came and get it and then he got it with his and he reached it with his arm and then they were sad the lifeguard got it for him and then the lifeguard poured on the net,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,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 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and he got it and then he said here you go and then he keeped it forever the end he the dog goes in the sandbox and then he starts making the sandcastle and then the rabbit spills on it and then he and then it is all gone it x up then it was all covered up,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 1 0 1 0 0 0 0 0 1 +the end he goes looking at his favourite friend then he goes and stickes out his tongue then he had a drink and then he lies down in the sun and then he walks away then he pulls on his shirt and then he and then he talks to him and then they walk away he comes along with a balloon with with his wagon,0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +then he comes and then he walks with him then they stopped and walked in the snow then they lose the balloon and then they stop and get angry then they walk away and saw a man with balloons then they said to him balloon and then he gives him one and then they walk away and then they think the rabbit the big rabbit,0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 +and then they walk to his mom then they walk to their mom and then he comes and walk to the lady and then he comes and then he gets a ba another balloons balloons the end a horse a giraffe and an elephant were bouncing a ball the ball in the pool and the giraffe was scared then the giraffe um went in and swam and got the ball out then the elephant was happy,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and the giraffe was all wet and they were both happy the giraffe wa was scared to go in the water again so the elephant went in and she saw a diving board and she decided to go on the diving board and jump and then the giraffe said maybe that is a good idea the elephant went slipped and fell and the giraffe was running to the diving board the elephant hurt her her knee,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 +and the giraffe was scared so the giraffe helped the elephant the lifeguard came and saw the giraffe um was taking care of the elephant the lifeguard put on a bandaid it did not hurt any more so the giraffe did not look scared any more and the lifeguard was happy and then the other elephant the lifeguard looked at a sign and it said no running the giraffe and the elephant were happy,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +so they decided maybe we could fly a the giraffe decided maybe he could fly the airplane in the water and then got and then the elephant could dive down and get it and then the giraffe would throw it again into the water and the elephant would keep on getting it then it then it was then it was wanted real crazy so the elephant let him the giraffe would make made a tongue the elephant grabbed it from the giraffe and the elephant looked and the giraffe looked scared and the elephant looked happy,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 1 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +the elephant threw it and it went in the water and the elephant looked scared and the giraffe did not know what to do the giraffe got mad at the elephant and the elephant got sad the lifeguard got mad again and they both got and they both did not know that again so the lifeguard looked nervous because the elephant looked scared and the giraffe was sad,0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 +lifeguard was going to get it so the lifeguard was trying to get it and the giraffe and the elephant looked nervous the giraffe started crying and the elephant was sad and the lifeguard was nervous oh then another elephant came with a net to get it out of the water so the they could have it back again and he tried to get it out but it mm it she tried tried a lot but it would not come out,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 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 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 +then he got it out and they were happy then the giraffe was happy and the elephant was too a bunny and a dog were building a sandcastle the bunny got scared and the dog was nervous they made a sandcastle then they both were happy they poured and the rabbit poured sand over the dogs sandcastle,0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 1 0 0 0 1 1 +the sandcastle broke down and the rabbit was the sandcastle did not break down and the rabbit was nervo and the dog was nervous and then the dog um tried to build it up but he was crying and the bunny was nervous the dog and the and the bunny were collecting coconuts and berries and they saw each other and then they said hi to each other and then they were happy,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 +and and they and they had a picnic they went home first and then they went back to the spot they were going to have a picnic at and then the bunny ate a lot and the dog was nervous and then the bunny ate too much he got so fat and the dog um ate the rest the rabbit did not feel well and the dog was nervous,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 1 +so the dog called the doctor and the doctor came and then the dog told him that the rabbit ate too much so he did not feel well so the doc so the dog dragged the doctor there because the rabbit was not feeling well the doctor saw that the dog that the rabbit was not fee feeling very well so um the hh he he was scared and then he felt then the doctor made the rabbit feel better and the dog was happy the dog mm pulled the wagon with a balloon tied onto it,0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 +and the rabbit saw that the dog was pulling a wagon with a balloon on it the rabbit wanted the balloon and the dog looked nervous the rabbit tried taking off the balloon the dog looked scared the rabbit was sad because it when he got off the balloon it started floating away so they were both and then one um wen and the rabbit was sad and the dog was scared the rabbit was nervous nervous and the dog was mad,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 +there is a balloon man over there uh it it was going to another bunny hu him too can i have a and the and he said um can i have a balloon and the dog was way back there so the and the rabbit was up to get a balloon and then the guy the balloon man said balloons five cents so the rabbit checked in his pocket for any money but he did not have any the rabbit looked shy and the dog did not look shy,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 +and then the um man looked nervous the doctor was coming and the rabbit was running to the doctor and the balloon man was selling and the dog was nervous and then um he showed the doc the rabbit showed the doctor um that he wanted a balloon to buy to five cents to buy a balloon so he could have a balloon and the dog could have a balloon then he gave him five cents for each balloon and then the balloon man gave him two balloon and then they were were happy and the balloon man was happy,0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 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 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and the rabb the doctor was kind of nervous the doctor was real nervous and they were both real happy uh uh the the elephant and the zebra the the zebra were going playing ball and that was on this page and and then and and then um and then the ball falls in the water and then zebra goes in to to swim to it the and then the zebra brings it to the elephant and the elephant felled in love with the zebra fell in love with the what,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 +zebra oh they went on the they are going to go on the diving board and then she goes running to the diving board then she slips and and hurts her knee gets a scrape on her knee and then the lifeguard comes to put a bandage on it and then she starts screaming and then she w and then she does not puts her leg up like it is broken then the lifeguard says no running the z the zebra finds a a plane,1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 1 0 0 0 0 0 1 +and the elephant said wow and then he starts flying it then elephant grabs it from the zebra and then then sh and then she started flying flying it and and and then she drops it into the water then it floats and starts sink sinking then the lifeguard comes s and then then the little boy zebra said can you get my plane and then and then the zebra said the elephant was flying it and then she dumped it into the water,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +the elephant lifeguards arms tried to grab it but she he could not then the l then the lifguard gived her trouble a and the zebra was crying and then she go and then the and then the mom gets a net and s and grabs it out of the water and gets it for the little boy then the boy was happy and they started hugging it and it was done the end there is m they are ma they are making a sandcastle,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 1 0 0 1 1 0 1 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 1 0 1 1 0 0 0 0 1 +and then a friend came and then he dug he digged some sand and put it in a bucket while the other kid was making a sandcastle and then he dumps it on the sandcastle and then and then the rabbit was mad she uh the other one st and then the mouse starts crying the end they go for a picnic and the mouse and the rabbit goes for a picnic the rabbit starts eating loud and then the rabbit got fulled while while the mouse was eating lots of sandwiches and ju drinking juice and then the rabbit ate some more,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and then he had a and a and then he got sick then the doctor came to see the rabbit and the doctor was not then the and then the mouse was dragging the doctor and then the doctor see said s seem seen what is wrong uh and then he got all better they are going to the circus and the balloon pops he ties up another balloon then it flies away and then there is and then they can not move their wagon,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +there there is a balloon man and the rabbit says i want one of those balloons um and he can not buy any because they are five cents and then he and then and then he and then he dumps his pockets out and he goes to go running to his dad to ask his dad for a balloon for his friend and the doc and then then then his dad sa says okay then they bought two balloons and then they pop them he said hi i love those rocks,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1,1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 +then that rock is falling and he that one is swimming and he gave that rock and he play and he can play with it now the end and uh b there was is elephant and this one he was jumping over an and they can run faster hm were you going to help turn yep,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 1 +okay he said i want to go run faster and jump over it and he said you are not big enough and he said oh yes i will she ran and and then slipped uh and he will say y ouch and that hurts he has a booboo and he tell his mom and then he still cry,1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1,1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +then he sit on it and he could help and do not play on the rules on the the pools once upon a time there was the this one is re really sheal he he said i like your airplane he said thank you and then it flies and he will catch it and he catch an airplane it does not fly but suddenly he the airplane did not fly up,0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 +he looks so angry and then and he said what is the matter he said i was dropping it and and he take it and it falls down then why did you did that i did not do anything he said maybe i can get it and it is too hard maybe maybe i could try again,0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +i will catch it in that net he scoop it up and that airplane works and he is so happy the end a bunny l loves the dog and they shovel the and they and that dog build a castle and the castle and that bunny just well it will fall down the castle and that bunny he he melt them he did not do it,0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +they fix it up he waved at bunny and they eat some snacks and the rabbit is tummy is full and they got a tummyache he tell him he just look at it he just got a tummyache she really not feeling all better then she feels all better,0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 +he waved at the dog and he gets the balloon then he show at the balloon then she pull it up he did not she did and it go up and he was mad it she tell them and he look at the balloons and he said would you please get that balloon,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 +and this present number five and they love them and they tell him again and he said the balloon will not get it wo he will not get it back and they all had two balloons and last year they have a balloon the end the zebra was going to the zoo and the elephant wanted to come and show them his practice at the circus and then they saw something inside a water,0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +but the giraffe wanted to get that ball because the elephant dropped it and the elephant said thank you for getting it the elephant wanted to go swimming but it ran jumped into the pool and it hurt itself is that what is on this page the elephant ran then when it ran it just ran fast and then it um it fell down and it hurt its knee,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 +and then another elephant came what was the lifeguard he and the lifeguard saw the elephant hurt itself then the lifeguard said you can not swim without a lifeguard if it tells you and it said go on the bench and no more going swimming until you calm down and i say so the zebra w the giraffe wanted to put his airplane in to see it swim and it and it did and then it went in the water and the giraffe did not know how to get it out but then the elephant took it from it,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and then it dropped it in the water and then the lifeguard did not know how that it airplane got in said um that is the giraffes airplane and the lifeguard tried to get it but he could not reach it and the giraffe was sad because nobody could get it then another elephant and it got um a thing what you catch fish with and it tried out to do it but it got it the airplane,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 +the elephant who caught fish gave it to the giraffe and giraffe said thank you giraffe was happy he was making a castle in in the beach what he got the sandbox he won and he made a castle there then when he was done making the castle he wanted to make another one and then he tipped sand on it but he was afraid if it was going to crash and it did crash,0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 +but he had to make another one but it was hard to make they were going to go and have a picnic and the bunny wanted to come and he said yes they eated carrots and they listened to some music and the bunny rabbit was full and the puppy dog was not and then the bunny rabbit got sick,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 +and the puppy dog was not very happy and then um the bunny rabbits grandma came and the puppy said the bunny rabbit is sick and they said come here come here and she came and she looked at the bunny rabbit and said you are sick then they went back home the puppy dog was all alone having a picnic they were going to a circus and they brought a wagon with a balloon on it,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then bunny wanted to grab the balloon but the puppy dog would not let it so it said it is putting it in a knot he said then it flied away and he was mad at the bunny rabbit and then there is a man with a whole bunch of balloons and puppy dog was mad but then the bunny rabbit was not he wanted some balloons and he said please can i have a balloon,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 +but the man would not let him he had no money but the puppy dog did so the pup but then the bunny rabbit saw another bunny rabbit asked can i come to wherever you go can i have a balloon if you have some and he said but then he realized that is not a man that is a girl said y yes then he gave her a balloon the that is a giraffe who is laughing with the elephant,0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +and then he saw the ball and then the elephant was scared and then the giraffe gave him the elephant the ball and then the giraffe came up the sidewalk and then the giraffe came up the sidewalk the the giraffe and the elephant were too scared to jump in the water and then the elephant was laughing but the giraffe was like ssss scared and then the elephant s was like tripping and then the elephant was hurt his knees and then the elephant cried,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 1 +then the elephant camed home and then the elephant was laughing and then the swimming man said he was pointing a hand the swimming man was what pointing his hand the elephant was laughing and the giraffe was laughing and then they were playing with the airplane and then the elephants turn to play the airplane but they dropped it in the water,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then they the elephant was scared but the giraffe was angry and then the swimming man was all mad at them but he said what happened and then he was like wo saying uhoh and then he was trying to get it but he could not and then the giraffe was crying and then the girl was trying to get a fish tank and then get it and then she got the airplane,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and then sh she gave it back to the giraffe this one the bunny was digging but this girl came and then dig and then they they both shared then they put it on together but that girl was scared and then they were like all sad and they made it back again the bunny said hi and then they went to a field tr trip,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 1 1 1 +and then they ate carrots but they guy did not got nothing and then they they both um shared food and then the f the bunny um dranked and the bunny was fatter and fatter and fatter and but he flew it off to this doctor bunny and then he s told the doctor that he is fff he needs help and then he said go to the doctor and then the doctor ss went to the dd to his workshop this guy was holding a balloon with a little car,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and then he was saying look my balloon and then he pulled it off and give it to the the other guy but it flewed up the sky and then the dog was all angry and then they ss and then they sawed the balloon man and then he said can i have that and but it was five dollar and then they were all sad but they saw the doctor and doctor can we buy this,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,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 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 +can we buy the balloon doctor and then the doctor s gave him the money th then they b got another balloon first there is an elephant and a giraffe and the elephant is bouncing a ball turn and the elephant i think bounces it into a pool and then the giraffe dives in to get it and then the giraffe comes back and gives it to the elephant and the elephant looks like he said th looks like he is saying thank you,0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 1 0 1 +um there is a giraffe and an elephant standing by a pool and there is a sign that says no running so the elephant points at the diving board and she runs over there and she slips and she scrapes her knee and then the lifeguard comes and help and puts a band bandaid on her then she then he put put puts put her on a bench to sit down and then the lifeguard points his finger out saying bad i think there is an elephant and a giraffe,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,1 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 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 +and the giraffe is flying a toy plane around and then the elephant um looks at it and i think says that is interesting so the giraffe gives a turn to the elephant and the elephant is th um threw it into the pool and the giraffe gets mad at the elephant so the elephant asks the lifeguard to help and then talks to hi the liteguar the lifeguard what happens and the lifeguard tries to reach and get it then the lifeguard does does not know what to do and the giraffe goes on his knees and starts to cry so a dif i think a person that swims takes a n takes a net and tries to scoop it,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and she s scoops it up and gives it back to the giraffe and the giraffe holds it by like this by his neck and the elephant um has his hands like this like that in front of the giraffe there is um i think a bunny and a dog and the dog built a sandcastle and the bunny i think wants to help um the dog is smoothing the sides out while the bunny is digging sand out for the sandcastle and then the bunny pours it all over the sandcastle and he and it destroys the sandcastle and then the dog cries and tries to build a new one,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 1 +um there is a bunny and a dog that have their baskets with uh f food in them and then the bunny dumps it all dumps it all out and the dog just takes it one at a time and then the dog is still eating and the bunny is laying on the ground with all this garbage around and then the dog is drinking a juice box and i think the bunny feels sick then uh and then the dog i think finds a doctor and the dog is pulling the doctors sleeve over to where um the bunny is laying down and the the doctor takes a thing and this little stick and like points at something,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 +and then the doctor brings the bunny i think home and uh the dog is standing b just standing still with a th a thing behind her back first um the dog is pulling a wagon with a balloon attached to it then the dog drops the handle and the bunny tries looks at it and then the bunny tries to untie it and it s blows away into the sky and then the dog gets mad at him and then the the da the dog is mad the bunny runs over,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 1 1 0 0 0 0 0 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 +and he sees a a balloon man selling balloons and the bunny takes one of the balloons and and on one of the balloons it says balloons five cents and then the bunny pulls out the inside of his pockets and he has got no coins so the balloon guy was holding the balloons and the bunny has his hands in his pockets with the dog behind him the um the the the p dog is standing by the balloon guy and the rab the rabbit sees this this p this girl this lady and then i th she tells he tells the lady to i think b get him a balloon,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 0 1 0 0 0 0 1 +and then the the lady takes out her wallet and puts some coins in her hand and they uh each get a balloon the elephant start the elephant starts screaming with the elephant starts doing with his trunk he s makes lots of noise do you know about the elephants oh it does not it is your story you make it up whatever you think and then they saw a egg in the water swimming they want to pick it up the elephant said uh why there is a egg,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 +i want to jump in the water and get it ah the guy swim in the water to catch it and the elephant is doing this and then the guy um swim and he give the thing for the elephant the elephant said wow and then the elephant went away the end they saw a water they want to swim in there,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 +it is like the two guys the elephant and that guy same and that is it and then the elephant said look i want to swim in the water and then they start the elephant was first the guy was behind him and he starts running i do not know what is he running for,0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and they still run again know what is he running for too and then they stopped and the elephant fell and it hurt his leg that is funny part and then a elephant came and squeezed his and then he put a bandaid and that is it elephant came,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1 +and that what is what is this guys long neck what is what is this guys long neck what is his long i can not see it it is your story you make it up and he got a helicopter he flied it in the air it fell in the water it keeped flying in the sky it could not get down he was going to catch it,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 1 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +he could not okay shall i turn now oh he he wants to fly it right now the elephant is like this oh you showed me again with your face and then and then he wants to fly it the elephant catched it he must have wanted to fly it and then it fell in the water uhoh and then that guy gets mad on the elephant cause it is because it got s um it is got snuck down,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 1 1 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 +and it got stuck now and then the other guy said here is the bigger dad and the eleph the other guy the other one said look the helicopter sneaked down oh the guy the guy is trying to catch it it gots all the way there and then they could not catch it that is a long one and then the guy got a like net oh the net catch everything,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 1 +he catch fish but it is hard to catch fish they are fast and helicopter is it is just a toy down there you can catch it fast okay should i turn and then the guy catched it and he give it back to the other guy and then the elephant is really happy and he went,0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and he what the ele elephant is happy and he went because he got that thing the end the other guy was building his sandcastle and the other guy with glasses they was happy and then turn the page now and then the guy w wants to mix it because he can not see or watch the guy put the pail,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 +it is going to wreck it now it is lots of sand and then he wrecked it that guy that is his sandcastle he wrecked it and then the other guy build another sandcastle but it is not nice the end the guy said bye to the guy the guy with the glasses and then he went,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 +and he sit and he was playing with the sand they was eating and snow uh and snow came down um and then they was cold and they went in the house and then they came back out and it was so windy and then they came back out it was raining,0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 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 1 0 0 0 0 0 1 0 0 1 +and when they came back out it was sunny and when they came back out it was windy again and when they came back out it was sunny the end um the guy went with the pail with a balloon on and then they see it they want to get it to the sand they could not find the sandpile and then and then the other balloon fell in the sky balloons can fly in the sky when it is windy because it is not heavy,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and then the guy wants to take it off whoa it forgot to go it is not hanging in tight like that it is like this flied off it is gone he can not catch it in the air oh yeah if that guy was with it then it is windy so hard it can fly with it if it is hanging on,0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 1 +oh it is flew he took it out and it flied up and then th and then the balloon pop and the guy was mad and the other guy was sad and the other guy bought lots of balloons and he gived them to the kid and the other balloon popped the last one and then the other one popped that is it,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1,0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 1 0 0 1 +and then another one and then it is not going to pop and then okay anything to say about this page here um page eleven and then the guy look look how many balloons he say and then he give him some money and he and then they jumping to get the balloon the guy can not see,0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 +they just gather by his hand and he went and then they hung on their arm and then they hanged on on the balloon they hanged on on a balloon and then they smiling the end it looks like a giraffe and an elephant that are going swimming and they are playing with a ball although it although when um they were playing with it it um maybe bounces in the water and the giraffe tries to swim and get it,0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the giraffe got it and gives it to the elephant and the elephant thanks him and the giraffe is smiling it looks like they might want to dive in and go swimming looks like the elephant is pointing to the diving board to um and he wants to dive and um the elephant starts to run although it is slipery so she starts to slide and she falls and hurts her knee,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 +and then um the lifeguard comes and he puts a bandage on it then he um saying probably that there is a no running sign and that you can not that you should not run cause you can slip and fall and then he is pointing to the sign that says no running looks like they are talking about something and then he and then the giraffe looks like he is showing her his new airplane and she looks like she is getting dizzy watching it going around in circles and she takes it from him and starts to looks at him and the giraffe looks like he is getting mad and then she accidentally dropped it in the water,0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and she looks like sh she is scared or something and the giraffe looks like he is m really mad and then the lifeguard comes along and probably says what is that and what is it doing in the pool and then the elephant is probably blaming it on the giraffe that he threw it in the water and the lifeguard is trying to catch it trying to pick it up out of the water although he can not reach it and the giraffe looks like he is getting really sad so he starts to cry and then this lady elephant comes along with a net and she tries to fish it fish it out with the net,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 +and she gets it out and gives it back to the giraffe and he is all happy and he is hugging it it looks like two it looks like a bunny and um and a dog or something playing in the sand and they start and the bunny looks like he is helping the dog make a sandcastle and the bunny pours a whole bucket of sand on it and the dog looks like he is getting sort of worried and the bunny s gets surprised because it is all covered in sand and the dog starts to cry and the bunny looks like he is embarrasseed,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +it looks like the dog is going for a picnic and the bunny is coming along with him it looks like the bunny is looking at all this good food that he wants to eat and he eats it all and he and he i guess he has a stomachache and then he starts to feel sick and it looks likes he is fainted and the puppy the dog goes to find somebody and he fi h um he finds this um lady and he pulls the lady to where um the bunny dropped out,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 +and the and the lady was a doctor so she tested him to see if he was awake or not and she took him and she is probably going to take him back to the doctor office to check him up it looks like she is pull the dog is pulling a wagon with a balloon on it and the and the bunny is coming like running along and he sees the dog and he is waving and the rabbit pra um looks like he is saying um like nice balloon and then the bunny tries to pull it off,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 +and the dog looks like scared that it will fly away and then the bunny accidentally lets go of it and it starts to fly up in the air and they are trying to catch it although they can not and the bunny is looking up at the balloon and the dog is getting really mad and then this um old bun this bunny is selling balloons and the bunny sees it so he runs over and then he asks the bunny the older bunny for a one of the balloons,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and then the balloon man said that the balloons are five cents and the bunny looks in his pockets and he does not have any money and the bunny looks sad because he can not buy another balloon for his for the dog and then the bunny walks over to this lady and he asks her for some money and the lady gives him five cents and then they each got one of their own balloons there is an elephant and a giraffe by the swimming pool and the elephant is banging a ball with his trunk,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and the elephant kno accidentally knocked the ball inside the water and the giraffe had to go and get it he had the giraffe had to swim inside the water to go and get the ball the giraffe got the ball back for the elephant and the elephant and the elephant was happy to get the ball back the elephant and the giraffe are standing by the water the elephant ran closer to the water the elephant slipped and the giraffe is running to s stop the elephant from falling on the ground and the elephant fell on his her knee and hurt it,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 +the giraffe is trying to fix the elephants knee and this oth another elephant came and put a bandage on it and all the giraffe the elephant and the other elephant are the giraffe is sitting down and the gg giraffe is standing up and the elephant is still the other elephant is standing up and the girl elephant is sitting down the elephant is the elephant and the giraffe are happy the giraffe is playing with a toy plane and the elephant is looking at it and the elephant took the toy plane and started to play with it,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the elephant dropped the toy plane inside the water and the giraffe is getting mad at the elephant and the lifeguard came and s looked at the toy plane and then the elephant was looking at the lifeguard and the one the giraffe is looking at the plane and the ele the elephant asked the lifeguard to get that plane out the lifeguard is holding onto the edge and trying to get the toy plane out and the elephant and the giraffe are looking at the plane and the lifeguard can not get the eleph the um plane out so the giraffe started to cry,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 1 0 0 0 0 0 1 +and the and another lifeguard grabbed a net and tr and tried to get it out and the other lifeguard um caught it in the net in there and um the everybody was looking was proud and that other lifeguard got it for the giraffe and the giraffe was very happy and the elephant and the giraffe are very happy to get the plane back there is a rabbit and a dog playing in the sandbox and the rabbit and the dog are making a sandcastle and the rabbit fulled the bucket of sand and broke the sandcastle and now the rabbit is a bit frightened of what happened to the sandcastle,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 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 1 1 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 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and the dog ha is trying to make the sandcastle all over again there is a dog and a rabbit they are going to have a picnic and the rabbit took all the food out and is getting very hungry the rabbit ate all his food and the dog is still drinking and eating his food very nicely and the rabbit is very ff full and the dog is still eating his food and the dog sees a doctor and ran over to the doctor and the doctor is the dog is pulling the doctors leg arm to move it over there,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 +and the doctor is gon going to take um the the bunnys the rabbits uh is going trying to fix the rabbit and the rabbit is all better now the rabbit is running over to the dog that is pulling a wagon with a balloon on it and the rabbit is trying to grab the balloon and the rabbit is untying the balloon from the wagon and the dog is very proud and then the balloo the balloon slipped out of the rabbits hand and went flying up in the air and they are all try and the rabbit and the dog are trying to catch it and the dog is very mad at the rabbit and they s and the rabbit sees another man selling ballo a balloo a man selling balloons,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 1 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 1 +and he bought one the rabbit bought one balloon and he and the rabbit has no money for balloons and th and the rabbit and the dog are trying to get a balloon and the rabbit went to th to the to this other rabbit to the doctor and the doctor saw him and the the ra other rabbit is pointing to the balloons and the doctor is buying a balloon and both of them have a balloon the girl has three ba balls and she is and there is a a big one and a medium sized and a small ball,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and and there is um a giraffe that would like to play with one by accident he s the girl throws the ball into the pool the giraffe goes try he is in to swim for it he gives it back to the girl and says that is okay he is smiling at the girl the girl elephant and the boy giraffe are looking at the pool okay can you talk a bit louder cause someone is making noise out there what is next the girl the girl is running the girl is running mm okay,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 1 0 0 0 1 1 1 +she she accidentally slips and she hur and she hurts her knee and now she is crying crying the lifeguard comes running he put the bandage on on the um bruise and she now she is sitting down on the um bench he points to the sign that says no running and she was running the boy giraffe have a toy airplane and the girl giraffe the girl elephant is asking to play with it,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,1 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and he wa and he um and he is showing her how to do a loopdeloop with the airplane and then sh and then she takes it sh she is looking at it like it is hers she accidentally drops it into the pool the um gira the boy giraffe is getting mad at her the la the l when the lifeguard sees he he is kind of happy and he is kind of mad the girl the elephant is telling hu him what happened he is trying to reach out to get it the boy giraffe is crying because they can not get it,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 1 1 0 1 0 0 0 0 0 1 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +the the other gir there is another girl elephant that has a net and she thinks that she can get it and she can get it she giving it she is giving the toy airplane back to the giraffe and he is hugging it because he loves it there is a rabbit that is making a castle and there is another rabbit that wants to help that rabbit make the castle they they are helping make the castle together one one is building the castle and one is making the walls,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +one one one is ac one accidentally pours the sand right onto the castle and the other one looks embarrassed uh after he pours it on all there is is a tower from the castle and it is all gone and the other one is kind of smiling but one has a frowning face and that other that other wa one that had a that was smiling is now crying and the other one is thinking of what he did that is the end of the story there is two there are two rabbits,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 1 +one is running to the other with a pis picnic basket and the other one is holding a pis picnic picnic basket one said one has opened up his picnic basket and he is eating all the food and the other one is s still opening hers up when he is done all his food he kinds of he kind of faints and the other and the other one is still eating uh he feels kind of sick and and he the other one is still eating the one that was still eating ru runs to get a doctor,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 +and and he is telling her him her what happened to her friend now she now she is pulling the doctor to her fr her friend the doctor is speaking to the boy and to tell him not to eat too quick now the boy is all better and now and now the girl and the boy is going home there is a girl that is pushing her wagon and uh there is a girl that is pushing her wagon and on the wagon there is a balloon and the boy and the boy rabbit is chasing after her he wants he wants the balloon so he reaches out,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 +and she is kind of have a frowning face what kind of face a frowning face oh frowning okay when he gets his balloon the gir the girl um kind is saying hey and he is playing and he is tying it to his wrist he lets the balloon go and it floats away the girl is getting really mad at the boy,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 1 1 0 0 0 1 0 1 1 0 1 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and soon they see another rabbit that ha that is holding balloons when the bo when the boy s when the boy sees that he asks if he can have a balloon the man said it is five cents and the boy does not have any money he says it is okay maybe next time you will have some and when the boy sees the doctor he asks if he can pay for the if sh she can pay for the balloon for both of the balloons i sa the doctor says y yes and um they both get a balloon right here she is paying,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 1 1 0 0 1 0 0 0 0 1 1 1 0 0 1 +and they both really like their balloons there once were two friends and they were playing a game and they wanted to go swimming so then they got there and then they were playing and the ball fell in the pool so one of the friends swam out and got it and then they got it and one of the friends she took it out,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then they wanted to play again there were two friends and they were the same one in the last story and they wanted to go swimming again so they went and then one of the friends she wanted to go in right away so she ran and sh and she wanted to jump in but then she fell and she scraped her knee,0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 +and the lifeguard came and he said oh it is all right here is a bandage here you can sit here and wait til it is better and then she was happy she took a little rest there were once two friends and they wanted to go swimming so they went and one friend bought brought an airplane,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 +the other friend grabbed it and said wow an airplane and then she accidentally dropped it in the pool and then the other friend was a l little bit mad so then she said uhoh and he went and then the lifeguard came and he went hmm and then she said i i accidentally dropped the airplane in the pool he tried to get it but he could not reach,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +so then the friend that ha had the airplane he was crying and then one lady she came and she had a net to get it she said do not worry i will get it and then she went and got it and then the he was happy again and then they were both happy and she was happy he got his airplane back once there were two friends,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,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 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 1 +and they went and they wanted to play in the sandbox and they built a sandcastle and it was really nice and they needed lots of sand to make it unless unless it would not work out and then he put too much sand on it that it all collapsed and fell and then and then one of them started to cry so and then he wanted to rebuild it once there were two friends and and they wanted to go on a picnic they packed all the lunch,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and when they got there they started to eat and they started to eat and one of them felt really sick so they had to get a doctor and and while the doctor was coming when the doctor was coming he felt really sick and he k he could not wait and the doctor came one of the friends she ran up to the doctor she said doctor doctor help my friend is sick,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1,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 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 1 0 0 0 1 +we need some help so he feels better the doctor said oh my he has a he has a very bad tummyache and he felt better because the doctor made him feel better and then he lived happily ever after there were two friends the same ones in the last story that i read and they wanted to go on a walk so they went and they and they saw and they saw somebody with balloons and they they got one and they tied it on,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 1 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 0 0 1 +but then it went up in the air and they were sad and then they they kept going and then they saw a man another man with balloons and they went they wanted to get some say so they got so they got some and then they left but then they did not have any money and he was sad and the balloon man said hm i do not know if you can get a balloon,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 1 +and they did not d get any and then they saw a lady and see she was and then he asked can you get us some money so we can get a balloon and then so she bought a balloon for them and then they were both happy uh hm once upon a time then there was a elephant going then the ra then the he came and was and a ball was in the pool then he tried to swim in there but he could not,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 1 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +then she pick the ball up then he was all wet then that is the end of the story once upon a time a elephant came along and that then then then then then she wanted to then she wanted to go but she falled on herself and the more she was running she falled and someone is going to help her and she got a br um a owie then come along elephant came then the elephant came,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 1 0 1 0 0 0 1 +and he and that was a coast then there was a owie going and there was but then there was nothing to do then the animal was all better and he said no running because if you run you fall on yourself i never do that i but i run on a sidewalk and i like like while i was two like once upon a time she did not allowed in something came and and then there was an airplane going in the water and she played it and something,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 1 +and she taked it away and throwed it in there um then then he was angry and she and the boy told her you did it on a purpose then a lifeguard came then then the airplane was still in there he wanted it out he tried to reach it but he could not and someone got it but she was very trifle,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +um then someone is going to pick in a net um then someone is going to pick it then he was happy then he was glad then she was glad they were making new friends again then the end of the story once upon a time he she built a nice sandcastle but then that rabbit then the rabbit was surprised then c then they were making a other castle,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 1 0 0 0 0 0 0 1 +then someone pushed it down and that was her like like a rabbit or maybe someone else and it was rabbit and she did not do it so she tried to fix it and he was not uh pleased then that is the end of the story he she was walking by and then then a rabbit was going by and a puppy saw her,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,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 1 0 1 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 +and a puppy said i am going to picnic like you so they had a nice picnic and he was getting goofy and suddenly he was tired and he was full of candy and he is getting sicker sicker and sicker then he knowed he was getting sicker and sicker and he she needed him to help her he was so full he could not even walk and the rabbit said get up,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 1 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 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 +and then he was fine at all then she was trying to pull it but he was so happy a ra and a other rabbit came along and she said what are you doing i am just pulling some stuff and a balloon was not going up and she was happy suddenly it was going up and up and up and up and up and up then suddenly he wanted a other one,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and she was angry there she came just a sec then he was going to get a other balloon she was angry and he wanted a balloon and he said yup i want a balloon and he did not know and the said no can you see,0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 1 +and and he said you do not have any money that is that is not doing then then suddenly he had idea and a rabbit had money somewhere to find and that was someone else looking in a far away and she said what is it you are doing i need some money but and she said she did not know what she need the money for then then she give him some won money and they wanted two balloons,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 1 +that was all and he wanted them two but others heard it but there was two left then they got both the balloon and they loved it then they hugged it and then something went then then then she was surprised and that was true that is the end,0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 1 +so a guy there was a giraffe he was at the pool then he met a girl bouncing a ball but the ball fell in the water and the man the boy tried to go get it and then he got the ball and then he was still all wet because he was in his clothes there they saw a diving board and it and it said no running and the sign said but,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 1 0 0 0 0 1 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 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 +and then she started to run and then she slipped she fell on the ground and she hurt her knee and then the lifeguard came and put a bandage on it sat on a bench and then the lifeguard said you are kicked out a boy was there and the girl was there and then the boy had an airplane in his hand,0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +he flew it around like this and then the girl grabbed it out of his hand and then it slipped out of her hand and it went into the water it was a pool and then the boy got so angry and the lifeguard came and the girl said it was an accident i accidentally got the w plane in the water so the lifeguard tried to reach it,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,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 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then he could not the lifeguard girl came and picked it up with a scooper and gave it back to the boy and then he hugged it he hugged the plane well he were in the sandbox and he meant and he somebody had a sandcastle built up and they played together and he put some sand in a bucket and the other guy touched the castle and then the rabbit put the sand on the castle,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 +and then he got so mad so then they tried to fix it there so he was on the road somewhere and he put his hand out like this and he saw somebody run down the street and then they decided to have a picnic together one is eating a carrot and then he got so full because he ate all the food and he got so full that the basket fell over,0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,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 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and then his dad came and he is still laying on the carpet and then he the child pull the dads shirt and then he said go to your room now and then he he sna and then the other guy went home because the other guy was not really his child the other guy was re really not his child so the this boy met a girl pushing a wagon with a balloon attached to it and then they wanted to play together so and then the boy took the balloon off,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and it floated up into the air and then the girl got angry so then another man came by selling balloons so the girl wanted one so then he uh the guy looked in his pockets to see if he had any money but he did not so he had to walk back and ask somebody else to for some more money then he got more money and then they got another balloon they each got a balloon the elephant is talking to the talking to a horse,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 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 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +the elephant is pushing the horse the elephant pushed the horse in the water the elephant is helping him out the elephant ah being nice and that is the end the elephant is being nice elephant the elephant is going to jump in the water th the elephant is running the elephant got a got an owie the elephant is crying,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 +uh the daddy is putting a bandaid on it and she is sitting on a bench uh and she was and she is be and she was just teasing she was just teasing that she had a owie the elephant is making funny faces the elephant is uh looking at the airplane the elephant s wants to fly it the elephant is the elephant is sinking it the elephant is and the elephant is looking at the airplane sinking and hm the elephant is mad,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 1 +and she s she said to her dad that that that i sinked his airplane and the dad is trying to get it and the dad is putting his hands out like this and and the ga and and the fly fly swatter uh and she is trying to get it with the fly shw ss swatter s and and she got it out for him now the elephant is happy and that is the end um they are playing in sand the rabbit is digging in sand the rabbit is putting sand on the sandcastle,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +the rabbit wrecked the sandcastle and and the piggy is sad and he is building it back up and that the end the rabbit is walking down the path the ra they are having a the pig and the rabbit are having a picnic the rabbit is eating candy the rabbit is the rabbit is feeling sick and they are gi and the and the pig has a flower in his hand and the pig is pulling the the girl bunnys hand,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 1 0 1 +and the girl bunny hit him on the head and the girl bunny is taking him and that is the end the rabbit wr walking down the path again the rabbit is looking at the balloon the pig has a f um the rabbit is untying the balloon and the balloon is going up and the pig is getting mad at the rabbit and and there is another rabbit and they are going to go buy another one,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 +and they are going to get one and then they are going to ge go get another one from someone else then they are going to go get another one from someone else and then they got one and then the and then the then the gi then the girl um and and the rabbit is running to the girl bunny the girl rabbit n and and then and and he is pointing to the balloons and and they want another balloon so they are getting their mom to buy another one and this t and they got their own this time and that is the end a girl is bouncing a b a ball,0 0 0 0 0 0 1 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 1 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 1 +the ball went into the pool the moose went to go get it the moose got it and brang it back and then he got out of the pool got out of the pool and the girl was happy they they see a pool they run to the diving pool now they are running to the diving pool okay so you were thinking about that because you knew what came next anything else on this page they see the diving board,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 1 +so they run to the diving board the girl ran so fast that she slipped and hurt her knee the lifeguard came to see to give a bandaid bandaid the the moose went to go get him the lifeguard gave her a bandaid she thought it really hurted and then the the lifeguard took her to the bench and then she tried touching it and it was better and then the lifeguard pointed to a sign,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +she looked it said no running the moose has a plane they were going to play with it at the pool the moose fl fl made it fly okay you were showing me with your hands and then the girl took it away and threw it it landed in the pool the moose got really mad the girl said oopsies,0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1,0 1 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 1 1 +the lifeguard came she was scared she told what how um how how it happened the lifeguard tried to reach it but he could not the moose cried the lifeguard got a net and got the plane with the net then pulled it out so sh so the moose can have it and then they had fun later there are two boys making a sandcastle one of them smoothed it up,0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 +the other one put sand on it since he was getting tired of doing that he dumped the whole pail on and then the wh whole pail cover most of the sandcastle one of the boys started to cry two people had a picnic one of the boys ate had more than the other one the the one of the boys had l had too much to eat he got he ate a little more and he got dizzy and then and then um a the other boy saw a girl,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 1 +she pulled the girl to the picnic and the boy wa the boy was not so dizzy any more because the girl helped him a boy was pulling a wagon with a balloon on it the boy saw the balloon the boy was untying the balloon the balloon floated away the other boy got mad at him he so he the other boy looked up and then they saw more balloons so they went to go get one,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 +but but it costs money and that was this page and then the boy checked his pockets but he did not have five cents so the man with the balloons said no you can not have one because you do not have any money and then a boy found a girl the boy asked her nicely if she could buy him a balloon the girl gave him a balloon they both had a balloon now the elephant and the ah,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +the giraffe was uh saw the elephant was bouncing the ball and the the ball was on the water and giraffe trying to get the ball on the water and the giraffe got it and the elephant get it and the giraffe was wet the end once upon a time a the elephant and the giraffe was saw the water and and ahh um the elephant want to go on the water and the elephant go right away to go on the water,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 1 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 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the elephant slipped over the the ground and the elephant got hurt on the knees and the elephant was crying and the and the elephant was putting a bandaid on and the elephant was the elephant was ahh ahh mad because it hurts on the knees with the bandaid and they feel better and they sit down but the elephant ahh looked so mad because theyre the giraffe and the elephant want to go to the water the end the giraffe and the elephant,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 +the elephant saw the airplane on the giraffe hand and the elephant was saw the airplane was flying and the giraffe was standing uh with the airplane and the elephant take away from the giraffe airplane and the elephant want to see it and the elephant drop it in the water and the giraffe was very angry and the elephant and the giraffe was saw the the other elephant was saw the airplane in the water and the the elephant was uh say the she was dropped the airplane in the water and the uh the elephant trying to go get the the airplane,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 0 0 0 0 0 0 0 0 1 +and he can not get it but uh the giraffe was crying with the airplane and the then the other uh elephant will get the airplane with that thing to for the fish and she the elephant trying to get it but it is too hard to get it but she get it the elephant got it now and the uh giraffe was happy and the elephant and the giraffe was happy too the end,0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 +the bunny and the the dog the dog was making a sandcastle and the rabbit want to help the dog and the rabbit was making a sandcastle and the dog all finish and the rabbit was trying to put the sand on the castle and the dog was so scared the the rabbit trying to put the sand on the castle and there is breaked the the sandcastle and the dog was crying,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and the rabbit was so sorry breaked the sandcastle the end the dog and the rabbit was going to the picnic and the rabbit was have the carrot and some hot dogs and some cake and some sandwiches and the rabbit got too much to eat and the rabbit got a st stomachache and he is getting so fat and the doctor was came and saw the rabbit the and the dog tried to get the doctor and the doctor was coming and saw the rabbit there,0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 1 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the rabbit was so have a stomachache and he feeling right sick and the rabbit go home and he felt better the end the dog and the bal the dog and the bunny was saw the balloon the color pink balloon and and the rabbit went to see the balloon and he trying to take it off for the dog and is is floating away from the dog and the dog was right angry because the bunny was let go of the balloon,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and the dog and the rabbit saw lots of balloons there pink green and orange and blue and purple white and gold and the rabbit choosed the blue one and that and the the nother the another uh rabbit was right angry because that is number five so the rabbit and the dog want to pick the balloon but the doctor there because the dog was sick and the the doctor saw the dog was sick and he has got some the doctor got some monies for the dog and the rabbit for the balloons and the dog got the color the gold balloon and the rabbit got the color the blue balloon,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 1 +the end the elephant was playing with his ball then he threw it in the pool then the giraffe catch the ball and throwed it to the elephant and he pick it up x okay what did you say they want to go in the pool he was running,0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1,0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 +then he slipped then hurt his knee then he cried what is that then the lifeguard go and he closed his eyes and it hur hurt then uh the lifeguard told him that he it says no running the elephant looked at the giraffe playing then he played with it,0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +then he grabbed it then he throw into the deep pool and the giraffe been angry and the lifeguard came he and he told him that he throwed um the giraffe plane into the deep he tried to grab it but he can not and there was daddy he get the plane and he catched it,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 +and he bring it back to the giraffe and he hugged it tight to the the bunny and the dog are making a castle castle the bunny put sand in his bucket and he dump it all and he wreck the dogs castle mm he he he pretended to he did it to him the dog and the bunny went going for a picnic the bunny ate some food and he ate some more,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and then he has a stomachache then the dog got by the doctor and he grabbed him and he uh he told the dog that he has a stomachache and then they came the dog and the b bunny went to see the bunny the the bunny see he sees the dog then he tied up the balloon and the balloon went up and the dog got angry,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +then the bunny losed it he talk the mom to give him the balloon but he do not have money the the the bunny and the dog have no money they come to go to him and then the dog the bunny goed and he gave both balloons to them bunny and the dog um the donkey wanted to play uh with with another animal with his balls um they they went to the swim pool and they they found a friend,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 1 0 0 0 1 +and he jumped in the water and splashed the elephant by accident and the elephant picked the ball up and the giraffe asked if he could have it and he came out with his cloths on um they went back to the swimming pool and did not want to go into the water the elephant wanted to go in the water but the giraffe did not um the elephant asked if he could race the giraffe to the diving board but the elephant tripped and and fell and hurt her knee and the swimming person checked if he was okay and put the bandaid on her,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and she feeled all better and she stayed there so she could get better um the giraffe throwed his airplane and it flew but but by accident he th threw it too soft and it fell in the water and he tried to get it out but he and he did and without asking the elephant grabbed the airplane away from him because she wanted to play with it and because they was grabbing they grabbed,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 +and it fell in the water and the giraffe was angry at the elephant because she throwed it in by accident the lifeguard was mad because they throwed it in and toys was not supposed to be in the water and the elephant said look what i did it was by accident and the lifeguard tried to pick it up but he could not the lifeguard could not so he just got up,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 +and he had an ide a plan he but he did not his wife took um a stick with a rope on the ss on the front and he catched it out he tried to she tried to catch it out an but she could not and she did and she gave it back to the el giraffe and now he was proud of the girl because she got his plane back the bunny said hi to the dog,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 1 +and the dog was making a sandcastle and the bunny wanted to help but the dog said yes and they started building a sandcastle and then the bunny dumped a bucket and it and it and the castle fell down and the dog was mad at the bunny and the bunny was sorry because he knocked the sandcastle down and then they builded it all and then the dog builded it all up and crying the dog said hi again to the bunny,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 +the bunny was racing down with a basket of food so was the dog and when they got there they unpacked the food and they started eating and the bunny tummy hurted and he was sick of the food and the dog raced to the doctor and said doctor doctor can you help my bun my friend bunny is sick doctor doctor come on come on doctor,0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 1 0 1 0 0 1 1 0 0 1 0 1 1 +come on my friend bunny is really sick because he eat so much food okay okay he took his temperature and he was sick sick and and then he checked the bunny again and he was all better the dog said hi again and the bunny wanted the balloon and said where did you get that from i want that balloon right now,0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 1 0 1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 1 0 1 +and he untied it from the wagon and it started float floating off the wagon and the dog was mad at the bunny because he untied it and he wanted it and then the bunny had a great idea he can go over to the balloon man to buy another balloon and they asked could we have two balloons please and uh and it cost it costed five dollars and he had he did not have any money in his pocket so he could not get a balloon,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and they said please but no only for five dollars doctor can you help us can we have five could we have five dollars for both of us so we can have a balloon he said okay you can have balloon i i do not we do not have any money in our pockets so please can you give us five dollars so they gived him five dollars for both of us and then they got the two leftover balloons and then they was proud of the doctor because they got a balloon,0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 1 1 0 0 1 1 1 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the bunny said sorry to the dog because he uh he wanted the balloon and he untied it so he said sorry play ball and he taking swimming pool and he get it and thank you and welcome uh and over play swimming,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 1 0 1 0 1,0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 +and go in it and and run and walk on knee and her cry and cry lots and sit on bench and stay here the what and stay on bench over play,0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 0 0 1 1 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 1 1 1 +play play a play and play a play again and play it in in water and it angry and say bad and dad what is that daddy i play in pool,1 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 1 0 0 1 1 0 0 0 1,1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 1 0 0 0 1 +and they are get it get it i am get it looking and get it and it in there i get it you get it and loffed it loved it loved it he play on s in sand and play make castle,0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 1 0 1 0 1 0 0 0 0 0 0 0 1 0 1 +and dump it and what dump it oh no oops sorry and cry uhoh they go picnic and eat and they drinks juice,0 0 1 0 1 0 1 0 1 0 1 0 1 1 0 0 1 0 1 0 0 0 1,0 0 1 0 0 0 1 0 0 1 1 0 1 1 0 0 0 0 1 0 0 1 1 +and hungry and that girl her tummy that man sick she what sick and a bunny his tummy hurts and turn that and go doctors house he what doctor all done,0 1 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 1 0 0 1 0 0 0 1 0 1 1 0 1,0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 1 0 0 0 1 +her play and hold that up higher tie it up and up higher and up clouds angry and man what man balloons on it him him take one,0 1 0 0 0 0 1 0 0 1 0 0 1 0 0 1 1 0 1 1 0 0 0 1 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 1 0 0 0 0 1 1 0 0 1 +and and x and bring doctor here and check and talk and money and balloon and two balloons and over there are these two kids one has a ball and she is bouncing it really fast by a pool,0 0 1 0 0 0 0 0 1 0 1 0 1 0 1 0 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 1 +and the ball falls in so the other kid jumps in and swims to the ball and he gets it for her and then climbs out there is these two kids and they are looking at the water and one of the kids says that there is a diving board and it looks like fun and the kid who said that the diving board looks fun runs and slips and hurts her knee and the lifeguard comes and puts a bandaid on the hurt spot and puts her on a bench and shows her the sign no running there is these two kids,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 +one has an airplane and he plays with it and the other one takes his airplane away and accidentally drops it in the pool and the other kid is really mad at her so she go gets so she gets a lifeguard and she asks him if he could try and get the plane out and he tries but he can not reach it and he does not know what to do and then this lifeguard with a net comes and fishes it out and gives it back to the kid,0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the kid was really happy to have his airplane back um these two kids um are going to build a sandcastle and they start building and then one of the kid um dump sand on it and then it is all flat and then the other kid cries because it is broken that is kind of dumb these two kids are going to go for a picnic and the first kid took um all this unhealthy stuff and he starts eating,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he gets all sick and the other one he gets all dizzy and the other kid runs and gets s the doctor and the other one pulls the doctor to him and then he checks him out and then he says that he is going to give him a checkup um there is these two kids one of them comes up and and says hi and he sees the other ones balloon and then he starts taking it off the wagon,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and and the other kid is yelling and then he accidentally lets go and the other kid is really mad so he sees a guy that is selling balloons and he asks if he could have a balloon and then the guy shows him that the balloons are five cents and he does not have five cents so he goes to his grandma and asks if he could have a balloon and she says yes so they both get a balloon,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 1 +one day a giraffe saw her friend the elephant playing with a ball gira the giraffe took the ball and threw it in the po in a pool nearby the elephant was scared the ball might sink so the giraffe went to get the ball the giraffe got the ball for the elephant and the elephant was happy then the elephant thanked the giraffe one day the giraffe and the elephant were at the pool the elephant said let us go off the diving board the elephant ran,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1,0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 +and so did the giraffe the elephant fell and and hurt her knee the lifeguard came and helped her he put a bandaid on the elephant while the giraffe watched the lifeguard told the elephant not to run in the pool or she might slip so the elephant sat down and did not run one day in the elephant and the giraffe were at the pool the giraffe had a a a little plane the giraffe played with the plane,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +he did loops and swirls and s things like that then the elephant took the plane and tried to play with it the elephant dropped the plane into the water the giraffe got furious and the ele and the elephant got scared then the lifeguard came the elephant told the lifeguard that she was playing with the plane but she dropped it in the pool the lifeguard tried to get it he said he could not reach it,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 1 +and the giraffe started crying then a woman came with a net she took the net and she took the net and took the plane out the boy was really happy and thanked the ele the woman the boy got his plane back and he was really happy and so was the elephant one day two rabbits were playing in the sandbox one rabbit was digging out some sand the other one was making a sandcastle,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +the rabbit poured the sand in the bucket on the sandcastle the rabbit got conf the rabbit poured on the sand and i can not make this one um uh just tell me what is happening the rabbit is like scared because then the other rabbit might get mad at him the dog or rabbit started to cry and the rabbit just stood there one day two friends met to go to a picnic one friend kept on eating and eating and got and keep kept on eating and eating and got really full by the time he finished he was really stuffed,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 +the other friend just drank some juice and some bread w when the other friend found the doctor who was in the park h he went to get him to see if there was anything wrong with her friend she begged the doctor to come so she did so the doctor came the doctor checked the rabbit and it seemed that he had a stomachache the doctor told the rabbit to not eat too much junk food so the rabbit did not get much of a stomachache one day a the rabbit met his friend the dog which had a wagon and a balloon the rabbit liked the balloon,0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +so he pointed to it the rabbit untied the balloon and the dog just stood there with surprise so and then the balloon flew away the dog got mad at the rabbit then the two s saw a man holding a bunch of balloons the rabbit asked for another balloon the man told him it was five cents but the rabbit did not have any money then the other friend came,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +the rabbit went to see his mom and s and the his friend watched him as he walked to his mom he told his mom he wanted a balloon the man gave two balloons to the to the two friends and the mom paid the money they the two friends thanked their the mom um let us play boys the ball went in the water i got to swim and get it i got another ball to swim with it,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 1 1 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and i am playing with it aaah i am all wet the end let us swim i am jumping in the water let us run ow are you okay and it hurts i need a bandaid,0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 1 0 0 1 1 0 0 1 0 0 1 0 0 0 1,0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 1 0 0 1 0 0 1 0 0 0 1 +it is still hurting i got to go to the doctor the end pigs do like this let us swim i am crying i found a airplane give me that airplane my airplane oh do not be angry at me,0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 1 0 1 0 0 0 0 0 0 1 +let us get it oh we got it i got it in right he getting out of the water no okay let us catch it i got it thank you my favourite airplane the end,0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 0 0 1 0 1 0 0 1 0 1,0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 1 1 0 0 0 1 0 0 1 0 1 0 0 1 0 1 +um you play in the sandpack you dig a you put the sand in the bucket and you dump it on the castle and then then um then then the castle broke and then the cried the end he is walking and then he says hi he eats his sandwich with a carrot and he drinks his juice,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 +and he cries um i am thirsty you stole it i said it you stole it i do not know that page should we try the next page he cries goodbye the end,0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 1 1 0 1,0 0 1 1 0 0 1 0 0 1 0 1 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 1 +um here is a balloon um i am running around my balloons do not take it off ah the balloon it is flying aw the balloon is broken there is a lots balloons lots of balloons i want a balloon i only have one oh there is a lot of balloons,0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,1 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 1 1 0 1 0 0 1 1 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 0 0 0 0 0 1 +ah i want some balloons where can we put the balloon but our balloon is broken let us have another balloon and we got two let us have it we got two that kind the dog the giraffe and the elephant,1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 +the elephant was playing basketball with the giraffe and then the do elephant throw the basketball in the water the giraffe tried to save the balloon ball and the giraffe said here you go here is the balloon ball and now the elephants have the ball a giraffe and a elephant was going swimming and the elephant said i am going on the diving board and then the elephant hurts her foot and she slipped,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and she break her foot and and then the giraffe came to save her and then the swimming teacher came and then the s s the swimming teacher give her a bandaid and the swimming teacher gave her a bandaid and then and then the elephant said thank you for the bandaid and the teacher said no running said oopsie the giraffe is playing wi with his helicopter eh eh and the elephant wa want to play with with it too,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 1 +and the giraffe played with his helicopter and then the elephant take it away from him and then the elephant drop it in the water and the elephant was mad the giraffe was mad and the swimming teacher was to to look at the helicopter and then and then this the the elephant said that the airplane is in the water and then the swimming teacher is trying to save the airplane in the water and the the the swimming teacher said i can not catch the airplane and then the an and then the giraffe was crying and then a a swimming eh elephant was came to to rescue the airplane,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 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 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 1 +and then and then she saved the airplane and she said here you go giraffe here is the airplane and and then the the giraffe was happy the bo the dog and and the and the bunny want to build a castle first the rabbit takes the sand in the bucket then and then the rabbit taked the sand the castle and the dog is s scared and then the ra the rabbit is scared be because the rabbit break the castle and then the dog tried to fix fix the castle,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 +the rabbit and the dog went f for a picnic and then the rabbit i is eating his her lunch and the dog is is is eating his lunch and and because the rabbit have too much lunch now rabbit have a tummyache but the dog do not and the dog only ha only have some lunch and the dog says huh the rabbit is have a tummyache and now because the dog did not eat too much only the rabbit did and the dog said mama,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 1 1 +and mommy but the rabbits mommy and he said this hey mommy here is a dog he said huh that is not my children and she said she said i do not know rabbit i am a doctor and now the rabbit has gone and the rabbit go home except the dog the dog has a a dragon,0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 +and the balloon is hold up the dragon and then the rabbit came with him and then and then the rabbit found the balloon and then the rabbit going to take it off and and and the rabbit take it off and and it float up to the sky and the rabbit and the dog try to catch it and now the dog is mad and it and the rabbit was scared and then and then the rabbit and the dog bought some more balloons,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the rabbit said how much that cost it cost five cents but the rabbit had no money and the rabbit and the dog said no money aw x a balloon then they said mommy come here can you buy us a balloon and sh and the mommy said which balloons the balloons,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 +and then the mom buy the balloons called a nickel and then then they had the balloons then the the the cat and the the bunny and the dog is happy one day a giraffe meets an elephant playing with a ball then the ball fell into a little pool the giraffe goes into the pool to go swim to the ball to get it the giraffe got the ball and gave it to the elephant the elephant is so happy to have the ball back the giraffe gets up on shore,0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +one day an elephant and a giraffe fou found a pool the elephant decided to go down the ladder it walks but it runs but it f was tripping it hurts its knee the giraffe comes running an elephant lifeguard came to the elephant and the giraffe it helped the elephant it gave the elephant a bandage and let it sit on a bench the elephant lifeguard told the elephant no running,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 1 +one day the elephant and the giraffe saw a pool then the giraffe saw an airplane zooming by the elephant grabs the airplane from the giraffe then the airplane sinks in the pool the giraffe is mad at the elephant the elephant lifeguard comes the elephant told the lifeguard what happened the lifeguard tries to get the airplane he can not get it the giraffe is crying,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1,0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 +and the elephant is sorry then another elephant came along with a fishing net she scoops the airplane out with the fishing net she gives the airplane to the giraffe the giraffe and the elephant is happy once there was a rabbit and it meets a little animal they both try to make a sandcastle together the rabbit pours sand on the sandcastle the sandcastle goes down,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 +the rabbit feels sorry for the other animal once there was a rabbit and it meets an animal and they both want to go on a picnic they together have a picnic at the same place the rabbit eats a lot of things and he is stuffed then he feels dizzy and sleepy the other animal tells the rabbits mom it tells her to come to the rabbit,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 +the other rabbit wakes up the little rabbit and they go home one day the rabbit saw an animal pulling its wagon with a balloon the rabbit s is watching the balloon the rabbit tries to untie the balloon off the wagon but it after it goes uh up in the air the other animal is mad at the rabbit then there is someone that is selling balloons and the rabbit is asking for some balloons he is looking in his pocket for money,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +but he does not have enough money so i and he sees his mom so he goes over to his mom he asks for some money to buy the balloons the mom gaves the man some money to buy two balloons they have two now the rabbit and the other ha animal has two balloons one one day um a little giraffe and um elephant they were playing with three balls and they were g they were going to go in the swimming pool so they got to the swimming pool with tickets and then they sawl a ba they saw their ball in the swimming pool,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 1 0 0 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 1 +so they got it and then the gira the giraffe tried to come and get the balloon um balloon that they had so they he got it and then they then they got their ball and their balloon and then they went and played with them and so the elephant said thank you and then the giraffe said you are welcome and they played together with their um with their balloon one day um they the giraffe and elephant wanted to go swimming and then the giraffe ran,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 1 +and he and he ran in the swimming pool with her bathing suit on and then she then she hurt herself on the knee is that on this picture um uh yeah can you just tell me the story that is on the picture and you tell me to turn if i am not turning it fast enough and then she slipped because there was water when she was running and then and then she hurt herself so the lifeguard came and got her a bandage for her knee and then they so then they um went to swim again,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 +and she was all better so but first she had to sit on the bench a little bit and then she was okay and the lifeguard said no run can not you see the sign there is no running here the end one day there is a one day there was a giraffe and a um elephant the giraffe had a airplane and he was playing with it and then he al and then the elephant wanted to play with it,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +so he na so um he did but then she took it away from the giraffe and then she dropped it in the water is that on this page or was that on the next page it was on that page oh okay so then it sank in and then the life then the lifeguard got mad so then the giraffe tell me should i be turning yet,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +then the giraffe got mad at the elephant and she said she was sorry so she got her mom to catch the lifeguard is that what is on this page so the lifeguard could not reach it so she got her mom to reach it with a net and then the lifeguard she he came back to say sorry to the elephant because he he got mad at the elephant and then her mom catched it with um the thing and then the lifeguard he tried to get it again but her mom could not,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and the lifeguard could not so she got a big big net and she catched it is that on this page yeah remember i can not see so i just want you to tell the story that is on the page and then all the lifeguards and then the mom had a real long net so she grabbed it and she catched it and the giraffe said thank you,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 +and then she said you are welcome and then the they were both happy again and they played with it the end one day a lit a bunny rabbit went to the beach and she saw a p and he saw a puppy and she was making a sandcastle and then the bunny said can i help and the puppy said okay then they build a sandcastle,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 1 +and the bunny got a bucket and she and then he got a shovel and he put it and he put sand in the bucket to make a sandcastle and the and the puppy was making the sss um a water hole and then the and then the rabbit wrecked it because he put all of all of sand on it and it pushed it down and the w puppy was very sad and then the and the puppy tried to build it again but it did not work and the rabbit was just he did not say sorry or anything,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +one day the puppy and the rabbit came for a picnic in a forest and then uh the rabbit ate too much and he got sick and was too full so the so the puppy dog went to get some help and then she but she did not find anyone yet until he s until she saw that the rabbit was sick and and then she got a nur she got a doctor that was walking by and then she took the rabbit and and took the stomach away ache and then the bunny and the r um bunny was still sick so the puppy he um she pulled on the doctor and then the doctor went on the picnic thing,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and the s and he was really sick so the puppy went away because the doctor said he needs to be alone for a while and the end oh just a second i missed one did not i yeah and the it was after he needs to be alone for a while and then and then um the puppy came back and he was all better but he had to go lie in bed one day the bunny went he he one day the bunny went to the forest,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 1 0 1 0 0 0 0 0 1 +and he and on the way there he saw a puppy and then they and then they saw a clown with balloons and so they asked bunnys mom if they could have some money for a balloon and she said yes so then they got a balloon and then they then their balloon uh there was a balloon tied onto puppys wagon and it fell away it flew away so then um tell me when to turn and then it and then it went and it disappeared up in the air,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and puppy was mad at at bunny and then and then they saw a clown a bunny with balloons a clown bunny with balloons so they asked bunny so they asked bunnys mom if they could have some money and then they bought a balloon with their money and puppy was very happy and they both got two balloons and then puppy ran over there to get a balloon but bunny had no money so she had to go to um the mom to get his money and then after that they got some money,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 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 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and they gave it to the clown bunny and then they got two balloons one yellow and one red and then but first they had to get the money from the doctor that fixed that helped bunny and then so they got two balloons ye yellow and blue and then they got one for the doctor red and then i do not know you are not sure on this one nothing to say on this one okay we will just turn then and then they bought the balloons,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 +and then they and then they got two balloons and then they were happy and they played with them and then they played with them and played the end once there was a giraffe who was standing by a pool and a elephant said came with a swimsuit on and said you want to play fetch but they were not so sure about playing near the pool just then when the elephant blew it with her trunk it fell in the pool the giraffe jumped in and swam to get the balloon the ball,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 +the giraffe came back with it in a minute and said and the gira and the elephant said oh you you got my balloon ball thank you sometimes i get mixed up with the words the giraffe felt pleased that he that he got the ball for the for her friend but the elephant just sta just stood there and smiled the end the giraffe and the elephant went to the pool because it was a hot summer day they were they looked at the pool and they were excited,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 +but the elephant said hey i am going to go off the diving board but she did not read the sign which said no running so she ran anyway just then the el the giraffe was catching up with her when she slipped and fell on her knee she got a cut on her knee and the giraffe went to get someone a lifeguard came as quickly as possible and helped the elephant the elephant thought it was going to sting but it did not they they put on the bandage,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 +and it was and it looked good as new the lifeguard was disappointed and the girl stood sat on the bench and said hi and the lifeguard was pointing at the no running sign the end the giraffe and the elephant went to play by the pool and the giraffe got a new toy plane and said you want to play with me the elephant said sure the giraffe flew the plane first but the elephant was so excited she just grabbed it out of her hands,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 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 1 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +the giraffe said my plane give it back i was not done my turn but the elephant did not care she was just flying it around just then she flew it too high and it fell in the pool and it started to sink the giraffe was mad at the elephant but the elephant just stood there puzzled the lifeguard came right by the two girls,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 +and one of the girls said one of the elephants said i can explain i i did not do it it was the giraffe just then g g the giraffe said she is lying it was her then it came like it was a big argument so the lifeguard said cool it who dropped it in the pool and the giraffe was pointing at the elephant the lifeguard tried to get catch it,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1 1 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +but it was floating in the pool the giraffe started to cry when the lifeguard said he could not reach it and the elephant felt sorry just then a lady elephant came with a net she quickly got the plane with the net and it came and she pulled it f to her she said here you go is this your airplane and the giraffe said yes thank you very much the giraffe hugged her plane,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 1 0 1 0 1 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 1 +but the elephant was happy the end one day at the park there was a baby dog who was making a sandcastle just then a bunny came along and said can i help you the dog said sure they wanted to help build a the biggest sandcastle in the world so the rabbit was going to build it so he got some sand in a pail and started digging just then he decided that a shovel was not so slow after all so he decided to dump it on the castle,0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 +so he did but when he realized he had wrecked it he was so embarrassed the dog started to cry and rebuild the sandcastle but the rabbit just stood there and looked like he did nothing the end there there once was a dog who was going on a picnic in the park and then he saw a rabbit so he they decided to go together when the om when they unpacked the lunch the rabbit was so hungry s the rabbit was so hungry,0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 +but the dog was not so the rabbit ate all the stuff when the dog was eating the bunny had already finished the bunny had a terrible stomachache while the dog was eating the dog just stood there puzzled and said are you okay and the rabbit said no i feel like i am going to hurl just then the dog ran to the doc doctor who was standing right by the path she said excuse me could you help my friend here he has a stomachache so but the doctor said no,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 +she had a patient who was waiting for her but the dog really needed her so she took the doctor and dragged them to the picnic the doctor said i will take your temperature now and you will feel much better just then the bunny f got up and he felt queasy then the doctor and the bunny went home they walked together back home the end,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1,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 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 1 0 1 +there once was a dog who was pulling a wagon with a balloon tied to it then he saw the bunny then they wanted to play with the balloon the bunny wanted to touch the balloon because he thought it was cool but the dog did not really want him to so the rabbit just then the rabbit did not care about what the dog said so the rabbit untied the balloon and the dog was ss was a lit was beginning to get a little fed up just then the balloon floated away and they were trying to catch it,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +but they were too short the dog was so angry at the rabbit the rabbit just stared at the balloon and he felt like he was getting a little scared because the dog was mad just then they saw a balloon seller who had tons of balloons and he just stood there so the dog and the rabbit decided to go buy a new one the rabbit said may i have a balloon please for my friend over there the man said sure but you will have to pay for that for the balloon the rabbit looked through his pockets,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 +just then it said a sign said balloons five cents and he did not have five cents he and the ra the rabbit and the dog looked at the balloon seller they told him that they did not have five cents just then the bunny went to the went to a lady who was standing nearby and he said excuse me do you have five cents because i need to buy a balloon for a friend the rabbit looked puzzled the lady rabbit gave five cents for two balloons and the bunny and the dog were jumping up and down in excitement then they both got balloons,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and they hugged and they loved them real much the end this is this story is called the ball one day this little girl was playing with a ball and a lifeguard was playing with it too and so when she was playing with the ball she accidentally dropped it in the pool and then the lifeguard went in the water and swam and got the balloon and got the ball and when he did she was so happy and then she um she asked him if he wants to play with her again the end,0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 +this story is called the scratch one day a little girl was going swimming and she was running to the board and when she did she slipped and she and when she slipped she got a cut on her knee and then the lifegua and then another lifeguard came running and said are you okay and then he put a bandaid on and then he put him on put her on the bench and she would not be able she was not able to swim but then the lifeguard was really mad because he she should have seen the the sign no running,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 1 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 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 +the end this story is called the airplane one day this little boy and this little girl were playing with an air airplane the girl asked can i play with it now and he said okay and then it and then she accidentally dropped it in the water when she did the little boy got all mad and then she went up to the lifeguard and asked the lifeguard if he could get the airplane and when he said okay i will try he tried but he could not reach it,0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then he and then the little boy was crying but then the girl lifeguard came and she got a net then she tried to get it and she did and then the little boy was so happy and then the little girl said i am sorry for for wrecking your toy the end this story is called um the castle that breaks one day there is there is a little girl and a little boy who is playing in the sand,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the little girl builded a castle and the little boy dumped a bucket he did not mean to dump the bucket oh on the castle and then when he did the girl got all mad sad and she was crying and the bunny said sorry this story is called the picnic one day a little a doggy and a dog and a rabbit was eating was having a picnic and the rabbit ate too much so he got sick,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 1 0 0 0 0 0 1 0 1 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 1 +and then the poochy ran over to a doctor near by the pooch said help help a little boy is sick so the doctor checked the boy and said he was si he had to go home and then he felt better this story is called the puppy who had two balloons one day a pup his uh somebodys friend came over to check his balloon out and when he did he tied the rope off the the wagon and when he did the ba balloon got away and then the puppy is all mad,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and then the rabbit saw some more balloons and he asked some for a balloon but the guy said balloons are five cents and the bunny did not have any money so so the bunny said um well i accidentally lost one that my friends balloon and so he and then the balloon man said no you still need to pay five cents so then the bunny went over to an adult to ask for five cents and when he did ask she said okay and then she paid him five cents and then the boy the girl got his her balloon a another balloon back,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 +and then she was all happy the end once upon a time there was a giraffe and a elephant playing around the pool and one of they were playing with a ball and it f it fell in the water and the giraffe swam to the balloon the ball and then he swam back to the elephant and gave it back to her and she was very happy that he got it for the elephant the end once upon a time there was a giraffe and a elephant around the pool,0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the elephant wanted to jump off the j the the tr um the um wanted to jump in the pool and sh when she was running to it she slipped and she fell she got a scra a scratch on her knee and the giraffe ran to the lifeguard and he got a bandaid and they they he put it on her knee and and he sent her to the the bench and and he show her no running sign the end,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 +one there was two friends an elephant and a giraffe the giraffe had a toy that it was a airplane he was playing around with it and a elephant wanted to play with it too and elephant took it from the giraffe and p played around with it and she dropped it into the pool and she she was very sad and the giraffe was very angry at her the lifeguard ran uh came to the elephant and the giraffe and the the el the lifeguard the elephant said that i by accident i threw the giraffes airplane inside the water,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and the lifeguard was trying to get it but it was too far and he said i can not do anything and the giraffe started to cry a net catcher came to the hopeless giraffe and she had a net in her hand and she got the airplane by her net and the giraffe stopped crying and the lady gave it to the giraffe and he is very he was very happy,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 1 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 0 0 1 0 0 0 1 +the end once upon a time there was a little dog that made a castle and a a rabbit he came a along and wanted to help him and then he he dump he dumped some sand inside a bucket and the and he scooped some up and then he dumped it on there on the castle and then and it got covered and and then it really did not do it was was a cloud of sand and the dog was building it again the end,0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1,0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 +there was two friends that were walking along for a picnic and the ra the fr one of the friends had a lot of f food than the other friend and then he ate all of it and and he got really stuffed and then he he was very sick and his stomach was really hurting and one of the friends called the doctor and the dog called her the the doctor to help and the doctor said do not eat a lot of food and he went home,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and he had some rest the end once upon a time there was a two friends walking along with their wagon and one of the friends said this is a nice wagon and a nice balloon you have on it he tied it off and he and he wanted to hold it and then the balloon fell flew away and then they were re one of the friends balloon was very disappointed and one of the friends saw a a man selling balloons so he ran over there,0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he he got one from the man can i have one of those balloons he said but it was actually five cents to buy the one of the balloons it w he was really sad that he lost one of the friend his friend balloon he asked a person by if sh they had five cents and he he pointed to the balloons and he said there is only balloons for five cents and i have no money and she she bought two for each of the the friends and they said thank you thank you for the balloons,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 +the end there is an elephant and a giraffe bouncing a ball having fun with the ball and the ball goes into the water gets bounced into the water the giraffe goes to get it he is really wet he gives it to the elephant and the elephant the elephant is holding it and the giraffe is smiling quite a lot the giraffe and the elephant are looking to the water and the gira the elephant sees a diving board,0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 +the elephant is running and slips on the pavement on the deck and scrapes her knee the giraffe came over and the lifeguard came over and looked at it and bandaged it up and the elephant sat on a bench and the the lifeguard pointed at the no running sign the giraffe and the elephant are playing with a airplane toy airplane the giraffe is making it go really high the elephant grabs it away and starts playing with it it goes in the water the giraffe is really mad at the elephant,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 +and the lifeguard sees the toy in the water and looks mad and the lifeguard and the el other elephant are talking and the lifeguard tries to reach the airplane but he can not the lifeguard is kind of shrugging his shoulders thinking what can i do and then another person comes with a net and gets it out for them and the giraffe is really really happy and the giraffe is hugging his toy the bunny and something else are playing i think it is a dog that are playing with sand,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and the bunny put is getting some sand out of a pail he dumps sand on a sandcastle then the sandcastle is all wrecked the bunny feels really bad and i think it is the dog that is crying the bunny and the dog i think are going for a picnic the dog and the the bunny is eating too much he has maybe twenty things he is eating lots and the bunny is really full,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and the dog is just eating his sandwich and drinking juice box and the bunny is feeling dizzy and the dog thinks oh i should go get some help so he runs to a doctor walking down the road and pulls the doctor over to her friend and the doctor checks her friend out and takes her the dogs friend home the rabbit there is the dog and the bunny the bunny is coming down the road jogging he and the dog has a wagon with a balloon tied to it the bunny grabs the balloon and the dog is kind of fine with it,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the dog kind of freaks out starts freaking out and the bunny and the dog tried to grab it but they can not because it is floating up into the air and the dog is really mad at the bunny then the do the bunny goes to the balloon man he asks for a balloon he says five cents for a balloon and the bunny has no money so the the little bunny looks at the balloon man very innocently and then goes to his the doctor his dad and i just see him going to his dad or the doctor,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 diff --git a/benchmark_result/segmentation/SaT_cunit_3l_results.csv b/benchmark_result/segmentation/SaT_cunit_3l_results.csv new file mode 100644 index 0000000000000000000000000000000000000000..e57efa479ac587f2863eb60593423b53589de174 --- /dev/null +++ b/benchmark_result/segmentation/SaT_cunit_3l_results.csv @@ -0,0 +1,624 @@ +word_sequence,gt_label_sequence,predict_label_sequence +once a horse met elephant and then they saw a ball in a pool and then the horse tried to swim and get the ball and the then the elephant gave him the ball and then the horse was wet and the elephant was holding the ball the end they might be the same oh well you start it off any way you want okay,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 1 1 +once a horse and this this was a horse and saw saw that that i just talked about but the ball was not in there okay and then the elephant wanted to go in i mean not and then he his feet went like this then he hurt his knee cap and then the horse helped him then there was another elephant and he was a lifeguard and then i do not know what they did,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +but they are doing something what do you think they are doing well how you look at the picture cause i do not know oh it does not matter what do you think is happening i think they are battling okay and then they sat on the bench and then the lifeguard was mad okay,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 1,0 0 0 0 1 0 0 0 1 0 0 1 1 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 +and are you pointing at something i am i am just i am just x okay are you all done yes okay the end once that horse and elephant was happy near the swimming pool oh and then the horse had an airplane to play with a which had ss ah something coming down the bottom okay,1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1,0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 1 +and the elephant went like this then he tried it and the horse went like this then they put it in the water and then the elephant went like this and then the horse was mad and then the lifeguard went like this then the elephant talked to him a little bit and then the lifeguard tried to get it but he could not,0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the horse cried an and then a elephant with a net came and she caught it and then she gave it back to the horse and then the horse went like this what does that mean they love it oh good and the end once two rabbits made a sandcastle,0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 0 0 1 +and it was a great one and then one did this with a and one took some s and the other one took some sand from a a pail because they were down at the beach and then he dumped it on the castle and then it tur part of it stayed the way it was but the rest turned into just a lump and then they tried to do it but it was not very good that time the end we saw two rabbits had baskets and were in part of the forest,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,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 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 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +or we can call it the woods yeah we can then they had a picnic then one of them belly got this big how big about this big wow and then in the picture there is a twirl around on his head and then a bigger bunny came up and they run to that bunny,0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 +and then he falled asleep and then he did this why did he do that i do not know okay and then he was happy he was happy yes okay the end,0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 1 0 0 1 1 1 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 1 0 0 1 0 1 0 1 +once that little bunny was pulling a wagon and that other fat bunny came up and then he liked the balloon and then he tried to get off and then he got it off but they lost the grip and it was helium and then another man came with a bunch of balloons but x but then they he went to them and he said that it the balloons were five cents,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,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 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and he could not find five cents and then they were sad then they went back to that out by the we found that other story and he said i want one of those balloons he gave him five cents and then they gave him a balloon and they gave him to them to who to them oh,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 1 1,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 +and then they both have one the end the el the um the little elephant is playing with her bouncy ball and the gi and the giraffe comes to meet her suddenly the ball falls in a f pool beside them the the giraffe goes and swims for it and the giraffe is so kind and brings back the ball the elephant is so happy the elephant and the giraffe meet at the pool and look at the diving board the the elephant goes to run for it,0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +but there is a sign above her head that says no running she slips and falls she she scrapes her knee and and can not swim a lifeguard comes to see what happened to her knee the and he put a bandaid on it he sets her down on a bench so it will it will it will heal and the lifeguard points to the sign that says no running the ele the elephant and giraffe are swimming together the giraffe finds a plane and starts to show it to the elephant the giraffe um the elephant grabs from it from the giraffe and swims away,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 1 +suddenly she dropped it the giraffe gets very mad and can not hold in his anger the lifeg lifeguard comes and sees what has happened the elephant starts to complain that that it was not her fault and the lifeguard tries to get the plane but no one can reach it so a lady with a net comes and pulls it out she is very kind thinks everyone and the giraffe gets his plane back everyone is very happy,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 1 +um a bunny and a dog were mak were making sandcastles in the sand uh sand bin um the bu the bunny um he he got a bucket and started to build a better castle suddenly he dumped all the sand on the uh the bi the other castle and everyone was disappointed the o the dog was was so sad she started to cry the dog mee meets the bunny um for a picnic they they have a picnic together except the bunny is kind of piggish he eats all the food really fast while the other one eats very slow and politely the rabbit feels very sick after his big meal the doctor has to come and help the the s sick rabbit,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 1 0 0 1 1 +the dog pulls her her over to the um to see if he is conscious the doctor says she ha he has a fever and he ate too much soon he feels better again the the the dog is has a balloon on her wagon and the bunny comes to meet her the bunny notices the nice um shiny balloon he the bunny tries to untie the balloon but the dog um the dog gets nervous and it floats away,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 +the dog gets very very mad at the bunny but when they turn around they see another man with twenty more balloons the rabbit buys one to make um but he does not have enough money for one balloon the man tells them they could ha they could get a free one and the nurse says no actually i will buy you one and she goes and buys one this makes both the bunny and the dog very happy now they both have one balloon they going at the swimming pool,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 1 +they putting it the ball in the swimming pool and he is trying to get it he got it she is happy the end they were dr they dry themselves dry themselves and the girl is going into the swimming pool she is dancing she is crying she gots a help from her friend,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 1 +put a bandage on it now sh she can go on the swimming pool she is sitting the end she is talking the boy is playing with his airplane she grab it away from him the airplane is in the swimming pool and the boy got angry and the k the man comes by them,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +what did you say the man comes side them and the girl is talking the man was trying to get it the man can not get it woman tried to get it she gots it the boy is happy now the boy and the girl is happy now the end,0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 1 0 1 +the boy is talking to the dog and they are making a castle and the boy putting the sandcastle and the girl is so happy not the boy he is sorry for it he is what sorry and the end they are looking for easter eggs,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 1 1 +and they are eating he eat the whole thing he got hiccups there is his father and he have to help him and he gots a headache he is going and the end the boy is running and the boy is talking,0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 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 1 +and the boy is taking off the balloon the balloon is floating away and the girl went angry and there is lots of ball sh the girl is pushing the boy gots no money the man is happy the dad is here again and the man is not giving thm them balloon the man give the rat balloon rabbit a ba balloon,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 1 0 1 1 +and they can have one and the end she is playing with a ball then it drops in the water the cow s wants to get it and then the cow gives it back to the elephant and she likes it and the end um something is sinking something is sinking and the elephant is going to get it,0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 1 0 0 1 0 0 0 0 0 0 0 1 +and she trips and she falls and hurts her knee and the lifeguard comes and she gets a bandaid on it and she she sits on a bench the lifeguard tells her not to do it again elephant is excited to see what the giraffe has and then he tries to throw it up into the air and then the elephant grabs it away and then it sinks into the water,0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +then the giraffe gets mad at her and the lifeguard gets mad at the gir at the elephant and he explai he tries to explain what happened and the lifeguard um tries to get it then they can not get it and then a woman comes up with a net and she gets it out and she gives it back to the giraffe and then he hugs it the end,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +um the bunny and the baby elephant are building a sandcastle and then the bunny is filling up a pail with sand um then he is stuffing it on the sandcastle and then it is ruined then one of them is sad that is it they are going on a picnic they are the bunny is eating lots of stuff he is getting full and he has a stomachache,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then one of them sees his mom rabbits mom and he tries to get her to get to get to get rabbit and she wakes him up and they go home ah that was a good one he is taking a balloon somewhere his friend is coming up to him and he and his friend likes the balloon and then his friend tries to untwist it then it goes away,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1,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 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 +and he is sad and then she is angry with rabbit and then there is a new ba balloon sale and he wants one and he gives it to him and then he wants another one and then mother is here he comes up to her and he tells her that there is balloons and she will and she is giving him money,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then they both have one a balloon that is it the end there were two animals an elephant and a giraffe who wanted to play in a pool and the w there they were playing with a ball and it fell into the pool and they wanted to sw swim and get it and they thought it was fun one of them he fell he went into the water and tried to swim to the ball but the ball was floating away from him,0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the elephant and uh then the giraffe got the ball for the elephant and then the elephant was started playing with the ball again and they uh and they still wanted to play with it so they still played together the end there was a no running sign and they still wanted to play in the pool and th they were running away and then and then sh the giraffe started chasing the elephant and the elephant slipped,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 1 0 1 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 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and then it hurt itself and the elephant was crying and the giraffe said are you okay and then the lifeguard came and said are you all right and the elephant got a bandaid and sat on the chair and he and the lifeguard was trying the elephant was trying to get off the bandaid and the lifeguard wa said keep it on the end the giraffe and the elephant came back to the pool with the airplane the giraffe was playing with it and tried not to drop it into the pool,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the elephant was so into it he the elephant w was kept staring at it the the giraffe said hey when the elephant took the plane away and the elephant started playing with it and the elephant accidentally dropped it into the pool and the giraffe was kind of mad and then he was so mad that he growled at the elephant and the elephant was scared scared and the li and the elephant called the lifeguard to come and try to get the airplane and they looked like they tried,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and after that and af and then after that he he was trying to get the plane but he did not so the ele so the elephant did not know what to do and the giraffe was crying and the elephant decided i will have an idea and the elephant went to get a net and then he used it to get the plane and got the plane for the giraffe the end and the giraffe was really happy the end,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 1 +there was a rabbit and a dog they were making a sandcastle and then the dog and the rabbit made the sandcastle and the dog was sitting into the sandbox and said hey rabbit we made it we made it and the and the rabbit was helping the dog make it more bigger and it and he put too much on and made it fall right down on it and then it al almost then it broke and then it was totally broken at the end of it by the end the end,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 +um there once was a dog and a rabbit they wanted to go on a picnich picnic instead of making a sandcastle in the park rabbit wanted to have the most stuff so he took out h all of his stuff and started his stuff and the dog wanted to eat just this couple of stuff and the rabbit was totally full and he he was almost having a tummyache and then he fell down and he had a big tummyache and the dog ran to get his mom and to help,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the dog begged his mom to do it so the mom came and helped and he was okay the end instead of going to for a picnic and and going into the park and making a sandcastle they got a balloon and they were playing with a balloon and they tied it onto their wagon they were driving it around and the rabbit wanted to take it off and the rabbit was trying to take it off,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then he made it fly away and the rabbit did not know what to do and the dog was very mad and then they saw more balloons and wanted to get uh the dog was still mad and the rabbit was going to get another one for the dog and the balloons were five cents and he could not get it because he did not have any money and the dog was wanted to get one too and he tried to get one and the dog was waiting for the rabbit to get some money from its mom,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 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 1 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 1 +and it asked the mom if he could have some money to buy the balloon and he got five cents and got a balloon for the kids and they got to play all they want with the balloons the end there was a giraffe and and a a girl elephant they were playing ball by the street on the sidewalk by the swimming pool and then they dropped the ball into the pool they could not ge could not get it but giraffe dived in and k was was swimming but elephant was covering her eyes,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,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 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +then he got it and gave it to her she was amazed then he was soaking wet and she hugged the ball and he looked like a genius there they were again by the pool and there was a sign by uh the diving board and it said no running so they looked at the pool amazed for some reason then elephant said i want to go on the diving board,0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 1 0 0 0 0 0 0 0 1 +and she ran to it she ran to it and she slipped and giraffe did too and she scraped her knee ouch she had xs in her eyes stars in her eyes she was crying the lifeguard came and it was an elephant,0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 1 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 1 0 0 0 0 1 +no running in the f in the no running by the side of the pool he said the lifeguard and he put a bandaid on it she still had stars in her eyes and then at least giraffe did not fall and then it felt much better see no running in the pool he said the lifeguard did not you see that sign no running he was mad there was elephant with giraffe again by the pool again,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 0 1 0 1 0 1 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 1 1 +they found a plane with string at the back and she had swirls in her eyes the elephant and the giraffe was spitting out spit then she caught it he was really he was like huh splash it landed in the pool oh no they said and then giraffe was very mad it was just about to sink and elephant was going,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 1 0 0 0 1 1 0 0 0 0 1 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +then the lifeguard came again and he had his hands on his hips and and the airplane was still there but it was not sinking then it was almost going down they explained to mister elephant mister elephant you see i grabbed it and i dropped it by accident in the water when giraffe was playing with it he bendednd over and he tried to he was he was um growling,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 +he could not even get it he could not even get it and then giraffe just uh started just started to cry and then miss elephant came along she had a net and she got she had a net and she looked surprised she fished it out with the net and the and then giraffe started stopped crying the lifeguard stopped um um worrying,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 1 1 1 1 +so did the elephant and gave and then with amazement she gave it to giraffe he hugged his airplane he was happy and the elephant was happy too there is a bunny and a dog were playing in the sandbox and making a sandcastle the bu the bunny was getting the sand from the bucket and the dog was making the sandcastle but he the rabbit poured all the sand on it and the dog looked um fri um surprised,0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 1 +the sandcastle was broke the bunny had his mouth open but the dog did not the dog was crying but the bunny was just nervous here is the doggy and the rabbit again um they are going for a picnic with their basks baskets in the woods the bunny was really thirsty but the dog was not he looked at him surprised,0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 +there was a cake cheese and a basket and and the basket poured and a carrot the dog the bunny ate all his stuff there was an apple it was all done there was a cheese was all eaten the carrot was all eaten but the dog was still eating her sandwich and her juice drinking her juice then the the bunny had a tummyache but the dog was looking at the bunny surprised missus bunny came,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 1 +and wa and she was walking along and then the dog ran to her to doctor he was still ha he still had a tummyache and the dog was pulling her her sleeve and she looked surprised the doctor the doctor was said he has a tummyache from eating too much and he had to look uh with his tongue with a stick then she walked along with rabbit he and they went together and the dog was only left with the picnic,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +well the dog was going with a balloon on her um wagon wheel and the bunny ran to her it looked like he was jogging the bunny was surprised she had a balloon and there was there was the doggy she did not look so happy but then she screamed because the bunny was taking the balloon away from her and then he let go of the balloon it flew up and he they both yelled come back,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 1 0 0 1 0 1 +then the balloon drifted away the bunny had his ears down but the dog was very mean bad mean mad there was mister rabbit carrying some balloons they found him again with and a b by a bench and a garbage can the rabbit ran up to him and said may i please have a blue balloon s he said five dollars first he he pulled out his pockets but there was no money the dog was rushing to the bunny,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 1 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 +then they looked at the mister bunny with a grin h they could not buy another balloon then missus rabbit the doctor rabbit and then was standing there and then little rabbit went to go ask her something can you bo please buy us a balloon said rabbit and then she looked at him amazed because it is for five bucks only said f the mis mister bunny then she paid five bucks and they got two balloons ten bucks and they both had their balloons,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 1 0 1 1 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and they lived happily ever after first there is a lady who is bounce a ball under the giraffe it went right beside they are working at a centre she bounced it into the wall the giraffe and the elephant are looking at it the giraffe goes and swims and get the and gets the ball then the elephant takes it he then the giraffe gets out of the water first the elephant and the giraffe see the diving board then the elephant sees it,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +then she goes to go on it she went running too fast and she fell and she bruised her knee the giraffe went down and comed to see her then and then the elephant that was a lifeguard comed to see it too the eleph the the lifeguard put a bandaid on the bruise they had to sit on the bench for awhile and they talked not allowed to they talked about they are not allowed to run okay,0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 1 +now she knows it is that it because he saw the sign because he showed him the sign because he showed her the sign now no running the giraffe and the elephant got together and the giraffe got a airplane the giraffe is putting it up high and pretending it is going then the elephant takes it and she tries to do it too but the elephant throwed it in the water,0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +the giraffe gets angry then there is a lifeguard coming along the elephant is explaining what happened the lifeguard tries to get it but she can not get it so so the giraffe starts crying then comes and then comes a lady with a net then she gets it out of the water then she gives it to the giraffe now the giraffe is hugging the airplane,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 1 0 1 +first the rabbit sees the puppy playing in the sand he wants the rabbit sees the puppy playing in the sand and he wants to play they builded a sandcastle the rabbit filled up a bucket of sand the rabbit dumped it on the castle then the rabbit said oh no then the puppy was trying to get it off one time the puppy saw the rabbit coming with a basket and the girl had a basket the rabbit had piles of food,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +the lady did not she saw the rabbit eating so much the rabbit got really fat she was he was starting to feel dizzy he called the doctor and he got the lady the lady told the doctor to help him the doctor said you are eating too much food too fast so he takes the bunny the the dog sees the bunny coming along and the girl has a wagon with the balloon hooked on it,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +the bunny the bunny looks at it then the bunny takes it off then the bunny accidentally let it go and it going too high and they can not reach it the the dog is getting mad at the bunny they see another balloon holder so the bunny says can we have one of those balloons but none cash and it costs five dollars,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1,0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +uh they explained what happened to the balloon then they go running to go get somebody can you say that louder they went to go get somebody he is explaining about the balloon man and and we do not have enough money so she buyed two balloons and now they both got a balloon once upon a time they were playing basketball then then the boy came named giraffe,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 +the ball got stuck in the pond then he went back home then it fell back in the water and he gave the cow a nnn new then he went out of the water the end there was a girl named elephant and the giraffe went swim again the lake and then they just ran ahead then they jumped into the water,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and then they hurt her knee then they could not give a bandage and he just put on a bandage for her then it feel then they went swimming for a next time then he got mad the end once upon a time a a boy me met a girl and he was going to fly his airplane then he flew it and then then he let go of it,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +and then she grabbed it from him and it was hers and he throwed it in the water and then he got mad at her then he got mad and he need to do something and they could not reach it so they they got a net and it was there for a long time and he got a net,0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 1 +then he got it then he just tried to get it then he just got it then he just give it to the boy who had it and x the end he went and he met a girl going to the the playground and she made a ca sandcastle trying making one like hers,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then it broke then they got very angry but they needed to make it all over again the end there was a boy named bunnyhead then he went to to have a picnic and met another guy with a picnic basket and they had a picnic before it it it got night time then they had two boxes of sandwiches and then they got full then they went then they then they went full,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 +and they get more and more then came the mommmy then the then the doctor then they ran up to her then they bumped into her and she took a temperature and she was sick and she needed to take her to a hospital the end once upon a time there was a boy and went um uh what um giving him wagon a walk,0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 +then they then they got put it on a balloon and that was good then he tighten it on very good and he gave it to the girl then then it flew away then there was no way then he was ba angry then he met a balloon guy and he bought her one and buyed a new balloon so so they c so there could be one on the wagon then he gave us one before he flew away,0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and thank you and then it went she sawed the doctor again and a little girl can you buy us a balloon and they gave him money then then he gave them balloons then they then they both had one good the end once a elephant was walking over to a giraffe with a backpack full of three balls then the balls sank into the water and floated away,0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +they tried to catch it but they nearly fell into the water they fell into the water and tried to float he tried to float to the balloon the ball but it wa but it but the ball was too fast then the elephant caught the ball and pulled giraffe out of the water then he was soaking wet then they walked home once gira giraffe and elephant were so excited they wanted to go into the pool,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +they walked over to the stairs and then they walked over to the board and then they jumped in then elephant jumped in and then elephant slipped and slide and then he fell into the water head first he did not realize that that he had no bandaid on his owie and it hurted and hurted and hurted and hurted uh momma bear poppa bear walked over to him are you okay,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 1 1 +no replied sister bear then they were so excited they are they v poppa bear gave him poppa elephant gave sister elephant a bandaid then it felt much better now they were ready to play in the water but then suddenly the poppa bear said you stay there do not go with the giraffe once elephant and giraffe were walking to the pool again giraffe brought an airplane and then he elephant flied it but then it sank into the water,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 1 0 1 0 0 0 0 1 0 1 1 1 0 0 0 1 1 0 1 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +you said elephant you get that airplane out of the water but i can not cried elephant now it sank into the pool it sank into the pool nearly all the way poppa bear said get that airplane i can not said poppa bear said to the giraffe poppa bear tried to reach it but it was too far oh now we will never get it cried poppa bear and sister bear hold it said hold it said giraffe i got something,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1,0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 1 1 0 0 1 0 0 1 1 0 0 1 +i have an idea he he got his momma bear got the net and then he tried he got it then he tried to get it and at last he got it and then it was soaking wet that he had to waited till it was dry now it was dry and he could fly it but not into the water any more once two bunnies were playing in the sandbox one bunny build a sandcastle,0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,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 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 1 0 0 0 1 +and one digged sand to put in his bucket he poured it onto the castle and then it all broke and then it all fell and then the uh the bunny had to build it again once two bunnies were going out for a picnic ss one ate a carrot and some hot dogs then he was all full and then the second bunny drank juice and ate his sandwich and then the sandwich taste yucky,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 +and then they went home to their mom the mom said the mom said please take care of your little brother and they took care of each other then the the sister bunny and the momma baby all they walked home together once a ba a bunny was bringing uh a wagon with a balloon attached to a wheel and then the the bunny was so excited that he looked at the balloon and then he tried to put the balloon off the wheel but it was stuck and then it flew up they tried to catch it,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 1 0 0 0 0 1 +but it was floating away up into the air and then it nearly disappeared and then they got so mad they had to get a different one they had to get a new one so they walked over to mister balloon and said can i have one a new balloon the bunny asked and then he gave him the nice five balloon and then he did not gi give him them one and then all of sudden brother bear brother bunny and sister bunny saw their mom and they w then they walked over the river skated over to the river and out at the river she saw their mom,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 +and then mommy mister balloon will not give us give us a balloon and then then h then momma bunny walked over to mister balloon and said can you please give them a balloon she asked certainly replied mister balloon and then they had two balloons for themselves two friends were playing with a ball the ball went in the water the guy tried to get the ball then she uh the boy passed the the ball to the elephant and then they the boy was in love with her,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +two friends were going for a swim and the elephant wanted to dive she tripped and and hurt her knee the lifeguard came and put a bandaid on her and she was curious and the lifeguard showed her the sign of no running the giraffe brought a airplane he was playing with it and the elephant was getting bored then the elephant took it away from the giraffe and started to play with it,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +she accidentally dropped it in the water the person was very mad at her the lifeguard came and the elephant explained to the lifeguard he tried to reach it but he could not the life the the boy was crying then somebody came in with a net and reached it and got it out and passed it to the giraffe and he was happy and so was the elephant,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +one day uh a bunny went to the park with his friend she was making his sandcastle with her he dumped it all over her sandcastle and it uh and it blew up and she was crying and he did not and he did not even say anything uh two friends went for a picnic uh the one friend ate everything he was very full he got a stomachache,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1,0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 1 0 0 0 1 +the little girl ran to the nurse and pulled her over to the boy and she said merry christmas and they lived happily ever after two friends went to the park and the girl had a balloon uh the boy wanted to hold the balloon he untied it and it flew up and then the girl was very mad at him then they saw a balloon person,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and he asked if he could have a balloon of hubbadubba uh bl and the guy said balloons five cents and they were very sad then they seen a doctor and asked and the boy asked if she can buy two balloons with five cents and they got the balloons and she paid and they loved the balloons a elephant met a a giraffe and the and the elephants ball went into the water,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +then the giraffe would get it and then she w then she was happy and then hmmm she liked her and then okay um the elephant and and the the giraffe was going to run and he was going and the elephant was going to run over to the jumping thing and then she slipped and then she fell,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 1 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 1 0 0 0 1 +and then the lifeguard came and then he putted a bandaid on and then then she knowed that there was no running and then she looked at the sign and it said no running and then the end the giraffe had had a airplane and he was going to throw it and and the and the elephant wanted to try too and then he s he was tr he wanted to throw it,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +and then the elephant was going to throw it and then it sank and then then the giraffe was mad and and then the lifeguard came and then and then the lifeguard was going to get it and then he and then he was almost about to get it and then and then the giraffe was sad what happened next and then then the girl lifeguard came to get the airplane with a th a net and then she got it,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then and then she got it and then he was happy a bunny and a bunny were playing in a sandbox and then they builded a snowcastle and then the the other rabbit poured some sand in it and and one part was still fixed then what happened and then the other one was sad the end um um two rabbits had baskets,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 1 0 0 0 0 0 0 1 0 1 0 1 0 0 0 1 +and it had a picnic and then and then the other rabbit was full then he was hurt what happened he found a doctor and and he thoughted that guy was hurt and then the doctor came and then then the boy was better the end um the girl had a wagon with a balloon on it,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 1 +and the and the other rabbit was running and then the boy rabbit was going to take the balloon and then he and then he was trying to take it off then what happened then it flew up in the air and then then it popped and then he was going to the balloon man and then then the girl was sad what happened then and then then he was mad,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +um then the girl came then sh then she then then she wanted a balloon and then he asked the doctor that could could he have some of your money what happened then then then the boy and the girl was going to have a balloon and then they both had a balloon the end once an elephant and a giraffe were playing ball when suddenly the ball dropped into the sand that was water out they sunk the ball picked them out,0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1,1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +but it was just the elephant and they played ball again once an an elephant and a horse were playing in the sand suddenly it was not sand they realized they fell and sunk they came out again they got hurt because that is how it looks they had to put a bandaid on a different eleph on that elephant a doctor elephant and they sat down the doctor elephant got angry,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 1 0 0 1 +once an elephant and a giraffe w were shooting airplanes when it looked when suddenly the airplane got broken and it shooted into that water into the water oh no said the little giraffe like he yelled mister fixit came and said what is all this yelling about a a a plane got stuck in the water can you take it out of course i will and he s he got angry too did not know how,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,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 1 0 0 0 0 0 0 0 1 1 1 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 1 0 0 1 0 1 0 1 0 0 0 +so he took his net out of his truck and scooped it up and that did the job and they played airplane again and they were happy they liked the the airplane it was all fixed up once a dog and a rabbit were playing in the sand they made a sandcastle and when by the time it was finished they poured some more sand and it fell down and did,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,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 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +they built the sandcastle again it was up once a dog and a rabbit were walking down they had a picnic soon the rabbit was so tired and full that he had to go to sleep out they packed his legs got tired dog had to pull him doctor came along and fixed up the rabbit and took them home once a a dog and a rabbit were waiting down with a balloon when the balloon popped,0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 +on that hot day they all sat up went the balloon it popped out came the balloon man with lots of balloons and they gave one to each and they had lots of balloons only one popped and they liked their balloons off they went out came doctor rabbit,0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1,0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 1 1 1 +he said what are these balloons are for the balloon man gave it to us because we love balloons and ours popped away once there was uh two friends one tally and one hm snout and snout had a beautiful green ball but it fell in a pool so tally swam to get the ball and he got it back um tally was blushing his whole face went red,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 1 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 1 0 0 1 0 0 1 0 1 +this is another story about snuff snout and tally once there the pool in the last story with the beautiful green ball fell in the pool and tally got it back there was a diving board and snout said i am going to go on that diving board and i will show you a nice dive well tally said stop do not run and unfortunately snout slipped and fell and really really hurt her knee and then tally warned her because tally saw a sign that said no running snout started started to cry,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 1 0 0 1 +but the lifeguard luckily saw and came to the rescue and the lifeguard gave snout a bandaid once snout stopped crying the lifeguard gave her a sticker for being such a good help not moving her knee around and stuff and then um the lifeguard pointed to the sign that said no running and snout looked and said sorry this is a story about snout and tally and tally had this nice model airplane that he was playing with by the pool he was flying it around and snout was like ooh she really wanted to play with it,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 +so she snatched it away and then tally was like hey give it back it is mine and snout dropped it in the pool and then tally s said now look what you have done you should not grab and tally got really really really mad at snout and then the lifeguard asked what is the problem here kids and snout said well um ta tally here was playing with this model airplane and i i really wanted to play wis with it,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 1 1 0 1 1 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 1 +so i grabbed it away but i accidentally dropped it in the pool so the lifeguard had to get down and stretch out for the plane but it was too too far out the lifeguard could not get it and then the the girl luckily had a net so she dipped it in the pool and luckily or not but he was lucky she did get it out,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1,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 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 +and then snout said sorry i dropped it in the pool once there was two animals a wolf and a bunny and they were at the beach or in a sandbox and they built a big big sandcastle the wolf was working on the tower and the bunny was um collecting the sand but then the bunny poured the who the whole bucket of sand onto the sandcastle and it ruined one tower but then the sand that was on the tower started coming down and wrecking the whole sandcastle so when that was all finished the only thing left was one tower,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the wolf started to cry and the bunny feeling bad once there was two animals a ra a hare and a wolf and the wo and the bunny thought that he was so good so he could have all the food he wanted so then once once they were finished the wolf had just a sandwich and a juice and then the rabbit was feeling kind of queasy so um the the wolf told him he would walk him home but luckily a doctor was walking by so the wolf a asked the doctor if he could um help the uh wolf and then the the wolf um brang the doctor over to the bunny,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 +and the the wolf said he has fainted he needs your help so the the the hare doctor said well i will give him this medicine so she did and he woke up but still he was feeling kind of queasy and then he he just took a run around the trees that is what the the doctor told him to do and then he was feeling fine two best friends named fluffball and fluffy were once playing at the park,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 +and and the and fluffball which was hare kept going on about this balloon he got for being the best student in his class but then the the hare said i am going to take it off and show it around but the wolf said no do not it what if you let it go it will fly up into the air but the hare did not listen so um the balloon he accidentally let it go and it went up into the air the the um the wolf got so mad at him that he he he he said i am not your friend any more but then the hare saw some some balloons,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +so he went over to the balloon guy said i want um that red one right there but it was five cents but he did not have any money so the guy that was selling the balloons said sorry but you can not have this nice red balloon and then um doctor fluffball which was fluffballs mom um asked him um fluffball asked his mom if he could have five cents because the the red balloon was five cents so doctor fluffball gave the man five cents and he got two balloons for both of them and that was that they both got a blue and red balloon playing baseball,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 1 1 0 0 1 1 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 +bouncing the three balls in the fall looking at a ball in the fall laying down in the fall trying to get the ball try give someone the ball in the water in the spring playing running around in the spring looking in the water in the f summer lookin running through the water in the summer running in the in the summer on the sidewalk getting hurt on the sidewalk in the summer get hurt in the summer crying,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 1 +playing in the summer sitting down on the bench in the summer sitting down on the bench in the summer get someone getting mad being happy in the fall playing in the fall with a little toy airplane playing with a little toy in the fall put his airplane in the water in the fall put the water in the in the water in fall put the water in fall,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +put the water in fall and they happy try and get it in the water in the fall sad it in the water in the fall getting a net to try to get in the water in the fall try to get it in the fall then kind of got it giving the airplane to somebody in the f fall givin holding the airplane in the fall the end,0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 1 +playing playing in the sand making a sandcastle with sand playing with sand with sand playing with sand with sand playing with sand with sand uh bringing food somewhere having a picnic somewhere laying down and eating somewhere la laying down and eating somewhere,1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +playing somewhere pulling somewhere playing somewhere playing somewhere bringing a cart on the sidewalk in the spring taking a cart somewhere in the spring taking a cart somewhere in the spring trying to get the balloon no handling and they would all go somewhere in the spring,0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1,0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +looking up s in the sidewalk in the spring saying could i have a balloon in the spring seeing what ss getting a balloon in the spring looking at a balloon ss looking they were at a tr at a balloon in the spring but they were all gone walking in the spring um looking at the balloons pulling someone to that balloons in the spring,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 1 0 0 0 1 0 0 0 1 +uh getting a balloon in the spring walking once upon a time the elephant had a ball and the giraffe liked it and he decided to play with it by the pool and then he made a mistake and it falled in the water and and and the elephant thought that he could not get it but he he just tried and tried and he got it,0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he gave it back to the elephant so the elephant was very happy the end once upon a time there is a elephant and a giraffe by the diving pool and the elephant ran and slipped i think i think that is next page and he slipped and got hurt so the giraffe came running and then one of the elephants came to help with a bandage and the band and he put the bandage on,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he hurt and hurt and she had to keep her leg out like straight in front so so it would not hurt when she walks but she had to sit there x what was that last bit she has to sit there at the diving pool all day until it feeled better so and then the big elephant said no running and she went that is why he got hurt and he said so she had to sit there for time out that is why,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 +once upon a time there is a elephant and a giraffe the giraffe had a airplane and they were at the diving pool the elephant played with the airplane and watched it zoom around and he did like and the elephant took it away and started playing with it and then it fell in the water and the giraffe stared at it what and the giraffe stared at it,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 1 0 0 0 0 0 0 1 +and then the giraffe was very mad at the elephant that the elephant was so scared so the beach the suh the the the lifeguard he he decided to take it out and he tried to get it because the elephant said so small elephant as tall as me and then he tried and tried and then i should not what is that last part then he tried and tried but he could not get it so he just tried still,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +so he could not get it and the zebra was sad so sad and then there is somebody that ha was even a bigger elephant and tried to get it with her net and she got it and she got it out for their giraffe and the giraffe was happy very very happy so the elephant and the giraffe became friends again there is so much ones about them at the diving pool the end once upon a time there was a little dog and a little rabbit they were playing in the sandbox,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 1 0 1 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 1 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and they builded a castle and the bunny took some sand and put it in the bucket and he started shoveling it and then the bunny poured all the sand over the sandcastle that the dog made and then the bunny said oh i am sorry i will not do that again oh the dog was very sad he cried h because the bunny was not very smart and then f and then the bunny just would not play with him and he standed still with his ears down like this,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 +the end once upon a time there was a bunny and a dog they were going to have a picnic with each other and they met each other in the woods they met a what they met a each other in the woods the bunny brought lots and lots of junk that is like all food that is bad for you junk like what like junk i call it when it is food that is bad for you i call it junk,0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 1 1 +and the bunny ate so much of his junk he got sick and he falled down and he got dizzy and then the doggy ran to the doctor bunny to help and the doggy pulled him over and then he started working on fixing him in case he was okay well then he threw a thing at his head and tried to s make him look over there and he fixed him up he had to go home so he the doctor brought him to his home,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 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 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the doggy was very happy the end once upon a time there were a dog and a bunny and they met each other in the woods and the dog had had a balloon and the bunny came running and a bunny ca took the balloon out of the the wagon and tried to untie it but the dog said no and he would not listen,0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the dog tried to catch it and the bunny tried to catch it too but they just could not catch it oh and then the bunnys dog friend got mad and made his teeth like this and made what and made ade him mad so he would be so mad that he would just be like this standing there then he went off to get a balloon from a balloon seller that sells balloons he decided to to get one,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +he decided to get one the bunny decided to get a balloon but he did not have any money for five cents well they were sad and he did not have any balloons for each other because they wanted then the bunny wanted one too so they went off to someone that had money and then the and then he and then he bought some for them and they got two the two last ones left and they were so happy and they they have been friends with each other all day the end,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 1 0 1 +the elephant and the cow umhm so you have told me what is in the picture can you tell me a story about it cow elephant cow and a elephant umhm what is happening they are trying to find each other the elephant and the cow had a accident with the ball and the eleph the cow got in there the cow got what he got in there he got in there and the elephant got it,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the cow is still in there and the cow and the the cow is dripping and she has the ball there is a slide cow and a elephant a cow and a elephant and a slide and a pool and the elephant is running and slipping and the sand and the cow and she got hurt she got hurt on her knee and it hurted and she can not go in the pool,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and she hurt herself uh the bo the cow and the elephant the cow the elephant has a ribbon and a dress and the cow gots a airplane and and uh she got it and it got in the water and the cow was mad and she is mad too both of them are all mad and the elephant is getting it,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 1 0 1 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 +he tried and tried to get it she gots a net to catch it and she is going to get it with the net and they got it back and they are happy the rabbit and the d the d he she made a a sandcastle and the rabbit gots a shovel and the rabbit wants to play and the s and he s g something is going to happen to the sandcastle and it brokeded,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 1 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 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and then the she is crying they got picnic baskets and they are having lunch and they are havi and the rabbit is full and the rabbit is what full and they are and and the she is hungry and the de and she goes to another lady and sh she she is going to say hi and there is the rabbits mom,0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 1 +the there is a balloon and a wagon and she is carrying and the rabbit is not the rabbit is what he is not carrying and the girl is just carrying it what did you say the rabbit was carrying nothing and there the balloon is going to be poppeded and the rab the rabbit is going to take it off and it is going away,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and it got away and they were go and get another one from the man can you take your fingers out of your mouth then i can hear your words better they are picking one and they are going to give one and they are gon to go the man said no and and there is there is the bunnys mom and he is the b the rabbit said he will not give me a balloon and now it he is getting one and he got both balloons,0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 +once upon a time and he is looking apples and the apples fall into a pool and uh a buddy a a guy f is catching it and he get it and he put it back and he be happy the end once upon a time are walking in a pool and he is looking backwards,0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and a girl walking and a and he stopped and he be worried and he be scared and he sit on a bench and he sit on a bench the end once upon a time out walking and he is flying a plane and he and he is playing a plane,0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then he dropped it gone is sinking and sinking and sinking and sinking and sinking and sinking and sinking and he catch it and he put it right back on his hands,0 0 0 1 0 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he be happy the end you can start once upon a time once upon a time what do you see use words so i can hear you so my tape recorder can hear you hm what has happened them building and he throwing sand,0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 1 0 0 0 1,0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 0 0 1 0 0 0 1 1 0 0 0 1 1 0 0 1 1 +and messed all d up and he be sad how does it start once upon a time try again hm and he is eating and he is tired and he is going sleep and he is running and he is holding his dress,0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and he fall down and he walks the end once upon a time a tree and he catching a balloon and it pops and wants the balloons and she wants the balloons again and they popped,0 0 0 1 0 0 1 0 1 0 0 0 1 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 1,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 1 +and they popped again and he is looking and he get and he be happy and he be happy again the end there is an elephant and a giraffe that but the elephant is bouncing a ball so fast that the giraffe wants to try and the elephant um and well the elephant and the giraffe but the giraffe is trying to get the ball in the water so he swam,0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and and the elephant was covering eyes his eyes and um the elephant was covering his eyes and his trunk was full of stuff and then h he was happy and then the giraffe was happy then the elephant started to grab it from the the giraffes hands and he said thank you and the um elephant had the ball and the giraffe was soaked so the giraffe asked him if he could bounce it but he said but the elephant laughed,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 +and he said no there is the giraffe and the elephant and the giraffe has a kleenex and they were going to go in the water and um the elephant was going to go in the water but the giraffe pushed the elephant and so the elephant fell in the water and the elephant slipped when when the giraffe was running after him so he would not slip but then the elephant he got hurt and the giraffe the elephant got hurt because um he slipped,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 +and the giraffe was running to see what was ran what was wrong and the elephant was crying and the coach came to see and the giraffe was just looking at the elephant and then the then the coach started to put a bandaid and the elephant was covering ey his eyes and um doing kind of a mad face and the giraffe was just looking but then the coach sat the elephant down on a bench and the uh um giraffe was just um holding his hands like this and the coach was pointing his finger,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and he is and the elephant was holding his hands right between his legs and then he and then the elephant um had a kind of a mad face again the giraffe and the elephant and the elephant was the giraffe was holding the airplane toy airplane and then the and the elephant wanted to play with him but the but he was still playing with it but the giraffe was still playing with it and he was making the elephant not catch it but the elephant finally caught it and then he started playing with it and the giraffe was starting to get mad,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +but the po but the toy plane went in the water so the two guy but the giraffe and the elephant um put their mouth like this but then the giraffe was really mad and the elephant was still ga still looking at the airplane and the coach came and the and he he was looking at the giraffe so um the elephant was telling him what happened and then the um the plane started to sink even more and the the elephant but the elep the coach went over to the elephant and the giraffe was um looking at the the two elephants,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the elephant was screaming his head off and he was telling the coach what happened but the coach had to grab it before it sank all to the bottom but he could not reach it and the giraffe was starting to cry but this other elephant came with a net and tried to get it and the um plane was started to sinking more but he still could not reach it but he finally got it and he gave it back to the giraffe,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +now the now the giraffe and the elephant were happily were happy there is a bunny rabbit and a dog making a sandcastle there is the bunny and the dog that um are um well the bunny rabbit is digging the sand up and the dog is um making the sandcastle smoother and the bunny rabbit was pouring sand all over the sandcastle so the dog was um starting to s um uh get sad but the but half of the sandcastle was left then the dog is was starting to cry and he was starting to make it all over again there is a bunny rabbit and a dog that are going to have lunch together,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 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 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +there is a bunny and a dog that are having lunch there is the bunny and the dog but the bunny but but the bu dog is eating and the bunny is and the bunny is chew and the bunny is sick the bunny um is does not feel good and the dog does feel good there is a bunny and a dog but the bu bunny is a mess and the bunny is going to well the dog is going to tell the other bunny that um he has to fix him but he pulled him because he will not,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he made him worse and then the bunny felt good and the dog was just by the sandbox there is a bunny and a dog and but the dog s has a balloon on his wagon and he is pulling the wagon and the bunny rabbit seen the balloon and he he was going to not try to take the balloon off but the dog did not want him to and the balloon fl flew away,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 1 0 0 1 +and both of them were trying to catch it the bunny rabbit the dog but the dog was rea really mad at him the rabbit was there is a big rabbit that had a lot of balloons and the bunny rabbit but and the dog but the dog was still mad and the w bunny rabbit went to get another one and he asked the man that has all the balloons could i have one but they were only five cents and he did not have five cents and then he said if you do not have five cents you can not um take a balloon then the dog and the bunny ra rabbit seen the doctor,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 +and the bunny rabbit ran but the dog stayed and the bunny rabbit said i want one of those balloons and he will not give me it then he um and the doctor had a lot of money so he gave him most of his money and there is only two left because the bunny rab the dog took most of them and the bunny and the wa the bunny and the wa the bunny and the dog had the two balloo the balloons and the then they went and both of them were really happy a giraffe and a a giraffe is watching a an elephant juggle a ball,0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 +and the ball gets stuck in some wa cement or a pool and the horse is swimming in to get it and he gives the elephant the balloon the ball and then he steps out and he is wet and the elephant is happy well an ele an elephant and giraffe are looking at the pool and there is and there is something behind a rock or something else and it looks like bunny ears and the elephant is talking about the bunny ears,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and they run and they run to see him and then the elephant does a stretch and and then there is a swipe and hurts her knee and then her knee and the giraffe is coming after and a lifeguard comes over to them and he is putting a bandaid on the knee and then they sit in a bench and the lifeguard is pointing to a sign that says no running there is a giraffe and a elephant by a pool,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 +and the gir giraffe has an airplane and he is flying it around in his hand and suddenly the elephant grabs the the airplane and drops it in the pool and it is sinking and the giraffe is mad at the elephant and the lifeguard is looking at them both and the airplane and the elephant is telling the lifeguard about what what happened and the lifeguard is reaching to get the airplane but he can not reach it quite reach it and the giraffe is like panting,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 1 0 0 0 0 0 1 +and the elephant is um kind kind of nervous or sad the lifeguard kind of has a smell and his ears are going up and then a an ele a girl elephant comes along with a net and she nets the airplane out and she gives it it to the giraffe and then the gir the giraffe hugs the airplane a rabbit and a mouse are playing in the sand and they are building a sandcastle with and the rabbit is filling a bucket,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and the mouse is flattening the castle and then the rabbit he pours the sand on the castle and the mouse has a kind of a whiny face because he is surprised he is doing that and he wrecks the sandcastle and then they and now they are building it again um a mouse and rabbit are going for a picnic and they are at their picnic eating the food and the rabbit is very hot because he looks hot and and the rabbit is full and the mouse is drinking juice,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 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 1 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 +and the rabbit is like really full and then there is a doctor rabbit and the mouse is running over to him and the mouse is pulling him over and he sees the rabbit and his his his stomach is really full and then he takes him off to the doctors a mouse went to a party he because it looks pretty much like there is a party balloon and the rabbit is looking at the balloon,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 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 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 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 1 +and the rabbit is trying to untie it and he unties it and accidentally lets go and the balloon is floating away and then they are in a big fit the mouse is really mad and the rabbit is like terrifyed because the balloon fel floated away and then they see a rabbit selling balloons and the rabbit is pointing to the balloon up in the sky and and the um rabbit shows him a balloon and it says balloons five cents,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 +and the rabbit is looking in his pockets for five cents and the the man the rabbit is holding the balloons and the mouse and rabbit are looking at him and then th and the mouse is stays behind aside beside the balloon man the rabbit goes to get the doctor uh rabbit again and he says there is a balloon man and we do not have any money and the um doctor and the doctor rabbit is giving the the b the balloon man some money so they can have the balloon and then they get the balloons and everybody is smiling,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 +one day some kids were at a swimming pool one of the kids had a big bouncy ball the other kid wanted to try it he accidentally dropped it into the water the other kid was scared that it would go to the bottom so the kid that dropped it went into the pool and got it the other friend said thank you and the other friend gave the other kid her ball back one day some kids went to a swimming pool one of the kids said let us jump in,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 +the kid wanted to jump in but she slipped and she fell on the ground and scraped her knee then the lifeguard came to help her he put a bandaid on they sat her down on the bench to rest for a while then the lifeguard pointed to a sign that says no running one day two kids were playing by a swimming pool one of the kids had brought an airplane to play with they were playing with it,0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the other kid snatched it from their hands and she accidentally dropped it in the water the other friend got really mad at her the airplane was sinking more into the water then the k then the kid who put it in the water by accident said to the lifeguard the airplane got dropped in the water the lifeguard tried to reach it with his hands but his arms were too short the other kid who had brought the airplane started crying then one of the people who were swimming saw the airplane and got out of the pool got a fishing net and told them that they would get the airplane for them they they reached into the water,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and sh she got the airplane caught in the net and she gave the airplane to the kid who brought it and that kid kept it and did not let other kids play with it by the pool one day two friends were in a sandbox playing together they were building a sandcastle one of the kids dumped a bucket of sand on one end of the castle and that end collapsed and the other friend started crying one day two friends were going for a picnic one of the friends ate too much,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 1 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 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 1 +when they were done they had a big tummyache and they really wanted to go home so one of the friends went to see a doctor they pulled the doctor by his sleeve to bring him over to the other friend the doctor said do not eat so much next time you have a picnic and the doctor took the other friend to his house one day in the forest two friends were walking one of the friends had a wagon with a balloon tied to it one of the friends wanted to touch it so they a so they took it off the wagon,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +pretty soon it almost touched the sky and the other friend was mad at him and the string was only left so the other friend got really really really mad at him so they both went to a balloon guy the balloon guy said do you want to buy a balloon and then he also said five cents a balloon and the rabbit reached into his pockets but they were empty so the friends just looked at him,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +then one of the friends went to a doctor and said that guy is not letting us have a balloon and then the doctor gave him five cents and they got a balloon and the then the doctor paid another five cents for the other friend and he got a balloon too and then they both played with their balloons all day elephant zebra what happens in the story ze zebra,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 1 1 0 0 0 0 1 1 1 +ball zebra and elephant ze um elephant and zebra and ball zebra and the ball an and the elephant zebra and the elephant and the ball the end um elephant and zebra elephant and zebra elephant and zebra owie and uh owie elephant has a owie,1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 1,1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 +and the zebra do not has a owie there is two elephants zebra two elephant two elephants and zebra two elephants and zebra two ele elephants st no zebra the end elephant and zebra,0 0 0 0 0 0 0 1 0 0 0 1 1 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 1 0 1 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 1 0 0 1 +uh elephant and zebra airplane uh elephant and zebra airplane elephant and zebra airplane uh it is on what is that sound what is that sound in there um elephant and zebra and airplane elephant and zebra elephant and zebra,0 0 0 1 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1,1 0 0 0 1 1 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 1 +two elephants and zebra elephant and zebra and airplane elephant and zebra elephant and zebra elephant and zebra elephant and zebra elephant and zebra elephant and zebra the end bunny,0 0 0 1 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 1 1,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 1 0 1 1 +what happens in the story um sandcastle sandcastle sandcastle and puppy and bunny sandcastle and bun uh san sandcastle and dog doggy and rabbit bunny sandcastle breaked a sandcastle breaked they are making it again the end,0 0 0 0 1 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 1 0 0 0 0 1 0 1,0 0 0 0 1 1 1 1 0 0 0 0 1 0 0 1 1 1 0 0 1 0 0 1 0 1 1 0 0 1 0 0 0 0 1 0 1 +um basket puppy and rabbit carrot i said a carrot that is it drink pa basket sandwich juice i said juice what happens in the story,0 1 0 0 1 1 0 0 0 0 0 0 1 1 0 1 1 1 0 0 1 0 0 0 0 1,0 1 0 0 1 1 0 1 0 1 0 0 1 1 1 0 0 1 0 1 1 0 0 0 0 1 +um tree tree tr tree tree tree the end uh balloon balloon balloon what happens in the story,0 1 1 0 1 1 1 0 1 0 1 1 1 0 0 0 0 1,1 1 1 1 1 0 1 0 1 1 1 1 1 0 0 0 0 1 +balloon balloon fly away balloon t popped the balloon lots of balloons lots of balloons lots of balloons five balloon lots of balloons i said lots of balloons,1 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 1 0 0 0 0 1,1 1 0 1 1 1 1 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 1 0 1 0 0 1 +lots of balloons yeah uh lots of balloons let us count the balloons in here in this picture there is nine two balloons there is two balloons none balloon one balloon two ba the end,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 1 0 1 0 1 0 0 0 1,0 0 1 1 1 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 1 1 0 1 1 1 0 1 +um the uh giraffe s comes to see uh comes on to swim in the water and then there is an elephant and then um she is bouncing a ball and he um he is asking to play with her they play volleyball and um it actually falled in the water by accident he was going to go in the sw he was going to swim to get it and then he swan swam in and then the elephant had um her hands over her eyes and he had a mad face cause he knew he could get it,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and um the he got it he gave it back to the elephant and then the elephant um was going to fall in love with the giraffe um they wanted to go for a swim and she wanted to try the diving board she did not see um no running she was gon she was running and the um ele giraffe said um you better not run it because he saw the sign but he did not tell the elephant and she did not she did not hear him,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 1 0 0 1 0 0 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and then she slipped she was running to get her then she got a big owie she was crying and then the lifeguard came over and gave her a bandage she was scared and now he said there um you have a bandaid now and he was m the lifeguard was mad don not run did not you see the sign,0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 1 0 1 0 1 0 1 +uh um the a gir the giraffe was walking and then um a elephant came and she wanted to play with his um airplane they were taking turns the um he was playing with it and um the elephant was curious that it would go in the water and then she took it away and then it landed in the water and th he was mad at her she wa she was curious what she could um do about it,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 +then the lifeguard came a and he saw that it was in the water the giraffe told him that um th the elephant was took taking it away and threw it in the water and then she said i did not do it and he did it by ac he did it on purpose and then he was the lifeguard was curious and he was trying to reach it they were both curious that he could get it and then it was starting to sink more and then a girl came with a net,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and then she scooped it out and gave it back to um the uh giraffe and then she said here have your airplane back and he said thanks for getting it and they fell in love again um a girl was building a sandcastle the um bunny wanted to play with her and he they dumped some sand she was patting it down and then he put some sand on it and um it broke,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then um he said oh no and she um said it is okay and he was she was crying she was trying to make it again um a boy and a girl was walking along and they were going for a picnic with each other he was eating a lot of his and he had a lot of junk he got so full and he was getting sick,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 1 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and he said i need a docor he doctor he he felt dizzy she was going to phone a doctor and then um she there is a doctor walking along and then um she ran up to him she said um my friend he has a stomachache he is dizzy he ate too much of junk and he said no and she said come on come on,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 1 0 0 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 1 +please help me and then she said yes and um he he said you are dizzy your temperature is five now he is okay and he went with the doctor home um she a girl was walking along and a boy was walking just for a jog and then she just walking with a balloon tied to her wagon and he wanted to play with it,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 1 0 0 0 1 1 0 1 0 0 1 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and she said no and he was tying it off the wheel and then it floated up in the air and then she was really mad at him he was scared he looked at the balloon and then they both s she was still angry at him and he saw a balloon guy and he said can i have one of those balloons and you have to pay five cents,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and they both wanted one she he was curious that um she was going to be really mad at him again and um he went to hi his mom and he was going to ask him ask her if he could have five cents and uh she said yes and she le he letted he she gave um five cents to him and they both were happy that they got a both got a balloon and they would not share theirs again and the mom wa ha was happy too um once upon a time there was a elephant,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 1 0 0 0 1 0 0 0 1 +and she was bouncing three balls and giraffe came and she try and he wanted to try and the elephant said okay and then the giraffe said i can not do it and then one ball wen then all three balls went into the water and then the elephant and the giraffe said oh no and then the giraffe went splashing in the water to get all three balls and then the elephant got one ball and then he wa happ and then she was happy,0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 +the end um once upon a time there was a little giraffe and he wanted to go swimming he was trying to go in the diving board and he was scared and then the elephant said i will try it out and then she was running and then the giraffe was slowing down and then n the the elephant stubbed her hurt her knee then the lifeguard came,0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 1 1 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 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 1 1 0 0 0 1 +and then the lifeguard put a bandaid on her knee and then she was on a bench and then he put her on a timeout that is it um once upon a time there was a little giraffe and a little elephant and and the little giraffe was going to throw his plane he thought it was going to go in the water then he tried and then he tried he did not let go,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +and then the elephant took it away and then she threw it in the water then the giraffe was mad then the lifeguard came and then he said you were on another timeout for the elephant and then the lifeguard said i do not know if you should have a timeout and then the lifeguard was going to try to reach it he did not reach it then he did not know and then the giraffe was starting to cry,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 +then this lady elephant came and she got a net and she was going to get it with the net and then the lady almost got it and then she got it and then the giraffe was happy once upon a tame time there was a little rabbit and a little dog and the little dog that was mak it was making a sandcastle and the rabbit joined in and then h the rabbit tried to do it,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +well he did not get it right and then he dumped it on top and then it did not and the dogs eyes went crazy and then the dog his mouth was he was kind of it was kind of crazy and then it was trying to make it back well it did not the end once upon a tame time there was a little rabbit and a little um dog and then they wer they were going for a picnic and the rabbit said hello,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 +would you like to join my picnic well the dog said no thank you i will enjoy my picnic and then the rabbit was eating all its stuff that it brought and then he was getting so hot that he that it was get that it was burning and then he was very fat and then he was going crazy and then he saw and then she saw then the puppy saw a doctor and then and then she was bringing the doctor to the rabbit and then sh that rabbit saw the other rabbit,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 1 0 0 1 0 0 1 0 0 0 0 1 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 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and then it took it that little rabbit to the doctors that is the end once upon a time there was a little rabbit and a little dog and then the little rabbit wanted to have the balloon and then it almost took it and then he did not notice and then he untied it and then he did not know what was there and then it and then the balloon went up up up and then that dog was mad at that rabbit,0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 +and then another rabbit came by with some more balloons and then that d um rabbit wanted a balloon and then he saw he did not have any money and then he did not get any balloons and then one rabbit then that rabbit saw a nurse doctor and then that doctor then that little rabbit said can i have some money for one of those balloons and then he got one and then he had and then they had two for each the end giraffe and elephant were in the pool,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1,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 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 +and i wonder what were were they were bouncing the ball i wonder what will happen the ball felled in the water giraffe was swimming to get it and and giraffe got it and elephant said thank you and you are my hero giraffe said oh my pleasure and and and elephant was engaged with him elephant and giraffe were by the pool,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 1 0 1 0 1 0 0 1 0 1 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +they i wonder what will happen elephant was running and and i wonder what will happen she slipped and she got a owie and she was crying and giraffe wa is going to help her and the lifeguard came and ss and gave her a bandaid she was so sad that sh he had to put a big bandaid on then the lifeguard let her sit down for awhile,0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 +the lifeguard was so mad and it said no running and ii she was so sad giraffe and elephant were at the pool giraffe had a airplane elephant took it away from him he was so upset it felled in the pool ele and giraffe got so mad that he wanted said that he wanted a new one and she took toward to the lifeguard and said can you get that,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 +and he said did you do this and he will and she will say no she wa she was crying and said that all right i did it this is the truth i throwed it in the pool the lifeguard crawl and try to get it i wonder what will happen he could not get it and giraffe started to cry and a girl lifeguard had a net,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 +and try and she got it and she did giraffe was so happy that he did not have to have a new one and then he loved it and he never ever ever let elephant played with it ever again this rabbit is going to make a sandcastle with this dog the rabbit is putting sand in the pail when the dog was making a sandcastle the rabbit poured the sand onto the sandcastle the dog was sad the dog wrought so hard,0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 +she started she was going she wa the rabbit was upset because he was going to make another one the dog was crying the rabbit was disappointed rabbit and rabbit saw the dog dog the dog waved at rabbit they were walking to a picnic the rabbit was so hungry that he had too many junks the ra the the dog had a sandwich first soon the rabbit was fat and full the dog was still hungry,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 1 1 0 0 0 0 0 1 0 0 0 0 1 +then the rabbit got dizzy the ra and the dog looked at him the dog saw his mother and he said that rabbit is hurt he does not feel well then he pu the dog pulled his his mother the rabbits mother to see him and he was very ill the r the rabbit ate too much junk and and his mother was a doctor so she took care of him,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and she took him to his house and he she said to the dog he will be okay the dog was going going for a walk with a wagon then rabbit showed up he said hi and i wonder what will happen rabbit saw the balloon and the dog said be careful the rabbit untied the balloon the the dog was disappointed,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 1 +then rabbit let go and dog and dog was worried and he wanted she wanted her balloon back and she got very mad at rabbit he al he always bugs her then the the balloon man was carrying some balloons and the dog was still mad he said that may i have a ye white one and the and the balloon man said sure when when he got to when got to his pocket and pulled down the balloon it was five cents,0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 +and he did not have no five cents and he was he was sad then the balloon man put the balloon up again and did not listen to him then the rabbit went to the doctor again she had money and he wanted five cents he asked if you can buy me a balloon two of us because i do not have no more money and she said yes and and she and he took two balloons to them and ga and one of the money they were happy,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 +and the doctor was happy too that they have balloons first they have balling bowling balls secon second they drop one third he tried to swim and got it after she got the ball after he tried to jump with the bowling ball that is a silly idea you will fall down and hurt yourself first they saw the thing and they wanted to jump,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 +and then they ran and and then she ran too fast then she fell down and hurt shes knee and she cried and the coach helped her up and put a bandage and put her on the bench after she the coach said do not run because it is wet and slippery should not run like that first they first the elephant saw the giraffes airplane and then he flied it and the the elephant want to tried it,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then she tried it and then it accidentally dropped on the water and the the giraffe was angry and then the coach the um the coach said what is happening and she said i accidentally flied it it gone on the river the coa the coach trie um s s tried to help the coach could not help this after the giraffe has tears because he wants his airplane after the the woman in the net i got um um had a net and tried and um want helped him to get it out,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the woman tried and she got it and then the giraffe was happy after he hugged his airplane they was making a ss sandcastle the um the um the dog and then the rabbit came and helped it and then he got some sand the rabbit he poured it on the sandcastle he felled it down and then the dog tried to make another one,0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +but he could not they went for a picnic they ate their food they were full and then the rabbit had a stomachache and then he went to a doctor and then he asked the doctor to help his friend and then the doctor helped and then the doc and then he was back to normal first they were um pulling the the balloon on a wagon,0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 1 0 0 0 0 0 0 0 0 0 1 +and then he showed it to his friend and then the rabbit untied it and then it flew away and then the dog is angry and then they they saw a man buying havin have some balloons and they want to get one and then he asked for one and then h he showed how much it was for and then she she said not not to take it and then he asked the doctor to pay,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and then he he asked like like doctor um i tooked a balloon off my friends wagon and it flew away and then he paid after they both have balloons the f the only the dog has a balloon both of them have a balloon oh now at the end they do yeah um it looks like the giraffe and the elephant are playing basketball and the ball goes into the pool,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +the giraffe tries and jumps in and get it um but the elephant gets it and the giraffe looks embarrassed um it um the giraffe and the elephant want to go swimming um the the giraffe the elephant wants to go off the diving board and she starts running and the sign says no running and she slips and falls and scrapes her knee the lifeguard comes running up to her puts a bandaid on it and she is all better,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the lifeguard points out the sign and she looks really really embarrassed and guilty um the giraffe has an airplane in his hand and the elephant um really likes it um the giraffe pretends to fly it and he is making airplane noises the elephant gets jealous the elephant the elephant steals the plane away from him and i guess she tries to fly it but it goes into the water,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +uh the ele and the giraffe gets mad the lifeguard comes up the lifeguard says what happened the oh and the elephant explained it to him so now the lifeguard is trying to get the the plane back and the lifeguard can not do nothing the giraffe starts crying then s a woman comes another elephant comes up with a net scoops the airplane out and gives it back to the giraffe the giraffe and the giraffe is really really happy now the bunny and uh the dog uh the dog has built uh a sandcastle,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 1 1 0 0 0 1 1 0 1 +and the bunny wants to help the bunny scoops up uh uh a shovel uh a pi the bunny takes a shovel and scoops up some sand and then she pours it on the sandcastle she buries the sandcastle and the dog starts to cry the dog and the bunny are having a picnic the bunny starts to eat and she has a lot of junk food the bunny uh gets a really really big tummyache um the dog does not know what is happening,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 1 0 1 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 +the the dog runs up to the bunnys mom a doctor or something and the and pulls the doctor over to see the bunny the doctor um brang her back like maybe gave her a painkiller or something but but but then the bunny feels better and then they walk away the dog has a balloon the bunny wants to see the balloon so the bunny unties it from his wagon the balloon floats up in the air um the dog gets mad there is a balloon salesman on the other side of the park,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 +he wants the bunny goes up to buy one but each balloon is five cents and the bunny and the dog have no money so the bunny runs up to uh to the doctor and asks if she if she um the doctor can buy uh buy a balloon for a friend the doctor goes up pays us and pays the balloon man and now each and now the dog and the bunny have a balloon there are two kids who find balls on the si on the sidewalk and then they f then they it falls into the water and they and they do not want to get wet but the um the moose got it wants gets the ball,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 +and he gives it back to the li to the elephant and then he gets out of the water and he is soaking they want to go swimming but there is no running allowed ss but they want to run to run and jump into the pool and w when the elephant is running she slips and hurts her knee and then the giraffe gets the lifeguard and he puts a bandaid on the knee and then she is all better,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and then he s points to the sign and says no running allowed um the uh the giraffe and the elephant want to throw the airplane and see if it s falls into the water and when and when and he is going to start to throw and then and then the elephant grabs it away and thr and drops it in the water and then the giraffe gets really mad and and now now um now they have to go and get it because the lifeguard is there and now the elephant is saying i dropped it in by accident and the el and the lifeguard is going to get it but he can not reach and then its and then there is someone who swims ga ge gets a net and gets it the end and gives it back,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 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 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and now he is going to play with it the end theres an there is an elephant and a dog trying to build a sandcastle and the dog wants um to break it sort of and then when the rabbit pours the sand on it gonna it might break and it breaks down so now the dog tries to help him buil build it back the end the dog and the rabbit want to go swimming are going to have a picnic and the rabbit brings carrot stuff,0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 +and the dog brings stuff with cheese and stuff and the rabbit is so full that the dog tries to eat the rest and the dog and then the rabbit gets sick so so the dog gets a doctor and he pulls him over because someone got sick and the doctor says open your mouth and say ah and then the rabbit felt better the end one day the rabbit and the dog meet because the dog and the rabbit are walking somewhere,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then they meet and the dog has a little balloon on his wagon and the rabbit sort of wants to pop it so and then he wants the now he wants to undo it the balloon and make it fly away and now the dog is sad because his balloon is gone so now the dog gets really mad at the rabbit and now the balloon is for sale so the rabbit gets one for his friend five cents but he does not have five cents so they can not get one,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +but then there is a doctor so they might ask him for five cents so they ask for five cents to get a balloon and he gives them five ce so he gives the guy five cents and they each get a balloon the end they were playing they smiled and a ball was in the in the pool the boy he wanted to catch the ball,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +so he went in and the elephant girl put her hands in front of her nose and then he caught the ball for her and she was smiling and he was all wet and he was what he was all wet is that the end yeah they found a pool,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 1 +and then she was talking to him and they runned and she got hurt and somebody came and ran to her she was crying she was crying so much that that the boy that ran to her gave her a bandaid she was sitting on a bench and he got very greedy he found a airplane a toy airplane then he was playing with it,0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 +she grabbed it away from him then it fell in the water and then he was mad at her then a boy came walking by then she told him something then he was trying to catch it and then they he could not so he cried and then a girl came down with a fetcher with a what,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +with a fetcher to oh a fetcher okay and then she tried and grabbed it and she got it for him and he was so happy the end they made a sandcastle they sc they scooped some some sand and she dumped the rabbit dumped it on right on the sandcastle and it broke,0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1,0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then he was crying when i when he was fixing it and it is the end of the story they went for a picnic they ate and the rabbit got a tummyache she was so full that she was growling then the boy called someone then he grabbed her to the bunny she checked her if she was well if she was what,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 +if she was well then she was good and she did not have a tummyache any more and sh they had a walk they had a stroller with a balloon in the front they watched the balloon if it was coming off and he tied it right on s ti she tied it on so tight as she can then after it came up in the air and after the dog was so greedy at her and then a balloon man came,0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 +and h and the rabbit said can we borrow a balloon and he said would you like this one and he said yes it is five dollars and he and he checked if he had much and then they did not get a balloon and then they ran to someone they asked her th we want a balloon and she did not know why so she paid five dollars to him,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 1 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and they gave both of them a balloon and they liked to play with it once upon a time they had three ba balls and one went in the river and him immediately went to get it he falled in and then and he got um he went in swim to give it to the pi um the elephant again uh an then an then um and then hir it looks like they are in love once upon a time the elephant went to run an then and then they start running an her her and her got a booboo and then his mom comed put a bandaid on her,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and then her went back to her friends and then he got mad at her once upon a time he s he showed the elephant his airplane and then her grabbed it out of the out of his hands and then her dropped it into the water by mistake and then he got very angry at her and then the elephant comed and got wery angry at the pi the um at the elephant too uh then he had a a talk and then he try and reach it an and then he start trying,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +an then and then the girl come with the net got it for got it for him an then he and then he was happy and he was happy and he hugged his airplane once upon a time a dog was playing a castle and a bunny comed over to play with him and th and when he and he was holding the castle and he was um having a shovel to um pick up the sand and he was dumping on the castle and then he broke the castle and then and then he start crying,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 1 0 0 0 0 0 0 1 +once upon a time they went on a picnic and and he and and som his tongue is out like this okay you are sticking your tongue out that is what it looks like and i do not know how to do that part can you tell me in words uh it looks like he is doing oh tongue out okay and once upon a time when they was eating something um it wa um it wa um he start to have a headache and then the dog went to his mother and tried pull her to the to her kid bunny and and it start giving him medicine,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then he and then they went on when he was going to play at the park the bunny went and touched the balloon he did what with the balloon touched it and he tried to pull it off and then it got go an they was an and the dog was angry no maybe the angry was not at that part the angry was this one and he was angry and then he went on with balloons,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and he gave the kid another balloon and he said he want another balloon and he said no cause he got because he needed to get five balloons because he wants five balloons x an he asked an the dog said can i have another the bunny said can i have another bunny for the dog and then the bunny went back to his mom and he said he wo he will not give me another ba he will not give me another balloon so he did ge so he give the kids two balloons and an they and then they went off home the elephant is playing with a ball,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,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 1 1 1 0 1 1 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 1 +and the giraffe want to play with it with the elephant in the water and they dropped it in the water and then the giraffe was going to swim and get it for the elephant and the giraffe got it for the elephant and she was happy and she said thank you to the giraffe the end the elephant and the giraffe were going swimming and the elephant was going to go in the water and she slipped,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and she hold her knee and she was crying and the her dad went to go see her and put a bandaid on her owie and then she have to sit on the bench and she and her dad said no running the end the elephant and the giraffe were playing with a airplane and the giraffe was making it fly and made the elephant dizzy and the elephant took the airplane and the giraffe was mad,0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and the elephant dropped the airplane in the water the giraffe was mad at her so they have to get the airplane and her dad said to her why did you drop the airplane in the water so her mother tried to get it and the giraffe was crying and the mum got it with a net she picked it out of the water and gave it back to the giraffe and the giraffe was happy and the giraffe hugged his airplane,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +the end the bunny and the dog were making a sandcastle and the bunny was filling up the bucket and the dog was breaking the sandcastle and the bunny was breaking broke some of it and then the puppy was a little bit sad and the puppy was crying the end the bunny and the dog was going on a picnic and the bunny took all of the food out and wanted the puppys food,0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 +and the bunny was full and the bunny was getting dizzy and full and the puppy went to get the doctor and puppy said that the the bunny ate too much food and the bunny was feeling sick and then the bunny was not feeling sick because the doctor made him all better the end the dog had a balloon and a wagon the bunny said can i come with you so he did,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 +the bunny was going to take off the balloon the pu dog said do not take off the balloon or it will fly away and the bunny did and the balloon flied away and the dog was mad at the bunny so he went to go see the circus bunny again to get a other balloon so the bunny got a other balloon for the dog and he did not have no money so he can buy a balloon then they were going to get some money from the doctor,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and the doctor said uh yes and the doctor gave the both of them some money to buy a balloon they both get their own balloon the end um an elephant and a giraffe went swimming the uh um s a wa they were playing with water balloons it looked like and they dropped a water balloon in the pool or the balloon um the giraffe tries to swim after it um he catches it and the elephant gets it,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 +and now she loves him um an elephant and a giraffe are swimming the elephant runs to the pool he slips and hurts her knee and the lifeguard comes and the giraffe helps her um the elephant cries and the lifeguard puts a bandaid on it and he sat down on a bench and the lifeguard p points to a no running sign,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 +um the elephant and the giraffe are at the swimming pool the giraffe brings a toy airplane um he the giraffe plays with it and the elephant stares at it then he the elephant grabs it from him and drops it in the pool the giraffe is mad at the elephant and the lifeguard sees it and it is starting to sink the lifeguard looks sort of angry at the ele other elephant x and um he tries to get it,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 1 +but he can not reach it the giraffe starts to cry um and then another elephant um gets a net and um and picks up the plane and gives it to the giraffe and the giraffe is happy um a dog is playing in the sand and a rabbit comes and wants to play with her he starts making a little bit of the castle while the rabb while um the dog starts making a little bit of the castle while the rabbit fills a pail up with sand and the bunny dumps it on the castle and the castle breaks and the bunny screams,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +um and the bunny pretends he did not do it but he really did and the dog is feeling sad because it is broke it broke um the bunny and the dog are going for a picnic um the dog brings sandwiches and the bunny brings carrots and sandwiches and pickles and chips and sandwiches and carrots and he gets fu the bunny gets full while the dog is still eating the bunny is feeling sick um the dog runs and gets um the doctor and he pulls the dog pulls the doctor over,0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +um the doctor looks and tells him to open his mouth and then he is all done um the dog is pulling a wagon with a balloon and and the bunny sees her the bunny tries to get it um he gets it and the dog opens his mouth and starts to scream sort of the bunny lets it g lets go of the balloon and the dog is really mad at the bunny and he is just staring at the balloon,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and um he sees um another rabbit selling balloons he asks for some and they are five cents and he said you can not have them if you can not pay five cents and then they are really sad and then there is a bunny another bunny up there i think it is his mom and he wants to buy a balloon and they he gives five cents to him and they each get a balloon,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 1 0 1 0 1 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 1 +and they are playing with them there is an elephant and a giraffe the elephant is bouncing a ball and there is the giraffe guy i think is talking to her and they are watching and all of a sudden the ball that the elephant was bouncing fell into the water and they are both looking kind of sad and um excited and now the giraffe uh jumped into the water and now is swimming to catch the ball and the giraffe is back at the end of the pool and gave the ball back to the elephant and now the elephant is happy and looks happy,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 1 +uh um the there is the giraffe and the elephant again and the elephant is looking at the water with the giraffe and now the elephant is looks like uh she is going to jump into the pool and right when she started jumping uh the elephant slipped and hurt herself and now she has a cut on her leg and now the giraffe is stand sitting by her and called the lifeguard to come and now the elephant is kind of scared that it is going to hurt when they put on the bandaid and now she is walking with the lifeguard with the bandaid on herself and she is kind of happy and kind of sad and now she is sitting the bench,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and the lifeguard is pointing to no running because she was running uh the elephant and the giraffe the elephant is looking at the giraffes airplane that he has in his hands and she is happy now the giraffe is kind of playing with the airplane and pretending that it is flying and the the elephant is trying it now and she is pretending and the giraffe is thinking she is he is scared that she is going to wreck it and now the the airplane fell into the water and now the giraffe is mad and now the lifeguard is standing there and watching them uh be mad at each other,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and now so the elephant is saying what happened and the lifeguard is wa looking at her now the lifeguard is trying to get the airplane and the now the giraffe is crying because the lifeguard can not get the airplane out of the water and now there is another uh elephant and she has a fish net and now she is trying to catch it with the fish net and she got it with the fish net and gave it to giraffe now giraffe is happy and um elephant is happy too,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 1 0 0 0 1 +there is a bunny and i think there is a dog and the dog has made a sandcastle in the sandbox and the bunny looks has a shovel and he looks happy and now the bunny was helping the dog to make the rest of the sandcastle and then the then the bunny pours all of the sand over onto the sandcastle and now the b the bunny wrecked the whole sandcastle the dog does not seem that uh mad and then now he looks at it now again,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 +and uh he is really mad and the bunny is just standing there looking kind of sad and mad too uh there is the bunny and the dog again and the bunny and the dog are going for a picnic the bunny is sitting by the dog and they are eating and the bunny has lots of food around him and now the bunny is really stuffed and the dog is still eating nicely and the dog is eating,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and the bunny looks kind of uh really um full so now the dog is running to a parent that is walking down the road and brought the the other bunny to uh the little bunny that ate too much and now the bunny the big bunny is looking at the little bunny and now the little bunny is all better now there is the dog and the bunny again and the bunny is ru are running down the roa the s sidewalk and the dog has a a little cart with a balloon tied to it now the bunny is looking at the balloon that is tied to the cart and now the the dog is looking at the bunny and the bunny is trying to take off the balloon,0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the bunny took off the balloon and now the balloon is sailing up in the sky and now the dog is really mad and the bunny is looking at at the balloon at the sky and now the bunny is walking down the s the sidewalk and the dog is looking at the bunny walking down and the bunny sees some balloons and the bunny sees the balloons with the man holding them and asks if she can buy one and they are they are five cents and the bunny is looking in his pockets because he does not have uh any money,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 +and now the both the dog and the bunny are looking at the balloons seeing if he will give them one and now the big bunny uh the little bunny is going to ask the big bunny and see if she has any money now they are asking the bunny little bunny is asking the big bunny if he can she can have a five cents to buy a balloon and so the big bunny gave the man five cents so that they can ha or ten cents so they can have two balloons and now each of them have two has a balloon the giraffe and the elephant are playing in the water and they are bouncing a ball the elephant is and the elephant is out of the water and so is the giraffe but she bounces it too hard,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 1 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 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +and it land in the water and the giraffe tries to get it to jump in and get it but it looks like it is hard for him to get it but then he got it and then he swam to the elephant and the elephant got it and then the giraffe got out of the water and the elephant took it from him the elephant and the giraffe are staring into the water and the elephant tries to run in the water tries she like she is on where she is on the ground,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 +and then she tries to run in the water but then she slips and then she got a owie on her knee and she started to cry and then the giraffe called the lifeguard and the lifeguard help tried to help her was running over to her and the lifeguard got a bandaid and put it on her knee and then the lifeguard told her told her to bend her leg and then it felt better but then the lifeguard um showed the elephant that there was a sign that said no running,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 +and then she had to sit on the bench the elephant and the giraffe are um laughing together and the giraffe has a toy airplane in the swimming pool and then the giraffe plays with it and flies it in the air but then the elephant grabbed it away from him and started to playing with it but then she dropped it and it fell in the water and then the giraffe got really mad and the lifeguard came over and looked at the airplane and was shocked and the elephant said it was an accident,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 +but then the so the lifeguard bent down and tried to get it but he was too short and then the giraffe started crying and then the elephant looked shy like kind of like she is sorry and the lifeguard did not know what to say but then a girl walked over one of the lifeguards walked over and grabbed the net and grabbed the airplane with the net and then the giraffe started stopped crying and then the lifeguard was happy and then the elephant did not know what to say and then the and then the lifeguard picked up the airplane and gave it to the giraffe,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the gir and the elephant was happy and the giraffe was very happy a dog and a a dog and a bunny uh well first the dog is playing in the sand with a shovel and then the bunny comes along with his shovel and the dog is just done his castle and the bunny is putting some sand in his sand bucket and then the bunny pours all of the sand on the castle and and then the bunny instead of the dog getting mad the bunny gets mad and then the dog starts to cry,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 1 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 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 1 0 0 0 1 0 0 0 0 0 0 1 +a bunny is w the bunny is w walking down the road with his basket and a dog waves at the bunny with his basket and the dog takes out his sandwich and the bunny takes out her big meal that she has in her basket and then the bunny eats it all and then you can see garbage all over the mat and then the dog is just eating a sandwich and then the bunny feels a bit sick and the dog is shocked so the dog runs down the road to the bunny is granny and tells her,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 1 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 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the granny um well the dog is pulling the granny towards the bunny and the the granny fix like helps the bunny and then they walk home happily together the bun first the dog has a wagon with a balloon tied on it and the bunny is walking down the road waving at the dog and then the bunny says that is a nice balloon that you have and then the bunny tries to tie it off the wagon but then he did tie it off and then it floated up in the air the dog and the dog got really mad,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and he got so but he did not have to be mad for long because he saw a balloon carrier and the bunny was walking towards him and the bunny asked how many how much are those balloons and um the salesman said they are five cents each but the bunny did not have enough money he did not have any money and then the bunny and the dog just standed there and went gave a sad face and then the bunny walked toward this girl on the street and asked if i can get a balloon and then the girl gave her fi gave him five cent ten cents for two balloons and they both had the balloon and were very happy,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 +there is a giraffe and an elephant shall i turn the page okay then then there was a ball in the water then the giraffe went to get it then the giraffe got the ball for the elephant and he was playing with it the end they wanted to go on the on the jumping thing and the elephant one want to go on it,0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then the elephant tripped then he got a owie then the lifeguard came he put a bandaid on it and they and he took it took him to the bench i do not know it there is a giraffe and an elephant the giraffe has an airplane then the elephant took it then it fell in the water,0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +then the giraffe was mad at the elephant do not know it looked like it was sinking but the lifeguard was trying to get it i do not know and the lifeguard got a net and he fished it out and he gave it back to the giraffe do not know there is two rabbits that are going to make a castle,0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +they are making one he dumped ah sand on it then it broke and and they were going to build it again the end there are two rabbits that are going picnicking they brought food to eat they ate all the food one of the rabbits are really fat then t a doctor came,0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 1 1 0 0 1 +then one of the rabbits are pulling him and then he was checking his temperature then the doctor took one of the r rabbits the end there are two rabbits that have one balloon okay anything on this page no then they took it off then it went up in the sky then it was up high,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +there was a rabbit had lots of balloons and one of the rabbits asked him if he can have one it costs five cents nothing here okay and there was a rabbit coming then he asked the rabbit if he can have money for a balloon then he then he gave the bunny gave him the money then they each got one the end a donkey thing and an elephant are playing with their ball playing basketball,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 +um the they shoot it and the ball falls into the pool that they were standing by the donkey goes in and gets it out of the water he brings it back to the elephant and the elephant is happy the elephant falls in love with him they are going to go swimming the elephant goes to run to the diving board she slips and falls and hurts herself she is bleeding because she has a cut on her knee,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,1 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 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 +um the donkey thing goes to get the lifeguard they put a bandaid on she is okay he points to the sign that says no running and she gets um embarrassed um they are going to play with this plane near the swimming pool he is flying around with it and she wants a turn she so she grabs it from him and starts playing with it it falls into the water,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and they can not get it out he gets mad at the elephant then they call the lifeguard and then the lifeguard is looking at it the lifeguard can not reach it he still tries to reach but he still can not reach it it is sinking and the ele donkey thing is crying and the elephant feels sorry,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 +and the lifeguard says he can not do anything then the other lifeguard comes with a net and she fishes it out with the net and then she gives it back to him and he is happy and then they are both happy the two little kids and then they play with the airplane again the rabbit and the dog are playing in the sand they are building a sandcastle he pours too much sand on the sandcastle,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 +he wrecks it um the bunny and the dog are going to go and have a picnic they are having a picnic and he is eating everything he ate all unhealthy stuff and only like a few carrots and stuff that is healthy he gets sick the dog goes to get a medic the me the medic um helps him and he is sick so she is going to cure him,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then he take she takes her like to the doctors office place and then she is going to um make him better um the the dog and the bunny are going to go and play with their balloon th the bunny takes the balloon off the wagon he ties it off and then the dog does not want it him to it goes up in the air and they can not get it the dog gets mad at him uh they go to buy another balloon,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 +they pick one but it is five cents and they do not have any money sss and they both do not have any money so they are thinking what to do um they so so they go to their mom and she is going to give them money um she is gonna gi she is getting her money out of her pockets to give to them she gives it to them and they can buy two balloons then they are both happy,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +there is a guy gi uh have candy and he is selling it and he give and it one dropped into the water and he swims for it and he pulls um um he gots it the other guy gots it and he get um and he get and does not he does not give it to him the end the guy is going to jump into the water the guy um runs and runs and the guy the other guy he slips,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 1 1 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 1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and he falls down and he cries and he and he has a booboo and he puts a bandaid on it and he carries him puts him on the bench the end the guy is looking at him and he has a airplane and then the other guy takes the airplane and plays with it,0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +and then it falls o it falls into the water and then the other guy gets mad at him and the other guy gets m um the other guy there is two guys standing getting mad and the other guy ge um um gets scared and the other guy chases it into the water an and the other guy cries and the other guy has a net and the other guy takes it out of the pool and then he gives it back and then he he likes him,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 +the end there is a there is a bunny rabbit um um gonna make a there is a bunny rabbit who made a sandcastle and they are both of them are making a sandcastle and they are they are pour they are pouring it on on the guy somebody is pouring it on and he is breaking it and the other one gets mad no not mad i forgot it breaks and they make another one the end,0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 1 0 1,0 1 0 0 1 0 0 0 0 1 0 1 0 1 1 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 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 1 +they have both baskets the bunny rabbits has baskets and they gr they are having a picnic and then the other one eats all of his and then the other one du um has uh juice and then the other one is wa um somebody is walking and somebody is pulling somebodys shirt and somebody gets mad somebody brings somebody home the end,0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 1,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +there is a guy having a balloon in his wagon and the other one is walking and he w and he is trying to take it off and then he en unwraps it a little bit off and then it flies away and then it float he wrap um the um the string falls down why does your boss does your boss let you look at these pages she says while your doing them i am not supposed to so i am not so you can see them go ahead the guy has balloons in his hand and the and the other one buys one,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then he and then he sh then he checks in his pocket for money and he does not have money he checks it for money and he can not get one and and he was allowed to ah the other one is the uh there was a man heh uh selling balloons and then he gives one to him and the other one has a balloon and the other one has a balloon the end a elephant is going to his friend,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 +he is saying what is there what is in there orange he said the the orange fall down in the water and then the his friend he he falled in the water he was trying to get the orange and then and then the elephant got the thing out and then the elephant got the orange out and then he walked and then he walked his and then he walked to his home the end um the the elephant and the friend he was going to the pool they were going to jump into the pool really fast,0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 1 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 +and they are going to jump into where the sides are and they and the his friend hurt his leg he hurt his leg and that hurts really bad um his f his um his brother came and he and so he and he seed what happened and he gave him a bandaid and then it hur and then he went home they were going to play pool again and then there and then he was driving airplane,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 1 0 1 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 1 +and then the his friend was driving a driving driving a airplane and playing again they are playing again they were going to jump i and the airplane got in the water okay and then he was trying to and then he was very mad and then his friend and then his sister went over to that girl t um the sister went over to the brother and then he and then the brother came over her and then and then he sawed what happened and then he is trying to get it and then he he did not know how to get it,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 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 1 0 0 0 0 0 0 0 0 0 0 1 +he tried he picked that and then he tried to get it hey look look behind here um the boy has girl hair the the girl was pretty then he tried to get it and she trying to get that um airplane and then he tr and then he got it and he was very happy,0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and then h and then the elephant was very happy too the end i see a bunny that is in the s um i see a dog that is in the sandbox and helping the bunny and the bunny and the bunny is making a sandcastle they are trying to make a sandcastle and he is helping and he is helping the dog and uh um the rabbit broke the doggys castle and then he was making it all over again the end um the bunny was going for a picnic,0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 +he was following the dog and then they were there already they were playing in the sandbox with a picnic and then he burped and then he burped and then he was eating all th and then the dog was eating all the other thing he was eating one at a time and then he was and then he sawed then the dog he was laying down and then he was sleeping he was kind of asleep but he did not,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and then and then he was turned into a doctor then he was turned into a doctor and he had and he had doctor things and and a doctor came and then he went with the doctor and then he tooked him to the doctor where the doctor thing is and then he laid down with a blankie went to sleep and then and then the doctor came to a different to a different man but it was not that man he was so he was so tall,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and he was trying to help the man and then he w and then the doctor came with this with the bunny he was going to the doctor the end they are going to the um circus and then the bunny was c the bunny came with him and he had and he had a balloon and then he w and then he was trying to get the balloon and he was following him and then he took it off,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 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 1 +and then it po and then it was gone and they were trying to get it get get get it back and then he was very mad and then he said i am sorry and then he had a whole bunch of balloons and then he wanted and then he wanted m and then he was going to get one and then he wanted one and then he had some dollars and he was then he was going to buy one and then he gots no money,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and then he could not buy one and then he was and then the doctor help him help him and then he gave him some money and then and then he wanted the balloon and then um he got a balloon for him he gave him some money and then he got a balloon and they wan and they liked and they liked it and then they said and then they said thank you the end,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 +an elephant meets a horse then the elephants ball bounces in the water the horse swims to get it the horse got the ball the elephant was happy the end an elephant and a horse wanted to go on a diving board the elephant says let us go on the diving board the elephant slips and scrapes her knee then the elephants father comes and puts a bandaid on it,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and the father said that bandaid will make sure it does not hurt the father says no running an elephant met a horse who has a toy plane the plane f he the horse pretend it pretend it flies then the elephant wants to try then the elephant threw it into the water it was sinking and the horse was mad and the elephants father came and the elephant said i threw that plane into the water by an accident,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 1 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 1 +and it is the horses the elephants dad could not reach it because it was too far and the horse was crying then a lady came and had a net and caught it with and almost caught it with the net and she got it with the net and gave it to the horse the horse was happy a dog and a bunny are making a sandcastle they needed thick sand but the sand was too light so it fell on the castle,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 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 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +now the castle is nothing but they could see part of the castle a bunny and a dog are going for a walk they have a picnic the bunny gets too full he the bunny gots a stomachache the dog runs to the doctor the dog pulls the doctor to the bunny the doctor said he has a stomachache then the bunnys mom came,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 +a dog is pulling a wagon with a balloon the bunny says if you let go it will fly up to the sky the dog says no do not do that the balloon flied up to the sky the doggy gets mad then a man comes by with who was selling balloons the bunny picked one of the balloons which was five cents and he did not have any money so he could not buy it his mom came,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 +and the bunny says i need a five cents to buy one of those balloons then the um mother w one give five cents cents to the man then they both got balloons the end the elephant and the giraffe were playing with a ball the ball went in the water the animal was swim and got it the elephant got her ball back the elephant uh the um they were happy they were at the water pool,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 1 0 0 1 0 0 0 0 1 1 +the elephant was pointing at the jump board the elephant slipped the elephant got a owee the safety guard ran the safety guard put a bandaid on her she sat down the safety guard got mad at her no running they were going to play with a airplane the animal was playing with it uh the airplane,0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 1 +the elephant took the airplane the plane went in the water the animal got mad at her the safety guard was coming to check he the elephant said the airplane is in the water the safety guard tried to get it they could not get it a big elephant with a catcher got it she pulled it out the animals airplane was back,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 1 +they were both happy they were going to make a sandcastle the rabbit puts sand in the bucket he dumped it on the castle the sandcastle broke the dog cried they were going to go for a picnic they took their stuff out bunny ate fast what is that,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 1,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 1 0 0 1 +bunny ate fast he got a sore tummy he was calling the doctor the pup dragged the doctor over there you ate too you ate fast said the doctor the doctor took him with him took him wi the bunny with him bunny was coming to look at the balloon the bunny said wow the bunny untied it it flew away,0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 1,1 1 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 1 1 1 0 1 1 0 0 1 0 1 0 0 0 0 0 1 0 1 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 +dog was mad they were going to buy a new one they did not have no change actually they did not have five cents they could not buy one there was a doctor the doctor gave them twenty five cents for two balloons they got their balloon they were happy one day there was a elephant bouncing a ball,0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 1 +it went into the water the zebra jumped in and ge gets the ball and zebra gives it back to elephant the lady smiles and the giraffe smiles one day they are both laughing and they wanted to go on the board the the elephant said to the giraffe let us go on the board and the elephant slips and he gets a booboo,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then another el elephant comes running and look at the booboo and he puts a bandage on and now she go she is surprised no running allowed the the other elephant says one day the giraffe had a airplane in his hand he was flying it elephant took it away from him and she dropped it into the pool the giraffe got angry at the elephant but the guy came running,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 1 0 1 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +and he sees the plane in the water the elephant said it was not me that brought it the other elephant tried to reach it then the l then the giraffe was crying i know a way to get the plane out she put in her thing and got the airplane she is she handed the the airplane to the giraffe and the giraffe hugged it one day rabbit wanted to play in the sand and so did the dog,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +the dog was going to touch it and the rabbit was filling up his bucket rabbit dumps sand on it the dog saw and and the rabbit was horrified the dog tried to fix it one day dog met rabbit and they both wanted to have a picnic rabbit ate and ate rabbit got a stomachache,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 1 +and the dog was eating he got sick the dog came running to a doctor he said wait a minute what is this problem about it is about him and he is sick the doctor takes him for a walk one day a dog was taking a b wrapped a balloon on her wagon the bunny sees the balloon,0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 +he ties it off he let go and it was floating away and the dog was mad at the rabbit and the rabbit sees balloons a balloons were holded by an old rabbit it is worth five cents you cannot have a balloon if you do not have any money rabbit goes to the doctor we want a balloon,0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 +she paid two two ff nickeles and now they both got balloons um a giraffe and a elephant were friends and they were playing ta with each other and then their ball went in the water and the giraffe went to try and swim for the ball and the giraffe got it and gave it to the elephant and the giraffe was soaking wet um once there was a elephant and giraffe and they wen were friends,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 +and they went to a swimming pool together and the elephant was going to jump in and she and before she jumped in um for some reason she must have forgot something she went she ran very fast with no running allowed the elephant fell down and hurt her knee she was crying and looking at the pain she is crying even more and not looking at the pain then she sat down on the bench and the lifeguard gave her a bandaid and the lifeguard said no running allowed,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 +the elephant and the giraffe went to the swimming pool and they and the giraffe brought a swimming toy with him and and he was playing it and the elephant was just like stare on it on at it like crazy the the elephant grabbed it from the giraffe it looked so neat and then she dropped it in the water the giraffe got very mad at the elephant the lifeguard came and looked at it and and came closer to the elephant and the elephant was ex trying to explain how it happened,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the lifeguard was listening very carefully the lifeguard tried to get it but he could not the giraffe was crying the both the lifeguard and the elephant were was just kind of staring at it then a girl with a net came and the and they was sup they were like and the girl with the net was pull get trying to get the airplane with her net and she got it for the giraffe the giraffe was hugging it,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 1 +once there was a bunny and dog and and and they were friends the dog was making a sandcastle then the bunny was about to come in with a shovel and he came in and throwed a bucket of sand the bunny dumped it onto the ca sandcastle dog was kind of sad it bro i think it broke her castle she was crying there was a dog and a bunny,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 0 0 0 0 1 1 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 +they were friends and they were going to go to a picnic with each other um the the dog was taking everything out of her picnic basket but the bunny was just eating everything she took out the the bunny was very full and the dog was hardly even eat ate everything the bunny was fat and then the dog was about to drink a little bit of her juice and the bunny had a tummyache then a grownup bunny came along,0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 +and the and the dog was racing to her and it was like please please please and the lady was like you eat too to eat you bunny and the bunny and the grownup bunny just just went along with each other the bunny and the dog were the the bunny was running to the dog and the dog was just going her wagon in front of her with her balloon and the bunny liked the balloon he was about to pull it off and the bunny was untying it and the bunny was like the the dog was like,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 1 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 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 +and then the bunny untied it and the the balloon floated away they were trying to reach to get it the dog got mad at the bunny un until when the string was just left and then a bunny with balloon lots of lots of balloons came and he said come here come here the bunny and the the man with the balloons came and the bunny was like and the big bunny with the balloons was like which one do you want that one that one the little bunny was like,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 1 1 1 0 1 0 0 0 0 1 +this this one you can not have this one and then the bunny and the dog was sad and then the the same lady with the other book came and the and the bunny was running to her and the dog was just staying with the bunny with the balloons and and the dog still had her wagon and the and the grown up b girl bunny was the kid bunny was saying to the grown up girl bunny can we get one of those balloons can we get one of those balloons for the dog and the and the and she paid for it,0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 1 0 0 0 0 0 1 1 1 0 0 0 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and they each got a balloon two different animals were the swimming pool they wanted to play dodgeball in the water water dodgeball the ball got in the water and the an giraffe was going to get it so huh hm while he was swimming water came out of his mouth and he was all drippy then giggled he the ele the elephant watched when they were at a swimming pool the elephant wanted in the dive the diving board,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 +and there she wanted to run toward she wanted to race towards it but there was a sign that said no running she runned towards here the giraffe never runned and they huh and the elephant slipped and slipped and fall down and hurt her knee lifeguard came running she got a bandaid on it elephant sized bandaid and h bit better and the lifeguard said next time look at the sign they were at the swimming pool,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 +and the huh giraffe huh is throwing air huh super duper flying jet plane he wanted to fly it but elephant wanted to fly it into the water see if it could land on its gear but it w it was starting to sink then the giraffe got angry at her because of the plane in the water and a lifeguard huh s looked at them what is going on and they said the my friend s his super duper jet plane is in the swimming pool it is sinking he try to get it,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1,0 0 1 1 0 0 0 1 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +but he could not reach it it was starting to sink more cried then they s he who is there to swim he got something was all that looked like a big fishing net he got it out huh he got it and he tooked it out and starting stop crying then to the giraffe and got happy he hugged his plane like it was a lost memory hm there were two moles at the sandbox,0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 +one was building a sandcastle and one was building a pail one the bunny when he was done filling it up and patting it down he put it right over the the sandcastle went oh no doggy got sad bunny just whistled the animals going out for a picnic in the woods they found the perfect spot they started chowing down the doggy ate s sandwich and juice,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 1 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 +and the bunny got just a tummyache then him drinked his juice and ate a biscuit and the bunny got a sicker the bunny fainted then got there him want to get him to come he got a big tummyache he was going dizzy hm pic picnic was all gone the we bunny went back home,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 1 1 1 0 0 0 1 1 1 0 0 0 1 +one animal had a balloon and the bunny was coming towards this him he say cool balloon he untied the balloon did not know it would float up it went really high they could not get it and the balloon was gone the doggy got angry then there was a balloon saler,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 0 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 +he wanted one of the balloons to get to for his friend but he was broke s so decided to get someone who had money the bunny went to get the doctor she had lots of money huh to get a balloon then two balloons for each of them and they were pretty having fun and laughing an elephant was playing with a ball and a giraffe came to play with it um and the elephant threw the ball into the pool,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and then they got scared that it would sink the giraffe tried swimming to get it but he could not get it and h um but he got it and he gave the ball back to the elephant and the elephant was happy to see the ball again the elephant and the giraffe seen a diving board and the elephant said and the elephant started running and the sign said no running and then the giraffe tried to catch the elephant,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 +but the elephant hurt herself and she had a cut and she got a bandaid and she felt better and the lifeguard got mad at her because the sign said no running the giraffe had a toy airplane and the elephant wanted to play with it the giraffe started flying it and then the elephant took it from him and started flying it and then it sunk underwater,0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and the giraffe got mad at the elephant but the lifeguard went to get it and it was still floating in the pool and then he tried getting it from the outside of the pool and he could not reach it and then someone else came with a fishing net and got it out of the pool and gave it back to the giraffe and he was happy again a rabbit and a dog were playing in the sand they made a sandcastle the rabbit broke the sandcastle,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,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 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 +and the rabbit got mad and the dog started crying the rabbit and the dog went for a picnic the rabbit had more stuff to eat than the dog the rabbit got really really full and then the rabbit had a stomachache the dog ran to the rabbits mom the dog and and she went to see the rabbit um and the she was a doctor,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 +um the rabbit felt better and he went home the dog was with his wagon and his balloon and the rabbit wanted the balloon the rabbit untied the balloon and took it then the balloon flew up in the air and the dog got mad and there was a rabbit holding a lot of balloons and the little rabbit bought a balloon hm and the little rabbit could not buy the balloon because it was five cents,0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the dog saw the balloons and the little rabbit went to get some money from the doctor and the rabbit told the doctor that he did not have any money and she bought the balloon and the little rabbit and the dog had balloons there was this old giraffe and elephant was playing by by the pool with some bouncy balls and the giraffe came up and said can i play then he bumped the ball and then it went into the pool,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1,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 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +then the giraffe swam swam and there was water came out of his ears and the elephant could not look then the giraffe gave it to the elephant and she was happy then he smiled and she smiled the end there was these two elephants the giraffe and the elephant and there was a diving board,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +and the sign said no running and the elephant ran and ran and they almost slipped then she slipped and then the giraffe ran after her and then the elephant hurt herself on the knee and the giraffe looked at the sign no running and she sa and the giraffe said no running and the lifeguard came and sh sh the lifeguard put a bandaid on,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 1 1 0 1 0 0 0 1 +and she was still crying and the lifeguard helped her up and handed her to the giraffe and the lifeguard said no running the end and she got up and she was all better and he flew his airplane and he flew it and slobber came out and the gir elephant looked at the airplane,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 +and she got dizzy then she took it and flew it and the giraffe said uh then it went into the water and the giraffe got really mad at the elephant and the lifeguard came again and he looked at the elephant and there was a airplane in the water and he tried to reach it but he could not,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 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 0 0 0 0 0 0 0 1 +and and the giraffe started to cry and another lifeguard came and brought this net and she tried to get it and she did and she handed it back to the giraffe then the giraffe and the elephant was so happy the end there are these two bunny rabbits playing in the sand they made a castle and they are laughing,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1,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 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +they starting to fix it and building new stuff the boy rabbit dumped sand on the castle sh and the a little part of the castle is showing and now it is only sand now they are trying to build it back together the end they are these two rabbits walking down the in the forest they walked and walked they met each other and they started to have a picnic with every bo and with every with that girl,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 +and then the boy rabbit ate everything up and he was full then the girl rabbit looked at the boy rabbit and the boy rabbit did not feel so good and then there was a doctor came and the girl went to get hi her and she pulled and she pulled and they finally got there and she was checking if he was all right,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 +then the doctor took him and the girl stayed there they saw these two rabbits walking down the woods again and one had a wagon and a balloon and the boy jogged and jogged and they looked at the balloon and the boy rabbit untied it and he tied it and it flew up up and away and the girl rabbit got so mad,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +there was another balloons and the girl ma rabbit was still mad and the boy asked the man a question and then the girl was coming over and the man said the balloons were five cents and the girl looked at there and the man smiled oh again there was the doctor again and sh the boy talked to the rabbit and said my sister is mad because i lost her balloon the girl is mad,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 +here is five cents and here are two balloons he said they were so happy the end a giraffe and an elephant are bou the elephant is bouncing a ball and they are by the pool the ball falls into the pool the giraffe swims to get it um the giraffe gives the ball back to the elephant,0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 +she thanks the giraffe the elephant and the giraffe are going to the pool the elephant is pointing to the diving board she she is running so she slips she hurts her knee the lifeguard comes to see what happened the lifeguard puts a bandaid on it she the elephant sits on the bench and she smiles at the lifeguard when he points at the no running sign the elephant and the giraffe go to the pool again,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,1 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 1 0 0 1 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 +the giraffe brings an airplane that he is trying to fly and the elephant is just looking at it then the elephant takes it away from the giraffe and she drops it into the water the giraffe gets mad at her the lifeguard comes and see what is happening the elephant is trying to explain what happened the lifeguard tries to reach it and he can not reach it and the elephant and the giraffe starts crying,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 +then another elephant comes with a um net and puts the net in the water and tries to get the airplane and she gets it out and the giraffe is happy again um two people two um animals are in the sandbox they are building a sandcastle one of them is dumping sand over the castle the sandcastle breaks because all of the sand and one of the animals gets sad two animals are going on a picnic they bring lots of food,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,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 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +and one of them is drooling over it one of them eats it all up and he gets a tomach stomachache and the doctor comes to see what is wrong with him she she one of the animals is dragging her she is she she comes and see what sees what is wrong and she helps him two animals one animal comes to see the other animal one animal looks at the balloon that she has,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +she is he is taking it off of the wagon and it flies away then one of them gets really mad then they see the balloon man and he probably goes to buy her another one and she asks for one balloon and the balloons are five cents and he is looking in his pockets and he is sad because he does not have five cents and then the doctor is just looking at the view,0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and he goes and asks for five cents and she gives the balloon man five cents and then they both get balloons an elephant is playing ball with a ball and then a giraffe is just looking at looking at the elephant like wow and the now the the elephant was bouncing it and it fell into the water and now the elephant is sad so looks like the giraffe is going to go get it and now the giraffe jumps in and is swimming to get the balloon the ball,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 +and so now she got it for the elephant and the elephant is helping him out and now the elephant is happy and the giraffe is happy too um hm um they are standing in front of a pool the giraffe and the elephant and looks like they could be feel like swimming that is all and now the elephant sees the diving board and the elephant wants to go diving into the pool and the elephant is running to go get to the diving board,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and the giraffe is running after her and then she fell and hurt her knee and looks like she is going to cry and the giraffe is running to help her and then the lifeguard comes and is helping her and the giraffe is helping her too and now she is crying and the lifeguard is putting a bandaid on her leg and now the the lifeguard is carrying her to a bench and the hiraff the giraffe is helping her,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 +and the lifeguard is mad and is say and is telling her look at the sign it says no running on it and the giraffe and and the um the elephant looks like he is looks like she never i dont know i can not i dont know what she is doing let us see like hm like he is going to get very mad at her now the giraffe has a little airplane and the elephant wants to play with it too and now the giraffe is trying to make it move and the elephant is looking at it like wow and now it is the elephants turn and the elephant is trying to fly it now and now the giraffe is looking at his plane because the plane fell into the wa swimming pool,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 +and now the giraffe is mad at the elephant because his airplane is sinking into the water now the lifeguard looking at them and they are looking back at him now she is trying to the elephant is trying to explain to the lifeguard that the plane fell in and is asking if they can he can get it out for them and the lifeguard is trying is on his knees trying to ah get it out of the water and both of them are looking at him and the lifeguard looks like he is using all his might and now the lifeguard could not get it and the elephant s felt sad and so did the giraffe,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 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 1 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 +now a lady comes and she has a little net she said she would get it for them the airplane and now she is using all her might and looks like she got it and then she got it out for the li for the giraffe and the giraffe was happy and now the elephant and the giraffe are both are both happy again um two a bunny in the sandbox making a castle and another one is out on the outside going to come in and then now they are both making a bigger and bigger one,0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +and that is all that is all i can see and then one of the bunnies is pouring so much sand on and the other one is i think it is scared or something and now the sand now the sandcastle was broken and the other one just looked normal and now she is trying and trying to make a b another one because it is all broken two bunnies are walking along in maybe a forest or something and they are holding a picnic basket two picnic baskets and now they are having a picnic and all and they are eating,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +actually one of them is eating with all the food and the other one is just sitting there with his sandwich in his hand and now they are both eating and now one of themis eating and the other one has a stomachache and the other one really does not know what to do because he has a stomachache and he and he is getting dizzy and then a doctor was walking along and the other one came and told the doctor that he was that he had a stomachache and so now she is pulling the doctor to come and get the person the rabbit actually,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 +and now the doctor is operating on the guy little bunny now the little bunny is fine and he is going home with the doctor and the other one is sitting by the sand box thing or whatever the big picnic picnic thing now the two bunnies are walking along and one of them is pulling a wagon that has a balloon attached to it and now the other bunny never noticed the um balloon and is looking at the balloon and pointing at it pretty funny now the the bunny is trying to untie the balloon and the other one is looks kind of scared,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 1 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 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the balloon flew away and they are both hopping and trying to get it to catch it and the balloon gone and one of them look is just looking up and the other one is very mad now the other one sees a man selling balloons and then so he is walking along k to get a balloon for the one he made fly away now he is say he is saying to the thing the man can i have a balloon looks like it and now he got now he did not have any money for the balloons,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and li and uh the guy said it is only five cents for a balloon and then hm he looks um he looks weird now they are both looking at the guy and the guy looking down at them while he is holding the balloons and now she is running to one of the rabbit guys are running to the doctor that they saw before and the doctor there she is running to the doctor maybe to get some money and now she is he is um showing the bunny what he needs what she wants and now she is paying for it and both of the kids are happy and now they both got a balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 1 0 1 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and they are happy and the doctor is happy too it is over there was a um elephant that had a ball and um a giraffe wanted to play with the balaloo the ball too but the balloon accidentally gotinto the w into the swimming pool and and the elephant was very worried that it would it would it might sink and then the cow the giraffe came over to s to get it swim after it to get it and then he got it and he gave it to the elephant so she could play with it with him,0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 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 +and then the elephant and the giraffe came came to be friends and also they wan and they also played t with the ball together the end there was an elephant and um a g gir giraffe and the elephant ran over to the diving board and then she accidentally slipped then she and then then the giraffe came running after to see if the elephant was okay and then and then then the elephant started to cry because it really hurt she scraped her knee then the lifeguard came running over and said do not cry,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 1 0 0 1 +i will help and then he put on a bandaid on her on her scraped knee and then then she stopped crying and then the lifeguard helped her get onto the the bench so she could go over and rest her knee for awhile and then she can go back swimming and then she did not then the lifeguard said you must look at the signs that say no running or no doing anything just in case there was something slippery or you can not go on the diving board the end there was a giraffe that had an airplane and he really like it lots,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 +and then an elephant wanted to play with it and then he started playing with it even more and then the elephant wanted to play with it then the elephant grabbed it from the from the giraffe and then he was very angry and then it fell into the water and then they could not get it so they so they did not know what to do and then giraffe got very very angry at the elephant and then the lifeguard came over and and said what is the problem,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 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 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 +and elephant explained i grabbed the the toy airplane from the giraffe and then i accidentally threw it into the water and then the lifeguard tried reaching for it but he could not get it then the giraffe started to cry about he liked it then somebody came over with a net so they could get it then she reached over and got it for them then he got it back and he really really liked it again and then the elephant really really wanted to play with it,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 1 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 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +but the giraffe was too busy playing with it the end there was a bunny and dog they wanted to build a sandcastle together and then the bunny took too much sand and then he dumped it onto the castle but the castle got ruined accidentally accidentally and then the dog was sad because her castle got knocked down the end there was a dog and a bunny,0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +they wanted to have a picnic together and they each took out all of their stuff from their baskets and ate and they ate and ate and ate until the bunny got so full he wa he felt like he was sick and then the puppy dog went to go and get doctor somebody who could help and then and then the doctor came over and helped the dog and the bunny and the bun and the doctor helped the bunny be all right again and then the bunny got taken someplace where he could be all right the end there was a dog that had a balloon hooked up onto her little wagon then the bunny wanted to have the balloon,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and so the dog let the bunny look at the balloon and then the bunny untied the balloon and then he lost the balloon but then the dog very an very sad then the dog get got very angry at the bunny and then they saw a a s a person that was selling some balloons an and then they came over to him and said can i please have another balloon a balloon but the rabbit but the little rabbit came over and said can i please have a balloon but the person said no you need some money and then he and then he showed him how much money he n how mu how much money he needed for a balloon,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 1 +i and it was quite a bit and he did not even have any money so they could not get another balloon for the little dog and they and they were very sad and then they came over to a doctor and and the little bunny said can can you please help us get a balloon and then the doctor said all right i will get you a balloon and the and the doctor gave the the person um as much money as as they needed and then they enjoyed their balloons again,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +the end there was an elephant playing with a ball near the pool and the and a gira and a giraffe came wanted to play too the ball fell right into the pool the giraffe swam right towards w jumped into the pool and went to go get the ball the giraffe got the ball for the eleph baby for the elephant and the elephant likes the giraffe that is all the elephant and the giraffe wanted to go swimming the elephant was going on the diving board,0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +the elephant was running then she slipped she h cut her knee the lifeguard came the lifeguard put a bandaid on the lifeguard put the the elephant on on a b the bench w and the lifeguard pointed to the sign that said no running the giraffe was playing with his toy plane h um he did loops and stuff with his plane the elephant grabbed it,0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 1 0 0 1 0 0 0 1 1 0 0 1 0 1 0 0 0 1 0 1 0 0 0 0 1 1 1 1 0 1 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 1 +and it landed in the pool the giraffe was very mad the lifeguard came to s to see what the problem was h he uh the lil the little elephant told everything what happened the lifeguard tried to get the air the plane but he could not reach it then then a then an elephant with a net came the elephant with the net scooped out the plane and gave it back to the giraffe and he was happy again there is a little bun a bunny and a th and a dog,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 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 1 1 0 0 0 0 0 0 0 0 0 1 0 0 1 +they are going to play in the sandbox the dog was building a sandcastle and the wa the rabbit was putting sand in a bucket he the rabbit dump dumped the sand on the sandcastles the rabbit and the do the ra the rabbit was like what happened and and the dog was trying to rebi and the little dog tried to rebuild it the little dog and the rabbit they saw were going for a picnic uh uh the the dog had a sandwich and the rabbit had carrots sandwich cake chi he had all kinds of st stuff,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 +then he then all his food was gone then he felt sick the dog ran to get a doctor sh the dog showed where the doctor where where they were having the picnic the do the doctor they were saying ah with his stick and i think that is what he did then he felt all better the little dog was pulling a wagon with a balloon the ra and the rabbit came along the rabbit saw the balloon on the wagon tied to the wagon,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +the rabbit untied the balloon the balloon floated away the dog was very mad the rabbit ran to a balloon man the rabbit wanted a balloon h he he had no money so they so they were very sad then the do then the doctor was walking along and the rabbit went to ask for some m went to ask for some money sh sh he told the the rabbit told the doctor everything,0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 1 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 1 0 1 1 0 0 0 0 1 1 +the ra the doctor gave money m money to the balloon man so they got the two balloons and now they were very ha and they were very happy uh he walks to a horsey and then the horsey fell falls down then the horsey fell in the water and then he gives the ball back to him and then they play with it and that is the end so um he goes in the sandbox with the elephant,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 +and then they walk in the into the sandbox and then they walk into the hill and then they laugh and then they got a scr and then elephant got a scrape and then he then he started to cry and then he he sat up and got a bandage bandage and he said are you okay the end um he found an airplane in the sandbox and then he and then the and then he flies it up in the sky,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and then he stands up and then he stands up in the sandbox and then they br broke the airplane in the sandbox and they dropped it and then he he it was stuck in the sandbox forever and then it was more stucker and then a lifeguard came and get it and then he got it with his and he reached it with his arm and then they were sad the lifeguard got it for him and then the lifeguard poured on the net,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,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 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and he got it and then he said here you go and then he keeped it forever the end he the dog goes in the sandbox and then he starts making the sandcastle and then the rabbit spills on it and then he and then it is all gone it x up then it was all covered up,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 1 0 1 0 0 0 0 0 1 +the end he goes looking at his favourite friend then he goes and stickes out his tongue then he had a drink and then he lies down in the sun and then he walks away then he pulls on his shirt and then he and then he talks to him and then they walk away he comes along with a balloon with with his wagon,0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +then he comes and then he walks with him then they stopped and walked in the snow then they lose the balloon and then they stop and get angry then they walk away and saw a man with balloons then they said to him balloon and then he gives him one and then they walk away and then they think the rabbit the big rabbit,0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 +and then they walk to his mom then they walk to their mom and then he comes and walk to the lady and then he comes and then he gets a ba another balloons balloons the end a horse a giraffe and an elephant were bouncing a ball the ball in the pool and the giraffe was scared then the giraffe um went in and swam and got the ball out then the elephant was happy,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and the giraffe was all wet and they were both happy the giraffe wa was scared to go in the water again so the elephant went in and she saw a diving board and she decided to go on the diving board and jump and then the giraffe said maybe that is a good idea the elephant went slipped and fell and the giraffe was running to the diving board the elephant hurt her her knee,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 +and the giraffe was scared so the giraffe helped the elephant the lifeguard came and saw the giraffe um was taking care of the elephant the lifeguard put on a bandaid it did not hurt any more so the giraffe did not look scared any more and the lifeguard was happy and then the other elephant the lifeguard looked at a sign and it said no running the giraffe and the elephant were happy,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +so they decided maybe we could fly a the giraffe decided maybe he could fly the airplane in the water and then got and then the elephant could dive down and get it and then the giraffe would throw it again into the water and the elephant would keep on getting it then it then it was then it was wanted real crazy so the elephant let him the giraffe would make made a tongue the elephant grabbed it from the giraffe and the elephant looked and the giraffe looked scared and the elephant looked happy,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 1 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +the elephant threw it and it went in the water and the elephant looked scared and the giraffe did not know what to do the giraffe got mad at the elephant and the elephant got sad the lifeguard got mad again and they both got and they both did not know that again so the lifeguard looked nervous because the elephant looked scared and the giraffe was sad,0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 +lifeguard was going to get it so the lifeguard was trying to get it and the giraffe and the elephant looked nervous the giraffe started crying and the elephant was sad and the lifeguard was nervous oh then another elephant came with a net to get it out of the water so the they could have it back again and he tried to get it out but it mm it she tried tried a lot but it would not come out,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 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 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 +then he got it out and they were happy then the giraffe was happy and the elephant was too a bunny and a dog were building a sandcastle the bunny got scared and the dog was nervous they made a sandcastle then they both were happy they poured and the rabbit poured sand over the dogs sandcastle,0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 1 0 0 0 1 1 +the sandcastle broke down and the rabbit was the sandcastle did not break down and the rabbit was nervo and the dog was nervous and then the dog um tried to build it up but he was crying and the bunny was nervous the dog and the and the bunny were collecting coconuts and berries and they saw each other and then they said hi to each other and then they were happy,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 +and and they and they had a picnic they went home first and then they went back to the spot they were going to have a picnic at and then the bunny ate a lot and the dog was nervous and then the bunny ate too much he got so fat and the dog um ate the rest the rabbit did not feel well and the dog was nervous,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 1 +so the dog called the doctor and the doctor came and then the dog told him that the rabbit ate too much so he did not feel well so the doc so the dog dragged the doctor there because the rabbit was not feeling well the doctor saw that the dog that the rabbit was not fee feeling very well so um the hh he he was scared and then he felt then the doctor made the rabbit feel better and the dog was happy the dog mm pulled the wagon with a balloon tied onto it,0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 +and the rabbit saw that the dog was pulling a wagon with a balloon on it the rabbit wanted the balloon and the dog looked nervous the rabbit tried taking off the balloon the dog looked scared the rabbit was sad because it when he got off the balloon it started floating away so they were both and then one um wen and the rabbit was sad and the dog was scared the rabbit was nervous nervous and the dog was mad,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 +there is a balloon man over there uh it it was going to another bunny hu him too can i have a and the and he said um can i have a balloon and the dog was way back there so the and the rabbit was up to get a balloon and then the guy the balloon man said balloons five cents so the rabbit checked in his pocket for any money but he did not have any the rabbit looked shy and the dog did not look shy,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 +and then the um man looked nervous the doctor was coming and the rabbit was running to the doctor and the balloon man was selling and the dog was nervous and then um he showed the doc the rabbit showed the doctor um that he wanted a balloon to buy to five cents to buy a balloon so he could have a balloon and the dog could have a balloon then he gave him five cents for each balloon and then the balloon man gave him two balloon and then they were were happy and the balloon man was happy,0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 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 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and the rabb the doctor was kind of nervous the doctor was real nervous and they were both real happy uh uh the the elephant and the zebra the the zebra were going playing ball and that was on this page and and then and and then um and then the ball falls in the water and then zebra goes in to to swim to it the and then the zebra brings it to the elephant and the elephant felled in love with the zebra fell in love with the what,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 +zebra oh they went on the they are going to go on the diving board and then she goes running to the diving board then she slips and and hurts her knee gets a scrape on her knee and then the lifeguard comes to put a bandage on it and then she starts screaming and then she w and then she does not puts her leg up like it is broken then the lifeguard says no running the z the zebra finds a a plane,1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 1 0 0 0 0 0 1 +and the elephant said wow and then he starts flying it then elephant grabs it from the zebra and then then sh and then she started flying flying it and and and then she drops it into the water then it floats and starts sink sinking then the lifeguard comes s and then then the little boy zebra said can you get my plane and then and then the zebra said the elephant was flying it and then she dumped it into the water,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +the elephant lifeguards arms tried to grab it but she he could not then the l then the lifguard gived her trouble a and the zebra was crying and then she go and then the and then the mom gets a net and s and grabs it out of the water and gets it for the little boy then the boy was happy and they started hugging it and it was done the end there is m they are ma they are making a sandcastle,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 1 0 0 1 1 0 1 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 1 0 1 1 0 0 0 0 1 +and then a friend came and then he dug he digged some sand and put it in a bucket while the other kid was making a sandcastle and then he dumps it on the sandcastle and then and then the rabbit was mad she uh the other one st and then the mouse starts crying the end they go for a picnic and the mouse and the rabbit goes for a picnic the rabbit starts eating loud and then the rabbit got fulled while while the mouse was eating lots of sandwiches and ju drinking juice and then the rabbit ate some more,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and then he had a and a and then he got sick then the doctor came to see the rabbit and the doctor was not then the and then the mouse was dragging the doctor and then the doctor see said s seem seen what is wrong uh and then he got all better they are going to the circus and the balloon pops he ties up another balloon then it flies away and then there is and then they can not move their wagon,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +there there is a balloon man and the rabbit says i want one of those balloons um and he can not buy any because they are five cents and then he and then and then he and then he dumps his pockets out and he goes to go running to his dad to ask his dad for a balloon for his friend and the doc and then then then his dad sa says okay then they bought two balloons and then they pop them he said hi i love those rocks,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1,1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 +then that rock is falling and he that one is swimming and he gave that rock and he play and he can play with it now the end and uh b there was is elephant and this one he was jumping over an and they can run faster hm were you going to help turn yep,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 1 +okay he said i want to go run faster and jump over it and he said you are not big enough and he said oh yes i will she ran and and then slipped uh and he will say y ouch and that hurts he has a booboo and he tell his mom and then he still cry,1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1,1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +then he sit on it and he could help and do not play on the rules on the the pools once upon a time there was the this one is re really sheal he he said i like your airplane he said thank you and then it flies and he will catch it and he catch an airplane it does not fly but suddenly he the airplane did not fly up,0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 +he looks so angry and then and he said what is the matter he said i was dropping it and and he take it and it falls down then why did you did that i did not do anything he said maybe i can get it and it is too hard maybe maybe i could try again,0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +i will catch it in that net he scoop it up and that airplane works and he is so happy the end a bunny l loves the dog and they shovel the and they and that dog build a castle and the castle and that bunny just well it will fall down the castle and that bunny he he melt them he did not do it,0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +they fix it up he waved at bunny and they eat some snacks and the rabbit is tummy is full and they got a tummyache he tell him he just look at it he just got a tummyache she really not feeling all better then she feels all better,0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 +he waved at the dog and he gets the balloon then he show at the balloon then she pull it up he did not she did and it go up and he was mad it she tell them and he look at the balloons and he said would you please get that balloon,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 +and this present number five and they love them and they tell him again and he said the balloon will not get it wo he will not get it back and they all had two balloons and last year they have a balloon the end the zebra was going to the zoo and the elephant wanted to come and show them his practice at the circus and then they saw something inside a water,0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +but the giraffe wanted to get that ball because the elephant dropped it and the elephant said thank you for getting it the elephant wanted to go swimming but it ran jumped into the pool and it hurt itself is that what is on this page the elephant ran then when it ran it just ran fast and then it um it fell down and it hurt its knee,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 +and then another elephant came what was the lifeguard he and the lifeguard saw the elephant hurt itself then the lifeguard said you can not swim without a lifeguard if it tells you and it said go on the bench and no more going swimming until you calm down and i say so the zebra w the giraffe wanted to put his airplane in to see it swim and it and it did and then it went in the water and the giraffe did not know how to get it out but then the elephant took it from it,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and then it dropped it in the water and then the lifeguard did not know how that it airplane got in said um that is the giraffes airplane and the lifeguard tried to get it but he could not reach it and the giraffe was sad because nobody could get it then another elephant and it got um a thing what you catch fish with and it tried out to do it but it got it the airplane,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 +the elephant who caught fish gave it to the giraffe and giraffe said thank you giraffe was happy he was making a castle in in the beach what he got the sandbox he won and he made a castle there then when he was done making the castle he wanted to make another one and then he tipped sand on it but he was afraid if it was going to crash and it did crash,0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 +but he had to make another one but it was hard to make they were going to go and have a picnic and the bunny wanted to come and he said yes they eated carrots and they listened to some music and the bunny rabbit was full and the puppy dog was not and then the bunny rabbit got sick,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 +and the puppy dog was not very happy and then um the bunny rabbits grandma came and the puppy said the bunny rabbit is sick and they said come here come here and she came and she looked at the bunny rabbit and said you are sick then they went back home the puppy dog was all alone having a picnic they were going to a circus and they brought a wagon with a balloon on it,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then bunny wanted to grab the balloon but the puppy dog would not let it so it said it is putting it in a knot he said then it flied away and he was mad at the bunny rabbit and then there is a man with a whole bunch of balloons and puppy dog was mad but then the bunny rabbit was not he wanted some balloons and he said please can i have a balloon,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 +but the man would not let him he had no money but the puppy dog did so the pup but then the bunny rabbit saw another bunny rabbit asked can i come to wherever you go can i have a balloon if you have some and he said but then he realized that is not a man that is a girl said y yes then he gave her a balloon the that is a giraffe who is laughing with the elephant,0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +and then he saw the ball and then the elephant was scared and then the giraffe gave him the elephant the ball and then the giraffe came up the sidewalk and then the giraffe came up the sidewalk the the giraffe and the elephant were too scared to jump in the water and then the elephant was laughing but the giraffe was like ssss scared and then the elephant s was like tripping and then the elephant was hurt his knees and then the elephant cried,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 1 +then the elephant camed home and then the elephant was laughing and then the swimming man said he was pointing a hand the swimming man was what pointing his hand the elephant was laughing and the giraffe was laughing and then they were playing with the airplane and then the elephants turn to play the airplane but they dropped it in the water,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then they the elephant was scared but the giraffe was angry and then the swimming man was all mad at them but he said what happened and then he was like wo saying uhoh and then he was trying to get it but he could not and then the giraffe was crying and then the girl was trying to get a fish tank and then get it and then she got the airplane,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and then sh she gave it back to the giraffe this one the bunny was digging but this girl came and then dig and then they they both shared then they put it on together but that girl was scared and then they were like all sad and they made it back again the bunny said hi and then they went to a field tr trip,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 1 1 1 +and then they ate carrots but they guy did not got nothing and then they they both um shared food and then the f the bunny um dranked and the bunny was fatter and fatter and fatter and but he flew it off to this doctor bunny and then he s told the doctor that he is fff he needs help and then he said go to the doctor and then the doctor ss went to the dd to his workshop this guy was holding a balloon with a little car,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and then he was saying look my balloon and then he pulled it off and give it to the the other guy but it flewed up the sky and then the dog was all angry and then they ss and then they sawed the balloon man and then he said can i have that and but it was five dollar and then they were all sad but they saw the doctor and doctor can we buy this,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,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 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 +can we buy the balloon doctor and then the doctor s gave him the money th then they b got another balloon first there is an elephant and a giraffe and the elephant is bouncing a ball turn and the elephant i think bounces it into a pool and then the giraffe dives in to get it and then the giraffe comes back and gives it to the elephant and the elephant looks like he said th looks like he is saying thank you,0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 1 0 1 +um there is a giraffe and an elephant standing by a pool and there is a sign that says no running so the elephant points at the diving board and she runs over there and she slips and she scrapes her knee and then the lifeguard comes and help and puts a band bandaid on her then she then he put put puts put her on a bench to sit down and then the lifeguard points his finger out saying bad i think there is an elephant and a giraffe,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,1 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 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 +and the giraffe is flying a toy plane around and then the elephant um looks at it and i think says that is interesting so the giraffe gives a turn to the elephant and the elephant is th um threw it into the pool and the giraffe gets mad at the elephant so the elephant asks the lifeguard to help and then talks to hi the liteguar the lifeguard what happens and the lifeguard tries to reach and get it then the lifeguard does does not know what to do and the giraffe goes on his knees and starts to cry so a dif i think a person that swims takes a n takes a net and tries to scoop it,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and she s scoops it up and gives it back to the giraffe and the giraffe holds it by like this by his neck and the elephant um has his hands like this like that in front of the giraffe there is um i think a bunny and a dog and the dog built a sandcastle and the bunny i think wants to help um the dog is smoothing the sides out while the bunny is digging sand out for the sandcastle and then the bunny pours it all over the sandcastle and he and it destroys the sandcastle and then the dog cries and tries to build a new one,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 1 +um there is a bunny and a dog that have their baskets with uh f food in them and then the bunny dumps it all dumps it all out and the dog just takes it one at a time and then the dog is still eating and the bunny is laying on the ground with all this garbage around and then the dog is drinking a juice box and i think the bunny feels sick then uh and then the dog i think finds a doctor and the dog is pulling the doctors sleeve over to where um the bunny is laying down and the the doctor takes a thing and this little stick and like points at something,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 +and then the doctor brings the bunny i think home and uh the dog is standing b just standing still with a th a thing behind her back first um the dog is pulling a wagon with a balloon attached to it then the dog drops the handle and the bunny tries looks at it and then the bunny tries to untie it and it s blows away into the sky and then the dog gets mad at him and then the the da the dog is mad the bunny runs over,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 1 1 0 0 0 0 0 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 +and he sees a a balloon man selling balloons and the bunny takes one of the balloons and and on one of the balloons it says balloons five cents and then the bunny pulls out the inside of his pockets and he has got no coins so the balloon guy was holding the balloons and the bunny has his hands in his pockets with the dog behind him the um the the the p dog is standing by the balloon guy and the rab the rabbit sees this this p this girl this lady and then i th she tells he tells the lady to i think b get him a balloon,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 0 1 0 0 0 0 1 +and then the the lady takes out her wallet and puts some coins in her hand and they uh each get a balloon the elephant start the elephant starts screaming with the elephant starts doing with his trunk he s makes lots of noise do you know about the elephants oh it does not it is your story you make it up whatever you think and then they saw a egg in the water swimming they want to pick it up the elephant said uh why there is a egg,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 +i want to jump in the water and get it ah the guy swim in the water to catch it and the elephant is doing this and then the guy um swim and he give the thing for the elephant the elephant said wow and then the elephant went away the end they saw a water they want to swim in there,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 +it is like the two guys the elephant and that guy same and that is it and then the elephant said look i want to swim in the water and then they start the elephant was first the guy was behind him and he starts running i do not know what is he running for,0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and they still run again know what is he running for too and then they stopped and the elephant fell and it hurt his leg that is funny part and then a elephant came and squeezed his and then he put a bandaid and that is it elephant came,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1 +and that what is what is this guys long neck what is what is this guys long neck what is his long i can not see it it is your story you make it up and he got a helicopter he flied it in the air it fell in the water it keeped flying in the sky it could not get down he was going to catch it,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 1 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +he could not okay shall i turn now oh he he wants to fly it right now the elephant is like this oh you showed me again with your face and then and then he wants to fly it the elephant catched it he must have wanted to fly it and then it fell in the water uhoh and then that guy gets mad on the elephant cause it is because it got s um it is got snuck down,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 1 1 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 +and it got stuck now and then the other guy said here is the bigger dad and the eleph the other guy the other one said look the helicopter sneaked down oh the guy the guy is trying to catch it it gots all the way there and then they could not catch it that is a long one and then the guy got a like net oh the net catch everything,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 1 +he catch fish but it is hard to catch fish they are fast and helicopter is it is just a toy down there you can catch it fast okay should i turn and then the guy catched it and he give it back to the other guy and then the elephant is really happy and he went,0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and he what the ele elephant is happy and he went because he got that thing the end the other guy was building his sandcastle and the other guy with glasses they was happy and then turn the page now and then the guy w wants to mix it because he can not see or watch the guy put the pail,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 +it is going to wreck it now it is lots of sand and then he wrecked it that guy that is his sandcastle he wrecked it and then the other guy build another sandcastle but it is not nice the end the guy said bye to the guy the guy with the glasses and then he went,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 +and he sit and he was playing with the sand they was eating and snow uh and snow came down um and then they was cold and they went in the house and then they came back out and it was so windy and then they came back out it was raining,0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 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 1 0 0 0 0 0 1 0 0 1 +and when they came back out it was sunny and when they came back out it was windy again and when they came back out it was sunny the end um the guy went with the pail with a balloon on and then they see it they want to get it to the sand they could not find the sandpile and then and then the other balloon fell in the sky balloons can fly in the sky when it is windy because it is not heavy,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and then the guy wants to take it off whoa it forgot to go it is not hanging in tight like that it is like this flied off it is gone he can not catch it in the air oh yeah if that guy was with it then it is windy so hard it can fly with it if it is hanging on,0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 1 +oh it is flew he took it out and it flied up and then th and then the balloon pop and the guy was mad and the other guy was sad and the other guy bought lots of balloons and he gived them to the kid and the other balloon popped the last one and then the other one popped that is it,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1,0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 1 0 0 1 +and then another one and then it is not going to pop and then okay anything to say about this page here um page eleven and then the guy look look how many balloons he say and then he give him some money and he and then they jumping to get the balloon the guy can not see,0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 +they just gather by his hand and he went and then they hung on their arm and then they hanged on on the balloon they hanged on on a balloon and then they smiling the end it looks like a giraffe and an elephant that are going swimming and they are playing with a ball although it although when um they were playing with it it um maybe bounces in the water and the giraffe tries to swim and get it,0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the giraffe got it and gives it to the elephant and the elephant thanks him and the giraffe is smiling it looks like they might want to dive in and go swimming looks like the elephant is pointing to the diving board to um and he wants to dive and um the elephant starts to run although it is slipery so she starts to slide and she falls and hurts her knee,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 +and then um the lifeguard comes and he puts a bandage on it then he um saying probably that there is a no running sign and that you can not that you should not run cause you can slip and fall and then he is pointing to the sign that says no running looks like they are talking about something and then he and then the giraffe looks like he is showing her his new airplane and she looks like she is getting dizzy watching it going around in circles and she takes it from him and starts to looks at him and the giraffe looks like he is getting mad and then she accidentally dropped it in the water,0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 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 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and she looks like sh she is scared or something and the giraffe looks like he is m really mad and then the lifeguard comes along and probably says what is that and what is it doing in the pool and then the elephant is probably blaming it on the giraffe that he threw it in the water and the lifeguard is trying to catch it trying to pick it up out of the water although he can not reach it and the giraffe looks like he is getting really sad so he starts to cry and then this lady elephant comes along with a net and she tries to fish it fish it out with the net,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 +and she gets it out and gives it back to the giraffe and he is all happy and he is hugging it it looks like two it looks like a bunny and um and a dog or something playing in the sand and they start and the bunny looks like he is helping the dog make a sandcastle and the bunny pours a whole bucket of sand on it and the dog looks like he is getting sort of worried and the bunny s gets surprised because it is all covered in sand and the dog starts to cry and the bunny looks like he is embarrasseed,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +it looks like the dog is going for a picnic and the bunny is coming along with him it looks like the bunny is looking at all this good food that he wants to eat and he eats it all and he and he i guess he has a stomachache and then he starts to feel sick and it looks likes he is fainted and the puppy the dog goes to find somebody and he fi h um he finds this um lady and he pulls the lady to where um the bunny dropped out,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 +and the and the lady was a doctor so she tested him to see if he was awake or not and she took him and she is probably going to take him back to the doctor office to check him up it looks like she is pull the dog is pulling a wagon with a balloon on it and the and the bunny is coming like running along and he sees the dog and he is waving and the rabbit pra um looks like he is saying um like nice balloon and then the bunny tries to pull it off,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 +and the dog looks like scared that it will fly away and then the bunny accidentally lets go of it and it starts to fly up in the air and they are trying to catch it although they can not and the bunny is looking up at the balloon and the dog is getting really mad and then this um old bun this bunny is selling balloons and the bunny sees it so he runs over and then he asks the bunny the older bunny for a one of the balloons,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and then the balloon man said that the balloons are five cents and the bunny looks in his pockets and he does not have any money and the bunny looks sad because he can not buy another balloon for his for the dog and then the bunny walks over to this lady and he asks her for some money and the lady gives him five cents and then they each got one of their own balloons there is an elephant and a giraffe by the swimming pool and the elephant is banging a ball with his trunk,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and the elephant kno accidentally knocked the ball inside the water and the giraffe had to go and get it he had the giraffe had to swim inside the water to go and get the ball the giraffe got the ball back for the elephant and the elephant and the elephant was happy to get the ball back the elephant and the giraffe are standing by the water the elephant ran closer to the water the elephant slipped and the giraffe is running to s stop the elephant from falling on the ground and the elephant fell on his her knee and hurt it,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 +the giraffe is trying to fix the elephants knee and this oth another elephant came and put a bandage on it and all the giraffe the elephant and the other elephant are the giraffe is sitting down and the gg giraffe is standing up and the elephant is still the other elephant is standing up and the girl elephant is sitting down the elephant is the elephant and the giraffe are happy the giraffe is playing with a toy plane and the elephant is looking at it and the elephant took the toy plane and started to play with it,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the elephant dropped the toy plane inside the water and the giraffe is getting mad at the elephant and the lifeguard came and s looked at the toy plane and then the elephant was looking at the lifeguard and the one the giraffe is looking at the plane and the ele the elephant asked the lifeguard to get that plane out the lifeguard is holding onto the edge and trying to get the toy plane out and the elephant and the giraffe are looking at the plane and the lifeguard can not get the eleph the um plane out so the giraffe started to cry,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 1 0 0 0 0 0 1 +and the and another lifeguard grabbed a net and tr and tried to get it out and the other lifeguard um caught it in the net in there and um the everybody was looking was proud and that other lifeguard got it for the giraffe and the giraffe was very happy and the elephant and the giraffe are very happy to get the plane back there is a rabbit and a dog playing in the sandbox and the rabbit and the dog are making a sandcastle and the rabbit fulled the bucket of sand and broke the sandcastle and now the rabbit is a bit frightened of what happened to the sandcastle,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 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 1 1 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 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and the dog ha is trying to make the sandcastle all over again there is a dog and a rabbit they are going to have a picnic and the rabbit took all the food out and is getting very hungry the rabbit ate all his food and the dog is still drinking and eating his food very nicely and the rabbit is very ff full and the dog is still eating his food and the dog sees a doctor and ran over to the doctor and the doctor is the dog is pulling the doctors leg arm to move it over there,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 +and the doctor is gon going to take um the the bunnys the rabbits uh is going trying to fix the rabbit and the rabbit is all better now the rabbit is running over to the dog that is pulling a wagon with a balloon on it and the rabbit is trying to grab the balloon and the rabbit is untying the balloon from the wagon and the dog is very proud and then the balloo the balloon slipped out of the rabbits hand and went flying up in the air and they are all try and the rabbit and the dog are trying to catch it and the dog is very mad at the rabbit and they s and the rabbit sees another man selling ballo a balloo a man selling balloons,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 1 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 1 +and he bought one the rabbit bought one balloon and he and the rabbit has no money for balloons and th and the rabbit and the dog are trying to get a balloon and the rabbit went to th to the to this other rabbit to the doctor and the doctor saw him and the the ra other rabbit is pointing to the balloons and the doctor is buying a balloon and both of them have a balloon the girl has three ba balls and she is and there is a a big one and a medium sized and a small ball,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and and there is um a giraffe that would like to play with one by accident he s the girl throws the ball into the pool the giraffe goes try he is in to swim for it he gives it back to the girl and says that is okay he is smiling at the girl the girl elephant and the boy giraffe are looking at the pool okay can you talk a bit louder cause someone is making noise out there what is next the girl the girl is running the girl is running mm okay,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 1 0 0 0 1 1 1 +she she accidentally slips and she hur and she hurts her knee and now she is crying crying the lifeguard comes running he put the bandage on on the um bruise and she now she is sitting down on the um bench he points to the sign that says no running and she was running the boy giraffe have a toy airplane and the girl giraffe the girl elephant is asking to play with it,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,1 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and he wa and he um and he is showing her how to do a loopdeloop with the airplane and then sh and then she takes it sh she is looking at it like it is hers she accidentally drops it into the pool the um gira the boy giraffe is getting mad at her the la the l when the lifeguard sees he he is kind of happy and he is kind of mad the girl the elephant is telling hu him what happened he is trying to reach out to get it the boy giraffe is crying because they can not get it,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 1 1 0 1 0 0 0 0 0 1 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +the the other gir there is another girl elephant that has a net and she thinks that she can get it and she can get it she giving it she is giving the toy airplane back to the giraffe and he is hugging it because he loves it there is a rabbit that is making a castle and there is another rabbit that wants to help that rabbit make the castle they they are helping make the castle together one one is building the castle and one is making the walls,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +one one one is ac one accidentally pours the sand right onto the castle and the other one looks embarrassed uh after he pours it on all there is is a tower from the castle and it is all gone and the other one is kind of smiling but one has a frowning face and that other that other wa one that had a that was smiling is now crying and the other one is thinking of what he did that is the end of the story there is two there are two rabbits,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 1 +one is running to the other with a pis picnic basket and the other one is holding a pis picnic picnic basket one said one has opened up his picnic basket and he is eating all the food and the other one is s still opening hers up when he is done all his food he kinds of he kind of faints and the other and the other one is still eating uh he feels kind of sick and and he the other one is still eating the one that was still eating ru runs to get a doctor,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 +and and he is telling her him her what happened to her friend now she now she is pulling the doctor to her fr her friend the doctor is speaking to the boy and to tell him not to eat too quick now the boy is all better and now and now the girl and the boy is going home there is a girl that is pushing her wagon and uh there is a girl that is pushing her wagon and on the wagon there is a balloon and the boy and the boy rabbit is chasing after her he wants he wants the balloon so he reaches out,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 +and she is kind of have a frowning face what kind of face a frowning face oh frowning okay when he gets his balloon the gir the girl um kind is saying hey and he is playing and he is tying it to his wrist he lets the balloon go and it floats away the girl is getting really mad at the boy,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 1 1 0 0 0 1 0 1 1 0 1 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and soon they see another rabbit that ha that is holding balloons when the bo when the boy s when the boy sees that he asks if he can have a balloon the man said it is five cents and the boy does not have any money he says it is okay maybe next time you will have some and when the boy sees the doctor he asks if he can pay for the if sh she can pay for the balloon for both of the balloons i sa the doctor says y yes and um they both get a balloon right here she is paying,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 1 1 0 0 1 0 0 0 0 1 1 1 0 0 1 +and they both really like their balloons there once were two friends and they were playing a game and they wanted to go swimming so then they got there and then they were playing and the ball fell in the pool so one of the friends swam out and got it and then they got it and one of the friends she took it out,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then they wanted to play again there were two friends and they were the same one in the last story and they wanted to go swimming again so they went and then one of the friends she wanted to go in right away so she ran and sh and she wanted to jump in but then she fell and she scraped her knee,0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 +and the lifeguard came and he said oh it is all right here is a bandage here you can sit here and wait til it is better and then she was happy she took a little rest there were once two friends and they wanted to go swimming so they went and one friend bought brought an airplane,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 +the other friend grabbed it and said wow an airplane and then she accidentally dropped it in the pool and then the other friend was a l little bit mad so then she said uhoh and he went and then the lifeguard came and he went hmm and then she said i i accidentally dropped the airplane in the pool he tried to get it but he could not reach,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +so then the friend that ha had the airplane he was crying and then one lady she came and she had a net to get it she said do not worry i will get it and then she went and got it and then the he was happy again and then they were both happy and she was happy he got his airplane back once there were two friends,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,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 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 1 +and they went and they wanted to play in the sandbox and they built a sandcastle and it was really nice and they needed lots of sand to make it unless unless it would not work out and then he put too much sand on it that it all collapsed and fell and then and then one of them started to cry so and then he wanted to rebuild it once there were two friends and and they wanted to go on a picnic they packed all the lunch,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and when they got there they started to eat and they started to eat and one of them felt really sick so they had to get a doctor and and while the doctor was coming when the doctor was coming he felt really sick and he k he could not wait and the doctor came one of the friends she ran up to the doctor she said doctor doctor help my friend is sick,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1,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 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 1 0 0 0 1 +we need some help so he feels better the doctor said oh my he has a he has a very bad tummyache and he felt better because the doctor made him feel better and then he lived happily ever after there were two friends the same ones in the last story that i read and they wanted to go on a walk so they went and they and they saw and they saw somebody with balloons and they they got one and they tied it on,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 1 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 0 0 1 +but then it went up in the air and they were sad and then they they kept going and then they saw a man another man with balloons and they went they wanted to get some say so they got so they got some and then they left but then they did not have any money and he was sad and the balloon man said hm i do not know if you can get a balloon,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 1 +and they did not d get any and then they saw a lady and see she was and then he asked can you get us some money so we can get a balloon and then so she bought a balloon for them and then they were both happy uh hm once upon a time then there was a elephant going then the ra then the he came and was and a ball was in the pool then he tried to swim in there but he could not,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 1 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +then she pick the ball up then he was all wet then that is the end of the story once upon a time a elephant came along and that then then then then then she wanted to then she wanted to go but she falled on herself and the more she was running she falled and someone is going to help her and she got a br um a owie then come along elephant came then the elephant came,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 1 0 1 0 0 0 1 +and he and that was a coast then there was a owie going and there was but then there was nothing to do then the animal was all better and he said no running because if you run you fall on yourself i never do that i but i run on a sidewalk and i like like while i was two like once upon a time she did not allowed in something came and and then there was an airplane going in the water and she played it and something,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 1 +and she taked it away and throwed it in there um then then he was angry and she and the boy told her you did it on a purpose then a lifeguard came then then the airplane was still in there he wanted it out he tried to reach it but he could not and someone got it but she was very trifle,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +um then someone is going to pick in a net um then someone is going to pick it then he was happy then he was glad then she was glad they were making new friends again then the end of the story once upon a time he she built a nice sandcastle but then that rabbit then the rabbit was surprised then c then they were making a other castle,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 1 0 0 0 0 0 0 1 +then someone pushed it down and that was her like like a rabbit or maybe someone else and it was rabbit and she did not do it so she tried to fix it and he was not uh pleased then that is the end of the story he she was walking by and then then a rabbit was going by and a puppy saw her,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,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 1 0 1 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 +and a puppy said i am going to picnic like you so they had a nice picnic and he was getting goofy and suddenly he was tired and he was full of candy and he is getting sicker sicker and sicker then he knowed he was getting sicker and sicker and he she needed him to help her he was so full he could not even walk and the rabbit said get up,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 1 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 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 +and then he was fine at all then she was trying to pull it but he was so happy a ra and a other rabbit came along and she said what are you doing i am just pulling some stuff and a balloon was not going up and she was happy suddenly it was going up and up and up and up and up and up then suddenly he wanted a other one,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and she was angry there she came just a sec then he was going to get a other balloon she was angry and he wanted a balloon and he said yup i want a balloon and he did not know and the said no can you see,0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 1 +and and he said you do not have any money that is that is not doing then then suddenly he had idea and a rabbit had money somewhere to find and that was someone else looking in a far away and she said what is it you are doing i need some money but and she said she did not know what she need the money for then then she give him some won money and they wanted two balloons,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 1 +that was all and he wanted them two but others heard it but there was two left then they got both the balloon and they loved it then they hugged it and then something went then then then she was surprised and that was true that is the end,0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 1 +so a guy there was a giraffe he was at the pool then he met a girl bouncing a ball but the ball fell in the water and the man the boy tried to go get it and then he got the ball and then he was still all wet because he was in his clothes there they saw a diving board and it and it said no running and the sign said but,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 1 0 0 0 0 1 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 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 +and then she started to run and then she slipped she fell on the ground and she hurt her knee and then the lifeguard came and put a bandage on it sat on a bench and then the lifeguard said you are kicked out a boy was there and the girl was there and then the boy had an airplane in his hand,0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +he flew it around like this and then the girl grabbed it out of his hand and then it slipped out of her hand and it went into the water it was a pool and then the boy got so angry and the lifeguard came and the girl said it was an accident i accidentally got the w plane in the water so the lifeguard tried to reach it,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,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 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then he could not the lifeguard girl came and picked it up with a scooper and gave it back to the boy and then he hugged it he hugged the plane well he were in the sandbox and he meant and he somebody had a sandcastle built up and they played together and he put some sand in a bucket and the other guy touched the castle and then the rabbit put the sand on the castle,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 +and then he got so mad so then they tried to fix it there so he was on the road somewhere and he put his hand out like this and he saw somebody run down the street and then they decided to have a picnic together one is eating a carrot and then he got so full because he ate all the food and he got so full that the basket fell over,0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,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 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and then his dad came and he is still laying on the carpet and then he the child pull the dads shirt and then he said go to your room now and then he he sna and then the other guy went home because the other guy was not really his child the other guy was re really not his child so the this boy met a girl pushing a wagon with a balloon attached to it and then they wanted to play together so and then the boy took the balloon off,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and it floated up into the air and then the girl got angry so then another man came by selling balloons so the girl wanted one so then he uh the guy looked in his pockets to see if he had any money but he did not so he had to walk back and ask somebody else to for some more money then he got more money and then they got another balloon they each got a balloon the elephant is talking to the talking to a horse,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 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 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +the elephant is pushing the horse the elephant pushed the horse in the water the elephant is helping him out the elephant ah being nice and that is the end the elephant is being nice elephant the elephant is going to jump in the water th the elephant is running the elephant got a got an owie the elephant is crying,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 +uh the daddy is putting a bandaid on it and she is sitting on a bench uh and she was and she is be and she was just teasing she was just teasing that she had a owie the elephant is making funny faces the elephant is uh looking at the airplane the elephant s wants to fly it the elephant is the elephant is sinking it the elephant is and the elephant is looking at the airplane sinking and hm the elephant is mad,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 1 +and she s she said to her dad that that that i sinked his airplane and the dad is trying to get it and the dad is putting his hands out like this and and the ga and and the fly fly swatter uh and she is trying to get it with the fly shw ss swatter s and and she got it out for him now the elephant is happy and that is the end um they are playing in sand the rabbit is digging in sand the rabbit is putting sand on the sandcastle,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +the rabbit wrecked the sandcastle and and the piggy is sad and he is building it back up and that the end the rabbit is walking down the path the ra they are having a the pig and the rabbit are having a picnic the rabbit is eating candy the rabbit is the rabbit is feeling sick and they are gi and the and the pig has a flower in his hand and the pig is pulling the the girl bunnys hand,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 1 0 1 +and the girl bunny hit him on the head and the girl bunny is taking him and that is the end the rabbit wr walking down the path again the rabbit is looking at the balloon the pig has a f um the rabbit is untying the balloon and the balloon is going up and the pig is getting mad at the rabbit and and there is another rabbit and they are going to go buy another one,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 +and they are going to get one and then they are going to ge go get another one from someone else then they are going to go get another one from someone else and then they got one and then the and then the then the gi then the girl um and and the rabbit is running to the girl bunny the girl rabbit n and and then and and he is pointing to the balloons and and they want another balloon so they are getting their mom to buy another one and this t and they got their own this time and that is the end a girl is bouncing a b a ball,0 0 0 0 0 0 1 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 1 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 1 +the ball went into the pool the moose went to go get it the moose got it and brang it back and then he got out of the pool got out of the pool and the girl was happy they they see a pool they run to the diving pool now they are running to the diving pool okay so you were thinking about that because you knew what came next anything else on this page they see the diving board,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 1 +so they run to the diving board the girl ran so fast that she slipped and hurt her knee the lifeguard came to see to give a bandaid bandaid the the moose went to go get him the lifeguard gave her a bandaid she thought it really hurted and then the the lifeguard took her to the bench and then she tried touching it and it was better and then the lifeguard pointed to a sign,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +she looked it said no running the moose has a plane they were going to play with it at the pool the moose fl fl made it fly okay you were showing me with your hands and then the girl took it away and threw it it landed in the pool the moose got really mad the girl said oopsies,0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1,0 1 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 1 1 +the lifeguard came she was scared she told what how um how how it happened the lifeguard tried to reach it but he could not the moose cried the lifeguard got a net and got the plane with the net then pulled it out so sh so the moose can have it and then they had fun later there are two boys making a sandcastle one of them smoothed it up,0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 +the other one put sand on it since he was getting tired of doing that he dumped the whole pail on and then the wh whole pail cover most of the sandcastle one of the boys started to cry two people had a picnic one of the boys ate had more than the other one the the one of the boys had l had too much to eat he got he ate a little more and he got dizzy and then and then um a the other boy saw a girl,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 1 +she pulled the girl to the picnic and the boy wa the boy was not so dizzy any more because the girl helped him a boy was pulling a wagon with a balloon on it the boy saw the balloon the boy was untying the balloon the balloon floated away the other boy got mad at him he so he the other boy looked up and then they saw more balloons so they went to go get one,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 +but but it costs money and that was this page and then the boy checked his pockets but he did not have five cents so the man with the balloons said no you can not have one because you do not have any money and then a boy found a girl the boy asked her nicely if she could buy him a balloon the girl gave him a balloon they both had a balloon now the elephant and the ah,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +the giraffe was uh saw the elephant was bouncing the ball and the the ball was on the water and giraffe trying to get the ball on the water and the giraffe got it and the elephant get it and the giraffe was wet the end once upon a time a the elephant and the giraffe was saw the water and and ahh um the elephant want to go on the water and the elephant go right away to go on the water,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 1 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 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the elephant slipped over the the ground and the elephant got hurt on the knees and the elephant was crying and the and the elephant was putting a bandaid on and the elephant was the elephant was ahh ahh mad because it hurts on the knees with the bandaid and they feel better and they sit down but the elephant ahh looked so mad because theyre the giraffe and the elephant want to go to the water the end the giraffe and the elephant,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 +the elephant saw the airplane on the giraffe hand and the elephant was saw the airplane was flying and the giraffe was standing uh with the airplane and the elephant take away from the giraffe airplane and the elephant want to see it and the elephant drop it in the water and the giraffe was very angry and the elephant and the giraffe was saw the the other elephant was saw the airplane in the water and the the elephant was uh say the she was dropped the airplane in the water and the uh the elephant trying to go get the the airplane,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 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 0 0 0 0 0 0 0 0 1 +and he can not get it but uh the giraffe was crying with the airplane and the then the other uh elephant will get the airplane with that thing to for the fish and she the elephant trying to get it but it is too hard to get it but she get it the elephant got it now and the uh giraffe was happy and the elephant and the giraffe was happy too the end,0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 +the bunny and the the dog the dog was making a sandcastle and the rabbit want to help the dog and the rabbit was making a sandcastle and the dog all finish and the rabbit was trying to put the sand on the castle and the dog was so scared the the rabbit trying to put the sand on the castle and there is breaked the the sandcastle and the dog was crying,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and the rabbit was so sorry breaked the sandcastle the end the dog and the rabbit was going to the picnic and the rabbit was have the carrot and some hot dogs and some cake and some sandwiches and the rabbit got too much to eat and the rabbit got a st stomachache and he is getting so fat and the doctor was came and saw the rabbit the and the dog tried to get the doctor and the doctor was coming and saw the rabbit there,0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 1 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the rabbit was so have a stomachache and he feeling right sick and the rabbit go home and he felt better the end the dog and the bal the dog and the bunny was saw the balloon the color pink balloon and and the rabbit went to see the balloon and he trying to take it off for the dog and is is floating away from the dog and the dog was right angry because the bunny was let go of the balloon,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and the dog and the rabbit saw lots of balloons there pink green and orange and blue and purple white and gold and the rabbit choosed the blue one and that and the the nother the another uh rabbit was right angry because that is number five so the rabbit and the dog want to pick the balloon but the doctor there because the dog was sick and the the doctor saw the dog was sick and he has got some the doctor got some monies for the dog and the rabbit for the balloons and the dog got the color the gold balloon and the rabbit got the color the blue balloon,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 1 +the end the elephant was playing with his ball then he threw it in the pool then the giraffe catch the ball and throwed it to the elephant and he pick it up x okay what did you say they want to go in the pool he was running,0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1,0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 +then he slipped then hurt his knee then he cried what is that then the lifeguard go and he closed his eyes and it hur hurt then uh the lifeguard told him that he it says no running the elephant looked at the giraffe playing then he played with it,0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +then he grabbed it then he throw into the deep pool and the giraffe been angry and the lifeguard came he and he told him that he throwed um the giraffe plane into the deep he tried to grab it but he can not and there was daddy he get the plane and he catched it,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 +and he bring it back to the giraffe and he hugged it tight to the the bunny and the dog are making a castle castle the bunny put sand in his bucket and he dump it all and he wreck the dogs castle mm he he he pretended to he did it to him the dog and the bunny went going for a picnic the bunny ate some food and he ate some more,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and then he has a stomachache then the dog got by the doctor and he grabbed him and he uh he told the dog that he has a stomachache and then they came the dog and the b bunny went to see the bunny the the bunny see he sees the dog then he tied up the balloon and the balloon went up and the dog got angry,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +then the bunny losed it he talk the mom to give him the balloon but he do not have money the the the bunny and the dog have no money they come to go to him and then the dog the bunny goed and he gave both balloons to them bunny and the dog um the donkey wanted to play uh with with another animal with his balls um they they went to the swim pool and they they found a friend,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 1 0 0 0 1 +and he jumped in the water and splashed the elephant by accident and the elephant picked the ball up and the giraffe asked if he could have it and he came out with his cloths on um they went back to the swimming pool and did not want to go into the water the elephant wanted to go in the water but the giraffe did not um the elephant asked if he could race the giraffe to the diving board but the elephant tripped and and fell and hurt her knee and the swimming person checked if he was okay and put the bandaid on her,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and she feeled all better and she stayed there so she could get better um the giraffe throwed his airplane and it flew but but by accident he th threw it too soft and it fell in the water and he tried to get it out but he and he did and without asking the elephant grabbed the airplane away from him because she wanted to play with it and because they was grabbing they grabbed,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 +and it fell in the water and the giraffe was angry at the elephant because she throwed it in by accident the lifeguard was mad because they throwed it in and toys was not supposed to be in the water and the elephant said look what i did it was by accident and the lifeguard tried to pick it up but he could not the lifeguard could not so he just got up,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 +and he had an ide a plan he but he did not his wife took um a stick with a rope on the ss on the front and he catched it out he tried to she tried to catch it out an but she could not and she did and she gave it back to the el giraffe and now he was proud of the girl because she got his plane back the bunny said hi to the dog,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 1 +and the dog was making a sandcastle and the bunny wanted to help but the dog said yes and they started building a sandcastle and then the bunny dumped a bucket and it and it and the castle fell down and the dog was mad at the bunny and the bunny was sorry because he knocked the sandcastle down and then they builded it all and then the dog builded it all up and crying the dog said hi again to the bunny,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 +the bunny was racing down with a basket of food so was the dog and when they got there they unpacked the food and they started eating and the bunny tummy hurted and he was sick of the food and the dog raced to the doctor and said doctor doctor can you help my bun my friend bunny is sick doctor doctor come on come on doctor,0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 1 0 1 0 0 1 1 0 0 1 0 1 1 +come on my friend bunny is really sick because he eat so much food okay okay he took his temperature and he was sick sick and and then he checked the bunny again and he was all better the dog said hi again and the bunny wanted the balloon and said where did you get that from i want that balloon right now,0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 1 0 1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 1 0 1 +and he untied it from the wagon and it started float floating off the wagon and the dog was mad at the bunny because he untied it and he wanted it and then the bunny had a great idea he can go over to the balloon man to buy another balloon and they asked could we have two balloons please and uh and it cost it costed five dollars and he had he did not have any money in his pocket so he could not get a balloon,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and they said please but no only for five dollars doctor can you help us can we have five could we have five dollars for both of us so we can have a balloon he said okay you can have balloon i i do not we do not have any money in our pockets so please can you give us five dollars so they gived him five dollars for both of us and then they got the two leftover balloons and then they was proud of the doctor because they got a balloon,0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 1 1 0 0 1 1 1 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the bunny said sorry to the dog because he uh he wanted the balloon and he untied it so he said sorry play ball and he taking swimming pool and he get it and thank you and welcome uh and over play swimming,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 1 0 1 0 1,0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 +and go in it and and run and walk on knee and her cry and cry lots and sit on bench and stay here the what and stay on bench over play,0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 0 0 1 1 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 1 1 1 +play play a play and play a play again and play it in in water and it angry and say bad and dad what is that daddy i play in pool,1 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 1 0 0 1 1 0 0 0 1,1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 1 0 0 0 1 +and they are get it get it i am get it looking and get it and it in there i get it you get it and loffed it loved it loved it he play on s in sand and play make castle,0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 1 0 1 0 1 0 0 0 0 0 0 0 1 0 1 +and dump it and what dump it oh no oops sorry and cry uhoh they go picnic and eat and they drinks juice,0 0 1 0 1 0 1 0 1 0 1 0 1 1 0 0 1 0 1 0 0 0 1,0 0 1 0 0 0 1 0 0 1 1 0 1 1 0 0 0 0 1 0 0 1 1 +and hungry and that girl her tummy that man sick she what sick and a bunny his tummy hurts and turn that and go doctors house he what doctor all done,0 1 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 1 0 0 1 0 0 0 1 0 1 1 0 1,0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 1 0 0 0 1 +her play and hold that up higher tie it up and up higher and up clouds angry and man what man balloons on it him him take one,0 1 0 0 0 0 1 0 0 1 0 0 1 0 0 1 1 0 1 1 0 0 0 1 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 1 0 0 0 0 1 1 0 0 1 +and and x and bring doctor here and check and talk and money and balloon and two balloons and over there are these two kids one has a ball and she is bouncing it really fast by a pool,0 0 1 0 0 0 0 0 1 0 1 0 1 0 1 0 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 1 +and the ball falls in so the other kid jumps in and swims to the ball and he gets it for her and then climbs out there is these two kids and they are looking at the water and one of the kids says that there is a diving board and it looks like fun and the kid who said that the diving board looks fun runs and slips and hurts her knee and the lifeguard comes and puts a bandaid on the hurt spot and puts her on a bench and shows her the sign no running there is these two kids,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 +one has an airplane and he plays with it and the other one takes his airplane away and accidentally drops it in the pool and the other kid is really mad at her so she go gets so she gets a lifeguard and she asks him if he could try and get the plane out and he tries but he can not reach it and he does not know what to do and then this lifeguard with a net comes and fishes it out and gives it back to the kid,0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the kid was really happy to have his airplane back um these two kids um are going to build a sandcastle and they start building and then one of the kid um dump sand on it and then it is all flat and then the other kid cries because it is broken that is kind of dumb these two kids are going to go for a picnic and the first kid took um all this unhealthy stuff and he starts eating,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he gets all sick and the other one he gets all dizzy and the other kid runs and gets s the doctor and the other one pulls the doctor to him and then he checks him out and then he says that he is going to give him a checkup um there is these two kids one of them comes up and and says hi and he sees the other ones balloon and then he starts taking it off the wagon,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and and the other kid is yelling and then he accidentally lets go and the other kid is really mad so he sees a guy that is selling balloons and he asks if he could have a balloon and then the guy shows him that the balloons are five cents and he does not have five cents so he goes to his grandma and asks if he could have a balloon and she says yes so they both get a balloon,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 1 +one day a giraffe saw her friend the elephant playing with a ball gira the giraffe took the ball and threw it in the po in a pool nearby the elephant was scared the ball might sink so the giraffe went to get the ball the giraffe got the ball for the elephant and the elephant was happy then the elephant thanked the giraffe one day the giraffe and the elephant were at the pool the elephant said let us go off the diving board the elephant ran,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1,0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 +and so did the giraffe the elephant fell and and hurt her knee the lifeguard came and helped her he put a bandaid on the elephant while the giraffe watched the lifeguard told the elephant not to run in the pool or she might slip so the elephant sat down and did not run one day in the elephant and the giraffe were at the pool the giraffe had a a a little plane the giraffe played with the plane,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +he did loops and swirls and s things like that then the elephant took the plane and tried to play with it the elephant dropped the plane into the water the giraffe got furious and the ele and the elephant got scared then the lifeguard came the elephant told the lifeguard that she was playing with the plane but she dropped it in the pool the lifeguard tried to get it he said he could not reach it,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 1 +and the giraffe started crying then a woman came with a net she took the net and she took the net and took the plane out the boy was really happy and thanked the ele the woman the boy got his plane back and he was really happy and so was the elephant one day two rabbits were playing in the sandbox one rabbit was digging out some sand the other one was making a sandcastle,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +the rabbit poured the sand in the bucket on the sandcastle the rabbit got conf the rabbit poured on the sand and i can not make this one um uh just tell me what is happening the rabbit is like scared because then the other rabbit might get mad at him the dog or rabbit started to cry and the rabbit just stood there one day two friends met to go to a picnic one friend kept on eating and eating and got and keep kept on eating and eating and got really full by the time he finished he was really stuffed,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 +the other friend just drank some juice and some bread w when the other friend found the doctor who was in the park h he went to get him to see if there was anything wrong with her friend she begged the doctor to come so she did so the doctor came the doctor checked the rabbit and it seemed that he had a stomachache the doctor told the rabbit to not eat too much junk food so the rabbit did not get much of a stomachache one day a the rabbit met his friend the dog which had a wagon and a balloon the rabbit liked the balloon,0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +so he pointed to it the rabbit untied the balloon and the dog just stood there with surprise so and then the balloon flew away the dog got mad at the rabbit then the two s saw a man holding a bunch of balloons the rabbit asked for another balloon the man told him it was five cents but the rabbit did not have any money then the other friend came,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +the rabbit went to see his mom and s and the his friend watched him as he walked to his mom he told his mom he wanted a balloon the man gave two balloons to the to the two friends and the mom paid the money they the two friends thanked their the mom um let us play boys the ball went in the water i got to swim and get it i got another ball to swim with it,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 1 1 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and i am playing with it aaah i am all wet the end let us swim i am jumping in the water let us run ow are you okay and it hurts i need a bandaid,0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 1 0 0 1 1 0 0 1 0 0 1 0 0 0 1,0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 1 0 0 1 0 0 1 0 0 0 1 +it is still hurting i got to go to the doctor the end pigs do like this let us swim i am crying i found a airplane give me that airplane my airplane oh do not be angry at me,0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 1 0 1 0 0 0 0 0 0 1 +let us get it oh we got it i got it in right he getting out of the water no okay let us catch it i got it thank you my favourite airplane the end,0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 0 0 1 0 1 0 0 1 0 1,0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 1 1 0 0 0 1 0 0 1 0 1 0 0 1 0 1 +um you play in the sandpack you dig a you put the sand in the bucket and you dump it on the castle and then then um then then the castle broke and then the cried the end he is walking and then he says hi he eats his sandwich with a carrot and he drinks his juice,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 +and he cries um i am thirsty you stole it i said it you stole it i do not know that page should we try the next page he cries goodbye the end,0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 1 1 0 1,0 0 1 1 0 0 1 0 0 1 0 1 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 1 +um here is a balloon um i am running around my balloons do not take it off ah the balloon it is flying aw the balloon is broken there is a lots balloons lots of balloons i want a balloon i only have one oh there is a lot of balloons,0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,1 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 1 1 0 1 0 0 1 1 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 0 0 0 0 0 1 +ah i want some balloons where can we put the balloon but our balloon is broken let us have another balloon and we got two let us have it we got two that kind the dog the giraffe and the elephant,1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 +the elephant was playing basketball with the giraffe and then the do elephant throw the basketball in the water the giraffe tried to save the balloon ball and the giraffe said here you go here is the balloon ball and now the elephants have the ball a giraffe and a elephant was going swimming and the elephant said i am going on the diving board and then the elephant hurts her foot and she slipped,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and she break her foot and and then the giraffe came to save her and then the swimming teacher came and then the s s the swimming teacher give her a bandaid and the swimming teacher gave her a bandaid and then and then the elephant said thank you for the bandaid and the teacher said no running said oopsie the giraffe is playing wi with his helicopter eh eh and the elephant wa want to play with with it too,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 1 +and the giraffe played with his helicopter and then the elephant take it away from him and then the elephant drop it in the water and the elephant was mad the giraffe was mad and the swimming teacher was to to look at the helicopter and then and then this the the elephant said that the airplane is in the water and then the swimming teacher is trying to save the airplane in the water and the the the swimming teacher said i can not catch the airplane and then the an and then the giraffe was crying and then a a swimming eh elephant was came to to rescue the airplane,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 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 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 1 +and then and then she saved the airplane and she said here you go giraffe here is the airplane and and then the the giraffe was happy the bo the dog and and the and the bunny want to build a castle first the rabbit takes the sand in the bucket then and then the rabbit taked the sand the castle and the dog is s scared and then the ra the rabbit is scared be because the rabbit break the castle and then the dog tried to fix fix the castle,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 +the rabbit and the dog went f for a picnic and then the rabbit i is eating his her lunch and the dog is is is eating his lunch and and because the rabbit have too much lunch now rabbit have a tummyache but the dog do not and the dog only ha only have some lunch and the dog says huh the rabbit is have a tummyache and now because the dog did not eat too much only the rabbit did and the dog said mama,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 1 1 +and mommy but the rabbits mommy and he said this hey mommy here is a dog he said huh that is not my children and she said she said i do not know rabbit i am a doctor and now the rabbit has gone and the rabbit go home except the dog the dog has a a dragon,0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 +and the balloon is hold up the dragon and then the rabbit came with him and then and then the rabbit found the balloon and then the rabbit going to take it off and and and the rabbit take it off and and it float up to the sky and the rabbit and the dog try to catch it and now the dog is mad and it and the rabbit was scared and then and then the rabbit and the dog bought some more balloons,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the rabbit said how much that cost it cost five cents but the rabbit had no money and the rabbit and the dog said no money aw x a balloon then they said mommy come here can you buy us a balloon and sh and the mommy said which balloons the balloons,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 +and then the mom buy the balloons called a nickel and then then they had the balloons then the the the cat and the the bunny and the dog is happy one day a giraffe meets an elephant playing with a ball then the ball fell into a little pool the giraffe goes into the pool to go swim to the ball to get it the giraffe got the ball and gave it to the elephant the elephant is so happy to have the ball back the giraffe gets up on shore,0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +one day an elephant and a giraffe fou found a pool the elephant decided to go down the ladder it walks but it runs but it f was tripping it hurts its knee the giraffe comes running an elephant lifeguard came to the elephant and the giraffe it helped the elephant it gave the elephant a bandage and let it sit on a bench the elephant lifeguard told the elephant no running,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 1 +one day the elephant and the giraffe saw a pool then the giraffe saw an airplane zooming by the elephant grabs the airplane from the giraffe then the airplane sinks in the pool the giraffe is mad at the elephant the elephant lifeguard comes the elephant told the lifeguard what happened the lifeguard tries to get the airplane he can not get it the giraffe is crying,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1,0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 +and the elephant is sorry then another elephant came along with a fishing net she scoops the airplane out with the fishing net she gives the airplane to the giraffe the giraffe and the elephant is happy once there was a rabbit and it meets a little animal they both try to make a sandcastle together the rabbit pours sand on the sandcastle the sandcastle goes down,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 +the rabbit feels sorry for the other animal once there was a rabbit and it meets an animal and they both want to go on a picnic they together have a picnic at the same place the rabbit eats a lot of things and he is stuffed then he feels dizzy and sleepy the other animal tells the rabbits mom it tells her to come to the rabbit,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 +the other rabbit wakes up the little rabbit and they go home one day the rabbit saw an animal pulling its wagon with a balloon the rabbit s is watching the balloon the rabbit tries to untie the balloon off the wagon but it after it goes uh up in the air the other animal is mad at the rabbit then there is someone that is selling balloons and the rabbit is asking for some balloons he is looking in his pocket for money,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +but he does not have enough money so i and he sees his mom so he goes over to his mom he asks for some money to buy the balloons the mom gaves the man some money to buy two balloons they have two now the rabbit and the other ha animal has two balloons one one day um a little giraffe and um elephant they were playing with three balls and they were g they were going to go in the swimming pool so they got to the swimming pool with tickets and then they sawl a ba they saw their ball in the swimming pool,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 1 0 0 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 1 +so they got it and then the gira the giraffe tried to come and get the balloon um balloon that they had so they he got it and then they then they got their ball and their balloon and then they went and played with them and so the elephant said thank you and then the giraffe said you are welcome and they played together with their um with their balloon one day um they the giraffe and elephant wanted to go swimming and then the giraffe ran,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 1 +and he and he ran in the swimming pool with her bathing suit on and then she then she hurt herself on the knee is that on this picture um uh yeah can you just tell me the story that is on the picture and you tell me to turn if i am not turning it fast enough and then she slipped because there was water when she was running and then and then she hurt herself so the lifeguard came and got her a bandage for her knee and then they so then they um went to swim again,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 +and she was all better so but first she had to sit on the bench a little bit and then she was okay and the lifeguard said no run can not you see the sign there is no running here the end one day there is a one day there was a giraffe and a um elephant the giraffe had a airplane and he was playing with it and then he al and then the elephant wanted to play with it,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +so he na so um he did but then she took it away from the giraffe and then she dropped it in the water is that on this page or was that on the next page it was on that page oh okay so then it sank in and then the life then the lifeguard got mad so then the giraffe tell me should i be turning yet,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +then the giraffe got mad at the elephant and she said she was sorry so she got her mom to catch the lifeguard is that what is on this page so the lifeguard could not reach it so she got her mom to reach it with a net and then the lifeguard she he came back to say sorry to the elephant because he he got mad at the elephant and then her mom catched it with um the thing and then the lifeguard he tried to get it again but her mom could not,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and the lifeguard could not so she got a big big net and she catched it is that on this page yeah remember i can not see so i just want you to tell the story that is on the page and then all the lifeguards and then the mom had a real long net so she grabbed it and she catched it and the giraffe said thank you,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 +and then she said you are welcome and then the they were both happy again and they played with it the end one day a lit a bunny rabbit went to the beach and she saw a p and he saw a puppy and she was making a sandcastle and then the bunny said can i help and the puppy said okay then they build a sandcastle,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 1 +and the bunny got a bucket and she and then he got a shovel and he put it and he put sand in the bucket to make a sandcastle and the and the puppy was making the sss um a water hole and then the and then the rabbit wrecked it because he put all of all of sand on it and it pushed it down and the w puppy was very sad and then the and the puppy tried to build it again but it did not work and the rabbit was just he did not say sorry or anything,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +one day the puppy and the rabbit came for a picnic in a forest and then uh the rabbit ate too much and he got sick and was too full so the so the puppy dog went to get some help and then she but she did not find anyone yet until he s until she saw that the rabbit was sick and and then she got a nur she got a doctor that was walking by and then she took the rabbit and and took the stomach away ache and then the bunny and the r um bunny was still sick so the puppy he um she pulled on the doctor and then the doctor went on the picnic thing,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and the s and he was really sick so the puppy went away because the doctor said he needs to be alone for a while and the end oh just a second i missed one did not i yeah and the it was after he needs to be alone for a while and then and then um the puppy came back and he was all better but he had to go lie in bed one day the bunny went he he one day the bunny went to the forest,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 1 0 1 0 0 0 0 0 1 +and he and on the way there he saw a puppy and then they and then they saw a clown with balloons and so they asked bunnys mom if they could have some money for a balloon and she said yes so then they got a balloon and then they then their balloon uh there was a balloon tied onto puppys wagon and it fell away it flew away so then um tell me when to turn and then it and then it went and it disappeared up in the air,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and puppy was mad at at bunny and then and then they saw a clown a bunny with balloons a clown bunny with balloons so they asked bunny so they asked bunnys mom if they could have some money and then they bought a balloon with their money and puppy was very happy and they both got two balloons and then puppy ran over there to get a balloon but bunny had no money so she had to go to um the mom to get his money and then after that they got some money,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 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 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and they gave it to the clown bunny and then they got two balloons one yellow and one red and then but first they had to get the money from the doctor that fixed that helped bunny and then so they got two balloons ye yellow and blue and then they got one for the doctor red and then i do not know you are not sure on this one nothing to say on this one okay we will just turn then and then they bought the balloons,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 +and then they and then they got two balloons and then they were happy and they played with them and then they played with them and played the end once there was a giraffe who was standing by a pool and a elephant said came with a swimsuit on and said you want to play fetch but they were not so sure about playing near the pool just then when the elephant blew it with her trunk it fell in the pool the giraffe jumped in and swam to get the balloon the ball,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 +the giraffe came back with it in a minute and said and the gira and the elephant said oh you you got my balloon ball thank you sometimes i get mixed up with the words the giraffe felt pleased that he that he got the ball for the for her friend but the elephant just sta just stood there and smiled the end the giraffe and the elephant went to the pool because it was a hot summer day they were they looked at the pool and they were excited,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 +but the elephant said hey i am going to go off the diving board but she did not read the sign which said no running so she ran anyway just then the el the giraffe was catching up with her when she slipped and fell on her knee she got a cut on her knee and the giraffe went to get someone a lifeguard came as quickly as possible and helped the elephant the elephant thought it was going to sting but it did not they they put on the bandage,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 +and it was and it looked good as new the lifeguard was disappointed and the girl stood sat on the bench and said hi and the lifeguard was pointing at the no running sign the end the giraffe and the elephant went to play by the pool and the giraffe got a new toy plane and said you want to play with me the elephant said sure the giraffe flew the plane first but the elephant was so excited she just grabbed it out of her hands,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 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 1 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +the giraffe said my plane give it back i was not done my turn but the elephant did not care she was just flying it around just then she flew it too high and it fell in the pool and it started to sink the giraffe was mad at the elephant but the elephant just stood there puzzled the lifeguard came right by the two girls,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 +and one of the girls said one of the elephants said i can explain i i did not do it it was the giraffe just then g g the giraffe said she is lying it was her then it came like it was a big argument so the lifeguard said cool it who dropped it in the pool and the giraffe was pointing at the elephant the lifeguard tried to get catch it,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1 1 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +but it was floating in the pool the giraffe started to cry when the lifeguard said he could not reach it and the elephant felt sorry just then a lady elephant came with a net she quickly got the plane with the net and it came and she pulled it f to her she said here you go is this your airplane and the giraffe said yes thank you very much the giraffe hugged her plane,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 1 0 1 0 1 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 1 +but the elephant was happy the end one day at the park there was a baby dog who was making a sandcastle just then a bunny came along and said can i help you the dog said sure they wanted to help build a the biggest sandcastle in the world so the rabbit was going to build it so he got some sand in a pail and started digging just then he decided that a shovel was not so slow after all so he decided to dump it on the castle,0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 +so he did but when he realized he had wrecked it he was so embarrassed the dog started to cry and rebuild the sandcastle but the rabbit just stood there and looked like he did nothing the end there there once was a dog who was going on a picnic in the park and then he saw a rabbit so he they decided to go together when the om when they unpacked the lunch the rabbit was so hungry s the rabbit was so hungry,0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 +but the dog was not so the rabbit ate all the stuff when the dog was eating the bunny had already finished the bunny had a terrible stomachache while the dog was eating the dog just stood there puzzled and said are you okay and the rabbit said no i feel like i am going to hurl just then the dog ran to the doc doctor who was standing right by the path she said excuse me could you help my friend here he has a stomachache so but the doctor said no,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 +she had a patient who was waiting for her but the dog really needed her so she took the doctor and dragged them to the picnic the doctor said i will take your temperature now and you will feel much better just then the bunny f got up and he felt queasy then the doctor and the bunny went home they walked together back home the end,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1,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 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 1 0 1 +there once was a dog who was pulling a wagon with a balloon tied to it then he saw the bunny then they wanted to play with the balloon the bunny wanted to touch the balloon because he thought it was cool but the dog did not really want him to so the rabbit just then the rabbit did not care about what the dog said so the rabbit untied the balloon and the dog was ss was a lit was beginning to get a little fed up just then the balloon floated away and they were trying to catch it,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +but they were too short the dog was so angry at the rabbit the rabbit just stared at the balloon and he felt like he was getting a little scared because the dog was mad just then they saw a balloon seller who had tons of balloons and he just stood there so the dog and the rabbit decided to go buy a new one the rabbit said may i have a balloon please for my friend over there the man said sure but you will have to pay for that for the balloon the rabbit looked through his pockets,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 +just then it said a sign said balloons five cents and he did not have five cents he and the ra the rabbit and the dog looked at the balloon seller they told him that they did not have five cents just then the bunny went to the went to a lady who was standing nearby and he said excuse me do you have five cents because i need to buy a balloon for a friend the rabbit looked puzzled the lady rabbit gave five cents for two balloons and the bunny and the dog were jumping up and down in excitement then they both got balloons,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and they hugged and they loved them real much the end this is this story is called the ball one day this little girl was playing with a ball and a lifeguard was playing with it too and so when she was playing with the ball she accidentally dropped it in the pool and then the lifeguard went in the water and swam and got the balloon and got the ball and when he did she was so happy and then she um she asked him if he wants to play with her again the end,0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 +this story is called the scratch one day a little girl was going swimming and she was running to the board and when she did she slipped and she and when she slipped she got a cut on her knee and then the lifegua and then another lifeguard came running and said are you okay and then he put a bandaid on and then he put him on put her on the bench and she would not be able she was not able to swim but then the lifeguard was really mad because he she should have seen the the sign no running,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 1 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 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 +the end this story is called the airplane one day this little boy and this little girl were playing with an air airplane the girl asked can i play with it now and he said okay and then it and then she accidentally dropped it in the water when she did the little boy got all mad and then she went up to the lifeguard and asked the lifeguard if he could get the airplane and when he said okay i will try he tried but he could not reach it,0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then he and then the little boy was crying but then the girl lifeguard came and she got a net then she tried to get it and she did and then the little boy was so happy and then the little girl said i am sorry for for wrecking your toy the end this story is called um the castle that breaks one day there is there is a little girl and a little boy who is playing in the sand,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the little girl builded a castle and the little boy dumped a bucket he did not mean to dump the bucket oh on the castle and then when he did the girl got all mad sad and she was crying and the bunny said sorry this story is called the picnic one day a little a doggy and a dog and a rabbit was eating was having a picnic and the rabbit ate too much so he got sick,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 1 0 0 0 0 0 1 0 1 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 1 +and then the poochy ran over to a doctor near by the pooch said help help a little boy is sick so the doctor checked the boy and said he was si he had to go home and then he felt better this story is called the puppy who had two balloons one day a pup his uh somebodys friend came over to check his balloon out and when he did he tied the rope off the the wagon and when he did the ba balloon got away and then the puppy is all mad,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and then the rabbit saw some more balloons and he asked some for a balloon but the guy said balloons are five cents and the bunny did not have any money so so the bunny said um well i accidentally lost one that my friends balloon and so he and then the balloon man said no you still need to pay five cents so then the bunny went over to an adult to ask for five cents and when he did ask she said okay and then she paid him five cents and then the boy the girl got his her balloon a another balloon back,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 +and then she was all happy the end once upon a time there was a giraffe and a elephant playing around the pool and one of they were playing with a ball and it f it fell in the water and the giraffe swam to the balloon the ball and then he swam back to the elephant and gave it back to her and she was very happy that he got it for the elephant the end once upon a time there was a giraffe and a elephant around the pool,0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the elephant wanted to jump off the j the the tr um the um wanted to jump in the pool and sh when she was running to it she slipped and she fell she got a scra a scratch on her knee and the giraffe ran to the lifeguard and he got a bandaid and they they he put it on her knee and and he sent her to the the bench and and he show her no running sign the end,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 +one there was two friends an elephant and a giraffe the giraffe had a toy that it was a airplane he was playing around with it and a elephant wanted to play with it too and elephant took it from the giraffe and p played around with it and she dropped it into the pool and she she was very sad and the giraffe was very angry at her the lifeguard ran uh came to the elephant and the giraffe and the the el the lifeguard the elephant said that i by accident i threw the giraffes airplane inside the water,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and the lifeguard was trying to get it but it was too far and he said i can not do anything and the giraffe started to cry a net catcher came to the hopeless giraffe and she had a net in her hand and she got the airplane by her net and the giraffe stopped crying and the lady gave it to the giraffe and he is very he was very happy,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 1 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 0 0 1 0 0 0 1 +the end once upon a time there was a little dog that made a castle and a a rabbit he came a along and wanted to help him and then he he dump he dumped some sand inside a bucket and the and he scooped some up and then he dumped it on there on the castle and then and it got covered and and then it really did not do it was was a cloud of sand and the dog was building it again the end,0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1,0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 +there was two friends that were walking along for a picnic and the ra the fr one of the friends had a lot of f food than the other friend and then he ate all of it and and he got really stuffed and then he he was very sick and his stomach was really hurting and one of the friends called the doctor and the dog called her the the doctor to help and the doctor said do not eat a lot of food and he went home,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and he had some rest the end once upon a time there was a two friends walking along with their wagon and one of the friends said this is a nice wagon and a nice balloon you have on it he tied it off and he and he wanted to hold it and then the balloon fell flew away and then they were re one of the friends balloon was very disappointed and one of the friends saw a a man selling balloons so he ran over there,0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he he got one from the man can i have one of those balloons he said but it was actually five cents to buy the one of the balloons it w he was really sad that he lost one of the friend his friend balloon he asked a person by if sh they had five cents and he he pointed to the balloons and he said there is only balloons for five cents and i have no money and she she bought two for each of the the friends and they said thank you thank you for the balloons,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 +the end there is an elephant and a giraffe bouncing a ball having fun with the ball and the ball goes into the water gets bounced into the water the giraffe goes to get it he is really wet he gives it to the elephant and the elephant the elephant is holding it and the giraffe is smiling quite a lot the giraffe and the elephant are looking to the water and the gira the elephant sees a diving board,0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 +the elephant is running and slips on the pavement on the deck and scrapes her knee the giraffe came over and the lifeguard came over and looked at it and bandaged it up and the elephant sat on a bench and the the lifeguard pointed at the no running sign the giraffe and the elephant are playing with a airplane toy airplane the giraffe is making it go really high the elephant grabs it away and starts playing with it it goes in the water the giraffe is really mad at the elephant,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 +and the lifeguard sees the toy in the water and looks mad and the lifeguard and the el other elephant are talking and the lifeguard tries to reach the airplane but he can not the lifeguard is kind of shrugging his shoulders thinking what can i do and then another person comes with a net and gets it out for them and the giraffe is really really happy and the giraffe is hugging his toy the bunny and something else are playing i think it is a dog that are playing with sand,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and the bunny put is getting some sand out of a pail he dumps sand on a sandcastle then the sandcastle is all wrecked the bunny feels really bad and i think it is the dog that is crying the bunny and the dog i think are going for a picnic the dog and the the bunny is eating too much he has maybe twenty things he is eating lots and the bunny is really full,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and the dog is just eating his sandwich and drinking juice box and the bunny is feeling dizzy and the dog thinks oh i should go get some help so he runs to a doctor walking down the road and pulls the doctor over to her friend and the doctor checks her friend out and takes her the dogs friend home the rabbit there is the dog and the bunny the bunny is coming down the road jogging he and the dog has a wagon with a balloon tied to it the bunny grabs the balloon and the dog is kind of fine with it,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the dog kind of freaks out starts freaking out and the bunny and the dog tried to grab it but they can not because it is floating up into the air and the dog is really mad at the bunny then the do the bunny goes to the balloon man he asks for a balloon he says five cents for a balloon and the bunny has no money so the the little bunny looks at the balloon man very innocently and then goes to his the doctor his dad and i just see him going to his dad or the doctor,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 diff --git a/benchmark_result/segmentation/SaT_results.csv b/benchmark_result/segmentation/SaT_results.csv new file mode 100644 index 0000000000000000000000000000000000000000..1bbbb66c2c49615950d70ecaa48b8731904572cf --- /dev/null +++ b/benchmark_result/segmentation/SaT_results.csv @@ -0,0 +1,624 @@ +word_sequence,gt_label_sequence,predict_label_sequence +once a horse met elephant and then they saw a ball in a pool and then the horse tried to swim and get the ball and the then the elephant gave him the ball and then the horse was wet and the elephant was holding the ball the end they might be the same oh well you start it off any way you want okay,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 +once a horse and this this was a horse and saw saw that that i just talked about but the ball was not in there okay and then the elephant wanted to go in i mean not and then he his feet went like this then he hurt his knee cap and then the horse helped him then there was another elephant and he was a lifeguard and then i do not know what they did,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +but they are doing something what do you think they are doing well how you look at the picture cause i do not know oh it does not matter what do you think is happening i think they are battling okay and then they sat on the bench and then the lifeguard was mad okay,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 1,0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 +and are you pointing at something i am i am just i am just x okay are you all done yes okay the end once that horse and elephant was happy near the swimming pool oh and then the horse had an airplane to play with a which had ss ah something coming down the bottom okay,1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 +and the elephant went like this then he tried it and the horse went like this then they put it in the water and then the elephant went like this and then the horse was mad and then the lifeguard went like this then the elephant talked to him a little bit and then the lifeguard tried to get it but he could not,0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the horse cried an and then a elephant with a net came and she caught it and then she gave it back to the horse and then the horse went like this what does that mean they love it oh good and the end once two rabbits made a sandcastle,0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 0 0 1,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 1 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 1 +and it was a great one and then one did this with a and one took some s and the other one took some sand from a a pail because they were down at the beach and then he dumped it on the castle and then it tur part of it stayed the way it was but the rest turned into just a lump and then they tried to do it but it was not very good that time the end we saw two rabbits had baskets and were in part of the forest,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,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 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +or we can call it the woods yeah we can then they had a picnic then one of them belly got this big how big about this big wow and then in the picture there is a twirl around on his head and then a bigger bunny came up and they run to that bunny,0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 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 1 +and then he falled asleep and then he did this why did he do that i do not know okay and then he was happy he was happy yes okay the end,0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 1 0 0 1 1 1 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 1 0 0 1 1 0 0 1 +once that little bunny was pulling a wagon and that other fat bunny came up and then he liked the balloon and then he tried to get off and then he got it off but they lost the grip and it was helium and then another man came with a bunch of balloons but x but then they he went to them and he said that it the balloons were five cents,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,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 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he could not find five cents and then they were sad then they went back to that out by the we found that other story and he said i want one of those balloons he gave him five cents and then they gave him a balloon and they gave him to them to who to them oh,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 1 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 +and then they both have one the end the el the um the little elephant is playing with her bouncy ball and the gi and the giraffe comes to meet her suddenly the ball falls in a f pool beside them the the giraffe goes and swims for it and the giraffe is so kind and brings back the ball the elephant is so happy the elephant and the giraffe meet at the pool and look at the diving board the the elephant goes to run for it,0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +but there is a sign above her head that says no running she slips and falls she she scrapes her knee and and can not swim a lifeguard comes to see what happened to her knee the and he put a bandaid on it he sets her down on a bench so it will it will it will heal and the lifeguard points to the sign that says no running the ele the elephant and giraffe are swimming together the giraffe finds a plane and starts to show it to the elephant the giraffe um the elephant grabs from it from the giraffe and swims away,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 1 +suddenly she dropped it the giraffe gets very mad and can not hold in his anger the lifeg lifeguard comes and sees what has happened the elephant starts to complain that that it was not her fault and the lifeguard tries to get the plane but no one can reach it so a lady with a net comes and pulls it out she is very kind thinks everyone and the giraffe gets his plane back everyone is very happy,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 +um a bunny and a dog were mak were making sandcastles in the sand uh sand bin um the bu the bunny um he he got a bucket and started to build a better castle suddenly he dumped all the sand on the uh the bi the other castle and everyone was disappointed the o the dog was was so sad she started to cry the dog mee meets the bunny um for a picnic they they have a picnic together except the bunny is kind of piggish he eats all the food really fast while the other one eats very slow and politely the rabbit feels very sick after his big meal the doctor has to come and help the the s sick rabbit,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +the dog pulls her her over to the um to see if he is conscious the doctor says she ha he has a fever and he ate too much soon he feels better again the the the dog is has a balloon on her wagon and the bunny comes to meet her the bunny notices the nice um shiny balloon he the bunny tries to untie the balloon but the dog um the dog gets nervous and it floats away,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +the dog gets very very mad at the bunny but when they turn around they see another man with twenty more balloons the rabbit buys one to make um but he does not have enough money for one balloon the man tells them they could ha they could get a free one and the nurse says no actually i will buy you one and she goes and buys one this makes both the bunny and the dog very happy now they both have one balloon they going at the swimming pool,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 +they putting it the ball in the swimming pool and he is trying to get it he got it she is happy the end they were dr they dry themselves dry themselves and the girl is going into the swimming pool she is dancing she is crying she gots a help from her friend,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 1 +put a bandage on it now sh she can go on the swimming pool she is sitting the end she is talking the boy is playing with his airplane she grab it away from him the airplane is in the swimming pool and the boy got angry and the k the man comes by them,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +what did you say the man comes side them and the girl is talking the man was trying to get it the man can not get it woman tried to get it she gots it the boy is happy now the boy and the girl is happy now the end,0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +the boy is talking to the dog and they are making a castle and the boy putting the sandcastle and the girl is so happy not the boy he is sorry for it he is what sorry and the end they are looking for easter eggs,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and they are eating he eat the whole thing he got hiccups there is his father and he have to help him and he gots a headache he is going and the end the boy is running and the boy is talking,0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the boy is taking off the balloon the balloon is floating away and the girl went angry and there is lots of ball sh the girl is pushing the boy gots no money the man is happy the dad is here again and the man is not giving thm them balloon the man give the rat balloon rabbit a ba balloon,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and they can have one and the end she is playing with a ball then it drops in the water the cow s wants to get it and then the cow gives it back to the elephant and she likes it and the end um something is sinking something is sinking and the elephant is going to get it,0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 1 +and she trips and she falls and hurts her knee and the lifeguard comes and she gets a bandaid on it and she she sits on a bench the lifeguard tells her not to do it again elephant is excited to see what the giraffe has and then he tries to throw it up into the air and then the elephant grabs it away and then it sinks into the water,0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 1 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 1 +then the giraffe gets mad at her and the lifeguard gets mad at the gir at the elephant and he explai he tries to explain what happened and the lifeguard um tries to get it then they can not get it and then a woman comes up with a net and she gets it out and she gives it back to the giraffe and then he hugs it the end,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 1 +um the bunny and the baby elephant are building a sandcastle and then the bunny is filling up a pail with sand um then he is stuffing it on the sandcastle and then it is ruined then one of them is sad that is it they are going on a picnic they are the bunny is eating lots of stuff he is getting full and he has a stomachache,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and then one of them sees his mom rabbits mom and he tries to get her to get to get to get rabbit and she wakes him up and they go home ah that was a good one he is taking a balloon somewhere his friend is coming up to him and he and his friend likes the balloon and then his friend tries to untwist it then it goes away,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1,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 1 0 0 0 0 0 1 0 0 0 0 0 1 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 1 +and he is sad and then she is angry with rabbit and then there is a new ba balloon sale and he wants one and he gives it to him and then he wants another one and then mother is here he comes up to her and he tells her that there is balloons and she will and she is giving him money,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then they both have one a balloon that is it the end there were two animals an elephant and a giraffe who wanted to play in a pool and the w there they were playing with a ball and it fell into the pool and they wanted to sw swim and get it and they thought it was fun one of them he fell he went into the water and tried to swim to the ball but the ball was floating away from him,0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the elephant and uh then the giraffe got the ball for the elephant and then the elephant was started playing with the ball again and they uh and they still wanted to play with it so they still played together the end there was a no running sign and they still wanted to play in the pool and th they were running away and then and then sh the giraffe started chasing the elephant and the elephant slipped,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1,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 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then it hurt itself and the elephant was crying and the giraffe said are you okay and then the lifeguard came and said are you all right and the elephant got a bandaid and sat on the chair and he and the lifeguard was trying the elephant was trying to get off the bandaid and the lifeguard wa said keep it on the end the giraffe and the elephant came back to the pool with the airplane the giraffe was playing with it and tried not to drop it into the pool,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the elephant was so into it he the elephant w was kept staring at it the the giraffe said hey when the elephant took the plane away and the elephant started playing with it and the elephant accidentally dropped it into the pool and the giraffe was kind of mad and then he was so mad that he growled at the elephant and the elephant was scared scared and the li and the elephant called the lifeguard to come and try to get the airplane and they looked like they tried,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 1 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 1 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 0 0 0 0 1 +and after that and af and then after that he he was trying to get the plane but he did not so the ele so the elephant did not know what to do and the giraffe was crying and the elephant decided i will have an idea and the elephant went to get a net and then he used it to get the plane and got the plane for the giraffe the end and the giraffe was really happy the end,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 1,0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 +there was a rabbit and a dog they were making a sandcastle and then the dog and the rabbit made the sandcastle and the dog was sitting into the sandbox and said hey rabbit we made it we made it and the and the rabbit was helping the dog make it more bigger and it and he put too much on and made it fall right down on it and then it al almost then it broke and then it was totally broken at the end of it by the end the end,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 1 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 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +um there once was a dog and a rabbit they wanted to go on a picnich picnic instead of making a sandcastle in the park rabbit wanted to have the most stuff so he took out h all of his stuff and started his stuff and the dog wanted to eat just this couple of stuff and the rabbit was totally full and he he was almost having a tummyache and then he fell down and he had a big tummyache and the dog ran to get his mom and to help,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 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 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 1 +and then the dog begged his mom to do it so the mom came and helped and he was okay the end instead of going to for a picnic and and going into the park and making a sandcastle they got a balloon and they were playing with a balloon and they tied it onto their wagon they were driving it around and the rabbit wanted to take it off and the rabbit was trying to take it off,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then he made it fly away and the rabbit did not know what to do and the dog was very mad and then they saw more balloons and wanted to get uh the dog was still mad and the rabbit was going to get another one for the dog and the balloons were five cents and he could not get it because he did not have any money and the dog was wanted to get one too and he tried to get one and the dog was waiting for the rabbit to get some money from its mom,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 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 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 1 +and it asked the mom if he could have some money to buy the balloon and he got five cents and got a balloon for the kids and they got to play all they want with the balloons the end there was a giraffe and and a a girl elephant they were playing ball by the street on the sidewalk by the swimming pool and then they dropped the ball into the pool they could not ge could not get it but giraffe dived in and k was was swimming but elephant was covering her eyes,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,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 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then he got it and gave it to her she was amazed then he was soaking wet and she hugged the ball and he looked like a genius there they were again by the pool and there was a sign by uh the diving board and it said no running so they looked at the pool amazed for some reason then elephant said i want to go on the diving board,0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 1 +and she ran to it she ran to it and she slipped and giraffe did too and she scraped her knee ouch she had xs in her eyes stars in her eyes she was crying the lifeguard came and it was an elephant,0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +no running in the f in the no running by the side of the pool he said the lifeguard and he put a bandaid on it she still had stars in her eyes and then at least giraffe did not fall and then it felt much better see no running in the pool he said the lifeguard did not you see that sign no running he was mad there was elephant with giraffe again by the pool again,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 +they found a plane with string at the back and she had swirls in her eyes the elephant and the giraffe was spitting out spit then she caught it he was really he was like huh splash it landed in the pool oh no they said and then giraffe was very mad it was just about to sink and elephant was going,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +then the lifeguard came again and he had his hands on his hips and and the airplane was still there but it was not sinking then it was almost going down they explained to mister elephant mister elephant you see i grabbed it and i dropped it by accident in the water when giraffe was playing with it he bendednd over and he tried to he was he was um growling,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 +he could not even get it he could not even get it and then giraffe just uh started just started to cry and then miss elephant came along she had a net and she got she had a net and she looked surprised she fished it out with the net and the and then giraffe started stopped crying the lifeguard stopped um um worrying,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +so did the elephant and gave and then with amazement she gave it to giraffe he hugged his airplane he was happy and the elephant was happy too there is a bunny and a dog were playing in the sandbox and making a sandcastle the bu the bunny was getting the sand from the bucket and the dog was making the sandcastle but he the rabbit poured all the sand on it and the dog looked um fri um surprised,0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 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 1 +the sandcastle was broke the bunny had his mouth open but the dog did not the dog was crying but the bunny was just nervous here is the doggy and the rabbit again um they are going for a picnic with their basks baskets in the woods the bunny was really thirsty but the dog was not he looked at him surprised,0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +there was a cake cheese and a basket and and the basket poured and a carrot the dog the bunny ate all his stuff there was an apple it was all done there was a cheese was all eaten the carrot was all eaten but the dog was still eating her sandwich and her juice drinking her juice then the the bunny had a tummyache but the dog was looking at the bunny surprised missus bunny came,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and wa and she was walking along and then the dog ran to her to doctor he was still ha he still had a tummyache and the dog was pulling her her sleeve and she looked surprised the doctor the doctor was said he has a tummyache from eating too much and he had to look uh with his tongue with a stick then she walked along with rabbit he and they went together and the dog was only left with the picnic,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +well the dog was going with a balloon on her um wagon wheel and the bunny ran to her it looked like he was jogging the bunny was surprised she had a balloon and there was there was the doggy she did not look so happy but then she screamed because the bunny was taking the balloon away from her and then he let go of the balloon it flew up and he they both yelled come back,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 +then the balloon drifted away the bunny had his ears down but the dog was very mean bad mean mad there was mister rabbit carrying some balloons they found him again with and a b by a bench and a garbage can the rabbit ran up to him and said may i please have a blue balloon s he said five dollars first he he pulled out his pockets but there was no money the dog was rushing to the bunny,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +then they looked at the mister bunny with a grin h they could not buy another balloon then missus rabbit the doctor rabbit and then was standing there and then little rabbit went to go ask her something can you bo please buy us a balloon said rabbit and then she looked at him amazed because it is for five bucks only said f the mis mister bunny then she paid five bucks and they got two balloons ten bucks and they both had their balloons,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 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 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and they lived happily ever after first there is a lady who is bounce a ball under the giraffe it went right beside they are working at a centre she bounced it into the wall the giraffe and the elephant are looking at it the giraffe goes and swims and get the and gets the ball then the elephant takes it he then the giraffe gets out of the water first the elephant and the giraffe see the diving board then the elephant sees it,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +then she goes to go on it she went running too fast and she fell and she bruised her knee the giraffe went down and comed to see her then and then the elephant that was a lifeguard comed to see it too the eleph the the lifeguard put a bandaid on the bruise they had to sit on the bench for awhile and they talked not allowed to they talked about they are not allowed to run okay,0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 1 +now she knows it is that it because he saw the sign because he showed him the sign because he showed her the sign now no running the giraffe and the elephant got together and the giraffe got a airplane the giraffe is putting it up high and pretending it is going then the elephant takes it and she tries to do it too but the elephant throwed it in the water,0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +the giraffe gets angry then there is a lifeguard coming along the elephant is explaining what happened the lifeguard tries to get it but she can not get it so so the giraffe starts crying then comes and then comes a lady with a net then she gets it out of the water then she gives it to the giraffe now the giraffe is hugging the airplane,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +first the rabbit sees the puppy playing in the sand he wants the rabbit sees the puppy playing in the sand and he wants to play they builded a sandcastle the rabbit filled up a bucket of sand the rabbit dumped it on the castle then the rabbit said oh no then the puppy was trying to get it off one time the puppy saw the rabbit coming with a basket and the girl had a basket the rabbit had piles of food,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +the lady did not she saw the rabbit eating so much the rabbit got really fat she was he was starting to feel dizzy he called the doctor and he got the lady the lady told the doctor to help him the doctor said you are eating too much food too fast so he takes the bunny the the dog sees the bunny coming along and the girl has a wagon with the balloon hooked on it,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +the bunny the bunny looks at it then the bunny takes it off then the bunny accidentally let it go and it going too high and they can not reach it the the dog is getting mad at the bunny they see another balloon holder so the bunny says can we have one of those balloons but none cash and it costs five dollars,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +uh they explained what happened to the balloon then they go running to go get somebody can you say that louder they went to go get somebody he is explaining about the balloon man and and we do not have enough money so she buyed two balloons and now they both got a balloon once upon a time they were playing basketball then then the boy came named giraffe,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 1 +the ball got stuck in the pond then he went back home then it fell back in the water and he gave the cow a nnn new then he went out of the water the end there was a girl named elephant and the giraffe went swim again the lake and then they just ran ahead then they jumped into the water,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and then they hurt her knee then they could not give a bandage and he just put on a bandage for her then it feel then they went swimming for a next time then he got mad the end once upon a time a a boy me met a girl and he was going to fly his airplane then he flew it and then then he let go of it,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +and then she grabbed it from him and it was hers and he throwed it in the water and then he got mad at her then he got mad and he need to do something and they could not reach it so they they got a net and it was there for a long time and he got a net,0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +then he got it then he just tried to get it then he just got it then he just give it to the boy who had it and x the end he went and he met a girl going to the the playground and she made a ca sandcastle trying making one like hers,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,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 1 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 1 +then it broke then they got very angry but they needed to make it all over again the end there was a boy named bunnyhead then he went to to have a picnic and met another guy with a picnic basket and they had a picnic before it it it got night time then they had two boxes of sandwiches and then they got full then they went then they then they went full,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 +and they get more and more then came the mommmy then the then the doctor then they ran up to her then they bumped into her and she took a temperature and she was sick and she needed to take her to a hospital the end once upon a time there was a boy and went um uh what um giving him wagon a walk,0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then they then they got put it on a balloon and that was good then he tighten it on very good and he gave it to the girl then then it flew away then there was no way then he was ba angry then he met a balloon guy and he bought her one and buyed a new balloon so so they c so there could be one on the wagon then he gave us one before he flew away,0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and thank you and then it went she sawed the doctor again and a little girl can you buy us a balloon and they gave him money then then he gave them balloons then they then they both had one good the end once a elephant was walking over to a giraffe with a backpack full of three balls then the balls sank into the water and floated away,0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +they tried to catch it but they nearly fell into the water they fell into the water and tried to float he tried to float to the balloon the ball but it wa but it but the ball was too fast then the elephant caught the ball and pulled giraffe out of the water then he was soaking wet then they walked home once gira giraffe and elephant were so excited they wanted to go into the pool,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +they walked over to the stairs and then they walked over to the board and then they jumped in then elephant jumped in and then elephant slipped and slide and then he fell into the water head first he did not realize that that he had no bandaid on his owie and it hurted and hurted and hurted and hurted uh momma bear poppa bear walked over to him are you okay,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 +no replied sister bear then they were so excited they are they v poppa bear gave him poppa elephant gave sister elephant a bandaid then it felt much better now they were ready to play in the water but then suddenly the poppa bear said you stay there do not go with the giraffe once elephant and giraffe were walking to the pool again giraffe brought an airplane and then he elephant flied it but then it sank into the water,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 1 0 1 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +you said elephant you get that airplane out of the water but i can not cried elephant now it sank into the pool it sank into the pool nearly all the way poppa bear said get that airplane i can not said poppa bear said to the giraffe poppa bear tried to reach it but it was too far oh now we will never get it cried poppa bear and sister bear hold it said hold it said giraffe i got something,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 +i have an idea he he got his momma bear got the net and then he tried he got it then he tried to get it and at last he got it and then it was soaking wet that he had to waited till it was dry now it was dry and he could fly it but not into the water any more once two bunnies were playing in the sandbox one bunny build a sandcastle,0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 1 0 0 0 1 +and one digged sand to put in his bucket he poured it onto the castle and then it all broke and then it all fell and then the uh the bunny had to build it again once two bunnies were going out for a picnic ss one ate a carrot and some hot dogs then he was all full and then the second bunny drank juice and ate his sandwich and then the sandwich taste yucky,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then they went home to their mom the mom said the mom said please take care of your little brother and they took care of each other then the the sister bunny and the momma baby all they walked home together once a ba a bunny was bringing uh a wagon with a balloon attached to a wheel and then the the bunny was so excited that he looked at the balloon and then he tried to put the balloon off the wheel but it was stuck and then it flew up they tried to catch it,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +but it was floating away up into the air and then it nearly disappeared and then they got so mad they had to get a different one they had to get a new one so they walked over to mister balloon and said can i have one a new balloon the bunny asked and then he gave him the nice five balloon and then he did not gi give him them one and then all of sudden brother bear brother bunny and sister bunny saw their mom and they w then they walked over the river skated over to the river and out at the river she saw their mom,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then mommy mister balloon will not give us give us a balloon and then then h then momma bunny walked over to mister balloon and said can you please give them a balloon she asked certainly replied mister balloon and then they had two balloons for themselves two friends were playing with a ball the ball went in the water the guy tried to get the ball then she uh the boy passed the the ball to the elephant and then they the boy was in love with her,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +two friends were going for a swim and the elephant wanted to dive she tripped and and hurt her knee the lifeguard came and put a bandaid on her and she was curious and the lifeguard showed her the sign of no running the giraffe brought a airplane he was playing with it and the elephant was getting bored then the elephant took it away from the giraffe and started to play with it,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +she accidentally dropped it in the water the person was very mad at her the lifeguard came and the elephant explained to the lifeguard he tried to reach it but he could not the life the the boy was crying then somebody came in with a net and reached it and got it out and passed it to the giraffe and he was happy and so was the elephant,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 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 1 +one day uh a bunny went to the park with his friend she was making his sandcastle with her he dumped it all over her sandcastle and it uh and it blew up and she was crying and he did not and he did not even say anything uh two friends went for a picnic uh the one friend ate everything he was very full he got a stomachache,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 +the little girl ran to the nurse and pulled her over to the boy and she said merry christmas and they lived happily ever after two friends went to the park and the girl had a balloon uh the boy wanted to hold the balloon he untied it and it flew up and then the girl was very mad at him then they saw a balloon person,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and he asked if he could have a balloon of hubbadubba uh bl and the guy said balloons five cents and they were very sad then they seen a doctor and asked and the boy asked if she can buy two balloons with five cents and they got the balloons and she paid and they loved the balloons a elephant met a a giraffe and the and the elephants ball went into the water,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +then the giraffe would get it and then she w then she was happy and then hmmm she liked her and then okay um the elephant and and the the giraffe was going to run and he was going and the elephant was going to run over to the jumping thing and then she slipped and then she fell,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 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 1 +and then the lifeguard came and then he putted a bandaid on and then then she knowed that there was no running and then she looked at the sign and it said no running and then the end the giraffe had had a airplane and he was going to throw it and and the and the elephant wanted to try too and then he s he was tr he wanted to throw it,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,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 1 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 1 0 0 0 0 0 0 1 0 0 0 0 1 +and then the elephant was going to throw it and then it sank and then then the giraffe was mad and and then the lifeguard came and then and then the lifeguard was going to get it and then he and then he was almost about to get it and then and then the giraffe was sad what happened next and then then the girl lifeguard came to get the airplane with a th a net and then she got it,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then and then she got it and then he was happy a bunny and a bunny were playing in a sandbox and then they builded a snowcastle and then the the other rabbit poured some sand in it and and one part was still fixed then what happened and then the other one was sad the end um um two rabbits had baskets,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and it had a picnic and then and then the other rabbit was full then he was hurt what happened he found a doctor and and he thoughted that guy was hurt and then the doctor came and then then the boy was better the end um the girl had a wagon with a balloon on it,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the and the other rabbit was running and then the boy rabbit was going to take the balloon and then he and then he was trying to take it off then what happened then it flew up in the air and then then it popped and then he was going to the balloon man and then then the girl was sad what happened then and then then he was mad,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1,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 1 0 0 1 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 1 0 0 0 0 0 0 0 0 1 +um then the girl came then sh then she then then she wanted a balloon and then he asked the doctor that could could he have some of your money what happened then then then the boy and the girl was going to have a balloon and then they both had a balloon the end once an elephant and a giraffe were playing ball when suddenly the ball dropped into the sand that was water out they sunk the ball picked them out,0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +but it was just the elephant and they played ball again once an an elephant and a horse were playing in the sand suddenly it was not sand they realized they fell and sunk they came out again they got hurt because that is how it looks they had to put a bandaid on a different eleph on that elephant a doctor elephant and they sat down the doctor elephant got angry,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 +once an elephant and a giraffe w were shooting airplanes when it looked when suddenly the airplane got broken and it shooted into that water into the water oh no said the little giraffe like he yelled mister fixit came and said what is all this yelling about a a a plane got stuck in the water can you take it out of course i will and he s he got angry too did not know how,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,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 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 +so he took his net out of his truck and scooped it up and that did the job and they played airplane again and they were happy they liked the the airplane it was all fixed up once a dog and a rabbit were playing in the sand they made a sandcastle and when by the time it was finished they poured some more sand and it fell down and did,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,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 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +they built the sandcastle again it was up once a dog and a rabbit were walking down they had a picnic soon the rabbit was so tired and full that he had to go to sleep out they packed his legs got tired dog had to pull him doctor came along and fixed up the rabbit and took them home once a a dog and a rabbit were waiting down with a balloon when the balloon popped,0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +on that hot day they all sat up went the balloon it popped out came the balloon man with lots of balloons and they gave one to each and they had lots of balloons only one popped and they liked their balloons off they went out came doctor rabbit,0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +he said what are these balloons are for the balloon man gave it to us because we love balloons and ours popped away once there was uh two friends one tally and one hm snout and snout had a beautiful green ball but it fell in a pool so tally swam to get the ball and he got it back um tally was blushing his whole face went red,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 1 0 0 0 0 1 +this is another story about snuff snout and tally once there the pool in the last story with the beautiful green ball fell in the pool and tally got it back there was a diving board and snout said i am going to go on that diving board and i will show you a nice dive well tally said stop do not run and unfortunately snout slipped and fell and really really hurt her knee and then tally warned her because tally saw a sign that said no running snout started started to cry,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 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 1 0 0 0 0 1 +but the lifeguard luckily saw and came to the rescue and the lifeguard gave snout a bandaid once snout stopped crying the lifeguard gave her a sticker for being such a good help not moving her knee around and stuff and then um the lifeguard pointed to the sign that said no running and snout looked and said sorry this is a story about snout and tally and tally had this nice model airplane that he was playing with by the pool he was flying it around and snout was like ooh she really wanted to play with it,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +so she snatched it away and then tally was like hey give it back it is mine and snout dropped it in the pool and then tally s said now look what you have done you should not grab and tally got really really really mad at snout and then the lifeguard asked what is the problem here kids and snout said well um ta tally here was playing with this model airplane and i i really wanted to play wis with it,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +so i grabbed it away but i accidentally dropped it in the pool so the lifeguard had to get down and stretch out for the plane but it was too too far out the lifeguard could not get it and then the the girl luckily had a net so she dipped it in the pool and luckily or not but he was lucky she did get it out,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1,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 1 0 0 0 0 0 1 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 1 +and then snout said sorry i dropped it in the pool once there was two animals a wolf and a bunny and they were at the beach or in a sandbox and they built a big big sandcastle the wolf was working on the tower and the bunny was um collecting the sand but then the bunny poured the who the whole bucket of sand onto the sandcastle and it ruined one tower but then the sand that was on the tower started coming down and wrecking the whole sandcastle so when that was all finished the only thing left was one tower,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 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 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the wolf started to cry and the bunny feeling bad once there was two animals a ra a hare and a wolf and the wo and the bunny thought that he was so good so he could have all the food he wanted so then once once they were finished the wolf had just a sandwich and a juice and then the rabbit was feeling kind of queasy so um the the wolf told him he would walk him home but luckily a doctor was walking by so the wolf a asked the doctor if he could um help the uh wolf and then the the wolf um brang the doctor over to the bunny,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the the wolf said he has fainted he needs your help so the the the hare doctor said well i will give him this medicine so she did and he woke up but still he was feeling kind of queasy and then he he just took a run around the trees that is what the the doctor told him to do and then he was feeling fine two best friends named fluffball and fluffy were once playing at the park,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and and the and fluffball which was hare kept going on about this balloon he got for being the best student in his class but then the the hare said i am going to take it off and show it around but the wolf said no do not it what if you let it go it will fly up into the air but the hare did not listen so um the balloon he accidentally let it go and it went up into the air the the um the wolf got so mad at him that he he he he said i am not your friend any more but then the hare saw some some balloons,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +so he went over to the balloon guy said i want um that red one right there but it was five cents but he did not have any money so the guy that was selling the balloons said sorry but you can not have this nice red balloon and then um doctor fluffball which was fluffballs mom um asked him um fluffball asked his mom if he could have five cents because the the red balloon was five cents so doctor fluffball gave the man five cents and he got two balloons for both of them and that was that they both got a blue and red balloon playing baseball,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 1,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 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 +bouncing the three balls in the fall looking at a ball in the fall laying down in the fall trying to get the ball try give someone the ball in the water in the spring playing running around in the spring looking in the water in the f summer lookin running through the water in the summer running in the in the summer on the sidewalk getting hurt on the sidewalk in the summer get hurt in the summer crying,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +playing in the summer sitting down on the bench in the summer sitting down on the bench in the summer get someone getting mad being happy in the fall playing in the fall with a little toy airplane playing with a little toy in the fall put his airplane in the water in the fall put the water in the in the water in fall put the water in fall,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 +put the water in fall and they happy try and get it in the water in the fall sad it in the water in the fall getting a net to try to get in the water in the fall try to get it in the fall then kind of got it giving the airplane to somebody in the f fall givin holding the airplane in the fall the end,0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +playing playing in the sand making a sandcastle with sand playing with sand with sand playing with sand with sand playing with sand with sand uh bringing food somewhere having a picnic somewhere laying down and eating somewhere la laying down and eating somewhere,1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +playing somewhere pulling somewhere playing somewhere playing somewhere bringing a cart on the sidewalk in the spring taking a cart somewhere in the spring taking a cart somewhere in the spring trying to get the balloon no handling and they would all go somewhere in the spring,0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +looking up s in the sidewalk in the spring saying could i have a balloon in the spring seeing what ss getting a balloon in the spring looking at a balloon ss looking they were at a tr at a balloon in the spring but they were all gone walking in the spring um looking at the balloons pulling someone to that balloons in the spring,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +uh getting a balloon in the spring walking once upon a time the elephant had a ball and the giraffe liked it and he decided to play with it by the pool and then he made a mistake and it falled in the water and and and the elephant thought that he could not get it but he he just tried and tried and he got it,0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,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 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 1 +and he gave it back to the elephant so the elephant was very happy the end once upon a time there is a elephant and a giraffe by the diving pool and the elephant ran and slipped i think i think that is next page and he slipped and got hurt so the giraffe came running and then one of the elephants came to help with a bandage and the band and he put the bandage on,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he hurt and hurt and she had to keep her leg out like straight in front so so it would not hurt when she walks but she had to sit there x what was that last bit she has to sit there at the diving pool all day until it feeled better so and then the big elephant said no running and she went that is why he got hurt and he said so she had to sit there for time out that is why,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 1 +once upon a time there is a elephant and a giraffe the giraffe had a airplane and they were at the diving pool the elephant played with the airplane and watched it zoom around and he did like and the elephant took it away and started playing with it and then it fell in the water and the giraffe stared at it what and the giraffe stared at it,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 1 0 0 0 0 0 0 1 +and then the giraffe was very mad at the elephant that the elephant was so scared so the beach the suh the the the lifeguard he he decided to take it out and he tried to get it because the elephant said so small elephant as tall as me and then he tried and tried and then i should not what is that last part then he tried and tried but he could not get it so he just tried still,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,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 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +so he could not get it and the zebra was sad so sad and then there is somebody that ha was even a bigger elephant and tried to get it with her net and she got it and she got it out for their giraffe and the giraffe was happy very very happy so the elephant and the giraffe became friends again there is so much ones about them at the diving pool the end once upon a time there was a little dog and a little rabbit they were playing in the sandbox,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and they builded a castle and the bunny took some sand and put it in the bucket and he started shoveling it and then the bunny poured all the sand over the sandcastle that the dog made and then the bunny said oh i am sorry i will not do that again oh the dog was very sad he cried h because the bunny was not very smart and then f and then the bunny just would not play with him and he standed still with his ears down like this,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +the end once upon a time there was a bunny and a dog they were going to have a picnic with each other and they met each other in the woods they met a what they met a each other in the woods the bunny brought lots and lots of junk that is like all food that is bad for you junk like what like junk i call it when it is food that is bad for you i call it junk,0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,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 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 +and the bunny ate so much of his junk he got sick and he falled down and he got dizzy and then the doggy ran to the doctor bunny to help and the doggy pulled him over and then he started working on fixing him in case he was okay well then he threw a thing at his head and tried to s make him look over there and he fixed him up he had to go home so he the doctor brought him to his home,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 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 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the doggy was very happy the end once upon a time there were a dog and a bunny and they met each other in the woods and the dog had had a balloon and the bunny came running and a bunny ca took the balloon out of the the wagon and tried to untie it but the dog said no and he would not listen,0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the dog tried to catch it and the bunny tried to catch it too but they just could not catch it oh and then the bunnys dog friend got mad and made his teeth like this and made what and made ade him mad so he would be so mad that he would just be like this standing there then he went off to get a balloon from a balloon seller that sells balloons he decided to to get one,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +he decided to get one the bunny decided to get a balloon but he did not have any money for five cents well they were sad and he did not have any balloons for each other because they wanted then the bunny wanted one too so they went off to someone that had money and then the and then he and then he bought some for them and they got two the two last ones left and they were so happy and they they have been friends with each other all day the end,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 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 0 0 0 1 +the elephant and the cow umhm so you have told me what is in the picture can you tell me a story about it cow elephant cow and a elephant umhm what is happening they are trying to find each other the elephant and the cow had a accident with the ball and the eleph the cow got in there the cow got what he got in there he got in there and the elephant got it,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and the cow is still in there and the cow and the the cow is dripping and she has the ball there is a slide cow and a elephant a cow and a elephant and a slide and a pool and the elephant is running and slipping and the sand and the cow and she got hurt she got hurt on her knee and it hurted and she can not go in the pool,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and she hurt herself uh the bo the cow and the elephant the cow the elephant has a ribbon and a dress and the cow gots a airplane and and uh she got it and it got in the water and the cow was mad and she is mad too both of them are all mad and the elephant is getting it,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 1 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 1 +he tried and tried to get it she gots a net to catch it and she is going to get it with the net and they got it back and they are happy the rabbit and the d the d he she made a a sandcastle and the rabbit gots a shovel and the rabbit wants to play and the s and he s g something is going to happen to the sandcastle and it brokeded,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 1 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 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 1 +and then the she is crying they got picnic baskets and they are having lunch and they are havi and the rabbit is full and the rabbit is what full and they are and and the she is hungry and the de and she goes to another lady and sh she she is going to say hi and there is the rabbits mom,0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 1 +the there is a balloon and a wagon and she is carrying and the rabbit is not the rabbit is what he is not carrying and the girl is just carrying it what did you say the rabbit was carrying nothing and there the balloon is going to be poppeded and the rab the rabbit is going to take it off and it is going away,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,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 1 0 0 0 1 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 1 +and it got away and they were go and get another one from the man can you take your fingers out of your mouth then i can hear your words better they are picking one and they are going to give one and they are gon to go the man said no and and there is there is the bunnys mom and he is the b the rabbit said he will not give me a balloon and now it he is getting one and he got both balloons,0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +once upon a time and he is looking apples and the apples fall into a pool and uh a buddy a a guy f is catching it and he get it and he put it back and he be happy the end once upon a time are walking in a pool and he is looking backwards,0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and a girl walking and a and he stopped and he be worried and he be scared and he sit on a bench and he sit on a bench the end once upon a time out walking and he is flying a plane and he and he is playing a plane,0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then he dropped it gone is sinking and sinking and sinking and sinking and sinking and sinking and sinking and he catch it and he put it right back on his hands,0 0 0 1 0 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he be happy the end you can start once upon a time once upon a time what do you see use words so i can hear you so my tape recorder can hear you hm what has happened them building and he throwing sand,0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 +and messed all d up and he be sad how does it start once upon a time try again hm and he is eating and he is tired and he is going sleep and he is running and he is holding his dress,0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he fall down and he walks the end once upon a time a tree and he catching a balloon and it pops and wants the balloons and she wants the balloons again and they popped,0 0 0 1 0 0 1 0 1 0 0 0 1 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 1,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 1 +and they popped again and he is looking and he get and he be happy and he be happy again the end there is an elephant and a giraffe that but the elephant is bouncing a ball so fast that the giraffe wants to try and the elephant um and well the elephant and the giraffe but the giraffe is trying to get the ball in the water so he swam,0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and and the elephant was covering eyes his eyes and um the elephant was covering his eyes and his trunk was full of stuff and then h he was happy and then the giraffe was happy then the elephant started to grab it from the the giraffes hands and he said thank you and the um elephant had the ball and the giraffe was soaked so the giraffe asked him if he could bounce it but he said but the elephant laughed,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 +and he said no there is the giraffe and the elephant and the giraffe has a kleenex and they were going to go in the water and um the elephant was going to go in the water but the giraffe pushed the elephant and so the elephant fell in the water and the elephant slipped when when the giraffe was running after him so he would not slip but then the elephant he got hurt and the giraffe the elephant got hurt because um he slipped,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the giraffe was running to see what was ran what was wrong and the elephant was crying and the coach came to see and the giraffe was just looking at the elephant and then the then the coach started to put a bandaid and the elephant was covering ey his eyes and um doing kind of a mad face and the giraffe was just looking but then the coach sat the elephant down on a bench and the uh um giraffe was just um holding his hands like this and the coach was pointing his finger,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he is and the elephant was holding his hands right between his legs and then he and then the elephant um had a kind of a mad face again the giraffe and the elephant and the elephant was the giraffe was holding the airplane toy airplane and then the and the elephant wanted to play with him but the but he was still playing with it but the giraffe was still playing with it and he was making the elephant not catch it but the elephant finally caught it and then he started playing with it and the giraffe was starting to get mad,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 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 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 1 +but the po but the toy plane went in the water so the two guy but the giraffe and the elephant um put their mouth like this but then the giraffe was really mad and the elephant was still ga still looking at the airplane and the coach came and the and he he was looking at the giraffe so um the elephant was telling him what happened and then the um the plane started to sink even more and the the elephant but the elep the coach went over to the elephant and the giraffe was um looking at the the two elephants,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the elephant was screaming his head off and he was telling the coach what happened but the coach had to grab it before it sank all to the bottom but he could not reach it and the giraffe was starting to cry but this other elephant came with a net and tried to get it and the um plane was started to sinking more but he still could not reach it but he finally got it and he gave it back to the giraffe,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 1 +now the now the giraffe and the elephant were happily were happy there is a bunny rabbit and a dog making a sandcastle there is the bunny and the dog that um are um well the bunny rabbit is digging the sand up and the dog is um making the sandcastle smoother and the bunny rabbit was pouring sand all over the sandcastle so the dog was um starting to s um uh get sad but the but half of the sandcastle was left then the dog is was starting to cry and he was starting to make it all over again there is a bunny rabbit and a dog that are going to have lunch together,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +there is a bunny and a dog that are having lunch there is the bunny and the dog but the bunny but but the bu dog is eating and the bunny is and the bunny is chew and the bunny is sick the bunny um is does not feel good and the dog does feel good there is a bunny and a dog but the bu bunny is a mess and the bunny is going to well the dog is going to tell the other bunny that um he has to fix him but he pulled him because he will not,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he made him worse and then the bunny felt good and the dog was just by the sandbox there is a bunny and a dog and but the dog s has a balloon on his wagon and he is pulling the wagon and the bunny rabbit seen the balloon and he he was going to not try to take the balloon off but the dog did not want him to and the balloon fl flew away,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and both of them were trying to catch it the bunny rabbit the dog but the dog was rea really mad at him the rabbit was there is a big rabbit that had a lot of balloons and the bunny rabbit but and the dog but the dog was still mad and the w bunny rabbit went to get another one and he asked the man that has all the balloons could i have one but they were only five cents and he did not have five cents and then he said if you do not have five cents you can not um take a balloon then the dog and the bunny ra rabbit seen the doctor,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 1 +and the bunny rabbit ran but the dog stayed and the bunny rabbit said i want one of those balloons and he will not give me it then he um and the doctor had a lot of money so he gave him most of his money and there is only two left because the bunny rab the dog took most of them and the bunny and the wa the bunny and the wa the bunny and the dog had the two balloo the balloons and the then they went and both of them were really happy a giraffe and a a giraffe is watching a an elephant juggle a ball,0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the ball gets stuck in some wa cement or a pool and the horse is swimming in to get it and he gives the elephant the balloon the ball and then he steps out and he is wet and the elephant is happy well an ele an elephant and giraffe are looking at the pool and there is and there is something behind a rock or something else and it looks like bunny ears and the elephant is talking about the bunny ears,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and they run and they run to see him and then the elephant does a stretch and and then there is a swipe and hurts her knee and then her knee and the giraffe is coming after and a lifeguard comes over to them and he is putting a bandaid on the knee and then they sit in a bench and the lifeguard is pointing to a sign that says no running there is a giraffe and a elephant by a pool,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,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 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 1 0 0 0 0 0 0 0 0 0 1 +and the gir giraffe has an airplane and he is flying it around in his hand and suddenly the elephant grabs the the airplane and drops it in the pool and it is sinking and the giraffe is mad at the elephant and the lifeguard is looking at them both and the airplane and the elephant is telling the lifeguard about what what happened and the lifeguard is reaching to get the airplane but he can not reach it quite reach it and the giraffe is like panting,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 1 +and the elephant is um kind kind of nervous or sad the lifeguard kind of has a smell and his ears are going up and then a an ele a girl elephant comes along with a net and she nets the airplane out and she gives it it to the giraffe and then the gir the giraffe hugs the airplane a rabbit and a mouse are playing in the sand and they are building a sandcastle with and the rabbit is filling a bucket,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the mouse is flattening the castle and then the rabbit he pours the sand on the castle and the mouse has a kind of a whiny face because he is surprised he is doing that and he wrecks the sandcastle and then they and now they are building it again um a mouse and rabbit are going for a picnic and they are at their picnic eating the food and the rabbit is very hot because he looks hot and and the rabbit is full and the mouse is drinking juice,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,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 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 1 +and the rabbit is like really full and then there is a doctor rabbit and the mouse is running over to him and the mouse is pulling him over and he sees the rabbit and his his his stomach is really full and then he takes him off to the doctors a mouse went to a party he because it looks pretty much like there is a party balloon and the rabbit is looking at the balloon,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the rabbit is trying to untie it and he unties it and accidentally lets go and the balloon is floating away and then they are in a big fit the mouse is really mad and the rabbit is like terrifyed because the balloon fel floated away and then they see a rabbit selling balloons and the rabbit is pointing to the balloon up in the sky and and the um rabbit shows him a balloon and it says balloons five cents,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 1 +and the rabbit is looking in his pockets for five cents and the the man the rabbit is holding the balloons and the mouse and rabbit are looking at him and then th and the mouse is stays behind aside beside the balloon man the rabbit goes to get the doctor uh rabbit again and he says there is a balloon man and we do not have any money and the um doctor and the doctor rabbit is giving the the b the balloon man some money so they can have the balloon and then they get the balloons and everybody is smiling,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 +one day some kids were at a swimming pool one of the kids had a big bouncy ball the other kid wanted to try it he accidentally dropped it into the water the other kid was scared that it would go to the bottom so the kid that dropped it went into the pool and got it the other friend said thank you and the other friend gave the other kid her ball back one day some kids went to a swimming pool one of the kids said let us jump in,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +the kid wanted to jump in but she slipped and she fell on the ground and scraped her knee then the lifeguard came to help her he put a bandaid on they sat her down on the bench to rest for a while then the lifeguard pointed to a sign that says no running one day two kids were playing by a swimming pool one of the kids had brought an airplane to play with they were playing with it,0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and the other kid snatched it from their hands and she accidentally dropped it in the water the other friend got really mad at her the airplane was sinking more into the water then the k then the kid who put it in the water by accident said to the lifeguard the airplane got dropped in the water the lifeguard tried to reach it with his hands but his arms were too short the other kid who had brought the airplane started crying then one of the people who were swimming saw the airplane and got out of the pool got a fishing net and told them that they would get the airplane for them they they reached into the water,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and sh she got the airplane caught in the net and she gave the airplane to the kid who brought it and that kid kept it and did not let other kids play with it by the pool one day two friends were in a sandbox playing together they were building a sandcastle one of the kids dumped a bucket of sand on one end of the castle and that end collapsed and the other friend started crying one day two friends were going for a picnic one of the friends ate too much,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,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 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +when they were done they had a big tummyache and they really wanted to go home so one of the friends went to see a doctor they pulled the doctor by his sleeve to bring him over to the other friend the doctor said do not eat so much next time you have a picnic and the doctor took the other friend to his house one day in the forest two friends were walking one of the friends had a wagon with a balloon tied to it one of the friends wanted to touch it so they a so they took it off the wagon,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +pretty soon it almost touched the sky and the other friend was mad at him and the string was only left so the other friend got really really really mad at him so they both went to a balloon guy the balloon guy said do you want to buy a balloon and then he also said five cents a balloon and the rabbit reached into his pockets but they were empty so the friends just looked at him,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +then one of the friends went to a doctor and said that guy is not letting us have a balloon and then the doctor gave him five cents and they got a balloon and the then the doctor paid another five cents for the other friend and he got a balloon too and then they both played with their balloons all day elephant zebra what happens in the story ze zebra,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 +ball zebra and elephant ze um elephant and zebra and ball zebra and the ball an and the elephant zebra and the elephant and the ball the end um elephant and zebra elephant and zebra elephant and zebra owie and uh owie elephant has a owie,1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 1,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 0 0 0 0 0 0 0 0 0 1 +and the zebra do not has a owie there is two elephants zebra two elephant two elephants and zebra two elephants and zebra two ele elephants st no zebra the end elephant and zebra,0 0 0 0 0 0 0 1 0 0 0 1 1 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 1 0 1 0 0 1,0 0 0 0 0 0 0 1 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 1 +uh elephant and zebra airplane uh elephant and zebra airplane elephant and zebra airplane uh it is on what is that sound what is that sound in there um elephant and zebra and airplane elephant and zebra elephant and zebra,0 0 0 1 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1,0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +two elephants and zebra elephant and zebra and airplane elephant and zebra elephant and zebra elephant and zebra elephant and zebra elephant and zebra elephant and zebra the end bunny,0 0 0 1 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 1 1,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 1 0 0 1 +what happens in the story um sandcastle sandcastle sandcastle and puppy and bunny sandcastle and bun uh san sandcastle and dog doggy and rabbit bunny sandcastle breaked a sandcastle breaked they are making it again the end,0 0 0 0 1 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 1 0 0 0 0 1 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 +um basket puppy and rabbit carrot i said a carrot that is it drink pa basket sandwich juice i said juice what happens in the story,0 1 0 0 1 1 0 0 0 0 0 0 1 1 0 1 1 1 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 +um tree tree tr tree tree tree the end uh balloon balloon balloon what happens in the story,0 1 1 0 1 1 1 0 1 0 1 1 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +balloon balloon fly away balloon t popped the balloon lots of balloons lots of balloons lots of balloons five balloon lots of balloons i said lots of balloons,1 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +lots of balloons yeah uh lots of balloons let us count the balloons in here in this picture there is nine two balloons there is two balloons none balloon one balloon two ba the end,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 1 0 1 0 1 0 0 0 1,0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 +um the uh giraffe s comes to see uh comes on to swim in the water and then there is an elephant and then um she is bouncing a ball and he um he is asking to play with her they play volleyball and um it actually falled in the water by accident he was going to go in the sw he was going to swim to get it and then he swan swam in and then the elephant had um her hands over her eyes and he had a mad face cause he knew he could get it,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 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 0 1 +and um the he got it he gave it back to the elephant and then the elephant um was going to fall in love with the giraffe um they wanted to go for a swim and she wanted to try the diving board she did not see um no running she was gon she was running and the um ele giraffe said um you better not run it because he saw the sign but he did not tell the elephant and she did not she did not hear him,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 1 +and then she slipped she was running to get her then she got a big owie she was crying and then the lifeguard came over and gave her a bandage she was scared and now he said there um you have a bandaid now and he was m the lifeguard was mad don not run did not you see the sign,0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 +uh um the a gir the giraffe was walking and then um a elephant came and she wanted to play with his um airplane they were taking turns the um he was playing with it and um the elephant was curious that it would go in the water and then she took it away and then it landed in the water and th he was mad at her she wa she was curious what she could um do about it,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 +then the lifeguard came a and he saw that it was in the water the giraffe told him that um th the elephant was took taking it away and threw it in the water and then she said i did not do it and he did it by ac he did it on purpose and then he was the lifeguard was curious and he was trying to reach it they were both curious that he could get it and then it was starting to sink more and then a girl came with a net,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then she scooped it out and gave it back to um the uh giraffe and then she said here have your airplane back and he said thanks for getting it and they fell in love again um a girl was building a sandcastle the um bunny wanted to play with her and he they dumped some sand she was patting it down and then he put some sand on it and um it broke,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1,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 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then um he said oh no and she um said it is okay and he was she was crying she was trying to make it again um a boy and a girl was walking along and they were going for a picnic with each other he was eating a lot of his and he had a lot of junk he got so full and he was getting sick,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and he said i need a docor he doctor he he felt dizzy she was going to phone a doctor and then um she there is a doctor walking along and then um she ran up to him she said um my friend he has a stomachache he is dizzy he ate too much of junk and he said no and she said come on come on,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +please help me and then she said yes and um he he said you are dizzy your temperature is five now he is okay and he went with the doctor home um she a girl was walking along and a boy was walking just for a jog and then she just walking with a balloon tied to her wagon and he wanted to play with it,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 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 1 +and she said no and he was tying it off the wheel and then it floated up in the air and then she was really mad at him he was scared he looked at the balloon and then they both s she was still angry at him and he saw a balloon guy and he said can i have one of those balloons and you have to pay five cents,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,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 1 0 0 1 0 0 0 0 0 0 0 0 0 1 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 1 +and they both wanted one she he was curious that um she was going to be really mad at him again and um he went to hi his mom and he was going to ask him ask her if he could have five cents and uh she said yes and she le he letted he she gave um five cents to him and they both were happy that they got a both got a balloon and they would not share theirs again and the mom wa ha was happy too um once upon a time there was a elephant,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 1 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 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 +and she was bouncing three balls and giraffe came and she try and he wanted to try and the elephant said okay and then the giraffe said i can not do it and then one ball wen then all three balls went into the water and then the elephant and the giraffe said oh no and then the giraffe went splashing in the water to get all three balls and then the elephant got one ball and then he wa happ and then she was happy,0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 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 1 +the end um once upon a time there was a little giraffe and he wanted to go swimming he was trying to go in the diving board and he was scared and then the elephant said i will try it out and then she was running and then the giraffe was slowing down and then n the the elephant stubbed her hurt her knee then the lifeguard came,0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 +and then the lifeguard put a bandaid on her knee and then she was on a bench and then he put her on a timeout that is it um once upon a time there was a little giraffe and a little elephant and and the little giraffe was going to throw his plane he thought it was going to go in the water then he tried and then he tried he did not let go,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +and then the elephant took it away and then she threw it in the water then the giraffe was mad then the lifeguard came and then he said you were on another timeout for the elephant and then the lifeguard said i do not know if you should have a timeout and then the lifeguard was going to try to reach it he did not reach it then he did not know and then the giraffe was starting to cry,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +then this lady elephant came and she got a net and she was going to get it with the net and then the lady almost got it and then she got it and then the giraffe was happy once upon a tame time there was a little rabbit and a little dog and the little dog that was mak it was making a sandcastle and the rabbit joined in and then h the rabbit tried to do it,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +well he did not get it right and then he dumped it on top and then it did not and the dogs eyes went crazy and then the dog his mouth was he was kind of it was kind of crazy and then it was trying to make it back well it did not the end once upon a tame time there was a little rabbit and a little um dog and then they wer they were going for a picnic and the rabbit said hello,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 +would you like to join my picnic well the dog said no thank you i will enjoy my picnic and then the rabbit was eating all its stuff that it brought and then he was getting so hot that he that it was get that it was burning and then he was very fat and then he was going crazy and then he saw and then she saw then the puppy saw a doctor and then and then she was bringing the doctor to the rabbit and then sh that rabbit saw the other rabbit,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 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 1 +and then it took it that little rabbit to the doctors that is the end once upon a time there was a little rabbit and a little dog and then the little rabbit wanted to have the balloon and then it almost took it and then he did not notice and then he untied it and then he did not know what was there and then it and then the balloon went up up up and then that dog was mad at that rabbit,0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then another rabbit came by with some more balloons and then that d um rabbit wanted a balloon and then he saw he did not have any money and then he did not get any balloons and then one rabbit then that rabbit saw a nurse doctor and then that doctor then that little rabbit said can i have some money for one of those balloons and then he got one and then he had and then they had two for each the end giraffe and elephant were in the pool,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 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 1 0 0 0 0 0 0 1 +and i wonder what were were they were bouncing the ball i wonder what will happen the ball felled in the water giraffe was swimming to get it and and giraffe got it and elephant said thank you and you are my hero giraffe said oh my pleasure and and and elephant was engaged with him elephant and giraffe were by the pool,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +they i wonder what will happen elephant was running and and i wonder what will happen she slipped and she got a owie and she was crying and giraffe wa is going to help her and the lifeguard came and ss and gave her a bandaid she was so sad that sh he had to put a big bandaid on then the lifeguard let her sit down for awhile,0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +the lifeguard was so mad and it said no running and ii she was so sad giraffe and elephant were at the pool giraffe had a airplane elephant took it away from him he was so upset it felled in the pool ele and giraffe got so mad that he wanted said that he wanted a new one and she took toward to the lifeguard and said can you get that,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 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 1 +and he said did you do this and he will and she will say no she wa she was crying and said that all right i did it this is the truth i throwed it in the pool the lifeguard crawl and try to get it i wonder what will happen he could not get it and giraffe started to cry and a girl lifeguard had a net,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and try and she got it and she did giraffe was so happy that he did not have to have a new one and then he loved it and he never ever ever let elephant played with it ever again this rabbit is going to make a sandcastle with this dog the rabbit is putting sand in the pail when the dog was making a sandcastle the rabbit poured the sand onto the sandcastle the dog was sad the dog wrought so hard,0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 +she started she was going she wa the rabbit was upset because he was going to make another one the dog was crying the rabbit was disappointed rabbit and rabbit saw the dog dog the dog waved at rabbit they were walking to a picnic the rabbit was so hungry that he had too many junks the ra the the dog had a sandwich first soon the rabbit was fat and full the dog was still hungry,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 1 +then the rabbit got dizzy the ra and the dog looked at him the dog saw his mother and he said that rabbit is hurt he does not feel well then he pu the dog pulled his his mother the rabbits mother to see him and he was very ill the r the rabbit ate too much junk and and his mother was a doctor so she took care of him,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and she took him to his house and he she said to the dog he will be okay the dog was going going for a walk with a wagon then rabbit showed up he said hi and i wonder what will happen rabbit saw the balloon and the dog said be careful the rabbit untied the balloon the the dog was disappointed,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 +then rabbit let go and dog and dog was worried and he wanted she wanted her balloon back and she got very mad at rabbit he al he always bugs her then the the balloon man was carrying some balloons and the dog was still mad he said that may i have a ye white one and the and the balloon man said sure when when he got to when got to his pocket and pulled down the balloon it was five cents,0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 +and he did not have no five cents and he was he was sad then the balloon man put the balloon up again and did not listen to him then the rabbit went to the doctor again she had money and he wanted five cents he asked if you can buy me a balloon two of us because i do not have no more money and she said yes and and she and he took two balloons to them and ga and one of the money they were happy,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the doctor was happy too that they have balloons first they have balling bowling balls secon second they drop one third he tried to swim and got it after she got the ball after he tried to jump with the bowling ball that is a silly idea you will fall down and hurt yourself first they saw the thing and they wanted to jump,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and then they ran and and then she ran too fast then she fell down and hurt shes knee and she cried and the coach helped her up and put a bandage and put her on the bench after she the coach said do not run because it is wet and slippery should not run like that first they first the elephant saw the giraffes airplane and then he flied it and the the elephant want to tried it,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then she tried it and then it accidentally dropped on the water and the the giraffe was angry and then the coach the um the coach said what is happening and she said i accidentally flied it it gone on the river the coa the coach trie um s s tried to help the coach could not help this after the giraffe has tears because he wants his airplane after the the woman in the net i got um um had a net and tried and um want helped him to get it out,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the woman tried and she got it and then the giraffe was happy after he hugged his airplane they was making a ss sandcastle the um the um the dog and then the rabbit came and helped it and then he got some sand the rabbit he poured it on the sandcastle he felled it down and then the dog tried to make another one,0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +but he could not they went for a picnic they ate their food they were full and then the rabbit had a stomachache and then he went to a doctor and then he asked the doctor to help his friend and then the doctor helped and then the doc and then he was back to normal first they were um pulling the the balloon on a wagon,0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 1 0 0 0 1 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 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and then he showed it to his friend and then the rabbit untied it and then it flew away and then the dog is angry and then they they saw a man buying havin have some balloons and they want to get one and then he asked for one and then h he showed how much it was for and then she she said not not to take it and then he asked the doctor to pay,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then he he asked like like doctor um i tooked a balloon off my friends wagon and it flew away and then he paid after they both have balloons the f the only the dog has a balloon both of them have a balloon oh now at the end they do yeah um it looks like the giraffe and the elephant are playing basketball and the ball goes into the pool,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +the giraffe tries and jumps in and get it um but the elephant gets it and the giraffe looks embarrassed um it um the giraffe and the elephant want to go swimming um the the giraffe the elephant wants to go off the diving board and she starts running and the sign says no running and she slips and falls and scrapes her knee the lifeguard comes running up to her puts a bandaid on it and she is all better,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the lifeguard points out the sign and she looks really really embarrassed and guilty um the giraffe has an airplane in his hand and the elephant um really likes it um the giraffe pretends to fly it and he is making airplane noises the elephant gets jealous the elephant the elephant steals the plane away from him and i guess she tries to fly it but it goes into the water,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +uh the ele and the giraffe gets mad the lifeguard comes up the lifeguard says what happened the oh and the elephant explained it to him so now the lifeguard is trying to get the the plane back and the lifeguard can not do nothing the giraffe starts crying then s a woman comes another elephant comes up with a net scoops the airplane out and gives it back to the giraffe the giraffe and the giraffe is really really happy now the bunny and uh the dog uh the dog has built uh a sandcastle,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and the bunny wants to help the bunny scoops up uh uh a shovel uh a pi the bunny takes a shovel and scoops up some sand and then she pours it on the sandcastle she buries the sandcastle and the dog starts to cry the dog and the bunny are having a picnic the bunny starts to eat and she has a lot of junk food the bunny uh gets a really really big tummyache um the dog does not know what is happening,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +the the dog runs up to the bunnys mom a doctor or something and the and pulls the doctor over to see the bunny the doctor um brang her back like maybe gave her a painkiller or something but but but then the bunny feels better and then they walk away the dog has a balloon the bunny wants to see the balloon so the bunny unties it from his wagon the balloon floats up in the air um the dog gets mad there is a balloon salesman on the other side of the park,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +he wants the bunny goes up to buy one but each balloon is five cents and the bunny and the dog have no money so the bunny runs up to uh to the doctor and asks if she if she um the doctor can buy uh buy a balloon for a friend the doctor goes up pays us and pays the balloon man and now each and now the dog and the bunny have a balloon there are two kids who find balls on the si on the sidewalk and then they f then they it falls into the water and they and they do not want to get wet but the um the moose got it wants gets the ball,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and he gives it back to the li to the elephant and then he gets out of the water and he is soaking they want to go swimming but there is no running allowed ss but they want to run to run and jump into the pool and w when the elephant is running she slips and hurts her knee and then the giraffe gets the lifeguard and he puts a bandaid on the knee and then she is all better,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 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 1 +and then he s points to the sign and says no running allowed um the uh the giraffe and the elephant want to throw the airplane and see if it s falls into the water and when and when and he is going to start to throw and then and then the elephant grabs it away and thr and drops it in the water and then the giraffe gets really mad and and now now um now they have to go and get it because the lifeguard is there and now the elephant is saying i dropped it in by accident and the el and the lifeguard is going to get it but he can not reach and then its and then there is someone who swims ga ge gets a net and gets it the end and gives it back,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 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 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and now he is going to play with it the end theres an there is an elephant and a dog trying to build a sandcastle and the dog wants um to break it sort of and then when the rabbit pours the sand on it gonna it might break and it breaks down so now the dog tries to help him buil build it back the end the dog and the rabbit want to go swimming are going to have a picnic and the rabbit brings carrot stuff,0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the dog brings stuff with cheese and stuff and the rabbit is so full that the dog tries to eat the rest and the dog and then the rabbit gets sick so so the dog gets a doctor and he pulls him over because someone got sick and the doctor says open your mouth and say ah and then the rabbit felt better the end one day the rabbit and the dog meet because the dog and the rabbit are walking somewhere,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then they meet and the dog has a little balloon on his wagon and the rabbit sort of wants to pop it so and then he wants the now he wants to undo it the balloon and make it fly away and now the dog is sad because his balloon is gone so now the dog gets really mad at the rabbit and now the balloon is for sale so the rabbit gets one for his friend five cents but he does not have five cents so they can not get one,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +but then there is a doctor so they might ask him for five cents so they ask for five cents to get a balloon and he gives them five ce so he gives the guy five cents and they each get a balloon the end they were playing they smiled and a ball was in the in the pool the boy he wanted to catch the ball,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +so he went in and the elephant girl put her hands in front of her nose and then he caught the ball for her and she was smiling and he was all wet and he was what he was all wet is that the end yeah they found a pool,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 1 0 0 0 1,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 0 0 0 0 1 0 0 0 1 0 0 0 0 1 +and then she was talking to him and they runned and she got hurt and somebody came and ran to her she was crying she was crying so much that that the boy that ran to her gave her a bandaid she was sitting on a bench and he got very greedy he found a airplane a toy airplane then he was playing with it,0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +she grabbed it away from him then it fell in the water and then he was mad at her then a boy came walking by then she told him something then he was trying to catch it and then they he could not so he cried and then a girl came down with a fetcher with a what,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +with a fetcher to oh a fetcher okay and then she tried and grabbed it and she got it for him and he was so happy the end they made a sandcastle they sc they scooped some some sand and she dumped the rabbit dumped it on right on the sandcastle and it broke,0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then he was crying when i when he was fixing it and it is the end of the story they went for a picnic they ate and the rabbit got a tummyache she was so full that she was growling then the boy called someone then he grabbed her to the bunny she checked her if she was well if she was what,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 +if she was well then she was good and she did not have a tummyache any more and sh they had a walk they had a stroller with a balloon in the front they watched the balloon if it was coming off and he tied it right on s ti she tied it on so tight as she can then after it came up in the air and after the dog was so greedy at her and then a balloon man came,0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and h and the rabbit said can we borrow a balloon and he said would you like this one and he said yes it is five dollars and he and he checked if he had much and then they did not get a balloon and then they ran to someone they asked her th we want a balloon and she did not know why so she paid five dollars to him,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 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 1 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and they gave both of them a balloon and they liked to play with it once upon a time they had three ba balls and one went in the river and him immediately went to get it he falled in and then and he got um he went in swim to give it to the pi um the elephant again uh an then an then um and then hir it looks like they are in love once upon a time the elephant went to run an then and then they start running an her her and her got a booboo and then his mom comed put a bandaid on her,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 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 1 +and then her went back to her friends and then he got mad at her once upon a time he s he showed the elephant his airplane and then her grabbed it out of the out of his hands and then her dropped it into the water by mistake and then he got very angry at her and then the elephant comed and got wery angry at the pi the um at the elephant too uh then he had a a talk and then he try and reach it an and then he start trying,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +an then and then the girl come with the net got it for got it for him an then he and then he was happy and he was happy and he hugged his airplane once upon a time a dog was playing a castle and a bunny comed over to play with him and th and when he and he was holding the castle and he was um having a shovel to um pick up the sand and he was dumping on the castle and then he broke the castle and then and then he start crying,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 1 0 0 0 0 0 0 1 +once upon a time they went on a picnic and and he and and som his tongue is out like this okay you are sticking your tongue out that is what it looks like and i do not know how to do that part can you tell me in words uh it looks like he is doing oh tongue out okay and once upon a time when they was eating something um it wa um it wa um he start to have a headache and then the dog went to his mother and tried pull her to the to her kid bunny and and it start giving him medicine,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then he and then they went on when he was going to play at the park the bunny went and touched the balloon he did what with the balloon touched it and he tried to pull it off and then it got go an they was an and the dog was angry no maybe the angry was not at that part the angry was this one and he was angry and then he went on with balloons,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he gave the kid another balloon and he said he want another balloon and he said no cause he got because he needed to get five balloons because he wants five balloons x an he asked an the dog said can i have another the bunny said can i have another bunny for the dog and then the bunny went back to his mom and he said he wo he will not give me another ba he will not give me another balloon so he did ge so he give the kids two balloons and an they and then they went off home the elephant is playing with a ball,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,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 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and the giraffe want to play with it with the elephant in the water and they dropped it in the water and then the giraffe was going to swim and get it for the elephant and the giraffe got it for the elephant and she was happy and she said thank you to the giraffe the end the elephant and the giraffe were going swimming and the elephant was going to go in the water and she slipped,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1,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 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and she hold her knee and she was crying and the her dad went to go see her and put a bandaid on her owie and then she have to sit on the bench and she and her dad said no running the end the elephant and the giraffe were playing with a airplane and the giraffe was making it fly and made the elephant dizzy and the elephant took the airplane and the giraffe was mad,0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +and the elephant dropped the airplane in the water the giraffe was mad at her so they have to get the airplane and her dad said to her why did you drop the airplane in the water so her mother tried to get it and the giraffe was crying and the mum got it with a net she picked it out of the water and gave it back to the giraffe and the giraffe was happy and the giraffe hugged his airplane,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +the end the bunny and the dog were making a sandcastle and the bunny was filling up the bucket and the dog was breaking the sandcastle and the bunny was breaking broke some of it and then the puppy was a little bit sad and the puppy was crying the end the bunny and the dog was going on a picnic and the bunny took all of the food out and wanted the puppys food,0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the bunny was full and the bunny was getting dizzy and full and the puppy went to get the doctor and puppy said that the the bunny ate too much food and the bunny was feeling sick and then the bunny was not feeling sick because the doctor made him all better the end the dog had a balloon and a wagon the bunny said can i come with you so he did,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1,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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +the bunny was going to take off the balloon the pu dog said do not take off the balloon or it will fly away and the bunny did and the balloon flied away and the dog was mad at the bunny so he went to go see the circus bunny again to get a other balloon so the bunny got a other balloon for the dog and he did not have no money so he can buy a balloon then they were going to get some money from the doctor,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and the doctor said uh yes and the doctor gave the both of them some money to buy a balloon they both get their own balloon the end um an elephant and a giraffe went swimming the uh um s a wa they were playing with water balloons it looked like and they dropped a water balloon in the pool or the balloon um the giraffe tries to swim after it um he catches it and the elephant gets it,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and now she loves him um an elephant and a giraffe are swimming the elephant runs to the pool he slips and hurts her knee and the lifeguard comes and the giraffe helps her um the elephant cries and the lifeguard puts a bandaid on it and he sat down on a bench and the lifeguard p points to a no running sign,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 1 0 0 0 0 0 0 1 +um the elephant and the giraffe are at the swimming pool the giraffe brings a toy airplane um he the giraffe plays with it and the elephant stares at it then he the elephant grabs it from him and drops it in the pool the giraffe is mad at the elephant and the lifeguard sees it and it is starting to sink the lifeguard looks sort of angry at the ele other elephant x and um he tries to get it,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 +but he can not reach it the giraffe starts to cry um and then another elephant um gets a net and um and picks up the plane and gives it to the giraffe and the giraffe is happy um a dog is playing in the sand and a rabbit comes and wants to play with her he starts making a little bit of the castle while the rabb while um the dog starts making a little bit of the castle while the rabbit fills a pail up with sand and the bunny dumps it on the castle and the castle breaks and the bunny screams,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 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 1 +um and the bunny pretends he did not do it but he really did and the dog is feeling sad because it is broke it broke um the bunny and the dog are going for a picnic um the dog brings sandwiches and the bunny brings carrots and sandwiches and pickles and chips and sandwiches and carrots and he gets fu the bunny gets full while the dog is still eating the bunny is feeling sick um the dog runs and gets um the doctor and he pulls the dog pulls the doctor over,0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +um the doctor looks and tells him to open his mouth and then he is all done um the dog is pulling a wagon with a balloon and and the bunny sees her the bunny tries to get it um he gets it and the dog opens his mouth and starts to scream sort of the bunny lets it g lets go of the balloon and the dog is really mad at the bunny and he is just staring at the balloon,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and um he sees um another rabbit selling balloons he asks for some and they are five cents and he said you can not have them if you can not pay five cents and then they are really sad and then there is a bunny another bunny up there i think it is his mom and he wants to buy a balloon and they he gives five cents to him and they each get a balloon,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,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 0 0 1 0 0 0 0 0 0 0 0 0 1 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 1 +and they are playing with them there is an elephant and a giraffe the elephant is bouncing a ball and there is the giraffe guy i think is talking to her and they are watching and all of a sudden the ball that the elephant was bouncing fell into the water and they are both looking kind of sad and um excited and now the giraffe uh jumped into the water and now is swimming to catch the ball and the giraffe is back at the end of the pool and gave the ball back to the elephant and now the elephant is happy and looks happy,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 1 +uh um the there is the giraffe and the elephant again and the elephant is looking at the water with the giraffe and now the elephant is looks like uh she is going to jump into the pool and right when she started jumping uh the elephant slipped and hurt herself and now she has a cut on her leg and now the giraffe is stand sitting by her and called the lifeguard to come and now the elephant is kind of scared that it is going to hurt when they put on the bandaid and now she is walking with the lifeguard with the bandaid on herself and she is kind of happy and kind of sad and now she is sitting the bench,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and the lifeguard is pointing to no running because she was running uh the elephant and the giraffe the elephant is looking at the giraffes airplane that he has in his hands and she is happy now the giraffe is kind of playing with the airplane and pretending that it is flying and the the elephant is trying it now and she is pretending and the giraffe is thinking she is he is scared that she is going to wreck it and now the the airplane fell into the water and now the giraffe is mad and now the lifeguard is standing there and watching them uh be mad at each other,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and now so the elephant is saying what happened and the lifeguard is wa looking at her now the lifeguard is trying to get the airplane and the now the giraffe is crying because the lifeguard can not get the airplane out of the water and now there is another uh elephant and she has a fish net and now she is trying to catch it with the fish net and she got it with the fish net and gave it to giraffe now giraffe is happy and um elephant is happy too,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 +there is a bunny and i think there is a dog and the dog has made a sandcastle in the sandbox and the bunny looks has a shovel and he looks happy and now the bunny was helping the dog to make the rest of the sandcastle and then the then the bunny pours all of the sand over onto the sandcastle and now the b the bunny wrecked the whole sandcastle the dog does not seem that uh mad and then now he looks at it now again,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and uh he is really mad and the bunny is just standing there looking kind of sad and mad too uh there is the bunny and the dog again and the bunny and the dog are going for a picnic the bunny is sitting by the dog and they are eating and the bunny has lots of food around him and now the bunny is really stuffed and the dog is still eating nicely and the dog is eating,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the bunny looks kind of uh really um full so now the dog is running to a parent that is walking down the road and brought the the other bunny to uh the little bunny that ate too much and now the bunny the big bunny is looking at the little bunny and now the little bunny is all better now there is the dog and the bunny again and the bunny is ru are running down the roa the s sidewalk and the dog has a a little cart with a balloon tied to it now the bunny is looking at the balloon that is tied to the cart and now the the dog is looking at the bunny and the bunny is trying to take off the balloon,0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 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 1 +and the bunny took off the balloon and now the balloon is sailing up in the sky and now the dog is really mad and the bunny is looking at at the balloon at the sky and now the bunny is walking down the s the sidewalk and the dog is looking at the bunny walking down and the bunny sees some balloons and the bunny sees the balloons with the man holding them and asks if she can buy one and they are they are five cents and the bunny is looking in his pockets because he does not have uh any money,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,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 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 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 1 +and now the both the dog and the bunny are looking at the balloons seeing if he will give them one and now the big bunny uh the little bunny is going to ask the big bunny and see if she has any money now they are asking the bunny little bunny is asking the big bunny if he can she can have a five cents to buy a balloon and so the big bunny gave the man five cents so that they can ha or ten cents so they can have two balloons and now each of them have two has a balloon the giraffe and the elephant are playing in the water and they are bouncing a ball the elephant is and the elephant is out of the water and so is the giraffe but she bounces it too hard,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and it land in the water and the giraffe tries to get it to jump in and get it but it looks like it is hard for him to get it but then he got it and then he swam to the elephant and the elephant got it and then the giraffe got out of the water and the elephant took it from him the elephant and the giraffe are staring into the water and the elephant tries to run in the water tries she like she is on where she is on the ground,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and then she tries to run in the water but then she slips and then she got a owie on her knee and she started to cry and then the giraffe called the lifeguard and the lifeguard help tried to help her was running over to her and the lifeguard got a bandaid and put it on her knee and then the lifeguard told her told her to bend her leg and then it felt better but then the lifeguard um showed the elephant that there was a sign that said no running,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then she had to sit on the bench the elephant and the giraffe are um laughing together and the giraffe has a toy airplane in the swimming pool and then the giraffe plays with it and flies it in the air but then the elephant grabbed it away from him and started to playing with it but then she dropped it and it fell in the water and then the giraffe got really mad and the lifeguard came over and looked at the airplane and was shocked and the elephant said it was an accident,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 +but then the so the lifeguard bent down and tried to get it but he was too short and then the giraffe started crying and then the elephant looked shy like kind of like she is sorry and the lifeguard did not know what to say but then a girl walked over one of the lifeguards walked over and grabbed the net and grabbed the airplane with the net and then the giraffe started stopped crying and then the lifeguard was happy and then the elephant did not know what to say and then the and then the lifeguard picked up the airplane and gave it to the giraffe,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the gir and the elephant was happy and the giraffe was very happy a dog and a a dog and a bunny uh well first the dog is playing in the sand with a shovel and then the bunny comes along with his shovel and the dog is just done his castle and the bunny is putting some sand in his sand bucket and then the bunny pours all of the sand on the castle and and then the bunny instead of the dog getting mad the bunny gets mad and then the dog starts to cry,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +a bunny is w the bunny is w walking down the road with his basket and a dog waves at the bunny with his basket and the dog takes out his sandwich and the bunny takes out her big meal that she has in her basket and then the bunny eats it all and then you can see garbage all over the mat and then the dog is just eating a sandwich and then the bunny feels a bit sick and the dog is shocked so the dog runs down the road to the bunny is granny and tells her,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 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 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the granny um well the dog is pulling the granny towards the bunny and the the granny fix like helps the bunny and then they walk home happily together the bun first the dog has a wagon with a balloon tied on it and the bunny is walking down the road waving at the dog and then the bunny says that is a nice balloon that you have and then the bunny tries to tie it off the wagon but then he did tie it off and then it floated up in the air the dog and the dog got really mad,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 1 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 1 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 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 1 0 0 0 0 0 0 0 1 +and he got so but he did not have to be mad for long because he saw a balloon carrier and the bunny was walking towards him and the bunny asked how many how much are those balloons and um the salesman said they are five cents each but the bunny did not have enough money he did not have any money and then the bunny and the dog just standed there and went gave a sad face and then the bunny walked toward this girl on the street and asked if i can get a balloon and then the girl gave her fi gave him five cent ten cents for two balloons and they both had the balloon and were very happy,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,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 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +there is a giraffe and an elephant shall i turn the page okay then then there was a ball in the water then the giraffe went to get it then the giraffe got the ball for the elephant and he was playing with it the end they wanted to go on the on the jumping thing and the elephant one want to go on it,0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 +then the elephant tripped then he got a owie then the lifeguard came he put a bandaid on it and they and he took it took him to the bench i do not know it there is a giraffe and an elephant the giraffe has an airplane then the elephant took it then it fell in the water,0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +then the giraffe was mad at the elephant do not know it looked like it was sinking but the lifeguard was trying to get it i do not know and the lifeguard got a net and he fished it out and he gave it back to the giraffe do not know there is two rabbits that are going to make a castle,0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +they are making one he dumped ah sand on it then it broke and and they were going to build it again the end there are two rabbits that are going picnicking they brought food to eat they ate all the food one of the rabbits are really fat then t a doctor came,0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +then one of the rabbits are pulling him and then he was checking his temperature then the doctor took one of the r rabbits the end there are two rabbits that have one balloon okay anything on this page no then they took it off then it went up in the sky then it was up high,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +there was a rabbit had lots of balloons and one of the rabbits asked him if he can have one it costs five cents nothing here okay and there was a rabbit coming then he asked the rabbit if he can have money for a balloon then he then he gave the bunny gave him the money then they each got one the end a donkey thing and an elephant are playing with their ball playing basketball,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 1 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 0 0 1 +um the they shoot it and the ball falls into the pool that they were standing by the donkey goes in and gets it out of the water he brings it back to the elephant and the elephant is happy the elephant falls in love with him they are going to go swimming the elephant goes to run to the diving board she slips and falls and hurts herself she is bleeding because she has a cut on her knee,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +um the donkey thing goes to get the lifeguard they put a bandaid on she is okay he points to the sign that says no running and she gets um embarrassed um they are going to play with this plane near the swimming pool he is flying around with it and she wants a turn she so she grabs it from him and starts playing with it it falls into the water,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and they can not get it out he gets mad at the elephant then they call the lifeguard and then the lifeguard is looking at it the lifeguard can not reach it he still tries to reach but he still can not reach it it is sinking and the ele donkey thing is crying and the elephant feels sorry,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +and the lifeguard says he can not do anything then the other lifeguard comes with a net and she fishes it out with the net and then she gives it back to him and he is happy and then they are both happy the two little kids and then they play with the airplane again the rabbit and the dog are playing in the sand they are building a sandcastle he pours too much sand on the sandcastle,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 +he wrecks it um the bunny and the dog are going to go and have a picnic they are having a picnic and he is eating everything he ate all unhealthy stuff and only like a few carrots and stuff that is healthy he gets sick the dog goes to get a medic the me the medic um helps him and he is sick so she is going to cure him,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then he take she takes her like to the doctors office place and then she is going to um make him better um the the dog and the bunny are going to go and play with their balloon th the bunny takes the balloon off the wagon he ties it off and then the dog does not want it him to it goes up in the air and they can not get it the dog gets mad at him uh they go to buy another balloon,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 +they pick one but it is five cents and they do not have any money sss and they both do not have any money so they are thinking what to do um they so so they go to their mom and she is going to give them money um she is gonna gi she is getting her money out of her pockets to give to them she gives it to them and they can buy two balloons then they are both happy,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,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 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +there is a guy gi uh have candy and he is selling it and he give and it one dropped into the water and he swims for it and he pulls um um he gots it the other guy gots it and he get um and he get and does not he does not give it to him the end the guy is going to jump into the water the guy um runs and runs and the guy the other guy he slips,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,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 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he falls down and he cries and he and he has a booboo and he puts a bandaid on it and he carries him puts him on the bench the end the guy is looking at him and he has a airplane and then the other guy takes the airplane and plays with it,0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then it falls o it falls into the water and then the other guy gets mad at him and the other guy gets m um the other guy there is two guys standing getting mad and the other guy ge um um gets scared and the other guy chases it into the water an and the other guy cries and the other guy has a net and the other guy takes it out of the pool and then he gives it back and then he he likes him,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 +the end there is a there is a bunny rabbit um um gonna make a there is a bunny rabbit who made a sandcastle and they are both of them are making a sandcastle and they are they are pour they are pouring it on on the guy somebody is pouring it on and he is breaking it and the other one gets mad no not mad i forgot it breaks and they make another one the end,0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 1 0 1,0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +they have both baskets the bunny rabbits has baskets and they gr they are having a picnic and then the other one eats all of his and then the other one du um has uh juice and then the other one is wa um somebody is walking and somebody is pulling somebodys shirt and somebody gets mad somebody brings somebody home the end,0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 1,0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +there is a guy having a balloon in his wagon and the other one is walking and he w and he is trying to take it off and then he en unwraps it a little bit off and then it flies away and then it float he wrap um the um the string falls down why does your boss does your boss let you look at these pages she says while your doing them i am not supposed to so i am not so you can see them go ahead the guy has balloons in his hand and the and the other one buys one,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,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 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then he and then he sh then he checks in his pocket for money and he does not have money he checks it for money and he can not get one and and he was allowed to ah the other one is the uh there was a man heh uh selling balloons and then he gives one to him and the other one has a balloon and the other one has a balloon the end a elephant is going to his friend,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +he is saying what is there what is in there orange he said the the orange fall down in the water and then the his friend he he falled in the water he was trying to get the orange and then and then the elephant got the thing out and then the elephant got the orange out and then he walked and then he walked his and then he walked to his home the end um the the elephant and the friend he was going to the pool they were going to jump into the pool really fast,0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and they are going to jump into where the sides are and they and the his friend hurt his leg he hurt his leg and that hurts really bad um his f his um his brother came and he and so he and he seed what happened and he gave him a bandaid and then it hur and then he went home they were going to play pool again and then there and then he was driving airplane,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the his friend was driving a driving driving a airplane and playing again they are playing again they were going to jump i and the airplane got in the water okay and then he was trying to and then he was very mad and then his friend and then his sister went over to that girl t um the sister went over to the brother and then he and then the brother came over her and then and then he sawed what happened and then he is trying to get it and then he he did not know how to get it,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +he tried he picked that and then he tried to get it hey look look behind here um the boy has girl hair the the girl was pretty then he tried to get it and she trying to get that um airplane and then he tr and then he got it and he was very happy,0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and then h and then the elephant was very happy too the end i see a bunny that is in the s um i see a dog that is in the sandbox and helping the bunny and the bunny and the bunny is making a sandcastle they are trying to make a sandcastle and he is helping and he is helping the dog and uh um the rabbit broke the doggys castle and then he was making it all over again the end um the bunny was going for a picnic,0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +he was following the dog and then they were there already they were playing in the sandbox with a picnic and then he burped and then he burped and then he was eating all th and then the dog was eating all the other thing he was eating one at a time and then he was and then he sawed then the dog he was laying down and then he was sleeping he was kind of asleep but he did not,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and then and then he was turned into a doctor then he was turned into a doctor and he had and he had doctor things and and a doctor came and then he went with the doctor and then he tooked him to the doctor where the doctor thing is and then he laid down with a blankie went to sleep and then and then the doctor came to a different to a different man but it was not that man he was so he was so tall,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 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 0 0 0 1 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 1 0 0 0 0 0 0 1 +and he was trying to help the man and then he w and then the doctor came with this with the bunny he was going to the doctor the end they are going to the um circus and then the bunny was c the bunny came with him and he had and he had a balloon and then he w and then he was trying to get the balloon and he was following him and then he took it off,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 +and then it po and then it was gone and they were trying to get it get get get it back and then he was very mad and then he said i am sorry and then he had a whole bunch of balloons and then he wanted and then he wanted m and then he was going to get one and then he wanted one and then he had some dollars and he was then he was going to buy one and then he gots no money,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then he could not buy one and then he was and then the doctor help him help him and then he gave him some money and then and then he wanted the balloon and then um he got a balloon for him he gave him some money and then he got a balloon and they wan and they liked and they liked it and then they said and then they said thank you the end,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1,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 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 +an elephant meets a horse then the elephants ball bounces in the water the horse swims to get it the horse got the ball the elephant was happy the end an elephant and a horse wanted to go on a diving board the elephant says let us go on the diving board the elephant slips and scrapes her knee then the elephants father comes and puts a bandaid on it,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and the father said that bandaid will make sure it does not hurt the father says no running an elephant met a horse who has a toy plane the plane f he the horse pretend it pretend it flies then the elephant wants to try then the elephant threw it into the water it was sinking and the horse was mad and the elephants father came and the elephant said i threw that plane into the water by an accident,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and it is the horses the elephants dad could not reach it because it was too far and the horse was crying then a lady came and had a net and caught it with and almost caught it with the net and she got it with the net and gave it to the horse the horse was happy a dog and a bunny are making a sandcastle they needed thick sand but the sand was too light so it fell on the castle,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +now the castle is nothing but they could see part of the castle a bunny and a dog are going for a walk they have a picnic the bunny gets too full he the bunny gots a stomachache the dog runs to the doctor the dog pulls the doctor to the bunny the doctor said he has a stomachache then the bunnys mom came,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +a dog is pulling a wagon with a balloon the bunny says if you let go it will fly up to the sky the dog says no do not do that the balloon flied up to the sky the doggy gets mad then a man comes by with who was selling balloons the bunny picked one of the balloons which was five cents and he did not have any money so he could not buy it his mom came,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 +and the bunny says i need a five cents to buy one of those balloons then the um mother w one give five cents cents to the man then they both got balloons the end the elephant and the giraffe were playing with a ball the ball went in the water the animal was swim and got it the elephant got her ball back the elephant uh the um they were happy they were at the water pool,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 +the elephant was pointing at the jump board the elephant slipped the elephant got a owee the safety guard ran the safety guard put a bandaid on her she sat down the safety guard got mad at her no running they were going to play with a airplane the animal was playing with it uh the airplane,0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 +the elephant took the airplane the plane went in the water the animal got mad at her the safety guard was coming to check he the elephant said the airplane is in the water the safety guard tried to get it they could not get it a big elephant with a catcher got it she pulled it out the animals airplane was back,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 +they were both happy they were going to make a sandcastle the rabbit puts sand in the bucket he dumped it on the castle the sandcastle broke the dog cried they were going to go for a picnic they took their stuff out bunny ate fast what is that,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 1,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 0 0 1 +bunny ate fast he got a sore tummy he was calling the doctor the pup dragged the doctor over there you ate too you ate fast said the doctor the doctor took him with him took him wi the bunny with him bunny was coming to look at the balloon the bunny said wow the bunny untied it it flew away,0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 1,0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 +dog was mad they were going to buy a new one they did not have no change actually they did not have five cents they could not buy one there was a doctor the doctor gave them twenty five cents for two balloons they got their balloon they were happy one day there was a elephant bouncing a ball,0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 1 +it went into the water the zebra jumped in and ge gets the ball and zebra gives it back to elephant the lady smiles and the giraffe smiles one day they are both laughing and they wanted to go on the board the the elephant said to the giraffe let us go on the board and the elephant slips and he gets a booboo,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then another el elephant comes running and look at the booboo and he puts a bandage on and now she go she is surprised no running allowed the the other elephant says one day the giraffe had a airplane in his hand he was flying it elephant took it away from him and she dropped it into the pool the giraffe got angry at the elephant but the guy came running,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +and he sees the plane in the water the elephant said it was not me that brought it the other elephant tried to reach it then the l then the giraffe was crying i know a way to get the plane out she put in her thing and got the airplane she is she handed the the airplane to the giraffe and the giraffe hugged it one day rabbit wanted to play in the sand and so did the dog,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +the dog was going to touch it and the rabbit was filling up his bucket rabbit dumps sand on it the dog saw and and the rabbit was horrified the dog tried to fix it one day dog met rabbit and they both wanted to have a picnic rabbit ate and ate rabbit got a stomachache,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 +and the dog was eating he got sick the dog came running to a doctor he said wait a minute what is this problem about it is about him and he is sick the doctor takes him for a walk one day a dog was taking a b wrapped a balloon on her wagon the bunny sees the balloon,0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +he ties it off he let go and it was floating away and the dog was mad at the rabbit and the rabbit sees balloons a balloons were holded by an old rabbit it is worth five cents you cannot have a balloon if you do not have any money rabbit goes to the doctor we want a balloon,0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +she paid two two ff nickeles and now they both got balloons um a giraffe and a elephant were friends and they were playing ta with each other and then their ball went in the water and the giraffe went to try and swim for the ball and the giraffe got it and gave it to the elephant and the giraffe was soaking wet um once there was a elephant and giraffe and they wen were friends,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and they went to a swimming pool together and the elephant was going to jump in and she and before she jumped in um for some reason she must have forgot something she went she ran very fast with no running allowed the elephant fell down and hurt her knee she was crying and looking at the pain she is crying even more and not looking at the pain then she sat down on the bench and the lifeguard gave her a bandaid and the lifeguard said no running allowed,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +the elephant and the giraffe went to the swimming pool and they and the giraffe brought a swimming toy with him and and he was playing it and the elephant was just like stare on it on at it like crazy the the elephant grabbed it from the giraffe it looked so neat and then she dropped it in the water the giraffe got very mad at the elephant the lifeguard came and looked at it and and came closer to the elephant and the elephant was ex trying to explain how it happened,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,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 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the lifeguard was listening very carefully the lifeguard tried to get it but he could not the giraffe was crying the both the lifeguard and the elephant were was just kind of staring at it then a girl with a net came and the and they was sup they were like and the girl with the net was pull get trying to get the airplane with her net and she got it for the giraffe the giraffe was hugging it,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 1 +once there was a bunny and dog and and and they were friends the dog was making a sandcastle then the bunny was about to come in with a shovel and he came in and throwed a bucket of sand the bunny dumped it onto the ca sandcastle dog was kind of sad it bro i think it broke her castle she was crying there was a dog and a bunny,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 +they were friends and they were going to go to a picnic with each other um the the dog was taking everything out of her picnic basket but the bunny was just eating everything she took out the the bunny was very full and the dog was hardly even eat ate everything the bunny was fat and then the dog was about to drink a little bit of her juice and the bunny had a tummyache then a grownup bunny came along,0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 +and the and the dog was racing to her and it was like please please please and the lady was like you eat too to eat you bunny and the bunny and the grownup bunny just just went along with each other the bunny and the dog were the the bunny was running to the dog and the dog was just going her wagon in front of her with her balloon and the bunny liked the balloon he was about to pull it off and the bunny was untying it and the bunny was like the the dog was like,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the bunny untied it and the the balloon floated away they were trying to reach to get it the dog got mad at the bunny un until when the string was just left and then a bunny with balloon lots of lots of balloons came and he said come here come here the bunny and the the man with the balloons came and the bunny was like and the big bunny with the balloons was like which one do you want that one that one the little bunny was like,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 1 +this this one you can not have this one and then the bunny and the dog was sad and then the the same lady with the other book came and the and the bunny was running to her and the dog was just staying with the bunny with the balloons and and the dog still had her wagon and the and the grown up b girl bunny was the kid bunny was saying to the grown up girl bunny can we get one of those balloons can we get one of those balloons for the dog and the and the and she paid for it,0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 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 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and they each got a balloon two different animals were the swimming pool they wanted to play dodgeball in the water water dodgeball the ball got in the water and the an giraffe was going to get it so huh hm while he was swimming water came out of his mouth and he was all drippy then giggled he the ele the elephant watched when they were at a swimming pool the elephant wanted in the dive the diving board,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and there she wanted to run toward she wanted to race towards it but there was a sign that said no running she runned towards here the giraffe never runned and they huh and the elephant slipped and slipped and fall down and hurt her knee lifeguard came running she got a bandaid on it elephant sized bandaid and h bit better and the lifeguard said next time look at the sign they were at the swimming pool,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 +and the huh giraffe huh is throwing air huh super duper flying jet plane he wanted to fly it but elephant wanted to fly it into the water see if it could land on its gear but it w it was starting to sink then the giraffe got angry at her because of the plane in the water and a lifeguard huh s looked at them what is going on and they said the my friend s his super duper jet plane is in the swimming pool it is sinking he try to get it,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 +but he could not reach it it was starting to sink more cried then they s he who is there to swim he got something was all that looked like a big fishing net he got it out huh he got it and he tooked it out and starting stop crying then to the giraffe and got happy he hugged his plane like it was a lost memory hm there were two moles at the sandbox,0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 +one was building a sandcastle and one was building a pail one the bunny when he was done filling it up and patting it down he put it right over the the sandcastle went oh no doggy got sad bunny just whistled the animals going out for a picnic in the woods they found the perfect spot they started chowing down the doggy ate s sandwich and juice,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and the bunny got just a tummyache then him drinked his juice and ate a biscuit and the bunny got a sicker the bunny fainted then got there him want to get him to come he got a big tummyache he was going dizzy hm pic picnic was all gone the we bunny went back home,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 1 +one animal had a balloon and the bunny was coming towards this him he say cool balloon he untied the balloon did not know it would float up it went really high they could not get it and the balloon was gone the doggy got angry then there was a balloon saler,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 +he wanted one of the balloons to get to for his friend but he was broke s so decided to get someone who had money the bunny went to get the doctor she had lots of money huh to get a balloon then two balloons for each of them and they were pretty having fun and laughing an elephant was playing with a ball and a giraffe came to play with it um and the elephant threw the ball into the pool,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and then they got scared that it would sink the giraffe tried swimming to get it but he could not get it and h um but he got it and he gave the ball back to the elephant and the elephant was happy to see the ball again the elephant and the giraffe seen a diving board and the elephant said and the elephant started running and the sign said no running and then the giraffe tried to catch the elephant,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +but the elephant hurt herself and she had a cut and she got a bandaid and she felt better and the lifeguard got mad at her because the sign said no running the giraffe had a toy airplane and the elephant wanted to play with it the giraffe started flying it and then the elephant took it from him and started flying it and then it sunk underwater,0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the giraffe got mad at the elephant but the lifeguard went to get it and it was still floating in the pool and then he tried getting it from the outside of the pool and he could not reach it and then someone else came with a fishing net and got it out of the pool and gave it back to the giraffe and he was happy again a rabbit and a dog were playing in the sand they made a sandcastle the rabbit broke the sandcastle,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,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 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 +and the rabbit got mad and the dog started crying the rabbit and the dog went for a picnic the rabbit had more stuff to eat than the dog the rabbit got really really full and then the rabbit had a stomachache the dog ran to the rabbits mom the dog and and she went to see the rabbit um and the she was a doctor,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +um the rabbit felt better and he went home the dog was with his wagon and his balloon and the rabbit wanted the balloon the rabbit untied the balloon and took it then the balloon flew up in the air and the dog got mad and there was a rabbit holding a lot of balloons and the little rabbit bought a balloon hm and the little rabbit could not buy the balloon because it was five cents,0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the dog saw the balloons and the little rabbit went to get some money from the doctor and the rabbit told the doctor that he did not have any money and she bought the balloon and the little rabbit and the dog had balloons there was this old giraffe and elephant was playing by by the pool with some bouncy balls and the giraffe came up and said can i play then he bumped the ball and then it went into the pool,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1,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 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 1 +then the giraffe swam swam and there was water came out of his ears and the elephant could not look then the giraffe gave it to the elephant and she was happy then he smiled and she smiled the end there was these two elephants the giraffe and the elephant and there was a diving board,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the sign said no running and the elephant ran and ran and they almost slipped then she slipped and then the giraffe ran after her and then the elephant hurt herself on the knee and the giraffe looked at the sign no running and she sa and the giraffe said no running and the lifeguard came and sh sh the lifeguard put a bandaid on,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and she was still crying and the lifeguard helped her up and handed her to the giraffe and the lifeguard said no running the end and she got up and she was all better and he flew his airplane and he flew it and slobber came out and the gir elephant looked at the airplane,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1,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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and she got dizzy then she took it and flew it and the giraffe said uh then it went into the water and the giraffe got really mad at the elephant and the lifeguard came again and he looked at the elephant and there was a airplane in the water and he tried to reach it but he could not,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 1 +and and the giraffe started to cry and another lifeguard came and brought this net and she tried to get it and she did and she handed it back to the giraffe then the giraffe and the elephant was so happy the end there are these two bunny rabbits playing in the sand they made a castle and they are laughing,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1,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 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +they starting to fix it and building new stuff the boy rabbit dumped sand on the castle sh and the a little part of the castle is showing and now it is only sand now they are trying to build it back together the end they are these two rabbits walking down the in the forest they walked and walked they met each other and they started to have a picnic with every bo and with every with that girl,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the boy rabbit ate everything up and he was full then the girl rabbit looked at the boy rabbit and the boy rabbit did not feel so good and then there was a doctor came and the girl went to get hi her and she pulled and she pulled and they finally got there and she was checking if he was all right,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then the doctor took him and the girl stayed there they saw these two rabbits walking down the woods again and one had a wagon and a balloon and the boy jogged and jogged and they looked at the balloon and the boy rabbit untied it and he tied it and it flew up up and away and the girl rabbit got so mad,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +there was another balloons and the girl ma rabbit was still mad and the boy asked the man a question and then the girl was coming over and the man said the balloons were five cents and the girl looked at there and the man smiled oh again there was the doctor again and sh the boy talked to the rabbit and said my sister is mad because i lost her balloon the girl is mad,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 1 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 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 +here is five cents and here are two balloons he said they were so happy the end a giraffe and an elephant are bou the elephant is bouncing a ball and they are by the pool the ball falls into the pool the giraffe swims to get it um the giraffe gives the ball back to the elephant,0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 +she thanks the giraffe the elephant and the giraffe are going to the pool the elephant is pointing to the diving board she she is running so she slips she hurts her knee the lifeguard comes to see what happened the lifeguard puts a bandaid on it she the elephant sits on the bench and she smiles at the lifeguard when he points at the no running sign the elephant and the giraffe go to the pool again,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 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 1 +the giraffe brings an airplane that he is trying to fly and the elephant is just looking at it then the elephant takes it away from the giraffe and she drops it into the water the giraffe gets mad at her the lifeguard comes and see what is happening the elephant is trying to explain what happened the lifeguard tries to reach it and he can not reach it and the elephant and the giraffe starts crying,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then another elephant comes with a um net and puts the net in the water and tries to get the airplane and she gets it out and the giraffe is happy again um two people two um animals are in the sandbox they are building a sandcastle one of them is dumping sand over the castle the sandcastle breaks because all of the sand and one of the animals gets sad two animals are going on a picnic they bring lots of food,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,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 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +and one of them is drooling over it one of them eats it all up and he gets a tomach stomachache and the doctor comes to see what is wrong with him she she one of the animals is dragging her she is she she comes and see what sees what is wrong and she helps him two animals one animal comes to see the other animal one animal looks at the balloon that she has,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +she is he is taking it off of the wagon and it flies away then one of them gets really mad then they see the balloon man and he probably goes to buy her another one and she asks for one balloon and the balloons are five cents and he is looking in his pockets and he is sad because he does not have five cents and then the doctor is just looking at the view,0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he goes and asks for five cents and she gives the balloon man five cents and then they both get balloons an elephant is playing ball with a ball and then a giraffe is just looking at looking at the elephant like wow and the now the the elephant was bouncing it and it fell into the water and now the elephant is sad so looks like the giraffe is going to go get it and now the giraffe jumps in and is swimming to get the balloon the ball,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 +and so now she got it for the elephant and the elephant is helping him out and now the elephant is happy and the giraffe is happy too um hm um they are standing in front of a pool the giraffe and the elephant and looks like they could be feel like swimming that is all and now the elephant sees the diving board and the elephant wants to go diving into the pool and the elephant is running to go get to the diving board,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 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 1 +and the giraffe is running after her and then she fell and hurt her knee and looks like she is going to cry and the giraffe is running to help her and then the lifeguard comes and is helping her and the giraffe is helping her too and now she is crying and the lifeguard is putting a bandaid on her leg and now the the lifeguard is carrying her to a bench and the hiraff the giraffe is helping her,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and the lifeguard is mad and is say and is telling her look at the sign it says no running on it and the giraffe and and the um the elephant looks like he is looks like she never i dont know i can not i dont know what she is doing let us see like hm like he is going to get very mad at her now the giraffe has a little airplane and the elephant wants to play with it too and now the giraffe is trying to make it move and the elephant is looking at it like wow and now it is the elephants turn and the elephant is trying to fly it now and now the giraffe is looking at his plane because the plane fell into the wa swimming pool,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and now the giraffe is mad at the elephant because his airplane is sinking into the water now the lifeguard looking at them and they are looking back at him now she is trying to the elephant is trying to explain to the lifeguard that the plane fell in and is asking if they can he can get it out for them and the lifeguard is trying is on his knees trying to ah get it out of the water and both of them are looking at him and the lifeguard looks like he is using all his might and now the lifeguard could not get it and the elephant s felt sad and so did the giraffe,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 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 1 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 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 +now a lady comes and she has a little net she said she would get it for them the airplane and now she is using all her might and looks like she got it and then she got it out for the li for the giraffe and the giraffe was happy and now the elephant and the giraffe are both are both happy again um two a bunny in the sandbox making a castle and another one is out on the outside going to come in and then now they are both making a bigger and bigger one,0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 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 0 0 0 0 0 0 0 0 0 0 1 +and that is all that is all i can see and then one of the bunnies is pouring so much sand on and the other one is i think it is scared or something and now the sand now the sandcastle was broken and the other one just looked normal and now she is trying and trying to make a b another one because it is all broken two bunnies are walking along in maybe a forest or something and they are holding a picnic basket two picnic baskets and now they are having a picnic and all and they are eating,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +actually one of them is eating with all the food and the other one is just sitting there with his sandwich in his hand and now they are both eating and now one of themis eating and the other one has a stomachache and the other one really does not know what to do because he has a stomachache and he and he is getting dizzy and then a doctor was walking along and the other one came and told the doctor that he was that he had a stomachache and so now she is pulling the doctor to come and get the person the rabbit actually,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,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 1 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 1 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 0 0 0 0 1 +and now the doctor is operating on the guy little bunny now the little bunny is fine and he is going home with the doctor and the other one is sitting by the sand box thing or whatever the big picnic picnic thing now the two bunnies are walking along and one of them is pulling a wagon that has a balloon attached to it and now the other bunny never noticed the um balloon and is looking at the balloon and pointing at it pretty funny now the the bunny is trying to untie the balloon and the other one is looks kind of scared,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 1 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 1 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 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the balloon flew away and they are both hopping and trying to get it to catch it and the balloon gone and one of them look is just looking up and the other one is very mad now the other one sees a man selling balloons and then so he is walking along k to get a balloon for the one he made fly away now he is say he is saying to the thing the man can i have a balloon looks like it and now he got now he did not have any money for the balloons,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 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 1 +and li and uh the guy said it is only five cents for a balloon and then hm he looks um he looks weird now they are both looking at the guy and the guy looking down at them while he is holding the balloons and now she is running to one of the rabbit guys are running to the doctor that they saw before and the doctor there she is running to the doctor maybe to get some money and now she is he is um showing the bunny what he needs what she wants and now she is paying for it and both of the kids are happy and now they both got a balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and they are happy and the doctor is happy too it is over there was a um elephant that had a ball and um a giraffe wanted to play with the balaloo the ball too but the balloon accidentally gotinto the w into the swimming pool and and the elephant was very worried that it would it would it might sink and then the cow the giraffe came over to s to get it swim after it to get it and then he got it and he gave it to the elephant so she could play with it with him,0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 1 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 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the elephant and the giraffe came came to be friends and also they wan and they also played t with the ball together the end there was an elephant and um a g gir giraffe and the elephant ran over to the diving board and then she accidentally slipped then she and then then the giraffe came running after to see if the elephant was okay and then and then then the elephant started to cry because it really hurt she scraped her knee then the lifeguard came running over and said do not cry,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +i will help and then he put on a bandaid on her on her scraped knee and then then she stopped crying and then the lifeguard helped her get onto the the bench so she could go over and rest her knee for awhile and then she can go back swimming and then she did not then the lifeguard said you must look at the signs that say no running or no doing anything just in case there was something slippery or you can not go on the diving board the end there was a giraffe that had an airplane and he really like it lots,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then an elephant wanted to play with it and then he started playing with it even more and then the elephant wanted to play with it then the elephant grabbed it from the from the giraffe and then he was very angry and then it fell into the water and then they could not get it so they so they did not know what to do and then giraffe got very very angry at the elephant and then the lifeguard came over and and said what is the problem,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,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 1 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 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and elephant explained i grabbed the the toy airplane from the giraffe and then i accidentally threw it into the water and then the lifeguard tried reaching for it but he could not get it then the giraffe started to cry about he liked it then somebody came over with a net so they could get it then she reached over and got it for them then he got it back and he really really liked it again and then the elephant really really wanted to play with it,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 1 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 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +but the giraffe was too busy playing with it the end there was a bunny and dog they wanted to build a sandcastle together and then the bunny took too much sand and then he dumped it onto the castle but the castle got ruined accidentally accidentally and then the dog was sad because her castle got knocked down the end there was a dog and a bunny,0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +they wanted to have a picnic together and they each took out all of their stuff from their baskets and ate and they ate and ate and ate until the bunny got so full he wa he felt like he was sick and then the puppy dog went to go and get doctor somebody who could help and then and then the doctor came over and helped the dog and the bunny and the bun and the doctor helped the bunny be all right again and then the bunny got taken someplace where he could be all right the end there was a dog that had a balloon hooked up onto her little wagon then the bunny wanted to have the balloon,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 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 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and so the dog let the bunny look at the balloon and then the bunny untied the balloon and then he lost the balloon but then the dog very an very sad then the dog get got very angry at the bunny and then they saw a a s a person that was selling some balloons an and then they came over to him and said can i please have another balloon a balloon but the rabbit but the little rabbit came over and said can i please have a balloon but the person said no you need some money and then he and then he showed him how much money he n how mu how much money he needed for a balloon,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 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 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 +i and it was quite a bit and he did not even have any money so they could not get another balloon for the little dog and they and they were very sad and then they came over to a doctor and and the little bunny said can can you please help us get a balloon and then the doctor said all right i will get you a balloon and the and the doctor gave the the person um as much money as as they needed and then they enjoyed their balloons again,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 +the end there was an elephant playing with a ball near the pool and the and a gira and a giraffe came wanted to play too the ball fell right into the pool the giraffe swam right towards w jumped into the pool and went to go get the ball the giraffe got the ball for the eleph baby for the elephant and the elephant likes the giraffe that is all the elephant and the giraffe wanted to go swimming the elephant was going on the diving board,0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +the elephant was running then she slipped she h cut her knee the lifeguard came the lifeguard put a bandaid on the lifeguard put the the elephant on on a b the bench w and the lifeguard pointed to the sign that said no running the giraffe was playing with his toy plane h um he did loops and stuff with his plane the elephant grabbed it,0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 1 +and it landed in the pool the giraffe was very mad the lifeguard came to s to see what the problem was h he uh the lil the little elephant told everything what happened the lifeguard tried to get the air the plane but he could not reach it then then a then an elephant with a net came the elephant with the net scooped out the plane and gave it back to the giraffe and he was happy again there is a little bun a bunny and a th and a dog,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +they are going to play in the sandbox the dog was building a sandcastle and the wa the rabbit was putting sand in a bucket he the rabbit dump dumped the sand on the sandcastles the rabbit and the do the ra the rabbit was like what happened and and the dog was trying to rebi and the little dog tried to rebuild it the little dog and the rabbit they saw were going for a picnic uh uh the the dog had a sandwich and the rabbit had carrots sandwich cake chi he had all kinds of st stuff,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 +then he then all his food was gone then he felt sick the dog ran to get a doctor sh the dog showed where the doctor where where they were having the picnic the do the doctor they were saying ah with his stick and i think that is what he did then he felt all better the little dog was pulling a wagon with a balloon the ra and the rabbit came along the rabbit saw the balloon on the wagon tied to the wagon,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +the rabbit untied the balloon the balloon floated away the dog was very mad the rabbit ran to a balloon man the rabbit wanted a balloon h he he had no money so they so they were very sad then the do then the doctor was walking along and the rabbit went to ask for some m went to ask for some money sh sh he told the the rabbit told the doctor everything,0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 +the ra the doctor gave money m money to the balloon man so they got the two balloons and now they were very ha and they were very happy uh he walks to a horsey and then the horsey fell falls down then the horsey fell in the water and then he gives the ball back to him and then they play with it and that is the end so um he goes in the sandbox with the elephant,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 +and then they walk in the into the sandbox and then they walk into the hill and then they laugh and then they got a scr and then elephant got a scrape and then he then he started to cry and then he he sat up and got a bandage bandage and he said are you okay the end um he found an airplane in the sandbox and then he and then the and then he flies it up in the sky,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then he stands up and then he stands up in the sandbox and then they br broke the airplane in the sandbox and they dropped it and then he he it was stuck in the sandbox forever and then it was more stucker and then a lifeguard came and get it and then he got it with his and he reached it with his arm and then they were sad the lifeguard got it for him and then the lifeguard poured on the net,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,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 1 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 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he got it and then he said here you go and then he keeped it forever the end he the dog goes in the sandbox and then he starts making the sandcastle and then the rabbit spills on it and then he and then it is all gone it x up then it was all covered up,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 +the end he goes looking at his favourite friend then he goes and stickes out his tongue then he had a drink and then he lies down in the sun and then he walks away then he pulls on his shirt and then he and then he talks to him and then they walk away he comes along with a balloon with with his wagon,0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +then he comes and then he walks with him then they stopped and walked in the snow then they lose the balloon and then they stop and get angry then they walk away and saw a man with balloons then they said to him balloon and then he gives him one and then they walk away and then they think the rabbit the big rabbit,0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 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 1 +and then they walk to his mom then they walk to their mom and then he comes and walk to the lady and then he comes and then he gets a ba another balloons balloons the end a horse a giraffe and an elephant were bouncing a ball the ball in the pool and the giraffe was scared then the giraffe um went in and swam and got the ball out then the elephant was happy,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 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 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and the giraffe was all wet and they were both happy the giraffe wa was scared to go in the water again so the elephant went in and she saw a diving board and she decided to go on the diving board and jump and then the giraffe said maybe that is a good idea the elephant went slipped and fell and the giraffe was running to the diving board the elephant hurt her her knee,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and the giraffe was scared so the giraffe helped the elephant the lifeguard came and saw the giraffe um was taking care of the elephant the lifeguard put on a bandaid it did not hurt any more so the giraffe did not look scared any more and the lifeguard was happy and then the other elephant the lifeguard looked at a sign and it said no running the giraffe and the elephant were happy,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +so they decided maybe we could fly a the giraffe decided maybe he could fly the airplane in the water and then got and then the elephant could dive down and get it and then the giraffe would throw it again into the water and the elephant would keep on getting it then it then it was then it was wanted real crazy so the elephant let him the giraffe would make made a tongue the elephant grabbed it from the giraffe and the elephant looked and the giraffe looked scared and the elephant looked happy,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +the elephant threw it and it went in the water and the elephant looked scared and the giraffe did not know what to do the giraffe got mad at the elephant and the elephant got sad the lifeguard got mad again and they both got and they both did not know that again so the lifeguard looked nervous because the elephant looked scared and the giraffe was sad,0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +lifeguard was going to get it so the lifeguard was trying to get it and the giraffe and the elephant looked nervous the giraffe started crying and the elephant was sad and the lifeguard was nervous oh then another elephant came with a net to get it out of the water so the they could have it back again and he tried to get it out but it mm it she tried tried a lot but it would not come out,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 1 +then he got it out and they were happy then the giraffe was happy and the elephant was too a bunny and a dog were building a sandcastle the bunny got scared and the dog was nervous they made a sandcastle then they both were happy they poured and the rabbit poured sand over the dogs sandcastle,0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +the sandcastle broke down and the rabbit was the sandcastle did not break down and the rabbit was nervo and the dog was nervous and then the dog um tried to build it up but he was crying and the bunny was nervous the dog and the and the bunny were collecting coconuts and berries and they saw each other and then they said hi to each other and then they were happy,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,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 0 0 0 0 0 0 1 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 1 +and and they and they had a picnic they went home first and then they went back to the spot they were going to have a picnic at and then the bunny ate a lot and the dog was nervous and then the bunny ate too much he got so fat and the dog um ate the rest the rabbit did not feel well and the dog was nervous,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +so the dog called the doctor and the doctor came and then the dog told him that the rabbit ate too much so he did not feel well so the doc so the dog dragged the doctor there because the rabbit was not feeling well the doctor saw that the dog that the rabbit was not fee feeling very well so um the hh he he was scared and then he felt then the doctor made the rabbit feel better and the dog was happy the dog mm pulled the wagon with a balloon tied onto it,0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +and the rabbit saw that the dog was pulling a wagon with a balloon on it the rabbit wanted the balloon and the dog looked nervous the rabbit tried taking off the balloon the dog looked scared the rabbit was sad because it when he got off the balloon it started floating away so they were both and then one um wen and the rabbit was sad and the dog was scared the rabbit was nervous nervous and the dog was mad,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 +there is a balloon man over there uh it it was going to another bunny hu him too can i have a and the and he said um can i have a balloon and the dog was way back there so the and the rabbit was up to get a balloon and then the guy the balloon man said balloons five cents so the rabbit checked in his pocket for any money but he did not have any the rabbit looked shy and the dog did not look shy,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 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 0 1 0 0 0 0 0 0 0 0 0 0 1 +and then the um man looked nervous the doctor was coming and the rabbit was running to the doctor and the balloon man was selling and the dog was nervous and then um he showed the doc the rabbit showed the doctor um that he wanted a balloon to buy to five cents to buy a balloon so he could have a balloon and the dog could have a balloon then he gave him five cents for each balloon and then the balloon man gave him two balloon and then they were were happy and the balloon man was happy,0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 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 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 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 1 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 1 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 1 +and the rabb the doctor was kind of nervous the doctor was real nervous and they were both real happy uh uh the the elephant and the zebra the the zebra were going playing ball and that was on this page and and then and and then um and then the ball falls in the water and then zebra goes in to to swim to it the and then the zebra brings it to the elephant and the elephant felled in love with the zebra fell in love with the what,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 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 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 1 +zebra oh they went on the they are going to go on the diving board and then she goes running to the diving board then she slips and and hurts her knee gets a scrape on her knee and then the lifeguard comes to put a bandage on it and then she starts screaming and then she w and then she does not puts her leg up like it is broken then the lifeguard says no running the z the zebra finds a a plane,1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and the elephant said wow and then he starts flying it then elephant grabs it from the zebra and then then sh and then she started flying flying it and and and then she drops it into the water then it floats and starts sink sinking then the lifeguard comes s and then then the little boy zebra said can you get my plane and then and then the zebra said the elephant was flying it and then she dumped it into the water,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 1 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 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +the elephant lifeguards arms tried to grab it but she he could not then the l then the lifguard gived her trouble a and the zebra was crying and then she go and then the and then the mom gets a net and s and grabs it out of the water and gets it for the little boy then the boy was happy and they started hugging it and it was done the end there is m they are ma they are making a sandcastle,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 1 +and then a friend came and then he dug he digged some sand and put it in a bucket while the other kid was making a sandcastle and then he dumps it on the sandcastle and then and then the rabbit was mad she uh the other one st and then the mouse starts crying the end they go for a picnic and the mouse and the rabbit goes for a picnic the rabbit starts eating loud and then the rabbit got fulled while while the mouse was eating lots of sandwiches and ju drinking juice and then the rabbit ate some more,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 +and then he had a and a and then he got sick then the doctor came to see the rabbit and the doctor was not then the and then the mouse was dragging the doctor and then the doctor see said s seem seen what is wrong uh and then he got all better they are going to the circus and the balloon pops he ties up another balloon then it flies away and then there is and then they can not move their wagon,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +there there is a balloon man and the rabbit says i want one of those balloons um and he can not buy any because they are five cents and then he and then and then he and then he dumps his pockets out and he goes to go running to his dad to ask his dad for a balloon for his friend and the doc and then then then his dad sa says okay then they bought two balloons and then they pop them he said hi i love those rocks,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 +then that rock is falling and he that one is swimming and he gave that rock and he play and he can play with it now the end and uh b there was is elephant and this one he was jumping over an and they can run faster hm were you going to help turn yep,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 1 +okay he said i want to go run faster and jump over it and he said you are not big enough and he said oh yes i will she ran and and then slipped uh and he will say y ouch and that hurts he has a booboo and he tell his mom and then he still cry,1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then he sit on it and he could help and do not play on the rules on the the pools once upon a time there was the this one is re really sheal he he said i like your airplane he said thank you and then it flies and he will catch it and he catch an airplane it does not fly but suddenly he the airplane did not fly up,0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +he looks so angry and then and he said what is the matter he said i was dropping it and and he take it and it falls down then why did you did that i did not do anything he said maybe i can get it and it is too hard maybe maybe i could try again,0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +i will catch it in that net he scoop it up and that airplane works and he is so happy the end a bunny l loves the dog and they shovel the and they and that dog build a castle and the castle and that bunny just well it will fall down the castle and that bunny he he melt them he did not do it,0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +they fix it up he waved at bunny and they eat some snacks and the rabbit is tummy is full and they got a tummyache he tell him he just look at it he just got a tummyache she really not feeling all better then she feels all better,0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +he waved at the dog and he gets the balloon then he show at the balloon then she pull it up he did not she did and it go up and he was mad it she tell them and he look at the balloons and he said would you please get that balloon,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and this present number five and they love them and they tell him again and he said the balloon will not get it wo he will not get it back and they all had two balloons and last year they have a balloon the end the zebra was going to the zoo and the elephant wanted to come and show them his practice at the circus and then they saw something inside a water,0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 +but the giraffe wanted to get that ball because the elephant dropped it and the elephant said thank you for getting it the elephant wanted to go swimming but it ran jumped into the pool and it hurt itself is that what is on this page the elephant ran then when it ran it just ran fast and then it um it fell down and it hurt its knee,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and then another elephant came what was the lifeguard he and the lifeguard saw the elephant hurt itself then the lifeguard said you can not swim without a lifeguard if it tells you and it said go on the bench and no more going swimming until you calm down and i say so the zebra w the giraffe wanted to put his airplane in to see it swim and it and it did and then it went in the water and the giraffe did not know how to get it out but then the elephant took it from it,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and then it dropped it in the water and then the lifeguard did not know how that it airplane got in said um that is the giraffes airplane and the lifeguard tried to get it but he could not reach it and the giraffe was sad because nobody could get it then another elephant and it got um a thing what you catch fish with and it tried out to do it but it got it the airplane,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 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 1 +the elephant who caught fish gave it to the giraffe and giraffe said thank you giraffe was happy he was making a castle in in the beach what he got the sandbox he won and he made a castle there then when he was done making the castle he wanted to make another one and then he tipped sand on it but he was afraid if it was going to crash and it did crash,0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 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 1 +but he had to make another one but it was hard to make they were going to go and have a picnic and the bunny wanted to come and he said yes they eated carrots and they listened to some music and the bunny rabbit was full and the puppy dog was not and then the bunny rabbit got sick,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and the puppy dog was not very happy and then um the bunny rabbits grandma came and the puppy said the bunny rabbit is sick and they said come here come here and she came and she looked at the bunny rabbit and said you are sick then they went back home the puppy dog was all alone having a picnic they were going to a circus and they brought a wagon with a balloon on it,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 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 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then bunny wanted to grab the balloon but the puppy dog would not let it so it said it is putting it in a knot he said then it flied away and he was mad at the bunny rabbit and then there is a man with a whole bunch of balloons and puppy dog was mad but then the bunny rabbit was not he wanted some balloons and he said please can i have a balloon,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,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 1 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 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +but the man would not let him he had no money but the puppy dog did so the pup but then the bunny rabbit saw another bunny rabbit asked can i come to wherever you go can i have a balloon if you have some and he said but then he realized that is not a man that is a girl said y yes then he gave her a balloon the that is a giraffe who is laughing with the elephant,0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and then he saw the ball and then the elephant was scared and then the giraffe gave him the elephant the ball and then the giraffe came up the sidewalk and then the giraffe came up the sidewalk the the giraffe and the elephant were too scared to jump in the water and then the elephant was laughing but the giraffe was like ssss scared and then the elephant s was like tripping and then the elephant was hurt his knees and then the elephant cried,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then the elephant camed home and then the elephant was laughing and then the swimming man said he was pointing a hand the swimming man was what pointing his hand the elephant was laughing and the giraffe was laughing and then they were playing with the airplane and then the elephants turn to play the airplane but they dropped it in the water,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 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 1 +and then they the elephant was scared but the giraffe was angry and then the swimming man was all mad at them but he said what happened and then he was like wo saying uhoh and then he was trying to get it but he could not and then the giraffe was crying and then the girl was trying to get a fish tank and then get it and then she got the airplane,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 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 1 +and then sh she gave it back to the giraffe this one the bunny was digging but this girl came and then dig and then they they both shared then they put it on together but that girl was scared and then they were like all sad and they made it back again the bunny said hi and then they went to a field tr trip,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 1 +and then they ate carrots but they guy did not got nothing and then they they both um shared food and then the f the bunny um dranked and the bunny was fatter and fatter and fatter and but he flew it off to this doctor bunny and then he s told the doctor that he is fff he needs help and then he said go to the doctor and then the doctor ss went to the dd to his workshop this guy was holding a balloon with a little car,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and then he was saying look my balloon and then he pulled it off and give it to the the other guy but it flewed up the sky and then the dog was all angry and then they ss and then they sawed the balloon man and then he said can i have that and but it was five dollar and then they were all sad but they saw the doctor and doctor can we buy this,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 +can we buy the balloon doctor and then the doctor s gave him the money th then they b got another balloon first there is an elephant and a giraffe and the elephant is bouncing a ball turn and the elephant i think bounces it into a pool and then the giraffe dives in to get it and then the giraffe comes back and gives it to the elephant and the elephant looks like he said th looks like he is saying thank you,0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 +um there is a giraffe and an elephant standing by a pool and there is a sign that says no running so the elephant points at the diving board and she runs over there and she slips and she scrapes her knee and then the lifeguard comes and help and puts a band bandaid on her then she then he put put puts put her on a bench to sit down and then the lifeguard points his finger out saying bad i think there is an elephant and a giraffe,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and the giraffe is flying a toy plane around and then the elephant um looks at it and i think says that is interesting so the giraffe gives a turn to the elephant and the elephant is th um threw it into the pool and the giraffe gets mad at the elephant so the elephant asks the lifeguard to help and then talks to hi the liteguar the lifeguard what happens and the lifeguard tries to reach and get it then the lifeguard does does not know what to do and the giraffe goes on his knees and starts to cry so a dif i think a person that swims takes a n takes a net and tries to scoop it,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and she s scoops it up and gives it back to the giraffe and the giraffe holds it by like this by his neck and the elephant um has his hands like this like that in front of the giraffe there is um i think a bunny and a dog and the dog built a sandcastle and the bunny i think wants to help um the dog is smoothing the sides out while the bunny is digging sand out for the sandcastle and then the bunny pours it all over the sandcastle and he and it destroys the sandcastle and then the dog cries and tries to build a new one,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 1 +um there is a bunny and a dog that have their baskets with uh f food in them and then the bunny dumps it all dumps it all out and the dog just takes it one at a time and then the dog is still eating and the bunny is laying on the ground with all this garbage around and then the dog is drinking a juice box and i think the bunny feels sick then uh and then the dog i think finds a doctor and the dog is pulling the doctors sleeve over to where um the bunny is laying down and the the doctor takes a thing and this little stick and like points at something,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,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 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 0 0 1 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 0 0 0 0 0 0 0 1 +and then the doctor brings the bunny i think home and uh the dog is standing b just standing still with a th a thing behind her back first um the dog is pulling a wagon with a balloon attached to it then the dog drops the handle and the bunny tries looks at it and then the bunny tries to untie it and it s blows away into the sky and then the dog gets mad at him and then the the da the dog is mad the bunny runs over,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 1 0 0 0 1 +and he sees a a balloon man selling balloons and the bunny takes one of the balloons and and on one of the balloons it says balloons five cents and then the bunny pulls out the inside of his pockets and he has got no coins so the balloon guy was holding the balloons and the bunny has his hands in his pockets with the dog behind him the um the the the p dog is standing by the balloon guy and the rab the rabbit sees this this p this girl this lady and then i th she tells he tells the lady to i think b get him a balloon,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +and then the the lady takes out her wallet and puts some coins in her hand and they uh each get a balloon the elephant start the elephant starts screaming with the elephant starts doing with his trunk he s makes lots of noise do you know about the elephants oh it does not it is your story you make it up whatever you think and then they saw a egg in the water swimming they want to pick it up the elephant said uh why there is a egg,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 +i want to jump in the water and get it ah the guy swim in the water to catch it and the elephant is doing this and then the guy um swim and he give the thing for the elephant the elephant said wow and then the elephant went away the end they saw a water they want to swim in there,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +it is like the two guys the elephant and that guy same and that is it and then the elephant said look i want to swim in the water and then they start the elephant was first the guy was behind him and he starts running i do not know what is he running for,0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and they still run again know what is he running for too and then they stopped and the elephant fell and it hurt his leg that is funny part and then a elephant came and squeezed his and then he put a bandaid and that is it elephant came,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and that what is what is this guys long neck what is what is this guys long neck what is his long i can not see it it is your story you make it up and he got a helicopter he flied it in the air it fell in the water it keeped flying in the sky it could not get down he was going to catch it,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 1 1 0 0 0 0 1 0 1 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +he could not okay shall i turn now oh he he wants to fly it right now the elephant is like this oh you showed me again with your face and then and then he wants to fly it the elephant catched it he must have wanted to fly it and then it fell in the water uhoh and then that guy gets mad on the elephant cause it is because it got s um it is got snuck down,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 1 1 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 1 +and it got stuck now and then the other guy said here is the bigger dad and the eleph the other guy the other one said look the helicopter sneaked down oh the guy the guy is trying to catch it it gots all the way there and then they could not catch it that is a long one and then the guy got a like net oh the net catch everything,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 1 +he catch fish but it is hard to catch fish they are fast and helicopter is it is just a toy down there you can catch it fast okay should i turn and then the guy catched it and he give it back to the other guy and then the elephant is really happy and he went,0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he what the ele elephant is happy and he went because he got that thing the end the other guy was building his sandcastle and the other guy with glasses they was happy and then turn the page now and then the guy w wants to mix it because he can not see or watch the guy put the pail,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +it is going to wreck it now it is lots of sand and then he wrecked it that guy that is his sandcastle he wrecked it and then the other guy build another sandcastle but it is not nice the end the guy said bye to the guy the guy with the glasses and then he went,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he sit and he was playing with the sand they was eating and snow uh and snow came down um and then they was cold and they went in the house and then they came back out and it was so windy and then they came back out it was raining,0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 +and when they came back out it was sunny and when they came back out it was windy again and when they came back out it was sunny the end um the guy went with the pail with a balloon on and then they see it they want to get it to the sand they could not find the sandpile and then and then the other balloon fell in the sky balloons can fly in the sky when it is windy because it is not heavy,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,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 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the guy wants to take it off whoa it forgot to go it is not hanging in tight like that it is like this flied off it is gone he can not catch it in the air oh yeah if that guy was with it then it is windy so hard it can fly with it if it is hanging on,0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +oh it is flew he took it out and it flied up and then th and then the balloon pop and the guy was mad and the other guy was sad and the other guy bought lots of balloons and he gived them to the kid and the other balloon popped the last one and then the other one popped that is it,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 1 0 0 1 +and then another one and then it is not going to pop and then okay anything to say about this page here um page eleven and then the guy look look how many balloons he say and then he give him some money and he and then they jumping to get the balloon the guy can not see,0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +they just gather by his hand and he went and then they hung on their arm and then they hanged on on the balloon they hanged on on a balloon and then they smiling the end it looks like a giraffe and an elephant that are going swimming and they are playing with a ball although it although when um they were playing with it it um maybe bounces in the water and the giraffe tries to swim and get it,0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 1 +and the giraffe got it and gives it to the elephant and the elephant thanks him and the giraffe is smiling it looks like they might want to dive in and go swimming looks like the elephant is pointing to the diving board to um and he wants to dive and um the elephant starts to run although it is slipery so she starts to slide and she falls and hurts her knee,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then um the lifeguard comes and he puts a bandage on it then he um saying probably that there is a no running sign and that you can not that you should not run cause you can slip and fall and then he is pointing to the sign that says no running looks like they are talking about something and then he and then the giraffe looks like he is showing her his new airplane and she looks like she is getting dizzy watching it going around in circles and she takes it from him and starts to looks at him and the giraffe looks like he is getting mad and then she accidentally dropped it in the water,0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and she looks like sh she is scared or something and the giraffe looks like he is m really mad and then the lifeguard comes along and probably says what is that and what is it doing in the pool and then the elephant is probably blaming it on the giraffe that he threw it in the water and the lifeguard is trying to catch it trying to pick it up out of the water although he can not reach it and the giraffe looks like he is getting really sad so he starts to cry and then this lady elephant comes along with a net and she tries to fish it fish it out with the net,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and she gets it out and gives it back to the giraffe and he is all happy and he is hugging it it looks like two it looks like a bunny and um and a dog or something playing in the sand and they start and the bunny looks like he is helping the dog make a sandcastle and the bunny pours a whole bucket of sand on it and the dog looks like he is getting sort of worried and the bunny s gets surprised because it is all covered in sand and the dog starts to cry and the bunny looks like he is embarrasseed,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 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 1 +it looks like the dog is going for a picnic and the bunny is coming along with him it looks like the bunny is looking at all this good food that he wants to eat and he eats it all and he and he i guess he has a stomachache and then he starts to feel sick and it looks likes he is fainted and the puppy the dog goes to find somebody and he fi h um he finds this um lady and he pulls the lady to where um the bunny dropped out,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the and the lady was a doctor so she tested him to see if he was awake or not and she took him and she is probably going to take him back to the doctor office to check him up it looks like she is pull the dog is pulling a wagon with a balloon on it and the and the bunny is coming like running along and he sees the dog and he is waving and the rabbit pra um looks like he is saying um like nice balloon and then the bunny tries to pull it off,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 0 0 0 0 1 0 0 0 0 0 1 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 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and the dog looks like scared that it will fly away and then the bunny accidentally lets go of it and it starts to fly up in the air and they are trying to catch it although they can not and the bunny is looking up at the balloon and the dog is getting really mad and then this um old bun this bunny is selling balloons and the bunny sees it so he runs over and then he asks the bunny the older bunny for a one of the balloons,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 1 +and then the balloon man said that the balloons are five cents and the bunny looks in his pockets and he does not have any money and the bunny looks sad because he can not buy another balloon for his for the dog and then the bunny walks over to this lady and he asks her for some money and the lady gives him five cents and then they each got one of their own balloons there is an elephant and a giraffe by the swimming pool and the elephant is banging a ball with his trunk,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,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 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the elephant kno accidentally knocked the ball inside the water and the giraffe had to go and get it he had the giraffe had to swim inside the water to go and get the ball the giraffe got the ball back for the elephant and the elephant and the elephant was happy to get the ball back the elephant and the giraffe are standing by the water the elephant ran closer to the water the elephant slipped and the giraffe is running to s stop the elephant from falling on the ground and the elephant fell on his her knee and hurt it,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +the giraffe is trying to fix the elephants knee and this oth another elephant came and put a bandage on it and all the giraffe the elephant and the other elephant are the giraffe is sitting down and the gg giraffe is standing up and the elephant is still the other elephant is standing up and the girl elephant is sitting down the elephant is the elephant and the giraffe are happy the giraffe is playing with a toy plane and the elephant is looking at it and the elephant took the toy plane and started to play with it,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 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 1 +and the elephant dropped the toy plane inside the water and the giraffe is getting mad at the elephant and the lifeguard came and s looked at the toy plane and then the elephant was looking at the lifeguard and the one the giraffe is looking at the plane and the ele the elephant asked the lifeguard to get that plane out the lifeguard is holding onto the edge and trying to get the toy plane out and the elephant and the giraffe are looking at the plane and the lifeguard can not get the eleph the um plane out so the giraffe started to cry,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 +and the and another lifeguard grabbed a net and tr and tried to get it out and the other lifeguard um caught it in the net in there and um the everybody was looking was proud and that other lifeguard got it for the giraffe and the giraffe was very happy and the elephant and the giraffe are very happy to get the plane back there is a rabbit and a dog playing in the sandbox and the rabbit and the dog are making a sandcastle and the rabbit fulled the bucket of sand and broke the sandcastle and now the rabbit is a bit frightened of what happened to the sandcastle,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the dog ha is trying to make the sandcastle all over again there is a dog and a rabbit they are going to have a picnic and the rabbit took all the food out and is getting very hungry the rabbit ate all his food and the dog is still drinking and eating his food very nicely and the rabbit is very ff full and the dog is still eating his food and the dog sees a doctor and ran over to the doctor and the doctor is the dog is pulling the doctors leg arm to move it over there,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 1 +and the doctor is gon going to take um the the bunnys the rabbits uh is going trying to fix the rabbit and the rabbit is all better now the rabbit is running over to the dog that is pulling a wagon with a balloon on it and the rabbit is trying to grab the balloon and the rabbit is untying the balloon from the wagon and the dog is very proud and then the balloo the balloon slipped out of the rabbits hand and went flying up in the air and they are all try and the rabbit and the dog are trying to catch it and the dog is very mad at the rabbit and they s and the rabbit sees another man selling ballo a balloo a man selling balloons,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he bought one the rabbit bought one balloon and he and the rabbit has no money for balloons and th and the rabbit and the dog are trying to get a balloon and the rabbit went to th to the to this other rabbit to the doctor and the doctor saw him and the the ra other rabbit is pointing to the balloons and the doctor is buying a balloon and both of them have a balloon the girl has three ba balls and she is and there is a a big one and a medium sized and a small ball,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and and there is um a giraffe that would like to play with one by accident he s the girl throws the ball into the pool the giraffe goes try he is in to swim for it he gives it back to the girl and says that is okay he is smiling at the girl the girl elephant and the boy giraffe are looking at the pool okay can you talk a bit louder cause someone is making noise out there what is next the girl the girl is running the girl is running mm okay,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 1 0 0 0 1 1 1 +she she accidentally slips and she hur and she hurts her knee and now she is crying crying the lifeguard comes running he put the bandage on on the um bruise and she now she is sitting down on the um bench he points to the sign that says no running and she was running the boy giraffe have a toy airplane and the girl giraffe the girl elephant is asking to play with it,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and he wa and he um and he is showing her how to do a loopdeloop with the airplane and then sh and then she takes it sh she is looking at it like it is hers she accidentally drops it into the pool the um gira the boy giraffe is getting mad at her the la the l when the lifeguard sees he he is kind of happy and he is kind of mad the girl the elephant is telling hu him what happened he is trying to reach out to get it the boy giraffe is crying because they can not get it,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +the the other gir there is another girl elephant that has a net and she thinks that she can get it and she can get it she giving it she is giving the toy airplane back to the giraffe and he is hugging it because he loves it there is a rabbit that is making a castle and there is another rabbit that wants to help that rabbit make the castle they they are helping make the castle together one one is building the castle and one is making the walls,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,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 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +one one one is ac one accidentally pours the sand right onto the castle and the other one looks embarrassed uh after he pours it on all there is is a tower from the castle and it is all gone and the other one is kind of smiling but one has a frowning face and that other that other wa one that had a that was smiling is now crying and the other one is thinking of what he did that is the end of the story there is two there are two rabbits,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 1 +one is running to the other with a pis picnic basket and the other one is holding a pis picnic picnic basket one said one has opened up his picnic basket and he is eating all the food and the other one is s still opening hers up when he is done all his food he kinds of he kind of faints and the other and the other one is still eating uh he feels kind of sick and and he the other one is still eating the one that was still eating ru runs to get a doctor,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 +and and he is telling her him her what happened to her friend now she now she is pulling the doctor to her fr her friend the doctor is speaking to the boy and to tell him not to eat too quick now the boy is all better and now and now the girl and the boy is going home there is a girl that is pushing her wagon and uh there is a girl that is pushing her wagon and on the wagon there is a balloon and the boy and the boy rabbit is chasing after her he wants he wants the balloon so he reaches out,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and she is kind of have a frowning face what kind of face a frowning face oh frowning okay when he gets his balloon the gir the girl um kind is saying hey and he is playing and he is tying it to his wrist he lets the balloon go and it floats away the girl is getting really mad at the boy,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and soon they see another rabbit that ha that is holding balloons when the bo when the boy s when the boy sees that he asks if he can have a balloon the man said it is five cents and the boy does not have any money he says it is okay maybe next time you will have some and when the boy sees the doctor he asks if he can pay for the if sh she can pay for the balloon for both of the balloons i sa the doctor says y yes and um they both get a balloon right here she is paying,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 0 1 0 0 0 0 1 0 1 0 0 1 +and they both really like their balloons there once were two friends and they were playing a game and they wanted to go swimming so then they got there and then they were playing and the ball fell in the pool so one of the friends swam out and got it and then they got it and one of the friends she took it out,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then they wanted to play again there were two friends and they were the same one in the last story and they wanted to go swimming again so they went and then one of the friends she wanted to go in right away so she ran and sh and she wanted to jump in but then she fell and she scraped her knee,0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 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 1 +and the lifeguard came and he said oh it is all right here is a bandage here you can sit here and wait til it is better and then she was happy she took a little rest there were once two friends and they wanted to go swimming so they went and one friend bought brought an airplane,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +the other friend grabbed it and said wow an airplane and then she accidentally dropped it in the pool and then the other friend was a l little bit mad so then she said uhoh and he went and then the lifeguard came and he went hmm and then she said i i accidentally dropped the airplane in the pool he tried to get it but he could not reach,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +so then the friend that ha had the airplane he was crying and then one lady she came and she had a net to get it she said do not worry i will get it and then she went and got it and then the he was happy again and then they were both happy and she was happy he got his airplane back once there were two friends,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 1 +and they went and they wanted to play in the sandbox and they built a sandcastle and it was really nice and they needed lots of sand to make it unless unless it would not work out and then he put too much sand on it that it all collapsed and fell and then and then one of them started to cry so and then he wanted to rebuild it once there were two friends and and they wanted to go on a picnic they packed all the lunch,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and when they got there they started to eat and they started to eat and one of them felt really sick so they had to get a doctor and and while the doctor was coming when the doctor was coming he felt really sick and he k he could not wait and the doctor came one of the friends she ran up to the doctor she said doctor doctor help my friend is sick,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 +we need some help so he feels better the doctor said oh my he has a he has a very bad tummyache and he felt better because the doctor made him feel better and then he lived happily ever after there were two friends the same ones in the last story that i read and they wanted to go on a walk so they went and they and they saw and they saw somebody with balloons and they they got one and they tied it on,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +but then it went up in the air and they were sad and then they they kept going and then they saw a man another man with balloons and they went they wanted to get some say so they got so they got some and then they left but then they did not have any money and he was sad and the balloon man said hm i do not know if you can get a balloon,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,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 1 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 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and they did not d get any and then they saw a lady and see she was and then he asked can you get us some money so we can get a balloon and then so she bought a balloon for them and then they were both happy uh hm once upon a time then there was a elephant going then the ra then the he came and was and a ball was in the pool then he tried to swim in there but he could not,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +then she pick the ball up then he was all wet then that is the end of the story once upon a time a elephant came along and that then then then then then she wanted to then she wanted to go but she falled on herself and the more she was running she falled and someone is going to help her and she got a br um a owie then come along elephant came then the elephant came,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 1 0 0 0 1 +and he and that was a coast then there was a owie going and there was but then there was nothing to do then the animal was all better and he said no running because if you run you fall on yourself i never do that i but i run on a sidewalk and i like like while i was two like once upon a time she did not allowed in something came and and then there was an airplane going in the water and she played it and something,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 1 +and she taked it away and throwed it in there um then then he was angry and she and the boy told her you did it on a purpose then a lifeguard came then then the airplane was still in there he wanted it out he tried to reach it but he could not and someone got it but she was very trifle,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +um then someone is going to pick in a net um then someone is going to pick it then he was happy then he was glad then she was glad they were making new friends again then the end of the story once upon a time he she built a nice sandcastle but then that rabbit then the rabbit was surprised then c then they were making a other castle,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 +then someone pushed it down and that was her like like a rabbit or maybe someone else and it was rabbit and she did not do it so she tried to fix it and he was not uh pleased then that is the end of the story he she was walking by and then then a rabbit was going by and a puppy saw her,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and a puppy said i am going to picnic like you so they had a nice picnic and he was getting goofy and suddenly he was tired and he was full of candy and he is getting sicker sicker and sicker then he knowed he was getting sicker and sicker and he she needed him to help her he was so full he could not even walk and the rabbit said get up,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,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 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and then he was fine at all then she was trying to pull it but he was so happy a ra and a other rabbit came along and she said what are you doing i am just pulling some stuff and a balloon was not going up and she was happy suddenly it was going up and up and up and up and up and up then suddenly he wanted a other one,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and she was angry there she came just a sec then he was going to get a other balloon she was angry and he wanted a balloon and he said yup i want a balloon and he did not know and the said no can you see,0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 +and and he said you do not have any money that is that is not doing then then suddenly he had idea and a rabbit had money somewhere to find and that was someone else looking in a far away and she said what is it you are doing i need some money but and she said she did not know what she need the money for then then she give him some won money and they wanted two balloons,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +that was all and he wanted them two but others heard it but there was two left then they got both the balloon and they loved it then they hugged it and then something went then then then she was surprised and that was true that is the end,0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 +so a guy there was a giraffe he was at the pool then he met a girl bouncing a ball but the ball fell in the water and the man the boy tried to go get it and then he got the ball and then he was still all wet because he was in his clothes there they saw a diving board and it and it said no running and the sign said but,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 1 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 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then she started to run and then she slipped she fell on the ground and she hurt her knee and then the lifeguard came and put a bandage on it sat on a bench and then the lifeguard said you are kicked out a boy was there and the girl was there and then the boy had an airplane in his hand,0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +he flew it around like this and then the girl grabbed it out of his hand and then it slipped out of her hand and it went into the water it was a pool and then the boy got so angry and the lifeguard came and the girl said it was an accident i accidentally got the w plane in the water so the lifeguard tried to reach it,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then he could not the lifeguard girl came and picked it up with a scooper and gave it back to the boy and then he hugged it he hugged the plane well he were in the sandbox and he meant and he somebody had a sandcastle built up and they played together and he put some sand in a bucket and the other guy touched the castle and then the rabbit put the sand on the castle,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 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 0 0 0 0 0 0 0 0 0 1 +and then he got so mad so then they tried to fix it there so he was on the road somewhere and he put his hand out like this and he saw somebody run down the street and then they decided to have a picnic together one is eating a carrot and then he got so full because he ate all the food and he got so full that the basket fell over,0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,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 0 0 0 0 0 0 0 0 0 1 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 1 +and then his dad came and he is still laying on the carpet and then he the child pull the dads shirt and then he said go to your room now and then he he sna and then the other guy went home because the other guy was not really his child the other guy was re really not his child so the this boy met a girl pushing a wagon with a balloon attached to it and then they wanted to play together so and then the boy took the balloon off,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and it floated up into the air and then the girl got angry so then another man came by selling balloons so the girl wanted one so then he uh the guy looked in his pockets to see if he had any money but he did not so he had to walk back and ask somebody else to for some more money then he got more money and then they got another balloon they each got a balloon the elephant is talking to the talking to a horse,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +the elephant is pushing the horse the elephant pushed the horse in the water the elephant is helping him out the elephant ah being nice and that is the end the elephant is being nice elephant the elephant is going to jump in the water th the elephant is running the elephant got a got an owie the elephant is crying,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 +uh the daddy is putting a bandaid on it and she is sitting on a bench uh and she was and she is be and she was just teasing she was just teasing that she had a owie the elephant is making funny faces the elephant is uh looking at the airplane the elephant s wants to fly it the elephant is the elephant is sinking it the elephant is and the elephant is looking at the airplane sinking and hm the elephant is mad,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and she s she said to her dad that that that i sinked his airplane and the dad is trying to get it and the dad is putting his hands out like this and and the ga and and the fly fly swatter uh and she is trying to get it with the fly shw ss swatter s and and she got it out for him now the elephant is happy and that is the end um they are playing in sand the rabbit is digging in sand the rabbit is putting sand on the sandcastle,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +the rabbit wrecked the sandcastle and and the piggy is sad and he is building it back up and that the end the rabbit is walking down the path the ra they are having a the pig and the rabbit are having a picnic the rabbit is eating candy the rabbit is the rabbit is feeling sick and they are gi and the and the pig has a flower in his hand and the pig is pulling the the girl bunnys hand,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 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 1 +and the girl bunny hit him on the head and the girl bunny is taking him and that is the end the rabbit wr walking down the path again the rabbit is looking at the balloon the pig has a f um the rabbit is untying the balloon and the balloon is going up and the pig is getting mad at the rabbit and and there is another rabbit and they are going to go buy another one,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 +and they are going to get one and then they are going to ge go get another one from someone else then they are going to go get another one from someone else and then they got one and then the and then the then the gi then the girl um and and the rabbit is running to the girl bunny the girl rabbit n and and then and and he is pointing to the balloons and and they want another balloon so they are getting their mom to buy another one and this t and they got their own this time and that is the end a girl is bouncing a b a ball,0 0 0 0 0 0 1 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 1 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +the ball went into the pool the moose went to go get it the moose got it and brang it back and then he got out of the pool got out of the pool and the girl was happy they they see a pool they run to the diving pool now they are running to the diving pool okay so you were thinking about that because you knew what came next anything else on this page they see the diving board,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +so they run to the diving board the girl ran so fast that she slipped and hurt her knee the lifeguard came to see to give a bandaid bandaid the the moose went to go get him the lifeguard gave her a bandaid she thought it really hurted and then the the lifeguard took her to the bench and then she tried touching it and it was better and then the lifeguard pointed to a sign,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 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 1 +she looked it said no running the moose has a plane they were going to play with it at the pool the moose fl fl made it fly okay you were showing me with your hands and then the girl took it away and threw it it landed in the pool the moose got really mad the girl said oopsies,0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1,0 1 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +the lifeguard came she was scared she told what how um how how it happened the lifeguard tried to reach it but he could not the moose cried the lifeguard got a net and got the plane with the net then pulled it out so sh so the moose can have it and then they had fun later there are two boys making a sandcastle one of them smoothed it up,0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 1 0 0 1 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 +the other one put sand on it since he was getting tired of doing that he dumped the whole pail on and then the wh whole pail cover most of the sandcastle one of the boys started to cry two people had a picnic one of the boys ate had more than the other one the the one of the boys had l had too much to eat he got he ate a little more and he got dizzy and then and then um a the other boy saw a girl,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +she pulled the girl to the picnic and the boy wa the boy was not so dizzy any more because the girl helped him a boy was pulling a wagon with a balloon on it the boy saw the balloon the boy was untying the balloon the balloon floated away the other boy got mad at him he so he the other boy looked up and then they saw more balloons so they went to go get one,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +but but it costs money and that was this page and then the boy checked his pockets but he did not have five cents so the man with the balloons said no you can not have one because you do not have any money and then a boy found a girl the boy asked her nicely if she could buy him a balloon the girl gave him a balloon they both had a balloon now the elephant and the ah,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +the giraffe was uh saw the elephant was bouncing the ball and the the ball was on the water and giraffe trying to get the ball on the water and the giraffe got it and the elephant get it and the giraffe was wet the end once upon a time a the elephant and the giraffe was saw the water and and ahh um the elephant want to go on the water and the elephant go right away to go on the water,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 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 0 0 0 0 1 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 1 +and the elephant slipped over the the ground and the elephant got hurt on the knees and the elephant was crying and the and the elephant was putting a bandaid on and the elephant was the elephant was ahh ahh mad because it hurts on the knees with the bandaid and they feel better and they sit down but the elephant ahh looked so mad because theyre the giraffe and the elephant want to go to the water the end the giraffe and the elephant,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +the elephant saw the airplane on the giraffe hand and the elephant was saw the airplane was flying and the giraffe was standing uh with the airplane and the elephant take away from the giraffe airplane and the elephant want to see it and the elephant drop it in the water and the giraffe was very angry and the elephant and the giraffe was saw the the other elephant was saw the airplane in the water and the the elephant was uh say the she was dropped the airplane in the water and the uh the elephant trying to go get the the airplane,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 +and he can not get it but uh the giraffe was crying with the airplane and the then the other uh elephant will get the airplane with that thing to for the fish and she the elephant trying to get it but it is too hard to get it but she get it the elephant got it now and the uh giraffe was happy and the elephant and the giraffe was happy too the end,0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 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 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +the bunny and the the dog the dog was making a sandcastle and the rabbit want to help the dog and the rabbit was making a sandcastle and the dog all finish and the rabbit was trying to put the sand on the castle and the dog was so scared the the rabbit trying to put the sand on the castle and there is breaked the the sandcastle and the dog was crying,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the rabbit was so sorry breaked the sandcastle the end the dog and the rabbit was going to the picnic and the rabbit was have the carrot and some hot dogs and some cake and some sandwiches and the rabbit got too much to eat and the rabbit got a st stomachache and he is getting so fat and the doctor was came and saw the rabbit the and the dog tried to get the doctor and the doctor was coming and saw the rabbit there,0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the rabbit was so have a stomachache and he feeling right sick and the rabbit go home and he felt better the end the dog and the bal the dog and the bunny was saw the balloon the color pink balloon and and the rabbit went to see the balloon and he trying to take it off for the dog and is is floating away from the dog and the dog was right angry because the bunny was let go of the balloon,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the dog and the rabbit saw lots of balloons there pink green and orange and blue and purple white and gold and the rabbit choosed the blue one and that and the the nother the another uh rabbit was right angry because that is number five so the rabbit and the dog want to pick the balloon but the doctor there because the dog was sick and the the doctor saw the dog was sick and he has got some the doctor got some monies for the dog and the rabbit for the balloons and the dog got the color the gold balloon and the rabbit got the color the blue balloon,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 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 1 +the end the elephant was playing with his ball then he threw it in the pool then the giraffe catch the ball and throwed it to the elephant and he pick it up x okay what did you say they want to go in the pool he was running,0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 +then he slipped then hurt his knee then he cried what is that then the lifeguard go and he closed his eyes and it hur hurt then uh the lifeguard told him that he it says no running the elephant looked at the giraffe playing then he played with it,0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +then he grabbed it then he throw into the deep pool and the giraffe been angry and the lifeguard came he and he told him that he throwed um the giraffe plane into the deep he tried to grab it but he can not and there was daddy he get the plane and he catched it,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1,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 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 +and he bring it back to the giraffe and he hugged it tight to the the bunny and the dog are making a castle castle the bunny put sand in his bucket and he dump it all and he wreck the dogs castle mm he he he pretended to he did it to him the dog and the bunny went going for a picnic the bunny ate some food and he ate some more,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,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 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and then he has a stomachache then the dog got by the doctor and he grabbed him and he uh he told the dog that he has a stomachache and then they came the dog and the b bunny went to see the bunny the the bunny see he sees the dog then he tied up the balloon and the balloon went up and the dog got angry,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 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 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then the bunny losed it he talk the mom to give him the balloon but he do not have money the the the bunny and the dog have no money they come to go to him and then the dog the bunny goed and he gave both balloons to them bunny and the dog um the donkey wanted to play uh with with another animal with his balls um they they went to the swim pool and they they found a friend,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he jumped in the water and splashed the elephant by accident and the elephant picked the ball up and the giraffe asked if he could have it and he came out with his cloths on um they went back to the swimming pool and did not want to go into the water the elephant wanted to go in the water but the giraffe did not um the elephant asked if he could race the giraffe to the diving board but the elephant tripped and and fell and hurt her knee and the swimming person checked if he was okay and put the bandaid on her,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and she feeled all better and she stayed there so she could get better um the giraffe throwed his airplane and it flew but but by accident he th threw it too soft and it fell in the water and he tried to get it out but he and he did and without asking the elephant grabbed the airplane away from him because she wanted to play with it and because they was grabbing they grabbed,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 +and it fell in the water and the giraffe was angry at the elephant because she throwed it in by accident the lifeguard was mad because they throwed it in and toys was not supposed to be in the water and the elephant said look what i did it was by accident and the lifeguard tried to pick it up but he could not the lifeguard could not so he just got up,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he had an ide a plan he but he did not his wife took um a stick with a rope on the ss on the front and he catched it out he tried to she tried to catch it out an but she could not and she did and she gave it back to the el giraffe and now he was proud of the girl because she got his plane back the bunny said hi to the dog,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 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 0 0 0 1 0 0 0 1 +and the dog was making a sandcastle and the bunny wanted to help but the dog said yes and they started building a sandcastle and then the bunny dumped a bucket and it and it and the castle fell down and the dog was mad at the bunny and the bunny was sorry because he knocked the sandcastle down and then they builded it all and then the dog builded it all up and crying the dog said hi again to the bunny,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,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 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 0 0 0 0 0 1 0 0 0 0 1 +the bunny was racing down with a basket of food so was the dog and when they got there they unpacked the food and they started eating and the bunny tummy hurted and he was sick of the food and the dog raced to the doctor and said doctor doctor can you help my bun my friend bunny is sick doctor doctor come on come on doctor,0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 1,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 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 1 0 0 1 0 0 1 +come on my friend bunny is really sick because he eat so much food okay okay he took his temperature and he was sick sick and and then he checked the bunny again and he was all better the dog said hi again and the bunny wanted the balloon and said where did you get that from i want that balloon right now,0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and he untied it from the wagon and it started float floating off the wagon and the dog was mad at the bunny because he untied it and he wanted it and then the bunny had a great idea he can go over to the balloon man to buy another balloon and they asked could we have two balloons please and uh and it cost it costed five dollars and he had he did not have any money in his pocket so he could not get a balloon,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and they said please but no only for five dollars doctor can you help us can we have five could we have five dollars for both of us so we can have a balloon he said okay you can have balloon i i do not we do not have any money in our pockets so please can you give us five dollars so they gived him five dollars for both of us and then they got the two leftover balloons and then they was proud of the doctor because they got a balloon,0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the bunny said sorry to the dog because he uh he wanted the balloon and he untied it so he said sorry play ball and he taking swimming pool and he get it and thank you and welcome uh and over play swimming,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 1 0 1 0 1,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 0 0 0 0 0 0 0 1 +and go in it and and run and walk on knee and her cry and cry lots and sit on bench and stay here the what and stay on bench over play,0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 0 0 1 1 1,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 1 +play play a play and play a play again and play it in in water and it angry and say bad and dad what is that daddy i play in pool,1 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 1 0 0 1 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and they are get it get it i am get it looking and get it and it in there i get it you get it and loffed it loved it loved it he play on s in sand and play make castle,0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1,0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 1 0 1 +and dump it and what dump it oh no oops sorry and cry uhoh they go picnic and eat and they drinks juice,0 0 1 0 1 0 1 0 1 0 1 0 1 1 0 0 1 0 1 0 0 0 1,0 0 0 0 0 0 1 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 1 +and hungry and that girl her tummy that man sick she what sick and a bunny his tummy hurts and turn that and go doctors house he what doctor all done,0 1 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 1 0 0 1 0 0 0 1 0 1 1 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +her play and hold that up higher tie it up and up higher and up clouds angry and man what man balloons on it him him take one,0 1 0 0 0 0 1 0 0 1 0 0 1 0 0 1 1 0 1 1 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +and and x and bring doctor here and check and talk and money and balloon and two balloons and over there are these two kids one has a ball and she is bouncing it really fast by a pool,0 0 1 0 0 0 0 0 1 0 1 0 1 0 1 0 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the ball falls in so the other kid jumps in and swims to the ball and he gets it for her and then climbs out there is these two kids and they are looking at the water and one of the kids says that there is a diving board and it looks like fun and the kid who said that the diving board looks fun runs and slips and hurts her knee and the lifeguard comes and puts a bandaid on the hurt spot and puts her on a bench and shows her the sign no running there is these two kids,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,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 1 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 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 +one has an airplane and he plays with it and the other one takes his airplane away and accidentally drops it in the pool and the other kid is really mad at her so she go gets so she gets a lifeguard and she asks him if he could try and get the plane out and he tries but he can not reach it and he does not know what to do and then this lifeguard with a net comes and fishes it out and gives it back to the kid,0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the kid was really happy to have his airplane back um these two kids um are going to build a sandcastle and they start building and then one of the kid um dump sand on it and then it is all flat and then the other kid cries because it is broken that is kind of dumb these two kids are going to go for a picnic and the first kid took um all this unhealthy stuff and he starts eating,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 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 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he gets all sick and the other one he gets all dizzy and the other kid runs and gets s the doctor and the other one pulls the doctor to him and then he checks him out and then he says that he is going to give him a checkup um there is these two kids one of them comes up and and says hi and he sees the other ones balloon and then he starts taking it off the wagon,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and and the other kid is yelling and then he accidentally lets go and the other kid is really mad so he sees a guy that is selling balloons and he asks if he could have a balloon and then the guy shows him that the balloons are five cents and he does not have five cents so he goes to his grandma and asks if he could have a balloon and she says yes so they both get a balloon,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +one day a giraffe saw her friend the elephant playing with a ball gira the giraffe took the ball and threw it in the po in a pool nearby the elephant was scared the ball might sink so the giraffe went to get the ball the giraffe got the ball for the elephant and the elephant was happy then the elephant thanked the giraffe one day the giraffe and the elephant were at the pool the elephant said let us go off the diving board the elephant ran,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 1 +and so did the giraffe the elephant fell and and hurt her knee the lifeguard came and helped her he put a bandaid on the elephant while the giraffe watched the lifeguard told the elephant not to run in the pool or she might slip so the elephant sat down and did not run one day in the elephant and the giraffe were at the pool the giraffe had a a a little plane the giraffe played with the plane,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +he did loops and swirls and s things like that then the elephant took the plane and tried to play with it the elephant dropped the plane into the water the giraffe got furious and the ele and the elephant got scared then the lifeguard came the elephant told the lifeguard that she was playing with the plane but she dropped it in the pool the lifeguard tried to get it he said he could not reach it,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the giraffe started crying then a woman came with a net she took the net and she took the net and took the plane out the boy was really happy and thanked the ele the woman the boy got his plane back and he was really happy and so was the elephant one day two rabbits were playing in the sandbox one rabbit was digging out some sand the other one was making a sandcastle,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +the rabbit poured the sand in the bucket on the sandcastle the rabbit got conf the rabbit poured on the sand and i can not make this one um uh just tell me what is happening the rabbit is like scared because then the other rabbit might get mad at him the dog or rabbit started to cry and the rabbit just stood there one day two friends met to go to a picnic one friend kept on eating and eating and got and keep kept on eating and eating and got really full by the time he finished he was really stuffed,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 +the other friend just drank some juice and some bread w when the other friend found the doctor who was in the park h he went to get him to see if there was anything wrong with her friend she begged the doctor to come so she did so the doctor came the doctor checked the rabbit and it seemed that he had a stomachache the doctor told the rabbit to not eat too much junk food so the rabbit did not get much of a stomachache one day a the rabbit met his friend the dog which had a wagon and a balloon the rabbit liked the balloon,0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +so he pointed to it the rabbit untied the balloon and the dog just stood there with surprise so and then the balloon flew away the dog got mad at the rabbit then the two s saw a man holding a bunch of balloons the rabbit asked for another balloon the man told him it was five cents but the rabbit did not have any money then the other friend came,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +the rabbit went to see his mom and s and the his friend watched him as he walked to his mom he told his mom he wanted a balloon the man gave two balloons to the to the two friends and the mom paid the money they the two friends thanked their the mom um let us play boys the ball went in the water i got to swim and get it i got another ball to swim with it,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and i am playing with it aaah i am all wet the end let us swim i am jumping in the water let us run ow are you okay and it hurts i need a bandaid,0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 1 0 0 1 1 0 0 1 0 0 1 0 0 0 1,0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 1 0 0 1 0 0 1 0 0 0 1 +it is still hurting i got to go to the doctor the end pigs do like this let us swim i am crying i found a airplane give me that airplane my airplane oh do not be angry at me,0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 1 +let us get it oh we got it i got it in right he getting out of the water no okay let us catch it i got it thank you my favourite airplane the end,0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 0 0 1 0 1 0 0 1 0 1,0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 1 1 0 0 0 1 0 0 1 0 1 0 0 0 0 1 +um you play in the sandpack you dig a you put the sand in the bucket and you dump it on the castle and then then um then then the castle broke and then the cried the end he is walking and then he says hi he eats his sandwich with a carrot and he drinks his juice,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 +and he cries um i am thirsty you stole it i said it you stole it i do not know that page should we try the next page he cries goodbye the end,0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 1 1 0 1,0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 1 +um here is a balloon um i am running around my balloons do not take it off ah the balloon it is flying aw the balloon is broken there is a lots balloons lots of balloons i want a balloon i only have one oh there is a lot of balloons,0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 +ah i want some balloons where can we put the balloon but our balloon is broken let us have another balloon and we got two let us have it we got two that kind the dog the giraffe and the elephant,1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 +the elephant was playing basketball with the giraffe and then the do elephant throw the basketball in the water the giraffe tried to save the balloon ball and the giraffe said here you go here is the balloon ball and now the elephants have the ball a giraffe and a elephant was going swimming and the elephant said i am going on the diving board and then the elephant hurts her foot and she slipped,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and she break her foot and and then the giraffe came to save her and then the swimming teacher came and then the s s the swimming teacher give her a bandaid and the swimming teacher gave her a bandaid and then and then the elephant said thank you for the bandaid and the teacher said no running said oopsie the giraffe is playing wi with his helicopter eh eh and the elephant wa want to play with with it too,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,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 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 +and the giraffe played with his helicopter and then the elephant take it away from him and then the elephant drop it in the water and the elephant was mad the giraffe was mad and the swimming teacher was to to look at the helicopter and then and then this the the elephant said that the airplane is in the water and then the swimming teacher is trying to save the airplane in the water and the the the swimming teacher said i can not catch the airplane and then the an and then the giraffe was crying and then a a swimming eh elephant was came to to rescue the airplane,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and then and then she saved the airplane and she said here you go giraffe here is the airplane and and then the the giraffe was happy the bo the dog and and the and the bunny want to build a castle first the rabbit takes the sand in the bucket then and then the rabbit taked the sand the castle and the dog is s scared and then the ra the rabbit is scared be because the rabbit break the castle and then the dog tried to fix fix the castle,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 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 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 +the rabbit and the dog went f for a picnic and then the rabbit i is eating his her lunch and the dog is is is eating his lunch and and because the rabbit have too much lunch now rabbit have a tummyache but the dog do not and the dog only ha only have some lunch and the dog says huh the rabbit is have a tummyache and now because the dog did not eat too much only the rabbit did and the dog said mama,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,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 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and mommy but the rabbits mommy and he said this hey mommy here is a dog he said huh that is not my children and she said she said i do not know rabbit i am a doctor and now the rabbit has gone and the rabbit go home except the dog the dog has a a dragon,0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and the balloon is hold up the dragon and then the rabbit came with him and then and then the rabbit found the balloon and then the rabbit going to take it off and and and the rabbit take it off and and it float up to the sky and the rabbit and the dog try to catch it and now the dog is mad and it and the rabbit was scared and then and then the rabbit and the dog bought some more balloons,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the rabbit said how much that cost it cost five cents but the rabbit had no money and the rabbit and the dog said no money aw x a balloon then they said mommy come here can you buy us a balloon and sh and the mommy said which balloons the balloons,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the mom buy the balloons called a nickel and then then they had the balloons then the the the cat and the the bunny and the dog is happy one day a giraffe meets an elephant playing with a ball then the ball fell into a little pool the giraffe goes into the pool to go swim to the ball to get it the giraffe got the ball and gave it to the elephant the elephant is so happy to have the ball back the giraffe gets up on shore,0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +one day an elephant and a giraffe fou found a pool the elephant decided to go down the ladder it walks but it runs but it f was tripping it hurts its knee the giraffe comes running an elephant lifeguard came to the elephant and the giraffe it helped the elephant it gave the elephant a bandage and let it sit on a bench the elephant lifeguard told the elephant no running,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +one day the elephant and the giraffe saw a pool then the giraffe saw an airplane zooming by the elephant grabs the airplane from the giraffe then the airplane sinks in the pool the giraffe is mad at the elephant the elephant lifeguard comes the elephant told the lifeguard what happened the lifeguard tries to get the airplane he can not get it the giraffe is crying,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 +and the elephant is sorry then another elephant came along with a fishing net she scoops the airplane out with the fishing net she gives the airplane to the giraffe the giraffe and the elephant is happy once there was a rabbit and it meets a little animal they both try to make a sandcastle together the rabbit pours sand on the sandcastle the sandcastle goes down,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 +the rabbit feels sorry for the other animal once there was a rabbit and it meets an animal and they both want to go on a picnic they together have a picnic at the same place the rabbit eats a lot of things and he is stuffed then he feels dizzy and sleepy the other animal tells the rabbits mom it tells her to come to the rabbit,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +the other rabbit wakes up the little rabbit and they go home one day the rabbit saw an animal pulling its wagon with a balloon the rabbit s is watching the balloon the rabbit tries to untie the balloon off the wagon but it after it goes uh up in the air the other animal is mad at the rabbit then there is someone that is selling balloons and the rabbit is asking for some balloons he is looking in his pocket for money,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +but he does not have enough money so i and he sees his mom so he goes over to his mom he asks for some money to buy the balloons the mom gaves the man some money to buy two balloons they have two now the rabbit and the other ha animal has two balloons one one day um a little giraffe and um elephant they were playing with three balls and they were g they were going to go in the swimming pool so they got to the swimming pool with tickets and then they sawl a ba they saw their ball in the swimming pool,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +so they got it and then the gira the giraffe tried to come and get the balloon um balloon that they had so they he got it and then they then they got their ball and their balloon and then they went and played with them and so the elephant said thank you and then the giraffe said you are welcome and they played together with their um with their balloon one day um they the giraffe and elephant wanted to go swimming and then the giraffe ran,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he and he ran in the swimming pool with her bathing suit on and then she then she hurt herself on the knee is that on this picture um uh yeah can you just tell me the story that is on the picture and you tell me to turn if i am not turning it fast enough and then she slipped because there was water when she was running and then and then she hurt herself so the lifeguard came and got her a bandage for her knee and then they so then they um went to swim again,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 +and she was all better so but first she had to sit on the bench a little bit and then she was okay and the lifeguard said no run can not you see the sign there is no running here the end one day there is a one day there was a giraffe and a um elephant the giraffe had a airplane and he was playing with it and then he al and then the elephant wanted to play with it,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,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 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +so he na so um he did but then she took it away from the giraffe and then she dropped it in the water is that on this page or was that on the next page it was on that page oh okay so then it sank in and then the life then the lifeguard got mad so then the giraffe tell me should i be turning yet,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +then the giraffe got mad at the elephant and she said she was sorry so she got her mom to catch the lifeguard is that what is on this page so the lifeguard could not reach it so she got her mom to reach it with a net and then the lifeguard she he came back to say sorry to the elephant because he he got mad at the elephant and then her mom catched it with um the thing and then the lifeguard he tried to get it again but her mom could not,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the lifeguard could not so she got a big big net and she catched it is that on this page yeah remember i can not see so i just want you to tell the story that is on the page and then all the lifeguards and then the mom had a real long net so she grabbed it and she catched it and the giraffe said thank you,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 +and then she said you are welcome and then the they were both happy again and they played with it the end one day a lit a bunny rabbit went to the beach and she saw a p and he saw a puppy and she was making a sandcastle and then the bunny said can i help and the puppy said okay then they build a sandcastle,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 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 0 0 1 1 0 0 0 0 1 +and the bunny got a bucket and she and then he got a shovel and he put it and he put sand in the bucket to make a sandcastle and the and the puppy was making the sss um a water hole and then the and then the rabbit wrecked it because he put all of all of sand on it and it pushed it down and the w puppy was very sad and then the and the puppy tried to build it again but it did not work and the rabbit was just he did not say sorry or anything,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,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 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +one day the puppy and the rabbit came for a picnic in a forest and then uh the rabbit ate too much and he got sick and was too full so the so the puppy dog went to get some help and then she but she did not find anyone yet until he s until she saw that the rabbit was sick and and then she got a nur she got a doctor that was walking by and then she took the rabbit and and took the stomach away ache and then the bunny and the r um bunny was still sick so the puppy he um she pulled on the doctor and then the doctor went on the picnic thing,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 1 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 0 0 1 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 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the s and he was really sick so the puppy went away because the doctor said he needs to be alone for a while and the end oh just a second i missed one did not i yeah and the it was after he needs to be alone for a while and then and then um the puppy came back and he was all better but he had to go lie in bed one day the bunny went he he one day the bunny went to the forest,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and he and on the way there he saw a puppy and then they and then they saw a clown with balloons and so they asked bunnys mom if they could have some money for a balloon and she said yes so then they got a balloon and then they then their balloon uh there was a balloon tied onto puppys wagon and it fell away it flew away so then um tell me when to turn and then it and then it went and it disappeared up in the air,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,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 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and puppy was mad at at bunny and then and then they saw a clown a bunny with balloons a clown bunny with balloons so they asked bunny so they asked bunnys mom if they could have some money and then they bought a balloon with their money and puppy was very happy and they both got two balloons and then puppy ran over there to get a balloon but bunny had no money so she had to go to um the mom to get his money and then after that they got some money,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 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 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 1 +and they gave it to the clown bunny and then they got two balloons one yellow and one red and then but first they had to get the money from the doctor that fixed that helped bunny and then so they got two balloons ye yellow and blue and then they got one for the doctor red and then i do not know you are not sure on this one nothing to say on this one okay we will just turn then and then they bought the balloons,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,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 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 +and then they and then they got two balloons and then they were happy and they played with them and then they played with them and played the end once there was a giraffe who was standing by a pool and a elephant said came with a swimsuit on and said you want to play fetch but they were not so sure about playing near the pool just then when the elephant blew it with her trunk it fell in the pool the giraffe jumped in and swam to get the balloon the ball,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,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 1 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 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +the giraffe came back with it in a minute and said and the gira and the elephant said oh you you got my balloon ball thank you sometimes i get mixed up with the words the giraffe felt pleased that he that he got the ball for the for her friend but the elephant just sta just stood there and smiled the end the giraffe and the elephant went to the pool because it was a hot summer day they were they looked at the pool and they were excited,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 +but the elephant said hey i am going to go off the diving board but she did not read the sign which said no running so she ran anyway just then the el the giraffe was catching up with her when she slipped and fell on her knee she got a cut on her knee and the giraffe went to get someone a lifeguard came as quickly as possible and helped the elephant the elephant thought it was going to sting but it did not they they put on the bandage,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,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 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and it was and it looked good as new the lifeguard was disappointed and the girl stood sat on the bench and said hi and the lifeguard was pointing at the no running sign the end the giraffe and the elephant went to play by the pool and the giraffe got a new toy plane and said you want to play with me the elephant said sure the giraffe flew the plane first but the elephant was so excited she just grabbed it out of her hands,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 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 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +the giraffe said my plane give it back i was not done my turn but the elephant did not care she was just flying it around just then she flew it too high and it fell in the pool and it started to sink the giraffe was mad at the elephant but the elephant just stood there puzzled the lifeguard came right by the two girls,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and one of the girls said one of the elephants said i can explain i i did not do it it was the giraffe just then g g the giraffe said she is lying it was her then it came like it was a big argument so the lifeguard said cool it who dropped it in the pool and the giraffe was pointing at the elephant the lifeguard tried to get catch it,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +but it was floating in the pool the giraffe started to cry when the lifeguard said he could not reach it and the elephant felt sorry just then a lady elephant came with a net she quickly got the plane with the net and it came and she pulled it f to her she said here you go is this your airplane and the giraffe said yes thank you very much the giraffe hugged her plane,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 1 +but the elephant was happy the end one day at the park there was a baby dog who was making a sandcastle just then a bunny came along and said can i help you the dog said sure they wanted to help build a the biggest sandcastle in the world so the rabbit was going to build it so he got some sand in a pail and started digging just then he decided that a shovel was not so slow after all so he decided to dump it on the castle,0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +so he did but when he realized he had wrecked it he was so embarrassed the dog started to cry and rebuild the sandcastle but the rabbit just stood there and looked like he did nothing the end there there once was a dog who was going on a picnic in the park and then he saw a rabbit so he they decided to go together when the om when they unpacked the lunch the rabbit was so hungry s the rabbit was so hungry,0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +but the dog was not so the rabbit ate all the stuff when the dog was eating the bunny had already finished the bunny had a terrible stomachache while the dog was eating the dog just stood there puzzled and said are you okay and the rabbit said no i feel like i am going to hurl just then the dog ran to the doc doctor who was standing right by the path she said excuse me could you help my friend here he has a stomachache so but the doctor said no,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +she had a patient who was waiting for her but the dog really needed her so she took the doctor and dragged them to the picnic the doctor said i will take your temperature now and you will feel much better just then the bunny f got up and he felt queasy then the doctor and the bunny went home they walked together back home the end,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +there once was a dog who was pulling a wagon with a balloon tied to it then he saw the bunny then they wanted to play with the balloon the bunny wanted to touch the balloon because he thought it was cool but the dog did not really want him to so the rabbit just then the rabbit did not care about what the dog said so the rabbit untied the balloon and the dog was ss was a lit was beginning to get a little fed up just then the balloon floated away and they were trying to catch it,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +but they were too short the dog was so angry at the rabbit the rabbit just stared at the balloon and he felt like he was getting a little scared because the dog was mad just then they saw a balloon seller who had tons of balloons and he just stood there so the dog and the rabbit decided to go buy a new one the rabbit said may i have a balloon please for my friend over there the man said sure but you will have to pay for that for the balloon the rabbit looked through his pockets,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +just then it said a sign said balloons five cents and he did not have five cents he and the ra the rabbit and the dog looked at the balloon seller they told him that they did not have five cents just then the bunny went to the went to a lady who was standing nearby and he said excuse me do you have five cents because i need to buy a balloon for a friend the rabbit looked puzzled the lady rabbit gave five cents for two balloons and the bunny and the dog were jumping up and down in excitement then they both got balloons,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and they hugged and they loved them real much the end this is this story is called the ball one day this little girl was playing with a ball and a lifeguard was playing with it too and so when she was playing with the ball she accidentally dropped it in the pool and then the lifeguard went in the water and swam and got the balloon and got the ball and when he did she was so happy and then she um she asked him if he wants to play with her again the end,0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +this story is called the scratch one day a little girl was going swimming and she was running to the board and when she did she slipped and she and when she slipped she got a cut on her knee and then the lifegua and then another lifeguard came running and said are you okay and then he put a bandaid on and then he put him on put her on the bench and she would not be able she was not able to swim but then the lifeguard was really mad because he she should have seen the the sign no running,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 +the end this story is called the airplane one day this little boy and this little girl were playing with an air airplane the girl asked can i play with it now and he said okay and then it and then she accidentally dropped it in the water when she did the little boy got all mad and then she went up to the lifeguard and asked the lifeguard if he could get the airplane and when he said okay i will try he tried but he could not reach it,0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then he and then the little boy was crying but then the girl lifeguard came and she got a net then she tried to get it and she did and then the little boy was so happy and then the little girl said i am sorry for for wrecking your toy the end this story is called um the castle that breaks one day there is there is a little girl and a little boy who is playing in the sand,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the little girl builded a castle and the little boy dumped a bucket he did not mean to dump the bucket oh on the castle and then when he did the girl got all mad sad and she was crying and the bunny said sorry this story is called the picnic one day a little a doggy and a dog and a rabbit was eating was having a picnic and the rabbit ate too much so he got sick,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 +and then the poochy ran over to a doctor near by the pooch said help help a little boy is sick so the doctor checked the boy and said he was si he had to go home and then he felt better this story is called the puppy who had two balloons one day a pup his uh somebodys friend came over to check his balloon out and when he did he tied the rope off the the wagon and when he did the ba balloon got away and then the puppy is all mad,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 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 0 0 1 +and then the rabbit saw some more balloons and he asked some for a balloon but the guy said balloons are five cents and the bunny did not have any money so so the bunny said um well i accidentally lost one that my friends balloon and so he and then the balloon man said no you still need to pay five cents so then the bunny went over to an adult to ask for five cents and when he did ask she said okay and then she paid him five cents and then the boy the girl got his her balloon a another balloon back,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then she was all happy the end once upon a time there was a giraffe and a elephant playing around the pool and one of they were playing with a ball and it f it fell in the water and the giraffe swam to the balloon the ball and then he swam back to the elephant and gave it back to her and she was very happy that he got it for the elephant the end once upon a time there was a giraffe and a elephant around the pool,0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 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 1 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 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the elephant wanted to jump off the j the the tr um the um wanted to jump in the pool and sh when she was running to it she slipped and she fell she got a scra a scratch on her knee and the giraffe ran to the lifeguard and he got a bandaid and they they he put it on her knee and and he sent her to the the bench and and he show her no running sign the end,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1,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 1 0 0 0 0 1 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 0 0 0 0 0 0 0 0 0 0 0 0 1 +one there was two friends an elephant and a giraffe the giraffe had a toy that it was a airplane he was playing around with it and a elephant wanted to play with it too and elephant took it from the giraffe and p played around with it and she dropped it into the pool and she she was very sad and the giraffe was very angry at her the lifeguard ran uh came to the elephant and the giraffe and the the el the lifeguard the elephant said that i by accident i threw the giraffes airplane inside the water,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and the lifeguard was trying to get it but it was too far and he said i can not do anything and the giraffe started to cry a net catcher came to the hopeless giraffe and she had a net in her hand and she got the airplane by her net and the giraffe stopped crying and the lady gave it to the giraffe and he is very he was very happy,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 0 0 0 0 1 0 0 0 1 +the end once upon a time there was a little dog that made a castle and a a rabbit he came a along and wanted to help him and then he he dump he dumped some sand inside a bucket and the and he scooped some up and then he dumped it on there on the castle and then and it got covered and and then it really did not do it was was a cloud of sand and the dog was building it again the end,0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +there was two friends that were walking along for a picnic and the ra the fr one of the friends had a lot of f food than the other friend and then he ate all of it and and he got really stuffed and then he he was very sick and his stomach was really hurting and one of the friends called the doctor and the dog called her the the doctor to help and the doctor said do not eat a lot of food and he went home,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 +and he had some rest the end once upon a time there was a two friends walking along with their wagon and one of the friends said this is a nice wagon and a nice balloon you have on it he tied it off and he and he wanted to hold it and then the balloon fell flew away and then they were re one of the friends balloon was very disappointed and one of the friends saw a a man selling balloons so he ran over there,0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 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 1 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he he got one from the man can i have one of those balloons he said but it was actually five cents to buy the one of the balloons it w he was really sad that he lost one of the friend his friend balloon he asked a person by if sh they had five cents and he he pointed to the balloons and he said there is only balloons for five cents and i have no money and she she bought two for each of the the friends and they said thank you thank you for the balloons,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 1 0 1 0 0 0 0 1 +the end there is an elephant and a giraffe bouncing a ball having fun with the ball and the ball goes into the water gets bounced into the water the giraffe goes to get it he is really wet he gives it to the elephant and the elephant the elephant is holding it and the giraffe is smiling quite a lot the giraffe and the elephant are looking to the water and the gira the elephant sees a diving board,0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +the elephant is running and slips on the pavement on the deck and scrapes her knee the giraffe came over and the lifeguard came over and looked at it and bandaged it up and the elephant sat on a bench and the the lifeguard pointed at the no running sign the giraffe and the elephant are playing with a airplane toy airplane the giraffe is making it go really high the elephant grabs it away and starts playing with it it goes in the water the giraffe is really mad at the elephant,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 +and the lifeguard sees the toy in the water and looks mad and the lifeguard and the el other elephant are talking and the lifeguard tries to reach the airplane but he can not the lifeguard is kind of shrugging his shoulders thinking what can i do and then another person comes with a net and gets it out for them and the giraffe is really really happy and the giraffe is hugging his toy the bunny and something else are playing i think it is a dog that are playing with sand,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and the bunny put is getting some sand out of a pail he dumps sand on a sandcastle then the sandcastle is all wrecked the bunny feels really bad and i think it is the dog that is crying the bunny and the dog i think are going for a picnic the dog and the the bunny is eating too much he has maybe twenty things he is eating lots and the bunny is really full,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the dog is just eating his sandwich and drinking juice box and the bunny is feeling dizzy and the dog thinks oh i should go get some help so he runs to a doctor walking down the road and pulls the doctor over to her friend and the doctor checks her friend out and takes her the dogs friend home the rabbit there is the dog and the bunny the bunny is coming down the road jogging he and the dog has a wagon with a balloon tied to it the bunny grabs the balloon and the dog is kind of fine with it,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the dog kind of freaks out starts freaking out and the bunny and the dog tried to grab it but they can not because it is floating up into the air and the dog is really mad at the bunny then the do the bunny goes to the balloon man he asks for a balloon he says five cents for a balloon and the bunny has no money so the the little bunny looks at the balloon man very innocently and then goes to his the doctor his dad and i just see him going to his dad or the doctor,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,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 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 diff --git a/benchmark_result/segmentation/batchalign_results.csv b/benchmark_result/segmentation/batchalign_results.csv new file mode 100644 index 0000000000000000000000000000000000000000..d398cc8d016ddfe4391570d031c478fd57ad7fdc --- /dev/null +++ b/benchmark_result/segmentation/batchalign_results.csv @@ -0,0 +1,624 @@ +word_sequence,gt_label_sequence,predict_label_sequence +once a horse met elephant and then they saw a ball in a pool and then the horse tried to swim and get the ball and the then the elephant gave him the ball and then the horse was wet and the elephant was holding the ball the end they might be the same oh well you start it off any way you want okay,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 +once a horse and this this was a horse and saw saw that that i just talked about but the ball was not in there okay and then the elephant wanted to go in i mean not and then he his feet went like this then he hurt his knee cap and then the horse helped him then there was another elephant and he was a lifeguard and then i do not know what they did,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +but they are doing something what do you think they are doing well how you look at the picture cause i do not know oh it does not matter what do you think is happening i think they are battling okay and then they sat on the bench and then the lifeguard was mad okay,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 1,0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 1 +and are you pointing at something i am i am just i am just x okay are you all done yes okay the end once that horse and elephant was happy near the swimming pool oh and then the horse had an airplane to play with a which had ss ah something coming down the bottom okay,1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 +and the elephant went like this then he tried it and the horse went like this then they put it in the water and then the elephant went like this and then the horse was mad and then the lifeguard went like this then the elephant talked to him a little bit and then the lifeguard tried to get it but he could not,0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +and the horse cried an and then a elephant with a net came and she caught it and then she gave it back to the horse and then the horse went like this what does that mean they love it oh good and the end once two rabbits made a sandcastle,0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 0 0 1,0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 0 0 1 +and it was a great one and then one did this with a and one took some s and the other one took some sand from a a pail because they were down at the beach and then he dumped it on the castle and then it tur part of it stayed the way it was but the rest turned into just a lump and then they tried to do it but it was not very good that time the end we saw two rabbits had baskets and were in part of the forest,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +or we can call it the woods yeah we can then they had a picnic then one of them belly got this big how big about this big wow and then in the picture there is a twirl around on his head and then a bigger bunny came up and they run to that bunny,0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 +and then he falled asleep and then he did this why did he do that i do not know okay and then he was happy he was happy yes okay the end,0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 1 0 0 1 1 1 0 1,0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 1 0 0 1 1 1 0 1 +once that little bunny was pulling a wagon and that other fat bunny came up and then he liked the balloon and then he tried to get off and then he got it off but they lost the grip and it was helium and then another man came with a bunch of balloons but x but then they he went to them and he said that it the balloons were five cents,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and he could not find five cents and then they were sad then they went back to that out by the we found that other story and he said i want one of those balloons he gave him five cents and then they gave him a balloon and they gave him to them to who to them oh,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 1 1,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 +and then they both have one the end the el the um the little elephant is playing with her bouncy ball and the gi and the giraffe comes to meet her suddenly the ball falls in a f pool beside them the the giraffe goes and swims for it and the giraffe is so kind and brings back the ball the elephant is so happy the elephant and the giraffe meet at the pool and look at the diving board the the elephant goes to run for it,0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +but there is a sign above her head that says no running she slips and falls she she scrapes her knee and and can not swim a lifeguard comes to see what happened to her knee the and he put a bandaid on it he sets her down on a bench so it will it will it will heal and the lifeguard points to the sign that says no running the ele the elephant and giraffe are swimming together the giraffe finds a plane and starts to show it to the elephant the giraffe um the elephant grabs from it from the giraffe and swims away,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 1 +suddenly she dropped it the giraffe gets very mad and can not hold in his anger the lifeg lifeguard comes and sees what has happened the elephant starts to complain that that it was not her fault and the lifeguard tries to get the plane but no one can reach it so a lady with a net comes and pulls it out she is very kind thinks everyone and the giraffe gets his plane back everyone is very happy,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 +um a bunny and a dog were mak were making sandcastles in the sand uh sand bin um the bu the bunny um he he got a bucket and started to build a better castle suddenly he dumped all the sand on the uh the bi the other castle and everyone was disappointed the o the dog was was so sad she started to cry the dog mee meets the bunny um for a picnic they they have a picnic together except the bunny is kind of piggish he eats all the food really fast while the other one eats very slow and politely the rabbit feels very sick after his big meal the doctor has to come and help the the s sick rabbit,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +the dog pulls her her over to the um to see if he is conscious the doctor says she ha he has a fever and he ate too much soon he feels better again the the the dog is has a balloon on her wagon and the bunny comes to meet her the bunny notices the nice um shiny balloon he the bunny tries to untie the balloon but the dog um the dog gets nervous and it floats away,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 +the dog gets very very mad at the bunny but when they turn around they see another man with twenty more balloons the rabbit buys one to make um but he does not have enough money for one balloon the man tells them they could ha they could get a free one and the nurse says no actually i will buy you one and she goes and buys one this makes both the bunny and the dog very happy now they both have one balloon they going at the swimming pool,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 +they putting it the ball in the swimming pool and he is trying to get it he got it she is happy the end they were dr they dry themselves dry themselves and the girl is going into the swimming pool she is dancing she is crying she gots a help from her friend,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 1 +put a bandage on it now sh she can go on the swimming pool she is sitting the end she is talking the boy is playing with his airplane she grab it away from him the airplane is in the swimming pool and the boy got angry and the k the man comes by them,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 +what did you say the man comes side them and the girl is talking the man was trying to get it the man can not get it woman tried to get it she gots it the boy is happy now the boy and the girl is happy now the end,0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1,0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 +the boy is talking to the dog and they are making a castle and the boy putting the sandcastle and the girl is so happy not the boy he is sorry for it he is what sorry and the end they are looking for easter eggs,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 0 1 +and they are eating he eat the whole thing he got hiccups there is his father and he have to help him and he gots a headache he is going and the end the boy is running and the boy is talking,0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 +and the boy is taking off the balloon the balloon is floating away and the girl went angry and there is lots of ball sh the girl is pushing the boy gots no money the man is happy the dad is here again and the man is not giving thm them balloon the man give the rat balloon rabbit a ba balloon,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 +and they can have one and the end she is playing with a ball then it drops in the water the cow s wants to get it and then the cow gives it back to the elephant and she likes it and the end um something is sinking something is sinking and the elephant is going to get it,0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 +and she trips and she falls and hurts her knee and the lifeguard comes and she gets a bandaid on it and she she sits on a bench the lifeguard tells her not to do it again elephant is excited to see what the giraffe has and then he tries to throw it up into the air and then the elephant grabs it away and then it sinks into the water,0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +then the giraffe gets mad at her and the lifeguard gets mad at the gir at the elephant and he explai he tries to explain what happened and the lifeguard um tries to get it then they can not get it and then a woman comes up with a net and she gets it out and she gives it back to the giraffe and then he hugs it the end,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 +um the bunny and the baby elephant are building a sandcastle and then the bunny is filling up a pail with sand um then he is stuffing it on the sandcastle and then it is ruined then one of them is sad that is it they are going on a picnic they are the bunny is eating lots of stuff he is getting full and he has a stomachache,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 +and then one of them sees his mom rabbits mom and he tries to get her to get to get to get rabbit and she wakes him up and they go home ah that was a good one he is taking a balloon somewhere his friend is coming up to him and he and his friend likes the balloon and then his friend tries to untwist it then it goes away,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 +and he is sad and then she is angry with rabbit and then there is a new ba balloon sale and he wants one and he gives it to him and then he wants another one and then mother is here he comes up to her and he tells her that there is balloons and she will and she is giving him money,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 +and then they both have one a balloon that is it the end there were two animals an elephant and a giraffe who wanted to play in a pool and the w there they were playing with a ball and it fell into the pool and they wanted to sw swim and get it and they thought it was fun one of them he fell he went into the water and tried to swim to the ball but the ball was floating away from him,0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and then the elephant and uh then the giraffe got the ball for the elephant and then the elephant was started playing with the ball again and they uh and they still wanted to play with it so they still played together the end there was a no running sign and they still wanted to play in the pool and th they were running away and then and then sh the giraffe started chasing the elephant and the elephant slipped,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 +and then it hurt itself and the elephant was crying and the giraffe said are you okay and then the lifeguard came and said are you all right and the elephant got a bandaid and sat on the chair and he and the lifeguard was trying the elephant was trying to get off the bandaid and the lifeguard wa said keep it on the end the giraffe and the elephant came back to the pool with the airplane the giraffe was playing with it and tried not to drop it into the pool,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and the elephant was so into it he the elephant w was kept staring at it the the giraffe said hey when the elephant took the plane away and the elephant started playing with it and the elephant accidentally dropped it into the pool and the giraffe was kind of mad and then he was so mad that he growled at the elephant and the elephant was scared scared and the li and the elephant called the lifeguard to come and try to get the airplane and they looked like they tried,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and after that and af and then after that he he was trying to get the plane but he did not so the ele so the elephant did not know what to do and the giraffe was crying and the elephant decided i will have an idea and the elephant went to get a net and then he used it to get the plane and got the plane for the giraffe the end and the giraffe was really happy the end,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 +there was a rabbit and a dog they were making a sandcastle and then the dog and the rabbit made the sandcastle and the dog was sitting into the sandbox and said hey rabbit we made it we made it and the and the rabbit was helping the dog make it more bigger and it and he put too much on and made it fall right down on it and then it al almost then it broke and then it was totally broken at the end of it by the end the end,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 +um there once was a dog and a rabbit they wanted to go on a picnich picnic instead of making a sandcastle in the park rabbit wanted to have the most stuff so he took out h all of his stuff and started his stuff and the dog wanted to eat just this couple of stuff and the rabbit was totally full and he he was almost having a tummyache and then he fell down and he had a big tummyache and the dog ran to get his mom and to help,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and then the dog begged his mom to do it so the mom came and helped and he was okay the end instead of going to for a picnic and and going into the park and making a sandcastle they got a balloon and they were playing with a balloon and they tied it onto their wagon they were driving it around and the rabbit wanted to take it off and the rabbit was trying to take it off,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and then he made it fly away and the rabbit did not know what to do and the dog was very mad and then they saw more balloons and wanted to get uh the dog was still mad and the rabbit was going to get another one for the dog and the balloons were five cents and he could not get it because he did not have any money and the dog was wanted to get one too and he tried to get one and the dog was waiting for the rabbit to get some money from its mom,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and it asked the mom if he could have some money to buy the balloon and he got five cents and got a balloon for the kids and they got to play all they want with the balloons the end there was a giraffe and and a a girl elephant they were playing ball by the street on the sidewalk by the swimming pool and then they dropped the ball into the pool they could not ge could not get it but giraffe dived in and k was was swimming but elephant was covering her eyes,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +then he got it and gave it to her she was amazed then he was soaking wet and she hugged the ball and he looked like a genius there they were again by the pool and there was a sign by uh the diving board and it said no running so they looked at the pool amazed for some reason then elephant said i want to go on the diving board,0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 +and she ran to it she ran to it and she slipped and giraffe did too and she scraped her knee ouch she had xs in her eyes stars in her eyes she was crying the lifeguard came and it was an elephant,0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 0 1 +no running in the f in the no running by the side of the pool he said the lifeguard and he put a bandaid on it she still had stars in her eyes and then at least giraffe did not fall and then it felt much better see no running in the pool he said the lifeguard did not you see that sign no running he was mad there was elephant with giraffe again by the pool again,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 +they found a plane with string at the back and she had swirls in her eyes the elephant and the giraffe was spitting out spit then she caught it he was really he was like huh splash it landed in the pool oh no they said and then giraffe was very mad it was just about to sink and elephant was going,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 +then the lifeguard came again and he had his hands on his hips and and the airplane was still there but it was not sinking then it was almost going down they explained to mister elephant mister elephant you see i grabbed it and i dropped it by accident in the water when giraffe was playing with it he bendednd over and he tried to he was he was um growling,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +he could not even get it he could not even get it and then giraffe just uh started just started to cry and then miss elephant came along she had a net and she got she had a net and she looked surprised she fished it out with the net and the and then giraffe started stopped crying the lifeguard stopped um um worrying,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +so did the elephant and gave and then with amazement she gave it to giraffe he hugged his airplane he was happy and the elephant was happy too there is a bunny and a dog were playing in the sandbox and making a sandcastle the bu the bunny was getting the sand from the bucket and the dog was making the sandcastle but he the rabbit poured all the sand on it and the dog looked um fri um surprised,0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +the sandcastle was broke the bunny had his mouth open but the dog did not the dog was crying but the bunny was just nervous here is the doggy and the rabbit again um they are going for a picnic with their basks baskets in the woods the bunny was really thirsty but the dog was not he looked at him surprised,0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 +there was a cake cheese and a basket and and the basket poured and a carrot the dog the bunny ate all his stuff there was an apple it was all done there was a cheese was all eaten the carrot was all eaten but the dog was still eating her sandwich and her juice drinking her juice then the the bunny had a tummyache but the dog was looking at the bunny surprised missus bunny came,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 1 +and wa and she was walking along and then the dog ran to her to doctor he was still ha he still had a tummyache and the dog was pulling her her sleeve and she looked surprised the doctor the doctor was said he has a tummyache from eating too much and he had to look uh with his tongue with a stick then she walked along with rabbit he and they went together and the dog was only left with the picnic,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +well the dog was going with a balloon on her um wagon wheel and the bunny ran to her it looked like he was jogging the bunny was surprised she had a balloon and there was there was the doggy she did not look so happy but then she screamed because the bunny was taking the balloon away from her and then he let go of the balloon it flew up and he they both yelled come back,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 1 +then the balloon drifted away the bunny had his ears down but the dog was very mean bad mean mad there was mister rabbit carrying some balloons they found him again with and a b by a bench and a garbage can the rabbit ran up to him and said may i please have a blue balloon s he said five dollars first he he pulled out his pockets but there was no money the dog was rushing to the bunny,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 +then they looked at the mister bunny with a grin h they could not buy another balloon then missus rabbit the doctor rabbit and then was standing there and then little rabbit went to go ask her something can you bo please buy us a balloon said rabbit and then she looked at him amazed because it is for five bucks only said f the mis mister bunny then she paid five bucks and they got two balloons ten bucks and they both had their balloons,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 +and they lived happily ever after first there is a lady who is bounce a ball under the giraffe it went right beside they are working at a centre she bounced it into the wall the giraffe and the elephant are looking at it the giraffe goes and swims and get the and gets the ball then the elephant takes it he then the giraffe gets out of the water first the elephant and the giraffe see the diving board then the elephant sees it,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +then she goes to go on it she went running too fast and she fell and she bruised her knee the giraffe went down and comed to see her then and then the elephant that was a lifeguard comed to see it too the eleph the the lifeguard put a bandaid on the bruise they had to sit on the bench for awhile and they talked not allowed to they talked about they are not allowed to run okay,0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1,0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 +now she knows it is that it because he saw the sign because he showed him the sign because he showed her the sign now no running the giraffe and the elephant got together and the giraffe got a airplane the giraffe is putting it up high and pretending it is going then the elephant takes it and she tries to do it too but the elephant throwed it in the water,0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +the giraffe gets angry then there is a lifeguard coming along the elephant is explaining what happened the lifeguard tries to get it but she can not get it so so the giraffe starts crying then comes and then comes a lady with a net then she gets it out of the water then she gives it to the giraffe now the giraffe is hugging the airplane,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +first the rabbit sees the puppy playing in the sand he wants the rabbit sees the puppy playing in the sand and he wants to play they builded a sandcastle the rabbit filled up a bucket of sand the rabbit dumped it on the castle then the rabbit said oh no then the puppy was trying to get it off one time the puppy saw the rabbit coming with a basket and the girl had a basket the rabbit had piles of food,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 +the lady did not she saw the rabbit eating so much the rabbit got really fat she was he was starting to feel dizzy he called the doctor and he got the lady the lady told the doctor to help him the doctor said you are eating too much food too fast so he takes the bunny the the dog sees the bunny coming along and the girl has a wagon with the balloon hooked on it,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +the bunny the bunny looks at it then the bunny takes it off then the bunny accidentally let it go and it going too high and they can not reach it the the dog is getting mad at the bunny they see another balloon holder so the bunny says can we have one of those balloons but none cash and it costs five dollars,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +uh they explained what happened to the balloon then they go running to go get somebody can you say that louder they went to go get somebody he is explaining about the balloon man and and we do not have enough money so she buyed two balloons and now they both got a balloon once upon a time they were playing basketball then then the boy came named giraffe,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +the ball got stuck in the pond then he went back home then it fell back in the water and he gave the cow a nnn new then he went out of the water the end there was a girl named elephant and the giraffe went swim again the lake and then they just ran ahead then they jumped into the water,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 +and then they hurt her knee then they could not give a bandage and he just put on a bandage for her then it feel then they went swimming for a next time then he got mad the end once upon a time a a boy me met a girl and he was going to fly his airplane then he flew it and then then he let go of it,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 +and then she grabbed it from him and it was hers and he throwed it in the water and then he got mad at her then he got mad and he need to do something and they could not reach it so they they got a net and it was there for a long time and he got a net,0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 +then he got it then he just tried to get it then he just got it then he just give it to the boy who had it and x the end he went and he met a girl going to the the playground and she made a ca sandcastle trying making one like hers,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +then it broke then they got very angry but they needed to make it all over again the end there was a boy named bunnyhead then he went to to have a picnic and met another guy with a picnic basket and they had a picnic before it it it got night time then they had two boxes of sandwiches and then they got full then they went then they then they went full,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and they get more and more then came the mommmy then the then the doctor then they ran up to her then they bumped into her and she took a temperature and she was sick and she needed to take her to a hospital the end once upon a time there was a boy and went um uh what um giving him wagon a walk,0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +then they then they got put it on a balloon and that was good then he tighten it on very good and he gave it to the girl then then it flew away then there was no way then he was ba angry then he met a balloon guy and he bought her one and buyed a new balloon so so they c so there could be one on the wagon then he gave us one before he flew away,0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and thank you and then it went she sawed the doctor again and a little girl can you buy us a balloon and they gave him money then then he gave them balloons then they then they both had one good the end once a elephant was walking over to a giraffe with a backpack full of three balls then the balls sank into the water and floated away,0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +they tried to catch it but they nearly fell into the water they fell into the water and tried to float he tried to float to the balloon the ball but it wa but it but the ball was too fast then the elephant caught the ball and pulled giraffe out of the water then he was soaking wet then they walked home once gira giraffe and elephant were so excited they wanted to go into the pool,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +they walked over to the stairs and then they walked over to the board and then they jumped in then elephant jumped in and then elephant slipped and slide and then he fell into the water head first he did not realize that that he had no bandaid on his owie and it hurted and hurted and hurted and hurted uh momma bear poppa bear walked over to him are you okay,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 1 +no replied sister bear then they were so excited they are they v poppa bear gave him poppa elephant gave sister elephant a bandaid then it felt much better now they were ready to play in the water but then suddenly the poppa bear said you stay there do not go with the giraffe once elephant and giraffe were walking to the pool again giraffe brought an airplane and then he elephant flied it but then it sank into the water,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 +you said elephant you get that airplane out of the water but i can not cried elephant now it sank into the pool it sank into the pool nearly all the way poppa bear said get that airplane i can not said poppa bear said to the giraffe poppa bear tried to reach it but it was too far oh now we will never get it cried poppa bear and sister bear hold it said hold it said giraffe i got something,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1,0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 1 1 0 0 0 1 +i have an idea he he got his momma bear got the net and then he tried he got it then he tried to get it and at last he got it and then it was soaking wet that he had to waited till it was dry now it was dry and he could fly it but not into the water any more once two bunnies were playing in the sandbox one bunny build a sandcastle,0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 +and one digged sand to put in his bucket he poured it onto the castle and then it all broke and then it all fell and then the uh the bunny had to build it again once two bunnies were going out for a picnic ss one ate a carrot and some hot dogs then he was all full and then the second bunny drank juice and ate his sandwich and then the sandwich taste yucky,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and then they went home to their mom the mom said the mom said please take care of your little brother and they took care of each other then the the sister bunny and the momma baby all they walked home together once a ba a bunny was bringing uh a wagon with a balloon attached to a wheel and then the the bunny was so excited that he looked at the balloon and then he tried to put the balloon off the wheel but it was stuck and then it flew up they tried to catch it,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 +but it was floating away up into the air and then it nearly disappeared and then they got so mad they had to get a different one they had to get a new one so they walked over to mister balloon and said can i have one a new balloon the bunny asked and then he gave him the nice five balloon and then he did not gi give him them one and then all of sudden brother bear brother bunny and sister bunny saw their mom and they w then they walked over the river skated over to the river and out at the river she saw their mom,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and then mommy mister balloon will not give us give us a balloon and then then h then momma bunny walked over to mister balloon and said can you please give them a balloon she asked certainly replied mister balloon and then they had two balloons for themselves two friends were playing with a ball the ball went in the water the guy tried to get the ball then she uh the boy passed the the ball to the elephant and then they the boy was in love with her,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +two friends were going for a swim and the elephant wanted to dive she tripped and and hurt her knee the lifeguard came and put a bandaid on her and she was curious and the lifeguard showed her the sign of no running the giraffe brought a airplane he was playing with it and the elephant was getting bored then the elephant took it away from the giraffe and started to play with it,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +she accidentally dropped it in the water the person was very mad at her the lifeguard came and the elephant explained to the lifeguard he tried to reach it but he could not the life the the boy was crying then somebody came in with a net and reached it and got it out and passed it to the giraffe and he was happy and so was the elephant,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 +one day uh a bunny went to the park with his friend she was making his sandcastle with her he dumped it all over her sandcastle and it uh and it blew up and she was crying and he did not and he did not even say anything uh two friends went for a picnic uh the one friend ate everything he was very full he got a stomachache,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 +the little girl ran to the nurse and pulled her over to the boy and she said merry christmas and they lived happily ever after two friends went to the park and the girl had a balloon uh the boy wanted to hold the balloon he untied it and it flew up and then the girl was very mad at him then they saw a balloon person,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and he asked if he could have a balloon of hubbadubba uh bl and the guy said balloons five cents and they were very sad then they seen a doctor and asked and the boy asked if she can buy two balloons with five cents and they got the balloons and she paid and they loved the balloons a elephant met a a giraffe and the and the elephants ball went into the water,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +then the giraffe would get it and then she w then she was happy and then hmmm she liked her and then okay um the elephant and and the the giraffe was going to run and he was going and the elephant was going to run over to the jumping thing and then she slipped and then she fell,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 +and then the lifeguard came and then he putted a bandaid on and then then she knowed that there was no running and then she looked at the sign and it said no running and then the end the giraffe had had a airplane and he was going to throw it and and the and the elephant wanted to try too and then he s he was tr he wanted to throw it,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +and then the elephant was going to throw it and then it sank and then then the giraffe was mad and and then the lifeguard came and then and then the lifeguard was going to get it and then he and then he was almost about to get it and then and then the giraffe was sad what happened next and then then the girl lifeguard came to get the airplane with a th a net and then she got it,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and then and then she got it and then he was happy a bunny and a bunny were playing in a sandbox and then they builded a snowcastle and then the the other rabbit poured some sand in it and and one part was still fixed then what happened and then the other one was sad the end um um two rabbits had baskets,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 +and it had a picnic and then and then the other rabbit was full then he was hurt what happened he found a doctor and and he thoughted that guy was hurt and then the doctor came and then then the boy was better the end um the girl had a wagon with a balloon on it,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 +and the and the other rabbit was running and then the boy rabbit was going to take the balloon and then he and then he was trying to take it off then what happened then it flew up in the air and then then it popped and then he was going to the balloon man and then then the girl was sad what happened then and then then he was mad,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 +um then the girl came then sh then she then then she wanted a balloon and then he asked the doctor that could could he have some of your money what happened then then then the boy and the girl was going to have a balloon and then they both had a balloon the end once an elephant and a giraffe were playing ball when suddenly the ball dropped into the sand that was water out they sunk the ball picked them out,0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +but it was just the elephant and they played ball again once an an elephant and a horse were playing in the sand suddenly it was not sand they realized they fell and sunk they came out again they got hurt because that is how it looks they had to put a bandaid on a different eleph on that elephant a doctor elephant and they sat down the doctor elephant got angry,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 +once an elephant and a giraffe w were shooting airplanes when it looked when suddenly the airplane got broken and it shooted into that water into the water oh no said the little giraffe like he yelled mister fixit came and said what is all this yelling about a a a plane got stuck in the water can you take it out of course i will and he s he got angry too did not know how,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 +so he took his net out of his truck and scooped it up and that did the job and they played airplane again and they were happy they liked the the airplane it was all fixed up once a dog and a rabbit were playing in the sand they made a sandcastle and when by the time it was finished they poured some more sand and it fell down and did,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +they built the sandcastle again it was up once a dog and a rabbit were walking down they had a picnic soon the rabbit was so tired and full that he had to go to sleep out they packed his legs got tired dog had to pull him doctor came along and fixed up the rabbit and took them home once a a dog and a rabbit were waiting down with a balloon when the balloon popped,0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +on that hot day they all sat up went the balloon it popped out came the balloon man with lots of balloons and they gave one to each and they had lots of balloons only one popped and they liked their balloons off they went out came doctor rabbit,0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 1 1 0 0 0 0 0 1 +he said what are these balloons are for the balloon man gave it to us because we love balloons and ours popped away once there was uh two friends one tally and one hm snout and snout had a beautiful green ball but it fell in a pool so tally swam to get the ball and he got it back um tally was blushing his whole face went red,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 +this is another story about snuff snout and tally once there the pool in the last story with the beautiful green ball fell in the pool and tally got it back there was a diving board and snout said i am going to go on that diving board and i will show you a nice dive well tally said stop do not run and unfortunately snout slipped and fell and really really hurt her knee and then tally warned her because tally saw a sign that said no running snout started started to cry,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,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 1 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 +but the lifeguard luckily saw and came to the rescue and the lifeguard gave snout a bandaid once snout stopped crying the lifeguard gave her a sticker for being such a good help not moving her knee around and stuff and then um the lifeguard pointed to the sign that said no running and snout looked and said sorry this is a story about snout and tally and tally had this nice model airplane that he was playing with by the pool he was flying it around and snout was like ooh she really wanted to play with it,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 +so she snatched it away and then tally was like hey give it back it is mine and snout dropped it in the pool and then tally s said now look what you have done you should not grab and tally got really really really mad at snout and then the lifeguard asked what is the problem here kids and snout said well um ta tally here was playing with this model airplane and i i really wanted to play wis with it,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +so i grabbed it away but i accidentally dropped it in the pool so the lifeguard had to get down and stretch out for the plane but it was too too far out the lifeguard could not get it and then the the girl luckily had a net so she dipped it in the pool and luckily or not but he was lucky she did get it out,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 +and then snout said sorry i dropped it in the pool once there was two animals a wolf and a bunny and they were at the beach or in a sandbox and they built a big big sandcastle the wolf was working on the tower and the bunny was um collecting the sand but then the bunny poured the who the whole bucket of sand onto the sandcastle and it ruined one tower but then the sand that was on the tower started coming down and wrecking the whole sandcastle so when that was all finished the only thing left was one tower,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the wolf started to cry and the bunny feeling bad once there was two animals a ra a hare and a wolf and the wo and the bunny thought that he was so good so he could have all the food he wanted so then once once they were finished the wolf had just a sandwich and a juice and then the rabbit was feeling kind of queasy so um the the wolf told him he would walk him home but luckily a doctor was walking by so the wolf a asked the doctor if he could um help the uh wolf and then the the wolf um brang the doctor over to the bunny,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the the wolf said he has fainted he needs your help so the the the hare doctor said well i will give him this medicine so she did and he woke up but still he was feeling kind of queasy and then he he just took a run around the trees that is what the the doctor told him to do and then he was feeling fine two best friends named fluffball and fluffy were once playing at the park,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and and the and fluffball which was hare kept going on about this balloon he got for being the best student in his class but then the the hare said i am going to take it off and show it around but the wolf said no do not it what if you let it go it will fly up into the air but the hare did not listen so um the balloon he accidentally let it go and it went up into the air the the um the wolf got so mad at him that he he he he said i am not your friend any more but then the hare saw some some balloons,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +so he went over to the balloon guy said i want um that red one right there but it was five cents but he did not have any money so the guy that was selling the balloons said sorry but you can not have this nice red balloon and then um doctor fluffball which was fluffballs mom um asked him um fluffball asked his mom if he could have five cents because the the red balloon was five cents so doctor fluffball gave the man five cents and he got two balloons for both of them and that was that they both got a blue and red balloon playing baseball,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +bouncing the three balls in the fall looking at a ball in the fall laying down in the fall trying to get the ball try give someone the ball in the water in the spring playing running around in the spring looking in the water in the f summer lookin running through the water in the summer running in the in the summer on the sidewalk getting hurt on the sidewalk in the summer get hurt in the summer crying,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +playing in the summer sitting down on the bench in the summer sitting down on the bench in the summer get someone getting mad being happy in the fall playing in the fall with a little toy airplane playing with a little toy in the fall put his airplane in the water in the fall put the water in the in the water in fall put the water in fall,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +put the water in fall and they happy try and get it in the water in the fall sad it in the water in the fall getting a net to try to get in the water in the fall try to get it in the fall then kind of got it giving the airplane to somebody in the f fall givin holding the airplane in the fall the end,0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 +playing playing in the sand making a sandcastle with sand playing with sand with sand playing with sand with sand playing with sand with sand uh bringing food somewhere having a picnic somewhere laying down and eating somewhere la laying down and eating somewhere,1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +playing somewhere pulling somewhere playing somewhere playing somewhere bringing a cart on the sidewalk in the spring taking a cart somewhere in the spring taking a cart somewhere in the spring trying to get the balloon no handling and they would all go somewhere in the spring,0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 +looking up s in the sidewalk in the spring saying could i have a balloon in the spring seeing what ss getting a balloon in the spring looking at a balloon ss looking they were at a tr at a balloon in the spring but they were all gone walking in the spring um looking at the balloons pulling someone to that balloons in the spring,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +uh getting a balloon in the spring walking once upon a time the elephant had a ball and the giraffe liked it and he decided to play with it by the pool and then he made a mistake and it falled in the water and and and the elephant thought that he could not get it but he he just tried and tried and he got it,0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 +and he gave it back to the elephant so the elephant was very happy the end once upon a time there is a elephant and a giraffe by the diving pool and the elephant ran and slipped i think i think that is next page and he slipped and got hurt so the giraffe came running and then one of the elephants came to help with a bandage and the band and he put the bandage on,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and he hurt and hurt and she had to keep her leg out like straight in front so so it would not hurt when she walks but she had to sit there x what was that last bit she has to sit there at the diving pool all day until it feeled better so and then the big elephant said no running and she went that is why he got hurt and he said so she had to sit there for time out that is why,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 +once upon a time there is a elephant and a giraffe the giraffe had a airplane and they were at the diving pool the elephant played with the airplane and watched it zoom around and he did like and the elephant took it away and started playing with it and then it fell in the water and the giraffe stared at it what and the giraffe stared at it,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 +and then the giraffe was very mad at the elephant that the elephant was so scared so the beach the suh the the the lifeguard he he decided to take it out and he tried to get it because the elephant said so small elephant as tall as me and then he tried and tried and then i should not what is that last part then he tried and tried but he could not get it so he just tried still,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +so he could not get it and the zebra was sad so sad and then there is somebody that ha was even a bigger elephant and tried to get it with her net and she got it and she got it out for their giraffe and the giraffe was happy very very happy so the elephant and the giraffe became friends again there is so much ones about them at the diving pool the end once upon a time there was a little dog and a little rabbit they were playing in the sandbox,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and they builded a castle and the bunny took some sand and put it in the bucket and he started shoveling it and then the bunny poured all the sand over the sandcastle that the dog made and then the bunny said oh i am sorry i will not do that again oh the dog was very sad he cried h because the bunny was not very smart and then f and then the bunny just would not play with him and he standed still with his ears down like this,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +the end once upon a time there was a bunny and a dog they were going to have a picnic with each other and they met each other in the woods they met a what they met a each other in the woods the bunny brought lots and lots of junk that is like all food that is bad for you junk like what like junk i call it when it is food that is bad for you i call it junk,0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 +and the bunny ate so much of his junk he got sick and he falled down and he got dizzy and then the doggy ran to the doctor bunny to help and the doggy pulled him over and then he started working on fixing him in case he was okay well then he threw a thing at his head and tried to s make him look over there and he fixed him up he had to go home so he the doctor brought him to his home,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and the doggy was very happy the end once upon a time there were a dog and a bunny and they met each other in the woods and the dog had had a balloon and the bunny came running and a bunny ca took the balloon out of the the wagon and tried to untie it but the dog said no and he would not listen,0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 1 +and then the dog tried to catch it and the bunny tried to catch it too but they just could not catch it oh and then the bunnys dog friend got mad and made his teeth like this and made what and made ade him mad so he would be so mad that he would just be like this standing there then he went off to get a balloon from a balloon seller that sells balloons he decided to to get one,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +he decided to get one the bunny decided to get a balloon but he did not have any money for five cents well they were sad and he did not have any balloons for each other because they wanted then the bunny wanted one too so they went off to someone that had money and then the and then he and then he bought some for them and they got two the two last ones left and they were so happy and they they have been friends with each other all day the end,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 +the elephant and the cow umhm so you have told me what is in the picture can you tell me a story about it cow elephant cow and a elephant umhm what is happening they are trying to find each other the elephant and the cow had a accident with the ball and the eleph the cow got in there the cow got what he got in there he got in there and the elephant got it,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and the cow is still in there and the cow and the the cow is dripping and she has the ball there is a slide cow and a elephant a cow and a elephant and a slide and a pool and the elephant is running and slipping and the sand and the cow and she got hurt she got hurt on her knee and it hurted and she can not go in the pool,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 +and she hurt herself uh the bo the cow and the elephant the cow the elephant has a ribbon and a dress and the cow gots a airplane and and uh she got it and it got in the water and the cow was mad and she is mad too both of them are all mad and the elephant is getting it,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 +he tried and tried to get it she gots a net to catch it and she is going to get it with the net and they got it back and they are happy the rabbit and the d the d he she made a a sandcastle and the rabbit gots a shovel and the rabbit wants to play and the s and he s g something is going to happen to the sandcastle and it brokeded,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 +and then the she is crying they got picnic baskets and they are having lunch and they are havi and the rabbit is full and the rabbit is what full and they are and and the she is hungry and the de and she goes to another lady and sh she she is going to say hi and there is the rabbits mom,0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 +the there is a balloon and a wagon and she is carrying and the rabbit is not the rabbit is what he is not carrying and the girl is just carrying it what did you say the rabbit was carrying nothing and there the balloon is going to be poppeded and the rab the rabbit is going to take it off and it is going away,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and it got away and they were go and get another one from the man can you take your fingers out of your mouth then i can hear your words better they are picking one and they are going to give one and they are gon to go the man said no and and there is there is the bunnys mom and he is the b the rabbit said he will not give me a balloon and now it he is getting one and he got both balloons,0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +once upon a time and he is looking apples and the apples fall into a pool and uh a buddy a a guy f is catching it and he get it and he put it back and he be happy the end once upon a time are walking in a pool and he is looking backwards,0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and a girl walking and a and he stopped and he be worried and he be scared and he sit on a bench and he sit on a bench the end once upon a time out walking and he is flying a plane and he and he is playing a plane,0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +then he dropped it gone is sinking and sinking and sinking and sinking and sinking and sinking and sinking and he catch it and he put it right back on his hands,0 0 0 1 0 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 +and he be happy the end you can start once upon a time once upon a time what do you see use words so i can hear you so my tape recorder can hear you hm what has happened them building and he throwing sand,0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 1 0 0 0 1,0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 1 0 0 0 1 +and messed all d up and he be sad how does it start once upon a time try again hm and he is eating and he is tired and he is going sleep and he is running and he is holding his dress,0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 +and he fall down and he walks the end once upon a time a tree and he catching a balloon and it pops and wants the balloons and she wants the balloons again and they popped,0 0 0 1 0 0 1 0 1 0 0 0 1 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 1,0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 +and they popped again and he is looking and he get and he be happy and he be happy again the end there is an elephant and a giraffe that but the elephant is bouncing a ball so fast that the giraffe wants to try and the elephant um and well the elephant and the giraffe but the giraffe is trying to get the ball in the water so he swam,0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 +and and the elephant was covering eyes his eyes and um the elephant was covering his eyes and his trunk was full of stuff and then h he was happy and then the giraffe was happy then the elephant started to grab it from the the giraffes hands and he said thank you and the um elephant had the ball and the giraffe was soaked so the giraffe asked him if he could bounce it but he said but the elephant laughed,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 +and he said no there is the giraffe and the elephant and the giraffe has a kleenex and they were going to go in the water and um the elephant was going to go in the water but the giraffe pushed the elephant and so the elephant fell in the water and the elephant slipped when when the giraffe was running after him so he would not slip but then the elephant he got hurt and the giraffe the elephant got hurt because um he slipped,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and the giraffe was running to see what was ran what was wrong and the elephant was crying and the coach came to see and the giraffe was just looking at the elephant and then the then the coach started to put a bandaid and the elephant was covering ey his eyes and um doing kind of a mad face and the giraffe was just looking but then the coach sat the elephant down on a bench and the uh um giraffe was just um holding his hands like this and the coach was pointing his finger,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and he is and the elephant was holding his hands right between his legs and then he and then the elephant um had a kind of a mad face again the giraffe and the elephant and the elephant was the giraffe was holding the airplane toy airplane and then the and the elephant wanted to play with him but the but he was still playing with it but the giraffe was still playing with it and he was making the elephant not catch it but the elephant finally caught it and then he started playing with it and the giraffe was starting to get mad,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +but the po but the toy plane went in the water so the two guy but the giraffe and the elephant um put their mouth like this but then the giraffe was really mad and the elephant was still ga still looking at the airplane and the coach came and the and he he was looking at the giraffe so um the elephant was telling him what happened and then the um the plane started to sink even more and the the elephant but the elep the coach went over to the elephant and the giraffe was um looking at the the two elephants,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and the elephant was screaming his head off and he was telling the coach what happened but the coach had to grab it before it sank all to the bottom but he could not reach it and the giraffe was starting to cry but this other elephant came with a net and tried to get it and the um plane was started to sinking more but he still could not reach it but he finally got it and he gave it back to the giraffe,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 +now the now the giraffe and the elephant were happily were happy there is a bunny rabbit and a dog making a sandcastle there is the bunny and the dog that um are um well the bunny rabbit is digging the sand up and the dog is um making the sandcastle smoother and the bunny rabbit was pouring sand all over the sandcastle so the dog was um starting to s um uh get sad but the but half of the sandcastle was left then the dog is was starting to cry and he was starting to make it all over again there is a bunny rabbit and a dog that are going to have lunch together,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +there is a bunny and a dog that are having lunch there is the bunny and the dog but the bunny but but the bu dog is eating and the bunny is and the bunny is chew and the bunny is sick the bunny um is does not feel good and the dog does feel good there is a bunny and a dog but the bu bunny is a mess and the bunny is going to well the dog is going to tell the other bunny that um he has to fix him but he pulled him because he will not,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and he made him worse and then the bunny felt good and the dog was just by the sandbox there is a bunny and a dog and but the dog s has a balloon on his wagon and he is pulling the wagon and the bunny rabbit seen the balloon and he he was going to not try to take the balloon off but the dog did not want him to and the balloon fl flew away,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and both of them were trying to catch it the bunny rabbit the dog but the dog was rea really mad at him the rabbit was there is a big rabbit that had a lot of balloons and the bunny rabbit but and the dog but the dog was still mad and the w bunny rabbit went to get another one and he asked the man that has all the balloons could i have one but they were only five cents and he did not have five cents and then he said if you do not have five cents you can not um take a balloon then the dog and the bunny ra rabbit seen the doctor,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and the bunny rabbit ran but the dog stayed and the bunny rabbit said i want one of those balloons and he will not give me it then he um and the doctor had a lot of money so he gave him most of his money and there is only two left because the bunny rab the dog took most of them and the bunny and the wa the bunny and the wa the bunny and the dog had the two balloo the balloons and the then they went and both of them were really happy a giraffe and a a giraffe is watching a an elephant juggle a ball,0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +and the ball gets stuck in some wa cement or a pool and the horse is swimming in to get it and he gives the elephant the balloon the ball and then he steps out and he is wet and the elephant is happy well an ele an elephant and giraffe are looking at the pool and there is and there is something behind a rock or something else and it looks like bunny ears and the elephant is talking about the bunny ears,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and they run and they run to see him and then the elephant does a stretch and and then there is a swipe and hurts her knee and then her knee and the giraffe is coming after and a lifeguard comes over to them and he is putting a bandaid on the knee and then they sit in a bench and the lifeguard is pointing to a sign that says no running there is a giraffe and a elephant by a pool,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 1 +and the gir giraffe has an airplane and he is flying it around in his hand and suddenly the elephant grabs the the airplane and drops it in the pool and it is sinking and the giraffe is mad at the elephant and the lifeguard is looking at them both and the airplane and the elephant is telling the lifeguard about what what happened and the lifeguard is reaching to get the airplane but he can not reach it quite reach it and the giraffe is like panting,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and the elephant is um kind kind of nervous or sad the lifeguard kind of has a smell and his ears are going up and then a an ele a girl elephant comes along with a net and she nets the airplane out and she gives it it to the giraffe and then the gir the giraffe hugs the airplane a rabbit and a mouse are playing in the sand and they are building a sandcastle with and the rabbit is filling a bucket,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and the mouse is flattening the castle and then the rabbit he pours the sand on the castle and the mouse has a kind of a whiny face because he is surprised he is doing that and he wrecks the sandcastle and then they and now they are building it again um a mouse and rabbit are going for a picnic and they are at their picnic eating the food and the rabbit is very hot because he looks hot and and the rabbit is full and the mouse is drinking juice,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 +and the rabbit is like really full and then there is a doctor rabbit and the mouse is running over to him and the mouse is pulling him over and he sees the rabbit and his his his stomach is really full and then he takes him off to the doctors a mouse went to a party he because it looks pretty much like there is a party balloon and the rabbit is looking at the balloon,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and the rabbit is trying to untie it and he unties it and accidentally lets go and the balloon is floating away and then they are in a big fit the mouse is really mad and the rabbit is like terrifyed because the balloon fel floated away and then they see a rabbit selling balloons and the rabbit is pointing to the balloon up in the sky and and the um rabbit shows him a balloon and it says balloons five cents,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 +and the rabbit is looking in his pockets for five cents and the the man the rabbit is holding the balloons and the mouse and rabbit are looking at him and then th and the mouse is stays behind aside beside the balloon man the rabbit goes to get the doctor uh rabbit again and he says there is a balloon man and we do not have any money and the um doctor and the doctor rabbit is giving the the b the balloon man some money so they can have the balloon and then they get the balloons and everybody is smiling,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 +one day some kids were at a swimming pool one of the kids had a big bouncy ball the other kid wanted to try it he accidentally dropped it into the water the other kid was scared that it would go to the bottom so the kid that dropped it went into the pool and got it the other friend said thank you and the other friend gave the other kid her ball back one day some kids went to a swimming pool one of the kids said let us jump in,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 +the kid wanted to jump in but she slipped and she fell on the ground and scraped her knee then the lifeguard came to help her he put a bandaid on they sat her down on the bench to rest for a while then the lifeguard pointed to a sign that says no running one day two kids were playing by a swimming pool one of the kids had brought an airplane to play with they were playing with it,0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and the other kid snatched it from their hands and she accidentally dropped it in the water the other friend got really mad at her the airplane was sinking more into the water then the k then the kid who put it in the water by accident said to the lifeguard the airplane got dropped in the water the lifeguard tried to reach it with his hands but his arms were too short the other kid who had brought the airplane started crying then one of the people who were swimming saw the airplane and got out of the pool got a fishing net and told them that they would get the airplane for them they they reached into the water,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and sh she got the airplane caught in the net and she gave the airplane to the kid who brought it and that kid kept it and did not let other kids play with it by the pool one day two friends were in a sandbox playing together they were building a sandcastle one of the kids dumped a bucket of sand on one end of the castle and that end collapsed and the other friend started crying one day two friends were going for a picnic one of the friends ate too much,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +when they were done they had a big tummyache and they really wanted to go home so one of the friends went to see a doctor they pulled the doctor by his sleeve to bring him over to the other friend the doctor said do not eat so much next time you have a picnic and the doctor took the other friend to his house one day in the forest two friends were walking one of the friends had a wagon with a balloon tied to it one of the friends wanted to touch it so they a so they took it off the wagon,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +pretty soon it almost touched the sky and the other friend was mad at him and the string was only left so the other friend got really really really mad at him so they both went to a balloon guy the balloon guy said do you want to buy a balloon and then he also said five cents a balloon and the rabbit reached into his pockets but they were empty so the friends just looked at him,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 +then one of the friends went to a doctor and said that guy is not letting us have a balloon and then the doctor gave him five cents and they got a balloon and the then the doctor paid another five cents for the other friend and he got a balloon too and then they both played with their balloons all day elephant zebra what happens in the story ze zebra,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 1 +ball zebra and elephant ze um elephant and zebra and ball zebra and the ball an and the elephant zebra and the elephant and the ball the end um elephant and zebra elephant and zebra elephant and zebra owie and uh owie elephant has a owie,1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and the zebra do not has a owie there is two elephants zebra two elephant two elephants and zebra two elephants and zebra two ele elephants st no zebra the end elephant and zebra,0 0 0 0 0 0 0 1 0 0 0 1 1 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 1 0 1 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 1 +uh elephant and zebra airplane uh elephant and zebra airplane elephant and zebra airplane uh it is on what is that sound what is that sound in there um elephant and zebra and airplane elephant and zebra elephant and zebra,0 0 0 1 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 +two elephants and zebra elephant and zebra and airplane elephant and zebra elephant and zebra elephant and zebra elephant and zebra elephant and zebra elephant and zebra the end bunny,0 0 0 1 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 1 1,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 1 0 1 1 +what happens in the story um sandcastle sandcastle sandcastle and puppy and bunny sandcastle and bun uh san sandcastle and dog doggy and rabbit bunny sandcastle breaked a sandcastle breaked they are making it again the end,0 0 0 0 1 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 1 0 0 0 0 1 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 +um basket puppy and rabbit carrot i said a carrot that is it drink pa basket sandwich juice i said juice what happens in the story,0 1 0 0 1 1 0 0 0 0 0 0 1 1 0 1 1 1 0 0 1 0 0 0 0 1,0 0 0 0 0 1 0 1 0 1 0 0 1 0 0 0 1 1 0 1 1 0 0 0 0 1 +um tree tree tr tree tree tree the end uh balloon balloon balloon what happens in the story,0 1 1 0 1 1 1 0 1 0 1 1 1 0 0 0 0 1,0 0 1 0 0 0 1 0 1 0 0 0 1 0 0 0 0 1 +balloon balloon fly away balloon t popped the balloon lots of balloons lots of balloons lots of balloons five balloon lots of balloons i said lots of balloons,1 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 1 0 0 0 0 1,0 0 0 1 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 1 0 1 0 0 1 +lots of balloons yeah uh lots of balloons let us count the balloons in here in this picture there is nine two balloons there is two balloons none balloon one balloon two ba the end,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 1 0 1 0 1 0 0 0 1,0 0 1 1 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 1 +um the uh giraffe s comes to see uh comes on to swim in the water and then there is an elephant and then um she is bouncing a ball and he um he is asking to play with her they play volleyball and um it actually falled in the water by accident he was going to go in the sw he was going to swim to get it and then he swan swam in and then the elephant had um her hands over her eyes and he had a mad face cause he knew he could get it,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and um the he got it he gave it back to the elephant and then the elephant um was going to fall in love with the giraffe um they wanted to go for a swim and she wanted to try the diving board she did not see um no running she was gon she was running and the um ele giraffe said um you better not run it because he saw the sign but he did not tell the elephant and she did not she did not hear him,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and then she slipped she was running to get her then she got a big owie she was crying and then the lifeguard came over and gave her a bandage she was scared and now he said there um you have a bandaid now and he was m the lifeguard was mad don not run did not you see the sign,0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 +uh um the a gir the giraffe was walking and then um a elephant came and she wanted to play with his um airplane they were taking turns the um he was playing with it and um the elephant was curious that it would go in the water and then she took it away and then it landed in the water and th he was mad at her she wa she was curious what she could um do about it,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +then the lifeguard came a and he saw that it was in the water the giraffe told him that um th the elephant was took taking it away and threw it in the water and then she said i did not do it and he did it by ac he did it on purpose and then he was the lifeguard was curious and he was trying to reach it they were both curious that he could get it and then it was starting to sink more and then a girl came with a net,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and then she scooped it out and gave it back to um the uh giraffe and then she said here have your airplane back and he said thanks for getting it and they fell in love again um a girl was building a sandcastle the um bunny wanted to play with her and he they dumped some sand she was patting it down and then he put some sand on it and um it broke,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 +and then um he said oh no and she um said it is okay and he was she was crying she was trying to make it again um a boy and a girl was walking along and they were going for a picnic with each other he was eating a lot of his and he had a lot of junk he got so full and he was getting sick,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 +and he said i need a docor he doctor he he felt dizzy she was going to phone a doctor and then um she there is a doctor walking along and then um she ran up to him she said um my friend he has a stomachache he is dizzy he ate too much of junk and he said no and she said come on come on,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 1 +please help me and then she said yes and um he he said you are dizzy your temperature is five now he is okay and he went with the doctor home um she a girl was walking along and a boy was walking just for a jog and then she just walking with a balloon tied to her wagon and he wanted to play with it,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 1 0 0 0 1 1 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and she said no and he was tying it off the wheel and then it floated up in the air and then she was really mad at him he was scared he looked at the balloon and then they both s she was still angry at him and he saw a balloon guy and he said can i have one of those balloons and you have to pay five cents,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and they both wanted one she he was curious that um she was going to be really mad at him again and um he went to hi his mom and he was going to ask him ask her if he could have five cents and uh she said yes and she le he letted he she gave um five cents to him and they both were happy that they got a both got a balloon and they would not share theirs again and the mom wa ha was happy too um once upon a time there was a elephant,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and she was bouncing three balls and giraffe came and she try and he wanted to try and the elephant said okay and then the giraffe said i can not do it and then one ball wen then all three balls went into the water and then the elephant and the giraffe said oh no and then the giraffe went splashing in the water to get all three balls and then the elephant got one ball and then he wa happ and then she was happy,0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 +the end um once upon a time there was a little giraffe and he wanted to go swimming he was trying to go in the diving board and he was scared and then the elephant said i will try it out and then she was running and then the giraffe was slowing down and then n the the elephant stubbed her hurt her knee then the lifeguard came,0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 +and then the lifeguard put a bandaid on her knee and then she was on a bench and then he put her on a timeout that is it um once upon a time there was a little giraffe and a little elephant and and the little giraffe was going to throw his plane he thought it was going to go in the water then he tried and then he tried he did not let go,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 +and then the elephant took it away and then she threw it in the water then the giraffe was mad then the lifeguard came and then he said you were on another timeout for the elephant and then the lifeguard said i do not know if you should have a timeout and then the lifeguard was going to try to reach it he did not reach it then he did not know and then the giraffe was starting to cry,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 +then this lady elephant came and she got a net and she was going to get it with the net and then the lady almost got it and then she got it and then the giraffe was happy once upon a tame time there was a little rabbit and a little dog and the little dog that was mak it was making a sandcastle and the rabbit joined in and then h the rabbit tried to do it,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +well he did not get it right and then he dumped it on top and then it did not and the dogs eyes went crazy and then the dog his mouth was he was kind of it was kind of crazy and then it was trying to make it back well it did not the end once upon a tame time there was a little rabbit and a little um dog and then they wer they were going for a picnic and the rabbit said hello,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +would you like to join my picnic well the dog said no thank you i will enjoy my picnic and then the rabbit was eating all its stuff that it brought and then he was getting so hot that he that it was get that it was burning and then he was very fat and then he was going crazy and then he saw and then she saw then the puppy saw a doctor and then and then she was bringing the doctor to the rabbit and then sh that rabbit saw the other rabbit,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and then it took it that little rabbit to the doctors that is the end once upon a time there was a little rabbit and a little dog and then the little rabbit wanted to have the balloon and then it almost took it and then he did not notice and then he untied it and then he did not know what was there and then it and then the balloon went up up up and then that dog was mad at that rabbit,0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and then another rabbit came by with some more balloons and then that d um rabbit wanted a balloon and then he saw he did not have any money and then he did not get any balloons and then one rabbit then that rabbit saw a nurse doctor and then that doctor then that little rabbit said can i have some money for one of those balloons and then he got one and then he had and then they had two for each the end giraffe and elephant were in the pool,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 +and i wonder what were were they were bouncing the ball i wonder what will happen the ball felled in the water giraffe was swimming to get it and and giraffe got it and elephant said thank you and you are my hero giraffe said oh my pleasure and and and elephant was engaged with him elephant and giraffe were by the pool,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 1 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +they i wonder what will happen elephant was running and and i wonder what will happen she slipped and she got a owie and she was crying and giraffe wa is going to help her and the lifeguard came and ss and gave her a bandaid she was so sad that sh he had to put a big bandaid on then the lifeguard let her sit down for awhile,0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +the lifeguard was so mad and it said no running and ii she was so sad giraffe and elephant were at the pool giraffe had a airplane elephant took it away from him he was so upset it felled in the pool ele and giraffe got so mad that he wanted said that he wanted a new one and she took toward to the lifeguard and said can you get that,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 1 +and he said did you do this and he will and she will say no she wa she was crying and said that all right i did it this is the truth i throwed it in the pool the lifeguard crawl and try to get it i wonder what will happen he could not get it and giraffe started to cry and a girl lifeguard had a net,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1,0 0 1 0 0 0 1 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 1 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 +and try and she got it and she did giraffe was so happy that he did not have to have a new one and then he loved it and he never ever ever let elephant played with it ever again this rabbit is going to make a sandcastle with this dog the rabbit is putting sand in the pail when the dog was making a sandcastle the rabbit poured the sand onto the sandcastle the dog was sad the dog wrought so hard,0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 +she started she was going she wa the rabbit was upset because he was going to make another one the dog was crying the rabbit was disappointed rabbit and rabbit saw the dog dog the dog waved at rabbit they were walking to a picnic the rabbit was so hungry that he had too many junks the ra the the dog had a sandwich first soon the rabbit was fat and full the dog was still hungry,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 +then the rabbit got dizzy the ra and the dog looked at him the dog saw his mother and he said that rabbit is hurt he does not feel well then he pu the dog pulled his his mother the rabbits mother to see him and he was very ill the r the rabbit ate too much junk and and his mother was a doctor so she took care of him,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 +and she took him to his house and he she said to the dog he will be okay the dog was going going for a walk with a wagon then rabbit showed up he said hi and i wonder what will happen rabbit saw the balloon and the dog said be careful the rabbit untied the balloon the the dog was disappointed,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 1 +then rabbit let go and dog and dog was worried and he wanted she wanted her balloon back and she got very mad at rabbit he al he always bugs her then the the balloon man was carrying some balloons and the dog was still mad he said that may i have a ye white one and the and the balloon man said sure when when he got to when got to his pocket and pulled down the balloon it was five cents,0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he did not have no five cents and he was he was sad then the balloon man put the balloon up again and did not listen to him then the rabbit went to the doctor again she had money and he wanted five cents he asked if you can buy me a balloon two of us because i do not have no more money and she said yes and and she and he took two balloons to them and ga and one of the money they were happy,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and the doctor was happy too that they have balloons first they have balling bowling balls secon second they drop one third he tried to swim and got it after she got the ball after he tried to jump with the bowling ball that is a silly idea you will fall down and hurt yourself first they saw the thing and they wanted to jump,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 +and then they ran and and then she ran too fast then she fell down and hurt shes knee and she cried and the coach helped her up and put a bandage and put her on the bench after she the coach said do not run because it is wet and slippery should not run like that first they first the elephant saw the giraffes airplane and then he flied it and the the elephant want to tried it,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 +then she tried it and then it accidentally dropped on the water and the the giraffe was angry and then the coach the um the coach said what is happening and she said i accidentally flied it it gone on the river the coa the coach trie um s s tried to help the coach could not help this after the giraffe has tears because he wants his airplane after the the woman in the net i got um um had a net and tried and um want helped him to get it out,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the woman tried and she got it and then the giraffe was happy after he hugged his airplane they was making a ss sandcastle the um the um the dog and then the rabbit came and helped it and then he got some sand the rabbit he poured it on the sandcastle he felled it down and then the dog tried to make another one,0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 +but he could not they went for a picnic they ate their food they were full and then the rabbit had a stomachache and then he went to a doctor and then he asked the doctor to help his friend and then the doctor helped and then the doc and then he was back to normal first they were um pulling the the balloon on a wagon,0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and then he showed it to his friend and then the rabbit untied it and then it flew away and then the dog is angry and then they they saw a man buying havin have some balloons and they want to get one and then he asked for one and then h he showed how much it was for and then she she said not not to take it and then he asked the doctor to pay,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and then he he asked like like doctor um i tooked a balloon off my friends wagon and it flew away and then he paid after they both have balloons the f the only the dog has a balloon both of them have a balloon oh now at the end they do yeah um it looks like the giraffe and the elephant are playing basketball and the ball goes into the pool,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +the giraffe tries and jumps in and get it um but the elephant gets it and the giraffe looks embarrassed um it um the giraffe and the elephant want to go swimming um the the giraffe the elephant wants to go off the diving board and she starts running and the sign says no running and she slips and falls and scrapes her knee the lifeguard comes running up to her puts a bandaid on it and she is all better,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 +and then the lifeguard points out the sign and she looks really really embarrassed and guilty um the giraffe has an airplane in his hand and the elephant um really likes it um the giraffe pretends to fly it and he is making airplane noises the elephant gets jealous the elephant the elephant steals the plane away from him and i guess she tries to fly it but it goes into the water,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +uh the ele and the giraffe gets mad the lifeguard comes up the lifeguard says what happened the oh and the elephant explained it to him so now the lifeguard is trying to get the the plane back and the lifeguard can not do nothing the giraffe starts crying then s a woman comes another elephant comes up with a net scoops the airplane out and gives it back to the giraffe the giraffe and the giraffe is really really happy now the bunny and uh the dog uh the dog has built uh a sandcastle,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the bunny wants to help the bunny scoops up uh uh a shovel uh a pi the bunny takes a shovel and scoops up some sand and then she pours it on the sandcastle she buries the sandcastle and the dog starts to cry the dog and the bunny are having a picnic the bunny starts to eat and she has a lot of junk food the bunny uh gets a really really big tummyache um the dog does not know what is happening,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +the the dog runs up to the bunnys mom a doctor or something and the and pulls the doctor over to see the bunny the doctor um brang her back like maybe gave her a painkiller or something but but but then the bunny feels better and then they walk away the dog has a balloon the bunny wants to see the balloon so the bunny unties it from his wagon the balloon floats up in the air um the dog gets mad there is a balloon salesman on the other side of the park,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +he wants the bunny goes up to buy one but each balloon is five cents and the bunny and the dog have no money so the bunny runs up to uh to the doctor and asks if she if she um the doctor can buy uh buy a balloon for a friend the doctor goes up pays us and pays the balloon man and now each and now the dog and the bunny have a balloon there are two kids who find balls on the si on the sidewalk and then they f then they it falls into the water and they and they do not want to get wet but the um the moose got it wants gets the ball,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and he gives it back to the li to the elephant and then he gets out of the water and he is soaking they want to go swimming but there is no running allowed ss but they want to run to run and jump into the pool and w when the elephant is running she slips and hurts her knee and then the giraffe gets the lifeguard and he puts a bandaid on the knee and then she is all better,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and then he s points to the sign and says no running allowed um the uh the giraffe and the elephant want to throw the airplane and see if it s falls into the water and when and when and he is going to start to throw and then and then the elephant grabs it away and thr and drops it in the water and then the giraffe gets really mad and and now now um now they have to go and get it because the lifeguard is there and now the elephant is saying i dropped it in by accident and the el and the lifeguard is going to get it but he can not reach and then its and then there is someone who swims ga ge gets a net and gets it the end and gives it back,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and now he is going to play with it the end theres an there is an elephant and a dog trying to build a sandcastle and the dog wants um to break it sort of and then when the rabbit pours the sand on it gonna it might break and it breaks down so now the dog tries to help him buil build it back the end the dog and the rabbit want to go swimming are going to have a picnic and the rabbit brings carrot stuff,0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 +and the dog brings stuff with cheese and stuff and the rabbit is so full that the dog tries to eat the rest and the dog and then the rabbit gets sick so so the dog gets a doctor and he pulls him over because someone got sick and the doctor says open your mouth and say ah and then the rabbit felt better the end one day the rabbit and the dog meet because the dog and the rabbit are walking somewhere,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then they meet and the dog has a little balloon on his wagon and the rabbit sort of wants to pop it so and then he wants the now he wants to undo it the balloon and make it fly away and now the dog is sad because his balloon is gone so now the dog gets really mad at the rabbit and now the balloon is for sale so the rabbit gets one for his friend five cents but he does not have five cents so they can not get one,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 +but then there is a doctor so they might ask him for five cents so they ask for five cents to get a balloon and he gives them five ce so he gives the guy five cents and they each get a balloon the end they were playing they smiled and a ball was in the in the pool the boy he wanted to catch the ball,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +so he went in and the elephant girl put her hands in front of her nose and then he caught the ball for her and she was smiling and he was all wet and he was what he was all wet is that the end yeah they found a pool,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 1 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 1 +and then she was talking to him and they runned and she got hurt and somebody came and ran to her she was crying she was crying so much that that the boy that ran to her gave her a bandaid she was sitting on a bench and he got very greedy he found a airplane a toy airplane then he was playing with it,0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 +she grabbed it away from him then it fell in the water and then he was mad at her then a boy came walking by then she told him something then he was trying to catch it and then they he could not so he cried and then a girl came down with a fetcher with a what,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +with a fetcher to oh a fetcher okay and then she tried and grabbed it and she got it for him and he was so happy the end they made a sandcastle they sc they scooped some some sand and she dumped the rabbit dumped it on right on the sandcastle and it broke,0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 1 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 +then he was crying when i when he was fixing it and it is the end of the story they went for a picnic they ate and the rabbit got a tummyache she was so full that she was growling then the boy called someone then he grabbed her to the bunny she checked her if she was well if she was what,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +if she was well then she was good and she did not have a tummyache any more and sh they had a walk they had a stroller with a balloon in the front they watched the balloon if it was coming off and he tied it right on s ti she tied it on so tight as she can then after it came up in the air and after the dog was so greedy at her and then a balloon man came,0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and h and the rabbit said can we borrow a balloon and he said would you like this one and he said yes it is five dollars and he and he checked if he had much and then they did not get a balloon and then they ran to someone they asked her th we want a balloon and she did not know why so she paid five dollars to him,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 +and they gave both of them a balloon and they liked to play with it once upon a time they had three ba balls and one went in the river and him immediately went to get it he falled in and then and he got um he went in swim to give it to the pi um the elephant again uh an then an then um and then hir it looks like they are in love once upon a time the elephant went to run an then and then they start running an her her and her got a booboo and then his mom comed put a bandaid on her,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and then her went back to her friends and then he got mad at her once upon a time he s he showed the elephant his airplane and then her grabbed it out of the out of his hands and then her dropped it into the water by mistake and then he got very angry at her and then the elephant comed and got wery angry at the pi the um at the elephant too uh then he had a a talk and then he try and reach it an and then he start trying,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 1 +an then and then the girl come with the net got it for got it for him an then he and then he was happy and he was happy and he hugged his airplane once upon a time a dog was playing a castle and a bunny comed over to play with him and th and when he and he was holding the castle and he was um having a shovel to um pick up the sand and he was dumping on the castle and then he broke the castle and then and then he start crying,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 +once upon a time they went on a picnic and and he and and som his tongue is out like this okay you are sticking your tongue out that is what it looks like and i do not know how to do that part can you tell me in words uh it looks like he is doing oh tongue out okay and once upon a time when they was eating something um it wa um it wa um he start to have a headache and then the dog went to his mother and tried pull her to the to her kid bunny and and it start giving him medicine,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and then he and then they went on when he was going to play at the park the bunny went and touched the balloon he did what with the balloon touched it and he tried to pull it off and then it got go an they was an and the dog was angry no maybe the angry was not at that part the angry was this one and he was angry and then he went on with balloons,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 +and he gave the kid another balloon and he said he want another balloon and he said no cause he got because he needed to get five balloons because he wants five balloons x an he asked an the dog said can i have another the bunny said can i have another bunny for the dog and then the bunny went back to his mom and he said he wo he will not give me another ba he will not give me another balloon so he did ge so he give the kids two balloons and an they and then they went off home the elephant is playing with a ball,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and the giraffe want to play with it with the elephant in the water and they dropped it in the water and then the giraffe was going to swim and get it for the elephant and the giraffe got it for the elephant and she was happy and she said thank you to the giraffe the end the elephant and the giraffe were going swimming and the elephant was going to go in the water and she slipped,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 +and she hold her knee and she was crying and the her dad went to go see her and put a bandaid on her owie and then she have to sit on the bench and she and her dad said no running the end the elephant and the giraffe were playing with a airplane and the giraffe was making it fly and made the elephant dizzy and the elephant took the airplane and the giraffe was mad,0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 +and the elephant dropped the airplane in the water the giraffe was mad at her so they have to get the airplane and her dad said to her why did you drop the airplane in the water so her mother tried to get it and the giraffe was crying and the mum got it with a net she picked it out of the water and gave it back to the giraffe and the giraffe was happy and the giraffe hugged his airplane,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +the end the bunny and the dog were making a sandcastle and the bunny was filling up the bucket and the dog was breaking the sandcastle and the bunny was breaking broke some of it and then the puppy was a little bit sad and the puppy was crying the end the bunny and the dog was going on a picnic and the bunny took all of the food out and wanted the puppys food,0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the bunny was full and the bunny was getting dizzy and full and the puppy went to get the doctor and puppy said that the the bunny ate too much food and the bunny was feeling sick and then the bunny was not feeling sick because the doctor made him all better the end the dog had a balloon and a wagon the bunny said can i come with you so he did,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 +the bunny was going to take off the balloon the pu dog said do not take off the balloon or it will fly away and the bunny did and the balloon flied away and the dog was mad at the bunny so he went to go see the circus bunny again to get a other balloon so the bunny got a other balloon for the dog and he did not have no money so he can buy a balloon then they were going to get some money from the doctor,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and the doctor said uh yes and the doctor gave the both of them some money to buy a balloon they both get their own balloon the end um an elephant and a giraffe went swimming the uh um s a wa they were playing with water balloons it looked like and they dropped a water balloon in the pool or the balloon um the giraffe tries to swim after it um he catches it and the elephant gets it,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 +and now she loves him um an elephant and a giraffe are swimming the elephant runs to the pool he slips and hurts her knee and the lifeguard comes and the giraffe helps her um the elephant cries and the lifeguard puts a bandaid on it and he sat down on a bench and the lifeguard p points to a no running sign,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +um the elephant and the giraffe are at the swimming pool the giraffe brings a toy airplane um he the giraffe plays with it and the elephant stares at it then he the elephant grabs it from him and drops it in the pool the giraffe is mad at the elephant and the lifeguard sees it and it is starting to sink the lifeguard looks sort of angry at the ele other elephant x and um he tries to get it,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +but he can not reach it the giraffe starts to cry um and then another elephant um gets a net and um and picks up the plane and gives it to the giraffe and the giraffe is happy um a dog is playing in the sand and a rabbit comes and wants to play with her he starts making a little bit of the castle while the rabb while um the dog starts making a little bit of the castle while the rabbit fills a pail up with sand and the bunny dumps it on the castle and the castle breaks and the bunny screams,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 +um and the bunny pretends he did not do it but he really did and the dog is feeling sad because it is broke it broke um the bunny and the dog are going for a picnic um the dog brings sandwiches and the bunny brings carrots and sandwiches and pickles and chips and sandwiches and carrots and he gets fu the bunny gets full while the dog is still eating the bunny is feeling sick um the dog runs and gets um the doctor and he pulls the dog pulls the doctor over,0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +um the doctor looks and tells him to open his mouth and then he is all done um the dog is pulling a wagon with a balloon and and the bunny sees her the bunny tries to get it um he gets it and the dog opens his mouth and starts to scream sort of the bunny lets it g lets go of the balloon and the dog is really mad at the bunny and he is just staring at the balloon,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and um he sees um another rabbit selling balloons he asks for some and they are five cents and he said you can not have them if you can not pay five cents and then they are really sad and then there is a bunny another bunny up there i think it is his mom and he wants to buy a balloon and they he gives five cents to him and they each get a balloon,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and they are playing with them there is an elephant and a giraffe the elephant is bouncing a ball and there is the giraffe guy i think is talking to her and they are watching and all of a sudden the ball that the elephant was bouncing fell into the water and they are both looking kind of sad and um excited and now the giraffe uh jumped into the water and now is swimming to catch the ball and the giraffe is back at the end of the pool and gave the ball back to the elephant and now the elephant is happy and looks happy,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +uh um the there is the giraffe and the elephant again and the elephant is looking at the water with the giraffe and now the elephant is looks like uh she is going to jump into the pool and right when she started jumping uh the elephant slipped and hurt herself and now she has a cut on her leg and now the giraffe is stand sitting by her and called the lifeguard to come and now the elephant is kind of scared that it is going to hurt when they put on the bandaid and now she is walking with the lifeguard with the bandaid on herself and she is kind of happy and kind of sad and now she is sitting the bench,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and the lifeguard is pointing to no running because she was running uh the elephant and the giraffe the elephant is looking at the giraffes airplane that he has in his hands and she is happy now the giraffe is kind of playing with the airplane and pretending that it is flying and the the elephant is trying it now and she is pretending and the giraffe is thinking she is he is scared that she is going to wreck it and now the the airplane fell into the water and now the giraffe is mad and now the lifeguard is standing there and watching them uh be mad at each other,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and now so the elephant is saying what happened and the lifeguard is wa looking at her now the lifeguard is trying to get the airplane and the now the giraffe is crying because the lifeguard can not get the airplane out of the water and now there is another uh elephant and she has a fish net and now she is trying to catch it with the fish net and she got it with the fish net and gave it to giraffe now giraffe is happy and um elephant is happy too,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +there is a bunny and i think there is a dog and the dog has made a sandcastle in the sandbox and the bunny looks has a shovel and he looks happy and now the bunny was helping the dog to make the rest of the sandcastle and then the then the bunny pours all of the sand over onto the sandcastle and now the b the bunny wrecked the whole sandcastle the dog does not seem that uh mad and then now he looks at it now again,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and uh he is really mad and the bunny is just standing there looking kind of sad and mad too uh there is the bunny and the dog again and the bunny and the dog are going for a picnic the bunny is sitting by the dog and they are eating and the bunny has lots of food around him and now the bunny is really stuffed and the dog is still eating nicely and the dog is eating,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +and the bunny looks kind of uh really um full so now the dog is running to a parent that is walking down the road and brought the the other bunny to uh the little bunny that ate too much and now the bunny the big bunny is looking at the little bunny and now the little bunny is all better now there is the dog and the bunny again and the bunny is ru are running down the roa the s sidewalk and the dog has a a little cart with a balloon tied to it now the bunny is looking at the balloon that is tied to the cart and now the the dog is looking at the bunny and the bunny is trying to take off the balloon,0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and the bunny took off the balloon and now the balloon is sailing up in the sky and now the dog is really mad and the bunny is looking at at the balloon at the sky and now the bunny is walking down the s the sidewalk and the dog is looking at the bunny walking down and the bunny sees some balloons and the bunny sees the balloons with the man holding them and asks if she can buy one and they are they are five cents and the bunny is looking in his pockets because he does not have uh any money,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and now the both the dog and the bunny are looking at the balloons seeing if he will give them one and now the big bunny uh the little bunny is going to ask the big bunny and see if she has any money now they are asking the bunny little bunny is asking the big bunny if he can she can have a five cents to buy a balloon and so the big bunny gave the man five cents so that they can ha or ten cents so they can have two balloons and now each of them have two has a balloon the giraffe and the elephant are playing in the water and they are bouncing a ball the elephant is and the elephant is out of the water and so is the giraffe but she bounces it too hard,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +and it land in the water and the giraffe tries to get it to jump in and get it but it looks like it is hard for him to get it but then he got it and then he swam to the elephant and the elephant got it and then the giraffe got out of the water and the elephant took it from him the elephant and the giraffe are staring into the water and the elephant tries to run in the water tries she like she is on where she is on the ground,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +and then she tries to run in the water but then she slips and then she got a owie on her knee and she started to cry and then the giraffe called the lifeguard and the lifeguard help tried to help her was running over to her and the lifeguard got a bandaid and put it on her knee and then the lifeguard told her told her to bend her leg and then it felt better but then the lifeguard um showed the elephant that there was a sign that said no running,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 +and then she had to sit on the bench the elephant and the giraffe are um laughing together and the giraffe has a toy airplane in the swimming pool and then the giraffe plays with it and flies it in the air but then the elephant grabbed it away from him and started to playing with it but then she dropped it and it fell in the water and then the giraffe got really mad and the lifeguard came over and looked at the airplane and was shocked and the elephant said it was an accident,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +but then the so the lifeguard bent down and tried to get it but he was too short and then the giraffe started crying and then the elephant looked shy like kind of like she is sorry and the lifeguard did not know what to say but then a girl walked over one of the lifeguards walked over and grabbed the net and grabbed the airplane with the net and then the giraffe started stopped crying and then the lifeguard was happy and then the elephant did not know what to say and then the and then the lifeguard picked up the airplane and gave it to the giraffe,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the gir and the elephant was happy and the giraffe was very happy a dog and a a dog and a bunny uh well first the dog is playing in the sand with a shovel and then the bunny comes along with his shovel and the dog is just done his castle and the bunny is putting some sand in his sand bucket and then the bunny pours all of the sand on the castle and and then the bunny instead of the dog getting mad the bunny gets mad and then the dog starts to cry,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 +a bunny is w the bunny is w walking down the road with his basket and a dog waves at the bunny with his basket and the dog takes out his sandwich and the bunny takes out her big meal that she has in her basket and then the bunny eats it all and then you can see garbage all over the mat and then the dog is just eating a sandwich and then the bunny feels a bit sick and the dog is shocked so the dog runs down the road to the bunny is granny and tells her,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the granny um well the dog is pulling the granny towards the bunny and the the granny fix like helps the bunny and then they walk home happily together the bun first the dog has a wagon with a balloon tied on it and the bunny is walking down the road waving at the dog and then the bunny says that is a nice balloon that you have and then the bunny tries to tie it off the wagon but then he did tie it off and then it floated up in the air the dog and the dog got really mad,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and he got so but he did not have to be mad for long because he saw a balloon carrier and the bunny was walking towards him and the bunny asked how many how much are those balloons and um the salesman said they are five cents each but the bunny did not have enough money he did not have any money and then the bunny and the dog just standed there and went gave a sad face and then the bunny walked toward this girl on the street and asked if i can get a balloon and then the girl gave her fi gave him five cent ten cents for two balloons and they both had the balloon and were very happy,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +there is a giraffe and an elephant shall i turn the page okay then then there was a ball in the water then the giraffe went to get it then the giraffe got the ball for the elephant and he was playing with it the end they wanted to go on the on the jumping thing and the elephant one want to go on it,0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +then the elephant tripped then he got a owie then the lifeguard came he put a bandaid on it and they and he took it took him to the bench i do not know it there is a giraffe and an elephant the giraffe has an airplane then the elephant took it then it fell in the water,0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +then the giraffe was mad at the elephant do not know it looked like it was sinking but the lifeguard was trying to get it i do not know and the lifeguard got a net and he fished it out and he gave it back to the giraffe do not know there is two rabbits that are going to make a castle,0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +they are making one he dumped ah sand on it then it broke and and they were going to build it again the end there are two rabbits that are going picnicking they brought food to eat they ate all the food one of the rabbits are really fat then t a doctor came,0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +then one of the rabbits are pulling him and then he was checking his temperature then the doctor took one of the r rabbits the end there are two rabbits that have one balloon okay anything on this page no then they took it off then it went up in the sky then it was up high,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 1 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +there was a rabbit had lots of balloons and one of the rabbits asked him if he can have one it costs five cents nothing here okay and there was a rabbit coming then he asked the rabbit if he can have money for a balloon then he then he gave the bunny gave him the money then they each got one the end a donkey thing and an elephant are playing with their ball playing basketball,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 +um the they shoot it and the ball falls into the pool that they were standing by the donkey goes in and gets it out of the water he brings it back to the elephant and the elephant is happy the elephant falls in love with him they are going to go swimming the elephant goes to run to the diving board she slips and falls and hurts herself she is bleeding because she has a cut on her knee,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +um the donkey thing goes to get the lifeguard they put a bandaid on she is okay he points to the sign that says no running and she gets um embarrassed um they are going to play with this plane near the swimming pool he is flying around with it and she wants a turn she so she grabs it from him and starts playing with it it falls into the water,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and they can not get it out he gets mad at the elephant then they call the lifeguard and then the lifeguard is looking at it the lifeguard can not reach it he still tries to reach but he still can not reach it it is sinking and the ele donkey thing is crying and the elephant feels sorry,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +and the lifeguard says he can not do anything then the other lifeguard comes with a net and she fishes it out with the net and then she gives it back to him and he is happy and then they are both happy the two little kids and then they play with the airplane again the rabbit and the dog are playing in the sand they are building a sandcastle he pours too much sand on the sandcastle,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 +he wrecks it um the bunny and the dog are going to go and have a picnic they are having a picnic and he is eating everything he ate all unhealthy stuff and only like a few carrots and stuff that is healthy he gets sick the dog goes to get a medic the me the medic um helps him and he is sick so she is going to cure him,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 +and then he take she takes her like to the doctors office place and then she is going to um make him better um the the dog and the bunny are going to go and play with their balloon th the bunny takes the balloon off the wagon he ties it off and then the dog does not want it him to it goes up in the air and they can not get it the dog gets mad at him uh they go to buy another balloon,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 +they pick one but it is five cents and they do not have any money sss and they both do not have any money so they are thinking what to do um they so so they go to their mom and she is going to give them money um she is gonna gi she is getting her money out of her pockets to give to them she gives it to them and they can buy two balloons then they are both happy,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 +there is a guy gi uh have candy and he is selling it and he give and it one dropped into the water and he swims for it and he pulls um um he gots it the other guy gots it and he get um and he get and does not he does not give it to him the end the guy is going to jump into the water the guy um runs and runs and the guy the other guy he slips,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and he falls down and he cries and he and he has a booboo and he puts a bandaid on it and he carries him puts him on the bench the end the guy is looking at him and he has a airplane and then the other guy takes the airplane and plays with it,0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +and then it falls o it falls into the water and then the other guy gets mad at him and the other guy gets m um the other guy there is two guys standing getting mad and the other guy ge um um gets scared and the other guy chases it into the water an and the other guy cries and the other guy has a net and the other guy takes it out of the pool and then he gives it back and then he he likes him,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 +the end there is a there is a bunny rabbit um um gonna make a there is a bunny rabbit who made a sandcastle and they are both of them are making a sandcastle and they are they are pour they are pouring it on on the guy somebody is pouring it on and he is breaking it and the other one gets mad no not mad i forgot it breaks and they make another one the end,0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 1 0 1,0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 1 0 0 0 0 1 0 1 +they have both baskets the bunny rabbits has baskets and they gr they are having a picnic and then the other one eats all of his and then the other one du um has uh juice and then the other one is wa um somebody is walking and somebody is pulling somebodys shirt and somebody gets mad somebody brings somebody home the end,0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 1,0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 1 +there is a guy having a balloon in his wagon and the other one is walking and he w and he is trying to take it off and then he en unwraps it a little bit off and then it flies away and then it float he wrap um the um the string falls down why does your boss does your boss let you look at these pages she says while your doing them i am not supposed to so i am not so you can see them go ahead the guy has balloons in his hand and the and the other one buys one,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and then he and then he sh then he checks in his pocket for money and he does not have money he checks it for money and he can not get one and and he was allowed to ah the other one is the uh there was a man heh uh selling balloons and then he gives one to him and the other one has a balloon and the other one has a balloon the end a elephant is going to his friend,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 +he is saying what is there what is in there orange he said the the orange fall down in the water and then the his friend he he falled in the water he was trying to get the orange and then and then the elephant got the thing out and then the elephant got the orange out and then he walked and then he walked his and then he walked to his home the end um the the elephant and the friend he was going to the pool they were going to jump into the pool really fast,0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 1 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and they are going to jump into where the sides are and they and the his friend hurt his leg he hurt his leg and that hurts really bad um his f his um his brother came and he and so he and he seed what happened and he gave him a bandaid and then it hur and then he went home they were going to play pool again and then there and then he was driving airplane,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and then the his friend was driving a driving driving a airplane and playing again they are playing again they were going to jump i and the airplane got in the water okay and then he was trying to and then he was very mad and then his friend and then his sister went over to that girl t um the sister went over to the brother and then he and then the brother came over her and then and then he sawed what happened and then he is trying to get it and then he he did not know how to get it,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +he tried he picked that and then he tried to get it hey look look behind here um the boy has girl hair the the girl was pretty then he tried to get it and she trying to get that um airplane and then he tr and then he got it and he was very happy,0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 +and then h and then the elephant was very happy too the end i see a bunny that is in the s um i see a dog that is in the sandbox and helping the bunny and the bunny and the bunny is making a sandcastle they are trying to make a sandcastle and he is helping and he is helping the dog and uh um the rabbit broke the doggys castle and then he was making it all over again the end um the bunny was going for a picnic,0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 1 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 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 +he was following the dog and then they were there already they were playing in the sandbox with a picnic and then he burped and then he burped and then he was eating all th and then the dog was eating all the other thing he was eating one at a time and then he was and then he sawed then the dog he was laying down and then he was sleeping he was kind of asleep but he did not,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 +and then and then he was turned into a doctor then he was turned into a doctor and he had and he had doctor things and and a doctor came and then he went with the doctor and then he tooked him to the doctor where the doctor thing is and then he laid down with a blankie went to sleep and then and then the doctor came to a different to a different man but it was not that man he was so he was so tall,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 1 +and he was trying to help the man and then he w and then the doctor came with this with the bunny he was going to the doctor the end they are going to the um circus and then the bunny was c the bunny came with him and he had and he had a balloon and then he w and then he was trying to get the balloon and he was following him and then he took it off,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +and then it po and then it was gone and they were trying to get it get get get it back and then he was very mad and then he said i am sorry and then he had a whole bunch of balloons and then he wanted and then he wanted m and then he was going to get one and then he wanted one and then he had some dollars and he was then he was going to buy one and then he gots no money,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and then he could not buy one and then he was and then the doctor help him help him and then he gave him some money and then and then he wanted the balloon and then um he got a balloon for him he gave him some money and then he got a balloon and they wan and they liked and they liked it and then they said and then they said thank you the end,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 1 0 1 +an elephant meets a horse then the elephants ball bounces in the water the horse swims to get it the horse got the ball the elephant was happy the end an elephant and a horse wanted to go on a diving board the elephant says let us go on the diving board the elephant slips and scrapes her knee then the elephants father comes and puts a bandaid on it,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and the father said that bandaid will make sure it does not hurt the father says no running an elephant met a horse who has a toy plane the plane f he the horse pretend it pretend it flies then the elephant wants to try then the elephant threw it into the water it was sinking and the horse was mad and the elephants father came and the elephant said i threw that plane into the water by an accident,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and it is the horses the elephants dad could not reach it because it was too far and the horse was crying then a lady came and had a net and caught it with and almost caught it with the net and she got it with the net and gave it to the horse the horse was happy a dog and a bunny are making a sandcastle they needed thick sand but the sand was too light so it fell on the castle,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 +now the castle is nothing but they could see part of the castle a bunny and a dog are going for a walk they have a picnic the bunny gets too full he the bunny gots a stomachache the dog runs to the doctor the dog pulls the doctor to the bunny the doctor said he has a stomachache then the bunnys mom came,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +a dog is pulling a wagon with a balloon the bunny says if you let go it will fly up to the sky the dog says no do not do that the balloon flied up to the sky the doggy gets mad then a man comes by with who was selling balloons the bunny picked one of the balloons which was five cents and he did not have any money so he could not buy it his mom came,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 +and the bunny says i need a five cents to buy one of those balloons then the um mother w one give five cents cents to the man then they both got balloons the end the elephant and the giraffe were playing with a ball the ball went in the water the animal was swim and got it the elephant got her ball back the elephant uh the um they were happy they were at the water pool,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 1 +the elephant was pointing at the jump board the elephant slipped the elephant got a owee the safety guard ran the safety guard put a bandaid on her she sat down the safety guard got mad at her no running they were going to play with a airplane the animal was playing with it uh the airplane,0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 +the elephant took the airplane the plane went in the water the animal got mad at her the safety guard was coming to check he the elephant said the airplane is in the water the safety guard tried to get it they could not get it a big elephant with a catcher got it she pulled it out the animals airplane was back,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 1 +they were both happy they were going to make a sandcastle the rabbit puts sand in the bucket he dumped it on the castle the sandcastle broke the dog cried they were going to go for a picnic they took their stuff out bunny ate fast what is that,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 1,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 1 +bunny ate fast he got a sore tummy he was calling the doctor the pup dragged the doctor over there you ate too you ate fast said the doctor the doctor took him with him took him wi the bunny with him bunny was coming to look at the balloon the bunny said wow the bunny untied it it flew away,0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 1,0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 0 0 1 +dog was mad they were going to buy a new one they did not have no change actually they did not have five cents they could not buy one there was a doctor the doctor gave them twenty five cents for two balloons they got their balloon they were happy one day there was a elephant bouncing a ball,0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 +it went into the water the zebra jumped in and ge gets the ball and zebra gives it back to elephant the lady smiles and the giraffe smiles one day they are both laughing and they wanted to go on the board the the elephant said to the giraffe let us go on the board and the elephant slips and he gets a booboo,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 +then another el elephant comes running and look at the booboo and he puts a bandage on and now she go she is surprised no running allowed the the other elephant says one day the giraffe had a airplane in his hand he was flying it elephant took it away from him and she dropped it into the pool the giraffe got angry at the elephant but the guy came running,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +and he sees the plane in the water the elephant said it was not me that brought it the other elephant tried to reach it then the l then the giraffe was crying i know a way to get the plane out she put in her thing and got the airplane she is she handed the the airplane to the giraffe and the giraffe hugged it one day rabbit wanted to play in the sand and so did the dog,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +the dog was going to touch it and the rabbit was filling up his bucket rabbit dumps sand on it the dog saw and and the rabbit was horrified the dog tried to fix it one day dog met rabbit and they both wanted to have a picnic rabbit ate and ate rabbit got a stomachache,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 +and the dog was eating he got sick the dog came running to a doctor he said wait a minute what is this problem about it is about him and he is sick the doctor takes him for a walk one day a dog was taking a b wrapped a balloon on her wagon the bunny sees the balloon,0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 1 0 0 1 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +he ties it off he let go and it was floating away and the dog was mad at the rabbit and the rabbit sees balloons a balloons were holded by an old rabbit it is worth five cents you cannot have a balloon if you do not have any money rabbit goes to the doctor we want a balloon,0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1,0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 +she paid two two ff nickeles and now they both got balloons um a giraffe and a elephant were friends and they were playing ta with each other and then their ball went in the water and the giraffe went to try and swim for the ball and the giraffe got it and gave it to the elephant and the giraffe was soaking wet um once there was a elephant and giraffe and they wen were friends,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 +and they went to a swimming pool together and the elephant was going to jump in and she and before she jumped in um for some reason she must have forgot something she went she ran very fast with no running allowed the elephant fell down and hurt her knee she was crying and looking at the pain she is crying even more and not looking at the pain then she sat down on the bench and the lifeguard gave her a bandaid and the lifeguard said no running allowed,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 1 +the elephant and the giraffe went to the swimming pool and they and the giraffe brought a swimming toy with him and and he was playing it and the elephant was just like stare on it on at it like crazy the the elephant grabbed it from the giraffe it looked so neat and then she dropped it in the water the giraffe got very mad at the elephant the lifeguard came and looked at it and and came closer to the elephant and the elephant was ex trying to explain how it happened,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and the lifeguard was listening very carefully the lifeguard tried to get it but he could not the giraffe was crying the both the lifeguard and the elephant were was just kind of staring at it then a girl with a net came and the and they was sup they were like and the girl with the net was pull get trying to get the airplane with her net and she got it for the giraffe the giraffe was hugging it,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +once there was a bunny and dog and and and they were friends the dog was making a sandcastle then the bunny was about to come in with a shovel and he came in and throwed a bucket of sand the bunny dumped it onto the ca sandcastle dog was kind of sad it bro i think it broke her castle she was crying there was a dog and a bunny,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 +they were friends and they were going to go to a picnic with each other um the the dog was taking everything out of her picnic basket but the bunny was just eating everything she took out the the bunny was very full and the dog was hardly even eat ate everything the bunny was fat and then the dog was about to drink a little bit of her juice and the bunny had a tummyache then a grownup bunny came along,0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 +and the and the dog was racing to her and it was like please please please and the lady was like you eat too to eat you bunny and the bunny and the grownup bunny just just went along with each other the bunny and the dog were the the bunny was running to the dog and the dog was just going her wagon in front of her with her balloon and the bunny liked the balloon he was about to pull it off and the bunny was untying it and the bunny was like the the dog was like,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 +and then the bunny untied it and the the balloon floated away they were trying to reach to get it the dog got mad at the bunny un until when the string was just left and then a bunny with balloon lots of lots of balloons came and he said come here come here the bunny and the the man with the balloons came and the bunny was like and the big bunny with the balloons was like which one do you want that one that one the little bunny was like,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 1 0 0 0 0 1 +this this one you can not have this one and then the bunny and the dog was sad and then the the same lady with the other book came and the and the bunny was running to her and the dog was just staying with the bunny with the balloons and and the dog still had her wagon and the and the grown up b girl bunny was the kid bunny was saying to the grown up girl bunny can we get one of those balloons can we get one of those balloons for the dog and the and the and she paid for it,0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and they each got a balloon two different animals were the swimming pool they wanted to play dodgeball in the water water dodgeball the ball got in the water and the an giraffe was going to get it so huh hm while he was swimming water came out of his mouth and he was all drippy then giggled he the ele the elephant watched when they were at a swimming pool the elephant wanted in the dive the diving board,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and there she wanted to run toward she wanted to race towards it but there was a sign that said no running she runned towards here the giraffe never runned and they huh and the elephant slipped and slipped and fall down and hurt her knee lifeguard came running she got a bandaid on it elephant sized bandaid and h bit better and the lifeguard said next time look at the sign they were at the swimming pool,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 +and the huh giraffe huh is throwing air huh super duper flying jet plane he wanted to fly it but elephant wanted to fly it into the water see if it could land on its gear but it w it was starting to sink then the giraffe got angry at her because of the plane in the water and a lifeguard huh s looked at them what is going on and they said the my friend s his super duper jet plane is in the swimming pool it is sinking he try to get it,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 +but he could not reach it it was starting to sink more cried then they s he who is there to swim he got something was all that looked like a big fishing net he got it out huh he got it and he tooked it out and starting stop crying then to the giraffe and got happy he hugged his plane like it was a lost memory hm there were two moles at the sandbox,0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 +one was building a sandcastle and one was building a pail one the bunny when he was done filling it up and patting it down he put it right over the the sandcastle went oh no doggy got sad bunny just whistled the animals going out for a picnic in the woods they found the perfect spot they started chowing down the doggy ate s sandwich and juice,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 +and the bunny got just a tummyache then him drinked his juice and ate a biscuit and the bunny got a sicker the bunny fainted then got there him want to get him to come he got a big tummyache he was going dizzy hm pic picnic was all gone the we bunny went back home,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 +one animal had a balloon and the bunny was coming towards this him he say cool balloon he untied the balloon did not know it would float up it went really high they could not get it and the balloon was gone the doggy got angry then there was a balloon saler,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 +he wanted one of the balloons to get to for his friend but he was broke s so decided to get someone who had money the bunny went to get the doctor she had lots of money huh to get a balloon then two balloons for each of them and they were pretty having fun and laughing an elephant was playing with a ball and a giraffe came to play with it um and the elephant threw the ball into the pool,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and then they got scared that it would sink the giraffe tried swimming to get it but he could not get it and h um but he got it and he gave the ball back to the elephant and the elephant was happy to see the ball again the elephant and the giraffe seen a diving board and the elephant said and the elephant started running and the sign said no running and then the giraffe tried to catch the elephant,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 +but the elephant hurt herself and she had a cut and she got a bandaid and she felt better and the lifeguard got mad at her because the sign said no running the giraffe had a toy airplane and the elephant wanted to play with it the giraffe started flying it and then the elephant took it from him and started flying it and then it sunk underwater,0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and the giraffe got mad at the elephant but the lifeguard went to get it and it was still floating in the pool and then he tried getting it from the outside of the pool and he could not reach it and then someone else came with a fishing net and got it out of the pool and gave it back to the giraffe and he was happy again a rabbit and a dog were playing in the sand they made a sandcastle the rabbit broke the sandcastle,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 +and the rabbit got mad and the dog started crying the rabbit and the dog went for a picnic the rabbit had more stuff to eat than the dog the rabbit got really really full and then the rabbit had a stomachache the dog ran to the rabbits mom the dog and and she went to see the rabbit um and the she was a doctor,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +um the rabbit felt better and he went home the dog was with his wagon and his balloon and the rabbit wanted the balloon the rabbit untied the balloon and took it then the balloon flew up in the air and the dog got mad and there was a rabbit holding a lot of balloons and the little rabbit bought a balloon hm and the little rabbit could not buy the balloon because it was five cents,0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the dog saw the balloons and the little rabbit went to get some money from the doctor and the rabbit told the doctor that he did not have any money and she bought the balloon and the little rabbit and the dog had balloons there was this old giraffe and elephant was playing by by the pool with some bouncy balls and the giraffe came up and said can i play then he bumped the ball and then it went into the pool,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 +then the giraffe swam swam and there was water came out of his ears and the elephant could not look then the giraffe gave it to the elephant and she was happy then he smiled and she smiled the end there was these two elephants the giraffe and the elephant and there was a diving board,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and the sign said no running and the elephant ran and ran and they almost slipped then she slipped and then the giraffe ran after her and then the elephant hurt herself on the knee and the giraffe looked at the sign no running and she sa and the giraffe said no running and the lifeguard came and sh sh the lifeguard put a bandaid on,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 +and she was still crying and the lifeguard helped her up and handed her to the giraffe and the lifeguard said no running the end and she got up and she was all better and he flew his airplane and he flew it and slobber came out and the gir elephant looked at the airplane,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 +and she got dizzy then she took it and flew it and the giraffe said uh then it went into the water and the giraffe got really mad at the elephant and the lifeguard came again and he looked at the elephant and there was a airplane in the water and he tried to reach it but he could not,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1,0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and and the giraffe started to cry and another lifeguard came and brought this net and she tried to get it and she did and she handed it back to the giraffe then the giraffe and the elephant was so happy the end there are these two bunny rabbits playing in the sand they made a castle and they are laughing,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 +they starting to fix it and building new stuff the boy rabbit dumped sand on the castle sh and the a little part of the castle is showing and now it is only sand now they are trying to build it back together the end they are these two rabbits walking down the in the forest they walked and walked they met each other and they started to have a picnic with every bo and with every with that girl,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the boy rabbit ate everything up and he was full then the girl rabbit looked at the boy rabbit and the boy rabbit did not feel so good and then there was a doctor came and the girl went to get hi her and she pulled and she pulled and they finally got there and she was checking if he was all right,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +then the doctor took him and the girl stayed there they saw these two rabbits walking down the woods again and one had a wagon and a balloon and the boy jogged and jogged and they looked at the balloon and the boy rabbit untied it and he tied it and it flew up up and away and the girl rabbit got so mad,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +there was another balloons and the girl ma rabbit was still mad and the boy asked the man a question and then the girl was coming over and the man said the balloons were five cents and the girl looked at there and the man smiled oh again there was the doctor again and sh the boy talked to the rabbit and said my sister is mad because i lost her balloon the girl is mad,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 +here is five cents and here are two balloons he said they were so happy the end a giraffe and an elephant are bou the elephant is bouncing a ball and they are by the pool the ball falls into the pool the giraffe swims to get it um the giraffe gives the ball back to the elephant,0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +she thanks the giraffe the elephant and the giraffe are going to the pool the elephant is pointing to the diving board she she is running so she slips she hurts her knee the lifeguard comes to see what happened the lifeguard puts a bandaid on it she the elephant sits on the bench and she smiles at the lifeguard when he points at the no running sign the elephant and the giraffe go to the pool again,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +the giraffe brings an airplane that he is trying to fly and the elephant is just looking at it then the elephant takes it away from the giraffe and she drops it into the water the giraffe gets mad at her the lifeguard comes and see what is happening the elephant is trying to explain what happened the lifeguard tries to reach it and he can not reach it and the elephant and the giraffe starts crying,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +then another elephant comes with a um net and puts the net in the water and tries to get the airplane and she gets it out and the giraffe is happy again um two people two um animals are in the sandbox they are building a sandcastle one of them is dumping sand over the castle the sandcastle breaks because all of the sand and one of the animals gets sad two animals are going on a picnic they bring lots of food,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +and one of them is drooling over it one of them eats it all up and he gets a tomach stomachache and the doctor comes to see what is wrong with him she she one of the animals is dragging her she is she she comes and see what sees what is wrong and she helps him two animals one animal comes to see the other animal one animal looks at the balloon that she has,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +she is he is taking it off of the wagon and it flies away then one of them gets really mad then they see the balloon man and he probably goes to buy her another one and she asks for one balloon and the balloons are five cents and he is looking in his pockets and he is sad because he does not have five cents and then the doctor is just looking at the view,0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and he goes and asks for five cents and she gives the balloon man five cents and then they both get balloons an elephant is playing ball with a ball and then a giraffe is just looking at looking at the elephant like wow and the now the the elephant was bouncing it and it fell into the water and now the elephant is sad so looks like the giraffe is going to go get it and now the giraffe jumps in and is swimming to get the balloon the ball,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and so now she got it for the elephant and the elephant is helping him out and now the elephant is happy and the giraffe is happy too um hm um they are standing in front of a pool the giraffe and the elephant and looks like they could be feel like swimming that is all and now the elephant sees the diving board and the elephant wants to go diving into the pool and the elephant is running to go get to the diving board,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +and the giraffe is running after her and then she fell and hurt her knee and looks like she is going to cry and the giraffe is running to help her and then the lifeguard comes and is helping her and the giraffe is helping her too and now she is crying and the lifeguard is putting a bandaid on her leg and now the the lifeguard is carrying her to a bench and the hiraff the giraffe is helping her,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and the lifeguard is mad and is say and is telling her look at the sign it says no running on it and the giraffe and and the um the elephant looks like he is looks like she never i dont know i can not i dont know what she is doing let us see like hm like he is going to get very mad at her now the giraffe has a little airplane and the elephant wants to play with it too and now the giraffe is trying to make it move and the elephant is looking at it like wow and now it is the elephants turn and the elephant is trying to fly it now and now the giraffe is looking at his plane because the plane fell into the wa swimming pool,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 1 0 0 1 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 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and now the giraffe is mad at the elephant because his airplane is sinking into the water now the lifeguard looking at them and they are looking back at him now she is trying to the elephant is trying to explain to the lifeguard that the plane fell in and is asking if they can he can get it out for them and the lifeguard is trying is on his knees trying to ah get it out of the water and both of them are looking at him and the lifeguard looks like he is using all his might and now the lifeguard could not get it and the elephant s felt sad and so did the giraffe,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 +now a lady comes and she has a little net she said she would get it for them the airplane and now she is using all her might and looks like she got it and then she got it out for the li for the giraffe and the giraffe was happy and now the elephant and the giraffe are both are both happy again um two a bunny in the sandbox making a castle and another one is out on the outside going to come in and then now they are both making a bigger and bigger one,0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +and that is all that is all i can see and then one of the bunnies is pouring so much sand on and the other one is i think it is scared or something and now the sand now the sandcastle was broken and the other one just looked normal and now she is trying and trying to make a b another one because it is all broken two bunnies are walking along in maybe a forest or something and they are holding a picnic basket two picnic baskets and now they are having a picnic and all and they are eating,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 +actually one of them is eating with all the food and the other one is just sitting there with his sandwich in his hand and now they are both eating and now one of themis eating and the other one has a stomachache and the other one really does not know what to do because he has a stomachache and he and he is getting dizzy and then a doctor was walking along and the other one came and told the doctor that he was that he had a stomachache and so now she is pulling the doctor to come and get the person the rabbit actually,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and now the doctor is operating on the guy little bunny now the little bunny is fine and he is going home with the doctor and the other one is sitting by the sand box thing or whatever the big picnic picnic thing now the two bunnies are walking along and one of them is pulling a wagon that has a balloon attached to it and now the other bunny never noticed the um balloon and is looking at the balloon and pointing at it pretty funny now the the bunny is trying to untie the balloon and the other one is looks kind of scared,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and the balloon flew away and they are both hopping and trying to get it to catch it and the balloon gone and one of them look is just looking up and the other one is very mad now the other one sees a man selling balloons and then so he is walking along k to get a balloon for the one he made fly away now he is say he is saying to the thing the man can i have a balloon looks like it and now he got now he did not have any money for the balloons,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and li and uh the guy said it is only five cents for a balloon and then hm he looks um he looks weird now they are both looking at the guy and the guy looking down at them while he is holding the balloons and now she is running to one of the rabbit guys are running to the doctor that they saw before and the doctor there she is running to the doctor maybe to get some money and now she is he is um showing the bunny what he needs what she wants and now she is paying for it and both of the kids are happy and now they both got a balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and they are happy and the doctor is happy too it is over there was a um elephant that had a ball and um a giraffe wanted to play with the balaloo the ball too but the balloon accidentally gotinto the w into the swimming pool and and the elephant was very worried that it would it would it might sink and then the cow the giraffe came over to s to get it swim after it to get it and then he got it and he gave it to the elephant so she could play with it with him,0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the elephant and the giraffe came came to be friends and also they wan and they also played t with the ball together the end there was an elephant and um a g gir giraffe and the elephant ran over to the diving board and then she accidentally slipped then she and then then the giraffe came running after to see if the elephant was okay and then and then then the elephant started to cry because it really hurt she scraped her knee then the lifeguard came running over and said do not cry,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 +i will help and then he put on a bandaid on her on her scraped knee and then then she stopped crying and then the lifeguard helped her get onto the the bench so she could go over and rest her knee for awhile and then she can go back swimming and then she did not then the lifeguard said you must look at the signs that say no running or no doing anything just in case there was something slippery or you can not go on the diving board the end there was a giraffe that had an airplane and he really like it lots,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 1 +and then an elephant wanted to play with it and then he started playing with it even more and then the elephant wanted to play with it then the elephant grabbed it from the from the giraffe and then he was very angry and then it fell into the water and then they could not get it so they so they did not know what to do and then giraffe got very very angry at the elephant and then the lifeguard came over and and said what is the problem,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 +and elephant explained i grabbed the the toy airplane from the giraffe and then i accidentally threw it into the water and then the lifeguard tried reaching for it but he could not get it then the giraffe started to cry about he liked it then somebody came over with a net so they could get it then she reached over and got it for them then he got it back and he really really liked it again and then the elephant really really wanted to play with it,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +but the giraffe was too busy playing with it the end there was a bunny and dog they wanted to build a sandcastle together and then the bunny took too much sand and then he dumped it onto the castle but the castle got ruined accidentally accidentally and then the dog was sad because her castle got knocked down the end there was a dog and a bunny,0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 +they wanted to have a picnic together and they each took out all of their stuff from their baskets and ate and they ate and ate and ate until the bunny got so full he wa he felt like he was sick and then the puppy dog went to go and get doctor somebody who could help and then and then the doctor came over and helped the dog and the bunny and the bun and the doctor helped the bunny be all right again and then the bunny got taken someplace where he could be all right the end there was a dog that had a balloon hooked up onto her little wagon then the bunny wanted to have the balloon,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and so the dog let the bunny look at the balloon and then the bunny untied the balloon and then he lost the balloon but then the dog very an very sad then the dog get got very angry at the bunny and then they saw a a s a person that was selling some balloons an and then they came over to him and said can i please have another balloon a balloon but the rabbit but the little rabbit came over and said can i please have a balloon but the person said no you need some money and then he and then he showed him how much money he n how mu how much money he needed for a balloon,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +i and it was quite a bit and he did not even have any money so they could not get another balloon for the little dog and they and they were very sad and then they came over to a doctor and and the little bunny said can can you please help us get a balloon and then the doctor said all right i will get you a balloon and the and the doctor gave the the person um as much money as as they needed and then they enjoyed their balloons again,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +the end there was an elephant playing with a ball near the pool and the and a gira and a giraffe came wanted to play too the ball fell right into the pool the giraffe swam right towards w jumped into the pool and went to go get the ball the giraffe got the ball for the eleph baby for the elephant and the elephant likes the giraffe that is all the elephant and the giraffe wanted to go swimming the elephant was going on the diving board,0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +the elephant was running then she slipped she h cut her knee the lifeguard came the lifeguard put a bandaid on the lifeguard put the the elephant on on a b the bench w and the lifeguard pointed to the sign that said no running the giraffe was playing with his toy plane h um he did loops and stuff with his plane the elephant grabbed it,0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 +and it landed in the pool the giraffe was very mad the lifeguard came to s to see what the problem was h he uh the lil the little elephant told everything what happened the lifeguard tried to get the air the plane but he could not reach it then then a then an elephant with a net came the elephant with the net scooped out the plane and gave it back to the giraffe and he was happy again there is a little bun a bunny and a th and a dog,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +they are going to play in the sandbox the dog was building a sandcastle and the wa the rabbit was putting sand in a bucket he the rabbit dump dumped the sand on the sandcastles the rabbit and the do the ra the rabbit was like what happened and and the dog was trying to rebi and the little dog tried to rebuild it the little dog and the rabbit they saw were going for a picnic uh uh the the dog had a sandwich and the rabbit had carrots sandwich cake chi he had all kinds of st stuff,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 +then he then all his food was gone then he felt sick the dog ran to get a doctor sh the dog showed where the doctor where where they were having the picnic the do the doctor they were saying ah with his stick and i think that is what he did then he felt all better the little dog was pulling a wagon with a balloon the ra and the rabbit came along the rabbit saw the balloon on the wagon tied to the wagon,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +the rabbit untied the balloon the balloon floated away the dog was very mad the rabbit ran to a balloon man the rabbit wanted a balloon h he he had no money so they so they were very sad then the do then the doctor was walking along and the rabbit went to ask for some m went to ask for some money sh sh he told the the rabbit told the doctor everything,0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 +the ra the doctor gave money m money to the balloon man so they got the two balloons and now they were very ha and they were very happy uh he walks to a horsey and then the horsey fell falls down then the horsey fell in the water and then he gives the ball back to him and then they play with it and that is the end so um he goes in the sandbox with the elephant,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and then they walk in the into the sandbox and then they walk into the hill and then they laugh and then they got a scr and then elephant got a scrape and then he then he started to cry and then he he sat up and got a bandage bandage and he said are you okay the end um he found an airplane in the sandbox and then he and then the and then he flies it up in the sky,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then he stands up and then he stands up in the sandbox and then they br broke the airplane in the sandbox and they dropped it and then he he it was stuck in the sandbox forever and then it was more stucker and then a lifeguard came and get it and then he got it with his and he reached it with his arm and then they were sad the lifeguard got it for him and then the lifeguard poured on the net,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and he got it and then he said here you go and then he keeped it forever the end he the dog goes in the sandbox and then he starts making the sandcastle and then the rabbit spills on it and then he and then it is all gone it x up then it was all covered up,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +the end he goes looking at his favourite friend then he goes and stickes out his tongue then he had a drink and then he lies down in the sun and then he walks away then he pulls on his shirt and then he and then he talks to him and then they walk away he comes along with a balloon with with his wagon,0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +then he comes and then he walks with him then they stopped and walked in the snow then they lose the balloon and then they stop and get angry then they walk away and saw a man with balloons then they said to him balloon and then he gives him one and then they walk away and then they think the rabbit the big rabbit,0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and then they walk to his mom then they walk to their mom and then he comes and walk to the lady and then he comes and then he gets a ba another balloons balloons the end a horse a giraffe and an elephant were bouncing a ball the ball in the pool and the giraffe was scared then the giraffe um went in and swam and got the ball out then the elephant was happy,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and the giraffe was all wet and they were both happy the giraffe wa was scared to go in the water again so the elephant went in and she saw a diving board and she decided to go on the diving board and jump and then the giraffe said maybe that is a good idea the elephant went slipped and fell and the giraffe was running to the diving board the elephant hurt her her knee,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and the giraffe was scared so the giraffe helped the elephant the lifeguard came and saw the giraffe um was taking care of the elephant the lifeguard put on a bandaid it did not hurt any more so the giraffe did not look scared any more and the lifeguard was happy and then the other elephant the lifeguard looked at a sign and it said no running the giraffe and the elephant were happy,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 +so they decided maybe we could fly a the giraffe decided maybe he could fly the airplane in the water and then got and then the elephant could dive down and get it and then the giraffe would throw it again into the water and the elephant would keep on getting it then it then it was then it was wanted real crazy so the elephant let him the giraffe would make made a tongue the elephant grabbed it from the giraffe and the elephant looked and the giraffe looked scared and the elephant looked happy,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 +the elephant threw it and it went in the water and the elephant looked scared and the giraffe did not know what to do the giraffe got mad at the elephant and the elephant got sad the lifeguard got mad again and they both got and they both did not know that again so the lifeguard looked nervous because the elephant looked scared and the giraffe was sad,0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +lifeguard was going to get it so the lifeguard was trying to get it and the giraffe and the elephant looked nervous the giraffe started crying and the elephant was sad and the lifeguard was nervous oh then another elephant came with a net to get it out of the water so the they could have it back again and he tried to get it out but it mm it she tried tried a lot but it would not come out,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +then he got it out and they were happy then the giraffe was happy and the elephant was too a bunny and a dog were building a sandcastle the bunny got scared and the dog was nervous they made a sandcastle then they both were happy they poured and the rabbit poured sand over the dogs sandcastle,0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 +the sandcastle broke down and the rabbit was the sandcastle did not break down and the rabbit was nervo and the dog was nervous and then the dog um tried to build it up but he was crying and the bunny was nervous the dog and the and the bunny were collecting coconuts and berries and they saw each other and then they said hi to each other and then they were happy,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 +and and they and they had a picnic they went home first and then they went back to the spot they were going to have a picnic at and then the bunny ate a lot and the dog was nervous and then the bunny ate too much he got so fat and the dog um ate the rest the rabbit did not feel well and the dog was nervous,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 +so the dog called the doctor and the doctor came and then the dog told him that the rabbit ate too much so he did not feel well so the doc so the dog dragged the doctor there because the rabbit was not feeling well the doctor saw that the dog that the rabbit was not fee feeling very well so um the hh he he was scared and then he felt then the doctor made the rabbit feel better and the dog was happy the dog mm pulled the wagon with a balloon tied onto it,0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 +and the rabbit saw that the dog was pulling a wagon with a balloon on it the rabbit wanted the balloon and the dog looked nervous the rabbit tried taking off the balloon the dog looked scared the rabbit was sad because it when he got off the balloon it started floating away so they were both and then one um wen and the rabbit was sad and the dog was scared the rabbit was nervous nervous and the dog was mad,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 +there is a balloon man over there uh it it was going to another bunny hu him too can i have a and the and he said um can i have a balloon and the dog was way back there so the and the rabbit was up to get a balloon and then the guy the balloon man said balloons five cents so the rabbit checked in his pocket for any money but he did not have any the rabbit looked shy and the dog did not look shy,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 +and then the um man looked nervous the doctor was coming and the rabbit was running to the doctor and the balloon man was selling and the dog was nervous and then um he showed the doc the rabbit showed the doctor um that he wanted a balloon to buy to five cents to buy a balloon so he could have a balloon and the dog could have a balloon then he gave him five cents for each balloon and then the balloon man gave him two balloon and then they were were happy and the balloon man was happy,0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 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 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 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 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 +and the rabb the doctor was kind of nervous the doctor was real nervous and they were both real happy uh uh the the elephant and the zebra the the zebra were going playing ball and that was on this page and and then and and then um and then the ball falls in the water and then zebra goes in to to swim to it the and then the zebra brings it to the elephant and the elephant felled in love with the zebra fell in love with the what,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +zebra oh they went on the they are going to go on the diving board and then she goes running to the diving board then she slips and and hurts her knee gets a scrape on her knee and then the lifeguard comes to put a bandage on it and then she starts screaming and then she w and then she does not puts her leg up like it is broken then the lifeguard says no running the z the zebra finds a a plane,1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 1 +and the elephant said wow and then he starts flying it then elephant grabs it from the zebra and then then sh and then she started flying flying it and and and then she drops it into the water then it floats and starts sink sinking then the lifeguard comes s and then then the little boy zebra said can you get my plane and then and then the zebra said the elephant was flying it and then she dumped it into the water,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 +the elephant lifeguards arms tried to grab it but she he could not then the l then the lifguard gived her trouble a and the zebra was crying and then she go and then the and then the mom gets a net and s and grabs it out of the water and gets it for the little boy then the boy was happy and they started hugging it and it was done the end there is m they are ma they are making a sandcastle,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 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 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 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 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 1 +and then a friend came and then he dug he digged some sand and put it in a bucket while the other kid was making a sandcastle and then he dumps it on the sandcastle and then and then the rabbit was mad she uh the other one st and then the mouse starts crying the end they go for a picnic and the mouse and the rabbit goes for a picnic the rabbit starts eating loud and then the rabbit got fulled while while the mouse was eating lots of sandwiches and ju drinking juice and then the rabbit ate some more,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and then he had a and a and then he got sick then the doctor came to see the rabbit and the doctor was not then the and then the mouse was dragging the doctor and then the doctor see said s seem seen what is wrong uh and then he got all better they are going to the circus and the balloon pops he ties up another balloon then it flies away and then there is and then they can not move their wagon,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 +there there is a balloon man and the rabbit says i want one of those balloons um and he can not buy any because they are five cents and then he and then and then he and then he dumps his pockets out and he goes to go running to his dad to ask his dad for a balloon for his friend and the doc and then then then his dad sa says okay then they bought two balloons and then they pop them he said hi i love those rocks,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1,0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 1 +then that rock is falling and he that one is swimming and he gave that rock and he play and he can play with it now the end and uh b there was is elephant and this one he was jumping over an and they can run faster hm were you going to help turn yep,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 1,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 1 1 +okay he said i want to go run faster and jump over it and he said you are not big enough and he said oh yes i will she ran and and then slipped uh and he will say y ouch and that hurts he has a booboo and he tell his mom and then he still cry,1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1,1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 +then he sit on it and he could help and do not play on the rules on the the pools once upon a time there was the this one is re really sheal he he said i like your airplane he said thank you and then it flies and he will catch it and he catch an airplane it does not fly but suddenly he the airplane did not fly up,0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 +he looks so angry and then and he said what is the matter he said i was dropping it and and he take it and it falls down then why did you did that i did not do anything he said maybe i can get it and it is too hard maybe maybe i could try again,0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +i will catch it in that net he scoop it up and that airplane works and he is so happy the end a bunny l loves the dog and they shovel the and they and that dog build a castle and the castle and that bunny just well it will fall down the castle and that bunny he he melt them he did not do it,0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +they fix it up he waved at bunny and they eat some snacks and the rabbit is tummy is full and they got a tummyache he tell him he just look at it he just got a tummyache she really not feeling all better then she feels all better,0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 +he waved at the dog and he gets the balloon then he show at the balloon then she pull it up he did not she did and it go up and he was mad it she tell them and he look at the balloons and he said would you please get that balloon,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 +and this present number five and they love them and they tell him again and he said the balloon will not get it wo he will not get it back and they all had two balloons and last year they have a balloon the end the zebra was going to the zoo and the elephant wanted to come and show them his practice at the circus and then they saw something inside a water,0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +but the giraffe wanted to get that ball because the elephant dropped it and the elephant said thank you for getting it the elephant wanted to go swimming but it ran jumped into the pool and it hurt itself is that what is on this page the elephant ran then when it ran it just ran fast and then it um it fell down and it hurt its knee,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +and then another elephant came what was the lifeguard he and the lifeguard saw the elephant hurt itself then the lifeguard said you can not swim without a lifeguard if it tells you and it said go on the bench and no more going swimming until you calm down and i say so the zebra w the giraffe wanted to put his airplane in to see it swim and it and it did and then it went in the water and the giraffe did not know how to get it out but then the elephant took it from it,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and then it dropped it in the water and then the lifeguard did not know how that it airplane got in said um that is the giraffes airplane and the lifeguard tried to get it but he could not reach it and the giraffe was sad because nobody could get it then another elephant and it got um a thing what you catch fish with and it tried out to do it but it got it the airplane,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 +the elephant who caught fish gave it to the giraffe and giraffe said thank you giraffe was happy he was making a castle in in the beach what he got the sandbox he won and he made a castle there then when he was done making the castle he wanted to make another one and then he tipped sand on it but he was afraid if it was going to crash and it did crash,0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 +but he had to make another one but it was hard to make they were going to go and have a picnic and the bunny wanted to come and he said yes they eated carrots and they listened to some music and the bunny rabbit was full and the puppy dog was not and then the bunny rabbit got sick,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 +and the puppy dog was not very happy and then um the bunny rabbits grandma came and the puppy said the bunny rabbit is sick and they said come here come here and she came and she looked at the bunny rabbit and said you are sick then they went back home the puppy dog was all alone having a picnic they were going to a circus and they brought a wagon with a balloon on it,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +then bunny wanted to grab the balloon but the puppy dog would not let it so it said it is putting it in a knot he said then it flied away and he was mad at the bunny rabbit and then there is a man with a whole bunch of balloons and puppy dog was mad but then the bunny rabbit was not he wanted some balloons and he said please can i have a balloon,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 +but the man would not let him he had no money but the puppy dog did so the pup but then the bunny rabbit saw another bunny rabbit asked can i come to wherever you go can i have a balloon if you have some and he said but then he realized that is not a man that is a girl said y yes then he gave her a balloon the that is a giraffe who is laughing with the elephant,0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and then he saw the ball and then the elephant was scared and then the giraffe gave him the elephant the ball and then the giraffe came up the sidewalk and then the giraffe came up the sidewalk the the giraffe and the elephant were too scared to jump in the water and then the elephant was laughing but the giraffe was like ssss scared and then the elephant s was like tripping and then the elephant was hurt his knees and then the elephant cried,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 +then the elephant camed home and then the elephant was laughing and then the swimming man said he was pointing a hand the swimming man was what pointing his hand the elephant was laughing and the giraffe was laughing and then they were playing with the airplane and then the elephants turn to play the airplane but they dropped it in the water,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and then they the elephant was scared but the giraffe was angry and then the swimming man was all mad at them but he said what happened and then he was like wo saying uhoh and then he was trying to get it but he could not and then the giraffe was crying and then the girl was trying to get a fish tank and then get it and then she got the airplane,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and then sh she gave it back to the giraffe this one the bunny was digging but this girl came and then dig and then they they both shared then they put it on together but that girl was scared and then they were like all sad and they made it back again the bunny said hi and then they went to a field tr trip,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 1 +and then they ate carrots but they guy did not got nothing and then they they both um shared food and then the f the bunny um dranked and the bunny was fatter and fatter and fatter and but he flew it off to this doctor bunny and then he s told the doctor that he is fff he needs help and then he said go to the doctor and then the doctor ss went to the dd to his workshop this guy was holding a balloon with a little car,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and then he was saying look my balloon and then he pulled it off and give it to the the other guy but it flewed up the sky and then the dog was all angry and then they ss and then they sawed the balloon man and then he said can i have that and but it was five dollar and then they were all sad but they saw the doctor and doctor can we buy this,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 +can we buy the balloon doctor and then the doctor s gave him the money th then they b got another balloon first there is an elephant and a giraffe and the elephant is bouncing a ball turn and the elephant i think bounces it into a pool and then the giraffe dives in to get it and then the giraffe comes back and gives it to the elephant and the elephant looks like he said th looks like he is saying thank you,0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 1 +um there is a giraffe and an elephant standing by a pool and there is a sign that says no running so the elephant points at the diving board and she runs over there and she slips and she scrapes her knee and then the lifeguard comes and help and puts a band bandaid on her then she then he put put puts put her on a bench to sit down and then the lifeguard points his finger out saying bad i think there is an elephant and a giraffe,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 +and the giraffe is flying a toy plane around and then the elephant um looks at it and i think says that is interesting so the giraffe gives a turn to the elephant and the elephant is th um threw it into the pool and the giraffe gets mad at the elephant so the elephant asks the lifeguard to help and then talks to hi the liteguar the lifeguard what happens and the lifeguard tries to reach and get it then the lifeguard does does not know what to do and the giraffe goes on his knees and starts to cry so a dif i think a person that swims takes a n takes a net and tries to scoop it,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and she s scoops it up and gives it back to the giraffe and the giraffe holds it by like this by his neck and the elephant um has his hands like this like that in front of the giraffe there is um i think a bunny and a dog and the dog built a sandcastle and the bunny i think wants to help um the dog is smoothing the sides out while the bunny is digging sand out for the sandcastle and then the bunny pours it all over the sandcastle and he and it destroys the sandcastle and then the dog cries and tries to build a new one,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +um there is a bunny and a dog that have their baskets with uh f food in them and then the bunny dumps it all dumps it all out and the dog just takes it one at a time and then the dog is still eating and the bunny is laying on the ground with all this garbage around and then the dog is drinking a juice box and i think the bunny feels sick then uh and then the dog i think finds a doctor and the dog is pulling the doctors sleeve over to where um the bunny is laying down and the the doctor takes a thing and this little stick and like points at something,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and then the doctor brings the bunny i think home and uh the dog is standing b just standing still with a th a thing behind her back first um the dog is pulling a wagon with a balloon attached to it then the dog drops the handle and the bunny tries looks at it and then the bunny tries to untie it and it s blows away into the sky and then the dog gets mad at him and then the the da the dog is mad the bunny runs over,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 +and he sees a a balloon man selling balloons and the bunny takes one of the balloons and and on one of the balloons it says balloons five cents and then the bunny pulls out the inside of his pockets and he has got no coins so the balloon guy was holding the balloons and the bunny has his hands in his pockets with the dog behind him the um the the the p dog is standing by the balloon guy and the rab the rabbit sees this this p this girl this lady and then i th she tells he tells the lady to i think b get him a balloon,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the the lady takes out her wallet and puts some coins in her hand and they uh each get a balloon the elephant start the elephant starts screaming with the elephant starts doing with his trunk he s makes lots of noise do you know about the elephants oh it does not it is your story you make it up whatever you think and then they saw a egg in the water swimming they want to pick it up the elephant said uh why there is a egg,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 +i want to jump in the water and get it ah the guy swim in the water to catch it and the elephant is doing this and then the guy um swim and he give the thing for the elephant the elephant said wow and then the elephant went away the end they saw a water they want to swim in there,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 1 +it is like the two guys the elephant and that guy same and that is it and then the elephant said look i want to swim in the water and then they start the elephant was first the guy was behind him and he starts running i do not know what is he running for,0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 +and they still run again know what is he running for too and then they stopped and the elephant fell and it hurt his leg that is funny part and then a elephant came and squeezed his and then he put a bandaid and that is it elephant came,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1 +and that what is what is this guys long neck what is what is this guys long neck what is his long i can not see it it is your story you make it up and he got a helicopter he flied it in the air it fell in the water it keeped flying in the sky it could not get down he was going to catch it,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 0 0 1 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 +he could not okay shall i turn now oh he he wants to fly it right now the elephant is like this oh you showed me again with your face and then and then he wants to fly it the elephant catched it he must have wanted to fly it and then it fell in the water uhoh and then that guy gets mad on the elephant cause it is because it got s um it is got snuck down,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 1 1 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and it got stuck now and then the other guy said here is the bigger dad and the eleph the other guy the other one said look the helicopter sneaked down oh the guy the guy is trying to catch it it gots all the way there and then they could not catch it that is a long one and then the guy got a like net oh the net catch everything,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 +he catch fish but it is hard to catch fish they are fast and helicopter is it is just a toy down there you can catch it fast okay should i turn and then the guy catched it and he give it back to the other guy and then the elephant is really happy and he went,0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 +and he what the ele elephant is happy and he went because he got that thing the end the other guy was building his sandcastle and the other guy with glasses they was happy and then turn the page now and then the guy w wants to mix it because he can not see or watch the guy put the pail,0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +it is going to wreck it now it is lots of sand and then he wrecked it that guy that is his sandcastle he wrecked it and then the other guy build another sandcastle but it is not nice the end the guy said bye to the guy the guy with the glasses and then he went,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 +and he sit and he was playing with the sand they was eating and snow uh and snow came down um and then they was cold and they went in the house and then they came back out and it was so windy and then they came back out it was raining,0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 +and when they came back out it was sunny and when they came back out it was windy again and when they came back out it was sunny the end um the guy went with the pail with a balloon on and then they see it they want to get it to the sand they could not find the sandpile and then and then the other balloon fell in the sky balloons can fly in the sky when it is windy because it is not heavy,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the guy wants to take it off whoa it forgot to go it is not hanging in tight like that it is like this flied off it is gone he can not catch it in the air oh yeah if that guy was with it then it is windy so hard it can fly with it if it is hanging on,0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +oh it is flew he took it out and it flied up and then th and then the balloon pop and the guy was mad and the other guy was sad and the other guy bought lots of balloons and he gived them to the kid and the other balloon popped the last one and then the other one popped that is it,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1,0 0 0 1 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 +and then another one and then it is not going to pop and then okay anything to say about this page here um page eleven and then the guy look look how many balloons he say and then he give him some money and he and then they jumping to get the balloon the guy can not see,0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +they just gather by his hand and he went and then they hung on their arm and then they hanged on on the balloon they hanged on on a balloon and then they smiling the end it looks like a giraffe and an elephant that are going swimming and they are playing with a ball although it although when um they were playing with it it um maybe bounces in the water and the giraffe tries to swim and get it,0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and the giraffe got it and gives it to the elephant and the elephant thanks him and the giraffe is smiling it looks like they might want to dive in and go swimming looks like the elephant is pointing to the diving board to um and he wants to dive and um the elephant starts to run although it is slipery so she starts to slide and she falls and hurts her knee,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 +and then um the lifeguard comes and he puts a bandage on it then he um saying probably that there is a no running sign and that you can not that you should not run cause you can slip and fall and then he is pointing to the sign that says no running looks like they are talking about something and then he and then the giraffe looks like he is showing her his new airplane and she looks like she is getting dizzy watching it going around in circles and she takes it from him and starts to looks at him and the giraffe looks like he is getting mad and then she accidentally dropped it in the water,0 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and she looks like sh she is scared or something and the giraffe looks like he is m really mad and then the lifeguard comes along and probably says what is that and what is it doing in the pool and then the elephant is probably blaming it on the giraffe that he threw it in the water and the lifeguard is trying to catch it trying to pick it up out of the water although he can not reach it and the giraffe looks like he is getting really sad so he starts to cry and then this lady elephant comes along with a net and she tries to fish it fish it out with the net,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 +and she gets it out and gives it back to the giraffe and he is all happy and he is hugging it it looks like two it looks like a bunny and um and a dog or something playing in the sand and they start and the bunny looks like he is helping the dog make a sandcastle and the bunny pours a whole bucket of sand on it and the dog looks like he is getting sort of worried and the bunny s gets surprised because it is all covered in sand and the dog starts to cry and the bunny looks like he is embarrasseed,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +it looks like the dog is going for a picnic and the bunny is coming along with him it looks like the bunny is looking at all this good food that he wants to eat and he eats it all and he and he i guess he has a stomachache and then he starts to feel sick and it looks likes he is fainted and the puppy the dog goes to find somebody and he fi h um he finds this um lady and he pulls the lady to where um the bunny dropped out,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +and the and the lady was a doctor so she tested him to see if he was awake or not and she took him and she is probably going to take him back to the doctor office to check him up it looks like she is pull the dog is pulling a wagon with a balloon on it and the and the bunny is coming like running along and he sees the dog and he is waving and the rabbit pra um looks like he is saying um like nice balloon and then the bunny tries to pull it off,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and the dog looks like scared that it will fly away and then the bunny accidentally lets go of it and it starts to fly up in the air and they are trying to catch it although they can not and the bunny is looking up at the balloon and the dog is getting really mad and then this um old bun this bunny is selling balloons and the bunny sees it so he runs over and then he asks the bunny the older bunny for a one of the balloons,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then the balloon man said that the balloons are five cents and the bunny looks in his pockets and he does not have any money and the bunny looks sad because he can not buy another balloon for his for the dog and then the bunny walks over to this lady and he asks her for some money and the lady gives him five cents and then they each got one of their own balloons there is an elephant and a giraffe by the swimming pool and the elephant is banging a ball with his trunk,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and the elephant kno accidentally knocked the ball inside the water and the giraffe had to go and get it he had the giraffe had to swim inside the water to go and get the ball the giraffe got the ball back for the elephant and the elephant and the elephant was happy to get the ball back the elephant and the giraffe are standing by the water the elephant ran closer to the water the elephant slipped and the giraffe is running to s stop the elephant from falling on the ground and the elephant fell on his her knee and hurt it,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +the giraffe is trying to fix the elephants knee and this oth another elephant came and put a bandage on it and all the giraffe the elephant and the other elephant are the giraffe is sitting down and the gg giraffe is standing up and the elephant is still the other elephant is standing up and the girl elephant is sitting down the elephant is the elephant and the giraffe are happy the giraffe is playing with a toy plane and the elephant is looking at it and the elephant took the toy plane and started to play with it,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the elephant dropped the toy plane inside the water and the giraffe is getting mad at the elephant and the lifeguard came and s looked at the toy plane and then the elephant was looking at the lifeguard and the one the giraffe is looking at the plane and the ele the elephant asked the lifeguard to get that plane out the lifeguard is holding onto the edge and trying to get the toy plane out and the elephant and the giraffe are looking at the plane and the lifeguard can not get the eleph the um plane out so the giraffe started to cry,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and the and another lifeguard grabbed a net and tr and tried to get it out and the other lifeguard um caught it in the net in there and um the everybody was looking was proud and that other lifeguard got it for the giraffe and the giraffe was very happy and the elephant and the giraffe are very happy to get the plane back there is a rabbit and a dog playing in the sandbox and the rabbit and the dog are making a sandcastle and the rabbit fulled the bucket of sand and broke the sandcastle and now the rabbit is a bit frightened of what happened to the sandcastle,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the dog ha is trying to make the sandcastle all over again there is a dog and a rabbit they are going to have a picnic and the rabbit took all the food out and is getting very hungry the rabbit ate all his food and the dog is still drinking and eating his food very nicely and the rabbit is very ff full and the dog is still eating his food and the dog sees a doctor and ran over to the doctor and the doctor is the dog is pulling the doctors leg arm to move it over there,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the doctor is gon going to take um the the bunnys the rabbits uh is going trying to fix the rabbit and the rabbit is all better now the rabbit is running over to the dog that is pulling a wagon with a balloon on it and the rabbit is trying to grab the balloon and the rabbit is untying the balloon from the wagon and the dog is very proud and then the balloo the balloon slipped out of the rabbits hand and went flying up in the air and they are all try and the rabbit and the dog are trying to catch it and the dog is very mad at the rabbit and they s and the rabbit sees another man selling ballo a balloo a man selling balloons,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he bought one the rabbit bought one balloon and he and the rabbit has no money for balloons and th and the rabbit and the dog are trying to get a balloon and the rabbit went to th to the to this other rabbit to the doctor and the doctor saw him and the the ra other rabbit is pointing to the balloons and the doctor is buying a balloon and both of them have a balloon the girl has three ba balls and she is and there is a a big one and a medium sized and a small ball,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and and there is um a giraffe that would like to play with one by accident he s the girl throws the ball into the pool the giraffe goes try he is in to swim for it he gives it back to the girl and says that is okay he is smiling at the girl the girl elephant and the boy giraffe are looking at the pool okay can you talk a bit louder cause someone is making noise out there what is next the girl the girl is running the girl is running mm okay,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 1 1 1 +she she accidentally slips and she hur and she hurts her knee and now she is crying crying the lifeguard comes running he put the bandage on on the um bruise and she now she is sitting down on the um bench he points to the sign that says no running and she was running the boy giraffe have a toy airplane and the girl giraffe the girl elephant is asking to play with it,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he wa and he um and he is showing her how to do a loopdeloop with the airplane and then sh and then she takes it sh she is looking at it like it is hers she accidentally drops it into the pool the um gira the boy giraffe is getting mad at her the la the l when the lifeguard sees he he is kind of happy and he is kind of mad the girl the elephant is telling hu him what happened he is trying to reach out to get it the boy giraffe is crying because they can not get it,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +the the other gir there is another girl elephant that has a net and she thinks that she can get it and she can get it she giving it she is giving the toy airplane back to the giraffe and he is hugging it because he loves it there is a rabbit that is making a castle and there is another rabbit that wants to help that rabbit make the castle they they are helping make the castle together one one is building the castle and one is making the walls,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 1 +one one one is ac one accidentally pours the sand right onto the castle and the other one looks embarrassed uh after he pours it on all there is is a tower from the castle and it is all gone and the other one is kind of smiling but one has a frowning face and that other that other wa one that had a that was smiling is now crying and the other one is thinking of what he did that is the end of the story there is two there are two rabbits,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 1 +one is running to the other with a pis picnic basket and the other one is holding a pis picnic picnic basket one said one has opened up his picnic basket and he is eating all the food and the other one is s still opening hers up when he is done all his food he kinds of he kind of faints and the other and the other one is still eating uh he feels kind of sick and and he the other one is still eating the one that was still eating ru runs to get a doctor,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 +and and he is telling her him her what happened to her friend now she now she is pulling the doctor to her fr her friend the doctor is speaking to the boy and to tell him not to eat too quick now the boy is all better and now and now the girl and the boy is going home there is a girl that is pushing her wagon and uh there is a girl that is pushing her wagon and on the wagon there is a balloon and the boy and the boy rabbit is chasing after her he wants he wants the balloon so he reaches out,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 +and she is kind of have a frowning face what kind of face a frowning face oh frowning okay when he gets his balloon the gir the girl um kind is saying hey and he is playing and he is tying it to his wrist he lets the balloon go and it floats away the girl is getting really mad at the boy,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 +and soon they see another rabbit that ha that is holding balloons when the bo when the boy s when the boy sees that he asks if he can have a balloon the man said it is five cents and the boy does not have any money he says it is okay maybe next time you will have some and when the boy sees the doctor he asks if he can pay for the if sh she can pay for the balloon for both of the balloons i sa the doctor says y yes and um they both get a balloon right here she is paying,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 1 1 0 0 0 0 0 0 1 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 1 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 1 +and they both really like their balloons there once were two friends and they were playing a game and they wanted to go swimming so then they got there and then they were playing and the ball fell in the pool so one of the friends swam out and got it and then they got it and one of the friends she took it out,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and then they wanted to play again there were two friends and they were the same one in the last story and they wanted to go swimming again so they went and then one of the friends she wanted to go in right away so she ran and sh and she wanted to jump in but then she fell and she scraped her knee,0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 +and the lifeguard came and he said oh it is all right here is a bandage here you can sit here and wait til it is better and then she was happy she took a little rest there were once two friends and they wanted to go swimming so they went and one friend bought brought an airplane,0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1,0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 +the other friend grabbed it and said wow an airplane and then she accidentally dropped it in the pool and then the other friend was a l little bit mad so then she said uhoh and he went and then the lifeguard came and he went hmm and then she said i i accidentally dropped the airplane in the pool he tried to get it but he could not reach,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +so then the friend that ha had the airplane he was crying and then one lady she came and she had a net to get it she said do not worry i will get it and then she went and got it and then the he was happy again and then they were both happy and she was happy he got his airplane back once there were two friends,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 +and they went and they wanted to play in the sandbox and they built a sandcastle and it was really nice and they needed lots of sand to make it unless unless it would not work out and then he put too much sand on it that it all collapsed and fell and then and then one of them started to cry so and then he wanted to rebuild it once there were two friends and and they wanted to go on a picnic they packed all the lunch,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and when they got there they started to eat and they started to eat and one of them felt really sick so they had to get a doctor and and while the doctor was coming when the doctor was coming he felt really sick and he k he could not wait and the doctor came one of the friends she ran up to the doctor she said doctor doctor help my friend is sick,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 +we need some help so he feels better the doctor said oh my he has a he has a very bad tummyache and he felt better because the doctor made him feel better and then he lived happily ever after there were two friends the same ones in the last story that i read and they wanted to go on a walk so they went and they and they saw and they saw somebody with balloons and they they got one and they tied it on,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 +but then it went up in the air and they were sad and then they they kept going and then they saw a man another man with balloons and they went they wanted to get some say so they got so they got some and then they left but then they did not have any money and he was sad and the balloon man said hm i do not know if you can get a balloon,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and they did not d get any and then they saw a lady and see she was and then he asked can you get us some money so we can get a balloon and then so she bought a balloon for them and then they were both happy uh hm once upon a time then there was a elephant going then the ra then the he came and was and a ball was in the pool then he tried to swim in there but he could not,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +then she pick the ball up then he was all wet then that is the end of the story once upon a time a elephant came along and that then then then then then she wanted to then she wanted to go but she falled on herself and the more she was running she falled and someone is going to help her and she got a br um a owie then come along elephant came then the elephant came,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 +and he and that was a coast then there was a owie going and there was but then there was nothing to do then the animal was all better and he said no running because if you run you fall on yourself i never do that i but i run on a sidewalk and i like like while i was two like once upon a time she did not allowed in something came and and then there was an airplane going in the water and she played it and something,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and she taked it away and throwed it in there um then then he was angry and she and the boy told her you did it on a purpose then a lifeguard came then then the airplane was still in there he wanted it out he tried to reach it but he could not and someone got it but she was very trifle,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 1 +um then someone is going to pick in a net um then someone is going to pick it then he was happy then he was glad then she was glad they were making new friends again then the end of the story once upon a time he she built a nice sandcastle but then that rabbit then the rabbit was surprised then c then they were making a other castle,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +then someone pushed it down and that was her like like a rabbit or maybe someone else and it was rabbit and she did not do it so she tried to fix it and he was not uh pleased then that is the end of the story he she was walking by and then then a rabbit was going by and a puppy saw her,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 +and a puppy said i am going to picnic like you so they had a nice picnic and he was getting goofy and suddenly he was tired and he was full of candy and he is getting sicker sicker and sicker then he knowed he was getting sicker and sicker and he she needed him to help her he was so full he could not even walk and the rabbit said get up,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 +and then he was fine at all then she was trying to pull it but he was so happy a ra and a other rabbit came along and she said what are you doing i am just pulling some stuff and a balloon was not going up and she was happy suddenly it was going up and up and up and up and up and up then suddenly he wanted a other one,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and she was angry there she came just a sec then he was going to get a other balloon she was angry and he wanted a balloon and he said yup i want a balloon and he did not know and the said no can you see,0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1,0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 0 1 0 0 0 0 1 0 0 1 1 0 0 1 +and and he said you do not have any money that is that is not doing then then suddenly he had idea and a rabbit had money somewhere to find and that was someone else looking in a far away and she said what is it you are doing i need some money but and she said she did not know what she need the money for then then she give him some won money and they wanted two balloons,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 +that was all and he wanted them two but others heard it but there was two left then they got both the balloon and they loved it then they hugged it and then something went then then then she was surprised and that was true that is the end,0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1,0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 +so a guy there was a giraffe he was at the pool then he met a girl bouncing a ball but the ball fell in the water and the man the boy tried to go get it and then he got the ball and then he was still all wet because he was in his clothes there they saw a diving board and it and it said no running and the sign said but,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 1 1 +and then she started to run and then she slipped she fell on the ground and she hurt her knee and then the lifeguard came and put a bandage on it sat on a bench and then the lifeguard said you are kicked out a boy was there and the girl was there and then the boy had an airplane in his hand,0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +he flew it around like this and then the girl grabbed it out of his hand and then it slipped out of her hand and it went into the water it was a pool and then the boy got so angry and the lifeguard came and the girl said it was an accident i accidentally got the w plane in the water so the lifeguard tried to reach it,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +then he could not the lifeguard girl came and picked it up with a scooper and gave it back to the boy and then he hugged it he hugged the plane well he were in the sandbox and he meant and he somebody had a sandcastle built up and they played together and he put some sand in a bucket and the other guy touched the castle and then the rabbit put the sand on the castle,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and then he got so mad so then they tried to fix it there so he was on the road somewhere and he put his hand out like this and he saw somebody run down the street and then they decided to have a picnic together one is eating a carrot and then he got so full because he ate all the food and he got so full that the basket fell over,0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and then his dad came and he is still laying on the carpet and then he the child pull the dads shirt and then he said go to your room now and then he he sna and then the other guy went home because the other guy was not really his child the other guy was re really not his child so the this boy met a girl pushing a wagon with a balloon attached to it and then they wanted to play together so and then the boy took the balloon off,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and it floated up into the air and then the girl got angry so then another man came by selling balloons so the girl wanted one so then he uh the guy looked in his pockets to see if he had any money but he did not so he had to walk back and ask somebody else to for some more money then he got more money and then they got another balloon they each got a balloon the elephant is talking to the talking to a horse,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +the elephant is pushing the horse the elephant pushed the horse in the water the elephant is helping him out the elephant ah being nice and that is the end the elephant is being nice elephant the elephant is going to jump in the water th the elephant is running the elephant got a got an owie the elephant is crying,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 +uh the daddy is putting a bandaid on it and she is sitting on a bench uh and she was and she is be and she was just teasing she was just teasing that she had a owie the elephant is making funny faces the elephant is uh looking at the airplane the elephant s wants to fly it the elephant is the elephant is sinking it the elephant is and the elephant is looking at the airplane sinking and hm the elephant is mad,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and she s she said to her dad that that that i sinked his airplane and the dad is trying to get it and the dad is putting his hands out like this and and the ga and and the fly fly swatter uh and she is trying to get it with the fly shw ss swatter s and and she got it out for him now the elephant is happy and that is the end um they are playing in sand the rabbit is digging in sand the rabbit is putting sand on the sandcastle,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +the rabbit wrecked the sandcastle and and the piggy is sad and he is building it back up and that the end the rabbit is walking down the path the ra they are having a the pig and the rabbit are having a picnic the rabbit is eating candy the rabbit is the rabbit is feeling sick and they are gi and the and the pig has a flower in his hand and the pig is pulling the the girl bunnys hand,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and the girl bunny hit him on the head and the girl bunny is taking him and that is the end the rabbit wr walking down the path again the rabbit is looking at the balloon the pig has a f um the rabbit is untying the balloon and the balloon is going up and the pig is getting mad at the rabbit and and there is another rabbit and they are going to go buy another one,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and they are going to get one and then they are going to ge go get another one from someone else then they are going to go get another one from someone else and then they got one and then the and then the then the gi then the girl um and and the rabbit is running to the girl bunny the girl rabbit n and and then and and he is pointing to the balloons and and they want another balloon so they are getting their mom to buy another one and this t and they got their own this time and that is the end a girl is bouncing a b a ball,0 0 0 0 0 0 1 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 1 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 +the ball went into the pool the moose went to go get it the moose got it and brang it back and then he got out of the pool got out of the pool and the girl was happy they they see a pool they run to the diving pool now they are running to the diving pool okay so you were thinking about that because you knew what came next anything else on this page they see the diving board,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 +so they run to the diving board the girl ran so fast that she slipped and hurt her knee the lifeguard came to see to give a bandaid bandaid the the moose went to go get him the lifeguard gave her a bandaid she thought it really hurted and then the the lifeguard took her to the bench and then she tried touching it and it was better and then the lifeguard pointed to a sign,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 +she looked it said no running the moose has a plane they were going to play with it at the pool the moose fl fl made it fly okay you were showing me with your hands and then the girl took it away and threw it it landed in the pool the moose got really mad the girl said oopsies,0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1,0 0 0 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 1 1 +the lifeguard came she was scared she told what how um how how it happened the lifeguard tried to reach it but he could not the moose cried the lifeguard got a net and got the plane with the net then pulled it out so sh so the moose can have it and then they had fun later there are two boys making a sandcastle one of them smoothed it up,0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +the other one put sand on it since he was getting tired of doing that he dumped the whole pail on and then the wh whole pail cover most of the sandcastle one of the boys started to cry two people had a picnic one of the boys ate had more than the other one the the one of the boys had l had too much to eat he got he ate a little more and he got dizzy and then and then um a the other boy saw a girl,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +she pulled the girl to the picnic and the boy wa the boy was not so dizzy any more because the girl helped him a boy was pulling a wagon with a balloon on it the boy saw the balloon the boy was untying the balloon the balloon floated away the other boy got mad at him he so he the other boy looked up and then they saw more balloons so they went to go get one,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 +but but it costs money and that was this page and then the boy checked his pockets but he did not have five cents so the man with the balloons said no you can not have one because you do not have any money and then a boy found a girl the boy asked her nicely if she could buy him a balloon the girl gave him a balloon they both had a balloon now the elephant and the ah,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 1 1 +the giraffe was uh saw the elephant was bouncing the ball and the the ball was on the water and giraffe trying to get the ball on the water and the giraffe got it and the elephant get it and the giraffe was wet the end once upon a time a the elephant and the giraffe was saw the water and and ahh um the elephant want to go on the water and the elephant go right away to go on the water,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and the elephant slipped over the the ground and the elephant got hurt on the knees and the elephant was crying and the and the elephant was putting a bandaid on and the elephant was the elephant was ahh ahh mad because it hurts on the knees with the bandaid and they feel better and they sit down but the elephant ahh looked so mad because theyre the giraffe and the elephant want to go to the water the end the giraffe and the elephant,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 +the elephant saw the airplane on the giraffe hand and the elephant was saw the airplane was flying and the giraffe was standing uh with the airplane and the elephant take away from the giraffe airplane and the elephant want to see it and the elephant drop it in the water and the giraffe was very angry and the elephant and the giraffe was saw the the other elephant was saw the airplane in the water and the the elephant was uh say the she was dropped the airplane in the water and the uh the elephant trying to go get the the airplane,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +and he can not get it but uh the giraffe was crying with the airplane and the then the other uh elephant will get the airplane with that thing to for the fish and she the elephant trying to get it but it is too hard to get it but she get it the elephant got it now and the uh giraffe was happy and the elephant and the giraffe was happy too the end,0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 +the bunny and the the dog the dog was making a sandcastle and the rabbit want to help the dog and the rabbit was making a sandcastle and the dog all finish and the rabbit was trying to put the sand on the castle and the dog was so scared the the rabbit trying to put the sand on the castle and there is breaked the the sandcastle and the dog was crying,0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +and the rabbit was so sorry breaked the sandcastle the end the dog and the rabbit was going to the picnic and the rabbit was have the carrot and some hot dogs and some cake and some sandwiches and the rabbit got too much to eat and the rabbit got a st stomachache and he is getting so fat and the doctor was came and saw the rabbit the and the dog tried to get the doctor and the doctor was coming and saw the rabbit there,0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and the rabbit was so have a stomachache and he feeling right sick and the rabbit go home and he felt better the end the dog and the bal the dog and the bunny was saw the balloon the color pink balloon and and the rabbit went to see the balloon and he trying to take it off for the dog and is is floating away from the dog and the dog was right angry because the bunny was let go of the balloon,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the dog and the rabbit saw lots of balloons there pink green and orange and blue and purple white and gold and the rabbit choosed the blue one and that and the the nother the another uh rabbit was right angry because that is number five so the rabbit and the dog want to pick the balloon but the doctor there because the dog was sick and the the doctor saw the dog was sick and he has got some the doctor got some monies for the dog and the rabbit for the balloons and the dog got the color the gold balloon and the rabbit got the color the blue balloon,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +the end the elephant was playing with his ball then he threw it in the pool then the giraffe catch the ball and throwed it to the elephant and he pick it up x okay what did you say they want to go in the pool he was running,0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1,0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 1 +then he slipped then hurt his knee then he cried what is that then the lifeguard go and he closed his eyes and it hur hurt then uh the lifeguard told him that he it says no running the elephant looked at the giraffe playing then he played with it,0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 1 1 0 0 0 0 1 +then he grabbed it then he throw into the deep pool and the giraffe been angry and the lifeguard came he and he told him that he throwed um the giraffe plane into the deep he tried to grab it but he can not and there was daddy he get the plane and he catched it,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 1 0 0 0 1 0 0 0 1 0 0 0 1 +and he bring it back to the giraffe and he hugged it tight to the the bunny and the dog are making a castle castle the bunny put sand in his bucket and he dump it all and he wreck the dogs castle mm he he he pretended to he did it to him the dog and the bunny went going for a picnic the bunny ate some food and he ate some more,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 +and then he has a stomachache then the dog got by the doctor and he grabbed him and he uh he told the dog that he has a stomachache and then they came the dog and the b bunny went to see the bunny the the bunny see he sees the dog then he tied up the balloon and the balloon went up and the dog got angry,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 +then the bunny losed it he talk the mom to give him the balloon but he do not have money the the the bunny and the dog have no money they come to go to him and then the dog the bunny goed and he gave both balloons to them bunny and the dog um the donkey wanted to play uh with with another animal with his balls um they they went to the swim pool and they they found a friend,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and he jumped in the water and splashed the elephant by accident and the elephant picked the ball up and the giraffe asked if he could have it and he came out with his cloths on um they went back to the swimming pool and did not want to go into the water the elephant wanted to go in the water but the giraffe did not um the elephant asked if he could race the giraffe to the diving board but the elephant tripped and and fell and hurt her knee and the swimming person checked if he was okay and put the bandaid on her,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and she feeled all better and she stayed there so she could get better um the giraffe throwed his airplane and it flew but but by accident he th threw it too soft and it fell in the water and he tried to get it out but he and he did and without asking the elephant grabbed the airplane away from him because she wanted to play with it and because they was grabbing they grabbed,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and it fell in the water and the giraffe was angry at the elephant because she throwed it in by accident the lifeguard was mad because they throwed it in and toys was not supposed to be in the water and the elephant said look what i did it was by accident and the lifeguard tried to pick it up but he could not the lifeguard could not so he just got up,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 +and he had an ide a plan he but he did not his wife took um a stick with a rope on the ss on the front and he catched it out he tried to she tried to catch it out an but she could not and she did and she gave it back to the el giraffe and now he was proud of the girl because she got his plane back the bunny said hi to the dog,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and the dog was making a sandcastle and the bunny wanted to help but the dog said yes and they started building a sandcastle and then the bunny dumped a bucket and it and it and the castle fell down and the dog was mad at the bunny and the bunny was sorry because he knocked the sandcastle down and then they builded it all and then the dog builded it all up and crying the dog said hi again to the bunny,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 +the bunny was racing down with a basket of food so was the dog and when they got there they unpacked the food and they started eating and the bunny tummy hurted and he was sick of the food and the dog raced to the doctor and said doctor doctor can you help my bun my friend bunny is sick doctor doctor come on come on doctor,0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 1 +come on my friend bunny is really sick because he eat so much food okay okay he took his temperature and he was sick sick and and then he checked the bunny again and he was all better the dog said hi again and the bunny wanted the balloon and said where did you get that from i want that balloon right now,0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 1 +and he untied it from the wagon and it started float floating off the wagon and the dog was mad at the bunny because he untied it and he wanted it and then the bunny had a great idea he can go over to the balloon man to buy another balloon and they asked could we have two balloons please and uh and it cost it costed five dollars and he had he did not have any money in his pocket so he could not get a balloon,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and they said please but no only for five dollars doctor can you help us can we have five could we have five dollars for both of us so we can have a balloon he said okay you can have balloon i i do not we do not have any money in our pockets so please can you give us five dollars so they gived him five dollars for both of us and then they got the two leftover balloons and then they was proud of the doctor because they got a balloon,0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the bunny said sorry to the dog because he uh he wanted the balloon and he untied it so he said sorry play ball and he taking swimming pool and he get it and thank you and welcome uh and over play swimming,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 1 0 1 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 1 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 0 0 0 1 +and go in it and and run and walk on knee and her cry and cry lots and sit on bench and stay here the what and stay on bench over play,0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 0 0 1 1 1,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +play play a play and play a play again and play it in in water and it angry and say bad and dad what is that daddy i play in pool,1 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 1 0 0 1 1 0 0 0 1,0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 1 1 0 1 0 0 1 0 0 0 0 1 +and they are get it get it i am get it looking and get it and it in there i get it you get it and loffed it loved it loved it he play on s in sand and play make castle,0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 1 +and dump it and what dump it oh no oops sorry and cry uhoh they go picnic and eat and they drinks juice,0 0 1 0 1 0 1 0 1 0 1 0 1 1 0 0 1 0 1 0 0 0 1,0 0 1 0 0 0 1 0 1 0 1 0 1 1 0 0 0 0 1 0 0 0 1 +and hungry and that girl her tummy that man sick she what sick and a bunny his tummy hurts and turn that and go doctors house he what doctor all done,0 1 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 1 0 0 1 0 0 0 1 0 1 1 0 1,0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 +her play and hold that up higher tie it up and up higher and up clouds angry and man what man balloons on it him him take one,0 1 0 0 0 0 1 0 0 1 0 0 1 0 0 1 1 0 1 1 0 0 0 1 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 1 0 1 0 1 +and and x and bring doctor here and check and talk and money and balloon and two balloons and over there are these two kids one has a ball and she is bouncing it really fast by a pool,0 0 1 0 0 0 0 0 1 0 1 0 1 0 1 0 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +and the ball falls in so the other kid jumps in and swims to the ball and he gets it for her and then climbs out there is these two kids and they are looking at the water and one of the kids says that there is a diving board and it looks like fun and the kid who said that the diving board looks fun runs and slips and hurts her knee and the lifeguard comes and puts a bandaid on the hurt spot and puts her on a bench and shows her the sign no running there is these two kids,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 1 +one has an airplane and he plays with it and the other one takes his airplane away and accidentally drops it in the pool and the other kid is really mad at her so she go gets so she gets a lifeguard and she asks him if he could try and get the plane out and he tries but he can not reach it and he does not know what to do and then this lifeguard with a net comes and fishes it out and gives it back to the kid,0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the kid was really happy to have his airplane back um these two kids um are going to build a sandcastle and they start building and then one of the kid um dump sand on it and then it is all flat and then the other kid cries because it is broken that is kind of dumb these two kids are going to go for a picnic and the first kid took um all this unhealthy stuff and he starts eating,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 +and he gets all sick and the other one he gets all dizzy and the other kid runs and gets s the doctor and the other one pulls the doctor to him and then he checks him out and then he says that he is going to give him a checkup um there is these two kids one of them comes up and and says hi and he sees the other ones balloon and then he starts taking it off the wagon,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and and the other kid is yelling and then he accidentally lets go and the other kid is really mad so he sees a guy that is selling balloons and he asks if he could have a balloon and then the guy shows him that the balloons are five cents and he does not have five cents so he goes to his grandma and asks if he could have a balloon and she says yes so they both get a balloon,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 1 +one day a giraffe saw her friend the elephant playing with a ball gira the giraffe took the ball and threw it in the po in a pool nearby the elephant was scared the ball might sink so the giraffe went to get the ball the giraffe got the ball for the elephant and the elephant was happy then the elephant thanked the giraffe one day the giraffe and the elephant were at the pool the elephant said let us go off the diving board the elephant ran,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 1 +and so did the giraffe the elephant fell and and hurt her knee the lifeguard came and helped her he put a bandaid on the elephant while the giraffe watched the lifeguard told the elephant not to run in the pool or she might slip so the elephant sat down and did not run one day in the elephant and the giraffe were at the pool the giraffe had a a a little plane the giraffe played with the plane,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +he did loops and swirls and s things like that then the elephant took the plane and tried to play with it the elephant dropped the plane into the water the giraffe got furious and the ele and the elephant got scared then the lifeguard came the elephant told the lifeguard that she was playing with the plane but she dropped it in the pool the lifeguard tried to get it he said he could not reach it,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 +and the giraffe started crying then a woman came with a net she took the net and she took the net and took the plane out the boy was really happy and thanked the ele the woman the boy got his plane back and he was really happy and so was the elephant one day two rabbits were playing in the sandbox one rabbit was digging out some sand the other one was making a sandcastle,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +the rabbit poured the sand in the bucket on the sandcastle the rabbit got conf the rabbit poured on the sand and i can not make this one um uh just tell me what is happening the rabbit is like scared because then the other rabbit might get mad at him the dog or rabbit started to cry and the rabbit just stood there one day two friends met to go to a picnic one friend kept on eating and eating and got and keep kept on eating and eating and got really full by the time he finished he was really stuffed,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +the other friend just drank some juice and some bread w when the other friend found the doctor who was in the park h he went to get him to see if there was anything wrong with her friend she begged the doctor to come so she did so the doctor came the doctor checked the rabbit and it seemed that he had a stomachache the doctor told the rabbit to not eat too much junk food so the rabbit did not get much of a stomachache one day a the rabbit met his friend the dog which had a wagon and a balloon the rabbit liked the balloon,0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +so he pointed to it the rabbit untied the balloon and the dog just stood there with surprise so and then the balloon flew away the dog got mad at the rabbit then the two s saw a man holding a bunch of balloons the rabbit asked for another balloon the man told him it was five cents but the rabbit did not have any money then the other friend came,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 +the rabbit went to see his mom and s and the his friend watched him as he walked to his mom he told his mom he wanted a balloon the man gave two balloons to the to the two friends and the mom paid the money they the two friends thanked their the mom um let us play boys the ball went in the water i got to swim and get it i got another ball to swim with it,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and i am playing with it aaah i am all wet the end let us swim i am jumping in the water let us run ow are you okay and it hurts i need a bandaid,0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 1 0 0 1 1 0 0 1 0 0 1 0 0 0 1,0 0 0 0 0 1 1 0 0 0 1 0 1 0 0 1 0 0 0 0 0 1 0 0 1 1 0 1 1 0 0 1 0 0 0 1 +it is still hurting i got to go to the doctor the end pigs do like this let us swim i am crying i found a airplane give me that airplane my airplane oh do not be angry at me,0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 1 +let us get it oh we got it i got it in right he getting out of the water no okay let us catch it i got it thank you my favourite airplane the end,0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 0 0 1 0 1 0 0 1 0 1,0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 1 1 0 0 0 1 0 0 1 0 1 0 0 1 0 1 +um you play in the sandpack you dig a you put the sand in the bucket and you dump it on the castle and then then um then then the castle broke and then the cried the end he is walking and then he says hi he eats his sandwich with a carrot and he drinks his juice,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 1 +and he cries um i am thirsty you stole it i said it you stole it i do not know that page should we try the next page he cries goodbye the end,0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 1 1 0 1,0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 1 1 0 1 +um here is a balloon um i am running around my balloons do not take it off ah the balloon it is flying aw the balloon is broken there is a lots balloons lots of balloons i want a balloon i only have one oh there is a lot of balloons,0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 1 1 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 +ah i want some balloons where can we put the balloon but our balloon is broken let us have another balloon and we got two let us have it we got two that kind the dog the giraffe and the elephant,1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 +the elephant was playing basketball with the giraffe and then the do elephant throw the basketball in the water the giraffe tried to save the balloon ball and the giraffe said here you go here is the balloon ball and now the elephants have the ball a giraffe and a elephant was going swimming and the elephant said i am going on the diving board and then the elephant hurts her foot and she slipped,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 +and she break her foot and and then the giraffe came to save her and then the swimming teacher came and then the s s the swimming teacher give her a bandaid and the swimming teacher gave her a bandaid and then and then the elephant said thank you for the bandaid and the teacher said no running said oopsie the giraffe is playing wi with his helicopter eh eh and the elephant wa want to play with with it too,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 +and the giraffe played with his helicopter and then the elephant take it away from him and then the elephant drop it in the water and the elephant was mad the giraffe was mad and the swimming teacher was to to look at the helicopter and then and then this the the elephant said that the airplane is in the water and then the swimming teacher is trying to save the airplane in the water and the the the swimming teacher said i can not catch the airplane and then the an and then the giraffe was crying and then a a swimming eh elephant was came to to rescue the airplane,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then and then she saved the airplane and she said here you go giraffe here is the airplane and and then the the giraffe was happy the bo the dog and and the and the bunny want to build a castle first the rabbit takes the sand in the bucket then and then the rabbit taked the sand the castle and the dog is s scared and then the ra the rabbit is scared be because the rabbit break the castle and then the dog tried to fix fix the castle,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 1 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 +the rabbit and the dog went f for a picnic and then the rabbit i is eating his her lunch and the dog is is is eating his lunch and and because the rabbit have too much lunch now rabbit have a tummyache but the dog do not and the dog only ha only have some lunch and the dog says huh the rabbit is have a tummyache and now because the dog did not eat too much only the rabbit did and the dog said mama,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 +and mommy but the rabbits mommy and he said this hey mommy here is a dog he said huh that is not my children and she said she said i do not know rabbit i am a doctor and now the rabbit has gone and the rabbit go home except the dog the dog has a a dragon,0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 1 0 0 1 1 0 1 0 0 0 1 0 1 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +and the balloon is hold up the dragon and then the rabbit came with him and then and then the rabbit found the balloon and then the rabbit going to take it off and and and the rabbit take it off and and it float up to the sky and the rabbit and the dog try to catch it and now the dog is mad and it and the rabbit was scared and then and then the rabbit and the dog bought some more balloons,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the rabbit said how much that cost it cost five cents but the rabbit had no money and the rabbit and the dog said no money aw x a balloon then they said mommy come here can you buy us a balloon and sh and the mommy said which balloons the balloons,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1,0 0 0 1 0 0 0 1 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 1 1 0 1 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 1 +and then the mom buy the balloons called a nickel and then then they had the balloons then the the the cat and the the bunny and the dog is happy one day a giraffe meets an elephant playing with a ball then the ball fell into a little pool the giraffe goes into the pool to go swim to the ball to get it the giraffe got the ball and gave it to the elephant the elephant is so happy to have the ball back the giraffe gets up on shore,0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +one day an elephant and a giraffe fou found a pool the elephant decided to go down the ladder it walks but it runs but it f was tripping it hurts its knee the giraffe comes running an elephant lifeguard came to the elephant and the giraffe it helped the elephant it gave the elephant a bandage and let it sit on a bench the elephant lifeguard told the elephant no running,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +one day the elephant and the giraffe saw a pool then the giraffe saw an airplane zooming by the elephant grabs the airplane from the giraffe then the airplane sinks in the pool the giraffe is mad at the elephant the elephant lifeguard comes the elephant told the lifeguard what happened the lifeguard tries to get the airplane he can not get it the giraffe is crying,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 +and the elephant is sorry then another elephant came along with a fishing net she scoops the airplane out with the fishing net she gives the airplane to the giraffe the giraffe and the elephant is happy once there was a rabbit and it meets a little animal they both try to make a sandcastle together the rabbit pours sand on the sandcastle the sandcastle goes down,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 +the rabbit feels sorry for the other animal once there was a rabbit and it meets an animal and they both want to go on a picnic they together have a picnic at the same place the rabbit eats a lot of things and he is stuffed then he feels dizzy and sleepy the other animal tells the rabbits mom it tells her to come to the rabbit,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +the other rabbit wakes up the little rabbit and they go home one day the rabbit saw an animal pulling its wagon with a balloon the rabbit s is watching the balloon the rabbit tries to untie the balloon off the wagon but it after it goes uh up in the air the other animal is mad at the rabbit then there is someone that is selling balloons and the rabbit is asking for some balloons he is looking in his pocket for money,0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +but he does not have enough money so i and he sees his mom so he goes over to his mom he asks for some money to buy the balloons the mom gaves the man some money to buy two balloons they have two now the rabbit and the other ha animal has two balloons one one day um a little giraffe and um elephant they were playing with three balls and they were g they were going to go in the swimming pool so they got to the swimming pool with tickets and then they sawl a ba they saw their ball in the swimming pool,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +so they got it and then the gira the giraffe tried to come and get the balloon um balloon that they had so they he got it and then they then they got their ball and their balloon and then they went and played with them and so the elephant said thank you and then the giraffe said you are welcome and they played together with their um with their balloon one day um they the giraffe and elephant wanted to go swimming and then the giraffe ran,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and he and he ran in the swimming pool with her bathing suit on and then she then she hurt herself on the knee is that on this picture um uh yeah can you just tell me the story that is on the picture and you tell me to turn if i am not turning it fast enough and then she slipped because there was water when she was running and then and then she hurt herself so the lifeguard came and got her a bandage for her knee and then they so then they um went to swim again,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and she was all better so but first she had to sit on the bench a little bit and then she was okay and the lifeguard said no run can not you see the sign there is no running here the end one day there is a one day there was a giraffe and a um elephant the giraffe had a airplane and he was playing with it and then he al and then the elephant wanted to play with it,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 +so he na so um he did but then she took it away from the giraffe and then she dropped it in the water is that on this page or was that on the next page it was on that page oh okay so then it sank in and then the life then the lifeguard got mad so then the giraffe tell me should i be turning yet,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1,0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 +then the giraffe got mad at the elephant and she said she was sorry so she got her mom to catch the lifeguard is that what is on this page so the lifeguard could not reach it so she got her mom to reach it with a net and then the lifeguard she he came back to say sorry to the elephant because he he got mad at the elephant and then her mom catched it with um the thing and then the lifeguard he tried to get it again but her mom could not,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and the lifeguard could not so she got a big big net and she catched it is that on this page yeah remember i can not see so i just want you to tell the story that is on the page and then all the lifeguards and then the mom had a real long net so she grabbed it and she catched it and the giraffe said thank you,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 1 +and then she said you are welcome and then the they were both happy again and they played with it the end one day a lit a bunny rabbit went to the beach and she saw a p and he saw a puppy and she was making a sandcastle and then the bunny said can i help and the puppy said okay then they build a sandcastle,0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1,0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 1 0 0 0 0 1 +and the bunny got a bucket and she and then he got a shovel and he put it and he put sand in the bucket to make a sandcastle and the and the puppy was making the sss um a water hole and then the and then the rabbit wrecked it because he put all of all of sand on it and it pushed it down and the w puppy was very sad and then the and the puppy tried to build it again but it did not work and the rabbit was just he did not say sorry or anything,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +one day the puppy and the rabbit came for a picnic in a forest and then uh the rabbit ate too much and he got sick and was too full so the so the puppy dog went to get some help and then she but she did not find anyone yet until he s until she saw that the rabbit was sick and and then she got a nur she got a doctor that was walking by and then she took the rabbit and and took the stomach away ache and then the bunny and the r um bunny was still sick so the puppy he um she pulled on the doctor and then the doctor went on the picnic thing,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and the s and he was really sick so the puppy went away because the doctor said he needs to be alone for a while and the end oh just a second i missed one did not i yeah and the it was after he needs to be alone for a while and then and then um the puppy came back and he was all better but he had to go lie in bed one day the bunny went he he one day the bunny went to the forest,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and he and on the way there he saw a puppy and then they and then they saw a clown with balloons and so they asked bunnys mom if they could have some money for a balloon and she said yes so then they got a balloon and then they then their balloon uh there was a balloon tied onto puppys wagon and it fell away it flew away so then um tell me when to turn and then it and then it went and it disappeared up in the air,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and puppy was mad at at bunny and then and then they saw a clown a bunny with balloons a clown bunny with balloons so they asked bunny so they asked bunnys mom if they could have some money and then they bought a balloon with their money and puppy was very happy and they both got two balloons and then puppy ran over there to get a balloon but bunny had no money so she had to go to um the mom to get his money and then after that they got some money,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and they gave it to the clown bunny and then they got two balloons one yellow and one red and then but first they had to get the money from the doctor that fixed that helped bunny and then so they got two balloons ye yellow and blue and then they got one for the doctor red and then i do not know you are not sure on this one nothing to say on this one okay we will just turn then and then they bought the balloons,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 1 +and then they and then they got two balloons and then they were happy and they played with them and then they played with them and played the end once there was a giraffe who was standing by a pool and a elephant said came with a swimsuit on and said you want to play fetch but they were not so sure about playing near the pool just then when the elephant blew it with her trunk it fell in the pool the giraffe jumped in and swam to get the balloon the ball,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 +the giraffe came back with it in a minute and said and the gira and the elephant said oh you you got my balloon ball thank you sometimes i get mixed up with the words the giraffe felt pleased that he that he got the ball for the for her friend but the elephant just sta just stood there and smiled the end the giraffe and the elephant went to the pool because it was a hot summer day they were they looked at the pool and they were excited,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 +but the elephant said hey i am going to go off the diving board but she did not read the sign which said no running so she ran anyway just then the el the giraffe was catching up with her when she slipped and fell on her knee she got a cut on her knee and the giraffe went to get someone a lifeguard came as quickly as possible and helped the elephant the elephant thought it was going to sting but it did not they they put on the bandage,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 1 +and it was and it looked good as new the lifeguard was disappointed and the girl stood sat on the bench and said hi and the lifeguard was pointing at the no running sign the end the giraffe and the elephant went to play by the pool and the giraffe got a new toy plane and said you want to play with me the elephant said sure the giraffe flew the plane first but the elephant was so excited she just grabbed it out of her hands,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +the giraffe said my plane give it back i was not done my turn but the elephant did not care she was just flying it around just then she flew it too high and it fell in the pool and it started to sink the giraffe was mad at the elephant but the elephant just stood there puzzled the lifeguard came right by the two girls,0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 1 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +and one of the girls said one of the elephants said i can explain i i did not do it it was the giraffe just then g g the giraffe said she is lying it was her then it came like it was a big argument so the lifeguard said cool it who dropped it in the pool and the giraffe was pointing at the elephant the lifeguard tried to get catch it,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +but it was floating in the pool the giraffe started to cry when the lifeguard said he could not reach it and the elephant felt sorry just then a lady elephant came with a net she quickly got the plane with the net and it came and she pulled it f to her she said here you go is this your airplane and the giraffe said yes thank you very much the giraffe hugged her plane,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 0 1 1 0 0 0 1 0 0 0 0 1 +but the elephant was happy the end one day at the park there was a baby dog who was making a sandcastle just then a bunny came along and said can i help you the dog said sure they wanted to help build a the biggest sandcastle in the world so the rabbit was going to build it so he got some sand in a pail and started digging just then he decided that a shovel was not so slow after all so he decided to dump it on the castle,0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +so he did but when he realized he had wrecked it he was so embarrassed the dog started to cry and rebuild the sandcastle but the rabbit just stood there and looked like he did nothing the end there there once was a dog who was going on a picnic in the park and then he saw a rabbit so he they decided to go together when the om when they unpacked the lunch the rabbit was so hungry s the rabbit was so hungry,0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +but the dog was not so the rabbit ate all the stuff when the dog was eating the bunny had already finished the bunny had a terrible stomachache while the dog was eating the dog just stood there puzzled and said are you okay and the rabbit said no i feel like i am going to hurl just then the dog ran to the doc doctor who was standing right by the path she said excuse me could you help my friend here he has a stomachache so but the doctor said no,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 1 +she had a patient who was waiting for her but the dog really needed her so she took the doctor and dragged them to the picnic the doctor said i will take your temperature now and you will feel much better just then the bunny f got up and he felt queasy then the doctor and the bunny went home they walked together back home the end,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 +there once was a dog who was pulling a wagon with a balloon tied to it then he saw the bunny then they wanted to play with the balloon the bunny wanted to touch the balloon because he thought it was cool but the dog did not really want him to so the rabbit just then the rabbit did not care about what the dog said so the rabbit untied the balloon and the dog was ss was a lit was beginning to get a little fed up just then the balloon floated away and they were trying to catch it,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 +but they were too short the dog was so angry at the rabbit the rabbit just stared at the balloon and he felt like he was getting a little scared because the dog was mad just then they saw a balloon seller who had tons of balloons and he just stood there so the dog and the rabbit decided to go buy a new one the rabbit said may i have a balloon please for my friend over there the man said sure but you will have to pay for that for the balloon the rabbit looked through his pockets,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +just then it said a sign said balloons five cents and he did not have five cents he and the ra the rabbit and the dog looked at the balloon seller they told him that they did not have five cents just then the bunny went to the went to a lady who was standing nearby and he said excuse me do you have five cents because i need to buy a balloon for a friend the rabbit looked puzzled the lady rabbit gave five cents for two balloons and the bunny and the dog were jumping up and down in excitement then they both got balloons,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and they hugged and they loved them real much the end this is this story is called the ball one day this little girl was playing with a ball and a lifeguard was playing with it too and so when she was playing with the ball she accidentally dropped it in the pool and then the lifeguard went in the water and swam and got the balloon and got the ball and when he did she was so happy and then she um she asked him if he wants to play with her again the end,0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1,0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 +this story is called the scratch one day a little girl was going swimming and she was running to the board and when she did she slipped and she and when she slipped she got a cut on her knee and then the lifegua and then another lifeguard came running and said are you okay and then he put a bandaid on and then he put him on put her on the bench and she would not be able she was not able to swim but then the lifeguard was really mad because he she should have seen the the sign no running,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 +the end this story is called the airplane one day this little boy and this little girl were playing with an air airplane the girl asked can i play with it now and he said okay and then it and then she accidentally dropped it in the water when she did the little boy got all mad and then she went up to the lifeguard and asked the lifeguard if he could get the airplane and when he said okay i will try he tried but he could not reach it,0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1,0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 +and then he and then the little boy was crying but then the girl lifeguard came and she got a net then she tried to get it and she did and then the little boy was so happy and then the little girl said i am sorry for for wrecking your toy the end this story is called um the castle that breaks one day there is there is a little girl and a little boy who is playing in the sand,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the little girl builded a castle and the little boy dumped a bucket he did not mean to dump the bucket oh on the castle and then when he did the girl got all mad sad and she was crying and the bunny said sorry this story is called the picnic one day a little a doggy and a dog and a rabbit was eating was having a picnic and the rabbit ate too much so he got sick,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 +and then the poochy ran over to a doctor near by the pooch said help help a little boy is sick so the doctor checked the boy and said he was si he had to go home and then he felt better this story is called the puppy who had two balloons one day a pup his uh somebodys friend came over to check his balloon out and when he did he tied the rope off the the wagon and when he did the ba balloon got away and then the puppy is all mad,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +and then the rabbit saw some more balloons and he asked some for a balloon but the guy said balloons are five cents and the bunny did not have any money so so the bunny said um well i accidentally lost one that my friends balloon and so he and then the balloon man said no you still need to pay five cents so then the bunny went over to an adult to ask for five cents and when he did ask she said okay and then she paid him five cents and then the boy the girl got his her balloon a another balloon back,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and then she was all happy the end once upon a time there was a giraffe and a elephant playing around the pool and one of they were playing with a ball and it f it fell in the water and the giraffe swam to the balloon the ball and then he swam back to the elephant and gave it back to her and she was very happy that he got it for the elephant the end once upon a time there was a giraffe and a elephant around the pool,0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +and the elephant wanted to jump off the j the the tr um the um wanted to jump in the pool and sh when she was running to it she slipped and she fell she got a scra a scratch on her knee and the giraffe ran to the lifeguard and he got a bandaid and they they he put it on her knee and and he sent her to the the bench and and he show her no running sign the end,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 +one there was two friends an elephant and a giraffe the giraffe had a toy that it was a airplane he was playing around with it and a elephant wanted to play with it too and elephant took it from the giraffe and p played around with it and she dropped it into the pool and she she was very sad and the giraffe was very angry at her the lifeguard ran uh came to the elephant and the giraffe and the the el the lifeguard the elephant said that i by accident i threw the giraffes airplane inside the water,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 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 1 +and the lifeguard was trying to get it but it was too far and he said i can not do anything and the giraffe started to cry a net catcher came to the hopeless giraffe and she had a net in her hand and she got the airplane by her net and the giraffe stopped crying and the lady gave it to the giraffe and he is very he was very happy,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +the end once upon a time there was a little dog that made a castle and a a rabbit he came a along and wanted to help him and then he he dump he dumped some sand inside a bucket and the and he scooped some up and then he dumped it on there on the castle and then and it got covered and and then it really did not do it was was a cloud of sand and the dog was building it again the end,0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1,0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 +there was two friends that were walking along for a picnic and the ra the fr one of the friends had a lot of f food than the other friend and then he ate all of it and and he got really stuffed and then he he was very sick and his stomach was really hurting and one of the friends called the doctor and the dog called her the the doctor to help and the doctor said do not eat a lot of food and he went home,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 +and he had some rest the end once upon a time there was a two friends walking along with their wagon and one of the friends said this is a nice wagon and a nice balloon you have on it he tied it off and he and he wanted to hold it and then the balloon fell flew away and then they were re one of the friends balloon was very disappointed and one of the friends saw a a man selling balloons so he ran over there,0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1,0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 +and he he got one from the man can i have one of those balloons he said but it was actually five cents to buy the one of the balloons it w he was really sad that he lost one of the friend his friend balloon he asked a person by if sh they had five cents and he he pointed to the balloons and he said there is only balloons for five cents and i have no money and she she bought two for each of the the friends and they said thank you thank you for the balloons,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 +the end there is an elephant and a giraffe bouncing a ball having fun with the ball and the ball goes into the water gets bounced into the water the giraffe goes to get it he is really wet he gives it to the elephant and the elephant the elephant is holding it and the giraffe is smiling quite a lot the giraffe and the elephant are looking to the water and the gira the elephant sees a diving board,0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +the elephant is running and slips on the pavement on the deck and scrapes her knee the giraffe came over and the lifeguard came over and looked at it and bandaged it up and the elephant sat on a bench and the the lifeguard pointed at the no running sign the giraffe and the elephant are playing with a airplane toy airplane the giraffe is making it go really high the elephant grabs it away and starts playing with it it goes in the water the giraffe is really mad at the elephant,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 +and the lifeguard sees the toy in the water and looks mad and the lifeguard and the el other elephant are talking and the lifeguard tries to reach the airplane but he can not the lifeguard is kind of shrugging his shoulders thinking what can i do and then another person comes with a net and gets it out for them and the giraffe is really really happy and the giraffe is hugging his toy the bunny and something else are playing i think it is a dog that are playing with sand,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 +and the bunny put is getting some sand out of a pail he dumps sand on a sandcastle then the sandcastle is all wrecked the bunny feels really bad and i think it is the dog that is crying the bunny and the dog i think are going for a picnic the dog and the the bunny is eating too much he has maybe twenty things he is eating lots and the bunny is really full,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 +and the dog is just eating his sandwich and drinking juice box and the bunny is feeling dizzy and the dog thinks oh i should go get some help so he runs to a doctor walking down the road and pulls the doctor over to her friend and the doctor checks her friend out and takes her the dogs friend home the rabbit there is the dog and the bunny the bunny is coming down the road jogging he and the dog has a wagon with a balloon tied to it the bunny grabs the balloon and the dog is kind of fine with it,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +and then the dog kind of freaks out starts freaking out and the bunny and the dog tried to grab it but they can not because it is floating up into the air and the dog is really mad at the bunny then the do the bunny goes to the balloon man he asks for a balloon he says five cents for a balloon and the bunny has no money so the the little bunny looks at the balloon man very innocently and then goes to his the doctor his dad and i just see him going to his dad or the doctor,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 diff --git a/compare_cunit.py b/compare_cunit.py new file mode 100644 index 0000000000000000000000000000000000000000..6d45b426537cd4b4fe1f5b54cc34b1f0400bcf0c --- /dev/null +++ b/compare_cunit.py @@ -0,0 +1,74 @@ +#!/usr/bin/env python3 +""" +Script to compare original transcription with c-unit segmented transcription +""" +import json +import os + + +def compare_transcriptions(session_id): + """Compare original and c-unit transcriptions""" + + session_dir = f"session_data/{session_id}" + original_file = os.path.join(session_dir, "transcription.json") + cunit_file = os.path.join(session_dir, "transcription_cunit.json") + + # Check if files exist + if not os.path.exists(original_file): + print(f"Original transcription file not found: {original_file}") + return + + if not os.path.exists(cunit_file): + print(f"C-unit transcription file not found: {cunit_file}") + return + + # Load original transcription + with open(original_file, 'r', encoding='utf-8') as f: + data = json.load(f) + # Handle both old and new format + if "segments" in data: + original_data = data["segments"] + else: + original_data = data + + # Load c-unit transcription + with open(cunit_file, 'r', encoding='utf-8') as f: + data = json.load(f) + # Handle both old and new format + if "segments" in data: + cunit_data = data["segments"] + else: + cunit_data = data + + print(f"Session ID: {session_id}") + print("=" * 80) + print(f"Original utterances: {len(original_data)}") + print(f"C-unit segments: {len(cunit_data)}") + print("=" * 80) + + print("\nORIGINAL TRANSCRIPTION:") + print("-" * 40) + for i, utterance in enumerate(original_data): + print(f"Utterance {i+1}: {utterance['text']}") + + print("\nC-UNIT SEGMENTED TRANSCRIPTION:") + print("-" * 40) + for i, cunit in enumerate(cunit_data): + print(f"C-unit {i+1}: {cunit['text']}") + + print("\nSIDE-BY-SIDE COMPARISON:") + print("-" * 40) + + # Reconstruct original text for comparison + original_full_text = " ".join([utterance['text'] for utterance in original_data]) + cunit_full_text = " ".join([cunit['text'] for cunit in cunit_data]) + + print(f"Original: {original_full_text}") + print(f"C-units: {cunit_full_text}") + + print(f"\nSegmentation ratio: {len(cunit_data) / len(original_data):.2f} c-units per utterance") + + +if __name__ == "__main__": + session_id = "000020" + compare_transcriptions(session_id) \ No newline at end of file diff --git a/data/ENNI_SALT/test/405.slt b/data/ENNI_SALT/test/405.slt new file mode 100644 index 0000000000000000000000000000000000000000..8fb8363ef4c644f9b1aef8b99713d51d6abdc607 --- /dev/null +++ b/data/ENNI_SALT/test/405.slt @@ -0,0 +1,134 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 5/19/1995 ++CA: 4;8;15 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 405=CHI ++Tape Location: Disk L1 track 7 += [Bg:A1] +C Once a horse met *an elephant [EU]. +C And then they saw a ball in a pool. +C And then the horse try/ed to swim and get the ball. +C And (the) then the elephant gave him the ball. +C And then the horse was wet. +C And the elephant was hold/ing the ball. +=C The end [+_bch]. += [Eg:A1] += [Bg:A2] +=C They might be the same [+_bch]. +E Oh well you start it off any way you want. +=C Okay [+_bch]. +C Once (a horse : and) (this) this was a horse (and saw) (saw that) that I just talk/ed about. +C but the ball was not in[!] there. +E Okay. +C And then the elephant want/ed to go in. +C (I mean not) : and then (he :) his feet went like this [~__points_to_legs_lifting_up]. +C Then he hurt : his knee cap. +C and then the horse help/ed him. +C Then there was another : elephant. +C And he was a lifeguard. +C And then I do not know what they did. +C But they are do/ing something :. +E What do you think they are do/ing? +=C Well how you look at the picture cause I do not know [+_bch]. +E oh it does not matter. +E What do you think is happen/ing ? +C I : think they are battle/ing [~_?]. +E okay. +C And then they sat on the bench. +C And then : the lifeguard was mad. +E Okay. +C And : [+/]^ +E Are you point/ing at something ? +=C I am I am just I am just xxx [+_bch]. +E Okay, are you all done ? +=C Yes [+_bch]. +E Okay. +=C The end [+_bch]. += [Eg:A2] += [Bg:A3] +C Once : that horse : and elephant was[EW:were] happy near the swimming pool. +C (Oh) and then the horse had an airplane to play with : (a) which : had (ss : ah) something come/ing down : the bottom. +E Okay. +C And the elephant went like this [~_gestures_with_arm]. +C Then he[!] try/ed it. +C And the horse went like this [~_gestures_with_arm_again]. +C Then they put it : in the water. +C And then the elephant went like this [~_gestures_with_arm_again]. +C And then the horse was mad. +C And then the lifeguard went like this [~_pointing_angry_finger]. +C Then the elephant talk/ed to him a little bit. +C And then : the lifeguard try/ed to : get it. +C But he could not. +C And the horse cry/ed. +C (an :) and then a[EW:an] elephant with a net came. +C And she caught[!] it. +C And then she gave it back to the horse. +C And : then the horse went like this [~_displays_action_with_arms_and__shoulders]. +E What do/3s that mean? +=C They love it [+_bch]. +E oh, good. +=C and the end [+_bch]. += [Eg:A3] += [Bg:B1] +C Once : two rabbit/s : made a sandcastle. +C And it was a great one. +C And then : one : did this with a xx . +C (and one took some s) and the other one took some sand from : (a) a : pail : because they were down at the beach. +C and then : he dump/ed it on the castle. +C and then : (it tur) part of it : stay/ed the way it was. +C but the rest turn/ed : into : just a lump. +C and then they try/ed to do it. +C but it was not very good that : time. +=C The end [+_bch]. += [Eg:B1] += [Bg:B2] +C We saw two : rabbit/s had basket/s and were in : part of the forest. +C Or we can call it the wood/s. +E Yeah we can. +C Then they had a picnic. +C then one of them belly got this big [~_pantomimes_his_stomach__sticking_out] [EU]. +E How big? +=C About this big [~_repeats_gesture] [+_bch]. +E Wow. +C And then in the picture there is a twirl around on his head. +C and then : a bigger : bunny came up. +C and they run to that bunny. +C and then he falled|fall[EW:fell] asleep [~_laughs]. +C And then : he did this [~_gestures_with_arms]. +E What/'does that mean? +E Why did he do that? +=C I do not know [+_bch]. +E Okay. +C And then : he was happy. +E He was happy? +=C Yes [+_bch]. +E Okay. +=C The end [+_bch]. += [Eg:B2] += [Bg:B3] +C Once : that little bunny was pull/ing a wagon. +C and that other : fat bunny came up. +C and then he : like/ed the balloon [EU]. +C and then he try/ed to get off. +C and then : he got it off. +C but they lost the grip. +C And it was helium. +C And then another man came with : a bunch of balloon/s. +C (but x) But then[!] : (they) he went : to them. +C and : he : said that (it) the balloon/s were five : cent/s. +C and he could not find[!] five cent/s. +C and then they were sad[!]. +C then they : went back to (that) out by (the) we found that other story [EU]. +C and he said : I want one of those balloon/s. +C he gave him five : cent/s. +C And then they gave : him a balloon. +C And they gave : him to them [EU]. +E To who? +=C To them [+_bch]. +E Oh. +C And then : they both[!] have one[!]. +=C The end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/test/410.slt b/data/ENNI_SALT/test/410.slt new file mode 100644 index 0000000000000000000000000000000000000000..92d72bdbb87229b1829843985e272d4e052ce52d --- /dev/null +++ b/data/ENNI_SALT/test/410.slt @@ -0,0 +1,92 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 1/5/1996 ++DOE: 3/3/2000 ++CA: 4;1;27 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 410=CHI ++Tape Location: Disk M1 Track 55 += [Bg:A1] +C the elephant and the cow : [EU]. +E umhm [~_long_pause] so you have told me what is in the picture can you tell me a story about it ? +C (cow) : (elephant) cow and a[EW:an] elephant [EU]. +E umhm [~_long_pause] what is happen/ing ? +C they are try/ing to find each other. +C the elephant and the cow had a[EW:an] accident with the ball[-:] . +C and (the eleph) the cow got in there. +E the cow got what ? +=C (he got in there) he got in[!] there [+_bch]. +C and the elephant got it. +C and the cow is still in there. +C (and : the cow) and (the) the cow is drip/ing. +C and she : has the ball. += [Eg:A1] += [Bg:A2] +C there is (a slide cow and a[EW:an] elephant) : a cow and a[EW:an] elephant and a slide and a pool. +C and the elephant is run/ing and slip/ing. +C and the sand and the cow [EU]. +C and she got hurt. +C : she got hurt on her knee. +C : and it hurted|hurt[EW:hurt]. +C : and she can not go in the pool[-:] . +C and she hurt herself. += [Eg:A2] += [Bg:A3] +C (uh the bo) the cow and the elephant [EU]. +C (the cow) the elephant has a ribbon and a dress. +C and[-:] the cow gots[EW:has] a[EW:an] airplane. +C (and) : and (uh) she got it. +C and it got[EW:went] in the water. +C and the cow was mad[-:] . +C and she is mad too. +C both of them are all mad. +C and the elephant is get/ing it. +C : he try/ed and try/ed to get it. +C : she gots[EW:has] a net to catch it. +C and she is go/ing to get it with the net. +C and they got it back. +C and they are happy. += [Eg:A3] += [Bg:B1] +C the rabbit (and the d) (the d) (he) she made (a) a sandcastle. +C and the rabbit gots[EW:has] a shovel. +C and the rabbit want/3s to play[-:] . +C (and the s) (and he s g) something is go/ing to happen to the sandcastle. +C and : it brokeded|broke[EW:broke]. +C and then (the) she is cry/ing. += [Eg:B1] += [Bg:B2] +C they got[EW:have] picnic basket/s [~_pronounced_/baeksIts/]. +C and they are have/ing lunch. +C (and they are havi) and the rabbit is full. +E and the rabbit is what? +=C full[-:] [+_bch]. +C (and they are) (and) and (the) : she is hungry. +C (and the[-:]) (de[-:] ) and she go/3s to another lady. +C : and : (sh) (she) she is go/ing to say hi. +C and[-:] there is the rabbit/z mom. += [Eg:B2] += [Bg:B3] +C (the[-:]) there is a balloon and a wagon. +C and she is carry/ing [EU]. +C and the rabbit is not. +E the rabbit is what? +=C he is not carry/ing and the girl is just carry/ing it [+_bch]. +E what did you say the rabbit was carrying? +=C nothing [+_bch]. +C and (there) the balloon is go/ing to[:_gon(na)] be poppeded|pop[EW:popped]. +C : and the (rab) the rabbit is go/ing to take it off. +C : and it is go/ing away. +C : and it got away. +C : and they were go and get another one from the man [EU]. +E can you take your fingers out of your mouth then I can hear your words better? +C they are pick/ing one. +C : and they are go/ing to[:_gonna] give one. +C (and : they are gon to go) the man said no. +C : (and) and (there is) there is the bunny/z mom. +C and : (he is) (the b) the rabbit said [~_high_pitched__voice] he will not give me a balloon. +C and : now (it xx) he is get/ing one. +C : and he got both : balloon/s. += [Eg:B3] diff --git a/data/ENNI_SALT/test/413.slt b/data/ENNI_SALT/test/413.slt new file mode 100644 index 0000000000000000000000000000000000000000..2b05eef8f9ee84179ce2ba42b1ccfa82c7d4e622 --- /dev/null +++ b/data/ENNI_SALT/test/413.slt @@ -0,0 +1,96 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 5/31/1995 ++DOE: 4/26/2000 ++CA: 4;10;26 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 413=CHI ++Tape Location: Disk L11 Track 30 += [Bg:A1] +C Play ball [~_sentence_stress_on_"ball"]. +C and : he take/ing swimming pool [EU]. +C and he get[EW:got] it. +C and thank you[-:]. +C and welcome[?] (uh)[?] [EU]. +=C and over [+_bch]. += [Eg:A1] += [Bg:A2] +C Play swim/ing [EU]. +C and go[EW:goes] in it [EU]. +C (and) and run [EU]. +C and walk on knee [EU]. +C and her[EW:she] cry[EW:cried] : and cry[EW:cried] lot/s. +C and sit on bench [EU]. +C and stay here [EU]. +E the what? +C and stay on *the bench [EU]. +=C over [+_bch]. += [Eg:A2] += [Bg:A3] +C Play! +E play? +C play a[!] play [EU]. +C and play a play again [EU]. +C and play it (in) in water [EU]. +C and : it *is angry [EU]. +C and : say : bad [EU]. +C and : dad [EU]. +E what is that? +=C daddy [+_bch]. +C I play[EW:played] in *the pool [EU]. +C and (they are get it) (get[!] it) : I am get[EW:getting][!] it. +C look/ing [EU]. +C and get[EW:got] it [EU]. +C and : it in there [EU]. +C I get[EW:got][!] it. +C you get[!] it. +C and : (loff/ed it) [~_EXA:_and_what] love/ed it [EU]. +E lov/ed it [EU]. += [Eg:A3] += [Bg:B1] +C He play[EW:played] (on s) in *the sand [EU]. +C and play make castle [EU]. +C and dump[EW:dumped] it [EU]. +E and what? +=C dump it [+_bch]. +C oh no. +C oops sorry. +C and cry[EW:cried] [EU]. +C uhoh. += [Eg:B1] += [Bg:B2] +C They go picnic [EU]. +C and eat [EU]. +C and they drinks[EW:drink] juice. +C and hungry [EU]. +C and : (that girl : her tummy) that man *is sick [EU]. +E she what? +=C sick [+_bch]. +C and : a bunny : his[?] : tummy hurt/3s. +=C and turn that [+_bch]. +C and : go *to doctor/z house [EU]. +E he what? +=C doctor [+_bch]. +=C all done [+_bch]. += [Eg:B2] += [Bg:B3] +C her[EW:she] play[EW:played]. +C and : hold that up higher [EU]. +C tie it up [EU]. +C and up higher [EU]. +C and up clouds [EU]. +C angry [EU]. +C and : man[!] [EU]. +E : what? +C man balloon/s on it [EU]. +C (him) : him[EW:he] take[EW:took] one. +C (and) and xxx. +C and bring[?] doctor here and check [EU]. +C and talk [EU]. +C and money [EU]. +C and balloon [EU]. +C and two balloon/s [EU]. +=C and over [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/test/416.slt b/data/ENNI_SALT/test/416.slt new file mode 100644 index 0000000000000000000000000000000000000000..ed1301265e7046461a81cc74b8cae6e29071d018 --- /dev/null +++ b/data/ENNI_SALT/test/416.slt @@ -0,0 +1,103 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOE: 11/29/2000 ++CA: 4;9;27 ++Gender: F ++Context: Nar ++Group of CHI: TD ++Tape Location: Disk M6 Track 47 ++ID: 416=CHI += [Bg:A1] +C the zebra was go/ing to the zoo. +C and the elephant : want/ed to come and show : them : his practice at the circus. +C and then they saw something inside a[EW:the] water. +C but : the giraffe want/ed to get that ball : because : the elephant drop/ed it. +C and the elephant said thank you for get/ing it. += [Eg:A1] += [Bg:A2] +C the elephant want/ed to go swim/ing. +C but it : ran : jump/ed into the pool [EU]. +C and it hurt itself. +E is that what is on this page ? +C the elephant ran. +C then when it ran it : just ran fast. +C and then : (it um) it fell down. +C and it hurt it/z knee. +C and then another elephant came : what[EW:that] was the lifeguard. +C (he) and the lifeguard saw : the elephant hurt itself. +C then the lifeguard : said you can not swim without a lifeguard if it tell/3s you. +C and it said [~_EXA:_can_you_take_your_finger_out_of_your_mouth] go on the bench. +C [~_stern_voice] and no more go/ing swim/ing : until you calm down and I say so. += [Eg:A2] += [Bg:A3] +C (the zebra w) [~_I_mean] the giraffe want/ed to put his airplane in to see it swim. +C (and it) and it did. +C and then it : went in the water. +C and the : giraffe did not know how to get it out. +C but then : the elephant took it from it[EW:him]. +C and then : it[EW:he] : drop/ed it in the water. +C and then the lifeguard : did not know how that (it) airplane got in. +C said : (um) : that is the giraffe/z airplane [EU]. +C and the lifeguard try/ed to get it. +C but he could not reach it. +C and the giraffe was sad because nobody could get it. +C then another elephant [EU]. +C and it[EW:she] got (um) a thing what[EW:that] you catch fish with. +C and it try/ed out to do it [EU]. +C but : it got (it :) the airplane. +C the elephant who caught fish gave it to the : giraffe. +C and giraffe said thank you. +C giraffe was happy. += [Eg:A3] += [Bg:B1] +C he was make/ing a castle (in :) in the beach. +C what[?] he got the sandbox he won[?] [EU]. +C and he made a castle there. +C then when : he was done make/ing the castle he want/ed to make another one. +C and then he tip/ed sand on it. +C but : he was afraid if it was going to crash. +C and it did crash. +C but he had to make another one. +C but it was hard to make. += [Eg:B1] += [Bg:B2] +C they were go/ing to[:_gonna] go and have a picnic. +C and the bunny want/ed to come. +C and he said yes. +C they eated|eat[EW:ate] carrot/s. +C and they listen/ed to some music. +C and the : bunny rabbit was full. +C and the puppy dog was not. +C and then the bunny rabbit got sick. +C and the puppy dog was : not very happy. +C and then : (um) the bunny rabbit/z grandma came. +C and the puppy said : the bunny rabbit is sick. +C and they said come here come here. +C and she came. +C and she look/ed at the bunny rabbit and said : you are sick! +C then they went back home. +C the puppy dog was all alone have/ing a picnic. += [Eg:B2] += [Bg:B3] +C they were go/ing to a circus. +C and they brought a wagon with a balloon on it. +C then bunny want/ed to grab the balloon. +C but the puppy dog would not let it. +C (so it said :) it is putt/ing it in a knot he said. +C then it flied|fly[EW:flew] away. +C and he was mad at the bunny rabbit. +C and then : there is a man with a whole bunch of balloon/s. +C and puppy dog was mad. +C but then : the bunny rabbit : was not. +C he want/ed some balloon/s. +C and he said please can I have a balloon? +C but : the man would not let him. +C he had no money. +C but the puppy dog did. +C (so the pup) but then : the bunny rabbit saw another bunny rabbit : ask/ed can I come to wherever you go [EU]? +C can I have a balloon if you have some? +C (and he said) but then he realiz/ed that is not : a man. +C that is a girl. +C said (y) yes [EU]. +C then : he gave her a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/test/425.slt b/data/ENNI_SALT/test/425.slt new file mode 100644 index 0000000000000000000000000000000000000000..40138c947690672e38d8970c3bfd43a3765752b2 --- /dev/null +++ b/data/ENNI_SALT/test/425.slt @@ -0,0 +1,123 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 6/8/1995 ++DOE: 4/11/2000 ++CA: 4;10;3 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 425=CHI ++Tape Location: Disk L5 Track 10 += [Bg:A1] +C A[EW:an] elephant is go/ing to his friend. +C he is say/ing (what is there) what is in there ? +C orange. +C : he said (the) the orange fall[EW:fell] down in the water. +C and then (the) his friend, (he) he falled|fell[EW:fell] in the water. +C he was try/ing to get the orange. +C (and then) (and then the elephant got the thing out) : and then : the elephant got the orange out. +C (and then he walk/ed) (and then he walk/ed his) and then he walk/ed to his home. +=C The end[!] [+_bch]. += [Eg:A1] += [Bg:A2] +C (Um the) the elephant and the friend he was go/ing to the pool [EU]. +C they were go/ing to jump into the pool really fast. +C and they are go/ing to jump into where the side/s are. +C (and they) and (the) his friend hurt his leg. +C he hurt his leg. +C and that hurt/3s really bad. +C (um his f) his (um) his brother came. +C (and he) (and so he) and he seed|see[EW:saw] what happen/ed. +C and he gave him a bandaid. +C (and then it hur) and then he went home. += [Eg:A2] += [Bg:A3] +C They were go/ing to play pool again. +C (and then there) and then he was drive/ing *an airplane [EU]. +C and then (the) his friend was (drive/ing a) (drive/ing) drive/ing a[EW:an] airplane. +C (and play/ing again) they are play/ing again. +C (they were going to jump i) and the airplane got in the water. +E okay. +C (and then he was try/ing to) and then he was very mad. +C (and then his friend) and then (his sister went over to that girl t : um) the sister went over to the brother. +C (and then he) and then the brother came over her [EU]. +C (and then) and then he sawed|see[EW:saw] what happened. +C and then he is try/ing to get it. +C and then (he) he did not know how to get it. +C he try/ed. +C he pick/ed that. +C and then he try/ed to get it. +=C hey (look) look behind here [+_bch]! +C (um) the boy has girl hair. +C (the) the girl : was pretty. +C then he try/ed to get it. +C and she *was try/ing to get that (um) airplane [EU]. +C (and then he tr) and then he got it. +C and he was very happy. +C (and then : h) and then the elephant was very happy too. +=C The end [+_bch]. += [Eg:A3] += [Bg:B1] +C (I see a bunny that is in the s um) I see a dog that is in the sandbox and help/ing the bunny. +C (and the bunny) and the bunny is make/ing a sandcastle. +C they are try/ing to make a sandcastle. +C (and he is help/ing) and he is help/ing the dog. +C and (uh um) the rabbit broke the doggy/z castle. +C and then he was make/ing it all over again. +=C The end[!] [+_bch]. += [Eg:B1] += [Bg:B2] +C (Um) the bunny was go/ing for a picnic. +C he was follow/ing the dog. +C and : then they were there already. +C they were play/ing in the sandbox with a picnic. +C (and then he burped) and then he burp/ed. +C (and then he was eating all th) and then the dog was eat/ing all the other thing[EW:things]. +C he was eat/ing one at a time. +C (and then : he was) and (then he sawed|see[EW:saw]) then the dog : he was lay/ing down. +C and then he was sleep/ing. +C he was kind of asleep. +C but he did not. +C (and then :) and (then he was turn/ed into a doctor) then he was turn/ed into a doctor. +C (and he had) and he had doctor thing/s. +C (and :) and a doctor came. +C and then : he went with the doctor. +C and then he tooked|take[EW:took] him to the doctor : where the doctor thing is [~__laughs]. +C and then : he laid down with a blankie. +C went to sleep [EU]. +C (and then) : and then the doctor came (to a different) to a different man. +C but it was not that man. +C (he was so) he was so tall. +C and he was try/ing to help the man. +C (and then he w) and then the doctor came (with this) with : the bunny. +C he was go/ing to the doctor. +=C the end[!] [+_bch]. += [Eg:B2] += [Bg:B3] +C they are go/ing to the (um) : circus. +C and then (the bunny was c) the bunny came with him. +C (and he had) and he had a balloon. +C (and then he w) and then he was try/ing to get the balloon. +C and he was follow/ing him. +C and then he took it off. +C (and then it po) and then it was gone. +C and they were try/ing to (get it) : (get) (get) get it back. +C and then he was very mad. +C and then he said I am sorry. +C and then he had a whole bunch : of balloon/s. +C (and then he want/ed) (and then he want/ed m) and then he was go/ing to get one. +C and then he want/ed one. +C and then he had some dollars[EW:money]. +C (and he was) then he was go/ing to[:_gonna] buy one. +C : and then : he gots[EW:has] no money. +C and then he could not buy one. +C (and then he was) and then the doctor (help him) help|help[EW:helps] him. +C and then he gave him some money. +C (and then) and then he want/ed the balloon. +C and then (um) : he got a balloon for him. +C he gave him some money. +C and then : he got a balloon. +C (and they wan) (and they like/ed) and they like/ed it. +C (and then they said) and then they said : thank you. +=C The end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/test/441.slt b/data/ENNI_SALT/test/441.slt new file mode 100644 index 0000000000000000000000000000000000000000..dba693ddbae850e939f9aaeb141ef4fa19b634ef --- /dev/null +++ b/data/ENNI_SALT/test/441.slt @@ -0,0 +1,82 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 7/21/1995 ++DOE: 6/27/2000 ++CA: 4;11;6 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 441=CHI ++Tape Location: Disk L19 Track 52 += [Bg:A1] +C the elephant is (talk/ing to the) : talk/ing to a horse. +C the elephant is push/ing the horse. +C the elephant push/ed : the horse in the water. +C the elephant is help/ing him out. +C : the elephant *is (ah) : be/ing nice [EU]. +=C and that is the end [+_bch]. += [Eg:A1] += [Bg:A2] +C the elephant is be/ing nice. +C (elephant) the elephant is go/ing to[:_gonna] jump in the water. +C (th) the elephant is run/ing. +C the elephant (got a) got an owie. +C the elephant is cry/ing. +C : (uh) the daddy is put/ing a bandaid on it. +C and she is sit/ing on a bench. +C (uh and she was) (and she is be) and she was just tease/ing. +C she was just tease/ing that she had a owie. += [Eg:A2] += [Bg:A3] +C the elephant is make/ing funny faces. +C : the elephant is : (uh) : look/ing at the airplane. +C the elephant (s) want/3s to fly it. +C (the elephant is) the elephant is : sink/ing it. +C (the elephant is) and : the elephant is look/ing at : the airplane sink/ing. +C : and (hm) the elephant is : mad. +C : and (she s) she said to her dad (that) (that) that I sinked|sink[EW:sunk] : his airplane. +C and the dad is try/ing to get it. +C : and the dad is : put/ing his hands out like this. +C (and) (and the ga) (and) (and the fly) : (fly : swatter) [~_child_whispers_swatter] (uh) and she is try/ing to get it with the fly (shw) (ss) swatter : (s) . +C (and) and she got it out for him. +C now the elephant is happy. +=C and that is the end [+_bch]. += [Eg:A3] += [Bg:B1] +C (um) they are play/ing in sand. +C the rabbit is dig/ing in sand. +C the rabbit is : put/ing sand on the sandcastle. +C the rabbit wreck/ed the sandcastle. +C : (and) and the : piggy is sad. +C and he is build/ing it back up. +=C and that the end [+_bch]. += [Eg:B1] += [Bg:B2] +C the rabbit is walk/ing down the : path. +C (the ra) (they are have/ing a) the pig and the rabbit are have/ing a picnic. +C the rabbit is eat/ing candy. +C : (the rabbit is) : the rabbit is feel/ing sick. +C (and they are gi) (and the) : and the pig has a flower in his hand. +C and the pig is pull/ing (the) the girl bunny/z : hand. +C and the girl bunny hit him on the head. +C and the girl bunny is take/ing him. +=C and that is the end [+_bch]. += [Eg:B2] += [Bg:B3] +C the rabbit (wr) walk/ing down the path again. +C the rabbit is look/ing at the balloon. +C (the pig has a f um) the rabbit is untie/ing the balloon. +C and the balloon is go/ing up. +C and the pig is get/ing mad at the rabbit. +C (and) : and there is another rabbit. +C and they are go/ing to[:_gonna] go buy another one. +C and they are go/ing to [:_gonna] get one. +C : and (then they are go/ing to [:_gonna] ge) (go get another one from someone else) then they are go/ing to [:_gonna] go get another one from someone else. +C and then they got one. +C (and then the) (and then the) (then the gi) (then the girl um) (and) and the rabbit is run/ing to (the girl : bunny) : the girl rabbit. +C (n and) (and then) (and) and he is point/ing to the balloon/s. +C (and) and they want another balloon. +C so they are get/ing : their mom to buy another one. +C (and this t) and they got their own this time. +=C and that is the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/test/444.slt b/data/ENNI_SALT/test/444.slt new file mode 100644 index 0000000000000000000000000000000000000000..70021217aecdab9ddddeb926faad0eef67e5267b --- /dev/null +++ b/data/ENNI_SALT/test/444.slt @@ -0,0 +1,116 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 3/30/1997 ++DOE: 6/03/2001 ++CA: 4;2;4 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 444=CHI ++Tape Location: Disk L29 Track 2 += [Bg:A1] +C elephant [EU]. +C zebra [EU]. +E what happen/3s in the story? +C (ze) zebra [EU]. +C ball [EU]. +C zebra and elephant [EU]. +C (ze : um) elephant and zebra and ball [EU]. +C zebra and the[?] ball (an) : and the[?] elephant [EU]. +C zebra and the elephant and the ball [EU]. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C [~_um_why_I_need_this] (um) elephant and zebra [EU]. +C elephant and zebra [EU]. +C elephant and zebra [EU]. +C (owie and uh) (owie) elephant has a[EW:an] owie. +C and the zebra do|do[EW:does] not has|have[EW:have] a[EW:an] owie. +C there is[EW:are] two elephant/s. +C zebra [EU]. +C two elephant[EW:elephants] [EU]. +C two elephant/s and zebra [EU]. +C two elephant/s and zebra [EU]. +C two (ele) elephant/s (st) [EU]. +C no zebra [EU]. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C elephant and zebra [EU]. +C (uh) : elephant and zebra [EU]. +C airplane [EU]. +C (uh) elephant and zebra : airplane [EU]. +C elephant and zebra airplane [EU]. +=C (uh) it is on [+_bch]. +=C what is that sound [+_bch]? +=C what is that sound in there [+_bch]? +C (um) elephant and zebra and : airplane [EU]. +C elephant and zebra [EU]. +C elephant and zebra [EU]. +C two : elephant/s and zebra [EU]. +C elephant and zebra and airplane [EU]. +C elephant and zebra [EU]. +C elephant and zebra [EU]. +C elephant and zebra [EU]. +C elephant and zebra [EU]. +C elephant and zebra [EU]. +C elephant and zebra [EU]. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C bunny [EU]. +E what happen/3s in the story? +C (um) sandcastle [EU]. +C sandcastle [EU]. +C sandcastle and puppy and bunny [EU]. +C (sandcastle and bun) (uh : san) sandcastle and : (dog) doggy and rabbit [EU]. +C bunny [EU]. +C *the sandcastle breaked|break[EW:broke] [EU]. +C a sandcastle breaked|break[EW:broke]. +C they are make/ing it again. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C (um) basket [EU]. +C puppy and : rabbit [EU]. +C carrot [EU]. +=C I said a carrot that is it [+_bch]. +C drink [EU]. +C (pa) basket [EU]. +C sandwich [EU]. +C juice [EU]. +=C I said juice [+_bch]. +E : what happen/3s in the story? +C (um) tree [EU]. +C tree [EU]. +C (tr) : tree [EU]. +C tree [EU]. +C tree [EU]. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C (uh) balloon [EU]. +C balloon [EU]. +C balloon [EU]. +E what happen/3s in the story? +C balloon [EU]. +C balloon [EU]. +C fly away balloon. +C (t) pop/ed the balloon [EU]. +C lot/s of balloon/s [EU]. +C lot/s of balloon/s [EU]. +C lot/s of balloon/s [EU]. +C five balloon[EW:balloons] [EU]. +C lot/s of balloon/s [EU]. +=C I said lot/s of balloon/s [+_bch]. +C lot/s of balloon/s [EU]. +C yeah (uh) : lot/s of balloon/s [EU]. +C let us count the balloon/s (in here) in this picture. +C [~_counts_balloons:_1_2_3_4_6_7_8_9]. +C there is[EW:are] nine. +C two : balloon/s [EU]. +C there is[EW:are] two balloon/s. +C none[EW:no] balloon[EW:balloons] [EU]. +C one balloon [EU]. +=C (two ba) the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/test/447.slt b/data/ENNI_SALT/test/447.slt new file mode 100644 index 0000000000000000000000000000000000000000..d5b86d005c3e6677638641f641f24a93aa40d057 --- /dev/null +++ b/data/ENNI_SALT/test/447.slt @@ -0,0 +1,84 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 11/12/1996 ++DOE: 1/17/2001 ++CA: 4;2;5 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 447=CHI ++Tape Location: Disk L23 Track 80 += [Bg:A1] +C (uh) he walk/3s to a horsey. +C and then the horsey (fell) fall/3s down. +C then the horsey fell in the water. +C and then he : give/3s the ball back to him. +C and then : they play with it. +=C and that is the end so [+_bch]. += [Eg:A1] += [Bg:A2] +C (um) he go/3s in the sandbox with the elephant. +C and then they walk (in the) into the sandbox. +C and then they walk into the hill. +C and then they laugh. +C (and then they got a scr) and then elephant got a scrape. +C and (then he) then he start/ed to cry. +C and then (he) he sat up and got a (bandage) bandage. +C and he said are you okay? +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C (um) he found an airplane in the sandbox. +C (and then he) (and then the) and then he fly/3s it up in the sky. +C (and then he stands up) [~_other_child_talking] and then he stand/3s up in the sandbox. +C and then they (br) broke the airplane in the sandbox. +C and they drop/ed it. +C and then (he) (he) it was stuck in the sandbox forever. +C and then it was more stucker[EW:stuck]. +C and then : a lifeguard came and get|get[EW:got] it. +C (and then he got it with his) and he reach/ed it with his arm. +C and then : they were sad. +C the lifeguard got it for him. +C and then the lifeguard pour/ed on : the net. +C and he got it. +C and then : he said here[!] you go. +C and then he keeped|keep[EW:kept] it forever. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C (he) the dog go/3s in the sandbox. +C and then he start/3s make/ing the sandcastle. +C and then the rabbit spill/3s on it. +C (and then he) and then it is all gone. +C it xxx up. +C then it was all cover/ed up. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C he go/3s look/ing at his favourite friend. +C then he go/3s and : stick/3s out his tongue. +C then he had a drink. +C and then he lie/3s down in the sun. +C and then he walk/3s away. +C then he pull/3s on his shirt. +C (and then he) and then he : talk/3s to him. +C and then they walk away. += [Eg:B2] += [Bg:B3] +C he come/3s along with a balloon (with) with his wagon. +C then he come/3s. +C and then he walk/3s with him. +C then : they stop/ed : and walk/ed in the snow. +C then they lose the balloon. +C and then they : stop and : get angry. +C then they walk away and saw a man with balloon/s [EU]. +C then : they said to him balloon [EU]. +C and then he give/3s him one. +C and then : they walk away. +C and then : they[!] : think : (the rabbit) the big rabbit [EU]. +C (and then they walk to his mom) [~_another_child__says:_that_(i)s_Nolan's_mom] then they walk to their mom. +C and then he come/3s and walk to the lady [EU]. +C and then he : come/3s. +C and then he get/3s (a ba) (another balloons[EW:balloon]) : balloons. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/test/448.slt b/data/ENNI_SALT/test/448.slt new file mode 100644 index 0000000000000000000000000000000000000000..e35646dc58072c496f982c4e7c67c76e9ca74ef7 --- /dev/null +++ b/data/ENNI_SALT/test/448.slt @@ -0,0 +1,102 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 7/19/1996 ++DOE: 2/21/2001 ++CA: 4;7;2 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 448=CHI ++Tape Location: Disk L25, Track 52 += [Bg:A1] +C once upon a time they were play/ing basketball. +C (then) : then the boy came named giraffe. +C the ball got stuck in the pond. +C then he went back home. +C then it fell back in the water. +C and he gave the cow a : (nnn) new[?] [EU]. +C then he went : out of the water. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C there was a : girl name/ed : elephant. +C and the giraffe went swim[EW:swimming] again[?] xx the lake. +C and then they just ran ahead. +C then they jump/ed into the water. +C and then they[EW:she] hurt her knee[-:]. +C then they could not : give a bandage [EU]. +C and he just put on a bandage for her. +C (then it feel) then they went swim/ing for a[?] next time [EU]. +C then he got mad. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C once upon a time (a) : a boy (me) met a girl. +C and he was go/ing to [~_gonna] fly his airplane. +C then he flew it. +C and (then) then he let go of it. +C and then she grab/ed it from him. +C and it was her/z. +C and he throwed|throw[EW:threw] it in the water[-:] . +C and then he got mad at her. +C then he got mad. +C and he need|need[EW:needed] to do something. +C and they could not reach it. +C so (they) they got a net. +C and it was there for a long time. +C and he got a net. +C then he got it. +C then he just : try/ed to get it. +C then he just got it. +C then he just : give|give[EW:gave] it to the boy who had it. +C and xxx. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C he went. +C and : he met a girl : go/ing to (the) : the playground. +C and she made a (ca) sandcastle. +C try/ing make/ing one like hers [EU]. +C [<~?_where]then[>~?_where] it broke. +C then they : got very angry. +C but they need/ed to make it all over again. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C there was a boy name/ed : bunnyhead. +C then he went (to) to have a picnic and met another guy with a picnic basket. +C and they had a picnic before (it) (it) it got night time [EU]. +C then they had two box/s of sandwich/s. +C and then they got full. +C (then they went) (then they) : then they went full [EU]. +C and : they get|got[EW:got] more and more. +C then came the mommmy. +C (then the) : then : the doctor. +C then they ran up to her. +C then they bump/ed[!] into her. +C and she took a temperature. +C and she was sick. +C and she need/ed to take her to a hospital. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C once : upon a time there was a boy (and went) (um uh what um) give/ing him[EW:his] wagon a walk. +C (then they) then they (got) put it on a balloon. +C and that was good. +C then he tighten|tighten[EW:tightened] it on[-:] very good. +C and he gave it to the girl. +C (then) then it flew away. +C then there was no way [EU]. +C then he was (ba) angry. +C then he met a : balloon guy. +C and he bought her one : and buyed|buy[EW:bought] a new balloon (so) (so they c) so there could be one on the wagon. +C then he gave us one before he flew away. +C and thank you! +C and (then it went) she sawed|see[EW:saw] the : doctor again. +C and (a little girl) can you buy us a balloon? +C and they gave him money. +C (then) then he gave them balloon/s. +C (then they) then they both had one. +C good. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/test/451.slt b/data/ENNI_SALT/test/451.slt new file mode 100644 index 0000000000000000000000000000000000000000..21f84d14021ee7940146293655b03fd8e2c0a11c --- /dev/null +++ b/data/ENNI_SALT/test/451.slt @@ -0,0 +1,109 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 6/28/1996 ++DOE: 1/18/2001 ++CA: 4;6;21 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 451=CHI ++Tape Location: Disk L23 Track 101 += [Bg:A1] +C once : a[EW:an] elephant was walk/ing over to a giraffe : with a backpack full of three ball/s. +C then : the ball/s sank into the water and float/ed away. +C they try/ed to catch it. +C but they nearly fell into the water. +C they fell into the water. +C (and try/ed to float) he try/ed to float to (the balloon) the ball. +C (but it wa) : (but it) but the ball was too[!] fast. +C then the elephant caught the ball and pull/ed giraffe out of the water. +C then[!] he was soak/ing wet. +C then they walk/ed home. += [Eg:A1] += [Bg:A2] +C once : (gira) giraffe and elephant were so excited. +C they want/ed to go into the pool. +C they walk/ed over to the stair/s. +C and then : they walk/ed over to the board. +C and then : they jump/ed in. +C then elephant jump/ed in. +C and then elephant slip/ed and slide|slide[EW:slid]. +C and : then he fell into the water head first. +C he did not realize (that) that : he had no bandaid on his owie. +C and it hurted|hurt[EW:hurt] and hurted|hurt[EW:hurt] and hurted|hurt[EW:hurt] and hurted|hurt[EW:hurt]. +C (uh : momma bear) poppa bear walk/ed over to him. +C are you okay? +C no reply/ed sister bear. +C (then : they were so excited : they are) : (they v) (poppa bear gave him) poppa elephant gave : sister elephant : a bandaid. +C then it felt much better. +C now they were ready to play in the water. +C but then : suddenly : the poppa bear said you stay there. +C do not go with the giraffe. += [Eg:A2] += [Bg:A3] +C once : Elephant and Giraffe : were walk/ing to the pool again[!]. +C : Giraffe brought an airplane. +C and then (he) elephant flied|fly[EW:flew] it. +C but then it sank into the water. +C you said [~_deep_voice] elephant : you get that airplane out of the water. +C but I can not cry/ed elephant. +C now (it sank into the pool) it sank into the pool nearly all the way. +C poppa bear said get that airplane. +C [~_deep_voice] I[!] can not (said) poppa bear : said to the giraffe. +C poppa bear try/ed to reach it. +C but it was too far. +C oh now we will never get it : cry/ed poppa bear and sister bear. +C (hold it said) hold it said giraffe. +C I[!] got something. +C I[!] have an idea. +C (he) (he got his) momma bear got the net. +C and then (he try/ed) he got it. +C then he try/ed to get it. +C and at last : he got it. +C and then it was soak/ing wet : that he had to waited|wait[EW:wait] till it was dry. +C now it was dry. +C and he could fly it but not into the water any more. += [Eg:A3] += [Bg:B1] +C once : two bunny/s were play/ing in the sandbox. +C one bunny build|build[EW:built] a sandcastle. +C and one digged|dig[EW:dug] sand to put in his bucket. +C he pour/ed it onto the castle. +C and then it all broke. +C and then it all fell. +C and then : (the uh) the bunny had to build it again. += [Eg:B1] += [Bg:B2] +C once : two bunny/s were go/ing out for a picnic. +C (ss) one : ate : a carrot and some hot dog/s. +C then he was all full. +C and then the second bunny drank : juice : and ate his sandwich. +C and then : the sandwich : taste|taste[EW:tasted] yucky. +C and then : they went home to their mom. +C (the mom said) the mom said : please take care of your little brother. +C and they took care of each other. +C then : (the) the sister bunny and the momma baby (all) they walk/ed home together. += [Eg:B2] += [Bg:B3] +C once (a ba) a bunny was bring/ing (uh) : a wagon with a balloon : attached to a wheel. +C and then : (the) the bunny was so excit/ed that he look/ed at the balloon. +C and then : he try/ed to put the balloon off the wheel [EU]. +C but it was stuck. +C and then it flew up. +C they try/ed to catch it. +C but it was float/ing away up into the air. +C and then : it nearly disappear/ed. +C and then they got so mad (they had to get a different one) they had to get a new one. +C so they walk/ed over to mister balloon. +C (and said) can I have (one) a new balloon the bunny ask/ed? +C and then he gave him the nice five : balloon. +C and then : he did not (gi) give (him) them one. +C and then : all of sudden (brother bear) brother bunny and sister bunny saw their mom. +C and (they w) then they (walk/ed over the river) skate/ed over to the river. +C and out at the river she saw their mom. +C and then [~_change_in_voice_quality] mommy : mister balloon will not (give us) give us a balloon. +C and (then : then h) then momma bunny walk/ed over to mister balloon. +C (and said) can you please give them a balloon she ask/ed. +C certainly reply/ed mister balloon. +C and then they had two balloon/s : for themselves. += [Eg:B3] diff --git a/data/ENNI_SALT/test/458.slt b/data/ENNI_SALT/test/458.slt new file mode 100644 index 0000000000000000000000000000000000000000..5ab55c83fbdd526cf0456c25f13dffbc26f13211 --- /dev/null +++ b/data/ENNI_SALT/test/458.slt @@ -0,0 +1,96 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 11/01/1996 ++DOE: 2/21/2001 ++CA: 4;3;20 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 458PA1=CHI ++Tape Location: Disk L25, Track 90 += [Bg:A1] +C (um) : let us play boy/s! +C the ball went in the water! +C I got[EW:have] to swim[!] and get it. +C [~_high_pitched_voice] I got another ball to swim with it! +C and I am play/ing with it. +C aaah[~!_sighing] I am all wet. +=C the end[~!_laughing] [+_bch]. += [Eg:A1] += [Bg:A2] +C let us swim. +C I am jump/ing in the water! +C let us run. +C ow[-:]. +C : are you okay! +C and it hurt/3s. +C I[!] need a bandaid. +C it is : still hurt/ing. +C I got[EW:have] to go to the doctor. +=C the end [+_bch]! += [Eg:A2] += [Bg:A3] +=C pig/s do like this [~_makes_snorting_sound] [~_laughs] [+_bch]. +C let us swim! +C I am cry/ing[!]. +C I found a[EW:an] airplane. +C [~_makes_creaky_voice_sound] : give me that airplane! +C [~_hhh] my airplane[-:]! +C oh do not be angry at me! +C let us get it! +C oh we got it! +C I got it in right. +C he *is get/ing out of the water [EU]. +C no[-:] ! +C okay let us catch it! +C I got it! +C : thank you. +C my favourite airplane. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C (um) you play in the sandpack. +C (you dig a) : you put the sand in the : bucket. +C and you dump it on the castle[-:] . +C and (then) : (then um) : (then) then the castle broke. +C and then the xx cried[~!_laughing]. +=C the[!] end [+_bch]. += [Eg:B1] += [Bg:B2] +C he is walk/ing. +C and then : he say/3s hi. +C he[-:] : eat/3s his sandwich with a carrot. +C and he : drink/3s his juice. +C and he cry/3s[-:]. +C (um) : I am : thirsty. +C you stole it. +C I said it! +C you stole it[~!_laughing]. +=C I do not know that page [+_bch]. +E should we try the next page? +C he cry/3s[-:]. +C goodbye. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C (um) : here is a balloon. +C (um) I am run/ing around! +C my balloon/s [EU]. +C do not take it off! +C ah[-:] the balloon : it is fly/ing! +C aw the balloon is broken! +C there is[EW:are] (a lots balloons) lots of balloon/s. +C I[!] want a balloon. +C I only have one. +C oh there is[EW:are] a lot of balloon/s. +C ah[~!_whispering]. += %com: CHI makes comment about her barrette. +C I[!] want some balloon/s. +C where can we put the balloon? +C but our balloon is broken. +C let us have another balloon. +C and : we got[EW:have] two. +C let us have it! +C we got[EW:have][!] : two. +C that kind [EU]. += [Eg:B3] diff --git a/data/ENNI_SALT/test/469.slt b/data/ENNI_SALT/test/469.slt new file mode 100644 index 0000000000000000000000000000000000000000..98503bc6bb150d3d5b507050b1680b4bbdbe1a4a --- /dev/null +++ b/data/ENNI_SALT/test/469.slt @@ -0,0 +1,83 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 10/10/1996 ++DOE: 5/25/2001 ++CA: 4;7;15 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 469=CHI ++Tape Location: Disk L28 Track 47 += [Bg:A1] +C [~_I_like_looking] she is play/ing with a ball. +C then it drop/3s in the water. +C the cow (s) want/3s to get it. +C and then : the : cow : give/3s it back to the elephant. +C and she like/3s it. +=C and the end [+_bch]. += [Eg:A1] += [Bg:A2] +C (um : something is sink/ing) something is sink/ing. +C and : the elephant is go/ing to[:_gonna] get it. +C and she trip/3s. +C and she fall/3s and hurt/3s her knee[-:]. +C and the lifeguard come/3s. +C and she get/3s a bandaid on it. +C [~!_laughs] and (she) she sit/3s on a bench. +C the lifeguard tell/3s her not : to do it again. += [Eg:A2] += [Bg:A3] +C Elephant is excited to see what the giraffe has. +C and then : he[-:] try/3s to throw it up into the air. +C and then : the elephant grab/3s it away. +C and then it sink/3s into the water. +C then the giraffe get/3s mad at her. +C and the lifeguard get/3s mad (at the gir) at the elephant. +C and (he explai) he try/3s to explain : what happen/ed. +C and the lifeguard : (um) try/3s to get it. +C then : they can not get it. +C and : then : a woman come/3s up with a net. +C and she get/3s it out. +C and she give/3s it back to the giraffe. +C and then he hug/3s it. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C (um) : the bunny and : the baby elephant are : build/ing a sandcastle. +C and then : the bunny is fill/ing up a pail with sand. +C (um) then : he is stuff/ing it on the : sandcastle. +C and then : it is ruin/ed. +C then : one of them is sad. +=C that is it [+_bch]. += [Eg:B1] += [Bg:B2] +C they are go/ing on a picnic. +C (they are) the bunny is eat/ing lots of stuff. +C he is get/ing full. +C and : he has a stomachache. +C and then : one of them see/3s (his mom) rabbit/z mom. +C and : he try/3s to get her (to get) (to get) to get rabbit. +C and : she wake/3s him up. +C and they go home. +C ah that was a good one. += [Eg:B2] += [Bg:B3] +C he is take/ing a balloon somewhere. +C his friend is come/ing up to him. +C (and : he) and his friend like/3s the balloon. +C and then his friend try/3s to untwist it. +C then it go/3s away. +C and he is sad. +C and then : she is angry with rabbit. +C and then there is a new (ba) balloon sale. +C and : he want/3s one. +C and : he give/3s it to him. +C and then : he want/3s another one [~_laughs]. +C and then : mother is here. +C he come/3s up to her. +C and : he tell/3s her that there is[EW:are] balloon/s. +C (and : she will) and she is give/ing him money. +C and then : they both have (one) a balloon. +=C that is it [+_bch]. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/test/477.slt b/data/ENNI_SALT/test/477.slt new file mode 100644 index 0000000000000000000000000000000000000000..6bf8f4f10f44ad065a4ab15157d302c9487e4154 --- /dev/null +++ b/data/ENNI_SALT/test/477.slt @@ -0,0 +1,91 @@ +$ CHI, EXA ++PARTICIPANTS: CHI target_child, EXA examiner ++DOB: 6/11/1998 ++DOE: 2/03/2003 ++CA: 4;8;3 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 477=CHI ++Tape Location: tape is property of Capital Health (S Bond-Moore) += [Bg:A1] +C once upon a time. +C and he is look/ing : apple/s [EU]. +C and the apple/s fall into a pool. +C and (uh a buddy) (a) a guy (f) is catch/ing it. +C and he get|get[EW:got] it. +C and he put it back. +C and he be happy [EU]. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C once upon a time : are walk/ing in a pool [EU]. +C and he is look/ing backwards. +C and a girl *is walk/ing [EU]. +C (and a) and he stopp/ed. +C and he be worry/ed [EU]. +C and he be scared [EU]. +C and he sit|sit[EW:sat] on a bench. +C and he sit|sit[EW:sat] on a bench [~_new_page]. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C once upon a time : out walk/ing [EU]. +C and he is fly/ing a plane. +C (and he) and he[!] is play/ing a plane. +C then he drop/ed it. +C gone is sink/ing [EU]. +C and sink/ing [EU]. +C and sink/ing [EU]. +C and sink/ing [EU]. +C and sink/ing [EU]. +C and sink/ing [EU]. +C and sink/ing [EU]. +C and he catch|catch[EW:caught] it. +C and he put it right back on his hand/s. +C and he be happy [EU]. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +E : you can start once upon a time. +=C once upon a time [+_bch]. +E : what do you see? +E use words so I can hear you so my tape recorder can hear you. +C (hm) . +E what has happen/ed? +C them[EW:they] *are build/ing [EU]. +C and he *is throw/ing sand [EU]. +C and : mess/ed all (d) up [EU]. +C and he be sad [EU]. += C the end [+_bch]. += [Eg:B1] += [Bg:B2] +E : how do/3s it start? += C (hm) . +E : once upon a time. += C once upon a time : [~_hm_easy_point] [~_sounds_like_comment_to_self]. +E try again. +C (hm) : and he is eat/ing. +C and he is tired. +C and he is go/ing *to sleep [EU]. +C and he is run/ing. +C and he is hold/ing : his dress. +C and he : fall|fall[EW:fell] down. +C and he walk/3s. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C once upon a time : [~_tells_EXA_to_turn_page]. +C [~_easy_xx_hm_##_hm_##_hm] : a tree. +C and he *is catch/ing a balloon [EU]. +C and it pop/3s. +C and xx want/3s the balloon/s. +C and she want/3s the balloon/s again. +C and they pop/ed. +C and they pop/ed : again. +C and he is look/ing. +C and he get xx. +C and he be happy [EU]. +C and he be happy again [EU]. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/test/504.slt b/data/ENNI_SALT/test/504.slt new file mode 100644 index 0000000000000000000000000000000000000000..6b321961964afa5b832c5af5517232188e8e3932 --- /dev/null +++ b/data/ENNI_SALT/test/504.slt @@ -0,0 +1,140 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 5/14/1994 ++DOE: 2/17/2000 ++CA: 5;9;3 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 504=CHI ++Tape Location: Disk M1 Track 27 += [Bg:A1] +C once upon a time the elephant had a ball. +C and the giraffe like/ed it. +C and he decide/ed to play with it by the pool. +C and then : he made a mistake. +C and it falled|fall[EW:fell] in the water. +C (and) (and) and the elephant thought that he could not get it. +C but (he) he just try/ed and try/ed. +C and he got it. +C and he gave it back to the elephant. +C so the elephant was very happy. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C once upon a time there is[EW:was] a[EW:an] elephant and a giraffe by the diving pool. +C and the elephant ran[-:] and slip/ed. +=C I think I think that is next page [+_bch]. +C and he slip/ed[!] and got hurt. +C so the giraffe came run/ing. +C and then one of the elephant/s came to help with a bandage. +C (and the band) and he put the bandage on. +C and he hurt and hurt. +C and she had to keep her leg out like straight in front (so) so it would not hurt when she walk/3s. +C but she had to sit there xxx. +E what was that last bit? +C she has|have[EW:had] to sit there at the diving pool all day until it feeled|feel[EW:felt] better. +C : (so) : and then the big elephant said no run/ing. +C and she went [~_humming_sound]. +C that is why he got hurt. +C (and he said) : so she had to sit there for time out. +C that is why. += [Eg:A2] += [Bg:A3] +C once upon a time there is[EW:was] a[EW:an] elephant and a giraffe. +C the giraffe had a[EW:an] airplane. +C and they were at the diving pool. +C the elephant play/ed with the airplane and watch/ed it zoom around. +C and he did like [~_motor_sounds,_laughing]. +C and the elephant took it away and start/ed play/ing with it. +C and then it fell in the water. +C and the giraffe stare/ed at it. +E what ? +=C and the giraffe stare/ed at it [+_BCH]. +C and then the giraffe was very mad at the elephant that the elephant was so scare/ed [EU]. +C so (the beach) (the suh) (the) (the) [~_what__do_you_call_it_the_yeah] the lifeguard (he) he decide/ed to take it out. +C and he try/ed to get it because the elephant said[!] so. +C small elephant xx as tall as me[!] [EU]. +=C and then he try/ed[-:] and try/ed[-:] [+_bch]. +=C and then I should not [~_?] [+_bch]. +E what is that last part ? +C then he try/ed and try/ed. +C but he could not get it. +C so he just try/ed still. +C so he could not get it. +C and the zebra was sad[-:] so sad. +C and then there is somebody that (ha) was even a bigger elephant and try/ed to get it with her net. +C (and she got it) : and she got it out for : their giraffe. +C and the giraffe was happy, very very happy. +C so the elephant and the giraffe became[-:] friend/s again. +=C there is so much one/s about them at the diving pool [~_laughs] [+_bch]. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C once upon a time there was a little dog : and a little rabbit. +C they were play/ing in the sandbox. +C and they builded|build[EW:built] a castle. +C and : the bunny took some : sand and put it in the bucket. +C and he start/ed shovel/ing it. +C and then the bunny pour/ed all the sand over the sandcastle : that the dog made. +C and then : the bunny said oh I am sorry. +C I will not do that again. +C oh : the dog was very sad. +C he cry/ed (h) because the bunny was not very smart. +C (and then : f) and then the bunny just : would not play with him. +C and he standed|stand[EW:stood] still with his ear/s down like this. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C once upon a time there was a bunny and a dog. +C they were : go/ing to have a picnic with each other. +C and they met each other in the wood/s. +E they met a what? +=C they met a each other in the wood/s [+_bch]. +C the bunny brought lot/s and lot/s of junk [~_!_laughing]. +C that is like all food that is bad for you : junk. +E like what? +=C like junk I call it when it is food that is bad for you I call it junk [+_bch]. +C and the bunny ate so much of his junk he got sick. +C and he falled|fall[EW:fell] down. +C and he got dizzy. +C and then the doggy ran to the doctor bunny : to help. +C and : the doggy pull/ed him over. +C and then : he start/ed work/ing on fix/ing him in case he was okay. +C well : then : he threw a thing at his head : and try/ed to (s) make him look over there. +C and he fix/ed him up. +C he had to go home. +C so (he) the doctor brought him to his home. +C and the doggy was very happy. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C once upon a time : there were[EW:was] : a dog and a bunny. +C and they met each other in the wood/s. +C and the dog (had) : had a balloon. +C and the bunny came run/ing. +C and a bunny (ca) took the balloon : out : of the : [~__what_do_you_call_it] the wagon [~_yeah_that_(i)s_it]. +C and : try/ed to untie it. +C but the dog said no. +C and he would not listen. +C and then the dog try/ed to catch it. +C and the bunny try/ed to catch it too. +C but : they just could not catch it. +C oh and then the bunny/z dog friend got mad and made his teeth like this [~_aargh_sound]. +E and made what? +=C and made (ade) him mad [+_bch]. +C so he would be so mad : that he would just be like this stand/ing there [~_makes_angry_sound]. +C then he went off to get a balloon from a balloon seller that sell/3s balloon/s. +C he decide/ed (to) to get one. +E [~_what]? +=C (he decide/ed to get one) the bunny decide/ed to get : a balloon [+__bch]. +C but he did not have any money for five cent/s. +C well they were sad. +C and he did not have any balloon/s for each other because (they want/ed) then the bunny want/ed one too. +C so they went off to someone that had money. +C (and then the) (and then he) and then he bought some for them. +C and they got (two) the two last one/s left. +C and they were so happy. +C and (they) they have been friend/s with each other all[!] day. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/test/505.slt b/data/ENNI_SALT/test/505.slt new file mode 100644 index 0000000000000000000000000000000000000000..ad941b960b873e08d552167ee271887301bc9e13 --- /dev/null +++ b/data/ENNI_SALT/test/505.slt @@ -0,0 +1,90 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 11/29/1994 ++CA: 5;2;5 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 505=CHI ++Tape Location: Disk L1 Track 19 += [Bg:A1] +C a[EW:an] elephant met (a) a giraffe. +C (and the) and the elephant/z ball went into the water. +C then the giraffe would get it. +C and (then she w) then she was happy. +C and then : (hmmm) she like/ed her. +C and then [+..]. +E Okay. += [Eg:A1] += [Bg:A2] +C (um) the elephant (and) and (the) the giraffe was[EW:were] go/ing to run. +C and he was go/ing. +C and the elephant was go/ing to run over to the jump/ing thing. +C and then she slip/ed. +C and then she fell. +C and then the lifeguard came. +C and then he putted|put[EW:put] a bandaid on. +C and (then) then she knowed|know[EW:knew] that there was no run/ing. +C and then she look/ed at the sign. +C and it said no run/ing. +C and then the end. += [Eg:A2] += [Bg:A3] +C the giraffe (had) had a[EW:an] airplane. +C and he was go/ing to throw it. +C (and) (and the) and the : elephant want/ed to try too. +C and then (he s) (he was tr) he want/ed to throw it. +C : and then the elephant was go/ing to throw it. +C and then it sank. +C and (then) then the giraffe was mad. +C : (and :) and then the lifeguard came. +C (and then) and then the lifeguard was go/ing to get it. +C : (and then he) and then he was almost about to get it. +C : (and then) and then the giraffe was sad. +E [~_long_pause] what happened next ? +C and (then) then the girl lifeguard came : to get the airplane with (a th) a net. +C and then : she got it. +C : (and then) and then she got it. +C and then he was happy. += [Eg:A3] += [Bg:B1] +C a bunny and a bunny : were play/ing in a sandbox. +C and then they builded|build[EW:built] a snowcastle. +C and then (the) the other rabbit pour/ed some sand in it. +C (and) and one part was still fix/ed. +E : then what happen/ed? +C and then : the other one was sad. +=C The end [+_bch]. += [Eg:B1] += [Bg:B2] +C (um : um) two rabbit/s had basket/s. +C and it[EW:they] had a picnic. +C (and then) and then the other rabbit was full. +C : then he was hurt. +E : what happen/ed? +C he found a doctor. +C (and) and he thoughted|thought[EW:thought] that guy was hurt. +C : and then the doctor came. +C and (then) then the boy was better. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C (um) the girl had a wagon with a balloon on it. +C (and the) and the other rabbit : was run/ing. +C and then the boy rabbit was go/ing to[:_gonna] take the balloon. +C (and then he) and then he was try/ing to take it off. +E : then what happen/ed? +C then it flew up in the air. +C and (then) then it pop/ed. +C : and then he was go/ing to the balloon man. +C and (then) : then the girl was sad. +E : what happen/ed then? +C and (then) then he was mad. +C : (um) then the girl came. +C (then sh) : (then she) (then) then she want/ed a balloon. +C and then he ask/ed : the doctor (that could) could he have some of your money? +E : what happen/ed then? +C (then) then the boy and the girl : was[EW:were] go/ing to[:_gonna] have a balloon. +C : and then they both had a balloon. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/test/524.slt b/data/ENNI_SALT/test/524.slt new file mode 100644 index 0000000000000000000000000000000000000000..937687b680d6a7a96584addc9bea1a94eb9a03af --- /dev/null +++ b/data/ENNI_SALT/test/524.slt @@ -0,0 +1,79 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 8/14/1994 ++DOE: 4/28/2000 ++CA: 5;8;14 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 524=CHI ++Tape Location: Disk M5 Track 33 += [Bg:A1] +C once upon a time : they had three (ba) ball/s. +C and one went in the river. +C : (and him immediately went to get it :) [~_no] (he falled|fall[EW:fell] in : and then) (and he got) [~_no_actually] (um) he went in *to swim to give it to (the : pi um) the elephant again [EU]. +C (uh : an then) (an then um) and then (hir) it look/3s like they are in love. += [Eg:A1] += [Bg:A2] +C once upon a time : the elephant went to run. +C : (an then) and then they start run/ing. +C : (an her) (her) and her[EW:she] got a booboo. +C : and then his mom comed|come[EW:came] : put a bandaid on her. +C : and then her[EW:she] went back to her friend/s. +C : and then he got mad at her. += [Eg:A2] += [Bg:A3] +C once upon a time : (he s) he show/ed the elephant his airplane. +C and then her[EW:she] grab/ed it (out of the) : out of his hand/s. +C and then her[EW:she] drop/ed it into the water by mistake [~_pronounced__astake]. +C and then he got very [~_pronounced_wery] angry at her. +C and then : the elephant comed|come[EW:came] and got wery angry (at the pi) (the um) at the elephant too [EU]. +C (uh) then he had (a) a talk. +C : and then he try and reach it [EU]. +C (an) and then : he start try/ing [EU]. +C (an then) and then the girl come with the net : (got it for) *and got it for him [EU]. +C : (an then he) (and then he was happy) and he was happy. +C and he hug/ed his airplane. += [Eg:A3] += [Bg:B1] +C once upon a time : a dog was play/ing a castle. +C and a bunny comed|come[EW:came] over to play with him. +C (and th) (and when he) and he was hold/ing the castle. +C and he was (um) have/ing a shovel to (um) pick up the sand. +C and he was dump/ing on the castle. +C and then he broke the castle. +C (and then) and then he start cry/ing. += [Eg:B1] += [Bg:B2] +C once upon a time they went on a picnic. +C (and) (and he) (and) (and som) [~_I_do_n(o)t__know_how_to_do_that_one] his tongue is out like this [~_CHI_sticks__tongue_out]. +E okay you are stick/ing your tongue out that is what it look/3s like. +=C and I do not know how to do that part [+_bch]. +E can you tell me in word/s? +C (uh) : it look/3s like he is do/ing [~_child_sticking_tongue_out]. +E oh tongue out okay. +C and once upon a time when they was[EW:were] eat/ing : something (um) (it wa um) (it wa um) : he start to have a headache. +C : and then the dog went to his mother : and try/ed : pull her (to the) to her kid bunny [EU]. +C (and) and it start give/ing him medicine [EU]. +C (and then he) and then they went on. += [Eg:B2] += [Bg:B3] +C when he was go/ing to play at the park : the bunny went and touch/ed the balloon. +E he did what with the balloon? +=C touch/ed it [+_bch]. +C and he try/ed to pull it off. +C : and then it got go [EU]. +C (an they was) (an) and the dog was angry. +=C no maybe the angry was not at that part the angry was this one [~__+_bch]. +C and he was angry. +C and then he went on with balloon/s. +C and he gave the kid another balloon. +C and he said he want another balloon. +C and he said no (cause he got) because he need/ed to get five balloon/s because he want/3s five balloon/s. +C xxx. +C (an he ask/ed) (an the dog said can I have another) [~_no] the bunny said can I have another bunny for the dog? +C : and then the bunny went back to his mom. +C and he said : (he wo) (he will not give me another ba) he will not give me another balloon. +C : (so he did ge) so he give the kid/s two balloon/s [~_child__holds_up_two_fingers] [EU]. +C : (and) (an they) and then they went off home. += [Eg:B3] diff --git a/data/ENNI_SALT/test/530.slt b/data/ENNI_SALT/test/530.slt new file mode 100644 index 0000000000000000000000000000000000000000..18f932c947a0f632b4fe00fd8ba271bfaf06048b --- /dev/null +++ b/data/ENNI_SALT/test/530.slt @@ -0,0 +1,97 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOE: 11/14/2000 ++CA: 5;9;13 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 530=CHI ++Tape Location: Disk M5, Track 16 += [Bg:A1] +C they were play/ing[-:]. +C they smile/ed. +C and : a ball was (in the) : in the pool. +C the boy he want/ed to catch : the ball. +C so he went in. +C and the elephant : girl : put her hand/s in front of her nose. +C and then he caught the ball for her. +C and she was smile/ing. +C and he was all wet. +E and he was what? +=C he was all wet [+_bch]. +E is that the end ? +=C yeah [+_bch]. += [Eg:A1] += [Bg:A2] +C they found a pool[-:]. +C and then she was talk/ing to him. +C and they runned|run[EW:ran] [-:]. +C and she got hurt. +C and somebody came and ran to her. +C she was cry/ing. +C she was cry/ing so[-:][!] much : (that) : that the boy that ran to her gave her a bandaid. +C she was sit/ing on a bench. +C and : he got very greedy. += [Eg:A2] += [Bg:A3] +C he found (a airplane) : a toy airplane. +C then he was play/ing with it. +C she grab/ed it away from him. +C then it fell in the water[-:]. +C and then he was mad at her. +C then a boy came walk/ing by[-:]. +C then she told him something. +C then he was try/ing to catch it. +C and then (they) he could not. +C so he cry/ed[-:]. +C and then a girl[!] came down : with a fetcher. +E with a what? +=C with a fetcher to [+_bch]. +E oh a fetcher okay. +C and then she[!] try/ed and grab/ed it. +C and she got it for him. +C and he was so[!] happy. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C they : made a sandcastle. +C (they sc) : they scoop/ed (some) some : sand. +C and (she dump/ed) the rabbit dump/ed : it (on) right on the sandcastle. +C and it broke. +C then he was cry/ing (when i) when he was fix/ing it. +=C and it is the end of the story [+_bch]. += [Eg:B1] += [Bg:B2] +C they went for a picnic. +C they ate[-:]. +C and the rabbit got a tummyache. +C she was so[-:] full : that she : was growl/ing. +C then the boy call/ed[!] someone. +C then he grab/ed her to : the bunny. +C she check/ed her if she was well [EU]. +E if she was what? +=C if she was well[!] [+_bch]. +C then she was good. +C and she did not have a tummyache any more. +C and (sh) they had a walk. += [Eg:B2] += [Bg:B3] +C they had a stroller with a balloon in the front. +C they watch/ed the balloon if it was come/ing off. +C and (he tie/ed it right on s) : (ti) she tie/ed it on so tight as she can. +C then after it came up in the air. +C and after : the dog was so[!] greedy at her. +C and then a balloon : man came. +C (and h) and the rabbit said can we borrow a balloon? +C and he said would you like this one? +C and he said yes[-:]. +C it is five[-:] dollar/s. +C (and he) and he check/ed if he had : much [EU]. +C and then they did not get a balloon. +C and then : they ran[-:] to someone. +C they ask/ed her : (th) we want a balloon. +C and she did not know why. +C so she paid five dollar/s : to him. +C and they gave : both of them a balloon. +C and they like/ed to play with it. += [Eg:B3] diff --git a/data/ENNI_SALT/test/536.slt b/data/ENNI_SALT/test/536.slt new file mode 100644 index 0000000000000000000000000000000000000000..19638d8f1c8dba5ee1dfb9ee7980e83e08218607 --- /dev/null +++ b/data/ENNI_SALT/test/536.slt @@ -0,0 +1,162 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 3/28/1995 ++DOE: 11/29/2000 ++CA: 5;8;1 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 536=CHI ++Tape Location: Disk M6 Track 40 += [Bg:A1] +C (one :) one day (um) : a little : giraffe and (um) : elephant they were play/ing with three ball/s. +C and (they were g) they were go/ing to go in the swimming pool. +C so they got to the swimming pool : with ticket/s. +C and (then they sawl a ba) they saw their ball in the swimming pool. += %COM: above not coded as IE because it does not relate to the ATT/CON below +C so they got it. +C and then : (the gira) the giraffe try/ed to : come and get the (balloon um) balloon that they had. +C so (they) he got it. +C and (then they) then they got their ball and their balloon. +C and then they went and play/ed with them. +C and so the : elephant said thank you. +C and then the giraffe said you are welcome. +C and they play/ed together (with their um) with their balloon. += [Eg:A1] += [Bg:A2] +C one day (um they :) the giraffe and elephant want/ed to go swim/ing. +C and then : the giraffe ran. +C (and he) and he[EW:she] ran in the swimming pool with her bathing suit on. +C and (then she) then she hurt herself on the knee. +E is that on this picture? +=C (um) (uh) yeah [+_bch]. +E can you just tell me the story that is on the picture? +E and you tell me to turn if I am not turn/ing it fast enough. +C and then she slip/ed because there was water when she was run/ing. +C (and then) : and then she hurt herself. +C so the lifeguard came and got her a bandage for her knee. +C (and then they) so then they (um) went to swim again. +C and she was all better. +C (so) but first she had to sit on the bench a little bit. +C and then she was okay. +C and the lifeguard said (no run) can not you see the sign. +C there is no run/ing here. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C (one day there is a) one day there was : a giraffe and a[EW:an] (um) elephant. +C the giraffe had a[EW:an] : airplane. +C and he was play/ing with it. +C (and then he : al) and then the elephant want/ed to play with it. +C (so he na) so (um) he did. +C but then she took it away from the giraffe. +C and then she drop/ed it in the water. +E is that on this page? +E or was that on the next page? +E it was on that page, oh okay. +C so then it sank in. +C and (then the life) then the lifeguard got mad. +C so then : the giraffe [+/]^ +E tell me : should I be turn/ing yet? +C [~_yeah] then the giraffe got mad at the elephant. +C and she said she was sorry. +C so she got her mom to catch the lifeguard. +E is that what is on this page? +C so the lifeguard could not reach it. +C so she got her mom to reach it : with a net. +C and then the lifeguard (she) he came back to say sorry to the elephant because (he) he got mad at the elephant. +C and then : her mom : catched|catch[EW:caught] it with (um) the thing. +C and then the lifeguard he try/ed to get it again. +C but her mom could not. +C and the lifeguard could not. +C so she got a big big net. +C and she catched|catch[EW:caught] it. +E is that on this page? +=C yeah. +E remember I can not see so I just want you to tell the story that is on the page. +C (and then all the lifeguard/s) and then : the mom had a real long net. +C so she grab/ed it. +C and she catched|catch[EW:caught] it. +C and the giraffe said thank you. +C and then she said you are welcome. +C and then (the) they were both happy again. +C and they play/ed with it. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C one day (a lit) a bunny rabbit went to the beach. +C (and she saw a p) and he saw a puppy. +C and she was make/ing a sandcastle. +C and then the bunny said can I help? +C and the puppy said okay. +C then they build|build[EW:built] a sandcastle. +C and the bunny got a bucket. +C (and she) and then he got a shovel. +C (and he put it) and he put sand in the bucket to make a sandcastle. +C (and the) and the puppy was make/ing (the sss um) a water hole. +C (and then the) and then the rabbit wreck/ed it because he put (all of :) all of sand on it. +C and it push/ed it down. +C and the (w) puppy was very sad. +C (and then the) and the puppy try/ed to build it again. +C but it did not work. +C and the rabbit (was just) he did not say sorry or anything. += [Eg:B1] += [Bg:B2] +C one day : the puppy and the rabbit came for a picnic in a forest. +C and then (uh) the rabbit ate too much. +C and he got sick and was too full. +C (so the) so the : puppy dog went to get some help. +C (and then she) but she did not find anyone yet (until he s) until she saw that the rabbit was sick. +C (and) (and then she got a nur) she got a doctor that was walk/ing by. +C and then she took the rabbit : (and) and took the stomach away : ache. +C and then (: the bunny and the r um) bunny was still sick. +C so : the puppy (he um) she pull/ed on the doctor. +C and then the doctor went on the picnic thing. +C (and the s) and he was really sick. +C so the puppy went away : because the doctor said : he need/3s to be alone for a while. +=C and the end [+_bch]. +E oh just a second I miss/ed one, did not I? +C yeah and the [+/]^ +E it was after he need/3s to be alone for a while and then [+..]. +C and then (um) : the puppy came back. +C and he was all better. +C but he had to go lie in bed. += [Eg:B2] += [Bg:B3] +C (one day the bunny went) (he) (he) one day the bunny went to the forest. +C (and he) and on the way there he saw a puppy. +C (and then they) and then they saw a clown with balloon/s. +C and so they : ask/ed bunny/z mom if they could have some money for a balloon. +C and she said yes. +C so then they got a : balloon. +C (and then they) (then their balloon uh) there was a balloon tie/ed onto puppy/z wagon. +C and (it fell away) it flew away. +C so then (um) [+..]. +E tell me when to turn. +C (and then it [~_please_turn_now_(whispered)] and then it went) and it disappear/ed up in the air. +C and puppy was mad (at) at bunny. +C (and then) and then they saw (a clown) (a bunny with balloon/s) a clown bunny with balloon/s. +C (so they ask/ed bunny) so they ask/ed bunny/z mom if they could have some money. +C and then they bought a balloon with their money. +C and puppy was very happy. +C and they both got two balloon/s. +C and then puppy ran over there to get a balloon. +C but bunny had no money. +C so : she had to go to : (um) the mom to get his money. +C and then after that : they got some money. +C and they gave it to the clown bunny. +C and then they got two balloon/s : one yellow and one red. +C (and then) but first they had to get the money from the doctor (that fix/ed) that help/ed bunny. +C and then so they got two balloon/s (ye) yellow and blue. +C and then they got one for the doctor, red. +=C and then : [~_whispers] I do not know [+_bch]. +E you are not sure on this one? +E nothing to say on this one? +E okay, we will just turn then. +C and then they bought the balloon/s. +C (and then they) and then they got two balloon/s. +C and then they were happy. +C and they play/ed with them. +C and then they play/ed with them and play/ed. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/test/549.slt b/data/ENNI_SALT/test/549.slt new file mode 100644 index 0000000000000000000000000000000000000000..f27ef7bab1cb66d6ea440daf8f30dcd2d132fc00 --- /dev/null +++ b/data/ENNI_SALT/test/549.slt @@ -0,0 +1,112 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 10/17/1994 ++DOE: 6/27/2000 ++CA: 5;8;10 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 549=CHI ++Tape Location: Disk L19 Track 38 += [Bg:A1] +C (um) once upon a time there was a[EW:an] elephant. +C and she was bounce/ing three ball/s. +C and giraffe came. +C (and she try) and he want/ed to try. +C and the elephant said okay. +C and then : the giraffe said I can not do it. +C and (then one ball wen) then all three ball/s went into the : water. +C and then the elephant and the giraffe said oh no. +C and then the giraffe went : splash/ing in the water to get all three ball/s. +C and then : the elephant got one ball. +C (and then he wa happ) and then she was happy. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C (um) once upon a time there was a little : giraffe. +C and he want/ed to go swim/ing. +C [~_well] he was try/ing to go in the diving board [EU]. +C and he was scare/ed. +C and then the elephant said I will try it out. +C and then : she was run/ing. +C and then the giraffe was slow/ing down. +C and then (n the) the elephant (stub/ed her) hurt her knee. +C then : the lifeguard came. +C and then : the lifeguard put a bandaid on her knee. +C and then : she was on a bench. +C and then : [~_stern_voice] he put her on a timeout. +=C that is it [+_bch]. += [Eg:A2] += [Bg:A3] +C (um) once upon a time there was a little giraffe : and a little elephant. +C (and) and the little giraffe was go/ing to throw his plane. +C [~_well] he thought it was go/ing to go in the water. +C then he try/ed. +C and then he try/ed. +C [~_well] he did not let go. +C and then the elephant took it away. +C and then she threw it in the water. +C then the giraffe was mad. +C then the lifeguard came. +C and then he said you were on another timeout : for the elephant. +C and then the lifeguard said : I do not know if you should have a timeout. +C and then the lifeguard was go/ing to : try to reach it. +C [~_well] he did not reach it. +C : then he did not know. +C and then the giraffe was start/ing to cry. +C then this lady : elephant : came. +C and she got a net. +C and she was go/ing : to get it with the net. +C and then the lady : almost got it. +C and then she got[!] it. +C and then : the giraffe was happy. += [Eg:A3] += [Bg:B1] +C once upon a (tame) time there was a little rabbit and a little dog. +C and the little dog (that was mak) it was make/ing : a sandcastle. +C and the rabbit join/ed in. +C and then (h) the rabbit try/ed to do it. +C well he did not get it right. +C and then he dump/ed it on top. +C (and then it did not) and the dog/z eye/s went crazy. +C and then the dog : his mouth (was) (he was kind of) it was kind of : crazy. +C and then it was try/ing to make it back. +C well it did not. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C once upon a (tame) time there was a little rabbit and a little : (um) dog. +C and then (they wer) they were go/ing for a picnic. +C and the rabbit said hello. +C would you like to : join my picnic? +C well the dog said no thank you. +C I will enjoy my picnic. +C and then the rabbit was eat/ing all it/z stuff that it brought. +C and then he was get/ing so hot (that he) (that it : was get) that it was burn/ing. +C and then he was very fat. +C and then he was go/ing crazy. +C (and then he saw) and (then she[!] saw) then the puppy saw a doctor. +C (and then) and then she was bring/ing the : doctor to the rabbit. +C and then (sh) that rabbit saw the other rabbit. +C and then : it took (it) that little rabbit to the doctor/z. +=C that is the end [+_bch]. += [Eg:B2] += [Bg:B3] +C once upon a time there was a little rabbit and a little dog. +C and then the little : rabbit want/ed to have the balloon. +C and then : it almost took it. +C and then he did not notice. +C and then he untie/ed it. +C and then he did not know : what was there. +C (and then it) and then the balloon went up up up. +C and then that : dog was mad at that rabbit. +C and then another rabbit came by with some more[!] balloon/s. +C and then that (d um) rabbit want/ed a balloon. +C and then : he : saw he did not have any money. +C and then he did not get any balloon/s. +C and (then : one : rabbit) then that rabbit saw a nurse doctor. +C and (then that doctor) then that little : rabbit said can I have some money for one of those balloon/s? +C and then he got one. +C : (and then he had) and then they had two for each. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/test/550.slt b/data/ENNI_SALT/test/550.slt new file mode 100644 index 0000000000000000000000000000000000000000..1ee3f115c138631e6f4de07fee5a277179de0562 --- /dev/null +++ b/data/ENNI_SALT/test/550.slt @@ -0,0 +1,118 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 6/29/1995 ++DOE: 1/11/2001 ++CA: 5;6;13 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 550=CHI ++Tape Location: Disk L23 Track 40 += [Bg:A1] +C (um) : the donkey want/ed to play (uh with) with another animal with his ball/s. +C (um : they) they went to the swim[EW:swimming] pool. +C and (they) they found a friend. +C and he jump/ed in the : water and splash/ed the elephant by accident. +C and the elephant pick/ed the ball up. +C and the giraffe ask/ed if he could have it. +C and he came out with his : cloth/s on. += [Eg:A1] += [Bg:A2] +C (um) they went back to the swimming : pool and did not want to go into the water. +C the elephant want/ed to go in the water. +C but the giraffe did not. +C (um) the elephant : ask/ed if he could race the : giraffe to the diving board. +C but : the elephant trip/ed (and) and fell and hurt her knee. +C and : the swimming : person check/ed if he was okay : and put the bandaid on her. +C and she feeled|feel[EW:felt] all better. +C and she stay/ed there so she could get better. += [Eg:A2] += [Bg:A3] +C (um) the : giraffe throwed|throw[EW:threw] his airplane. +C and it flew. +C (but) but by accident he (th) threw it too soft. +C and it fell in the water. +C and : he try/ed to get it out. +C (but he) and he did. +C and without ask/ing : the elephant grab/ed the airplane away from him because she want/ed to play with it. +C (and because they was grab/ing) they grab/ed. +C and it fell in the water. +C and the giraffe was angry at the elephant because she : throwed|throw[EW:threw] it in by accident. +C the lifeguard was mad because : they throwed|throw[EW:threw] it in. +C and toy/s was[EW:were] not suppose/ed to be in the water. +C and the elephant : said look what I did. +C it was by accident. +C and the lifeguard try/ed to pick it up. +C but he could not. +C the lifeguard could not. +C so he just got up. +C and he had an (ide) a plan. +C (he) : but : he did not. +C his wife took : (um) : a stick with a rope (on the ss) on the front. +C and he catched|catch[EW:caught] it out. +C (he try/ed to) she try/ed to catch it out. +C (an) but she could not. +C and she did. +C and she gave it back to the (el) giraffe. +C and now he was proud : of : the girl because : she got his plane back. += [Eg:A3] += [Bg:B1] +C the bunny said hi to : the dog. +C and the dog was make/ing a sandcastle. +C and the bunny want/ed to help. +C but the dog said yes. +C and they start/ed build/ing a sandcastle. +C and then : the bunny dump/ed a bucket. +C (and it) (and it) and the : castle fell down. +C and the dog was : mad at the bunny. +C and the bunny was : sorry because he knock/ed the sandcastle down. +C (and then they builded|build[EW:built] it all) : and then the dog builded|build[EW:built] it all up and *was cry/ing [EU]. += [Eg:B1] += [Bg:B2] +C the dog said hi again to the : bunny. +C the bunny was race/ing down with a basket of food. +C so was the dog. +C and when they got : there they : unpack/ed the food. +C and they start/ed eat/ing. +C and the bunny[EW:bunny/z]: tummy hurted|hurt[EW:hurt]. +C and he was sick of the food. +C and the dog race/ed to the doctor and said doctor doctor can you help? +C (my bun) my friend bunny is sick. +C Doctor doctor come on [~_announcement_interruption_from_the_school]. +C come on doctor. +C come on. +C my friend bunny is really sick because he eat|eat[EW:ate] so much food. +C okay okay. +C he took his temperature. +C and he was (sick) sick. +C (and) and then he check/ed the bunny again. +C and he was all better. += [Eg:B2] += [Bg:B3] +C the dog said hi again. +C and the bunny want/ed the balloon and said where did you get that from? +C I want that balloon right now. +C and he untie/ed it from : the wagon. +C and it start/ed (float) float/ing off the wagon. +C and the dog was mad at the bunny because he untie/ed it. +C and he want/ed it. +C and then the bunny had a great idea. +C he can go over to the balloon man to buy another balloon. +C and they ask/ed : could we have two balloon/s please? +C (and uh) and (it cost/ed) it costed|cost[EW:cost] five dollar/s. +C (and he had) he did not have any money in his pocket. +C so he could not get a balloon. +C and they said please. +C but no only for five dollar/s. +C doctor can you help us? +C (can we have five) could we have : five dollar/s for both of us so we can have a balloon? +C he said : okay you can have balloon. +C (I) (I do not) we do not have any money in : our pocket/s. +C so please can you give us five dollar/s? +C so they gived|give[EW:gave] him five dollar/s for both of : us[EW:them]. +C and then they got the two leftover balloon/s. +C and then they was[EW:were] proud of the doctor because : they got a balloon. +C and the bunny said sorry to : the dog because : (he uh) he want/ed the balloon. +C and he untie/ed it. +C so he said sorry. += [Eg:B3] diff --git a/data/ENNI_SALT/test/554.slt b/data/ENNI_SALT/test/554.slt new file mode 100644 index 0000000000000000000000000000000000000000..eede94413a3cdb97b06340abad04df608c21b115 --- /dev/null +++ b/data/ENNI_SALT/test/554.slt @@ -0,0 +1,111 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 8/10/1995 ++DOE: 1/11/2001 ++CA: 5;5;1 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 554=CHI ++Tape Location: Disk L23 Track 54 += [Bg:A1] +C (um) : a giraffe and a[EW:an] elephant were friend/s. +C and they were play/ing (ta) with each other. +C and then : their ball : went in the water. +C and the giraffe went to try and[EW:to] swim for the ball. +C and the giraffe got it and gave it : to the elephant. +C and the giraffe was soak/ing wet. += [Eg:A1] += [Bg:A2] +C (um) : once there was a[EW:an] elephant and giraffe. +C and they (wen) were friend/s. +C and they went to a swimming pool together. +C and the elephant was go/ing to jump in. +C (and she) and before she jump/ed in : (um) : for some reason she must have forgot something. +C (she went) she ran very fast. +C with no run/ing allow/ed the elephant fell down and hurt her knee. +C she was cry/ing and look/ing at the pain. +C she is : cry/ing even more[!] and not[!] look/ing at the pain. +C then she sat down on the bench. +C and the lifeguard gave her a bandaid. +C and the lifeguard said no run/ing allow/ed. += [Eg:A2] += [Bg:A3] +C the elephant and the giraffe went to the swimming pool. +C (and they) and the giraffe brought a swimming toy with him. +C (and) and he was play/ing it. +C and the elephant was just like stare[EW:stare/ing] (on it) : (on) at it like crazy. +C (the) the elephant grab/ed it from the giraffe. +C it look/ed so neat. +C and then she drop/ed it in the water. +C the : giraffe got very mad at the elephant. +C the lifeguard came and : look/ed at it : (and) and came closer to the elephant. +C and the elephant was (ex) try/ing to explain : how it happen/ed. +C and the lifeguard was listen/ing very carefully. +C the lifeguard try/ed to get it. +C but he could not. +C the giraffe was cry/ing. +C (the both) the lifeguard and the elephant (were) was[EW:were] just kind of stare/ing at it. +C then a girl with a net came. +C (and the) [~_actually_go_back] and (they was sup) they were like [~_points_to_the_picture]. +C and the girl with the net : was : (pull) : (get) try/ing to get the airplane with her net. +C and she got it for the : giraffe. +C the giraffe was hug/ing it. += [Eg:A3] += [Bg:B1] +C once there was a bunny and : dog. +C (and and) and they were friend/s. +C the dog was make/ing a sandcastle. +C then the bunny was about to come in with a shovel. +C and he came in and throwed|throw[EW:threw] a : bucket of sand. +C the bunny dump/ed it onto the (ca) : sandcastle. +C dog was kind of sad. +C (it bro) I think it broke her castle. +C she was cry/ing. += [Eg:B1] += [Bg:B2] +C there was a dog and a bunny. +C they were friend/s. +C and they were go/ing to [~_gonna] go to a picnic with each other. +C (um : the) the dog : was take/ing everything out of her picnic basket. +C but the bunny was just eat/ing everything she took out. +C (the) the bunny was : very full. +C and the dog was hardly even (eat) ate everything [EU]. +C the bunny was : fat. +C and then the : dog was about to drink a little bit of her juice. +C and the : bunny had a tummyache. +C then a grownup bunny came along. +C (and the) and the dog was race/ing to her. +C and it was like please(*3). +C and the lady was like you eat too : to eat : you bunny. +C and the bunny and the : grownup bunny (just) : just went along with each other. += [Eg:B2] += [Bg:B3] +C (the bunny and the dog were) (the) the bunny was run/ing to the dog. +C and the dog was just : go/ing her wagon in front of her : with her balloon. +C and the bunny like/ed the balloon. +C he was about to pull it off. +C and the bunny was untie/ing it. +C and (the bunny was like) [~_I_mean] (the) the dog was like [~_makes_gasping_sound]. +C and then the bunny : untie/ed it. +C and (the) : the balloon float/ed away. +C they were try/ing to reach to get it. +C the dog got mad at the bunny (un) (until) when the string was just left. +C and then a bunny with (balloon) (lot/s of) lot/s[!] of balloon/s came. +C and he said [~_change_in_voice] come here come here the bunny. +C and (the) the man with the balloon/s came. +C and the bunny was like [~_forlorn_look_on_face]. +C and the big bunny with the balloon/s was like which one do you want? +C that one that one the little bunny was like [~_facial_expression]. +C (this) : this one? +C [~_CHI_asks_EXA:_actually_go_back] you can not have this one [~__harsh_voice]. +C and then the bunny and[!] the dog was[EW:were] sad. +C and then (the) the same lady with the other book came. +C (and the) and the bunny was run/ing to her. +C and the dog was just stay/ing with the : bunny with the balloon/s. +C (and) : and the dog still had her wagon. +C (and the) and (the grown up b) (girl bunny was) the kid bunny was say/ing to the grown up girl bunny : can we get one of those balloon/s? +C can we get one of those balloon/s : for the dog? +C (and the) : (and the) and she paid for it. +C and they each got a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/test/555.slt b/data/ENNI_SALT/test/555.slt new file mode 100644 index 0000000000000000000000000000000000000000..f9a4cf3e062fb5d336f0e6868506f04b0fdc6b7e --- /dev/null +++ b/data/ENNI_SALT/test/555.slt @@ -0,0 +1,78 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 8/22/1995 ++DOE: 11/15/2000 ++CA: 5;2;24 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 555=CHI ++Tape Location: Disk L20 Track 1 += [Bg:A1] +C once[-:] an elephant and a giraffe were play/ing ball : when suddenly the ball drop/ed into[-:] the sand that[-:] was water. +C out they sunk [EU]. +C the ball pick/ed them out [EU]. +C but it was just the elephant. +C and they play/ed ball again. += [Eg:A1] += [Bg:A2] +C Once (an) an elephant and a : horse [~_I_keep_getting__mixed_up] : [~_EXA:_once_an_elephant_and_a_horse] [~_Well_this__one_(i)s_a_horse_and_this_one_(i)s_a_elephant] : were play/ing in the sand. +C Suddenly it was not sand they realize/ed. +C They fell : and sunk. +C They came out again. +C : They got hurt : because that is how it look/3s. +C they had to put a bandaid (on a different[!] eleph) on that elephant, a doctor elephant. +C and : they sat down. +C : the doctor elephant got angry! += [Eg:A2] += [Bg:A3] +C once an elephant and a : giraffe : (w) were shoot/ing airplane/s : (when it look/ed) : when suddenly the airplane got broken. +C and it shooted|shoot[EW:shot] (into that water :) into the water. +C oh no said the little giraffe. +C like : he yell/ed. +C Mister FixIt came and said what is all this yell/ing : about? +C (a) (a) a plane got stuck in the water. +C can you take it out? +C of course I will. +C and (he s) he got angry too. +C did not know how [EU]. +C so he took his net out of his : truck and scoop/ed it up. +C and that did the job [~_laughs]. +C and they play/ed airplane[!] again. +C and they were happy. +C they like/ed (the) the airplane. +C it was all fix/ed up. += [Eg:A3] += [Bg:B1] +C Once a dog and a rabbit : [~_I_have_a_dog] were play/ing in the sand. +C They made a sandcastle. +C (And when) by the time it was finish/ed they pour/ed some more sand. +C And it fell down : and did [~_makes_sound_effect_'glop'][!]. +C They built the sandcastle again. +C It was up. += [Eg:B1] += [Bg:B2] +C Once a dog and a rabbit : were walk/ing down. +C They had a picnic[!]. +C Soon the rabbit was so tire/ed and full : that he had to go to sleep. +C Out they pack/ed [EU]. +C His leg/s got tired. +C Dog had to pull him. +C Doctor came along and fix/ed up the rabbit : and took them home. += [Eg:B2] += [Bg:B3] +C once (a) : a dog and a rabbit : were wait/ing down with a balloon : when the balloon pop/ed. +C on that hot day they all sat. +C up went the balloon. +C it pop/ed. +C out came : the balloon man with lot/s of balloon/s. +C and they gave one to each. +C and they had lot/s of balloon/s. +C only one pop/ed. +C and they like/ed their balloon/s. +C off they went. +C out came Doctor Rabbit. +C he said what (are) these balloon/s[!] are for [EU]? +C the balloon man gave it to us because we love balloon/s. +C and ours pop/ed away. += [Eg:B3] diff --git a/data/ENNI_SALT/test/562.slt b/data/ENNI_SALT/test/562.slt new file mode 100644 index 0000000000000000000000000000000000000000..273e62163f17d1408c1336073e2cf647b8d80f31 --- /dev/null +++ b/data/ENNI_SALT/test/562.slt @@ -0,0 +1,128 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 1/23/1996 ++DOE: 1/24/2001 ++CA: 5;0;1 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 562=CHI ++Tape Location: Disk L24, Track 2 += [Bg:A1] +C (uh : hm :) once upon a time : then there was a[EW:an] elephant go/ing [EU]. +C (then[-:] the ra) then (the) : he came. +C (and was) and a ball[-:] was in[!] the pool[-:]. +C then he try/ed[-:] to swim in there. +C but he could not : [~_right]? +C then[-:] : she pick|pick[EW:picked] the ball up. +C then[-:] he was all wet. +=C then that is the end of the story [+_bch]. += [Eg:A1] += [Bg:A2] +C once upon a time : a[EW:an] elephant came along[-:]. +C and (that) (then) (then[-:] ) then [~_turn_the_story] : (then) (then : she want/ed to) then[-:] she want/ed to go. +C but[!] : she falled|fall[EW:fell] on herself. +C and the more she was run/ing she falled|fall[EW:fell][-:]. +C and[!] someone is go/ing to[:_gonna] help her. +C and she got a (br um) a[EW:an] owie [~_okay]. +C (then[-:] come along) (elephant came) then the elephant came. +C (and he) and that was a coast. +C then there was a[EW:an] owie go/ing. +C (and there was) but then[-:] : there was nothing to do[-:]. +C then the animal was all[-:] better. +C and[-:] he said no run/ing : because if you run you fall on yourself. +=C I never do that I but I run on a sidewalk and I like like while I was two [+_bch]. += [Eg:A2] += [Bg:A3] +C like once upon a time : she did not : allow/ed in[-:] [EU]. +C something came. +C (and[-:]) and then there was an airplane go/ing in the water[-:]. +C and she[-:] : play/ed it and[-:] something. +C and she taked|take[EW:took] it away and : throwed|throw[EW:threw] it in there. +C : (um then[-:]) : then he was angry. +C (and she) and the boy told her : you did it on a purpose. +C then a lifeguard came[-:]. +C (then[-:]) : then the airplane was still in there. +C he want/ed it out. +C he try/ed to reach it. +C but he could not! +C and[-:] someone got it. +C but she was very trifle[?]. +C (um) then[-:] someone is go/ing to pick in[EW:up] a net. +C (um) : then someone is go/ing to pick it xx. +C then he was happy. +C then[-:] he was glad. +C then she[!] was glad. +C they were : make/ing new friend/s again. +=C then the end of the story [+_bch]. += [Eg:A3] += [Bg:B1] +C once upon a time[-:] (he) she built a nice sandcastle. +C but (then that rabbit) : then the rabbit was surprise/ed. +C and he wan/ted to do it too. +C (then c) then[-:] they were make/ing a other[EW:another] castle. +C then[-:] someone push/ed it down. +C and that was (her[-:] like) like a rabbit or maybe : someone else. +C and it was[!] rabbit. +C and[-:] she did not do it. +C so she try/ed to fix it. +C and he[-:] was not (uh) please/ed. +=C then that is the end of the story [+_bch]. += [Eg:B1] += [Bg:B2] +C (he) she was walk/ing by. +C and[-:] (then[-:]) then[-:] a rabbit was go/ing[!] by. +C and a puppy saw her. +C and a puppy said[-:] I am go/ing to picnic like you. +C so they had a nice picnic. +C and[-:] he was get/ing : goofy. +C and[-:] suddenly he was tire/ed. +C and he was full of candy. +C and[-:] he is get/ing sicker : sicker and sicker. +C then he knowed|know[EW:knew]: he[-:] was get/ing sicker and sicker. +C and (he) she need/ed : him to help her. +C he was so full he could not even walk. +C and[-:] the rabbit said : get up! +C and[-:] then[-:] he was : fine at all. += [Eg:B2] += [Bg:B3] +C then[-:] she was try/ing to pull it. +C but he was so[-:] happy. +C (a ra) and a other[EW:another] rabbit came along. +C and she said what are you do/ing[!]? +C I am just pull/ing some stuff. +C and[-:] a balloon was not go/ing up. +C and she[-:] was happy. +C suddenly it was go/ing up : and up : and up : and up and up : and up. +C then suddenly he : want/ed a other[EW:another] one. +C and[-:] : she was angry. +C there she came. +E just a sec [~_interruption_as_someone_came_into_the_office]. +C then he was go/ing to [~_gonna] get a other[EW:another] balloon. +C she was angry. +C and he[!] want/ed a balloon. +C and he said yup I want a balloon. +C and he did not know. +C : and[-:] the xx [~_sounds_like_'mendasee'] said no[-:]. +C can you see? +C (and[-:]) and he said : you do not have any money? +C (that is) : that is not do/ing. +C : (then[-:]) then suddenly : he had idea. +C and[-:] a rabbit had money somewhere : to find[-:]. +C and that was someone else look/ing : in a far away. +C and she said what is it you are do/ing? +C I need some money! +C (but) and she said : she did not know what she need[EW:needed] the money for. +C : (then[-:]) then she give|give[EW:gave] him some (won) money. +C and they want/ed two[-:] balloon/s. +C that was all. +C and he[-:] want/ed them two. +C but other/s hear/ed[?] it. +C but there was[EW:were] two left. +C then they got both the balloon. +C and they love/ed it. +C then they : hug/ed it. +C (and then something went[-:] ) (then[-:]) [~_coughs] (then[-:]) then she was surprise/ed[-:]. +C and that was true. +=C that is the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/test/565.slt b/data/ENNI_SALT/test/565.slt new file mode 100644 index 0000000000000000000000000000000000000000..d6021e3f4a80ab2920aae441be0e193c94ddc4d2 --- /dev/null +++ b/data/ENNI_SALT/test/565.slt @@ -0,0 +1,85 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 7/10/1995 ++DOE: 11/20/2000 ++CA: 5;4;10 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 565=CHI ++Tape Location: Disk L20 Track 105 += [Bg:A1] +C play/ing baseball [EU]. +C bounce/ing the three ball/s in the : fall[-:] [EU]. +C look/ing at a : ball in the fall[-:] [EU]. +C lay/ing down in the fall try/ing to get the ball [EU]. +C try :*to give someone the ball in the water : in the spring [EU]. +C play/ing : run/ing around in the spring[-:] [EU]. += [Eg:A1] += [Bg:A2] +C look/ing in the water in the (f) : summer [EU]. +C (lookin) run/ing through the water in the summer [EU]. +C run/ing (in the) in the summer : on the sidewalk [EU]. +C get/ing hurt on the sidewalk in the : summer [EU]. +C get hurt in the summer cry/ing [EU]. +C play/ing in the summer [EU]. +C sit/ing down on the bench in the summer [EU]. +C sit/ing down on the bench in the : summer [EU]. +C (get) someone *is get/ing mad [EU]. += [Eg:A2] += [Bg:A3] +C be/ing happy : in the fall[-:] [EU]. +C play/ing in the fall with a little toy : airplane [EU]. +C play/ing with a little toy in the : fall[-:] [EU]. +C put his airplane in the water in the fall[-:] [EU]. +C put the water (in the) in the water in fall [EU]. +C put the water in *the fall [EU]. +C put the water in *the fall [EU]. +C and they *are happy [EU]. +C try and get it in the water in the fall [EU]. +C sad it *is in the water in the fall [EU]. +C get/ing : a net to try to get [EW:it] in the water in the fall [EU]. +C try to get it in the fall[-:] [EU]. +C then kind of got it [EU]. +C give/ing the airplane to somebody in the (f) fall [EU]. +C (givin) hold/ing the airplane in the fall [EU]. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C play/ing [EU]. +C play/ing in the sand [EU]. +C make/ing a sandcastle : with sand [EU]. +C play/ing with sand : with sand [EU]. +C play/ing with sand with sand [EU]. +C [~_sighs] play/ing with sand with sand [EU]. += [Eg:B1] += [Bg:B2] +C (uh) bring/ing food : somewhere [EU]. +C have/ing a picnic somewhere [EU]. +C lay/ing down and eat/ing somewhere [EU]. +C (la) lay/ing down and eat/ing somewhere [EU]. +C play/ing somewhere [EU]. +C pull/ing somewhere [EU]. +C play/ing somewhere [EU]. +C play/ing somewhere [EU]. += [Eg:B2] += [Bg:B3] +C bring/ing a cart : on the sidewalk in the spring [EU]. +C take/ing a cart : somewhere in the spring [EU]. +C take/ing a cart somewhere in the spring [EU]. +C try/ing to get the balloon[-:] [EU]. +C no handle/ing [EU]. +C and they would all go somewhere in the spring. +C look/ing up (s) in the sidewalk in the spring [EU]. +C saying could I have a : balloon in the spring [EU]. +E see/ing what? +C (ss) get/ing a balloon in the spring [EU]. +C look/ing at a : balloon [EU]. +C (ss) look/ing they were (at a tr) at a balloon in the spring [EU]. +C but they were all gone. +C walk/ing in the spring [EU]. +C (um) : look/ing at the balloon/s [EU]. +C pull/ing someone to that[EW:those] balloon/s in the spring [EU]. +C (uh) : get/ing a balloon in the spring [EU]. +C walk/ing [EU]. += [Eg:B3] diff --git a/data/ENNI_SALT/test/569.slt b/data/ENNI_SALT/test/569.slt new file mode 100644 index 0000000000000000000000000000000000000000..8c09542d3d498489bd03ca32b8f9e54e221074de --- /dev/null +++ b/data/ENNI_SALT/test/569.slt @@ -0,0 +1,101 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 8/25/1995 ++DOE: 4/19/2001 ++CA: 5;7;25 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 569=CHI ++Tape Location: Disk M10, Track 33 += [Bg:A1] +C he said hi. +C : I love those rock/s! +C then : that rock is fall/ing! +C and (he) : that one is swim/ing! +C and he gave that rock[!] [EU]. +C (and he play) : and he can play with it now. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C and : (uh b xx) there (was) is *an elephant and this one [EU]. +C he was jump/ing[!] over. +C (an) and they can run faster[!]. +E hm were you go/ing to help turn? +=C yep [+_bch]. +E okay. +C he said I want to go run[!] faster and jump[!] over it. +C and he said you are not big[!] enough. +C and he said oh yes I will[EW:am] [-:]. +C she ran[!] (and) : and then slip/ed. +C (uh) and he will say : (y) ouch! +C and that hurt/3s! +C he has a booboo. +C and he tell|tell[EW:tell/3S] his mom[-:]. +C and then : he *is still cry[EW:cying] [-:] [EU]. +C then he sit|sit[EW:sits] on it. +C and he could help. +C and : do not : play : (on : the rule/s) on (the) the pool/s [EU]. += [Eg:A2] += [Bg:A3] +C once upon a time (there was the) (this one is re) (really sheal) (he) he said I like your airplane. +C he said thank you! +C and then it fly/3s[-:]! +C and he will catch[!] it. +C and he catch|catch[EW:caught] an airplane. +C it do/3s not fly[-:]. +C but : suddenly (he) the airplane did not fly[!] up. +C he look/3s so angry [~_makes_sound_'grrr']! +C (and then) : and he said : what is the matter? +C he said I was : drop/ing it. +C (and) and he take|take[EW:takes] it. +C and it fall/3s down. +C then : why did you did that! +C I did not do anything he said! +C maybe I can get[!] it. +C [~_grunting] and it is too hard. +C (maybe) : maybe I could try again. +C I will catch it in that net[!]. +C he scoop|scoop[EW:scoops] it up. +C and that airplane : work/3s! +C and he is so[!] happy. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C a bunny (l) love/3s the dog. +C (and : they shovel the) (and they) and that dog build|build[EW:builds] a castle. +C (and : the castle[-:]) and (that bunny : just : well) : it will fall down the castle. +C and : that : bunny : (he) : he melt|melt[EW:melts][!] them. +C he did not do it. +C they fix|fix[EW:fixed] it up. += [Eg:B1] += [Bg:B2] +C he wave/ed : at bunny. +C and they eat some snack/s. +C and the rabbit[EW:rabbit/z] (is) tummy is full. +C and they got a tummyache [EU]. +C he tell|tell[EW:tells] him. +C he just : look|look[EW:looks] at it. +C he just got a : tummyache. +C she *is really : not feel/ing all better [EU]. +C then she feel/3s all better. += [Eg:B2] += [Bg:B3] +C he wave/ed at the dog. +C and he get/3s the balloon. +C then : he show at the balloon [EU]. +C then : she[-:] pull|pull[EW:pulls] it up. +C (he did not) she did. +C and it : go|go[EW:goes] up! +C and he was mad[!]. +C (it) : she tell|tell[EW:tells] them. +C and he look|look[EW:looks] at the balloon/s. +C and he said : would you : please get that balloon? +C and[-:] this present number five. +C and they : love[-:] them. +C and they tell him again[!]. +C and he said the balloon (will not get) (it wo) he will not get it back! +C and : they all had two balloon/s. +C and last year they have|have[EW:had] a balloon. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/test/572.slt b/data/ENNI_SALT/test/572.slt new file mode 100644 index 0000000000000000000000000000000000000000..f30829a79d9a12cdc7936c278e0b5d7723d0e6c6 --- /dev/null +++ b/data/ENNI_SALT/test/572.slt @@ -0,0 +1,176 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 12/10/1995 ++DOE: 5/10/2001 ++CA: 5;5;0 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 572=CHI ++Tape Location: Disk M11, Track 46 += [Bg:A1] +C (the elephant start) : (the elephant[-:] start/s scream/ing[-:][!] with) [~_what_(i)s_this_thing_#_on_#_oh_a_trunk_trunk] : the elephant start/s do/ing with his trunk [EU]! +C he (s) make/3s lot/s of noise. +=C do you know about the elephant/s [+_bch]? +E oh (it do/3s not) it is your story. +E you make it up : whatever you think. +C and then they saw a[EW:an] egg in the water swim/ing. +C they want to pick it up. +C the elephant said (uh) :[~!_screaming_'aah'] why there is a[EW:an] egg! +C I want to jump in the water and get it! +C ah[!] the guy swim|swim[EW:swam] in the water to catch it! +C and the elephant is do/ing this [~_makes_unknown_gesture]! +C and then the guy[-:] : (um) swim|swim[EW:swam]. +C and he give|give[EW:gave] the thing : for[EW:to] the elephant. +C the elephant said wow! +C : and then the elephant went away. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C they saw a water [EU]! +C they want to swim in there. +C it is like the two guy/s the elephant and that guy. +C : same. +=C and that is it [+_bch]. +C and[-:] then the elephant said look! +C I want to swim in the water! +C and then they start. +C the elephant was first. +C the guy was behind him. +C and he start/s run/ing. +C I do not know what is he run/ing for. +C and they still[!] run again. +C know what is he run/ing for too. +C and then they stop/ed. +C and the elephant fell. +C and it hurt his leg. +C [~_laughs] that is *a funny part [EU]. +C and then a[EW:an] elephant came (and squeeze/ed[-:] his). +C and then he put a bandaid [EU]. +=C and that is it [+_bch]. += [Eg:A2] += [Bg:A3] +C elephant came[-:]. +=C (and that) what is what is this guy/z long neck [+_bch]? +=C what is what is this guy/z long neck [+_bch]? +=C what is his long [+_bch] [+/]^ +E I can not see it. +E it is your story, you make it up. +C and[-:] : he got a helicopter. +C he flied|fly[EW:flew] it in the air[-:]. +C (it fell in the water) [~_no] it keeped|keep[EW:kept] flying in the : sky. +C it could not get down. +C he was go/ing to[:_gonna] catch it. +C he could not. +E okay shall I turn now? +C oh[-:] (he) he want/3s to fly it right now! +C the elephant is like this [~_makes_unknown_facial_expression]! +E oh, you show/ed me again with your face. +C (and then) and then he want/3s to fly it! +C the elephant catched|catch[EW:caught] it. +C he must have[?] want/ed to fly it. +C and then it fell in the water! +C uhoh and then that guy get/3s mad on the elephant : (cause it is) : because (it got s : um) it is got snuck[?] down [EU]. +C and it got stuck now! +C and then the other guy said : here is the bigger dad. +C and (the eleph) (the other guy) the other one said[-:] : look. +C the helicopter sneaked|sneak[EW:snuck] down! +C oh[-:][!] : (the guy) : the guy is try/ing to catch it! +C it gots[EW:got] all[-:] the way there! +C and then they could not catch it. +C that is a long one. +C and then the guy got a[-:] like : net[!]! +C oh[-:] the net catch everything. +C he catch|catch[EW:caught] fish. +C but it is hard to catch fish. +C they are fast! +C and[-:] (helicopter is) it is just a toy down there. +C you can catch it fast. +E okay, should I turn? +C and then the guy catched|catch[EW:caught] it. +C and he give it back to the : other guy. +C and then the elephant is really[?] happy. +C and he went [~_makes_unknown_facial_expression]. +E and he what? +C the (ele) elephant is happy. +C and he went [~_makes_unknown_facial_expression] : because he got that thing. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C the other guy was[-:] build/ing his sandcastle. +C and the other guy with glass/s[?] [EU]. +C they was[EW:were] happy. +=C and then turn the page now [+_bch]. +C and then the guy (w) want/3s to mix it : because he can not see or[?] watch. +C [~_see] the guy put the pail. +C it is go/ing to wreck it now! +C it is lot/s of sand! +C and then he wreck/ed it! +C that guy that is his sandcastle! +C he wreck/ed it! +C and then the other guy build|build[EW:built] another[!] sandcastle. +C but it is not nice. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C the guy said bye to (the guy) : the guy with the glass/s. +C and then he went. +C and he sit[?]. +C and he was play/ing with the sand. +C they was[EW:were] eat/ing. +C (and snow : uh) and snow came down. +C (um[-:]) : and then[-:] they was[EW:were] cold. +C and they went in the house. +C and then they came back out[-:]. +C and it was so[!] windy! +C and then they came back out. +C it was rain/ing[?]! +C and when they came back out it was sunny[!]. +C and when they came back out it was windy again. +C and when they came back out it was sunny. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C (um) : the guy went with the pail : with a balloon on. +C and then they see|see[EW:saw] [?] it. +C they want to get it to the sand. +C they could not find the sandpile. +C (and then[-:]) : and then the other[-:] balloon fell in the sky. +C balloon/s can fly in the sky when it is windy because it is not heavy. +C and then the guy want/3s to take it off. +C whoa[-:]! +C it forgot[?] to[?] go[?]! +C it is not hang/ing in : tight like that. +C it is like this. +C flied|fly[EW:flew] off [EU]. +C it is gone. +C he can not catch it in the air. +C oh yeah if that guy was with it then it is windy so hard [EU]! +C it can fly with it : if it is hang/ing on. +C oh[-:] it is fly/ed! +C he took it out and it flied|fly[EW:flew] up. +C (and then[-:] : th) and then the balloon pop[EW:popped]. +C and the guy was mad. +C and the other guy was sad. +C and the other guy bought lot/s[!] of balloon/s. +C and he gived|give[EW:gave] them to the kid. +C and the other balloon pop/ed [~_laughs] : the last one. +C and then the other[!] one pop/ed. +C that is it. +C and then another[!] one. +C and then it is not go/ing to pop! +C and then[-:] [+/]^ +E okay anything to say about this page here? +C (um) [+/]^ +E page eleven? +C and then the guy (look) : look how many balloon/s he say [EU]. +C and then he give|give[EW:gave] him some money. +C (and he) and then they *are jump/ing to get the balloon [EU]. +C the guy can not see. +C they just gather[?] by his hand. +C and he went. +C (and then they hang/ed on their arm) [~_EXA:_can_n(o)t_hear_you] and then they hanged|hang[EW:hung] on on the balloon [EU]. +C they hanged|hang[EW:hung] on on a balloon [EU]. +C and then they *are smile/ing [EU]. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/test/602.slt b/data/ENNI_SALT/test/602.slt new file mode 100644 index 0000000000000000000000000000000000000000..e6d89d0c8569779b8673a53e4904c960ad6399e7 --- /dev/null +++ b/data/ENNI_SALT/test/602.slt @@ -0,0 +1,86 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 1/18/1994 ++DOE: 3/9/2000 ++CA: 6;1;20 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 602=CHI ++Tape Location: Disk M3 Track 45 += [Bg:A1] +C (the) that is a giraffe who is laugh/ing with the elephant. +C : and then he saw the ball[-:]. +C and then the elephant was scared. +C : and then : the giraffe gave (him) the : elephant the ball. +C (and then the giraffe came up the sidewalk) and then the giraffe came up the sidewalk. += [Eg:A1] += [Bg:A2] +C (the) the giraffe and the elephant were too scared to jump in the water. +C and then the elephant was laugh/ing. +C but the giraffe was (like ssss) scared. +C and then the elephant (s) was like trip/ing. +C and then the elephant (was) hurt his knee/s. +C and then the elephant cry/ed. +C : then the elephant : camed|come[EW:came] home. +C : and then the elephant was laugh/ing. +C : and then the : swim/ing man (said) : he was point/ing a hand [EU]. +E the swim/ing man was what? +=C point/ing his hand [+_bch]. += [Eg:A2] += [Bg:A3] +C the elephant was laugh/ing. +C and the giraffe was laugh/ing. +C : and then they were play/ing with[-:] the : airplane. +C and then : the elephant/z turn to : play the airplane [EU]. +C : but they drop/ed it in the water. +C and then (they) the elephant was scared. +C but the giraffe was angry. +C and then the : swim/ing man : was all mad at them. +C but he said what happen/ed ? +C and then he was like : (wo) say/ing uhoh. +C and then he was try/ing to get it. +C but he could not. +C and then : the giraffe was cry/ing. +C and then the[-:] girl was try/ing to get a fish tank and then : get it [EU]. +C and then she got the airplane. +C and then (sh) she gave it back to the giraffe. += [Eg:A3] += [Bg:B1] +C this one the bunny was dig/ing. +C but this : girl came and then dig|dig[EW:dug]. +C and then (they) they both share/ed. +C : then they put it on together. +C but that girl was scared. +C and then they were (like) all sad. +C and they made it back again. += [Eg:B1] += [Bg:B2] +C the bunny said hi. +C : and then they went : to[EW:on] : a field : (tr) trip. +C and then they ate carrot/s. +C but they[EW:the] guy did not got[EW:get] nothing[EW:anything]. +C and then (they) they both (um) share/ed food. +C and then (the f) the bunny (um) dranked|drink[EW:drank]. +C and the bunny was fatter and fatter and fatter. +C (and) but he flew it off to this doctor bunny [EU]. +C and then he (s) told the doctor that (he is fff) he need/3s help. +C and then he said go to the doctor. +C and then : the doctor (ss) went (to the dd) to his : workshop. += [Eg:B2] += [Bg:B3] +C this guy was hold/ing a balloon with a : little car. +C : and then he was say/ing look my balloon! +C and then he pull/ed it off and give|give[EW:gave] it to (the) the other guy. +C but it flewed|fly[EW:flew] up *in the sky [EU]. +C and then the dog was all angry. +C (and then they ss) and then they sawed|see[EW:saw] the balloon man. +C and then he said can I have that? +C (and) but it was five dollar[EW:dollars]. +C and then they were all sad. +C but they saw the doctor. +C and doctor can we buy this? +C can we buy the balloon doctor? +C and then the doctor (s) gave him the money. +C (th) then they (b) got another balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/test/603.slt b/data/ENNI_SALT/test/603.slt new file mode 100644 index 0000000000000000000000000000000000000000..24fc4c190d60161dd738a6b677302b6a8440ec5e --- /dev/null +++ b/data/ENNI_SALT/test/603.slt @@ -0,0 +1,135 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 9/09/1993 ++DOE: 4/19/2000 ++CA: 6;7;10 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 603=CHI ++Tape Location: Disk L7 Track 12 += [Bg:A1] +C There is an elephant and a giraffe (that). +C but the elephant is bounce/ing a ball so fast that the giraffe want/3s to try. +C (and the elephant um) (and well the elephant and the giraffe) but the giraffe is try/ing to get the ball in the water. +C so he swam. +C (and) (and the elephant was cover/ing eyes) (his eyes) and (um) the elephant was cover/ing his eyes. +C and his trunk was full of stuff. +C and then (h) he was happy. +C and then the giraffe was happy. +C then the : elephant start/ed to grab it from (the) the : giraffe/z hand/s. +C and he said thank you. +C and the (: um) elephant had the ball. +C and the : giraffe was soak/ed. +C so the giraffe ask/ed him if he could bounce it. +C (but he said) but the elephant laugh/ed. +C and he said no. += [Eg:A1] += [Bg:A2] +C There is the giraffe and the elephant. +C and the giraffe has a kleenex. +C and they were go/ing to go in the water. +C and : (um) the elephant was go/ing to go in the water. +C but the giraffe push/ed the elephant. +C and : so the elephant fell in the water. +C and the elephant slip/ed (when) when the giraffe was : run/ing after him so he would not slip. +C but then the elephant : he got hurt [~_?]. +C and (the giraffe) [~_well] the elephant got hurt because (um) he slip/ed. +C and the giraffe was run/ing : to see (what was ran) what was wrong. +C and the elephant was cry/ing. +C and the coach came to see. +C and the giraffe was just look/ing at the elephant. +C and (then the) : then the coach start/ed to put a bandaid [EU]. +C and the : elephant was cover/ing (ey) his eyes and (um) : do/ing kind of a mad [~_laughs] face. +C and the : giraffe was just look/ing. +C but : then the coach sat : the elephant down on a bench. +C and the (uh : um) giraffe was just : (um) hold/ing his hands like this [~_gestures]. +C and the coach was point/ing his finger. +C (and he is) and the elephant : was hold/ing : his hands right between his legs. +C (and then : he) and then the elephant (: um) had a kind of a mad face again. += [Eg:A2] += [Bg:A3] +C The giraffe and the elephant [EU]. +C and (the elephant was) [~_well] the giraffe was hold/ing the (airplane) toy airplane. +C (and then the) and the : elephant want/ed to play with him. +C (but the) (but : he was still play/ing with it : but) [~_I__mean] the giraffe was still play/ing with it. +C and he : was : make/ing the elephant not catch it. +C but the : elephant finally caught it. +C and then he start/ed play/ing with it. +C and the giraffe was start/ing to get mad. +C (but the : po) but the toy plane went in the water. +C (so the two guy) but the : giraffe and the elephant : (um) put their mouth like this [~_makes_facial_gesture]. +C but then the : giraffe was really mad. +C and the : elephant was ( still ga) still look/ing at the airplane. +C and the coach came. +C (and the) and (he) he was look/ing at the giraffe. +C so : (um) the elephant was tell/ing him what happen/ed. +C and then (the um) the : plane start/ed to sink even more. +C (and the : the elephant) but (the elep) [~_I_mean] the coach went over to the : elephant. +C and the giraffe was (um) look/ing at (the) the two : elephant/s. +C and the elephant was : scream/ing his head off. +C and he was tell/ing the coach what happen/ed. +C but the coach had to grab it before it sank all to the bottom. +C but he could not reach it. +C and the : giraffe was start/ing to cry. +C but this other elephant : came with a net and try/ed to get it. +C and the (um) plane was started[EW:starting] to sinking[EW:sink] more. +C but he still could not reach it. +C but he finally got it. +C and he gave it back to the giraffe. +C (now : the) now the giraffe and the elephant (were happily) were happy. += [Eg:A3] += [Bg:B1] +C There is a bunny rabbit and a dog : make/ing a sandcastle. +C (there is the bunny and the dog that : um : are :) (um : well) the bunny rabbit is dig/ing the sand up. +C and the : dog is : (um) make/ing the sandcastle smoother. +C and the bunny rabbit was pour/ing sand all over the sandcastle. +C so the dog was : (um) : start/ing to (s um) (uh) get sad. +C (but the) but half of the : sandcastle was left. +C then the : dog (is) was start/ing to cry. +C and he was start/ing to make it all over again. += [Eg:B1] += [Bg:B2] +C There is a : bunny rabbit and a dog that : are go/ing to[:_gonna] have lunch together. +C there is a bunny and a dog that are : have/ing[!] lunch. +C there is the bunny and the dog. +C (but the bunny) (but) but the (bu) dog is eat/ing. +C (and the bunny is) (and the bunny is chew) and the bunny is sick. +C the bunny : (um is) : does not feel good. +C and the : dog does feel good. +C there is a : bunny and a dog. +C but the (bu) bunny is a mess. +C (and the bunny is go/ing to : well) the dog is go/ing to tell the other bunny that : (um) he has to : fix him. +C but he pull/ed him because he will not [EU]. +C and he made him worse. +C and then the bunny felt good. +C and the : dog was just : by the sandbox. += [Eg:B2] += [Bg:B3] +C There is a bunny and a dog. +C (and) but the dog (s) has a balloon on his wagon. +C and he is pull/ing the wagon. +C and the bunny : rabbit : seen|see[EW:saw] the balloon. +C and (he) he was go/ing to[:_gonna] not : try to take the balloon off [EU]. +C but the dog did not want him to. +C and the balloon (fl) flew away. +C and both of them were try/ing to catch it. +C (the bunny rabbit : the dog) but the dog was (rea) really mad at him. +C (the : rabbit was) [~_well] there is a big rabbit that : had a lot of balloon/s. +C (and the bunny rabbit) (but) (and the dog) but the dog was still mad. +C and the (w) bunny rabbit went to get another one. +C and he asked the man that has all the balloon/s : could I have one? +C but they were only five cent/s. +C and he did not have five cent/s. +C and then he said : if you do not have five cent/s, you can not (um) take a balloon. +C then the : dog and the bunny (ra) rabbit seen|see[EW:saw] the doctor. +C and the bunny rabbit ran. +C but the : dog stay/ed. +C and the : bunny rabbit said I want one of those balloon/s. +C and he will not give me it. +C (then he : um) and the doctor had a lot of money. +C so he gave him most of his money. +C and : there is[Ew:are] only two left because (the bunny rab) the dog took most of them. +C and (the bunny and the wa) (the bunny and the wa) [~_I__mean] the bunny and the dog had (the two balloo) the balloon/s. +C (and the) (then they went) and both of them were really happy. += [Eg:B3] diff --git a/data/ENNI_SALT/test/604.slt b/data/ENNI_SALT/test/604.slt new file mode 100644 index 0000000000000000000000000000000000000000..9bbb4a7c013d2179b6395e870fba56c5dfe9ee46 --- /dev/null +++ b/data/ENNI_SALT/test/604.slt @@ -0,0 +1,89 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 10/25/1993 ++DOE: 3/9/2000 ++CA: 6;4;13 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 604=CHI ++Tape Location: Disk M3 Track 69 += [Bg:A1] +C first they have (balling) bowling balls. +C : (secon) second they drop|drop[EW:dropped] one. +C third : he try/ed to swim and got|get[EW:get] it. +C after : she got the ball. +C : after he try/ed to jump with the bowling ball. +C that is a silly idea. +C you will fall down and hurt yourself. += [Eg:A1] += [Bg:A2] +C first : they saw the thing. +C and they want/ed to jump. +C and then they ran. +C : (and) and then she ran too fast. +C then she fell down and hurt shes[EW:her] knee. +C : and she cried. +C and the coach help/ed her up : and put a bandage and put her on the bench. +C : after (she) the coach said do not run because it is wet and slippery. +C should not run like that. += [Eg:A2] += [Bg:A3] +C (first they) first the elephant saw the giraffe/z airplane. +C : and then he flied|fly[EW:flew] it. +C and (the) the elephant want|want[EW:wanted] to tried[EW:try] it. +C then she try/ed it. +C and then it accidentally drop/ed on the water. +C and (the) the giraffe was angry. +C and then (the coach) (the um) the coach said what is happen/ing? +C and she said I accidentally flied|fly[EW:flew] it. +C it *is gone on the river [EU]. +C (the coa) the coach (trie um) (s s) try/ed to help. +C the coach could not help. +C (this) after the giraffe has tear/s because he want/3s his airplane. +C after (the) the woman (in the net i got : um : um) had a net (and tried) and (um want) help/ed him to get it out. +C and then the woman try/ed. +C and she got it. +C : and then : the giraffe was happy. +C after he hug/ed his airplane. += [Eg:A3] += [Bg:B1] +C they was[EW:were] make/ing a (ss) sandcastle, (the um) (the um) the dog. +C and then the rabbit came and help/ed it. +C : and then : he got some sand, the rabbit. +C he pour/ed it : on the sandcastle. +C he felled it down [EU]. +C : and then the dog try/ed to make another one. +C but he could not. += [Eg:B1] += [Bg:B2] +C they went for a picnic. +C they ate their food. +C they were full. +C : and then the rabbit had a stomachache. +C and then he went to a doctor. +C and then he ask/ed the doctor to help his friend. +C and then the doctor help/ed. +C : (and then the doc) and then he was back to normal. += [Eg:B2] += [Bg:B3] +C first they were (um) pull/ing (the) the balloon on a wagon. +C and then he show/ed it to his [~_pronounced_'hes'] friend. +C and then the rabbit untie/ed it. +C and then it flew away. +C and then the dog is angry. +C and then : (they) they saw : a man (buy/ing) (havin) have some balloon/s [EU]. +C and they want to[:_wanna] get one. +C and then he ask/ed for one. +C and then (h) he show/ed how much it was for. +C and then (she) she said (not) not to take it. +C and then he ask/ed the doctor to pay. +C and then (he) he ask/ed (like) (like) doctor (um) I tooked|take[EW:took] a balloon off my friend/z wagon [EU]. +C and it flew away. +C and then he paid. +C after they both have balloon/s. +C (the f) (the) only the : dog has a balloon. +C both of them have a balloon. +E oh, now at the end they do. +=C yeah [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/test/607.slt b/data/ENNI_SALT/test/607.slt new file mode 100644 index 0000000000000000000000000000000000000000..bd47b1ac03b512a3be379b3d94997193eb3ab5eb --- /dev/null +++ b/data/ENNI_SALT/test/607.slt @@ -0,0 +1,104 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 3/10/1994 ++DOE: 4/25/2000 ++CA: 6;1;15 ++Gender: F ++Context: Nar ++Group of CHI: SLI ++ID: 607=CHI ++Tape Location: Disk L9 Track 16 += [Bg:A1] +C The : elephant : (and the : ah) [EU]. +C the giraffe : (was : uh) saw the elephant was bounce/ing the ball. +C and (the :) the ball was on the water. +C and giraffe : *was try/ing to get the ball on the water [EU]. +C and : the giraffe : got it. +C and : the elephant get|got[EW:got] it. +C and the giraffe was wet. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C Once upon a time (a) the elephant and the giraffe was saw the water [EU]. +C (and) and : (ahh : um) the elephant want|want[EW:wanted] to go on the water. +C and the elephant go|go[EW:goes] right away to go on the water. +C and the elephant slip/ed over (the) the ground [EU]. +C and the elephant got hurt on the knee/s. +C and the elephant was cry/ing. +C (and the) and the elephant was put/ing a bandaid on. +C and (the : elephant was) the elephant was (ahh ahh) mad because it hurt/3s on the knee/s with the bandaid. +C and they feel better. +C and they sit down. +C but the elephant (ahh) : look/ed so mad because (they're) the giraffe and the elephant want to go to the water. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C the giraffe and the elephant [EU]. +C the elephant saw the airplane on the giraffe[EW:giraffe/z] hand. +C and the : elephant : (was) saw the airplane was fly/ing. +C and the giraffe was : stand/ing (uh) with the airplane. +C and the elephant take|take[EW:took] away from the giraffe[EW:giraffe/z] airplane [EU]. +C and the elephant want|want[EW:wanted] to see it. +C and the elephant drop|drop[EW:dropped] it in the water. +C and the giraffe was very angry. +C and (the elephant and the giraffe was saw the) the other elephant was saw the airplane in the water [EU]. +C and : (the) the elephant was (uh) say[EW:saying] (the) she was dropped[EW:dropping] the airplane in the water. +C and (the : uh) the elephant *was try/ing to go get (the) the airplane [EU]. +C and he can not get it. +C : but (: uh) the giraffe was cry/ing with the airplane. +C and : (the) then the other (uh) elephant will get the airplane with : that thing (to) for the fish. +C and (she) the elephant *was try/ing to get it [EU]. +C but : it is too hard to get it. +C but : she get|get[EW:got] it. +C the elephant got it now. +C and the (uh) giraffe was happy. +C and : the elephant and the giraffe was[EW:were] happy too. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C the bunny and (the) : the dog [EU]. +C the dog was make/ing a sandcastle. +C and the rabbit want|want[EW:wanted] to help the dog. +C and the rabbit : was make/ing a sandcastle. +C and the dog *was all finish[EW:finished] [EU]. +C and the rabbit : was try/ing to put the sand on the castle. +C and the dog : was so scare/ed. +C (the) the rabbit *was try/ing to put : the sand on the castle [EU]. +C and there is breaked|break[EW:broke] (the) the sandcastle [EU]. +C and the dog was cry/ing. +C and the rabbit was so sorry : breaked|break[EW:broke] the sandcastle [EU]. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C The dog and the rabbit was[EW:were] go/ing to the picnic. +C and : the rabbit was have[EW:having] the carrot and some hot_dog/s and some cake : and some sandwich/s. +C and the rabbit got[EW:had] too much to eat. +C and the rabbit got a (st) stomachache. +C and he is get/ing so fat. +C and : the doctor was came[EW:coming] and saw the rabbit. +C (the) and the dog try/ed to get the doctor. +C and the doctor was : come/ing : and saw the rabbit there. +C and the rabbit was so : have a stomachache [EU]. +C and he *was feel/ing right sick [EU]. +C and the rabbit go|go[EW:went] home. +C and he felt better. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C (The dog and the bal) the dog and the bunny was[EW:were] saw (the balloon) the color pink balloon [EU]. +C (and) : and the rabbit went to see the balloon. +C and he *was try/ing to take it off for the dog [EU]. +C and (is) is float/ing away : from the dog [EU]. +C and the dog was right angry because : the bunny was : let go of the balloon [EU]. +C and : the dog : and the rabbit saw lot/s of balloon/s there. +C pink, green and orange and blue and purple, white and : gold. +C and : the rabbit choosed|choose[EW:chose] the : blue one. +C (and that) and : (the) (the nother) : the another[EW:other] (uh) rabbit was right angry because that is number five. +C so the rabbit and the dog want to pick the balloon. +C but : the doctor *was there because : the dog was sick [EU]. +C and (the) the doctor saw the dog was sick. +C and (he has got some) the doctor got[EW:has] some monies[EW:money] for the dog and the rabbit for the balloon/s. +C and the dog got the color the gold balloon [EU]. +C and the rabbit got the color the blue balloon [EU]. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/test/611.slt b/data/ENNI_SALT/test/611.slt new file mode 100644 index 0000000000000000000000000000000000000000..de8115076777a7f0f8705b8327d3a0eb1b66711f --- /dev/null +++ b/data/ENNI_SALT/test/611.slt @@ -0,0 +1,91 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 6/18/1993 ++DOE: 4/27/2000 ++CA: 6;10;9 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 611=CHI ++Tape Location: Disk L11 Track 54 += [Bg:A1] +C there is a guy (gi uh) have candy [EU]. +C and he is sell/ing it. +C (and he give|give[EW:gave]) and (it) one drop/ed into the water. +C and he swim/3s for it. +C and (he pull/3s um um) (he gots|get[EW:got] it) the other guy gots|get[EW:got] it. +C (and he get um) and (he get) (and do/3s not) he do/3s not give it to him. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C The guy is go/ing to jump into the water. +C the guy (um) run/3s and run/3s. +C and (the guy) the other guy he slip/3s. +C and he fall/3s down. +C and he cry/3s. +C (and he) and he has a booboo. +C and he put/3s a bandaid on it. +C and he carry/3s him. +C puts him on the bench [EU]. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C The guy is look/ing at him. +C and he has a[EW:an] airplane. +C and then the other guy take/3s the airplane and play/3s with it. +C and then (it fall/3s o) it fall/3s into the water. +C and then the other guy get/3s mad at him. +C and (the other guy get/3s m) (um the other guy) there is[EW:are] two guy/s stand/ing : get/ing mad. +C and the other guy (ge um um) get/3s scare/ed. +C and the other guy chase/3s it : into the water. +C (an) and the other guy cry/3s. +C and the other guy has a net. +C and the other guy : take/3s it out of the pool. +C and then he give/3s it back. +C and then (he) he like/3s him. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C (There is a) (there is a bunny rabbit um um gonna make a) there is a bunny rabbit who made a sandcastle. +C and (they are) both of them are make/ing a sandcastle. +C and (they are) (they are pour) (they are pour/ing it on) (on) (the guy) somebody is pour/ing it on. +C and he is break/ing it. +C and the other one get/3s : mad. +=C no not mad I forgot [+_bch]. +C it break/3s. +C and they make another one. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C they have both basket/s. +C the bunny rabbits has|have[EW:have] basket/s. +C and (they gr) they are have/ing a picnic. +C and then the other one eat/3s all of his. +C and then the other one (du um) has (uh) juice. +C and then (the other one is wa um) somebody is walk/ing. +C and somebody is pull/ing somebody/z shirt. +C and somebody gets mad. +C somebody bring/3s somebody home. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C there is a guy have/ing a balloon in his : wagon [EU]. +C and the other one is walk/ing. +C (and he w) and he is try/ing to take it off. +C and then he (en) unwrap/3s it a little bit off. +C and then it fly/3s away. +C and then (it float|float[EW:floats]) (he wrap um) (the um) the string fall/3s down. +=C (why does your boss) do/3s your boss let you look at these page/s [+_bch]? +E she says while your do/ing them I am not suppose/ed to so I am not so you can see them, go ahead. +C the guy has balloon/s in his hand. +C (and the) and the other one buy/3s one. +C (and then he) and (then he sh) then he : check/3s in his pocket for money. +C and he does not have money. +C he check/3s it for money. +C and he can not get one. +C (and) and (he was allow/ed to ah) (the other one : is) (the uh) there was a man : (heh uh) sell/ing balloon/s. +C and then he give/3s one to him. +C and the other one has a balloon. +C and the other[!] one has a balloon. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/test/613.slt b/data/ENNI_SALT/test/613.slt new file mode 100644 index 0000000000000000000000000000000000000000..024e4f7b3f80ee3f5bbe19e4839cb03b7fedd36c --- /dev/null +++ b/data/ENNI_SALT/test/613.slt @@ -0,0 +1,85 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 7/16/1993 ++DOE: 4/27/2000 ++CA: 6;9;11 ++Gender: F ++Context: Nar ++Group of CHI: SLI ++ID: 613=CHI ++Tape Location: Disk L12 Track 9 += [Bg:A1] +C They *are go/ing at the swimming pool [EU]. +C they *are put/ing (it) the ball in the swimming pool [EU]. +C and he is try/ing to get it. +C he got it. +C she is happy. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C (They were dr) they (dry themselves) dry themselves. +C and the girl is go/ing into the swimming pool. +C she is dance/ing. +C she is : cry/ing. +C : she gots|get[EW:got] a help from her friend [EU]. +C put a bandage on it [EU]. +C now (sh) : she can go on the[-:] swimming pool [EU]. +C she is sit/ing. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C She is talk/ing. +C the boy is play/ing with his airplane. +C she xx grab|grab[EW:grabs] it away from him. +C the : airplane is in the[-:] swimming pool. +C and the boy got angry. +C and (the k) the man come/3s by them. +E what did you say ? +=C the man come/3s side them [+_bch]. +C and the girl is talk/ing. +C the man was try/ing to : get it. +C the man can not get it. +C *the woman : try/ed to get it [EU]. +C she gots|get[EW:got] it. +C the boy is happy now. +C the boy and the girl is[EW:are] happy now. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C The boy is talk/ing to the[-:] : dog. +C and they are make/ing a castle. +C and the boy *is put/ing the sandcastle [EU]. +C and the girl is so happy[~!_laughs]. +C not the boy. +C he is sorry for it. +E he is what? +=C sorry [+_bch]. +=C and the end [+_bch]. += [Eg:B1] += [Bg:B2] +C They are look/ing for easter egg/s. +C and they are eat/ing. +C he eat|eat[EW:ate] the whole thing. +C he got hiccup/s. +C there is his father. +C and[-:] he have|have[Ew:has] to help him. +C and he gots|get[EW:got] a headache. +C he is go/ing. +=C and the end [+_bch]. += [Eg:B2] += [Bg:B3] +C The boy is run/ing. +C and the boy is talk/ing. +C and the boy is take/ing off the balloon. +C the balloon is float/ing away. +C and the girl went angry [EU]. +C and there is lot/s of[:_lotsa] ball [EU]. +C (sh) the girl is push/ing. +C the boy gots[EW:has] no money. +C the man is happy. +C the dad is here again. +C and : the man is not give/ing (thm) them balloon[EW:balloons]. +C the man give[EW:gave][-:] the[-:] : (rat : balloon) rabbit a (ba) balloon. +C and they can have one. +=C and the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/test/614.slt b/data/ENNI_SALT/test/614.slt new file mode 100644 index 0000000000000000000000000000000000000000..ea2987feaa798d3bab69b563dfe22794134eddae --- /dev/null +++ b/data/ENNI_SALT/test/614.slt @@ -0,0 +1,85 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 6/19/1993 ++DOE: 4/18/2000 ++CA: 6;9;30 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 614=CHI ++Tape Location: Disk M4 Track 31 += [Bg:A1] +C one day there was a[EW:an] elephant bounce/ing : a ball. +C : it went into the water. +C : the zebra jump/ed in and (ge) get/3s the ball [EU]. +C : and zebra give/3s it back to elephant. +C : the lady smile/3s. +C and the giraffe smile/3s. += [Eg:A1] += [Bg:A2] +C one day : they are both laugh/ing. +C and they want/ed to go on the board. +C : (the) : the elephant : said to the giraffe let us go on the board. +C : and : the elephant slip/3s. +C : and he get/3s a booboo. +C : then another (el) elephant come/3s run/ing and look|look[EW:looks] at the booboo. +C : and he put/3s a bandage on. +C : and now (she go) she is : surprise/ed. +C : no run/ing allow/ed (the :) the other elephant say/3s. += [Eg:A2] += [Bg:A3] +C one day : the giraffe had : a[EW:an] : airplane in his hand. +C : he was fly/ing it. +C elephant took it away from him. +C and she drop/ed it into the pool. +C : the giraffe got angry at the elephant. +C but the guy came : run/ing. +C and : he : see/3s the plane in the water. +C the elephant said it was not : me that brought it. +C the other elephant try/ed to reach it. +C : (then the l) then the giraffe was cry/ing. +C I know a way to get the plane out. +C she put in her thing and : got the airplane. +C (she is) she hand/ed : (the) : the airplane to the giraffe. +C : and the giraffe hug/ed it. += [Eg:A3] += [Bg:B1] +C one day : rabbit want/ed to play in the sand. +C and so did the dog. +C the dog : was go/ing to touch it. +C and the rabbit was fill/ing up his bucket. +C rabbit dump/3s sand on it. +C the dog saw. +C (and) : and the rabbit was horrified. +C the dog try/ed to fix it. += [Eg:B1] += [Bg:B2] +C one day dog met rabbit. +C and they both want/ed to have a picnic. +C rabbit ate and ate. +C : rabbit got a stomachache. +C and the dog was eat/ing. +C : he got : sick. +C the dog came run/ing to a doctor. +C he said wait a minute. +C what is this problem about? +C it is about him. +C and he is sick. +C the doctor take/3s him : for a walk. += [Eg:B2] += [Bg:B3] +C one day a dog (was take/ing a b) wrap/ed a balloon : on her[-:] : wagon. +C the bunny see/3s the balloon. +C he tie/3s it off. +C he let go. +C and it was float/ing away. +C and the dog was mad at the rabbit. +C and the rabbit see/3s balloon/s. +C : a[EW:the] balloon/s : were holded|hold[EW:held] by an old rabbit. +C it is worth five : cent/s. +C you cannot have a balloon if you do not have any money. +C rabbit go/3s : to the doctor. +C we want a balloon. +C she paid : (two[-:] ) two (ff) : nickele/s. +C and now they both got[EW:have] balloon/s. += [Eg:B3] diff --git a/data/ENNI_SALT/test/624.slt b/data/ENNI_SALT/test/624.slt new file mode 100644 index 0000000000000000000000000000000000000000..6cf662be8e73dc5124c3781475c108af0e394d4c --- /dev/null +++ b/data/ENNI_SALT/test/624.slt @@ -0,0 +1,91 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 10/16/1994 ++DOE: 11/14/2000 ++CA: 6;0;29 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 624=CHI ++Tape Location: Disk M5(2), Track 46 += [Bg:A1] +C [~_okay] : so (a guy) : there was a giraffe. +C he was at the pool. +C then he met a girl : bounce/ing a ball. +C but the ball fell in the water. +C and (the man) [~_like] the boy try/ed to go get it. +C and then he got the ball. +C and then[-:] : he was still all wet because he was in his clothes. +=C there [+_bch]. += [Eg:A1] += [Bg:A2] +C [~_okay] they saw a diving board. +C (and it) and it said no run/ing : (and) the sign said (but). +C and then she start/ed to run[-:]. +C and then she slip/ed. +C she fell on the ground. +C and she hurt her knee. +C and then the lifeguard came : and put a bandage on it. +C sat on a bench [EU]. +C and then the[-:] lifeguard said you are kick/ed out. += [Eg:A2] += [Bg:A3] +C [~_okay] a boy was there. +C and the girl was there. +C and then the boy had an airplane in his hand. +C he flew it around like this [~_gestures]. +C and then the girl grab/ed it out of his hand. +C and then[-:] it slip/ed out of her hand. +C and it went into the water. +C it was a pool. +C and then the boy got so angry. +C and the lifeguard came[-:]. +C and the girl said it was an accident. +C I accidentally : got the (w) : plane in the water. +C so the lifeguard try/ed to reach it. +C then he could not. +C the lifeguard girl[!] came : and pick/ed it up with a scooper : and gave it back to the boy. +C and then (he hug/ed it) : he hug/ed the plane[!]. += [Eg:A3] += [Bg:B1] +C well he[-:] were[EW:was] in the sandbox. +C and he meant[?] [EU]. +C (and he) somebody had a sandcastle built up. +C and they play/ed together. +C and he put some sand in a bucket. +C and the other guy touch/ed the castle[-:]. +C and then the rabbit : put the sand on[!] the castle. +C and then : he got so mad. +C so then they try/ed to fix it. +=C there [+_bch]. += [Eg:B1] += [Bg:B2] +C so[-:] : he was on the road somewhere. +C and he : put his hand out like[~!_laughing] this. +C and he saw somebody run : down[?] the street. +C and then[-:] : they decide/ed to have a picnic together. +C one is eat/ing a carrot. +C and then he got so[!] full because he ate all the food. +C and he got so[!] full that : the basket fell over. +C and then his dad came. +C and he is still lay/ing on the carpet. +C and then (he) the : child[!] pull|pull[EW:pulled] : the dad/z shirt. +C and then he said go[~!_laughing] to your room now. +C (and then) (he) : (he sna) and then the other guy went home because : the other guy was not really his child. +E the other guy was? +=C (re) really not his child [+_bch]. += [Eg:B2] += [Bg:B3] +C so (the) this boy met a girl[-:] : push/ing a wagon with a balloon attach/ed to it. +C and then[-:] they want/ed to play together. +C (so[-:]) : and then : the boy took the balloon off[!]. +C and it float/ed up into the air. +C and then the girl got angry. +C so then another man came by sell/ing balloon/s. +C so the girl want/ed one. +C so then (he uh) the guy look/ed in his pockets to see if he had any : money. +C but he did not. +C so he had to walk back : and ask somebody else : (to) for some more money. +C then he got more money. +C and then[-:] (they got another balloon) they each got a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/test/626.slt b/data/ENNI_SALT/test/626.slt new file mode 100644 index 0000000000000000000000000000000000000000..ec886d6c1db7e1bfd0e254bccaa13e87ecb88b73 --- /dev/null +++ b/data/ENNI_SALT/test/626.slt @@ -0,0 +1,99 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 8/19/1993 ++DOE: 5/03/2000 ++CA: 6;8;15 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 626=CHI ++Tape Location: Disk M6 Track 2 += [Bg:A1] +C first there is a lady who is bounce[EW:bouncing] a ball under the giraffe. +C (it went right beside) they are work/ing at a centre[?]. +C she bounce/ed it into the wall. +C the giraffe and the : elephant are look/ing at it. +C the giraffe go/3s and swim/3s (and get the) and get/3s the ball. +C then the elephant take/3s it. +C (he :) then the giraffe get/3s out of : the water. += [Eg:A1] += [Bg:A2] +C [~_okay] first the elephant and the giraffe : see the diving board. +C then the elephant see/3s it. +C then she : go/3s to go on it. +C she went : run/ing too fast. +C and she fell. +C and she bruise/ed her knee. +C the giraffe went down and comed|come[EW:came] to see her. +C (then) and then the elephant that was a lifeguard comed|come[EW:came] to see it too. +C (the eleph) (the) the lifeguard : put a bandaid on the bruise. +C they had to sit on the bench for awhile. +C (and they talk/ed not allow/ed to) they talk/ed about they are not allow/ed to run [EU]. +E okay. +C now she know/3s it [+/]^ +E is that it? +C [+,] (because he saw the sign) (because he show/ed him the sign) because he show/ed her the sign now. +C no run/ing. += [Eg:A2] += [Bg:A3] +C the giraffe and the elephant got together[?]. +C and the giraffe got a[EW:an] airplane. +C the giraffe : is put/ing it up high and pretend/ing it is go/ing. +C then the elephant take/3s it. +C and she try/3s to do it too. +C but the elephant throwed|throw[EW:threw] it in the water. +C the giraffe get/3s angry. +C then there is a lifeguard come/ing along. +C the elephant is explain/ing what happen/ed. +C the lifeguard try/3s to get it. +C but she can not get it. +C (so :) so the giraffe start/3s cry/ing. +C (then comes) and then come/3s a lady with a net. +C then she get/3s it out of the water. +C then she give/3s it to the giraffe. +C now : the giraffe is hug/ing : the airplane. += [Eg:A3] += [Bg:B1] +C (first the rabbit see/3s the puppy play/ing in the sand he want/3s) [~_I_mean] the rabbit see/3s the puppy play/ing in the sand. +C and he want/3s to play. +C they builded|build[EW:built] a sandcastle. +C the rabbit fill/ed up a bucket of sand. +C the rabbit dump/ed it on the castle. +C then the rabbit said oh no. +C then the puppy was try/ing to get it off. += [Eg:B1] += [Bg:B2] +C one time : the puppy saw the rabbit come/ing with a basket. +C and : the girl had a basket. +C the rabbit : had pile/s of food. +C the lady did not. +C she saw the rabbit eat/ing so much. +C the rabbit : got really fat. +C (she was) he was start/ing to feel dizzy. +C he call/ed the doctor. +C (and he got the lady ) [~_I_mean,_turn_it_back] the lady told the doctor to : help him. +C the doctor said you are eat/ing too much food : too fast. +C so : he take/3s the bunny. += [Eg:B2] += [Bg:B3] +C (the :) the dog see/3s the bunny come/ing along. +C and the girl : has a wagon with the balloon hook/ed on it. +C (the bunny) the bunny look/3s at it. +C then the bunny take/3s it off. +C then : the bunny accidentally let it go. +C and it *is go/ing too high [EU]. +C and they can not reach it. +C (the) the dog is get/ing mad at the bunny. +C they see another balloon holder. +C so the bunny say/3s can we have one of those balloon/s? +C but none[EW:no] cash [EU]. +C and it cost/3s five dollar/s. +C (uh :) they explain/ed what happen/ed to the balloon. +C then they go run/ing to go : get somebody. +E can you say that louder? +=C they went to go get somebody [+_bch]. +C he is explain/ing[?] about the balloon man. +C (and) and we do not have enough money. +C so she buyed|buy[EW:bought] : two balloon/s. +C and now they both got[EW:have] a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/test/645.slt b/data/ENNI_SALT/test/645.slt new file mode 100644 index 0000000000000000000000000000000000000000..bf96da1bb4575a4696dfce3913c662f26e5bb495 --- /dev/null +++ b/data/ENNI_SALT/test/645.slt @@ -0,0 +1,151 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 11/9/1993 ++DOE: 6/5/2000 ++CA: 6;6;27 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 645=CHI ++Tape Location: Disk L16 Track 2 += [Bg:A1] +C (A horse) a giraffe : and an elephant were bounce/ing a ball. +C the ball *is in the pool [EU]. +C and the giraffe was scare/ed. +C then the giraffe (um) : went in and swam and got the ball out. +C then the elephant was happy. +C and the giraffe was all wet. +C and they were both happy. += [Eg:A1] += [Bg:A2] +C The giraffe (wa) was scare/ed to go in the water again. +C so the elephant went in. +C and she saw a diving board. +C and she decide/ed to go on the diving board and jump. +C and then the giraffe said maybe that is a good idea. +C the elephant went slip/ed and fell [EU]. +C and the giraffe was run/ing to the diving board. +C the elephant hurt (her) her knee. +C and the giraffe was scare/ed. +C so the giraffe help/ed the elephant. +C the lifeguard came and saw the giraffe (um) was take/ing care of the elephant. +C the lifeguard put on a bandaid. +C it did not hurt any more. +C so the giraffe did not look scare/ed any more. +C and the lifeguard was happy. +C and then the other elephant the lifeguard look/ed at a sign. +C and it said no run/ing. += [Eg:A2] += [Bg:A3] +C The giraffe : and the elephant : were happy. +C so (they decide/ed maybe we could fly a) the giraffe decide/ed maybe he could fly the airplane : in the water. +C (and then got) and then the elephant could dive down and get it. +C and then : the giraffe would : throw it again into the water. +C and the elephant would keep on get/ing it. +C : (then it) (then it was) then it (was) want/ed real : crazy [EU]. +C so the elephant let xx him. +C the giraffe (would : make) made a tongue [EU]. +C the elephant grab/ed it from the giraffe. +C (and the elephant look/ed) and the giraffe look/ed scare/ed. +C and the elephant look/ed happy. +C the elephant threw it. +C and it went in the water. +C and the elephant looked scare/ed. +C and the giraffe did not know what to do. +C the giraffe got mad at the elephant. +C and : the elephant got[EW:was] sad. +C the lifeguard got mad again. +C (and they both : got) : and they both did not know that again [EU]. +C : so the lifeguard : look/ed nervous because the elephant look/ed scare/ed. +C and the : giraffe was sad. +C *the lifeguard was go/ing to get it [EU]. +C so the lifeguard : was try/ing to get it. +C (and the : giraffe) and the elephant look/ed nervous. +C the : giraffe start/ed cry/ing. +C and the elephant was sad. +C and the lifeguard was nervous. +C (oh) then another : elephant came with a net to get it out of the water so (the) they could have it back again. +C and he try/ed to get it out. +C but : (it : mm) (it) she (tried) try/ed a lot [EU]. +C but it would not come out. +C (and then all of) and then xx loo/ked : scare/ed again. +C then he got it out. +C and they : were happy. +C then the giraffe was happy. +C and the elephant was too. += [Eg:A3] += [Bg:B1] +C a bunny and a dog : were : build/ing a sandcastle. +C the bunny got scare/ed. +C and the dog : was nervous. +C they made a sandcastle. +C then they both were happy. +C (they poured : and) : the rabbit pour/ed sand over the dog/z sandcastle. +C : the sandcastle broke down. +C and (the : rabbit was :) the sandcastle did not break down. +C (and the rabbit was : nervo) and the dog was nervous. +C and then the dog : (um) try/ed to build it up. +C but : he was cry/ing. +C and the : bunny was : nervous. += [Eg:B1] += [Bg:B2] +C the dog (and the) and the bunny : were collect/ing coconut/s and berry/s. +C and they : saw each other. +C and then they said hi to each other. +C and then they were happy. +C (and) (and they) and they had a picnic. +C they went home first. +C and then they went back to the spot they were go/ing to have a picnic at. +C and then : the bunny : ate a lot. +C and the dog was nervous. +C and then : the : bunny ate too much. +C he got so fat. +C and the dog (um) ate the rest. +C the : rabbit did not feel well. +C and the dog was nervous. +C : so the dog call/ed the doctor. +C and the doctor came. +C and then the dog : told him that : the rabbit ate too much. +C so he did not feel well. +C (so the doc) so the dog drag/ed : the doctor there : because the rabbit was not feel/ing well. +C the doctor saw (that the dog) that the rabbit was not (fee) feel/ing very well. +C so (um the) (hh he) he was scare/ed. +C and (then : he felt) then the doctor made the rabbit : feel better. +C and : the dog was happy. += [Eg:B2] += [Bg:B3] +C the : dog : (mm) pull/ed the wagon with a balloon tie/ed onto it. +C and the rabbit saw that : the dog was pull/ing a wagon with a balloon on it. +C the rabbit want/ed the balloon. +C and the dog look/ed nervous. +C the rabbit try/ed take/ing off the balloon. +C the dog look/ed scare/ed. +C : the rabbit was sad because : (it) when he got off the balloon it start/ed float/ing away. +C (so they were both) : (and then one : um wen) and the rabbit was sad. +C and the dog was scare/ed. +C : the rabbit was : (nervous) : nervous. +C and the dog was mad. +C there is a balloon man over : there. +C (uh it) it was go/ing to another bunny (hu) him too [EU]. +C (can I have a) (and the) and he said (um) can I have a balloon? +C and the dog was way back : there. +C (so the) and the rabbit was up : to get a balloon. +C and then : (the guy) the balloon : man said balloon/s five cent/s. +C so the rabbit check/ed in his pocket for any money. +C but he did not have any. +C : the rabbit look/ed shy. +C and the dog : did not look shy. +C and then the (um) man look/ed nervous. +C the doctor was come/ing. +C and : the rabbit was run/ing to the doctor. +C and the : balloon man was : sell/ing xx. +C and the dog was nervous. +C and then (um he show/ed) (the doc) the rabbit show/ed the doctor : (um) that he want/ed (a balloon to buy to) five cent/s to buy a balloon so he could : have a balloon and : the dog could have a balloon. +C then : he gave him five : cent/s for each balloon. +C and then : the balloon man gave him : two balloon[EW:balloons]. +C and then : they : (were) were happy. +C and the : balloon man was happy. +C (and : the rabb) the doctor was kind of nervous. +C the doctor was real nervous. +C and they : were both real happy. += [Eg:B3] diff --git a/data/ENNI_SALT/test/647.slt b/data/ENNI_SALT/test/647.slt new file mode 100644 index 0000000000000000000000000000000000000000..ce99bf71607d88b6448f5ae079dd634026c2462c --- /dev/null +++ b/data/ENNI_SALT/test/647.slt @@ -0,0 +1,76 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 7/20/1993 ++DOE: 6/6/2000 ++CA: 6;10;16 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 647=CHI ++Tape Location: Disk L16 Track 26 += [Bg:A1] +C An elephant meet/3s a[-:] horse. +C then the elephant/z ball[-:] bounce/3s in the water. +C the horse : swim/3s to get it. +C the horse got the ball. +C the elephant was happy. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C An elephant and a horse want/ed to go on a diving board. +C the elephant say/3s let us go on the diving board. +C the elephant slip/3s : and scrape/3s her knee. +C then[-:] the elephant/z : father come/3s : and put/3s a bandaid on it. +C and the father said that bandaid will make sure it does not hurt. +C the father say/3s no run/ing. += [Eg:A2] += [Bg:A3] +C an elephant : met a horse who has a toy plane. +C (the plane f) (he) the horse (pretend it) pretend|pretend[EW:pretend/3s] it fly/3s. +C then the elephant want/3s to try. +C then : the elephant threw it into the water. +C it : was sink/ing. +C and the horse was mad. +C : and : the elephant/z father came. +C and the elephant said I threw that plane into the water by an accident. +C and it is the horse/z. +C the : elephant/z dad could not reach it because it was too far. +C and the horse was : cry/ing. +C then a[-:] lady came and : had a net : (and caught it with) and : almost caught it with the net. +C and she got it with the net and gave it to the horse. +C the[-:] horse was happy. += [Eg:A3] += [Bg:B1] +C a dog and a bunny are make/ing a sandcastle. +C they need/ed : thick sand. +C but the : sand was too light. +C so it fell on the castle. +C now[-:] the castle is nothing. +C but they could see part of the castle. += [Eg:B1] += [Bg:B2] +C a bunny and a dog are go/ing for a walk. +C : they have a picnic. +C the bunny get/3s too full. +C (he) the bunny gots[EW:has] a stomachache. +C the dog run/3s to : the doctor. +C the dog pull/3s the doctor to the bunny. +C the doctor said : he has a stomachache. +C then the bunny/z mom came. += [Eg:B2] += [Bg:B3] +C a : dog is pull/ing a wagon with a balloon. +C the bunny say/3s : if you let go it will fly up to the sky. +C the dog say/3s no do not do that. +C the balloon flied|fly[EW:flew] up : to the sky. +C the doggy get/3s mad. +C then : a man come/3s by (with) who was[EW:is] sell/ing balloon/s. +C : the bunny pick/ed : one of the balloon/s : which was five cent/s. +C and he did not have any money. +C : so he could not buy it. +C his mom came. +C and the : bunny say/3s I need a five cent/s to buy one of those balloon/s. +C then the (um) mother : (w) one give five (cents) cent/s to the man [EU]. +C then they both got balloon/s. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/test/655.slt b/data/ENNI_SALT/test/655.slt new file mode 100644 index 0000000000000000000000000000000000000000..ca12bc09d4223df6065dda52e13cda0d67be3365 --- /dev/null +++ b/data/ENNI_SALT/test/655.slt @@ -0,0 +1,103 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 9/19/1993 ++DOE: 6/9/2000 ++CA: 6;8;21 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 655=CHI ++Tape Location: Disk L16 Track 69 += [Bg:A1] +C [~_Well] (a giraffe and a) a giraffe is watch/ing (a) an elephant : juggle : a ball. +C and : the ball get/3s stuck in (some wa) (cement or) a pool. +C and the horse is swim/ing in to get it. +C and : he give/3s : the elephant (the balloon) the : ball. +C and then he step/3s : out. +C and he is wet. +C and the : elephant is happy. += [Eg:A1] += [Bg:A2] +C (Well an ele) an elephant and giraffe are look/ing at the pool. +C (and there is) and there is something behind a rock or something else. +C and it look/3s like bunny ear/s. +C and the elephant is talk/ing about the bunny ear/s. +C (and they run) and they run to see him. +C and then the elephant do/3s a stretch. +C (and) and then there is a swipe and hurt/3s her knee [EU]. +C and then xx her knee. +C and the giraffe is come/ing after [EU]. +C and a lifeguard come/3s over to them. +C and he is put/ing a bandaid on the knee. +C and then they sit in a bench. +C and the lifeguard is point/ing to a sign that says no run/ing. += [Eg:A2] += [Bg:A3] +C [~_Well] there is a giraffe : and a[EW:an] elephant by a pool. +C and the : (gir) giraffe has an airplane. +C and he is fly/ing it around in his hand. +C and suddenly the elephant grab/3s (the) the airplane : and drop/3s it in the pool. +C and it is sink/ing. +C and the giraffe is mad at the elephant. +C and the lifeguard is look/ing at them both and the airplane. +C and the elephant is tell/ing the : lifeguard about (what) what happen/ed. +C and the lifeguard is : reach/ing to get the airplane. +C but he can not (reach it) quite reach it. +C and the : giraffe is : (like) pant/ing. +C and : the elephant is (um : kind) kind of nervous or : sad. +C the lifeguard kind of has a smell. +C and his ear/s are go/ing up. +C and then (a) (an ele) a girl elephant come/3s along with a net. +C and she net/3s the airplane out. +C and she give/3s (it) it to the giraffe. +C and then (the gir) the giraffe hug/3s the airplane. += [Eg:A3] += [Bg:B1] +C a rabbit and a mouse are play/ing in the sand. +C and they are build/ing a sandcastle. +C (with) and the rabbit is fill/ing : a bucket. +C and the mouse is flatten/ing the castle. +C and then the rabbit he pour/3s the : sand on the castle. +C and the mouse has a kind of a whiny face because : he is surprise/ed he is do/ing that. +C and he wreck/3s the sandcastle [~_laughs]. +C (and then they) and now they are build/ing it again. += [Eg:B1] += [Bg:B2] +C [~_well] : (um) a mouse and rabbit are go/ing for a picnic. +C and : they are at their picnic eat/ing the food. +C and the rabbit is very hot because he look/3s hot. +C (and) and the rabbit is full. +C and the mouse is : drink/ing juice. +C and the rabbit is like : really full. +C and then there is a doctor rabbit. +C and the mouse is : run/ing over to him. +C and the mouse is pull/ing him over. +C and he see/3s the rabbit. +C and (his) (his) his stomach is really full. +C and then he take/3s him off to the doctor/z [~_laughs]. += [Eg:B2] += [Bg:B3] +C [~_Well] a mouse : went to a party : (he) because it look/3s pretty. +C (much like) there is a party balloon. +C and the rabbit is look/ing at the balloon. +C and the rabbit is try/ing to untie it. +C and : he untie/3s it and accidentally let/3s go. +C and the balloon is float/ing away. +C and then they are in a big : fit. +C [~_well] : the mouse is really mad. +C and the rabbit is like terrifyed because the balloon (fel) float/ed away. +C and then they see : a rabbit sell/ing balloon/s. +C and : the rabbit is point/ing to the balloon up in the sky. +C (and) : and : the : (um) rabbit show/3s him a balloon. +C and it say/3s balloon/s five cent/s. +C and the rabbit is look/ing in his pocket/s for five cent/s. +C and (the) (the man) the rabbit is hold/ing the balloon/s. +C and the mouse and : rabbit are look/ing at him. +C (and then th) and the mouse (is) stay/s (behind) (aside) beside the balloon man. +C the rabbit go/3s to get the doctor : (uh) rabbit again. +C and he say/3s there is a balloon man. +C and : we do not have any money. +C (and the um : doctor) and the doctor rabbit is give/ing (the) (the b) : the balloon man some money : so they can have the balloon. +C and then they get the balloon/s. +C and everybody is smile/ing. += [Eg:B3] diff --git a/data/ENNI_SALT/test/660.slt b/data/ENNI_SALT/test/660.slt new file mode 100644 index 0000000000000000000000000000000000000000..e8d6a5dae837bd3683e51117f88cf21a49cd714c --- /dev/null +++ b/data/ENNI_SALT/test/660.slt @@ -0,0 +1,131 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 10/13/1994 ++DOE: 11/29/2000 ++CA: 6;1;16 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 660=CHI ++Tape Location: Disk L22 Track 31 += [Bg:A1] +C (um) the : (uh[-:]) : giraffe (s come/3s : to see uh) come/3s (on) : to swim in the water. +C and then there is an elephant. +C and then (um) she is bounce/ing a ball. +C and (he um) he is ask/ing to play[-:] with her. +C they play volleyball. +C and : (um) it actually falled|fall[EW:fell] in the water by accident. +C (he was go/ing to go in the sw) he was go/ing to swim to get it. +C and then he (swan[-:]) swam in. +C and then : the[-:] elephant had (um) her hand/s over her eye/s. +C and he had a mad face : cause he knew he could get it. +C and : (um : the[-:]) : he got it. +C he gave it back to the elephant. +C and then the elephant : (um) was go/ing to fall in love with the giraffe. += [Eg:A1] += [Bg:A2] +C (um) they want/ed to go for a swim. +C and : she want/ed to try the diving board. +C she did not see (um[-:]) no run/ing. +C (she was gon) she was run/ing. +C and the[-:] (um[-:]) (ele) giraffe said (um) you : better not run it because he saw the sign. +C but he did not tell the elephant. +C and (she did not) she did not hear him. +C and then she slip/ed[-:]. +C she was run/ing to get her. +C then she got a big owie. +C she was cry/ing. +C and then the lifeguard came over : and gave her a bandage. +C she was scare/ed[-:]. +C and now he said there (um) you have a bandaid now. +C and (he was m) the lifeguard was mad. +C don not run. +C did not you see the sign[-:] [EU]. += [Eg:A2] += [Bg:A3] +C (uh um the[-:]) : (a gir) the giraffe was walk/ing. +C and then (um[-:]) a elephant came. +C and she want/ed to play with his (um) airplane. +C they were take/ing turn/s. +C (the um) : he was play/ing with it. +C and : (um[-:]) the[-:] elephant was curious that it would go in the water [EU]. +C and then she took it away. +C and then it land/ed in the water. +C and (th) he was mad at her. +C (she wa) she was curious what she could (um) do about it [EU]. +C then the lifeguard came. +C (a) and : he saw that it was in the water. +C the giraffe told him that (um th) the elephant was (took) take/ing it away and threw it in the water [EU]. +C and then she said : I did not do it. +C and (he did it by ac) he did it on purpose. +C and then (he was) the lifeguard was curious. +C and he was try/ing to reach it. +C they were both curious that he could get it [EU]. +C and then it was start/ing to sink more. +C and then a girl[-:] came with a net. +C and then she scoop/ed it out : and gave it back to (um) the : (uh) giraffe. +C and then she said here have your airplane back. +C and he said thank/3s for get/ing it. +C and[-:] : they fell in love again [~_laughs]. += [Eg:A3] += [Bg:B1] +C (um) a girl was build/ing a sandcastle. +C the[-:] (um) bunny want/ed to play with her. +C and (he) : they dump/ed some sand. +C she was pat/ing it down. +C and then he put some sand on it. +C and (um) it broke. +C and then (um) he said oh no. +C and she : (um) said it is okay. +C and (he was) : she : was cry/ing. +C she was try/ing to make it again. += [Eg:B1] += [Bg:B2] +C (um) a boy and a girl was[EW:were] walk/ing along. +C and they were go/ing for a picnic with each other. +C he was eat/ing a lot of his [EU]. +C and he had a lot of junk. +C he got so full. +C and he was get/ing sick[-:]. +C and he said I need a (docor he) doctor. +C (he) he felt dizzy. +C she was go/ing to[:_gonna] phone a doctor. +C and then : (um she) : there is a doctor walk/ing along. +C and then (um) she ran up to him. +C she said (um) : my friend : he : has a stomachache. +C he is dizzy. +C he ate too much of junk [EU]. +C and[-:] he said no. +C and she said come on come on. +C please help me. +C and then she said yes. +C and : (um : he) he said you are dizzy. +C your temperature is five[-:]. +C now he is okay. +C and he went with the doctor home. += [Eg:B2] += [Bg:B3] +C (um : she) a girl was walk/ing along. +C and a boy was walk/ing just for : a jog. +C and : then she *is just walk/ing[-:] with a balloon tie/ed to her wagon [EU]. +C and : he want/ed to play with it. +C and she said no. +C and he was tie/ing it off the wheel. +C and then it float/ed up in the air. +C and then she was really mad at him. +C he was scare/ed. +C he look/ed at the balloon. +C and then : (they both s) : she was still angry at him. +C and he saw a balloon[-:] guy. +C and he said can I have one of those balloon/s? +C and : you have to pay five cent/s. +C and[-:] they both want/ed one. +C (she) he was curious that : (um) she was go/ing to[:__gonna] be really mad at him again [EU]. +C and : (um) he went to (hi) : his mom. +C and he was go/ing to (ask him) : ask her if he could have five cent/s. +C and[-:] : (uh) : she said yes. +C and (she le) (he letted|let[EW:let]) : (he) she gave (um) five cent/s to him. +C and[-:] they both were happy that they (got a) both got a balloon. +C and they would not share theirs again. +C and the mom (wa ha) was happy too. += [Eg:B3] diff --git a/data/ENNI_SALT/test/707.slt b/data/ENNI_SALT/test/707.slt new file mode 100644 index 0000000000000000000000000000000000000000..0b91bd7897b1d51746749d336eb511a8180e46e5 --- /dev/null +++ b/data/ENNI_SALT/test/707.slt @@ -0,0 +1,80 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 11/30/1992 ++DOE: 4/19/2000 ++CA: 7;4;20 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 707=CHI ++Tape Location: Disk L7 Track 26 += [Bg:A1] +C an : elephant was play/ing with a ball. +C and a giraffe came to play with it. +C (um) and the elephant : threw the ball into the pool. +C and then : they got : scare/ed : that it would sink. +C the giraffe try/ed : swim/ing : to get it. +C but he could not get it. +C (and h um) : but he got it. +C and he gave the ball back to the elephant. +C and the elephant was happy to see the ball again. += [Eg:A1] += [Bg:A2] +C The elephant and the giraffe seen|see[EW:saw] a diving board. +C (and the elephant said) and the elephant start/ed run/ing. +C and the sign said no run/ing. +C and then the giraffe try/ed to catch the elephant. +C but the elephant hurt herself. +C and she had a cut. +C and she got a bandaid. +C and she felt better. +C and the lifeguard got mad at her because the sign said no run/ing. += [Eg:A2] += [Bg:A3] +C The giraffe had a toy airplane. +C and the elephant want/ed to play with it. +C the giraffe : start/ed fly/ing it. +C [~_coughs] and then the elephant took it from him and start/ed fly/ing it. +C and then it sunk underwater. +C and the giraffe got mad at the elephant. +C but the lifeguard went to get it. +C and it was still float/ing in the pool. +C and then he try/ed get/ing it from the outside of the pool. +C and he could not reach it. +C and then : someone else came with a fishing net : and got it out of the pool : and gave it back to the giraffe. +C and he was happy again. += [Eg:A3] += [Bg:B1] +C a rabbit and a dog were play/ing : in the sand. +C they made a sandcastle. +C the rabbit broke the sandcastle. +C and the rabbit : got : mad. +C and the : dog start/ed cry/ing. += [Eg:B1] += [Bg:B2] +C the rabbit and the dog went for a picnic. +C the rabbit had more stuff to eat than the dog. +C the rabbit got really really full. +C and then the rabbit had a stomachache. +C the dog ran to the rabbit/z mom. +=C [~_whispers] the dog [+_bch]. +C (and) and : she went to see the rabbit. +C (um) : and : (the) : she was a doctor. +C (um) the rabbit felt better. +C and he went home. += [Eg:B2] += [Bg:B3] +C the dog was with his wagon and his balloon. +C and : the rabbit want/ed the balloon. +C the rabbit untie/ed the balloon and took it. +C then the balloon : flew up in the air. +C and the dog got mad. +C and there was a rabbit hold/ing a lot of balloon/s. +C and : the little rabbit bought : a balloon. +C (hm) : and the little rabbit could not buy the balloon because it was five cent/s. +C and : the dog : saw the balloon/s. +C and the little rabbit : went to get some money from the : doctor. +C and : the rabbit told the doctor that he did not have any money. +C and : she bought the balloon. +C and the little rabbit and the dog had balloon/s. += [Eg:B3] diff --git a/data/ENNI_SALT/test/713.slt b/data/ENNI_SALT/test/713.slt new file mode 100644 index 0000000000000000000000000000000000000000..6dd831586c9cd30a4b404838b5f6c298b5338ff4 --- /dev/null +++ b/data/ENNI_SALT/test/713.slt @@ -0,0 +1,93 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 5/31/1992 ++DOE: 4/20/2000 ++CA: 7;10;20 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 713=CHI ++Tape Location: Disk L8 Track 16 += [Bg:A1] +C There is an elephant and a giraffe : by the swimming pool. +C and the elephant is bang/ing a ball with his trunk. +C and the elephant (kno) accidentally knock/ed the ball inside the water. +C and the giraffe : had to go and get it. +C (he had) the giraffe had to swim inside the water to go and get the ball. +C the giraffe got the ball back for the elephant. +C (and the elephant) : and the elephant was happy to get the ball back. += [Eg:A1] += [Bg:A2] +C The elephant and the giraffe are stand/ing by the water. +C the elephant ran closer to the water. +C the elephant slip/ed[!]. +C and the giraffe is run/ing to (s) stop the elephant from fall/ing on the ground. +C and the elephant fell on (his) her knee and hurt it. +C the giraffe is try/ing to fix the elephant/z knee. +C and (this oth) another elephant came and put a bandage on it. +C and (all the giraffe, the elephant and the other elephant are) the giraffe is sit/ing down. +C and the (gg) giraffe is stand/ing up. +C and (the elephant is still) the other elephant is stand/ing up. +C and the girl elephant is sit/ing down. +C and (the um) the other elephant is point/ng to a sign no run/ing. += [Eg:A2] += [Bg:A3] +C (The elephant is) : the elephant and the giraffe are happy. +C the giraffe is play/ing with a toy plane. +C : and the elephant is look/ing at it. +C and the elephant took[!] the toy plane and start/ed to play with it. +C and the elephant drop/ed the toy plane inside the water. +C and the giraffe is get/ing mad at the elephant. +C and the lifeguard came and (s) look/ed at the toy plane. +C and then : the elephant : was look/ing at the lifeguard. +C and (the one) the giraffe is look/ing at the plane. +C and (the ele) : the elephant ask/ed the lifeguard to get that plane out. +C the lifeguard is[-:] hold/ing onto the edge and try/ing to get : the toy plane out. +C and : the elephant and the giraffe are look/ing at the plane. +C and the lifeguard can not[!] get : (the eleph) the (um) plane out. +C so : the giraffe start/ed to cry. +C (and the) and another lifeguard grab/ed a net (and tr) and try/ed to get it out. +C and the other lifeguard (um) caught it in the net in there. +C and (um the) everybody (was look/ing) was proud. +C and that other lifeguard got it for the giraffe. +C and the giraffe was very happy. +C and the elephant and the giraffe are very happy to get the plane back. += [Eg:A3] += [Bg:B1] +C There is a rabbit and a dog play/ing in the sandbox. +C and the rabbit and the dog are make/ing a sandcastle. +C and the : rabbit : fulled|fill[EW:filled] the bucket of sand and : broke the sandcastle. +C and now : the rabbit : is[-:] a bit frighten/ed of what happen/ed to the sandcastle. +C and : the dog (ha) is try/ing to make the sandcastle all over again. += [Eg:B1] += [Bg:B2] +C there is a dog and a rabbit. +C they are go/ing to have a picnic. +C and the rabbit took all the food out : and is get/ing very hungry. +C the rabbit ate all his food. +C and the dog is still drink/ing and eat/ing : his food very nicely. +C and the rabbit is very[-:] (ff) full. +C and the dog is still[!] eat/ing his food. +C and the dog see/3s a doctor : and ran over to the doctor. +C and (the doctor is[-:] ) the dog is pull/ing the doctor/z (leg) [~_I_mean] arm : to move it over there. +C and the doctor (is gon) (go/ing to take : um : the) (the bunny/z) (the rabbit/z : uh) is (go/ing) try/ing to fix the rabbit. +C and the rabbit is all better now. += [Eg:B2] += [Bg:B3] +C the rabbit : is run/ing over to the dog that is pull/ing a wagon : with a balloon on it. +C and the rabbit : is try/ing to grab the balloon. +C and the rabbit is untie/ing the balloon from the wagon. +C and the dog is very proud. +C and then (the balloo) the balloon : slip/ed out of the rabbit/z hand and went fly/ing up in the air. +C (and they are all try) and the rabbit and the dog are try/ing to catch it. +C and the dog is very mad at the rabbit. +C (and they s) and the rabbit see/3s : (another man sell/ing ballo) (a balloo) a man sell/ing balloon/s. +C and (he bought one) the rabbit bought one[!] balloon. +C (and he) and the rabbit has no money for balloon/s. +C (and th) and the rabbit and[!] the dog are try/ing to get a balloon. +C and[-:] the rabbit went (to th) (to the) (to this other rabbit) : to the doctor. +C and the doctor saw him. +C and (the) the (ra) other rabbit is point/ing to : the balloon/s. +C and : the doctor is buy/ing a balloon. +C and[-:] both of them have a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/test/724.slt b/data/ENNI_SALT/test/724.slt new file mode 100644 index 0000000000000000000000000000000000000000..d62c871662c5bdd15a18e6a409e207b4e8201489 --- /dev/null +++ b/data/ENNI_SALT/test/724.slt @@ -0,0 +1,116 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 4/01/1993 ++DOE: 11/14/2000 ++CA: 7;7;13 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 724=CHI ++Tape Location: Disk M5, Track 60 += [Bg:A1] +C there once were two friend/s. +C and they were : play/ing a game. +C and they want/ed to go swim/ing. +C so then : they got there. +C and then : they were play/ing. +C and the ball fell in the pool. +C so : one of the friend/s swam[!] out and got it. +C and then they got it. +C and one of the friend/s she took it out. +C and then they want/ed to play again. += [Eg:A1] += [Bg:A2] +C there were two friend/s. +C and : they were the same one[EW:ones] in the last story. +C and they want/ed to go swim/ing again. +C so they went. +C and then one of the friend/s : she want/ed to go in right[!] away. +C so she ran[-:]. +C (and sh) and she want/ed to jump in. +C but then : she fell. +C and she scrape/ed her knee. +C and the lifeguard came. +C and he said oh it is all right. +C here is a bandage. +C here you can sit here and wait til it is better. +C and then : she was happy[!]. +C she took a little rest[!]. += [Eg:A2] += [Bg:A3] +C there were once two friend/s. +C and they want/ed to go swim/ing. +C so they went[!]. +C and one friend (bought) brought an airplane. +C the other friend grab/ed it and said wow an airplane ! +C and then she accidentally drop/ed it in the pool. +C and then the other friend was a (l) little bit mad[-:]. +C so then she said uhoh[-:] ! +C and he went [~_makes_sound_'err'] ! +C and then the lifeguard came. +C and he went hmm. +C and then she said (I) I accidentally drop/ed the airplane[!] in the pool[-:]. +C he try/ed to get it. +C but he could not reach. +C so then : the friend that (ha) had the airplane he was cry/ing. +C and then : one lady : she came. +C and she had a net to get it. +C she said do not worry. +C I will get it. +C and then she went and got[!] it. +C and then : (xx the) he was happy[!] again. +C and then they were both happy. +C and she was happy he got his airplane back. += [Eg:A3] += [Bg:B1] +C once : there were : two[-:] friend/s. +C (and they went) : and they want/ed to play in the sandbox. +C and they built a sandcastle. +C and[-:] it was : really[!] nice. +C and they : need/ed lot/s of sand to make it (unless) : unless it would not work out [EU]. +C and then : he put too much sand on it that it all collapse/ed and fell. +C (and then) : and then : one of them start/ed to cry. +C (so) and then : he want/ed to rebuild[!] it. += [Eg:B1] += [Bg:B2] +C once there were two[-:] friend/s. +C (and) : and they want/ed to go on a picnic. +C they pack/ed all[-:] the lunch. +C and when they got there they start/ed to eat. +C and they start/ed to eat. +C and one of them felt really sick[!]. +C so they had to : get a doctor. +C (and) and (while the doctor was come/ing) when the doctor was : come/ing he felt really[!] sick. +C and (he k) he could not wait. +C and the doctor came. +C one of the friend/s she ran[!] up to the doctor. +C she said doctor doctor help! +C my friend is sick. +C we need some help so he feel/3s better. +C the doctor said oh my (he has a) he has a very bad tummyache. +C and he felt better because the doctor made him feel better. +C and then : he live/ed happily ever after. += [Eg:B2] += [Bg:B3] +C there were two friend/s the same one/s in the last story that I read. +C and they want/ed to go on a walk[!]. +C so they went[!]. +C (and they) : (and they saw) : and they saw somebody : with balloon/s. +C and (they) : they got one. +C and they tie/ed it on. +C but then it went up in the air[!]. +C and they were sad[-:]. +C and then : (they) they kept go/ing. +C and then they saw (a man) another man with balloon/s. +C and (they went) : they want/ed to get some. +C (say) (so they got) : so they got some. +C and then they left. +C but then : they did not have any money! +C and he was sad. +C and the balloon man : said : hm I do not know : if you can get a balloon[-:]. +C and they did not : (d) get any. +C and then : they saw a lady. +C (and see) (she was) and then he ask/ed : can you get us some money so we can get a balloon? +C and then : so she bought a balloon for them. +C and then they were both happy. += [Eg:B3] diff --git a/data/ENNI_SALT/test/728.slt b/data/ENNI_SALT/test/728.slt new file mode 100644 index 0000000000000000000000000000000000000000..ace64a1f3c69219349042836f2eefcd0520a193f --- /dev/null +++ b/data/ENNI_SALT/test/728.slt @@ -0,0 +1,115 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 11/09/1993 ++DOE: 11/21/2000 ++CA: 7;0;12 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 728=CHI ++Tape Location: Disk M5, Track 74 += [Bg:A1] +C the girl has three (ba) ball/s[-:]. +C (and she is) : and there is (a) a big one and a medium size/ed and a small ball. +C (and) : and there is (um) : a giraffe : that would like to play with one. +C by accident (he s) the girl throw/3s the ball into the pool. +C the giraffe (go/3s) : (try) he is in to swim for it. +C he give/3s it back to the girl and say/3s that is okay. +C he is smile/ing at the girl. += [Eg:A1] += [Bg:A2] +C the girl : elephant and the boy giraffe are look/ing at the pool. +E okay can you talk a bit louder cause someone is make/ing noise out there. +E [~_CHI:_kay] what is next? +C (the girl) (the girl is run/ing) the girl is run/ing. +E mm okay. +C (she) : she accidentally slip/3s[-:]. +C (and she hur) and she hurt/3s her knee. +C and now she is (cry/ing) : cry/ing. +C the lifeguard : come/3s run/ing. +C he put the bandage (on) : on the (um) bruise. +C (and she) now she is sit/ing down on the (um) : bench. +C he point/3s to the sign that says no run/ing. +C and she was run/ing. += [Eg:A2] += [Bg:A3] +C the boy giraffe have|have[EW:has] a toy airplane. +C and (the girl giraffe) : [~_I_mean] the girl elephant is ask/ing to play with it. +C (and he wa) (and he um) : and he is show/ing : her how to do a loopdeloop with the airplane. +C (and then sh) and then she take/3s it. +C (sh) she is : look/ing at it like : it is her/z. +C she accidentally drop/3s it into the pool. +C (the um gira) the boy giraffe is get/ing mad at her. +C (the la) (the l) when the lifeguard see/3s (he) : he is kind of happy. +C and he is kind of mad. +C (the girl) the elephant is : tell/ing (hu) him what happen/ed. +C he is try/ing to reach out : to get it. +C the boy giraffe : is cry/ing because they can not get it. +C (the) (the other gir) there is another girl elephant : that has : a net. +C and she think/3s that she can get it. +C and she can get it. +C (she give/ing it) she is give/ing the toy airplane back to the giraffe. +C and he is hug/ing it : because he love/3s it. += [Eg:A3] += [Bg:B1] +C there is a rabbit that is make/ing a castle. +C and there is another rabbit that want/3s to help that rabbit make the castle. +C (they) they are help/ing make the castle together. +C (one) one is build/ing the castle. +C and one is make/ing the wall/s. +C (one) (one) : (one is ac) one accidentally pour/3s the sand right onto the castle. +C and the other one : look/3s embarrass/ed. +C (uh) after he pour/3s it on all there is is a tower from the castle. +C and it is all gone. +C and : the other one is kind of smile/ing. +C but one has a frown/ing face. +C and : (that other) that other (wa) one (that had a) that was smile/ing is now cry/ing. +C and the other one : is : think/ing of what he did. +=C that is the end of the story [+_bch]. += [Eg:B1] += [Bg:B2] +C (there is two) there are two rabbit/s. +C one is[-:] run/ing to the other with a (pis) : picnic[!] basket. +C and the other one is hold/ing a (pis) (picnic) : picnic basket[!]. +C (one said) one has open/ed up his picnic basket. +C and he is eat/ing : all the food. +C and the other one is (s) still open/ing hers up. +C when he is done all his food (he kinds of) he kind of faint/s. +C (and the other) and the other one is still eat/ing. +C (uh) he feel/3s kind of sick. +C (and) : and (he) the other one is still eat/ing[~!__laughing]. +C the one that was still eat/ing (ru) run/3s to get a doctor. +C (and) : and he is tell/ing (her) (him) her : what happen/ed to her friend. +C (now she) now she is pull/ing : the doctor to (her fr) her friend. +C the doctor : is speak/ing to the boy (and) to tell him not to eat too quick. +C now : the boy is all better. +C (and : now) : and now the girl and the boy is[EW:are] going home. += [Eg:B2] += [Bg:B3] +C (there is a girl that is push/ing her wagon : and : uh) [~__clears_throat] there is a girl that is push/ing her wagon. +C and : on the wagon there is a balloon. +C (and the boy) and the boy rabbit is chase/ing after her. +C (he want/3s) he want/3s the balloon. +C so he reach/s : out. +C and she is : kind of have[EW:has] a frown/ing face. +E what kind of face? +=C a frown/ing face [+_bch]. +E oh frown/ing okay. +C when he get/3s : his balloon (the gir) the girl (um kind) is say/ing hey. +C and he is play/ing. +C and he is tie/ing it to his wrist. +C he let/3s the balloon go. +C and it float/3s away. +C the girl is get/ing really : mad : at the boy. +C and soon they see another rabbit (that ha) that is hold/ing balloon/s. +C [~_clears_throat] (when the bo) (when the boy : s) when the boy see/3s : that : he ask/3s if : he can have a balloon. +C the man said it is five cent/s. +C and the boy do/3s not have any money. +C he say/3s : it is okay. +C maybe next time you will have some. +C and when the : boy see/3s the doctor he ask/3s (if he can pay for the) : if (sh) : she can pay (for the : balloon) : for both of the balloon/s. +C (I sa) the doctor say/3s (y) yes. +C and (um) : they both get a balloon. +C right here she is : pay/ing. +C and[-:] they both really like : their balloon/s. += [Eg:B3] diff --git a/data/ENNI_SALT/test/730.slt b/data/ENNI_SALT/test/730.slt new file mode 100644 index 0000000000000000000000000000000000000000..4de2fe21dd17add7febc985e1d36ea94e549314a --- /dev/null +++ b/data/ENNI_SALT/test/730.slt @@ -0,0 +1,77 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 2/23/1993 ++DOE: 11/21/2000 ++CA: 7;8;29 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 730=CHI ++Tape Location: Disk M5, Track 78 += [Bg:A1] +C the elephant and the giraffe : were play/ing with a ball. +C the ball went in the water[-:]. +C the animal was swim[EW:swimming] and got it. +C the elephant got her ball back. +C (the elephant) : (uh : the : um) : they were happy. += [Eg:A1] += [Bg:A2] +C : they were at : the water pool. +C the elephant was : point/ing : at the : jump board. +C the elephant slip/ed. +C the elephant got a[EW:an] owee. +C the safety guard[-:] : ran[-:]. +C the safety guard put a bandaid on her. +C she sat down. +C the : safety guard got mad at her. +C no run/ing. += [Eg:A2] += [Bg:A3] +C they were go/ing to play with a[EW:an] [?] airplane. +C the animal was play/ing with (it : uh) the airplane[~!__whispering]. +C the elephant[~!_whispering] took the airplane. +C the plane went in the water. +C the animal got mad at her. +C the safety guard : was come/ing to check. +C (he) : the elephant said[-:] the airplane is in the water. +C the safety guard : try/ed to get it. +C they could not get it. +C a big elephant with a catcher : got it. +C she pull/ed it out. +C the animal/z[-:] : airplane was back. +C they were both happy. += [Eg:A3] += [Bg:B1] +C they were go/ing to [~_gonna] make a sandcastle. +C the rabbit put/3s : sand in the bucket. +C he dump/ed it on the castle. +C the : sandcastle broke. +C the dog cry/ed. += [Eg:B1] += [Bg:B2] +C they were go/ing to go for a picnic. +C they : took their stuff out. +C bunny ate fast. +E what is that? +=C bunny ate fast [+_bch]. +C he got a sore tummy. +C he was call/ing the doctor. +C the pup drag/ed the doctor over there. +C (you ate too) you ate fast : said the[-:] doctor. +C the doctor : (took him with him) [~_EXA:_the_doctor_what] took (him wi) the bunny with him. += [Eg:B2] += [Bg:B3] +C bunny was come/ing to look at the : balloon. +C the bunny said wow! +C the bunny untie/ed it. +C it flew away[-:]. +C dog was mad[-:]. +C they were go/ing to [~_gonna] buy a new one. +C they did not have no[EW:any] change. +C actually[?] : they did not have five cent/s. +C they could not buy one. +C there was a doctor. +C the doctor gave them twenty five cent/s for two balloon/s. +C they : got their balloon. +C they were happy. += [Eg:B3] diff --git a/data/ENNI_SALT/test/743.slt b/data/ENNI_SALT/test/743.slt new file mode 100644 index 0000000000000000000000000000000000000000..4a70bf93299b181d8ad10483090a05633df25877 --- /dev/null +++ b/data/ENNI_SALT/test/743.slt @@ -0,0 +1,159 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 5/31/1993 ++DOE: 6/5/2000 ++CA: 7;0;5 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 743=CHI ++Tape Location: Disk L15 Track 96 += [Bg:A1] +C There was a giraffe : (and) : and (a) a girl elephant. +C they were play/ing ball : (by the street) (on the sidewalk) : by the swimming pool [~_I_mean]. +C and then[!] they drop/ed the ball[!] into the pool! +C they (could not ge) could not get it. +C but[!] giraffe dived|dive[EW:dove] in : and (k) (was) : was swim/ing. +C but elephant was cover/ing her eye/s. +C then he got it and gave it to her. +C she was amaze/ed. +C then he was soak/ing wet. +C and she hug/ed the ball. +C and he look/ed like a genius. += [Eg:A1] += [Bg:A2] +C There they were again : by the pool. +C and there was a sign : by : (uh) the diving board. +C and it said no run/ing [~_takes_a_deep_breath]. +C so : they look/ed at the pool amaze/ed for some reason. +C then : elephant said I want to go on the diving board! +C and she ran to it. +C she ran[!] to it. +C and she slip/ed. +C and giraffe did too. +C and she scrape/ed her knee. +C [~_high_pitched_voice] ouch! +C she had (X's in her eyes) [~_something_like_that] star/s in her eye/s. +C she was cry/ing. +C the lifeguard came. +C and it was an elephant. +C (no run/ing in the f) (in : the) no run/ing : by the side : of the pool (he) said the lifeguard. +C and he put a bandaid on it. +C she still had star/s in her eye/s. +C and then at least giraffe did not fall. +C and then it felt much better. +C see, no run/ing in the pool (he) said the lifeguard. +C did not you see that sign [EU]? +C no run/ing! +C he was mad. += [Eg:A2] += [Bg:A3] +C There was Elephant : with Giraffe again : by the pool again. +C they found a plane : with string at the back. +C and : she had swirl/s in her eye/s, the elephant. +C and : the giraffe was spit/ing out spit. +C then[!] : she caught it. +C (he was really) he was like huh? +C splash it land/ed in the pool. +C oh no they said. +C and then Giraffe was very[!] mad. +C it was just about to sink. +C and elephant was go/ing [~_makes_gulping_sound]. +C then the lifeguard[-:] came again. +C and he had his hand/s on his hip/s. +C (and) : and : the airplane was still there. +C but it was not sink/ing. +C then it was almost go/ing down. +C they explain/ed to Mister Elephant. +C Mister Elephant you see I grab/ed it. +C and I drop/ed it by accident : in the water : when giraffe was play/ing with it. +C he bendednd[EW:bent] over. +C and (he try/ed to) (he was) he was (um) : growl/ing. +C he could not even get it. +C he[!] could not even get it. +C and then giraffe (just uh start/ed) just : start/ed : to cry[-:]. +C and then Miss[!] Elephant came along. +C she had a net. +C and (she got) she : had a net. +C and she look/ed surprise/ed. +C she fish/ed it out with the net. +C (and the) and then Giraffe (start/ed) : stop/ed cry/ing. +C the lifeguard stop/ed (um : um) worry/ing. +C so did the elephant. +C (and gave) and then : with amazement she gave it : to : Giraffe. +C he hug/ed his airplane. +C he was happy. +C and the elephant was happy too. += [Eg:A3] += [Bg:B1] +C There is : a[-:] bunny : and a dog [~_I_think] : were play/ing in the sandbox and make/ing a sandcastle [EU]. +C (the bu) the bunny : was get/ing the sand from the bucket. +C and the dog was make/ing the sandcastle. +C but (he) the rabbit pour/ed all the sand on it. +C and the dog look/ed (um : fri um) surprise/ed. +C the sandcastle was broke[EW:broken]. +C the bunny had his mouth open. +C but the dog did not. +C the dog was cry/ing. +C but the bunny : was just nervous. += [Eg:B1] += [Bg:B2] +C Here is the doggy : and the rabbit : again. +C (um) they are go/ing for a picnic with their (basks) basket/s : in the wood/s. +C the bunny : was really thirsty. +C but the dog was not. +C he looked at him surprise/ed. +C there was a cake : cheese : (and a basket and) and the basket pour/ed and a carrot [~_laughs] [EU]. +C (the dog) : [~_no] the bunny ate all[!] his stuff. +C there was an apple. +C it was all done. +C there was a cheese *that was all eaten [~_pronounced_/etEn/] [EU]. +C the carrot was all eaten. +C but the dog was still eat/ing her sandwich and (her juice) [~_well] drink/ing her juice. +C then[!] (the) the bunny had a tummyache. +C but the dog was look/ing at : the bunny surprise/ed. +C Missus Bunny came. +C (and : wa) and she was walk/ing along. +C and then the dog ran : (to her) : to doctor. +C : (he was still ha) he still had a tummyache. +C and the dog was pull/ing (her) her sleeve. +C and she look/ed surprise/ed the doctor. +C the doctor (was) : said he has a tummyache from eat/ing too much. +C and he had to look (uh) with his tongue with a stick [EU]. +C then she : walk/ed along with rabbit. +C (he) and they went : together. +C and the dog was only left with the picnic. += [Eg:B2] += [Bg:B3] +C Well : the dog was : going with a balloon on her (um) wagon wheel. +C and the bunny ran[!] to her. +C it looked like he was jog/ing. +C the bunny : was surprise/ed she had a balloon. +C and (there was) : there was the doggy. +C she did not look so happy. +C but then she scream/ed : because the bunny was take/ing : the balloon away from her. +C and then[!] he let go of the balloon. +C it flew up. +C and (he) they both yell/ed come back. +C then the balloon drift/ed away. +C the bunny had his ear/s down. +C but the dog was very (mean) (bad) [~_I_mean] (mean) : [~_laughs] mad. +C there was Mister Rabbit : carry/ing : some balloon/s. +C they found him again (with) (and a b) by a bench and a garbage can. +C the rabbit ran up to him and said may I please have a blue : balloon (s) he said? +C five[-:] dollar/s first. +C (he) he pull/ed out his pocket/s. +C but there was no money. +C the dog was rush/ing to the bunny. +C then they look/ed at : the Mister Bunny with a grin. +C (h) they could not buy another balloon. +C then Missus Rabbit the doctor rabbit : (and then) was stand/ing there. +C and then : little rabbit went to go ask her something. +C can you (bo) please buy us a balloon said rabbit. +C and then she look/ed at him amaze/ed : because it is for five buck/s only said (f) the : (Mis) Mister Bunny. +C then she paid five buck/s. +C and they got two balloon/s. +C [~_I_mean] ten buck/s. +C and they both had their balloon/s. +C and they live/ed happily ever after. += [Eg:B3] diff --git a/data/ENNI_SALT/test/748.slt b/data/ENNI_SALT/test/748.slt new file mode 100644 index 0000000000000000000000000000000000000000..89a31b8178f81b2412586cb746219dde839f4caa --- /dev/null +++ b/data/ENNI_SALT/test/748.slt @@ -0,0 +1,88 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 8/28/1993 ++DOE: 2/17/2001 ++CA: 7;5;20 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 748=CHI ++Tape Location: Disk L27, Track 57 += [Bg:A1] +C one[-:] day[-:] : some kid/s were[-:] at a swimming pool. +C one of the kid/s had a[-:] big bouncy ball. +C the other kid want/ed to try it. +C he accidentally drop/ed it into the water. +C the other kid was scare/ed that it would go to the bottom. +C so[-:] the kid that drop/ed it went into the pool and got it. +C the other friend : said thank you. +C : and the other friend gave the[-:] : other kid : her ball back. += [Eg:A1] += [Bg:A2] +C one day some kid/s went to a swimming pool. +C one of the kid/s said let us jump in! +C the kid : want/ed to jump in. +C but she[-:] slip/ed. +C and she fell on the ground and scrape/ed her knee. +C then the lifeguard came to help her. +C he put a bandaid on. +C they sat her down on the bench : to rest for a while. +C then the lifeguard point/ed to a sign that says no run/ing. += [Eg:A2] += [Bg:A3] +C one day two kid/s were play/ing by a swimming pool. +C one of the kid/s had brought an airplane to play with. +C they were play/ing with it. +C and the other kid snatch/ed it from their hand/s. +C and she accidentally drop/ed it in the water. +C the other friend got really mad at her. +C the airplane was sink/ing : more : into the water. +C (then the k) then the kid who put it in the water by accident : said : to the lifeguard the airplane got drop/ed in the water! +C the lifeguard try/ed to reach it with his hand/s. +C but his arm/s were too short. +C the other kid who had brought the airplane start/ed cry/ing. +C then : one of the people who were[EW:was] swim/ing saw the airplane : and got out of the pool got a : fish/ing net and : told them that : they would get the airplane for them. +C (they) they reach/ed into the water. +C and[-:] (sh) she got the airplane caught in the net. +C and she gave the airplane to the kid who brought it. +C and that kid kept it : and did not let other kid/s play with it by the pool. += [Eg:A3] += [Bg:B1] +C one day two friend/s were in a sandbox play/ing together. +C they were build/ing a sandcastle. +C one of the[-:] kid/s : dump/ed a bucket of sand on one end of the castle. +C and that end collapse/ed. +C and the other friend : start/ed cry/ing. += [Eg:B1] += [Bg:B2] +C one day two friend/s were go/ing for a picnic. +C one of the[-:] : friend/s ate[-:] : too much. +C when they were done they had a big tummyache. +C : and they really want/ed to go home. +C so one of the friend/s : went : to see a doctor. +C they pull/ed the doctor by his sleeve to bring him over to the other friend. +C the doctor said do not eat so much next time you have a picnic. +C and the doctor took : the other friend to his house. += [Eg:B2] += [Bg:B3] +C one day in the forest two friend/s : were walk/ing. +C one of the[-:] friend/s had a wagon with a balloon tie/ed to it. +C one of the friend/s want/ed : to touch it. +C (so they a) so they took it off the wagon. +C pretty soon it : almost touch/ed the sky. +C and the other friend was mad at him. +C and the string was only left. +C so : the other : friend : got really really really mad at him. +C so they both went to a balloon guy. +C the balloon guy said do you want to buy a balloon? +C and then he also said five cent/s a balloon. +C and the rabbit : reach/ed into his pocket/s. +C but they were empty. +C so[-:] the friend/s : just look/ed at him. +C then one of the friend/s went to a doctor : and said : that guy is not let/ing us have a balloon! +C and then the doctor gave him five cent/s. +C and they[-:] : got a balloon. +C and (the) then the doctor paid another five cent/s for the other friend. +C and he got a balloon too. +C and[-:] then : they both play/ed with their balloon/s all day. += [Eg:B3] diff --git a/data/ENNI_SALT/test/750.slt b/data/ENNI_SALT/test/750.slt new file mode 100644 index 0000000000000000000000000000000000000000..69f22c1c2a5dbe2c1ecdefe18d43f6d8cbbc802b --- /dev/null +++ b/data/ENNI_SALT/test/750.slt @@ -0,0 +1,75 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 12/30/1992 ++DOE: 11/15/2000 ++CA: 7;10;15 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 750=CHI ++Tape Location: Disk L21, Track 43 += [Bg:A1] +C there are these two kid/s. +C one has a ball[-:]. +C and she is bounce/ing it really fast : by a pool[-:]. +C and the ball fall/3s in[-:]. +C so the other kid jump/3s in and swim/3s to the ball. +C and he get/3s it for her : and then : climb/3s out. += [Eg:A1] += [Bg:A2] +C there is[EW:are] these two kid/s[-:]. +C and they are look/ing at the water. +C and : one of the kid/s : say/3s that there is a diving board. +C and it look/3s like fun. +C and the kid who said that the diving board look/3s fun run/3s : and[-:] : slip/3s and hurt/3s her knee. +C and the lifeguard come/3s : and : put/3s a bandaid on : the hurt spot : and[-:] put/3s her on a bench : and show/3s her the sign no run/ing. += [Eg:A2] += [Bg:A3] +C there is[EW:are] these two kid/s. +C one has an airplane. +C and he : play/3s : with it. +C and the other one : take/3s his airplane away : and accidentally drop/3s it in : the pool. +C and the other kid is really mad at her. +C (so she go get/3s) so she get/3s a lifeguard. +C and : she ask/3s him : if he could try and get the plane out. +C and he try/3s. +C but he can not reach it. +C and he do/3s not know what to do. +C and then : this lifeguard with : a net come/3s : and fish/3s it out : and give/3s it back to the kid. +C and the kid was really happy to have his airplane back. += [Eg:A3] += [Bg:B1] +C (um) these two kid/3s (um) are go/ing to build a sandcastle. +C and they start build/ing. +C and : then one of the kid (um) dump/*3s sand on it. +C and[-:] then it is all flat. +C and then the other kid cry/3s because it is broken. +C that is kind of [~_kinda] dumb. += [Eg:B1] += [Bg:B2] +C these two kid/s are going to go for a picnic. +C and : the first kid took (um) all this unhealthy stuff. +C and he start/3s eating. +C and : he : get/3s all sick. +C and : the other one : he get/3s all dizzy. +C and the : other kid run/3s and get/3s (s) the doctor. +C and : the other one pull/3s the doctor to him. +C and : then he : check/3s him out. +C and : then he say/3s that he is go/ing to give him a checkup. += [Eg:B2] += [Bg:B3] +C (um) : there is[EW:are] these two kid/s. +C one of them come/3s up (and) and say/3s hi. +C and he see/3s the other : one/z balloon. +C and then he start/3s take/ing : it off the wagon. +C (and) : and the other kid is yell/ing. +C and then he accidentally let/3s go. +C and the other kid is really mad. +C so he see/3s a[-:] guy that is sell/ing balloon/s. +C and he ask/3s if he could have a balloon. +C and then : the guy show/3s him that the balloon/s are five cent/s. +C and he do/3s not have five cent/s. +C so he : go/3s to his grandma : and ask/3s if he could have a balloon. +C and she say/3s yes. +C so they both get a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/test/759.slt b/data/ENNI_SALT/test/759.slt new file mode 100644 index 0000000000000000000000000000000000000000..f84684c61f0aa9cfac7688e1e2ed06d5ef7ff983 --- /dev/null +++ b/data/ENNI_SALT/test/759.slt @@ -0,0 +1,85 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 4/16/1993 ++DOE: 6/6/2000 ++CA: 7;1;21 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 759=CHI ++Tape Location: Disk L16 Track 19 += [Bg:A1] +C One day a giraffe meet/3s an elephant play/ing : with a ball. +C then the ball fell into a little pool. +C the giraffe go/3s into the pool to go swim to the ball to get it. +C the giraffe : got the ball and gave it to the elephant. +C the elephant is so happy to have the ball back. +C the giraffe get/3s up on shore. += [Eg:A1] += [Bg:A2] +C One day an elephant and a giraffe : (fou) found a pool. +C they want/ed to go swim/ng in it. +C the elephant decide/ed to go down the ladder. +C (it walks but) : it run/3s. +C but it (f) was trip/ing. +C it hurt/3s it/z knee. +C the giraffe come/3s run/ing. +C an elephant lifeguard came to the elephant and the giraffe. +C it help/ed : the elephant. +C it gave the elephant a bandage and let it sit on a bench. +C the elephant lifeguard told : the elephant no run/ing. += [Eg:A2] += [Bg:A3] +C one day the elephant and the giraffe saw a pool. +C then the giraffe saw an airplane zoom/ing by. +C the elephant grab/3s the : airplane : from the giraffe. +C then the airplane sink/3s in the pool. +C the giraffe is mad at the elephant. +C the elephant lifeguard come/3s. +C the elephant told : the lifeguard what happen/ed. +C the lifeguard try/3s to get the : airplane. +C he can not get it. +C the giraffe is cry/ing. +C and the elephant is sorry. +C then another elephant came along with a fish/ing net. +C she scoop/3s the airplane out with the fish/ing net. +C she give/3s : the airplane to the giraffe. +C the giraffe and the elephant is[EW:are] happy. += [Eg:A3] += [Bg:B1] +C Once there was a rabbit. +C and it meet/3s: a little animal. +C they both try to make a sandcastle together. +C the rabbit pour/3s sand on the sandcastle. +C the sandcastle go/3s down. +C the rabbit : feel/3s sorry for the other animal. += [Eg:B1] += [Bg:B2] +C Once there was a rabbit. +C and it meet/3s an animal. +C and they both want to [~_wanna] go on a picnic. +C they together have a picnic at the same place. +C the rabbit eat/3s a lot of thing/s. +C and he is stuff/ed. +C then he feel/3s dizzy and sleepy. +C the other animal tell/3s : the rabbit/z mom. +C it tell/3s her to come : to the rabbit. +C the other rabbit wake/3s up the little rabbit. +C and they : go home. += [Eg:B2] += [Bg:B3] +C one day the rabbit saw : an animal pull/ing it/z wagon with a balloon. +C the rabbit (s) : is watch/ing the balloon. +C the rabbit try/3s to untie the balloon off the wagon. +C (but it) after it goes (uh) up in the air. +C the other animal is mad at the rabbit. +C then there is someone that is sell/ing balloon/s. +C and the rabbit is ask/ing for some balloon/s. +C he is look/ing in his pocket for money. +C but he do/3s not have enough money. +C (so i) and he see/3s his mom. +C so he go/3s over to his mom. +C he ask/3s for some money to buy the balloon/s. +C the mom gaves|give[EW:gives] : the : man some money to buy two balloon/s. +C (they have two) now the rabbit and the other (ha) animal has|have[EW:have] two balloon/s. += [Eg:B3] diff --git a/data/ENNI_SALT/test/762.slt b/data/ENNI_SALT/test/762.slt new file mode 100644 index 0000000000000000000000000000000000000000..0993cf3e92d18164ee2b10051e8f91a1ed7c19cc --- /dev/null +++ b/data/ENNI_SALT/test/762.slt @@ -0,0 +1,113 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 9/15/1993 ++DOE: 1/30/2001 ++CA: 7;4;15 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 762=CHI ++Tape Location: Disk L24, Track 73 += [Bg:A1] +C there were two animal/s an elephant and a giraffe : who want/ed to play in a pool. +C and (the w) (there) they were play/ing with a ball. +C and it fell into the pool. +C and they want/ed to : (sw) swim and get it. +C and they thought it was fun. +C one of them (he fell) he went into the water and try/ed to swim to the ball. +C but the ball was float/ing away from him. +C (and then the elephant) and (uh) then the giraffe : got the ball for the elephant. +C and then : the elephant (was) start/ed play/ing with the ball again. +C (and they uh) : and they still want/ed to play with it. +C so [~_coughs] they still play/ed together. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C there was a no run/ing sign. +C and they still want/ed to play in the pool. +C and (th) they were run/ing : away. +C (and then) and then : (sh) the giraffe start/ed chase/ing the elephant. +C and the elephant slip/ed. +C and then it hurt : itself. +C and the elephant was cry/ing. +C and the giraffe : said are you okay? +C and then the : lifeguard came : and said are you all right? +C : and the elephant : got a bandaid and sat on the chair. +C (and he) and (the lifeguard was try/ing) [~_I_mean] the elephant was try/ing to get off : the bandaid. +C and the lifeguard (wa) said keep it on. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C the giraffe and the elephant came back to the pool with the airplane. +C the giraffe was play/ing with it and try/ed[-:] not to drop it into the pool. +C and the elephant was : so into it. +C (he) the elephant (w) (was) kept stare/ing at it. +C (the) the giraffe said hey[!] when the elephant took the plane away. +C and the elephant start/ed play/ing with it. +C and the elephant accidentally drop/ed it into the pool. +C and the giraffe was kind of : mad. +C and then : he was so[!] mad that he growl/ed at the elephant. +C and the elephant was : (scared) scare/ed. +C (and the li) and the elephant call/ed the lifeguard to come and try to get the airplane. +C and they look/ed like they try/ed. +C (and : after that) (and af) and then : after that (he) he was try/ing to get the plane. +C but he did not. +C (so the ele) so[-:] the elephant did not know what to do. +C and the giraffe was cry/ing. +C and the elephant decide/ed I will have an idea. +C and the elephant went to get a net. +C and then : he use/ed it to get the plane : and got the plane for the giraffe. +=C the end [+_bch]. +C [~_oops] : and the giraffe was really happy. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C there was a rabbit and a dog. +C they were : make/ing a sandcastle. +C and then the dog and the rabbit made the sandcastle. +C and the dog was sit/ing into[EW:in] the sandbox and[-:] said hey rabbit we made it! +C we made it! +C (and the) and the : rabbit was help/ing the dog make it more bigger. +C (and it) and he put too much on : and made it fall right down on it. +C (and then it al almost) [~_I_mean] then it broke. +C and then it was totally broken (at the end of it) by the end. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C (um) : there once was a dog and a rabbit. +C they want/ed to go on a (picnich) picnic instead of make/ing a sandcastle in the park. +C rabbit want/ed to have the most stuff. +C so he took out (h) all of his stuff and : start/ed his stuff [EU]. +C and the dog : want/ed to eat just this couple of stuff [EU]. +C and the rabbit was totally full. +C and (he) he was almost : have/ing a tummyache. +C and then he fell down. +C and he had a big tummyache. +C and the dog ran to get his mom (and) to help. +C and then : the dog beg/ed his mom to : do it. +C so the mom came : and help/ed. +C and he was okay. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C instead of go/ing (to) for a picnic (and) and go/ing into the park and make/ing a sandcastle : they got a balloon. +C and they were play/ing with : a balloon. +C and they tie/ed it onto their : wagon. +C they were drive/ing it around. +C and the rabbit want/ed to take it off. +C and the rabbit was try/ing to take it off. +C and then he made it fly away. +C and the rabbit did not know what to do. +C and the dog was very mad. +C and then (they saw more balloon/s and want/ed to get) [~_or] (uh) the dog was still mad. +C and the rabbit was go/ing to [~_gonna] get another one for : the : dog. +C and the balloon/s were five cent/s. +C and he could not get it because he did not have any money. +C and the dog (was) want/ed to get one too. +C and he try/ed to get : one. +C and : the dog was wait/ing for the rabbit to get some money from it/z mom. +C and it asked the mom : if he could have some money to buy the balloon. +C and he got five cent/s and got a balloon : for the kid/s. +C and they got to play all they want with the balloon/s. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/test/765.slt b/data/ENNI_SALT/test/765.slt new file mode 100644 index 0000000000000000000000000000000000000000..3a574f40b25b47d0a85d6b54c1334e6df99e3ca6 --- /dev/null +++ b/data/ENNI_SALT/test/765.slt @@ -0,0 +1,82 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 5/23/1993 ++DOE: 6/9/2000 ++CA: 7;0;17 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 765=CHI ++Tape Location: Disk L16 Track 73 += [Bg:A1] +C there are two kid/s who find ball/s (on the si) on the sidewalk. +C and (then they f) then (they) it fall/3s into the water. +C (and they) and they do not want to[:_wanna] get wet. +C but (the um) the moose (got it) (want/3s) get/3s the ball. +C and he give/3s it back (to the li) to the elephant. +C and then he get/3s out of the water. +C and he is soak/ing. += [Eg:A1] += [Bg:A2] +C they want to go swim/ing. +C but there is no run/ing allow/ed. +C (ss) but they want (to run) to run and jump into the pool. +C and (w) when the elephant is run/ing she slip/3s : and hurt/3s her knee. +C and then : the giraffe get/3s the lifeguard. +C and he put/3s a bandaid on the knee. +C and then she is all better. +C and then he (s) point/3s to the sign : and say/3s no[!] run/ing allow/ed. += [Eg:A2] += [Bg:A3] +C (um : the uh) the giraffe and the elephant want to[:__wanna] throw the airplane and see if it (s) fall/3s into the water. +C (and when) (and when) and he is go/ing to[:_gonna] start to throw [EU]. +C (and then) and then the elephant grab/3s it away : (and thr) and drop/3s it in the water. +C and then the giraffe get/3s really mad. +C (and) : and (now) now (um) : now they have to go and get it : because the lifeguard is there. +C and now the elephant is say/ing : I drop/ed it in by accident. +C (and the el) and the lifeguard is go/ing to[:_gonna] get it. +C but he can not reach. +C (and then its) and then there is someone who (swims ga) (ge) get/3s a net and : get/3s it (the end) : and give/3s it back. +C and now he is go/ing to[:_gonna] play with it. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C (theres an) there is an elephant and a dog try/ing to build a sandcastle. +C and the dog want/3s (um) to break it sort of. +C and then when the rabbit pour/3s the sand on : (it gonna) it might break. +C and it break/3s down. +C so now the dog try/3s to help him (buil) build it back. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C The dog : and the rabbit [<~_no]want to go swim/ing[>~_no] are go/ing to have a picnic [EU]. +C and the rabbit bring/3s carrot stuff. +C and the dog bring/3s : stuff with cheese and stuff. +C and the rabbit is so full that the dog try/3s to eat the rest. +C (and the dog) and then the rabbit get/3s sick. +C (so) so the dog get/3s a doctor. +C and he pull/3s : him over : because someone got sick. +C and the doctor say/3s open your mouth. +C and say ah. +C and then the rabbit felt[!] better. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C One day the rabbit and the dog : meet because the dog and the rabbit are walk/ing somewhere. +C and then : they meet. +C and the dog has a little balloon on his wagon. +C and the rabbit sort of want/3s to pop it. +C (so) (and then he want/3s the) now he want/3s to undo (it) the balloon : and make it fly away. +C and now the dog is sad because his balloon is gone. +C so now the dog get/3s really mad[!] at the rabbit. +C and now the balloon is for sale. +C so the rabbit get/3s : one for his friend. +C (five cent/s) but he do/3s not have five cent/s. +C so they can not get one. +C but then there is a doctor. +C so they might ask him for five cent/s. +C so they ask for five cent/s to get a balloon. +C (and he give/3s them five ce) so he give/3s the guy five cent/s. +C and they each get a balloon. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/test/772.slt b/data/ENNI_SALT/test/772.slt new file mode 100644 index 0000000000000000000000000000000000000000..7fcc8c295a7f07ef5089800f28b7d62bd74371bb --- /dev/null +++ b/data/ENNI_SALT/test/772.slt @@ -0,0 +1,111 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 3/02/1994 ++DOE: 3/13/2001 ++CA: 7;0;11 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 772=CHI ++Tape Location: Disk M8, Track 12 += [Bg:A1] +C there was a[EW:an]: (um) elephant that had a ball. +C and (um) a giraffe want/ed to play with : (the balaloo) the ball too. +C but the balloon accidentally got[EW:went](into the w) into the swimming pool. +C (and) : and the elephant was very : worry/ed that (it would) (it would) it might sink. +C and then (the cow[!]) [~_I_mean] the giraffe came over (to s) to (get it) swim : after it to get it. +C and then he got it. +C and he gave it to the elephant : so she could play with it : with him. +C and then : the elephant and the : giraffe : (came) : came to be friend/s. +C and (also : they wan) and they also play/ed (t) with the ball together. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C there was an elephant and : (um) : a (g) (gir) giraffe. +C and they : both wan/ted to go : onto : this diving board and go into the water. +C and the elephant ran over to the : diving board. +C and then : she accidentally slip/ed. +C (then she) : and (then) : then the giraffe came run/ing after to see if : the elephant was okay! +C (and then) and (then) : then the elephant start/ed to cry because it really[!] hurt. +C she scrape/ed her knee. +C then the lifeguard came run/ing over : and : said do not cry! +C I will help. +C and then he put on a bandaid (on her) on her scrape/ed knee. +C and (then) : then she : stop/ed cry/ing. +C and then : the lifeguard help/ed her : get onto (the) the bench so she[!] could : go over and[-:] rest her knee for awhile. +C and then she can go back : swim/ing. +C and (then : she did not) : then the lifeguard : said : you must look at the sign/s[-:] that say no run/ing : or : no do/ing anything just in case there was : something slippery. +C or : you can not go on the diving board. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C there was a : giraffe that had an airplane. +C and he really[!] like it lot/s. +C and then an elephant want/ed to play with it. +C and then he start/ed play/ing with it even more[!]. +C and then the elephant want/ed to play with it. +C then the elephant grab/ed[!] it (from the) from the giraffe. +C and then he was very[-:] angry. +C and then it fell into the water. +C and then they could not get it. +C (so : they) so they did not know what to do. +C and then giraffe got very[-:][!] very angry at the : elephant. +C and then the lifeguard came over : (and) and said what is the problem ? +C and elephant explain/ed : I grab/ed : (the) : the toy airplane from the giraffe. +C and then I accidentally threw it into the water[-:]. +C and then the lifeguard try/ed reach/ing for it. +C but he could not get it. +C then the : giraffe start/ed to cry about he like/ed it [EU]. +C then somebody came over with a net[!] so they could get[!] it. +C then she reach/ed[!] over and got it for them. +C then he got it back. +C and he really[!] really : like/ed it : again. +C and then the : elephant really[!] really want/ed to play with it. +C but the giraffe was too[!] busy play/ing with it. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C there was a bunny and dog. +C they want/ed to build a sandcastle together. +C and then the bunny took too much sand. +C and then he dump/ed it onto the castle. +C but[-:] : the castle got ruin/ed : (accidentally)[~!_whispering] accidentally. +C and then the dog was sad[-:] : because : her : castle got knock/ed down. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C there was a dog and a bunny. +C they want/ed to have a picnic together. +C and they each : took out all of their stuff from their basket/s : and : ate. +C and they ate and ate and ate : until the bunny got : so[!] full (he wa) he felt like he was sick. +C and then : the puppy dog went to go and get doctor somebody who could help. +C (and then) : and then the doctor came over and help/ed the dog and the bunny. +C (and the bun) and the : doctor help/ed the bunny : be all right again. +C and then the bunny got[EW:was] taken someplace where he could be all right. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C there was a dog that had a balloon hook/ed up onto : her[-:] little : wagon. +C then the bunny want/ed to have the balloon. +C and so the dog : let the bunny : look[!] at the balloon. +C and then the bunny untie/ed[!] the balloon. +C and then : he lost the balloon. +C but then the dog (very[-:] an) very sad. +C then the dog (get) got very angry at the bunny. +C and then they saw : (a) : (a s) a person that was sell/ing : some balloon/s. +C (an) : and then : they came over : to him and said[-:] can I please have (another balloon) a balloon? +C (but the rabbit) but the : little rabbit : came over and said can I please have a : balloon? +C but the person said no you need some money. +C (and then he) : and then he show/ed him (how much money he n) : (how mu) how much money he need/ed for a balloon. +C (i) and it was quite[!] a bit. +C and he did not even have any money. +C so : they could not get another balloon for the little dog. +C (and they) and they were very[-:] sad. +C and then they : came over to a doctor. +C (and) and the little bunny said (can) can you please help us get a balloon? +C and then the doctor said : all right. +C I will get you a balloon. +C (and the) and the doctor gave[-:] (the) : the person : (um) as much money (as) : as they need/ed. +C and then they enjoy/ed their balloon/s[-:] again. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/test/778.slt b/data/ENNI_SALT/test/778.slt new file mode 100644 index 0000000000000000000000000000000000000000..2cfdd6fda8ccb0a88654b441176639a6a0bdf600 --- /dev/null +++ b/data/ENNI_SALT/test/778.slt @@ -0,0 +1,78 @@ +$ CHI, EXA ++PARTICIPANTS: CHI target_child, EXA examiner ++DOB: 8/03/1994 ++DOE: 5/06/2002 ++CA: 7;9;3 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 778=CHI ++Tape Location: Disk M12, Track 62 += [Bg:A1] +C the : elephant was play/ing with his ball. +C then he threw it in the : pool. +C then : the giraffe : catch|catch[EW:caught] the ball and : throwed|throw[EW:threw] it to the elephant. +C and : he pick|pick[EW:picked] it up[?]. +C xxx. +E okay, what did you say? +C [~_grunts]. += [Eg:A1] += [Bg:A2] +C they : want to go in the pool. +C he was run/ing. +C then he slip/ed. +C then : hurt his knee [EU]. +C then he cry/ed. +E what is that? +C then the lifeguard : go [EU]. +C and he close/ed his eye/s. +C and : it (hur) hurt. +C then : (uh) : the lifeguard told him that (he) it say/3s no run/ing. += [Eg:A2] += [Bg:A3] +C the elephant look/ed at the : giraffe : play/ing. +C then he play/ed with it. +C then he grab/ed it. +C then he throw : into the deep : pool[?] [EU]. +C and the : giraffe : been angry [EU]. +C and the lifeguard : came. +C (he) and he told : him : that he throwed|throw[EW:threw] (um) : the giraffe[EW:giraffe's] : plane into the deep. +C he try/ed to grab it. +C but he can not. +C and there was xx daddy[?]. +C he get|get[EW:got] the : plane. +C and he catched|catch[EW:caught] it. +C and he bring|bring[EW:brought] it : back to the giraffe. +C and he : hug/ed it tight to the xx. += [Eg:A3] += [Bg:B1] +C the bunny and the dog are make/ing a (castle) castle. +C the bunny : put : sand in his bucket. +C and he dump|dump[EW:dumped] : it all. +C and he : wreck|wreck[EW:wrecked] : the dog/z castle. +C (mm : he) (he) : he pretend/ed (to) he did it to xx him. += [Eg:B1] += [Bg:B2] +C the dog and the bunny (went) go/ing for a picnic [EU]. +C the bunny : ate some food. +C and : he ate some more. +C and then he has a stomachache. +C then : the dog got by the doctor [EU]. +C and he grab/ed him. +C and : (he : uh) : he told the dog that he has a stomachache [EU]. +C and then : they came. += [Eg:B2] += [Bg:B3] +C the dog and the (b) bunny went to see the bunny. +C (the) the bunny (see) he : see/3s : the dog[?]. +C then : he : tie/ed up the balloon. +C and the balloon : went up. +C and the dog got angry. +C then : the bunny losed|lose[EW:lost] it. +C he talk the mom : to give him the balloon [EU]. +C but he do|do[EW:does] not have money. +C (the) : (the) : the bunny and the dog have no money. +C they : come : to go : to him [EU]. +C and then (the dog) [~_no] the bunny goed|go[EW:went] xx xx xx. +C and he gave : both balloon/s : to them : bunny and the dog. += [Eg:B3] diff --git a/data/ENNI_SALT/test/803.slt b/data/ENNI_SALT/test/803.slt new file mode 100644 index 0000000000000000000000000000000000000000..29a952d7d777f2ac4ec6c389565d4b89bf657205 --- /dev/null +++ b/data/ENNI_SALT/test/803.slt @@ -0,0 +1,132 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 1/30/1992 ++DOE: 4/18/2000 ++CA: 8;2;19 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 803=CHI ++Tape Location: Disk L6 Track 5 += [Bg:A1] +C An elephant is play/ing ball with a ball. +C and then a giraffe is just (look/ing at) look/ing at the elephant like wow[!]. +C and (the) now (the) the elephant was bounce/ing it. +C and it fell into the water. +C and now the elephant is sad. +C so look/3s like the giraffe is go/ing to go get it. +C and now the giraffe jump/3s in : and is swim/ing to get (the balloon) [~_not_the_balloon] the : ball. +C and so now she got it for the elephant. +C and the elephant is help/ing him out. +C and now the elephant is happy. +C and the giraffe : is happy too! += [Eg:A1] += [Bg:A2] +C (Um : hm) [~_laughs] (um) they are stand/ing in front of a pool the giraffe and the elephant. +C and look/3s like they could (be) feel like swim/ing. +=C that is all [+_bch]. +C and now the elephant see/3s the diving board. +C and the elephant want/3s to go dive/ing into the pool. +C and the elephant is run/ing to go get : to the diving board. +C and the[?] giraffe is run/ing after her. +C and then she fell : and hurt her knee. +C and looks like she is go/ing to cry. +C and the[?] giraffe is run/ing to help her. +C and then the lifeguard come/3s : and is help/ing her. +C and : the giraffe is help/ing her too. +C and now she is cry/ing. +C and the : lifeguard is put/ing a bandaid on her : leg. +C and now (the) the lifeguard is carry/ing her to a bench. +C and (the hiraff) the giraffe is help/ing her. +C and the lifeguard is mad (and is say) and is tell/ing her look at the sign. +C it says no run/ing on it. +C and the giraffe (and) and (the um) the elephant (look/3s like he is) look/3s (like she never) (I don't know) (I can not) (I don't know what she is do/ing) (let us see) (like hm) like he is go/ing to[:_gonna] : get very mad at her? += [Eg:A2] += [Bg:A3] +C now the giraffe has a : little : airplane. +C and the elephant want/3s to play with it too. +C and now the giraffe is try/ing to make it move. +C and the elephant is look/ing at it like wow[!]. +C and now it is the elephant/z turn. +C and the elephant : is try/ing to fly it : now. +C and now the giraffe is look/ing at his plane because the plane fell into the (wa) swimming pool. +C and now the giraffe is mad at the elephant : because : his : airplane is sink/ing into the water. +C now the lifeguard look/ing at them. +C and they are look/ing back at him. +C now : (she is try/ing to) the elephant is try/ing to explain to the lifeguard that the plane fell in and is ask/ing if (they can) he can get it out : for them. +C and the lifeguard (is try/ing) is on his knees try/ing to (ah) : get it : out of the water. +C and both of them are look/ing at him. +C and the lifeguard look/3s like he is use/ing all his might. +C and now the lifeguard could not get it. +C and the elephant (s) felt sad. +C and so did the giraffe. +C now a lady come/3s. +C and : she has a little net. +C she said she would get it for them : the airplane. +C and now she is use/ing all her[!] might and : look/3s like she got it. +C and then she got it out (for the li) for the giraffe. +C and the giraffe was happy. +C and now the elephant and the giraffe (are both) are both happy again. += [Eg:A3] += [Bg:B1] +C (Um[-:] two[-:] ) a bunny *is in the[?] sandbox make/ing : a castle [EU]. +C and another one is (out) on the outside go/ing to[:_gonna] come in. +C and then now they are both make/ing a bigger and bigger one. +=C and (that is all) that is all I can see [+_bch]. +C and then one of the bunny/s is pour/ing so much sand on. +C and the other one (is) I think it is scare/ed or something [~_I__do_n(o)t_know]. +C and (now the sand) now the sandcastle was broken! +C and the other one [~_I_do_n(o)t_know] just look/ed normal [~_laughs]. +C and now she is try/ing and try/ing to make (a b) another one because it is all broken. += [Eg:B1] += [Bg:B2] +C Two bunny/s are walk/ing along in [~_I_don't_know] maybe a forest or something. +C and they are hold/ing (a picnic basket) two picnic basket/s. +C and now they are have/ing a picnic. +C (and all) and they are eat/ing. +C actually one of them is eat/ing with all the food. +C and the other one is just sitt/ing there with his sandwich in his hand. +C and now they are both eat/ing. +C and now one of them'is eat/ing. +C and the other one has a stomachache. +C and the other one really do/3s not know what to do : because he has a stomachache. +C (and he) and he is get/ing dizzy[!]. +C and then a : doctor was walk/ing along. +C and the other one came : and told the doctor (that : he was) that he had a stomachache. +C and so now she is pull/ing the : doctor : to come and get (the person) the rabbit actually. +C and now the doctor is operat/ing on the (guy) : little bunny. +C now the little bunny is fine. +C and he is go/ing home with the doctor. +C and the other one is sit/ing by (the sand box thing or whatever) [~_I_mean] the big (picnic) picnic[!][-:] thing. += [Eg:B2] += [Bg:B3] +C now the two bunny/s are : walk/ing along. +C and one of them is pull/ing a wagon : that has a balloon attach/ed to it [~_laughs]. +C and now the other bunny never notice/ed the : (um) balloon : and is look/ing at the balloon and point/ing at it. +C [~_I_don't_know] pretty funny. +C now (the) the bunny is try/ing to untie the balloon. +C and the other one (is) [~_I_don't_know] look/3s kind of scare/ed. +C and the balloon flew away. +C and they are both hop/ing and try/ing (to get it) to catch it. +C and the balloon *is gone [EU]. +C and one of them (look) is just look/ing up. +C and the other one is very mad. +C now : the other one see/3s : a man sell/ing balloon/s. +C and then so he is walk/ing along (k) to get a balloon for the one he : made fly away. +C now (he is say) he is say/ing to (the thing) the man can I have a balloon? +C look/3s like it. +C and (now he got) now he did not have any money for the balloon/s. +C (and li) and (uh) the guy said it is only five cent/s for a balloon. +C and then (hm) he look/3s (um) [~_let_(u)s_see] he look/3s weird [~_I_don't_know]. +C now they are both look/ing at the guy. +C and the guy *is look/ing down at them : while he is hold/ing the balloon/s [EU]. +C and now : (she is run/ing to) one of the rabbit guy/s are run/ing to the doctor : that they saw before. +C and (the doctor) (there) she is run/ing to the doctor : maybe to get some money. +C and now (she is) he is (um) show/ing the bunny (what he need/3s) : what she want/3s. +C and now she is pay/ing for it. +C and both of the kid/s are happy. +C and now they both got a balloon. +C and they are happy. +C and the doctor is happy too. +=C It is over [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/test/811.slt b/data/ENNI_SALT/test/811.slt new file mode 100644 index 0000000000000000000000000000000000000000..371ba465bd1108ffbdecf35214795338f1ee4404 --- /dev/null +++ b/data/ENNI_SALT/test/811.slt @@ -0,0 +1,118 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 7/10/1991 ++DOE: 6/12/2000 ++CA: 8;11;2 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 811=CHI ++Tape Location: Disk L17 Track 61 += [Bg:A1] +C Once there was[EW:were] : (uh) two[-:] friend/s, one Tally and one (hm) : Snout. +C and Snout had a beautiful : green ball. +C but[!] it fell in a pool. +C so Tally : swam to get the ball. +C and : he got it back. +C (um) : Tally was blush/ing. +C his whole face went red. += [Eg:A1] += [Bg:A2] +C This is another story about (Snuff ) Snout and Tally. +C once there the pool in the last story with the beautiful green ball fell in the pool. +C and Tally got it back. +C there was a diving board. +C and Snout said I am go/ing to go on that diving board. +C and I will show you a nice dive. +C well Tally said stop do not run. +C and unfortunately Snout slip/ed and fell : and really really hurt her knee. +C and then Tally warn/ed her because Tally saw a sign that said no run/ing. +C Snout (started) start/ed to cry. +C but the lifeguard luckily saw and came to the rescue. +C and the lifeguard gave Snout a bandaid. +C once Snout stop/ed cry/ing, the lifeguard gave her a sticker for be/ing such a good help not move/ing her knee around and stuff. +C and then (um) the lifeguard point/ed to the sign that said no run/ing. +C and Snout look/ed and said sorry. += [Eg:A2] += [Bg:A3] +C This is a story about Snout and Tally. +C and Tally had this nice model airplane that he was play/ing with by the pool. +C he was fly/ing it around. +C and Snout was like ooh. +C she really want/ed to play with it. +C so : she snatch/ed[!] it away. +C and then Tally was like [~_high_pitched_voice] hey give it back! +C [~_high_pitched_voice] it is mine! +C and[-:] Snout : drop/ed it in the pool. +C and then Tally (s) said now look what you have done. +C you should not grab. +C and : Tally got really really really mad at : Snout. +C and then the lifeguard : ask/ed what is the problem here kid/s? +C and : Snout said : well (um Ta) Tally here was play/ing with this model airplane. +C and : (I) I really want/ed to play (wis) with it. +C so I grab/ed it away. +C but I accidentally drop/ed it in the pool. +C so the lifeguard had to : get down : and stretch out for the plane. +C but : it was (too) too far out. +C the lifeguard could not get it. +C and then : (the) the : girl luckily had a net. +C so : she dip/ed it in the pool. +C and[-:] : luckily : or : not [EU]. +C but : he was lucky. +C she did[!] get it out. +C and then : Snout said sorry I drop/ed it in the pool. += [Eg:A3] += [Bg:B1] +C Once there was[EW:were] two[-:] : animal/s a wolf and a bunny. +C and they were (at the beach : or) in a sandbox. +C and they built a big big sandcastle. +C the wolf was work/ing on the tower. +C and the bunny was : (um) collect/ing the sand. +C but then the bunny pour/ed (the who) the whole bucket of sand : onto the sandcastle. +C and it ruin/ed one tower. +C but then[!] the sand that was on the tower start/ed come/ing down and wreck/ing the whole sandcastle. +C so when that[!] was all finished the only thing left was one tower. +C and then the wolf start/ed to cry. +C and the bunny : *was feel/ing bad [EU]. += [Eg:B1] += [Bg:B2] +C once there was[EW:were] two animal/s : (a ra) a hare and a : wolf. +C (and the wo) and the bunny thought that he was so[-:] good so he could have all the food he want/ed. +C so then (once) once they were finish/ed : the wolf had just : a sandwich and a juice. +C and then the rabbit was : feel/ing kind of queasy. +C so (um the) the wolf told him he would walk him home. +C but luckily a doctor was walk/ing by. +C so the wolf (a) asked the doctor if he could (um) help the (uh) wolf. +C and then : (the) : the wolf : (um) brang|bring[EW:brought] the doctor over to the bunny. +C and : (the) the wolf said he has faint/ed. +C he need/3s your help. +C so (the) (the) the hare[!] doctor : said : well I will give him this medicine. +C so she did. +C and he woke up. +C but still he was feel/ing kind of[:_kinda] queasy. +C and then (he) he just took a run around the tree/s. +C that is what (the) the doctor told him to do. +C and then he was feel/ing fine. += [Eg:B2] += [Bg:B3] +C two best friend/s name/ed : Fluffball and Fluffy : were once play/ing : at the park. +C (and) (and the) and Fluffball : which was *a hare : kept go/ing on about this balloon he got for be/ing the best student in his class [EU]. +C but then : (the) the hare : said : I am go/ing to take it off and show it around. +C but the wolf said no do not! +C (it) what if you let it go? +C it will fly up into the air! +C but the hare did not listen. +C so : (um) the balloon : he accidentally let it go. +C and it went up into the air. +C : (the) (the um) the wolf got so mad at him : that (he) (he) (he) he said I am not your friend any more. +C but then the hare saw : (some) : some balloon/s. +C so he went over : to the balloon guy : said I want (um) that red one right there. +C but it was five cent/s. +C but he did not have any[!][-:] money. +C so : the guy that was sell/ing the balloon/s said sorry but you can not have this nice red balloon. +C and then : (um) doctor Fluffball : which was Fluffball/z mom : (um : ask/ed him um) Fluffball ask/ed his mom if he could have five cent/s : because (the) : the red balloon was five cent/s. +C so Doctor Fluffball : gave : the man five cent/s. +C and he got : two[!] balloon/s : for both of them. +C and that was that. +C they both got a blue and red balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/test/820.slt b/data/ENNI_SALT/test/820.slt new file mode 100644 index 0000000000000000000000000000000000000000..c407149dc1a490aaadc0a54008fd2fa81e4fe337 --- /dev/null +++ b/data/ENNI_SALT/test/820.slt @@ -0,0 +1,92 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 6/17/1992 ++DOE: 11/21/2000 ++CA: 8;5;4 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 820=CHI ++Tape Location: Disk M5(2), Track 102 += [Bg:A1] +C first there is an : elephant : and a giraffe. +C and the elephant is bounce/ing a ball. +=C Turn [+_bch]. +C and : the elephant I think bounce/3s it into a pool. +C and then : the : giraffe dive/3s in to get it. +C and then : the giraffe : come/3s back : and give/3s it : to[-:] the elephant. +C and[-:] the elephant : (look/3s like he said th) look/3s like he is say/ing thank you. += [Eg:A1] += [Bg:A2] +C (um) : there is a giraffe and an elephant : stand/ing by a pool. +C and there is a sign that say/3s no run/ing. +C so[-:] the : elephant point/3s at the diving board. +C and : she[-:] run/3s over there. +C and she slip/3s. +C and she[-:] scrape/3s her knee. +C and then the lifeguard come/3s : (and : help) and put/3s a (band) bandaid : on : her. +C (then she) then he (put) (put) (put/3s[-:]) : put her[-:] on a bench : to sit down. +C and then the lifeguard : point/3s his finger out say/ing[-:] bad : I think. += [Eg:A2] += [Bg:A3] +C there is an[-:] elephant and a giraffe. +C and : the giraffe is fly/ing a toy plane around. +C and then the elephant : (um) look/3s at it and I think say/3s : that is interest/ing. +C so the : giraffe give/3s a turn to the elephant. +C and the elephant is : (th um) : threw|throw[EW:throwing] it into the pool. +C and the giraffe get/3s : mad[!] at the elephant. +C so the elephant ask/3s the lifeguard to help : and then talk/3s : to (hi) (the liteguar) the lifeguard what happen/3s [EU]. +C and the lifeguard try/3s : to reach : and get it. +C then the lifeguard (do/3s) do/3s not know what to do. +C and the giraffe : go/3s on his knee/s and start/3s to cry. +C so (a dif) I think : a person that swim/3s (take/3s a n) take/3s a net : and try/3s to scoop it. +C and she (s) scoop/3s[-:] it up : and give/3s it back to the giraffe. +C and[-:] : the giraffe hold/3s it (by) like this by his neck. +C and[-:] the[-:] elephant : (um) has his hand/s (like this) : like that in front of the giraffe. += [Eg:A3] += [Bg:B1] +C there is (um) I think a : bunny and a dog. +C and : the dog built a sandcastle. +C and the bunny I think : want/3s to help. +C (um) [-:] the dog is smooth/ing the side/3s out while the : bunny is dig/ing sand out for : the sandcastle. +C and : then the bunny pour/3s it : all over the sandcastle. +C (and he) and it destroy/3s the sandcastle. +C and then : the : dog cry/3s and : try/3s to build a new one. += [Eg:B1] += [Bg:B2] +C (um) : there is a : bunny and a dog : that have their[-:] basket/s with (uh f) food in them. +C and : then the : bunny (dump/3s it all) dump/3s it all out. +C and : the dog just take/3s it one at a time. +C and then : the dog is : still eat/ing. +C and : the bunny is lay/ing on the ground with all this garbage around. +C and then : the[-:] : dog is drink/ing a juice box. +C and : I think the bunny feel/3s sick. +C (then : uh) and then the : dog : I think find/3s a doctor. +C and the dog is pull/ing the doctor/z sleeve over to where : (um) the bunny is lay/ing down. +C and : (the[-:]) : the doctor : take/3s (a thing and) this little stick and : like : point/3s at something. +C and then : the : doctor bring/3s : the : bunny : I think home. +C and : (uh) : the : dog is (stand/ing b) just stand/ing still : with : (a th) a thing behind her back. += [Eg:B2] += [Bg:B3] +C first (um) : the : dog is pull/ing a wagon with a balloon attach/ed to it. +C then the : dog drop/3s the handle. +C and : the[-:] bunny (try/3s) : look/3s at it. +C and then : the bunny try/3s to untie it. +C and it (s) : blow/3s away into the sky. +C and then the dog get/3s mad at : him. +C and then : (the) : [~_well] (the da) the dog is mad. +C the bunny run/3s over. +C and he see/3s (a) : a balloon man : sell/ing balloon/s. +C and : the bunny take/3s one of the balloon/s. +C (and[-:]) : and on one of the balloon/s it say/3s : balloon/s five cent/s. +C and then the bunny pull/3s out the inside of his pocket/s. +C and he has got no coin/s. +C so[-:] : the : balloon : guy : was hold/ing the balloon/s. +C and : the bunny : has his hand/s in his pocket/s : with the dog behind him. +C (the) (um : the) (the) : the (p) dog is stand/ing by the balloon guy. +C and : (the rab) the rabbit see/3s (this) : (this p) (this girl) : this lady. +C and then (I th) (she tell/3s) : he tell/3s the lady to I think (b) get him a balloon. +C and then (the) : the lady take/3s out her wallet and put/3s : some coin/s in her hand. +C and they (uh) each get a balloon. += [Eg:B3] + diff --git a/data/ENNI_SALT/test/821.slt b/data/ENNI_SALT/test/821.slt new file mode 100644 index 0000000000000000000000000000000000000000..42c6dba502aadd077421576a6955d28b817b7fa5 --- /dev/null +++ b/data/ENNI_SALT/test/821.slt @@ -0,0 +1,87 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 5/31/1991 ++DOE: 5/10/2000 ++CA: 8;11;1 ++Gender: F ++Context: Nar ++Group of CHI: SLI ++ID: 821=CHI ++Tape Location: Disk L13 Track 79 += [Bg:A1] +C the elephant is play/ing with a ball. +C and the giraffe want|want[Ew:wanted] to play with it : with the elephant in the water. +C and they drop/ed it in the water. +C and then the giraffe was : go/ing to[:_gonna] swim and get it for the elephant. +C and the giraffe got it for the elephant. +C and she was happy. +C and : she said : thank you to the giraffe. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C the elephant and the giraffe were go/ing swim/ing. +C and the elephant : was go/ing to [~_gonna] go in the water. +C and she slip/ed. +C and she hold|hold[EW:held] her knee. +C and she was cry/ing. +C and (the) her dad went to go see her : and put a bandaid on her owie. +C and then she have|have[EW:had] to sit on the bench. +C (and she) and her dad said no run/ing. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C the elephant and the giraffe were play/ing with a[EW:an] airplane. +C and the giraffe was : make/ing it fly and made the elephant dizzy. +C and the elephant took : the : airplane. +C and the giraffe was mad. +C and the elephant : drop/ed the airplane in the water. +C the giraffe was mad at her. +C so : they have to get the airplane. +C and her dad said to her : why did you drop the airplane in the water? +C so her mother try/ed to get it. +C and the giraffe was cry/ing. +C and the mum got it with a net. +C she pick/ed it out of the water and gave it back to the giraffe. +C and the giraffe was happy. +C and the giraffe : hug/ed his airplane. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C the bunny : and the dog were make/ing a sandcastle. +C and the bunny was fill/ing up the bucket. +C and the : dog was : break/ing the sandcastle. +C and the bunny (was : break/ing) broke some of it. +C and then the puppy was : a little bit : sad. +C and the puppy was cry/ing. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C the bunny and the dog was[EW:were] go/ing on a picnic. +C and : the bunny took all of the food out : and want/ed : the puppy/z food. +C and : the bunny was full. +C and the bunny was get/ing dizzy : and full. +C and the puppy went to get the doctor. +C and puppy said that (the) : the bunny ate too much food. +C and the bunny was : feel/ing sick. +C and then the bunny was not feel/ing sick because the doctor made : him all better. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C the dog had a balloon : and a wagon. +C the bunny said can I come with you? +C so : he : did. +C the bunny was go/ing to[:_gonna] take off the balloon. +C the (pu) dog said : do not take off : the balloon. +C or it will fly away. +C and the bunny did. +C and the balloon flied|fly[EW:flew] away. +C and the dog was mad at the bunny. +C so : he went to go see the circus bunny again : to get a[EW:an] other balloon. +C so : the bunny got a[EW:an] other balloon for the : dog. +C and : he did not have no[EW:any] money : so he can buy a balloon [EU]. +C then they were go/ing to[:_gonna] get some money : from the doctor. +C and the doctor said (uh) yes. +C and the doctor gave (the) : both of them some money : to buy a balloon. +C they both get their own balloon. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/test/822.slt b/data/ENNI_SALT/test/822.slt new file mode 100644 index 0000000000000000000000000000000000000000..af4942209a9495cb69c077a05f7ff17fc40bace9 --- /dev/null +++ b/data/ENNI_SALT/test/822.slt @@ -0,0 +1,160 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 12/28/1991 ++DOE: 11/21/2000 ++CA: 8;10;24 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 822=CHI ++Tape Location: Disk M5(2), Track 109 += [Bg:A1] +C once there was a giraffe : who was stand/ing by a pool. +C and a[EW:an] elephant (said) : came : with : a swimsuit[!] on : and said you want to play fetch? +C but[-:][!] : they were not so sure about play/ing near the pool. +C just then when the elephant : blew it with her trunk : it fell in the pool. +C the giraffe : jump/ed[!] in : and swam[-:][!] to get (the balloon[-:]) [~_I_mean] the ball. +C the giraffe[!] : came back with it : in a minute. +C (and said) : (and the gira) [~_I_mean] and the elephant said : oh (you) : you got my (balloon) [~_I_mean] ball! +C thank you! +=C sometime/3s I get mixed up with the word/s [+_bch]. +C the giraffe[-:] : felt please/ed (that : he) that he got the ball[-:][-:] (for the) : for her friend. +C but the elephant[!] (just sta) just stood there and smile/ed. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C the giraffe[!] and the elephant went to the pool[-:] because it was a hot[!] summer day. +C (they were) they look/ed at the pool. +C and they were excite/ed. +C but[!] the elephant said hey I am go/ing to go off the diving board! +C but she did not read the sign : which said no run/ing. +C so[-:][!] she ran anyway. +C just[!] then : (the el) the giraffe was catch/ing up with her when she slip/ed[!] : and fell on her knee. +C she got[!] : a cut on her knee. +C and the giraffe[-:][!] went to get someone. +C a lifeguard[!] : came : as quickly as possible : and help/ed the elephant[!]. +C the elephant thought it was go/ing to [~_gonna] sting. +C but : it did not. +C (they) they put on the bandage. +C (and it was) and it look/ed good as new. +C the lifeguard was disappoint/ed. +C and the girl : (stood) sat on the bench and said [~_heh_heh] hi? +C and the lifeguard was point/ing at the no run/ing[!] sign. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C the giraffe and the elephant went to play by the pool. +C and the giraffe[!] : got a new toy plane and said you want to [~__wanna] play with me? +C the elephant said sure! +C the giraffe flew the plane first. +C but the elephant was so excit/ed : she just grab/ed it out of her hands. +C the giraffe said my plane give it back! +C I was not done my turn! +C but the elephant did not care. +C she was just fly/ing[!] it around. +C just[!] then she : flew it : too[!] high. +C and : it fell in the pool. +C and it start/ed to sink. +C the giraffe was mad at the elephant. +C but the elephant just stood there puzzle/ed[-:]. +C the lifeguard[!] came : right by the two girl/s. +C and (one of the girl/s[-:] said) [~_I_mean] : one of the elephant/s said I can explain[-:] . +C (I) I did not do it! +C it was the giraffe[-:]! +C just then (g) (g) the giraffe said : she is lie/ing! +C it was her! +C then (it came) : like it was a big argument[-:]. +C so the lifeguard said cool it. +C who drop/ed it in the pool? +C and the giraffe was point/ing at the elephant. +C the lifeguard try/ed to (get) catch it. +C but it was float/ing : in the pool. +C the giraffe[-:] start/ed to cry : when the lifeguard said he could not reach it. +C and the : elephant felt sorry. +C just[-:][!] then a lady[!] elephant came with a net[-:]. +C she : quickly got the plane : with the net. +C (and : it came) : and she pull/ed it : (f) : to her[!]. +C she said here you go! +C is this your airplane? +C and the giraffe said yes : thank you very much! +C the giraffe hug/ed[!] her plane. +C but the elephant : was happy. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C one day at the park : there was : a baby dog : who was make/ing a sandcastle. +C just then a bunny : came along and said : can I help you? +C the dog said sure. +C they want/ed to help build (a) the biggest sandcastle in the world! +C so the rabbit[!] was go/ing to build it. +C so he got some sand in a pail and start/ed dig/ing. +C just[!] then : he decid/ed that a shovel was not so slow after all. +C so he decide/ed to dump it on the : castle. +C so he did. +C but : when he realize/ed he had wreck/ed it : he was so[-:][!] embarrass/ed. +C the dog[-:] start/ed to cry : and rebuild the sandcastle. +C but the rabbit just stood there : and look/ed like he did nothing. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C (there) : there once was a dog who was go/ing on a picnic in the : park. +C and then he saw a rabbit. +C so (he) they decide/ed to go together. +C (when the om) when they unpack/ed the lunch : the rabbit was so[!] hungry. +C (s) the rabbit was so[!] hungry. +C but the dog was not. +C so the rabbit ate all[-:] the stuff. +C when the dog[!] was eat/ing : the bunny had already finish/ed. +C the bunny[-:] : had a terrible[-:][!] stomachache while the dog was eat/ing. +C the dog just stood there puzzle/ed and said are you okay? +C and the rabbit said no I feel like I am go/ing to[:_gonna] hurl[-:]! +C just then the dog : ran : to the (doc) : doctor who was stand/ing[!] right by the path. +C she said excuse me could you help my friend[-:] here? +C he has a stomachache! +C (so) but the doctor said no. +C she had : a patient who was wait/ing[!] for her. +C but the : dog[-:] : really need/ed her. +C so she : took the doctor and drag/ed them[EW:him] to the : picnic. +C the doctor said : I will take your temperature now. +C and you will feel much better. +C just then the bunny (f) got up. +C and he felt queasy[-:]. +C then the doctor and the bunny : went : home. +C they walk/ed together : back home. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C there once was a dog : who was pull/ing a wagon with a balloon tie/ed to it. +C then he saw the bunny. +C then they want/ed to play with the balloon. +C the bunny want/ed to : touch[!] the balloon : because : he thought it was : cool. +C but the dog[-:] did not : really want him to. +C so (the rabbit) : just then the rabbit : did not care[-:] about what the dog said. +C so : the rabbit : untie/ed the balloon. +C and the dog (was ss) (was a lit) was begin/ing to get a little[!] fed up. +C just then the balloon float/ed away. +C and they were try/ing[!] to catch it. +C but they were too short. +C the dog was so[-:][!] angry at the rabbit. +C the rabbit just : stare/ed at the balloon. +C and he[-:] felt like : he was get/ing a little scare/ed : because the dog was mad. +C just then they saw a balloon[!] seller : who had : ton/s[!] of balloon/s. +C and he just stood there. +C so : the dog and the rabbit decide/ed to go buy a new one. +C the rabbit said may I have a balloon : please[!] for my friend over there? +C the man said sure[-:] but : you will have to pay (for that) : for the balloon. +C the rabbit look/ed through his pocket/s. +C just then : (it said) : a sign said : balloon/s five cent/s. +C and he did not have[!] five cent/s. +C (he and the ra) the rabbit : and the : dog[-:] look/ed at the balloon seller. +C they told him that they did not have[!] five cent/s. +C just then : the bunny (went to the[-:]) : went to a lady who was stand/ing nearby. +C and he said excuse me do you have five cent/s because I need to buy a balloon for : a friend. +C the rabbit[-:][!] : look/ed puzzle/ed. +C but the rabbit said my friend need/es[-:][!] one : now[-:][!] because we do not have any change. +C the lady rabbit : gave five[!] cent/s : for two balloon/s. +C and : the bunny and the dog were jump/ing up and down : in excitement. +C then : they both[!] got balloon/s. +C (and they hug/ed) and they loved them real[EW:very] [-:] much. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/test/823.slt b/data/ENNI_SALT/test/823.slt new file mode 100644 index 0000000000000000000000000000000000000000..b66963ed92a6d45e1877e8e6a2792761287412a0 --- /dev/null +++ b/data/ENNI_SALT/test/823.slt @@ -0,0 +1,121 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 6/05/1991 ++DOE: 5/09/2000 ++CA: 8;10;27 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 823=CHI ++Tape Location: Disk L13 Track 40 += [Bg:A1] +C there was this old : giraffe [~_pronounced_/gUraef/]. +C and elephant was play/ing (by) by the pool with some bouncy ball/s. +C and the giraffe came up and said can I play? +C then he bump/ed the ball. +C and then it went into the pool. +C then the giraffe swam(*2) [~_said_twice_for_effect]. +C and (there was) : water came out of his ear/s. +C and the : elephant could not look. +C then : the : giraffe : gave it to the elephant. +C and she was happy. +C then he smile/ed. +C and she smile/ed. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C there was (these two elephants) the giraffe and the elephant. +C and there was a diving board. +C and the sign said no run/ing. +C and the elephant ran and ran. +C and they almost slip/ed. +C then she slip/ed. +C and then the giraffe ran after her. +C and then the elephant : hurt herself on the knee. +C and the giraffe look/ed at the sign : no run/ing. +C (and she sa) and the giraffe said no run/ing. +C and the lifeguard came. +C : and (sh) (sh) the lifeguard put a bandaid on. +C and : she was still cry/ing. +C : and the lifeguard help/ed her up and hand/ed her to the giraffe. +C and the lifeguard said no run/ing. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C and she got up. +C and she was all better. +C and he flew his airplane. +C and he flew it. +C and slobber came out. +C and : the (gir) elephant look/ed at : the airplane. +C and : she got dizzy. +C then she took it and flew it. +C and the giraffe said (uh) [EU]. +C then it went into the water. +C and the : giraffe got really mad at the elephant. +C and the lifeguard came again. +C and : he look/ed : at the elephant. +C and there was a airplane in the water. +C and : he try/ed to reach it. +C but he could not. +C (and) and the giraffe start/ed to cry. +C and another lifeguard came : and : brought this net. +C and she : try/ed to get it. +C and she did. +C and she hand/ed it back to : the giraffe. +C then the giraffe and the elephant was[EW:were] so happy. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C there are these two bunny rabbit/s : play/ing in the sand. +C they made a castle. +C and they are laugh/ing. +C they start/ing to fix it : and : build/ing new stuff. +C : the boy rabbit dump/ed : sand on the castle. +C (sh) and (the) a little part of the castle is show/ing. +C and now it is only sand. +C now they are try/ing to build it back together. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C they are these two rabbit/s walk/ing (down the) : in the forest. +C they walk/ed and walk/ed. +C they met each other. +C and they start/ed to have a picnic (with every bo) (and with every) : with : that girl. +C and then the boy rabbit ate everything up. +C and he was full. +C then : the girl rabbit look/ed at the boy rabbit. +C and the boy rabbit did not feel so good. +C and then : there was a doctor came [EU]. +C and the girl went to get (hi) her. +C and she pull/ed. +C and she pull/ed. +C and they finally got there. +C and she was check/ing : if he was : all right. +C then : the doctor took him. +C and : the girl stay/ed there. += [Eg:B2] += [Bg:B3] +C they saw these two rabbit/s walk/ing down the wood/s again. +C and one had a wagon and a balloon. +C and the boy jog/ed and jog/ed. +C and they look/ed at the balloon. +C and the boy rabbit untie/ed it. +C and he tie/ed : it. +C and it flew up up and away. +C and the girl rabbit got so mad. +C there was : another balloons[EW:balloon]. +C and the girl (ma) rabbit was still[!] mad. +C : and : the : boy ask/ed the man a question. +C : and : then the girl was come/ing over. +C and the man said the balloon/s were five cent/s. +C and the girl look/ed at there [EU]. +C and the man smile/ed. +C (oh again) there was the doctor : again. +C : and (sh) the boy talk/ed to the rabbit : and said : my sister is mad because I lost her balloon. +C the girl is mad. +C : here is five cent/s. +C and here are two balloon/s he said. +C they were so happy. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/test/827.slt b/data/ENNI_SALT/test/827.slt new file mode 100644 index 0000000000000000000000000000000000000000..afda6489838aa863b620e79ec98d3b48c5701faa --- /dev/null +++ b/data/ENNI_SALT/test/827.slt @@ -0,0 +1,124 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 10/12/1991 ++DOE: 5/09/2000 ++CA: 8;6;20 ++Gender: F ++Context: Nar ++Group of CHI: SLI ++ID: 827=CHI ++Tape Location: Disk L13 Track 54 += [Bg:A1] +C Giraffe and : Elephant were : in the pool. +C (and I wonder what were) (were) they were bounce/ing the ball. +C I wonder what will happen? +C the ball felled|fall[EW:fell] in the water. +C Giraffe was swim/ing to get it. +C (and) : and Giraffe got it. +C and Elephant said thank you. +C and you are my hero. +C Giraffe said oh, my pleasure. +C (and) (and) and Elephant was engage/ed with him [EU]. += [Eg:A1] += [Bg:A2] +C Elephant and Giraffe were : by the pool. +C (they) I wonder what will happen? +C : Elephant was run/ing. +C (and) : and I wonder what will happen? +C she slip/ed. +C : and she got a[EW:an] owie. +C and : she[-:] was cry/ing. +C and : Giraffe (wa) is go/ing to help her. +C and the lifeguard came : (and ss) and gave her a bandaid. +C she was so sad that (sh) he had to put a big[!] bandaid on. +C then the lifeguard let her sit down for awhile. +C the lifeguard was so mad. +C and it said no run/ing. +C and (ii) she was so sad. += [Eg:A2] += [Bg:A3] +C Giraffe and Elephant were at the pool. +C : Giraffe had a[EW:an] airplane. +C Elephant took it away from him. +C he was so upset. +C it felled|fall[EW:fell] in the pool[-:]! +C (ele) and Giraffe got so mad that he (wanted) said that he want/ed a new one. +C and she took (toward) to the lifeguard and said can you get that? +C and he said : did you do this ? +C (and he will) and she will say no. +C (she wa) she was cry/ing and said that : all right : I[!] did it. +C this is the truth. +C I throwed|throw[EW:threw] it in the pool. +C the lifeguard crawl|crawl[EW:crawled] and try|try[EW:tried] to get it. +C I wonder what will happen? +C he could not get it. +C and : Giraffe start/ed to cry. +C and a girl lifeguard had a net. +C (and try) and she got it. +C and : she did. +C Giraffe was so happy that he did not have to have a new one. +C and then he love/ed it. +C and he never ever : ever[!] let : Elephant played|play[EW:play] with it ever again. += [Eg:A3] += [Bg:B1] +C this[!] rabbit is go/ing to : make a sandcastle with this[!] dog. +C the rabbit is : put/ing sand in the pail when the dog was make/ing : a sandcastle. +C : the rabbit pour/ed the sand onto the : sandcastle. +C the dog was sad. +C the dog work/ed so hard. +C (she start/ed) (she was go/ing) (she wa) the rabbit was : upset : because he was go/ing to make another[!] one. +C the dog was cry/ing. +C the rabbit was disappoint/ed. += [Eg:B1] += [Bg:B2] +C (rabbit : and) : Rabbit saw the dog. +C (dog) the dog wave/ed at Rabbit. +C they were walk/ing to a picnic. +C : the : rabbit was so hungry that he had too many junks [EU]. +C (the ra) (the) : the dog had a sandwich : first. +C soon : the rabbit was fat : and full. +C the dog was still hungry. +C then the : rabbit got dizzy. +C (the ra) and : the dog look/ed at him. +C the dog saw his mother. +C : and he said that : Rabbit is hurt. +C he do/3s not feel well. +C then (he pu) the dog pull/ed : (his) (his mother) [~_no] the rabbit/z mother : to see him. +C and he was very ill. +C : (the r) the rabbit ate too much junk. +C (and) : and his mother was : a doctor. +C so : she took care of him. +C and she took him to his house. +C and (he) she said to the dog : he will be okay. += [Eg:B2] += [Bg:B3] +C the dog was : (going) : go/ing for a walk with [<~?_the]a[>~?_the] wagon. +C then Rabbit show/ed up. +C he said hi. +C and I wonder what will happen? +C Rabbit saw the balloon. +C and : the dog said : be careful. +C : the rabbit untie/ed the balloon. +C (the) : the dog was disappoint/ed. +C then Rabbit let go. +C (and dog) and Dog was worry/ed. +C and (he want/ed) she want/ed her balloon back. +C and : she got very mad at Rabbit. +C (he al) he always bug/3s her. +C then : (the) : the balloon man : was carry/ing some balloon/s. +C and the dog was still mad. +C he said (that) may I have a (ye) white one? +C (and the) and the balloon man said sure. +C (when) (when he got to) when got : to : his pocket : and pull/ed down the balloon : it was : five cent/s. +C and he did not have no five cent/s [EU]. +C and (he was) he was sad. +C then the balloon man : put the balloon up again : and did not listen to him. +C then the rabbit went to the doctor again. +C she had : money. +C and he want/ed five cent/s. +C he ask/ed [~_pronounced_'askeded'] if you can buy me a balloon : two of us because I do not have no[EW:any] more money [EU]. +C and she said yes. +C (and) : (and she[-:]) and he took two balloon/s to them (and ga) and one of the money [EU]. +C they were happy. +C and the doctor was happy too that : they have balloon/s. += [Eg:B3] diff --git a/data/ENNI_SALT/test/830.slt b/data/ENNI_SALT/test/830.slt new file mode 100644 index 0000000000000000000000000000000000000000..d6d047bb682ef9b6318ac3be8a021d0bf62b436a --- /dev/null +++ b/data/ENNI_SALT/test/830.slt @@ -0,0 +1,92 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 7/28/1992 ++DOE: 12/04/2000 ++CA: 8;4;6 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 830=CHI ++Tape Location: Disk M7 Track 38 += [Bg:A1] +C a girl is bounce/ing (a b) a ball. +C the ball went into the pool. +C the moose went to go get it. +C the moose got it and brang|bring[EW:brought] it back. +C and then he (got out of the pool) got out of the pool. +C and the girl was happy. += [Eg:A1] += [Bg:A2] +C (they) they see a pool. +C they run to the diving pool. +C [~_well] now[!] they are run/ing to the diving pool. +E okay so you were thinking about that because you knew what came next, anything else on this page? +C they see the diving board. +C so they run to the diving board. +C the girl ran so fast : that she slip/ed and hurt her knee. +C the lifeguard came to see : to give a (bandaid :) bandaid. +C (the) the : moose went to go get him. +C the lifeguard gave : her a bandaid. +C she thought it really hurted|hurt[EW:hurt]. +C and then (the) the lifeguard took : her to the bench. +C and then she try/ed touch/ing it. +C and it was better. +C and then the lifeguard : point/ed to a sign. +C she look/ed. +C it said no run/ing. += [Eg:A2] += [Bg:A3] +C the moose[-:] has a plane. +C they were go/ing to[:_gonna] play with it : at the pool. +C the moose : (fl fl) made it fly [~_gestures]. +E okay, you were show/ing me with your hands. +C and then : the girl took it : away : and threw it. +C it land/ed in the pool. +C the moose got really mad. +C the girl said oopsie/s. +C the lifeguard came. +C she was scare/ed. +C she told (what) (how :) (um how) how it happen/ed. +C the lifeguard try/ed to reach it. +C but he could not. +C the moose cry/ed. +C the lifeguard got a net : and got the plane with the net : then pull/ed it out (so sh) so the moose can have it. +C and then they had fun : later. += [Eg:A3] += [Bg:B1] +C there are two boy/s make/ing a sandcastle. +C one of them smooth/ed it up. +C the other one : put sand on it. +C since he was get/ing tire/ed of do/ing that he dump/ed the whole pail on. +C and then the (wh) whole pail cover|cover[EW:covered] most of the : sandcastle. +C one of the boy/s start/ed to cry. += [Eg:B1] += [Bg:B2] +C two people had a : picnic. +C : one of the boy/s (ate) had more[!] than the other one. +C (the) (the) one of the boy/s (had : l :) had too much to eat. +C (he got) he ate a little more. +C and he got dizzy. +C (and then) : and then (um a) : the other boy : saw a girl. +C she pull/ed the girl : to the picnic. +C : and : (the boy wa) the boy : was not so dizzy any more : because the girl help/ed him. += [Eg:B2] += [Bg:B3] +C a boy was pull/ing a wagon with : a balloon on it. +C the boy saw the balloon. +C the boy : was untie/ing the balloon. +C the balloon float/ed away. +C the other boy got mad at him. +C (he) so (he) the other boy look/ed up. +C and then they saw more balloon/s. +C so they went to go get one. +C (but) but it cost/3s money. +=C and that was this page [+_bch]. +C and then the boy check/ed his pocket/s. +C but he did not have : five cent/s. +C so the man with the balloon/s said no you can not have : one because you do not have any money. +C and then a boy found : a girl. +C the boy ask/ed her : nicely if she could buy him : a balloon. +C the girl gave him a balloon. +C they both had a balloon now. += [Eg:B3] diff --git a/data/ENNI_SALT/test/845.slt b/data/ENNI_SALT/test/845.slt new file mode 100644 index 0000000000000000000000000000000000000000..48c84e145397ec816ea03ed342510c0378557091 --- /dev/null +++ b/data/ENNI_SALT/test/845.slt @@ -0,0 +1,89 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 10/14/1992 ++DOE: 11/16/2000 ++CA: 8;1;2 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 845=CHI ++Tape Location: Disk L20 Track 71 += [Bg:A1] +C (um) an elephant and a giraffe went swim/ing. +C (the uh um s a wa) they were play/ing with water balloon/s it look/ed like. +C and they : drop/ed a water balloon in the pool or the balloon. +C (um) the giraffe try/3s to swim after it. +C (um) : he catch/3s it. +C and the elephant get/3s it. +C and : now she love/3s him. += [Eg:A1] += [Bg:A2] +C (um) an elephant and a giraffe are swim/ing. +C the elephant run/3s to the pool. +C he slip/3s : and hurt/3s her knee. +C and the lifeguard come/3s. +C and the giraffe help/3s her. +C (um) the elephant cry/3s. +C and the lifeguard put/3s a bandaid on it. +C and : he sat down on a bench. +C and the lifeguard (p) point/3s to a no run/ing sign. += [Eg:A2] += [Bg:A3] +C (um) : the elephant and the giraffe are at the swimming pool. +C the giraffe bring/3s a toy airplane. +C (um he) the giraffe play/3s with it. +C and the elephant stare/3s at it. +C then (he) the elephant grab/3s it from him : and drop/3s it in the pool. +C the giraffe is mad at the elephant. +C and the lifeguard see/3s it. +C and it is start/ing to sink. +C the lifeguard look/3s sort of angry at the (ele) other elephant. +C xxx [~_whispered_an_aside] and (um) he try/3s to get it. +C but he can not reach it. +C the giraffe start/3s to cry. +C (um) and then : another : elephant (um) get/3s a net : (and um) : and pick/3s up the plane : and give/3s it to the giraffe. +C and the giraffe is happy. += [Eg:A3] += [Bg:B1] +C (um) : a dog is play/ing in the sand. +C and a rabbit come/3s and want/3s to play with her. +C (he start/3s make/ing a little bit of the castle while the rabb) (while um) the dog start/3s make/ing a little bit of the castle while the rabbit fill/3s : a pail up with sand. +C and the bunny dump/3s it on the castle. +C and the castle break/3s. +C and the bunny scream/3s. +C (um) : and the bunny pretend/3s he did not do it. +C but he really did. +C and : the dog is feel/ing sad because (it is broke) it broke. += [Eg:B1] += [Bg:B2] +C (um) the : bunny and the dog are go/ing for a picnic. +C (um) : the dog bring/3s sandwich/s. +C and the bunny bring/3s carrot/s and sandwich/3s and pickle/s and : chip/s : and sandwich/s and carrot/s. +C and : (he get/3s fu) the bunny get/3s full : while the dog is still eat/ing. +C the bunny is feel/ing sick. +C (um) : the dog run/3s and get/3s : (um) the doctor. +C and (he pull/3s) the dog pull/3s the doctor over. +C (um) : the doctor look/3s : and tell/3s him to open his mouth. +C and then he is all done. += [Eg:B2] += [Bg:B3] +C (um) the dog is pull/ing a wagon with a balloon. +C (and) and the bunny see/3s her. +C the bunny try/3s to get it. +C (um) he get/3s it. +C and the dog open/3s his mouth and start/3s to scream sort of. +C the bunny (let/3s it g) let/3s go of the balloon. +C and the dog is really mad at the bunny. +C and he is just star/ing at the balloon. +C and : (um) he see/3s : (um) : another rabbit sell/ing : balloon/s. +C he ask/3s for some. +C and they are five cent/s. +C and he said you can not have them if : you can not pay five cent/s. +C and : then they are really sad. +C and then there is : (a bunny) : another bunny up there. +C I think it is his mom. +C and : he want/3s to buy a balloon. +C and (they) he give/3s five cent/s to him. +C and they each get a balloon. +C and they are play/ing with them. += [Eg:B3] diff --git a/data/ENNI_SALT/test/850.slt b/data/ENNI_SALT/test/850.slt new file mode 100644 index 0000000000000000000000000000000000000000..d1f41e28a49091cf8637f61ce077f13672af9dab --- /dev/null +++ b/data/ENNI_SALT/test/850.slt @@ -0,0 +1,107 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 4/15/1992 ++DOE: 2/12/2001 ++CA: 8;9;28 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 850=CHI ++Tape Location: Disk L25, Track 12 += [Bg:A1] +C [~_okay] the giraffe and the elephant are : play/ing in the water. +C and they are bounce/ing a ball[-:] : [~_well] the elephant is. +C and[-:] the : elephant is out of the water. +C and so is the giraffe. +C but she bounce/3s it too hard. +C and it land|land[EW:lands] in the water. +C and the giraffe try/3s (to get it) [~_like] to jump in and get it. +C but it : look/3s like it is hard for him to : get it. +C but then he got it. +C and then he swam to the elephant. +C and the elephant got it. +C and then[-:] : the : giraffe : got out of the : water. +C and the elephant : took it from him. += [Eg:A1] += [Bg:A2] +C [~_okay] the elephant and the giraffe : are stare/ing into the water. +C and the elephant : (try/3s to : run[-:] in the water[-:]) (try/3s) (she) (like she is on : where) [~_like] she is on the ground. +C and then she try/3s to run in the water. +C but then she slip/3s. +C and then she got : a[EW:an] owie on her knee. +C and she start/ed to cry. +C and then the giraffe call/ed the lifeguard. +C and the lifeguard (help) try/ed to help her : was run/ing over to her [EU]. +C and the lifeguard got a bandaid and put it on her knee. +C and then the lifeguard (told her) told her to bend her leg. +C and then it felt better. +C but then the lifeguard : (um) show/ed the elephant : that there was a sign that said no run/ing. +C and then she had to sit on the bench. += [Eg:A2] += [Bg:A3] +C the elephant and the giraffe : are[-:] (um) : laugh/ing together. +C and the giraffe has a toy airplane in the swimming pool. +C and then the giraffe : play/3s with it and fly/3s it in the air. +C but then the elephant grab/ed it away from him : and start/ed to playing[EW:play] with it. +C but then she drop/ed it. +C and it fell in the water. +C and then the giraffe got really mad[-:]. +C and[-:] the[-:] lifeguard came over and look/ed at the airplane : and was shock/ed. +C and the elephant said it was an accident. +C (but then the) so the lifeguard bent down and try/ed to get it. +C but he was too short. +C and then the giraffe start/ed cry/ing. +C and then the[-:] elephant look/ed shy[-:] (like) : kind of[-:] like she is sorry. +C and the lifeguard did not know what to say. +C but then (a girl walk/ed over) [~_well] one of the lifeguard/s walk/ed over : and grab/ed the net and : grab/ed the airplane with the net. +C and then the giraffe (start/ed) stop/ed cry/ing. +C and then the lifeguard was happy. +C and then the elephant did not know what to say. +C (and then the) and then the lifeguard : pick/ed up the airplane and gave it to the giraffe. +C (and the gir) and the elephant was happy. +C and the giraffe was very happy. += [Eg:A3] += [Bg:B1] +C (a[-:] : dog and a) [~_no_yeah] a dog and a bunny [EU]. +C (uh well) first the dog is play/ing in the sand with a shovel. +C and then the bunny come/3s along with his[!] shovel. +C and[-:] the[-:] dog is just done[EW:finished] his castle. +C and the bunny is put/ing some sand in his : sand bucket. +C and then the bunny pour/3s all of the sand on the castle. +C (and) : and then : (the bunny) instead of the dog get/ing mad the bunny get/3s mad. +C and then the dog start/3s to cry. += [Eg:B1] += [Bg:B2] +C (a bunny is w) : the bunny is (w) walk/ing : down the road : with his : basket. +C and a dog : wave/3s at the bunny : with his basket. +C and : the dog take/3s out his sandwich. +C and the bunny take/3s out : her big meal that she has : in her basket. +C and then the : bunny[~!_laughing] eat/3s it all. +C and then : you can see garbage all over the mat[-:] . +C and then the dog is just eat/ing a sandwich. +C and then the bunny feel/3s a bit sick. +C and the dog is shock/ed. +C so the dog[-:] run/3s down the road : to the bunny is granny and tell/3s her [EU]. +C and then (the granny) : (um well) the dog is pull/ing the granny toward/3s the bunny. +C and : (the) : the granny[-:] (fix) like help/3s the bunny. +C and then they walk home happily together. += [Eg:B2] += [Bg:B3] +C (the bun) [~_oh] first the dog has a wagon[-:] with a balloon tie/ed on it. +C and the bunny is walk/ing down the road wave/ing at the dog. +C and then the[-:] bunny : say/3s[-:] that is a nice balloon that you have. +C and then the bunny try/3s to tie it off the wagon. +C but then : he did[!] tie it off. +C and then it float/ed up in the air. +C (the dog) and the dog got really mad[-:] . +C (and[-:] he got so) but : he did not have to be mad for long because he saw : a[-:] : balloon carrier. +C and : the bunny was walk/ing towards him. +C and the bunny[-:] : ask/ed (how many) how much : are those balloon/s? +C and (um) : the salesman : said they are five cent/s each. +C but the bunny did not have enough money. +C he did not have any money. +C and then the bunny and the dog just standed|stand[EW:stood] there (and went) gave a sad face. +C and then[-:] the bunny : walk/ed toward[-:] : this[-:] girl on the street : and ask/ed if I can get a balloon. +C and then the girl (gave her fi) gave him (five cent) [~_I__mean] ten cent/s for two balloon/s. +C and they both had the balloon and were very happy. += [Eg:B3] diff --git a/data/ENNI_SALT/test/852.slt b/data/ENNI_SALT/test/852.slt new file mode 100644 index 0000000000000000000000000000000000000000..c77eae86a543ad792b5e34c4c48b53cd9044f928 --- /dev/null +++ b/data/ENNI_SALT/test/852.slt @@ -0,0 +1,106 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 6/22/1992 ++DOE: 2/12/2001 ++CA: 8;7;21 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 852=CHI ++Tape Location: Disk L25, Track 17 += [Bg:A1] +C [~_well][-:] there is an elephant and a giraffe. +C the elephant : is[-:] bounce/ing a ball. +C and[-:] : there is the giraffe guy : I think is talk/ing to her. +C and they are watch/ing. +C and[-:] all of a sudden the ball that the elephant was bounce/ing fell into the water. +C and[-:] they are both look/ing kind of sad and : (um) excite/ed. +C and now the giraffe (uh) : jump/ed into the water and now is swim/ing : to catch the ball. +C and the giraffe is back at the end of the pool and : gave the ball back to : the elephant. +C and now the elephant is happy and[-:] : look/3s : happy [~_laughs]. += [Eg:A1] += [Bg:A2] +C (uh um : the) there is the giraffe and the elephant again. +C and the[-:] : elephant is look/ing at the water with the giraffe. +C and now the elephant (is) look/3s like (uh) she is go/ing to jump into the pool. +C and[-:] right when she start/ed jump/ing (uh) the elephant slip/ed : and hurt herself. +C and now she has a : cut on her leg. +C and now the giraffe is[-:] (stand) sit/ing by her and call/ed the lifeguard to come. +C and[-:] now the elephant is[-:] : kind of[:_kinda] scare/ed that it is go/ing to hurt when they put on the bandaid [~_laughs]. +C and now she is walk/ing with the lifeguard with the bandaid on herself. +C and she is kind of [~_laughs] happy and kind of sad[~!_laughing]. +C and now : she is sit/ing the bench. +C and the lifeguard is point/ing to no run/ing because she was run/ing. += [Eg:A2] += [Bg:A3] +C (uh the elephant and the giraffe) [~_well] the elephant is look/ing at the giraffe/z : airplane that he has in his hand/s. +C and she is happy. +C now the giraffe is[-:] kind of play/ing with the[-:] airplane and pretend/ing that it is fly/ing. +C and[-:] (the[-:]) the elephant is try/ing it now. +C and she is pretend/ing. +C and : the giraffe is think/ing : (she is) he is scare/ed that she is go/ing to wreck it. +C and now (the) : the[-:] : airplane fell into the water. +C and now the : giraffe is mad. +C and now the lifeguard is stand/ing there and : watch/ing them[-:] (uh) : be mad : at each other[~!_laughing]. +C and (now) so[-:] the elephant is[-:] say/ing what happen/ed. +C and : the lifeguard : is (wa) look/ing at her. +C now the lifeguard is try/ing to[-:] : get the[-:] airplane. +C and[-:] (the) now the giraffe is cry/ing because the lifeguard can not get the airplane out of the water. +C and now there is another : (uh) elephant. +C and she has a fish net. +C and now she is try/ing to catch it with the fish net. +C and she got it with the fish net and gave it to : giraffe. +C now giraffe is happy. +C and[-:] : (um) elephant is happy too. += [Eg:A3] += [Bg:B1] +C [~_well] there is a bunny. +C and[-:] I think there is a dog. +C and the dog has made a[-:] : sandcastle in the sandbox. +C and[-:] the[-:] bunny (looks) has a shovel. +C and he look/3s happy [~_laughs]. +C and now the[-:] bunny was help/ing : the dog : to make : the rest of the sandcastle. +C and (then the) then the bunny : pour/3s all[!] of the sand over onto the : sandcastle. +C and now (the b) the bunny wreck/ed the whole sandcastle. +C the dog do/3s not seem that : (uh) mad. +C and then now : he look/3s at it now again. +C and : (uh) he is really mad. +C and the bunny : is just stand/ing there look/ing : kind of sad and mad too. += [Eg:B1] += [Bg:B2] +C (uh) there is the bunny and the dog again. +C and the bunny and the dog are go/ing for a picnic. +C the bunny is sit/ing by[-:] the dog. +C and they are eat/ing. +C and the bunny has lot/s of food around him [~_laughs]. +C and now the bunny is really[!] stuff/ed. +C and : the dog is still eat/ing nicely [~_laughs]. +C and the dog is[-:] eat/ing. +C and the bunny look/3s kind of : (uh) really : (um) : full [~__laughs]. +C so now the dog is run/ing to[-:] a parent that is walk/ing down : the road : and[-:] brought (the[-:]) the other bunny to[-:] : (uh) the little bunny that ate too much [~_laughs]. +C and[-:] now (the[-:] bunny) the big bunny is look/ing at the little bunny. +C and now the little bunny is all better now. += [Eg:B2] += [Bg:B3] +C [~_okay] there is the dog and the bunny again. +C and the bunny (is ru) are[EW:is] run/ing down (the roa) the (s) sidewalk. +C and the dog has (a) : a little cart : with a balloon : tie/ed to it. +C now the bunny is look/ing at the balloon that is tie/ed to[-:] the cart. +C and now (the) the dog is look/ing at the bunny. +C and the bunny is try/ing to take off the balloon. +C and the : bunny took off the balloon. +C and now the balloon is sail/ing up in the sky. +C and now the dog is really[!] mad. +C and the bunny : is look/ing (at) at the balloon at the sky [~__laughs]. +C and now the[-:] bunny is walk/ing down (the s) the sidewalk. +C and : the dog is look/ing at : the bunny walk/ing down. +C and the bunny see/3s : some balloon/s. +C and the bunny[-:] see/3s the balloon/s with the man hold/ing them and ask/3s if[-:] she can buy one. +C and[-:] (they are) they are five cent/s. +C and : the bunny is look/ing in his pocket/s because he do/3s not have (uh) : any money. +C and now (the) both the dog and the bunny are look/ing at the balloon/s see/ing if he will give them one [~_laughs]. +C and now : (the : big bunny uh) the little bunny is go/ing to ask the big bunny and see if[-:] she has any money. +C now[-:] (they are ask/ing) the (bunny) little bunny is ask/ing the big bunny if (he can) she can have a five cent/s : to buy a balloon. +C and so the big bunny gave : the man (five cent/s so that they can ha or) ten cent/s so they can have two balloon/s. +C and now each of them (have two) has a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/test/875.slt b/data/ENNI_SALT/test/875.slt new file mode 100644 index 0000000000000000000000000000000000000000..0581d4c2ec6cfafde519bb34062002d6fb80ee13 --- /dev/null +++ b/data/ENNI_SALT/test/875.slt @@ -0,0 +1,98 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 6/16/1992 ++DOE: 5/10/2001 ++CA: 8;10;24 ++Gender: F ++Context: Nar ++Group of CHI: SLI ++ID: 875=CHI ++Tape Location: Disk M9, Track 70 += [Bg:A1] +C two : different animal/s were : the swimming pool [EU]. +C they want/ed to play dodgeball in the water, water dodgeball. +C the ball got in the water. +C and the (an) giraffe[-:] was go/ing to[:_gonna] get it. +C so (huh : hm) while he was swim/ing water came out of his mouth. +C and[-:] he was all drippy. +C then[?] : giggle/ed [EU]. +C (he[-:]) (the ele) the elephant watch/ed. += [Eg:A1] += [Bg:A2] +C when they were at : a swimming pool the elephant want/ed (in the dive) the diving board. +C (and there) (she want/ed to run toward) she want/ed to race towards it. +C but there was a sign[-:] that said no run/ing. +C she runned|run[EW:ran][!] : towards here. +C the giraffe never runned|run[EW:ran]. +C (and they) (xx xx huh) and the elephant slip/ed and slip/ed : and fall|fall[EW:fell] down and hurt her knee. +C lifeguard came run/ing. +C she[-:] : got a bandaid on it : [EW:an]elephant sized[~!_laughing] : bandaid. +C and (h) : bit better [EU]. +C and[~!_laughing] the lifeguard said next[~!_laughing] time look at the sign[-:] [~_laughs] ! += [Eg:A2] += [Bg:A3] +C they were at the swimming pool. +C and the (huh) giraffe (huh) : is throw/ing (air huh) super duper fly/ing jet plane [EU]. +C he want/ed to fly it. +C but : Elephant want/ed to fly it into the water see if it could : land on its gear [EU]. +C but (it w) it was start/ing to sink. +C then[-:] the giraffe got angry at her : because of the plane : in the water. +C and a lifeguard (huh : s) look/ed at them. +C what is go/ing on? +C and they said : (the) : my friend (s) : his super duper : jet plane is in the swimming pool. +C it is sink/ing. +C he try|try[EW:tried] to get it. +C but he could not reach it. +C it was start/ing to sink more. +C cry/ed [EU]. +C then (they s) he who is : there to swim [~_laughs] he got something : (was all) that look/ed like a big fishing net. +C he got it out. +C (huh) he got it. +C and he tooked|take[EW:took] it out and : (start/ing) stop cry/ing [EU]. +C then[-:] : to : the giraffe : and got happy [EU]. +C he hug/ed his plane : like it was[~!_laughing] a lost memory. += [Eg:A3] += [Bg:B1] +C (hm) : there : were [~_laughs] : two : mole/s at the sandbox. +C one : was : build/ing a sandcastle. +C and one was build/ing a pail. +C (one) the bunny : when he was done fill/ing it up : and pat/ing it down he put it right[!] over (the) : the sandcastle[-:][!]. +C : went oh no [EU]! +C doggy got[EW:was] sad. +C [~_laughs] bunny just whistle/ed [~_laughs]. += [Eg:B1] += [Bg:B2] +C the animal/s : go/ing out for a picnic in the wood/s [EU]. +C they found the perfect spot. +C they start/ed chow/ing down. +C [~_laughs] the doggy ate (s) sandwich[EW:sandwiches] and juice. +C and the bunny[~!_laughing] got just a tummyache [EU]. +C [~_laughs] : then : him[EW:he] : (xx xx) drinked|drink[EW:drank] : his juice : and ate a biscuit. +C and the bunny[~!_laughing] got (a) : sicker. +C [~_laughs] the bunny faint/ed [~_laughs]. +C then got : there [EU]. +C him[EW:he] want|want[EW:wanted][?] to get him to : come [~_laughs]. +C [~_laughs] he got a big tummyache. +C he was go/ing dizzy[-:] [EU]! +C (hm pic) [EW:the]picnic was all gone. +C [~_laughs] the (we) bunny went back home. += [Eg:B2] += [Bg:B3] +C one animal had a balloon[-:]. +C and : the bunny was come/ing towards (this) him. +C [~_laughs] : he say|say[EW:says] cool[!] : balloon[-:]. +C he untie/ed the balloon. +C did not know it would float up [EU]. +C it went really[!] high. +C they could not get[!] it. +C and the balloon : was gone. +C the doggy got angry. +C then[-:] : there was a balloon saler[EW:seller]. +C he want/ed one of the balloon/s (to get) : (to) : for his friend. +C but : he was broke. +C (s) so : decide/ed to get someone who had money. +C the bunny went to get the doctor. +C she had lot/s[!] of money : (huh) : to get : a balloon. +C then[-:] : two balloon/s : for each of them. +C and they were pretty [~_laughs] have/ing fun [~_laughs] and laugh/ing [EU]. += [Eg:B3] diff --git a/data/ENNI_SALT/test/877.slt b/data/ENNI_SALT/test/877.slt new file mode 100644 index 0000000000000000000000000000000000000000..2b10b36e7e6b5c56a6c71e052eba62fc464055e0 --- /dev/null +++ b/data/ENNI_SALT/test/877.slt @@ -0,0 +1,82 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 6/17/1993 ++DOE: 5/6/2002 ++CA: 8;10;19 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 877=CHI ++Tape Location: Disk M12, Track 34 += [Bg:A1] +C there is a : giraffe and an elephant. +E : shall I turn the page? +=C okay [+_bch]. += %com: CHI tells EXA to turn the page after every line from this point on; not transcribed +C (then) : then there was a : ball in the water. +C then the giraffe : went to get it. +C then the giraffe got the ball for the elephant. +C : and : he was play/ing with it. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C they want/ed to go (on : the) : on the jumping : thing. +C and the : elephant one want|want[EW:wanted] to go on it. +C then the elephant trip/ed. +C then he got a[EW:an] : owie. +C then the lifeguard came. +C he put a bandaid on it. +C (and they) and he (took it) took him to the bench. +=C : I do not know it [~_whispered] [+_bch]. += [Eg:A2] += [Bg:A3] +C there is a giraffe and an elephant. +C the giraffe has an airplane. +C then : the : elephant took it. +C then it fell in the water. +C : then the giraffe was mad at the elephant. +=C [~_page_6] : do not know [~_whispered,_page_turned] [+_bch]. +C it look/ed like it was sink/ing. +C but the lifeguard was try/ing to get it. +=C [~_page_9] i do not know [~_page_turned] [+_bch]. +C and the lifeguard got a net. +C and he fish/ed it out. +C and he gave it back to the : giraffe. +=C [~_page_13] : do not know [+_bch]. += [Eg:A3] += [Bg:B1] +C There is[EW:are] two rabbit/s that are go/ing to make a castle. +C : they are make/ing one. +C he dump/ed : (ah) sand on it. +C then it broke. +C (and) : and : they were go/ing to[:_gonna] build it again. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C There are two rabbit/s that are go/ing picnick/ing. +C they brought food to eat. +C they ate all the food. +C : one of the rabbit/s are[EW:is] really fat. +C then (t) a doctor came. +C then one of the rabbit/s are[EW:is] pull/ing him. +C (and) : then he was : check/ing his temperature. +C then : the doctor took one of the (r) rabbit/s. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C there are two rabbit/s that have one balloon. +E okay : anything on this page? +E no [~_page_turned]? +C then they took it off. +C then it went up : in the sky. +C then : it was up : high. +C there was a rabbit : had : lot/s of balloon/s [EU]. +C and one of the rabbit/s ask/ed him if he can have one. +C it cost/3s five cent/s. +E : nothing here, okay [~_page_turned]. +C and there was a rabbit come/ing. +C then he ask/ed : the rabbit if he can have money : for a balloon. +C (then he) : (then he gave) the bunny gave him the money. +C then they each got one. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/test/879.slt b/data/ENNI_SALT/test/879.slt new file mode 100644 index 0000000000000000000000000000000000000000..f4d14b0e5449099eb951a304ae9fecfe46686545 --- /dev/null +++ b/data/ENNI_SALT/test/879.slt @@ -0,0 +1,107 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 1/06/1994 ++DOE: 5/06/2002 ++CA: 8;4;0 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 879=CHI ++Tape Location: Disk M12, Track 48 += [Bg:A1] +C (the dog) [~_no] the giraffe and the elephant [EU]. +C the elephant was play/ing basketball with the giraffe. +C and then : the (do) elephant throw|throw[EW:threw] the basketball in the water. +C the giraffe try/ed to save the (balloon) [~_no] ball. +C and the giraffe said here you go. +C here is the (balloon) [~_no] ball. +C and now the elephant/s have the ball. += [Eg:A1] += [Bg:A2] +C a giraffe and a[EW:an] elephant : was[EW:were] go/ing swim/ing. +C and the elephant said I am go/ing on the diving board. +C and then : the elephant hurt/3s her foot. +C and she slip/ed. +C and[-:] she break|break[EW:broke] her foot. +C (and) and then the giraffe came : to save her. +C and then the swimming teacher came. +C and then (the s) (s) the swimming teacher give|give[EW:gave] her a bandaid. +C and the swimming teacher : gave her a bandaid. +C (and then) and then the elephant said thank you for the bandaid. +C and the teacher said no run/ing. +C said oopsie [EU]. += [Eg:A2] += [Bg:A3] +C the giraffe is play/ing (wi) with his helicopter. +C (eh eh) and the elephant (wa) want|want[EW:wanted] to play (with) with it too. +C and the giraffe play/ed with his helicopter. +C and then[-:] the elephant take|take[Ew:took] it away from him. +C and then the elephant drop|drop[EW:dropped] it in the water. +C and (the elephant was mad) [~_no] the giraffe was mad. +C and the swimming teacher was (to) to look at the helicopter [EU]. +C (and then) and then (this) (the[-:]) the elephant said : that the airplane is in the water. +C and then the swimming teacher is try/ing to save the airplane : in the water. +C and (the) (the) the swimming teacher said I can not catch the airplane. +C (and then the) (an) and then the giraffe was cry/ing. +C and then (a) a swimming (eh) elephant : was came[EW:coming] (to) : to rescue the : airplane. +C (and then) and then she save/ed the airplane. +C and she said here you go : giraffe. +C here is the airplane. +C (and) and then (the) the giraffe was happy. += [Eg:A3] += [Bg:B1] +C (the bo) the dog (and) (and the) and the bunny want to build a castle. +C first : the rabbit : take/3s the sand in the bucket. +C (then) : and then the rabbit taked|take[EW:took] the sand the castle [EU]. +C and the dog is (s) scare/ed[~!_laughs]. +C and then[-:] : (the ra) the rabbit is scare/ed (be) because[?] the rabbit break|break[EW:broke] the castle. +C and then the dog try/ed to (fix) fix the castle. += [Eg:B1] += [Bg:B2] +C the rabbit and the dog went (F) : for a picnic. +C and then : the rabbit (i) is eat/ing (his) her lunch. +C and the dog (is) (is) is eat/ing his[!] lunch. +C (and) and : because the rabbit have|have[EW:has] too much lunch now rabbit have|have[EW:has] a tummyache. +C but the dog do|do[EW:does] not. +C and the dog (only ha) only have|have[EW:has] : some[!] lunch. +C and the dog say/3s huh? +C the rabbit (is) have|have[EW:has] a tummyache : (and now) : because the dog : did not eat too much. +C only the rabbit did. +C and the dog said mama! +C and mommy [EU]. +C but the rabbit/z mommy[~!_laughs] [EU]. +C and he said this : hey mommy. +C here is a dog [~_laughing]. +C he said huh? +C that is not my children[EW:child]. +C and (she said) she said : I do not know rabbit. +C I am a doctor! +C (and now : the rabbit has gone) and the rabbit go|go[EW:goes] home except the dog. += [Eg:B2] += [Bg:B3] +C the dog has (a) a dragon. +C and the balloon is hold[EW:holding] up the dragon. +C and then the rabbit came : with him. +C (and then) and then the rabbit found the balloon. +C and then the rabbit *is go/ing to take it off [EU]. +C (and) (and) and the rabbit : take|take[EW:took] it off. +C (and) and it float|float[EW:floated] up to the sky. +C and the rabbit and the dog try|try[EW:tried] to catch it. +C and now the dog is mad. +C (and it) and the rabbit was scare/ed. +C (and then) and then the rabbit and the dog bought some more[!] balloon/s. +C and the rabbit said how much *does that[!] cost [EU]? +C it cost|cost[EW:costs] five cent/s. +C but the rabbit had no money. +C and the rabbit and the dog said no money? +C aw [~_disappointed_sound]. +C xxx : a balloon. +C then they said mommy come here! +C can you buy us a balloon? +C (and sh) and the mommy said which balloon/s? +C the[!] balloon/s. +C and then the mom buy|buy[EW:bought] the balloons. +C call/ed[?] a nickel [EU]. +C and (then) then they had the balloon/s. +C then (the) (the) (the cat and) [~_no] (the) the bunny and the dog is[EW:are] happy. += [Eg:B3] diff --git a/data/ENNI_SALT/test/907.slt b/data/ENNI_SALT/test/907.slt new file mode 100644 index 0000000000000000000000000000000000000000..61fdd89a14dea442a2a6f060825ffdf86561aa6a --- /dev/null +++ b/data/ENNI_SALT/test/907.slt @@ -0,0 +1,79 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 1/29/1991 ++DOE: 5/17/2000 ++CA: 9;3;18 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 907=CHI ++Tape Location: Disk L15 Track 5 += [Bg:A1] +C (The el) (the um) the little elephant is play/ing with her bouncy ball. +C (and the gi) and the giraffe come/3s to meet her. +C suddenly the ball fall/3s : in : a (f) pool beside them. +C (the) the giraffe go/3s and swim/3s for it. +C and the giraffe is so kind and bring/3s back the ball. +C the elephant is so[!] happy. += [Eg:A1] += [Bg:A2] +C The elephant and the giraffe meet at the pool and look at the[-:] diving board. +C (the) the elephant go/3s to run for it. +C but there is a sign above her head that says no run/ing. +C she slip/3s and fall/3s. +C (she) she scrape/3s her knee (and) and can not swim. +C a lifeguard come/3s to see what happen/ed to her knee. +C (the) and he put a bandaid on it. +C he set/3s her down on a bench so (it will) (it will) it will heal. +C and the lifeguard point/3s to the sign that says no run/ing. += [Eg:A2] += [Bg:A3] +C (The ele) The elephant and giraffe are swim/ing together. +C the giraffe find/3s a plane and start/3s to show it to the : elephant. +C (the giraffe) (um) the elephant (grab/3s from) it from the giraffe and : swim/3s away. +C suddenly she drop/ed it. +C : the giraffe get/3s very mad : and can not hold in his anger. +C the (lifeg) lifeguard come/3s and see/3s what has happen/ed. +C the : elephant start/3s to complain (that) that it was not her fault. +C and the : lifeguard try/3s to get the plane. +C but no one can reach it. +C so a lady with : a net come/3s and : pull/3s it out. +C she is very kind think/3s everyone. +C and the giraffe get/3s his plane back. +C everyone is very happy. += [Eg:A3] += [Bg:B1] +C (um) a bunny : and a dog (were mak) were make/ing sandcastle/s in the (sand uh) : sand bin. +C (um : the bu) the bunny (um : he) he got a bucket and start/ed to build a better castle. +C suddenly he dump/ed all the sand (on the uh) (the bi) the other castle. +C and everyone was disappoint/ed. +C (the o) the dog (was) was so sad she start/ed to cry. += [Eg:B1] += [Bg:B2] +C the dog (mee) meet/3s the bunny (um) for a picnic. +C (they) they have a picnic together except the bunny is kind of piggish. +C he eat/3s all the food : really fast while the other one eat/3s very slow and : politely. +C the rabbit feel/3s very sick after his big meal. +C the doctor has to come : and : help|help[EW:helps] (the) the (s) sick rabbit. +C the dog pull/3s (her) her over (to the um) to see if he is conscious. +C the doctor say/3s (she ha) he has a fever. +C and he ate too much. +C soon he feel/3s better again. += [Eg:B2] += [Bg:B3] +C (the) (the) the dog (is) has a balloon on her wagon. +C and the bunny come/3s to meet her. +C the bunny notice/3s the nice (um) shiny balloon. +C (he) the bunny try/3s to untie the balloon. +C but (the dog : um) the dog get/3s nervous. +C and it float/3s away. +C the dog get/3s very very mad at the bunny. +C but : when they turn around they see another man with : twenty more balloon/s. +C the rabbit buy/3s one : (to make) [~_yeah]. +C (um) : but he do/3s not have enough money for one balloon. +C the man tell/3s them (they could ha) they could get a free one. +C and : the nurse say/3s no actually I will[!] buy you one. +C and she go/3s and buy/3s one. +C this make/3s both the bunny and the dog very happy. +C now they both have one balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/test/911.slt b/data/ENNI_SALT/test/911.slt new file mode 100644 index 0000000000000000000000000000000000000000..eb81b576288edf73c58c628202a925660e0596e4 --- /dev/null +++ b/data/ENNI_SALT/test/911.slt @@ -0,0 +1,98 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 3/15/1991 ++DOE: 5/17/2000 ++CA: 9;2;2 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 911=CHI ++Tape Location: Disk L15 Track 47 += [Bg:A1] +C One day a giraffe saw : her friend the elephant play/ing with a ball. +C (gira) the giraffe took[!] the ball and threw it (in the po) in a pool nearby. +C the elephant was scare/ed the ball might : sink. +C so the giraffe went to get the ball. +C the giraffe got the ball for the elephant. +C and the elephant was happy. +C then the elephant thank/ed the giraffe. += [Eg:A1] += [Bg:A2] +C One day the giraffe and the elephant were at the pool. +C the elephant said let us go off the diving board. +C the : elephant ran. +C and so did the giraffe. +C the elephant fell (and) and hurt her knee. +C the lifeguard came and help/ed her. +C he put a bandaid on the elephant while the giraffe watch/ed. +C the lifeguard told the elephant : not to run in the pool. +C or she might slip. +C so the elephant sat down [~_coughs] and did not run. += [Eg:A2] += [Bg:A3] +C One day (in) the elephant and the giraffe were at the pool. +C the giraffe had (a) (a) a little plane. +C the giraffe play/ed with the plane. +C he did loop/s and swirl/s and (s) thing/s like that. +C then the elephant took the plane and try/ed to play with it. +C the elephant drop/ed the plane into the water. +C the giraffe got furious. +C (and the ele) and the elephant got scare/ed. +C then the lifeguard came. +C the elephant told the lifeguard that she was play/ing with the plane. +C but she drop/ed it in the pool. +C the lifeguard try/ed to get it. +C he said he could not reach it. +C and the : giraffe start/ed cry/ing. +C then a woman came with a net. +C (she took the net and) : she took the net and : took the plane out. +C the boy was really happy and thank/ed (the ele) the woman. +C the boy got his plane back. +C and he was really happy. +C and so was the elephant. += [Eg:A3] += [Bg:B1] +C one day two rabbit/s were play/ing in the sandbox. +C one rabbit was dig/ing out some sand. +C the other one was make/ing : a sandcastle. +C the rabbit pour/ed the sand in the bucket on the sandcastle. +C (the rabbit got conf) : the rabbit pour/ed on the sand. +=C and : I can not make this one : (um) (uh) [+_bch]. +E : just tell me what is happen/ing. +C the rabbit is like scare/ed because then the other : rabbit might : get mad at him. +C the[-:] dog or rabbit : start/ed to cry. +C and the rabbit just stood there. += [Eg:B1] += [Bg:B2] +C one day two friend/s met to go to a picnic. +C one friend kept on eat/ing and eat/ing (and : got) : and : (keep) kept on eat/ing and eat/ing and got really full. +C by the time he finish/ed he was really stuff/ed. +C the other friend : just drank some juice and some bread. +C (w) when the other friend found the doctor who was in the park : (h) he went to get him to see if there was anything wrong with : her friend. +C she beg/ed the doctor to come. +C (so she did) so the doctor came. +C the doctor check/ed the rabbit. +C and : it seem/ed that he had a stomachache. +C the doctor told the rabbit : to not eat too much junk food. +C so the rabbit did not get much of a stomachache. += [Eg:B2] += [Bg:B3] +C one day (a) : the rabbit met : his friend the dog : which had a wagon and a balloon. +C the rabbit like/ed the balloon. +C so he point/ed to it. +C the rabbit untie/ed the balloon. +C and the dog just stood there with surprise. +C (so) and then the balloon flew away. +C the dog got mad at the rabbit. +C then[!] the two (s) saw a man hold/ing a bunch[!] of balloon/s. +C the rabbit ask/ed for : another balloon. +C the man told him it was five cent/s. +C but the rabbit did not have any money. +C then the other[!] friend came. +C the rabbit went to see : his mom. +C (and s) : and (the) his friend watch/ed him as he walk/ed to his mom. +C he told his mom he want/ed a balloon. +C the man : gave two balloon/s (to the) to the two friend/s. +C and the mom paid : the money. +C (they) the two friend/s thank/ed (their) the mom. += [Eg:B3] diff --git a/data/ENNI_SALT/test/920.slt b/data/ENNI_SALT/test/920.slt new file mode 100644 index 0000000000000000000000000000000000000000..8fd2042ce3e1ac22dfcfd9abca05174b4cbc7136 --- /dev/null +++ b/data/ENNI_SALT/test/920.slt @@ -0,0 +1,101 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 10/16/1991 ++DOE: 4/18/2001 ++CA: 9;6;2 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 920=CHI ++Tape Location: Disk M9, Track 5 += [Bg:A1] +C once upon a time : there was : a giraffe and a[EW:an] elephant play/ing : around the pool. +C (and one of) they were play/ing with a ball. +C and (it f) : it fell : in the water. +C and the giraffe : swam to (the balloon) : the ball. +C and then : he[-:] swam back : to : the elephant : and gave it back to her. +C and she was : very[!] : happy : that he got it : for the elephant. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C once upon a time : there was : a giraffe and a[EW:an] elephant : around the pool. +C and the elephant (want/ed to jump : off the j) : (the) : (the tr : um) : (the : um) : want/ed to jump : in the pool. +C and (sh) when she was run/ing : to it : she slip/ed. +C and she fell. +C she got (a scra) : a scratch on her : knee. +C and[-:] the giraffe : ran to : the[-:] lifeguard. +C and : he got a bandaid. +C and : (they) : (they) : he put it on : her knee. +C (and) : and he sent : her to (the) : the bench. +C (and) and he show|show[EW:showed] [-:] her : no run/ing : sign. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C (one[-:]) there was[EW:were] two friend/s : an elephant and a giraffe. +C the giraffe had a toy : that it was a airplane. +C he was play/ing around with it. +C and : a[EW:an] elephant want/ed to play with it : too. +C and elephant took[!] it from the giraffe : and (p) play/ed around with it. +C and she drop/ed it into the pool. +C and (she) : she was very sad. +C and the giraffe was very angry at her. +C the lifeguard : (ran uh) came to : the elephant and the giraffe. +C and : (the) (the el) (the[-:] : lifeguard) : [~_no] the elephant : said that : (I) by accident I : threw : the giraffe/z airplane inside : the water. +C and[-:] the lifeguard was try/ing to get it. +C but it was too far. +C and he said : I can not do anything. +C and the giraffe : start/ed to cry. +C a net : catcher : came to : the hopeless : giraffe. +C and : she had a net in her hand. +C and she : got : the airplane by her net. +C and the giraffe : stop/ed cry/ing. +C and the lady : gave it to the giraffe. +C and (he is very) he was very happy. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C once upon a time : there was a little dog : that : made a castle. +C and : (a) a rabbit : he came : (a) along : and want/ed to help him. +C and then : (he) (he dump) he dump/ed some sand inside : a bucket. +C (and : the) : and he scoop/ed some up. +C and then he dump/ed it (on there) on the castle. +C (and then) and it got cover/ed. +C (and) : and then : (it really : did not do) it (was) : was a cloud : of : sand. +C and the dog[-:] was build/ing it again. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C there was[EW:were] : two friend/s : that : were : walk/ing along for a picnic. +C and[-:] : (the ra) (the fr) one of the friend/s had : a lot of[EW:more] (f) food than : the other : friend. +C and then : he ate all of it. +C (and) : and he got really : stuff/ed. +C and then : (he) : he was very sick. +C and his stomach was really hurt/ing. +C and one of the friend/s call/ed : the doctor. +C and : the dog call/ed (her) (the) : the doctor : to help. +C and : the doctor : said do not eat a lot of food. +C and he went home. +C and he had some rest. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C once upon a time there was[EW:were] : (a) : two friend/s walk/ing along with their[-:] wagon. +C and one of the friend/s said : this is a nice wagon : and a nice balloon : you have on it. +C he tie/ed it off. +C (and he) : and he want/ed to hold it. +C and then the balloon (fell) flew away. +C and then : (they were re) one of the friend/z balloon : was very disappoint/ed. +C and one of the friend/s : saw (a) : a man sell/ing balloon/s. +C so he ran[!] over there. +C and : (he) : he got one from the man. +C can I have one of those balloon/s he said? +C but it was actually : five cent/s : to buy (the) one of the balloon/s. +C (it w) : he was really sad : that he lost : (one of the friend) : his friend : balloon. +C he ask/ed : a person (by) : if (sh) they had five cent/s. +C and : (he) he point/ed : to the balloon/s. +C and : he said there is only balloon/s for five cent/s. +C and I have no money. +C and : (she) : she bought two for each of (the) the friend/s. +C and they : said (thank you) thank you for the balloon/s. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/test/921.slt b/data/ENNI_SALT/test/921.slt new file mode 100644 index 0000000000000000000000000000000000000000..6ccebaf53aeeb459549f8518ec85aca4ab1fe93b --- /dev/null +++ b/data/ENNI_SALT/test/921.slt @@ -0,0 +1,104 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 2/4/1991 ++DOE: 6/12/2000 ++CA: 9;4;8 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 921=CHI ++Tape Location: Disk L18 Track 30 += [Bg:A1] +C It look/3s like a giraffe and an elephant that are go/ing swim/ing. +C and they are[-:] play/ing with a ball. +C (although it) although when (um) they were play/ing with it, it (um) maybe bounce/3s in the water. +C and the giraffe try/3s to swim and get it. +C and the giraffe got it and give/3s it to the elephant. +C and : the : elephant thank/3s him. +C and : the giraffe is smile/ing. += [Eg:A1] += [Bg:A2] +C It look/3s like they might want to dive in and go swim/ing. +C look/3s like the elephant is point/ing to the diving board to (um). +C and he want/3s to dive. +C and (um) the elephant start/3s to run. +C although : it is slipery. +C so she start/3s to slide. +C and she fall/3s and hurt/3s her knee. +C and then (um) the lifeguard come/3s. +C and he[-:] put/3s a bandage on it. +C then he (um) say/ing probably that there is a no run/ing sign and that you can not that you should not run cause you can slip and fall. +C and then he is point/ing to the sign that say/3s no run/ing. += [Eg:A2] += [Bg:A3] +C Look/3s like they are talk/ing : about something. +C (and then he) and then the giraffe look/3s like he is show/ing : her : his new airplane. +C and she look/3s like she is get/ing dizzy watch/ing it going around in circle/s. +C and she[-:] take/3s it from him and start/3s to look/3s[EW:look] at him. +C and the giraffe look/3s like he is get/ing mad. +C and then she accidentally drop/ed it in the water. +C and she look/3s like (sh) : she is scare/ed or something. +C and the giraffe look/3s like he is (m) really mad. +C and then the lifeguard come/3s along : and probably say/3s : what is that ? +C and what is it do/ing in the pool ? +C and then the elephant is probably blame/ing it on the giraffe that he threw it in the water. +C and the lifeguard is (try/ing to catch it) try/ing to pick it up out of the water : although he can not reach it. +C and the giraffe look/3s like he is get/ing really sad. +C so he start/3s to cry. +C and then this lady elephant come/3s along with a net. +C and she[-:] try/3s to (fish it) fish it out with the net. +C and she get/3s it out and give/3s it back to the giraffe. +C and he is all happy. +C and he is hug/ing it. += [Eg:A3] += [Bg:B1] +C (it look/3s like[-:] two[-:]) it look/3s like a bunny : (and : um) and a dog or something play/ing in the sand. +C (and they start) and the bunny look/3s like he is help/ing : the dog make a sandcastle. +C and[-:] the bunny pour/3s a whole bucket of sand on it. +C and the dog look/3s like he is get/ing sort of worry/ed. +C and the bunny (s) get/3s surprise/ed because it is all cover/ed in sand. +C and the dog start/3s to cry. +C and the bunny look/3s like he is : embarrasse/ed. += [Eg:B1] += [Bg:B2] +C it look/3s like the dog is go/ing for a picnic. +C and the bunny is come/ing along with him. +C it look/3s like the bunny is look/ing at all this good food that he want/3s to eat. +C and he eat/3s it all. +C (and : he) (and he) I guess he has a stomachache. +C and then he start/3s to feel sick. +C : and it look/3s like/3s[EW:like] he is[EW:has] faint/ed. +C and (the puppy) the dog go/3s to find somebody. +C and : he (fi) (h um) he find/3s this (um) lady. +C and he pull/3s the lady to where (um) the bunny drop/ed out. +C (and[-:] the) and the lady was a doctor. +C so she : test/ed him to see if he was awake : or not. +C and she took him. +C and she is probably go/ing to [~_gonna] take him back to the doctor office to check him up. += [Eg:B2] += [Bg:B3] +C it looks like (she is pull) the dog is pull/ing a wagon with a balloon on it. +C (And the) and the bunny is come/ing : like run/ing along. +C and he see/3s the dog. +C and he is wave/ing. +C and[-:] the rabbit (pra um) look/3s like he is say/ing (um) like nice balloon. +C and then the bunny try/3s to pull it off. +C and the dog look/3s : like : scare/ed : that it will fly away. +C and then the bunny accidentally let/3s go of it. +C and it start/3s to fly up in the air. +C and they are try/ing to catch it : although they can not. +C and the bunny is look/ing up at the balloon. +C and the dog is get/ing really mad. +C and then (this um old bun) this bunny is sell/ing balloon/s. +C and the bunny see/3s it. +C so he run/3s over. +C and then he ask/3s (the bunny) the older bunny : for (a) one of the balloon/s. +C and then the balloon man said that the balloon/s are five cent/s. +C and the bunny look/3s in his pocket/s. +C and he do/3s not have any money. +C and : the bunny look/3s sad because he can not : buy another balloon (for his) : for the dog. +C and then the bunny walk/3s over to this lady. +C and he ask/3s her for some money. +C and the lady give/3s him five cent/s. +C and then they each got one of their own balloon/s. += [Eg:B3] diff --git a/data/ENNI_SALT/test/925.slt b/data/ENNI_SALT/test/925.slt new file mode 100644 index 0000000000000000000000000000000000000000..2e2c8e81344ee3e155923aaa38b5c5a1a0587ad4 --- /dev/null +++ b/data/ENNI_SALT/test/925.slt @@ -0,0 +1,81 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 8/31/1990 ++DOE: 6/9/2000 ++CA: 9;9;9 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 925=CHI ++Tape Location: Disk L17 Track 30 += [Bg:A1] +C A giraffe and an elephant [EU]. +C (are bou) the elephant is bounce/ing a ball. +C and they are by the pool. +C the ball fall/3s into the pool. +C the giraffe swim/3s to get it. +C (um) the giraffe : give/3s the : ball back to the elephant. +C she thank/3s the giraffe. += [Eg:A1] += [Bg:A2] +C The elephant and the giraffe are go/ing to the pool. +C the elephant is point/ing to the diving board. +C (she) she is run/ing so she slip/3s. +C she hurt/3s her knee. +C the lifeguard come/3s to see what happen/ed. +C the lifeguard put/3s a bandaid on it. +C (she) the elephant sit/3s on the bench. +C and she smile/3s at the lifeguard when he point/3s at the no run/ing sign. += [Eg:A2] += [Bg:A3] +C The elephant and the giraffe go to the pool again. +C the : giraffe bring/3s an airplane that he is try/ing to fly. +C and the elephant is just look/ing at it. +C then the elephant take/3s it away from the giraffe. +C and she drop/3s it into the water. +C the giraffe get/3s mad at her. +C the lifeguard come/3s and see[EW:see/3s] what is happen/ing. +C the elephant is try/ing to explain what happen/ed. +C the lifeguard try/3s to reach it. +C and he can not reach it. +C (and the elephant) and the giraffe : start/3s cry/ing. +C then another elephant come/3s with a : (um) net : and put/3s the net in the water and try/3s to get the : airplane. +C and she get/3s it out. +C and the giraffe is happy again. += [Eg:A3] += [Bg:B1] +C (um : Two people) two (um) animal/s are : in the sandbox. +C they are build/ing a sandcastle. +C one of them is dump/ing sand over the castle. +C the sandcastle break/3s : because all of the sand. +C and one of the animal/s get/3s sad. += [Eg:B1] += [Bg:B2] +C two animal/s are go/ing on a picnic. +C they bring lot/s of food. +C and one of them is drool/ing over it. +C one of them eat/3s it all up. +C and he get/3s a (tomach) stomachache. +C and the doctor come/3s to see what is wrong with him. +C (she) (she) one of the animal/3s is drag/ing her. +C (she is) (she) she come/3s and (see what) see/3s what is wrong. +C and she help/3s him. += [Eg:B2] += [Bg:B3] +C two : animal/s [EU]. +C one animal come/3s to see the other animal. +C one animal look/3s at the balloon that she has. +C (she is) he is take/ing it off of the wagon. +C and it fly/3s away. +C then one of them get/3s really mad. +C then they see the balloon man. +C and he probably go/3s to buy her another one. +C and she ask/3s for one balloon. +C and the balloon/s are five cent/s. +C and he is look/ing in his pocket/s. +C and he is sad because he do/3s not have five cent/s. +C and then the doctor is just look/ing at the view. +C and he go/3s and ask/3s for five cent/s. +C and she give/3s the balloon man five cent/s. +C and then : they both get balloon/s. += [Eg:B3] diff --git a/data/ENNI_SALT/test/928.slt b/data/ENNI_SALT/test/928.slt new file mode 100644 index 0000000000000000000000000000000000000000..9bd8f222c0862874df48a37532e207a2baeb269a --- /dev/null +++ b/data/ENNI_SALT/test/928.slt @@ -0,0 +1,87 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 9/17/1991 ++DOE: 5/23/2001 ++CA: 9;8;6 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 928=CHI ++Tape Location: Disk M11, Track 19 += [Bg:A1] +C (uh : uh : the) : the elephant and (the[-:] : zebra) : [~_I_mean] (the) : [~_yeah] the zebra : were (go/ing) : play/ing ball. +=C and that was on this page [+_bch]. +C (and) (and then) : (and[-:]) : (and then um) : and then the ball fall/3s in the water. +C and then zebra go/3s in (to) : to swim to it. +C (the) and then the zebra bring/3s it to the elephant. +C and the elephant felled|fell[EW:fell] in love with the : zebra. +E fell in love with the what ? +=C zebra [+_bch]. +E oh. += [Eg:A1] += [Bg:A2] +C (they went on the) they are[-:] go/ing to go on the diving board. +C and then she go/3s run/ing to the diving board. +C then she slip/3s[-:] : (and) : and (hurt/3s her knee) : get/3s a scrape on her knee. +C and then the lifeguard come/3s to put a bandage on it. +C and then she start/3s scream/ing. +C (and then she w) and then she (do/3s not) : put/3s her leg up like it is broken. +C then the lifeguard say/3s : no run/ing! += [Eg:A2] += [Bg:A3] +C (the z) the zebra find/3s (a[-:]) : a plane. +C and the elephant said : wow ! +C and then he start/3s fly/ing[-:] it. +C then elephant[!] : grab/3s it from the zebra. +C (and then) (then sh) and then she start/ed (fly/ing[-:]) : fly/ing it. +C (and) (and) : and then she drop/3s it into the water. +C then it float/3s and start/3s (sink) : sink/ing. +C then the lifeguard come/3s. +C (s) : and (then) then the little boy : zebra said : can you get my : plane ? +C (and then) : and then the zebra said : the elephant was fly/ing it. +C and then she dump/ed it into the water. +C the elephant[-:] lifeguard/z arm/s : try/ed to grab it. +C but (she) he could not. +C (then the l) then the[-:] lifguard gived|give[EW:gave] her trouble. +C (a) and the zebra was cry/ing. +C (and then she go) (and then the) and then the mom[-:] : get/3s a net (and s) and grab/3s it out of the water : and get/3s it for the little boy. +C then the boy was happy. +C and they start/ed hug/ing it. +=C and it was done [+_bch]. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C (there is m) (they are ma) they are make/ing a sandcastle. +C and then a friend came. +C and then (he dig/ed) : he digged|dig[EW:dug] some sand and put it in a bucket while : the other kid was make/ing a sandcastle. +C and then he dump/3s[!] it on the sandcastle. +C (and then[-:]) : and then the rabbit was mad. +C (she) : (uh the other one st) and then the mouse start/3s cry/ing. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C (they go for a picnic and) : the mouse and the rabbit goes|go[EW:go] for a picnic. +C the rabbit start/3s eat/ing loud. +C and then the rabbit got fulled|full[EW:full] (while) while the mouse was eat/ing lot/s of sandwich/s and (ju) drink/ing juice. +C and then the rabbit ate some more. +C (and then he had a) : (and a) and then he got sick. +C then the doctor came : to see the rabbit. +C (and the doctor was not) : (then the) : and then the mouse was drag/ing the doctor. +C and then the doctor (see) (said) : [~_I_mean] (s) : (seem) seen|see[EW:saw] what is wrong. +C (uh) and then he got all[-:][!] better. += [Eg:B2] += [Bg:B3] +C they are go/ing to the circus. +C and the balloon pop/3s. +C he tie/3s up another balloon. +C then it fly/3s away[-:]. +C (and then there is) and then they can not move their wagon. +C (there[-:]) : there is a balloon[!] man. +C and the rabbit say/3s I[!] want one of those balloon/s. +C (um) and he can not buy any because they are five cent/s. +C (and then he) (and then) (and then he) and then he : dump/3s his pocket/s out. +C and he go/3s to : go run/ing to his dad to ask his dad for[-:] a balloon : for his friend. +C (and[-:] the doc) and (then) (then) : then his dad (sa) : say/3s okay. +C then they bought two balloon/s! +C and then they pop them. += [Eg:B3] diff --git a/data/ENNI_SALT/test/934.slt b/data/ENNI_SALT/test/934.slt new file mode 100644 index 0000000000000000000000000000000000000000..95a1a07fdeb1733841b7bb2c4e61b8eb8799327a --- /dev/null +++ b/data/ENNI_SALT/test/934.slt @@ -0,0 +1,84 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 10/10/1991 ++DOE: 5/10/2001 ++CA: 9;7;0 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 934=CHI ++Tape Location: Disk M11, Track 42 += [Bg:A1] +C there was an elephant : play/ing with a ball[-:] : near the pool[-:]. +C (and the) (and a gira) and a[-:] : giraffe (came) want/ed to play too. +C the ball fell right into the pool[-:]. +C the giraffe : (swam right towards) : (w) jump/ed into the pool and went to go get the ball. +C the giraffe got the ball (for the eleph) (baby) for the : elephant. +C and the elephant : like/3s the giraffe[-:]. +=C that is all [+_bch]. += [Eg:A1] += [Bg:A2] +C the elephant and the giraffe want/ed to go swim/ing. +C the : elephant[-:] was go/ing on the diving board[-:]. +C the elephant was run/ing. +C then she slip/ed[-:]. +C she (h) cut her knee. +C the lifeguard came. +C the lifeguard put a bandaid on. +C the lifeguard[-:] put (the) : the elephant (on) : on (a b) the bench (w). +C and the lifeguard : point/ed to the sign that said no run/ing. += [Eg:A2] += [Bg:A3] +C the giraffe was play/ing with his toy plane[-:]. +C (h : um) he did loop/s and stuff with his plane. +C the elephant grab/ed it. +C and it land/ed in the pool. +C the giraffe was very mad[-:]. +C the lifeguard came : (to s) : to see what the problem was. +C (h) (he uh) : (the lil) the little elephant told everything what happen/ed. +C the : lifeguard try/ed to get (the : air) : the plane. +C but he could not reach it. +C (then[-:]) (then a) : then an elephant with a net came. +C the : elephant with the net scoop/ed out the : plane : and gave it back to the giraffe. +C and : he was happy again[-:]. += [Eg:A3] += [Bg:B1] +C there is (a little bun) a bunny (and[-:] a th) and a dog[-:]. +C they are : go/ing to [~_gonna] play in the sandbox[-:]. +C the dog was build/ing a sandcastle. +C and (the[-:] : wa) the rabbit was : put/ing sand[-:] in a bucket. +C (he) : the rabbit (dump) : dump/ed the : sand on the : sandcastle/s. +C (the rabbit and the do) (the ra) the rabbit : was like : what happen/ed? +C (and[-:]) : (and[-:] the dog was try/ing to rebi) and the little dog try/ed to rebuild it. += [Eg:B1] += [Bg:B2] +C the little dog and the rabbit they (saw) : were go/ing for a picnic. +C (uh uh the) : the dog had a sandwich. +C and the rabbit had : carrot/s sandwich : cake, (chi). +C he had all kind/s of (st) : stuff. +C (then he) : then[-:] : all his food was gone. +C then he felt sick. +C the dog ran to : get a[-:] : doctor. +C (sh) : the dog show/ed (where) the doctor (where) : where they were have/ing the picnic. +C (the do) the doctor : they were : say/ing : ah with his stick[?]. +C and[-:] I think that is what he did. +C then he felt all better. += [Eg:B2] += [Bg:B3] +C the little dog was pull/ing a wagon with a balloon. +C (the ra) and the rabbit came along. +C the rabbit saw the balloon[-:] (on the wagon) : tie/ed to the wagon. +C the rabbit untie/ed the balloon. +C the balloon float/ed away. +C the dog was very mad. +C the rabbit ran to a balloon[-:] : man. +C the : rabbit want/ed a balloon. +C (h) : (he) : he had no money. +C (so they) so they were very sad. +C (then the do) then the doctor was : walk/ing along. +C and the rabbit (went to ask for some m) : went to ask for some money. +C (sh) (sh) (he told) : (the) the rabbit told the doctor everything. +C (the ra) the : doctor gave : (money) (m) money to the : balloon man. +C so they got the two balloon/s. +C (and now they were very ha) and[-:] they were very happy. += [Eg:B3] diff --git a/data/ENNI_SALT/test/958.slt b/data/ENNI_SALT/test/958.slt new file mode 100644 index 0000000000000000000000000000000000000000..49b31cf39c085c187eac9af7577eaf6966ba8a95 --- /dev/null +++ b/data/ENNI_SALT/test/958.slt @@ -0,0 +1,80 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 5/24/1991 ++DOE: 3/13/2001 ++CA: 9;9;17 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 958=CHI ++Tape Location: Disk L26 Track 31 += [Bg:A1] +C (um) it look/3s like the giraffe and the[-:] elephant are play/ing basketball [~_that_(i)s_all]. +C and the ball go/3s into the pool. +C the giraffe try/3s and jump/3s in and get|get[EW:gets] it. +C (um) but the[-:] elephant get/3s it. +C and[-:] : the giraffe look/3s embarrass/ed. += [Eg:A1] += [Bg:A2] +C (um it um) the giraffe and the elephant want to[:_wanna] go swim/ing. +C (um the) [~_okay] : (the giraffe [~_I_mean]) the elephant want/3s to go : off the diving board. +C and she start/3s run/ing. +C and the sign say/3s no run/ing. +C and she slip/3s and fall/3s and : scrape/3s her knee. +C the lifeguard come/3s run/ing up to her : put/3s a bandaid on it. +C and she is all better. +C and then the lifeguard point/3s out the sign. +C and she look/3s really really embarrass/ed : and guilty. += [Eg:A2] += [Bg:A3] +C (um) the giraffe has an airplane in his hand. +C and the elephant : (um) really like/3s it. +C (um) the giraffe : pretend/3s to fly it. +C and he is make/ing airplane noise/s. +C the elephant get/3s jealous. +C (the elephant) the elephant steal/s the : plane away from him. +C and[-:] I guess she try/3s to fly it. +C but it go/3s into the water. +C (uh the ele) and the giraffe get/3s mad. +C the lifeguard come/3s up. +C the lifeguard say/3s what happen/ed ? +C (the : oh) and the elephant explain/ed it to him. +C so now the lifeguard is try/ing to get (the) the : plane back. +C and the lifeguard can not do nothing[EW:anything]. +C the giraffe start/s cry/ing. +C then (s a woman come/3s) another elephant come/3s up : with a net : scoop/3s the airplane out : and give/3s it back to the giraffe. +C (the giraffe) and the giraffe is really really happy now. += [Eg:A3] += [Bg:B1] +C (the bunny and uh the dog uh) [~_oh] the dog has built (uh) a sandcastle. +C and the bunny want/3s to help. +C (the bunny scoop/3s up uh uh a shovel) (uh a pi) : the bunny take/3s a shovel and scoop/3s up some sand. +C and[-:] then she pour/3s it on the sandcastle. +C she bury/3s the sandcastle. +C and the dog start/3s to cry. += [Eg:B1] += [Bg:B2] +C the dog and the bunny are have/ing a picnic. +C the bunny start/3s to eat. +C and she has a lot of junk food. +C the bunny (uh) get/3s a really really big tummyache. +C (um) the dog do/3s not know what is happen/ing. +C (the) the dog run/3s up to (the bunny/z mom) : [~_or] a doctor or something (and the) and pull/3s the doctor over : to see the bunny. +C the doctor : (um) : brang|bring[EW:brought] her back [~_I_I_I_do_n(o)t_know] : like maybe : gave her a painkiller or something. +C (but : but) but then the bunny feel/3s better. +C and then they walk away. += [Eg:B2] += [Bg:B3] +C the dog has a balloon. +C the bunny want/3s to see the balloon. +C so the bunny untie/3s it from his wagon[!]. +C the balloon float/3s up in the air. +C (um) the dog get/3s mad. +C there is a balloon salesman on the other side of the park. +C (he wants) the bunny go/3s up to buy one. +C but each balloon is five cent/s. +C and the bunny and the dog have no money. +C so the bunny run/3s up (to uh) to the doctor : and ask/3s (if she) if (she um) the doctor can (buy : uh) buy a balloon for a friend. +C the doctor go/3s up (pays us) and pay/3s the balloon man. +C (and now each) and now the dog and the bunny have a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/test/959.slt b/data/ENNI_SALT/test/959.slt new file mode 100644 index 0000000000000000000000000000000000000000..bc950f050fd7778f06e79f6c6c0f1de2e8d2d82e --- /dev/null +++ b/data/ENNI_SALT/test/959.slt @@ -0,0 +1,92 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 1/30/1992 ++DOE: 2/02/2001 ++CA: 9;0;3 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 959=CHI ++Tape Location: Disk L24, Track 127 += [Bg:A1] +C (this is) this story is call/ed[-:] : the ball [~_title]. +C one day : this little girl was play/ing with a ball[!]. +C and a lifeguard : was play/ing with it too. +C and so when she was play/ing with the ball : she accidentally drop/ed it in the pool. +C and then : the lifeguard went in the water and : swam (and got the balloon) and got the ball. +C and when : he did : she was so[-:][!] happy. +C and then : (she um) : she ask/ed him if he want/3s to play with her again. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C this story is call/ed the scratch. +C one[!] day : a little girl was go/ing swim/ing. +C and she was run/ing to the board. +C and when she did she slip/ed. +C (and : she) and when she slip/ed she : got a cut on her knee. +C (and then the lifegua) and then another lifeguard came run/ing and : said are you okay? +C and then he put a bandaid on. +C and then he put (him on) put her on the bench. +C and (she would not be able) she was not able to swim. +C but then the lifeguard was really mad because : (he) she should have seen (the) the sign no run/ing. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C this story is call/ed the airplane. +C one day this little boy and this little girl were play/ing with an (air) airplane. +C the girl ask/ed can I play with it now ! +C and he said okay. +C (and then it) and then she accidentally drop/ed it in the water. +C when she did : the little boy got all[-:] mad. +C and then she went up to the lifeguard : and ask/ed the lifeguard if he could get the airplane. +C and when he said okay I will try : he try/ed. +C but he could not reach it. +C (and then he) and then the little boy was cry/ing. +C but then the girl lifeguard came. +C and[-:] : she got a net. +C then she try/ed to get it. +C and she did. +C and then the little boy was so happy. +C and then : the little girl said I am sorry (for) : for wreck/ing your toy. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C this story is call/ed : (um) the castle that break/3s. +C one day (there is) there is a little girl and a little boy who is[EW:are] play/ing in the sand. +C and the little girl : builded|build[EW:built] a castle. +C and : the little boy : dump/ed : a bucket. +C he did not mean to dump the bucket (oh) on the castle. +C and then when he did : the girl got all (mad) [~_I_mean] sad. +C and she was cry/ing. +C and : the bunny said sorry. += [Eg:B1] += [Bg:B2] +C this story is call/ed : the picnic. +C one day (a little) (a doggy and) : a dog and a rabbit (was eat/ing) was[EW:were] have/ing a picnic [~_okay]. +C and the rabbit ate too much. +C so he got sick. +C and then the poochy ran over to : a doctor : near by. +C the pooch said help help. +C a little boy is sick! +C so the doctor : check/ed the boy and said (he was si) he had to go home. +C and then he felt better. += [Eg:B2] += [Bg:B3] +C this story is call/ed : the puppy who had two balloon/s. +C one day[-:] (a pup) (his uh) somebody/z friend came over : to check his balloon out. +C and when he did he tie/ed the rope off : (the) : the wagon. +C and when he did the (ba) balloon got away. +C and then the puppy is all[!] mad. +C and then the rabbit saw some more balloon/s. +C and he ask/ed (some) for a balloon. +C but the guy said : balloon/s are five cent/s. +C and : the bunny did not have any money. +C (so) so the bunny said (um) well : I accidentally : lost (one that) my friend/z balloon. +C (and so he) and then the : balloon man said no you still need to pay five cent/s. +C so then the bunny went over to an adult[!] to ask for five cent/s. +C and when he did ask : she said okay. +C and then she paid him five cent/s. +C and then : (the : boy) the girl got (his) (her balloon) (a) another balloon back. +C and then she was all happy. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/test/966.slt b/data/ENNI_SALT/test/966.slt new file mode 100644 index 0000000000000000000000000000000000000000..5bb9348c04fea871e941c215f5896e225a3e0bdc --- /dev/null +++ b/data/ENNI_SALT/test/966.slt @@ -0,0 +1,93 @@ +$ CHI, EXA ++PARTICIPANTS: CHI target_child, EXA examiner ++DOB: 9/17/1991 ++DOE: 3/13/2001 ++CA: 9;5;24 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 966=CHI ++Tape Location: Disk L26 Track 60 += [Bg:A1] +C a donkey thing and an elephant are play/ing with their ball : play/ing basketball. +C (um : the) they shoot it. +C and the ball fall/3s into the pool that they were stand/ing by. +C the donkey go/3s in and get/3s it out of the water. +C he bring/3s it back to the elephant. +C and the elephant is happy. +C the elephant fall/3s in love with him. += [Eg:A1] += [Bg:A2] +C they are go/ing to [~_gonna] go swim/ing. +C the elephant go/3s to run to the diving board. +C she slip/3s and fall/3s and hurt/3s herself. +C she is bleed/ing because she has a cut on her knee. +C (um) : the donkey thing go/3s to get the lifeguard. +C they put a bandaid on. +C she is okay. +C he point/3s to the sign that says no run/ing. +C and she get/3s (um) embarrass/ed. += [Eg:A2] += [Bg:A3] +C (um) they are going to [~_gonna] play with this plane near the swimming pool. +C he is fly/ing around with it. +C and she want/3s a turn. +C (she) so she grab/3s it from him and start/3s play/ing with it. +C it fall/3s into the water. +C and they can not get it out. +C he get/3s mad at the elephant. +C then they call the lifeguard. +C and then the lifeguard : is look/ing at it. +C the lifeguard can not reach it. +C he still try/3s to reach. +C but he still can not reach it. +C it is sink/ing. +C and the (ele) donkey thing is cry/ing. +C and the elephant feel/3s sorry. +C and the lifeguard say/3s he can not do anything. +C then the other lifeguard come/3s with a net. +C and she fish/3s it out with the net. +C and then she give/3s it back to him. +C and he is happy. +C and then they are both happy the two little kid/s. +C and then they play with the airplane again. += [Eg:A3] += [Bg:B1] +C the rabbit and the dog are play/ing in the sand. +C they are build/ing a sandcastle. +C he pour/3s too much sand on the sandcastle. +C he wreck/3s it. += [Eg:B1] += [Bg:B2] +C (um) : the bunny and the dog are go/ing to [~_gonna] go and have a picnic. +C they are have/ing a picnic. +C and he is eat/ing everything. +C he ate all unhealthy stuff and only like a few carrot/s and stuff that is healthy. +C he get/3s sick. +C the dog go/3s to get a medic. +C (the me) the medic (um) help/3s him. +C and he is sick. +C so she is go/ing to [~_gonna] cure him. +C and then : (he take) she take/3s her like to the doctor/z office place. +C and then she is go/ing to [~_gonna] : (um) : make him better. += [Eg:B2] += [Bg:B3] +C (um : the) the dog and the bunny are go/ing to [~_gonna] go and play with their balloon. +C (th) the bunny take/3s the balloon off the wagon. +C he tie/3s it off. +C and then the dog do/3s not want (it) him to. +C it go/3s up in the air. +C and they can not get it. +C the dog get/3s mad at him. +C (uh) they go to buy another balloon. +C they pick one. +C but it is five cent/s. +C (and they do not have any money : sss) and they both do not have any money. +C so they are think/ing what to do. +C (um they so) so they go to their mom. +C and she is go/ing to [~_gonna] give them money. +C (um : she is gonna gi) she is get/ing her money out of her pocket/s to give to them. +C she give/3s it to them. +C and they can buy two balloon/s. +C then they are both happy. += [Eg:B3] diff --git a/data/ENNI_SALT/test/967.slt b/data/ENNI_SALT/test/967.slt new file mode 100644 index 0000000000000000000000000000000000000000..3c9f7f733316b507cb0b64e50d14324c8d930d1c --- /dev/null +++ b/data/ENNI_SALT/test/967.slt @@ -0,0 +1,75 @@ +$ CHI, EXA ++PARTICIPANTS: CHI target_child, EXA examiner ++DOB: 9/12/1991 ++DOE: 4/03/2001 ++CA: 9;6;22 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 967=CHI ++Tape Location: Disk L26 Track 70 += [Bg:A1] +C two friend/s were play/ing with a ball. +C the ball went in the water. +C the guy try/ed to get the ball. +C then (she uh) the boy pass/ed (the) the ball to the elephant. +C and then (they) the boy was in love with her. += [Eg:A1] += [Bg:A2] +C two friend/s : were go/ing for a swim. +C and the elephant want/ed to dive. +C she trip/ed (and) : and hurt her knee. +C the lifeguard came : and put a bandaid on : her. +C and : she was : curious. +C and the lifeguard show/ed her the sign of no run/ing [~_haha]. += [Eg:A2] += [Bg:A3] +C the giraffe brought a[EW:an] airplane. +C he was play/ing with it. +C and the elephant was : get/ing bore/ed. +C then the elephant took it away from the giraffe and start/ed to play with it. +C she accidentally drop/ed it in the water. +C the : person was very mad at her. +C the lifeguard came. +C and the elephant explain/ed to the lifeguard. +C he try/ed to reach it. +C but he could not. +C (the life) (the) the boy was cry/ing. +C then : somebody came in with a net : and reach/ed it and got it out : and pass/ed it to the giraffe. +C and he was happy. +C and so was the elephant. += [Eg:A3] += [Bg:B1] +C one day (uh) a bunny went to the park with his friend. +C she was make/ing his sandcastle with her. +C he dump/ed it all over her sandcastle. +C (and it : uh) : and it blew up [~_laughs]. +C and she was cry/ing[?]. +C (and he did not) and he did not even say anything [~_laughs]. += [Eg:B1] += [Bg:B2] +C (uh) two friend/s went : for a picnic. +C (uh) the one friend ate everything [~_laughs]. +C he was very full. +C he got a stomachache. +C the little girl ran to the nurse : and pull/ed her over to the : boy. +C and she said Merry Christmas. +C and they live/ed happily ever after [~_laughs]. += [Eg:B2] += [Bg:B3] +C two friend/s went to the park. +C and the girl had a balloon. +C (uh) : the boy want/ed to : hold the balloon. +C he untie/ed it. +C and it flew up. +C and then the girl was very mad at him. +C then they saw a balloon person. +C and he ask/ed if he could have a balloon of hubbadubba[?]. +C (uh bl) and the guy said balloons five cent/s. +C and they were very sad. +C then they seen|see[EW:saw] a doctor. +C (and ask/ed :) and the boy ask/ed if : she can buy two balloon/s with five cent/s. +C and : they got the balloon/s. +C and she paid [~_laughs]. +C and they love/ed the balloon/s. += [Eg:B3] diff --git a/data/ENNI_SALT/test/972.slt b/data/ENNI_SALT/test/972.slt new file mode 100644 index 0000000000000000000000000000000000000000..e9fe6169ff03018b87626c81168d3cd55fdcb8a0 --- /dev/null +++ b/data/ENNI_SALT/test/972.slt @@ -0,0 +1,86 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 10/09/1991 ++DOE: 4/18/2001 ++CA: 9;6;9 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 972=CHI ++Tape Location: Disk L27, Track 90 += [Bg:A1] +C [~_okay] there is an elephant and a giraffe bounce/ing a ball have/ing fun with the ball. +C and the ball goes into the water : gets bounce/ed into the water. +C the giraffe go/3s to get it. +C he is : really wet. +C he give/3s it to the elephant. +C and (the elephant) : the elephant is hold/ing it. +C and the giraffe is smile/ing quite a lot. += [Eg:A1] += [Bg:A2] +C [~_okay] the giraffe and the elephant are look/ing to the water. +C and (the : gira) the elephant see/3s a diving board. +C the elephant is run/ing and slip/3s (on the : pavement) [~_or__whatever_it_is] on : the deck [~_or_whatever] and : scrape/3s her knee. +C the giraffe came over. +C and the : lifeguard came over and look/ed at it : and bandage/ed it up. +C and : the elephant sat on a bench. +C and (the) : the lifeguard point/ed at the no run/ing sign. += [Eg:A2] += [Bg:A3] +C the giraffe and the elephant are play/ing with a : (airplane) toy airplane. +C the giraffe is make/ing it go : really high. +C the elephant grab/3s it away and start/3s play/ing with it. +C it go/3s in the water. +C the giraffe is really mad at the elephant. +C and the lifeguard see/3s the toy in the water and : look/3s mad. +C and : the lifeguard and : the : (el) other elephant : are talk/ing. +C and the lifeguard try/3s to reach the airplane. +C but he can not. +C the lifeguard : is kind of shrug/ing his shoulder/s think/ing what can I do ? +C and then another : person come/3s with a net : and get/3s it out for them. +C and the giraffe is really really happy. +C and : the giraffe is hug/ing his toy. += [Eg:A3] += [Bg:B1] +C the bunny and : something else are play/ing. +C I think it is a dog that are[EW:is] play/ing : with sand. +C and the bunny (put) is get/ing some sand out of a pail. +C he dump/3s sand on a sandcastle. +C then the sandcastle is all wreck/ed. +C the bunny feel/3s really bad. +C and : I think it is the dog that is cry/ing. += [Eg:B1] += [Bg:B2] +C the bunny and the : dog I think are go/ing for a picnic. +C (the dog and the) : the bunny is eat/ing too much. +C he has : maybe twenty thing/s. +C he is eat/ing lot/s. +C and : the bunny is really full[!]. +C and the dog is just eat/ing his sandwich and drink/ing juice box. +C and the bunny : is feel/ing dizzy. +C and the dog : think/3s oh I should go get some help! +C so he run/3s to a doctor walk/ing down the road : and pull/3s the doctor over to her friend. +C and the doctor check/3s her friend out : and take/3s (her) the dog/z friend home the rabbit. += [Eg:B2] += [Bg:B3] +C there is the dog and the bunny. +C the bunny is come/ing down : the road : jog/ing. +C (he) and the dog has a wagon with a balloon tie/ed to it. +C the bunny grab/3s the balloon. +C and the dog is kind of [~_kinda] fine with it. +C and : then the dog kind of [~_kinda] (freak/3s out) start/3s freak/ing out. +C and the : bunny : and the dog try/ed to grab it. +C but they can not because it is float/ing up into the air. +C and the dog is really[!] mad at the bunny. +C then (the : do) the bunny go/3s : to the balloon man. +C he ask/3s for a balloon. +C he say/3s five cent/3s for a balloon. +C and the bunny has no money. +C so (the) the little bunny look/3s at the : balloon man very innocently : and then go/3s to (his) (the doctor) his dad [~_or_whatever] (and) : [~_I_do_n(o)t_know]. +C I just see him go/ing to his dad or : the doctor. +C he ask/3s for money. +C and : (he) [~_yeah] he ask/3s for some money. +C and his dad pay/3s : the balloon man for two balloon/s. +C and : (I) : I think the little bunny/z dad : feel/3s really good. +C and so do the rest of them. += [Eg:B3] diff --git a/data/ENNI_SALT/train/401.slt b/data/ENNI_SALT/train/401.slt new file mode 100644 index 0000000000000000000000000000000000000000..0e21219e47016171371e76cec8052ef60d8f5f06 --- /dev/null +++ b/data/ENNI_SALT/train/401.slt @@ -0,0 +1,141 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 4/1/1995 ++DOE: 2/03/2000 ++CA: 4;10;2 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 401=CHI ++Tape Location: Disk L1 Track 1 += [Bg:a1] +C (um) a[EW:an] elephant (s) (was) was play/ing ball/s [EU]. +C And a giraffe is there too. +C And then one of the ball/s (are) is in the water. +C And they want to get it. +C And then the horse jump/ed in the water and swam to it. +C And then (what um) (the hor) the (gir) horse got it and gave it to (um) the elephant. +C And then (um) the elephant look/3s like a girlfriend. +C And the horse (r) (r) look/3s like a boyfriend to me. +=C And that is the end [+_bch]. += [Eg:a1] += [Bg:a2] +C (um) there is a sign that said no run/ing. +C and the elephant : want/ed to go on the jumping board. +C and : he start/ed to run. +C and then (he s) he said let us go there. +C and then giraffe said : (um) there is a sign that say/3s no run/ing. +C (co) oh come on. +C and then she runned|run[EW:ran]. +C and she was afraid that she will hurt herself [EU]. +C but the (gira) the horse was try/ing to catch up to her : and help. +C and then she start/ed to cry. +C and : the guard came and put a bandaids[EW:bandaid] on her. +C and then : it hurt a little bit. +C and he said : that will fix it up a little. +C and (then she) then he said see that said no run/ing. +C and the giraffe was right. +=C the end [+_bch]. += [Eg:a2] += [Bg:a3] +C (um) The giraffe : that had a[EW:an] airplane [EU]. +C And (he) that elephant said can I play with it in the water. +C (And he said :) he was think/ing about it. +C Then he said yes. +C And he thought it will not sink. +C But it did[!] sink. +C And then (the uh) the (gira) giraffe play/ed with it : right there : in his spot. +C And then (um the) the elephant was crazy. +=C Turn the page [+_bch]. +E Okay. +C And then (the el) the elephant had it. +C And (he put) the elephant put it in : the water. +C And it sinked|sink[EW:sunk]. +C And : giraffe : did not know what he can do because the giraffe did not like go/ing in that water. +C And then he was (ang :) mad at the : elephant. +C And then the guard came. +C And : the guard was try/ing to reach it. +C Then he said : what is wrong with this? +C And then the elephant told him (um) like : giraffe gave me that. +C And then (: um) I put it in the water she said. +C And then the guard try/ed to reach it. +C And then : (the) the giraffe was sad. +C And then : (um) another elephant came and hadded|has[EW:had] a net. +C And (he) she caught it. +C And : the giraffe was not sad any more. +C And : they were happy : now. +C (and then the) and then the elephant say/3s good job (to) to that big elephant. +C And then giraffe was happy : again. += [Eg:a3] += [Bg:b1] +C Once there was a rabbit and a dog. +C And the dog was build/ing a sandcastle : with the bunny. +C And the bunny said hmm maybe that is a little too big for us. +C And then (the) the dog said no way! +C And then : they made it a little bit bigger than that : and then : a little bit bigger. +C (And this) (the dog was a little bit : too) and it was a little bit too[!] big. +C The bunny said is this all right? +C (um) okay : I think it is okay : the dog said. +C And then the castle was broked|broke[EW:broken]. +C And : the dog hadded|has[EW:had] to built[EW:build] it all over again. +C And the dog was sad. +=C And that is the end [+_bch]. += [Eg:b1] += [Bg:b2] +C once there was a dog : look/ing for some berry/s. +C and the bunny was look/ing for some carrot/s. +C and he hop/ed along by beautiful butterfly/s. +=C because brother : I saw the butterfly was jump/ing on his back one time at the summer [+_bch]. +C then they hadded|has[EW:had] a picnic with the food they found. +C and then they were almost all done. +C and then they were already done. +C and then the bunny was sick. +C and the dog look/ed at him. +C and he thinked|think[EW:thought] he was[!] sick. +C and then : he bump/ed his head (on the) (on the ta) on the picnic table at the forest [EU]. +C and (da) then (the) a doctor was come/ing by. +C and he said doctor, doctor : that guy ate too much food. +C and then the doctor said hmm maybe I should go over there. +C and then he went over there. +C and he said see? +C not (do) too bad the doctor said. +C and then he feeled|feel[EW:felt] his head. +C and he tap/ed it. +C and then : (his) (he) he tap/ed it. +C and he said aw. +C and the doctor said : say aw. +C and then bunny (this) (put) bump/ed his head on the picnic table again. +C and then he was better. +=C that is the end [+_bch]. += [Eg:b2] += [Bg:b3] +C (um) the dog was carry/ing a balloon. +C and the bunny said : can I : see it. +C (And then he was h) and then the dog said yes. +C and he (talked) walk/ed toward/3s it. +C and he accidentally pop/ed it. +C and then (he) he cry/ed. +C and then (the) : (the) they hadded|has[EW:had] to get a new balloon : at their home. +C but they did not know which way was their home. +C and it float/ed up in the sky when they got the other balloon. +C and then : the dog was angry at the bunny. +C and then there is a balloon seller : guy. +C and then they went towards him. +C and he choosed|choose[EW:chose] another balloon. +C and then he said : it is five dollar/s. +C and then the bunny : open/ed up his pocket. +C and : he had no money. +C and : that guy said : do you have money? +C (dog said) and the dog said (um) only (a um) a quarter. +C good then you can have a balloon. +C and your friend can. +C so they both had a balloon. +C and then the doctor came along. +C (and he said : um can we) and then the doctor said which beautiful color/s balloon/s [EU]? +C and then he took (um) all of the balloon/s. +C and the kid/s were sad. +C and then : he buyed|buy[EW:bought] some for the kid/s. +C and he buyed|buy[EW:bought] some for the other kid/s at the doctor [EU]. +C and then they both play/ed with them. +=C that is the end [+_bch]. += [Eg:b3] diff --git a/data/ENNI_SALT/train/402.slt b/data/ENNI_SALT/train/402.slt new file mode 100644 index 0000000000000000000000000000000000000000..6ad0a7d95f5d7993a36b7c59ce3843135a240198 --- /dev/null +++ b/data/ENNI_SALT/train/402.slt @@ -0,0 +1,144 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 7/5/1995 ++DOE: 3/24/2000 ++CA: 4;8;19 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 402=CHI ++Tape Location: Disk M1 Track 10 += [Bg:a1] +C that is a[EW:an] elephant. +C and that is a cow. +E that is what? +=C a cow [+_bch]. +C that is *an elephant [EU]. +C and then that is a cow : again. +C a[EW:an] elephant and a cow. +E oh you want/ed to turn the page/s sorry. +E tell me the story. +C (that) that guy fell in the mud. +C and this girl (pick/ed her up) (pick up) pick/ed him up : elephant [EU]. +C and he was very mad at her. += [Eg:a1] += [Bg:a2] +=C they were go/ing to [:_gonna] go in the pool right [+_bch]? +E can you say that louder so I can hear better? +C (th) they were go/ing to go in the pool[-:]. +E oh okay remember I can not see the picture/s so you have to tell me so I can hear it. +C (um) she : was go/ing to [:_gonna] hurt herself : when she went. +C : and she hurt herself. +E : what is happen/ing in that picture? +=C she hurt herself [+_bch]. +C she got a scratch. +C : and then that guy came. +C (and) : and then she had a bandaid on. +E : what is happen/ing on this one now? +C (hm) : they : were happy. +E oh okay. +C this guy is mad. +C he is. +E is that the end? +=C yup [+_bch]. += [Eg:a2] += [Bg:a3] +C he had the airplane. +C and it was his. +C and this guy : got it all tangle/ed. +C and the girl had it now. +C (and : now the girl :) [~_EXA:_what_(i)s_that_I_did_n(o)t_hear] then the girl drop/ed it in there. +E okay. +C she drop/ed it in there. +C and this guy was mad. +C : (now they were both) now they were both mad. +C : and that[!] girl [EU]. +=C lot/s of page/s [+_bch]. +E yeah yeah but on this page can you tell me what is happen/ing because I can not see. +C (um) the girl is mad. +C and now that guy was go/ing to reach it. +C and he could not. +C : and then this guy was cry/ing. +C and this girl xxx. +C yes she did. +C : and (this girl xxx) [~_EXA:_what_is_that] this girl was go/ing to catch it. +C and she caught[!] it. +E oh okay, and on this page what is happen/ing? +=C she caught[!] it [+_bch]. +C : then she gave it to him. +C : (then : he) then she was happy. += [Eg:a3] += [Bg:b1] +C he : and him[EW:he] builded|build[EW:built] a castle. +C : and then that guy was go/ing to [:_gonna] build a really high [+..] [EU]. +C and then it spill/ed all over. +C and then : it was broken! +C and he was mad. +C it was all his fault. +C he did it. +E what did you say what did you say honey? +C this guy was : sad. +C and : (that guy : was not happy) [~_no] (this guy) that guy was cry/ing. += [Eg:b1] += [Bg:b2] +C that guy was run/ing. +=C [~!_whispers] he was [+_bch]. +C and then : that guy was go/ing [~_sticking_tongue__out]. +=C [~!_whispers] he was [+_bch]. +E can you say that louder? +C he was go/ing like [~_sticks_out_tongue] the bunny was. +E oh stick/ing his tongue out. +=C yeah stick/ing his tongue out [+_bch]. +C : now he sat down. +C like he went like this [~_shaking_head]. +C : and that guy was [~_shakes_head]. +E shak/ing his head? +=C umhm [+_bch]. +C that guy ran to him. +E what was that? +=C that guy ran to him [+_bch]. +C then (he) did he XXX. +E he did what? +C (this guy) (this guy pull/ed him) this guy pull/ed him. +C (um) now this guy was go/ing [~_shaking_head] again. +E shaking his head again? +=C yeah [+_bch]. +C now that guy was in the sand[?]. +C and then (that guy) this guy (b) walk/ed with him. += [Eg:b2] += [Bg:b3] +C that guy was run/ing again. +=C this guy was [+_bch]. +=C no that guy was [+_bch]. +C (that guy was) that bunny was go/ing to [:_gonna] take that balloon! +C then he got it. +C and he untie/ed it. +E can you talk louder so I can hear? +=C he untied it [+_bch]! +C and it flew away. +=C and it should not do that [+_bch]. +E what? +C that bunny should not do that. +E oh, she did/n't do that, okay. +=C he did not : do it [+_bch]. +C and then that[!] guy : was really mad. +C and then : that guy saw that guy. +C and he had : more balloon/s. +C : then this guy ran up to him. +C then he was go/ing to [:_gonna] get a balloon. +E did you tell me about this page? +C this guy (was) ran up to him[?]. +C he got a balloon! +C then this guy was very sad. +C : then : this guy : got it. +E this guy what? +=C this guy [+_bch]! +E yeah what did you say? +=C this guy was here [+_bch]! +C then (that guy : said) (he went over) : this guy said over there! +E what? +=C this guy said over there [+_bch]. +C and then (this) these two got a balloon. +C then this guy : (ha) sticked|stick[EW:stuck] his teeth out [~_exaggerated_grin]. +E oh like a big grin. += [Eg:b3] diff --git a/data/ENNI_SALT/train/403.slt b/data/ENNI_SALT/train/403.slt new file mode 100644 index 0000000000000000000000000000000000000000..f9848cc31bd99248afebf536a5925598772f19d8 --- /dev/null +++ b/data/ENNI_SALT/train/403.slt @@ -0,0 +1,100 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 11/03/1995 ++DOE: 2/03/2000 ++CA: 4;3;0 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 403=CHI ++Tape Location: Disk L1 Track 16 += [Bg:a1] +C (uh) there is an elephant . +C (And there is a) and there is a giraffe . +C the elephant and the giraffe look/ed at a (sss) stone . +C but (they) they thought it was a balloon . +C (Then they were) (and) (and) and they were swim/ing for it . +C (And) (and then he got) and then the elephant got it . +C and they are play/ing soccer with it . +=C The end [+_bch] . += [Eg:a1] += [Bg:a2] +C (They are go/ing) they are go/ing to swim in there. +C But they have to jump from the diving board. +C (She go/3s first) the elephant go/3s first. +C And (then) then they were xxx whos[EW:who] go/3s first [EU]. +C And (they) the giraffe was go/ing to go first. +C And then the elephant goed|go[EW:went] ahead of him . +C (Then he) then he was race/ing : to get the elephant (to go) to jump in the dive/ing board [EU]. +C (then) Then she hurt her knee. +C Then give/ing her a bandaid : [EU]. +E [~_LONG_PAUSE] Then what happen/ed ? +C (uh uh) She was cry/ing. +C She bringed|bring[EW:brought] her : to : the giraffe. +C he was go/ing to hug her. +C And (then) (then) then she had a time out. +C And she was run/ing on the deck. +C that is not allow/ed. +C And she was go/ing to go on a time out [EU]. +=C The end [+_bch]. += [Eg:a2] += [Bg:a3] +C (uh) they told[EW:asked] question/s. +C (They found a elephant in his pock uh) they found (a) a plane in his pocket. +C And then the elephant grab/ed it : without say/ing please. +C (and then she was go/ing throw) (She throwed|throw[EW:threw] the) (i) (she) it slip/ed out of her hand. +C And it goed|go[EW:went] in the water. +C And it was sink/ing. +C (then) (then the) then the man it[EW:he] was go/ing to swim. +C He said why is that airplane in the pool? +C (she said) (i) and it slip/ed out of his hand she said [EU]. +C (then sh) (and then) (and then she thought) : she was try/ing to get it . +C But he was go/ing to fall in the water . +C Then he was (too scare/ed) too[?] scare/ed. +C Then he was go/ing to catch it. +C The girl : and mommy : [EU]. +E What do you see ? +C (uh) She caught it. +E : And then what happen/ed ? +C She gave it to him . +C Then they were happy. +E They were happy ? +=C The end [+_BCH]. += [Eg:a3] += [Bg:b1] +C (uh) the bunny rabbit/s are dig/ing. +C (the) (the bunny) the bunny/s are make/ing a sandcastle. +C they are dump/ing it on. +C and he : no no [EU]! +C (hm) they are make/ing a new castle. +=C The end [+_bch]. += [Eg:b1] += [Bg:b2] +C they are go/ing on a walk. +C they are eat/ing too much[EW:many] thing/s. +C he has a stomachache. +C (hmm) his eye/s are flutter/ing. +C they are have/ing to work. +C he is hold/ing his hand. +C (he) (he) now he[!] has a stomachache. +C (uh) the little boy is go/ing home. +=C The end [+_bch]. += [Eg:b2] += [Bg:b3] +C (they are) (they are) (they are pull/ing this) they are pull/ing the wagon. +E they are pull/ing the wagon? +C (They were) they found a balloon. +C they tie/ed it on the wagon. +C it flied|fly[EW:flew] away. +C and they were really mad. +C (then) then the man comed|come[EW:came] : with balloon/s. +C he point/ed which one he want/ed [EU]. +C but he had a stomachache. +C here come/3s another one. +C and he said do you[!] want a balloon? +C (he) and he runned|run[EW:ran] back. +C (um) he telled|tell[EW:told] him what was wrong. +C (then) (and then) and then : they said we want a balloon. +C (and he) and then they had a balloon. +=C The end [+_bch]. += [Eg:b3] \ No newline at end of file diff --git a/data/ENNI_SALT/train/404.slt b/data/ENNI_SALT/train/404.slt new file mode 100644 index 0000000000000000000000000000000000000000..db522e97c1290c7c8015b7b47d68e0b67c320de2 --- /dev/null +++ b/data/ENNI_SALT/train/404.slt @@ -0,0 +1,110 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 7/5/1995 ++DOE: 3/24/2000 ++CA: 4;8;19 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 404=CHI ++Tape Location: Disk M1 Track 22 += [Bg:A1] +=C one is doing a ball bounce [EU]. +C : one threw the ball in the sand. +C it got stuck. +C one is dig/ing in : to get the ball. +C (one) the elephant is go/ing to help the giraffe. +C [~_whee_sound] one is cry/ing. += [Eg:A1] += [Bg:A2] +C they are go/ing to jump in the water. +C (w) : one is run/ing. +C : (one is[-:] slip/ing) : one is slip/ing. +C (one hurt : the bandy) one hurt her knee. +C one[-:] has to get a bandy [~_bandaid] on. +=C [~_makes_noises_and_gestures] like that [+_bch]. +E tell me in words. +C the elephant/z eye is like [~_makes_noise_/s/_and_closes_eye]. +E like close/ed? +=C uhhuh [+_bch]. +C she is sit/ing on a bench (with a bandy) : [~_EXA:_with_a_what] with a bandy on. +C she/z[EW:her] face is like [~_makes_face]. +E like smile/ing? +E okay, thank you. += [Eg:A2] += [Bg:A3] +C (one) the giraffe has a[EW:an] airplane. +C : he is go/ing to fly it. +C : the elephant is go/ing to bite it :. +E go/ing what? +=C to bite it [+_bch]. +C [~_ooh_sound] it got stuck in the sand. +C got stuck in the sand still. +C still[!] stuck in the sand. +C still[!] stuck in the sand. +C still stuck in the sand. +C still : stuck in the sand. +C still stuck in the (haa) [~_oooh_sound] sand [~_laughs]. +C the elephant is go/ing to pull it out. +C and the elephant got[!] it out. +C the elephant gave it to the giraffe. +C very nice. +E very nice! +=C uhhm [+_bch]. +E what was very nice? +=C the elephant gave the airplane back [+_bch]. += [Eg:A3] += [Bg:B1] +C one is dig/ing. +C dig/ing again [EU]. +C one : pour/ed sand on : the castle. +C one was[-:] : sad. +C one is[-:] kind of [:_kinda] happy. += [Eg:B1] += [Bg:B2] +C they are walk/ing with food. +C eat/ing [EU]. +C the bunny is [+..] [EU]. +=C sometime/s (a little) I am a little shy [+_bch]. +E oh you are a little shy. +C this one is sleepy. +C he has a big tummy [~_makes_'eeee'_sound]. +E a big what? +=C tummy [+_bch]. +E I can/'t hear. +=C just like this [+_bch]. +C [~_makes_'ooh'_sound,_makes_sniffing_sounds] :. +E tell me so I know what the story is. +C one has a dress on. +C : one man has glass/s on. +C one[-:] sticked|stick[EW:stuck] his tongue out. +C [~_makes_'ooooh'_sound] gross. +C [~_makes_'oooh'_sound] one is walk/ing. += [Eg:B2] += [Bg:B3] +C they have a balloon tie/ed on to the wagon. +E on to the what? +=C wagon tied on [+_bch] [EU]. +E oh the wagon is that what you said? +C they still have it tie/ed on. +C : one sticked|stick[EW:stuck] his tongue out. +C gross. +C (one) : the balloon is fly/ing away. +C : one is cry/ing. +C they found balloon/s. +E what is that? +=C they found balloon/s [+_bch]. +C and one is go/ing to grab one. +C :[~!_growly_voice] he got mad[-:]. +E what? +=C he got mad [+_bch]. +C they all pop/ed out [EU]. +C (there[-:]) one got caught. +C : they are leave/ing. +C : one is smile/ing. +C : (mm) shy [EU]. +=C oh [+_bch]. +E are you talk/ing about yourself or the picture? +=C talk/ing about the (sh) picture [+_bch]. +=C one is shy on the picture [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/406.slt b/data/ENNI_SALT/train/406.slt new file mode 100644 index 0000000000000000000000000000000000000000..c75bbea63f0781da46982f428834ae9cfb828566 --- /dev/null +++ b/data/ENNI_SALT/train/406.slt @@ -0,0 +1,119 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 7/16/1995 ++DOE: 3/2/2000 ++CA: 4;7;16 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 406=CHI ++Tape Location: Disk M1 Track 33 += [Bg:A1] +C now he is go/ing to say aah no(*7). +C I am not go/ing *to take those balls : home : to his raygie[c] [~_/regi/] [EU]. +E what ? +=C raygie[c] [~_/regi/] [+_bch]. +C that day that[EW:the] balls got stuck. +C and he said oh(*2). +C and the lady call/ed away and said ah I am going to get that ball. +C (um) and they said uhoh the choochoo train is coming. +C : that way he swimmed|swim[EW:swam] to the ball. +C and now (he said) : oh he cry/ed and cry/ed and cry/ed. +C (um) : now he help/ed him to get that ball. +C and then now he help/ed to get him up. +C and he could not get up : now. +C now he get[EW:got] the ball. +C and he was so excited. +C but : he was always day long [EU]. +E he was what what ? +=C always day long [+_bch]. += [Eg:A1] += [Bg:A2] +C once upon a time there was a little girl : walk/ing down the street. +C and there was[EW:were] bridge/s all[-:] over the (p) car. +C now he said go in there. +C go in there. +C he said [~_aaah_sound] no(*3) I am not go/ing in there. +C so he ran to the room and got dress/ed (and goed) and got[EW:went] there again. +C : said ow(*15) [EU]. +C he said I will get you a bandaid. +E said what? +=C I will get you a bandaid [+_bch]. +C so (that day) (that day was always) he put a bandaid on him. +C and now : he said ow that still hurt/3s. +C that still hurt/3s. +C now he said : you have to go and sit down. +C : (now they are go/ing to) : (now you get there) and I will get you there (all) all the time [EU]. += [Eg:A2] += [Bg:A3] +C that day that one he said aah that one die/ed. +C I am go/ing to : that one. +C I got the airplane now. +C it is not go/ing far away now. +C so please*3 I will get the airplane. +C no I will fight with the airplane. +C : so all the day (his long) it always day [EU]. +C so[-:] he was start/ed to be (eh) always day or long [EU]. +C so that day he paint/ed his nails. +C and he : threw him back to the car and : got his car[-:] . +C so he : said uhoh there is[EW:are] two elephant/s and one giraffe. +C now I am go/ing to be no(*3) [EU]. +C I am go/ing to be this uhoh oh [EU]. +C (so no I think) so not go/ing to do it anymore because it is my page [EU]. +C I am not go/ing to. +C so he stand[EW:stood] (to tay) to say goodbye. +C and he was always there for awhile. +C so (he was start to be) he was start/ing get/ing that [EU]. +C and he saw it and get[EW:got] it. +C and he was done xx. +C so he put the airplane in there. +C and he got him : all the day [EU]. +C : so please : I will not help you. +C please(*2) I will not. += [Eg:A3] += [Bg:B1] +C that little day he[-:][!] was always inside it [EU]. +C please do not do that. +C always[-:] do everything what I want to[:_wanna] do [EU]. +C so I want to do please please [~_repeated_for_emphasis] all my xx [EU]. +C please I do not want you. +C ah yes I want [EU]. +C okay I will be that. +C that way he was always do/ing those [EU]. +C so he was always do/ing the second page second page and second page [EU]. += [Eg:B1] += [Bg:B2] +C that day he was : try/ing to go to the picnic. +C that day he was go/ing to ride a picnic [EU]. +C that day he will have in a mess [EU]. +C that day he clean/ed it all up. +C that day he droom back to the car [EU]. +C that day he help/ed him up. +C that day he slam/ed right down again. +C that day : he got[EW:has] a mess again. +E he did what? +=C got a mess now [+_bch]. += [Eg:B2] += [Bg:B3] +C that day he was : get/ing the wagon. +E get/ing the what? +=C get/ing the wagon [+_bch]. +C that day he zoom/ed back. +E did what? +=C get zoom back [+_bch]. +C that day he got dress/ed. +C that day he reach/ed for the balloon (but). +E reach/ed for what? +=C he reach/ed for the balloon [+_bch]. +C that day he broke off the string. +C that day he zoom/ed back : to this thing. +C that day he (gr) gived|give[EW:gave] them more balloon/s. += %com: microphone falls off, CHI comments off-topic; EXA returns CHI to task +C now he pop/ed all the balloon/s. +C (now he got his) now he got his (um) balloon back. +C now he did not want him any more. +C and he said I want them please. +C and he give[EW:gave] them back. +C (and that is) : and that day (he) (he got) they all got excit/ed. +C so they had them [EU]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/407.slt b/data/ENNI_SALT/train/407.slt new file mode 100644 index 0000000000000000000000000000000000000000..6e4c178dbc036e2ee16587431e66c87b30ce17c6 --- /dev/null +++ b/data/ENNI_SALT/train/407.slt @@ -0,0 +1,89 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 11/21/1995 ++CA: 4;2;18 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 407=CHI ++Tape Location: Disk L1 Track 30 += [Bg:A1] +C They are looking at ball/s. +C And now there is this one. +C And now it roll/ed off. +C (And it) and the cow is come/ing to get it. +E The what is? +=C The cow [+_bch]. +E oh yeah. +C And he caught it. +C And they were happy again. += [Eg:A1] += [Bg:A2] +C They are go/ing swim/ing. +C And it is a deep pool. +C And now they are go/ing to jump right now. +C So they did. +C And they got hurt. +C They should not have ran. +C And now another elephant is there. +C And it is take/ing it to the bench and put a bandaid on it. +C She had to stay there. +E Anything else ? +E Okay, super. += [Eg:A2] += [Bg:A3] +C They are go/ing to fly a[EW:an] airplane over the water. +C (And he lif) and the cow lift[EW:lift/ed] it up. += %COM: the cow = giraffe in A1 +C (and the :) and (the) and the elephant grab/ed it. +C And it land/ed : kaboom[!] in the water. +C Now they are angry. +C And the lifeguard came : and said do not do that. +C And then he try/ed : go there [EU]. +C But he could not. +C And then it was xxx. +C Then : (an) (an) another lifeguard : came with a net : in his hand. +C And he took (the) the net and put it in the water : and got the airplane. +C And then they were happy. +C And now they had the airplane [EU]. += %COM: this 'they' is different than 'they' in previous utterance += [Eg:A3] += [Bg:B1] +C they are dig/ing : and make/ing a sandbox. +C they are : mix/ing up sand. +C now they are dump/ing it on a sandcastle. +C now the sandcastle is all broken. +C and now they are fix/ing it up again. += [Eg:B1] += [Bg:B2] +C they are chop/ing. +C they are have/ing a picnic now. +C now it is all done. +C now : they have a stomachache. +C : now they are : go/ing to the doctor. +C and now they are pull/ing the doctor over there[~!_whispers]. +C and now the doctor is look/ing. +C and now the doctor is take/ing her. += [Eg:B2] += [Bg:B3] +C now they are : pull/ing a wagon. +C now they are not. +C there is a balloon on the wagon. +C now : they are untie/ing it. +C : and it is fly/ing away. +C and now they are angry. +C but they are go/ing to[:_gonna] buy a new one. +C and they did. +C and he was mean. +C he did not let them have one. +C now they are run/ing off to another [EU]. +E to where? +E (Oh) What are you pointing at? +E can you tell me what it is? +=C a rabbit [+_bch]. +E (Oh) okay. +C (and) and another rabbit : is do/ing that. +C (another rabbit) and there was (a nus) [~_I_mean] a bone. +C (and a) (and) and this rabbit [~_pointing] : made him get[!] a balloon[?] [~_pronounced_/babon/]. +C they got their own. += [Eg:B3] diff --git a/data/ENNI_SALT/train/408.slt b/data/ENNI_SALT/train/408.slt new file mode 100644 index 0000000000000000000000000000000000000000..570253bdc8ce77396399c0db75878a4321855b78 --- /dev/null +++ b/data/ENNI_SALT/train/408.slt @@ -0,0 +1,95 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 10/1/1995 ++DOE: 3/2/2000 ++CA: 4;5;1 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 408=CHI ++Tape Location: Disk M1 Track 43 += [Bg:A1] +C (um a) : an elephant and : a (l) zebra [EU]. +C a[EW:an] elephant and a zebra xxx a balloon. +C and then he throwed|throw[EW:threw] it in the water and try/ed to get it. +C and then the elephant was get/ing it. +C : and then the elephant got it : gave it to him. +C : and then he say|say[EW:said] please. +C and then : (he) he gave it to him. += [Eg:A1] += [Bg:A2] +C and then they want/ed to go swim[EW:swimming] together. +C and then come on let us go swim/ing. +C that might be a good idea. +C and then : they were run/ing. +C and then they were go/ing to get through to (um) eat : to have a picnic. +C and then she hurt her leg [~_sad_voice]. +C : (and then : the brother camed) (and then) [~_EXA:_and__what] and then (the b) (the other b) the boy elephant (ca) came. +C and then : he cry/ed okay I will get a bandaid. +C and then she had a bandaid. +C that/z a little bit better now. +C and then : you *have got to[:_gotta] sit [EU]. +C and then : if it feel/3s better you can walk. += [Eg:A2] += [Bg:A3] +C and then both of them (um um) fly the airplane. +C I hope it does not fall in the water[-:] . +C (if it falls in) and then he was go/ing to[:_gonna] do it :. +C and then : she taked|take[EW:took] it away from his hand (to her) for her to fly it. +C and then : it cross/ed : in : the : water [EU]. +C and then : it is your fault [~_said_with_emphasis]! +C you did it! +C (xxx) what is the matter with : you guy/s? +C and then (um) he (um um) xx them the airplane in the water [EU]. +C I will try to get it. +C : and then he was try/ing to get it. +C and then he could not reach. +C and then : (he) they were very cry/ing [EU]. +C and then : I[!] will try to catch it with that[!]. +C how ? +C and she caught it. +C : there you go. +C thank you. +C : and then : thank you very much. +C I want you to undo that xx again. += [Eg:A3] += [Bg:B1] +C which one of you build|build[EW:built] a castle? +C to put in sand in there : people [EU]. +C and to put in some more sand on there [EU]. +C and then it *was wreck/ed [EU]. +C and then he is go/ing to[:_gonna] put it back up. +C and then he was : sad. += [Eg:B1] += [Bg:B2] +C they are go/ing to have a picnic. +C : (they are go) they are eat/ing lunch. +C : and then he is full. +E and then he what? +=C and then the rabbit is full [+_bch]. +C : and then he has a stomyache[c]. +C and then : the mailman was bunny rabbit [EU]. +C and then (could we) you *have got to[:_gotta] come with me [EU]. +C and then : cry/ing [EU]. +C and then : you had a picnic. +C and you had a stomyache[c]. += [Eg:B2] += [Bg:B3] +C a balloon [EU]. +C : and : it is go/ing away. +C : and then he is put/ing it back on. +C and then : the balloon is up the sky. +C and then : the puppy is (ba uhm) mad. +C (the bunny rabbit) [~_EXA:_What] the puppy is mad because (um) he did not (um) have his balloon back. +C and then he had the other balloon. +C and then : can we have one? +C just one. +C and one for you and one for him. +C and then : : if you fight no more balloons. +C and then he is happy. +C and then : there is every (bau) balloon [EU]. +E there is what? +=C there is every balloon[-:] [+_bch] [EU]. +C and then : there is[EW:are] two left. +C and then : they both had their own[!] balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/409.slt b/data/ENNI_SALT/train/409.slt new file mode 100644 index 0000000000000000000000000000000000000000..f3417b6f1fdecbe8e7d986091fd83ce56dae7385 --- /dev/null +++ b/data/ENNI_SALT/train/409.slt @@ -0,0 +1,87 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 4/29/1995 ++DOE: 3/1/2000 ++CA: 4;10;1 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 409=CHI ++Tape Location: Disk L2 Track 16 += [Bg:A1] +C There is an elephant and a : horse. +C And they see a big bubble : in the swimming pool. +C (um) he is go/ing to pop it, the horse. +C (it was a ball I think) it was a ball. +E He what? +=C It was a ball [+_bch]. +E Okay. +C (um :) elephant was happy. += [Eg:A1] += [Bg:A2] +C A horse is (um) go/ing to jump into the pool. +C But the elephant was go/ing to jump off the edge. +C But he slip/ed. +C He got an owie. +C (uh) the [~_?] horse came. +C And the other (um) elephant came. +C And : they sit[EW:sat] on a bench. +C And (they) : (and the ele) (um elephant) no run/ing on the sign. +C There is a sign [~_whispers]. += [Eg:A2] += [Bg:A3] +C The horse (um : uhh : is) has a[EW:an] airplane in his hand. +C And he is fly/ing it. +C And elephant took it from his hand. +C And it fell in the water. +C And the horse was mad. +C And (it was floa) (it was come/ing) it was float/ing. +C and[-:] (uhh) : it was sink/ing. +C The boy was try/ing to reach it. +C But he could not. +C (And he) and then the girl (um) got (a) a net. +C (And he) (and she uhm : got it) : and she got it. +C And she gave it back. +C and then he was happy. += [Eg:A3] += [Bg:B1] +C (um) they are build/ing (a sandcastle) a sandcastle. +C the bunny and[!] the dog are still build/ing it. +C they are go/ing to[:_gonna] (um) put a pail on it. +C and it broke. +C and : the dog was cry/ing. +=C that is short [+_bch]. += [Eg:B1] += [Bg:B2] +C (um) they are go/ing to pick some : [~_I_don't_know]. +E Pardon me? +=C I don't know what they are go/ing to pick [+_bch]. +E okay. +E should I turn? +C (they picked) they pick/ed (um) a sandwich and all kinds of stuff. +C (and they) (and the boy) and the bunny was full. +C and[-:] he[-:] : was dizzy. +C (And) : (and the bunny um was um : um) and (his mom) the doctor was come/ing. +C and[-:] the dog was pull/ing her. +C and : she was go/ing to[:_gonna] (check her) : check him : the bunny. +C and they were go/ing back home. += [Eg:B2] += [Bg:B3] +C (um) they are (pull/ing a balloon onto a) (a little) [~_interruption_of_someone_coming_in_room] [~_EXA_oh_go_ahead] pull/ing a balloon on (a) : a little thingy. +E on what? +=C a little thingy [+_bch]. +E okay a little thingy. +C and : it is get/ing smaller. +C (um) actually it was (um) get/ing undone [EU]. +C but it (um) float/ed up to the sky. +C and the dog was very mad. +C and : a guy was bring/ing lots of balloon/s. +C and they pick/ed one. +C and they : got number five. +C and : it float/ed up again. +C and : then it just came again [EU]. +C and then (um) the bunny said (to the) just wugwug[c] [EU]. +C this guy has a lot of balloon/s. +C and she got one. +C (and she) and they (got one) both got one each. += [Eg:B3] diff --git a/data/ENNI_SALT/train/411.slt b/data/ENNI_SALT/train/411.slt new file mode 100644 index 0000000000000000000000000000000000000000..36addc0b5af511bd9e03a3fa00a0db12616689f2 --- /dev/null +++ b/data/ENNI_SALT/train/411.slt @@ -0,0 +1,119 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 8/23/1995 ++DOE: 3/14/2000 ++CA: 4;6;20 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 411=CHI ++Tape Location: Disk L2 Track 33 += [Bg:A1] +C The piggy (and) and the brother and the sister was[EW:were] try/ing to play : a circus. +C And they got mad. +=C I went to a circus [+_bch]. +E Did you ? +E You can tell me after the story all about it, okay ? +=C okay [+_bch]. +C And (then : they) then he just want/ed (to) : to do something funner [EU]. +C They went to : (a) a beach without the mommy. +C And that is bad because the mommy died and all their family. +C So they : have to do everything. +C They had to. +C And then : he : swimmed|swim[EW:swam] in the water to get his balloon. +C And then he got (his) (his) her ball. +C And she said thank you[!]. +=C All done [+_bch]. += [Eg:A1] += [Bg:A2] +=C we read this one [+_bch]. +E Is it the same? +E It will be different. +E You tell me what you see happen/ing. +C and then they had to do something else. +C (her) (her purse) her purse drop/ed into (the) the lake. +C it was way down on the bottom. +C (And then they) and then they rush/ed into the water : and jump/ed right into the water. +C and then she bonk/ed her knee (on the) on the side wall. +C and then she cry/ed for (her) her daddy. +C and then her daddy come/3s along (and) and put[EW:puts] a bandaids[EW:bandaid] on it. +C (and then) and then that was pretty xx. +C but (they had) she had to got[EW:go] to the hospital. +C and then (she) (she) her daddy said no more play/ing at the park. += [Eg:A2] += [Bg:A3] +C (They) her knee almost bump/ed [EU]. +C but she got up. +C and she did not have a owee, only on her nose[?]. +C and : the daddy did not come because : he was angry last time. +C (and then) : and then : she found the airplane that was : her little brother/z. +C she took it out of his hand. +C the brother said (look) look what you just did. +C he was angry at his sister. +C and then : it sinked|sink[EW:sunk] into the water. +C down below it comed [EU]. +C and then they could not get it because it was too deep. +C the daddy could not get it because it was too deep too. +C Daddy try/ed to reach it. +C but : he could not. +C (the daddy : said : why) (why : does) (the) (the sist) the daddy said why did you do that sister? +C (h) why did you do that to your little brother? +C and then (he[!] tried) she[!] try/ed to catch it with the net. +C and then she almost got it. +C but : she did got[EW:get] it almost. +C but : that is okay because : (one of : her other) one of his other sister/s comed|come[EW:came] and : got it. +=C and that was : the end of : their story [+_bch]. +C and then : tomorrow she got it. +=C that was the end of the story [+_bch]. += [Eg:A3] += [Bg:B1] +C they are play/ing in a sand box. +C (and) and (they) they are try/ing to make a castle. +C (and the) and they are try/ing to. +C and they make one castle. +C but then the : castle broke down. +C (and they are) and they were mad at each other. +C (and) (the) and then the castle broke only one side. +C and then (he) they got mad at each other again. +C and then they made another castle. +E end? +=C That is the end [+_bch]. += [Eg:B1] += [Bg:B2] +C (uh) : they are walk/ing around to have a picnic. +C and they : got[EW:have] lot/s of stuff. +C and they are eat/ing : (their) their lunch first. +C the bunny had a stomachache. +C (He had a) : and then : they had to go home. +C and he had to rest, the bunny. +C and then the mother come[EW:came] to : get them. +C (and then the money) and then the kid pull/ed her shirt (an) [~_coughs] and said come here. +C (and then : they) (this) and then the mother took : (his) (her t) his teeth[?]. +C (And then) and then the mother brought him home. += [Eg:B2] += [Bg:B3] +C they are play/ing along with (their) their (brothers) sisters. +C (And their) and their sister is push/ing the wagon around. +C he was try/ing to catch up. +C and he want/ed to go in the wagon. +C but (it is too sm) he is too big. +C and then (he) he found a balloon. +C and it almost blowed|blow[EW:blew] away off the : wagon. +C that (s) xxx that. +C and then : (they) (he tie/ed off the) (he tie/ed off) he tie/ed the balloon off of the wagon. +C and (then : he) (he just) (then he he just) they were try/ing to catch the balloon. +C why did he do that I do not know. +C (and then the) and then the sister got mad. +C and then the guy broughts[EW:brought] more balloon/s for them : to put (on the) on the wagon. +C (and then : the guy) (and then the bunny) the bunny rabbit of : (the) : the brother was ask/ing if : he could have another balloon for the wagon. +C and then : he said no. +C no for the wagon. +C and he said probably tomorrow. +C and then : he did say tomorrow. +C he said yes. +C (And then he) and then : the (bunny rabbit said) brother said : we want a balloon. +C and he did not give us a balloon. +C the mother said probably tomorrow he will give you some. +C (they give them) (they) he give[EW:gave] them two to each one. +C (and then) and then they both got a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/412.slt b/data/ENNI_SALT/train/412.slt new file mode 100644 index 0000000000000000000000000000000000000000..afa2b804da05026272bd7e3fa9c95e9fb3620075 --- /dev/null +++ b/data/ENNI_SALT/train/412.slt @@ -0,0 +1,110 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 4/24/1995 ++DOE: 3/3/2000 ++CA: 4;10;8 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 412=CHI ++Tape Location: Disk M1 Track 65 += [Bg:A1] +C once upon a time there was a girl. +C (and the moose) : and the giraffe came : (and s) and saw[!] the thing. +C (and she) and he said what are you doing ? +C (and) and the other one said oh I am bounce/ing a ball. +C : (and then the ball) and then the ball went into the : water. +C and then no one could : get it. +C but then (the) (the cam) the giraffe (dropped uh) swimmed|swim[EW:swam] in and almost got the ball. +C : (and then) and then he said thank you. +C : (and then) and then the other one said : [~_sighs] no problem. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C once (huh) an (ah) [+//]> +=C what does this say I can not understand that [+_bch]. +E what do you think ? +=C (what) (what is this) what is this on the picture [+_bch]? +E I will let you decide. +C no run/ing in the pool? +C (and then) and then the : want/ed to go for a swim [EU]. +C and he said watch out. +C and she actually slip/ed into the water. +C : and then she got a scrape. +C : (and then) and then he call/ed the teacher (to see) to see how the scrape was go/ing. +C : and then it really hurt so bad that he had to put a bandage on. +C and it was go/ing to be okay. +C : (and then the rest of) and then the sign said no run/ing. +=C that/z what happen/ed [+_bch]. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C once upon a time (there was) (there was) : [~_I_I_keep__forgetting_the_boy's_name] : there was a giraffe and a[EW:an] elephant. +C said can I hold your airplane please [EU]? +C (and then) (and then he s) and then he said sure. +C but (just) just let me show you what it does. +C and it zoom/ed around. +C : and then she took it from him. +C and then she zoom/ed it. +C (and then she almost) and (the) then she drop/ed it in the water. +C (and then the cam)(and then the oh) and then the giraffe got very angry at the elephant because[~_xxx;_EXA_asks_cause_what] she went like this[~_makes_sound_effect_agh]. +C (xx and then) and then no one can do about it [EU]. +C and then she said you have[!] to because (the) the airplane is his. +C so what are we go/ing to[:_gonna] do about it ? +C we can not just swim in there. +C : he try/ed to reach it. +C but he could not. +C (so he got a nn) and then she cry/ed because noth/ing can we doed|do[EW:do] about it [EU]. +C : (and then the) and then the catcher came (and) and catched|catch[EW:caught] the thing. +C : (and then) and then he put his tear/s away. +E put his what away ? +=C tear/s cause his tears go/ing [+_bch]. +C and then he said thank you. +C and then he said no problem. +=C and that was the end of the story [+_bch]. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C one day they were build/ing a sandcastle. +C (and the bunny) and the other bunny : was go/ing to[:_gonna] play with [~_I_forget_that_part] [+//]> +C and then he[!] want/ed to build a sandcastle. +C : (and then he went) (the tower) : (and then) and then he got mad. +C and then she got[EW:was] sad. +C (and) : and the other person cry/ed. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C once upon a time : (uh) (the bunny met) the bunny met (um) his friend (at the) with the picnic basket. +C : and then (they all had a pi) they all had the picnic. +C and then he was so full that he can[EW:could] barely eat anything else. +C : and then he got a stomyache[c]. +C but he has bubble/s. +=C I do not know what that is [~_child's_comment_about__picture] [+_bch]. +C (so then he wen) (he went) then the friend went to : his mother/z house (and) : (and um) and said (uhh) your son is not feel/ing well. +C and then : she pull/ed her (to where) to where the friend was lie/ing down. +C (and then he w) (and then the doctor) and then his mother (um) quickly was go/ing to[:_gonna] check him. +C and then they went happily ever after at home [EU]. += [Eg:B2] += [Bg:B3] +C one day when he walk/ed to his friend : (she) (he wa) she was : hold/ing : a cart [~_oh_I_do_n(o)t_know_how_to_say_that] : with a balloon on top. +C : (and then he s) (and then the friend) and then the other[!] friend said : your thing is amazing. +C : (and then) : (and then um) : (and then most) (and then) and then she (twun) (twun) tie/ed the balloon off. +C and then the balloon : fell out of the[EW:his] hand. +C (and then) and then it flew away. +C : and then the girl got so[!] angry : that she never[?] will get the cart. +C and then there was[EW:were] some new[!] balloon/s. +C (andthen ) and he want|want[EW:wants] to buy one for the cart. +C and then : can I have a red balloon? +C : and then he said : this red balloon? +C and then he said : all (this costs) this cost/s (um) [+//]> +=C can you say this one word : nine nine xxx [+_bch]. +=C okay I can not read that balloon [+_bch]. +E that's okay. +C (and) and then : would you like to buy another balloon : he said? +C and then he ran and said doctor(*2) I need some money (and then) : to buy a red balloon (he). +C and then the mother said : oh no you can not buy one of those : (because xx). +C and then each of them got (t two) two red balloon/s. +C and then they were so happy. +C then the other one : can have one (for his) (for his um) for his cart. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/414.slt b/data/ENNI_SALT/train/414.slt new file mode 100644 index 0000000000000000000000000000000000000000..c033ffa095625c0212fd971f5f07dc955e000069 --- /dev/null +++ b/data/ENNI_SALT/train/414.slt @@ -0,0 +1,109 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 12/11/1995 ++DOE: 11/29/2000 ++CA: 4;11;18 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 414=CHI ++Tape Location: Disk M5(2), Track 9 += [Bg:A1] +C there was a little : (um :) [~_what_is_that] [~_EXA:_what_do__you_think] (hmm) : a[EW:an] elephant bounce/ing three ball/s[-:]. +C now they falled|fall[EW:fell] in the dirt or water. +C then the : other animal falled|fall[EW:fell] in the dirt. +C [~_actually_uh_no] and the elephant help/ed him up : with the ball. +C : and[-:] (um) : they are happy. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C (now : he) now the elephant want/ed to go jump/ing in the water[-:]. +C then he was run/ing[!] in the water. +C then he was try/ing to run. +C then he slip/ed[-:]. +C then he hurt hisself[EW:himself][-:]. +C then the guard[!] comed|come[EW:came]. +C then : (h) hurted|hurt[EW:hurt] real[!] bad [EU]. +C then he sitted|sit[EW:sat] on the bench. +C and he got a bandaid. +C (and he) and he got mad. +C and he [~_points] [+/]^ +E : you are point/ing. +E mhm they got mad and : he is point/ing! +C he is point/ing that way. +=C the end [+_bch]! += [Eg:A2] += [Bg:A3] +C (now they are say/ing) now the little sheep (um) said do not play with my airplane ! +C now it flied|fly[EW:flew] [-:][!] around. +C then he[!] try/ed it out : the (um) elephant did. +C then it went in the water[-:] ! +C then : he got mad ! +C then the guard said [~_puts_hands_on_hips] [+..] [EU]. +E hmm he is stand/ing with his hand/s on his hip/s. +=C yeah [+_bch]. +C then : nobody could not get it out [EU]. +C then : (he[!] could not) : guard could not. +C then[-:] : they are think/ing of let/ing [+//]> +=C do/3s this (um) : get my voice [+_bch]. +E yeah it do/3s. +=C oh [+_bch]. +E everything XX. +E is that that page, okay. +C now there is a different elephant that had a shape/ed thing [~__gestures_to_indicate_shape]. +C then he got[!] it with[-:] his shape/ed thing [~_gestures_to_indicate__shape]. +E yeah and both time/s you have shown me that with your hand/s. +C then he said thank you ! +C : then they[-:] did not play with it ever again. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C and they are : build/ing[!] a sandcastle there. +C and he[-:] carefully touch/ed it[-:]. +C then he pour/ed some more dirt[-:]. +C then it broke[-:][!] down[-:][!] : half of it. +C then he was sad[-:]. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C they are walk/ing around and have/ing a picnic. +C then they got carrot/s and all (s) kind[EW:kinds] of stuff. +C and they *are all full [EU]. +C and the bunny rabbit was full. +C then he was[-:] : really super full. +E he was really what? +C (his[-:] stomach) his stomach was fat. +E oh okay I did not understand what you said. +E speak a little bit louder okay? +=C okay [+_bch]. +C he was run/ing. +C and when he left the bunny [EU]. +C and : there was a different[!] bunny that had glass/s. +C and he was have/ing a picnic too. +E and you show/ed me the glass/s too. +C then : he drag/ed him over here. +C then he check/ed out him[-:] [EU]. +C then he live/ed happy[EW:happily] ever after. +=C the end [+_bch]! += [Eg:B2] += [Bg:B3] +C (they are ha) and (the bunny rabbit uh) the little[-:] girl bunny rabbit had a balloon. +C then : the boy[-:][!] one : want/ed to try it. +C then she said no! +C then it flied|fly[EW:flew] [-:] away! +C I think the balloon pop/ed (or it) or it flied|fly[EW:flew] off the[-:] (um) : string. +E mhm is that it for that page? +C now they saw a balloon[!] man. +C they ask/ed for one. +C and he said only if a (one[-:] dollar) : (one doll) five[-:] cent/s actually [EU]. +C (then) : then they saw a guy. +C and they runned|run[EW:ran]! +=C and[-:] is that my bell [+_bch]? +E no. +=C : okay [+_bch]. +E nothing on this page? +C and he said [~_high_pitched_voice] I want a balloon the little baby me [EU]! +C (and he said) and he gived|give[EW:gave] him two[!] buck/s. +C then they : live/ed happy[EW:happily] ever after. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/415.slt b/data/ENNI_SALT/train/415.slt new file mode 100644 index 0000000000000000000000000000000000000000..11287cd044f774ad196b1abee11479cf00845a7b --- /dev/null +++ b/data/ENNI_SALT/train/415.slt @@ -0,0 +1,96 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 7/7/1995 ++DOE: 3/14/2000 ++ID: 415=CHI ++CA: 4;8;7 ++Gender: F ++Context: Nar ++Group of CHI: TD ++Tape Location: Disk L3 Track 5 += [Bg:A1] +C there is (a piggy and a elephant) : [~_EXA:_whoops,_sorry] a giraffe and a[EW:an] elephant. +E : What are they do/ing ? +C they are play/ing ball. +C and the ball : go|go[EW:goes] in the water[-:] . +C (And the) and the giraffe : swim|swim[EW:swims] and swim|swim[EW:swims]. +C and the (gi) giraffe is go/ing to sink. +C and he did not. +C he got up. +=C The end [+_bch]. += [Eg:A1] += [Bg:A2] +C there is a thing xx in the water. +C (and the) and the elephant and the giraffe were go/ing to go in the water. +C and then the elephant is go/ing to go. +C and he slip/ed. +C and he hurt her[EW:his] knee. +C (and then) (and the) and the elephant came. +C and the elephant cry|cry[EW:cried]. +C and she had a rest. +C and the elephant is mad. +C (and) (an uh) and she run|run[EW:ran] and run|run[EW:ran] and run|run[EW:ran] because she hurt her knee. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C there is an elephant and a giraffe. +C and the giraffe has a[EW:an] airplane. +C and the airplane go|go[EW:went]. +C and it have|have[EW:has] a string. +C (and it) and it flie/3s. +C and the airplane go|go[EW:went] to the water. +C and it is go/ing to [~_gonna] go down and down and down and down and down. +C (And the kid/s) and the kid/s look/ed at the swim/ing elephant. +C and (the elephant) (elephant) the airplane is go/ing to [~_gonna] fall. +C and he can get[!] it. +C he could because he can. +C I think someone need/3s to get that airplane. +C and the elephant girl : [~_high_pitched_voice] I[!] will get it. +C she could. +C and she could get it. +C [~_whispers] and she could get it. +C she got it. +C and she is go/ing to get it. +C and she got it. +C and the elephant girl kid smile|smile[EW:smiled]. +=C The end [+_bch]. += [Eg:A3] += [Bg:B1] +C (a dog) : (a mouse) (a dog) a dog and (a mo) a bunny [EU]. +C : and they are at the beach. +C and the rabbit and the dog : are[-:] build/ing the something else. +C the bunny is go/ing to[:_gonna] put something (on the) on the castle. +C (and the cas) : and the bunny said oh dear. +C (and) and the girl : made another one because they have got a melt[?] [EU]. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C they are go/ing for a picnic. +C (the) they are eat/ing[-:] . +C and the bunny is full. +C the bunny has a big tummy[-:] . +C (and mister bunny) : and mister bunny has a bag. +C (then the doctor said) then the puppy said : doctor : the bunny is full[-:] . +C (and) and he tongue stick out [EU]. +C he *is happy [EU]. +C he *is go/ing to[:_gonna] go home and see he[EW:his] mama [EU]. +=C The end [+_bch]. += [Eg:B2] += [Bg:B3] +C the doggy has a wagon[-:] . +C and there is a balloon[-:] . +C and it is go/ing to go away. +C and it is gone. +C and it pop/3s! +C and there is a more balloon [EU]. +C and the balloon is one right here [EU]. +E the balloon is what? +=C right here [+_bch]. +C then : there is a balloon right here beside the man [~_pronounced__/men/]. +C and : he have|have[EW:has] lot/s of balloon[EW:balloon/s]. +C (and) and (mister) mister nurse : is here. +C (mister) : mister nurse doctor : is go/ing somewhere else. +C and mister doctor go (to the) to the balloon man [EU]. +C (and the bun) and the (s) nurse doctor (s) smile|smile[EW:smile/ed]. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/417.slt b/data/ENNI_SALT/train/417.slt new file mode 100644 index 0000000000000000000000000000000000000000..27aeee37b3b615374ec8460b3455a4d841d59a0c --- /dev/null +++ b/data/ENNI_SALT/train/417.slt @@ -0,0 +1,146 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 7/20/1995 ++DOE: 3/21/2000 ++ID: 417=CHI ++CA: 4;7;26 ++Gender: F ++Context: Nar ++Group of CHI: TD ++Tape Location: Disk L3 Track 9 += [Bg:A1] +C (There is a xx) one day (nn there) there is a (um) giraffe and a[EW:an] elephant. +C and the elephant was bounce/ing a ball when she had her bathing suit on and a bow on her head. +=C what else do I wanna say [+_bch]? +C and a giraffe had new clothes on that had a shirt on and a hat on. +=C and that is it [~_indicating_C_was_done_with_page] [+_bch]. +C and then : accidentally (um) the giraffe drop/ed (the water) the ball into the water. +C and : they both saw the ball into the water. +C (hm :) and the giraffe jump/ed in and try/ed to (get) catch the ball. +C and then the giraffe got it and gave it to the elephant. +=C and : and that was all [+_bch]. +C (And he) and the elephant you are very kind. +C and : (then) then (the gura) the giraffe just gave (um) back the ball to the elephant. +=C The end [+_bch]. += [Eg:A1] += [Bg:A2] +=C (um) and then [+_bch]. +=C I do not know this part [+_bch]. +=C I do not know this book [+_bch]. +E Just look at the picture and tell me what you see. +=C okay [+_bch]. +C (I see two giraffe/s) I see a giraffe and an elephant with a bow in her hair. +C and they were look/ing at the water to see how cold it was. +C and the elephant : let us go in and jump on that thing [EU]. +=C I do not know what is that called [+_bch]. +C and then the elephant slip/ed. +C and she is almost go/ing to slip down when she was run/ing [EU]. +C and she hurt her knee. +C and there is no run/ing in there. +C (and then) and then the giraffe went near her. +C (and it) (and) and the girl/z brother came by too. +C and she got hurt. +C (then her) then her brother put a bandaid on her. +C and then they got her. +C (then they) (then she) then her brother said there is a bench over there. +C you can sit down over there. +C see the bandaid is on. +C and (then) then her brother got mad at her. +=C and I do not know [+_bch]. +C and the brother said (see) see that sign ? +C no run/ing in here. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C and then she got all better. +C and then (they stand) they stand by (d) each other. +C And they laugh/ed : because he got a bandaid off [EU]. +C And then : the giraffe had a[EW:an] airplane. +C And he flied|fly[EW:flew] it. +C he try/ed to fly it high : so it could be more[!] like a[EW:an] airplane. +C then : the elephant took it away from him. +C and : she look/ed at it. +C (and that) and (she saw s) she saw an airplane in her hand. +C (she) she accidentally drop/ed it in the water. +C and it got into the water. +C (And it) and : they both look/ed at the water. +C and then : the giraffe got mad at her. +C and then : (she s) she still look/ed at the (um) airplane (to s) because it was go/ing to [~_gonna] go down deep into the water. +C And (then : he s) then her brother came by and saw it. +C And then they all look/ed (a) at it except for his sister. +C (His sister) his sister is look/ing at him to see what his : shirt look/3s like. +C Then (she) she : talk/ed at him (to see) (she gra) [~__high_pitched_voice] I (grab/ed it) (in front of) : (grab/ed it : f) took it away from the giraffe [EU]. +C And then : it got[EW:went] into the water ! +C then : (her brother try/ed) her brother try/ed : to (get it um) get the (um) airplane : out of the water. +C But he could not reach it. +C (Then she) then the giraffe cry/ed. +C and : she was sad. +C (the s) : (the) [~_no] the giraffe was sad : that nobody could not get it [EU]. +C (and then) (their mum) (then : the gira) then the elephant/z mum came by. +=C (And she had : um) what is that call/ed [+_bch]? +=C I do not know [+_bch]. +E What ? +=C (Um) xxx [+_bch]. +C Then she got a tank[?] to get it out of the water. +C Then she try/ed. +C And she try/ed. +C And she almost got it. +C But it could not fit in there. +C Then she got it and gave it to the giraffe. +C And then : the giraffe was so happy. +C And so was the elephant. += [Eg:A3] += [Bg:B1] +C a bunny and (a dog) a dog was[EW:were] in the (um) sand. +C (when) they were both at the beach. +C and they both had shovel/s. +C and (the doggy) the girl doggy (um : she was) she made a sandcastle. +C and then they both start/ed make/ing one. +C and (h) (he got a buck) he had a bucket. +C and then : he was go/ing to[:_gonna] dump it on : the girl/z (um) castle. +C and (then she broke it) then he broke it. +C and then she start/ed cry/ing. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C (um) a bunny was go/ing to [:_gonna] go get some : chocolate/s. +C and : a girl had a bucket. +C and (so did) the boy bunny did (t) too. +C (and they wen) and he took all[!] her food. +C then he had a tummyache. +C and then : he was sick. +C and (he wa) he was get/ing dizzy. +C and then (he saw his mo) she saw his mommy. +C and then she (ran to him) ran to her. +C and then she told the doctor that (um : he) he was sick. +C and he was get/ing dizzy too. +C (he said) she said come(*3). +=C : see [+_bch]? +C he is get/ing dizzy and sick. +C so : she had to bring him home. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C (A) when a girl : doggy was pull/ing a wagon with a (balloon on there) balloon on there [EU]. +C and it was tie/ed up. +C and she was pull/ing it. +C and (he was) he said nice balloon. +C could I have it? +C then : he was go/ing to[:_gonna] take it off. +=C and she said[~!_intake_of_breath] [EU]. +C then he made it go up(*2). +C and he could not reach it. +C so she got mad. +C and she want/ed it back. +C then she ask/ed for another balloon. +C and (the bunny want/ed) the boy (blun) bunny want/ed one of those kind of balloon/s. +C (and he) (x) and (he ga) he gave him one. +C and then he has to give him : five cent/s. +C and he do/3s not got[EW:have] that much. +C (he did not got) he check/ed and check/ed. +C and (he did not) he did not got[EW:have] no[EW:any] money. +C and then : he ran to the : girl and : ask/ed her (was she was) could he have some money from that girl. +C and he said : can I have five cent/s to have one of those kind[EW:kinds] of balloon/s[-:] ? +C then : (he ha) he was go/ing to[:_gonna] (give her) give those two two balloon/s. +C (then he) then they both got happy [EU]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/418.slt b/data/ENNI_SALT/train/418.slt new file mode 100644 index 0000000000000000000000000000000000000000..b0c726363252d6e2cb10c37810a2fd79c970ec8c --- /dev/null +++ b/data/ENNI_SALT/train/418.slt @@ -0,0 +1,103 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 1/31/1996 ++CA: 4;10;3 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 418=CHI ++Tape Location: Disk M6 Track 51 += [Bg:A1] +C (um) : there is a[EW:an] elephant who is play/ing with a ball. +C and it drop/ed it. +C and it said (um) could I play? +C but then it went in the water. +C (and um) and (the : um :) he went in the water. +E shall I turn? +C and (the) : the elephant got the ball. +C (and um) and he smile/ed. +C and so did the elephant. +=C and the end [+_bch]. += [Eg:A1] += [Bg:A2] +C (um : uh) a[EW:an] elephant [EU]. +C and he (went) went go/ing in the water [EU]. +C and (um) they said let us go in that thing and jump in the water. +C but (um she w) she ran. +C and she fell. +C and she hurt her knee. +C and (um) : her big brother came : and (um) put a bandaid on : and (um) lift/ed her up : and said you can not get off that bench. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C (um : the um) : (this um) the elephant was there. +C then this boy came with a[EW:an] airplane. +C and she said could I play with the airplane ? +C (then um) (then it w) (then he) then he said I will go first. +C and it went [~_flying_noises]. +C (but) but then she try/ed. +C and she went like this [~_flying_noises]. +C but : then it went in the water. +E both times you were show/ing me with your hands when you went [~_flying_noises]. +C and (um : it) it went in the water. +C and it was go/ing to sink. +C and he got mad : at the elephant. +C and then her big brother came. +C (and) and she said could you reach it big brother ? +C and (um) he try/ed. +C but it went far. +C (um but then it) (but then it) then this (um el) other elephant came to catch (i) the airplane. +C and it went sink, sink, sink/ing. +C but : then she caught it. +C and (um) she brought it up. +C and then she gave it to him. +C then he hug/ed it. +=C and that is the end [+_bch]. += [Eg:A3] += [Bg:B1] +C there was a dog and a bunny : play/ing. +C and (um : then um) then the bunny came and said could I : build a sandcastle with you? +C but then it was up before he went. +C (then um) (then they) : then the rabbit (um) put sand in the bucket. +C and they pour/ed it : on. +E turn? +C (then) then it broke : down. +C and he is like this. +C (and he) (and he was) and he was try/ing to fix it. +E you show/ed me the face he was pull/ing. +C the (um) dog try/ed to fix it. +C but it would not go up. +=C and that is the end [+_bch]. += [Eg:B1] += [Bg:B2] +C (um) (there) there is the dog who had a picnic basket. +C and (um) then here came : a bunny with a picnic basket. +C (and um) (and they are) and he was go/ing to eat. +C but he ate too much. +C but : he got a tummyache. +C and (um) he was too full. +C and (um) : there was a spinny thing around his head. +C (and he asks) and the dog ask/3s [~_pronounced_/aeks/] his mom to come here. +C and (um) she saw (the rab) her son. +C and (um) they are go/ing home. +C and (um : they um : were) then the bunny left. +=C now it is the end [+_bch]. += [Eg:B2] += [Bg:B3] +C (um) there was a dog who had a balloon. +C (and um) and (then uh) then came the rabbit : and (um) said[?] hey ( could) could I pull on it? +C and then it went. +C (then) then he untie/ed it. +C (um) and he let goed[EW:go]. +C and it went high(*2) [~_gestures]. +C and then the dog got mad. +C (then um) then : the rabbit said hey lookit. +C there is a man : who is full of balloon/s. +C and he said could I have a balloon? +C (and um :) [~_EXA:_turn] and he said this is five : buck/s. +C (but) [~_you_can_turn_now] (but) but they could not buy a balloon. +C then he was go/ing to go ask [~_pronounced_/aeks/] his mother if he could have some : money : (and um) to buy a balloon : for the dog. +C (um) and she gave money : to him. +C and (um) they both had a balloon. +=C and that is the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/419.slt b/data/ENNI_SALT/train/419.slt new file mode 100644 index 0000000000000000000000000000000000000000..11569aa5ab65f4573b567df5906bad91df973045 --- /dev/null +++ b/data/ENNI_SALT/train/419.slt @@ -0,0 +1,103 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 10/13/1994 ++DOE: 4/11/2000 ++CA: 5;5;29 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 419=CHI ++Tape Location: Disk L4 Track 12 += [Bg:A1] +C (Elephant s) elephant was play/ing his candy bar/s [EU]. +C (and) (and gi) : and giraffe want/ed some. +C : and one went in the sandbox. +C : but actually that was the water. +C then : giraffe got it back to the elephant. +C then : elephant look/ed : happy (to) to giraffe. += [Eg:A1] += [Bg:A2] +C They want/ed to go in the swimming pool. +C (but) but they did not have (their pool) their bathing suit/s. +C but actually they did have their bathing suits on. +C but there was slippery [EU]. +C then (there knee) she fell down. +C and (she) she hurt her knee. +C and then her brother came to help her. +C it really hurted|hurt[EW:hurt]. +C : so (the) (the) the brother elephant put on the bandaid on the sister elephant. +C and then it was still hurt/ing. +C and the brother one said go home. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C So : the piggy want/ed the giraffe/z airplane. += %COM: No character referred to as "piggy" in previous stories. +C except it went round and round and round. +C and the piggy walk/ed round and round and round. +C (and) and giraffe did not want piggy to break[!] it. +C so it went round and round and round. +C then the airplane fell in the water. +C and it was go/ing deeper. +C and (the p) (the elephant) the elephant[EW:elephant/z] brother came to seize the airplane. +C then the sister said it went deeper. +C now it was go/ing deeper. +C he did not want to [~_wanna] fall in the water[-:] because he was wear/ing clothes. +C but : the giraffe was start/ing to cry. +C and then (the) the lady was try[EW:trying] *to getting[EW:get] it [EU]. +C : and then : the lady was try/ing to get it. +C she was try/ing to get it (at the um) . +C : and then the giraffe was start/ing to be happy. +C when you are happy sometime/s people cry. +E that is right. +C (then) then the lady got (the) the airplane back to the giraffe. +C (and) and (the) the elephant/z sister was really[-:] happy to like (uh) the giraffe [EU]. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C (th) there were[EW:was] a dog that was make/ing a sandcastle. +C and then (the) the bunny want/ed to do it too. +C and the dog did not want the bunny to. +C and : then the bunny was mad too because it all fell down. +C and (the bun) then the dog was cry/ing. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C The bunny was go/ing for a picnic too. +C and the doggy was too. +C bunny was really hungry. +C then he was really full. +C the bunny/z tummy hurted|hurt[EW:hurt]. +C then doggy saw bunny/z mom. +C then doggy pull/ed on the doctor bunny. +C the doctor said (he is) he is too full. +C (the) the (doc) doctor : fix/ed the bunny. +C and the bunny was not full any more. +=C The end [+_bch]. += [Eg:B2] += [Bg:B3] +C Doggy was pull/ing his : wagon with a balloon on it. +C and bunny was run/ing at her. +C (bun) bunny said I like that balloon. +C and doggy said that is mine. +C (and then he s) then bunny (s) was try/ing to tie it off. +C (and) and doggy (was m s) she was about to cry. +C and then it was all fly/ing up to the air. +C and the bunny want/ed it. +C and the doggy want/ed it. +C now the balloon pop/ed. +C (and) and they are xxx. +C and bunny was : really : kind of nervous. +C (and the) and the dog was mad. +C then there was a bunny rabbit : and lot/s : of balloon/s. +E lot/s of what? +=C balloon/s [+_bch]. +C (and) and bunny ask/ed can I have a balloon : (said the ma) : said bunny. +C (but bunny) but bunny did not have five dollar/s. +C and bunny did not get a balloon. +C (but doc) : but bunny ask/ed doctor. +C he was stand/ing right : there. +C and bunny ask/ed doctor can I get : a balloon? +C and (then) then bunny and doggy was[EW:were] happy because there was[EW:were] two balloon/s for them. +C and (then they were all) then they were happy (from) (from) from the bunny doctor [EU]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/420.slt b/data/ENNI_SALT/train/420.slt new file mode 100644 index 0000000000000000000000000000000000000000..8c437a8bb101ec10319f30107e9cd05cd35ae794 --- /dev/null +++ b/data/ENNI_SALT/train/420.slt @@ -0,0 +1,90 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 5/9/1995 ++DOE: 4/25/2000 ++CA: 4;11;16 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 420=CHI ++Tape Location: Disk L10 Track 3 += [Bg:A1] +C I saw a giraffe and a[EW:an] elephant. +=C (that) : that is it [+_bch]. +C I saw an elephant go swim/ing. +C (I saw eleph) I saw the (g) giraffe and the elephant (s) drop *the ball in the pool [EU]. +C I saw giraffe swim/ing in the pool to get that ball. +C the giraffe got[EW:has] to get out of that pool. +C the[?] giraffe always get|get[EW:gets] wet. +=C that is the end [+_bch]. += [Eg:A1] += [Bg:A2] +C (The) (the giraffe) : the boy is gone. +C (the) the elephant *is go/ing to jump in the pool, *and make it splash [EU]. +C (then the) and that giraffe is work/ing get/ing the (uh) xx. +C elephant hurt his leg. +C elephant cry|cry[EW:cried]! +C elephant lose|lose[EW:lost] his eye[?]. +C elephant sit|sit[EW:sat] down : and get|get[EW:got] *a bandaid [EU]. +C (eh elephant lo look) the elephant : sit|sit[EW:sat] down. +=C that is the end [+_bch]. += [Eg:A2] += [Bg:A3] +C The giraffe talk|talk[EW:talks] with xx giraffe. +C the giraffe play|play[EW:plays] with a plane. +C elephant (l) get|get[EW:gets] the plane. +C and : he get|get[EW:gets] it. +C (he) (he) he hold|hold[EW:holds] it. +C the elephant drop/ed the plane in the water. +C (the p) (the) (the) ( the) that giraffe xx the elephant. +C (that) (hm m) (that) (uh uh) that giraffe look|look[EW:looks] at that plane and (look) swim/3s in the pool. +C (uh : uh) that elephant look|look[EW:looks] at that : elephant. +C (that eleph) that elephant look|look[EW:looks] at that plane in the water. +C (and) (and that) and that giraffe cry|cry[EW:cries] ! +C (and tha) and there is[EW:are] three elephant/s. +E what is happen/ing ? +C (uh) that elephant *is go/ing to pick the plane out of the pool [EU]. +C he get|get[EW:got] it out. +C he got it. +C he got it (for) for (the) the giraffe. +=C that is the end [+_bch]. += [Eg:A3] += [Bg:B1] +C (The) (th this) (the) (the) (the) (the) (the) the guy : *is make/ing a sandcastle [EU]. +C and that rabbit *is make/ing a sandcastle too [EU]. +C he spill/ed on : that guy/z castle. +C it is all broken. +C (th) (that) that[!] guy cry|cry[EW:cries]. +=C that is the end [+_bch]. += [Eg:B1] += [Bg:B2] +C (Ah) this guy and this rabbit are go/ing *to eat : outside [EU]. +C they *are eat/ing some food [EU]. +C (the) that guy *is hav/ing a drink [EU]. +C that rabbit is full. +C that rabbit : is done that. +C this guy hold|hold[EW:holds] rabbit/z jacket. +C (an) and this guy : is sick. +C that rabbit *is go/ing *to take him to the hospital [EU]. +=C that is the end [+_bch]. += [Eg:B2] += [Bg:B3] +C (uh) that guy get[EW:gets] *a balloon for a rabbit [EU]. +C that rabbit *is go/ing *to get the balloon [EU]. +C (the) then (that) (that) that rabbit *is go/ing *to tie the balloon off [EU]. +C (an) and the rabbit *is go/ing *to hold it [EU]. +C and it flew up to the sky. +C it flewed|fly[EW:flew] up. +C and that guy is mad because she is let it up to the sky [EU]. +C (an) (and this) and this guy have|have[EW:has] lot/s of balloon/s. +C and that rabbit want[EW:wants] this[!] one. +C (he want) he want [EU]. +C look at his pant/s. +C xxx. +C then rabbit do|do[EW:does] not want a balloon. +C (uh) not going to [:_gonna] xx xx that rabbit. +C (that guy c) (that w) that rabbit want|want[EW:wants] a balloon. +C and (he is) he is go/ing *to (get) get some money and get a balloon [EU]! +C (he) (he get) he hold|hold[EW:holds] it. +=C that is the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/421.slt b/data/ENNI_SALT/train/421.slt new file mode 100644 index 0000000000000000000000000000000000000000..712850aac8625b7c151730bd52ca00185039f259 --- /dev/null +++ b/data/ENNI_SALT/train/421.slt @@ -0,0 +1,179 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 10/22/1995 ++DOE: 4/11/2000 ++CA: 4;5;20 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 421=CHI ++Tape Location: Disk L4 Track 16 += [Bg:A1] +C I saw an elephant (and) (and a) and a horse. +C (then I) then I ran and ran. +C but he trip/ed : (on the) on the way because I was run/ing. +C and my mom and dad told me I can not run because (it) there is some ice on there. +C then : (he) I saw a swimming pool that I can go in. +C (so) so that is where : the elephant and the horse want/ed to go too. +C and so they jump/ed and jump/ed try/ed to pedal [EU]. +C but something was in the water. +C he reach/ed for to give the ball to him [EU]. +C but he can not reach. +C he has to get up then jump. +C they were chilly. +C so they decide to put on (their) : their clothes and brush their teeth. +=C That is the end [+_bch]. += [Eg:A1] += [Bg:A2] +C One time they saw a pool. +C and they saw a jump/ing thing. +C so they climb/ed way up then jump/ed in the water. +C it was far away so that they could not reach it. +C they had to jump. +C (then he wo) then the elephant and the horsie was[EW:were] scare/ed because (they might) they might float down (if some) if something had a pool [EU]. +C so they decide/ed (to go back) to go back. +C and then she almost slip/ed on the way walk/ing. +C (then he) then he was walk/ing. +C and the elephant was walk/ing. +C then they hurt [EU]. +C then : (he) (he) he said maybe we can put a bandaid on. +C and so they did. +C and so they all (had a) had a wonderful day. +C and then they decide/ed to have (another) another surprise about this story. +C then they put *a bandaid (on) on the way sit/ing on the bench [EU]. +C and it feeled|feel[EW:felt] all better. +C and (the ele) and the big dad said you should never go out with yourself (until) until we come with you [EU]. += [Eg:A2] += [Bg:A3] +C This elephant feeled|feel[EW:felt] all better. +C (and) and him[EW:he] : did : too. +C and so they all both laugh/ed [EU]. +C and they said let us go in the water ! +C and so : he said no[!] I want to play with my airplane. +C (and) and he grab/ed it because he want/ed to play with it too. +C (and) and he put it in the water. +C (and it) and it was float/ing down. +C (so he) so the horse had to jump in and get it. +C then : he was very mad that (his air) his airplane was float/ing down. +C (his m) his mom said : (you) you can go in the pool. +C but do not ever put airplane/s in the pool. +C then : his dad (was) (was very) was very[!] happy because he is glad. +C but (he is : mad) he is very mad now because (he) this elephant told him he throwed|throw[EW:threw] it into the water. +C that is why he was mad. +C and he try/ed to reach (by) by get/ing it. +C but he could not. +C they were cry/ing because they had to jump in. +C and then : the airplane start/ed to go up (and) or maybe down. +C but they were still[!] cry/ing. +C this little elephant said : hey I think I can get it with my net. +C so he[!] tried. +C and he got it. +C and (he got it) he got it. +C and then they were all happy. +C that is the last time. +C do not put it in. +C and then they *were both happy and enjoyed theirselves[EW:themselves] [EU]. += [Eg:A3] += [Bg:B1] +C so : they said : how about that swim? +C and he said oh[-:] : we have to dig out some sand. +C so : they did. +C (and) : and there was a castle way out there that had more sand. +C and they ask/ed for some. +C and he said let us build a castle too. +C and so they build|build[EW:built] it : build|build[EW:built] it and build|build[EW:built] it until there was no castle : because somebody moved it in : to *an apartment building [EU]. +C and so they just made it. +C and xx (had a do) (had t) had each three window/s. +C and there was a door. +C but it fell down because the rain was start/ing to come. +C but then it stop/ed. +C and so they start/ed to fix it again. +C and they were chilly. +C and this (little) little rabbit was cry/ing because he did not know how[!] his castle was made. +=C That is the end [+_bch]. += [Eg:B1] += [Bg:B2] +C I saw two rabbit/s. +C and I was walk/ing down on the same track. +C and I was ask/ing them can I come. +C and they said sure. +C so I forgot my picnic [~_pronounced_'pinkink']. +C and it ran fast and (ran) ran back to there. +C and so I did. +C and so (they) (they hardly) they hardly had their castle. +C so they decid/ed to take a lunch. +C and they had our card/s : then put them back : then started to go for another picnic. +C but no picnic there. +C they start/ed to take a nap. +C and this little pig start/ed to drink the juice. +C then he waked|wake[EW:woke] up. +C suddenly he bump/ed his head on the ground. +C then : he tip/ed his picnic : basket over. +C but : little rabbit said I want more juice. +C see there is no more juice there. +C oh there is still more. +C and so he said it is gone. +C (and he) and he had to learn to : know. +C and then : he said come on! +C come on doctor! +C come on! +E go ahead and finish the story [~_New_track_begins_due_to_power_failure]. +C so he could not pull him. +C so he just left him and ran[-:] and ran. +C he told (doctor) (doctor) this doctor (is not plas) it is plastic. +C and so : he felleded|fall[EW:fell] down again. +C then he fell down. +C then he start/ed to give him a tweek like a bandaid on his head. +C then he feeled|feel[EW:felt] much better. +C but (this ma) this doctor was not plastic anymore. +C and so he begin|begin[EW:began] to get tire/ed. += [Eg:B2] += [Bg:B3] +C once they saw a sign. +C and they : said that is put (uh) our balloon [EU]. +C and let us[?] write a sign on our balloon. +C but he said no that is not a good idea. +C then he start/ed to : pull it and start/ed to ride home. +C why do not you go home [EU]? +C and I will tell a secret. +C and why do not we surprise [EU]. +C and so : he made a balloon : by hisself[EW:himself]. +C (and) and he blowed|blow[EW:blew] and blowed|blow[EW:blew] it until it was get/ing small. +C and so he start/ed to get inside. +C and nobody push/ed them. +C so that is why he had hard push/ing this rabbit [EU]. +C then he try/ed to reach for the balloon. +C but it was float/ing way up in the air that they could not reach it. +C (they were) (they) he was so mad : (cause he) (cause) he was so mad (that he) that he cut (the balloo) the balloon of (this) this plastic. +C then he said hello to Mrs Ballooner. +C and he said would you like to borrow some balloon[EW:balloons]? +C and he said yes. +C (but this then) : (this towards little bunny look/ed past) way down there (was a big) was a big man carry/ing a bunch of balloon/s. +C then he went down there and say/3s hello Mr Ballooner. +C can I borrow a balloon? +C of course. +C so he take|take[EW:took] one and snap/ed it towards the hanger. +C and they were sit/ing down on that bench. +C and he said I am finish/ed. +C where is the garbage? +C right there. +C and so they both : beginned|begin[EW:began] [EU]. +C (and he) (and he s) and he said can I have a balloon? +C and he said (you) (he) your brother (al) already got a balloon. +C and so [~_yawns] he beginned|begin[EW:began] : (to) : to (just gra) just get one and say please. +C but he could not. +C this man got mad because he took one. +C and he said why yes you can take one. +C and so he take|take[EW:took] one. +C and they went home. +C and both happys [EU]. +C : and then he was happy forever. +C the doctor was happy : because he want/ed a balloon too. +C but one balloon was float/ing up in the air. +C and he told his mother doctor this balloon is float/ing away. +C and he said I will try to reach it (with a fl) with a[EW:an] airplane. +C and so : they beginned|begin[EW:began] to say happy [EU]. +C and (he was) the doctor was : happy that he had a balloon. +C so they all beginned|begin[EW:began] [EU]. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/423.slt b/data/ENNI_SALT/train/423.slt new file mode 100644 index 0000000000000000000000000000000000000000..4db6d2496b51f9350bbf5f68808ae3cb9cc39aba --- /dev/null +++ b/data/ENNI_SALT/train/423.slt @@ -0,0 +1,121 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 9/17/1995 ++DOE: 4/11/2000 ++CA: 4;6;25 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 423=CHI ++Tape Location: Disk L4 Track 28 += [Bg:A1] +C A cow[!] and the elephant want to [~_wanna] play baseball. +C and (the cow jus um) the cow just throwed|throw[EW:threw] it in the water xx his hand[?]. +=C and I do not know what else [+_bch]. +C then he[!] just start/ed [EU]. +C he just want/ed to get that ball ! +C [~_well_#_well] she[!] got[!] it. +C the cow just got it. +C and she just threw it to her. +C now she was do/ing everything to the boy. += [Eg:A1] += [Bg:A2] +C She just want/ed to bounce on here and swim. +E she wanted? +E can you say that again? +=C she just want/ed to bounce on there and swim [+_bch]. +C then she run|run[EW:ran]. +C and she just run|run[EW:ran] and running [EU]. +C then (she was) she want|want[EW:wanted] too many tricks through this one and this one [EU]. +C she hurt herself. +C now she was cry/ing [EU]. +C then he just put a bandaid on her. +C now she can not swim. +C I mean the cow and the elephant [EU]. +C now he *is mad at her [EU]. +=C and then the end [+_bch]. += [Eg:A2] += [Bg:A3] +C A cow : was have/ing a[EW:an] airplane : for flying here [EU]. +C and then he : just want/ed to fly. +C then she[!] got it. +C then it went in there. +C he just want/ed to eat the xx bit. +C he was mad at her because (sh) her[EW:she] just throwed|throw[EW:threw] it in there. +C and then : she was so : sad because : he was sad too because her[EW:she] was sad too because it was slip/ed in. +C xxx. +C then (it) I would[!] get (it) : it : [~_EXA:_what_(i)s_in__the_story] because it was sink/ing into the ground. +C she is so[!] mad. +E and then? +C and then : he was so sad and cry/ing from that airplane [EU]. +E okay L, what happened next L? +C then he got back. +C and then she pick|pick[EW:picked] it up and give|give[EW:gave] it to him. +E : and then? +C and then she was try/ing to get it. +E : and then? +C and then she got it ! +E : and then? +C and then : he was so happy and her too. +E and then [+/]^ +=C and then the end [+_bch]. += [Eg:A3] += [Bg:B1] +C He just want/ed to play with her. +C the castle [EU]. +C (duh) he just play/ed with the bunny. +C and it was go/ing to[:_gonna] break. +C he just put lot/s of sand in there. +C and it is go/ing to[:_gonna] break. +C and : that is the day it broked|broke[EW:broke]. +C and now how are they go/ing to[:_gonna][?] fix it? +C how? += [Eg:B1] += [Bg:B2] +C (ah) they was[EW:were] walk/ing. +C they were go/ing to have a beach. +C they were go/ing to[:_gonna] have a party. +C oh they already had a party. +C and the bunny just want/ed to eat a carrot. +C now he is fat[!] [~_giggles]. +C and (he is sad like :) he is sad. +C and (she) he is happy now. +C now he happy. +C (he) she want|want[EW:wanted] to go there. +C (toin da) what does she want? +C he was try/ing to licking[EW:lick] his tongue [EU]. +E he was what? +=C she want/ed to lick on her tongue [+_bch]. +C (hmm but then he is) and then : she was take/ing her walk/ing. +C they were going for a walk. +=C and the end [+_bch]. += [Eg:B2] += [Bg:B3] +C Now they was[EW:were] go/ing for *a walk again [EU]. +C they got a balloon. +C and they was[EW:were] walk/ing. +C then they just want/ed to float away. +C and it jump/ed right off the air [EU]. +C and they just want/ed it. +C (they got so) he was so mad. +C there was a moo. +C and he was hold/ing some more balloon/s : for them! +C and he just jump/ed right up there. +C and the man want/ed to give him a balloon for the wagon. +C (five :) five number on the balloon [EU]. +C and the guy there was so mad and happy. +C and (he was so) those two was[EW:were] happy. +C and they decid/ed to do everything. +C now he is happy. +C and then he just want/ed to give them a balloon right now. +C then (he) he was so sick. +C then (the doctor was the) : the hospital guy was just wanted[EW:wanting] to check him with the doctor. +C he just want/ed a balloon right now. +=C I can take this off and put it on [+_bch]. +=C I can put it back on [+_bch]. +E be careful. +E and then what? +C then (he) he just give|give[EW:gave] him a (quarter) (quarter) quarter. +C then they was[EW:were] so happy because they got a balloon. +=C and then the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/427.slt b/data/ENNI_SALT/train/427.slt new file mode 100644 index 0000000000000000000000000000000000000000..a9319a489616595bc3653d1c511423ac32a43b0a --- /dev/null +++ b/data/ENNI_SALT/train/427.slt @@ -0,0 +1,91 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOE: 4/25/2000 ++CA: 4;7;16 ++Gender: F ++Context: Nar ++Group of CHI: SLI ++ID: 427=CHI ++Tape Location: Disk L8 Track 34 += [Bg:A1] +C Is playing bubbles [EU]. +C it big bubble/s come/ing [EU]. +C is throw[EW:throwing] them down [EU]. +C is : say[EW:saying] thank you [EU]. +C happy [EU]. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C Is go/ing swim/ing [EU]. +C is swim/ing [EU]. +C is go/ing down [EU]. +C is slippery [EU]. +C is ow owie [EU]. +C is hurt [EU]. +C is cry/ing [EU]. +C there the ask her[EU]. +E what did you say ? +C (um) because he was cry/ing because sad [EU]. +C (now is) now is not hurt [EU]. +C is mad [EU]. +C go away. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C Is happy [EU]. +C is play/ing [EU]. +C is like it [EU]. +C (it bro[-:]) it is under the water. +C say : [~_makes_growling_sound] I : mad [EU]. +C because : hmm [EU]. +C what did it (um) you [EU]. +C is : scream/ing [EU]. +C is[-:] do[EW:doing] it [EU]. +C can not do it [EU]. +C I : got it. +C [~_makes_growling_sound] I got it. +C thank you. +C so happy [EU]. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C (Is) is like[EW:liking] her [EU]. +C that *is his friend [EU]. +C is play/ing [EU]. +C is all done [EU]. +C it is full. +C is cry/ing [EU]. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C is go/ing [EU]. +C (is eat/ing) is eat/ing [EU]. +E : what is happen/ing? +C is eat/ing *a sandwich [EU]. +C is (drink/ing) drink/ing juice [EU]. +C is xx her. +C is : move/ing [EU]. +C is : (hur) hurt ear/s [EU]. +C say goodbye. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C Is have balloon [EU]. +E : anything else? +C balloon : that : a big[-:] [EU]. +C it is fun. +C is[-:] (um) take[EW:taking] it [EU]. +C can not do it [EU]. +C it is (g) go/ing up to *the sky[-:] [EU]. +C (is) is go[EW:going](*3) high [EU]. +C hopper[?] lost the balloon. +C is mad [EU]. +C he (s) want|want[EW:wants] the balloon. +C it is five dollar/s. +C (is) (is) : balloon is hold[EW:holding] it [EU]. +C is here that doctor [~_pronounced_'dotger'] [EU]. +C here balloon [EU]. +C is say[EW:saying] thank you [EU]. +C balloon is happy [EU]. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/429.slt b/data/ENNI_SALT/train/429.slt new file mode 100644 index 0000000000000000000000000000000000000000..c2d7c10eda84fd154df012fe68cbc79b07779e53 --- /dev/null +++ b/data/ENNI_SALT/train/429.slt @@ -0,0 +1,77 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 8/26/1995 ++DOE: 6/27/2000 ++CA: 4;10;1 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 429=CHI ++Tape Location: Disk L19 Track 17 += [Bg:A1] +C once upon a time : there was a[EW:an] elephant : and a giraffe. +C : and they all got together. +C : and then they falled|fall[EW:fell] in the swimming pool. +C : and then little elephant help/ed him. +C : and then it was all wet. += [Eg:A1] += [Bg:A2] +C once upon a time they want/ed to go in a pool. +C and the little guy said you could go in the pool. +C and then he went in there. +C : a long time ago her[EW:she] was run/ing. +C and her[EW:she] falled|fall[EW:fell]. +C and then her[EW:she] hurt herself. +C : and then the team : elephant help/ed her. +C : and then it hurted|hurt[EW:hurt]. +C and then it feeled|feel[EW:felt] all better. +C and he said do not do that again. += [Eg:A2] += [Bg:A3] +C once upon a time : elephant got [<~?_in_two] into [>~?_in_two] friend/s again [EU]. +C he like/3s play/ing with his airplane. +C and then : they went in the pool. +C and then it went in the water. +C (and) and the giraffe be mad at the elephant [EU]. +C and then it sinked|sink[EW:sank]. +C he said help (this) get this airplane. +C but he could not get it out : because it was too far away. +C and then her[EW:she] try/ed it. +C and it got : open [EU]. +C and he help[EW:helped] : him. +C and he like/ed the airplane now. += [Eg:A3] += [Bg:B1] +C once upon a time (they were) they were build/ing a sandcastle. +C and then it maked|make[EW:made] them more [EU]. +C : and then they put sand on it. +C and then they want/ed to make it again. +C and then he did not want to because he was cry/ing. +=C and that is the end [+_bch]. += [Eg:B1] += [Bg:B2] +C once upon a time they were have/ing a picnic. +C and then they took all the food to eat. +C and he was too full. +C he need/ed a little rest. +C and then : a little man came by. +C (and) and he was suppose/ed to help us. +C and he eat[EW:ate] too much. +C so they went along. += [Eg:B2] += [Bg:B3] +C (once upon) once upon a time he had a balloon : with a wagon. +C and then he want/ed it. +C and then he could have it. +C but then it got away. +C and then they were not suppose/ed to take it off then. +C and there was[EW:were] extra balloon/s. +C he want/ed one. +C : and that one said fifty dollar/s. +C (so h) so they got a different one a balloon. +C (and then) and then the daddy was wait/ing for him. +C he said daddy can I have one? +C and then he[?] gave him a dollar to get one. +C and then they both got one. +=C and that is the the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/439.slt b/data/ENNI_SALT/train/439.slt new file mode 100644 index 0000000000000000000000000000000000000000..956bcf31f02ca7d58582547af65ca8c122f49281 --- /dev/null +++ b/data/ENNI_SALT/train/439.slt @@ -0,0 +1,105 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 7/21/1995 ++DOE: 6/27/2000 ++CA: 4;11;6 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 439=CHI ++Tape Location: Disk L19 Track 48 += [Bg:A1] +C once upon a time there was a[EW:an] elephant and a giraffe. +C they were bounce/ing ball/s. +C the ball got in the mud. +C a[?] horse swam in the mud to get it. +C thank you cry/ed the elephant. +C I love you. += [Eg:A1] += [Bg:A2] +C once upon a time they saw a diving_board. +C they decid/ed if they want/ed to go on. +C lookit there is a diving_board. +C ooh and she almost fell in. +C ouch she stub/ed her knee. +C (the) (the) the teacher that own/ed that place came to help. +C owie owie. +C are you okay? +C let me help. +C and (you are) I am angry at you. += [Eg:A2] += [Bg:A3] +C once upon a time there was a[EW:an] elephant and a giraffe. +C you want to [~_wanna] go swim cry/ed the giraffe? +C lookit I got a[EW:an] airplane. +C [~_high_pitched_voice] oh no the airplane is going blast off! +C oh no it got wreck/ed. +C [~_growl_sound]. +C [~_deep_voice] what did I tell you? +C [~_high_pitched_voice] but it was not my : do[?] [EU]. +C [~_high_pitched_voice] it just flew off by itself. +C [~_sound_effects] he is try/ing to get it. +C [~_high_pitched_voice] it is sink/ing! +C [~_high_pitched_voice] it is sink/ing! +C [~_crying_sounds] well I can go get it. +C (that is him mama) that is his mama. +=C do some kid/s (leave) (left) leave their sticker/s [+_bch]? +E no they all take them. +C I got it. +C [~_high_pitched_voice] thank you. +C you are welcome. +C [~_high_pitched_voice] (hm) I love you. +=C that is the end [+_bch]. += [Eg:A3] += [Bg:B1] +C once upon a time there was a dog and a rabbit. +C they were play/ing in the sand. +E maybe you can speak up a little louder. +C they put sand (in the) into : a bucket. +C and they made (a sa) a sandcastle. +C they put the window on and the flag on. +C the castle got wreck/ed. +C the dog had to fix it. +C but it was too late. +C (it did not) it did not get fix/ed. +=C that is the end [+_bch]. += [Eg:B1] += [Bg:B2] +C once[EW:one] time : there was : a puppy and a rabbit. +C they were go/ing for a picnic. +C they met each other. +C he had : ice cream/s bread : sandwich/s : and all that kind of stuff. +C (he) rabbit ate too much. +C he was get/ing a stomachache. +C but the dog was not. +C he did not eat so much. +C the rabbit got bonk/ed on the head with : a ball. +C (he) the rabbit pretend/ed (he was : a) he was a girl. +C come on rabbit shout/ed the dog. +C (I should) I should fix you up rabbit. +C let us go home now. +=C and that is the end [+_bch]. += [Eg:B2] += [Bg:B3] +=C this one/z the rabbit and the dog too [+_bch]? +E umhm. +C one time there was a rabbit : and a dog. +C the dog was (p) carry/ing his wagon. +C he met the rabbit : come/ing along. +C lookit there is a balloon! +C do not tie it off [EU]! +C and it flew away. +C the dog was get/ing mad. +C the balloon man he had lot/s of balloon/s. +C so he decide/ed to give him another one. +C I would like a blue one. +C [~_deep_voice] do you have any money? +C [~_high_voice] no I do not. +C [~_deep_voice] you are naughty. +C (they) [~_high_voice] goodbye. +C (hm) [~_high_voice] mama mama do you have any money? +C [~_high_voice] I want (a new) another balloon : from that balloon man. +C [~_deep_voice] do you think so[?]? +C [~_high_voice] yes. +C : and they both got one. += [Eg:B3] diff --git a/data/ENNI_SALT/train/443.slt b/data/ENNI_SALT/train/443.slt new file mode 100644 index 0000000000000000000000000000000000000000..c028c337d806824ced7d2a96668ef8852606b7e7 --- /dev/null +++ b/data/ENNI_SALT/train/443.slt @@ -0,0 +1,80 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 12/05/1995 ++DOE: 11/20/2000 ++CA: 4;11;15 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 443=CHI ++Tape Location: Disk L20 Track 98 += [Bg:A1] +C there is a giraffe and a[EW:an] elephant. +C the giraffe jump/3s into the water. +C and he try/3s to get the ball. +C then : the : giraffe swim/3s over to the elephant. +C and the elephant : give/3s the giraffe another ball. +C then[!] : the elephant get/3s her own ball. += [Eg:A1] += [Bg:A2] +C there is the giraffe and the elephant. +C the elephant point/3s to the dive/ing board. +C the elephant run/3s to it. +C the elephant hurt her knee. +C another elephant come/3s along. +C the lifeguard put/3s a bandaid on the elephant. +C and then the elephant look/3s at it. +C and then the lifeguard say/3s do not run. += [Eg:A2] += [Bg:A3] +C the giraffe has a[EW:an] : airplane. +C the elephant look/3s at it. +C and then the elephant fly/3s it. +C then : she drop/3s it in the pool. +C then : she says uhoh. +C and the giraffe is very mad. +C the lifeguard say/3s : uhoh. +C the elephant say/3s : could you get it out? +C the lifeguard try/3s to reach it. +C : but he could not. +C : then : the giraffe is very sad. +C and then another elephant come/3s along : with a net. +C then she get/3s it. +C then she give/3s it to the giraffe. +C and the giraffe stop/ed cry/ing. +C then (the) the giraffe hug/3s it : because he miss/ed it if it was in the water all the time [EU]. += [Eg:A3] += [Bg:B1] +C there is a rabbit look/ing at a dog. +C there is a dog : build/ing a sandcastle. +C a rabbit is pour/ing the sand onto the sandcastle. +C and it fall/3s down into a big pile. +C the dog is very sad. += [Eg:B1] += [Bg:B2] +C there is a dog that see/3s a rabbit. +C the dog : share/3s his : lunch with the rabbit. +C they have a delightful picnic. +C then the rabbit is very full. +C : the dog : call/3s the doctor. +C and then the doctor : (um) come/3s to the rabbit. +C and then : the dog pull/3s the doctor really close to the picnic basket. +C and she : look/3s at him. +C and she say/3s : you ate too much food. +C then : he is all better again. += [Eg:B2] += [Bg:B3] +C the dog has a balloon (on) on it/z wagon. +C the rabbit : grab/3s it. +C then the rabbit untie/3s it. +C then the rabbit (let/3s uh) let/3s go of it. +C then the dog is very mad. +C then a : rabbit with a moustache come/3s along. +C then : he give/3s the rabbit a very new balloon. +C then he take/3s it : and put/3s it in the rabbit/z hand. +C and then : the : (um) dog is very happy. +C : then there is a doctor. +C (um) the rabbit say/3s could you get a balloon? +C then she get/3s one. +C then : she give/3s it to the rabbit : and then another one to the dog. += [Eg:B3] diff --git a/data/ENNI_SALT/train/445.slt b/data/ENNI_SALT/train/445.slt new file mode 100644 index 0000000000000000000000000000000000000000..88643973b968d804b890f94af82a0f651b84596b --- /dev/null +++ b/data/ENNI_SALT/train/445.slt @@ -0,0 +1,109 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 8/10/1996 ++DOE: 5/25/2001 ++CA: 4;9;7 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 471=CHI ++Tape Location: Disk L28 Track 51 += [Bg:A1] +C a giraffe *is play/ing with a[EW:an] elephant [EU]. +C like they are play/ing with the ball. +C and it fell into the pool. +C (and) and then (the g) (the) the zebra (uh s) swam to get it. +C (and the) (the) (and the gira) (and) and the giraffe got it and gave it to the elephant. +C and (um) the elephant was okay. +C but the giraffe was all wet. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C the zebra and the elephant went to the pool again. +C (and they wanted to s) and the elephant want/ed to swim : til : it kick/ed it/z face. +C and the : giraffe ran after it. +C (and at last) and the giraffe just ran somewhere. +C (uh) but the elephant hurt it/z knee. +C and she was cry/ing so much that the elephant stop/ed run/ing (when an elephant) when another[!] elephant came : and said what is wrong? +C she scratch/ed me. +C ow. +C so : I could get a bandaid. +C and : (you should not know that) (you should not) no[!] run/ing. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C the elephant and the giraffe went to the pool again. +C and then : (they) they play/ed with a little plane. +C but the elephant took it from the giraffe! +C (and they) and they drop/ed into the pool [EU]. +C and the giraffe was so mad to[EW:at] the elephant that : the elephant was too scare/ed to get it. +C when : (the) the other elephant came and said what is go/ing on around here[!]. +C and the (f) other elephant answer/ed we are play/ing with the plane. +C (but it) but it drop/ed into the pool. +C I could get it[!] the other elephant said. +C it is no use. +C I could not (the) the elephant said. +C then another elephant came over and said what is the problem? +C (the net) the plane : drop/ed into the pool [~_different__speaking_voice]. +C well I got a net to catch it [~_different_speaking_voice]! +C (and she did) and (she) she did (ju) just that. +C I got : the plane for you. +C oh thank you the giraffe said. +C giraffe : hug/ed it. +C and the elephant was a little happy again. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C a rabbit and a dog were : play/ing in the sand and build/ing a sandcastle. +C and the dog like/ed to : make the (sand) sandcastle. +C and the bunny : like/ed to help. +C and he put some on. +C and the dog was too frighten/ed to talk. +C [~_right] (and it was) and it was ruin/ed (the) the bunny said after he did it. +C and : the : rabbit did not say another : word. +C and the dog : cried a little. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C the dog and the bunny were have/ing a picnic today. +C and they start/ed to eat. +C and the bunny *was sweated|sweat[EW:sweating] : and fell to : the ground [EU]. +C (but) but the dog was still eat/ing. +C ah I can not take it any more the bunny said. +C and then the mother bunny came : and said what is the matter little one? +C and the dog said : he *was sweated|sweat[EW:sweating] and fell to the ground [EU]. +C oh my goodness [~_high_pitched_voice]. +C are you all right little one [~_high_pitched_voice]? +C I am okay [~_high_pitched_voice]. +C let us go home okay [~_high_pitched_voice]? +C goodbye [~_high_pitched_voice]. += [Eg:B2] += [Bg:B3] +C the bunny and the dog had a wagon that had (uh uh uh a big bunny's uh) a big bunny/z balloon. +C and : they like/ed it so much that (they) he play/ed with it. +C but then : they try/ed to pull[?] it easily. +C and the dog almost : *was sweated|sweat[EW:sweating] all the time [EU]. +C and the balloon flew away. +C and they both try/ed to get it. +C but they could not. +C (and they are so) and the dog was so angry. +C when they saw the big bunny (with) hold/ing some balloon/s. +C [~_high_voice] hey big one. +C (have you) (we) we just had a wagon that had one of your balloon/s. +C [~_deep_voice] oh? +C [~_deep_voice,_menacing_tone] (you y y you) and where did you put it? +C [~_high_voice] well it flew away. +C [~_makes_growling_sound_'errrr']. +C [~_high_voice] it is okay. +C [~_high_voice] how come : there is[EW:are] two? +C [~_high_voice] oh that is just my friend. +C and then the mother came again and : said what is up now [~__different_speaking_voice]? +C oh we just found a balloon man. +C and we had one of his balloon/s. +C oh [~_different_speaking_voice]. +C (and and) and (uh) he had a balloon that said : five balloon/s. +C (but he) (he) but he just had four because we had one of them. +C but it is okay he said. +C : (because) and he gave both of them a balloon. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/446.slt b/data/ENNI_SALT/train/446.slt new file mode 100644 index 0000000000000000000000000000000000000000..1245f229644c14cf85bd9e573479663413c141c1 --- /dev/null +++ b/data/ENNI_SALT/train/446.slt @@ -0,0 +1,83 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 9/12/1996 ++DOE: 2/16/2001 ++CA: 4;5;4 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 446=CHI ++Tape Location: Disk L25, Track 48 += [Bg:A1] +C he saw a balloon. +C and he was bounce/ing it. +C and they drop/ed it in the water. +C he went to swim for it. +C and he gave it to her. +C (and then : sh) (and then she was too) and then (wa) she was happy. += [Eg:A1] += [Bg:A2] +C [~_what_(i)s_that] : they were go/ing to get the ball. +C she was go/ing to get it first. +C he ran for his life. +C and then she got it. +C and then she hurt herself. +C and then another elephant came. +C and then she : start/ed to cry. +C and then she help/ed her up and put a bandaid on her. +C and then she sitted|sit[EW:sat] there. +C and the lifeguard came. += [Eg:A2] += [Bg:A3] +C (she) he had a[EW:an] airplane. +C and she want/ed to give it to her. +C (and then[-:] she) and then he flied|fly[EW:flew] it. +C then : she got it from him. +C and then it fell in the : water. +C (and) and he got so mad at her. +C (then anoth) and the lifeguard came. +C and then she ask/ed if he can pick that up. +C and he try/ed to get it. +C but he could not reach. +C then he cry/ed. +C and then he try/ed to get it. +C (and then he getted|get[EW:got] it) and then he got it from out of the water. +C and he gave it to : him. +C and he said thank you. += [Eg:A3] += [Bg:B1] +C they were play/ing in the sandbox[-:] . +C he was dig/ing for sand : then put/ing it in the bucket. +C and he pour/ed it on the castle. +C then : he was : sad. +C then he (th s) thought (of s) of build/ing it again. += [Eg:B1] += [Bg:B2] +C he was walk/ing towards (a) a bunny. +C they ate : a picnic. +C then he : ate too much. +C and then he was full. +C then he ran to someone who could help. +C then he pull/ed her shirt. +=C what is this one (um) [+_bch]? +E look at the picture/s. +=C I do not know which one it is [+_bch]. +E let us try the next page. +=C like : turn the next page [+_bch]. +C and (then they) then they went home. += [Eg:B2] += [Bg:B3] +C he was take/ing a balloon to someone. +C (and then he took) and then he want/ed to give it to him. +C he tie/ed it off. +C then it flew up in the air. +C then he got so mad. +C then another man came by with balloon/s. +C (and he gave him) and he ask/ed for another balloon. +C (and h) and he said no. +C then they were so upset. +C then (they) another bunny was stand/ing there. +C and he said : look at those balloon/s. +C then he want/ed to give him[!] a balloon. +C (then they got) then they both got one. += [Eg:B3] diff --git a/data/ENNI_SALT/train/449.slt b/data/ENNI_SALT/train/449.slt new file mode 100644 index 0000000000000000000000000000000000000000..e596b413478deb600c7be2e45799d83593ba2b0d --- /dev/null +++ b/data/ENNI_SALT/train/449.slt @@ -0,0 +1,80 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOE: 1/17/2001 ++CA: 4;4;12 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 449=CHI ++Tape Location: Disk L23 Track 84 += [Bg:A1] +C they bought candy. +C they are shout/ing. +C they jump/ed in. +C [~_another_child's_voice_heard_in_background] and he want/3s : the gum. +C then she is not let/ing him have it. += [Eg:A1] += [Bg:A2] +C they are scare/ed. +C they think there is a shark in there. +C they are run/ing away. +C she got a[EW:an] owie. += %com: another child say/3s: it was a scrape. +=C no I get to tell what I want [+_bch]. +C and she was cry/ing. +C and (she) he put a bandage on it. +C and they are sit/ing at a bench. +C and somebody came over. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C he found a[EW:an] airplane. +C and he want/3s to keep it. +C and she stoled|steal[EW:stole] it from him. +C and it fell in : front. +C and it broke. +C and : somebody came over. +C and they try/ed to take it out. +C and he reach/ed over. +C and they were sad. +C and : he could not get it out still. +C and they pour/ed [EU]. +C : [~_laughs] and he got it out. +C and they were happy. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C they are play/ing in the sandbox. +C they are build/ing a castle. +C he try/ed to break it. +C and it was cover/ed up. +C and he was cry/ing. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C they are walk/ing. +C they are eat/ing. +C he was eat/ing and drink/ing. +C she (wa) was rest/ing. +C and (sh she) she was run/ing. +C and she was pull/ing on her shirt. +C and then she got in a time out. +C and (sh) a stranger took her home. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C he was bring/ing the wagon and a balloon. +C and they were fight/ing over it. +C and he took his balloon. +C and then it went up in the air. +C and it pop/ed. +C and : the balloon man came. +C and : he ask/ed them if we want/ed another one. +C and he got one. +C and they all pop/ed. +C and they went away. +C and he telled|tell[EW:told] his mother about it. +C and then : his mother got some money for him. +C and then they each got balloon/s. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/450.slt b/data/ENNI_SALT/train/450.slt new file mode 100644 index 0000000000000000000000000000000000000000..98c39bb45f518db9236713ee20b5f3913dff3227 --- /dev/null +++ b/data/ENNI_SALT/train/450.slt @@ -0,0 +1,81 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 10/26/1996 ++DOE: 2/21/2001 ++CA: 4;3;26 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 450=CHI ++Tape Location: Disk L25, Track 62 += [Bg:A1] +C the guy was walk/ing. +C and : him[EW:he] saw the ball. +C him[EW:he] fell down in the water. +C him[EW:he] (can not) can not get up. +C he got up. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C (um) him[EW:he] was not come/ing in. +C him[EW:he] did not come in. +C and it was (the k) the elephant jump/ed in [EU]. +C and the elephant was scare/ed. +C and the elephant was walk/ing and close[EW:closing] hims[EW:his] eyes. +C and (um um) hims[EW:his] feet hurted|hurt[EW:hurt]. +C (um) and (him) him[EW:he] want/ed to go home. +C him[EW:he] was sitted|sit[EW:sitting] on a : chair. +C him[EW:he] stay/ed there. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C (um) him[EW:he] was laugh/ing[-:] . +C him[EW:he] had an airplane. +C and him[EW:he] was fly/ing it. +C (and him) and him[EW:he] put it in the water. +C and him[EW:he] was float/ing down. +C and him[EW:he] was mad. +C and : he can not swim in there. +C him[EW:he] was try/ing to catch it. +C (him wa) him[EW:he] was sad. +C him[EW:he] was try/ing to catch a fish. +C him[EW:he] was try/ing to get (the uh) (um the) (um the um) helicopter. +C (um) him[EW:he] (uh) got it. +C (him uh was uh) him[EW:he] was sleep/ing. +=C end [+_bch]. += [Eg:A3] += [Bg:B1] +C him[EW:he] was : make/ing a castle. +C him[EW:he] was make/ing : a house. +C him[EW:he] was go/ing to[:_gonna] make a : castle with a building. +C him[EW:he] breaked|break[EW:broke] it. +C him[EW:he] make[EW:made] a different one. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C the guy was (walk/ing with snow) : make/ing a castle with (ca um) snow. +C sit/ing [EU]. +C make castle/s to put snow [EU]. +C (um) carry/ing it walk/ing [EU]. +C and stay/ing [EU]. +C (um) : fell down [EU]. +C walk/ing [EU]. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C (the : uh) him[EW:he] was pull/ing the sled[~?_shried]. +C (and) and the balloon *was stay/ing [EU]. +C and him[EW:he] was hold/ing the balloon. +C and the balloon flied|fly[EW:flew] away. +C and it poppeded|pop[EW:popped]. +C and the guy made more balloon/s. +C him gived|give[EW:gave] it to the : bunny rabbit. +C (and) : and : the guy is : mad. +C and he had no more balloon/s left. +C him[EW:he] was go/ing back home. +C him[EW:he] was : get/ing more balloon/s. +C him[EW:he] got two balloon/s. +C him got xxx. +C and they fly away. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/452.slt b/data/ENNI_SALT/train/452.slt new file mode 100644 index 0000000000000000000000000000000000000000..79c30241478d055a601bea332336e409a5d52e21 --- /dev/null +++ b/data/ENNI_SALT/train/452.slt @@ -0,0 +1,82 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOE: 2/21/2001 ++CA: 4;0;12 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 452=CHI ++Tape Location: Disk L25, Track 66 += [Bg:A1] +C (um) : a giraffe and a[EW:an] elephant [EU]. +C another giraffe and a[EW:an] elephant [EU]. +C elephant [EU]. +C elephant with a ball hold/ing it [EU]. +C a[EW:an] elephant : and a giraffe [EU]. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C a[EW:an] elephant and a giraffe [EU]. +C a[EW:an] elephant and a giraffe again [EU]. +C elephant and giraffe again [EU]. +C a[EW:an] elephant and a giraffe : again [EU]. +C a[EW:an] elephant (uh) again [EU]. +C two elephant/s and (a) one giraffe [EU]. +C a[EW:an] elephant [EU]. +C two elephant/s and one giraffe [EU]. +C two elephant/s and one giraffe [EU]. +C two only (e) elephant/s [EU]. += [Eg:A2] += [Bg:A3] +C a[EW:an] elephant and a giraffe. +C a[EW:an] elephant and a giraffe. +C elephant and a giraffe [EU]. +C a[EW:an] elephant and a giraffe with a[EW:an] airplane in the water [EU]. +C a[EW:an] : elephant and a giraffe with a[EW:an] airplane in the water [EU]. +C two elephant/s and one giraffe [EU]. +C two elephant/s and one giraffe [EU]. +C two elephant/s : one giraffe [EU]. +C two elephant/s and one giraffe [EU]. +C (two elephant/s) : three elephant/s one : giraffe [EU]. +C three elephant/s : and one giraffe [EU]. +C only (one) : (one) : one giraffe and one elephant [EU]. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C (um) a bunny : and (a : um :) another bunny : and a sandcastle [EU]. +C two bunny/s are hold/ing some xx. +C a bunny *is make/ing a sandcastle [EU]. +C the bunny dump/ed it on the sandcastle. +C broke the sandcastle [EU]. +C fix/ed the sandcastle [EU]. += [Eg:B1] += [Bg:B2] +C (um) a basket [EU]. +C and the bunny is hold/ing the basket. +C the carrot/s[-:] [EU]. +C : the food[-:] [EU]. +C more food [EU]. +C more food [EU]. +C more food [EU]. +C more food [EU]. +C more [EU]. +C more [EU]. += [Eg:B2] += [Bg:B3] +C a bunny and a balloon[-:] [EU]. +C a scooter and a bunny *are come/ing [EU]. +C and a bunny [EU]. +C and a balloon *is on the scooter [EU]. +C a balloon *is on the scooter [EU]. +C the balloon fell off and flew away. +C the balloon broked|break[EW:broke] [~_pronounced_'broke-ed']. +C and : more balloon/s [EU]. +C more balloon/s [EU]. +C more balloon/s [EU]. +C more balloon/s [EU]. +C more balloon/s [EU]. +C more [EU]. +C more [EU]. +C only two[-:] [EU]. +C (um) : two balloon/s [EU]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/453.slt b/data/ENNI_SALT/train/453.slt new file mode 100644 index 0000000000000000000000000000000000000000..d66fbfc5090b8222e67f902b0f41ec90f59640d0 --- /dev/null +++ b/data/ENNI_SALT/train/453.slt @@ -0,0 +1,83 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 8/07/1996 ++DOE: 1/17/2001 ++CA: 4;5;11 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 453=CHI ++Tape Location: Disk L23 Track 108 += [Bg:A1] +C the elephant (and the hor) (and the uh[-:] ) [~_whispers:_I__do_n(o)t_know_that_one] (uh) [~_the_long_neck_(be)cause_two_things__have_long_necks,_little_foot/z_Dad_and_little_foot/z_mom_and__lit_and_uh_a_giraffe,_that_(i)s_called_a_giraffe] and (zebra) giraffe [EU]. +C and then the ball went into the pool when the giraffe and[!] the elephant were play/ing. +C and then the (uh) giraffe went into the water. +C (and then) (and then[!] the) and then the giraffe had water come/ing out of his ear. +C (and then the ball go) (and then the zeb) (and then) and then the zebra got it : and gived|give[EW:gave] it to the (uh) elephant. +C and then : the elephant was happy. +C and so was the zebra too. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C they were go/ing to[:_gonna] go into the swimming pool when there was a diving_board there. +C then[-:] (the uh um) the elephant want/ed to go first. +C and then the elephant : slip/ed. +C (and hurt) and then : he hurt her knee. +C and then she cry/ed. +C and then the coach comed|come[EW:came] over. +C (and sh) : and she was still cry/ing. +C and then it was all better. +C and the coach was angry. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C (uh they were gon) the elephant was go/ing to[:_gonna] fly a[EW:an] airplane. +C (then the airplane) (then the zeb) then the zebra fly|fly[EW:flew] it. +C (and then the uh) and then the elephant [~_makes_raspberry__noise] got it away from the zebra. +C and (then) then the (uh) elephant throwed|throw[EW:threw] it in the air. +C and it land/ed in the swimming pool. +C and : the zebra was mad. +C and then[-:] (the coach try/ed to get it) the zebra coach try/ed to get it. +C and then when the zebra coach try/ed to get it : it was too far. +C and then when the coach got it : it was too far (t) too! +C and (then) then the zebra was sad : and cry/ed. +C and then the girl comed|come[EW:came] over and got it with her own fish/ing net. +C and then she got it! +=C and then that was the end [+_bch]. +C (and) : and the zebra was so happy. += [Eg:A3] += [Bg:B1] +C (uh) the rabbit and the dog were play/ing in the sandbox. +C they were go/ing to[:_gonna] build : a sandcastle. +C one pull/ed sand on top. +C and then it broked|break[EW:broke]. +C and then the dog was sad. +=C and the end [+_bch]. += [Eg:B1] += [Bg:B2] +C (the) the dog and the rabbit were go/ing to[:_gonna] have a picnic. +C (uh) the rabbit ate too much food. +C the rabbit was : sick. +C and then he got bonk/ed on the head (with something) : with a rock. +C and then the hospital : thing comed|come[EW:came]. +C and then the dog try/ed to get her. +C and then the hospital girl comed|come[EW:came] over : and fix/ed the rabbit. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C (uh) the puppy want/ed to get a balloon. +C (then the balloon) then the rabbit would not get it. +C and the rabbit tie/ed it to the (uh) : wagon. +C and then it flew up to the sky. +C and then the dog was mad. +C and then : the dog was mad still. +C and then the rabbit : want/ed to get a balloon. +C and then : (five bucks) : it was five buck/s for a balloon. +C and then : they are sad. +C and then : (the) : their mom came. +C (and then) and then the rabbit said they will not give me a balloon. +C and then : the mom gave him (two do) five dollar/s. +C and then they got : balloon/s. +C and they were happy after all. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/454.slt b/data/ENNI_SALT/train/454.slt new file mode 100644 index 0000000000000000000000000000000000000000..758ad15a9630484a2bebe1829c4d18af1ef34c7c --- /dev/null +++ b/data/ENNI_SALT/train/454.slt @@ -0,0 +1,80 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 10/01/1996 ++DOE: 2/21/2001 ++CA: 4;4;20 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 454=CHI ++Tape Location: Disk L25, Track 76 += [Bg:A1] +C (um) : take/ing a ball out [EU]. +C the ball got dirty. +C and : the boy (got) : falled|fall[EW:fell] in the water. +C (um) : the girl help/ed him get up. +C and they play/ed basketball. +=C and that is the end again [+_bch]. += [Eg:A1] += [Bg:A2] +C (um : they) (they s) they did not jump in the water. +C and the girl is go/ing to [~_gonna] jump in the water. +C (um a) : a girl was (um) : run/ing. +C girl hurt herself [EU]. +C she start/ed to cry. +C (s um : that) the boy is give/ing her a bandaid. +C (uh : well) she had to sit down so it could feel[!] better. +C and the boy said are you fine. +=C that is the end [+_bch]. += [Eg:A2] += [Bg:A3] +C (uh) the little girl is make/ing a funny face. +C (um) the boy was (um) fly/ing the airplane. +C and now the girl try/ed to fly the airplane. +C and (now) now the girl (um) drop/ed it in the water. +C (now) now the boy got mad. +C (now) (now the) (now the) now the girl got scare/ed of (the) the boy. +C (uh now) (now) now the girl got scare/ed again. +C now (the) the coach was try/ing to get it. +C now the coach (tri um) try/ed to get it. +C (and it um) and then the coach did not get it. +C now the girl : try/ed to get it with the net. +C (um) the girl almost got it. +C (now) now the girl gived|give[EW:gave] it to the boy. +C (now) now the boy was happy. +=C and that is the end [+_bch]. += [Eg:A3] += [Bg:B1] +C mouse is dig/ing. +C put/ing it in the bucket [EU]. +C (um) dump/ing it on the castle [EU]. +C it : broke. +C make/ing it [EU]. += [Eg:B1] += [Bg:B2] +C (um) : mouse is go/ing on a field[!] trip. +C mouse is have/ing a picnic. +C (um) : they (s) spill/ed all the juice. +C (um) : they : broke their juice. +C mommy comed|come[EW:came]. +C (um : um uh : um) mommy took the : baby away. +C (um : um) the mommy took the[-:] : baby away again. +C and : they went back home. +=C (um) that is the end [+_bch]. += [Eg:B2] += [Bg:B3] +C take/ing the balloon for a ride [EU]. +C and the : boy is take/ing the balloon away. +C (um) : he is (um) pull/ing the balloon off. +C the balloon is fly/ing away. +C (um) the boy got mad[!]. +C (um) : daddy : gived|give[EW:gave] them some more (um) balloon/s. +C and then : daddy gived|give[EW:gave] (um) the boy some balloon/s. +C (and) : and (then) then the boy got one. +C (then) : and the baby[!] got one too. +C and mommy was (uh) : look/ing that way. +C and : (that) (that) the boy got : the : balloon/s. +C and (um the) the daddy give|give[EW:gave] the : mommy some money. +C and then : (that um) the baby has got some balloon/s. +=C (that) that is the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/455.slt b/data/ENNI_SALT/train/455.slt new file mode 100644 index 0000000000000000000000000000000000000000..ffa7d89938cef886675cb144a123d76eefa4a603 --- /dev/null +++ b/data/ENNI_SALT/train/455.slt @@ -0,0 +1,91 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 5/14/1996 ++DOE: 1/24/2001 ++CA: 4;8;10 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 455=CHI ++Tape Location: Disk L24, Track 14 += [Bg:A1] +C I see that the elephant is (a bounce) bounce/ing (three ball/s at) : a ball[!]. +C and she is go/ing to throw it into one of the hoop/s[!]. +C and then it felled|fall[EW:fell] into the water. +C and then : the zebra is try/ing to swim and get it. +C and then : the elephant is go/ing to : get the ball for him. +C and then[-:] she is smile/ing with her ball. +=C and that is : the end I think [+_bch]. += [Eg:A1] += [Bg:A2] +C [~_all_right] it look/3s like she is look/ing at the water ! +C (and she) and I think she is go/ing to [~_gonna] walk[!] into the water. +C and she slip/ed[!]. +C and then she scratch/ed her knee. +C and : I think (um) : the guard of the swimming pool (she) she is run/ing : to her. +C (and she) and it look/3s like she is cry/ing[-:] . +C (and then[-:]) [~_I_think__I_(a)m_ready_for_the_next_page] and then it look/3s like : (um : he is) : he is mad[!] at her. +=C and I think that is about the end [+_bch]. += [Eg:A2] += [Bg:A3] +C (I see : um the[-:] : um) I see the[-:] zebra. +C he has a[EW:an] airplane in his hand[-:] . +C (and he is) and he is fling/ing his tongue out it look/3s like and : sound/ing[EW:sound/3s] like it is a[EW:an] airplane. +C and then the elephant took it away. +C and then she accidentally drop/ed it into the water. +C and then[!] he was mad[!] at her : (cau) . +C and then he[!] came. +C (and then[-:] she) and then (she : like want/ed) (she told her wha) (she) she[!] told him what happen/ed. +C and : he try/ed[!] to get it out. +C but it keeped|keep[EW:kept] float/ing and float/ing farer[EW:further]. +C and then they could not get it. +C somebody need/ed to swim in there and get it : maybe. +C and then she got something to get it out. +C she try/ed (it) to get it and get it. +C and it still would not get in. +C and then she got it out. +C then she : got it for him. +C and then (she hug) (he hug/ed it very) the zebra hug/ed it very much. +=C [~_singsong_voice] the end [+_bch]. += [Eg:A3] += [Bg:B1] +C I see they are make/ing a sandcastle. +C and it is very nice. +C and I see the rabbit[~!_laughing] is go/ing to flip that bucket over. +C and then[-:] (he) the bunny (has) is go/ing to pour it on top of the sandcastle. +C and then it was wreck/ed. +C then he : is like oh no! +C and[-:] now the : dog is cry/ing. +=C and then that is the end [+_bch]. += [Eg:B1] += [Bg:B2] +C I see they are go/ing to have a picnic! +C they are eat/ing. +C (hm) : and I think that rabbit is too full[-:] . +C I think he ate too much candy or too much food[-:] . +C (and) and the dog *is go/ing to[:_gonna] tell (th) another rabbit : the nurse : rabbit [EU]. +C (hm) : and (he is look/3s like) : he is like faint/ing[!]. +C and the : nurse like : is tell/ing him something : to put on his hand[?]. +C and then he is walk/ing. +C and the dog is stand/ing up by the picnic. +=C I think that is about it [+_bch]. += [Eg:B2] += [Bg:B3] +C I think[!] he has a : wagon and a : balloon tie/ed onto his wagon. +C and the bunny want/3s to come along with[!] him I think. +C and then he saw the balloon. +C and then he try/ed to tie it off[-:]. +C and then it : sail/ed up into the sky! +C and then[!] the bunny look/ed up in the sky[-:]. +C and then the dog was mad at him! +C and then (they s) they went and saw (ano) (lots o) other balloon/s. +C and then the bunny came after[!] those balloon/s. +C and the bunny said can I have another balloon[-:]? +C but he had no cents[EW:money]. +C but[-:][!] (he) (he wa) and he had a smile again. +C and then[-:] : the other bunny came along. +C and (he) (the oth) the little bunny said can you give me some money? +C and : well she said I do not know! +C so she gave : him some money : for a balloon. +C and then she smile/ed[-:]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/456.slt b/data/ENNI_SALT/train/456.slt new file mode 100644 index 0000000000000000000000000000000000000000..bae989fca0949f4e1094dac4b9a40bed2f90062b --- /dev/null +++ b/data/ENNI_SALT/train/456.slt @@ -0,0 +1,78 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 12/30/1996 ++DOE: 2/21/2001 ++CA: 4;1;22 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 456=CHI ++Tape Location: Disk L25, Track 80 += [Bg:A1] +C there is a[EW:an] elephant talk/ing to a horse and play/ing basketball. +C then he drop/ed it in a pile in the mud. +C then he falled|fall[EW:fell] in the mud. +C then he help/ed him. +C then he (um) : went to the[-:] park and play|play[EW:played]. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C he (um) jump/ed in the water. +C then he (um) push/ed him in. +C then he falled|fall[EW:fell] in the water. +C then he laugh/ed. +C then he (um) : runned|run[EW:ran] to the race. +C then he smile/ed. +C then he : sit|sit[EW:sat] on the chair. +C then (um) he[-:] (um) was cold. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C (one the) once upon a time (then) (um) there was (um) a lion. +C then he flied|fly[EW:flew] the airplane. +C then he fight|fight[EW:fought]. +C then he[-:] (um) drop/ed his airplane in the water. +C then (he um) it was gone in. +C then (um he) they can not find it. +C then[-:] they were so mad. +C then (they k) they are try/ing to reach the airplane. +C then (they) (they) they can not reach it. +C then (they catched|catch[EW:caught]) they are go/ing to catch it with a (um) : refire[c]. +C then they catched|catch[EW:caught] it. +C then they (k um) catched|catch[EW:caught] : it. +C then : he could fly it again. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C (um they) they maked|make[EW:made] a castle. +C then the rabbit : (um) help/ed him. +C then he put/3s on lots of sand. +C then it broke. +C then they have to make it again. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C (um) once upon a time they had a picnic. +C then they (um) eat everything. +C (then they) then their [~_coughs] tummy[EW:tummy/s] was[EW:were] big. +C (then) [~_coughs] then (um) they were all full. +C then : they help/ed him. +C then they pull/ed his shirt : because (um) they were eat/ing lots of jam. +C then (they) he got better. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C once upon a time he pull/ed a wagon with a balloon. +C then (he) (um some) someone stole the balloon. +C then it (um) : fly|fly[EW:flew] at the sky. +C then (um) they can not reach it. +C then (um they) : they pop/ed it. +C then they had lots of balloons. +C then they gived|give[EW:gave] lots of balloon/s. +C then : (um) they drop/ed it again[!]. +C then he flied|fly[EW:flew] it. +C (then he almost) : then he give|give[EW:gave] it to them. +C then (um[-:]) he[-:] give|give[EW:gave] it to them. +C then : they had another balloon from him and him. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/457.slt b/data/ENNI_SALT/train/457.slt new file mode 100644 index 0000000000000000000000000000000000000000..cbe00ca82d5ac316728f2d66df598a39946e50cf --- /dev/null +++ b/data/ENNI_SALT/train/457.slt @@ -0,0 +1,91 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 6/03/1996 ++DOE: 1/24/2001 ++CA: 4;7;21 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 457=CHI ++Tape Location: Disk L24, Track 20 += [Bg:A1] +C he is take/ing a ball[-:] . +C and then it went in the water[-:] . +C then : the cow went in the water and *was try/ing to get it [EU]. +C (and he went) and he is try/ing to get up : with the ball. +C and then : he got out. +C and they were happy. +=C and that is all [+_bch]. += [Eg:A1] += [Bg:A2] +C he[-:] want/3s to go in the : water. +C then : he is go/ing into the water[-:] . +C and he slip/ed[-:] . +C and he bonk/ed her : knee. +C and he got hurt. +C and then he said are you okay? +C then her[EW:she] put a : bandage on. +C and then : (um it did) : (i i) he said is it okay now? +C then he was mad. +C so he : push/ed [?] go that way [EU]. +=C that is all [+_bch]. += [Eg:A2] += [Bg:A3] +C he was play/ing with a[EW:an] : airplane. +C and he was play/ing it go/ing up : and a twist [EU]. +C then[-:] : (um um) the elephant got it. +C then her[EW:she] put it in the water[-:]. +C then (the) (the thing) the guy was mad[-:] again. +C and the thing was mad[-:]. +C (and the) (and the guy wa) and another guy was mad too[-:]. +C (and then) and then (he) he was still happy. +C and he was try/ing to get it. +C but he was cry/ing[-:] . +C and then the elephant (did) had : the head catcher. +C then he got it[-:] : for him. +C and then : her[EW:she] gived|give[EW:gave] it back (to) : to (thing) the guy. +C and he love/ed it again. +=C that is all [+_bch]. += [Eg:A3] += [Bg:B1] +C [~_no_it_(i)s_not_the_same_picture_story] it is the rabbit (and) and [~_what_(i)s_that_-_oh] a dog. +C (and) : and they are play/ing in the sand[-:] . +C then they (ma) made a (ca) sandcastle. +C and the other guy was try/ing to. +C (and) [~_turn_the_page] (he is) (and then) and then the bunny put : more (on) on the sandcastle. +C then it breaked|break[EW:broke][-:]. +C and then he is try/ing to fix it again. +=C then that is all [+_bch]. += [Eg:B1] += [Bg:B2] +C he is come/ing : to a picnic. +C then he : brought lots of : stuff. +C and then he could not eat all of it. +C and then he had a tummyache. +C then he was dizzy *and had a tummyache [EU]. +C then : her bunny comed|come[EW:came]. +C (and then) (and then) : (then that is) (and) (and) and (uh : ul) the guy (fou um : um) had it. +C (and her) and (her[EW:she] pull/ed) : her[EW:she] pull/ed only. +C (and then) then : (he was) : he was : fix/ing him. +C but he is done already. +=C that is all [+_bch]. += [Eg:B2] += [Bg:B3] +C the guy had (a um) a wagon. +C and he had a balloon[-:]. +C and then : he said wow[-:]. +C and he want/ed to take it off[-:]. +C then it let go[-:]. +C and up in the sky[-:] [EU]. +C and then : he was mad at him. +C then he got lots of balloon/s[-:]. +C then (he take/3s) (taked|take[EW:took] one) he saw some and taked|take[EW:took] one. +C and then he : had (none) : none[EW:no] (um) : money. +C but : he is check/ing his pocket/s. +C and then he saw the doctor again. +C (can) and then he said can I have some money because I do not have any. +C and then he : had five dollar/s. +C so : he can have (some) : a balloon. +C and then he got two[-:]. +=C and then that is all [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/459.slt b/data/ENNI_SALT/train/459.slt new file mode 100644 index 0000000000000000000000000000000000000000..b89ec64cfc9f1b3b01faf174dfbb279cb9252a8a --- /dev/null +++ b/data/ENNI_SALT/train/459.slt @@ -0,0 +1,94 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 6/12/1996 ++DOE: 2/16/2001 ++CA: 4;8;4 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 459=CHI ++Tape Location: Disk L25, Track 27 += [Bg:A1] +C once upon a time (a uh) a giraffe and a[EW:an] elephant met. +C they saw : a balloon stuck (in) in their water (p) pool. +C (they) (the) (the) the zebra try/ed to get it. +C but he (cou) just could not get it. +C then : (the) the elephant got it. +C and then (he le) he help/ed : the zebra get out of the water. +C and then : they both smile/ed at each other. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C (once upon a z) the zebra and the elephant : they want/ed to go dive/ing in the pool. +C and then the elephant runned|run[EW:ran]. +C but it was too slippery (on the) : on the side. +C (and then he slip/ed) and then she slip/ed off. +C and she fell into the pool. +C but she was not ready to jump. +C (sh) then she got a[EW:an] owie because she runned|run[EW:ran] too fast. +C and she hurt herself. +C then : (th) the other elephant came to help. +C she cry/ed and she cry/ed : because it was hurt/ing. +C and he put a bandaid on it. +C then she feeled|feel[EW:felt] much better. +C but she just stare/ed at it. +C and (he[!] said) : she just freak/ed at him. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C once upon a time (the elephant) [~_I_mean] the zebra had a toy airplane. +C and the elephant want/ed to play with it. +C but the zebra said no. +C and : then : the elephant took it away from the zebra. +C and then it fell in the water. +C then : he got upset. +C and then the lifeguard said no toy/s in the water. +C and then : he said (that) that the zebra had the toy. +C and then : she took it from him. +C and then it went in the water. +C (and the ele) and the lifeguard try/ed to reach it. +C and then : he said : I can not get it out! +C and then the person who take/3s toy/s out of the water : she came with a net. +C (and) : and she try/ed to take it out. +C and then she just about got it. +C and then she got it out of the water. +C and then the zebra was happy. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C once upon a time there was[EW:were] two rabbit/s. +C and they were play/ing in a sandbox! +C and then : one of the rabbit/s took a great big pile of sand. +C and then the rabbit pour/ed it : on the sandcastle. +C then it broke. +C and then : the other one cry/ed. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C once upon a time the rabbit/s were take/ing their lunch bag/s! +C then : (a) one of them ate too much. +C he got a tummyache. +C and then he could not eat any more. +C so then he ask/3s[-:] the doctor if he could fix his tummyache [EU]. +C then : (h) the doctor said no. +C then the doctor said open up wide. +C and then he still had a tummyache. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C once upon a time the rabbit had a balloon. +C and he was pull/ing his wagon. +C then the balloon start/ed to fly away. +C and (he tie/ed it tright) he try/ed to tie it (ti) tighter. +C then the balloon flew away. +C then (the) only the string was left. +C (so then the) and then the rabbit saw : (the) the man hold/ing the balloon/s. +C he said can I have a balloon? +C and the man said no. +C then he just stood there. +C then (he) the doctor[!] walk/ed away. +C then the doctor look/ed at him and said : he will not give me a balloon. +C (then the doc) and then the doctor gave the man : some penny/s. +C (and) : and then he got a balloon. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/460.slt b/data/ENNI_SALT/train/460.slt new file mode 100644 index 0000000000000000000000000000000000000000..3260f6549239ad3fb2fa7c854715b95f2ae9c46a --- /dev/null +++ b/data/ENNI_SALT/train/460.slt @@ -0,0 +1,92 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 5/29/1996 ++DOE: 2/21/2001 ++CA: 4;8;23 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 460=CHI ++Tape Location: Disk L25, Track 94 += [Bg:A1] +C (they are) (they are) they are go/ing to pick some bubble/s. +C they are put/ing bubble/s in the water. +C (there is : he them :) he is try/ing to get the bubble. +C (he got) (her[EW:she] got) the elephant got[!] the bubble. +C (he) her[EW:she] still : gots[EW:had] it in her hand. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C they are go/ing to : swim. +C they are go/ing to run. +C and : they are go/ing to : still swim. +C (they) (they s) they are run/ing. +C (they are[-:]) [~_I_do_n(o)t_know_what] they got hurt. +C the elephant got hurt. +C (and) : (and) and her[EW:she] got hurt again. +C her[EW:she] gots[EW:has] a bandaid. +C they are sit/ing. +C now : the other[?] elephant is (ba) mad. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C they are go/ing to : play. +C they are got an airplane [EU]. +C (it is go/ing) (the) (they) the elephant got it. +C (is) it went into a[EW:the] water. +C and now he is mad. +C (he) the elephant is mad. +C or they are both happy. +C but he is sad[!]. +C the elephant can not reach. +C it is sink/ing. +C her[EW:she] gots[EW:has] a net. +C her[EW:she] gots[EW:has][!] it. +C the airplane is back. +C (he) : (he l) he is happy now. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C they are make/ing a sandcastle. +C (the sandcastle : i) they are still make/ing the sandcastle. +C (the story) they are dump/ing : (the) : this thing on it. +C it broked|broke[EW:broke][-:] . +C he is (dum) : close/ing the door. +C (now is) : now it is sink/ing down. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C they are have/ing a picnic. +C they are eat/ing[-:] . +C (he is) they are done. +C they are happy. +C the rabbit is full. +C he has a tummyache. +C (he) he call/ed (the den) the doctor. +C (he is) (he is go/ing) her[EW:she] is go/ing (the) : to help him. +=C (he is) : (her glass um) I do not know what that is [+_bch]. +C maybe it is a needle : or a medicine thing. +C maybe it is a medicine thing. +C he is feel/ing better. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C he gots[EW:has] a balloon on the wagon. +C it is still on the wagon. +C they are look/ing at it. +C he is untie/ing it. +C (it was) it is blow/ing away. +C he is mad[-:] now. +C (the) he is bring/ing more balloon/s. +C (he nee) we need more balloon/s! +C (he) and he is for five dollar/s [EU]. +C but (they) he do/3s not. +C now they are sad (when he did not brought[EW:bring]) when he did not give them any balloon/s. +C now (the) (he) they are go/ing to have some balloon/s. +C (the den) the doctor came. +C (why) : what is the problem[-:]? +C (the) (the balloon man) : they had more balloon/s two balloon/s. +C here we have more balloon/s on the wagon. +C (thank) (they) now they are happy. +=C know what I got (a wa) a blue wagon [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/461.slt b/data/ENNI_SALT/train/461.slt new file mode 100644 index 0000000000000000000000000000000000000000..2d64c6e5607105145b95bc0c442421e343080a29 --- /dev/null +++ b/data/ENNI_SALT/train/461.slt @@ -0,0 +1,88 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 5/25/1996 ++DOE: 2/16/2001 ++CA: 4;8;22 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 461=CHI ++Tape Location: Disk L25, Track 34 += [Bg:A1] +C once upon a time[-:] there was a[EW:an] elephant and a zebra : play/ing ball[-:] : until it fell (t) into the sand[-:] and into the water. +C and then she felled|fall[EW:fell] in the water too[-:]. +C (and they) (and she c) : and she gave him the ball[-:]. +C (and then after that : she) (she) (she) (she) because she wanted the ball[-:] [+..] [EU]. +C (and[-:] then[-:] ) [~_what_happened_next_oh_yeah] and then they went home. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C once upon a time[-:] : there is a[EW:an] elephant : and[-:] a giraffe : scare/ed to go on the water [EU]. +C and : she was walk/ing[-:] to the water. +C (and : then[-:] ) [~_and_I_do_n(o)t] and then they went in the water. +C and then she slip/ed. +C and[-:] then she felled|fall[EW:fell] in the water[-:] . +C and she hurt shes[EW:her] knee. +C and then they heard a watched[-:][?] [EU]. +C and then she put a bandage on it[-:]. +C and then it feeled|feel[EW:felt] better[-:] . +C (and then : shes) (and then) and then the lifeguard said : (no) (no : s stay) (no[-:]) no accident/s ever again on you [EU]. +=C that is the end [+_bch]. += [Eg:A2] += [Bg:A3] +C once upon a time[-:] : they want to fly[-:] the airplane over the water[-:]. +C and then : she put[!] it out in the air[-:]. +C and then : she grab/ed it from him[-:]. +C and then it felled|fall[EW:fell] in the water[-:]. +C (till[-:]) : (till the zebra) until the giraffe was angry [EU]. +C until they got to get that airplane[-:]. +C until : (she[-:] ) (she got it) (the) the zebra[!] got it [EU]. +C I had it first. +C so she[!] must get it. +C and then : she try/ed[!] to. +C but she just can not reach[!] it. +C till[-:] she got a net and go/ing to [~_gonna] get : the airplane. +C (until she) (she tr) and she got[!] it. +C and then they were save/ed. +=C and then[-:] : that is the end [+_bch]. += [Eg:A3] += [Bg:B1] +C once upon a time[-:] : there was : a bunny and[-:] a mouse : play/ing in the sandbox. +C and[-:] they were build/ing a sandcastle[-:]. +C and after that : he put some sand on the sandcastle[-:]. +C and then it broked|broke[EW:broke]. +C and then they build|build[EW:built] it up again. +=C and then that is the end of the story [+_bch]. += [Eg:B1] += [Bg:B2] +C once upon a time[-:] there was a cheetah and[-:] a[EW:an] elephant : walk/ing. +C and then[-:] : (uh) [~_I_do_n(o)t_know_what_the_next_page_is] well[-:] : they went to the dinosaur country[-:] : for a picnic. +C and then : they heard a sound of a tyrannosaur rex : coming beheads[c] them [EU]. +C and they[-:] : runned|run[EW:ran] away : all away[-:] (to s) to their mommy[-:]. +C and then (they) (they) they soon[-:] : got to home[-:] [EU]. +C and then[-:] : [~_oh] so they lost their way to home[-:] [EU]. +C so they *are lost at the dinosaur country [EU]. +C and then : (they) (they) (they) they had a nap. +C and then they got home. += [Eg:B2] += [Bg:B3] +C once upon a time[-:] (they were) they were two baby velociraptor/s[-:]. +C and[-:] they start/ed to go down the hill[-:]. +C and[-:] : they were scare/ed on the hill[-:]. +C so then : (the b) the balloon went up. +C (and) and the velociraptor/s try/ed to get it. +C and then : a terrible [~_makes_explosion_noise_'bth'] : boom. +C and the balloon pop/ed. +C (and then : they gots[EW:have]) (and then) : and then the tyrannosaurus rex gave them more[!] balloon/s. +C and then : they want/ed[-:] a balloon[-:]. +C so then they pick/ed one[-:]. +C and[-:] : then they want/ed it. +C (sss) so then : the Teerex said (they) they can not have a balloon. +C and[-:] then[-:] she ask/ed (if she c) if they have place they could have a balloon [EU]. +C (and then they) and then the other velociraptor : was run/ing to his mommy. +C and then she said (she) she will not give us any balloon/s. +C and then : she give/3s him some dollar/s. +C and then she give|give[EW:gave] him (some) some balloon/s[-:]. +C and[-:] then : they had balloon/s[-:]. +=C and then that is the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/463.slt b/data/ENNI_SALT/train/463.slt new file mode 100644 index 0000000000000000000000000000000000000000..823d5ced84c85313fa62bbb045991d5229f4a54d --- /dev/null +++ b/data/ENNI_SALT/train/463.slt @@ -0,0 +1,91 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 6/03/1996 ++DOE: 2/16/2001 ++CA: 4;8;13 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 463=CHI ++Tape Location: Disk L25, Track 41 += [Bg:A1] +C (um) there is one giraffe and a[EW:an] elephant. +C (the) (the) (the) the elephant is bounce/ing a ball. +C and then : (the) the ball fell in the water[-:]. +C and the giraffe swimmed|swim[EW:swam] *to get it [EU]. +C and then the giraffe got it. +C and elephant was surprise/ed. +=C and then that is the end [+_bch]. += [Eg:A1] += [Bg:A2] +C one (elepha) elephant (was) was look/ing at the water[-:] : and was go/ing to go in it : with the jump/ing board. +C and then[-:] she said I will go to the jump/ing board. +C and then (she will) she was run/ing. +C (and then) and then the giraffe said stop. +C and then she bang/ed her : leg[-:]. +C (and) : and she was cry/ing. +C (and) and the (other) other elephant gave her a bandage. +C (that is the) (and the) (and then she did not) and the lifeguard whack/ed her. +=C and that is the end [+_bch]. += [Eg:A2] += [Bg:A3] +C there is one elephant and the giraffe. +C (ha) and the giraffe (has a) : had a[EW:an] airplane. +C and then the giraffe : (um um) : flied|fly[EW:flew] it with his hand/s[-:]. +C and the elephant : said I want to [~_wanna] have a try. +C (and do not) and do not aim it at the water (the) (the gir) (the) the giraffe said. +C and then she aim/ed it at the water. +C (and then) and it almost sunk. +C (and then the) and then the giraffe was angry. +C (and) : and the elephant (was) : was so impress/ed. +C and then the lifeguard : look/ed at it. +C and it was float/ing along[-:]. +C (and) and then : what : would : we do : (said) said the elephant. +C and the lifeguard (will) (will) (is) is go/ing to[:_gonna] reach it. +C and then he could not reach it. +C (and then) (and then) : (and then) : (and then : uh) and the giraffe was cry/ing. +C and the elephant was impress/ed. +C and : then everyone was impress/ed. +C (and then : a lady got um) and then a lady got : (uh a ke) a net to catch it. +C and then (she) she got it[-:]. +C and then she gave it back[-:]. +=C and that was the end [+_bch]. += [Eg:A3] += [Bg:B1] +C (one) : one little doggy make/3s : (a p) a sandcastle. +C and : then he say/3s let us make some more. +C and then : she make/3s[-:] it. +C and then she pour/3s it on : the sandcastle. +C then (it is : uh) her sandcastle is ruin/ed. +C and : the boy did not want his sandcastle ruin/ed[!]. += [Eg:B1] += [Bg:B2] +C (um) : one doggy and one rabbit : *are go/ing for a picnic [EU]. +C and[-:] the rabbit : (is) is go/ing to[:_gonna] eat : a sandwich and carrot/s. +C (and) : and the doggy : (drink/3s) *is eat/ing some sandwich/s and juice [EU]. +C (and) (and) and then the bunny has a tummyache. +C and then (it is) the bunny is get/ing (a little) a little wiggly. +C (and[-:]) and the puppy (do) dog is is just : drink/ing juice still. +C and : (the) : the puppy dog ask/3s his grandma to come. +C and : (she) she did not want to come[-:]. +C (and : the) : and then : she tell|tell[EW:tells] them : about eating too much food[!]. +=C and that is the end [+_bch]. += [Eg:B2] += [Bg:B3] +C (um) : one little boy has a wagon with a balloon[-:]. +C and one bunny cames|come[EW:came] over. +C and he say/3s that : balloon is great. +C and now : the bunny was go/ing to take it off. +C and the doggy said no[!]. +C and it float/ed away[-:]. +C and the puppy was angry. +C (and) and the rabbit watch/ed (it fly) : fly up. +C and (they went) they went to get : a balloon from that balloon man. +C (and) and the bunny said : can I have one balloon please? +C and then : he said that one is five dollar/s. +C (and then he) and then (he got) : (the) the big guy with the balloon/s got encouraged. +C and then (they went away t) they went to their mother : (and) : and ask/ed her if we can have a balloon[-:] [EU]. +C (and) and she got a little : couraged too [EU]. +C and then she gave him : a dollar and gave : them a balloon[!]. +=C and that is the end[!] [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/464.slt b/data/ENNI_SALT/train/464.slt new file mode 100644 index 0000000000000000000000000000000000000000..92e8ddb84d6888d3bc902f52ee827ada9b1bec2e --- /dev/null +++ b/data/ENNI_SALT/train/464.slt @@ -0,0 +1,80 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 7/25/1996 ++DOE: 4/03/2001 ++CA: 4;8;9 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 464=CHI ++Tape Location: Disk L27, Track 9 += [Bg:A1] +C (um) he is play/ing basketball. +C (he[-:]) he put/3s it in the water. +C (he[-:] um) he was try/ing to [~_tryna] swim. +C (um) : he gotted|got[EW:got] the ball. +C (um) [-:] now they are all go/ing to play : basketball. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C (um) : he had a backpack. +C he was try/ing to get the backpack. +C he was run/ing. +C he[-:] was silly. +C he[-:] cry/ed. +C and : he was angry. +C (and[-:]) and then[-:] he got a bandaid. +C and then[-:] it was better. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C (um) he had a tail. +C and[-:] he was fly/ing a[EW:an] airplane. +C and[-:] he was jump/ing. +C (um) he was float/ing[-:] the plane[-:] [~_pronounced_/fleIn/]. +C and[-:] he was angry. +C and he was happy. +C (and[-:]) : and he had a nose right. +C and he was try/ing to get it. +C and he was sad. +C and he was cry/ing. +C and : he was try/ing to get (the p) : the plane. +C and he was : try/ing to : get it and go in the swim/ing pool. +C and[-:] he gotted|got[EW:got] it. +C and he was happy. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C a rabbit [EU]. +C he[-:] was make/ing a castle. +C he[-:] was[-:] (um) build/ing it by heself[EW:himself]. +C (and[-:]) and his friend : (um) breaked|break[EW:broke] it. +C and he was not happy : because he was sad[-:]. += [Eg:B1] += [Bg:B2] +C there is one rabbit. +C he (wa) had a basket [~_pronounced_/baesIk/]. +C and he eated|eat[EW:ate] all he[EW:his] stuff. +C and[-:] : he had a tummyache. +C and[-:] he[-:] was not happy. +C and (he) : (the) the rabbit was [~_makes_vocalizations]! +C and[-:] the rabbit was pull/ing the rabbit. +C and the rabbit was not happy because : he was angry : and because : he was sad[-:]. +=C the end [~_laughs] [+_bch]. += [Eg:B2] += [Bg:B3] +C and[-:] he had (uh : um) a stroller (xx) : and a window and his balloon. +C and he was happy : again. +C and so he want/ed another one. +C and he could not because his (um) balloon was fly/ing[-:]. +C and[-:] : it was gone. +C and he pick/ed another balloon. +C and : he said I want another balloon. +C and his pant/3s were rip/ing [~_laughs]. +C and[-:] he was happy again. +C and he want/ed another balloon. +C and[-:] the mother rabbit was sad[-:]. +C and then he get[EW:got] it back again. +C (um[-:] he) they both had another balloon. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/465.slt b/data/ENNI_SALT/train/465.slt new file mode 100644 index 0000000000000000000000000000000000000000..df4628e9b7bb1c04cf6d7c6ebd63a63d07c72608 --- /dev/null +++ b/data/ENNI_SALT/train/465.slt @@ -0,0 +1,136 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 4/24/1996 ++DOE: 4/03/2001 ++CA: 4;11;10 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 465=CHI ++Tape Location: Disk L27, Track 5 += [Bg:A1] +C [~_all_right] : there was an elephant and a cow. +C they were not : very nice to each other. +C they were yell/ing : at each other. +C they : saw : something. +C but they did not know what it was! +C (so) : so : the cow : swimmed|swim[EW:swam] to it. +C and he grab/ed it. +C (but it) : (it) but he : let go of it. +C and he squeez/ed it. +C and it was : a ball. +C he came out[!] of the water. +C (now) and[-:] : (it do/3s) : they : went : all[-:] the way[-:] together[!]. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C they were go/ing swim/ing. +C but they did not know what to do[!]. +C so : they : went off and jump/ed into the water quickly[!]. +C they were mad. +C they were not do/ing what they were suppose/ed to do. +C they chase/ed[!] each other. +C and they hit[!] each other. +C (and he) and the elephant : fell : on his knee. +C and it hurt. +C it was : hurt/ing. +C it was : hurt/ing a lot. +C he did not like that. +C and his friend came and help/ed him. +C it was a[EW:an] elephant. +C and he put a bandage on him. +C and it start/ed : to[-:] go. +C and they sit|sit[EW:sat] down. +C happily ever after. += [Eg:A2] += [Bg:A3] +C [~_sighs] : they were jump/ing in the water : (with the ball) with : the airplane. +C and they : did something wrong. +C they broke the airplane. +C so they fix/ed[!] it : all up. +C then : it flyed|fly[EW:flew][-:]. +C and it was by itself. +C did not got[EW:have] a control [EU]. +C it had a mouth. +C (and it) : (and he) and it did not do it anymore. +C (but) : but the elephant : grab/ed the airplane from : the cow. +C (he) they drop/ed it. +C and it swimmed|swim[EW:swam] away. +C it sunk ! +C and they were mad[-:]. +C they said help help! +C : we do not know what to do! +C it sunk very long [EU]. +C and it was almost down[!]. +C it flew. +C it floated : up in the sky. +C (they did[?]) it was almost down to the bottom. +C it swimmed|swim[EW:swam][!] : away. +C it was not very cold. +C they got a thing. +C (but it) but they were go/ing to get it. +C (th) and they got it[!] : almost. +C but they did not want to get it. +C it was gone[-:]. +C and they got it! +C and they gaved|give[EW:gave] it back. +C so he hug/ed[!] it. +=C the end [+__bch]. += [Eg:A3] += [Bg:B1] +C once they were : play/ing in the sandbox. +C and she (made) : made *a sandcastle [EU]. +C and she was make/ing[!] it. +C the little boy start/ed : to touch it. +C she put some more sand on[-:]. +C and it fell[-:]. +C (and he was) and she was very mad at him. +C (then she) : then he touch/ed it. +C then : he made a hand print. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C they met each other with picnic/s[-:]. +C and they were have/ing a picnic together. +C once they were eat/ing and drink/ing. +C he[-:] was fat. +C he got a really good : think [EU]. +C and they were[-:] pack/ing up for the beach. +C they were go/ing to the beach. +C but they : forgot about : their friend/s. +C they forgot about them because he was sick[-:]. +C maybe he was[!] go/ing to[:_gonna] come out. +C but he did! +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C he was : bring/ing his wagon. +C and he went into the snow with a balloon. +C he ran. +C and he : met his friend. +C and he said : do you like this balloon[!]. +C and he said yes. +C but he untie/ed[!] it. +C and it flew away. +C and it was gone[!]. +C he was go/ing to[:_gonna] find another[!] balloon. +C he found a guy with some balloon/s. +C he (w) : ask/ed if we can have them [EU]. +C then : he can : have : balloon [EU]. +C he ask/ed[!] it [EU]. +C so : he : point/ed at : (the) : the one that has the cloth on. +C not the x[l] with the banana. += %com: CHI seems to be referring to the marks on the drawing of the balloons that indicate reflection - look like Xs and curved lines +C he : punched down : the five. +C and he want/ed that[!] one. +C (he gave it to hi) he did not give[!] it to him. +C so : he ran away. +C and from now on : they did not : went together again [EU]. +C and they : ran together again : with them. +C and they were happy! +C he chase/ed them. +C (and they gave) and he gave them : all the balloon/s. +C and : the story went : more[-:] out [EU]! +C so they start/ed : it all[-:] day [EU]. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/466.slt b/data/ENNI_SALT/train/466.slt new file mode 100644 index 0000000000000000000000000000000000000000..c37c1fc0ebad10c76fad3082878df97f1ee91b9a --- /dev/null +++ b/data/ENNI_SALT/train/466.slt @@ -0,0 +1,94 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 10/08/1996 ++DOE: 4/03/2001 ++CA: 4;5;26 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 466=CHI ++Tape Location: Disk L27, Track 20 += [Bg:A1] +C (uh) once upon a times[EW:time][-:] a[EW:an] elephant was get/ing : a[EW:an][-:] octopus. +C and then (they t) : (they always) : they splash[-:][!] the ball in the water. +C and (that) : he swimmed|swim[EW:swam] and swimmed|swim[EW:swam]. +C and he could not breathe. +C and then (he) (he) he got the ball to him! +C and then they got all[-:] wet. +=C the end [+_bch] ! += [Eg:A1] += [Bg:A2] +C once upon a time[-:] : they[-:] did it again! +C (tomorrow) tomorrow we will get the ball. +C (today) today we can not get the ball. +C goodbye(*3). +C goodbye(*3). +C ow(*3). +C bounce(*3)! +C [~_makes_sound_effect_'doing'_3_times]. +C ow(*3). +C thank you(*3)! +=C no more [+_bch]. += [Eg:A2] += [Bg:A3] +C (um) [-:] : he bounce/ed on his nose [EU]. +C he cut his nose. +C he saw the airplane! +C he drop/ed it on the floor! +C he almost drop/ed it in the water. +C but he did[~!_laughing]. +C uhoh you should : get it tomorrow[-:]! +C and I am mad at you now ! +C [~_makes_sound_effect_'doing']. +C splash(*3). +C goodbye(*7)! +C thank you(*4). +C you are welcome(*2). +C catch it catch it for a tide or two [~_singsong_voice] [EU]. +C catch it [EU]. +C I love you forever[!]. +C next time[-:] come back[!] [EU]. +C love you forever again[~!_laughing] [EU]. +C I love you (f) xxx. += [Eg:A3] += [Bg:B1] +C a bunny : was mad at the nother[EW:other] dog[-:]. +C a bunny[~!_laughing] was happy[!] at the dog now [EU]. +C the bunny was sad[-:]. +C the bunny was happy! +C the bunny was angry! +=C the end[-:] [+_bch]. += [Eg:B1] += [Bg:B2] +C (um) : that guy is go/ing to[:_gonna] get that guy. +C and they are go/ing to bump[~!_laughing] into each other. +C and this one is sillier. +C then (he) he took his nail off. +C ooh[-:] he took his carrot. +C (he) (he) he chokeded|choke[EW:choked]. +C he is sad. +C he is happy! +C he is : long. +C he is long to walk [EU]! +C he is long to : get up because the mom was so sad. +C oh[-:][!] (then she went with the mom) then he went with the mom. +C and there[-:] go/3s : the friend[!]. +=C and the end [+_bch]. += [Eg:B2] += [Bg:B3] +C [~_I_I_I_do_n(o)t_say_once_upon_a_time_but_but_I_say_um] once upon a time[-:] there is[-:] (a : uh um) a bunny who *is running[~!__laughing] into a bunny [EU]. +C (um one crashed) they crash/ed into each other. +C and they bonk/ed their head/s. +C and they falled|fall[EW:fell] down upside down! +C and then[!] the balloon was broken. +C then they got more[!] balloon/s. +C then they were happy. +C he said goodbye[!]. +C let us have a good time! +C someday/s you will come to me. +C sometime/s you will not. +C sometime/s you will come to my house and be Santa! +C sometime/s you *will be happy[!] to come to my house [EU]. +C then their mother/s came. +=C (the end) the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/468.slt b/data/ENNI_SALT/train/468.slt new file mode 100644 index 0000000000000000000000000000000000000000..89650351c7a026127c8b8d9935d54c55a96fd31c --- /dev/null +++ b/data/ENNI_SALT/train/468.slt @@ -0,0 +1,82 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 10/21/1996 ++DOE: 4/10/2001 ++CA: 4;5;20 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 468=CHI ++Tape Location: Disk L27, Track 24 += [Bg:A1] +C (um) : he found *an orange [EU]. +C he found a[EW:an] orange in the water. +C he fell in the water. +C he pick/ed up a[EW:an] orange. +C he came out of the water. += [Eg:A1] += [Bg:A2] +C start/ed to slide : in the water [EU]. +C (um) : run/ing go in the water [EU]. +C he[-:] went out of the water. +C and he hurt his knee! +C and [~_coughs] he had *an owie [EU]. +C and gave him (a) : a bandaid [EU]. +C and[-:] : (um) : he sit|sit[EW:sat] down. +C and : (uh) : he sit|sit[EW:sat] down again. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C (um) : he pick/ed up the airplane. +C (the) he was float/ing the airplane. +C (um) : now he is[!] : hold/ing the airplane. +C now it fell in the water. +C it : went down the water [EU]. +C (um) [-:] : it was not float/ing down the water. +C (um) : (it) it said uhoh! +C and then he fell down. +C he went to get it. +C and he did not get it. +C he get|get[EW:got] back in the deep [EU]. +C we are go/ing to [~_gonna] go get it. +C and he got it! +C and he[!] was happy! +C (um) and he[!] : hug/ed it. +=C (uh) the end [+_bch]. += [Eg:A3] += [Bg:B1] +C (um) [-:] he is go/ing to[:_gonna] make a sandcastle. +C and he made a sandcastle. +C he dump/ed water on his sandcastle. +C he broke it. +C and he was go/ing to fix it. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C (um[-:]) : he is go/ing to walk for a picnic. +C he is already at the picnic. +C he spill/ed all[!] his food. +C and he laugh/ed. +C and : he cry/ed. +C and they were done their picnic. +C and[-:] then he laugh/ed. +C and[-:] then they were still at the picnic. +C and then they walk/ed[!] home. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C (um[-:]) he has a wagon with a balloon on it. +C (um um) : they stopp/ed. +C and they[-:] sit|sit[EW:sat] down. +C and they were go/ing to[:_gonna] get the balloon. +C but the balloon pop/ed. +C and : he want/ed to get another balloon. +C and he got another balloon. +C and (um) [-:] he look/ed down. +C and[-:] they look/ed up. +C and[-:] he runned|run[EW:ran]. +C and (um) [-:] they stop/ed. +C and : they gave him (a ticket) : a money [EU]. +C and then they got two balloon/s. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/471.slt b/data/ENNI_SALT/train/471.slt new file mode 100644 index 0000000000000000000000000000000000000000..59aa317e00fdbe9fc0ad949467731f16a6de4d2c --- /dev/null +++ b/data/ENNI_SALT/train/471.slt @@ -0,0 +1,109 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 8/10/1996 ++DOE: 5/25/2001 ++CA: 4;9;7 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 471=CHI ++Tape Location: Disk L28 Track 51 += [Bg:A1] +C a giraffe *is play/ing with a[EW:an] elephant [EU]. +C like they are play/ing with the ball. +C and it fell into the pool. +C (and) and then (the g) (the) the zebra (uh s) swam to get it. +C (and the) (the) (and the gira) (and) and the giraffe got it and gave it to the elephant. +C and (um) the elephant was okay. +C but the giraffe was all wet. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C the zebra and the elephant went to the pool again. +C (and they wanted to s) and the elephant want/ed to swim : till : it kick/ed it/z face. +C and the : giraffe ran after it. +C (and at last) and the giraffe just ran somewhere. +C (uh) but the elephant hurt it/z knee. +C and she was cry/ing so much that the elephant stop/ed run/ing (when an elephant) when another[!] elephant came : and said what is wrong? +C she scratch/ed me. +C ow. +C so : I could get a bandaid. +C and : (you should not know that) (you should not) no[!] run/ing. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C the elephant and the giraffe went to the pool again. +C and then : (they) they play/ed with a little plane. +C but the elephant took it from the giraffe! +C (and they) and they drop/ed into the pool [EU]. +C and the giraffe was so mad to[EW:at] the elephant that : the elephant was too scared to get it. +C when : (the) the other elephant came and said what is go/ing on around here[!]. +C and the (f) other elephant answer/ed we are play/ing with the plane. +C (but it) but it drop/ed into the pool. +C I could get it[!] the other elephant said. +C it is no use. +C I could not (the) the elephant said. +C then another elephant came over and said what is the problem? +C (the net) the plane : drop/ed into the pool [~_different__speaking_voice]. +C well I got a net to catch it [~_different_speaking_voice]! +C (and she did) and (she) she did (ju) just that. +C I got : the plane for you. +C oh thank you the giraffe said. +C giraffe : hug/ed it. +C and the elephant was a little happy again. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C a rabbit and a dog were : play/ing in the sand and build/ing a sandcastle. +C and the dog like/ed to : make the (sand) sandcastle. +C and the bunny : like/ed to help. +C and he put some on. +C and the dog was too frighten/ed to talk. +C [~_right] (and it was) and it was ruin/ed (the) the bunny said after he did it. +C and : the : rabbit did not say another : word. +C and the dog : cry/ed a little. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C the dog and the bunny were have/ing a picnic today. +C and they start/ed to eat. +C and the bunny sweated|sweat[EW:sweat] : and fell to : the ground [EU]. +C (but) but the dog was still eat/ing. +C ah I can not take it any more the bunny said. +C and then the mother bunny came : and said what is the matter little one? +C and the dog said : he sweated|sweat[EW:sweat] and fell to the ground [EU]. +C oh my goodness [~_high_pitched_voice]. +C are you all right little one [~_high_pitched_voice]? +C I am okay [~_high_pitched_voice]. +C let us go home okay [~_high_pitched_voice]? +C goodbye [~_high_pitched_voice]. += [Eg:B2] += [Bg:B3] +C the bunny and the dog had a wagon that had (uh uh uh a big bunny/z uh) a big bunny/z balloon. +C and : they like/ed it so much that (they) he play/ed with it. +C but then : they try/ed to pull[?] it easily. +C and the dog almost : sweated all the time [EU]. +C and the balloon flew away. +C and they both try/ed to get it. +C but they could not. +C (and they are so) and the dog was so angry. +C when they saw the big bunny (with) hold/ing some balloon/s [EU]. +C [~_high_voice] hey big one. +C (have you) (we) we just had a wagon that had one of your balloon/s. +C [~_deep_voice] oh? +C [~_deep_voice,_menacing_tone] (you y y you) and where did you put it? +C [~_high_voice] well it flew away. +C [~_makes_growling_sound_'errrr']. +C [~_high_voice] it is okay. +C [~_high_voice] how come : there is[EW:are] two? +C [~_high_voice] oh that is just my friend. +C and then the mother came again and : said what is up now [~__different_speaking_voice]? +C oh we just found a balloon man. +C and we had one of his balloon/s. +C oh [~_different_speaking_voice]. +C (and and) and (uh) he had a balloon that said : five balloon/s. +C (but he) (he) but he just had four because we had one of them. +C but it is okay he said. +C : (because) and he gave both of them a balloon. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/472.slt b/data/ENNI_SALT/train/472.slt new file mode 100644 index 0000000000000000000000000000000000000000..3065eea7a0a175f1890e85d75024629897ef7a75 --- /dev/null +++ b/data/ENNI_SALT/train/472.slt @@ -0,0 +1,72 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 8/18/1996 ++DOE: 5/25/2001 ++CA: 4;9;7 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 472=CHI ++Tape Location: Disk L28 Track 40 += [Bg:A1] +C the giraffe saw a pool. +C it : had a ball. +C he want/ed to play in there and catch it. +C he could not. +C and the elephant : gave him a new ball. += [Eg:A1] += [Bg:A2] +C the : giraffe went to the pool. +C (he s) the elephant said to the giraffe come in the pool. +C so the elephant kick/ed the ball. +C and the elephant got : hurt. +C so the other elephant came : and put a bandaid for her [EU]. +C then the giraffe said come here. +C so : the elephant sit|sit[EW:sat] : on the bench. += [Eg:A2] += [Bg:A3] +C the giraffe got a[EW:an] airplane. +C he want/ed to play with it in the pool. +C he : drop/ed it in the pool. +C and it got wet. +C and : he tri/ed to took|take[EW:take] it out. +C and it flew to : the other side. +C the giraffe try/ed to took|take[EW:take] it (because the ele). +C and the man elephant was try/ing to took|take[EW:take] it. +C but it was too far away. +C so the mama elephant (got) use it with a net [EU]. +C (and she got) and she did not got|get[EW:get] it still. +C and she got it. +C and the giraffe took the airplane. += [Eg:A3] += [Bg:B1] +C the rabbit want|want[EW:wanted] to play with the dog. +C he took some sand in a bucket. +C then he pour/ed on the sandcastle [EU]. +C and it fell down. +C and he want|want[EW:wanted] to make it again. += [Eg:B1] += [Bg:B2] +C the rabbit saw the dog. +C the rabbit said I am hungry. +C the rabbit ate the carrot. +C and he got bonk/ed. +C and the : dog said go away rabbit. +C and the dog hold|hold[EW:held] the rabbit. +C (the) (the rabbit) the mother rabbit said (to the rab um) to the : baby rabbit (: go home) : go home. += [Eg:B2] += [Bg:B3] +C the rabbit saw the dog. +C he got one balloon. +C the rabbit (try) try|try[EW:tried] to took|take[EW:take] it off. +C and it flew up. +C the rabbit said : to the dog sorry. +C then the dog saw a : man that was sell/ing lots of balloon/s. +C then the rabbit want/ed one balloon. +C and the : rabbit took one. +C and he drop/ed it in the air [EU]. +C and he got[EW:has] no more money : to buy the balloon. +C then he went home with his mommy. +C then his mom gave him more coin[EW:coins]. +C and they : buy one more balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/474.slt b/data/ENNI_SALT/train/474.slt new file mode 100644 index 0000000000000000000000000000000000000000..c90849259e152bf04927ea2ab739477e1849f31f --- /dev/null +++ b/data/ENNI_SALT/train/474.slt @@ -0,0 +1,165 @@ +$ CHI, EXA ++PARTICIPANTS: CHI target_child, EXA examiner ++DOB: 3/09/1998 ++DOE: 11/27/2002 ++CA: 4;8;18 ++Gender: F ++Context: Nar ++Group of CHI: SLI ++ID: 474=CHI ++Tape Location: Tape P2 ++Comment: child spoke very softly += [Bg:A1] +C a[EW:an] elephant and xx. +E an elephant and : what do you think? +C xx. +E you can call it whatever you want. +C a cow. +C and : the cow went in the water. +C the moon say/3s no no. +C xx. +C then the : then the : [~_EXA:_I_can't_hear_you,_say_it_louder] it cried because : it did not come in the water. +E it did not come in the water? +=C yeah [+_bch]. +E the elephant cry/ed? +C then the xx. +E because he got? +=C in the water [+_bch]. +E in the water, wow! +C then : he : pick|pick[EW:picked] : up : a[EW:an] : apple. +E then he pick/ed up a[EW:an] : apple? +C then her[EW:she] *is sad [EU]. +E then her[EW:she] *is sad [EU]. +C xxx. +E what did she say? +C [~_whispers] beautiful. +E beautiful? +=C yeah [+_bch]. +=C that is it [+_bch]. += [Eg:A1] += [Bg:A2] +C the elephant want|want[EW:wanted] to go in the water. +E the elephant want|want[EW:wanted] to go in the water. +C [~_yeah] then (the) let us. +E it is cold? +C [~_no] (it is) let us go. +E oh let us go I see. +C then turn the other way [EU]. +C then her[EW:she] runned|run[EW:ran] back there. +E her[EW:she] runned|run[EW:ran] back there. +C [~_yeah] then her[EW:she] hurted|hurt[EW:hurt] her leg. +C and (the) her dad elephant (fix/ed a) bandage/ed it. +E her dad elephant give|give[EW:gave] her a bandaid? +=C no bandage [+_bch]. +C then her[EW:she] put on her xx. +E her[EW:she] put on her boot/s and her[EW:she] go[EW:went] home? +C then he pick|pick[EW:picked] her up. +E pardon me. +C wake her up. +E wake her up! +C he : *is go/ing to go put her bandage on [EU]. +C then (the) : they *are sit/ing on the bench [EU]. +E pardon me. +=C a bench [+_bch]. +E they are sit/ing on a bench. +=C yes [+_bch]. += [Eg:A2] += [Bg:A3] +C they *are talk/ing [EU]. +C then her eye came to close [EU]. +C and her[EW:she] say|say[EW:said] I no like airplanes [EU]. +E [~_repeats_what_CHI_said]. +C then xx like an airplane. +C then he give|give[EW:gave] it to her. +C then he say|say[EW:said] give it back. +C then her[EW:she] put it in the water. +E then her[EW:she] put it? +=C in the water [+_bch]. +C then : he was mad at her. +E then he was mad at her. +C then xx : the airplane : *is in the water [EU]. +E what? +=C [~_whispers] in the water [+_bch]. +E the airplane is in the water. +C xxx. +C he is go/ing *to get almost in the water [EU]. +E [~_repeats_what_CHI_said]. +C then (uh) he can not reach it : the bad elephant. +E [~_repeats_what_CHI_said]. +C then : he cry/ed. +C and then : the mom [EU]. +C and it can not get it. +E [~_repeats_what_CHI_said]. +C then her[EW:she] get|get[EW:got] it. +E [~_repeats_what_CHI_said]. +=C that is : all [+_bch]. += %com: rest of story not coded for story grammar because of EXA's prompt +E can you tell me a little bit about this part? +C then (xx) [~_EXA:_then_#] him[EW:he] give|give[EW:gave] it to her. +E give it to her, I see. +C then : (her) : her (got xx) [~_EXA:_got_#] got a shovel [EU]. +C and her[EW:she] got it. +E [~_repeats_what_CHI_said]. +C xxx. +E is it all done? +=C yeah [+_bch]. += [Eg:A3] += [Bg:B1] +=C (um) : what is this [+_bch]? +E what do you think it is? +E I can not see so you have to think of something yourself. +=C okay [+_bch]. +C this (is a) is a bunny rabbit. +C this is a dog. +E okay tell me what happen/ed. +C (he is) the dog : he put lot/s of sand xx bucket. +C then he put it on the sandcastle him[EW:he] make|make[EW:made]. +E : and then what? +C (he) the bunny rabbit put : sand in his bucket. +C then he put it on the dog/z castle. +C then he *is go/ing *to try to put it in [EU]. +C (then he will) then he dump/ed it. +C then he said he (do not lo) can not any more [EU]. +C and then he cry/ed and he said ha. +=C that is all [+_bch]. += [Eg:B1] += [Bg:B2] +C the bunny rabbit and the dog they was[EW:were] go/ing for a picnic with the (bas) basket. +E with the basket? +C food. +E of food food? +C no fruit is in there. +E fruit is in there. +C [~_yeah] and (there was) : (he jus) he eat|eat[EW:ate] his own bun. +C then (he) he have|have[EW:has] a drinks[EW:drink]. +C and he have|have[EW:has] : a bun dog. +C and he have|have[EW:has] to drink. +C and then : a bunny rabbit his tummy was hurt/ing because he eat|eat[EW:ate] all *that food [EU]. +C (he) then : the dog talk/ed to *the other bunny [EU]. +C then (uh) he said wait. +C (uh) then he said I will pulled|pull[EW:pull] her jacket. +C (um) then : the bunny and the other (uh) bunny : he did not feel like come/ing. +C and he is go/ing *to helping|help[EW:help] to feel his tummy [EU]. +C then he feel/3s great. +C and that is his grandma : bunny. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C (um) the dog (he have|have[EW:has] a) (a um) he have|have[EW:has] wheel/s for he is push/ing. +C then he can push with somebody get/3s in with (when) [EU]. +C there is a balloon on it with tape. +C and then he is go/ing *to push it [EU]. +C (he will) and then he *is go/ing *to get it [EU]. +C hold it tight. +C and then (he) he tie/3s it off [EU]. +C then it blowed|blow[EW:blew] away. +C then (he feel/3s that) : [~_EXA:_then_he_what] (he was) (he said he was m) the dog was (m) mad. +C then the bunny rabbit is go/ing to get balloon/s (fr) from that man : the bunny rabbit man. +C and then (he) (he) (one for) [~_EXA:_then_he_what_tell_me_this_again] he give|give[EW:gave] one for the dog and the bunny rabbit [EU]. +C (then the) they having|have[EW:have] a balloon. +C then there was find they have[?] [EU]. +E find the what? +C the bunny rabbit find|find[EW:finds] a balloon. +C and then (he s) he said (he s) the kid/z bunny rabbit mom he give|give[EW:gave] him : a balloon [EU]. +=C then it is the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/475.slt b/data/ENNI_SALT/train/475.slt new file mode 100644 index 0000000000000000000000000000000000000000..e7897d7049f25065056299d23f5f13e8465d0e3e --- /dev/null +++ b/data/ENNI_SALT/train/475.slt @@ -0,0 +1,92 @@ +$ CHI, EXA ++PARTICIPANTS: CHI target_child, EXA examiner ++DOB: 1/20/1998 ++DOE: 10/22/2002 ++CA: 4;9;2 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 475=CHI ++Tape Location: Tape P3 += [Bg:A1] +C (he was : talk/ing) : he was talk/ing to (the) : the girl elephant. +C and he was : look/ing at something. +C and then he was : crash/ing. +C and then (he was get/ing out) : he was : get/ing out. +C (he was) : he was ask/ing[!]. +C (um) he was : talk/ing. += [Eg:A1] += [Bg:A2] +C (um) he was : look/ing. +E look/ing? +C (he) she was : point/ing. +C and she was crash/ing! +C she breaked|break[EW:broke] his knee. +C (he wa) she was cry/ing! +C and[-:] she[-:] was[-:] : look/ing at him. +C and he was : all better. +C and he was : put/ing on something. += [Eg:A2] += [Bg:A3] +C he was : ask/ing. +C he was : fly/ing an airplane. +C (he was : hold/ing an airplane) [EXA:_he_was_what] (he was) he was hold/ing an airplane. +C (but he could not) : but he could not let[!] her. +C and he put it into the water. +C he was mad[!] at him. +C and then (he was : um) he was[-:] : ask/ing. +C and he was : ask/ing again. +C he was : get/ing his airplane. +C and then he was : cry/ing. +C (he) : she was : hold/ing a shovel. +C he was : pick/ing up an airplane. +C (he was) : he was : give/ing it. +C (um : she was) : he was let/ing her have an airplane. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C he is [-:] dig/ing. +C (he is) he is finish/ed. +C he is dump/ing it out. +E he is? +=C dump/ing it out [+_bch]. +C and[-:] it break|break[EW:broke]. +E it break|break[EW:broke]? +C and he was cry/ing. += [Eg:B1] += [Bg:B2] +C (he is walk/ing along) he is walk/ing along. +C and (he is) : (he is eat/ing) he is go/ing to eat. +C and he is full. +C he had a big tummyache. +C and he was whistle/ing. +C and he was hold/ing [EU]. +C (uh) he was fall/ing. +=C fall/ing [+_bch]. +C and he was all right. += [Eg:B2] += [Bg:B3] +C he is[-:] talk/ing. +C he is[-:] look/ing. +E look/ing? +C he is[-:] : pop/ing. +C [~_or] he is take/ing it out. +E he is take/ing it out? +C [~_yeah] and he is go/ing to pop it. +C it is float/ing up. +C and he popp/ed it. +C and he get|get[EW:got] some more balloon/s. +C he is : bring/ing them. +C and[-:] pop/ing [EU]. +C and he got some more balloon/s. +C and they pop/ed. +C and he got some more balloon/s. +C but they pop/ed. +E but what? +=C but they pop/ed [+_bch]. +C he bring|bring[EW:brought] some more balloon/s. +C they got two of them. +E they got two of them. +C he is hold/ing it. +C they are all hold/ing it. += [Eg:B3] diff --git a/data/ENNI_SALT/train/476.slt b/data/ENNI_SALT/train/476.slt new file mode 100644 index 0000000000000000000000000000000000000000..ede662f2ae9895185e07379488d7f145d0e1887c --- /dev/null +++ b/data/ENNI_SALT/train/476.slt @@ -0,0 +1,202 @@ +$ CHI, EXA ++PARTICIPANTS: CHI target_child, EXA examiner ++DOB: 12/25/1998 ++DOE: 11/21/2002 ++CA: 3;10;26 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 476=CHI += [Bg:A1] +C (um um) they *are look/ing at the apple/s [EU]. +E they are look/ing at the apple/s. +C (um and) and somebody throwed|trow[EW:threw] the apple in. +E somebody threw the apple in. +C (um) : and that giraffe want to[:_wanna] get it. +E the what? +=C and the giraffe want to[:_wanna] get it [+_bch]. +E the giraffe want to? +=C get it [+_bch]. +E get it oh. +C and he got it. +E he got it? +=C yeah [+_bch]. +C and then elephant *is hug/ing it [EU]. += [Eg:A1] += [Bg:A2] +C (um) them look/ing at the water. +E them look/ing at the water. +C (and) (and that elephant) (and that elephant) and that elephant (um) runned|run[EW:ran]. +E that elephant runned|run[EW:ran]? +C and fast. +E fast? +=C yeah [+_bch]. +C (and) (and he) and he got a owie. +E he got a owie. +C (and) and he (look) *is look/ing at it [EU]. +E tell me again. +C (and they look/ing) and the giraffe and the elephant *are look/ing at it [EU]. +E oh the giraffe and elephant *are look/ing at it [EU]. +C [~_yep] (and) (and) (and the guy) and the guy put a bandage on it. +E a guy put a bandage on it? +C [~_yeah] (and) (and) (and) (and a[EW:an] elephant) and a[EW:an] elephant sit[EW:sat] down. +E a[EW:an] elephant sit[EW:sat] down. +C [~_yeah] (and hold/ing) and hold/ing it [EU]. +E and hold/ing it [EU]? +=C yeah [+_bch]. += [Eg:A2] += [Bg:A3] +C (um) a giraffe : got a[EW:an] airplane. +E the? +=C a giraffe got a[EW:an] airplane [+_bch]. +E a giraffe bought a[EW:an] airplane? +C [~_yeah] (and) and he flied|fly[EW:flew] it [EU]. +E he flied|fly[EW:flew] it. +C (and) (and) and the elephant taked|take[EW:took] it from him [~_EXA:_and__the_elephant_take_it_from_him] [~_yeah] (and throwed|throw[EW:threw]) and throwed|throw[EW:threw] it in the water. +E and throwed|throw[EW:threw] it in the water. +C and they [+/]^ +E oops sorry I miss/ed one [~_finds_correct_page]. +C (and) (and) (and they) and the giraffe got mad at him. +E the giraffe got mad at him. +C (and) : (and) (and) (and) (and the) (and the) and the man got sad [EU]. +E and the man got sad? +C (and) (and the elephant) : (and : he took um) : (xxx) I have not told him he got in the water [EU]. +E the elephant told him. +=C in the water [+_bch] [EU]. +E tell me that again. +C (um um) elephant told him : [~_EXA:_told_him] that elephant is in the water. +E elephant is in the water. +C (and) (and the) and the man try/ed to get it. +E the man try/ed to get it. +C [~_yeah] (and) (and) (and the giraffe) and the giraffe cry/ed. +E and giraffe? +=C cry/ed [+_bch]. +E cry/ed? +=C yeah [+_bch]. +C (and) (and the xxx) and the xx get|get[EW:got] it. +E the what? +C the girl[?] get|get[EW:got] it. +E the girl? +=C yeah [+_bch]. +E get|get[EW:got] it? +=C yeah [+_bch]. +E oh. +C (and) and she got it. +E and she got it. +C [~_yeah] : (and the giraffe) (and) (and the girl) and the girl give|give[EW:gave] it to him. +E and the girl give|give[EW:gave] it to him. +C [~_yeah] (and) and giraffe *is hold/ing it. +E the giraffe. +=C was hold/ing it [+_bch]. += [Eg:A3] += [Bg:B1] +C (um and a) (a rabbit) and a rabbit and a dog was[EW:were] make/ing a castle. +C a rabbit comed|come[EW:came] at the dog/z (um) sandbox [EU]. +E a rabbit what? +=C (a) (a rabbit) a rabbit comed|come[EW:came] at the dog/z (um san) sand [+_bch] [EU]. +E sandbox? +=C yeah [+_bch]. +C (and the) and the rabbit was (make/ing um) dig/ing a hole. +E the rabbit was. +=C dig/ing a hole [+_bch]. +E dig/ing a hole? +C [~_yeah] (and) (and) (and) (and um) (and) (and uh) (and he) and he got the pot[?] on the bucket [~__pronounced_"buttit"] down. +E he got a? +=C bucket [~_pronounced_"buttit"] [+_bch]. +E buttit? +=C no [+_bch]. +E oh. +=C a bucket [~_pronounced_"buttit"] [+_bch]. +E a bucket! +=C yeah [+_bch]. +E oh you got a bucket. +C (and) and the sand got out. +E and the sand got out? +=C yeah [+_bch]. +E okay. +C (and) (and) (and) (and he) and he do|do[EW:did] this. +E and he do|do[EW:did] this. +=C yeah [+_bch]. +E what? +C (and) (and) and that puppy was look/ing at it. +E the puppy was look/ing at it : okay. +C (and) (and he fw) (and) (and) and he cry/ed. +E and he cry/ed : oh. += [Eg:B1] += [Bg:B2] +C (um um) and the dog and the rabbit was[EW:were] have/ing a picnic. +E a dog and a rabbit was[EW:were] have/ing a picnic. +C [~_yeah] (and) (and) (and a) and a rabbit have|have[EW:has] a carrot and a sandwich. +E a rabbit have|have[EW:has] a carrot and a sandwich. +C [~_yeah] (and) (and he had) and a dog was still eat/ing. +E the dog was still eat/ing? +=C yeah [+_bch]. +E okay. +C and he was have/ing a drink. +E he was have/ing a? +=C drink [+_bch]. +E a drink? +=C yeah a dog [+_bch]. +E a what? +=C a dog [+_bch]. +E a dog? +=C yeah [+_bch]. +C (and) and there is (a puppy that) (that) (that um) (that : girl) (that doctor) a doctor rabbit. +E a doctor rabbit? +C [~_yeah] the dog got it. +E the dog got it? +=C yeah [+_bch]. +C (and) and he pull/ed him[EW:his] shirt. +E and he pull/ed him[EW:his] shirt? +=C yeah [+_bch]. +C (and he got) and he got him. +E and he got him? +C [~_yeah] (and) and he bring|bring[EW:brought] him at the doctor/z [EU]. +E I am sorry and he? +=C bring|bring[EW:brought] him at the doctors [+_bch] [EU]. += [Eg:B2] += [Bg:B3] +C (a pup) a puppy was got (a um) a balloon (on) (on the) on the wagon [EU]. +E the puppy was? +=C got (a) a balloon [+_bch]. +E got a balloon. +=C on the wagon [+_bch]. +E on the? +=C wag[+/] [+_bch]^ +E wagon. +=C yeah [+_bch]. +E oh okay. +C (and) (and that) (and that) (and that rabbit was) and he smile/ed a rabbit [~_EXA:_a_the_rabbit_he_smile/ed] [~_yeah] and take|take[EW:took] it off. +E and take|take[EW:took] it off? +C [~_yeah] (and) (and) (and) (and the) and the balloon was get/ing away. +E the balloon was get/ing away. +C [~_yeah] (and) (and) and the balloon pop/ed. +E the balloon pop/ed! +C [~_yeah] (and) (and the rab) (and) and the balloon man rabbit gotted|got[EW:got] a balloon/s [EU]. +E a balloon man : a rabbit? +=C yeah [+_bch]. +E got? +=C the balloon/s [+_bch]. +E got all the balloon/s? +C [~_yeah] : (and) (and) (and they) and the rabbit got one. +E and the rabbit got one? +=C [~_yeah] : (they got) he got one [+_BCH]. +E he get[EW:got] one? +C [~_yeah] : (and) and he did not give them one. +E and he can not give them one? +C [~_no] : and a doctor was there. +E and a? +=C doctor was there [+_bch]. +E a doctor was there! +C [~_yeah] (and) (and) (and a rabbit) (and a rabbit said) (the rab) (a doctors) a rabbit said that (a) doctor I need/ed a balloon. +E the rabbit said to the doctor I need a balloon? +C and they give|give[EW:gave] (they) they[EW:them] one. +E pardon me? +=C they gived|give[EW:gave] one of them [+_bch]. +E they give|give[EW:gave] one of them? +C and they (got) got one. +E and they got one. +C one of the rabbit and one of (the) a puppy [EU]. +E one for the rabbit and one for the puppy? +=C yeah [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/478.slt b/data/ENNI_SALT/train/478.slt new file mode 100644 index 0000000000000000000000000000000000000000..69323e46b976b297bae8219921764fd9d9d9235e --- /dev/null +++ b/data/ENNI_SALT/train/478.slt @@ -0,0 +1,93 @@ +$ CHI, EXA ++PARTICIPANTS: CHI target_child, EXA examiner ++DOB: 8/10/1998 ++DOE: 11/20/2002 ++CA: 4;3;10 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 478=CHI ++Tape Location: tape is property of Capital Health (S Bond-Moore) += [Bg:A1] +E what do you see? +E you could start the story with once upon a time. +E can you see the pictures what do you see? +E you know what my tape recorder can not see point/ing remember my tape recorder has to hear words. +E what is that? +C apple. +E then what happened? +C apple falled|fall[EW:fell]. +C got a[EW:an] apple. +C got a[EW:an] apple [~_new_page]. +E what is the last thing you say? +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +E : start with once upon a time. +E : should I turn the page? +E : tell me this. +C got a shot. +E that is right, okay : tell so my tape recorder can hear what happened. +E use words : remember my tape recorder can not see, you use words. +C got a[EW:an] owie [EU]. +C got a[EW:an] owie [EU]. +C got a : bandaid [EU]. +C got a bandaid on her knee [EU]. +C and sit/ing on a bench [EU]. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C (um) got an airplane [EU]. +C : got a[EW:an] airplane [EU]. +C got a[EW:an] airplane [EU]. +C : plane falled|fall[EW:fell] [EU]. +C a plane sanked|sank[EW:sunk]. +C a plane sanked|sank[EW:sunk]. +C a plane sanked|sank[EW:sunk]. +C a plane : sanked|sank[EW:sunk]. +C a plane sank. +C a plane sank. +C a plane is go/ing to [~_gonna] pick up a[EW:an] airplane. +E pardon me? +=C pick up a[EW:an] airplane [+_bch]. +C (um) got a[EW:an] airplane [EU]. +C got a[EW:an] airplane [EU]. +=C and the end [+_bch]. += [Eg:A3] += [Bg:B1] +C make/ing a castle [EU]. +C make/ing a castle [EU]. +C make/ing a castle [EU]. +C the castle fall/3s. +C make/ing a castle up. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C walk/ing [EU]. +C got a : carrot. +C : go/ing to [~_gonna] put all of them back in the packsack [EU]. +C it falled|fall[EW:fell]. +C and it walk|walk[EW:walked] away. +C going to [~_gonna] grab his (sh) coat. +C and gonna xxx [~_said_very_quietly]. +C xxx. +C them[EW:they] pick up [EW:the]dish. +=C the end [+_BCH]. += [Eg:B2] += [Bg:B3] +C (um) go/ing to [~_gonna] put that on the : wagon. +C look at that on the wagon. +C look at that on the wagon. +C xxx. +C it flied|fly[EW:flew] away. +C it is[EW:has] pop/ed. +C it has got five balloon/s. +C I am go/ing to [~_gonna] get one. +C I am go/ing to [~_gonna] get one. +C I am go/ing to [~_gonna] pop the xx. +C it is go/ing to [~_gonna] get more balloon/s. +C I am go/ing to [~_gonna] get : more balloon/s. +C I am go/ing to [~_gonna] get more balloon/s. +C I am get/ing more balloon/s. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/479.slt b/data/ENNI_SALT/train/479.slt new file mode 100644 index 0000000000000000000000000000000000000000..0da0aefe4e37480f7bd3b869ea79b988a9c8fded --- /dev/null +++ b/data/ENNI_SALT/train/479.slt @@ -0,0 +1,92 @@ +$ CHI, EXA ++PARTICIPANTS: CHI target_child, EXA examiner ++DOB: 2/27/1998 ++DOE: 12/05/2002 ++CA: 4;9;8 ++Gender: F ++Context: Nar ++Group of CHI: SLI ++ID: 479=CHI ++Location: Disk L31 Track 1 += [Bg:A1] +C the : elephant want/3s to get the balloon/s. +C she lost her balloon. +C and (she said) oh my : elephant said. +C and that[!] said : he would get it for (her) the elephant [EU]. +C she was so proud to go get her balloon. +C she want/3s to get it and like|like[EW:likes][?] her. += [Eg:A1] += [Bg:A2] +C the : that elephant want/3s to get in the pool. +C (the elephant pus) : he push|push[EW:pushed] her in. +C and (she is like) : she runned|run[EW:ran]. +C (: and it is like :) she went [~_yeeha]. +C and she hurt her knee. +C and she cry/ed. +C then : it was so better : in the bandaid [EU]. +C and : she like/3s her bandaid. +C it help|help[EW:helps] her feel better. += [Eg:A2] += [Bg:A3] +C the elephant (was) : (the ban) : the bandaid help|help[EW:helps] her feel better. +C then : she fall|fall[EW:fell] down in a[EW:an] airplane [EU]. +C and she got it in the airplane [EU]. +C and she was so happy. +C then she was : so happy to get (uh) : her airplane. +C she want/3s her airplane back. +C then : she want/3s it. +C and (she want/3s) : then : he will get it for her. +C (and sh) : and he could reach it for her. +C and thinks so he could [EU]. +C and he gots[EW:has] xx [~_sounds_like_"basmin"] and like a suit. +C I guess : (she) : he : (xx) got (hims ai) her airplane. +C and she was still happy. +C (and) and this other was : mines[EW:mine]. +=C and that is the end [+_bch]. += [Eg:A3] += [Bg:B1] +C (the elephant um) : they want to make a sandcastle. +C and they build it. +C and they build it. +C then : he messed it up for him. +C and it is so : beautiful. +C and they xxx. +C and he was sad. +C and he was sad too. +=C end [+_bch]. += [Eg:B1] += [Bg:B2] +C a letter! +C a letter! +C they want to : get a balloon. +C and they build a sandcastle. +C and they try to go in the sand and xx [~_sounds_like_'blom']. +C and he said sorry. +C xx [~_says_something_under_breath]. +C and the bunny rabbit was so happy today. +C and : they was[EW:were] so : pushing in : the case [EU]. +C he push/ed them in. +C and they was|be[EW:were] so happy to go. +C then he was so happy to go see her. +=C and that : is the end [+_bch]. += [Eg:B2] += [Bg:B3] +C this is a balloon. +C they got a balloon : to : put it on the wagon[!] [EU]. +C then he is try/ing to pull it off. +C and him[EW:he] xx [~_swing?] was flying (in) in the sky. +C and it was fly/ing. +C and it broked|break[EW:broke] and broked|break[EW:broke]. +C then : he gots[Ew:has] more balloon/s. +C and : he went go get some more. +C then : oh (wa) lots of balloon/s today [EU]. +C and he said : no I want a balloon. +C said : I want to [~_wanna] have a balloon [EU]! +C I want a balloon! +C and they saw : more[!] balloon/s. +C then he want/3s a balloon : and a balloon. +C then he want/3s a balloon. +C and he get/3s him. +C and he is so lucky to get a balloon. +=C and that is the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/480.slt b/data/ENNI_SALT/train/480.slt new file mode 100644 index 0000000000000000000000000000000000000000..10cf3fb67e289e87a5d598a94a684625b8237be7 --- /dev/null +++ b/data/ENNI_SALT/train/480.slt @@ -0,0 +1,153 @@ +$ CHI, EXA ++PARTICIPANTS: CHI target_child, EXA examiner ++DOB: 7/28/1998 ++DOE: 12/03/2002 ++CA: 4;4;5 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 480=CHI ++Tape Location: Disk M15 Track 5 += [Bg:A1] +C the boy said ooh cool! +C and (the elephant) the elephant play|play[EW:played] with *a soccer ball (umhm)[EU]. +C and see the giraffe is sorry to take the elephant [EU]. +C and (that is : and the) see and he catch|catch[EW:caught] it all the way he can long [EU]. +C he (went) got[!] long [EU]. +C long can not[?] [EU]. +C he got little arm [EU]. +C and he swim|swim[EW:swam]. +C he can not swim. +C and he catch|catch[EW:caught] the[?] ball. +C he give|give[EW:gave] it to : (the um) the elephant. +C and give|give[EW:gave] it back[?]. +C and see? +C (he is ha) he gived|give[EW:gave] : the ball to giraffe. +=C and see : and this is done [+_bch]. +C and see him. +C and (he) he is happy! +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C a long time ago he is go/ing swimming pool [EU]. +C and (he) the sign said no run/ing : because it is slippery[!]. +C a long time he is go/ing in the pool[!] : and splash/ing in the pool [EU]. +C and he slip|slip[EW:slipped]. +C (and he hurt heself[EW:himself] and uh) and he hurt himself [~_pronounced_"heself"]. +C and he got[EW:had] no blood. +C he got a little owie on [EU]. +C he got a bandaid. +C and : see this girl gave a bandaid on there [EU]. +C and (the mom) the elephant *is sad[!] oh dear yeah [EU]. +C and he said ow(*3). +C and this [EU]. +C (and hes) and the elephant *is get/ing up [EU]. +C and : the strong[?] man : get|get[EW:got] the leg up (umhm). +C and (he said) : he said the man is : too bad [EU]. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C (the man he) the man got a plane : (umhm). +C and (the) the elephant said wow. +C and see? +C (the giraffe said : to the) : and see the giraffe want/3s the plane back : because the giraffe is this[!] plane : because the elephant that[!] is yours (umhm) [EU]. +C and (he is) the elephant threw it in the pool! +C : oh. +E can you uncover your hands so I can hear you better, thank you. +C and see a long time : the elephant said sorry [EU]! +C and see the giraffe is too mad. +C and see? +C and see this man can not catch us (uhuh). +C a long time : elephant can not do it [EU]. +C the big[!] elephant *is strong [EU]. +C oh no he can not reach it. +C nope! +C yeah. +C and a long time : (the giraffe is) the giraffe is too sad [EU]. +C and see him? +C a catcher man : know|know[EW:knows] to do it [EU]. +C and he catch|catch[EW:caught] it. +C and he knew. +C and the long time he catch it : far away [EU]. +C he give|give[EW:gave] it back there the giraffe. +C and he said : thank you. +C and see the elephant too happy [EU]. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C (the dog) the dog make|make[EW:made] a castle. +C (and he) (the rabbit say/3s) the rabbit shovel|shovel[EW:shovels]. +C and the rabbit : share/ed the dog [EU]. +C and the rabbit is shovel[EW:shovelling]. +C (and the see) and see him? +C the dog is not happy : because the rabbit (do) (pour/ed um) pour/ed (the) the sand on the castle. +C (and) (and the dog) and the dog is not happy. +C (and the dog is) and the rabbit is not happy too[EW:either]. +C and : see is one castle [EU]. +C then xx the way there (umhm). +C (and : there) and see? +C and the dog fix|fix[EW:fixed] it all week. +C and the dog is sad. +C and the rabbit said : (um) not sorry [EU]. +C and he do|do[EW:did] this. +C (and do) (and the) (he) the dog just keep do/ing it [EU]. +C it is almost done (umhm). +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C the rabbit is have/ing a picnic. +C then the dog is have/ing a picnic. +C and : see the dog. +C the dog is (se) hungry. +C and see the rabbit is hungry. +C (and the do) the rabbit said : (uh) too full. +C and the dog is not too full. +C no. +C and (the) the rabbit is too full. +C the dog (is) is[!] drink/ing. +C and see the rabbit is (got) eat/ing a lots[EW:lot] of food. +C and the doctor said [~_high_pitched_voice] help help doctor. +C [~_high_pitched_voice] (see uh) see the rabbit has got too full. +C [~_high_pitched_voice] (come come the um come come come come s come and) come to see what (the do) the rabbit done : (umhm)[EU]. +C and see? +C the lady do|do[EW:did] fix (the dog um) the rabbit (umhm). +C and see? +C (the ra) it is suppose/ed to xx the rabbit. +C (mhm) and see him? +C the rabbit : *is take/ing (the doctor from) the doctor from be[?] : (umhm) [EU]. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C see? +C along time the rabbit come|come[EW:came] and said hi [EU]. +C and see. +C the dog said hi. +C (and the dog) and the rabbit wrap/ed his balloon (umhm). +C and (see he said) (he) (the dog) see the rabbit push/ed the dog. +C and : the rabbit (doing t) : *is pop/ing the balloon (umhm) [EU]. +C and see? +C and[-:] the dog is come/ing all day. +C and see? +C the rabbit *is take/ing this : thing off [EU]. +C and see the dog is (not) not happy. +C and see? +C and the long time the rabbit catch|catch[EW:caught] it [EU]. +C and the dog : will catch it (umhm). +C and see? +C the dog is too mad. +C and see the rabbit is not too (mad) mad because he chew/ed gently (umhm). +C and he get[EW:got] another balloon : (uhhm yeah). +C and he said [~_high_pitched_voice] we have a balloon (yeah umhm)? +C and he said [~_low_pitched_voice] (um) no you have no money change : now [EU]. +C and he said : oh dear. +C and he said [~_low_pitched_voice] no. +C no change[?] (umhm). +C (and the doctor : thought) (the rabbit said hm) (the doctor said) : (the) the doctor said [~_high_pitched_voice] hurry get the doctor. +C and the doctor got the change. +C [~_high_pitched_voice] (we have) you give[?] balloon to us [EU]? +C yes : and he said he got change (yep umhm). +C he is happy and change [EU]. +C and a long time ago : the rabbit give|give[EW:gave] change to the rabbit (umhm). +C and he is happy he get|get[EW:got] *a balloon[-:] (umhm) [EU]. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/482.slt b/data/ENNI_SALT/train/482.slt new file mode 100644 index 0000000000000000000000000000000000000000..3ad777f87251f4fe445e4ec080f3723b0851a525 --- /dev/null +++ b/data/ENNI_SALT/train/482.slt @@ -0,0 +1,88 @@ +$ CHI, EXA ++PARTICIPANTS: CHI target_child, EXA examiner ++DOB: 11/21/1998 ++DOE: 5/06/2003 ++CA: 4;5;15 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 482=CHI += [Bg:A1] +C (um : that) : that elephant *is sad [EU]. +C them pun[?] the lady [EU]. +C the xx [~_sounds_like_/mI/] went in the water. +C and[-:] and try/ing to (help) : help [EU]. +C say thank you [EU]. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C (um) they want go in the water not [EU]. +C and he get/3s in the water. +C and they run from the cow. +C and (the guy : fr um) the guy hurt him[EW:his] knee. +C and it *is bleed/ing [EU]. +C and : he bite|bite[EW:bit] her. +C and the bandaid [EU]. +C and he say|say[EW:said] bad boy. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C bad [EU]. +E tell me the story. +C bad [EU]! +E once upon a time. +C (once : in) : (in the). +E what can you see there? +C play/ing a[EW:an] airplane [EU]. +E okay. +C (and he) and her dog say|say[EW:said] in the xx. +C and he grab|grab[EW:grabbed] airplane her [EU]. +C and he [~_makes_sound_"grrr"]. +C and : her[EW:she] *is sad [EU]. +C and say hey [EU]! +E keep go/ing, are you finish/ed that part, okay. +C and try/ing to get *the airplane [EU]. +C and : xx him[EW:he] *is try/ing [EU]. +C and them[EW:they] try/ed [trieded|tryEW:tried] to get it back. +C (um the) (the um) and them[EW:they] got the airplane. +C and they (ha) be happy they got the airplane [EU]. +C and them[EW:they] *are happy [EU]. +=C the end [+_bch]! += [Eg:A3] += [Bg:B1] +C (um) : do not take that xx [+_bch]. +C (um) there was a sandbox. +C and the boy build|build[EW:built] : *a castle [EU]. +C (and the) and (the p) the puppy maked|make[EW:made] [~_make-ed|makeEW:made] a mess. +C and the pig you can make it again. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C the xx have treat/s. +C and the the doggy ate her sandwich. +C (and the) : and her[EW:she] pull|pull[EW:pulled] [EU]. +C (and) : and the puppy drank it. +C (and the) (and) (and) and them[EW:they] fall|fall[EW:fell] in the water. +C (and) : and (the um) : (the ch : uh) : the dog *is with the mommy [EU]. +C them[EW:they] falls|fall[EW:fall][?]. +C and them[EW:they] (um) got (him um) him[EW:his] mom. +=C the end [+_bch]! += [Eg:B2] += [Bg:B3] +C (uh) : them[Ew:they] *are pull/ing a wagon [EU]. +C (and : and it) and (her) them[EW:they] gots[EW:have] something on it. +C (and) and the tam[?] it bad [EU]. +C and (and it) : my balloon [EU]! +C it blew away. +C him[EW:he] say|say[EW:says] [~_makes_noise_'grrr'] : like the dog. +C and (the) (that) that is where they ran[?] dog/z balloon/s [EU]. +C and : him[EW:he] like/3s the puppy. +C the balloon *is back [EU]. +C the man (mean) : *is mean [EU]. +C the man : *is sad[?] [EU]. +C and the lady that backed him home [EU]. +C and he *is *a sad boy [EU]. +C and they hello [EU]. +C (um) : them[EW:they] be happy [EU]. +=C the end [+_bch]. += [Eg:B3] \ No newline at end of file diff --git a/data/ENNI_SALT/train/501.slt b/data/ENNI_SALT/train/501.slt new file mode 100644 index 0000000000000000000000000000000000000000..d31306de3474c60f155984fff6e17de8d0932353 --- /dev/null +++ b/data/ENNI_SALT/train/501.slt @@ -0,0 +1,105 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 6/18/1994 ++DOE: 3/1/2000 ++CA: 5;8;12 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 501=CHI ++Tape Location: Disk L2 Track 2 += [Bg:A1] +C There is a giraffe and a[EW:an] elephant. +C (the g*) : the elephant is bounce/ing a ball by the water. +C (the) the ball went into the : water. +C And the elephant was scare/ed and the giraffe [EU]. +C the giraffe dived|dive[EW:dove] in. +C and the elephant could[Ew:did] not even : want to look at it. +C the giraffe gave the ball to the elephant. +C Then the giraffe smile/ed at the elephant. +C And the (su* : uh) elephant smile/ed at the giraffe. +=C That is the end [+_bch]. += [Eg:A1] += [Bg:A2] +C The elephant and the giraffe (: um) are stand/ing on the walkway : by the pool. +C the elephant is go/ing to run into the pool. +C she slip/ed. +=C and (the she s*) that is all [+_bch]. +=C She slip/ed [+_bch]. +C She hurted|hurt[EW:hurt] her leg. +C the giraffe (was was uh) was not smile/ing. +C the lifeguard came and look/ed at the elephant/z owee. +C the lifeguard putted|put[EW:put] a bandaid on : (her owee) the elephant/z owee. +C she had to sit on the bench til[EW:until] : her knee felt better. +C (now she uh) now (uh no) the lifeguard was not happy (because it is) because there is not suppose/ed to be run/ing on the deck. +=C That is the end [+_bch]. += [Eg:A2] += [Bg:A3] +C a[EW:an] elephant : and the giraffe [EU]. +C (uh) the giraffe had : a[EW:an] airplane. +C the elephant was stare/ing at the airplane, how : the giraffe could not make it go up [EU]. +C (then) then she want/ed a turn. +C and she grab/ed it out of the giraffe/z : hand. +C now when (sh*) they were (pull) go/ing to pull on it : it just fell in the water : of the pool. +C the giraffe was mad at the elephant, : what she did to his airplane [EU]. +C now the lifeguard came and (s*) saw : (uh um) the little toy airplane was in the water [EU]. +C the elephant explain/ed it was an accident. +C the lifeguard was (s* s*) try/ing to reach it (through the) by the pool. +C the giraffe was cry/ing because : the lifeguard could not reach it. +C and the elephant felt sorry. +C a[EW:an] other elephant had a : net. +C and she was smile/ing. +C she took out the airplane (from) with the net from the water. +C now the giraffe was happy. +C the giraffe was smile/ing and the elephant [EU]. += [Eg:A3] += [Bg:B1] +C there is a rabbit and a dog. +C the dog made a sandcastle. +C the rabbit want/ed to help. +C so (he had she he) he gotted|got[EW:got] a shovel and a pail. +C he dump/ed it on the sandcastle. +C it broke the sandcastle. +C and the dog was : almost go/ing to cry. +C the dog was cry/ing because : the rabbit dump/ed the sand on his sandcastle what[EW:that] he built. += [Eg:B1] += [Bg:B2] +C the dog and the rabbit had a picnic basket. +C the dog was wave/ing. +E wave/ing? +=C at the rabbit [+_bch]. +C The rabbit brought a lot of stuff. +C he was drool/ing because : all his stuff he want/ed to eat right now. +C he ate all of it. +C (And and) and he had a : full tummy. +C his tummy ache/ed. +C he : went and (saw his mom and) ((no)) saw a doctor : and : telled|tell[EW:told] my friend (is) has a tummyache [EU]. +C the dog pull/ed (him) her (to) to his friend. +C (the) the nurse said you should not have ate too[EW:so] much. +C (he sh*) she said walk with me. +C we will get you to the hospital. += [Eg:B2] += [Bg:B3] +C the dog had : the balloon on his (str* : uh) : stroller. +C the bunny saw the balloon. +C and : he was go/ing to pull his arm to get the balloon. +C he : untie/ed the balloon. +C and then : (his) the dog/z balloon went up in the air. +C the dog was mad at the : bunny. +C the rabbit saw a balloon man : have/ing balloon/s [EU]. +C the angry dog : saw the balloon : man : had lot/s of balloon/s. +C and the rabbit was go/ing to get one. +C it is (the) : the balloon (with the) with the : thing where it had the number on it with cash. +C (The bu*) the bunny did not have any money to get that balloon for him. +C (to) : the bunny went to the nurse. +C and the dog stay/ed with the man. +C the bunny said it to the nurse (s*) could you get one of those balloon/s for me? +C I do not have too much money (for) to get one for my friend. +C she paid for the money[EW:balloons]. +C and there was[EW:were] two balloon/s what[EW:that] they got. +C they each have their balloon. +C and (they) the dog was hug/ing his. +C and the rabbit was hold/ing on to it (on) on the side/s. +E and? +=C that is all [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/502.slt b/data/ENNI_SALT/train/502.slt new file mode 100644 index 0000000000000000000000000000000000000000..75a58af3ae3ed723fd1608bbfb8ed592bd5da440 --- /dev/null +++ b/data/ENNI_SALT/train/502.slt @@ -0,0 +1,95 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 9/29/1994 ++DOE: 2/17/2000 ++CA: 5;4;19 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 502=CHI ++Tape Location: Disk M1 Track 3 += [Bg:A1] +C a cow saw (um) : a[EW:an] elephant. +C : and (um) : they want/ed to go in the pool[-:]. +C : and that : (um) : giraffe was try/ing to catch the ball. +C : and : (um) : the elephant catched|catch[EW:caught] the ball. +C : and (um) : the elephant : want/ed to keep it. +=C that is the whole story [+_bch]. += [Eg:A1] += [Bg:A2] +C (the ele*) the giraffe saw a pool[-:] :. +C they went there[-:] :. +C and the elephant ran :. +C and the elephant scrape/ed his knee[-:] :. +C and he was cry/ing :. +C and he need/ed help. +C so (h*) he put a (bandage on) bandaid on (hi*) her :. +C and (um) it was feel/ing better :. +C so she sat on the bench. += [Eg:A2] += [Bg:A3] +C (um) : (the elephant) the giraffe want/ed to (play hi*) play with his plane. +C : and : the elephant said no[!]. +C : and the elephant (um) want/ed to play with it. +C so : she grab/ed it from the giraffe {makes high pitched sound} [/hU/]. +C and the elephant (throw it) threw it (o*) in the water. +C : and : the : giraffe trieded|try[EW:try/ed] to get it. +C and *the elephant try/ed to : get it : [EU]. +C : and : he help/3s [-:]. +C : and he : (s*) decide/ed to get it. +C : and (um) : he try/ed to (get) get it. +C and[-:] : the elephant try/ed. +C and the giraffe try/ed. +C and (the : elephant did not ca* he the elephant) the : different[!] elephant want/ed to get it. +C : and[-:] (ah) : the different elephant : got it. +C : and[-:] the different elephant : got it. +C : and the giraffe said thanks elephant. += [Eg:A3] += [Bg:B1] +C (the bunny the) ((who is this)) <> <> the bunny[-:] try/ed to : fix[-:] the : castle. +E . +E . +C : and the bunny made a : castle. +C : (the bunny) : the sand (w*) was dryed[EW:dry] [?]. +C (and the) : and her friend said {sharp intake of breath}. +C : and the bunny said {sharp intake of breath} : let us make another one. += [Eg:B1] += [Bg:B2] +C (um) : the bunny and her friend went on a picnic. +C and the bunny ate : food. +C and the bunny was full. +C and the bunny : hit his head on the grass. +C (and his mother said[-:] : in her) the bunny/z friend : went to his mother. +C (and then : he said she said) he said come here. +C and (sh*) she said : look at that round : thing[?]. +E what? +=C the round thing on his head [+_bch]. +C and : the bunny said goodbye to his friend. += [Eg:B2] += [Bg:B3] +C the[-:] bunny said hi to his friend. +C he want/ed a balloon. +C : and he took one. +C and he stealed|steal[EW:stole] it. +C : (and he) and the bunny/z friend said {gasping sound}. +C and it blowed|blow[EW:blew] away. +C and the bunny/z friend said {shrugs shoulders}. +E what was that? +=C he said [+_bch]. +E what did he say? +=C he said {shrugs shoulders} [+_bch]. +E oh shoulder/s up. +C (he s*) he was angry. +C : and the bunny/z friend : want/ed a balloon again. +E he want/ed to what? +=C he want/ed a balloon again [+_bch]. +E oh balloon oh okay I was not sure what you said. +C (and the bunny/z frien*) the bunny : (um) show/ed what (one one/s) one it want/ed. +C and : it was number five. +C : (and the bunny said) and the bunny said no[!]. +C and[-:] the bunny want/ed to have it. +C (but he she) and he change/ed it/z[EW:his] mind. +C : and then (her) his mother came. +C and they had two balloon/s. +C : and then : they got it. += [Eg:B3] diff --git a/data/ENNI_SALT/train/503.slt b/data/ENNI_SALT/train/503.slt new file mode 100644 index 0000000000000000000000000000000000000000..2b01af71a71ed190706065b28fe81bca27282f03 --- /dev/null +++ b/data/ENNI_SALT/train/503.slt @@ -0,0 +1,112 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 8/7/1994 ++DOE: 2/24/2000 ++CA: 5;6;17 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 503=CHI ++Tape Location: Disk L1 Track 38 += [Bg:A1] +C (Once upon a time there was an elephant and a goat) [~_asks_to__start_again] Once upon a time there was : a giraffe and a[EW:an] elephant. +C and the giraffe : was play/ing basketball. +C (then) then the basketball : (went) it went into the water. +C (and) and the giraffe jump/ed into the water and swam after the ball. +C (but then the) but then the giraffe (got it) got it for the elephant. +C then the elephant : made fun (of) of the giraffe. +=C And then that is the end [+_bch]. += [Eg:A1] += [Bg:A2] +C Once upon a time (it was call/ed) a giraffe and the elephant (were) were almost go/ing to go dive/ing. +C Then the elephant said (giraffe/s) giraffe do you want to go to the diving board. +C (and the elephant) and the giraffe said yes[!]. +C And then the elephant ran off (to) (to the) to the diving board. +C Then she (hurt) hurt her knee. +C Then the elephant start/ed to cry. +C And the giraffe try/ed to help her. +C (then) (then) then the parent (gave) gave the elephant a bandaid/s[EW:bandaid]. +C And then the giraffe said see? +C Cut/s are not that bad. +C And then the chief said yes, they are not that bad. +C And then the chief said no run/ing. +=C And that is the end [+_bch]. += [Eg:A2] += [Bg:A3] +C Once upon a time an elephant and a giraffe were play/ing airplane. +C and the giraffe : went boom : right when the airplane was fly/ing. +C and then the elephant took it away from the giraffe. +C and then she flew it through the air. +C and then it fell in the pool. +C and (then) (then) then the giraffe got mad at the elephant. +C and (then) (then the) (then) then the chief saw it. +C (Then the el) then the elephant saw it. +C (then) then the giraffe saw it. +C (Then they try/ed) then the elephant said please chief, please chief : can you get that airplane out of the water? +C Then the : chief try/ed to reach it. +C But he could not. +C Until he said no, I can not get it. +C Until the girl (uh) chief came along with a net. +C Then she got it out. +C Then she gave it (to) to the giraffe. +C Then elephant (was) was happy. +C And the giraffe was happy. +=C That is the end [+_bch]. += [Eg:A3] += [Bg:B1] +C once upon a time : a bunny and a rat were play/ing together. +C and they made a sandcastle. +C the bunny had digged|dig[EW:dug] up some sand and put it in his bucket. +C then he dump/ed it onto the castle. +C (then the bunny) then the bunny was not that happy. +C and (then) then the rat was cry/ing. +=C that is the end [+_bch]. += [Eg:B1] += [Bg:B2] +C once a [+//]> +=C this is the same story [+_bch]. +E are you sure? +=C (it has) it has the same character/s [+_bch]. +E same character/s? +=C that other red book [+_bch]. +E okay. +C once upon a time (there) a rat was go/ing picnic/ing. +C and a bunny was go/ing picnic/ing. +C they had a nice meal. +C and the bunny got so stuff/ed. +C they could not eat any more. +C then he got very : very sick. +C and (then) : then the bunny was asleep. +C and rat went to the doctor. +C (and) (and) (and) and the rat pull/ed the doctor closer and closer. +C and (the) (the bunny said) (the) (the) the doctor said open wide. +C and : then the bunny open/ed his mouth wide. +C and (then) : then the doctor went (with the bunny) with the bunny rabbit. +=C that is the end [+_bch]. += [Eg:B2] += [Bg:B3] +C once upon a time there were[EW:was] a bunny and a rat. +C a bunny was (run) run/ing along the path. +C the rat was carry/ing her carriage with some balloon[EW:balloon/s](and a win) (an) and a window. +C then the bunny said : can I have that balloon? +C and then the rat said no. +C and then : the rabbit untie/ed it from the carriage. +C and (then) (then a) then the balloon flew off. +C and the rat got very mad. +C (Then) (then) then the balloon storekeeper : (come) come/ing along the path [EU]. +C and then the storekeeper might[!] give : him one. +C he did not. +C (but) but the storekeeper said it is five dollar/s. +C and then the bunny check/ed his pocket/s. +C he did not have any money. +C and then they were sad that they (did not give any) did not get any. +C then they walk/ed away. +C and then the bunny came to the doctor : again. +C (and) : and he said doctor can you help me get a balloon? +C the doctor said maybe. +C : and then (um) they got a balloon. +C (the) the doctor had some money. +C (and it gave) and it gave him the money. +C and (then) then they both got a balloon. +=C and the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/506.slt b/data/ENNI_SALT/train/506.slt new file mode 100644 index 0000000000000000000000000000000000000000..b68d2c5a78d8f07da7a6b17b92f1cec3e913f8d2 --- /dev/null +++ b/data/ENNI_SALT/train/506.slt @@ -0,0 +1,98 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 12/1/1994 ++DOE: 3/3/2000 ++CA: 5;3;2 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 506=CHI ++Tape Location: Disk M1 Track 47 += [Bg:A1] +C they are friend/s : play/ing with ball/s. +C : but one of the ball/s fell in the water. +C : then : (um) : (giraffe um) : (giraffe) the giraffe fell in the water too. +C and then there was one more ball. +C : then she want/ed to keep it. += [Eg:A1] += [Bg:A2] +C (there) they want to go swim/ing. +C (so they) so the elephant said that let us go swim/ing. +C and so she kick/ed and run|run[EW:ran]. +E kick/ed and what? +=C runned|run[EW:ran] [+_bch]. +C and she scrape/ed her knee on the (uhm) sidewalk. +C : and her dad came. +C and she was scare/ed to get a bandage. +C : and then she close/ed her eye/s. +C and she cry/ed when it was a bandage on her. +C : then she had to settle down. +C : her dad was (uhm) : so happy at her friend [EU]. +C and then her dad was mad at her. += [Eg:A2] += [Bg:A3] +C they were play/ing with : the airplane. +C and they are take/ing turn/s. +C and then : he said : he was play/ing with it. +C and then (sh) (he) she took it away from the giraffe. +C and then they drived|drive[EW:drove] in : through the water. +C and they drived|drive[EW:drove] and drived|drive[EW:drove]. +C and : a dad came. +C and she had to walk to the dad. +C : and then she ask/ed her dad that : [~_high_pitched_voice] I let go of it. +C : and then the dad try/ed to get : the : airplane. +C but it was drive/ing : to his hand. +C and the dad was (so[-:]) so : try/ing to get it. +C he was so mad. +C : (she) (he cry/ed) the giraffe cry/ed. +C and then the mom came and got a fish/ing : net. +C and then : she try/ed to get it. +C and then she did it. +C but she got it (thur) through her hand/s. +C : and then (she) he (um) love/ed play/ing with it. += [Eg:A3] += [Bg:B1] +C (the bunny/s and) the bunny and the puppy dog were make/ing a sandcastle. +C they shovel/ed and shovel/ed and made a sandcastle. +C and then he dump/ed it (on and) on the puppy dog/z sandcastle. +C and it : broke. +C and (she : um) the bunny was so[-:] sad because : the dog was : so sad too. +C and she start/ed cry/ing. +=C and the bunny was [+_bch] [+/]^ += [Eg:B1] += [Bg:B2] +C (um they were) the bunny and the puppy dog want/ed to have a picnic. +C so the : bunny was eat/ing too much. +C and he felt sick. +C and then his stomach was get/ing fuller and fuller : just like mine. +C and : (his head) his (um) head was : too full. +C and then he runned|run[EW:ran]: to get his mother. +C he pull/ed and pull/ed on (him) her. +C and then (he) she (um) check/ed the bunny. +E she did what? +=C check/ed the bunny [+_bch]. +C and then he had to go home : to the doctor/z. += [Eg:B2] += [Bg:B3] +C (um) the bunny and the puppy dog were : take/ing a wagon with a balloon on. +C and then the balloon was get/ing bigger and bigger. +C so (he tie) the bunny tie/ed it on. +C and then it blowed|blow[EW:blew] away out of his : hand. +C the puppy dog was so mad. +C it pop/ed. +C : and then there was a guy : come/ing with a full (um) : (uh) balloon/s [EU]. +E guy come/ing with a what? +=C (balloon/s) a full balloon/s [+_bch]. +C and then (he) : he need/ed one for his wagon. +C and there was one number five. +C and then that is it. +C I just got : one number five. +C and there was only play/ing now. +C there was no more number five/s. +C just only play/ing. +C and then they were so sad that there was only one number five. +C there was[EW:were] two left. +C and then they took it. +C we get to keep these two balloon/s. +C yay[!] said : the puppy dog and the : bunny. += [Eg:B3] diff --git a/data/ENNI_SALT/train/507.slt b/data/ENNI_SALT/train/507.slt new file mode 100644 index 0000000000000000000000000000000000000000..f015879de661e496fed1e8df839c4dc2cf8a8917 --- /dev/null +++ b/data/ENNI_SALT/train/507.slt @@ -0,0 +1,129 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 9/18/1994 ++DOE: 3/1/2000 ++CA: 5;5;12 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 507=CHI ++Tape Location: Disk L2 Track 12 += [Bg:A1] +C There is a cow say/ing can I have one of those balloon/s? +C And then one of them fall|fall[EW:fell] into the river. +C And then the cow go/3s in. +C : (and : take/3s) (and try/3s to get the balloon) (and try/3s to get the balloon) [~_interruption_of__someone_coming_into_the_room] and then the cow try/3s to get the balloon. +C (and then he) and then she say/3s thank/s[!]. +C And how is the cow go/ing to get out? +C and then he got out. +=C No more page/s [+_bch]. += [Eg:A1] += [Bg:A2] +C And there is a pool and only walk/ing allow/ed. +C no run/ing. +C And then he say/3s I am go/ing go. +C and then the elephant say/3s I am go/ing to go in[!] there. +=C and then I do not know what he is do/ing [+_bch]. +E what do/3s it look like he is do/ing? +C he is run/ing[!]. +E okay. +C No run/ing allow/ed on[EW:in] the pool. +C And then she fall/3s and hurt/3s herself. +C And then the coach come/3s and get/3s her. +C And cow come/3s. +C And then she go/3s eek. +C And then she get/3s a bandaid on her knee of a hole [EU]. +C and then she is all better. +C And the coach is mad. +C He say/3s [~_makes_angry_face]. +=C No more page/s [+_bch]. += [Eg:A2] += [Bg:A3] +C (um : he) (he is ga um) the cow is go/ing to put (um the) the (uh) airplane into the water : pool. +C and then he go/3s [~_makes_airplane_sounds]. +C and then (um uh) the elephant grab/3s it out of the cow/z hand. +C And then it sank into the pool. +C And then the cow said [~_makes_frustrated_sound]. +C And then the coach : say/3s hmm ? +C He look/3s into the pool. +C (And then) and then the elephant say/3s [~_high_pitched_voice] I am sorry. +C And then the coach try/3s : to get it : with his hand/s and his trunk. +C and then the cow is cry/ing on his knee/s. +C And he go/3s [~_makes_giggling_sounds]. +C (And then) (and then :) (and then she) (and then the elephant come/3s) : and then another elephant come/3s. +C (and um) and they say hmmm? +C And then : she try/3s to get it out. +C He is try/ing to get it out. +C And the : cow (st) try/3s to stop cry/ing. +C And the elephant/s are happy. +C But one is sad. +C And then she got it. +C She is come/ing out of the pool. +C And then : he is glad to have it back. += [Eg:A3] += [Bg:B1] +C two bunny/s on the picture : and a sandcastle. +C and : one bunny is dig/ing. +C and one bunny is break/ing the sandcastle. +C and that is mean. +C then the next[!] bunny destroy/3s his[!] sandcastle. +C and he was go/ing not destroy his. +C but he pour/ed (a) a sandcastle on top of it. +C but then : one of the bunny/s said Oh[!] our sandcastle is wreck/ed. +C and then the other dog laugh/3s : has a smile on it. +E the what? +=C a smile on it [+_bch]. +C and : then one doggy is cry/ing. +C and the bunny (is) is just stand/ing there think/ing. +=C that is the last page [+_bch]. += [Eg:B1] += [Bg:B2] ++Comment: CHI comments that "it is the next one of that one, but it's different". +C (um) they are have/ing a picnic. +C (um) one bunny is have/ing a carrot. +C and the doggy is watch/ing. +C his eyeball/s are look/ing : together. +C And then the bunny : is so full (that he) that this [~_pointing__to_her_tummy_bulging_out] [~_laughs]. +C Then the bunny/z : head is spin/ing. +C And the other doggy is drink/ing something. +C And he xxx. +E He what sorry? +C (he) he is drink/ing something. +C And then he : find/3s another rabbit that is a doctor. +C The doggy come/3s to him. +C (And the xxx) (and xxx) and then : he pull/3s him. +C And then they are try/ing to walk/ing[EW:walk]. +C And then the doctor say/3s oh man. +C And then : he take/3s him to the hospital. += [Eg:B2] += [Bg:B3] +C Exactly the same. +C But now (the) the doggy that went to the hospital (he is) the balloon is under his tray. +C And the bunny (sai) wave/3s. +C (um) : (here is m) here is my balloon say/3s the bunny. +C And then : he tie/3s it off and say/3s you can have it. +C That is nice. +C : And then they let go. +C And they scream [~_aaah]. +C And then there is just a line. +C and they can not see the balloon. +C And then : they see more[!] balloon/s. +C And they want to take it. +=C And that is the end of that one [+_bch]. +C (they) They ask/ed : for one more. +C But I do not know what he say/3s. +E You do not know? +=C not talk/ing [+_bch]. +C and then : one : hundred balloon[EW:balloon/s] they give : I think [EU]. +C And then : (he is) the bunny say/3s I do not have any. +C could we still give it away? +C and he says hmm : no. +C But then he find/3s (another doctor) the doctor. +C And he has no balloon/s. +C but maybe he can make one. +C and then the bunny say/3s : (um) I do not have no[EW:any] money. +C and he is still not give/ing me a balloon[!]. +C and then : they gave one cent/s[EW:cent] (to the bun) for the balloon. +C (and then : when he) [~_turn_the_page] and then they got their own balloon/s. +=C No more page/s [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/508.slt b/data/ENNI_SALT/train/508.slt new file mode 100644 index 0000000000000000000000000000000000000000..30eb7662d3bc66cda4cd85f220ff7121d8a8649d --- /dev/null +++ b/data/ENNI_SALT/train/508.slt @@ -0,0 +1,87 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 6/19/1994 ++DOE: 3/3/2000 ++CA: 5;8;13 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 508=CHI ++Tape Location: Disk M1 Track 72 += [Bg:A1] +C first : the elephant was bounce/ing a ball. +C a giraffe (d) come|come[EW:came] [~_past_tense_marked_on_noun:_giraffed_come]. +C the giraffe actually hit it in the pool. +C the giraffe was swim/ing : for it. +C he got it. +C : (and sh) and she was play/ing with it now. += [Eg:A1] += [Bg:A2] +C first she want/ed to go swim/ing :. +C she want/ed to go on the diving board. +C she was run/ing. +C she slip/ed. +C and she fell and hurt her knee. +C and then another elephant comed|come[EW:came] over. +C (and then he she pu) and then he put a bandaid on. +C and then she was feel/ing a lot better. +C then she sit|sit[EW:sat] down. +C she had no run/ing. += [Eg:A2] += [Bg:A3] +C (uh first she want to pla) the boy had a[EW:an] airplane. +C and she want|want[EW:want/ed] to play with it. +C he was fly/ing it. +C and she stare/ed at it. +C and then she took it away. +C : then she (rek) threw it in the water. +E she [+..]. +=C she threwed|throw[EW:threw] it into the water [+_bch]. +C and then the giraffe was angry. +C and then another elephant comed|come[EW:came] along. +C (he was try) (he) she was talk/ing about it. +C (uh) she accidentally put it in. +C and then he start/ed to reach it. +C but he could not. +C (and then) and then he was feel/ing sad. +C and then (um) a girl elephant comed|come[EW:came]. +C (she) (she got a) she got it. +C and she giveded|give[EW:gave] it back. +C (now) now he was happy again. += [Eg:A3] += [Bg:B1] +C they are play/ing in the sand. +C then a bunny comed|come[EW:came] in. +C the bunny was make/ing a castle. +C and the dog was make/ing : (a) a big castle : with stuff on it. +C (then they dump/ed it on) they dump/ed it. +C and it spill/ed. +C (it) : and then the dog build|build[EW:built] it again. += [Eg:B1] += [Bg:B2] +C they went for a picnic. +C they ate. +C the rabbit was get/ing full. +C and he felt dizzy. +C and then a bunny come|come[EW:came] along : a bunny nurse. +C the dog : pull/ed on the nurse. +C (he felt) : the doctor help/ed the other bunny. +C and then he was feel/ing better. += [Eg:B2] += [Bg:B3] +C the dog was (pull/ing a : uh : a) pull/ing [~_what's_that__thing_a_box_like_a_box_and_they_have_wheels_like_four_on_a__car] [~_EXA_tells_CHI_to_decide] a car. +C and then : the bunny want/ed to have (a balloon) the balloon. +C he took it off. +C the dog was not happy. +C (it fe) (it was) it was : go/ing up. +C and then it[EW:he] lost it. +C and the dog felt mad. +C and then there is[EW:were] some more balloon/s. +C and then he want/ed one. +C he give|give[EW:gave] him the five one. +C he did not have any money. +C then another nurse come|come[EW:came]. +C he want/ed the balloon. +C and she gaved|give[EW:gave] him it : two penny/s [EU]. +C and then they have|have[EW:had] balloon/s. += [Eg:B3] diff --git a/data/ENNI_SALT/train/509.slt b/data/ENNI_SALT/train/509.slt new file mode 100644 index 0000000000000000000000000000000000000000..2d36864dccf5d6023678d1ef96aa1599b9a361c6 --- /dev/null +++ b/data/ENNI_SALT/train/509.slt @@ -0,0 +1,90 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 6/9/1994 ++DOE: 3/21/2000 ++CA: 5;9;12 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 509=CHI ++Tape Location: Disk L3 Track 16 ++Comment: CHI uses an exaggerated book-reading register += [Bg:A1] +C I see : (a) a camel. +C And I see an elephant bounce/ing a ball really fast. +=C [~_!_Coughs] That hurt/3s my voice when I do that [+_bch]. +C And the ball got stuck in the beach. +C And the camel was swim/ing for it. +C That is pretty silly. +C And the camel got the ball. +C (And she) and the elephant was so happy to have her ball back. +=C I did it [+_bch]. += [Eg:A1] += [Bg:A2] +C they are go/ing in the water. +C and she want/3s to just dive in. +C she slip/ed[!] : and hurt her knee. +C (and) and the camel got another elephant. +C and (the other) the boy elephant put a bandaid on. +C then the girl elephant was better. +C and the boy elephant said do not slip again. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C The boy camel had a[EW:an] airplane. +C He made funny noise/s with it though. +C And then the girl elephant took it away from him. +C And then she drop/ed it in the water. +C And then the : camel was mad ! +C And then : the boy camel got this elephant to get it. +C [~_coughs] (And the) and the girl elephant explain/ed what happen/ed. +C and then he dived|dive[EW:dove] in to get it. +C but he did not get it. +C and then the boy camel got another girl camel to fetch it with something. +C and she got[!] it. +C and there was his plane. +C he was happy again ! +C and then he : like/ed it so much. +=C The end [+_bch]. += [Eg:A3] += [Bg:B1] +C I see a rabbit and a dog build/ing a sandcastle. +C and the rabbit is build/ing a sand block[!] castle. +C and the rabbit dump/ed[!] it on the sandcastle. +C and then the sandcastle did not look like one no[EW:any] more. +C and then the : dog try/ed to build it all over again. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C they are fetch/ing some food and basket/s. +C and the rabbit caught : (a) : a carrot and : a big long thing. +C and the rabbit was too full from all that. +C and then all that food made him so dizzy. +C and then the dog[-:] went to get : the mother rabbit. +C and the dog was pull/ing the mother rabbit. +C [~!_laughs] that is so silly. +C and then the mother rabbit saw that : (his) her son was so dizzy. +C and then (sh) the : mother rabbit bring|bring[EW:brought] him with her. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C the boy[-:] dog[-:] was push/ing (the) this with a balloon on it. +C and the rabbit was try/ing to get it off. +C but no way. +C the dog did not let him. +C (and he) and the rabbit was tie/ing it off. +C and the : dog was so scare/ed (that) (that it would just). +C I will rope it off. +C and it float/ed away. +C and then the dog was mad[-:][!]. +C and the rabbit was hold/ing a whole[-:] bunch of them. +C and he point/ed right[!] at the same one he had. +C : (it) but it was too much money. +C but he want/ed to pick one what was the same : money as the other[!] one was. +C (and he) and he did not get one. +C and the rabbit was say/ing his mother to : buy him : the same one [EU]. +C and the : son rabbit was point/ing right[-:] at this balloon. +C (and) and she had enough money to buy[!] him one. +C and then they both[!] got one. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/510.slt b/data/ENNI_SALT/train/510.slt new file mode 100644 index 0000000000000000000000000000000000000000..e5f7cc352220496320e370b490caa90798c22a84 --- /dev/null +++ b/data/ENNI_SALT/train/510.slt @@ -0,0 +1,78 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 1/26/1995 ++DOE: 3/9/2000 ++CA: 5;1;12 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 510=CHI ++Tape Location: Disk M3 Track 2 += [Bg:A1] +C once upon : a time : there was a[EW:an] elephant name/ed : Emily. +C : and John ask/ed her if she want/ed to go swim/ing. +C : so Emily was so sad that : (um) Jonathan fell in the pool. +C : she try/ed to give him the ball. +C but he was go/ing to sink. +C : he was so wet that Emily did not like him any more. += [Eg:A1] += [Bg:A2] +C Emily and Michael went to the pool. +C so Michael (ww) want/ed to go in the pool. +C : Emily was go/ing to jump in the pool. +C : but Emily want/ed to jump off : the teetertotter. +C she hurt her knee. +C : (her big brother came) the lifeguard came to see her knee. +C : (and they : did not want) Emily did not want to come to (the) any more swimming pool/s. +C : so Emily and the lifeguard and (ju) Michael were walk/ing her home. +C : the lifeguard said if you only have a parent to come with you. += [Eg:A2] += [Bg:A3] +C Emily and Michael came to the swimming pool again. +C so they were fly/ing their plane in the : room where the pool was. +C : Emily had (a) after a turn from Michael. +C so Michael was so sad that his plane was down in the water. +C : Michael was so upset about Emily drop/ed the plane in the water. +C the lifeguard : was (so nn :) not angry. +C (so) : so (they ask/ed the lifeguard if they could get Michael/z) Emily ask/ed the lifeguard if she can get Michael/z : plane. +C but he could not reach it. +C : (then they were st) then Michael start/ed to cry. +C : a fanciest pig with a : bathing suit can catch it. +C : she got her net in the water : to catch the plane. +C : she gave it to Michael. +C : and Michael was not upset again. += [Eg:A3] += [Bg:B1] +C once upon a time Emily and : (um) : the : [~_dropped_the__microphone] [~_EXA:_you_said_once_upon_a_time_Emily_and] Michael went to the park : to build a sandcastle. +C so (they) Michael was build/ing some of his own sandcastle. +C he was go/ing to wreck : Emily/z sandcastle. +C Emily was not (wa) happy because her castle was broke[EW:broken]. +C she was so sad that Michael did that. +C she cry/ed : because : Michael did that. += [Eg:B1] += [Bg:B2] +C Michael was walk/ing for a picnic with his mother. +C so Michael got out his stuff : for his picnic. +C he was so full that he can barely : eat any more [EU]. +C : so he got seasick from eat/ing all those[EW:that] food. +C so Emily ran to : Missus Kay. +C Missus Kay came with her. +C so Thumper was not all right. +C : so Thumper came with (um) : Missus Kay. += [Eg:B2] += [Bg:B3] +C once upon a time Emily had (a) her wagon and a balloon. +C Michael was come/ing along : to see : the balloon. +C so Michael untie/ed it : from the wagon. +C Emily was so angry. +C she was so upset that her balloon went up. +C they saw a balloon man hold/ing more of the balloon/s. +C : so (Mister) Mister Kay let him pick a balloon. +C but (he) : he said they are only five[-:] dollar/s. +C so they could not get a balloon. +C Missus Kay was come/ing along. +C Missus Kay want/ed to (he) help the little children bunny/s. +C so she did : buy them a balloon. +C (so sh) so Missus Kay (gave them) gave : the man : five[-:] dollar/s. +C they were so happy that they both got their own balloon/s. += [Eg:B3] diff --git a/data/ENNI_SALT/train/511.slt b/data/ENNI_SALT/train/511.slt new file mode 100644 index 0000000000000000000000000000000000000000..fd8c93e4bb84e1d5f47214714a0a50705fa1e28f --- /dev/null +++ b/data/ENNI_SALT/train/511.slt @@ -0,0 +1,76 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 9/12/1995 ++DOE: 2/22/2001 ++CA: 5;5;10 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 511=CHI ++Tape Location: Disk L25, Track 118 += [Bg:A1] +C once upon a time they were bounce/ing a ball. +C but it land/ed in the water. +C he dived|dive[EW:dove] in and grab/ed it. +C but he did got[EW:get] it : from his hand/s [EU]. +C and then[-:] : he was in love. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C once upon a time there was a zebra and his sister. +C they said let us jump on there! +C then she keeped|keep[EW:kept] on race/ing over there. +C then[-:] : she hurt[!] her knee. +C the dad came over and said what is the matter! +C I hurt my knee! +C the daddy put[!] the bandaid on her. +C and then : she was able to walk. +C you should never (wa) run over there ever again. +C no run/ing[!] said the sign. +=C the end. += [Eg:A2] += [Bg:A3] +C once upon a time there was a zebra and a[EW:an] elephant. +C they were play/ing with a[EW:an] airplane. +C she went zoom! +C and then it fell[!] into the water. +C the zebra was so[-:] angry. +C she telled|tell[EW:told] the lifeguard : that [~_high_pitched_voice] please help us because that : airplane is stuck in the water! +C The lifeguard (s) try/3s[!] to reach it. +C then : they bringed|bring[EW:brought] it out. +C she try/ed it with a net : then scoop/ed it up : and send it out of the water [EU]. +C and he was so[-:][!] happy. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C once upon a time there was a bunny : and a doggy. +C they were build/ing a castle[-:]. +C (he drop/ed some s) bunny dump/ed some sand on top of the castle. +C but it accidentally broke into one piece. +C then he had to pile it back up again. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C once upon a time bunny was walk/ing : with his picnic basket. +C they were eat/ing their favourite stuff. +C soon : rabbit was full. +C and then he was twirl/ing in his head. +C then : he runned|run[EW:ran] to : grandma and said : he is twirl/ing[!] in his head[!] said he. +C then she was : say/ing do not eat this carrot! +C and remember next time to not eat that carrot said the old lady. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C once upon a time bunny came over. +C he found a balloon on his wagon. +C then : he thought of something. +C he[-:] : untie/ed it from the wagon. +C but then when it flew up : it pop/ed. +C then they ran to the : balloon man : and buyed|buy[EW:bought] one of those balloon/s[!]. +C but then it said : five twenty nine dollar/s. +C then : they were sad : because they look/ed up : and one balloon went away. +C then the : puppy was stand/ing there. +C then : both guy/s were jump/ing[!] up because he was : hide/ing the balloon/s behind[-:] him. +C then they got their own balloon/s. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/512.slt b/data/ENNI_SALT/train/512.slt new file mode 100644 index 0000000000000000000000000000000000000000..a1729e435a24c4ee35da979b569232bc13926b79 --- /dev/null +++ b/data/ENNI_SALT/train/512.slt @@ -0,0 +1,121 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOE: 3/9/2000 ++CA: 5;5;5 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 512=CHI ++Tape Location: Disk M3 Track 12 += [Bg:A1] +C once upon a : time there was a[EW:an]: elephant (and a) : and a giraffe. +C and the elephant blowed|blow[EW:blew] water. +C and then (the) (hh) he blowed|blow[EW:blew] (the : el) the giraffe right into the water. +C and then (he tr) (the) : (the) (he xx) (he) (the) she blowed|blow[EW:blew] him. +C and then he fell right in with his pant/s and his shirt on. +C and then he row/ed[?] to get the : watermelon. +C but it was not a watermelon. +C it was : a rock. +C (when he) when he put his nose right on it : he swam really fast. +C then he bump/ed his nose right on it. +C and then (uh) : he said ow[!]. +C : then : (um) : the : elephant gave him one more rock. +C and then (he) the : giraffe had water all over. += [Eg:A1] += [Bg:A2] +C once upon a time there was an elephant and a giraffe. +C they look/ed at the water. +C and then the elephant ran. +C and he did not see nothing[EW:anything]. +C so he jump/ed. +C so he went right into the water. +C : and then : the elephant hurt his knee. +C : and then (the mommy) came by [~_I_mean] the lifeguard. +C and lifeguard ran after. +C and then (ih) the elephant cry/ed. +C : and then the giraffe bend|bend[EW:bent] his knee on the ground. +C and (the) the sign said no[-:] run/ing. +C : and then they gave him a bandage the elephant. +C then (the) the lifeguard was angry at the (uh) elephant. += [Eg:A2] += [Bg:A3] +C once upon a time there was an[EW:a] : giraffe that had (an) (a) an airplane. +C and he threw it up to see *if it would glide in the air [EU]. +C then it drop/ed into the water. +C and (the) he threw it. +C and then he got it right into the water. +C : and then : (the el) she[!] try/ed to throw it. +C and then it land/ed in the water. +C : (and then it land/ed right) and then it sinked|sink[EW:sunk] a little bit. +C then : (the) (hh) the : giraffe was angry. +C : and the lifeguard took a net : and pick/ed it up. +C : and she could not reach it with his[EW:her] hand. +C (so he) so he did not know what to do. +C then he took a net. +C then he grab/ed it up. +C and then : he pull/ed it up. +C : and then (he ga) the lifeguard gave it back : to the giraffe. +C and : then the giraffe was : happy. += [Eg:A3] += [Bg:B1] +C once upon a time there was a little rabbit and a little dog [~_"little"_pronounced_"yittle"_both_times]. +C and the dog : was woof/ing. +C and the rabbit got scare/ed. +C so he just threw the shovel at[!] the dog. +C and the dog got angry. +C and then he threw his[!] shovel back. +C then they came back. +C and then they made a sandcastle. +C and then (they) the rabbit pour/ed (some sand) some water on it. +C (the) the castle got wet. +C and then the castle fell down. +C then : the rabbit : got scare/ed from the dog. +C so the rabbit ran away : threw his pail. +C and the sand got in[!] the pail. +C then : the dog ran away too. +C then : (they) : (the) they made silly joke/s. += [Eg:B1] += [Bg:B2] +C once upon a time there was a dog and a rabbit who went to have a picnic. +C (then they) then the rabbit ate everything. +C and the dog had nothing left to eat. +C and then the dog ran away *and put a costume on (so he would think) so the dog would think he was a different person [EU]. +C then they went swim/ing. +C then : the rabbit got stuff/ed up that he could not eat any more food [EU]. +C then he got dizzy. +C and then the dog drank some juice. +C then the dog[!] got dizzy. +C and then the dog saw a different[!] person. +C : and then the dog pull/ed his shirt. +C : and then : the mommy came : to him : (and) : and said you naughty little boy. +C then : the rabbit went with his mommy back home. += [Eg:B2] += [Bg:B3] +C once upon a time there was a little [~_pronounced_"yIt'l"] dog with a balloon (on his) (on his) on his wagon. +C then (he) the rabbit came by : (lll) tie/d it out. +C then he let go of the balloon. +C the balloon went up. +C then the dog was angry[-:]. +C : and then (the t) it was there. +C : and then the rabbit came : and undid (the) (the re) the balloon. +C the balloon went all the way up. +C they could not reach it. +C : and then the dog got really angry. +C and then : they went. +C and somebody had balloon/s. +C but the little [~_yittle] rabbit had no money. +C so (they came) the rabbit came and : (got : st) took : one of the balloon/s. +C but (the) the man hold|hold[EW:held] it tight so that it would not : blow away. +C and then : the rabbit took the string. +C but he could not take it away. +C then he said : I[!] know. +C I will take one of those balloon/s. +C then he said it is for five dollar/s. +C : so then : the (w) mommy came and gave him some five dollar/s. +C then : (the) the balloon came for the dog. +C and then the dog had the balloon. +C and then : (they : ha) the dog had another balloon on his wagon. +C and then the mommy gave him five dollar/s. +C and then : (the) the rabbit was happy too. +C and they both[!] got a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/513.slt b/data/ENNI_SALT/train/513.slt new file mode 100644 index 0000000000000000000000000000000000000000..a37ce4383ddbeb5664e5db8c0b4b1030b1fafdcd --- /dev/null +++ b/data/ENNI_SALT/train/513.slt @@ -0,0 +1,84 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 9/4/1994 ++DOE: 4/11/2000 ++CA: 5;7;7 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 513=CHI ++Tape Location: Disk L4 Track 32 += [Bg:A1] +C Once (there) (there w) there was an elephant who was play/ing with a ball. +C then the (ba) ball fell : into a pool. +C then the elephant/z : friend (tr) try/ed to catch the ball. +C his friend then got it. +C then the elephant : thank/ed : his friend for get/ing his ball. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C Once there was an elephant. +C (and) (and) and then (he) he was run/ing. +C then the elephant accidentally slip/ed. +C then (he) he start/ed cry/ing because (he) he fell down and bump/ed his knee. +C then his friend (try) try/ed (to) to help him. +C then the lifeguard put a bandaid on. +C then he felt much better. +C then the lifeguard (sa) told him that there is no run/ing allow/ed. += [Eg:A2] += [Bg:A3] +=C another elephant story [+_bch]. +E another elephant story ? +E okay, go ahead and begin. +C Once there was an elephant. +C the elephant had a (fr) friend that had an airplane that : he like/ed to play with. +C then the elephant just : grab/ed the plane : from : his friend/z hand. +C then the elephant accidentally drop/ed the plane into the water. +C and then his friend got (ve) : very angry at him. +C then the lifeguard : came : and saw that there was : a toy (p) plane (in) in the pool. +C (then the l) then the little elephant told the lifeguard what he accidentally did. +C then the lifeguard try/ed to get it by (rea) reach/ing (ou) out his hand. +C then his friend start/ed cry/ing. +C then another elephant came. +C (a) : and she had : something (that) : (that) that had a handle that was very long. +C and it had : something : like a hooped[EW:hoop] to get the plane. +C then the elephant got it. +C then his friend : was very happy that : he had his plane. +C then the elephant/z (fr) : friend : start/ed to play (with) (with) with his : plane again. += [Eg:A3] += [Bg:B1] +C once there was a bunny. +C : the bunny was help/ing his friend : make a castle in the sand. +C then his friend got very worry/ed (be) because the bunny (ha) had been throw/ing sand on his castle. +C then his friend was very sad because the bunny had wreck/ed his castle. +C then his friend start/ed cry/ing. += [Eg:B1] += [Bg:B2] +C once there was a bunny. +C (with) and he had a friend. +C (the) the bunny had (so) so much food that he was so hungry that he start/ed eat/ing already. +C then the bunny was very full. +C then the bunny start/ed (f) feel/ing : (a b) a bit dizzy. +C (then) : then his friend (found) saw a doctor. +C and his friend (called the) rush/ed to the doctor : and told the doctor what had happen/ed to the bunny. +C his friend : was pull/ing : the doctor/z : coat : (to try) to try and get him (to) to come and see what had happen/ed to the bunny. +C and then the doctor found out : what had happen/ed (to) to the bunny. +C then the bunny (fel) felt much better. += [Eg:B2] += [Bg:B3] +C once there (wa) was a bunny that had a friend (who was) who was pull/ing a wagon (that) (that) that had a balloon on it. +C and the bunny love/ed balloon/s. +C so he try/ed to get the balloon. +C (then) then the bunny/z : friend (was very) was very (s) worry/ed about (hi) his balloon. +C the bunny try/ed to get the balloon because it had slip/ed out of his finger/s (and) and float/ed (in) into the air. +C then his friend got very angry (a) : at the bunny. +C then the bunny saw : a man that had (a) lot/s of balloon/s in his hand. +C then the bunny told the man which balloon he want/ed. +C : (the) the man : said that (ea) each balloon is five cent/s. +C then the man just standed|stand[EW:stood] there. +C and the bunny/z friend and himself : just look/ed at the balloon/s. +C then the bunny saw a doctor. +C the bunny said to the (do) doctor that his friend want/ed a balloon (that) that he could not get. +C then (a) the doctor (pay/3s) paid for (the) the balloon/s. +C (then) then both of them each had one balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/514.slt b/data/ENNI_SALT/train/514.slt new file mode 100644 index 0000000000000000000000000000000000000000..e3266f7c48f539d2701111475ebf697da8452b83 --- /dev/null +++ b/data/ENNI_SALT/train/514.slt @@ -0,0 +1,93 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 8/24/1994 ++DOE: 3/9/2000 ++CA: 5;6;14 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 514=CHI ++Tape Location: Disk M3 Track 16 += [Bg:A1] +C once upon a time : there was (a) a[EW:an] elephant : and a zebra. +C they were very best friend/s. +C and : they were play/ing with the ball. +C and first the ball bounce/ed into the water. +C and then : (the sh) (the) : the zebra jump/ed into the swim/ing pool and : swimmed|swim[EW:swam] to get the ball. +C and then[!] : the zebra came back and give|give[EW:gave] (it) the ball back to the elephant. +C and : then : the elephant was jealous. +C and : the zebra was soak/ing wet. += [Eg:A1] += [Bg:A2] +C once upon a time there was a zebra and the elephant. +C they were go/ing to go swim/ing. +C and then : (she ru) she runned|run[EW:ran] over to the jumping board. +C and then she runned|run[EW:ran]. +C and she slip/ed. +C and[-:] then she hurt her knee. +C and then the zebra went to go get the shop keeper. +C and then the keeper saw her and then gave her a bandage. +C and then when they put the bandage on the zebra feeled|feel[EW:felt] a little bit sad. +C and (then) : then (the) he did this [~_child_holds_out_his__hands]. +C (and then) and then the swimming pool guy was pretty mad because she look/ed at the sign and said (no) no run/ing. += [Eg:A2] += [Bg:A3] +C once upon a time : the zebra and the elephant. +C the zebra brought a play airplane where the swimming pool was. +C and then : he : flied|fly[EW:flew] it. +C and then the elephant want/ed to hold it. +C and then : she (ff) xx pajinkly[c] drop/ed it in the water. +E she what ? +=C drop/ed it in the water the airplane [+_bch]. +E you said what pajinkly what was that word ? +=C (she) (the airplane) (she le) (she xx) she slip/ed the airplane and fell in the water [+_bch]. +C and : then : the zebra got really mad : at the elephant. +C and then : the keeper : try/ed to help. +C (and : he tr) and then he try/ed to reach/ing[EW:reach] it : with his hand/s. +C and : he fell in the water. +C and then : the zebra cry/ed. +C and then : a girl : elephant came. +C and she : xx it out with her net : and then gave it : back : to the zebra[!]. +=C : I am all done [+_bch]. +E you are done, [~_turns_page] anything for this page? +C then : he said thank you. +C and then : he hug/ed his airplane with joy. += [Eg:A3] += [Bg:B1] +C once upon a time there was a rabbit and a dog. +C and : the dog was : make/ing a sandcastle. +C and then : the rabbit took a bunch of (sssh) sand[-:] from it/z sandbox. +C and he pour/ed it all over : her castle. +C and then : he was not very happy the dog. +C and : then the doggy cry/ed. +C and : the rabbit felt not very happy. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C once upon a time : there were best friend/s a rabbit and a dog. +C and : they have the[EW:a] picnic. +C and the rabbit ate lot/s of food. +C and then he eat|eat[EW:ate] lot/s and lot/s. +C and then he had stomachache. +C and he faint/ed. +C and then : he went to go get the doctor. +C and then : the doctor help/ed him. +C and then : they walk/ed home again. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C once upon a time : the doggy had a balloon. +C and then : the rabbit : untie/ed it. +C (uh) and : then : the doggy said they would fly away. +C and then (the) he let go of it. +C and then it flied|fly[EW:flew] away. +C (then the dog) then the dog was really mad. +C and then : he saw a balloon man : sell/ing balloon/s. +C and then he said can we have two balloon/s please? +C and then he gave him balloon/s and gave him more money and put it back. +C and : then they both had a balloon. +C : and : they saw a doctor. +C and they said will you get us a balloon please? +C and (then she gave) then they get|get[EW:got] a balloon. +C and then they were best friend/s again. += [Eg:B3] diff --git a/data/ENNI_SALT/train/515.slt b/data/ENNI_SALT/train/515.slt new file mode 100644 index 0000000000000000000000000000000000000000..35fdc0f32da28df5f115b5ba447006db11323b2d --- /dev/null +++ b/data/ENNI_SALT/train/515.slt @@ -0,0 +1,73 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 5/26/1994 ++DOE: 4/11/2000 ++CA: 5;10;15 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 515=CHI ++Tape Location: Disk L5 Track 20 += [Bg:A1] +C (Um) they meet up together. +C : the ball fell in the water. +C he swimmed|swim[EW:swam] to get it. +C he got it : and swam back : and got out. += [Eg:A1] += [Bg:A2] +C They are go/ing swim/ing. +C she want/3s to jump. +C she run/3s. +C and she slip/3s and hurt/3s her knee and want/3s a doctor. +C and she put a bandaid on it. +C then she sat down. +C and then (she) he said get out. += [Eg:A2] += [Bg:A3] +C (Um) she want/ed to try out his airplane. +C but : (sh) he show/ed her. +C and she[!] want/ed to try. +C but it : fell in the : water. +C and it sunk. +C and then the lifeguard said : what is that? +C it was his airplane. +C (but I) she said I just want/ed to try it. +C but it fell in the water. +C but (sh) he try/ed to get it. +C but he could not reach. +C and it sunk and sunk and sunk : until : a lady came in (with the) : and swoop/ed it up. +C and she try/ed to get it. +C (but she) and she got it. +C and then he was happy. += [Eg:A3] += [Bg:B1] +C (they) his little sister is make/ing a sandcastle. +C he help/3s her. +C he make/3s it bigger. +C it break/3s. +C (hers) his sister cry/3s. += [Eg:B1] += [Bg:B2] +C he met up with his friend. +C they had a picnic. +C he was full. +C : his tummy hurt. +C he need/ed a doctor : because his tummy hurted|hurt[EW:hurt]. +C and : she came and help/ed him. +C then he was feel/ing better. += [Eg:B2] += [Bg:B3] +C he found his friend with a wagon. +C he want/ed her balloon. +C (she) he untie/ed it. +C and it flew away. +C and (uh) she was mad at him. +C and there was a clown : who had : balloon/s. +C it cost money. +C but he did not have any money. +C then : he saw a doctor who maybe had money. +C can we have money because my pocket/s are empty? +C sure. +C then they got balloon/s. +C (then they both) and then they were happy. += [Eg:B3] diff --git a/data/ENNI_SALT/train/516.slt b/data/ENNI_SALT/train/516.slt new file mode 100644 index 0000000000000000000000000000000000000000..f267d3b8791ea934c6b898f90edaf8a74a412958 --- /dev/null +++ b/data/ENNI_SALT/train/516.slt @@ -0,0 +1,79 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 7/24/1994 ++DOE: 3/9/2000 ++CA: 5;7;14 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 516=CHI ++Tape Location: Disk M3 Track 26 += [Bg:A1] +C (um) they are (um) play/ing with a ball[-:]. +C : and they are at the pool[-:]. +C : and : it fell in the water. +C : and then : the (um) giraffe (uhm : m go um) swimmed|swim[EW:swam] and got it. +C and then he pass/ed it to the elephant. +C : (and then he) and then she is (um) stand/ing all pretty. += [Eg:A1] += [Bg:A2] +C (um) : they are at the swimming pool. +C (and they are gonna) and they were just get/ing ready to do something. +C and the (um) giraffe is chase/ing the elephant. +C and the elephant slip/3s. +C and he get/3s his knee scrape/ed. +C and then the (um) lifeguard run/3s : (and come/3s to um : ge) and come/3s to put a bandaid on it. +C and then the bandaid was on. +C and she felt okay. +C and she was sit/ing on the bench. += [Eg:A2] += [Bg:A3] +C they were play/ing airplane. +C : and they were (um) zoom/ing it around. +C (and then the) and then the (um) elephant (um) took it from the giraffe. +C : (and then she th) and then she accidentally threw it in the water. +C and then the giraffe got really mad. +C : and then the (um : uh) lifeguard came. +C : and he did not know how to get it out. +C he try/ed to reach it. +C : and[-:] : he did not know what to do still. +C : and then the lady lifeguard came. +C and then she took it out with the (um) thing that you catch fish with. +C and then : she gave it back to the giraffe. +C and then he hug/ed it. += [Eg:A3] += [Bg:B1] +C (um) they were get/ing ready to build a (um) sandcastle in their sandbox. +C and they already built one : on the other side. +C and (um) they were (um) put/ing (um) sand in the shovel. +C : and they dump/ed it all over the (um other sand) the (um) sandcastle. +C and (um) it all came into a pile of sand. +C : and they were cry/ing. += [Eg:B1] += [Bg:B2] +C (um) they went out for a picnic. +C : and they (um) ate lot/s of food. +C : and then (the) they got full. +C : and then (he did not) the (um) bunny did not eat any more. +C : (and then their um teacher came ov) and then the doctor came over. +C : and (um) the doggy pull/ed her over to where : the bunny is[EW:was]. +C : and (um) the (um) doctor is try/ing to get (hi) the bunny better. +C : and then : he is all better again. += [Eg:B2] += [Bg:B3] +C (um) they have a wagon with a balloon on it. +C and : they are (um) point/ing at the balloon. +C and then they tie it on better. +C and then it fall/3s off the (um) wagon. +C and they try to catch it. +C and[-:] : one got really mad. +C and one got really sad. +C and then they saw a guy with balloon/s. +C and then they (ask/ed for) ask/ed for one. +C (and then : they got) and then they did not get[EW:have] enough money. +C and then[-:] : they see him again. +C : and (the doctor is uh) they see the doctor. +C : and the (um) bunny tell/3s the doctor where the balloon/s are. +C and then the doctor give/3s the man money. +C and then they all get a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/517.slt b/data/ENNI_SALT/train/517.slt new file mode 100644 index 0000000000000000000000000000000000000000..02296fa273f4044ac7fd38d7f15bf67037695443 --- /dev/null +++ b/data/ENNI_SALT/train/517.slt @@ -0,0 +1,163 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 10/18/1994 ++DOE: 4/12/2000 ++CA: 5;5;25 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 517=CHI ++Tape Location: Disk L5 Track 2 += [Bg:A1] +C There is a[EW:an] elephant : and a giraffe. +C (uh) there is some grass right here. +C and there is write/ing. +C there is a[EW:an] elephant, a giraffe and their ball (fell/ing) fell in the water. +C there was an elephant and a giraffe. +C the elephant xx water. +C he was try/ing to get the ball. +C (he) the elephant got the ball. +C and giraffe want/ed it. +C there is a[EW:an] elephant. +C there is a ball and the giraffe. += [Eg:A1] += [Bg:A2] +C There is an elephant and a giraffe. +C and there is some water. +C and there is[EW:are] some brick/s right here. +E can you tell me what is happen/ing? +C they are look/ing at the water. +C there is a giraffe and a[EW:an] elephant. +C there is[EW:are] some brick/s. +C and they are point/ing right over here. +C there is a giraffe and a[EW:an] elephant. +C and the elephant slip/ing. +C there is a giraffe. +C and he hurt his knee right there. +C there is a[EW:an] elephant. +C there is a[EW:an] elephant. +C there is a giraffe. +C and they are try/ing to help him. +C there is a giraffe and (elephant) an elephant. +C and (he got) they are put/ing a bandaid on his owee. +C there is a giraffe and a[EW:an] elephant elephant. +C and he was all better. +C there is an elephant and an elephant. +C and he is point/ing at her. += [Eg:A2] += [Bg:A3] +C There is an elephant. +C and there is a giraffe. +C and there is[EW:are] some brick/s. +C (there is) there is a[EW:an] airplane. +C and he is hold/ing onto his airplane as he is put/ing her hand/s out. +C there is a[EW:an] elephant and a giraffe. +C (and he was) and the airplane had string on him[EW:it]. +C and there was[EW:were] some brick/s. +C there was a[-:] : giraffe and an elephant. +C the elephant took the airplane away from the giraffe. +C then he drop/ed it in the water. +C and there was[EW:were] some brick/s. +C and the giraffe was stand/ing on the brick/s. +C (then there was) (the) then there was a[EW:an] elephant. +C and the giraffe got mad because it went in that water. +C there was the giraffe and two elephant/s. +C and they were (look/ing at) look/ing at the airplane to try to get it out. +C there is the giraffe. +C there is the elephant. +C and they are try/ing to get it out. +C it is the elephant and the giraffe. +C and he was try/ing to reach his hand and to get the airplane. +C he could not do it. +C and (there is) giraffe cry/ed. +C and there is elephant and elephant. +C there is a[EW:an] elephant and a[EW:an] elephant and a giraffe and another elephant. +C it was try/ing to get it out. +C (he was try/ing) there is an elephant, an elephant and a giraffe and an elephant try/ing to get (the) the airplane out (with his) with his thing. +C the elephant and giraffe. +C and he got it out of the water. +C and then he was happy that he got his airplane the giraffe. +C and then the elephant was happy. += [Eg:A3] += [Bg:B1] +C There was a bunny. +C and (a) there is a castle. +C and she made a castle. +C and there was a sandbox. +C there was a rabbit. +C (and there) and she was build/ing a castle. +C and there was a sandbox. +C (and he was) and he was put/ing dirt in his bucket. +C there was : a girl. +C there was : a rabbit. +C and the rabbit pour/ed it on her castle. +C then it fell down. +C there was a bunny. +C and his bucket fell down. +C and she was sad. +C she cry/ed. +C and she try/ed to make another one. +C and the bunny rabbit/s was[EW:were] there. += [Eg:B1] += [Bg:B2] +C there was a girl. +C she was carry/ing a basket. +C and the bunny was carry/ing a basket. +C and there were tree/s. +C they had a picnic. +C and the bunny was eat/ing some carrot/s. +C and he was eat/ing something. +C and she was start/ing to put her/z out. +C the bunny ate all of it. +C and he got a hurt/ing tummy. +C and she did not because she did not have much stuff. +C he got more sicker [EU]. +C and she was drink/ing still. +C and then her grandma came. +C (and sh) and she was try/ing to reach her hand. +C (and she) (and she grab/ed her mother) [~_no] she grab/ed her grandma because she was go/ing to[:_gonna] tell her grandma that he (was) (had a) had a hurt/ing tummy. +C (and she s) and she said do not eat no[EW:any] more food. +C and then he got all better. += [Eg:B2] += [Bg:B3] +C there was a girl. +C (and) and she was carry/ing (a) (a) a wagon. +C (And i) and she tie/ed the (wagon) balloon on her wagon. +C and the bunny was come/ing to see it. +C there was a bunny. +C there was a bunny look/ing at it. +C and he like/ed it. +C and there was balloon. +C and there was a wagon on it : tie/ed up. +C there was a balloon. +C and there was a wagon. +C and there was her. +C and he was try/ing to get the balloon off because he like/ed it. +C (and) and it flew up the air the balloon. +C and then she did not have her balloon. +C and the bunny was try/ing to get it. +C and she was try/ing to get it. +C and then it broke. +C the bunny broke it because she got mad. +C and then the wagon was left there. +C then (the balloon man had) the balloon man had lot/s of balloon/s. +C and (they) (they had) they like/ed it. +C but the bunny like/ed it. +C but she was still mad. +C and (he said could I still) he was look/ing at the balloon. +C and he like/ed it. +C and he want/ed one. +C and (sh) she want/ed one too. +C but she lost her balloon. +C there was a balloon guy. +C and there was the bunny. +C and there was the girl again. +C then they ran back. +C then he ran to his mother. +C (and) and she was still stand/ing (where) where the balloon man was. +C and then he point/ed to the balloon man (if) (if) if he could have some balloon/s. +C then she give|give[EW:gave] him some money. +C and then they could have two balloon/s. +C and then (they had their balloon/s for) (for) they had their balloon/s. +=C that is the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/518.slt b/data/ENNI_SALT/train/518.slt new file mode 100644 index 0000000000000000000000000000000000000000..0bd5cf9b9e18b8f5170dd846c5e4115abbe2f4ca --- /dev/null +++ b/data/ENNI_SALT/train/518.slt @@ -0,0 +1,87 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOE: 3/9/2000 ++CA: 5;6;7 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 518=CHI ++Tape Location: Disk M3 Track 30 += [Bg:A1] +C (um) there was a cow. +C and there was an elephant. +C and they have a ball. +C and then they had this on those brick/s. +C (and then an ele) (and then) and then it got stuck in the swimming pool. +C (and then) and then the cow went to go get it. +C and then[-:] : he got the ball : back. +C and then they play/ed with it. += [Eg:A1] += [Bg:A2] +C (um) there was a cow[-:] : and an elephant. +C (they we) there was the balance beam. +E the what? +=C the balance beam was in the front [+_bch]. +C (and) and the elephant want/ed to go in the water. +C so did the cow. +C so they went to the : balance beam. +C and (then they[-:] ) (then) then the cow was run/ing (after the) to (the) (the) the elephant. +C and then it was run/ing after it again. +C (and then it was run/ing after it again with the) [~_no] (then the other) then (the other elephant) he was run/ing after the other elephant. +C (and then) and then he squeeze/ed her. +C : and then they : carry/ed her to the bench. +C : (and then they s) and (they h) (he) her[EW:she] sat[!] there. += [Eg:A2] += [Bg:A3] +C (the cow and the moose they) [~_oopsie_#_I_forgot_the_moose] the cow and the elephant they want to go in the water. +C : then they broke their airplane. +C and then the elephant want/ed to see : it. +C (and then he throw|throw[EW:threw] it into the) and then he put it in the water. +C (and then they) (and then it) and then the cow was so mad at (that) (that) (that) that elephant. +C and then the other[!] elephant came. +C : (and then he said) : and then the other elephant talk/ed to the cow. +C (and then it) and then it was try/ing to reach (that) (the) the airplane. +C (and then) (then it got soak/ed) then he got soak/ed. +C and then he got a net. +E a what ? +=C a net [+_bch]. +E a net, oh. +C and then he grab/ed[!] it : out of the water. +C and then he gave it to the cow. +C (and) (and then he) and then he was so proud. += [Eg:A3] += [Bg:B1] +C the rabbit want/ed to play in the sand. +C : (and then he builded|build[EW:built] so) and then he put sand in the bucket. +C and then he[-:] tip/ed it all over his castle. +C and then he (ra) ruin/ed it. +C and then he build|build[EW:built] a new one. += [Eg:B1] += [Bg:B2] +C (um) the rabbit he brung|bring[EW:brought] his picnic basket. +C and so did the dog. +C and then they ate some lunch. +C (and then he) (and then the) and then the rabbit got so stuff/ed. +C : and he got twirl twirl twirl/ed over his head. +C and then the doctor came. +C doctor! +C and he help/ed the rabbit. +C (and) and the rabbit said [~_creaky_voice] I live on a hundred and eighteenth street. +E I live on a hundred and eighteenth? +=C the rabbit did [+_bch]. +C and then the (rr) rabbit was so happy that he went with (the doc) the doctor rabbit. += [Eg:B2] += [Bg:B3] +C (um : the) the rabbit and the dog they pull/ed (the) the wagon. +C and it tow/ed the balloon. +C and then it was get/ing shorter : and shorter. +C (and sh) and then they could not reach it. +C and then it went higher : and higher. +C and then the balloon man gave (it) him a new balloon. +C and then he said thank you. +C (and then) and then they were so sad. +C (and then they were ha) and then the rabbit/s were happy. +C and then the doctor rabbit came to go see the balloon man. +C and then he gave him (five doll) two dollar/s. +C and then the doctor paid him a balloon [EU]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/520.slt b/data/ENNI_SALT/train/520.slt new file mode 100644 index 0000000000000000000000000000000000000000..85aeb974bc2e48b2290d24784558bc5a5213d1c2 --- /dev/null +++ b/data/ENNI_SALT/train/520.slt @@ -0,0 +1,89 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 7/15/1994 ++DOE: 4/27/2000 ++CA: 5;9;12 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 520PA1=CHI ++Tape Location: Disk M5(1) Track 12 += [Bg:A1] +C there was this elephant bounce/ing a balloon. +C and then : there was a giraffe (com) come/ing by. +C and then : (he wan) he want/ed to see (the) (the) the rubber ball for a minute. +C : and then : it fell (into the water) (into this) (into) into a pool. +C : and the giraffe was swim/ing for it. +C and then : he got it. +C : and (then her) : (the) the elephant said thank you. +C and her[EW:she] got back : the ball. += [Eg:A1] += [Bg:A2] +C (um) there was a giraffe and a[EW:an] elephant : want/ing to run. +C (and then : he) and then they were start/ing to run. +E and then they what? +=C and then they start/ed to run [+_bch]. +C (and then) : and they runned|run[EW:ran] [-:]. +C : (and) and then (th) : the elephant that want/ed to go : for the run (got a b) he got a booboo [~_laughs]. +C (an) and then : there was a guy : what came at it [EU]. +C (and then) and she was cry/ing. +C and the guy was put/ing on the bandage. +C : and then : they put on the bandage. +C : (and) and then : they got in trouble (because it) because there was a sign that said do not run. += [Eg:A2] += [Bg:A3] +C (th) there was this giraffe that had a[EW:an] airplane. +C (and) and there was a[EW:an] elephant that want/ed it. +C and he was (sort of : and) pretend/ing he was throw[EW:throwing] it in the sky. +C (and then) and then the elephant took it. +C : (and then) and then it fell into the water. +C : (and then) : and then the giraffe got mad at the elephant. +C (and then) (and then) : and the elephant (got) : (try/ed) try/ed to : get it. +C (an) : (and he was) : and then the (elephant : yuar) yardgirl elephant told the boy elephant (tha) that it went into the water. +C and he was try/ing to get it. +C : (and then the eleph) and (then gira) (the gir) the giraffe was cry/ing[-:]. +C and then : a lady come/3s along. +C (and try/ed to ge) she was try/ing to get it. +C : and her[EW:she] got it. +C and (gave it to) and : (her) her[EW:she] gave it to : the giraffe again. +C (and then) and then he hug/ed the airplane. += [Eg:A3] += [Bg:B1] ++COMMENT: child had a lot of difficulty starting story. +C once upon a time there was this dog make/ing a castle. +C : and the dog was hold/ing it still[!]. +C : (and) and the bunny pour/ed some sand on it. +C : and then (it) it wreck/ed (his) his castle. +C and then : (he wa) he was cry/ing. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C there was this bunny go/ing for a picnic. +C and (there was : a) there was a doggy that said hi to him. +C and (he want/ed to go for a pic) he want/ed (to) : to go with him. +C (and then the) (and then got to his) and he[?] had a picnic. +C (and then) : and then (th) the bunny ate all the food : (and) and kind of got dizzy or something. +C : and then (there was this guy come/ing along) there was a doctor come/ing along. +C (and the) (and) and the doggy was pull/ing him. +C : (and then) (and he gots :) : and he got to the bunny. +C (and) : and (he) he got (him better) that bunny better. += [Eg:B2] += [Bg:B3] +C (um) there was this dog pull/ing : a wagon with a balloon on it. +C (and the bunny) and there was a bunny come/ing along. +C and (he wan) he want/ed to have the balloon. +C and then (he was) (he) he (untie/ed it) was untie/ing it. +C and then it went away. +C (and) and the dog got mad at the bunny. +C and then they went back to the balloon stand : (where) where the balloon was taken from. +C (and) (and the bunny) : (and the bun) and then the bunny said (I want) I want a balloon. +C and : then he (pul) pull/ed down and said five cent/s or something. +C (and then) (and then) : (and) and then the bunny did not have five cent/s. +C (and then the) and then the doctor come/3s along. +C (and) (and) (and) and the bunny said : I want one of those balloon/s [~_laughing]. +E the bunny said what? +=C I want one of those balloon/s [+_bch]. +C (and) and then the doctor paid for the balloon/s. +C and then (they got the) (they got one of the balloon) he got two balloon/s both of them. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/522.slt b/data/ENNI_SALT/train/522.slt new file mode 100644 index 0000000000000000000000000000000000000000..e0eaff18ec30f3b1d853d0c8874ac7c0a0e1a222 --- /dev/null +++ b/data/ENNI_SALT/train/522.slt @@ -0,0 +1,83 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 11/12/1994 ++DOE: 4/28/2000 ++CA: 5;5;16 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 522=CHI ++Tape Location: Disk M5(1) Track 23 += [Bg:A1] +C there was a giraffe and a[EW:an] elephant a friend. +C and then the ball went in the water. +C and then the horse went for swim/ing [EU]. +C and then : the elephant show/ed the ball to the horse. +C and then the horse get|get[EW:got] wet. += [Eg:A1] += [Bg:A2] +C (there was a ho) there was a horse and a[EW:an] elephant. +C and they saw a jump where you jump (in) in the pool and then you dive. +C (and then they) and the elephant said let us go there. +C (and then) and then the elephant runned|run[EW:ran]. +C and then the elephant bang/ed her knee (in the) in the floor [EU]. +C : (and then one kinda pers) (and) and he had a whistle. += %com: brief interruption when mic falls off +C (and then) and then put the bandaid. +C and then she stop/ed. +C and then : she (wa) sit|sit[EW:sat] (in the) in the bench [EU]. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C (um) there was a giraffe and a[EW:an] elephant. +C (and) and it had a[EW:an] airplane, the horse. +C (and) and the elephant borrow/ed it. +C and then it went in the pool. +C (an) and then they did not know how to get it. +C and then : the one with the whistle saw it in the pool. +C there was not allow/ed airplane/s there. +C and then (the elephant : has to) : the one with the whistle try/ed to get the airplane. +C (and the) and she[-:] try/ed to get it. +C but she can[EW:could] not. +C (ss) : (and) and (th) the elephant got the idea. +C just (got it) got the net. +C and she scoop/ed it. +C and she take|take[EW:took] it out. +C and he give|give[EW:gave] it to the horse. +C and the horse get|get[EW:got] it. += [Eg:A3] += [Bg:B1] +C there was a rabbit (and a) and a[EW:an] elephant. +C and then they scoop a sand and make a sandcastle : and pour some sand. +C and then it broked|break[EW:broke]. +C and they did not know how to fix it. += [Eg:B1] += [Bg:B2] +C there was a friend with a[EW:an] elephant and a bunny rabbit. +C and (th) they eat|eat[EW:ate]. +E and what? +=C they eat|eat[EW:ate] [+_bch]. +C and : the elephant eat|eat[EW:ate]. +C and the rabbit got too full. +C (and he saw) and the elephant saw : his mommy. +C and then : the (f) elephant pull/ed his mommy/z shirt. +C and then the (mo) mommy got the popsicle stick. += [Eg:B2] += [Bg:B3] +C there was a[EW:an] elephant and a bunny rabbit. +C and (it had the wa) it has a handle and has a balloon in it/z wagon. +C (and it) and the bunny rabbit said wow. +C (and) and the elephant drop/ed the handle. +C and then the rabbit tie/ed more tighter [EU]. +C and then it went up. +C : and then they did not know how to get it. +C so they asked one guy that had a lot/s of balloon/s. +C and then he said if he could get that. +C (but he ss) but he did not have any money. +C : (so) so they just look/ed at it. +C and (wo) the rabbit went away. +C (and) and then they point at that guy. +C and they ask/ed (if he) if they could get all (the) the balloon/s. +C and then they give him money. +C and then they had one. += [Eg:B3] diff --git a/data/ENNI_SALT/train/523.slt b/data/ENNI_SALT/train/523.slt new file mode 100644 index 0000000000000000000000000000000000000000..c228319e59adfb46deacdeb0347aace6832cd5c3 --- /dev/null +++ b/data/ENNI_SALT/train/523.slt @@ -0,0 +1,129 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 10/27/1994 ++DOE: 4/25/2000 ++CA: 5;5;29 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 523=CHI ++Tape Location: Disk L9 Track 26 += [Bg:A1] +C So (ele) elephant say|say[EW:said] : yes : you can play with me! +C so she try/ed to put it in the water. +C aah[!] [~_makes_sound_effects]. +C and she say|say[EW:said] : I got it [~_repeats_2_times]. +C I got it[-:]! +C so (good) good job! +C so your husband too. +=C I am done [+_bch]. += [Eg:A1] += [Bg:A2] +C So (sh) she had a [~_wheee]. +C then : she decide to get in the water! +C (I wa) I want to go here. +C hey yes you can. +C yahoo! +C wait[-:]. +C so : (you) you knee/s is hurt [EU]. +C aah. +C ouch. +C so : that hurt/3s. +C she has got to cry. +C so she say/3s [~_makes_crying_sound]. +C there. +C that is better! +C (huh) that is xx your bandaid. +C so : (you) you got to swim/ing later [EU]. +C so : you got to get hurt. +=C I am done [+_bch]. += [Eg:A2] += [Bg:A3] +C So (you) (you) you had to go swim. +C I said (ahh) stop. +C so fine! +C she say|say[EW:said] he is dead. +C hey. +C so (sh) aah! +C my airplane! +C [~_grr] oh your said bad my airplane [EU]. +C [~_grrr] you broke my airplane. +C but (she) (she is) she is put my airplane [EU]. +C oh no. +C but I was do/ing that. +C oh no(*3)[-:]. +C I got it. +C I got it. +C see? +C I do not think so. +C (give) give it a try. +C here I come (stt). +C I got it. +C I got it. +C said she just start to cry [EU]. +C my airplane! +C so do not touch it. +=C then I am done [+_bch]. += [Eg:A3] += [Bg:B1] +C (she) she is had to play (sand) sandcastle [EU]. +C she is had to make big sandcastle for rabbit : a dog [EU]. +C so : a bad rabbit : (he) he is put/ing like this [EU]. +C she had a xx found a (sa) (sandcas) sandcastle. +C (uh) what is happen/ed? +C oops. +C she say/3s sorry. +C (uh) (rab) rabbit say|say[EW:says] (do not) do not take[?] it. +C you bad [EU]. +C (you) you hurt my sandcastle. += [Eg:B1] += [Bg:B2] +C (I) she would not come with us. +C so she is hardly eat a food [EU]. +C (she) (she) so tummy/s is hurt/3s [EU]. +C so : she *is sick [EU]. +C so : he *is sick [EU]. +C a doctor is a listen [EU]. +C (ah) his tummy is hurt. +C she said open your mouth. +C she sick. +C [~_makes_sound_"ahhh"] yuck. +C so (a) (a doctor she) (ra) (ra) rabbit felt like this [~_makes_gesture]. +C so a rabbit is open your mouth. +C [~_makes_sound_"ahhh"]. +C (so : rabbit) rabbit : (so) : so feel better. +=C all done [+_bch]. += [Eg:B2] += [Bg:B3] +C so she is has a xx xx some mooo. +C so he said I get some balloon (like) like this. +C so she has to say [~_makes_gestures]. +C she say/3s[?] take it off. +C and put it up. +C say (ahhh) a balloon. +C [~_makes_sound_"grrr"] [~_laughs]. +E what is happen/ing? +C she is say what are you [EU]? +C [~_makes_sound_"grrrr"] [~_laughs]. +C balloon/s is[EW:are] back[!]. +C yeah [~_makes_yelling_sound_"ahhh"]. +C oops. +C ouch! +C a balloon [~_yeahha]. +C she say|say[EW:says] this one. +C (ahh) (where is) (where is my) where is my (I) (I) my balloon? +C what is happen/ing? +C so : (I xxx) I go/ing to[:_gonna] say I xxx. +C I wonder what xx xx. +C xxx. +C xxx [~_/bosolasafiso/]. +C she say I talk/ed to her [EU]. +C yes? +C I tell you I xxx. +C I want to go home. +C [~_makes_sound_"wha"] can you hear that? +C so (I) I want to buy a balloon. +C I want a balloon for the boy[?]. +C yay! +=C (she say) : then I am all done [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/526.slt b/data/ENNI_SALT/train/526.slt new file mode 100644 index 0000000000000000000000000000000000000000..3b26692ea6797b3116f09a7d1ffc019d93a3aee5 --- /dev/null +++ b/data/ENNI_SALT/train/526.slt @@ -0,0 +1,102 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 5/22/1994 ++DOE: 4/28/2000 ++CA: 5;11;6 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 526=CHI ++Tape Location: Disk M5 Track 37 += [Bg:A1] +C (um) there was a little giraffe and a little elephant. +C : (he wa) there was a ball in the water. +C the giraffe want/ed to play with it. +C he jump/ed in. +C and he swam to it. +C he gave it to the elephant. +C then the elephant look/ed at him. +C and he look/ed back. += [Eg:A1] += [Bg:A2] +C (um the llll) the little elephant want/ed to go to the diving board. +C and she did not see the sign that said no run/ing. +C and she ran to there. +C and she said let us go on the diving board. +C and then she ran. +C and she slip/ed. +C : and she slip/ed. +C and she hurt her knee really bad. +C and the elephant lifeguard came run/ing. +C and the giraffe was sit/ing beside her. +C (um the bi) the little elephant : was : so sad that she could not stop. +C and the lifeguard elephant gave her a bandaid. +C (and they) and they had to sit down : on a bench. +C and the lifeguard was really mad at her. +C (and she said) and he said can not you see the sign that say/3s no run/ing? += [Eg:A2] += [Bg:A3] +C the little giraffe had an airplane. +C and the (um) little elephant want/ed to hold it. +C and he did not let her. +C : (but then sh) but then he grab/ed it from her. +C : and then she drop/ed it in the water. +C and she felt really sad for what she has|have[EW:had] done. +C and then the little giraffe got so mad at her. +C then : she tiptoe/ed. +C and then the lifeguard : spot/ed her. +C (and the little) and (the) the little elephant lifeguard was go/ing to [~_gonna] try to reach it for her. +C and he try/ed it. +C but he could not reach it. +C : (so she was ss) and the little giraffe was : sad. +C and the girl lifeguard had (a bi) (a long neck and) a long net. +C and she was go/ing to [~_gonna] : get (um) it out. +C and she reach/ed. +C and she caught it. +C (and the ll) and the little giraffe was so[-:] happy. +C and then he said thank you. += [Eg:A3] += [Bg:B1] +C the little bunny was going to help [~_um_what_is_that_animal__that_(i)s_in_the_sandbox] [~_EXA:_it's_your_story] (um) kangaroo to make it/z (um ss) sandcastle. +C (and she) and the bunny was get/ing some sand out (to make : the) to add some more sand for the sandcastle. +C and then he dump/ed it all on. +C then it broke. +C (an) and then : the kangaroo was sad. += [Eg:B1] += [Bg:B2] +C the kangaroo and the bunny were walk/ing for a picnic. +C and then they saw each other. +C and then they both got out for a picnic. +C and the bunny (was : um) was look/ing at : the kangaroo. +C and then : (he ate too much) the bunny ate too much candy. +C and he fell down. +C and he had a : stomachache. +C and he felt really wheezy. +C (and the mother um) and the doctor rabbit (je) was walk/ing around. +C and the kangaroo came run/ing and say/ing doctor doctor. +C my friend bunny : is really wheezy. +C and he ate too much candy. +C and : the kangaroo pull/ed her towards. +C then she is like you should not eat too much candy. +C make/3s you really sick. +C and you get really wheezy. +C (and they) and they were both happy at[EW:with] each other. +C then they both left. += [Eg:B2] += [Bg:B3] +C the bunny and the kangaroo. +C the kangaroo had a balloon tie/ed on it/z wagon. +C : but then the bunny was go/ing to[:_gonna] untie it. +C : then the bunny untie/ed it. +C and then it went fly/ing up in the sky. +C and they both could not catch it. +C and the kangaroo was so so angry at[EW:with] him. +C and the bunny saw the balloon bunny. +C (and he) and he said can I get a balloon? +C (it is five) and he said it is five cent/s. +C and he did not have any. +C and then he (re) walk/ed up to the : doctor rabbit. +C and he said do you have five cent/s for a balloon? +C (and he) and the bunny rabbit gave him (one) (the) the five cent/s. +C and then he got the balloon for her and him a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/527.slt b/data/ENNI_SALT/train/527.slt new file mode 100644 index 0000000000000000000000000000000000000000..9ab92f5b949fdf7dc5820caa650d324ddfa9cc41 --- /dev/null +++ b/data/ENNI_SALT/train/527.slt @@ -0,0 +1,148 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 6/22/1994 ++DOE: 4/25/2000 ++CA: 5;10;3 ++Gender: F ++Context: Nar ++Group of CHI: SLI ++ID: 527=CHI ++Tape Location: Disk L10 Track 13 += [Bg:A1] +C There is an elephant. +=C what is that [+_bch]? +E what is that? +C a horse. +E umhm. +=C What is that [+_bch]? +E what is that? +C the line. +E umhm and what is happen/ing? +C look at the three ball/s. +E umhm. +C what do you see, picture? +E umhm. +C did you see three line/s. +C the dot is a line. +E umhm and what are they do/ing? +C they are go/ing back back. +C they are back back. +C they are go/ing around the line. +C they are go/ing to drop some ball/s [~_whispers]. +C (fall down) fall down one of the ball/s [EU]. +C oops. +C he is go/ing to [~_gonna] pick them up. +C oh dear. +C (I just) : I just go/ing to [~_gonna] throw the ball down [EU]. +C that is a great idea. +C then : I just (got a) : drew a picture and go home [EU]. +=C end [+_bch]. += [Eg:A1] += [Bg:A2] +C Do you see the slide and the swimming pool? +C there is a horse : and an elephant : and the lino. +E and what is happen/ing? +C and there is water. +C she is got to [~_gotta] go in first [EU]. +C he is got to [~_gotta] go in first [EU]. +C then[!] (she) she is[!] got to [~_gotta] run : to the slide [EU]. +C she say|say[EW:say/3s] ouch! +C : her mother say oops[!]. +C : she say|say[EW:say/3s] (ouch) ouch. +C (that is not) that is not good. +C look at that. +C look at that. +C is that her mother? +C (you just) you just got an owee : said the mother. +C (but mother) : but her mother took her home. +C you[!] : need to go into the swimming pool : said her mother. +C she grab/ed her hand. +C (an) and away they went. += [Eg:A2] += [Bg:A3] +C Horse can be [EU]. +C but : he want|want[EW:wants] to [~_wanna] talk to her father. +C time again. +C there is time is : swimming pool in the lino : and water [EU]. +C time : elephant/z father gave a special idea [EU]. +C how about we jumped|jump[EW:jump] in the swim/ing pool? +C ohoh. +C (and that is the very and) : he can do something about this the airplane. +C finally : he scare/ed [EU]. +C the horse said[!] [EU]. +C you cannot[!] bury it all : said her mother. +C you can go into the swimming pool if you want. +C but you can not drop to the airplane. +C I want to pick it up said the elephant. +C Hey I need to do that : said the horse. +C but he need/3s to reach it. +C then : he need/3s to reach. +C but : he can not reach at all. +C it can not do anything to the swimming pool. +C and : his father grab her hand [EU]. +C and away they went. +C they go home. +C (they took) : they took that one : and said : : when[EW:where] are you go/ing? +C his mother : said : to my grandma[EW:grandma/z] house. +C (but I have) but I have[!] to catch it : she said. +C here you go : said elephant/z mother. +C I will : touch it : said the elephant. +C and it could very soon. +C and live/ed happily ever after [EU]. += [Eg:A3] += [Bg:B1] +C I see a bunny and a sandcastle and a sandbox and a dog. +E what is happen/ing? +C they are make/ing a sandcastle. +C this is a rabbit and a dog. +C he is make/ing a sandcastle[!]. +C (he) he is make/ing it easier. +C oops[!]. +C look at the rabbit. +C he is scare/ed. +C he is scare/ed. +C the rabbit is all alone. +C oops[!]. +C (do all by it) he do it all by hisself[EW:himself] [EU]. += [Eg:B1] += [Bg:B2] +C They are bring/ing basket/s. +C it is the rabbit and a dog. +C they are have/ing a picnic : with the bunny and a dog. +C the rabbit is all finish/ed. +C and so : the dog is eat/ing. +C (the dog is really, real) the dog is really really scare/ed. +C and : the bunny rabbit is tire/ed. +C he really[?] need/3s to go home. +C and so does the dog. +C because he need/3s to go home with his mother because the rabbit is sleep/ing. +C (he need/3s to buy him an) : this rabbit (i) is : woke up : because he need/3s to go home with his father [EU]. += [Eg:B2] += [Bg:B3] +C this is a balloon. +C what color is it? +C maybe yellow I think. +C and that is the bunny : and a wagon : and[!] a dog. +C can show[?] his balloon in a wagon [EU]. +C this is a bunny and a dog. +C he can sit down and sit with the balloon and the wagon. +C oops[!] he drop/ed the balloon. +C uhoh it fly|fly[EW:flew] away. +C he found some more balloon/s. +C he is go/ing to have a balloon. +=C what do/3s it say [+_bch]? +=C what do/3s it say [+_bch]? +E what do you think it say/3s? +=C is that the five in the word/s? +E umhm what is happen/ing? +C look at the bunny and the dog and the wagon. +C because he drop/ed the balloon. +C and it fly|fly[EW:flew] away. +C they are go/ing to get a balloon. +C : because he need/3s to run. +C he is got to go home. +C uhoh he drop/ed the balloon/s. +C he is got to hold on to the balloon [EU]. +C they are go/ing to hold onto balloon/s. +=C end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/528.slt b/data/ENNI_SALT/train/528.slt new file mode 100644 index 0000000000000000000000000000000000000000..ee072d10667333eb701416b741bf20481d34e799 --- /dev/null +++ b/data/ENNI_SALT/train/528.slt @@ -0,0 +1,136 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 10/21/1995 ++DOE: 11/14/2000 ++CA: 5;0;24 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 528=CHI ++Tape Location: Disk M5, Track 5 += [Bg:A1] +C once upon a time : there was : a little : (ch) : giraffe and a little elephant. +C they got a ball! +C and they play/ed all[-:] in the pool. +C and : (it) they play/ed outside[!] the pool. +C but (the) : it got stuck in there! +C the elephant was the only one with her bathing suit on! +C (so she had : to) but he[-:][!] just goed|go[EW:went] and got the ball : because he was brave. +C and : then (the elephant ga) : the giraffe gave[-:] the elephant the ball. +C then he was soak/ing wet[~!_laughing]. +C and then : he laugh/ed[-:] kind of [~_laughs]. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C once upon a time[-:] : there was : a little giraffe and a little elephant. +C and : then they want/ed to go in the pool[!]. +C and it said no[-:] run/ing! +C so then : she runned|run[EW:ran] [!] : the elephant. +C but she try/ed not to. +C and she whoa(*3) slip/ed! +C and she hurt[!] herself on : the knee[-:]! +C and it really hurted|hurt[EW:hurt]. +C and (it) : so she : (ca) call/ed the lifeguard. +C and she is cry/ing. +C and : he got some[EW:a] bandaid and : put it on : her knee. +C then it was better. +C and then : he point/ed at him. +C you should not run! +C look at this sign. +=C so : the end [+_bch]. += [Eg:A2] += [Bg:A3] +C once upon a time there was a giraffe : and : an elephant. +C and : he *was fly/ing a plane around the pool [EU]. +C but then it drop/ed in the pool. +C and : then : he try/ed[-:]. +C then the elephant use it [EU]. +C and : he drop [+/]^ +E the elephant what? +C the elephant (did it) (drop) play/ed with it. +C and then he try/ed[-:] not to put it in the pool. +C but then it fell in. +C and he was so[!] mad. +C the giraffe was. +C so : and the lifeguard was mad[-:] too. +C (and he said) but it was an accident she said. +C so (she) he try/ed[-:] and try/ed to reach it. +C (but this) : but he could not[-:] : just could not. +C so : then : he cry/ed[-:]. +C so then (the little) a girl[!] came with a bathing suit on. +C and she had a net so she could : reach[!] it. +C so (she reach) : he try/ed to reach it. +C and she got[!] it. +C then she was : happy again. +C but then[-:] : he hug/ed it and hug/ed it. +=C the end [+_bch]! += [Eg:A3] += [Bg:B1] +C once upon a time (there was a) there was a little : girl doggy play/ing. +C and she was make/ing a big sandcastle with a bow[!] on it. +C and [+/]^ +E with a what? +=C bow on it [+_bch]. +C (and : she) and some : little bunny[!] came over. +C and he ask/ed to play. +C and the doggy said : come on. +C let us play. +C and so he play/ed. +C and[-:] then[-:] they made a big[-:][!] (castle) : sandcastle[?]. +C and then : they just kept[!] : dig/ing and kept dig/ing until it was very[!] very big. +C then : (there wa) then (th) : he dump/ed it all[-:] over. +C but then : doggy feeled|feel[EW:felt] kind of : sad and mad. +C so : then it would all break down. +C but then they had to make it all over[!] again. +C and they (wa) did it. +C and (he[-:]) she was kind of : happy. +C and he was so[-:][!] (mm) : sad : that he[-:] just : said please do not : hurt me! +C it was just an accident! +C so[-:] then she cry/ed. +C but (then it was not) then he saw[?] it[?]. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C once upon a time[-:] there was : (a he) a little girl who walk/ing [EU]. +C and she found her buddy that she was go/ing to camp with. +C so then[-:] she : just : let us go this[!] way. +C then they went that way. +C and then they : did it. +C and the bunny[!] ate : (all[-:]) almost all of the food! +C and (then they had to) : (th) then they had no more food just one sandwich (i) and one : little drink for : the doggy! +C so[-:] then he was full! +C and his tummy hurt! +C so[-:] then : the doctor[!] came : and : (try/ed to) then : try/ed to cure him. +E try/ed to what? +=C cure him [+_bch]. +C and then : (he) he pull/ed his sleeve and : said come on come on! +C so then : she had to : just say : (your) (his tu) (her tummy) open wide. +C and : they had : a big[-:][!] problem. +C but then he was better. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C once upon a time there was a little[-:] : doggy : and a bunny. +C and : she had a balloon! +C she was (ride) : pull/ing her : wagon. +C so[-:] then (he[!] wan) he[-:] kind of touch/ed it. +C and : then he went off. +C then she tie/ed it. +C (she) he untie/ed it. +C and then : it went up up up and away. +C then she lost it. +C and then[!] : she was angry : at the bunny! +C and (h) he was sad. +C there was another patch of balloon/s. +C and he would go get one for her : the same color. +C and (k) : he point/ed at them. +C (and he wan) : (and : she) and they had no[-:] money! +C (so that) so he was very sad. +C so then : he[-:] gave him : a balloon. +C and that[?] said (if) I will save that balloon for you if you can go get money at your[!] house! +C so then (he got) : he goed|go[EW:went] and get|get[EW:got] the money from : his mom[!]. +C so then : he : got money so he could get that (ot) balloon. +C (and she gave) and he gave (it) : two[!] (to him) to (th) her and him because : he had more[!] money than just five[-:] (buck/s) : dollar/s. +C so then they were : happy. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/529.slt b/data/ENNI_SALT/train/529.slt new file mode 100644 index 0000000000000000000000000000000000000000..888bff98af7df9bb599228424c1d8e05982cb5ff --- /dev/null +++ b/data/ENNI_SALT/train/529.slt @@ -0,0 +1,100 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 3/14/1995 ++DOE: 4/25/2000 ++CA: 5;1;11 ++Gender: F ++Context: Nar ++Group of CHI: SLI ++ID: 529=CHI ++Tape Location: Disk L10 Track 17 ++Comment: CHI is somewhat difficult to understand += [Bg:A1] +C (uh : um uh : uh) a boy and a girl. +C (oh uh she) (she try to) : a water there. +C (and he) and (a) two friend/s are friend/s. +C a (ball) ball (fe) fell in the water. +C a (donkey) donkey (uh um sw) swim in the water : and (catch) catch the ball [EU]. +C a (donkey) donkey catch it and swim all back : (xxx) and (pick) pick a ball and to his donkey his hand/s [EU]. +C (then) (then) then (don key[-:] get/ing) (donkey : get/ing) donkey (get) get (a) (at) (a) (a) (a) (a) a water [EU]. += [Eg:A1] += [Bg:A2] +C a donkey and a[EW:an] elephant : (uh) are show[?] the water [EU]. +C and one (want) (want) want (get) get in the water [EU]. +C I do not know how. +C a[EW:an] (elephant) (elephant) (elephant) elephant got (a) a[EW:an] idea. +C I (saw) saw something. +C : (uh and) and something (jump) jump|jump[EW:jumped] on (d) it. +C then : (el) elephant want/3s that (uh jump) jump in the water [EU]. +C (elephant) (elephant) elephant (hur) hurt|hurt[EW:hurts] hisself[EW:himself]. +C (uh) cry[?] [EU]. +C and somebody come|come[EW:came]. +C somebody : (a : uh) another elephant. +C (another) another elephant (put) put a bandaid on. +C (another) (another) another elephant[-:] is (re[-:] ) (real mad) (mad uh) real mad at another one. += [Eg:A2] += [Bg:A3] +C (um) : a donkey and a[EW:an] elephant [EU]. +C (elephant) (elephant) elephant (ss) see|see[EW:saw] something donkey *was hold/ing [EU]. +C the airplane. +C (I grab) (I grab) I grab I (see) see xx and play with it [EU]. +C I (get) *will get in the water [EU]. +C and (donkey) (donkey) donkey get|get[EW:got] real mad. +C another elephant come|come[EW:came] along. +C and another elephant (and talk) talk|talk[EW:talked] all (about thing[?]) : about they have thing[?] [EU]. +C (another) another elephant (um um) got (a) a[EW:an] idea. +C (uh which) (which) which airplane [EU]. +C and no luck. +C and (uh plane) plane *is in the water [EU]. +C another elephant came along : and got a net! +C (ah another) (another elephant) another elephant (uh uh try) try|try[EW:tried] *to reach[!] that [EU]. +C (and) (and) (and) (and) and (sh) she did it. +C (uh) got the plane back [EU]. +C (uh donkey) (donkey) (donkey) (donkey) donkey (we) we sure *are happy [EU]. += [Eg:A3] += [Bg:B1] +C a rabbit (and) (and) and somebody else : are (saw) (saw) saw each other [EU]. +C they play in the sandbox. +C (rabbit) (rabbit) rabbit (got) (got) got a (basket) whole bunch of sand. +C (another) (another) another person (build) build a castle [EU]. +C (and) : and (ca) (castle) (castle) (castle) (castle) (castle is uh) he pour/ed a whole bunch of sand in there. +C (another) (another) another person is sad. += [Eg:B1] += [Bg:B2] +C Rabbit (and) and somebody else [EU]. +C and (she) : (she) (she) she try/ed it again. +C a guy go[EW:went] somewhere picnic [EU]. +C a (rabbit) (rabbit) rabbit (got) got whole bunch of stuff : (and) and (the) (the) (the uh) (um) (in the) (in the) (in the um) in the basket [EU]. +C (uh : uh rabbit) (rabbit) (rabbit) rabbit (ate) (eat) (eat) eat|eat[EW:ate] too much : and (get) (get) (get) (get) get|get[EW:got] a tummyache. +C (and another) and another person (a saw) saw somebody (get) get her (a rabbit) (a) a doctor. +C (another) another person[-:] (get) (get) (get) (get uh) (get uh uh) (get) get|get[EW:got] a doctor. +C and (doctor) (doctor she) (she) (she) (she) another rabbit was sick. +C (another) (another rabbit) another rabbit (um talk) talk|talk[EW:talked]. +C (oh) but (I c) (he is um) (he is) (uh doctor) (doctor) doctor (say) say[EW:said] come here. +C I will (walk) walk all[!] back [EU]. += [Eg:B2] += [Bg:B3] +C a (rabbit) rabbit (and) and somebody else [EU]. +C and (she) (she) (she) (she) (she uh) (uh she) (she) (she) (she) she tire/ed[?] again [EU]. +C I (saw an) a (rabbit) rabbit (saw) saw somebody/z balloon [EU]. +C (rabbit) (rabbit) (ra) (rabbit) (rabbit) rabbit (see) see[-:] balloon (saw) saw knot that there too and (try/ed) (try/ed) try/ed (get) get knot out loose[!] [EU]. +C and (get) get|get[EW:got] more looser and more looser [EU]. +C and (still) : still more looser[EW:loose]. +C ah ah no not there! +C (balloon) (balloon) (balloon) (balloon) balloon (float) float|float[EW:floated] away (up) up to in (the) the sky [EU]. +C another person[-:] (uh sh) (uh we) (we) (we) (we) (we get) (get) get|get[EW:got] real mad : at the rabbit. +C (rabbit) rabbit (she) she saw body (and) and (talk) (talk) (talk) (talk) (talk) talk somebody [EU]. +C (say) (say) (say uh um) (say) say you there (I want) (I want) (I want) (I want two) (two ba) I want one balloon. +C (a got) got one balloon (cost) cost five dollar/s [EU]. +C I (do not) do not have the money. +C and (rabbit) (rabbit) (rabbit) rabbit get|get[EW:got] so mad. +C (another) person (come) come along real fast. +C (she) (she) (she) (sh) another person (say) (say) (say) say[EW:said] (please) (please) (please) please I want *a balloon. +C I just talk[EW:talked] about this[?]. +C I got[EW:have] money. +C another person (uh rabbit) rabbit show|show[EW:showed] somebody. +C you a doctor [EU]. +C (doctor) (doctor) (doctor rabbit) and doctor (rabbit) (rabbit) rabbit (tell) tell xx somebody [EU]. +C (I got) [~_whispers] : I got[EW:have] money : the doctor say|say[EW:said]. +C I (got) (got) (got) got (two) two balloon/s. += [Eg:B3] diff --git a/data/ENNI_SALT/train/531.slt b/data/ENNI_SALT/train/531.slt new file mode 100644 index 0000000000000000000000000000000000000000..6656210ea4a7be7554da0d3fae2d52395b9432e1 --- /dev/null +++ b/data/ENNI_SALT/train/531.slt @@ -0,0 +1,82 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 12/18/1994 ++DOE: 4/25/2000 ++CA: 5;4;7 ++Gender: F ++Context: Nar ++Group of CHI: SLI ++ID: 531=CHI ++Tape Location: Disk L10 Track 30 += [Bg:A1] +C A (walk) walk back home[?] [EU]. +C a bad bad girl : ball [EU]. +C and went in[?] [EU]. +C a need up[?] [EU]. +C and take tea [EU]. +=C all done [+_bch]. += [Eg:A1] += [Bg:A2] +C (uh) go/ing swim/ing[?] [EU]. +C (uh) swim/ing[?] [EU]. +C (uh) went play [EU]. +C (uh) jump in pool [EU]. +C (uh) ow. +C : (uh) bandaid [EU]. +C (uh) go back home [EU]. +C (uh) : tea : with mom [EU]. +=C all done [+_bch]. += [Eg:A2] += [Bg:A3] +C (uh) girl [EU]. +C and : go back home [EU]. +C oh a plane [EU]. +C (uh) bad bad girl [EU]. +C (uh) in water [EU]. +C (uh) man [EU]. +C (uh) : bad bad girl [EU]. +C (uh) no reach it [EU]. +C (uh) in water [EU]. +C mom[!] get it [EU]. +C mom reach|reach[EW:reached] it. +C (and back) : and : back home [EU]. +C and it girl[?] [EU]. +=C all done [+_bch]. += [Eg:A3] += [Bg:B1] +C Pop xx puppy be snow/ing[?] [EU]. +C and xx tire [EU]. +C a man [EU]. +E what else? +C (uh) more throw/ing[?] it on [EU]. +C a (man k) : man (k) [EU]. +C a tire [EU]. += [Eg:B1] += [Bg:B2] +C xxx. +E anything more? +=C uhuh [+_bch]. +C (eat) eat nummy[c] [EU]. +C and (te) (te) (te) : and tea too. +C [EW:the] ball went up. +C (uh man) a man drink[?] [EU]. +C and (uh te) (te) tea [EU]. +C (uh) back home [EU]. += [Eg:B2] += [Bg:B3] +C Where *are we go/ing [EU]? +C a : big balloon [EU]. +C (uh) back up [EU]. +C a mat[-:] [EU]. +C and a bad bad go/ing [EU]. +C a more more : balloon [EU]. +C (uh) more more balloon [EU]. +C a bad pull/ing[?] [EU]. +C a buy no balloon [EU]. +C no. +C (uh) go/ing [EU]. +C (uh) : go/ing [EU]. +C (uh) want balloon [EU]. +C (uh) xx balloon. +=C all done [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/532.slt b/data/ENNI_SALT/train/532.slt new file mode 100644 index 0000000000000000000000000000000000000000..d7586bf4ec003c2713867496e28c285411bfb70e --- /dev/null +++ b/data/ENNI_SALT/train/532.slt @@ -0,0 +1,87 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 4/13/1995 ++DOE: 12/12/2000 ++CA: 5;7;29 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 532=CHI ++Tape Location: Disk M6 Track 68 += [Bg:A1] +C (the) the elephant was bounce/ing some ball/s. +C and the giraffe want/ed to too. +C and then : he (um) falled|fall[EW:fell] over. +C and he fell in the water. +C and then : the elephant gave him a ball in the water. +C then he got out. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C (the) the elephant : (was) was : look/ing at the water. +C and so was the giraffe. +C and : then the elephant was go/ing to dive : off the board. +C but then she trip/ed. +C and she falled|fall[EW:fell]. +C and she get|get[EW:got] a[EW:an] owie on her knee. +C and then : her : dad come|come[EW:came] run/ing. +C (and she got) and she look/ed at it. +C and she put a bandaid on it. +C and[-:] then : they are sit/ing on a bench. +C and : then the : dad got mad at the : little kid because she : could bend her leg. +C and she said she could not. += [Eg:A2] += [Bg:A3] +C the giraffe had a[EW:an] airplane. +C (and then he fli) and then he was fly/ing it. +C and then the elephant grab/ed it away from him : and throwed|throw[EW:threw] it in the water. +C and then : the giraffe got mad at her. +C and then : (um) his dad got mad at her. +C and then he try/ed to get it out : with his hand/s. +C then he try/ed to get it out with a net. +C and he got it out. +C (and : he) and then they went back in the water. +C and then he got it out again. +C and then he gave it to the giraffe. +C and then he hug/ed it. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C (the kid) the little kid was make/ing a sandcastle. +C and then the other kid broke it. +C and he pour/ed sand on it. +C then there was a big pile of sand. +C and then he cry/ed. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C (the) the kid was walk/ing. +C then he find|find[EW:found] (des hin) his friend. +C and then they have picnic. +C and then : the bunny was too full. +C (and) and (he : go/3s) he was put/ing his hand/s on his tummy. +C and then he seed|see[EW:saw] his mom. +C so (he get her) he get|get[EW:got] her. +C (and h) and then she help/ed his kid. +C (and) : (and) and they had to take him to doctor/z. +C and : then they walk/ed home. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C the little kid was push/ing his stroller. +C then (sh) he seed|see[EW:saw] the bunny. +C and the bunny he try/ed to grab the balloon from the stroller. +C and then he tie/ed it off. +C and then it went up to the sky. +C then she got mad at him. +C and then the guy had more balloon/s. +C and then : he gave it to the bunny. +C and : he got some money. +C and then : they did not give him any balloon/s : because he did not want to. +C then they seed|see[EW:saw] : their mom. +C and then he point/ed at a girl. +C and : then the guy did not give him any balloon/s. +C and he only had two. +C and then they got them. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/533.slt b/data/ENNI_SALT/train/533.slt new file mode 100644 index 0000000000000000000000000000000000000000..98f5a82db7576180f475b81aac67fac533ce6f52 --- /dev/null +++ b/data/ENNI_SALT/train/533.slt @@ -0,0 +1,104 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 4/25/1995 ++DOE: 11/20/2000 ++CA: 5;6;26 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 533=CHI ++Tape Location: Disk L20 Track 112 += [Bg:A1] +C (um) they are get/ing bore/ed with the elephant/z nose. +C the other one said wahoo! +C now they drop/ed the ball in the pool. +C they said aah[~!_Yelling]! +C now they are swim/ing in the pool. +C and one is try/ing to get it. +C now they got the ball. +C and now the horse is : get/ing out. +C and now they got the ball back. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C they are going to go in the pool. +C they are going to jump. +C and the other one is not jump/ing. +C now they are run/ing. +C now (the ele) the elephant hurt his knee. +C now they ask/ed (the) the lifeguard to get (a ow) a bandaid. +C now they are cry/ing. +C now they got a bandaid. +C now they are sit/ing down. += [Eg:A2] += [Bg:A3] +C (um the) (they have) the horse has (a ele uh) a plane. +C (now the) now the horse is fly/ing the plane. +C now the elephant is fly/ing the plane. +C (now they drop/ed it) now the elephant drop/ed it in the water. +C and now (the) the horsey is mad. +C and the elephant is sad. +C (and now the l :) (now the elephant is) and now the lifeguard said go and get it. +C and she said I can not. +C and then : the lifeguard try/3s to get it. +C and he can not. +C and he do/3s not know how. +C and the horsey is sad. +C now (he got the net) (the) the other one got the net. +C and they got it. +C now we have the airplane back. +C now we can fly it. +C he is not sail/ing it any more. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C they are : in the sand box. +C and the : other bunny is surprise/ed. +C (and the) and (he has a shovel in his hand) both of them have shovel/s in their hand. +C they are make/ing a sandcastle. +C they are dump/ing sand on other people/z sandcastle/s. +C now it is wreck/ed. +C now they are build/ing it back up. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C they are go/ing on a picnic. +C (the ra) they are eat/ing. +C (they[-:] ) one rabbit is full. +C (and there is) and one rabbit is still eat/ing. +C now the other one is full. +C and (it) (now) : now the other one is still eat/ing. +C and it is still full. +C now they are walk/ing home. +C and now : the daddy is there. +C and the guy is sleep/ing. +C now he come/3s closer. +C and he is still[!] sleep/ing. +C and now he is awake. +C now they are walk/ing home. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C (they are carry/ing the balloon and) (tie/ed onto a wagon) [~__oh_this_one_looked] : they are carry/ing the balloon on a wagon. +C and the other one is walk/ing with him. +C now they have a balloon on their wagon. +C and he is look/ing at it. +C they have a balloon. +C and the other one is tie/ing it off. +C now it let/ing go fly up in the air. +C now they are try/ing to catch it. +C now the string is fall/ing down from the sky with it. +C it got biten [~_pronounced_/baitEn/] by a bug. +C now they got more balloon/s : from the : (other bunny) Easter bunny. +C now they say can we have another one? +C and they got another one. +C it is for five dollar/s. +C oh : they said see you later. +C now they are walk/ing home : with the dad. +C they are run/ing to the dad. +C now they said look at that [~_!] : the balloon rabbit. +C now they said do you want a balloon? +C it is for five dollar/s. +C okay. +C let us go home. += [Eg:B3] diff --git a/data/ENNI_SALT/train/535.slt b/data/ENNI_SALT/train/535.slt new file mode 100644 index 0000000000000000000000000000000000000000..3242f01e732991f822f2aad1fd5c6447dc698d94 --- /dev/null +++ b/data/ENNI_SALT/train/535.slt @@ -0,0 +1,94 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 11/17/1994 ++DOE: 4/26/2000 ++CA: 5;5;9 ++Gender: F ++Context: Nar ++Group of CHI: SLI ++ID: 535=CHI ++Tape Location: Disk L11 Track 26 += [Bg:A1] +C The elephant (s) see|see[EW:saw] a garden. +E see what? +=C see[EW:saw] a garden [+_bch]. +C (see a) see a water [EU]. +C and (s) the elephant see|see[EW:saw] a ball. +C that is not the ball. +C that is a balloon/s[EW:balloon]! += %com: the above two lines sound like dialogue rather than correction of story facts +C he get|get[EW:got] the balloon/s. +C (and) : and he is all wet. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C The elephant jump/ed this [EU]. +C and : the elephant walk|walk[EW:walked] there. +C (and) : and the : elephant run|run[EW:ran]. +C and : elephant (s) stomp/ed the : ex [EU]. +C and what happen/ed? +C (he) (he is) he can not run. +C he is hurt. +C oh[-:]. +C he is hurt. +C he has the bandage on. +C and she is much better! +C and : he is mad! +C mad : Amber [EU]. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C And (he) he *is go/ing to fly the airplane [EU]. +C and she is fly/ing! +C do you see us fly/ing? +C and : uhoh. +C the airplane fall|fall[EW:fell] in the water. +C and : the elephant : get/3s the airplane. +C the mommy dad : get|get[EW:got] the airplane [EU]. +C (and) : and (the mm) the daddy mommy get|get[EW:got] the airplane [EU]. +C and[-:] : the mommy dad get/3s the airplane [EU]. +C (and) and the mommy dad/s get/3s the airplane [EU]. +C and (the mo) he *is go/ing *to catch : the : airplane [EU]! +C the mommy take|take[EW:took] it the airplane. +C (and) and : mommy got the airplane[-:]! +C and we did[!] find the airplane[-:]! +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C Once upon a time : the puppy and the kitty *were go/ing in the sandbox [EU]. +C the puppy and kitty : builded|build[EW:built] the castle[!]. +C and[-:] the puppy and the kitty to build a house [EU]. +C the : kitty and the puppy : drop/ed the castle. +C the puppy to sad the : (uh) castle [EU]. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C The dog and the kitty go shop/ing. +C the kitty and the dog go to eat their lunch. +C the puppy and the kitty go have : stomachache [EU]. +C and (the puppy is) (the) the rabbit : get/3s sick. +C the puppy and the kitty goes|go[EW:go] to work. +C the puppy and the kitty (k) untie/ed the hand/s. +C and the puppy and the (ki) kitty (and the) is[EW:are] sick. +C (and the : rabbit) and the rabbit and the puppy say goodbye. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C (The) (the) (the rabbit s) the dog tie/ed [~_"tiedy"] up the balloon/s. +C and the : balloon/s (s) *are : small [EU]. +C and the balloon/s *are small too [EU]. +C and the balloon/s (f f) *are up in the sky [EU]. +C look he is fall/ing. +C he can not reach. +C (and the string) and the puppy and the rabbit : can not : get the balloon/s. +C and [~_sharp_intake_of_breath] the rabbit and the dog see lot/s[!] of balloon/s and lot/s. +C and we will try and like[?] it. +C (the rabbit) the grandma to get the balloon/s [EU]. +C and[-:] he take|take[EW:took] one balloon/s[EW:balloon] xx. +C and the balloon/s : are not tie/ed to hand/s [EU]. +C and : (the) he is go away [EU]. +C and the xx balloon/s. +C and she see|see[EW:saw] two balloon/s. +C and he (take) : untie/ed the balloon/s. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/538.slt b/data/ENNI_SALT/train/538.slt new file mode 100644 index 0000000000000000000000000000000000000000..f5a22e4f4d3547d0d23a40e253e13e03dd410a1e --- /dev/null +++ b/data/ENNI_SALT/train/538.slt @@ -0,0 +1,81 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 7/10/1995 ++DOE: 12/04/2000 ++CA: 5;4;24 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 538=CHI ++Tape Location: Disk M6 Track 58 += [Bg:A1] +C there was a giraffe and a[EW:an] elephant (that) that was[EW:were] play/ing ball : near the pond. +C but the ball fell in. +C the giraffe : splash/ed in. +C but (it) he could not swim. +C but : he got the ball. +C (he help/ed : the) he help/ed : out. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C (there w :) there : was : a giraffe and a[EW:an] elephant. +C (there was) she (went into :) want/ed to go on the diving board. +C but she was so run/ing too fast that the giraffe could not catch up [EU]. +C but she fell and hurt herself. +C and she cry/ed. +C but another elephant came : and put her on the bench : and : was mad at her. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C once upon a time : there was : a giraffe and a[EW:an] elephant. +C they were play/ing with a[EW:an] airplane. +C but : the girl stole it away. +C but it : drownded|drown[EW:drowned]: into the water. +C the giraffe was mad at her. +C the elephant : came. +C (she w) (she s) she said : that it was : drownding[EW:drowning]. +C but : the elephant try/ed to (got) get it. +C but (she) he could not. +C he did not know what to do. +C (so he had to) a girl came : and had a net. +C she try/ed to get it out. +C but it did not work. +C then it did. +C so : he love/ed that girl. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C there was a bunny and a dog. +C he help/ed make a sandcastle. +C but the bunny pour/ed sand all over it : and broke it. +C he had to fix it fast. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C once upon a time : there was a dog and a bunny (that were have/ing). +C both of them were have/ing a picnic. +C but they were so hungry. +C (they) (that) the bunny (all) ate all the stuff : but was too full to eat any more. +C but a doctor came : and pull/ed and pull/ed on her : and went to see what was happen/ing. +=C the end [+_bch]. +E oh, you miss/ed one. +C (a bunny) the bunny was feel/ing better. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C once upon a time there was a dog and a bunny. +C (that) the dog had a wagon : that had one white balloon on it. +C and the bunny want/ed to : take it from : the wagon. +C but the bunny took it off : and let go. +C it was go/ing up and up and up. +C there was more over there. +C can I have a white one : he said? +C five dollar/s. +C oh. +C then you can not have it. +C he runned|run[EW:ran] off to the doctor. +C he did not have any money. +C so he gave her (mo) money. +C so he got (one) one each a balloon. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/539.slt b/data/ENNI_SALT/train/539.slt new file mode 100644 index 0000000000000000000000000000000000000000..3994117b59339cf57c3c9b37d9b7ee9463b88117 --- /dev/null +++ b/data/ENNI_SALT/train/539.slt @@ -0,0 +1,132 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 7/4/1994 ++DOE: 6/5/2000 ++CA: 5;11;1 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 539=CHI ++Tape Location: Disk L15 Track 75 += [Bg:A1] +C One day : a little : elephant : and : giraffe went to see[!] each other. +C and they say good morning. +C they saw : a little : pool. +C and they (s) decide/ed to go in[!] it. +C but they[!] did not have their : bathing suit/s to get that little ball out. +C so the giraffe[-:] : jump/ed[!] in. +C splash! +C then : (he) he swam (i) in the pool. +C and he almost got it. +C and then he got it at last. +C he gave it (to) to the elephant. +C and the elephant said thank you. +C thank you. +C this is so[-:] great. +C and then : she walk/ed home : to : find her momma. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C (um this : oh f) One day : the : giraffe and : the : elephant came back to the pool. +C and then[!] they[!] went swim/ing. +C so they[!] : jump/ed in : and swam. +C : (and) and the elephant said come on. +C come on. +C let us go over there so we can jump : higher[-:]. +C so they ran. +C and they ran[!] to it. +C (and it) (it) and the little : elephant : said waa! +C it is too slippery! +C then she fell right in. +C and then she hurt[!] : her knee. +C she was cry/ing so loud (that) that she (could not) could not even stop cry/ing. +C and the doctor came and look/ed at her. +C (she was so) (so : um) [~_wait_I_have_to_start_that__again] (she) : she was hurt badly. +C (and sh) : and the doctor : put her on the bench. +C and[!] then (she) she was sit/ing on the bench. +C and then[!] she got a bandaid on. +C (the oof) : and the doctor was so angry with her. +C and then : he point/ed his finger : somewhere (that) (that she) : at the sign. +C : and the sign said no[!] run/ing. +=C and that is the end of the story [+_bch]. += [Eg:A2] += [Bg:A3] +C [<~_makes_sound_'ffff']And then[!][>~_makes_sound_'ffff'] (what) what am I think/ing [+_bch] ? +C one day (the) the little elephant and giraffe came back[!] to the swimming pool. +C and there was a little cookie on the floor. +C and there was : a little plane : that was sit/ing on the floor. +C (he[!]) (the little) : the little airplane : made smoke. +C (and) : and (the : ze) (giraffe said) the giraffe did [~_makes_'raspberry'_sound]. +C and then : the little : elephant : grab/ed it from him. +C and then she[!] start/ed to fly it : because she thought it was so[-:] funny. +C and then[!] : the little airplane went in the swimming pool. +=C [~_says_under_breath] ah, my xx is come/ing off [+_bch]. +C and then the giraffe got so angry at the little : elephant. +C and the doctor[!] came back again. +C (a) (and the doc) and the doctor elephant : did not know what she did. +C and she said : I did not (throw) throw that in. +C so he try/ed to reach it. +C but he could not reach. +C then nobody could reach it. +C maybe I could reach that thing. +C and then : a pretty : woman came in the swimming pool. +C (and she) and she[!] could catch everything that was in the swimming pool. +C (a) and then she[!] came. +C and : she said I could : catch (that) that airplane for you. +C she was go/ing to [~_gonna] give it : to the : little : elephant. +C she try/ed to. +C but it was not go/ing in. +=C I am go/ing baseball/ing tomorrow I think so [+_bch]. +C and the : lady : gave it to the giraffe. +C and they[!] : were friend/s. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C One day : two little bunny/s went to the beach and builded|build[EW:built] a (sand) sandcastle. +C and they were : play/ing with the sandcastle a lot. +C (and) and : then they were go/ing to go (in the beach) (in the) in the water [~_I_mean]. +C sand boom[!]. +C they : pour/ed the sand : on top : of[!] the : sandcastle. +C boomerang[!]. +C the castle : blew into bit/s. +C and then they could not make it : again. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C One day (the) the two little : bunny/s went for a walk (to) to find some carrot/s (f) with their little basket/s. +C and then they had a little bit of picnic. +C then (they) they were so[!] hungry that they could not even wait. +C then[-:] the hungriest[!] one : ate : all : of the : food. +C then he got dizzy[!]. +C and the other bunny was drink/ing and eat/ing. +C then (ma) : mama came. +C (and) (and the) and the rabbit : [~_sniffs] ran to mama as fast as he can : and pull/ed[!] : her shirt : to see what have|have[EW:had] (ha) happen/ed. +C and then mama said : we have to take you to the doctor : and get your stomach : feel better. +C and then[!] little rabbit came with mama. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C one day : a little rabbit was : going to take (a) a little cart. +C and there was a balloon on it. +C and (the li) the other rabbit was (p) pull/ing it. +C and the other rabbit was : walk/ing by behind him. +C and then[!] : the bunny stop/ed : and said wow look at this : big forest. +C : and then : the balloon almost goed|go[EW:went] off. +C (and he is) and the rabbit try/ed to fix it. +C but it was not good. +C [~_sound_effects_'wam_wa'] there it go/3s : said the bunny/s. +C and they could not reach it as long. +C then it start/ed to pop. +C then[!] the balloon[-:] man : start/ed to come. +C (and he is) and he gave one of the bunny/s some of those balloon/s. +C and then[!] : the bunny said can I have (one of the) one of those balloon/s? +C (and the) and the man said sure. +C and then he was so[!] happy. +C then he had to give him five[-:] buck/s. +C then (he) they had no[!] : money. +C so they were so sad. +C and (the bunny got to stay) (that[!] bunny got to st) the little bunny got to stay with the balloon man. +C and then[!] mama gave him : the right buck : for the two bunny/s. +C then they got : one each (for the b) for the little : (b) boy and girl. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/541.slt b/data/ENNI_SALT/train/541.slt new file mode 100644 index 0000000000000000000000000000000000000000..167c905ab970eba7f65c6847537872b20b39a6bc --- /dev/null +++ b/data/ENNI_SALT/train/541.slt @@ -0,0 +1,80 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 7/11/1994 ++DOE: 6/5/2000 ++CA: 5;10;25 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 541=CHI ++Tape Location: Disk L15 Track 79 += [Bg:A1] +C The elephant and the giraffe (are go/ing) are play/ing basketball. +C the ball went into the pool. +C the giraffe swim/3s to get[!] the ball. +=C : I can not really explain that one [~_laughing] [+_bch]. +C (ah : oh) the giraffe is give/ing the ball to the elephant. +C the elephant love/3s the giraffe. += [Eg:A1] += [Bg:A2] +C The elephant and the giraffe are go/ing to go swim/ing. +C the elephant (got) and the giraffe : are go/ing to[:_gonna] jump in. +C the elephant and : the giraffe are run/ing. +C and the elephant slip/ed. +C and she stab/ed her knee on the side. +=C okay is this an outdoor pool [+_bch]? +E it does not matter, it is up to you. +C [~_okay] (she s) she hurt her knee on the sidewalk. +C she is cry/ing. +C : (and) and the lifeguard gave her a bandage. +C he[EW:she] is all better now. +C and now he[EW:she] should not run. += [Eg:A2] += [Bg:A3] +C The elephant (uh) and the giraffe are go/ing to go[-:] play : in the swimming pool. +C (the elephant and gir) (and the giraffe : is play/ing with) and the giraffe is play/ing with his airplane. +C the elephant grab/3s[!] it from him. +C : and the airplane go/3s in the water. +C now the giraffe is mad. +C and the lifeguard (s) come/3s along and try/3s to get it out of there. +C (and) and the elephant explain/3s it. +C and now the lifeguard is try/ing to get it. +C but the elephant and giraffe : and the lifeguard can not[!] get it. +C but (an) (an) a girl[!] lifeguard come/3s with a net and get/3s it. +C : and now the airplane is safe. +C and the (e) giraffe is happy now. +C and the elephant and giraffe are all happy. += [Eg:A3] += [Bg:B1] +C The rabbit and the kangaroo[-:] are build/ing a sandcastle. +C the rabbit : (put/3s some sand to make the sa) get/3s some sand to make the sandcastle. +C the rabbit : crush/3s the sandcastle. +C the rabbit (and) [~_asks_what's_that_other_thing,_E_asks_him__what_he_thinks,_C_says_'just_call_them_as_bunnies'] and the bunny is[EW:are] mad. +C and now the bunny can not build it up again. += [Eg:B1] += [Bg:B2] +C The rabbit and the kangaroo : are go/ing for a picnic. +C the rabbit : has[-:] more stuff than the kangaroo. +C : the kangaroo think/3s the rabbit is silly. +C he has a tummyache. +C : the kangaroo is run/ing to the bunny/z : mom. +C and : (she) she is say/ing he is too full. +C and[-:] she try/3s to help. +C and it did. += [Eg:B2] += [Bg:B3] +C The rabbit meet/3s the kangaroo one day. +C and[-:] the kangaroo has : (a) : a wagon. +C (and : the rabbit tie/3s a balloo) and the rabbit see/3s a balloon on the wagon. +C and he take/3s it off. +C and the balloon fly/3s away. +C and now the rabbit is mad : [~_I_mean] the kangaroo. +C and a balloon man come/3s (and get/3s some mo) and has some more balloon/s. +C (and the balloon) and the rabbit ask/3s for a balloon. +C and he pay/3s[!] the man. +C (and) (and) but he could not pay him because he did not have (a m) that much money. +C so he did not get the balloon back. +C (and) (and the rabbit/z mom[-:] : come/3s by and buy/3s) (and) and the rabbit/z mom come/3s by : and buy/3s : a balloon. +C and the balloon and the rabbit and the kangaroo are happy. +C and now they both[!] have a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/543.slt b/data/ENNI_SALT/train/543.slt new file mode 100644 index 0000000000000000000000000000000000000000..21691a7f32d2bfbb8d0ca2b5df4702796a8fe02b --- /dev/null +++ b/data/ENNI_SALT/train/543.slt @@ -0,0 +1,77 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 6/15/1994 ++DOE: 6/5/2000 ++CA: 5;11;21 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 543=CHI ++Tape Location: Disk L15 Track 89 += [Bg:A1] +C There is a[EW:an] elephant dress/ed like a girl. +C a[EW:an] elephant *is swim/ing barenaked [EU]. +C elephant *is play/ing with a ball [EU]. +C horse *is in the water [EU]. +C the (horse) horse *is steal/ing : the ball from the elephant [EU]. += [Eg:A1] += [Bg:A2] +C (horse) the horse is dress/ed like a girl. +C (horse is) a[?] horse is push/ing a[EW:an][?] elephant into the water. +C elephant is run/ing. +C : (s) fell and scrape/ed her knee [EU]. +C : cry/ed [EU]. +C : (um) : go/ing home [EU]. +C went swim/ing again [EU]. +C : his dad got mad at him. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C (uh : Elephant) elephant is push/ing the horse. +C dive/ing off the diving board [EU]. +C (the horse is) : the horse is : hit/ing him. +=C hit/ing : yeah [+_bch]. +C (horse) horse : put his airplane into the water. +C horse *is play/ing a game [EU]. +C (uh ) : elephant *is go/ing to get (the) the (um) plane in the water [EU]. +C he got it. +C got mad at it. +C : horse cry/ed. +C : elephant got it. +C : (got it) got it with his : fishing rod. +C got his airplane back. +C hug/ed it. += [Eg:A3] += [Bg:B1] +C a rabbit is play/ing with a mouse in a sandbox. +C the mouse is play/ing with the rabbit build/ing the sandcastle. +C (the rabbit) : the rabbit : breaked|break[EW:broke] it. +C : the mouse got mad. +C he built it again. += [Eg:B1] += [Bg:B2] +C (The mouse is) the rabbit is follow/ing the mouse : to a picnic. +C he is eat/ing a sandwich. +C he got dizzy. +C look/3s like a doctor [EU]. +C push/ed him [EU]. +C (g) and : he : eat|eat[EW:ate] all the lunch. +C : walk/ing with the doctor [EU]. += [Eg:B2] += [Bg:B3] +C the mouse is push/ing : a cart with a balloon on it. +C and the rabbit is follow/ing (him) him. +C now : the rabbit is push/ing. +C (and then) and (the) the mouse[!] is follow/ing him. +C (took) he took the balloon off. +C let it go. +C it pop/ed. +C : he saw some more. +C got another one. +C : was not allow/ed to get one. +C he got mad. +C (stole) stole all of them [EU]. +C said look there is[EW:are] those balloon/s. +C talk/ed : to a doctor [EU]. +C (he got a) he got one balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/544.slt b/data/ENNI_SALT/train/544.slt new file mode 100644 index 0000000000000000000000000000000000000000..de9f39c6470d556210914d53d02040644daba4fb --- /dev/null +++ b/data/ENNI_SALT/train/544.slt @@ -0,0 +1,87 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 9/06/1995 ++DOE: 2/27/2001 ++CA: 5;5;21 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 544=CHI ++Tape Location: Disk M7 Track 52 += [Bg:A1] +C the elephant is play/ing ball. +C the ball fall/3s in the water. +C the cow fall/3s in the water. +C the elephant (grab/3s) grab/3s the ball. +C the elephant hug/3s the ball. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C the elephant is : look/ing at the water. +C the elephant is : run/ing in the water. +C the elephant is : slip/ing. +C the elephant : hurt her knee. +C the elephant is cry/ing. +C the[-:] lifeguard is try/ing to help her. +C the lifeguard tell/3s her to stay right there. +C the lifeguard tell/3s her not to run. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C the cow has the airplane. +C the cow[-:] buzz/3s the airplane. +C the elephant grab/3s the airplane. +C the elephant drop/3s the airplane. +C the cow is mad at the elephant. +C the (life) the guard see/3s the : airplane. +C the : elephant : tell/3s her all about it. +C the lifeguard try/3s to reach it. +C it is no use. +C (the[-:]) : a lady elephant (c) try/3s to catch it. +C she catch/3s it. +C she give/3s it to the cow. +C the cow grab/3s it. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C the dog is make/ing a sandcastle. +C the rabbit want/3s to make it too. +C the rabbit put/3s more sand on it. +C the rabbit wreck/3s the sandcastle. +E the rabbit what? +=C the rabbit wreck/3s the sandcastle [+_bch]. +E oh wreck/3s. +C (uh) the dog is sad. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C the rabbit and the dog have : bug catcher/s. +C the rabbit : eat/3s : all the food. +C the rabbit (get/3s f) (have a) get/3s a tummyache. +C the rabbit : do/3s not feel well. +C (the rabbit) [~_I_mean] the dog go/3s (tell) to tell the : mommy rabbit. +C the mommy rabbit come/3s. +C she tell/3s her to not eat too many[EW:much] food. +C she tell/3s her to go home. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C the dog is pull/ing a wagon with a balloon tie/ed to it. +C the rabbit (s) see/3s the balloon. +C she try/3s to untie it. +C it fly/3s away. +C the string is the only thing left. +E string/s do not even? +=C thing left [+_bch]. +E can you use your loud voice? +C the balloon man come/3s by. +C (he ask/ed) the bunny ask/ed if they could have another balloon. +C (the) (the) the balloon man give/3s them another balloon. +C and (he) he tell/3s them not to untie them. +C he give/3s : them no balloon/s. +C they go walk/ing home sad. +C they ask/ed if they can have a balloon. +C she (pa) pay/3s for one. +C (sh) they both get one. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/545.slt b/data/ENNI_SALT/train/545.slt new file mode 100644 index 0000000000000000000000000000000000000000..305d3e5bf879cbe4ac3abb72e6e6ae79a964400d --- /dev/null +++ b/data/ENNI_SALT/train/545.slt @@ -0,0 +1,77 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 5/15/1995 ++DOE: 6/27/2000 ++CA: 5;1;12 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 545=CHI ++Tape Location: Disk L19 Track 24 += [Bg:A1] +C (there w) I saw a[EW:an] elephant (down) on the sidewalk. +C : we saw a ball in the water. +C (and) and : I went (uh) swim/ing in the water. +C and they got the ball. +C and I was all wet. += [Eg:A1] += [Bg:A2] +C (uh) I was look/ing at the water. +C : (and) : and the elephant (wa) was go/ing to[:_gonna] jump inside the water. +C and she was run/ing. +C and she hurted|hurt[EW:hurt] her knee. +C : and she start|start[EW:started] cry/ing. +C (and : she is i) and we gived|give[EW:gave] her a bandaid. +C (and then her) and then (she) she was happy[-:]. +C (and zhen) and then : her dad was mad. += [Eg:A2] += [Bg:A3] +C (uh) the elephant (an) and I was[EW:were] happy. +C and we were fly/ing my plane. +C and : the elephant took it away : from me. +C and : she throwed|throw[EW:threw] it in the water. +C (and) and I was mad at her. +C and then there is[EW:are] : two : elephant/s. +C (and) and her brother was talk/ing to her. +C (and she) and he try/ed to : get it. +C and he did not. +C and he try/ed to get it so hard : that he did not get it. +C (but h) but : the mom had : a net in her hand to go get it. +C and she got it. +C (and h) (and) and I was happy. +C and I was hug/ing it. += [Eg:A3] += [Bg:B1] +C we were play/ing in the sand. +C : and we made a castle. +C and we pour/ed sand on it. +C and it broke. +C (and) (and it w) and I was sad. += [Eg:B1] += [Bg:B2] +C (we) I bringed|bring[EW:brought] a snack. +C (an) and we eated|eat[EW:ate] it. +C (and we) and I was drink/ing. +C (and I got a) (and) and the rabbit got a[EW:an] owie. +C and then it was : the rabbit/z mom. +C (and) and I was grab/ing her coat. +C (and) : and : she was talk/ing to her : son. +C (and) (and they were) and they (were) went home. += [Eg:B2] += [Bg:B3] +C I was bring/ing a balloon. +C : (and) (and) and the rabbit was happy. +C and he was : take/ing it off. +C (and) (and they we) and he let go. +C and it flied|fly[EW:flew] (in) : up in the sky. +C and then we could not get it. +C and then there was (a) a balloon guy. +C and we went to go get one. +C and : we got a number five. +C and we did not get any balloon/s. +C (and her mo) and then the rabbit/z mom was here. +C (and) and he was (ll kk) ask/ing for his mom for money. +C (and) and the mom give|give[EW:gave] : him some money. +C and then they both had (s) balloon/s. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/547.slt b/data/ENNI_SALT/train/547.slt new file mode 100644 index 0000000000000000000000000000000000000000..cf6942a9dc55826b5383014399f88babd480a2b7 --- /dev/null +++ b/data/ENNI_SALT/train/547.slt @@ -0,0 +1,77 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 3/27/1995 ++DOE: 6/27/2000 ++CA: 5;3;0 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 547=CHI ++Tape Location: Disk L19 Track 34 += [Bg:A1] +C : (um) the elephant was play/ing ball. +C (the gira) (an) (a) and then it fell into the swimming pool. +C (and) (and then) the giraffe (an) (an) and then he was swim/ing. +C and then he got the ball. +C : (an) (an) (and) and then the elephant love/ed it. += [Eg:A1] += [Bg:A2] +C (um) this say/3s : no run/ing allow/ed in this town. +C (an) and then (the) the elephant want/ed to jump in the swimming pool. +C (a) and then she was run/ing. +C (a) and then she hurted|hurt[EW:hurt] herself. +C and then she need/ed a bandaid. +C then she cry/ed. +C (and) (and) and then she stop/ed. +C (and) : and then she was do/ing this [~_child_making_some_kind_of__unknown_gesture]. +=C done [+_bch]. += [Eg:A2] += [Bg:A3] +C (um) her owie feeled|feel[EW:felt] better. +C (an) : and then : there was a[EW:an] airplane. +C : (an) and that was her airplane : to fly it. +C then it felled|fell[EW:fell] in the pool. +C : and then[-:] it was start/ing to sink. += %COM: brief discussion of child's stickers which had fallen on floor +C (um) and then the airplane almost sinked|sink[EW:sank] down. +C then it was sink/ing more. +C and then the man was try/ing to get it. +C : then it would be stuck there. +C and she[!] will get it. +C : she got[!] it. +C : she even (ga) gave it to the boy. +C : and then (that was) that was the giraffe/z. += [Eg:A3] += [Bg:B1] +C (um) they are build/ing a sandcastle. +C and : maybe they like to do it. +C : (a) and the bunny is (pu) put/ing the sand in the bucket. +C then pour all this sand on the castle. +C then it fell down. +C : (and then there is al) : and then she need/ed to build it again. += [Eg:B1] += [Bg:B2] +C they are go/ing to a picnic. +C (and) and the bunny rabbit is have/ing a carrot and a hot dog. +C (an he) and the bunny rabbit was full. +C (and) and the doggy was not disappoint/ed. +C and : (th) the bunny rabbit : (he) (he) he was lay/ing down : on the picnic. +C then : (he[-:] ) the doggy was pull/ing the doctor. +C and the little bunny rabbit was sick. +C and he feeled|feel[EW:felt] better. += [Eg:B2] += [Bg:B3] +C (um) the doggy was pull/ing the wagon. +C (an) : and the bunny rabbit saw a balloon[-:] (on) on the wagon. +C and : the bunny was try/ing to get it off. +C then it float/ed away. +C then it was gone. +C and then there was another guy with more balloon/s. +C (and) and then the little bunny rabbit ask/ed for a balloon. +C : (he) and then the bunny rabbit did not have any money. +C they did not get any balloon/s. +C (th) and then they need/ed (to) (to) (to wait) to wait for another man[-:] : with balloon/s. +C (and) (and) (and it) and (then) (the) then they would get a balloon. +C and then : the guy would give them balloon/s[-:]. +C : (um) and then they got them. += [Eg:B3] diff --git a/data/ENNI_SALT/train/548.slt b/data/ENNI_SALT/train/548.slt new file mode 100644 index 0000000000000000000000000000000000000000..9c67cd69fafbe32a69d1143955b4854a2e6eadcb --- /dev/null +++ b/data/ENNI_SALT/train/548.slt @@ -0,0 +1,75 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 10/29/1995 ++DOE: 2/22/2001 ++CA: 5;3;24 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 548=CHI ++Tape Location: Disk L25, Track 108 += [Bg:A1] +C the cow was go/ing to[:_gonna] go in the pool. +C and there was a little elephant that had ball/s. +C (the c) : the elephant threw a ball into the pool. +C and the cow saw. +C then the cow swam in the pool to[!] the ball. +C then he took another[!] ball. +C then he came out. +C and (the) the elephant laugh/ed[!] at him. += [Eg:A1] += [Bg:A2] +C there was a[EW:an] elephant and a giraffe. +C the elephant was go/ing to[:_gonna] run into the pool. +C she slip/ed : and hurt her knee. +C the lifeguard came : and took her into the room : and try/ed to put a bandaid on her. +C so she put one on. +C and she was sit/ing on the bench! += [Eg:A2] += [Bg:A3] ++Comment: beginning of story not recorded - SET coded on assumption that it was likely present +C and saw it. +C and put it into the pool[!]. +C and the giraffe was mad : because it shrunk. +C and (the) : the elephant said lifeguard lifeguard : his airplane fell into the pool! +C then the lifeguard try and reach it [EU]. +C and the giraffe was cry/ing. +C and the girl was scare/ed. +C and then[~!_laughing] the girl came and got a net[!] : and caught[!] the airplane. +C and then she gave it back[!] to him. +C he was hug/ing it. += [Eg:A3] += [Bg:B1] +C there once was a rabbit : and a doggy. +C the rabbit dug a sandcastle and put some more sand[!] in. +C then he put some on the castle. +C then : the doggy was sad. +C then she had to make it all over[!] again. += [Eg:B1] += [Bg:B2] +C there once was (a um) : a bunny : and a doggy. +C (there) : the bunny decide/ed to go on a picnic with the doggy[!]. +C the doggy ate his sandwich so funny (that the) : that the rabbit laugh/ed. +C and then the rabbit was too full of laugh/ing. +C and the doggy had card/s out. +C then the dog said go[!] go[!] : and pull/ed : and pull/ed : the : rabbit[-:] to the other rabbit. +C that rabbit : check/ed the other rabbit. +C and he was as good. += [Eg:B2] += [Bg:B3] +C there once was a doggy and a rabbit. +C the dog had a balloon. +C the rabbit want/ed to play with it. +C so he took it off. +C and then the balloon float/ed away. +C and it went up up into the sky. +C and then they went to buy another one. +C and the doggy was mad. +C then (he) he pick/ed another one he said. +C then there was five[-:]. +C then they got another[!] one. +C then one float/ed away. +C then another[!] float/ed away. +C and then he only had two more left for one person. +C and there was one for each of them. += [Eg:B3] diff --git a/data/ENNI_SALT/train/551.slt b/data/ENNI_SALT/train/551.slt new file mode 100644 index 0000000000000000000000000000000000000000..c569f57195e44b890606d77d67ae479633797ea9 --- /dev/null +++ b/data/ENNI_SALT/train/551.slt @@ -0,0 +1,144 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 5/28/1995 ++DOE: 6/27/2000 ++CA: 5;0;30 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 551=CHI ++Tape Location: Disk L19 Track 5 += [Bg:A1] +C once there was a little elephant : who was practice/ing : to (um) blow up (three[-:]) : three[-:] nut/s : at a time. +C : but then : (the) one sunk. +C and then : she had a big bump in her nose. +C [~_high_pitched_voice] : oh no what are you do/ing? +C [~_high_pitched_voice] I can not eat that. +C [~_high_pitched_voice] there is poison in the water! +C oh I am so wet. +C thank/s for the ball anyway/s. +C [~_low_pitched_voice] : I will have it now. +C [~_low_pitched_voice] let us play pass : over there[-:]. += [Eg:A1] += [Bg:A2] +C one day : (eleph) little elephant : and little giraffe said look. +C there is water! +C there is a diving : board! +C let us go jump off of it [~_high_voice]! +C : I will go first [~_low_voice]. +C hold my towel [~_low_voice]. +C : aaaah : I am trip/ing [~_high_voice]. +C I will help you [~_high_voice]. +C splash. +C (with some) (wit) the towel went in the water. +C oh no look what you did [~_high_voice]! +C (and look what you) and look what I (d) : have [~_high__voice]! +C I have : an owie [~_high_voice]. +C and my towel is in the water [~_high_voice]. +C how will that dry me off [~_high_voice]? +C : owie [~_whiny_voice]. +C then (um : his) her dad came along. +C and little giraffe told : little elephant/z dad all about it. +C and little elephant went home. +C : now let us put a little[-:] bandaid on it. +C : now just sit here and rest. +C : now do not run next time. += [Eg:A2] += [Bg:A3] +C then she said : today my owie is all better. +C : how about we play : pass with your nose? +C you can be the bat. +C and I will[-:] be the ball[-:]. +C well I will throw the ball. +C : oops : I think the ball sunk. +C : what did you : do to my ball ? +C : [~_deep_voice] (you) I told you not to play by the swimming pool unless you are in[!] the swimming pool. +C [~_high_pitched_voice] I am sorry daddy. +C [~_high_pitched_voice] we just were : play/ing pass over there. +C [~_high_pitched_voice] but it hit so far. +C : [~_makes_sound_of_exasperation,_speaks_in_deep_voice] I guess[!] I can get it. +C : well : I think that your ball : is[EW:has] drown/ed. +C [~_high_pitched_voice] aah. +C : then her mother came along and said here is something you could use. +C : and she fish/ed it out. +C : and then : she gave it back. +C : then he hug/ed it so much. +C and he hug/ed : her. +C and he hug/ed (um) : little elephant too to have her cell phone and call her mother and bye. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C once there was a little : baby kangaroo. +C (and he was) : and she was (um) build/ing a sandcastle of a castle. +C : and then (a ll) a bunny came along and said can I help? +C sure! +C what are you do/ing? +C you are pour/ing all this sand over the sandcastle? +C that is not help/ing. +C that is wreck/ing it. +C : ah : I am sorry [~_very_high_voice]. +C it is gone [~_very_high_voice]. +C : well goodbye. += [Eg:B1] += [Bg:B2] +C once there was[EW:were]: two bunny/s. +C and (they were) they were not just[!] bunny/s. +C (they were) they do not just hop. +C they were the kind that walk and have picnic/s. +C and it was the bunny/s/z picnic today. +C I think I will take all this food. +C and you can just have the basket. +C hey where is all the food go? +C I am suppose/ed to have some too. +C sorry : I ate it all. +C that is why I am call/ed Munchy. +C then : came rabbit/z : mother. +C and then : rabbit ran over to rabbit/z mother. +C rabbit/z mother rabbit/z mother rabbit ate all of my food that I brought for the picnic. +C and he did not save anything but the basket. +C well let us go see. +C come on come on come on. +C hurry up hurry up. +C now do not you do that again. +C let us go home. +C ha that is over. +C I guess you (le) leaved|leave[EW:left] some crumb/s for me. += [Eg:B2] += [Bg:B3] +C once there was (um) a little kangaroo : with a wagon and a balloon tie/ed on the wheel. +C and then her friend came along. +C hey do you think you could hop in? +C (and I will) and I will (pu) pull you. +C sure! +C oh (maybe I will) (I will) maybe we will just walk. +C and we will both push it. +C ah what are you do/ing to the balloon? +C why are you screw/ing it off? +C that is not how you do it. +C you keep it on. +C ah[-:] hey look what you did now! +C you made it (fall) fly away. +C [~_growling_sound] why did you make my balloon fly away? +C : hey look. +C there is the balloon man. +C let us go get one. +C so : they pick/ed : two. +C but the judge said only one. +C one dollar. +C I am sorry. +C but I can not give (all) (all) all these balloon/s to you. +C you will (fly) float away. +C you are too little to hold them. +C you will float away. +C but not me because I am big[-:][!]. +C (maybe that) maybe I said the wrong thing. +C mommy*5 : you know what? +C the balloon man will not let me have any balloon/s at all. +C : oh my*3! +C and you know what? +C I pop/ed her balloon. +C two balloon/s! +C two penny/s please. +C there you go you guy/s. +C but do not put your teeth on them bunny. += [Eg:B3] diff --git a/data/ENNI_SALT/train/552.slt b/data/ENNI_SALT/train/552.slt new file mode 100644 index 0000000000000000000000000000000000000000..bf79887fc11efc853235c68cd1259389a7c4b978 --- /dev/null +++ b/data/ENNI_SALT/train/552.slt @@ -0,0 +1,115 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 9/6/1995 ++DOE: 1/11/2001 ++CA: 5;4;5 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 552=CHI ++Tape Location: Disk L23 Track 50 += [Bg:A1] +C [~_yeah_but_I_love_telling_stories_to_big_womans] one time the elephant was bounce/ing a ball. +C (um) the elephant bounce/ed it in the water. +C (the giraffe : ran) the giraffe swam to get the ball. +C and then the giraffe : got it. +C and then he gave it to the balloon[EW:elephant]. +C (and its and the and the) and the[-:] elephant said you are so kind! +C and then the giraffe was like [~_facial_expression] : that is so incredible. +C and then the (uh) elephant was like [~_facial_expression]. += [Eg:A1] += [Bg:A2] +C one day : (the) the giraffe was go/ing to[:_gonna] take a swim in the pool. +C then the elephant went first. +C and then he was like : whoa! +C and (he just) : he just : hurt his knee. +C then he was sad. +C and then the brother (el) elephant : (was) was run/ing. +C and then : he gave the sister a bandage. +C and then the brother help/ed her walk. +C (and then he made) (and then he) and then he stood her up. +C (and then) : and then he let her see her bandage. +C (and then) : and then the elephant said : no girl/s allow/ed. +C only girl [EU]. += [Eg:A2] += [Bg:A3] +C (one day the uh) (the) : one day the giraffe (was) was go/ing to play : (with his p) with his airplane. +C he was go/ing to fly with it. +C but then the elephant took it away. +C and he was like [~_puzzled_expression]. +C (and they) and the giraffe was like [~_facial_expression] (what the) what are you take/ing it for? +C and then the elephant drop/ed[!] it in the pool. +C and then the giraffe was mad at her. +C she was like oh[-:] [~_standing_up_with_arms_above_head_and_mad__expression_on_her_face]. +C I am sorry. +C then the giraffe told the brother. +C (and he did not) and he was think/ing hmm. +C how do I get that airplane out of the pool? +C I have never seen an airplane in the pool. +C (and then) : and then the sister told the brother that : she did not even do it. +C and then the brother try/ed to reach/ed[EW:reach](it) the airplane. +C and then : the airplane : start/ed to sink. +C and then the girl (was) : was put/ing on a swimming suit. +C and then she got (a) : a net to catch (the) : the airplane. +C then she got it (with) with the net. +C and then (the eleph) (the[-:] ) the girl elephant (gave it) gave the airplane to the giraffe. +C and then : the giraffe : was hold/ing the airplane to : his cheek. += [Eg:A3] += [Bg:B1] +C (um uh) once the girl dog was make/ing a (sa) sandcastle. +C then the rabbit start/ed : to make a big big big : pile : of sand : in a bucket. +C and then he pour/ed it all over the sandcastle. +C (and then he) (and then he went) and then he was scare/ed. +C (and then the) and then the dog was like [~_makes_a_face__with_big_open_eyes]. += [Eg:B1] += [Bg:B2] +C once the rabbit (was) was run/ing along with a basket in his hand. +C (and then he) and then : the dog had a sandwich. +C and a rabbit had (a salad) a salad bun and (a sss) and a carrot : and another salad bun : (and) : (and) [~_uh_hm_I__do-n't_know_what_it_is_called]. +C and he ate it all. +C and he felt full. +C and he laid down. +C then he bonk/ed his head. +C (and went) and he went [~_motioning_with_his_head_as_if_it_were__spinning_around]. +C that is so hilarious. +C and then his father come/3s along. +C and then the baby rabbit go/3s (hey where is) hey where is : big rabbit? +C (and then the mother) and then the baby (just gro) just pull/ed the mother/z jacket. +C (and then : he) and then the mother (just) just : check/ed his throat (with um) with a tube thingy. +C and then he felt better. +C and then he walk/ed with his mom. +C and the baby stay/ed there. += [Eg:B2] += [Bg:B3] +C once the : rabbit was run/ing along. +C and he saw his baby pull/ing a wagon : with a balloon on it. +C and he said that is just the kind of balloon I want! +C and the baby was like : you are go/ing to take the balloon off my wagon? +C and then he was like [~_look_of_surprise]. +C and then (he just) he just (um) let go of the balloon. +C and the balloon float/ed up into the air. +C and the baby and the brother could not : touch it. +C and (then) (then the bab) then the balloon : pop/ed. +C and then the baby got mad at the brother. +C and then the big balloon maker guy : this guy [~_pointing_at__picture_on_page]. +C those two guy/s (uh uh) a full made of balloon/s. +C (and he said) (and he) and the brother said those are balloon/s that I need. +C and he said uhuh (because you have a). +C [~_what_the] he has a hole in his pant/s. +C that silly rabbit. +C (and then) and then the baby came over. +C then he was like [~_facial_expression]. +C then the man was like [~_facial_expression]. +C [~_what_the] and then the mother came over again. +C and the baby was like [~_facial_expression]. +C and the brother was run/ing over to the mother. +C (then the moth) and (then the brother told the) (the) and then the brother told the mother what had happen/ed : what the man (who may who) who make/3s homemade balloon/s. +C : (he told the) the brother told the mom : what the man had said to him. +=C oh that book keep/3s fall/ing down [+_bch]. +=C number number twenty number twenty one [~_reading_number_off_back__of_previous_page] [+_bch]. +C (and then uh) and then the guy went. +C and the mother gave the guy : (ffff um) (ffff) two (buck/s) buck/s for the balloon/s so that the children could have them. +C (and then) : and then the children were play/ing with them. +C and then I do not know how. +=C and then nothing else [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/553.slt b/data/ENNI_SALT/train/553.slt new file mode 100644 index 0000000000000000000000000000000000000000..deaa07e1aa1d58e8ae64abd96f8d4a8968721cd6 --- /dev/null +++ b/data/ENNI_SALT/train/553.slt @@ -0,0 +1,88 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 7/08/199 ++DOE: 6/27/2000 ++CA: 5;11;19 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 553=CHI ++Tape Location: Disk L19 Track 59 += [Bg:A1] +C a giraffe : meet/3s an elephant. +C the elephant : seem/3s like she is ask/ing the giraffe to play with her. +C the giraffe : play/3s with the elephant. +C but : the ball go/3s into the water. +C the giraffe swim/3s to get the ball. +C he give/3s the ball to the elephant. +C and the elephant : thank/3s him. +C she think/3s that he is her hero. += [Eg:A1] += [Bg:A2] +C the[-:] elephant : and the giraffe they want : to : jump in the water to play : in the water. +C the elephant go/3s first. +C but they run. +C the elephant : hurt/3s herself. +C and the : giraffe tell/3s a lifeguard. +C the lifeguard put/3s a bandaid on the elephant/z hurt : and then make/3s it better. +C but then he make/3s her sit on the bench because she ran. +=C finish/ed [+_bch]. += [Eg:A2] += [Bg:A3] +C the giraffe and the elephant : are go/ing to play together again. +C the giraffe has an airplane. +C and the elephant is watch/ing. +C then the elephant grab/3s it from : the giraffe. +C and then she start/3s to play with it. +C but then it land/3s in the water. +C the giraffe get/3s angry at the elephant. +C the lifeguard : look/3s at them. +C and the elephant tell/3s the lifeguard that : (her plane) the giraffe/z plane fell in the water. +C the lifeguard try/3s to get it. +C the giraffe[!] try/3s to get it. +C then : another person come/3s. +C and then she has a net. +C and she[!] get/3s it : and then give/3s it back to the giraffe. +C and then the giraffe hug/3s his plane. += [Eg:A3] += [Bg:B1] +C a rabbit and a dog : meet each other. +C and they want to play. +C the doggy build/3s a sandcastle while the rabbit fill/3s : the bucket/s. +C then the rabbit dump/3s it on the sandcastle : then make/3s the dog/z castle : broken. +C and then the dog cry/3s. +C and then the rabbit just go/3s like this [~_child_makes_a_motion] : with his ear/s down. += [Eg:B1] += [Bg:B2] +C (then they meet) the rabbit and the dog meet again. +C the dog say/3s she would like to eat. +C and the rabbit has a carrot and love/3s it. +C then he eat/3s all of his picnic stuff. +C and the dog is just eat/ing her[!] sandwich and drink/ing her juice box. +C then the rabbit get/3s dizzy. +C then the dog go/3s *and tell/3s (miss) the doctor [EU]. +C and the doctor : come/3s. +C and he take/3s his temperature. +C and he leave/3s with the doctor. +C and the dog stay/3s. += [Eg:B2] += [Bg:B3] +C the dog and the rabbit : meet again. +C and the doggy she is pull/ing a wagon. +C and the balloon was on top. +C (an) and I guess (I thi) I think I know what is go/ing to happen next. +C the rabbit : ask/3s the dog for the balloon. +C and then : the rabbit take/3s the balloon off the wagon. +C then the rabbit and the dog try to get the balloon because : the rabbit let go : of the balloon. +C the dog get/3s angry at the rabbit. +C then they go : to get another one. +C then the rabbit ask/3s for one[!]. +C and then : he said balloon/s five[-:] cent/s. +C the dog and the rabbit get sad because they can not get a balloon. +C then[-:] rabbit tell/3s his mommy : if he can get any money from her [EU]. +C (and she give/3s) : (she sa) (and he sa) and she ask/3s why? +C and then the rabbit say/3s I want a balloon. +C and then she give/3s : the : storekeeper two five centses[EW:cent/s] so (sh) he can get one for[-:] : the dog and the rabbit. +C and they both get them. +C and then (they) they are happy. += [Eg:B3] diff --git a/data/ENNI_SALT/train/557.slt b/data/ENNI_SALT/train/557.slt new file mode 100644 index 0000000000000000000000000000000000000000..f9974a5b000f445c7a1106697661f3ad6bec47e2 --- /dev/null +++ b/data/ENNI_SALT/train/557.slt @@ -0,0 +1,107 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 9/12/1995 ++DOE: 11/15/2000 ++CA: 5;2;3 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 557=CHI ++Tape Location: Disk L20 Track 17 += [Bg:A1] +C one day (the elephant/s) (when me) I was the elephant. +C and I was so surprise/ed because I got some candy. +C and then : my brother : (he got) he found a balloon in the water. +C and then : (I said) the elephant said that hey that is my balloon! +C then my brother gave the balloon to me. +C and then : the elephant said thank you to my brother. +=C The end [+_bch]. += [Eg:A1] += [Bg:A2] +C one day they[EW:we] were go/ing for a swim : me and my brother. +C and then (I was so scare/ed of) [~_I_mean] my brother told me that (um) it is very deep. +C so you have to be with me : because I am bigger than you. +C and then : when she dip/ed : her feet in the water and (uh) she thought it was too cold and she was walk/ing for her : towel (she slip/ed) I slip/ed. +C and then she hurt her knee. +C and then she need/ed a bandaid. +C and then she got one. +C and then : she rest/ed. +C and then she was okay. +C so she went back in the pool. +=C The end [+_bch]. += [Eg:A2] += [Bg:A3] +C one day : me and my brother went swim/ing. +C and it was okay. +C so the elephant : was surprise/ed. +C and then (she brou) my brother brought an airplane in the water. +C and then (sh uh) the elephant took the airplane away. +C that is when I was two : and he was nine. +C and then (she) the elephant drop/ed it in the water. +C and then : (my um) the brother was so mad. +C and he could not go in the water because it is only for two year old/s. +C and then : (um) : one of the elephant/s : (um) came and get|get[EW:got] the plane. +C and then (he) (the) the elephant try/ed it. +C but : the plane was float/ing away. +C and then : (um) it went down and down. +C and then my brother was cry/ing. +C and then he (tr) try/ed it with (um) a butterfly thing. +C and then he got it. +C and then (he was) : he was get/ing happy[EW:happier] and happier. +C and then they gave it back. +C and he was so happy. +C (and then he[-:] was so) and then my brother was so happy. +=C and the end [+_bch]. += [Eg:A3] += [Bg:B1] +C (Um) me and my brother : were play/ing in the sandbox. +C and then I[!] took (the sa) all the sand because that was when I was a little baby. +C and then I took all the sand too. +C we share/ed : the sand. +C and then we made a sandcastle. +C then : (we) we made it high. +C and then it fell down. +C so we got sad. +C And then : we (um) came out of the sandbox. +C and then we went back in our house. += [Eg:B1] += [Bg:B2] +C we went for a picnic. +C and then we ate. +C then we went out to play. +C and then (my broth) me and my brother. +C (my) me, I was not finish/ed my juice and my sandwich. +C and then my brother was. +C and he was fat [~_laughs]. +C and then he got loose[?] and looser[?] [~_laughs] [EU]. +E pardon? +C he was (es) go/ing to get hungry[EW:hungrier] and hungrier. +C and then he said hey what are you do/ing? +C that was my dad. +C and then : (um : I said that) to my dad I said that if we could go swim/ing. +C [~!_laughing] I had a nice bathing suit on. +C (and then we said) My dad said no[!] tomorrow. +C let us go because it is the next day. +=C The end [+_bch]. += [Eg:B2] += [Bg:B3] +C (w) when we were done our : party we went for (a) : another party. +C and we got (from) a balloon from our : first party. +C and then : it was get/ing smaller and smaller. +C and then (um it was get/ing) it was go/ing to pop because it was not on there well : the wagon. +C and then it flied|fly[EW:flew] away. +C and then it pop/ed. +C and then the man gave us (new) lot/s of new : balloon/s. +C and then he gave it to us right now. +C and then (they) it pop/ed. +C and (i) they were sad again. +C and then : the man said that : he is go/ing to get us brand new balloon/s[~!_laughing]. +C and then (um) : he got : new balloon/s. +C and : one of them pop/ed already. +C and then : he got one more that is brand new. +C and (uh) if it pop/3s (then I ca) the man said that (I) he could not get any more because he is hungry. +C and then (um : he) : he ask/ed the man if he could have one of : the dad/z cookie/s. +C and then : he did not have any more. +C and (the man was) [~_I_mean] the man gave (um the bun) me and my brother new balloon/s. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/559.slt b/data/ENNI_SALT/train/559.slt new file mode 100644 index 0000000000000000000000000000000000000000..d70d9a9b0e3500b98606d9d83e38eb6fae6e0f00 --- /dev/null +++ b/data/ENNI_SALT/train/559.slt @@ -0,0 +1,85 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 5/23/1995 ++DOE: 11/15/2000 ++CA: 5;5;23 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 559=CHI ++Tape Location: Disk L20 Track 23 += [Bg:A1] +C They were bounce/ing the ball. +C Then they fell into the pool. +C (and the) and they swimmed|swim[EW:swam] to go get it. +C And they (fe) get|get[EW:got] the ball. +C (and they) and the elephant was surprise/ed. +=C And the end [+_bch]. += [Eg:A1] += [Bg:A2] +C they were laugh/ing at the pool[-:]. +C then they were run/ing[-:]. +C and (then they) then they were run/ing. +C (they were run) (they were) the elephant put/3s his toe up. +C and then she got a[EW:an] owie. +C then : a[EW:an] elephant came and[EW:to] fix her. +C and then she was cry/ing. +C and[-:] they were sit/ing on the bench. +C and : (elephant w) the big elephant was mad at her. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C (they were) (they were pl) they were laugh/ing. +C and they had a[EW:an] airplane[-:]. +C and then : they were play/ing with it. +C then she grab/ed it. +C and it was in the swimming pool[-:]. +C (and they) and he was mad. +C and then the big elephant came. +C (an) and he said it fell in the water. +C (then she try/ed) then he[!] try/ed to get it. +C but it was too far. +C and then they did not know what to do[-:]. +C then they got a net[-:]. +C and then they : got it. +C (and then) (then they w) then they just got it back. +C and then they love/ed it. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C (um) they were play/ing sand. +C and they build|build[EW:built] a sandcastle. +C and (then they) then the rabbit wreck/ed it. +C and then they have to build it all over again. +C then they try/ed to build it. +C but it was too hard. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C they were walk/ing for a picnic. +C they were eat/ing. +C and (then they got ti) (then they) then they got tire/ed. +C and then they felt sad because they ate too much[EW:many] goodie/s. +C and (then they) then they saw their dad. +C and then they got the dad. +C and then they were tire/ed again [~_whispers_last_word]. +C and (then the) then they went home. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C and they were pull/ing a wagon that was tie/ed to a balloon. +C then a rabbit came along and said what a nice balloon. +C and then she try/ed to untie it. +C but then it went float/ed away [EU]. +C and (then) (then they were) then he was mad. +C and then they saw some more balloon/s. +C but can we buy a balloon please? +C and then they said no. +C (and then) : and then they were sad. +C and then they did not until they got their dad to buy one. +C and then dad bought one. +C (and) and said two cent/s please. +C and they got two cent/s. +C and then they got (ba) two balloon/s. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/561.slt b/data/ENNI_SALT/train/561.slt new file mode 100644 index 0000000000000000000000000000000000000000..002b610fb304d6efadc2b0ebc5409adc75819e50 --- /dev/null +++ b/data/ENNI_SALT/train/561.slt @@ -0,0 +1,93 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 9/18/1995 ++DOE: 11/20/2000 ++CA: 5;2;2 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 561=CHI ++Tape Location: Disk L20 Track 116 += [Bg:A1] +C once upon a time : there was (a giraffe and uh um :) (and a uh :) a giraffe and an elephant. +C and the elephant was bounce/ing a ball[-:]. +C and then it went into the water[-:]. +C and then the giraffe was try/ed[EW:try/ing] to get it. +C and he caught it for her. +C and : he was happy. +C and then : (the) (the um) : the elephant was happy because : the giraffe got her ball back. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C once upon a time : the giraffe was : go/ing to[:_gonna] (s) go in the water. +C and then she said hey do you want to [~_wanna] go in there? +C (and she said) and the giraffe said okay. +C and then they went[-:]. +C but then she hurted|hurt[EW:hurt] her knee. +C and then : another elephant came. +C and then : it put a bandage on. +C and then it was okay. +C and then [~_no] (he) the other guy came. +C no run/ing. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C once upon a time : the giraffe was play/ing with his airplane. +C and he was play/ing it for a long time[-:]. +C and then the girl play/ed with it. +C and then the giraffe said ah! +C then it went into the water and almost sank[-:]. +C and the giraffe was mad at the elephant[-:]. +C and then : the other elephant came and saw the airplane[-:]. +C and then he went ooh! +C and then : he try/ed to get it. +C and he could not[-:]. +C and then they were wait/ing. +C and they were hot[-:]. +C and then a girl came[-:] : and caught the airplane[-:]. +C and then : she brought it to (the uh) the giraffe. +C and he said thank/s. +C and then he play/ed with it again[-:]. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C once upon a time the bunny made a castle in his sandbox with the dog. +C and then they want/ed to make a bigger one. +C so they (go) add/ed more sand. +C and then : they put sand on top of the castle. +C and then it : broke. +C and the bunny said aw[-:]! +C and then they were go/ing to [~_gonna] make it again. += [Eg:B1] += [Bg:B2] +C once upon a time the bunny was get/ing some raspberry/s. +C and the dog was get/ing raspberry/s. +C they walk/ed : until they had a party. +C and (they could not) (he) the bunny could not eat all of his : stuff. +C he was too[-:] full. +C and then : his tummy got big[!]. +C then : he got big like a[EW:an] old man. +C and then : the dog holded|hold[EW:held] on to the : big man : (um) the doctor. +C and then he help/ed the bunny. +C and then : he said come home with me [~_laughs]. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C once upon a time : there was a guy with a balloon : with a little wagon. +C and (he uh) the bunny said hey where did you get that balloon from? +C and then he was (go/ing to) : start/ing on it. +E start/ing a [+..]. +C (fa) : and then : (the) the bunny was try/ing to untie it. +C and the dog was like hey do not! +C and then it flew away. +C and then the dog was really mad at the bunny. +C and the bunny was look/ing at the balloon. +C and then they saw a clown. +C they took a balloon. +C and then : (they) he had money. +C and then they were sad because they could not take a balloon. +C and then they saw a doctor. +C and they said he is not let/ing us have a balloon. +C : and then (sh) the doctor gave it to : the clown. +C and then they got to have a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/563.slt b/data/ENNI_SALT/train/563.slt new file mode 100644 index 0000000000000000000000000000000000000000..22ed8a56be3e90c08294425ac25eb4430594732c --- /dev/null +++ b/data/ENNI_SALT/train/563.slt @@ -0,0 +1,78 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 10/8/1995 ++DOE: 1/10/2001 ++CA: 5;3;2 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 563=CHI ++Tape Location: Disk L23 Track 27 += [Bg:A1] +C it look/3s like (um) the elephant want/3s a ball. +C they got a ball. +C but they got it in the mud. +C then the giraffe got in the mud. +C and now (the : um) they got the ball. +C and now the giraffe got out of the mud. += [Eg:A1] += [Bg:A2] +C (um) they see (um) a pool. +C they see a pool with a little : place where you jump off : into the pool. +C she is run/ing. +C then she skin/ed her knee. +C then : (um) somebody came : and put a bandaid on it : and sitted|sit[EW:sat] on the bench with her. +C and then she feeled|feel[EW:felt] a little[!] bit better. += [Eg:A2] += [Bg:A3] +C it looks like they have a little airplane. +C and the elephant is happy. +C (um) the giraffe : have|have[EW:has] it in his hand/s. +C then the elephant took it from him. +C she had it. +C but then she drop/ed it in the water. +C then (he) they can not reach it. +C so they are call/ing in their friend. +C their friend can not reach it either. +C so they are a little bit disappoint/ed. +C so (their fri) the lifeguard can not reach it. +C and (they jus) it is a little bit sink/ing. +C and the lifeguard can not reach it. +C all of them can not reach it. +C so then (the girl) the elephant got (um) : a net. +C then she : was try/ing to get it. +C then she got it out of the water. +C and then the (um) giraffe was happy. += [Eg:A3] += [Bg:B1] +C it look/3s like they are make/ing a castle in the sandbox. +C now : the bunny is get/ing a scoop of sand and the : shovel : and is pour/ing it so the castle will break. +C and the (um) bunny was a little bit angry. +C so then they start/ed to build it up. +C and : they : did not : do it up well. += [Eg:B1] += [Bg:B2] +C look/3s like they are walk/ing : to find a good spot for their picnic. +C now they are eat/ing their picnic. +C then the bunny is a little bit too full. +C and he feel/3s a little bit sick. +C he got the doctor. +C he is pull/ing his coat. +C now : the : (um) doctor is give/ing him some medicine. +C and now he feel/3s better. += [Eg:B2] += [Bg:B3] +C look/3s like they are pull/ing a wagon with a balloon. +C now the bunny is a little bit happy. +C now the dog is not that happy. +C the balloon came off. +C now the dog has : a bow on his tail. +C now (the person) there is a person with a hat that has some balloon/s. +C (and) : and the bunny is say/ing can we please have a balloon? +C and : say/3s no. +C and they are a little bit angry. +C and they got the doctor. +C (and the doctor) they said (um) doctor he will not let us have any balloon/s. +C so he gave us (oo) some of his money for a balloon. +C and they got a balloon for their wagon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/564.slt b/data/ENNI_SALT/train/564.slt new file mode 100644 index 0000000000000000000000000000000000000000..a5459c1bc9b6e8da7b11e7801e0b04f501a16edf --- /dev/null +++ b/data/ENNI_SALT/train/564.slt @@ -0,0 +1,101 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 3/18/1995 ++DOE: 2/22/2001 ++CA: 5;11;4 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 564=CHI ++Tape Location: Disk L25, Track 101 += [Bg:A1] +C once upon a time (there was a little : uh :) a little : elephant came along : and saw (a g) : (uh a girl with um) : a boy with lot/s of ball/s. +C and then : one went in! +C and[-:] : she accidentally : push/ed him in. +C so : (um) : he dived|dive[EW:dove] under the water and got the ball and give|give[EW:gave] it back to her. +C (and then he) (and then he : um) and then she like/ed him a lot. += [Eg:A1] += [Bg:A2] +C once upon a time there was : a little boy and a girl want/ing to go swim/ing. +C and then : (um um) she point/ed to the pool. +C and then : she dived|dive[EW:dove] in. +C and she hurt herself : bad. +C and then : she jump/ed up. +C and she was cry/ing. +C and then the life (gua) guard came along : and then put a bandaid on. +C (and then) : and then : he made her (: um) sit on a bench for awhile : until it did not stop : to sting. +C and then : the lifeguard : came along and : said : nobody sit/3s in the middle. += [Eg:A2] += [Bg:A3] +C once upon a time (um : um) : a boy came up from the pool with his toy airplane : that he can play in the pool. +C (and then) and then : (um) he : just pop/ed up and scare/ed the elephant girl. +C and then he : flewed|flew[EW:flew] around and stuck his tongue out. +C (and she) and she went : like that [~_sticks_out_tongue]. +C (and then : she) and then she got a little embarrass/ed[!]. +C and then she just grab/ed the airplane from him and took off with it. +C and then : she (um : um) accidentally put it in : (um) the water : by accident. +C and then : it accidentally sinked|sink[EW:sunk]. +C and then : the cow got very angry with her. +C and then the lifeguard came along. +C and : she said it look/3s like (she) I am in trouble! +C so he try/3s to go in and reach it. +C : [~_well] : then (: um) : he start/ed to cry because he like/ed that airplane. +C and then : the girl[!] lifeguard came along : and said here is something that : you can try to get it with. +C and then : she got it for him. +C and then she said there is your toy airplane back. +C but do not put it back in. +C and make sure that girl do/3s not : dive it back in again. +C so : (um) he was so happy to see his airplane again. += [Eg:A3] += [Bg:B1] +C once upon a time : there was a little[!] : bunny. +C he came along : and said : hey we have the same one. +C but : mine is bigger! +C can I play with you! +C so : and then they start/ed to play. +C and then : he : pour/ed that on to make (an) a different one that could look (bret) better. +C and then he wreck/ed the castle. +C and he feeled|feel[EW:felt] bad. +C and then : she was start/ing to cry. +C well he was embarrass/ed. += [Eg:B1] += [Bg:B2] +C once upon a time : (a little) a little girl dog (came : um um) came along while a bunny came along. +C they both had basket/s. +C but (they were um) : one was go/ing this way. +C and one was go/ing that way. +C and then : they start/ed to have a snack. +C but (he) he was suppose/ed to leave that for his grandma : out in the wood/s. +C and then : he drank it. +C and he was get/ing with (a) : a big fat tummy : from eat/ing all that junk. +C and then he : was not feel/ing very good. +C and then (sh) she call/ed for her dad. +C and then : the dad came and fix/ed him : and : point/ed that way. +C and then he felt better again. += [Eg:B2] += [Bg:B3] +C once upon a time : a little girl came : along with her wagon and tie/ed a balloon to : the wheel to it. +C and then a boy : bunny rabbit came along : and said hey can I have that balloon. +C and she said of course you can! +C and then he took it. +C and then he hurt himself : because he got a little tire/ed. +C and then : he got it. +C and (he did not know) they did not know it was go/ing to [~__gonna] float up in the air. +C but (the) at least the girl did. +C (um) but he did not know that very good[EW:well]. +C so he try/ed to get it back. +C but he could not reach. +C and then all that was left of it : was half a string. +C and then they went : to go and get another one from the balloon man. +C but that cost : five dollar/s. +C and he[!] said could we get another two[!] balloon/s please? +C : five buck/s kid! +C and he said but : sir I do not have five buck/s. +C could we just get them for free please? +C and then they went to go and ask the dad : of those kid/s. +C and he[?] said do you have five dollar/s : to get another balloon for us dad? +C so he did. +C and then : they both got a balloon. +C and then he paid. +C and then : he smile/ed at the kid/s : and said you are welcome. += [Eg:B3] diff --git a/data/ENNI_SALT/train/567.slt b/data/ENNI_SALT/train/567.slt new file mode 100644 index 0000000000000000000000000000000000000000..53a2dc60e408cc1a263480b370367a67be28f2a5 --- /dev/null +++ b/data/ENNI_SALT/train/567.slt @@ -0,0 +1,95 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 3/06/1996 ++DOE: 4/18/2001 ++CA: 5;1;12 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 567=CHI ++Tape Location: Disk M10, Track 5 += [Bg:A1] +C here[-:] is a (s) real[EW:really] [-:] bouncy ball[-:]. +C : and then it went[-:] in the (water[-:]) : swimming pool. +C and then (he is gr) : he is get/ing[-:] it. +C and he got it[-:]. +C (and they are) : and he : give|give[EW:gave] it to a girl. +C and the guy is too (s) messedy[EW:mess/ed] up. +C (still) : (he still) his shirt is wet. +C (and his sh) (and his t) and his shoe/s are wet. +C and his shirt and (his) his pant/s[-:] wet. +C and his hair is wet. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C then[-:] : he is ready go in the swimming pool[-:]. +E : ready to turn? +C and (her say) her[EW:she] *is step/ing[-:] : in[-:] : the swimming pool [EU]. +C and then (her w) her[EW:she] runned|run[EW:ran][-:]. +C and then her[EW:she] have|have[EW:has] a[EW:an] owie. +C and then (her) : her[EW:she] is cry/ing. +C and a boy[-:] : say[EW:say/3s] it hurt/3s. +C got a bandage. +C and then it is : not allow/ed[-:] to go in the swimming pool with the bandaid. +C (uh I got) : no more run/ing[-:]. += [Eg:A2] += [Bg:A3] +C and then (he) : he got (a real[-:][!]) : (um : maybe) : maybe (a real[-:]) : (a real) : a real airplane[-:]. +C (and he) and he say[EW:say/3s] : vroom[-:] vroom[-:]! +C (and he) : and[-:] then[-:] the girl grab|grab[EW:grab/3s] at the boy[-:]. +C then : it go/3s in the : water[-:]. +C and then : he be[EW:is] mad[-:][!]. +C and then his airplane stuck. +C and then here ask. +E and then what ? +C (he) he have|have[EW:has] to get it. +C and he can not. +C and then[-:][!] : the good (gir) : girl (wanna pass[-:] it) : want/3s to give it. +C (her) (him) he cry/ed. +C and they give it to (the) the boy[-:]. +C and then he : love/ed it : ever after. += [Eg:A3] += [Bg:B1] +C (and : then : he) and then : he built a (sss) (castle[-:]) sandcastle. +E can you use your loud voice? +=C sandcastle [+_bch]. +E yeah I heard that yeah tell me about this page. +C then[-:] : he put some sand in a sand bucket. +C (and he dump/ed it) : and (uh) he dump/ed it. +C and then (he) : (he[-:]) (he broked|broke[EW:broke]) : (he broked|broke[EW:broke] the girl/z) (girl/z) (he br) he broke (s) the rabbit/z castle he made. +C and then (he) (her br) he broke the (girl/z) girl/z sandcastle (he) her[EW:she] made[-:]. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C (and) and the rabbit walk/ed. +C (and he) and he : pack/ed[-:] lunch[-:]. +C (and) and he ate all[-:] : his sandwich. +C xxx. +C and then : (he) he ate all[-:] the food. +C and he get|get[EW:got] a stomachache. +C (and) (and then the) : (and the rabbit/z mom[-:]) : and the rabbit/z mommy. +C (and then) (the here[?]) the (girl/z) (girl) girl/z mommy[-:] use salt [EU]. +C and now he is a little rabbit. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C and (he is) a new rabbit walk/ed[-:]. +C and then (he) the girl got a new wagon and a balloon[-:]. +C and then he saw the balloon[-:]. +C (her s) he saw it. +C and then[-:] : her[EW:she] yell/ed. +C and then : the boy : (is p) (pull) is tie/ing it off. +C and then it tie/ed[-:] off. +C and then : her[EW:she] had none. +C maybe her[EW:she] be|be[EW:is] (ma) mad[-:]. +C they all *are mad [EU]. +E okay louder voice. +C and then (her s) : he saw the balloon man. +C and then : he want/3s to have a balloon. +C then : you see in his (pocket/s) : pocket/s. +C and then they are line up [EU]. +C and then [~_EXA:_loud_voice] (he saw) : he saw his mother[-:] and (his) her mother : and (a balloon[-:]) : a balloon. +C and then her[EW:she] give|give[EW:gave] (her) him a[EW:the] money. +C and then : they are have a balloon[-:] [EU]. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/568.slt b/data/ENNI_SALT/train/568.slt new file mode 100644 index 0000000000000000000000000000000000000000..dec83aa5167072d861e8a9b78e0989d1643da263 --- /dev/null +++ b/data/ENNI_SALT/train/568.slt @@ -0,0 +1,92 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 10/29/1995 ++DOE: 4/19/2001 ++CA: 5;5;21 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 568=CHI ++Tape Location: Disk M10, Track 23 += [Bg:A1] +C the elephant is : play/ing[-:] basketball. +C the : ball go|go[EW:go/3s] [?] in the water. +C and : (uh) : (catched|catch[EW:catch]) : catch the : ball in the water. +C and (the : uh) he give|give[EW:gave] it *to the elephant [EU]. +C and[-:] he get up : in the water [EU]. += [Eg:A1] += [Bg:A2] +C (um : jump/ed uh) : jump in the water. +E sorry what did you say? +=C jump in the water [+_bch]. +E oh okay can you use your loud voice? +=C yeah [+_bch]. +C fall[-:][?] off. +C run. +C and the : elephant : [EU]. +E anything more or shall I turn? +=C turn [+_bch]. +E okay. +C fall off. +C her[EW:she] cry|cry[EW:cry/3s]. +C put *on a bandaid [EU]. +C sit on the : bench. +C and the elephant : is mad. += [Eg:A2] += [Bg:A3] +C he got a toy. +E did you want to turn them yourself, okay [~_referring_to_pages]. +C (uh) : he is fly/ing with the : airplane. +C (and the w) and the elephant take|take[EW:took] away the airplane. +C and it go|go[EW:went] in the water[-:]. +C it is go/ing : in the side the water [EU]. +C it is inside the water. +C (what)[~!_whispering] : *the plane is go/ing down [EU]. +C (this) the elephant is try/ing to get it. +C (the) : he is cry/ing. +C catch with a net [EU]. +C it is : got it [EU]. +C and : the elephant give|give[EW:gave] it [EU]. +C him[EW:he] *was happy [EU]. += [Eg:A3] += [Bg:B1] +C they are make/ing a sandcastle[-:]. +E do you want to turn? +C and he put some more sand. +C and[-:] : more sand : the window [EU]. +C and it fall|fall[EW:fell] down. +C and try/ing make it again [EU]. +=C end [+_bch]. += [Eg:B1] += [Bg:B2] +C they are have/ing food. +C they are eat/ing : *a sandwich [EU]. +C they are : is full [EU]. +C (his belly is get/ing) : [~_EXA:_what_(i)s_that] his belly is get/ing : bigger. +E oh can you use your loud voice? +C (uh) he is the doctor. +C and (the) : it is not help/ing. +E hm? +=C help/ing [+_bch]. +C : help. +C : (she) he is eat/ing lot/s of food. +C and he go|go[EW:go/3S] with the doctor. += [Eg:B2] += [Bg:B3] +C they are[-:] : got a balloon [EU]. +C and they are : want to [~_wanna] fly it with the balloon [EU]. +C they let it go : in the sky. +C and one is try/ing get it [EU]. +C well : pop. +C and so get a other one [EU]. +C and : he was said no [EU]. +E what is that. +=C said no [+_bch]. +C and : get dollar [EU]. +C one more. +C and that is : it. +C and : go with the doctor. +C and (get) the doctor will[?] get other[EW:another] balloon[?]. +C more money [EU]. +C the (uh) : one : got two : balloon/s[-:]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/570.slt b/data/ENNI_SALT/train/570.slt new file mode 100644 index 0000000000000000000000000000000000000000..faa83587cc5974b95447f42abed2b28f160278ac --- /dev/null +++ b/data/ENNI_SALT/train/570.slt @@ -0,0 +1,96 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 7/12/1995 ++DOE: 5/03/2001 ++CA: 5;9;21 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 570=CHI ++Tape Location: Disk M9, Track 17 += [Bg:A1] +C (um) the elephant is play/ing with the ball[-:]. +C he lost his ball[-:] : on the water[-:]. +C the giraffe[-:] is get/ing the water[-:] [EU]. +C now the giraffe give|give[EW:gave] the ball to the : elephant. +C the giraffe is happy and the : elephant too. += [Eg:A1] += [Bg:A2] +C the giraffe and the : elephant[-:] [EU]. +C the elephant want/3s to swim. +C the elephant run|run[EW:ran]. +C the elephant slip|slip[EW:slipped]. +C and the elephant hurt : hisself[EW:himself]. +C and the elephant cry|cry[EW:cried]. +C (the) (the) (the other elephan) the other elephant give|give[EW:gave] (the) : the girl elephant : a bandaid. +C now[-:] the girl sit|sit[EW:sat] on the bench. +C : (and the other elephant is) : (and the elephant said) and the elephant point say/3s no run/ing [EU]. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C the giraffe got his airplane. +C (and h) : (and he) and he now : fly|fly[EW:flies] it. +C (now the) (now) now the elephant : take/3s : the giraffe/z : toy back. +C (the) (the) : the elephant (throwed|throw[EW:threw] the) throwed|throw[EW:threw] : the airplane on the water[-:] [EU]. +C the giraffe is mad[-:]. +C (and) (and the man) : and the man : is go/ing *to catch the airplane [EU]. +C (the man) : the elephant say/3s please[!] you catch the giraffe/z toy [EU]? +C and the elephant say|say[EW:says] yes. +C and he reach and reach and reach it [EU]. +C now he can not[-:] : reach it. +C (I know the) I know the other elephant : got : a great idea a net. +C (an) and he got the net[-:]. +C now he catch|cach[EW:catches] [-:] it. +C and now he give|give[EW:gives] *it to : (uh) the giraffe [EU]. +C (and) and (there is) (: now) : now the giraffe is happy : (because he) because he has his airplane. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C the bunny[-:] want|want[EW:wants] to make his castle : (while the) while the dog : is (um) : bark/ing : because he took his two sand/s to dig [EU]. +C (and) (and h) (and) and the bunny is like give me my[-:] : digger please. +C and now they are happy (because) : because : now the dog say/3s okay. +C and (now) : (now) now (he has a) he can : make a sandcastle. +C and he dump|dump[EW:dumps] it : in. +C and now the bunny dump|dump[EW:dumps] it in. +C and now the sandcastle/s[EW:sandcastle] is ruin/ed[-:]. +C (a) and the dog is help/ing him : because the dog is cry/ing. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C the dog and the : bunny[-:] : they are walk/ing for the picnic[-:] [EU]. +C (now) (now the[-:]) now : the : bunny *is eat/ing the sandwich and a carrot [EU]. +C (and now the bunny) and (the) : the bunny (is) : he got *a full tummy[-:] [EU]. +C (and the) (and) (and) and the bunny : hold|hold[EW:holds] his tummy. +C (and) (um an) (an) (and the dog : the dog/z bunny/z father) [~_I_mean] (the dog[-:]) (the) [~_no] (the doctor) : the dog runned|run[EW:ran] for the doctor and said doctor doctor (the rubby tummy is) the bunny/z tummy is full! +C (now) (and now : he) and (now the) now the dog (pull him) pull|pull[EW:pulls] him. +C (an) (an) (and he is) and the doctor said okay okay. +C (and now he) and now he is go/ing to save him. +C (and now) and now the doctor is go/ing *to take him to the hospital [EU]. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C the (dog[-:] got the : uh game) [~_no] (uh) : the dog got the balloon. +C and the rabbit say/3s hi I like your balloon! +C (an) (a) and he show|show[EW:shows] it. +C and he is like this. +C (and) (and he made a) oh I want to have it! +C and he said oh yes : you can have it. +C (and uh) and the dog is (like) like this ah do not take it off[-:]! +C (and) and it flied|fly[EW:flew] [-:] away[-:]. +C and the dog is mad[-:]. +C (and he) and the bunny want/3s the balloon. +C and the dog too. +C and the dog get|get[EW:got] angry back there. +C and the bunny run|run[EW:runs] and say/3s : sir[-:] can I have balloon? +C and the sir said yes you can. +C and he said five[-:][!] dollar/s. +C (the xx) : (and) and he is like xx say/ing[?] that. +C (oh and he) [~_his_teeth_are_right_there] (and) (and he said) (oh : uh) : and the bunny said oopsies I do not have money. +C (and the dog) (and the) (and the[-:]) : and the[-:] bunny runned|run[EW:ran] for the doctor. +C (an) and he[?] say/3s doctor doctor I want a balloon! +C and the doctor said okay. +C he said : here is the money[!][-:] [~_makes_sound_"ch_ch"]. +C and you can have the balloon : both of them. +C now they are happy. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/571.slt b/data/ENNI_SALT/train/571.slt new file mode 100644 index 0000000000000000000000000000000000000000..d24d6d8c4bc561deb1b9802e81cb96d4c6768aad --- /dev/null +++ b/data/ENNI_SALT/train/571.slt @@ -0,0 +1,116 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 1/24/1996 ++DOE: 5/25/2001 ++CA: 5;4;1 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 571=CHI ++Tape Location: Disk L28 Track 61 += [Bg:A1] +C once there was an elephant (and a donk) and a giraffe. +C they had a : bubble. +C and : then : she said can you watch over my bubble/s? +C but then the bubble hop/ed into the pool. +C and then the elephant was scare/ed of the balloon. +C she thought it might pop. +C and so then she said to the giraffe please can you go get my (bub) (bu) bubble? +C (then the : ver) then the giraffe went into the pool and start/ed swim/ing. +C he got really tire/ed. +C and he did not think he could (sw) swim (that) that more. +C but then he got : the (um) bubble : then hand/ed it to the elephant. +C and (he) she was really proud. +C then : she was really happy. +C and then (the) (the) the giraffe was really happy too. += [Eg:A1] += [Bg:A2] +C once : a giraffe and a[EW:an] elephant was[EW:were] at a pool. +C and she said come on. +C let us race (to the) (the) to the diving board. +C she slip/ed : and fell. +C she hurt her knee. +C and then the guard came. +C (sh) he got a bandaid for her. +C and then (she) (she p) (sh) he put her on the bench. +C and she could not swim in the pool any more. +C and then the : (um) lifeguard : said : should not you look at the sign before you start run/ing? += [Eg:A2] += [Bg:A3] +C once there was a giraffe and a[EW:an] elephant. +C and they : (w) was[EW:were] at the pool. +C and the giraffe had his favorite toy plane. +C the giraffe (f) (f) flied|fly[EW:flew] it. +C and the (um) elephant wish/ed that she could fly it too. +C and so she ask/ed if she could : (um) try and fly the plane too. +C but then (she) she took it : and threw it off. +C and she did not know it would fall in the pool. +C and it fell in the pool. +C and then : she (was) felt really bad. +C and then the giraffe was really really angry. +C and then the lifeguard came. +C (and then they said) but : then the elephant said : (I) I just want/ed to try fly/ing the plane. +C but : then : it accidentally went in the pool. +C and then my friend got angry at me. +C and the lifeguard said well do you know what would be a good idea? +C if you could maybe scoop it up with a net. +C then the lifeguard try/ed to reach for it. +C but : (she could not) he could not because it was too far away. +C then she felt really bad. +C then : the : lady had (a um) (a catch) a net. +C and so she try/ed to catch it. +C and it was really heavy. +C but she got it : and gave it to him. +C and then : (she was) the giraffe was really happy. += [Eg:A3] += [Bg:B1] +C there was a little : (um) : doggy who is make/ing a sandcastle. +C and then (th) (the) the bunny dig/3s in : the bucket. +C and then he start/ed pour/ing on the little : doggy/z sandcastle. +C and the doggy felt really sad. +C and then the bunny saw what he (s) has done to his friend/z sandcastle. +C he felt really bad. +C and then he try/ed to keep it (um) that he was sorry. +C but he did not really mean it. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C once a doggy and a bunny was[EW:were] go/ing on a picnic. +C bunny was really hungry. +C so he ate all the food. +C and he got a stomachache. +C then : puppy saw that he look/ed pretty sick. +C then he[?] call/ed the : doctor. +C and the puppy said doctor doctor come quick. +C (co) and the doctor came quick. +C and he saw that he had a really bad stomachache. +C and then he said you know what? +C you should have no more food for quite awhile. +C and then took him to the doctor. +C and the puppy felt good that (s um) he took care of the bunny. += [Eg:B2] += [Bg:B3] +C (once upon uh) once : (um) a little doggy and a bunny : had a balloon and a wagon. +C (the dog uh) the balloon was the dog/z balloon. +C and (um) rabbit (ll) like/ed to get in a lot of trouble. +C so : he decide/ed he want/ed the balloon too. +C and so (th) then : (they) he start/ed to reach out for it : and untie/ed the balloon. +C and it went away. +C and then the doggy was really really mad at him. +C then they saw another balloon : person. +C can I have one of your balloon/s please said the bunny. +C you have to have some money. +C but I do not have any money said the rabbit. +C that is the rule/s (of) (of the um) of the rabbit/z : balloon (um) money maker rule/s. +C then the doctor (said) : came (by) pass/ing by. +C and then they race/ed to the doctor. +C that : man that is sell/ing balloon/s will not give me a balloon. +C and I have no money. +C well that is the rule/s. +C you have[!] to have money. +C well : I will pay for the money[EW:balloons]. +C so (the : man got) (gave him two quar) the doctor gave two quarter/s. +C and (the) they each got a balloon. +C then they each[!] had a balloon. +C and they were very happy with them. += [Eg:B3] diff --git a/data/ENNI_SALT/train/573.slt b/data/ENNI_SALT/train/573.slt new file mode 100644 index 0000000000000000000000000000000000000000..90da17f144c416f889c5faeaf599f8f50dcabaa7 --- /dev/null +++ b/data/ENNI_SALT/train/573.slt @@ -0,0 +1,96 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 4/01/1997 ++DOE: 5/06/2002 ++CA: 5;1;5 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 573=CHI ++Tape Location: Disk M12, Track 27 += [Bg:A1] +=C I do not know [+_bch]! +=C I do not know that one [+_bch]. +E What happen/3s in this story ? +=C I do not know [+_bch]. +=C I do not know [+_bch]. +E I guess there is no story in this book at all then, eh. +E Empty page/s? +=C I do not know this [~_pages_are_being_turned] [+_bch]. +E I guess that the end of that one. += [Eg:A1] += [Bg:A2] +C He is : go/ing to the diving board. +C and (they star) she is walk/ing. +C (and she sl) (sh) (its) and it is slippery! +C and she fell and hurt her knee. +C (and he xxxx) (and : she) it was a bandaid/s [EU]. +C (sh) (the) (there is a bandaid) and there is : a (ta) bandaid on her foot. +C and (she is) she is sit/ing on the bench. += [Eg:A2] += [Bg:A3] +C (he) he gots[EW:has] a[EW:an] airplane. +C and he is go/ing to[:_gonna] throw it at the water. +C (and he) (and he is) and (he is) she is[!] go/ing to[:__gonna] throw. +C and it is at the water! +C and it is wet ! +C and he[!] was : in it. +C and his airplane : was : not. +C it was snow/ing! +C (and) and his boat was in the water. +C and he can not reach[!] it. +C and how they reach : with the net [EU]. +C the net will help. +C (he gots) (he gots his airplane) (and he) and he gots|got[EW:got] his airplane back. += [Eg:A3] += [Bg:B1] +C One time (wh) when they : > +E I can not see the picture/s : one day [+..]. +=C do not know [~_!] [+_bch]. +E okay let us try the next page. +E : What happen/3s in the story? +=C I do not know[!] [+_bch]. +E : do you want me to turn the page again? +=C yeah [+_bch]. +=C : I do not know [+_bch]. +=C : I do not [+_bch]. +E Look at the picture/s and tell me what you think is happen/ing in the story. +C sit/ing there in[?] to the castle [EU]. +C it come|come[EW:came] down. +C he is fix/ing the castle. +=C and then : no picture/s [+_bch]. += [Eg:B1] += [Bg:B2] +E [~_child_not_responsive,_continually_repeated_I_don't_know,_the_examiner_is_on_the_second_page_at_this_point]. +E it is your story, you get to decide what is in there. +C They are eat/ing. +C The other one has a tummyache. +C he got sick[?] (sh). +C he got tire/ed and sick. +C I do not know. +=C I do not know[!] [+_bch]. +=C I do not know [+_bch]. +=C I do not know [+_bch]. += [Eg:B2] += [Bg:B3] +=C I do not know [+_bch]. +E what happen/3s in the story? +=C I do not know [+_bch]. +C (he is pulli) (he is pu) she is pull/ing the wagon. +C there is a balloon on the wagon. +C and it is tie/ed up. +C and that balloon got up to the sky. +C he is look/ing up to the sky. +C and there is[EW:are] more[!] balloon/s. +C and there is a balloon/s[EW:balloon]. +C but there ibe[EW:are] two. +C and he just : pocket/s [EU]. +C and went : that number five [~_!] [EU]. +C the balloon/s that blow it up to the sky [EU]. +C (and the) (and the) he xx work/ed with that. +C (ah : uh). +E anything on this page? +=C (ah uh) I do not know [+_bch]. +C there was[EW:were] two balloon/s left [~_!]. +C (there is a) they got a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/574.slt b/data/ENNI_SALT/train/574.slt new file mode 100644 index 0000000000000000000000000000000000000000..13c94d784b8931f5ca8fa1ee7819b258bce1a7dc --- /dev/null +++ b/data/ENNI_SALT/train/574.slt @@ -0,0 +1,91 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 4/10/1997 ++DOE: 5/06/2002 ++CA: 5;0;26 ++Gender: F ++Context: Nar ++Group of CHI: SLI ++ID: 574=CHI ++Tape Location: Disk M12, Track 52 += [Bg:A1] +C (mmm like) : the moose is try/ing to get the ball/s in the swimming pool. +C and there is one : in the swimming pool. +C and he is happy to go in : to get them. +C and he is swim/ing : (and) to get it. +C and he fell. +C and he got it. +C (and) and (he is got in to) he (s) : did it already. +C and he did it. +C so the elephant is proud. +C : that is a good one. += [Eg:A1] += [Bg:A2] +C elephant want/3s to (g) : jump in the swimming pool. +C and the elephant want/3s to go : there. +C and then they run there. +C and then the elephant/z leg hurt/3s. +C (and) and the : other elephant came to : get a bandaid on. +C and then : (her) (hers) (the gu) (the) the other elephant/s put a bandaid on. +C and then it felt better. +C and then her/z stay/ed on. += [Eg:A2] += [Bg:A3] +C the elephant want/3s to make a plane. +C and then the horse (is l w) already have|have[EW:has] a plane. +C (and) and then the horse (um) flied|fly[EW:flew] it around. +C (and the) and the elephant got it. +C and the elephant (went) got it into the water. +C so the horse is so mad. +C so the : other (um) elephant came and (wh) see|see[EW:saw] what is happen/ing [EU]. +C (and then) and the elephant (the) (its the) look/ed at the other elephant. +C and then the : other elephant try/ed to reach it. +C and he can not. +C (so) (so he) so the other elephant got a plan. +C (and the) and (the other) the girl elephant (um) got a thing to get it out : and try/ed to get it. +C and then her[EW:she] can[!] do it. +C and then : her[EW:she] got[!] it. +C and then the horse was so happy. +=C that is the end [+_bch]. += [Eg:A3] += [Bg:B1] +C (um the) the bunny want/3s to make a castle. +C and then the bunny (w) help/ed. +C and then the bunny put sand on and make|make[EW:made] it worse. +C and then it went down. +C and then : the dog was try/ing (to make it bi) make it (um) just like it was. +C (but) but he can not. +=C that is the end [+_bch]. +E it is! +C yeah that is a sad one. += [Eg:B1] += [Bg:B2] +C the bunny (was go) want|want[EW:wants] to make a picnic. +C and then he was so hungry. +C and he had a stomachache. +C and then (he) he had a stomachache again. +C and then the doctor came : to see what happen/ed. +C and then (the) (uh the de) the dog was pull/ing her. +C and then the doctor (her) was (s) say/ing something. +C so : he was take/ing : (um) he[EW:him] to the other doctor/z. +=C at the end [+_bch]. +=C that was a good one. += [Eg:B2] += [Bg:B3] +C the (buh) puppy (was) had a balloon (on) on a wagon. +C and the (um) bunny want/ed to take it : in his hand. +C and then he was go/ing to take it off. +C and then it flown|fly[EW:flew] away. +C and then the dog : was so mad. +C (and then) and (the dog) the bunny saw a man who had some balloon/s. +C and then : the bunny said : can we have another balloon? +C Our balloon is way up. +C (and then the) and then the (uh) man is said there is only dollar/s [EU]. +C (and then the uh) and then the : man was : go/ing away. +C (and try) (he) and the bunny was go/ing to the other bunny. +C it was a (w) doctor. +C and then (c) (and then the doctor s) and then (the o) the bunny he said the other bunny who said it is only dollar/s [EU]. +C can you get it for us? +C (and then uh) (the) and then (and the c) the other bunny/s got money : (and then ha) (got) and then gave it to the man : and then got (a) the balloon/s. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/575.slt b/data/ENNI_SALT/train/575.slt new file mode 100644 index 0000000000000000000000000000000000000000..8129724cd473c32d3a6d20c38d81b9af4a4ee10f --- /dev/null +++ b/data/ENNI_SALT/train/575.slt @@ -0,0 +1,119 @@ +$ CHI, EXA ++PARTICIPANTS: CHI target_child, EXA examiner ++DOB: 8/27/1997 ++DOE: 11/21/2002 ++CA: 5;2;25 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 575=CHI ++Tape Location: Tape P3 += [Bg:A1] +C he got three ball/s. +C and it : and it went in the mud. +E he got : what, people/s? +C (the) : the ball went (in) in the mud. +C and then : he was still wet. +C and (then : the) : then he was to go to jump in there [EU]. +C and then he went to go get the ball. +C and he (got tick/ed[?]) [~_EXA:_he_got_#] got all dirty. +C and then he comed|come[EW:came] out. +C (the :) (and now) : (now the giraffe) : and now the giraffe got his : back out. += [Eg:A1] += [Bg:A2] +C (the) (the) the wait/ing to go in the water [EU]. +C (and then) and then he falled|fall[EW:fell]. +C he was run/ing. +C (h) he want|want[EW:wanted] to go in the water. +C (and h) and he was run/ing. +C and he falled|fall[EW:fell]. +C and he hurt he[EW:his] knee. +C (and) and the doctor comed|come[EW:came] (and and) and put a bandaid on here. +C and he *is better now [EU]. +C (he) he sit|sit[EW:sat] on the bench. +C (and) and the doctor said you can go back in the water. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C he got a plane. +C and then : it went in the water. +C (and he) : [~_no] he went to go get it. +C and then : he was play/ing with it. +C and then : he put (in) (in) in the (uh) friend[EW:friend/z] hand [EU]. +C and it falled|fall[EW:fell] in the water. +C and it give it back. +C (and then) : (and) and (he) she drop/ed it in the water. +C and he did. +C and he he did not got|get[EW:get] it back. +C (and then : how he) : (and the) (the girl) (the) he *is mad [EU]. +E the what? +C he *is mad now [EU]. +C (and the) (put the) (the) then the doctor comed|come[EW:came] (uh) up and said you can not put that in the water. +C and then the doctor was mad. +C and then : he was sad. +C (and) (and) and the doctor was (um) happy again. +C and then : (he) the doctor can not get it from the water. +C so : the xx went to go get it take/ing it got it out. +C (then he was) (the) he (was cry/ing) : was cry/ing. +C and then the other[!] doctor comed|come[EW:came] and : went to go get it : the hook. +C and he : did[!] got|get[EW:get] it. +C and (then he) : then he give|give[EW:gave] it back to the ray[?]. +C and then (he took) (that) he give|give[EW:gave] it back to the girl. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C he was play/ing in the sand and (uh) make/ing (a) (it) a castle. +C and (when) when he *was done make/ing a castle a bunny rabbit : *was make/ing it castle too [EU]. +C (and) and (he) (he) he dump/ed it : on the castle. +C and he dump/ed it. +C (and it was) and it knock/ed all the sand down from the castle. +C and (then) then he was mad. +C (and then he wa) and then (the) he was cry/ing. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C (when) when rabbit said hi. +C he was run/ing. +C (and then) and (then he) then (he went) (he) (he went at) (he eat a) he eat[EW:ate] (a) a bun. +C and then he did not like it. +E he did not? +=C like it [+_bch]. +C then he was sick. +C and (then) then the doctor was need to come [EU]. +C (then) and then he was fat. +E and he was? +C he got too much. +C and (then he) (then) then he sat at doctor and said you come help me [EU]. +C and then he help/ed. +C (and then) (and then) (and) : and then he was better. +C (xx) and the doctor help|help[EW:helped] him. +C (and then) : (and then) and then (the doctor take/ed him) : the doctor taked|take[EW:took] him. +=C and the end [+_bch]. += [Eg:B2] += [Bg:B3] +C and the rabbit comed|come[EW:came] down and said I *will pull the wagon [EU]. +C (and) (and) (and the) (then) then balloon was (c) (c) comed|come[EW:came] off. +C and (then) then it was was flewing[EW:flying] away. +C (and) (and the) and the rabbit was happy. +C and then he was take/ing it off. +C and then he flewed|fly[EW:flew] away. +C (and then) and then he was mad. +C when he saw (the) (a) the same balloon with the man he was go/ing to go get one. +C and then (he flew the) all of them flewed|fly[EW:flew] away. +E he what? +E all of them flew away? +C when he sawed|see[EW:saw] it he said I have one [EU]? +C and then he was happy. +C (and then) and then he give|give[EW:gave] one to him. +C and then he was flown[?] away. +C and then he was gone. +C and (then he) then he was : sad. +C and then he saw another person. +C (and he) (and) and the doctor said I have one [EU]? +C and the doctor said no. +C (and then) and then he got[EW:had] two more left. +C (and) (and) and he want|want[EW:wanted] one. +C so he gived|give[EW:gave] one (to) to the bunny one to the other. +C (and) (and) and he have|have[EW:had] the same one. +C and (uh) he was happy. += [Eg:B3] diff --git a/data/ENNI_SALT/train/576.slt b/data/ENNI_SALT/train/576.slt new file mode 100644 index 0000000000000000000000000000000000000000..139ffca7abea98799bb3062ab29118170eb8128e --- /dev/null +++ b/data/ENNI_SALT/train/576.slt @@ -0,0 +1,98 @@ +$ CHI, EXA ++PARTICIPANTS: CHI target_child, EXA examiner ++DOB: 4/16/1997 ++DOE: 11/27/2002 ++CA: 5;7;11 ++Gender: F ++Context: Nar ++Group of CHI: SLI ++ID: 576=CHI ++Tape Location: Disc M 14 Track 5 += [Bg:A1] +C (um) they are have/ing basketball player/s [EU]. +C and it fall|fall[EW:fell] : into the : water. +C and he swimmed|swim[EW:swam]. +C and he swimmed|swim[EW:swam]. +C and he swimmed|swim[EW:swam]. +C and he catch|catch[EW:caught] the ball! +C and he[!] is his best[!] friend. += [Eg:A1] += [Bg:A2] +C (um) they want to : go on the swimming pool [EU]. +C and he[!] want/3s to go on the swimming pool [EU]. +C and she : runned|run[EW:ran]! +C and she bonk/ed her knee. +C she bonk/ed her knee! +C and the teacher said you have a swim. +C you have to sit there. +C he : said : go. +=C that is the end [+_bch]! += [Eg:A2] += [Bg:A3] +C he has a[EW:an] airplane. +C and look! +C and it go/3s [~_makes_raspberry_sound]. +C and she got it too! +C and it falled|fall[EW:fell] into the water. +C and he said [~_makes_growling_sound]. +C and : the teacher is try/ing to get it. +C uhoh but she did it on purpose with my airplane. +C and the teacher is try/ing to get it. +C I do not know how. +C it is go/ing : (uh) down. +C (da) well go[!] there. +C and he said : mommy can you get the airplane? +C and she get|get[EW:got] it [~_repeats_4_times_without_sentence_final__intonation]. +C she got it! +=C oops sorry [+_bch]. +C (and : do/3s : the) : (he) the mom found his airplane. +=C that is the end [+_bch]. += [Eg:A3] += [Bg:B1] +C (um) there is[!] a castle. +C but he made the castle. +C (and he : put) and the bunny : pick/3s up some sand. +C and he throwed|throw[EW:threw] it into the sandbox. +C and it say/3s pour*2. +C and that mean/3s pour! +C that mean/3s pour. +E : anything more on this page? +C (um) they : broke the castle! +C he made another one. +C and he take|take[EW:took] all the sand off. +=C that is the end [+_bch]. += [Eg:B1] += [Bg:B2] +C they want to : go to a picnic. +C and he ate a lot of food. +C and he still : has a tummyache! +C and he is still growl/ing. +C and he : like to see the doctor [EU]. +C and he [~_high_pitched_voice] quick quick [EU]! +C he said come here. +C come here. +C he said he has a fever. +C (he) he is go/ing to take care[!] of him. +=C that is the end [+_bch]. += [Eg:B2] += [Bg:B3] +C (um he) he said : he has a balloon. +C (and it fa) and he has a balloon. +C and he : try/ed to get it off. +C and it flew up to the air! +C and he saw : two balloon/s. +C and here is[EW:are] some more[!] balloon/s. +C some more balloon/s. +C he get/3s : more balloon/s! +C he get/3s balloon/s. +C he get/3s the balloon/s. +C and he walk/ed. +C and he walk/ed. +C (and). +=C do you hear me on this [~_talking_about_mic] [+_bch]? +E yeah, we have it on. +=C (um : um) I do not know this one [+_bch]. +C and they say they need a balloon. +C and he has a balloon. +=C the end [+_bch]! += [Eg:B3] diff --git a/data/ENNI_SALT/train/601.slt b/data/ENNI_SALT/train/601.slt new file mode 100644 index 0000000000000000000000000000000000000000..001d382277eacbd5c21864b6eb08dcfa83ecc4de --- /dev/null +++ b/data/ENNI_SALT/train/601.slt @@ -0,0 +1,139 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 6/16/1993 ++DOE: 4/19/2000 ++CA: 6;10;3 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 601=CHI ++Tape Location: Disk L7 Track 2 += [Bg:A1] +C A giraffe and an elephant [EU]. +C and the elephant is bounce/ing ball/s. +C one of them go|go[EW:went] into the pool. +C he fell in and start/ed swimming. +C the elephant got the ball. +C and (he) the giraffe is soak/ed in the water. +C the elephant has the ball. +C she is hug/ing it. +C and the giraffe is smile/ing and all wet. += [Eg:A1] += [Bg:A2] +C they see the pool. +C (and she a) and there is a diving board. +C she run/3s to the dive/ing board. +C she slip/3s. +C and the giraffe is run/ing. +C and then she hurt/3s her knee. +C and the giraffe is run/ing to her. +C he is help/ing her. +C (um) she is cry/ing. +C (he) and the giraffe is help/ing her. +C and the lifeguard is come/ing : run/ing. +C and the lifeguard help/3s her. +C and the giraffe is just look/ing. +C the lifeguard just sat her on a chair. +C and the giraffe is look/ing at it. +C (she is) he is mad : at the elephant because she was run/ing. += [Eg:A2] += [Bg:A3] +C She see/3s (an um) an airplane in the giraffe/z hand. +C the giraffe (is f um) is about to throw. +C and ( she is) she is worried. +C (she gots|get[EW:gets] the plane) she gots|get[EW:gets] the plane. +C and she is happy. +C and the giraffe : is worry/ed. +C the elephant drop/ed the plane in the water. +C and it start/ed sink/ing. +C and they are both just look/ing at it. +C he is mad at her because (sh) she drop/ed (her plane i) his plane in the water. +C (he's) he is just look/ing. +C (and the) and the elephant is try/ing to sneak away. +C and : the : lifeguard is look/ing at it too. +C (she) she is yell/ing (and to the li) at the lifeguard and tell/ing him. +C and she is point/ing. +C and the giraffe is just : look/ing at : the girl. +C the lifeguard is try/ing to get the plane out of the water. +C and they are both look/ing at him. +C (the) the giraffe is cry/ing. +C and the girl is : worry/ed. +C and the (j) lifeguard is : just stand/ing there. +C (the) another (li) lifeguard came with a net. +C and now all of them are just : (l) look/ing at the net/s. +C the lifeguard : (go/3s and try/es w) (she is) (she is get/ing the net wi) she is use/ing the net, get/ing the plane. +C and all of them are happy. +C she gots[EW:has] the plane out of the water. +C and (he is) the giraffe is really happy. +C now : (sh) (they) (she) he will not let the girl play with it. += [Eg:A3] += [Bg:B1] +C (uh) a dog is play/ing in the sandbox and build/ing a castle. +C and a rabbit want/3s to help. +C (the) the dog is build/ing it. +C and the rabbit is grab/ing some sand. +C the : dog took off her hands. +C and the rabbit dump/ed : a lot of sand on the castle. +C the dog is just look/ing at it. +C and the bunny is worry/ed because it is all smush/ed. +C she is try/ing to build it back. +C and she is cry/ing. +C and the bunny is just : (look/ing now) : look/ing at it. += [Eg:B1] += [Bg:B2] +C a bunny is (ru) run/ing (and) on the sidewalk. +C (and the dog has) they are go/ing for a picnic. +C and the dog is wave/ing. +C (the) the dog is take/ing her lunch. +C and the : rabbit is just : eat/ing it all. +C (the rab) the dog is eat/ing his lunch. +C and the rabbit is done his (lu) whole lunch. +C and he is pat/ing his stomach. +C the dog : is eat/ing still : and just look/ing at the bunny because : he is dizzy. +C (the uh) the bunny is just lay/ing there. +C and the dog is come/ing to : (his) his mom. +C (the) (he is) the bunny is still laying down there. +C and the : dog is pull/ing his mom. +C the bunny is (um um) look/ing (at the) at the bunny. +C he is get/ing dizzy. +C (the) the bunny is much better. +C and the other bunny is bring/ing him home. +C and the dog is (just smi) just smile/ing. +=C that is the end [+_bch]. += [Eg:B2] += [Bg:B3] +C The doggy is pull/ing a wagon with a balloon in it. +C and the bunny is run/ing and (w s) wave/ing. +C he is go/ing to take the balloon. +C and she is look/ing at (him) the balloon. +C he take/3s off the balloon. +C and she is worry/ed. +C the balloon flie/3s up. +C (they are both) they are both try/ing to reach it. +C and they are both very worry/ed. +C the dog is very mad : at : him. +C and he is look/ing at the balloon go/ing up. +C then (he s) she is mad. +C and then the bunny is run/ing to : another bunny that has a ton of balloon/s. +C (she) (he asks) the bunny ask/3s [~_pronounced_'akses'] to buy one. +C the girl is look/ing at the bunny. +C (it said five) the balloon said five cent/s. +C and he did not have none[EW:any]. +C and he was look/ing in his pocket/s. +C and the girl was run/ing. +C (and the bunny was) the big (munny) bunny was mad. +C the dog was look/ing at the man. +C the man was : happy. +C and (the) : the bunny was sad. +C (the nurse) the : big bunny came. +C and (the bunn) the bunny was run/ing to : her. +C and the dog was just look/ing at the bunny run. +C the bunny was point/ing to all the balloon/s. +C and (the k) the dog was look/ing at (the mu) (the nu) the big bunny. +C the big : bunny (um) : was give/ing the other bunny : money for a balloon. +C and (they were both : yell/ing for) the dog and the bunny were yell/ing for a balloon. +C (the) the doggy was hug/ing his balloon. +C and the bunny was play/ing with his balloon. +C and the big rabbit was smile/ing. +=C that is the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/605.slt b/data/ENNI_SALT/train/605.slt new file mode 100644 index 0000000000000000000000000000000000000000..0fbd8aabea5d4872d269eb21c98f8fac882150a9 --- /dev/null +++ b/data/ENNI_SALT/train/605.slt @@ -0,0 +1,98 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 6/21/1993 ++DOE: 4/19/2000 ++CA: 6;9;29 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 605=CHI ++Tape Location: Disk L7 Track 16 += [Bg:A1] +C There is a giraffe that is play/ing with the elephant. +C and then (one) (one balloon was um) something fell in the water. +C the giraffe was try/ing to catch it. +C and (he's) he was almost there. +C and then (he k) the elephant already gots[EW:has] one. +C and then the elephant was happy that he got it. += [Eg:A1] += [Bg:A2] +C (Um) there : the giraffe and the elephant is[EW:are] together. +C and : the elephant is run/ing to go to the big thing that you : jump on? +C (and then the) : and then the elephant is run/ing : and the giraffe too. +C and then the elephant slip/ed : and then : (break um) had an owie on her knee. +C and then the lifeguard came. +C and then : the giraffe told everything what happen/ed. +C and then : the elephant is (mak) cheer/ing the other elephant up. +C and then : he put a (bla) bandaid on it. +C and then : the (: um) lifeguard show/ed no running, the sign. += [Eg:A2] += [Bg:A3] +C The elephant is talk/ing to the giraffe about something. +C (the : gira) the giraffe is (um) play/ing with his plane in the (um ss um) waterpark. +C and then he gave it to the elephant to see. +C and then : the elephant accidentally (put) sinked|sink[EW:sunk] it in the water [EU]. +C and then it was sink/ing. +C and then the : giraffe was get/ing mad at the elephant. +C (and) and the lifeguard came. +C and then : he is say/ing what is happen/ing. +C and then (the little) the giraffe told *him everything [EU]. +C and then (the) : the elephant is try/ing to say (um that) what happen/ed after the giraffe. +C and the lifeguard is try/ing to get the airplane. +C and then : the little : giraffe is cry/ing because it is sink/ing. +C and then there was this lady who gots[EW:has] a net. +C and then : she is go/ing to catch the plane. +C and then she is try/ing to catch it. +C and then she caught it. +C and then : they were both happy. += [Eg:A3] += [Bg:B1] +C There is (um) a kangaroo : that is play/ing and build/ing a castle in the sand. +C and (there's) there is a bunny rabbit who : is ask/ing if she can play too. +C the bunny rabbit is try/ing to make a castle (like) just like the kangaroo/z. +C the rabbit is start/ing to pour it on the castle. +C and then the : bunny : rabbit is cry/ing. +C and then : now (it is gone) the castle is gone : because of the rabbit. +C and then the little : (um) puppy is cry/ing. += [Eg:B1] += [Bg:B2] +C There is a little puppy. +C and there is a rabbit carry/ing some food. +C (and there) and then the little : bunny (is) had a lot of food than the puppy [EU]. +C and then the bunny rabbit is dizzy because he ate all those[EW:that] stuff. +C and then the little puppy : is drink/ing juice. +C and then the little bunny rabbit is dizzy. +C and then (there is) the (pu) little puppy is call/ing for the doctor. +C and then : (the doctor is) the puppy is pull/ing the doctor to see : to help. +C the bunny rabbit : (i) is dizzy. +C and then the doctor is clear/ing him [EU]. +C and then : the doctor is take/ing him to (is) his office. += [Eg:B2] += [Bg:B3] +C There is this little puppy who is carry/ing : a wagon. +C and then it has a balloon on it. +C and the bunny rabbit : is say/ing hello. +C and then the puppy (is try/ing) : is say/ing that he has a balloon on his wagon. +C and then : the bunny rabbit is look/ing at it. +C and then : the bunny rabbit is take/ing off the balloon on the wagon. +C (and) and then : the puppy (is) is almost go/ing to cry : if it is go/ing to blow up in the sky. +C and then the bunny rabbit is try/ing to catch it. +C (and the puppy) and then he could not reach it. +C and then it was all the way up to the sky. +C and then the little puppy was gett/ing mad. +C and there was this bunny rabbit clown : who : was carry/ing lots of balloon/s. +C and then : (the bun) the little bunny rabbit was go/ing to him. +C and then : the little puppy is still mad. +C and then (he's) the little rabbit is ask/ing for a balloon. +C and then it : says five cent/s. +C but the little bunny rabbit does not have any (um : mm) five cent/s [EU]. +C and then : the little puppy and the little rabbit : is[EW:are] try/ing : to tell him that (he) they want a balloon. +C and there was (this doctor who was try/ing) (thi) this doctor. +C and then the little rabbit is try/ing to : go to the doctor. +C and then the doctor was stand/ing. +C and then the doctor said what (s) is it? +C and then the little rabbit point/ed to what is the problem [EU]. +C and then (the little balloon) (the rabb) the doctor is pay/ing the : man. +C and then they each got one. +C and then they were happy. += [Eg:B3] diff --git a/data/ENNI_SALT/train/606.slt b/data/ENNI_SALT/train/606.slt new file mode 100644 index 0000000000000000000000000000000000000000..cf1f1480460c25ea080328df1b011727f83324d3 --- /dev/null +++ b/data/ENNI_SALT/train/606.slt @@ -0,0 +1,87 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 3/29/1993 ++DOE: 3/9/2000 ++CA: 6;11;9 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 606=CHI ++Tape Location: Disk M3 Track 73 += [Bg:A1] +C the elephant was bounce/ing a ball. +C : the ball fell in the water. +=C : I do not know what that thing is [~_child_is_whispering] [+_bch]. +C : some kind of thing was come/ing after it. +C he gived[EW:gave] it back to the elephant. +C the elephant was (hug/ing) hug/ing it. += [Eg:A1] += [Bg:A2] +C the girl want/ed to (um) jump on this thing : that go/3s in the water. +C she was run/ing. +C : and she slip/ed. +C she had a[EW:an] owie on her knee. +C (uh) : that guy (um : come/3s in the) : came and (see her) saw her. +C : she was cry/ing. +C and that guy was go/ing to[:_gonna] put a bandaid on it. +C she was sit/ing on the bench. +C : the guy said (the) : just look at the sign. += [Eg:A2] += [Bg:A3] +C : the[-:] : guy had a[EW:an] airplane. +C : he was fly/ing it. +C : the girl took it. +C : she was drive/ing it. +C then (the) : the airplane fell. +C the man got mad : at the elephant. +C the coach saw (um) : the elephant *was sad [EU]. +C (um) : the girl was : (do/ing something) talk/ing to the coach. +C the coach was try/ing to get it. += %COM: brief interruption as something is dropped and picked up. +C the : guy was cry/ing. +C some kind of woman came and (uh) help/ed them. +C she caught : it. +C she gived|give[EW:gave] it back to him. +C and then the boy was hug/ing it. += [Eg:A3] += [Bg:B1] +C there was a girl that (uh) was build/ing a castle. +C and the (um) boy want/ed to help. +C : (um) he was (uh) do/ing : the shovel/ing. +C and the (um) girl was (uhm build/ing it) : do/ing the rest. +C : (uh) : the boy spill/ed the sand on[!] the castle. +C the (ss) castle (sss) sunk. +C the girl was : cry/ing. +C and the boy was : sad. += [Eg:B1] += [Bg:B2] +C (there[-:] was a guy) there was another guy come/ing by with a basket. +C and the other guy had a basket too. +C they had a picnic. +C the guy ate fast. +C and then his tummy was (like) hurt/ing. +C (he was um) his tummy (was hurt/ing) get[EW:got] hurt [~_get_hurt_was__whispered_very_quietly]. +C (uh) (there was) (uh) the guy was (um) find/ing (a) a doctor. +C and there was a doctor come/ing. +C he got her and : bringed|bring[EW:brought] her over to him. +C and[-:] the girl was sit/ing on the blanket and fix/ing him. +E and what? +=C do/ing something to him [+_bch]. +C : and then : she (uh) : brought him to the doctor. += [Eg:B2] += [Bg:B3] +C there was a girl with a balloon on her (uh) : thingy. +C the boy took it off. +C the balloon : he : untie/ed it. +C it flew up. +C the girl was mad. +C : the boy found a : guy with a balloon. +C he pick/ed a balloon. +C : five buck/s it said. +C : he had no (buck/s) five buck/s [EU]. +C : (there was a doctor) there was a nurse. +C and : the guy will not give (it to hh) (um) the balloon to him. +C : he said the guy did not give it to him. +C he gived|give[EW:gave] some money : (for him) to him. +C they both got one. += [Eg:B3] diff --git a/data/ENNI_SALT/train/608.slt b/data/ENNI_SALT/train/608.slt new file mode 100644 index 0000000000000000000000000000000000000000..6b04c3766b4f0ba920048f97c9c4adf3d0ecf121 --- /dev/null +++ b/data/ENNI_SALT/train/608.slt @@ -0,0 +1,121 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 1/21/1994 ++DOE: 3/9/2000 ++CA: 6;1;17 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 608=CHI ++Tape Location: Disk M3 Track 83 += [Bg:A1] +C once upon a time there was a giraffe and a[EW:an] elephant were play/ing ball together [EU]. +C : then the ball went in the water. +C and then nobody could catch it. +C so[-:] : Jerome just keep go/ing (ca) catch/ing it [EU]. +C but he did not caught|catch[EW:catch] it. +C (then) then Jerome just gave it to : Adam. +C so Adam took the ball. +C : (then) : then Jerome was in love. +E which one is Jerome and which one is Adam? +=C the elephant is Adam (and the Jerome is) and the Jerome is the giraffe [+_bch]. += [Eg:A1] += [Bg:A2] +C once upon a time there was : Adam and Jerome. +C they were try/ing to get in the water. +C (but they have) (and then) and then Adam has to tell his dad. +C then : he did not tell his dad. +C but (he) he forgot to (tell hi) tell his dad. +C so he just went in the water. +C and he ran. +C and he ran. +C and he (slip/ed) slip/ed. +C and then : (he just) (just) he (hurt her knee/s) hurt her[EW:his] knee/s. +C then : her dad came and see|see[EW:saw] what happen/ed to her. +C (then) : then : Adam just start/ed cry/ing. +C then dad just (put his) put a bandaid [pronounced_"danbaid"] on her. +E put a what on her? +=C a danbaid [+_bch]. +C then : it did not hurt any more. +C then : dad just put it in the room. += [Eg:A2] += [Bg:A3] +C once upon a time there was Adam and Jerome again. +C they were (go/ing) try/ing to play plane [EU]. +C and then : the plane (just : wen) just went way (up to) up in the sky. +C (then) then Adam just took it and then play/ed and play/ed : and then jump/ed it in the water [EU]. +C then nobody can catch it. +C (then) then Jerome was so mad. +C (and then) (and then) and then Adam/z dad came and *was try/ing to reach it [EU]. +C but he did not reach it. +C then Adam just explain/ed [~_pronounced_esplained] to his dad. +E spank/ed his dad ? +=C esplain/ed [+_bch]. +E oh explain/ed, sorry. +=C splain/ed to his dad [+_bch]. +C and then[-:] : dad could not reach it. +C so : (then) : then Jerome was cry/ing. +C (and) and then : Adam/z dad did not know what to do. +C so : Adam (told hi dad) told his dad to get mom. +C mom just got a good idea. +C then mom just used a[?] rope to catch the plane. +C and there it was. +=C the end [+_bch]. +E oh one more. +C so then Jerome was so happy. +C he just got it back. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C once upon a time (there was a : rabbit and) : [~_what_kind_of__animal_is_that] [~_okay_I_can_call_it_any_kind_of_animal] a cat and a rabbit were build/ing (a castle) a sandcastle. +C and then they put some water inside it. +C (and then) : and then it was so beautiful. +C (and then the rabbit) and then : (the c : uh) the cat was so scare/ed of the rabbit[~!_under_breath] break/ing the : thing[?]. +C now : the castle is all broken. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C once upon a time (there was a : okay) a dog and a rabbit were go/ing picnic [EU]. +C : and then the rabbit was so hungry he ate a full sandwich. +C and (he ate a cra) and he ate (a) a carrot too : and a cake. +C and then the dog was so hungry too (he) he just drank : juice. +C and he ate some candy. +C then the rabbit was so full. +C (and even the ra) and even the dog was not so full either. +C he was so hungry. +C then : doctor rabbit came to see : rabbit. +C (and then) : and then dog just pull/ed doctor rabbit and see|see[EW:saw] what is[EW:was] go/ing on (with :) with the rabbit [EU]. +C (then doctor rabbit) then (ro) doctor rabbit check/ed his head. +C then[!] doctor rabbit just tooked|take[EW:took] him (ho) to the doctor : and see|see[EW:saw] what is go/ing on with him [EU]. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C once upon a time there was : a[-:] : dog with a balloon. +C and then the rabbit said can I have the balloon? +C and then the dog said yes you can have it. +C then the rabbit tooked|take[EW:took] : the balloon. +C and then the rabbit said thank you. +C and then the dog said you are welcome. +C then : the rabbit tooked|take[EW:took] it. +C and then he took it home to see what is go/ing on with it [EU]. +C so he show/ed it to his mom and then his dad and sister and his brother. +C then he show/ed it. +C (and he was com) and then he came back. +C then he lost his balloon up in the air. +C : (then the dog was) (and then the dog was so mad he went in the the) the rabbit she was stare/ing (at the) at the balloon. +C (and one man wa du) and then : a balloon man was a bunny. +C and : the dog and the rabbit just saw so many balloon/s. +C (he) and then (the dog and the) the dog and the rabbit just took them. +C then the rabbit said can I have one? +C can I have one? +C so : the rabbit gave the man some money. +C and then the man just give|give[EW:gave] him (some) some balloon[EW:balloons]. +C (then : the man) then he gave[!] them the balloon/s. +C : then : doctor rabbit came walk/ing by[-:] . +C (then : the rabbit just show/ed doctor rabbit) there was a man did not (give us) give us : balloon/s said rabbit [EU]. +C then the man just gave[-:][!] the (w) doctor rabbit some balloon/s. +C and then doctor rabbit just gave him (some) (some ba) some money. +C and then doctor rabbit gave balloon/s to the kids. +C then : dog and rabbit got some balloon/s (the) except for doctor rabbit. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/609.slt b/data/ENNI_SALT/train/609.slt new file mode 100644 index 0000000000000000000000000000000000000000..51a564fd60247d1afbe5f7627244cce950564cd8 --- /dev/null +++ b/data/ENNI_SALT/train/609.slt @@ -0,0 +1,156 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 8/31/1993 ++DOE: 4/26/2000 ++CA: 6;7;26 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 609=CHI ++Tape Location: Disk L11 Track 2 += [Bg:A1] +C (Um : um : okay) the elephant and the giraffe they want to play ball. +C and (he) maybe he say/3s yes : or no. +C oh no [EX]! +C and it fall[*ip] down in the pool. +C and the giraffe was go/ing to (get it and swim it) get it and swim : and give it to elephant. +C and he said[ip] [~_high_pitched_voice] thank you[!]. +C and he said[ip] [~_high_pitched_voice] I love[!] you. += [Eg:A1] += [Bg:A2] +=C That again [+_bch] [EX]. +C (okay) *the elephant and the giraffe are all done to [EU]. +C they see the porch and (not to do in the) (no) (no running in the swim/ing)[EARG] no running [EU]. +C and[-:] he want/*3s to go on the (be) bouncy thing and go down *in the water [EU]. +C and maybe the giraffe say[*i3] yes. +C (and the) and elephant slip/ed. +C (and) and the giraffe is[aux] go/ing to get her not to fall down [EU]. +C the elephant cis[cop] hurt. +C and the elephant he is[aux] cry/ing. +C (and the giraffe) and the giraffe is[aux] help/ing (her) her. +C daddy is[aux] come/ing to her. +C (he is hurt) he cis[cop] a little hurt. +C (and) and he come[*ip] to him. +C it hurt/3s. +C and it hold/*3s still. +C it will[modal] not hurt. +C and (it) who cis[cop] (this) this giraffe Mikey. +C and he came[ip]. +C and he look/ed at it. +C and it was[aux] bleed/ing. +C : and (the giraffe) (elephant) (giraffe) (elephant) (the giraffe is his) Mikey he cwas[cop] the Mikey giraffe [EU]. +C he was[aux] (helping) help/ing get the elephant home. +C and that said[ip] no run/ing in the sliping [EU]. +C do not slip up. +C do not run no. += [Eg:A2] += [Bg:A3] +C (And : the elephant was try/ing to di) (he wen) : and Mikey said[ip] : you want to [~_wanna] play airplane ? += %COM: CON not coded because it links to previous story +C and the elephant said[ip] yes. +C : and it fly/3s up(*3) the air [EU]. +C : and Mikey said[ip] no(*3) (you are gonna grab) you grab it! +C I am[aux] tell/ing my dad on you! +C [~_childish_voice] whoops : now you put it (on the) on the water. +C [~_childish_voice] I am[aux] go/ing to[:_gonna] get it. +C you get it. +C and he got[ip] mad. +C he cis[cop] not happy. +C and he said[ip] I cam[cop] not be[ninfl] your best friend ever : (and) LaLa [EU]. +C and the guy said[ip] : [~_deep_voice] (wh) why *did[aux] [EV] you drop that (el) : LaLa [EU]? +C [~_childish_voice] (um) I was[aux] grab/ing it and : make/*ing him mad. +C [~_childish_voice] he will[modal] not be my best friend : Mikey. +C [~_childish_voice] and I drop|drop/*ed it on the water. +C [~_deep_voice] and that cis[cop] not very nice. +C [~_childish_voice] and because I just drop/*ed it will go down under water [EU]. +C [~_childish_voice] and : what happen/ed. +C [~_childish_voice] I did[aux] not do it. +C [~_childish_voice] Mikey cis[cop] not my best friend no[EW:any] more : okay? +C [~_deep_voice] I can[modal] not reach it. +C and Mikey is[aux] cry/ing. +C and (ul) LaLa put it on the water. +C and now we can[modal] not reach it. +C and : elephant mother came/ed[*ip] : to get (the elephant) : (uh) Mikey/z plane. +C and her[EW:she] (gr) came[ip] [EARG] grab it and give[*ip] it to Mikey [EU]. +C and [~_adult_voice] give[*ip] to Mikey [EU]. +C [~_childish_voice] it cis[cop] already : on your hand. +C and Mikey said[ip] : do[aux] not grab my toy. +C ask first. +C and : the elephant said[ip] [~_childish_voice] : *can[modal] I play *with your plane please [EU]? +C No [~_!] and (you dr) you drop/*ed my plane. +C oh : okay : you can[modal] play awhile. +C and you give it back. += [Eg:A3] += [Bg:B1] +C a kangaroo and a bunny rabbit : they want to play sandcastle/s. +C and the bunny rabbit is[aux] build/ing his own castle. +C and maybe (the :) (the) (mi um) his name cis[cop] : (s) Dina. +C that cis[cop] a boy name. +C and her name cis[cop] (Di) Darling. +E okay [EX]. +C and : Darling maybe he is[aux] go/ing to[:_gonna] knock [+//]> +=C but : what do[aux] you call the bunny/z name [+_bch]? +E I think you call/ed it Darling. +=C No I call/ed that[!] Darling [+_bch]. +E Darwin [EX]. +=C yeah [+_bch] [EX]. +E Darwin [EX]. +C Darwin : (maybe Da) maybe her[EW:she] is[aux] go/ing to[:_gonna] knock (bunny) (Darwin) bunny/z castle down. +C and (Darling : who is get/ing) and bunny rabbit *is[aux] just put/ing the sand on Darling/z castle [EU]. +C : (and) : and I said[ip] sorry[!]. +C and Darling was[aux] cry/ing. +C (and her sai) and maybe I said[ip] sorry. +C (i) maybe we *can build another one [EU]. += [Eg:B1] += [Bg:B2] +C (Um) Darling cis[cop] : *a six year old kid [EU]. +C and the bunny rabbit cis[cop] : eight. +C (um no) bunny rabbit cis[cop] nine. +=C I forgot[ip] : I made[ip] an accident [+_bch]. +E that cis[cop] okay. +=C you can[modal] turn the page [+_bch]. +C and Darling :*is[aux] put/ing the picnic in her own space [EU]. +C and bunnyrabbit silly want/*3s to eat a lot [EU]. +C and (he) bunny rabbit has[aux] got a (big) big tummyache. +C and the bunny rabbit is[aux] go/ing to be throw/ing up. +C and Darling is[aux] call/ing the doctor. +C bunny rabbit cis[cop] in danger. +C he do[*i3] not feel good. +C and the bunnyrabbit is[aux] so feel/ing not good [EU]. +C and he is[aux] feel/ing sick. +C and the bunnyrabbit is[aux] feel/ing not sick (he) because he has[aux] got sick about : now cis[cop] his birthday now [EU]. += [Eg:B2] += [Bg:B3] +C and bunny rabbit : he say[*i3] hi. +C ( I am not) I cam[cop] [~_counts_from_one_to_nine]. +C (nine) I cam[cop] nine : ( I am) because I had[ip] my birthday. +C (and) and Darling, her[EW:she] cis[cop] : eight now. +C (wow) nice big balloon. +C (almost is) the balloon is (gonna) almost[!] go/ing to[:__gonna] pop! +C and tick(*10). +C no(*3) Darling said. +C do not take that out. +C that will fly away again. +C no[-:]! +C [~_makes_'grrr'sound] (and her got) and Darling has got mad. +C : get your own balloon. +C I am get/ing my balloon. +C and I am get/ing my balloon. +C I have two balloon[EW:balloons]. +C okay. +C your wish. +C go. +C : you five cent/s [EU]. +C : well you can have one. +C you do not have one. +C you do not get money. +C you do not get one. +C : and the bunny rabbit said doctor you have money? +C five cent/s [EU]. +C I am go/ing to[:_gonna] get (a balloon) two balloon/s. +C and he give|give[EW:gave] him one. +C now (hi) all balloon/s are gone. +C it fly/3s away. +C (ye) and they have : two of them. +C they have one. += [Eg:B3] diff --git a/data/ENNI_SALT/train/610.slt b/data/ENNI_SALT/train/610.slt new file mode 100644 index 0000000000000000000000000000000000000000..8926fbc14841cd2c033cfa8c97dbe8137dcf6f6e --- /dev/null +++ b/data/ENNI_SALT/train/610.slt @@ -0,0 +1,87 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 1/14/1994 ++DOE: 3/9/2000 ++CA: 6;1;24 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 610=CHI ++Tape Location: Disk M3 Track 101 += [Bg:A1] +C there was : an elephant : who had a ball. +C : and then it fell in the water. +=C so : change change [~_asking_examiner_to_turn_the_page] [+_bch]. +=C so : (what is that animal : is call/ed) what kind of animal is that [+_bch]? +E oh it is your story you can make it up. +C [~_well] : a horse (wen) grab/ed the ball : and gave it back to the elephant. +C and she was so proud : she got her ball back. += [Eg:A1] += [Bg:A2] +C there was an elephant : who want/ed to jump off : a jumping board. +C so she ran over there. +=C change the page [+_bch]. +C and she ran and she ran until she fell and (got her) got a booboo. +C so another elephant came and ran to her (and gave[-:]) and gave her a bandage. +C and she wipe/ed her tears. +C : (and she felt a little be) [~_well] : it kind of stinged|sting[EW:stung] her a little bit. +E what? +=C stinged|sting[EW:stung] her [+_bch]. +C and she felt better. += [Eg:A2] += [Bg:A3] +C there was a horse : who had a plane. +C : he flew it around. +C : but then the elephant grab/ed it. +C : but then the elephant drop/ed it in the water. +C and then : the horse got mad at the elephant. +C so the other elephant came and see|see[EW:saw] what the problem was. +C and so (sh) the other elephant said : I accidentally drop/ed it in the water. +C so (he) the elephant try/ed to reach it. +C but[!] he could not reach it. +C so the horse cry/ed. +C : but then there is another[!] elephant (who gra) who : had a stick to grab it. +E a stick to grab it, uhhm. +C and then she put her stick in there. +C and she grab/ed it. +C then (h) he (ho) grab/ed his plane. +C : and : (h) he holded|hold[EW:held] it tight to his : (t) : tummy. += [Eg:A3] += [Bg:B1] +C there was[-:] a dog who[-:] was[-:] go/ing to[:_gonna] make a sandcastle. +C made a sandcastle [EU]. +C so they put more sand to make it bigger. +C but when he put more sand on it : it broke! +C : and he accidentally broke it. +C and the dog was (cr) cry/ing sad [EU]. += [Eg:B1] += [Bg:B2] +C there[-:] was a rabbit and a dog. +C : so (they ate) they had a picnic and ate their food. +C : later the rabbit got really full : from : eat/ing. +C (ss) well he kind of[:_kinda] fell asleep. +C : and then the dog : ran for help. +C and so she came over. +C : and (she said) : (sh) : (he) so she open/ed his mouth. +C : and then : (h) : she took him home. +C and then he felt more better [EU]. += [Eg:B2] += [Bg:B3] +C there was a dog and : a rabbit. +C : the dog had a balloon. +C but the rabbit want/ed to hold it. +E the rabbit what? +=C want/ed to hold it [+_bch]. +C (the) the rabbit : untie/ed it from[-:] : a little cart. +C but then when he letted|let[EW:let] it go. +C it flew up in the air. +C and the dog got mad. +C but there was[EW:were] other balloon/s[-:]. +C so[-:] the[-:] rabbit ask/ed the man if he could have a balloon. +C but he need/ed five[-:] dollar/s : to pay for the balloon. +C but : (he had) he had no money. +C so : there was a lady (who stand over) who was stand/ing on a corner. +C so the rabbit ran to her : and said I can not (buy a) buy a balloon. +C so the lady came over : and said to the man : I will (bu) buy two balloon/s (and) for five[-:] buck/s. +C then they each got a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/612.slt b/data/ENNI_SALT/train/612.slt new file mode 100644 index 0000000000000000000000000000000000000000..82956daa7ff0c28b7c702a3189bfffa90a52d6fd --- /dev/null +++ b/data/ENNI_SALT/train/612.slt @@ -0,0 +1,93 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 8/25/1993 ++DOE: 4/18/2000 ++CA: 6;7;24 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 612=CHI ++Tape Location: Disk M4 Track 27 += [Bg:A1] +C once upon a time there was a giraffe and a[EW:an] elephant. +C and they were play/ing basketball. +C : but then the basketball went into the water. +C and the elephant had a swimming suit on. +C so I think she went to go get it. +C : instead the giraffe went to go get it. +C : and then the giraffe gave the ball back to the elephant. +C : but then the giraffe was : wet. += [Eg:A1] += [Bg:A2] +C once upon a time there was : a : giraffe and a[EW:an] elephant who want/ed to go swim. +C : then the elephant runned|run[EW:ran]. +C : then the elephant slip/ed. +C and : then the giraffe run/3s to help her. +C and then : she fall/3s down. +C and she scrape/3s her knee. +C : then the lifeguard run/3s to her. +C : then the lifeguard had some bandage/s. +C and : the lifeguard putted|put[EW:put] a bandage on her knee. +C (then : her) then she could not walk very well because her knee was really hurt. +C then the lifeguard told her : to : not run and stay there. += [Eg:A2] += [Bg:A3] +C once upon a time there was : a[EW:an] elephant and a giraffe. +C and the giraffe had a[EW:an] airplane. +C the giraffe was play/ing with the airplane. +C and he made the : airplane make a sound. +C then the elephant grab/ed it from him. +C and the giraffe said hey[!]. +C then : the elephant accidentally drop/ed the : airplane into the water. +C then the giraffe was so mad at her. +C : then the lifeguard maked|make[EW:made] a really funny face. +C : then the lifeguard made a really strange face that look/ed like oh I do not know. +C then the lifeguard try/ed to get it. +C : the giraffe was really sad. +C then a lady[-:] came with : a : [~_C_asks_what_'that'_is;_E_tells__C_to_describe_it] a net (that um) to get the airplane. +C the lady got it. +C then the giraffe was happy. +C then (the) the giraffe was really really happy. += [Eg:A3] += [Bg:B1] +C once upon a time there was : a bunny rabbit and another animal. +C (they are going) and they were go/ing to make a sandcastle. +C and then they made the sandcastle. +C but then : it rain/ed. +C and then the sandcastle broke. +C and then : the : other animal was sad. += [Eg:B1] += [Bg:B2] +C once upon a time there was a bunny and a : different kind of animal. +C and they are go/ing for a picnic. +C then they went to a picnic. +C and : the bunny had lot/s of : yummy stuff to eat. +C and some of it was not good food. +C then : when the bunny was done eat/ing he was fat. +C then he had a stomachache. +C and then another bunny came. +C and : the : (weird um) weird animal : came and got the : bunny and told him something about the kid bunny. +C and then : the big bunny was happy. +C : and then : he had a fever. +C then the big bunny took him to the doctor. += [Eg:B2] += [Bg:B3] +C once upon a time there was a little girl who had a balloon. +C and a bunny came. +C : then the bunny saw the balloon[-:]. +C and then the bunny try/ed to take it off the wagon. +C then it went up into the air by accident. +C then he could not reach it. +C so the girl was really mad. +C but then they saw (a man) : a bunny man who : had balloon/s. +C : then : the bunny : try/ed to tell him (what it) what kind of balloon he want/ed. +C : but then the balloon/s cost five cent/s. +C and he did not have five cent/s. +C : then : the kids were sad. +C then (he) : (these) the bunny saw : a doctor : who had money. +E what was that? +=C who had money [+_bch]. +C : and then : the boy ask/ed : the doctor : for : some money. +C then the doctor gave : some money to the man for (a) two balloon/s. +C then they each got a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/615.slt b/data/ENNI_SALT/train/615.slt new file mode 100644 index 0000000000000000000000000000000000000000..374ab762d61ae9701f468e0aab940978eab77121 --- /dev/null +++ b/data/ENNI_SALT/train/615.slt @@ -0,0 +1,75 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 5/26/1994 ++DOE: 11/29/2000 ++CA: 6;6;3 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 615=CHI ++Tape Location: Disk L21, Track 50 += [Bg:A1] +C the elephant and : the giraffe play with the ball. +C the ball bounce/3s into the water. +C the giraffe (comes a) go/3s and get/3s it. +C the elephant : (pick) pick/3s it up (for the) for the giraffe. +C : (uh) : they play[-:] : with the ball. += [Eg:A1] += [Bg:A2] +C the elephant and them (was uh) : were play/ing [EU]. +C the elephant want/ed to play tag[-:]. +C the giraffe chase/3s the elephant. +C and the elephant : fall/3s. +C the elephant get/3s a booboo. +C the elephant : need/3s : a bandaid. +C it hurt/3s. +C it feels better. +C the lifeguard get/3s mad. += [Eg:A2] += [Bg:A3] +C the giraffe play/3s with his : (uh) plane. +C it was fly/ing. +C the elephant (was) : snatch/ed [EU]. +C (an) (an) and she play/ed with it. +C (she) it fell in the water. +C the giraffe is mad at the elephant. +C the lifeguard (uh) : try/3s : to get it. +C the elephant ask/ed if he can get it. +C he reach/3s for it. +C like[!] he can not get it. +C they get a net. +C (s) they scoop it out. +C and they give it back to the giraffe. +C : let us play with it! += [Eg:A3] += [Bg:B1] +C Bunny and Dog make a castle. +C the dog build/3s it. +C the rabbit pour/3s sand on the castle. +C (it) it is broken. +C the dog is cry/ing. += [Eg:B1] += [Bg:B2] +C dog meet/3s the rabbit. +C they eat. +C the rabbit get/3s a tummyache. +C he feel/3s sick. +C the dog call/3s (for hel) the doctor. +C the dog : ask|ask[EW:asks] : to help him. +C and : the doctor : (uh) (what was it : uh) : check/ed (it) his throat. +C the doctor take/3s him : away. += [Eg:B2] += [Bg:B3] +C the rabbit come/3s and meet/3s the dog because he has a balloon. +C the rabbit want/3s to hold the balloon. +C he hold/3s it. +C he let/3s it go. +C the dog is mad. +C *the balloon man come/3s [EU]. +C the rabbit want/3s a balloon. +C (um) : the rabbit : has no money. +C so he can not have a balloon. +C he walk/3s away : to the doctor. +C the doctor give/3s : the balloon man money. +C they have fun with the balloon/s. += [Eg:B3] diff --git a/data/ENNI_SALT/train/616.slt b/data/ENNI_SALT/train/616.slt new file mode 100644 index 0000000000000000000000000000000000000000..9f224e76612f7c7bbc6394278af6efec87dd3934 --- /dev/null +++ b/data/ENNI_SALT/train/616.slt @@ -0,0 +1,114 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 4/16/1994 ++DOE: 4/27/2000 ++CA: 6;0;11 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 616=CHI ++Tape Location: Disk M5(1) Track 19 += [Bg:A1] +C the giraffe and the elephant were have/ing fun *and were go/ing to [~__gonna] play tennis [EU]. +C and their ball went into the swimming pool. +C they did not know they were at a swimming pool. +C they thought they were at a tennis court. +C then the giraffe try/ed to go in. +C (and h) and he could not get it. +C (and the elephant got) and the giraffe got the ball. +C and the elephant : got it from the giraffe : and put it somewhere and help/ed the giraffe out of the pool. +C : and then the : elephant : was hug/ing her ball. +C and the giraffe was soak/ing wet. += [Eg:A1] += [Bg:A2] +C the giraffe and the elephant were go/ing to the swimming pool. +C : elephant and the (gg) giraffe were (walk/ing to the pool) walk/ing on the part from the pool. +C and the elephant was (ru) run/ing. +C she thought she was run/ing (on the pa) on the part to walk on. +C and she was go/ing to[:_gonna] run into the pool while she was talk/ing. +C and then the elephant slip/ed. +C and the giraffe try/ed to catch her. +C and then she scrap/ed her knee. +C : and then the pool man came. +C : and he put a bandaid on her knee. +C and then (she was) she felt better. +C and (then the) [<~_child_sighs]sigh[>~_child_sighs] then the elephant man at the pool said do not run. +C and he was mad. +C and she was kind of[:_kindda] scare/ed. += [Eg:A2] += [Bg:A3] +C the giraffe went to the pool with his friend the elephant. +C and he brought his plane with him. +C he try/ed to fly it. +C and it fell into the pool. +C and then : it did not actually fall into the pool. +C they thought it would. +C and then (the giraffe caught it from the) [~_I_mean] the elephant caught it from the giraffe. +C and then it fell into the pool. +C : and then the giraffe was mad at the elephant. +C and then the pool man came. +C then : (he) the pool man (wa) was scare/ed. +C (and the elephant was tal) the girl elephant was talk/ing. +C and the giraffe was just look/ing at his plane. +C and the pool man try/ed to get it. +C but he could not. +C : and the giraffe was cry/ing. +C : (and then a) and then a lady at the pool had a net : and got it out for them. +C then she try/ed. +C : and then she got it out. +C and the giraffe was happy. +C and the giraffe : was hug/ing it/z plane. +C and the elephant was hug/ing [EU]. +C and her hand/s were stuck together. += [Eg:A3] += [Bg:B1] +C the bunny and the dog (went for their) (went to the st) went to play in the sandbox. +C and they build|build[EW:built] a sandcastle. +C : and the bunny put more sand on it. +C and it fell down. +C and there was only one part of the castle : there. +C : (then they built) and then the bunny try/ed to build it back. += [Eg:B1] += [Bg:B2] +C the bunny and the dog went for a picnic. +C the dog was go/ing somewhere else. +C and the bunny was go/ing somewhere. +C they both end up at the same place because they both were plan/ing to go somewhere. +C the dog thought he was go/ing somewhere else. +C but they did not. +C they went to the same place. +=C oh I do not know this one [+_bch]. +C (um) : and the dog ate the sandwich. +C and the dog had a drink. +C and the bunny was full. +C and then (th) there is a doctor. +C and the dog ask/ed the doctor to fix the bunny. +C and : the dog put all the doctor/z stuff on. +C and then the doctor : fix/ed the bunny. +C and then they both went home. += [Eg:B2] += [Bg:B3] +C the bunny and the dog (went) were go/ing to the park. +C and they had a balloon on their wagon : the dog. +C the bunny want/ed to bite the string off the balloon. +C and the bunny try/ed to. +C and then the balloon went up in the sky. +C and they lost it. +C and they can only see the string. +C and the dog was mad. += %COM: brief interruption as door is closed +C a bunny had more balloon/s. +C and they want/ed to get one. +C and the bunny (to) told the man what happen/ed. +C and it was five cent/s. +C : and the bunny said I do not have that much. +C : and then they did not get one. +C the doctor came. +C (the doctor gave) the doctor : had fun. +E had what? +=C [~_whispers] had fun, fun [+_bch]. +C the doctor gave the man : money (so the two) so the bunny and the dog could get some balloon/s. +C and the doctor was happy. +C and the dog was happy. +C and the bunny was happy. += [Eg:B3] diff --git a/data/ENNI_SALT/train/617.slt b/data/ENNI_SALT/train/617.slt new file mode 100644 index 0000000000000000000000000000000000000000..d413fc35bec2714c846b130a774acc42cd0d2b61 --- /dev/null +++ b/data/ENNI_SALT/train/617.slt @@ -0,0 +1,101 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 10/7/1993 ++DOE: 5/2/2000 ++CA: 6;6;25 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 617=CHI ++Tape Location: Disk L12 Track 30 += [Bg:A1] +C One day : a : giraffe saw : a[Ew:an] elephant : play/ing : with some ball/s. +C the giraffe : was play/ing with one. +C but (the) (it f) (while) the ball fell down. +C and : (the) : Missus Elephant (felt : ve) felt sad. +C and : then : Mister Giraffe : went into the swimming pool : and was get/ing : the ball [EU]. +C the giraffe gave the ball to : Missus Elephant. +C Missus Elephant likeded|like[EW:liked] Mister Giraffe. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C One day Mister Giraffe want/ed to go on the swimming pool [EU]. +C also : Missus Elephant [EU]. +C Missus Elephant said let us go in the swimming pool. +C Mister Elephant said okay. +C Missus Elephant said yay[!]. +C and Mister : Giraffe said yay too. +C (m) Missus Giraffe fell down and hurt her knee. +C and : Mister Giraffe told the lifeguard. +C and : then the lifeguard put : a bandaid on Missus : Giraffe/z knee[!]. +C Missus Giraffe was happy, also the lifeguard (and Mister) and Mister : Giraffe. +C the lifeguard was very mad : about no run/ing. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C One day (Mister Giraffe) (Missus Elephant) Missus Elephant want/ed to play with Mister Giraffe. +C then : Mister Giraffe play/ed with his airplane. +C and he pretend/ed it was fly/ing. +C and then : Giraffe was : play/ing with it. +C and then : Missus Elephant took it away : and was[!] play/ing with it. +C and then : (she) they xxx xxx. +C it fell down in the swimming pool. +C and Mister Giraffe was really mad. +C also Missus : Elephant said oops [~_!]. +C the lifeguard was very angry. +C (Missus) Missus Elephant said : he brought a toy. +C and then Mister Elephant was try/ing to get it. +C (then he) then : Mister Giraffe was cry/ing. +C and then Missus[-:] Lifeguard (had a) was hold/ing a capture : and caught the airplane. +C and then : Missus Elephant gave the airplane to : Mister Giraffe. +C and then : Mister Giraffe was really happy. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C One day Mister Rabbit : want/ed to play with Missus : Rabbit. +C Missus Rabbit was (in the sand) (the sand) in the sand. +C Mister Rabbit and Missus : Rabbit (was[EW:were] play/ing) was[EW:were] make/ing a sandcastle. +C Mister (s) Rabbit was put/ing lot/s of sand on the sandcastle. +C and : Missus Rabbit was very : embarrass/ed. +C and then it fell down. +C (then) (wu) then Mister : Rabbit : was very (s) : upset about he did that [EU]. +C and Missus Rabbit found another piece. +C Missus Rabbit was : cry/ing (because it) (because Mister Rabbit) : because Mister Rabbit put (sand : uh) lot/s of sand in the sandcastle. +=C The end [+_bch]. += [Eg:B1] += [Bg:B2] +C One day Missus Rabbit (s) (was in ha) was look/ing for strawberrie/s. +C also Mister Rabbit [EU]. +C (Missus Ra) Mister Rabbit (ate : a) (ate a[-:]) ate a carrot. +C and then : he[-:] : (w) was sweat/ing. +C then Mister Rabbit was very full because he ate all of his : food. +C (Missus Rabbit :) [~_I_mean] Mister Rabbit (was very very) had a tummyache. +C (Mis) : Doctor Rabbit came over. +C and Missus Rabbit said my brother has a tummyache. +C and then : Missus Rabbit was pull/ing : the doctor. +C the doctor said : you better not eat more food. +C and then Mister Doctor took Mister Rabbit : to the doctor/z. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C One day : Mister Rabbit (sa) said hi. +C Missus Rabbit said hi too. +C Mister Rabbit want/ed to have the balloon. +C Missus Rabbit : did not want him to : pop[!] it. +C then : Missus Rabbit said do not do that. +C and then[!] Mister Rabbit was hold/ing it. +C and then he let go. +C and then the balloon (fell : up) : went up. +C then Missus Rabbit was so angry. +C then (the) the balloon man had (another) (another) : lot/s of balloon/s. +C and then Missus Rabbit was happy. +C and then : Missus[-:] Rabbit was get/ing one. +C then (this) (the mis) : the rabbit said you can not have one. +C and then (he gave the one) he did not gave the one to (the) : Mister Rabbit or Missus Rabbit [EU]. +C (doctor ra) doctor Rabbit : (was uh) was walk/ing. +C and then Mister Rabbit (was : s) was (get/ing a) (a) get/ing : her (because) to let her to get the balloon [EU]. +C and then : she said (uh : sh) Mister Rabbit said (the s) the balloon : rabbit [EU]. +C and then : Missus Rabbit : gave[!] the balloon to two of the (ki) kid/s. +C and then : Mister[-:] Rabbit and Missus : Rabbit got a balloon. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/618.slt b/data/ENNI_SALT/train/618.slt new file mode 100644 index 0000000000000000000000000000000000000000..e46ef078bba69c782de15b90dd6a9c3e988acc60 --- /dev/null +++ b/data/ENNI_SALT/train/618.slt @@ -0,0 +1,88 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 5/28/1994 ++DOE: 11/14/2000 ++CA: 6;5;17 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 618=CHI ++Tape Location: Disk M5(2), Track 23 += [Bg:A1] +C they were play/ing[-:] : with their beach ball the elephant and the giraffe. +C (then) but then : the ball : (bump) : jump/ed into the[-:] water. +C the giraffe went and swam and got it. +C and (then i) then the giraffe gave it to the elephant. +C and then : the elephant was so proud. += [Eg:A1] += [Bg:A2] +C first : they[-:] were look/ing at the : water : the giraffe and the elephant. +C (sh) the elephant : ask/ed (if) if she could go in[!] the water. +C then she ran[-:][!]. +C but then she slip/ed and got a really bad cut. +C and then : she start/ed cry/ing. +C and then the coach came along. +C and the elephant was feel/ing very sad. +C but then (when the) : when the coach was go/ing to [~_gonna] put a bandaid on it : the elephant cry/ed and cry/ed even more. +C but then : (when) : when she got onto : one[-:] of the bench/s[!] it did not[?] [~_microphone_fell_off] [+/]^ +E when she got onto one of the bench/s it did not? +C [+,] (it did not) : it did not feel : any more hurt[!] any more [EU]. +C (but then) : (but then the k) : (the) but then the elephant was try/ing to take it off. +C and (then the eleph) then the coach : said do not take it off. += [Eg:A2] += [Bg:A3] +C one day (there was) : the elephant and the giraffe : are play/ing with (the) : the giraffe/z : airplane. +C and[-:] : the elephant look/ed at the airplane : when the giraffe was play/ing with it. +C and then : the elephant took it away and play/ed with it. +C and then[-:] : the giraffe scream/ed. +C but then she threw it in the water[-:] . +C and then the giraffe was very angry at her. +C and it sinks[?]. +C and then : the coach came and saw. +C and the elephant was very sad (that) : that she did that. +C and the elephant : coach was try/ing to get it out. +C and then : (the) : the giraffe cry/ed and cry/ed. +C and then a momma coach thing came along. +C and she had a net. +C and she pull/ed it out. +C and then she gave it to the (gira) giraffe. +C and then the giraffe was (ha) happy to play with it again. += [Eg:A3] += [Bg:B1] +C the doggy and the (uh) : rabbit were make/ing a sandcastle. +C and they just finish/ed it. +C and they were just do/ing a little bit of decoration/s. +C and then the rabbit put lot/s of sand on it. +C and then the doggy : grew : sad. +C and then : (sh) she look/ed at it again. +C and then she cry/ed because it was gone. += [Eg:B1] += [Bg:B2] +C one day the puppy : and the rabbit were just walk/ing along through a : dusty hill. +C and [+/]^ +E through a what? +=C a dusty hill [+_bch]. +C and then (they) : they just pack/ed : some food. +C and then : the rabbit began to eat and got dizzy : and then got dizzier : and ate all his candy and ate all his food. +C and then : he fell down. +C (and he) and then the puppy : ran as fast as she could (to ca) : to get the doctor. +C (sh) she pull/ed[!] the doctor/z coat as hard[!] as she could (to get him) to get : her over there. +C and then she look/ed at the bunny. +C (and) : (and) : and (she) : she felt : his forehead. +C and then : (she) : (he got to s) : he got to go get a sticker. +C and he got to go home. += [Eg:B2] += [Bg:B3] +C one day the bunny found the doggy again have/ing her wagon and a balloon : right tie/ed to it [EU]. +C he want/ed to hold the balloon. +C then he untie/ed it. +C (and it) : but then : he lost the balloon. +C (the) the puppy got very[-:][!] angry. +C and then (they saw) the bunny : saw (a bunny) : another bunny hold/ing lot/s of balloon/s for sale. +C he said can I have one of those please? +C five cent/s he said. +C but then : the puppy and the rabbit were very sad. +C so then the rabbit : (go) went (to) : to get : the doctor : for a balloon. +C the doctor paid for a balloon : for both[!] of them. +C and then they had their both balloon/s. += [Eg:B3] diff --git a/data/ENNI_SALT/train/620.slt b/data/ENNI_SALT/train/620.slt new file mode 100644 index 0000000000000000000000000000000000000000..986ed4ac4d2f9480db48ee9358db2182afe8b343 --- /dev/null +++ b/data/ENNI_SALT/train/620.slt @@ -0,0 +1,95 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 2/02/1994 ++DOE: 11/14/2000 ++CA: 6;9;4 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 620=CHI ++Tape Location: Disk M5(2), Track 32 += [Bg:A1] +C once : there was an : elephant : play/ing with a ball. +C the ball fell into the pool. +C horse (went and) went and get|get[EW:got] it : for : elephant. +C she said thank you. +C my hero. += [Eg:A1] += [Bg:A2] +C once there was an elephant who want/ed to go swim/ing. +C and she : said I was go/ing to [~_gonna] go to the diving board. +C she was run/ing. +C and she slip/ed. +C and she : had an owee[-:]. +C the coach came : and gave her a[-:] : bandaid. +C so[-:] he put it on. +C and she was scare/ed it was go/ing to [~_gonna] be hurt/ing a lot. +C see : it does not hurt. +C can not you see the sign no run/ing. += [Eg:A2] += [Bg:A3] +C once there was a[-:] : (um) : a giraffe play/ing with : his plane. +C there was an elephant. +C can I see your plane? +C he said okay hold on. +C (I) I want to : test flied|fly[EW:fly] it. +C she just snatch/ed[!] it away. +C (it fl) it went into the pool. +C giraffe was very angry[!] with her. +C coach (came) : came : and see|see[EW:saw] : what happen/ed. +C (he) : he said : (uh) : giraffe was play/ing with (her boat) (um) : his[-:] plane. +C and : I snatch/ed it. +C and then it flew into the : pool. +C coach try/ed to get it. +C but he was too short. +C he could not (g) get it. +C giraffe start/ed to cry. +C [~_sighs] there was a girl : who got a fish/ing net. +C and : she took it out. +C she got the plane : and then give|give[EW:gave] it to giraffe. +C and : (h) he : hug/ed the plane. += [Eg:A3] += [Bg:B1] +C one time there was : a dog and a rabbit : play/ing together. +C they were build/ing a sandcastle. +C and the rabbit : put sand : on the castle. +=C and : turn the page [+_bch]. +C and then it broke. +C and then the dog try/ed to : fix it. +C and the : bunny was just : (s) (s) stand/ing. += [Eg:B1] += [Bg:B2] +C one time there was : a dog and a bunny. +C they were have/ing a picnic. +C the bunny ate all[-:] the food. +C and (he) : (he) he got full. +C he got a stomachache : by eat/ing all the food. +C he feeled|feel[EW:felt] dizzy[!]. +C and the dog : call/ed : (a den) a doctor. +C and the doctor : came! +C the dog was pull/ing : (her) : the shirt of the doctor/z [EU]. +C the doctor say/3s : go look if : there is something. +C get me that : (um) stick. +C he was all better. += [Eg:B2] += [Bg:B3] +C one time : a bunny said hi dog. +C and : dog had a wagon : and (a) : a balloon attach/ed to it. +C hey : do you have a balloon : (s) said rabbit? +C yes. +C rabbit (uh) want/ed to took[EW:take] it off : by : (um) : tie/ing : off the knot. +C it flew up and up and up. +C dog got : very very angry[!]. +C and rabbit saw more balloon/s. +C and : rabbit want/ed to buy her one. +C he said can I have one of those balloon/s? +C five dollar/s please. +C he did not have : money. +C so : (he is) : the balloon keeper said to go find money. +C (and go : buy um) : then you can buy a balloon. +C (he) : rabbit : came to a doctor. +C and he said : I want a balloon. +C I need five dollar/s. +C so : the doctor gave the : balloon keeper some money[!]. +C and then they both[!] got balloon/s. += [Eg:B3] diff --git a/data/ENNI_SALT/train/622.slt b/data/ENNI_SALT/train/622.slt new file mode 100644 index 0000000000000000000000000000000000000000..68dda225beae44df7aa11c60bfdddebef38e2b0b --- /dev/null +++ b/data/ENNI_SALT/train/622.slt @@ -0,0 +1,89 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 4/06/1994 ++DOE: 11/14/2000 ++CA: 6;7;8 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 622=CHI ++Tape Location: Disk M5 (2), Track 36 += [Bg:A1] +C there was[EW:were] : two friends (that) : (that). +C and the elephant had a ball. +C and they want/ed to go swim/ing. +C and then the ball fell into the water. +C and then (he) : the : horse swimmed|swim[EW:swam] after it. +C and then they got it back. +C and then : (sh) she thank/ed her. +E she what? +=C and then : (he) she (thank/ed her) : thank/ed him [+_bch]. += [Eg:A1] += [Bg:A2] +C (there was) : they were look/ing into the pool[-:]. +C and there was a diving board in there. +C (and sh) and the girl jump/ed in. +C then she slip/ed. +C and then she hurt her knee. +C and then the lifeguard came. +C (and then she p) and then he put a bandaid on it. +C and then they went to the bench. +C and then they made her feel better. +C and (th) : the lifeguard point/ed[~!_laughing] at her to go somewhere. += [Eg:A2] += [Bg:A3] +C they were play/ing with a[EW:an] airplane by the pool. +C (the) and he was drive/ing it. +C and (go/ing) : (go/ing with his hands) he was go/ing [EU]. +C and (uh) the girl was look/ing. +C (and then : they) : and then : the girl took it from him and then try/ed it. +C and then it fell into the pool. +C and then it sank. +C and then he was mad at her. +C and then a lifeguard came. +C and then : they explain/ed what happen/ed. +C and then : he reach|reach[EW:reached] for it. +C but he could not get it. +C (and then somebody) : and then they were sad. +C and then somebody came with a net : and got it. +C (and then they) and then she gave it back to him. +C (and then) (and then he like) : and then he hug/ed it. += [Eg:A3] += [Bg:B1] +C (they) they want/ed to build a sandcastle. +C and they builded|build[EW:built] one. +C (and then) : (and then they were) : and then they put some sand into a bucket. +C (and then they) and then he pour/ed it on. +C and then it broke. +C and then : (he) : he stand|stand[EW:stood] there like he did not do anything. +C and he try/ed to fix it. += [Eg:B1] += [Bg:B2] +C they want/ed to go for lunch[-:]. +C (they) : they had a lunch. +C they were so full. +C and he felt sick. +C and then : he went to a lady. +C and then (he) : he want/ed : something. +E some what? +=C (some) something : or some help [+_bch]. +C and then she help/ed. +C (and then) : and then she took her with him. += [Eg:B2] += [Bg:B3] +C they were : play/ing a wagon with a balloon on it [EU]. +C (it) (then) : and then he want/ed to hold the balloon. +C and then he untie/ed it. +C and then it float/ed away. +C (and then he wa) : and then she was angry at him. +C and then they went to another balloon stand : where there is[EW:were] (another[EW:other] balloon/s) : more balloon/s. +C then they said can : we have one. +C (and) but they are (fifty cent/s) five cent/s. +C and then they want it. +C but she would not let them. +C and then they went to a girl and see if (they) they would give (him) : them five cent/s. +C (and she) : and they said (wo) can you give me five cent/s for a balloon? +C my balloon float/ed away. +C (and sh) and she did. +C then they had their own balloon/s. += [Eg:B3] diff --git a/data/ENNI_SALT/train/625.slt b/data/ENNI_SALT/train/625.slt new file mode 100644 index 0000000000000000000000000000000000000000..5c8682eb88513878d745a1a4e2c0f1ab68875a2c --- /dev/null +++ b/data/ENNI_SALT/train/625.slt @@ -0,0 +1,94 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 8/19/1993 ++DOE: 5/3/2000 ++CA: 6;8;14 ++Gender: F ++Context: Nar ++Group of CHI: SLI ++ID: 625=CHI ++Tape Location: Disk L12 Track 51 += [Bg:A1] +C There is (a b) : a[EW:an] elephant and a giraffe. +C the elephant is play/ing with a ball. +C but then : the ball is in the water. +C so then (hor) giraffe : get/3s the ball. +C look/3s like a cow *is get/ing the ball [EU]. +C then the giraffe give/3s him the ball. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C They are swim/ing. +C they are go/ing swim/ing. +C but then[!] she say/3s [~_makes_noises_"mm_mm']. +C and this one : [~_makes_noises_'mm_mm']. +C he get/3s a towel for her. +C then : she slip/3s on : something. +C then she hurt her knee. +C then : one man came. +C then she was cry/ing. +C then : (she[EW:he] help/ed her) he[!] help/ed her put on a bandage. +C then : she was okay. +C then she sit|sit[EW:sat] on the couch. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C Then he[!] has a[EW:an] airplane in his hand. +C she want/3s to play with the airplane. +C but then she[!] play/3s with the airplane. +C then it go/3s in the water. +C then : he get/3s[!] angry. +C then the manager get/3s impossible [EU]. +C then she[!] talk/3s to him[!] : and try/3s to get it. +C but he could not get it. +C then she was responsible for it. +C I think : another girl can catch it. +C so she catched|catch[EW:caught] it. +C and she[!] catched|catch[EW:caught] it. +C and she catched|catch[EW:caught] it. +C and she catched|catch[EW:caught] it for him. +C and then he play/ed with it. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C there is a bunny : and a : hopperoo. +C looks like a hopperoo. +C then they all[-:] make a castle. +C then : bunny : ruin/ed the castle. +C (now) : now : she is very sad. +C then she cry/ed because (him) : (he[!] did it) : the bunny did it. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C I see bunny and kangaroo : have/ing a good dinner. +C but then : bunny get/3s full because he ate too much. +C then he get/3s a stomachache. +C then (hm) : doctor came. +C and then : she said some of these days [~_mutters_inaudibly] [EU]. +C so he look/3s. +C she look/3s. +C then xxx. +E can you say that again? +C then he look/3s at the bubble/s. +C then he make/3s him better. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C she has a puzzle. +C and he come/3s back. +C then he look/3s. +C (he) she has a (bubble) balloon. +C then : he take/3s off the balloon. +C then it fly/3s away. +C then she is angry. +C then there is[EW:are] no : more balloon/s. +C so he pick|pick[EW:picked] a balloon first. +C : then he has no money. +C : then they look at the balloon/s : and take : one balloon. +C then he ask/3s [~_pronounced_'askis'] (the doctor) the doctor [~__whispers]. +=C why is it do/ing that [+_bch]? +C then he show/ed him. +C then : he gave him a dollar. +C they got two balloon/s. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/628.slt b/data/ENNI_SALT/train/628.slt new file mode 100644 index 0000000000000000000000000000000000000000..2230b2a6b56ef690c09ea8dd23888e00747b7ed8 --- /dev/null +++ b/data/ENNI_SALT/train/628.slt @@ -0,0 +1,85 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 4/20/1994 ++DOE: 12/04/2000 ++CA: 6;7;14 ++Gender: M ++Context: Nar ++Group of CHI: TD ++Tape Location: Disk M6 Track 75 ++ID: 628=CHI += [Bg:A1] +C the[-:] elephant was bounce/ing the ball. +C (the elephant accidentally) the ball went in the pool. +C the cow (was) was : swim/ing to get it. +C (the elephant) : [~_no] the cow : gave it to the elephant. +C the elephant was hug/ing the ball. += [Eg:A1] += [Bg:A2] +C the elephant and the : giraffe : were go/ing to [~_gonna] go swim/ing. +C the elephant was go/ing. +C (but the) but the giraffe (s) was go/ing to [~_gonna] stay. +C elephant was run/ing. +C then the giraffe : was run/ing. +C then the elephant hurt his knee. +C then he was start/ing to cry. +C then the : lifeguard put a bandaid on him. +C then : she : did not realize : ( that it was) that it did not hurt. +C then she feeled|feel[EW:felt] better. += [Eg:A2] += [Bg:A3] +C the giraffe held : the[-:] airplane. +C then the giraffe was play/ing with the airplane. +C then the elephant was play/ing with it. +C then it fell in the pool. +C (then the) then the giraffe was mad. +C then the lifeguard (is : uh) was : disappoint/ed. +C (then) : then the elephant was complain/ing. +C then the : lifeguard was : try/ing to get it. +C then they could not. +C then the giraffe was cry/ing. +C then she [+/]^ +E do you have to go to the bathroom? += %com: CHI takes a washroom break; EXA shows CHI previous page in story; CHI resumes telling story. +C then the elephant (was) was (um) go/ing to[:_gonna] get it. +C then the elephant (was) : got it. +C but she did not get it up there yet. +C then the elephant : gave it to the giraffe. +C then the giraffe was happy. += [Eg:A3] += [Bg:B1] +C the dog and the rabbit : (were) : were go/ing to[:_gonna] make : a castle. +C : they were make/ing a castle. +C they were still make/ing the castle. +C (they broke the cas) he broke the castle. +C then he cry/ed. += [Eg:B1] += [Bg:B2] +C the rabbit and the dog : met. +C to get [+/]^ +E shall I turn the page? +C then they : took thing/s out of their basket. +C then they start/ed eat/ing. +C (then they are) and then the rabbit : was full. +C (then the) : then : the dog went : to the doctor rabbit. +C then the dog was pull/ing [EU]. +C : then the doctor was check/ing the rabbit. +C then the doctor rabbit : was : take/ing (him :) the rabbit. += [Eg:B2] += [Bg:B3] +C (he has a) the dog had the wagon with the balloon. +C the rabbit (was) was look/ing at it. +C the rabbit took it off. +C the rabbit : let it go. +C the dog was mad. +C (the) the rabbit had : balloon/s. +C (the rabbit :) the rabbit came (to) (to the) to the balloon/s. +C the : rabbit was think/ing. +C ( the rabbit um) (the um) (the dog was) : (they were put/ing) they were put/ing their (hand/s s) hand/s [EU]. +E shall I turn? +=C hand/s [+_bch]. +C then the doctor rabbit was there. +C the rabbit : said : go over there. +C : (the r) the doctor rabbit gave : money to the man. +C they both had each balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/630.slt b/data/ENNI_SALT/train/630.slt new file mode 100644 index 0000000000000000000000000000000000000000..bbb09be3e94e7be1df53702c5c05f91ec01ee6b7 --- /dev/null +++ b/data/ENNI_SALT/train/630.slt @@ -0,0 +1,82 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 1/20/1994 ++DOE: 12/04/2000 ++CA: 6;10;14 ++Gender: F ++Context: Nar ++Group of CHI: TD ++Tape Location: Disk M6 Track 80 ++ID: 630=CHI += [Bg:A1] +C (um) this one girl is bounce/ing a ball. +E can you take your finger/s out of your mouth? +C and the ball it : went inside the pool thing. +C and then (this) (the) the one boy : got it for her. +C and then : the one boy gave it to her. +C and then the one boy was soak/ing wet. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C (um) : this one girl : was try/ing to[:_tryna] run in the pool. +C (um : she :) (she was run/ing in the) : (she) the one boy was hold/ing her towel. +C and (she s) (she sl) she slip/ed. +C she has a booboo on her knee. +C one of the guy/s came and ran for her. +C and they gave her a bandage. +C and then she felt better. +C and then : no run/ing. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C this one boy was play/ing with his airplane. +C (sh) he was fly/ing it. +C and the one girl took it away. +C and it fell in the pool. +C the one boy was mad at her. +C and : the one girl was try/ing to cry. +C and (the) this one guy he was an elephant. +C and (sh sh) the girl : was talk/ing to him. +C and : that guy was try/ing to get the airplane. +C and the one boy was cry/ing. +C and : the girl : got a (net) net. +C and she got it. +C she gave it back to (hi) him. +C and then : (sh) (he said) he had a smiley face. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C (this one) this one : girl was make/ing a sandcastle. +C the one : boy : was help/ing her. +C and : the one boy dump/ed the sand on the sandcastle. +C the sandcastle was wreck/ed. +C the one girl was cry/ing. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C (this) (that guy was carry/ing a bas) this one girl was carry/ing a basket of food. +C (um this one boy ate) this one boy ate food. +C and he was full. +C he was dizzy. +C (he) (he) the girl found a doctor. +C the doctor came. +C (the) : (the doctor :) the doctor : took out this stick thing. +C and he felt better. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C (this one bu had) this one boy had a wagon. +C and he had a balloon tie/ed to the side. +C (this) the one girl : (um) look|look[EW:looked] at the balloon. +C the one boy : untie/ed it. +C (it was) the balloon went up. +C it was gone. +C (um) there was a balloon man. +C (the girl) the boy want/ed a balloon. +C : and : the boy did not have no[EW:any] money. +C (the man :) the man was : hold/ing the balloon/s. +C the girl was stand/ing beside the man. +C the nurse came : and bought the balloon. +C (they both had) the boy and the girl had the balloon. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/632.slt b/data/ENNI_SALT/train/632.slt new file mode 100644 index 0000000000000000000000000000000000000000..f1bb3138d5c87d88fc0b7a7f69a813c900a2fe6f --- /dev/null +++ b/data/ENNI_SALT/train/632.slt @@ -0,0 +1,124 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 10/03/1994 ++DOE: 12/05/2000 ++CA: 6;2;2 ++Gender: F ++Context: Nar ++Group of CHI: TD ++Tape Location: Disk M6 Track 118 ++ID: 632=CHI += [Bg:A1] +C the giraffe see/3s an elephant. +C and the elephant is : bounce/ing a ball. +C and the ball fell in the water. +C and the giraffe see/3s it. +C and the giraffe go/3s in the water (and : tr) and try/3s to get (it) the ball. +C and then the giraffe got to the ball and give/3s it to the elephant. +C and the elephant thank/ed him. += [Eg:A1] += [Bg:A2] +C the elephant want/3s[?] to see the water. +C and she want/3s to go (on) in it. +C and she would not. +C and she ask/ed the diving coach (if he) if she could go. +C and he said yes. +C then she (runned|run[EW:ran]) ran. +C and she is not supposed to. +C so she just ran. +C and then she slip/ed. +C (then she) then the giraffe saw her. +C he[EW:she] cut her knee. +C (then there is another) then the giraffe coach and the elephant coach came. +C (and) and there is a sign say/ing no run/ing. +C and then the elephant put/3s a bandaid on her knee. +=C (and then he) then that is all [+_bch]. +C and then she sit/3s on the bench. +C and her knee do/3s not hurt that much any more. +C and (the :) the elephant coach point/ed to the sign. +C and it said no run/ing. +C and she was like [~_makes_a_face]. +E she make/3s a face. += [Eg:A2] += [Bg:A3] +C (um) the girl see/3s the giraffe with a toy airplane. +C (and the) : (and the) and the giraffe : is play/ing with the toy airplane. +C and the girl see/3s the airplane. +C and the girl snatch/ed *it from (the) the giraffe [EU]. +C and the giraffe said hey! +C then the girl accidentally splash/ed it in the water [EU]. +=C and now : and that is all [+_bch]. +C and then the giraffe was mad at the elephant. +C and (the) the elephant coach came over. +C and the giraffe was sad. +C and the little elephant explain/ed : how it happen/ed. +C and then the coach elephant try/ed to get it. +C but he could not reach it. +C and then the giraffe start/ed cry/ing. +C then a coach girl elephant came over. +C and (ha) she had a net to get the airplane. +C and (then she got the air) then she put it in. +C (got) and she got the airplane. +C and she gave it back to the giraffe. +C and the giraffe was very happy. +C (and the giraffe) : and the elephant was very happy that he got it back. += [Eg:A3] += [Bg:B1] +C a puppy and a rabbit [EU]. +C (are) the rabbit see/3s a puppy and say/3s can I play with you? +C and the puppy say/3s yes. +C and so they build a sandcastle. +C and they start build/ing a sandcastle. +C and the rabbit has a : bucket with sand in it and a shovel. +C and he is scoop/ing sand out of it. +C (and then he pour/3s it) and then the rabbit pour/3s it on the sandcastle. +C and the dog/z : eyes are twist/ed [~_laughs]. +C and (then) then the rabbit (was like) (he he) he saw the sandcastle *was broken [EU]. +C (and the dog) and the rabbit was like [~_makes_a_face]. +E you are make/ing a face, mmhm. +C and the dog was cry/ing. +C and the rabbit (um) was embarrass/ed. += [Eg:B1] += [Bg:B2] +C (the dog) the rabbit was walk/ing down the path. +C and the rabbit see/3s the dog. +C and the dog say/3s hi. +C and then they go sit down on the grass. +C and the rabbit start/3s eat/ing. +C and his tongue is stick/ing out [~_laughs]. +C (the dog um) the rabbit is get/ing full and full : and fuller. +C and the dog is just drink/ing it/z juice. +C and then the dog see/3s a doctor and say/3s help. +C my friend is hurt. +C and then the dog pull/3s her over (to) so she can see the : little rabbit. +C and then the : (uh) doctor rabbit look/3s at him. +C and (he is) (she is p) she is point/ing to something. +C and (the) then the doctor take/3s the rabbit with (hi) her. += [Eg:B2] += [Bg:B3] +C the rabbit see/3s the dog with : a wagon with a balloon tie/ed on it. +C and the dog see/3s the rabbit. +C and then the rabbit say/3s hey : (can I) can I look at your balloon? +C the dog say/3s yes. +C (then the b) then the rabbit take/3s the balloon off. +C and the dog is like [~_makes_a_face]. +E you made a face again. +C (and then the balloo) and then the rabbit let go of (it) the balloon. +C and the balloon fly/3s away. +C and the balloon go/3s up and up. +C and the dog is mad. +C (then they see um) then the dog is mad at the rabbit. +C and then the rabbit (go/3s) see/3s (um) a rabbit with : balloon/s. +C and then he go/3s over to him : and say/3s hey can I have that balloon? +C and then : the man say/3s : do you have five dollar/s? +C and the rabbit check/3s his pocket. +C no [~_shaking_his_head]. +C then the man stand/3s up there. +C and those two are sad. +C and they pull the same (doc) girl over to (the) the balloon stand. +C and so : the rabbit say/3s (can) can you get us a balloon? +C and the rabbit say/3s yes. +C and (then) (then the guy) then the rabbit (sa) (put) put money in his hand. +C and then they got two balloon/s. +C they were so happy. += [Eg:B3] diff --git a/data/ENNI_SALT/train/634.slt b/data/ENNI_SALT/train/634.slt new file mode 100644 index 0000000000000000000000000000000000000000..f255a70378335da9e0eec745d772874cf8707de8 --- /dev/null +++ b/data/ENNI_SALT/train/634.slt @@ -0,0 +1,82 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 10/21/1994 ++DOE: 12/05/2000 ++CA: 6;1;14 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 634=CHI ++Tape Location: Disk M7 Track 2 += [Bg:A1] +C there is an : elephant and a : giraffe. +C and the elephant was bounce/ing her ball. +C and it fell in the river. +C and she was sad. +C and the giraffe went : towards it : and got it out for her. +C and she was happy. += [Eg:A1] += [Bg:A2] +C there was an elephant and : (the) a zebra. +C and : the elephant want/ed to go in the pool and was run/ing. +C and she slip/ed. +C and she fell and bruise/ed her knee. +C the lifeguard ran towards her : and put a bandaid on it. +C and (she) he was not feel/ing okay. +C : and : the lifeguard was mad. += [Eg:A2] += [Bg:A3] +C there is an elephant and a zebra. +C and : the zebra was play/ing with his : toy plane. +C and the elephant grab/ed it from him. +C and it drop/ed in the water. +C and he was very angry at her. +C and the lifeguard look/ed at them. +C and : she (s) : was talk/ing to the lifeguard. +C and the lifeguard try/ed to grab it. +C but he could not. +C and the giraffe was cry/ing. +C and then (an uh) a lady elephant came with a net : and took it out (with it) with the fish net : and gave it back. +C and he was happy. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C there is (a rabbit and a) a rabbit and it/z friend. +C they made a castle. +C and the bunny pour/ed : sand over top of it. +C the dog was sad. +C and the bunny was sad. +C the dog was cry/ing : try/ing to fix his castle. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C the bunny and the dog were take/ing picnic basket/s somewhere. +C they found a nice place to eat. +C and they start/ed eat/ing. +C the bunny got full and fell. +C (the dog went) the dog was sad. +C he ran : to (a) a doctor bunny : and pull/ed : her. +C and (she :) she look/ed at the boy bunny lay/ing on the ground : and took him to the hospital. += [Eg:B2] += [Bg:B3] +C the dog and the rabbit were run/ing. +C and the bunny : said look I have got a balloon. +C (the) the dog want/ed one. +C and the bunny was try/ing to untie his balloon. +C xxx [~_says_something_under_breath]. +C and it : went up into the sky. +C and they could not reach it. +C and the dog was angry. +C then they : both saw : a bunny rabbit with balloon/s. +C and the bunny said I want that one. +C it is fifty cent/s. +C they both did not have any money. +C and they both want/ed one. +C then they saw the doctor again. +C they ran : to her and said they do not have any money. +C but they want a balloon. +C and (she gave : each : of) (sh) she gave the bunny (he) : ten cent/s. +C and they each got a balloon. +C and they were happy. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/636.slt b/data/ENNI_SALT/train/636.slt new file mode 100644 index 0000000000000000000000000000000000000000..b29cd52a7973336b5aa7fdc670462b1954632d9b --- /dev/null +++ b/data/ENNI_SALT/train/636.slt @@ -0,0 +1,98 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 12/29/1993 ++DOE: 12/05/2000 ++CA: 6;11;6 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 636=CHI ++Tape Location: Disk M7 Track 12 += [Bg:A1] +C once upon a time there was an elephant and a giraffe. +C the : elephant and the giraffe were play/ing ball. +C and then the ball fell in the water. +C and then : the : giraffe went to swim in the water and get it. +C and then : he brung|bring[EW:brought] it back to the elephant. +C and then (the giraffe like/ed the eleph) [~_I_mean] the elephant like/ed the giraffe. +=C that is all [+_bch]. += [Eg:A1] += [Bg:A2] +C once upon a time the giraffe met the elephant. +C (and wanted) and they want/ed to go swim/ing. +E can you talk louder? +C (and they) (they) and the elephant ran[-:] : to the swimming pool. +C and then she slip/ed and : hurt her knee. +C (and the giraffe went) [~_I_mean] (the) the elephant that was guard/ing the swimming pool came to (get) see her and then put : a bandage on her. +C and then she felt better. +C (and then : sh) and then he (sai) told her [~_stern__voice] no run/ing. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C once upon a time : the giraffe had a[EW:an] airplane to show to the elephant. +C (and they) and he play/ed with : it a lot. +C and she like/ed[!] : the airplane. +C so she took it away from him. +C and she start/ed play/ing with it too. +C and then it fell into the water. +C and the giraffe was very mad. +C so then the lifeguard came. +C and the elephant explain/ed to the lifeguard what happen/ed. +C then[!] he try/ed to reach out and get[!] it. +C but he could not do that. +C and he told them he could not do that. +C and the giraffe start/ed cry/ing. +C so then a lady came with a net. +C and she : (s um) put the net inside the water and : got it. +C and she gave it to the giraffe. +C and the giraffe was really happy. +C then he hug/ed it. +C and they play/ed with it again. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C once upon a time : a bunny met his bestest[EW:best] friend : a[-:] dog. +C the dog and the bunny want/ed to make a castle. +C and the bunny was put/ing all the sand inside the bucket. +C then [+/]^ +E can you talk louder? +C then he dump/ed it all on the sandcastle. +C and then : (the) the bunny look/ed at the sandcastle and the dog. +C (and the dog start/ed to : cr) and the dog start/ed to : cry. +C and the bunny was feel/ing : sad because (he) he accidentally dump/ed it on the sandcastle. += [Eg:B1] += [Bg:B2] +C once upon a time the bunny met : his friend the dog. +E can you talk louder? +C and : the bunny : had a picnic with the dog : and ate lot/s of stuff. +C (and then the) : and the dog : look/ed at the bunny. +C and the bunny was eat/ing. +C he was messy at eat/ing. +C (then the) then the bunny did not feel very good. +C and then : the dog went to tell his mom that he was not feel/ing good. +C and he brung|bring[EW:brought] her to (get) see (him) the bunny. +C and then : look/3s like a mom or a doctor [EU]. +C (um okay then) I will have to say it is a doctor. +C the doctor try/ed to : fix the bunny (up) : up. +C and then the mom took the bunny back home. +=C that is the end [+_bch]. += [Eg:B2] += [Bg:B3] +C once upon a time [~_the_same_thing] the bunny met[~!_laughs] the dog. +C and the dog had a balloon. +C the dog show/ed the bunny his balloon. +C and he untie/ed it from the wagon. +C then the balloon flew away. +C and then the dog was mad[!] at the bunny. +C then the bunny went to get another balloon[!] for him. +C but he did not have any money. +C so (he) (he) : he look/ed in his pocket/s. +C and he did not have any money : still[!]. +C then (he) he was sad. +C and the dog was sad too. +C but then[!] he went to tell his mom[!] to give him money. +C and then : she went to get him some money. +C and then they were very happy. +C and they both have a balloon. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/637.slt b/data/ENNI_SALT/train/637.slt new file mode 100644 index 0000000000000000000000000000000000000000..818e7ee997aa9fc528d947cffc380fa02ca0f61d --- /dev/null +++ b/data/ENNI_SALT/train/637.slt @@ -0,0 +1,74 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 4/14/1994 ++DOE: 5/17/2000 ++CA: 6;1;3 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 637=CHI ++Tape Location: Disk L15 Track 9 += [Bg:A1] +C (uh) : it is a giraffe look/ing and play/ing with a[EW:an] : elephant. +C (they lo) they lost the ball (in the) in a boat. +C now the giraffe dived|dive[EW:dove] in and get[EW:got] it. +C then he got the ball. +C then they play/ed. += [Eg:A1] += [Bg:A2] +C (They were aas) : (going to uh) cow is go/ing to run. +C cow is go/ing to run into the pool. +C then they slip/ed. +C and then they fall in and hurt her knee [EU]. +C : it was hurt. +C put a bandaid on. +C okay. +C no[!] run/ing. += [Eg:A2] += [Bg:A3] +C They was[EW:were] go/ing to [~_gonna] play with a[EW:an] airplane. +C (they try/ed) (they n tr) (they try/ed to um) they[-:] try/ed to play with it. +C (and then they) : (and then they) and then they was[EW:were] try/ing to fly it. +C then it land/ed in the water. +C then he got mad. +C (and then they) and then (the) (the) : (the : um) : they was[EW:were] scare/ed. +C (and then they[-:] help pu) and then they got some help. +C (the) then (they) (they try) the guy got to try got it [EU]. +C (and then they) and then they could not get it out. +C then the girl came and got it. +C : and then she caught it. +C : and then she got it. +=C and that is the end [+_bch]. += [Eg:A3] += [Bg:B1] +C a dog and a[-:] : bunny were go/ing to play together. +C and then (he) (the) : the bunny was go/ing to[:_gonna] : make one. +C and then the bunny (was) pour/ed the sand on the castle. +C and then it fall/3s apart. +C and then the dog got some : cry [EU]. += [Eg:B1] += [Bg:B2] +C The dog and the bunny (met) met. +C (hm) the bunny start/ed to eat. +C (and then he b) (and) and then he was finish/ed. +C he was (ti) poop/ed out. +C (and[-:] his) : and she ask/ed [~_pronounced_'axed'] the doctor to help : the fever. +C he ate too much candy. +C and then he[-:] was all better. += [Eg:B2] += [Bg:B3] +C the dog and the rabbit met. +C (and then he) and then he try/ed to get a balloon. +C and then he try/ed to tie it : off. +C and then it went way up into the air. +C and then it pop/ed[!]. +C then she got mad. +C and then it was some more[!] balloon/s [EU]. +C (: and then sh) and the bunny ask/ed him if he could give him a bunny. +C (uh) : and five dollar/s [EU]. +C so they could not get a balloon. +C so they ask/ed [~_pronounced_'axed'] their mom. +C and he said could you give me a[-:] : balloon for five dollar/s? +C and then she gave the money to the man. +C (and then she) and then they both got a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/639.slt b/data/ENNI_SALT/train/639.slt new file mode 100644 index 0000000000000000000000000000000000000000..e35a3e40f8f587557c4ce72fe66a269488d1c998 --- /dev/null +++ b/data/ENNI_SALT/train/639.slt @@ -0,0 +1,92 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 3/7/1994 ++DOE: 5/17/2000 ++CA: 6;2;10 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 639=CHI ++Tape Location: Disk L15 Track 19 += [Bg:A1] +C There is this giraffe and the elephant play/ing ball. +C and then : the ball bounce/ed into the water. +C then the giraffe swimmed|swim[EW:swam] and got (the balloon) [~_I_mean] the ball. +C then : the giraffe gave it to the elephant. +C then[!] he was smile/ing. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C The elephant and the giraffe (s) (swi) (de) decide to go in the pool. +C and there is a sign no run/ing in the pool. +C (i) there is a sign right in the corner right there. +C but they never saw it. +C then the elephant said : come on let us go in the water. +C then : she tumble/ed. +C she sprain/ed her ankle : up here. +C and she got a[EW:an] elephant to come. +C then the elephant look/ed at her : knee. +C then the elephant (: was) was help/ing her up. +C and the elephant look/ed mad at her. +C (an) (and she) and she never saw the sign. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C The elephant and the giraffe were talk/ing to each other. +C then the giraffe pull/ed out his play airplane. +C then the elephant took it away. +C and then she drop/ed it in the water. +C then the giraffe[!] got mad at the elephant. +C and the plane is sink/ing. +C and then the other elephant look/ed at them. +C and then the elephant explain/ed. +C then the[-:] guy elephant try/ed to get it. +C but he could not reach it. +C (then) then the giraffe was cry/ing. +C and then a lady came and brought a net. +C and the lady got it in the net. +C then the giraffe was happy. +C and then the giraffe was proud. += [Eg:A3] += [Bg:B1] +C two bunny/s : (and an eleph) and a dog were play/ing in the park. +C and they were build/ing a sandcastle. +C and the bunny put sand over the[-:] castle. +C and the dog made a funny face. +C (he ma) he look/3s like a funny dog. +C [~_laughs] he is silly. +C (then the b) and when the bunny pou/red it on[!] : the castle broke. +C there is only one piece left : on top of the : castle. +C then the dog cry/3s : because the castle got[EW:was] broken. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C : the dog and the rabbit were go/ing for a picnic. +C and then (they started eat/ing) the rabbit start/ed eat/ing. +C then : the rabbit was finish/ed. +C (the) then the rabbit (tum hurt) his tummy hurted|hurt[EW:hurt] [EU]. +C then : the dog went and told the nurse. +C and she pull/ed her. +C and then[!] she saw (her) the dog. +C : then[!] : the rabbit was feel/ing better. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C the rabbit and the dog were walk/ing. +C and the rabbit saw the balloon on the wagon. +C and the rabbit untie/ed it from the wagon. +C and the dog was happy. +C and then[!] the rabbit lost it. +C and the rabbit was cry/ing. +C and then the dog was mad at the rabbit. +C then there was a bunny : sell/ing balloon/s. +C then the bunny : ask/ed[-:] for a balloon. +C then[!] : he never gave it to him because it cost five dollar/s. +C then they are both not happy. +C then : someone was stand/ing on the : path. +C and the bunny ran to the bunny. +C then : he offer/3s some money for a balloon : for his friend. +C then : he give him some money : for the balloon/s. +C and they are both[!] happy. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/641.slt b/data/ENNI_SALT/train/641.slt new file mode 100644 index 0000000000000000000000000000000000000000..ddb426546d9b7242e93089effef3345671b16fd2 --- /dev/null +++ b/data/ENNI_SALT/train/641.slt @@ -0,0 +1,98 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 6/27/1993 ++DOE: 6/6/2000 ++CA: 6;11;9 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 641=CHI ++Tape Location: Disk L16 Track 9 += [Bg:A1] +=C (Hmm) I do not know this story [+_bch]. +E well tell me what is happen/ing. +C the elephant is grab/ing a ball. +C the : elephant threw[-:] the ball in the pool. +C the giraffe went in[!] to get the ball. +C (the) the giraffe got it. +C and : he swam back. +C and the elephant got it. +C the giraffe is all wet now. += [Eg:A1] += [Bg:A2] +C The giraffe is all dry now. +C the elephant is happy. +C the elephant is go/ing to the diving board. +C the elephant is go/ing to slip. +C the elephant hurt her knee. +C the coach came. +C the coach put on a bandaid. +C she *is feel/ing better now [EU]. +C the coach is mad at her now. += [Eg:A2] += [Bg:A3] +C The giraffe has an airplane. +C the giraffe is go/ing to [~_gonna] : fly it. +C the elephant got his : airplane. +C the elephant threw it in the water. +C now : the giraffe is mad at her. +C (now : the coa) now the (el) elephant is sad. +C the coach is : a little[!] mad. +C and : the : elephant is apologize/ing. +C the coach is try/ing to get : the airplane. +C the giraffe is cry/ing now. +=C (um) : what is that girl [+_bch]? +E what do you think she is? +=C (Hm) : I do not know [+_bch]. +E well you tell me what is happen/ing. +C (hm) the airplane is sink/ing now. +C the girl elephant (nt) is try/ing to get it out now. +C the girl elephant got it out now. +C she (ga) gave it back to the giraffe now. +C the giraffe is happy. +C he got his : airplane back. += [Eg:A3] += [Bg:B1] +C the dog : is in the sandbox. +C the rabbit is not in the sandbox. +C the rabbit is dig/ing : in the bucket. +C the rabbit pour/ed the sand : on the sandcastle. +C the : rabbit is : kind of (s) mad now. +C and the dog is happy. +C the dog is sad now. +C (he is cry/ing) she is cry/ing. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C The dog and the rabbit are go/ing on a picnic in the wood/s. +C the : rabbit : like/3s the carrot. +C the rabbit is full now. +C the dog is : not[!] full. +C (he is) she is still hungry. +C her : mom came : into the wood/s. +C (th) the dog is drag/ing her mom : to the picnic blanket. +C [~_no] it is the doctor! +=C silly me [+_bch]. +C the doctor look/ed at : the rabbit. +C (now the doctor is feel/ing better) now the : bunny is feel/ing better [~_not_the_doctor]. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C the dog has a balloon. +C the rabbit has nothing. +C the rabbit : like/3s the balloon. +C he want/3s it. +C the rabbit is take/ing it off : the wagon. +C the balloon went up into the sky. +C the balloon is gone now. +C the dog is mad at the rabbit now. +C the rabbit : is : not : mad because there is[EW:are] more balloon/s. +C the rabbit want/3s a balloon. +C here this : balloon : belong/3s to you. +C now the dog want/3s a balloon. +C (they) : but rabbit did not get a balloon. +C rabbit ask/ed his mom : can I please have a balloon mom? +C the (r) mommy rabbit gave the money to the : store man. +C now they both got[EW:have] a balloon. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/648.slt b/data/ENNI_SALT/train/648.slt new file mode 100644 index 0000000000000000000000000000000000000000..db00368920f358acc0966f533a5e7f315bd190cb --- /dev/null +++ b/data/ENNI_SALT/train/648.slt @@ -0,0 +1,135 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 4/19/1994 ++DOE: 11/29/2000 ++CA: 6;7;5 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 648=CHI ++Tape Location: Disk L21, Track 92 += [Bg:A1] +C yay[-:] this is my new ball/s[EW:ball] : giraffe! +C yay we can play with it! +C uhoh it went in the : swimming pool! +C oh no we should have play/ing with it outside [EU]! +C I can get it! +C I can swim [~_makes_sound_like_jumping_into_water]! +C oh no[~!_laughing]. +C : here is your ball. +C thank you ! +C [~_laughs_"hee_hee_hee_hee"] oh my lovely ball! += [Eg:A1] += [Bg:A2] +C oh[-:] let us[!] play in the swimming pool. +C goodie goodie gosh. +C : come on let us go to the diving board. +C yipee. +C oh(*3)[-:] [~_oomf] : take it easy. +C : ow[-:]! +C oh no there is a no run/ing sign! +C [~_makes_sounds_"mmm_-:_pup_pup_pup"]. +E you remember I can not see the picture/s. +C [~_makes_sounds_"eee__maaa] it is okay. +C now I am go/ing to put on the bench [EU]. +C remember it is slippery. +C so walk. +C now I will tell you the rule/s. +C [~_laughs] (ah) now look there is a no run/ing sign. +C so no run/ing. +C oops [~_laughs]. += [Eg:A2] += [Bg:A3] +C (t) hi want to [~_wanna] play with my new plane? +C [~_high_pitched_voice] of course[-:]! +C [~_growly_voice] (hm my) now[!] let us see[-:]. +C [~_makes_sound_effects_"pphh_ooo_-:"] : [~_high_pitched_voice] hey gimme! +C I want to[:_wanna] try [~_inhales_sharply]! +C [~_makes_sounds_"ooo"] oops! +C oh[-:]. +C : now I can never play with it. +C [~_makes_sounds_"errr__ooo_-:"]. +E okay. +C [~_makes_sound_"errr"] [~_growly_voice] give me back my plane! +C [~_makes_sounds_"hm_hmmm_-:"] oh[-:] boy. +E okay what is happen/ing in the story? +E I can not see the picture/s remember. +C [~_high_pitched_voice] (uh I was play/ing) we were play/ing with the toy plane! +C [~_high_pitched_voice] and I accidentally drop/ed it in the water! +C [~_makes_sound_"errr"] [~_growly_voice] I can not reach it! +C [~_makes_crying_sounds]. +C [~_growly_voice] oh well[-:] let us see. +C : sink(*3) [EU]. +C hm I have got the handy dandy thing a[-:] net. +C [~_growly_voice] (uh[-:]) is she go/ing to fish it out of there? +C [~_makes_sound_effects] [~_growly_voice] yay she got it! +C [~_inhales_sharply] [~_high_pitched_voice] my plane. +C there you go. +C : oh[-:] [~_laughs] yay[-:]! += [Eg:A3] += [Bg:B1] +C Doggy said[-:] : come and play with me in the sand box : to Rabbit. +C Rabbit said okay. +C they made[-:] a sand castle. +C Rabbit fill/ed the bucket with a shovel. +C he dump/ed the bucket onto Doggy/z[-:] sandcastle. +C Rabbit (wa) said oh no I broke your castle! +C Doggy said it is okay. +C but then he got sad. +C and he try/ed to make it : again. +C Rabbit sigh/ed. += [Eg:B1] += [Bg:B2] +C Doggy said hi[!]. +C let us have a picnic in the wood/s. +C Rabbit was so[-:] hungry. +C he took out all the food in his picnic (bak) basket and start/ing *to eat it [EU]. +C Doggy ate a few! +C and Rabbit ate all[-:] of his thing/s. +C when he was done he got a big tummyache. +C (ra) Dog said you should not eat so much Rabbit. +C save some for your dinner! +C [~_makes_moaning_sound,_laughs] said rabbit. +C Doggy (g) ran[-:] to the nurse rabbit. +C he said quick : my friend Rabbit has a big tummyache from eat/ing too much! +C she drag/ed the nurse to the picnic basket. +C she said now now. +C (you need) I need to take your temperature! +C and then : we will see : how you feel! +C Rabbit felt all better when the nurse had[EW:was] done. +C Dog was so happy he told [EU]. +C it is so funny[~!_whispering]. += [Eg:B2] += [Bg:B3] +C hi Rabbit! +C let us play! +C I have a new balloon! +C ooh it is pretty! +C I want to[:_wanna] play with it! +C uhoh. +C [~_makes_noise_'aaaah',_grunts] now we just have to untie this knot. +C and then we can play with it! +C huh oh no I should not have untie/ed the knot! +C [~_makes_sound_'aaah'] my balloon! +C [~_makes_noise_"errr"][-:] oops. +C : (mmm) oh I know. +C I will get some more balloon/s from the balloon man. +C [~_makes_noise_"err",_waves_and_gestures_with_arm]. +E remember I can not see the picture/s. +E you have to tell me. +=C I know [+_bch]. +C balloon man can I have a balloon! +C hm [~_laughs]? +C (um) : [~_creaky_voice] do we have any five cent/s[EW:money]! +C [~_creaky_voice] they are five cent/s! +C oh[-:] boy[!]. +C (hm : hmmm) if he can not buy it who can? +C [~_makes_noises_"ooo_doo_doo_hm"] [~_high_pitched_voice] missus nurse : can you help : us get a balloon? +C [~_high_pitched_voice] the balloon doggy got float/ed away [EU]! +C [~_high_pitched_voice] please[-:] . +C [~_high_pitched_voice] (the) the balloon man is right there. +C okay. +C [~_creaky_voice] here you go! +C thank you[-:]! +C [~_high_pitched_voice] yay[-:] our balloon/s [~_laughs]! += [Eg:B3] diff --git a/data/ENNI_SALT/train/649.slt b/data/ENNI_SALT/train/649.slt new file mode 100644 index 0000000000000000000000000000000000000000..88efe4bc30bf1d3a7f0c230be4f897a46a1fa868 --- /dev/null +++ b/data/ENNI_SALT/train/649.slt @@ -0,0 +1,72 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 1/10/1994 ++DOE: 6/12/2000 ++CA: 6;5;2 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 649=CHI ++Tape Location: Disk L18 Track 16 += [Bg:A1] +C once there was a horse and a[EW:an] elephant. +C the elephant was play/ing : (with) : with some balloon/s. +C (the b) one balloon fell (into the wa) into the pool. +C the horse jump/ed in to get it. +C the horse got it and hand/ed it (to) to the elephant. +C the elephant hug/ed it. += [Eg:A1] += [Bg:A2] +C Once there was (a um) a horse and a[EW:an] elephant. +C (let us) the elephant said let us jump into the pool. +C the horse said instead let us have a race. +C the elephant fell. +C the lifeguard came : and put (a band) a bandaid on. +C I think it was her right. +C (and) and it hurt to sit down. += [Eg:A2] += [Bg:A3] +C Once : there was a cow and an elephant. +C (the c) the horse : flied|fly[EW:flew] his airplane. +C the elephant grab/ed it from him. +C then he drop/ed it into the swimming pool. +C (the) the horse got mad at the girl. +C the lifeguard came along : (and) : (and tried to get) and talk/ed about : get/ing : the airplane out. +C the lifeguard try/ed to get it. +C but he could not. +C a lady came with a net : and got the airplane out. +C (h) she hand/ed it (to the m) to the horse : and hug/ed it very tight. += [Eg:A3] += [Bg:B1] +C Once there was a bunny and a girl bunny. +C they made sandcastle/s. +C the boy : (um) put sand (in this) in a bucket : and pour/ed it onto the sandcastle. +C : the girl got mad at him. +C and the girl cry/ed. += [Eg:B1] += [Bg:B2] +C (There sh um) the girl (s) saw the same bunny go/ing for a picnic. +C she was too. +C they had a picnic together. +C the bunny ate too much junk food : and had a tummyache. +C the doctor came. +C the girl pull/ed[!] the doctor. +C (he) he check/ed : the boy. +C the boy was all right. += [Eg:B2] += [Bg:B3] +C once there was a girl : with a wagon. +C and a balloon was tie/ed to the wagon. +C (the boy) the boy want/ed to touch : the balloon. +C instead he tie/ed it off : and let it go by accident. +C the girl got very[!] mad at him. +C the balloon man was still there. +C (the) : the boy wanted two[!] balloon/s. +C he (had to pay some cent/s) : had to pay five[!] cent/s. +C : he had no five cent/s[EW:money]. +C the doctor was still[!] there. +C and the boy ask/ed for some money. +C the doctor gave : the balloon man some money. +C (and they) and they both got a[?] balloon. +C and they hug/ed them. += [Eg:B3] diff --git a/data/ENNI_SALT/train/650.slt b/data/ENNI_SALT/train/650.slt new file mode 100644 index 0000000000000000000000000000000000000000..ec3744e72daca95dc0244d9002a14a89d24bee45 --- /dev/null +++ b/data/ENNI_SALT/train/650.slt @@ -0,0 +1,92 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOE: 11/29/2000 ++CA: 6;5;26 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 650=CHI ++Tape Location: Disk L21, Track 96 += [Bg:A1] +C (um) an elephant *was bounce/ing a ball [EU]. +C and a giraffe *was watch/ing [EU]. +C the ball *was in the water [EU]. +C and they are both stare/ing. +C and it look/3s like they are scream/ing. +C (uh) the giraffe : *is in the pool[-:] get/ing the ball [EU]. +C the elephant *is surprise/ed. +C the giraffe *is give/ing the ball to the elephant. +C the elephant like/3s what he do/3s. +C and : he smile/3s. += [Eg:A1] += [Bg:A2] +C the[-:] elephant and giraffe : *are look/ing at the water [EU]. +C (uh) they go to the jumping board. +C the elephant run/3s. +C and the giraffe walk/3s. +C the elephant get/3s hurt. +C and the giraffe do/3s not. +C and the giraffe is surprise/3d. +C the giraffe wonder/3s if the elephant is okay. +C the : in charged[EW:charge] elephant[?] : wonder/3s what is wrong. +C : put/3s a bandaid on [EU]. +C : (uh) : take/3s her to a bench [EU]. +C : show/3s her the sign [EU]. +C then she is surprise/ed[~!_laughing]. +C no run/ing[-:] the sign say/3s. += [Eg:A2] += [Bg:A3] +C [~_sighs] the[-:] elephant[-:] decide/3s : that : they should play with the toy airplane. +C the[-:] : (um[-:]) giraffe : got it first. +C and the elephant[~!_laughing] wonder/3s if she could do it. +C and she do/3s it way too fast : drop/s it in the water accidentally [EU]. +C the[-:] giraffe get/3s mad at her. +C the[-:] in charged[EW:charge] elephant come/3s. +C the[-:] : other elephant : tell/3s him what : happen/ed. +C he try/3s and get/3s it. +C he do/3s not know how. +C then[-:] his wife come/3s : get/3s it with the (s) fishing[-:] net sort of : and give/3s it back to the giraffe. +C giraffe like/3s the airplane[~!_laughing]. += [Eg:A3] += [Bg:B1] +C the[-:] rabbit ask/3s if he can play with the dog[-:]. +C the : dog is make/ing something. +C the rabbit is dig/ing a big bucket of sand : dump/s it right where the castle is suppose/ed to be : and[-:] : mean/3s it to make : a[-:] sort of (a) : a thing like this [EU]. +C and[-:] : it wreck/3s the castle. +E remember I can not see the picture. +=C I know [+_bch]. +C and he try/3s to fix it. +C [~_I_mean] the dog try/3s to [EU]. += [Eg:B1] += [Bg:B2] +C the[-:] : rabbit come/3s for a picnic with the dog. +C the[-:] (ra) rabbit eat/3s too much[EW:many] carrot/s and[-:] : bun/s. +C and the dog do/3s not. +C he get/3s[-:] sort of sick : I think. +C he get/3s a real (stomach) : headache. +C the[-:] dog run/3s to gets[EW:get] his mother. +C : pull/3s her over [EU]. +C the[-:] mother rabbit : talk/3s : to her son to leave now [EU]. +C and[-:] the[-:] rabbit do/3s with his mother [EU]. +C the dog is happy. += [Eg:B2] += [Bg:B3] +C the dog is play/ing with the wagon with a balloon on it. +C and the rabbit come/3s again. +C he want/3s the balloon. +C he[-:] untie/3s it. +C the balloon float/3s away. +C : go/3s higher [EU]. +C the dog is mad. +C then they see a balloon seller. +C (they ask) they tell him : that[-:] one of the balloon/s goes|go[EW:went] : into the[-:] sky. +C and[-:] (they ask) : he[-:] tell/3s them that (it is : fi) five cent/s [EU]. +C hmm I could get one of those [~_CHI_talking_about_self]. +C here I have more than five cent/s [~_CHI_talking_about_self]. +C [~_laughs] and the rabbit do/3s not have any : money. +C the rabbit go/3s to get : his mother. +C : says that he want/3s a balloon [EU]. +C and he has no money. +C gives him five cent/s [EU]. +C : and give/3s them both a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/651.slt b/data/ENNI_SALT/train/651.slt new file mode 100644 index 0000000000000000000000000000000000000000..e678d02c0906dd5546ac6068dc8dd168c289aece --- /dev/null +++ b/data/ENNI_SALT/train/651.slt @@ -0,0 +1,75 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 7/15/1993 ++DOE: 6/9/2000 ++CA: 6;10;25 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 651=CHI ++Tape Location: Disk L16 Track 55 += [Bg:A1] +C One[-:] day[-:] a giraffe : saw an elephant play/ing with a basketball. +C : but then[-:] : the ball bounce/ed into : the water. +C the giraffe : (swim) swam (and try/ed) and try/ed to get it. +C and he got the ball back. +C and the elephant was happy. += [Eg:A1] += [Bg:A2] +C One day (the zebra) [~_I_mean] the giraffe and the elephant decide/ed to go swimming. +C the elephant want/ed to go on the diving board. +C : she was run/ing over there. +C and she slip/ed. +C then she fell and bonk/ed her knee. +C the lifeguard came run/ing over. +C (he ask/ed her) he put on a bandaid for it. +C then he sat her down on the bench. +C (then he) then he told her to look at the sign/s. += [Eg:A2] += [Bg:A3] +C One day Elephant and Zebra[-:] (met) met at the swimming pool. +C : (um) Zebra had an airplane. +C Elephant grab/ed the airplane away from Zebra. +C (and she) and she accidentally drop/ed it in the water. +C then Zebra got mad at Elephant. +C then the lifeguard came. +C and (uh) the elephant said : I accidentally drop/ed : Zebra/z airplane in the water. +C the lifeguard try/ed to reach the airplane. +C but he could not. +C then another lifeguard came with a net. +C (and she h) and she pick/ed up the airplane. +C and Zebra had it back. +C and they could play with it again. += [Eg:A3] += [Bg:B1] +C (These) these two little animal/s are play/ing in a sandbox. +C and they are build/ing a sandcastle. +C and then : the rabbit pour/3s some sand on the sandcastle. +C and the sandcastle break|break[EW:breaks] and fall/3s down. +C and they have to build it up again. += [Eg:B1] += [Bg:B2] +C one day the rabbit and the dog (ment) went for a picnic together. +C and the rabbit was eat/ing everything like messy [EU]. +C (and when he was f) and when he was finish/ed : he was all full. +C and then he got a headache. +C and then the dog had to call the doctor. +C and the doctor came over. +C and the doctor : said stay still. +C and then he was all better again. += [Eg:B2] += [Bg:B3] +C one day the dog was : pull/ing a wagon with a balloon on it. +C and Rabbit want/ed it. +C and Rabbit (tied) try/ed to untie the balloon from the wagon. +C and the balloon float/ed away. +C and the dog got really mad at the rabbit. +C then they saw a balloon man. +C then the rabbit ask/ed for a balloon. +C and then the man said balloons five dollar/s. +C but they did not have enough money. +C (s) so they ask/ed[~!_laughs] the doctor. +C (and the doctor said) and the bunny said we do not have enough money to buy a balloon. +C so the doctor paid the balloon man for two balloon/s. +C and then they each had a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/652.slt b/data/ENNI_SALT/train/652.slt new file mode 100644 index 0000000000000000000000000000000000000000..bc22d734fc5bfd067241395e36bd708f50e7df18 --- /dev/null +++ b/data/ENNI_SALT/train/652.slt @@ -0,0 +1,78 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOE: 11/29/2000 ++CA: 6;1;28 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 652=CHI ++Tape Location: Disk L21, Track 107 += [Bg:A1] +C a giraffe and the elephant (want) were play/ing : ball. +C and (um) : the ball fell into the water. +C and the (um) giraffe : went in to get the ball. +C and then the giraffe gave it to the elephant. +C and (then um) : then they play/ed (um) : ball. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C (um) : the elephant and the giraffe want/ed to go in the pool[-:]. +C and the elephant was run/ing. +C and she (um) : was run/ing too fast. +C and then she fell and (hur) (hur) hurt her knee. +C and then the coach came. +C and then (um) a lifeguard put a bandaid on. +C and the coach (um) : help/ed her go on the bench. +C and then the coach was mad because the sign said no run/ing. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C (um) : the giraffe[-:] want/ed to fly his airplane. +C and he did. +C and then the elephant took it from him. +C and she threw it in the water. +C and : the giraffe was mad at her. +C and[-:] the coach : came. +C and the coach look/ed at it. +C and the lifeguard try/ed to get it. +C and the (um) : lifeguard (tr) could not get it. +C and then (um) this other : elephant : got (um) : a net. +C and : she got it. +C and : she gave it to the (um) : giraffe. +C and then : the giraffe was happy again. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C there was a dog make/ing (um) a sandcastle (and : a) and a bunny. +C (mmm) the bunny was (um) : take/ing the (s) sand[-:]. +C then he dump/ed it on the sandcastle. +C and[-:] the bunny : was (um) : surprise/ed. +C and : the dog was cry/ing. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C a dog and a bunny were go/ing to make a picnic. +C and the bunny : (um) was eat/ing. +C and the bunny was full. +C and he was dizzy. +C (his mo) : (the) : the bunny/z mom came. +C and : the dog was pull/ing the mom. +C and (the bunny[-:] : uh) : the mom : saw : the bunny. +C and then she point/ed to her head. +C and then the bunny and the mom went home. += [Eg:B2] += [Bg:B3] +C the dog and the bunny[-:] were go/ing (to) : to get (a) balloon/s. +C the bunny : was go/ing to get the balloon. +C the bunny was take/ing it off. +C and then : they were try/ing to get the balloon. +C and then : the dog was mad. +C and (um) : there is a man with balloon/s. +C and then (the bunny) the bunny bought one. +C and : he was get/ing out the money. +C and he did not have any money. +C and his mom came. +C and then (um : the) the bunny said to his mom : could you buy me a balloon? +C and then the mom did. +C and then the dog and the bunny had a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/653.slt b/data/ENNI_SALT/train/653.slt new file mode 100644 index 0000000000000000000000000000000000000000..904f6faf2259eeb0498001e508f1eb9ceb7fe354 --- /dev/null +++ b/data/ENNI_SALT/train/653.slt @@ -0,0 +1,99 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 12/23/1993 ++DOE: 6/9/2000 ++CA: 6;5;17 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 653=CHI ++Tape Location: Disk L16 Track 59 += [Bg:A1] +=C Once an elephant met a [~_I_forget_what_that_animal_is] [~_EXA:_what__do_you_think_it_is] giraffe [+_bch]. +C Once an elephant met with a giraffe. +C (the) the elephant was play/ing with his ballie. +C and then the elephant accidentally threw the ball into the water. +C and then the giraffe had to go swim in the water to get it. +C and then the elephant thank/ed (the um) : the : giraffe for get/ing it. +C and then : the elephant was very happy. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C Once upon a time (there a) there was an elephant and a giraffe. +C they were very happy to be together : at a swimming pool. +C the elephant want/ed to go swimming on the dive/ing board. +C but she trip/ed. +C (and) and the giraffe came run/ing after (her) her. +C (she) she had a scab on her knee. +C and she was cry/ing. +C the lifeguard came and saw it was just a bruise. +C (and) and her friend had to take her home. +C and she cry/ed mostly[EW:most] of the afternoon. +C the lifeguard put a bandaid on her. +C now she was all better. +C and she sat on a bench. +C and the lifeguard got mad at her. += [Eg:A2] += [Bg:A3] +C Once a giraffe met a[EW:an] : elephant. +C but : the giraffe like/ed : fly/ing stuff. +C and the : elephant did not like it. +C it made her dizzy. +C and then she just grab/ed it and try/ed (and) : make/ing it fly. +C but it fell into the pool. +C then the giraffe got mad at the elephant. +C and : they told the lifeguard. +C and the elephant told the lifeguard what have|have[EW:had] happen/ed. +C and then the lifeguard lean/ed : over the water and try/ed to get it. +C but he could not get it because he was too (b) far. +C but then a lady with a net (had) had : almost got it. +C and she probably said she would. +C (she p) she almost got it. +C (but) : but I think she did not. +C and she did[!] get it and gave it back to the : giraffe. +C the giraffe was happy at[EW:with] the elephant. += [Eg:A3] += [Bg:B1] +C Once a bunny (ma) met a baby dog. +C he want/ed to make a sandcastle just like the dog. +C and then he almost broke it by pour/ing the whole box of (ss) sand on the sandcastle. +C and then it was broken. +C and then the : dog start/ed cry/ing. +C and the bunny was : feel/ing really weird. += [Eg:B1] += [Bg:B2] +C once a bunny met the dog. +C they want/ed to have a picnic. +C but the bunny ate all the stuff : and had (a f) a tummyache. +C (but) and he fell down and hurt his tummy again. +C (and) and the dog ran and got : a doctor. +=C the doctor try/ed help/ing the [+_bch] [+/]^ +C www. += %exp: announcement over PA system comes on. +C (um) (he tr) the doctor try/ed[!] help/ing. +C but it did not quite work. +C but it did[!] work. +C and the bunny had to go home with the doctor. += [Eg:B2] += [Bg:B3] +C once : a bunny met a dog with a wagon with a (red um) red balloon. +C the bunny want/ed the red balloon. +C but the dog did not want to give it to him. +C he try/ed screw/ing it off : and try/ed cut/ing it off. +C but it still (stuck : to the red) sticked|stick[EW:stuck] to the red wagon. +C and then it flew away because he got it. +C and then the dog got really mad at the bunny. +C but the balloon man (with lot/s of balloon/s) with lot/s of red balloon/s (came) was there. +C (so) so he ask/ed for one balloon. +C and it was five cent/s. +C but he did not have any. +C so : they got really sad and wait/ed until (ah) their mommy came. +C and then their mommy : came. +C (and asked) and then they ask/ed him for (ten cent/s) [~_or] five cent/s. +C (and so) (and they) and the bunny told the whole story. +C (and) (and they) and she help/ed them : and gave them : some cents[EW:money]. +C www. += %exp: announcement over PA system comes on. +C and then they both got a balloon : from : their mommy. +C and they said thank you. += [Eg:B3] diff --git a/data/ENNI_SALT/train/654.slt b/data/ENNI_SALT/train/654.slt new file mode 100644 index 0000000000000000000000000000000000000000..39852042dee934d8ff72e56c7cb027fb863bfdc6 --- /dev/null +++ b/data/ENNI_SALT/train/654.slt @@ -0,0 +1,123 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 10/13/1994 ++DOE: 11/29/2000 ++CA: 6;1;17 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 654=CHI ++Tape Location: Disk L22, Track 2 += [Bg:A1] +C an elephant and a giraffe [EU]. +C and the elephant is : bounce/ing the ball[-:]. +C then the ball go/3s in the water[-:]. +C then the : giraffe jump/3s in the water and (start/3s swimming[-:]) : start/3s (sw) swimming. +C and the elephant is : like this [~_pointing_to_the_pictures_on__page]. +E remember I can not see the picture/s. +C then the : giraffe got the ball and pass/ed it back to the elephant. +C then she is so happy. += [Eg:A1] += [Bg:A2] +C I see the : elephant and the giraffe. +C and the (giras) : giraffe is all dry[-:]. +C then the[-:] elephant start/3s run/ing : look/ing at the giraffe. +C then she slip/3s on some water[-:]. +C and then she fall/3s on her knee and get/3s hurt[-:]. +C and then : one of (the : thing/s that) the guard/3s come|come[EW:comes] with a bandage[-:]. +C and then he put/3s it on. +C and she gots[EW:has] her eye/s close/ed[-:]. +C she is sit/ing on a bench[-:]. +C and : he told her : to look at that sign. +C (and sawed) and she sawed|see[EW:saw] no run/ing. += [Eg:A2] += [Bg:A3] +C he has a plane[-:]. +C (and) and she is talk/ing to him. +C and then he make/3s it fly. +C and then she is : look/ing at it. +C (and) : (and) and she never sawed|see[EW:saw] one before. +C then she grab/3s it from him. +C (and he is) and he say/3s hey[-:]. +C then she accident[EW:accidentally] drop/ed it. +C and it land/3s in the water[-:]. +C then he get/3s mad at the elephant. +C then the : guard : come/3s. +C (and she) and he see/3s the plane in the water[-:]. +C and the elephant is walk/ing. +C then she tell/3s (the) : the (s) guard[-:] (that) : what happen/ed. +C (and) and the giraffe is like just stand/ing look/ing at his airplane. +C then the : guard try/3s to get it. +C but he can not[-:]. +C and (then he) then the giraffe start/3s cry/ing. +C and he is on his knees[-:]. +C then a girl elephant come/3s with a net and : try/3s to get it out. +C and she gots|get[EW:gets] it. +C and she is : pull/ing[-:]. +C (and) and he is : start/ing to stop cry/ing [EU]. +C and then he stop/ed. +C and he is so happy. +C then he is hug/ing it. +C and the elephant is : like this [~_wraps_arms_around_self]. += [Eg:A3] += [Bg:B1] +C I see a rabbit[-:] and a dog[-:]. +C (and) : (and the) and (he) (she) the dog : made a sandcastle. +C and the rabbit want/3s to help too[-:]. +C (then he puts) : then he get/3s the bucket and fill/3s it up with sand. +C (then he says) and then he is go/ing to dump it on the sandcastle. +C (then) (then the sandcas) (then all the sand is : on) (and all the san) (and all) and the sandcastle is burry/ed. +C (and the dog is) : (and the) : and the : rabbit is like : with his mouth open : look/ing at the sandcastle. +C the dog is : look/ing at the sandcastle on his knees[-:]. +C then the dog has to make the sandcastle again. +C and the rabbit is stand/ing look/ing : up. +C and the dog is cry/ing. += [Eg:B1] += [Bg:B2] +C I see a dog in the forest with a picnic basket. +C and the same with the rabbit. +C and the dog is like : look/ing to see how far. +C and (then) : then when the dog get/3s there : the rabbit is there[-:]. +C (then the dog) : then the : rabbit finish/ed eat/ing. +C and he is : pat/ing his tummy : with his mouth open. +C and the dog : is just eat/ing a sandwich. +C (then he) then the rabbit get/3s sick. +C (and) and then the dog stop/3s drink/ing and stop/3s eat/ing. +C then he run/3s to a nurse[-:] : and tell/3s the nurse[-:]. +C (then) (then sh) (sh) then the dog (pull/ed[-:]) pull/ed the nurse over. +C (and he che) and the nurse check/ed : at the rabbit [EU]. +C and then he feel/3s better. +C and the dog is stand/ing. += [Eg:B2] += [Bg:B3] +C I see a dog. +C and : the dog (w) *is hold/ing a wagon [EU]. +C and a balloon is tie/ed to the wagon. +C and the rabbit is : wave/ing. +C and the dog is look/ing at the rabbit. +C then the : rabbit say/3s what a nice balloon. +C and he is : get/ing his (con) hand close to it. +C and (then the) (then) then the dog is look/ing at the balloon/s smile/ing. +C then the rabbit untie/3s it. +C and the dog stop/3s smile/ing. +C and he go/3s [~_gasps]. +C then the balloon go/3s up up in the sky[-:]. +C and (then it is get/ing clo) then it : disappear/ed in the sky. +C and the : dog is so mad at the rabbit. +C (then they went to buy an) then the rabbit went to buy a new[!] balloon. +C and he said : can I have one of those balloon/s? +C and he said five cent/s. +C and he did not have no[EW:any] money. +C and then the rabbit had an idea. +C but he was sad. +C (and) : and then he : (l) turn/ed around and went walk/ing. +C and then he got the nurse[-:]. +C and (then the) : then (it th) (he was) (he got it) (he) : he was still walk/ing. +C and then he got the nurse[-:]. +C and then he said : (I letted go of t) (of her) I untie/ed her : balloon! +C and then it went up up in the sky. +C and then I can not buy a new one because I have no money. +C (then) : (then she) (then) : then she buyed|buy[EW:bought] two[!] balloon/s one for each. +C (and[-:] the do) one for the dog and one for the rabbit. +C then they are so happy now. += [Eg:B3] diff --git a/data/ENNI_SALT/train/656.slt b/data/ENNI_SALT/train/656.slt new file mode 100644 index 0000000000000000000000000000000000000000..629b2bfbb13dfd908d95d94869e96bea25eedca3 --- /dev/null +++ b/data/ENNI_SALT/train/656.slt @@ -0,0 +1,97 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 3/27/1994 ++DOE: 11/30/2001 ++CA: 6;8;1 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 656=CHI ++Tape Location: Disk L22, Track 20 += [Bg:A1] +C once upon a time[-:] there was a donkey and a[EW:an] : elephant. +C they had a new ball and play/ed on the beach. +C the ball fell in the water. +C the[-:] donkey went to get it. +C it was : elephant/z (b) : ball. +C (s) and donkey catched|catch[EW:caught] it. +C elephant said thank you. += [Eg:A1] += [Bg:A2] +C once upon a time there was[-:] a donkey and a[EW:an] elephant (that) : that play/ed[-:] : on : the beach. +C and there was no[-:][!] run/ing. +C elephant : try/ed to jump into the pool. +C but she could not. +C she ran[-:]. +C but that was against the law. +C she fell[-:] down (and) : and scrape/ed her knee. +C donkey came run/ing and call/ed : her husband. +C she cry/ed and cry/ed and cry/ed. +C good thing : her husband gave her a bandaid. +C she sat on the bench and smile/ed[-:]. += [Eg:A2] += [Bg:A3] +C once upon a time there was a donkey and an elephant. +C the donkey had an airplane that was attach/ed to a cord. +C elephant took it right out of his hand/s. +C elephant drop/ed it in the water. +=C (and that was) : and that[-:] was all [+_bch]. +C donkey was mad. +C so he : grinch/ed his face at her. +C good thing elephant[!] call/ed her friend. +C elephant cry/ed can you please get the airplane. +C I cannot get it. +C he try/ed. +C he stretch/ed hisself[EW:himself]. +C (and) : and he try/ed[-:] to get it. +C he could not get it. +C so donkey cry/ed. +C good thing another[!] girl came along with a net and caught it. +C (she) : she caught it from the water. +C and it was dry. +C he never bring|bring[EW:brought] his airplane back to the beach. +C thank you. += [Eg:A3] += [Bg:B1] +C once upon a time there was : a bunny and a dog. +C they play/ed in the sandbox all day. +C they made a sandcastle. +C and then : they made another. +C the sandcastle broke. +C they cry/ed. += [Eg:B1] += [Bg:B2] +C once upon a time there was (a bunny) : [~_I_mean] a bunny and a dog. +C they were go/ing on a picnic through the wood/s. +C they laid out their blanket : and sat down : got their food out : and took a bite. +C rabbit was full[-:]. +C doggy was not[-:]. +C rabbit got sick. +C and dog did not. +C (rabbit/z mom) : rabbit/z doctor[-:] was there stand/ing. +C dog went to get some help. +C (the rabbit) the doctor rabbit would not come[!]. +C so : dog pull/ed her. +C uhoh this : bunny is very sick. +C we will take him to the doctor/z office. += [Eg:B2] += [Bg:B3] +C once upon a time there was a rabbit and a dog : who went for a party that had a balloon. +C they tie/ed the balloon onto their red wagon. +C later it fell off. +C so they tie/ed it on again. +C then the balloon fell off[!] and went up into the air. +C they shout/ed help. +C the balloon was way[!] up in the sky. +C and dog was mad. +C good thing they saw a balloon man. +C the rabbit said can I please have : a balloon? +C he said : five dollar/s. +C and he had none. +C (so the r) so the (b) balloon man said I guess you can not buy one. +C the doctor : was : over on the street/s : look/ing around to see for a treat [EU]. +C rabbit said he will not give me[:_gimme] a balloon. +C so : the doctor gave him some money. +C and they got two balloon/s. +C they said hurray[-:]! += [Eg:B3] diff --git a/data/ENNI_SALT/train/657.slt b/data/ENNI_SALT/train/657.slt new file mode 100644 index 0000000000000000000000000000000000000000..bc57b907eb2721bb6fc68933fac621ec7d545054 --- /dev/null +++ b/data/ENNI_SALT/train/657.slt @@ -0,0 +1,82 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 5/13/1994 ++DOE: 11/29/2000 ++CA: 6;6;16 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 657=CHI ++Tape Location: Disk L21, Track 54 += [Bg:A1] +C he is play/ing ball with her. +C the ball fall/3s down[-:]. +C he is go/ing to jump in. +C (he) he jump/ed in. +C and he got the ball. +C he gave the ball to her : the elephant. +C then the elephant : was in love with him. += [Eg:A1] += [Bg:A2] +C they are go/ing to the diving board. +C she want/3s to run to the diving board? +C she trip/3s : and fell[-:] [EU]. +C and she got hurt. +C and she got a bruise[-:]. +C and the lifeguard gave her a bandage. +C and she sat down. +C and the lifeguard was mad. += [Eg:A2] += [Bg:A3] +C [~_(o)kay] he is go/ing to play with his airplane with her. +C he is play/ing with it. +C she take/3s it. +C and she play/3s with it. +C then she : throwed|throw[EW:threw] it. +C and it fell in the water. +C then he got mad. +C then the lifeguard came. +C then she told him : the matter [EU]. +C and he try/ed to reach it. +C but he could not. +C and there was no way how[-:] : to [EU]. +C but she[-:] got the : stick that : bring/3s thing/s out. +C and she brought it out. +C she brought it out. +C and he want|want[EW:wants] [-:] to play with it again. +C and he play/ed with it. += [Eg:A3] += [Bg:B1] +C the rabbit and the dog want to make a sandcastle. +C and he start/ed shovel/ing. +C and he start/ed build/ing. +C and he dump/ed [EU]. +C and it mess/ed up. +C then he try/ed to rebuild it. +C but : (i) he could not. += [Eg:B1] += [Bg:B2] +C they were go/ing to have a picnic. +C and the : rabbit brought lot/s of stuff instead of the dog [EU]. +C but then he got a stomachache. +C then : he got dizzy. +C (then he call) then he brought the nurse to[-:] help him. +C then the nurse was go/ing to help him. +C then she help/ed him. +C then he walk/ed with him back. += [Eg:B2] += [Bg:B3] +C he was go/ing to have a balloon sale. +C and the dog want/ed one. +C and the rabbit took it off. +C but then he try/ed to reach it the dog [EU]. +C then he got mad[-:]. +C then he was go/ing to get a balloon [-]. +C then he want/ed the twenty five cent one [EU]? +C (um) but he could not get it. +C then he ran : off[-:]. +C (then he was go/ing to get another) then he was go/ing get the nurse. +C then he told[-:] her. +C then he gave her it. +C then they got balloon/s. += [Eg:B3] diff --git a/data/ENNI_SALT/train/658.slt b/data/ENNI_SALT/train/658.slt new file mode 100644 index 0000000000000000000000000000000000000000..f98d1f036a06b23ce259a8484c50174fc8e8f85a --- /dev/null +++ b/data/ENNI_SALT/train/658.slt @@ -0,0 +1,130 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 7/31/1994 ++DOE: 11/30/2000 ++CA: 6;3;30 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 658=CHI ++Tape Location: Disk L22, Track 27 += [Bg:A1] +C the (gir) the giraffe and a[EW:an] elephant [EU]. +C and the elephant is grab/ing a ball (from his ba) from this tube. +C (the : elephant[-:] uh) the giraffe put it in the water. +C and the elephant is : sad. +C the[-:] giraffe jump/ed in the water. +C and the elephant is go/ing like [~_hands_on_his_cheeks]. +C and he was try/ing to get the ball. +C he is swim/ing. +C the (um) giraffe[-:] got (the : uh) the ball. +C and he gave it to the elephant. +C (the eleph) the giraffe is like stand/ing like this [~_hands__on_his_hips]. +C and the : (um) elephant is go/ing like [~_imitates_hugging_the__ball] with the ball. += [Eg:A1] += [Bg:A2] +C they are look/ing in the pool. +C the elephant is point/ing to the diving board. +C and the[-:] giraffe has a towel. +C the elephant slip/ed. +C and the giraffe is run/ing. +C (the giraffe fell[-:] in the) [~_no] the elephant fell in. +C and the giraffe is run/ing still. +C and it is (the) the lifeguard is run/ing to her [EU]. +C (and) and it say/3s no run/ing. +C the[-:] lifeguard put a bandaid on. +C and the (um) elephant was like [~_look_of_pain_on_his_face]. +C (and the) (uh) and the lifeguard put (um) : her on the bench. +C and the lifeguard point/ed to the (um) no run/ing sign. +C and the elephant is like [~_funny_look_on_face]. += [Eg:A2] += [Bg:A3] +C (the giraffe gots[EW:has]) [~_no,_yeah] the giraffe gots[EW:has] a plane. +C and he was go/ing like this [~_frowns]. +C and the[-:] elephant is go/ing like [~_funny_look_on_face]. +C and the giraffe : *is swing/ing it around [EU]. +C (and the gir) and the (um) elephant is like [~_facial__expression]. +C (and the elephant is) and the elephant grab/ed it away from him. +C and (um she got) (she) the elephant gots[EW:has] the airplane. +C and she is hold/ing it. +C and the giraffe is like [~_facial_expression]. +C (and : the gir) and the elephant drop/ed it in the[-:] pool. +C and the : giraffe is like [~_mad_face]. +C and the elephant is like [~_scared_look]. +C and the giraffe is like [~_mad_look]. +C and the elephant is like [~_scared_look]. +E remember I can not see the pictures so you have to tell me the story. +C (he is) : (uh the lifeguard) [~_no,_yeah] the lifeguard (he is um) : he is like at the edge? +C he is go/ing like this [~_facial_expression]. +C and (um the gir) the elephant is like [~_facial_expression]. +C and then the : giraffe is[-:] just stand/ing there. +C and then the (um) lifeguard is (like) go/ing like [~_facial_expression]. +C and the elephant is like [~_facial_expression]. +C and the lifeguard is try/ing to get it. +C (and the : giraffe is) : and the : giraffe : is like (cry) on his knees. +C and he is like cry/ing. +C and the elephant is like [~_facial_expression]. +C and the lifeguard is like [~_facial_expression]. +C (and) and this other elephant she gots[EW:has] this thing? +C and she is go/ing like this [~_reaching_with_arms]? +C and she is go/ing to [:_gonna] get it. +C and she got it. +C and then (the) (she) (he) the[-:] (um) elephant gave it to the giraffe. +C and then the giraffe is like [~_happy_expression]. +C and the elephant is like [~_happy_expression]. += [Eg:A3] += [Bg:B1] +C the[-:] bunny is play/ing. +C (with a) he see/3s another bunny. +C now they are start/ing to play together. +C now (they are) like (um p) (the other bunny) the (b) other bunny is put/ing sand somewhere. +C (the other bunny is um) the : sand fell on the castle : I think. +C and the other bunny is try/ing to fix the castle. += [Eg:B1] += [Bg:B2] +C (th) (the um) : the bunny see/3s another bunny with a basket. +C they are eat/ing (at) at a picnic place. +C the[-:] bunny is full. +C and he is like [~_blows_up_cheeks]. +C and he is tap/ing his tummy because like : his tummy hurt/3s. +C and then[-:] these swirl/s come (on) (out of his head) : on top of his head actually. +C and then the other bunny (um) : see/3s the doctor and run/3s to him : there. +C and (the other bunny) (n) the same bunny (um) : not the sick one (uh) : drived|drive[EW:drove] (the um) : the[-:] doctor to the (b) other bunny. +C and then the doctor was like : point/ing. +C and : the other bunny was like [~_points_to_picture_in_book]. +E remember I can not see the picture. +=C I know [+_bch]. +C yeah he was like that[!]. += [Eg:B2] += [Bg:B3] +C the (b um) bunny see/3s the other bunny with the wagon and a balloon. +C the other bunny (i) is go/ing like this [~_motions_with_arm_in__the_air] to the string. +C he is try/ing to get it. +C he is try/ing to untie it. +C (the[-:]) (there) : he (uh um) let it go. +C and it is float/ing up. +C and the other bunny (with) : (that one) (that) that is like : try/ing to get it [EU]. +C and the other bunny is (w) like that [~_points_to_the_picture__in_storybook]. +C (the) the bunny is like this. +C and the other bunny is like [~_pointing_to_pictures_and_making__faces]. +E remember I can not see the pictures. +=C I know [+_bch]. +E so you have to tell me the story. +=C I know that is what I am [+_bch]. +C and there is this guy with (um) balloon/s. +C and : the[-:] bunny is look/ing at him. +C but the other bunny is mad with the wagon [EU]. +C (and the w) and now the bunny without the wagon is (try) go/ing to[:_gonna] buy a balloon. +C (an) but (the other) the one with the wagon : is : like behind him right there. +C (na) (and he do/3s not) the (one) one that he pick/ed (ha) is five cent/s. +C and he do/3s not have any money. +C (so like) and both of them came to the man. +C and the man was stand/ing. +C (and the rab) and the bunny saw (the) the doctor. +C the : bunny (ask/ed the doctor to) : he was check/ing his pocket/s. +C and he was show/ing the pockets to : the doctor. +C and (um) : he point/ed to the : man and (um) : to the doctor. +C and the doctor is like [~_puts_head_to_the_side__trying_to_look_uninterested]. +C and the doctor pay/3s money. +C and now the both of the bunny/s got[EW:have] : balloon/s [EU]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/659.slt b/data/ENNI_SALT/train/659.slt new file mode 100644 index 0000000000000000000000000000000000000000..d24aec1a60b62467ae196dbbbfbb872a9102816d --- /dev/null +++ b/data/ENNI_SALT/train/659.slt @@ -0,0 +1,83 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 12/18/1993 ++DOE: 11/29/2000 ++CA: 6;11;11 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 659=CHI ++Tape Location: Disk L21 Track 64 += [Bg:A1] +C (um the giraffe and the elephant) the elephant is (playing) (juggling) (jug um) [-:] : dribble/ing (on[-:] the sss) on the sidewalk. +C and the giraffe see/3s her. +C and : then I think it got out of control and fall|fall[EW:fell] into the water. +C and the giraffe had to swim for it. +C and giraffe got it. +C and : then the elephant was happy play/ing with it. += [Eg:A1] += [Bg:A2] +C (um) : the giraffe and the elephant want to go swim. +=C and : oh that is it [+_bch]. +C and (giraffe) the elephant went to run. +C and : the giraffe just wait/ed there : smile/ing? +C and then the giraffe walk/ed. +C and the elephant ran. +C and she slip/ed : and hurt her knee. +C there is[-:] no run/ing. +C and the lifeguard came : (with) when the elephant was cry/ing. +C (um) the lifeguard see|see[EW:saw] if she was okay and (gave) put on her (a) a bandaid. +C and then she was all[-:] good. +C and the lifeguard show/ed : her no run/ing. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C (um) the giraffe brought a[EW:an] airplane : and met the elephant at the water. +C and then giraffe was fly/ing with it. +C and then the elephant took it : and flied|fly[EW:flew] it into the water. +C and then the giraffe got real mad at her. +C and the : (um) : lifeguard saw. +C and the elephant : told him : something. +C and the lifeguard reach/ed over the pool and try/ed to get it. +C and then the lifeguard did not know what to do. +C a lady lifeguard got a net : and pull/ed it in with that net. +C and (then giraffe) then the giraffe was really happy. +C and he hug|hug[EW:hugged] the airplane. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C (um) : this rabbit is : go/ing to : play in the sand with (this dog) the girl dog. +C (um) and they made a : castle. +C and[-:] (uh) : the rabbit is play/ing (with sand) (in) (uh hi) this bucket and : his shovel : with sand in it. +C and then the rabbit pour/ed the sand : on the dog/z castle. +C and it : broke. +C and they (tr) try/ed to make : it : again. += [Eg:B1] += [Bg:B2] +C (um the) this dog[-:] and the rabbit : see each other. +C and they both have a picnic basket. +C and I think they are go/ing to : a picnic. +C (um) and the dog is (sorta um) (I think ready) the rabbit [~_I_mean] is ready to eat. +C and : when he is done he is[-:] : full. +C (um) [-:] and he is dizzy I think? +C and then the : dog ran (to) I think (um) to this girl rabbit I think : the doctor. +C and the dog pull/ed : on : her jacket. +C and then (f) when she got there : she bent down to help (the dog) the[-:] rabbit. +C and then she went : with[-:] the rabbit home I think. += [Eg:B2] += [Bg:B3] +C (um) the[-:] : dog : see/3s the rabbit. +C and : the dog has a[-:] wagon with a balloon. +C the rabbit see/3s the balloon. +C he (uns) he is try/ing to untie it. +C and he untie/3s it. +C it float/3s away. +C then the : dog get/3s real mad at him. +C and then (the dog : see/3s : more balloon/s) [~_no_I_mean] the rabbit see/3s more balloon/s. +C and then the rabbit ask/3s : can I have a[-:] : balloon? +C and : he does not have five cent/s. +C (and) : and[-:] then[-:] they are : disappoint/ed I think. +C and the rabbit went to see[-:] a girl rabbit. +C and : the rabbit is try/ing to get the girl rabbit to go with him : to pay the[-:] balloon man. +C and (when she paid : he got) when she paid[-:] ten cent/s for : two (um) she got two[-:] balloon/s for each. += [Eg:B3] diff --git a/data/ENNI_SALT/train/661.slt b/data/ENNI_SALT/train/661.slt new file mode 100644 index 0000000000000000000000000000000000000000..7501b604d927c0f1a7aaa25bffb18d4432ec2b3b --- /dev/null +++ b/data/ENNI_SALT/train/661.slt @@ -0,0 +1,81 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 4/03/1994 ++DOE: 11/29/2000 ++CA: 6;7;26 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 661=CHI ++Tape Location: Disk L21, Track 68 += [Bg:A1] +C the giraffe was go/ing to[:_gonna] take a swim with the elephant. +C (um) the elephant drop/ed the ball. +C the giraffe (sw) is swim/ing to get it. +C the giraffe : give/3s the ball to the elephant. +C (the elephant t) the elephant get/3s the ball. += [Eg:A1] += [Bg:A2] +C the giraffe and the elephant are go/ing to [~_gonna] take a swim again. +C the elephant is (run/ing) : (well not) about to run. +C she is run/ing. +C she hurt/3s her knee. +C the lifeguard come/3s. +C (she puts a ban) the lifeguard put/3s a bandaid on her knee. +C and then : (she is o) she is okay. +C the lifeguard is tell/ing her not to run in the pool again. += [Eg:A2] += [Bg:A3] +C the giraffe and the elephant (are g) (want to take a swi) [~_well] they are not take/ing a swim. +C but they are by the pool with an airplane. +C (um) the giraffe is play/ing with the airplane. +C the elephant take/3s it. +C she throw/3s it in the pool. +C or it drop/3s. +C it is : sink/ing. +C and the giraffe is mad. +C the lifeguard : is talk/ing to them. +C the lifeguard is talk/ing to them again. +C the lifeguard try/3s to get it. +C (they are talk/ing) [~_I_mean] they are sad. +C (a women ca) a women (came) come/3s with a net. +C she pick/3s it up with the net. +C the giraffe (hug/3s it) [~_I_mean_yeah] now he hug/3s it. +C she is give/ing it to her. +C and now (h) he hug/3s it. += [Eg:A3] += [Bg:B1] +C the rabbit and it look/s like : a dog [EU]. +C they are play/ing in the sandbox. +C and they made a castle. +C the rabbit is (make/ing) dig/ing out of the bucket. +C the rabbit is pour/ing it on the castle. +C the castle has a big pile of sand on it. +C (he try/3s to make) she try/3s to make it again. += [Eg:B1] += [Bg:B2] +C (they are go/ing for a picnic again) [~_well] they are go/ing for a picnic [~_though]. +C (they are eat/ing) [~_I_mean] the rabbit is eat/ing all the food. +C (he) he has a stomachache. +C he is get/ing dizzy. +C he run/3s for his mom. +C she pull/3s her. +C he is crazy : still[~!_laughing]. +C then he is better. +C and his mom take/3s him home. += [Eg:B2] += [Bg:B3] +C the dog is pull/ing : a wagon : with a balloon on it. +C (the rab) (the rabbit look/ed) the rabbit look/ed at the balloon. +C he (is) try/3s to tie it off. +C it go/3s up in the air. +C it is totally up now. +C then they see a rabbit with lot/s of balloon/s. +C they ask for one. +C it is five cent/s. +C they are : sad[~!_laughing] that they did not get one. +C then : the rabbit/z mom is over there. +C (she) he ask/3s [~_pronounced_'askses'] her (for a balloon) : for money for a balloon. +C she give/3s : the balloon person money. +C (they both) they both get a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/663.slt b/data/ENNI_SALT/train/663.slt new file mode 100644 index 0000000000000000000000000000000000000000..afe7249a2d58af6ecd9d375f517dfb5649a0c3f4 --- /dev/null +++ b/data/ENNI_SALT/train/663.slt @@ -0,0 +1,76 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 3/15/1994 ++DOE: 11/29/2000 ++CA: 6;8;14 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 663=CHI ++Tape Location: Disk L21, Track 78 += [Bg:A1] +C once there were[EW:was] a giraffe and an elephant. +C they were play/ing with the ball. +C and it fell in the water. +C the giraffe try/ed to go get it. +C and he did[-:]. +C and the elephant : was happy. += [Eg:A1] += [Bg:A2] +C once there were[EW:was] a giraffe and an elephant. +C and they want/ed to go on the diving board. +C they ran[-:] to it. +C and the elephant slip/ed and scrape/ed her knee[-:]. +C the lifeguard came. +C (and) (and she pu) and he put a bandaid on it. +C and she was all better. +C and (then she had) (and then she had to s) and then she sat down[-:]. += [Eg:A2] += [Bg:A3] +C once there were[EW:was] : an elephant and a giraffe. +C and the giraffe had an airplane[-:]. +C and the elephant took it. +C and it fell in the water. +C the giraffe was mad at the elephant. +C and then the lifeguard came[-:]. +C (he) (the elephant said to the : lifeguard) he try/ed to reach it. +C but he could not. +C then another lifeguard came[-:] : with a net. +C she scoop/ed it out. +C and the giraffe was happy. += [Eg:A3] += [Bg:B1] +C once (there were : some) (there was) (there were bunny/s) there were[EW:was] a bunny and a dog. +C (and they were) and the dog was build/ing a sandcastle[-:]. +C and the bunny got some sand[-:]. +C and he pour/ed it on the castle[-:]. +C and it broke. +C the dog try/ed to make it again[-:]. += [Eg:B1] += [Bg:B2] +C once there was a bunny and a dog[-:]. +C they went for a picnic. +C the bunny ate all the stuff. +C and he got a tummyache. +C then the mom came. +C (and) and then she told : that the bunny (was) had a (tum) stomachache [EU]. +C and the mom try/ed to fix it. +C and she did. += [Eg:B2] += [Bg:B3] +C there was a dog and a rabbit. +C and they had a balloon. +C and the bunny want/ed to have it. +C the bunny try/ed to take it off[-:]. +C and he did. +C and it flew away[-:]. +C the dog was mad[-:]. +C they saw some more balloon/s[-:]. +C they decide/ed to buy one. +C but it was five[-:] dollar/s. +C and they wait/ed. +C and then the mom came. +C and then he ask/ed (if they) (if she) if she had any money. +C and they got one. +C and then they had their own balloon/s. += [Eg:B3] diff --git a/data/ENNI_SALT/train/664.slt b/data/ENNI_SALT/train/664.slt new file mode 100644 index 0000000000000000000000000000000000000000..3570d958a1744e222bf54fd6baf7fe92cfa0db09 --- /dev/null +++ b/data/ENNI_SALT/train/664.slt @@ -0,0 +1,132 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 5/06/1994 ++DOE: 4/18/2001 ++CA: 6;11;12 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 664=CHI ++Tape Location: Disk L27, Track 65 += [Bg:A1] +C once upon time there was a : giraffe : with two leg/s and[-:] an elephant. +C and[-:] : they were both stand/ing on two leg/s which they were suppose/ed to be stand/ing on four. +C the elephant was use/ing : one to balance and : the other one to bounce the ball. +C the giraffe was watch/ing[!] : just as tall as he could like this [~__stands_on_one_leg_with_arms_above_head]. +C and then[!] the ball splash/ed into the water. +C the : giraffe with two leg/s swam[!] out to get the ball : and then gave (it) the ball to the elephant : with two leg/s. +C and the elephant hug/ed it : so[-:] much. +C and then she start/ed bounce/ing it again. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C once upon a time there was : an elephant and a giraffe. +C but : there was another elephant too somewhere. +C and they saw a diving board in a swimming pool! +C they thought how fun it would be to go swim/ing. +C but then : the elephant ran so[!] fast in : that she went to the bottom and scrape/ed her knee and swam back up. +C she was run/ing : around : because she was hurt [~_okay]. +C and she had scrape/ed her knee. +C (two elephant/s : went to help) : [~_I_mean] an elephant and a giraffe went to help. +C (and : one of) and the other elephant gave : her a bandage. +C and the other elephant : (was act) was not just a[EW:an] ordinary elephant. +C know what it was? +C *a lifeguard [EU]. +C and then they : try/ed walk/ing. +C and : she was sit/ing on the bench. +C and : the lifeguard said no run/ing! +C and he was point/ing to the sign : that said no run/ing. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C once upon a time there was a giraffe and an elephant. +C and there was the lifeguard : on the side. +C the : giraffe was play/ing with his airplane. +C the : elephant : was : watch/ing in surprise. +C and she ask/ed could I try? +C and he said no! +C but the elephant snatch/ed[-:] it. +C and then she threw[!] it. +C and guess where the airplane land/ed? +C in the water. +C they call/ed the lifeguard. +C and : the giraffe was mad[-:]. +C the lifeguard came and saw the airplane. +C and : the elephant said I accidentally threw : the giraffe/z airplane inside the water. +C the lifeguard try/ed to get it with his hand/s. +C but nope : he need/ed a net. +C (so he went) so he went to get a net. +C (and then) : (and then he came back with a n) and there was a woman[!] who came with a net. +C and : then[!] she[!] got the airplane. +C the : lady try/ed to get it out. +C but it was too hard. +C but then she finally got it out. +C and : the giraffe : like/ed it. +C and : they live/ed happily ever after. +C and : the : giraffe : like/ed : his airplane the best. +C and he would never let anyone try it again. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C once upon a time : there was a dog and a bunny. +C and they were build/ing a sandcastle. +C then (the) : the[-:] dog was pat/ing it. +C and the : rabbit was build/ing it. +C then[-:] the rabbit pour/ed[-:] (re) lot/s of sand onto the sandcastle. +C and he wreck/ed[!] the sandcastle by do/ing that. +C and he (s) said oh no! +C the dog was cry/ing. +C and : the rabbit was like [~_makes_facial_expression] : with his ears down. += [Eg:B1] += [Bg:B2] +C once upon a time there was a dog and a rabbit once again. +C (and then the rab) and they are both go/ing : to hunt for easter egg/s : outside! +C they found a picnic. +C and they wonder/ed who[EW:whose] it was. +C they never knew. +C (su) so they thought it was for them. +C and they ate so so much : that the rabbit/z[-:] tummy was a big ball like a cannon ball. +C and the dog was still eat/ing. +C the rabbit felt dizzy. +C and he : did not : look : like he was feel/ing well. +C the : dog look/ed[!] at him. +C and[-:] the : rabbit look/ed at him back. +C the dog was : run/ing to his mom. +C and : the mom heard him. +C the mom went to see. +C and then[!] : he pull/ed her so : much. +C and then : she was actually a doctor! +C and she help/ed : the rabbit. +C [~_sighs] the rabbit was feel/ing much better. +C and they live/ed happily ever after. += [Eg:B2] += [Bg:B3] +C once upon a time there was a little doggy and a rabbit. +C and[-:] the : dog was push/ing : a wagon with a balloon[!] in it. +C the rabbit ran by. +C and : he saw the balloon. +C he said where did you get that? +C he said : I got it from this man! +C let us go and get one for me he said. +C okay. +C but you do not know where it is. +C well can not you show me (he) the rabbit ask/ed [EU]? +C (so) : but the rabbit : just stole his[!]. +C so the : dog had to go back to the man and (got) get his[!]. +C but : now they need to get two : because : guess what? +C the other[!] balloon flew in! +C the : puppy was mad[-:]. +C and the rabbit : was : discourage/ed. +C then they went : to the bunny rabbit so they could get : new balloon/s[!]. +C then the rabbit saw : which one he[!] want/ed. +C (and[-:] he did not) but he did not have any money. +C (and : the balloon even said) and it said balloon/s five cent/s. +C and (the puppy/z) : the puppy and the rabbit were sad[-:] . +C but then : the rabbit went to a doctor. +C and she ask/ed : the doctor if : she could give them some money. +C and he said to the : doctor : that mean old guy will not let us have a balloon! +C (they are all eight cent/s) [~_I_mean] they are five cent/s. +C so the doctor gave : the man : five cent/s each for the puppy and the[-:] : rabbit. +C and they both had a balloon of their own. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/665.slt b/data/ENNI_SALT/train/665.slt new file mode 100644 index 0000000000000000000000000000000000000000..04463e594bdc23f39143d7d9bf7dd11266977f32 --- /dev/null +++ b/data/ENNI_SALT/train/665.slt @@ -0,0 +1,79 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 1/19/1994 ++DOE: 11/29/2000 ++CA: 6;10;5 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 665=CHI ++Tape Location: Disk L21, Track 82 += [Bg:A1] +C (she) : she is[-:] by the pool. +C and she see/3s her friend. +C and she get/3s scare/ed because there is a ball in the water. +C then : her friend : go/3s into the water and get/3s it : because she drop/ed it. +C and then she got it back. +C (and then) and then she is happy. += [Eg:A1] += [Bg:A2] +C she is by the : pool. +C (um) she want/3s to go in it. +C and she is[-:] run/ing. +C and she get/3s a ball. +C and then she fall/3s[-:]. +C and then she get/3s a bandaid. +C and then she sit/3s on a bench. +C and the guy is say/ing no run/ing. += [Eg:A2] += [Bg:A3] +C her friend is hold/ing an airplane. +C and : he is show/ing her what it can do. +C and she want/3s to try it. +C but then it fall/3s in the water. +C and then he get/3s angry. +C (and) and then the guy get/3s mad because there is a toy in the (rw) water. +C and then : she is tell/ing : him : what she was try/ing to do. +C and then he try/3s to get it. +C but he do/3s not get it. +C and[-:] a girl (with a net) has a net. +C and she is like I[!] could probably get it. +C and then she get/3s it. +C and she give/3s it to : the girl/z friend. +C and (he) he is hug/ing it. += [Eg:A3] += [Bg:B1] +C (they) : they are play/ing in the sand. +C and the bunny has a shovel. +C and they make a castle. +C and he dump/3s sand[-:] on it. +C and then it fall/3s[-:]. +C and then they have to build it again. += [Eg:B1] += [Bg:B2] +C they[-:] both have basket/s. +C and they are walk/ing. +C and they are go/ing to[:_gonna] have a picnic together. +C and then : they get full. +C and he get/3s dizzy too[~!_laughing]. +C and then the doctor was walk/ing by. +C and (the) (the) his friend : call/3s the doctor because the guy is (on the carpet) on the blanket. +C and then the doctor (go/3s t) go/3s to check him. +C then he make/3s him better. += [Eg:B2] += [Bg:B3] +C (um) : the guy is pull/ing a wagon. +C and his friend see/3s him : with a balloon [~_laughs]. +C and then he like/3s the balloon. +C and he is untie/ing it[-:]. +C (and then) and (it) then it go/3s away. +C and then : he get/3s : mad. +C and then they see the guy with more balloon/s left. +C and he give/3s one to him. +C and it says five cent/s on it : (cause). +C and then he doe/3s not want to[:_wanna] get it. +C (um) : and then they go away. +C and then he ask/3s the doctor if he can get one with five cent/s. +C and[-:] then he get/3s five cent/s to get two balloon/s for both of them. +C and then[-:] they are both happy. += [Eg:B3] diff --git a/data/ENNI_SALT/train/666.slt b/data/ENNI_SALT/train/666.slt new file mode 100644 index 0000000000000000000000000000000000000000..c4e6333fa796ad349b6010847d805e5649f7acdb --- /dev/null +++ b/data/ENNI_SALT/train/666.slt @@ -0,0 +1,79 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 5/03/1993 ++DOE: 3/9/2000 ++CA: 6;10;6 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 666=CHI ++Tape Location: Disk M3 Track 94 += [Bg:A1] +C once upon a time there was a[EW:an] elephant and a giraffe. +C : the elephant had a ball. +C : it fell in the water. +C : (th) the[-:] giraffe went (uh) in and swam to it : and gave it back to the elephant. +C and the elephant took it away (from the cow) from the[-:] : giraffe. += [Eg:A1] += [Bg:A2] +C once upon a time there was : an elephant and a giraffe. +C they were : at : a pool. +C : the elephant (ra) (ran) : ran. +C : and she slip/ed. +C she stub/ed her knee. +C and the giraffe came run/ing. +C : (the) and the giraffe call/ed the lifeguard. +C the lifeguard put a bandaid on the elephant/z knee. +C and she felt all better. +C then the lifeguard show/ed her the sign : that said no run/ing. += [Eg:A2] += [Bg:A3] +C once there was a[EW:an] elephant and a giraffe. +C the giraffe had a plane. +C : the elephant took it away from him. +C and it fell in the water. +C the giraffe got mad at the elephant. +C the lifeguard came. +C the elephant told the lifeguard something. +C the lifeguard try/ed to reach (in it) : (i) in to get it. +C : the lifeguard could not get it. +C and the giraffe start/ed cry/ing. +C a lady came with a net. +C she got it out. +C and : she gave it back to the giraffe. +C the giraffe : like/ed have/ing it back. += [Eg:A3] += [Bg:B1] +C once there was a rabbit and a : puppy. +C : the : rabbit and the puppy were make/ing a sandcastle. +C the rabbit put water on it. +C : it melt/ed. +C : the puppy start/ed cry/ing. += [Eg:B1] += [Bg:B2] +C one day : there was a : puppy and a rabbit. +C the rabbit had a big lunch. +C and the puppy had a small one. +C the rabbit : ate quickly : with it/z lunch. +C and the puppy : ate slowly. +C the rabbit got dizzy. +C : the puppy ran to get a doctor. +C the doctor went with the puppy. +C the[-:] doctor (uh) : took care of the rabbit. +C : the : doctor got the rabbit to feel better. += [Eg:B2] += [Bg:B3] +C one day : a puppy had a balloon. +C the rabbit saw the balloon. +C the rabbit untie/ed it (from hi) from the puppy/z (wago) wagon. +C the balloon float/ed in the air. +C the puppy got mad at the rabbit. +C a rabbit : came around with a whole bunch of balloon/s. +C : (a little) the little rabbit : ask/ed if he could have a balloon. +C the guy said no because he has no money. +C the puppy and the rabbit (wer) were sad. +C the rabbit saw a doctor. +C the (d) rabbit ask/ed the doctor if she has any money. +C the doctor said yes : (she s) and said that she will pay for it. +C and the puppy and rabbit had their own balloon/s. += [Eg:B3] diff --git a/data/ENNI_SALT/train/667.slt b/data/ENNI_SALT/train/667.slt new file mode 100644 index 0000000000000000000000000000000000000000..60a7202810fbb09185c634df9bbf5245d8e6d163 --- /dev/null +++ b/data/ENNI_SALT/train/667.slt @@ -0,0 +1,94 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOE: 3/16/2001 ++DOB: 9/22/1994 ++CA: 6;5;22 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 667=CHI ++Tape Location: Disk M8, Track 54 += [Bg:A1] +C one day[!] : her[EW:she] is[EW:was] bounce/ing a ball. +C then the giraffe came and say|say[EW:said] hi. +C they want to[-:] swim. +C the giraffe[!] jump/ed[-:][!] in the water. +C then he swam and swam and swam and swam and swam. +C the ball[-:] keep/3s go/ing far[EW:further]. +C so he pass|pass[EW:passed] the ball. +C and then he[-:] just stay|stay[EW:stayed] in the water. +C then he came out. +C and then her[EW:she] [-:] want|want[EW:wanted] to play with him[!]. +=C that is it [+_bch]. += [Eg:A1] += [Bg:A2] +C one day[-:] : the giraffe and[!] the elephant : want to jumping[EW:jump] off the board. +C so the elephant went jump[EW:jumping] [!] off the board. +C and then her[EW:she] [!] run|run[EW:ran] so[-:][!] fast. +C then her[-:][!] : ouch [EU]! +C (sher) then : him[EW:he] said : (why) why were you run[EW:running] so fast. +C you can not. +C you *are suppose/ed to walk [EU]. +C and then her[EW:she] start/ed cry/ing. +C then the lifeguard came. +C and then : her daddy : put a bandaid on. +C and then that is[?] (uh) : feel[!] better [EU]. +C so[-:] : her[EW:she] just sit|sit[EW:sat] down and : be quiet[?] [~_/kwat/] [EU]. +=C that is it [+_bch]. += [Eg:A2] += [Bg:A3] +C one day[-:] : her[EW:she] said[-:] : I want to play with the airplane. +C then him[EW:he] [-:][!] : flied|fly[EW:flew] it. +C and then : her[EW:she] grab|grab[EW:grabbed] [!] it from him[!]. +C and then her[EW:she] throwed|throw[EW:threw] it in the water. +C and then : him[EW:he] got mad at her. +C and then : so a lifeguard : try|try[EW:tried] and get|get[EW:got] (the air) the pool [EU]. +C so he[-:] did not got|get[EW:get] the[-:] airplane. +C so him[EW:he] just : jump/ed[!] in the water : and got it. +C (and then) : and then him[EW:he] : *is try/ing to get it [EU]. +C and then : him[EW:he] (try/ing) : cry/ed. +C so[-:] her[EW:she] got (uh th) the[-:] fish/ing net to fish[!] the : airplane out. +C so her[EW:she] got[!] it. +C then they gives|give[EW:gave] *it to the boy [EU]. +C and then him[EW:he] said : mmm I love it now! +=C that is it [+_bch]. += [Eg:A3] += [Bg:B1] +C (he wa) (he made) a happy[!] : little bunny he : (made[?] happy) made a sandcastle with her. +C they need to[:_needa] start work/ing[!]. +C (then) and[-:] then him[EW:he] (s) (scoop|scoop[EW:scoops] off) scoop[EW:scoops] *it off[?] and put|put[EW:puts] it in a bucket[!] [EU]. +C and they put *it on top[!] of the sandcastle[!] [EU]. +C it all[-:] broke now. +C and then (h) : her[EW:she] [!] have|have[EW:has] to cry[!]. +C then he is stand|stand[EW:standing] [-:] still. +=C that is it [+_bch]. += [Eg:B1] += [Bg:B2] +C one day : her[EW:she] came and say|say[EW:said] hi[!] to the boy. +C then they were start/ing to eat[-:] lunch on the ground. +C (then he) (then[-:]) : and then him[EW:he] [-:][!] : was (um) full[-:]. +C then he got dizzy. +C and then he call|call[EW:called] the doctor. +C then the doctor help|help[EW:helped]. +C he make|make[EW:made] him more dizzy[!]. +C and then : he walk|walk[EW:walked] (with the[-:] ma) with the man (and a) : and another girl or boy [~_I_do_n(o)t_know]. +=C that is it [+_bch]. += [Eg:B2] += [Bg:B3] +C her[EW:she] is pull/ing a balloon. +C him said hi. +C then he want/3s to sit in the[-:] : wagon : with the balloon. +C and then he[-:] : took off[-:] the balloon! +C then it fly|fly[EW:flew] : up[!] in the air. +C then[-:] : her[EW:she] got mad[-:]. +C then : her[EW:she] (have|have[EW:has] to) have|have[EW:has] to buy another balloon[!]. +C (then he said[-:]) then he went old man old man : I want a balloon [~_laughs]. +C old man old man number five : balloon. +C old man old man I want one too. +C thank you old man old man. +C doctor said old man old man thank you. +C give me a balloon. +C the old man old man have|have[EW:has] two balloon/s. +C then old man old man : give|give[EW:gives] the two balloon/s [EU]. +=C that is it [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/669.slt b/data/ENNI_SALT/train/669.slt new file mode 100644 index 0000000000000000000000000000000000000000..7bf2cf2938e2598ccfe053e5d2318425c7fa2d07 --- /dev/null +++ b/data/ENNI_SALT/train/669.slt @@ -0,0 +1,86 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 9/21/1994 ++DOE: 4/18/2001 ++CA: 6;6;28 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 669=CHI ++Tape Location: Disk L27, Track 79 += [Bg:A1] +C they went swim/ing. +C they drop/ed the ball in the pool! +C he swam to get it. +C then she got the ball[-:]. +C then she was happy. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C they went swim/ing. +C she runned|run[EW:ran]. +C she slip/ed. +C she got a[EW:an] owie. +C then she (got a bit) got help. +C she got a bandaid. +C she sat on the bench. +C then he had to talk : about the sign no run/ing. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C they went swim/ing with a[EW:an] airplane. +C then they flew it. +C then she[!] want/ed to try the airplane. +C then she threw it in the water. +C he got angry. +C then he[!] came. +C he said what happen/ed? +C he try/ed to get it. +C he could not get (ca) (ca) catch it. +C he start/ed to cry. +C (she) she had a net. +C she want/ed to catch it for him. +C she got[!] it. +C thank you. +C she is my hero! +C thank you. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C they build a sandcastle. +C (they made a) and they got sand in the sand bucket. +C they poured it on the sandcastle. +C it : broke. +C he cry/ed. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C they went for a picnic. +C they ate and ate. +C he got (filled) sick. +C then he got sicker. +C he went to the doctor. +C he told[-:] what was a[EW:the] matter to him [EU]. +C (he) : (he) she look/ed at him. +C then he was kind of[:_kinda] feel/ing better. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C they went for a walk with their wedding and balloon[!]. +C he want/ed to touch the balloon. +C he pull/ed[-:] the balloon. +C the balloon went in the air. +C they got sad. +C then he got very angry. +C then they saw another : balloon. +C they want/ed to get[!] one. +C he got one for his wedding! +C then : he[-:] said where is your money? +C but he had no[-:] money. +C they got sad : together[!]. +C then they went to their mommy doctor : to ask for a balloon. +C she gave them (mon) money. +C and : then she got a balloon for both[!]. +C then they play/ed. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/670.slt b/data/ENNI_SALT/train/670.slt new file mode 100644 index 0000000000000000000000000000000000000000..d09a5ce17f422723f2287d1821840277729c58a4 --- /dev/null +++ b/data/ENNI_SALT/train/670.slt @@ -0,0 +1,113 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 6/10/1994 ++DOE: 4/18/2001 ++CA: 6;10;8 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 670=CHI ++Tape Location: Disk L27, Track 83 += [Bg:A1] +C one day there was an elephant and a giraffe. +C they were go/ing to go swim/ing. +C they threw a ball into the water. +C the giraffe went and got it. +C : [~_sighs] (and instead the) and then the giraffe got it and gave it to the elephant. +C the elephant was so happy that she squeeze/ed the ball. +C it almost pop/ed. += [Eg:A1] += [Bg:A2] +C one : day there was an elephant and the giraffe. +C they were go/ing swim/ing. +C the elephant[!] saw a diving[!] board. +C (she wan) she ran to the diving board. +C she almost slip/ed. +C she hurt her knee very[!] badly. +C (the lifeguar) the lifeguard saw her : cry/ing. +C (he) she got a big[-:] bandaid. +C and then she could not swim. +C so she had to sit on the bench. +C (the) : the lifeguard : said (she) you did not see the sign that says no[-:] run/ing. += [Eg:A2] += [Bg:A3] +C one day there was an elephant and the giraffe. +C they were go/ing to go swim/ing with their airplane. +C the giraffe : flew his airplane. +C and it was : come/ing : almost (uh uh) : out of his hands. +C the elephant[!] caught it though. +C the elephant accidentally threw it into the water. +C (the life) the giraffe was very[!] angry at her. +C the lifeguard saw it in the water. +C the elephant said : [~_high_pitched_voice] he said I threw it in the water. +C [~_high_pitched_voice] and I did not really! +C (the) the lifeguard could not[!] catch it. +C he shrug/ed his shoulders and said I do not know a way to get it! +C and then : a lady came with a big[-:] net. +C she try/ed to fetch the airplane out of the water. +C she caught it! +C the giraffe thank/ed her very[!] much. +C the giraffe was so[-:] happy he squeez/ed it. +C and it almost slip/ed out of his hand/s. +C and (th) the elephant was so happy that : they got it out of the water. +C she squeeze/ed her hands. +C and they were almost pitch red. += [Eg:A3] += [Bg:B1] +C one day there was a rabbit and a doggy[!]. +C the doggy was make/ing a sandcastle. +C the rabbit : got (a big[!]) some big scoop/s : from his shovel into the pail : of sand. +C he got[!] the sand : and : dump/ed it all[-:] over his castle. +C the castle[!] (went) : fell over. +C the dog was very[!] sad. +C the bunny was surprise/ed. += [Eg:B1] += [Bg:B2] +C one day there were[EW:was] a puppy and a rabbit. +C they were go/ing to go on a picnic. +C the rabbit and the puppy got all the food out. +C (the rab) (the dog) the doggy was very[!] surprise/ed how much food[!] the rabbit brought. +C he said are you sure you are go/ing to eat all that! +C the rabbit said yes[-:] I am. +C the rabbit ate every single bite! +C he was very[!] fat after that. +C he almost faint/ed! +C he was very very fat. +C and then he did[!] faint. +C and the puppy ran : (and) (the) into a doctor. +C he said doctor doctor my friend the rabbit ate too much junk[!] food! +C he try/ed[!] to pull the doctor over to his friend the rabbit. +C then (sh) she came over. +C and she lift/ed up his head. +C and she said you ate too much junk food! +C then the doctor carefully[!] : put her hand on the back of his back : and walk/ed him home. += [Eg:B2] += [Bg:B3] +C one day there was a puppy and a rabbit. +C the puppy had a balloon attach/ed to his wagon. +C the rabbit was very interest/ed in the balloon. +C he try/ed to untie it. +C but it was just too[!] tight on [EU]. +C and then he got it. +C (an) except he did not hold onto to very (tight) tight. +C his hand/s slip/ed off the string. +C and it (float) float/ed up in the sky. +C the puppy was very[!] mad. +C all that was left that they could see is a little bit of the string! +C then they saw a big : rabbit with lot/s[!] of balloon/s. +C (they were very[!] uh) little rabbit was very interest/ed in them. +C he said I would like that big yellow[!] one please. +C he did not have any money though. +C (he s) the balloon keeper said : you have to have some money to buy the balloon. +C (the ver) the puppy was very[!] surprise/ed. +C and so was the rabbit. +C then they saw the doctor again! +C (they said) bunny said doctor doctor we need some of your money to buy a balloon[-:]! +C we need some of your money! +C I lost my balloon because : he untie/ed it : off my wagon said the puppy. +C (and then : he) : (and then she gave the man two) and then she gave the man : ten cent/s. +C : and the balloon/s : all float/ed away[-:]. +C except there was[EW:were] only two[!] left one for the puppy and one for the rabbit. +C they were both very[!] happy. +C they thank/ed the doctor very[!] much. += [Eg:B3] diff --git a/data/ENNI_SALT/train/671.slt b/data/ENNI_SALT/train/671.slt new file mode 100644 index 0000000000000000000000000000000000000000..53bd1aaacb39d1ca8fa6a84285ed6b946c6e7ce3 --- /dev/null +++ b/data/ENNI_SALT/train/671.slt @@ -0,0 +1,90 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 1/15/1995 ++CA: 6;3;3 ++Gender: M ++Context: Nar ++Group of CHI: TD ++DOE: 4/18/2001 ++ID: 671=CHI ++Tape Location: Disk L27, Track 69 += [Bg:A1] +C the guy think/3s he can go in : and juggle them. +C but he end/3s up throw/ing them in the water. +C he go/3s in there : and *is try/ing to get it [EU]. +C the elephant is sad. +C and he might sink. +C then : he get/3s it for the elephant. +C and she is happy[!] : for him. += [Eg:A1] += [Bg:A2] +C she is : go/ing to[:_gonna] go try and jump in the water. +C she run/3s to there : to the high dive. +C she run/3s really fast. +C and she fall/3s [-:] and hurt/3s her knee. +C then she cry/3s. +C and a man come/3s : to : rescue her. +C and then : they put a bandaid on her. +C (then they) then they sit her on a bench for awhile. +C and then : they are happy. +C she think/3s she is happy. +C but she is not happy. += [Eg:A2] += [Bg:A3] +C (he fly/3s) he is go/ing to [~_gonna] fly the plane. +C (he try/3s to s) he is go/ing to throw it. +C then : she take/3s it from him : throw/3s it in the water [EU]. +C and they can not get it. +C he is mad at her. +C so they try and get it. +C but they can not[-:]. +C and they try and reach[!] it. +C but they can not reach it. +C and he start/3s cry/ing. +C and then they grab a net[-:]. +C and they get it. +C and (then x) : then he is happy. +C so he hug/3s : the toy. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C the : rabbit build/3s a castle. +C then he[!] come/3s along with some sand[-:] : pour/3s the sand on the castle : and break/3s the castle. +C and she is sad[-:]. += [Eg:B1] += [Bg:B2] +C the rabbit come/3s along for a picnic. +C he eat/3s : her food (and all his[-:]) : and all her/z. +C (then he get/3s) : then he eat/3s it all. +C but then he get/3s full. +C and his tummy hurt/3s : like mine was once. +C and (then) : then he get/3s dizzied[EW:dizzy]. +C and then a doctor come/3s. +C and : the dog ask/3s [~_pronounced_'askis'] for the doctor/z help. +C and the doctor come/3s : and help/3s : him. +C and he is back to normal[?]. += [Eg:B2] += [Bg:B3] +C a rabbit come/3s along. +C and he see/3s the balloon[-:]. +C and he want/3s the balloon. +C but it is the dog/z : balloon. +C and then he try/3s and reach/3s it. +C and the dog is still there watch/ing him. +C and the dog come/3s along (and try/3s to). +C (then the rabbit still) : then the rabbit untie/3s[-:] it. +C and then it fly/3s away[-:]. +C and then they see it go up. +C (the rabbit is mad at the rabbit) [~_no] the dog is : mad at the rabbit. +C they see a : rabbit with balloon/s : a whole bunch of them. +C and they ask him for a balloon[-:]. +C but he tell/3s them one for seven cent/s. +C (so : he ask/3s) so he : check/3s his pocket/s for money. +C but he do/3s not have any. +C so they are sadder[!] still [EU]. +C and then the doctor is there[~!_laughing] : the big doctor. +C (and then they see) then they tell him that (their rabbit) (there is) balloon/s : were there. +C and they get them. +C and they are happy. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/673.slt b/data/ENNI_SALT/train/673.slt new file mode 100644 index 0000000000000000000000000000000000000000..a4634b0800b9d01684b1689a71bd87275fa1eafd --- /dev/null +++ b/data/ENNI_SALT/train/673.slt @@ -0,0 +1,154 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 5/11/1994 ++DOE: 4/19/2001 ++CA: 6;11;8 ++Gender: F ++Context: Nar ++Group of CHI: SLI ++ID: 673=CHI ++Tape Location: Disk M10, Track 47 += [Bg:A1] +C the giraffe went : close talk to (the um) : the[-:] : elephant [EU]. +C and do you want to play with me? +C and (he) the giraffe say/3s yes. +C you want : to play with the ball? +C he say|say[EW:says] yes. +C and the ball : went go over there : and went to the water. +C and : the giraffe and the elephant yell/ed. +C and (the um) the giraffe (um f) : (got the um) : got the ball : close. +C and : the giraffe : got the ball and give|give[EW:gave] *it to (um : the) : the elephant [EU]. +C and (the) the elephant (t) say|say[EW:said] thank you. +C and the giraffe say|say[EW:said] you are welcome. +C (um) : thank you[-:] giraffe! +C (and he) and he said you are welcome. += [Eg:A1] += [Bg:A2] +C (um : the) : the elephant and the : giraffe : (I) : is (no uh ju) no run/ing : in the : water [EU]. +C and[-:] : I like to go swim/ing. +=C (you want) that is it [+_bch]. +C and the giraffe (and the um) : and the : elephant said : do you want to go to the diving board. +C (said um) : yes please said the giraffe : and no run/ing : in the (um) : xx. +C (and he[-:]) and the : giraffe saw the : elephant. +C no run/ing. +C (he slip) she slip/ed : down and : (um) got blade[?] in her (um) : leg [EU]. +C (and the) : and giraffe saw the : elephant. +C no run/ing. +C (and) : and : she[-:] bump/ed there [EU]. +C down is bleed/ing [EU]. +C and (she) : she yell/ed and hurt/ing [EU]. +C and : (she is try/ing) (the) : (the elephant is try/ing) : she is cry/ing. +C and the : giraffe said : (um) you are okay. +C (and the) : and the (e) elephant said no. +C and (the um elephant) the diving man : went : by him to : (get) : get a bandaid. +C (and the) : and the : elephant : it be[EW:was] hurt and : put a bandaid on her [EU]. +C and (s) see it never hurt. +C (and it) and giraffe said : and that is okay. +C (is nn) is no run/ing in there [EU]. +C and[-:] I am sorry about that. += [Eg:A2] += [Bg:A3] +C (um) : (the gira) the giraffe say|say[EW:said] hello (to the um) : to the elephant. +C (I got) : I got a new : airplane. +C I want to [~_wanna] play with it. +C and : (gi) giraffe say|say[EW:said] yes. +C (and[-:] the) : and giraffe say|say[EW:said] : (um) I want to play[-:] on (my) : my airplane [EU]. +C and he start[EW:started] to (s um) spit : and say brr[?]. +C (and) : and the elephant say|say[EW:said] : that is cool. +C and the giraffe : [~_high_pitched_voice] hey (do not) (do not st) : do not grab from me [EU]! +C I want to play with it too[!] : said the (um) : elephant. +C and : ( I am) : ( I am sorry) (I) (the) : the : elephant said I am sorry I am : drop/ed to : the (um) nother[?] (air) airplane giraffe said [EU]. +C and[-:] the giraffe is very angry. +C and : (you) : (you) : you drop/ed my (um) airplane in the water. +C I am sorry about that : said the[-:] : elephant. +C and (the diving man said : air) : why is the toy over there said the (um) diving man. +C and : (is my[-:]) that is mine[EW:my] [-:] : airplane said the : little giraffe. +C ( I am) and the : elephant said : (um) : I did it by accident and drop/ed giraffe/z airplane. +C and : it is right there. +C and I drop/ed it. +C I drop/ed (the um : airplane) : (his) giraffe/z : airplane. +C and[-:] : I am sorry[?] disappoint[?] you [EU]. +C (I can not) I can not : go to the water in there. +C and : he try/ed to (um) : grabbed|grab[EW:grab] it. +C (and) : and I can not reach it very far [EU]. +C I am not allow/ed to go (to) in the water : said the (um) diving man. +C (and the[-:] : giraffe said : where[-:]) (I) (I) [~__gulps] : and the giraffe said : well you can not reach it! +C (and the) : and (the : elephant) oopsie said the elephant[?]. +C and the giraffe (s) : he is cry/ing to lost (his) : his airplane [EU]. +C (and[-:] the) : and the elephant girl : (she) : she say/3s sorry (I) (for) : (I) : for : (the) : dropped[EW:dropping] the airplane (s) said the : elephant. +C and the diving man can not reach it. +C (it is) : it is too far from me. +C and (the lady) : the lady : grab/ed (that) the airplane right there in the water. +C (and try/ing) (I) : I got : that : airplane. +C and (he) she got that : airplane right there. +C and : the giraffe (s) is cry/ing for (that) his airplane. +C (and the lady) : and : (the : air) : the : giraffe : said : thank you for (my) : got[EW:getting] my airplane. +C and the lady say[EW:said] : you are welcome. +C and[-:] the giraffe : is happy get (my) (his) : his airplane [EU]. +C and : the (el) elephant (he is happy) she is happy : for : it. +C I am sorry about that drop : (the) : your airplane : (said) : said the : [~_sighs] elephant [EU]. += [Eg:A3] += [Bg:B1] +C (um) : a rabbit [EU]. +C some help (with the) (um) with the[-:] : dog [EU]. +C and : he want/3s some help (to) with me : to know how to make a sandcastle. +C (and he um) the rabbit make|make[EW:made] a sandcastle. +C and : the rabbit dump|dump[EW:dumped] all the sand to (the) : the sandcastle [EU]. +C and : (he is) (he) that accidentally[?] [~__pronounced_'sadently'] (um) : broke (his) (the dog/z) : the dog[EW:dog/z] : sandcastle. +C and : (he) : the dog never[-:] (um) make|make[EW:made] a sandcastle. +C and he cry/ed. +C and there[EW:the] bunny rabbit : (um) : be[EW:was] sorry (that he). += [Eg:B1] += [Bg:B2] +C one day (um) : a dog : say|say[EW:said] (um) hello to the rabbit. +C (an) and : he : you want to[:_wanna] come with me [EU]? +C he said yes. +C and the rabbit *was so hungry to eat [EU]. +C and (the um) the dog : saw him eat/ing : very good. +C and[-:] the rabbit is very full. +C and : the : dog is : (very) eat/ing his sandwich and : his[-:] apple juice. +C and : the dog eat|eat[EW:ate] his : sandwich and (his) : his apple juice. +C and : the rabbit : is very full. +C and one day (um the) : the dog (um) went by with : the (um) rabbit. +C and : the rabbit is lay/ing down and : saw the doctor. +C and one day (um) : the doctor (went) : went close to the rabbit. +C (and) : and : the dog pull/ed the (um) lady : to the rabbit. +C and (one) : the rabbit said : you are very sick. +C and : you are full[-:]. +=C and that is it [+_bch]. +C and the (um) rabbit (went to the um) : went to the doctor (w) and get[EW:got] something. +C and the dog : said (um) : come back too soon [EU]. += [Eg:B2] += [Bg:B3] +C (um) : one day (um) the dog : seed|see[EW:saw] the rabbit and went to closer : and seed|see[EW:saw] the balloon [EU]. +C and : he said : I want that balloon. +C and : (he said um) the dog said : (um) : yes if you (want to) want to[:_wanna] see it. +C and the : dog (said) he yell/3s. +C and the rabbit (um : um) take[EW:took] the balloon : off and see|see[EW:saw] the balloon. +=C and : that is it [+_bch]. +C and the (um) dog said (um) : my balloon is (um) : flied[EW:flying]. +C and : the rabbit can not (reas) reach it. +C and one day (the) : (the) : the dog is very angry. +C and (the um) : the rabbit is so : sorry to get the balloon up there. +C and the dog said he is very angry. +C and (the) : (um : the) : the rabbit went : closer (get the) buy (uh) : a balloon [EU]. +C and (he said) (the) (the rab) [~_no] the dog is wait/ing for (the balloon) his balloon. +C and the : rabbit said I want that balloon. +C then you have to buy it. +C and : (I do not have) (I do not have) it is : five cent/s. +C and I no have money [EU]. +C and : sorry (you have) you do not have money. +C and the dog went (do um) close. +C and : that is no[EW:not] fair. +C and (the um) : (the lady doctor) (she) (she went) the rabbit went : closer (with the) (talk) talk to the : lady [EU]. +C (you) (you) *will you buy a : balloon for me and[-:] the dog too [EU]? +C and : I want a balloon. +C (an) and I do not have money. +C it is five cent/s. +=C and (the) : that is it [+_bch]. +C and (the) : the : lady : give|give[EW:gave] two : five cent/s for the man. +C (the) : and : (the) the dog and the rabbit want (two[-:]) : two balloon/s. +C and (I) I like my balloon. +C and me too! +C and : (I) : thank you for buy/ing the balloon[EW:balloons] for us. += [Eg:B3] diff --git a/data/ENNI_SALT/train/676.slt b/data/ENNI_SALT/train/676.slt new file mode 100644 index 0000000000000000000000000000000000000000..27504d6dfefcbf138074f78b53df6fb9af93e0f6 --- /dev/null +++ b/data/ENNI_SALT/train/676.slt @@ -0,0 +1,96 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 7/01/1994 ++DOE: 5/15/2001 ++CA: 6;10;14 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 676=CHI ++Tape Location: Disk L28 Track 26 += [Bg:A1] +C one day : Giraffe and Elephant went to the pool. +C (uh) Elephant was bounce/ing a ball. +C the ball went into the water : in the pool. +C and : Giraffe swam in to get it. +C Elephant (pulled) got the ball (f) when Giraffe came back (to uh :) to the shore. +C and (when rab) when Giraffe got out Elephant said [~_high__pitched_voice] thank you Giraffe. +C and they all live/ed (hap) happily (af) ever after. += [Eg:A1] += [Bg:A2] +C later on that day they went (to) back to the pool again with elephant got her ball all back [EU]. +C they saw a diving board. +C elephant said hey giraffe (want to) want to go dive/ing? +C and (she start/ed run/ing) she start/ed run/ing. +C but she trip/ed and fell. +C and she got a cut. +C the lifeguard came run/ing and put a bandaid on it. +C and (she :) she look/ed. +C (and did not fe) and it did not hurt anymore. +C she sat on the bench instead of dive/ing off the diving board and did not run. +=C the end. += [Eg:A2] += [Bg:A3] +C one day Giraffe and Elephant went to the pool. +C Giraffe had an airplane! +C (he) he told Elephant [~_oops] that it was (a grea) a great airplane and *it could fly anywhere [EU]! +C Elephant took the airplane from Giraffe. +C and she : (uh) flew it. +C and it land/ed in the water. +C Giraffe was really mad at Elephant. +C the lifeguard saw this. +C Elephant told the lifeguard what happen/ed. +C the lifeguard try/ed to reach the airplane. +C but he could not. +C Giraffe was really really sad. +C then[!] : a lady with a net came by. +C and she reach/ed the airplane (with her fi) with her fishing net. +C [~_under_her_breath] well she try/ed. +C [~_yeah] and she reach/ed it and gave it back to giraffe. +C and giraffe was happy. +C and they all live/ed happily (ever af) ever after. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C (one day dog and rabbit) one day : rabbit came over to dog/z house. +C dog : was make/ing a sandcastle. +C rabbit took some sand out of the bucket dog was use/ing and[-:] pour/ed it on dog/z sandcastle! +C then : dog/z sandcastle broke. +C and rabbit : made a weird look/ing face [~_laughs]. +C dog cry/ed. +C (and like) and rabbit said sorry dog. +C I did not mean it. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C one day : dog and rabbit went for a picnic. +C [~_uh_okay] rabbit got a delicious picnic when dog was take/ing out his things. +C (but after he ate) but after rabbit ate he got all queasy. +C uhoh said dog. +C dog ran to get (r r) rabbit/z mother : the doctor. +C and : he pull/ed her over to where rabbit was. +C (he said) and his mom said oh no you should be in bed [~_laughs]. +C and so they went home. +C and everyone was happy. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C (once there was) [~_okay] (one day dog had a ba) one day dog was push/ing his wagon with his brand new balloon. +C rabbit saw the balloon (and) and was amaze/ed of[EW:by] how it float/ed in the air. +C rabbit untie/ed the balloon from the wagon. +C and poof it went up into the sky. +C dog got really really mad at rabbit. +C then they saw a man with balloon/s. +C (rabbit sai) rabbit said : (can we buy you) can we have one of your balloon/s? +C (he) he said balloon/s are five cent/s. +C do you have five cent/s? +C he look/ed. +C he did not have any. +C (ssss mmm) maybe you should get somebody who has[!] five cent/s before (you wan) you get a balloon. +C so[!] : rabbit got his mom : and ask/ed, mom can you buy (a) a five cent balloon? +C (uh) okay I will : two. +C and they have two balloon/s. +C they each have one balloon. +C and they were all happy. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/677.slt b/data/ENNI_SALT/train/677.slt new file mode 100644 index 0000000000000000000000000000000000000000..0a557172c16570eb7ac0b35fb1baa21f9382e0bf --- /dev/null +++ b/data/ENNI_SALT/train/677.slt @@ -0,0 +1,101 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 8/19/1994 ++DOE: 5/15/2001 ++CA: 6;8;26 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 677=CHI ++Tape Location: Disk L28 Track 30 += [Bg:A1] +C (um : a li) a[EW:an] elephant and a giraffe : (are gonna um) are play/ing : around a pool. +C and they take a ball. +C and : by accident (it ffff) (they) they drop/ed it in the pool. +C so the giraffe jump/3s in and (um) try/3s to get the ball. +C and he get/3s it. +C and the elephant is really happy. +C (and then they) and then they can play catch. += [Eg:A1] += [Bg:A2] +C (an elephant) an elephant and a giraffe want to go swim/ing. +C and (the) the elephant is run/ing. +C and there[EW:they] is[EW:are] not allow/ed to be run/ing along the pool because you might slip and fall. +C and it is slippery. +C and she fall/3s and hurt/3s her knee. +C and the giraffe (um) run/3s and tell/3s the lifeguard. +C the lifeguard come/3s. +C and he see/3s that the elephant is cry/ing. +C so he put/3s the bandaid (on um) on her cut. +C (and she) and the lifeguard put/3s her down (on the) on a bench. +C and the lifeguard tell/3s her not to run. += [Eg:A2] += [Bg:A3] +C (um) the giraffe get/3s a new (toy air) toy airplane. +C and the elephant ask/3s if she can play with it. +C and the giraffe said sure. +C and he show/3s : her how to play with it. +C so she try/3s. +C (and : sh) and[-:] she is run/ing with it. +C but by accident she drop/ed it in the water. +C and it sink/3s. +C and the giraffe is really mad. +C and he tell/3s the lifeguard. +C and the lifeguard is disappoint/ed. +C and the elephant say/3s she did by accident. +C (the) and the lifeguard try/3s to get it. +C and he can not reach it. +C and then : it start/3s to sink. +C and the giraffe start/3s to cry. +C then : (um : um : um :) the elephant/z mom come/3s with a net. +C (and) and she try/3s to scoop it out. +C (and) : and she get/3s it. +C and she give/3s it back to the : giraffe. +C the giraffe hug/3s his toy airplane. +C and the elephant is happy for the giraffe. += [Eg:A3] += [Bg:B1] +C there was a rabbit and a dog. +C and they love/ed to play in the sandbox. +C the dog is make/ing a castle. +C and the rabbit is (um) fill/ing a bucket so he can add on to the castle. +C and he dump/3s it on the dog/z castle. +C and the dog : (um) do/3s not like that. +C and she is sad. +C she start/3s to cry because that was her castle. += [Eg:B1] += [Bg:B2] +C (there was) the doggy and the rabbit are go/ing to go for a picnic in a forest. +C and the rabbit love/3s carrot/s. +C so he unpack/3s all his food. +C and he find/3s a carrot. +C and he : start/3s to eat it. +C and the dog unpack/3s her food. +C and she eat/3s her sandwich (and her juice box) and drink/3s her juice box. +C (the rabbit eat) the rabbit eat/3s so fast (that he is) that his tummy hurt/3s. +C (so the dog go/3s and) and there is a doctor walk/ing in the forest. +C and the dog rush/3s over to tell the doctor. +C and : she pull/3s the doctor over to help the rabbit. +C and she say/3s that (sh) the rabbit ate too much. +C and then the rabbit went home with the doctor. +C and he felt better. += [Eg:B2] += [Bg:B3] +C (one day a rabbit and a dog are play/ing in a park) one day : a dog is play/ing in the park. +C (and : he) and she see/3s her friend rabbit. +C (and she show/3s) and the rabbit point/3s to her balloon. +C and he ask/3s if he can play with it. +C (and : the rabbit say/3s) and : the dog is think/ing about it. +C (and) : and (sh) before she could say anything the rabbit untie/ed the balloon. +C and it start/ed float/ing up into the air. +C (and there were) and (um) the dog (s) got really mad at the (um) rabbit. +C and the rabbit see/3s (um more) (a balloo) a person with balloon/s. +C and he ask/3s if he could buy one. +C but he check/3s in his pocket/s. +C (and there is noth) (and there is) and he has no money. +C (and the) (and the balloon) and the guy with the balloon say/3s you will have to have money to buy one. +C so : the rabbit run/3s and ask/3s the doctor : and ask/3s (if he could buy uh) if she could buy a balloon for the dog. +C and she give/3s the money to the (um :) guy with the balloon/s. +C and they each get a balloon. +C and then they are both happy. += [Eg:B3] diff --git a/data/ENNI_SALT/train/678.slt b/data/ENNI_SALT/train/678.slt new file mode 100644 index 0000000000000000000000000000000000000000..79281ad75d04548fd9d06628f0c9efdbbf78f2dd --- /dev/null +++ b/data/ENNI_SALT/train/678.slt @@ -0,0 +1,92 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 2/22/1995 ++DOE: 1/20/2002 ++CA: 6;10;24 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 678=CHI ++Tape Location: Disk M12, Track 2 += [Bg:A1] +C (um) Elephant and giraffe want to [~_wanna] play ball : outside. +C (and) : and giraffe : do|do[EW:does] not want to get the ball at the pool. +C and the elephant *is scare/ed of height/s. +C then he bring|bring[EW:brought] a ball back to the giraffe. +C then : (um) elephant is very shy : with giraffe. += [Eg:A1] += [Bg:A2] +C (ah) the elephant (want to) : and giraffe go to the pool. +C (then) and then (the elephant and gir) elephant go run [EU]. +C (and el) and giraffe stay|stay[EW:stays] here. +C (then) : then : giraffe run|run[EW:ran]. +C and elephant slip|slip[EW:slipped] *on the floor [EU]. +C then elephant have|have[EW:has] a booboo : because[?] : *of the slippery floor [EU]. +C (then) : and the giraffe said it is okay xx the elephant. +C (and) : (and the) and the elephant give|give[EW:gave] him a bandaid. +C and then : the elephant stay|stay[EW:stayed] here sit|sit[EW:sat] down and watch|watch[EW:watched]. +C (then) (and the) and the elephant said stay here. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C (um) giraffe want|want[EW:wanted] to [~_wanna] play with his airplane. +C then : giraffe play/3s airplane now. +C (then) (and) (and) and the elephant grab/ed to the giraffe[EW:giraffe/z] airplane [EU]. +C (then) (then) and the elephant (drop it) is drop[EW:dropping] *the airplane in the pool [EU]. +C (then) : and the giraffe *is mean to the elephant [EU]. +C then : the elephant go|go[EW:goes] to get (his) giraffe[EW:giraffe/z] airplane. +C then (h he) elephant go|go[EW:goes] to try reach his airplane [EU]. +C (and) (and then airplane) [~_I_mean] elephant (uh get/3s airplane) : [~_wait] (tr) try|try[Ew:tried] to get it. +C (then) : (then uh) and the elaphant can not. +C (then) : (then) and the elephant *is go/ing to get it in the : net [EU]. +C then he get|get[EW:got] the net. +C then he get|get[EW:got] the airplane. +C then he get|get[EW:got] the toy airplane back to giraffe. +C (then) (and) : and giraffe is so happy. += [Eg:A3] += [Bg:B1] +C (uh) (um) the dog want|want[EW:wanted] to [~_wanna] build a sandcastle. +C so do/3s the rabbit. +C (then) then the dog make|make[EW:made] a castle xxx now. +C and he finish/ed. +C (then) then the rabbit dug sand in a pile. +C (then) and the rabbit drop/ed sand (in the) in the dog[EW:dog/z] castle. +C (then) and then (then uh) the rabbit said why did you drop the sand? +C and so is the dog [EU]. +C (and) (and) and the dog cry|cry[EW:cried]. +C (and) and the rabbit did not need to. += [Eg:B1] += [Bg:B2] +C and rabbit (and go to) and the dog go to get[EW:have] *a picnic [EU]. +C then he have|have[EW:has] *a picnic [EU]. +C we have a lot of food. +C (then) : then the rabbit ate too much. +C and then (then) the rabbit *is get/ing dizzy [EU]. +C then there is a doctor with the rabbit. +C there is a doctor. +C (and) and then (then) the dog pull/ed on his doctor[EW:doctor/z] arm. +C and he *is go/ing to make it feel better the rabbit [EU]. +C then and the dog just has time to go to the doctor. +C and then we go. +C and the dog stay|stay[EW:stayed] here. += [Eg:B2] += [Bg:B3] +C [~_okay] the dog get|get[EW:got] his wagon and a balloon. +C then the dog stand|stand[EW:stands] here. +C (and then) and then the rabbit point/3s to the balloon. +C then the rabbit (tie/ed) tie/ed the balloon. +C then his balloon *is go/ing up [EU]. +C and dog is mad (xxx). +C and rabbit me too [EU]. +C and there is[EW:are] more balloon/s when a man get|get[EW:got] it [EU]. +C and the rabbit go|go[EW:went]. +C and the (and the man go) rabbit (said) said to man to please *can I have a balloon [EU]. +C then he gave one five cent/s. +C and there is no cash money. +C (and) and then (his mommy I mean) his doctor gave him money. +C or they gave it to these two. +C then he give him cash and get|get[EW:got] the balloon. +C then (he get to p) the the doctor give|give[EW:gave] the (the) money to the man. +C (and then) then he got to these two balloon/s [EU]. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/679.slt b/data/ENNI_SALT/train/679.slt new file mode 100644 index 0000000000000000000000000000000000000000..f7d6a1aa4b47bba40c9f0ee67b4300d3be664bb1 --- /dev/null +++ b/data/ENNI_SALT/train/679.slt @@ -0,0 +1,79 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 4/24/1995 ++DOE: 1/20/2002 ++CA: 6;8;24 ++Gender: F ++Context: Nar ++Group of CHI: SLI ++ID: 679=CHI ++Tape Location: Disk M12, Track 12 += [Bg:A1] +C (um) elephant and the giraffe want to go in the water[!]. +C and then the balloon went in the water[!]. +C and then the giraffe went to swim and get the balloon. +C and : then (the giraffe said : thank you to the uh) the (uh) : elephant said thank you to the giraffe. +C and he said I am not go/ing to get (the balloo) (wa um the) the ball in the water. += [Eg:A1] += [Bg:A2] +C (um) the giraffe : and the : elephant were : look/ing at the water. +C and she was : start/ing to run. +C and then she fall|fall[EW:fell] down : and hurt herself. +C and (then) then the lifeguard comed|come[EW:came] and : look/ed at her knee. +C and then : she start|start[EW:started] to cry. +C and then she put a bandage on. +C and then (she said) the lifeguard said look at the sign. +C (there is) it say/3s no run/ing. += [Eg:A2] += [Bg:A3] +C (um) the : giraffe has a[EW:an] airplane. +C and they want to play with the airplane. +C and they play/ed with it. +C (and she) and the : elephant grab/ed it from the giraffe. +C and then it (goed|go[EW:went] into) falled|fall[EW:fell] in the water. +C and then the giraffe was very angry. +C and then a lifeguard camed|come[EW:came] : and : said could you help : me take this (uh) airplane out of the water? +C (and) and the lifeguard could not reach it. +C and (then) : then the : giraffe start/ed to cry. +C and (then) : then the lady went to get the airplane. +C and she : got it with a net. +C and then she said thank you to the lady : the giraffe. +C and (then) then the : elephant smile/ed at him. += [Eg:A3] += [Bg:B1] +C A dog and a rabbit is[EW:are] talk/ing together. +C they are make/ing a sandcastle together. +C and they put sand on top of the sandcastle. +C (and) and it got smash/ed. +C and then the : dog was try/ing to get it back together. += [Eg:B1] += [Bg:B2] +C (um shhh) he is meet/ing *a new friend [EU]. +C and they they are go/ing to have a picnic together. +C and then they got *a tummyache [EU]. +C (one was um) the rabbit was sick. +C and the dog was not sick. +C (and : there is) and there was a lady. +C and the dog was try/ing to talk to the lady. +C and she was pull/ing the lady to the rabbit. +C and they were check/ing her. +C and then she : went with the doctor. += [Eg:B2] += [Bg:B3] +C there is (the) the dog and the rabbit. +C and the dog got a balloon. +C and the rabbit want|want[EW:wanted] a balloon. +C and (he was) (she) the rabbit was untie/ing it. +C and then it flew in the air. +C and the dog was very angry. +C (and then they went) (and then I saw) and the rabbit and the dog saw a balloon man. +C and the rabbit want|want[EW:wanted] a balloon. +C and he said do you have any money. +C and he said no. +C so they could not get a balloon. +C (so they were) so they went to the lady and got a balloon. +C (and she said could I) and the rabbit said could I have some money[?]. +C and they gived|give[EW:gave] it to the balloon man. +C and then they got a balloon. +C and they were happy then. += [Eg:B3] diff --git a/data/ENNI_SALT/train/680.slt b/data/ENNI_SALT/train/680.slt new file mode 100644 index 0000000000000000000000000000000000000000..5f736269afca62894308f7b36deb87f8c84ae1a8 --- /dev/null +++ b/data/ENNI_SALT/train/680.slt @@ -0,0 +1,82 @@ +$ CHI, EXA ++PARTICIPANTS: CHI target_child, EXA examiner ++DOB: 3/11/1996 ++DOE: 6/12/2002 ++CA: 6;3;1 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 680=CHI ++Tape Location: Disk: M13 Track: 5 += [Bg:A1] +C he is (pl) playing *with that ball with his bathing suit on [EU]. +C [~_clears_throat] but the ball *is in the water [EU]. +C he is swim/ing in it. +C and he got it. +C and he is all wet. +=C that is all [+_bch]. += [Eg:A1] += [Bg:A2] +C (he is) he is look/ing at the water. +C he is run/ing to the diving board. +C slip/ed [EU]. +C hurt the knee [EU]. +C he is run/ing. +C and her[EW:she] *is sit/ing there [EU]. +C and they put a bandaid on it. +C and he is get/ing cranky. +=C that is all [+_bch]. += [Eg:A2] += [Bg:A3] +C play/ing a plane (with) near the pool [EU]. +C (it is) it is start/ing to fly. +C and she is hold/ing on to it. +C and it fell in the pool. +C and it is start/ing to drowned [EU]. +C and it is float/ing. +C and it is still float/ing. +C and (he) she is try/ing to reach it. +C can not get it [EU]. +C and he is lose/ing the net. +C and they got it. +C and then he took it out. +C and they are happy. +=C that is all [+_bch]. += [Eg:A3] += [Bg:B1] +C make/ing a sandcastle [EU]. +C fill/ing it up [EU]. +C (um) spill/ing it on the castle [EU]. +C it is wreck/ed. +C cry/ing [EU]. +=C that is all [+_bch]. += [Eg:B1] += [Bg:B2] +C have/ing a picnic [EU]. +C eat/ing [EU]. +C (f) nice and full [EU]. +E what was that? +=C full [+_bch]. +C (um) he *is dizzy [EU]. +C (um he is try) (um) he is run/ing. +C he is try/ing to talk. +C he is : get/ing dizzy again. +C walk/ing with[?] each other [EU]. +=C that is all [+_bch]. += [Eg:B2] += [Bg:B3] +C balloon on a wagon [EU]. +C he is stand/ing there watch/ing the balloon. +C he is (on) take/ing it off. +C it is blow/ing away. +C (it is) it is go/ing up higher. +C got lot/s of balloon/s [EU]. +C he is point/ing at the lots of balloon/s [EU]. +C he is look/ing at the ground. +C (um) he is sad. +C (um) he is walk/ing away. +C he is : point/ing (where) what he is not suppose/ed to do [EU]. +C (um) he has (t) two balloon/s. +C (um) they both have balloon/s. +=C that is all [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/701.slt b/data/ENNI_SALT/train/701.slt new file mode 100644 index 0000000000000000000000000000000000000000..2bf1fbb16c79eddc5be633574fc6608a0176dbef --- /dev/null +++ b/data/ENNI_SALT/train/701.slt @@ -0,0 +1,101 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 4/18/1993 ++DOE: 4/19/2000 ++CA: 7;0;2 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 701=CHI ++Tape Location: Disk L8 Track 9 += [Bg:A1] +C A giraffe and a[EW:an]: elephant : meet at a swimming pool. +C and the elephant is scare/ed. +C it is because the[-:] egg *is fall/ing [EU]? +C and the giraffe dived|dive[EW:dove] in the water and try/ed to get the egg. +C and then the giraffe : gave the egg to the elephant. +C and then the elephant like/ed (the) the giraffe. += [Eg:A1] += [Bg:A2] +=C It is the same as the other one [+_bch]. +=C (mmm) I do not know what like this [+_bch]. +=E You will find (it is) it is go/ing to be different [+_bch]. +=C I do not know xxx [+_bch]. +E just start it any way you want. +C the elephant and the giraffe are[-:] [+//]> +=C I do not know [+_bch]. +=C I do not get this page [+_bch]. +E can you tell me what happen/ing? +C they are happy. +C then the elephant (went in the water) [~_no] *is go/ing to the jump/ing thing [~_what_it_(i)s_called] and slip/3s [EU]. +C and then the giraffe is run/ing to help her. +C then she slip/ed on the ground. +C and she hurt her knee. +C and then the giraffe help/ed her try/ed to. +C and then[-:] xxx what is his name is call/ed [+//]> +=C I do not know what the name is call/ed [+_bch]. +E Are you done? +C and then (he put) he put a bandaid on[-:] the cut. +C and then the giraffe help/ed her up. +C and then the elephant is happy. +C and the other elephant was mad. += [Eg:A2] += [Bg:A3] +C The giraffe and the elephant [EU]. +C and the giraffe got a toy airplane. +C and[-:] the elephant is happy. +C the : giraffe is fly/ing it in his hand. +C and the elephant is [+//]> +=C I do not know what it is call/ed [+_bch]. +C then the elephant took the plane away from the : giraffe. +C and then the elephant (ac) accidentally[?] drop/ed the plane in the water. +C and now the (gilaf) giraffe is mad at the elephant. +C and then[-:] : the other elephant : is look/ing at the plane in the water. +=C and I do not know whatever it is call/ed [+_bch]. +C and then the elephant is explain/ing to the other elephant. +C and the giraffe did not know what : she was say/ing. +C and then : the (ele) other elephant was try/ing to reach the plane. +C and (then then) : then the giraffe was sad. +C then (uh) the other elephant got a net and took it out. +C she reach/ed to get the plane. +C and (gira) the giraffe was happy. +C and then giraffe : never gave it to the elephant. += [Eg:A3] += [Bg:B1] +C The bunny and the : dog : met each other. +C and then (there were) they were build/ing a castle together. +C then[-:] the bunny drop/ed all the sand in the bucket on the castle. +C and[-:] the dog was nervous. +C and the bunny was[-:] scare/ed. +C and then the dog was sad. += [Eg:B1] += [Bg:B2] +C a dog and a bunny were go/ing on a picnic. +C and[-:] the bunny took all his food out and[-:] was hungry. +C and the bunny ate : all : of his food. +C and then[-:] whatever it is call/ed (ahh) ate too much. +C and he was sick. +C and then the dog went to the bunny/z mom : and[-:] telled|tell[EW:told] *her that (his) her baby is sick [EU]. +C and the dog was pull/ing her to (the baby) [~_I_mean] boy. +C and then[-:] the mom : look/ed at the boy. +C and[-:] the mom walk/ed the boy back home. += [Eg:B2] += [Bg:B3] +C guy has a wagon and the balloon. +C and the bunny is come/ing. +C and the bunny try/ed to get the balloon. +C and the bunny took it off of the : wagon. +C and then the dog try/ed to get the balloon back in the bunny [EU]. +C and then the dog was (ma) mad at the bunny. +C and then[-:] a guy with lot/s of balloon/s : (uh[-:]) the bunny saw it. +C and then the bunny : said can I have one of those balloon/s? +C and he gave one. +C he has five cent/s [~_laughs]. +C (he did not have) he did not have any change. +C so he was nervous. +C and[-:] the bunny went to[-:] the doctor and ask/ed [~_pronounced__'axed'] if he had any five cent/s. +C and then the bunny ask/ed the doctor (if he could get one) if he could have five cent/s for the balloon for my[-:] friend. +C and : the[-:] doctor gave two dollar/s. +C and he got lot/s of balloon/s. +C and then the bunny and the dog were happy. += [Eg:B3] diff --git a/data/ENNI_SALT/train/702.slt b/data/ENNI_SALT/train/702.slt new file mode 100644 index 0000000000000000000000000000000000000000..0595b05ab401453d6729213d476df6e83014b503 --- /dev/null +++ b/data/ENNI_SALT/train/702.slt @@ -0,0 +1,77 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 2/3/1993 ++DOE: 3/9/2000 ++CA: 7;1;6 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 702=CHI ++Tape Location: Disk M3 Track 37 += [Bg:A1] +C it is a giraffe. +C and the : elephant play/ed ball. +C it go/3s in the swimming pool. +C : (it) the giraffe is go/ing to get it. +C and : the giraffe get/3s it. +C and they are play/ing ball again. += [Eg:A1] += [Bg:A2] +C it is[-:] : a giraffe and a[EW:an] elephant again. +C (an) : and they are run/ing. +C : the elephant was run/ing. +C : and : the elephant hurt [<~_herself]hisself[>~_herself]. +C the lifeguard came. +C : the lifeguard is (chh uh) put/ing a bandaid on it. +C and then he is put/ing (uhm) her on the bench. +C and then the lifeguard say/3s (to) to her no run/ing. += [Eg:A2] += [Bg:A3] +C (okay) it is a[EW:an] elephant. +C and (the giraffe pla ha) the giraffe has a[EW:an] airplane. +C : the giraffe is play/ing (it) with it. +C the elephant is try/ing. +C : and the elephant throw/3s it into the water. +C and the giraffe is mad. +C : and the lifeguard came. +C : and (the l) the[-:] elephant say/3s sorry to the lifeguard. +C and the lifeguard try/s to get it. +C and the lifeguard can not get it. +C and the lifeguard/z (um) wife came : with a net. +C and the lifeguard/z[-:] : wife got the net : and pull/ed the airplane out. +C then she gave it to the (geraff) giraffe. +C and the giraffe was : happy. += [Eg:A3] += [Bg:B1] +C (ss) the rabbit and the dog (was) : was[EW:were] make/ing a sandcastle. +C (they are m) they are dig/ing out the sand. +C they are put/ing the sand on the castle. +C and they broke the castle. +C and now the dog is cry/ing. += [Eg:B1] += [Bg:B2] +C (kay) they are go/ing for a picnic. +C the rabbit is eat/ing too much. +C the rabbit get/3s sick. +C and he is dizzy. +C and the doctor come/3s. +C the doctor check/3s : him. +C and she is put/ing the thing in his mouth. +C and the doctor is take/ing him home. += [Eg:B2] += [Bg:B3] +C (kay) they are go/ing : with : the wagon with the balloon on it. +C (the do) the rabbit take/3s the balloon. +C he let/3s go of it. +C and it is float/ing in the air. +C it is (f li) far up in the cloud/s. +C and they see a balloon man. +C they[-:] want a balloon. +C : they : got the balloon. +C but he did not have five cent/s. +C and (he said : a) : the : guy said you can not have the balloon : then. +C and he went to the doctor. +C the doctor gave him five cent/s. +C and then they gave him the five cent/s. +C and then (they had the balloon) : they both had a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/704.slt b/data/ENNI_SALT/train/704.slt new file mode 100644 index 0000000000000000000000000000000000000000..d7b1997c8507b389034764bd463bd45d17505aa9 --- /dev/null +++ b/data/ENNI_SALT/train/704.slt @@ -0,0 +1,74 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 12/28/1992 ++DOE: 3/9/2000 ++CA: 7;2;10 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 704=CHI ++Tape Location: Disk M3 Track 55 += [Bg:A1] +C one day there was an elephant and a giraffe who want/ed to go swim/ing. +C the elephant drop/ed her ball in the swimming pool. +C the giraffe swam and got it for her. +C he gave it to her. +C the girl was very happy. += [Eg:A1] += [Bg:A2] +C once upon a time there was : a cow and : a[EW:an] elephant. +C the elephant want/3s to go on a diving board. +C : she ran : there. +C : she slip/ed and bump/ed her knee. +C coach came run/ing. +C : the (go) coach put a bandaid on : it. +C : she walk/ed to the bench. +C : then the coach got very angry at her. += [Eg:A2] += [Bg:A3] +C one day there was a : cow and a[EW:an] elephant. +C : the cow had an airplane. +C (the) the elephant took it from : him. +C : it fell into the swimming pool. +C the cow was very angry at the elephant. +C the coach : came. +C : the elephant was talk/ing to the coach. +C the coach try/ed and reach/ed it [EU]. +C : (the) : (the t) : the cow was : cry/ing. +C : then came : a lady with a net : and grab/ed it. +C and then the cow : was very happy. +C : and the cow and the elephant were happy. += [Eg:A3] += [Bg:B1] +C one day there was : a rabbit : and his friend who want/ed : to build a sandcastle. +C they start/ed to build it. +C (the rabbit) : the rabbit pour/ed a bucket on the sandcastle : and broke it. +C and : the rabbit/z friend : (was) was build/ing it really fast. += [Eg:B1] += [Bg:B2] +C once upon a time there was a rabbit and a dog. +C they were have/ing a picnic. +C the rabbit ate all the food in his basket. +C he had a stomachache. +C his mom came. +C (um) the dog pull/ed : his mom to the picnic. +C (the mom) : the mom was look/ing at his : daughter. +C then he feeled|feel[EW:felt] better. +C and they went home. += [Eg:B2] += [Bg:B3] +C one day there was : a dog who had a balloon. +C the rabbit want/ed to play with it. +C the rabbit untie/ed it from the wagon. +C it flew away. +C they were very mad at each other. +C but then they seen|see[EW:saw] : a man sell/ing balloon/s. +C they want/ed to buy one. +C but the balloon/s were five cent/s. +C and the rabbit had no money. +C they were sad. +C then he seen|see[EW:saw] : a girl. +C and he ask/ed (if he could) if she could buy one for them. +C (and he) and she did. +C and they were both very happy. += [Eg:B3] diff --git a/data/ENNI_SALT/train/705.slt b/data/ENNI_SALT/train/705.slt new file mode 100644 index 0000000000000000000000000000000000000000..870b7d5c5fed172721ac7cad013ae0100c8ef286 --- /dev/null +++ b/data/ENNI_SALT/train/705.slt @@ -0,0 +1,101 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 11/4/1992 ++DOE: 4/19/2000 ++CA: 7;5;15 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 705=CHI ++Tape Location: Disk L6 Track 23 += [Bg:A1] +C An elephant and a : horse are play/ing. +C (the ball) (the ball went into) (the ball went in) [~_E:_go_ahead] the ball went into : the swimming pool. +C and (the) the horse jump/3s in to go get the ball. +C the horse : give/3s the ball to the elephant. +C the horse is give/ing : the elephant a happy face. +C and the elephant is do/ing the exact same. += [Eg:A1] += [Bg:A2] +C They are go/ing to have a race. +C then they change/ed their mind/s. +C and they are go/ing to go on the jumping board. +C they were run/ing. +C and elephant slip/ed. +C elephant hurt (her) her knee. +C the lifeguard come/3s. +C the lifeguard put/3s a bandaid on. +C now elephant is happy. +C lifeguard is point/ing to the sign no run/ing. += [Eg:A2] += [Bg:A3] +C They are talk/ing together. +C and one of them has a[EW:an] (pa) airplane. +C the airplane (brea) break/3s. +C and he throw/3s it in the swimming pool. +C then they fix it. +C and : it fly/es. +C then it fall/3s into the swimming pool. +C then it go/3s : into the swimming pool (s) : into down(*3) [EU]. +C now the lifeguard is mad at Elephant and Horse. +C (lifeguard) Elephant told the lifeguard : that we were play/ing with it : airplane. +C Lifeguard can not reach it. +C Horse cry/3s. +C elephant : lifeguard come/3s : to get the paper airplane. +C she gets it and pick/3s it out of the water. +C and she give/3s it to Horse. +C Horse is happy and Elephant [EU]. += [Eg:A3] += [Bg:B1] +C (they are build/ing a castle) dog is build/ing a castle. +C and bunny rabbit want/3s to help. +C and dog say/3s bunny rabbit can help. +C bunny rabbit : dig/3s some sand up. +C and dog : (tri) prepare/3s the castle. +C dog is mad because bunny rabbit dump/ed the sand on (ca) (castle) : on the castle. +C the castle is broken. +C dog and bunny rabbit are sad. +C dog is cry/ing. +C (bunny rabbit) : dog is try/ing to make a new (wa) castle. +C bunny rabbit is stand/ing up : go/ing like this [~_makes_a__face]. += [Eg:B1] += [Bg:B2] +C dog is go/ing for a (pic) picnic. +C bunny rabbit is come/ing : with dog : with a picnic basket. +C : dog unpack/3s the picnic. +C bunny rabbit : go/3s likes[EW:like] this : stare/ing at a carrot. +C dog is : eat/ing and drink/ing. +C bunny rabbit is full. +C he ate too much. +C bunny rabbit is get/ing a tummyache. +C dog is go/ing to get a doctor. +C dog pull/3s the doctor to picnic. +C doctor help/3s bunny rabbit. +C doctor : walk/3s with bunny rabbit. +C and dog stay/3s and pick/3s up the picnic. += [Eg:B2] += [Bg:B3] +C dog is push/ing : (um) : a coat. +C and bunny rabbit is go/ing to get into the trailer. +C and dog [+//]> +=C oh no [+_bch]. +=C nothing [+_bch]. +C and bunny rabbit try/3s to get the balloon off : (of tra) of the trailer. +C (dog go/3s) : dog (go/3s) : shout/3s. +C and bunny rabbit : try/3s to untie the balloon. +C (dog and bunny : are try/ing) : bunny untie/ed the balloon. +C and it went up in the air. +C dog and bunny are try/ing to get the balloon. +C dog (go) got very very mad at bunny rabbit. +C a store man with a whole bunch of balloon/s. +C bunny come/3s and get/3s one and tie/3s it (to : trailer/s) (trailer) to the trailer. +C bunny : ask/3s : for : a balloon. +C : this is five bill/s. +C and bunny has no money. +C : then dog come/3s. +C and (ask) they both ask : for : a balloon. +C then bunny rabbit run/3s off to doctor. +C (doctor) : bunny rabbit ask/3s doctor : if he can have some money to buy a balloon. +C doctor buy/3s a balloon for bunny rabbit (do) and dog. +C now (bun) dog and bunny rabbit are happy at doctor [EU]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/706.slt b/data/ENNI_SALT/train/706.slt new file mode 100644 index 0000000000000000000000000000000000000000..dca8f05a62b42e0d85a3bc35d6e4e742e731285d --- /dev/null +++ b/data/ENNI_SALT/train/706.slt @@ -0,0 +1,97 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 5/11/1992 ++DOE: 3/9/2000 ++CA: 7;9;27 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 706=CHI ++Tape Location: Disk M3 Track 59 += [Bg:A1] +C (uh) an elephant has a bathing suit on. +C and : she is bounce/ing a ball. +C and there is a giraffe too. +C : and[-:] (uh) the elephant/z : ball fall/3s in the : pool. +C and they (uh) have (like) a (like) go/ing like : thing [~_child_opens_mouth] [EU]. += %COM: C could be referring to water gushing out of giraffe's mouth as he swims +E like open/ing their mouth, [~_CHI:_yeah] oh. +C and (uh) the giraffe is swim/ing to get the ball. +C and he get/3s it for (um) the elephant in the bathing suit. +C and (uh) she is happy. += [Eg:A1] += [Bg:A2] +C (um) it is the elephant and the giraffe again. +C and they are stand/ing by the pool. +C (uh) and it say/3s (no[-:]) no run/ing. +C : but (uh she) (she) she was run/ing. +C : then she slip/ed. +C and she get/3s away with it. +C and then the giraffe is run/ing after her. +C and then she got (hu) a hurt on her knee. +C and the giraffe keep/3s on run/ing : to see her. +C and a lifeguard come/3s, an elephant one [~_an_elephant_lifeguard]. +C and on it/z teeshirt it say/3s lifeguard. +C and he put/3s a bandage on it. +C : and they carry her to a bench. +C : and the lifeguard is show/ing her the sign that says no run/ing. += [Eg:A2] += [Bg:A3] +C the[-:] elephant is talk/ing to[-:] the giraffe friend. +C and : he has a[EW:an] airplane. +C and I think that the elephant want/3s to play with it. +C (um : the gir) the giraffe is make/ing (it uh) (his thing uh) his airplane fly around. +C : and (uh) the elephant girl just grab/3s it. +C : and she drop/3s it in the water. +C and[-:] the giraffe is mad : and angry. +C the lifeguard come/3s in the other story. +C he try/3s to catches[EW:catch] it. +C but he can not : (um) because it is too far away. +C : and the giraffe is cry/ing. +C and then (ca) here come/3s another lifeguard : except she is a girl with hair. +C : and she use/3s her net to get it. +C and she give/3s it to the giraffe. +C and he is happy. +C : and the girl elephant is happy too. += [Eg:A3] += [Bg:B1] +C (um there is) I think it is a dog and a rabbit. +C and the dog is build/ing a sandcastle. +C and[-:] the rabbit is go/ing to help her. +C (he) : (he um) his bucket is full of sand. +C and he throw/3s it on top. +C and : the dog look/3s worry/ed. +C and it break/3s. +C and[-:] she is cry/ing. +C and she is try/ing to build it again. += [Eg:B1] += [Bg:B2] +C (um) the dog and the rabbit are go/ing for a picnic. +C and the rabbit eat/s too much food. +C he has a tummyache. +C : (uh) he do/3s not feel really good. +C (uh) the dog is go/ing to : get the doctor that is walk/ing on the road. +C and she is a rabbit. +C and she (um) quickly pull/3s her : over to the other rabbit. +C and she check/3s him. +C and then I think (uh) she is go/ing to [~_gonna] take him to the hospital. += [Eg:B2] += [Bg:B3] +C (um the girl) the dog : she (s um) has a wagon. +C and there is a balloon tie/ed to it. +C and (the bu) the bunny come/3s along. +C he want/3s to hold the balloon. +C and[-:] : he take/3s it off. +C and it fly/3s[-:] away. +C and the dog is really mad. +C (um he is) the rabbit see/3s a (um) rabbit with balloon/s for sale. +C (but they are) he ask/s for some. +C but they are (five[-:] ) : five cent/s each. +C and he do/3s not have any money. +C he run/3s to see the doctor that help/ed him before. +C she pay/3s. +C and (they ge) (she pay/3s sh um) the rabbit (uh) ask/3s her. +C and she pay/3s for one each. +C and[-:] the kid/3s are really happy. +C and so is the doctor. += [Eg:B3] diff --git a/data/ENNI_SALT/train/708.slt b/data/ENNI_SALT/train/708.slt new file mode 100644 index 0000000000000000000000000000000000000000..6ceb51e67477d333338c5148f8579f098f14793a --- /dev/null +++ b/data/ENNI_SALT/train/708.slt @@ -0,0 +1,84 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 5/10/1992 ++DOE: 3/9/2000 ++CA: 7;9;28 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 708=CHI ++Tape Location: Disk M3 Track 90 ++COMMENT: C often repeats last few sounds of final words, sometimes after a pause += [Bg:A1] +C (um) one day I went over to my friend. +C (um) she was play/ing with her ball : (ll) [~_continuation_of__final_word]. +C the ball fell into the pool beside the place where she was play/ing. +C so I swam over (er) [~_continuation_of_over] and got the ball. +C I swam back to her and gave her the ball : (ll) [~_continuation__of_final_word]. +C she was happy. += [Eg:A1] += [Bg:A2] +C (hmm) : one day me and my friend were by the pool. +C : she want/ed to jump off the diving board. +C so she ran over to it. +C while she was run/ing (she fff) she slip/ed and hurt her knee : (ee) [~_continuation_of_final_word]. +C (yu) I call/ed the lifeguard. +C he put a bandaid on it (iii) [~_continuation_of_final_word]. +C then she felt much better. +C he told her not to run : because it says no run/ing. +C there is a sign right there. += [Eg:A2] += [Bg:A3] +C one day I was play/ing with my airplane with my friend by the pool : (ll) [~_continuation_of_last_word]. +C she saw the airplane. +C and then she took it from me. +C (an) and she drop/ed it in the pool. +C I was angry with her. +C (she) he call/ed the lifeguard (rd rd) [~_continuation_of__last_word]. +C she show/ed him the plane that was in the pool. +C he could not reach it. +C : then I start/ed cry/ing. +C (nn) then a lady came over with a net. +C she got the airplane. +C she gave it back to me. +C then I was happy. += [Eg:A3] += [Bg:B1] +C (um um) once I was play/ing in the sandbox with my friend. +C and we were play/ing with our shovel/s : (ulz). +C we dug up lot/s of sand (nd) and put them in pail/s and made a sandcastle (ll). +C (we) we dump/ed sand over : the sandcastle. +C the sandcastle : broke. +C and we had a heap of sand : (nd). +C and then my friend start/ed : cry/ing because I dump/ed the sand on it : because he want/ed to keep the sandcastle. += [Eg:B1] += [Bg:B2] +C I went on a picnic with my friend one day. +C and[-:] we had lot/s to eat. +C (um) : I had a lot in my basket. +C my friend had a little bit. +C I ate so much that I got a tummyache. +C (it) : it hurted|hurt[EW:hurt] so bad. +C and : my friend told the doctor (er). +C (and) (and) and the doctor made me feel much better. +C (wer) : and then she took me home. +C and my friend : ate the rest of her part of the picnic. += [Eg:B2] += [Bg:B3] +C one day I saw my friend. +C she had a wagon with a balloon tie/ed to it. +C I came over. +C and (she) he show/ed me the balloon. +C (um) but then I untie/ed it. +C and it float/ed away. +C my friend was mad. +C (uh) but then I saw the balloon seller. +C (uh) and I ask/ed for one balloon. +C (um) and : he (ssa) told me that the balloon/s were five cent/s : (ss). +C then[-:] my friend came over. +C and[-:] [~_let_me_see] she had five cent/s. +C then we saw[-:] : the doctor. +C : and then she[!] came over. +C and she gave us five cent/s. +C and then she bought us each a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/709.slt b/data/ENNI_SALT/train/709.slt new file mode 100644 index 0000000000000000000000000000000000000000..0d40950adecaaa98f50486e73be443a75c9a4e64 --- /dev/null +++ b/data/ENNI_SALT/train/709.slt @@ -0,0 +1,72 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 7/11/1992 ++DOE: 4/19/2000 ++CA: 7;9;8 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 709=CHI ++Tape Location: Disk L7 Track 37 += [Bg:A1] +C A girl elephant was play/ing with a ball. +C the ball went in a pool. +C (a gira) a baby giraffe (ca) came to get it. +C he got it and gave it to the : girl. +C the girl like/ed the[-:] giraffe. += [Eg:A1] += [Bg:A2] +C They look/ed at the pool. +C the elephant was run/ing in the pool. +C the elephant slip/ed : and hurt her knee. +C a lifeguard came. +C the lifeguard gave her a bandaid. +C they sat on the chair. +C the lifeguard (poi) point/ed at the sign. += [Eg:A2] += [Bg:A3] +C A girl was happy. +C a plane hit her. +C the girl got the plane. +C and she put it on the water. +C (the water sank) [~_no] the plane sank. +C the lifeguard came. +C : the lifeguard saw the plane : and try/ed to get it. +C it sank. +C a girl lifeguard had a net. +C the girl lifeguard got the : plane. +C the girl lifeguard gave it to the boy. +C the boy hug/ed the plane. += [Eg:A3] += [Bg:B1] +C a girl play/ed in the sandbox. +C a rabbit came to play. +C the rabbit broke : the girl/z sandcastle. +C (the rabb) the girl was mad at the rabbit. +C the girl was cry/ing. += [Eg:B1] += [Bg:B2] +C a girl was go/ing to[-:] a picnic. +C a[-:] boy came : (to) with her. +C the boy was (ff) so full. +C he got the[EW:a] stomachache. +C a doctor came. +C the girl pull/ed the doctor. +C the doctor look/ed [~_pronounced_"look-ed"] at the boy. +C he felt okay and came with the doctor. += [Eg:B2] += [Bg:B3] +C a girl had a wagon with a balloon on it. +C the boy : try/ed to get the balloon. +C the boy untie/ed the balloon. +C it went up into the air. +C the girl was mad at the rabbit. +C : a guy had lot/s of balloon/s. +C the rabbit asked the man if he could get : a balloon. +C the balloon cost five cent/s. +C he did not have five cent/s. +C a doctor came. +C (and) and the (rab) boy rabbit ask/ed the doctor (if) : to come to the balloon/s. +C (the doctor bi) buyed|buy[EW:bought] balloon/s. +C (for) the doctor gave balloon/s to both of them. += [Eg:B3] diff --git a/data/ENNI_SALT/train/711.slt b/data/ENNI_SALT/train/711.slt new file mode 100644 index 0000000000000000000000000000000000000000..54513fc9ce1c87d84f3561de67003be71193f6fa --- /dev/null +++ b/data/ENNI_SALT/train/711.slt @@ -0,0 +1,98 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 9/13/1992 ++DOE: 4/19/2000 ++CA: 7;7;6 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 711=CHI ++Tape Location: Disk L8 Track 5 += [Bg:A1] +C Today we meet Ella elephant and George giraffe. +C Ella was play/ing : with a ball. +C and : she threw it in the pool that George and Ella were at. +C while Ella was stand/ing there George : swam in (and got) and try/ed to get Ella/z ball. +C George got Ella/z ball and swam : back to her. +C Ella was very (ha) happy with George. +C George was very proud of himself. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C (Percy and Bob are) [~_I_mean] (um) Ella and George are still at the pool. +C (um) and they are look/ing into the water. +C Ella want/3s to go off the diving board. +C George and Ella (run) try to run to the diving board. +C but Ella slip/3s. +C Ella hurt/3s her knee and start/3s to cry. +C George help/3s her. +C and (the life elephant) the lifeguard elephant (came) come/3s to help. +C the lifeguard elephant put/3s a bandage on Ella/z knee. +C the lifeguard elephant also help/3s Ella up on a bench. +C George try/3s to help/3s[EW:help] too. +C Ella did not see the no run/ing sign at the first page of this story. +C and the lifeguard elephant get/3s angry. += [Eg:A2] += [Bg:A3] +C George and Ella are still[!] at the pool. +C George has a[EW:an] : airplane with him. +C George is make/ing the airplane do trick/s in front of Ella. +C and Ella is look/ing a little bit strange. +C then Ella grab/3s the airplane from George and look/3s at it constantly. +C then Ella : accidentally drop/3s (the : pap) the plane in the pool. +C and George do/3s not look very happy. +C George get/3s very very angry at Ella for drop/ing the plane in the pool. +C the lifeguard elephant (look/3s at Ella) (look/3s) [~_I__mean] look/3s at the airplane. +C and so do/3s George while Ella try/3s to sneak away. +C (George) : but (the life elephant) : the lifeguard elephant stop/3s her and want/3s : Ella to explain what happen/ed to the airplane. +C the lifeguard elephant try/3s (to get) to reach over the pool and get the airplane for George. +C when he cannot reach it (Geo) George get/3s on his knee/s and start/3s to cry. +C : Ella/z : mother come/3s (to) with a pool : net. +C and I think she is try/ing to get the : airplane. +C Ella/z mom is really really close to get/ing it. +C and (George is) (Ella) the lifeguard elephant is look/ing happy. +C and George (is) still has a few tear/s in his eye/s. +C when Ella/z mom get/3s George/z airplane for him : George is really happy. +C now George : has his airplane back. +C and they are : look/ing more playful. += [Eg:A3] += [Bg:B1] +C once upon a time (there was a little : um) (there were a) there was a little dog and a little rabbit. +C the little dog/z name was Percy. +C and the rabbit/z name was Bob. +C Bob and Percy were make/ing a sandcastle near a lake or an ocean. +C Bob dump/ed (sa) sand all over : Percy/z sandcastle. +C (um) Bob and Percy were both shock/ed about the sandcastle. +C Percy start/ed cry/ing and try/ed to rebuild it while : Bob was think/ing about what he did. += [Eg:B1] += [Bg:B2] +C once upon a time : there was Bob and Percy got back together for a picnic. +C Bob had pack/ed lot/s of food that he thought : was very good. +C but Percy only had a very simple picnic (like sandwich) like a sandwich and juice. +C while Percy was eat/ing Bob start/ed to feel sick. +C Bob pass/ed out. +C and Percy went to get : (doctor[-:]) : Doctor Peter. +C Percy pull/ed Doctor Peter toward/3s Bob. +C Doctor Peter check/ed out the way Bob was feel/ing. +C and Bob got back up. +C Doctor Peter made Bob feel : (a lot better) : a lot better. += [Eg:B2] += [Bg:B3] +C once upon a time Percy and Bob got together again. +C Percy was pull/ing (a w) a : blue wagon with a balloon tie/ed to it. +C Bob want/ed to see the balloon. +C (Bob untie) (try/ed t) (is try) Bob (tr) try/ed to untie the balloon from Percy/z wagon. +C Bob succeed/ed on do/ing it. +C and the balloon float/ed away. +C while Bob was look/ing up Percy got really mad at him. +C while Percy was be/ing angry (and) : Bob (walk/ed) saw that a balloon bunny was stand/ing : on the sidewalk. +C and he walk/ed over to him. +C Percy start/ed look/ing at Bob while he pick/ed out another balloon for Percy. +C (but he) but now he notice/ed that the balloon/s were five cent/s. +C and he did not have any money. +C while Percy came up behind him and start/ed look/ing at the balloon/s [~_note:_seems_to_be_separate_sentence,_not_connected_to__previous_or_next_utterance_judging_from_intonation_or_meaning]. +C : Bob (ra) saw that Doctor Peter was : (he) on the sidewalk and ran over to her. +C Bob (point/ed to the balloon bunny) point/ed to Doctor Peter (at) to the balloon bunny and Percy. +C : Doctor Peter paid for two balloon/s one for Percy and one for Bob. +C : now Percy : and Bob are happy. += [Eg:B3] diff --git a/data/ENNI_SALT/train/712.slt b/data/ENNI_SALT/train/712.slt new file mode 100644 index 0000000000000000000000000000000000000000..9c4debc3fe625ddac5ca57251cd8dcdd0d858384 --- /dev/null +++ b/data/ENNI_SALT/train/712.slt @@ -0,0 +1,95 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 10/7/1992 ++DOE: 4/18/2000 ++CA: 7;6;11 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 712=CHI ++Tape Location: Disk M4 Track 5 += [Bg:A1] +C (uh) [~_sighs] (a) a giraffe found a[EW:an] elephant and want/ed to play ball (with it) : with her : because she was bounce/ing her ball up and down. +C : and then the ball fell in the water. +C : so the giraffe : jump/ed in the water and went to get the ball. +C and then he got the ball and gave it to the (gir) elephant. +C then the elephant was happy. +=C and that is the end [+_bch]. += [Eg:A1] += [Bg:A2] +C (they) (uhm) : (the little elephant and giraffe want/ed to jump out) [~_well] the little elephant and giraffe want/ed to swim in the water. +C (and there is a sign xxx) and there was a sign that said no run/ing. +C but[-:] the elephant ran[-:] to the diving board because she want/ed to jump off it. +C : and then she slip/ed : and bonk/ed her knee. +C : and (then she) (he got the lifeguard to come) then the giraffe got the lifeguard to come. +C and they put a bandaid on her knee. +C : and then she had to sit on the bench for a minute. +C and she got into trouble because (it) the sign said no run/ing. +C and she ran. += [Eg:A2] += [Bg:A3] +C (the l) the elephant and[-:] the giraffe : were play/ing. +C then the giraffe was play/ing with his airplane[-:]. +C and the elephant want/ed to play with it too. +C (so) but first (the gira) the giraffe play/ed with it and zoom/ed it around in circle/s. +C and the elephant want/ed to play[-:]. +C then the elephant took it : and[-:] (zrro) zoom/ed it and zoom/ed it. +C and then[-:] : splat[!] it splash/ed in the water. +C : (then[-:] ) then the : giraffe got really mad[-:]. +C : so the lifeguard came and try/ed to get the airplane. +C I do not see why they could not swim in the water. +C [~_well] (um) then the lifeguard came. +C and the little elephant said I by accident : zoom/ed the plane around. +C and it fell in the water. +C : and then the lifeguard try/ed to reach the airplane. +C but he could not. +C : then : (the) the[-:] lifeguard/z[-:] (uh) wife came. +C (and got) and she had a net. +C so she got the airplane with the net. +C : [~_well] she try/ed[!] to get the airplane with the net. +C : then she got it back. +C : and the giraffe was happy. += [Eg:A3] += [Bg:B1] +C (um) (there is two uh) there is (a bi) a bunny and : a dog. +C the dog made a castle. +C and the bunny want/3s to play with the dog. +C now : the bunny is try/ing to help make the castle bigger. +C (uh) but he is pour/ing it on the castle. +C and the dog get/3s really worry/ed. +C and then the castle is gone except for one little part. +C then the bunny rabbit is (ss) sorry that he broke the castle. +C and the dog is very sad. += [Eg:B1] += [Bg:B2] +C the bunny sees the[-:] little dog again. +C and they have picnic basket/s. +C and[-:] the rabbit is really hungry. +C so he take/3s out all of his food : and : start/3s to eat. +C and then he ate up all of his food really quick. +C and he had nothing left. +C then (he got really fel) he felt really sick (and). +=C I think you skip/ed a page [+_bch]. += %COM: CHI and EXA discuss briefly which page they should be on +C and then the little : dog (got a doctor) found a doctor and want/ed (it to co) her to come and help. +C and she pull/ed[-:] her toward/3s the sick bunny. +C and then she found out that he had a stomachache. +C then he felt better because the doctor help/ed him. += [Eg:B2] += [Bg:B3] +C the bunny meet/3s the rabbit again. +C and the bunny has a wagon with a balloon tie/ed to the wheel. +C and : the rabbit want/3s to hold the balloon[-:]. +C and (then[-:] : he untie/3s[-:] it) [~_well] he try/3s to tie it (on to the knot) in a knot. +C and : then the balloon actually fly/3s[!] away. +C and the little dog get/3s really mad [~_child_growls_when_he_says_this]. +C (so they go) so the little rabbit go/3s to see the balloon man : so he can buy a balloon. +C but he do/3s not have any money. +C he need/3s twenty five cent/s to buy a balloon. +C so they get really sad. +C and then[-:] they find the same doctor and ask if they can have some money. +C : then the little rabbit point/3s to the balloon man and say/3s we want a balloon. +C and then : she pay/3s the man. +C and they get a balloon. +C : (and) and then they are happy. += [Eg:B3] diff --git a/data/ENNI_SALT/train/714.slt b/data/ENNI_SALT/train/714.slt new file mode 100644 index 0000000000000000000000000000000000000000..8f7d8588fde9a5eed2adbdacc98c8a79bff283e3 --- /dev/null +++ b/data/ENNI_SALT/train/714.slt @@ -0,0 +1,108 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 11/21/1992 ++DOE: 6/9/2000 ++CA: 7;6;19 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 714=CHI ++Tape Location: Disk L16 Track 80 += [Bg:A1] +C (Okay) one day an elephant was walk/ing down the street bounce/ing a ball. +C and he ran into his friend. +C (but) and they went to the swimming pool together. +C but[!] : all of a sudden : their ball fell into the pool. +C and so they had to go swim/ing to get it. +C and so : the friend hand/ed the elephant the ball. +C and she said thank you. +C (and then they decide/ed to go s) and they decide/ed to go and : bounce the ball again. += [Eg:A1] += [Bg:A2] +C (Okay) so one day two friend[EW:friends] decide/ed to go to the pool. +C and one said whoa look at that diving board. +C that would be lot/s of fun. +C and so they start run/ing towards the diving board. +C but the elephant slip/3s. +C and she really hurt/3s her (nu) knee. +C owie she say/3s I have got a cut on my knee. +C it hurt/3s. +C and the lifeguard come/3s run/ing. +C and the lifeguard put/3s a bandaid on it. +C and she walk/3s back to (the) a bench. +C and the lifeguard tell/3s her not to run : at the pool. +C and he point/3s to a sign that says no run/ing. += [Eg:A2] += [Bg:A3] +C so one day these two friend/s decide/ed to go to a pool. +C and one of them was carry/ing a toy airplane. +C and : she decide/ed to play with her toy airplane. +C and : (this) (there fr) her friend grab/ed it : and said wow[!] I like this airplane. +C but she drop/ed it. +C and it fell into the pool. +C and : the friend got mad (at her fr) at their friend. +C and they ask/ed the lifeguard if (sh) he[!] could get the : airplane out. +C and she said [~_high_pitched_voice] please please our airplane is in the water ! +C [~_high_pitched_voice] it might not float! +C and so he go/3s. +C and he try/3s to get it. +C but he can not reach it. +C it is a little bit too far away. +C and this guy start/3s cry/ing because he can not get his airplane back. +C but then[!] (this) this other[!] person comes along with a net. +C (and she fish/3s) and she try/3s to fish the airplane out of the water. +C and she get/3s it for him. +C and he say/3s thank you! +C and he say/3s oh my airplane. +C I am so glad it is back to me! += [Eg:A3] += [Bg:B1] +C One time two friend/s were play/ing in a sandbox. +C and they decide/ed to make some sandcastle/s. +C and (the) then (this) (the other) this friend said why do not we put some sand on it to make it even bigger? +C but[!] : it burry/ed the castle. +C and it fell over. +C and the friend who made it was like oh my poor castle. +C I want it back. += [Eg:B1] += [Bg:B2] +C one time two friend/s met on the road. +C and they are plan/ing to have a picnic. +C and so they get to where they are have/ing the picnic. +C and it turn/ed out that one of the friend/s was a rabbit. +C but he was really hungry. +C and he got a really fat stomach after eat/ing all that. +C and he said oh I do not feel very good. +C I think I ate too much. +C and then : the friend said oh dear. +C I will quickly fetch the doctor. +C and so he went to get the doctor. +C and he pull/ed the doctor and said [~_high_pitched_voice] please come quick. +C [~_high_pitched_voice] I think he do/3s not feel well. +C and the doctor come/3s and say/3s : well[!] : you better not eat that much food. +C it make/3s you sick. +C and so they go home. += [Eg:B2] += [Bg:B3] +C One time two friend/s met. +C and : one was pull/ing a wagon with a balloon. +C and he said wow look at that balloon. +C (I think) : look how (f) high it float/3s. +C and he try/3s to untie the balloon. +C but it float/3s away! +C and they want to get it back. +C and the friend get/3s really mad at the other friend because he want/3s his balloon back. +C but[!] they see a balloon man down the road sell/ing balloon/s. +C and they say oh we want another balloon. +C and : the man say/3s well : the balloon/s are five cent/s. +C and they say well we do not have any money. +C (and) but they see : someone down the road. +C and they think maybe (they) she would lend them money. +C and they say we want to [~_wanna] buy a balloon. +C can you please (ha) give us some money? +C and so she give/3s them some money. +C and they get a balloon. +C and they both[!] get a balloon. +C and they said well is not this nice. +C now we both get a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/716.slt b/data/ENNI_SALT/train/716.slt new file mode 100644 index 0000000000000000000000000000000000000000..fcf9f666f9b1bb53321b9321a73d565f89791d60 --- /dev/null +++ b/data/ENNI_SALT/train/716.slt @@ -0,0 +1,100 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 7/25/1992 ++DOE: 6/9/2000 ++CA: 7;10;15 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 716=CHI ++Tape Location: Disk L16 Track 90 += [Bg:A1] +C One day an elephant was bounce/ing : a ball. +C and then a giraffe came : over and said want to [~_wanna] play basketball? +C and then the elephant said sure. +C let us do it over there. +C okay said the giraffe. +C and then they hit the ball into the pool : where it was. += %COM: "where it was" interpreted as "where the story was set". +C and the giraffe went swim/ing for it. +C and he got it and return/ed it back to the elephant. +C and then they start/ed to play again. += [Eg:A1] += [Bg:A2] +C One day the elephant and the giraffe want/ed to go swim/ing. +C so then the elephant start/ed to run to the diving board. +C and the giraffe start/ed walk/ing. +C then all of the sudden the elephant slip/ed. +C and the giraffe hurry/ed to get her. +C and then the elephant start/ed cry/ing because she had big booboo. +C so then the giraffe went to get the lifeguard. +C and the lifeguard gave the elephant a bandaid. +C and then they went to sit down on a bench. +C and then the lifeguard show/ed her the sign that said no[!] run/ing. += [Eg:A2] += [Bg:A3] +C One day the elephant and the giraffe were : go/ing to fly the giraffe/z plane. +C and then when the giraffe let the plane go : it : flew off. +C and then the elephant caught it. +C and then the elephant drop/ed it into the water. +C and then the giraffe got so angry at the elephant. +C and the lifeguard came over and ask/ed what was[EW:had] happen/ed. +C and the giraffe said that she : drop/ed his plane into the water. +C so then the : elephant and the : lifeguard start/ed to have an argument. +C and it never end/ed. +C (so then the) so when it was finish/ed the : lifeguard try/ed to go and : get it. +C but then he did not. +C so then : the giraffe star/ted to cry. +C and then another elephant came over. +C and she had a net with her. +C and then she scoop/ed it up. +C and then she gave it back to the giraffe. +C then giraffe start/ed to hug it. += [Eg:A3] += [Bg:B1] +C one day there was : (um) : a small dragon and a rabbit. +C and they were play/ing in their sandbox. +C and then the rabbit start/ed to : make a sandcastle [~_pronounced__"candsassle"]. +C and then the dragon broke it. +C and then : the rabbit built it again. +C and then he : put some sand all over. +C and then he put water in it. +C and then : the : dragon smash/ed it again[!]. +C and then (he is) the dragon start/ed build/ing it. +C and he was cry/ing because it was so much work. += [Eg:B1] += [Bg:B2] +C one day a rabbit came : hunt/ing for egg/s. +C and (a) a bear came with him. +C and then they decide/ed that they would go buy some food and eat it for a picnic. +C and then the : rabbit ate so fast that he : ate lot/s and lot/s. +C and then he start/ed to get fat. +C and then he got so dizzy : while the : bear was drink/ing his lemonade. +C so then a doctor came by. +C and : the bear went to get him. +C and then : the bear drag/ed him all the way there. +C and then : the doctor saw him : asleep. +C so then he gave : him some medicine. +C then he felt so better he could walk home. += [Eg:B2] += [Bg:B3] +C one day the bear : was walk/ing down with his wagon. +C and there is a balloon on it. +C and then all of a sudden rabbit came jog/ing by. +C so then the rabbit said hey nice balloon. +C would you trade it for something? +C and then the bear said sure what you got? +C then the rabbit untie/ed the balloon : and then gave him : three dollar/s. +C but then all of a sudden the rabbit let go of the balloon. +C and it went up into the sky. +C then the bear got so angry he start/ed to charge at him. +C and then on the other side of the street : (some) a rabbit was sell/ing some more balloon/s. +C so then the rabbit went over and bought some. +C and he got about : six because the balloon/s were about fifty cent/s per one. +C and then : the bear came over and : bought one. +C and then : they both went home nice and quietly : with a balloon. +C then when they got[!] home : they[-:] took their balloon/s and start/ed dance/ing. +C and then all of a sudden they pop/ed. +C so then they had to go get new one/s. +C and then when they got the new one/s they put them in their shirt/s. += [Eg:B3] diff --git a/data/ENNI_SALT/train/717.slt b/data/ENNI_SALT/train/717.slt new file mode 100644 index 0000000000000000000000000000000000000000..2895e98d30aa1281cc285e3ba5ac366c3d31ce76 --- /dev/null +++ b/data/ENNI_SALT/train/717.slt @@ -0,0 +1,93 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 11/30/1992 ++DOE: 4/26/2000 ++CA: 7;4;27 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 717=CHI ++Tape Location: Disk L11 Track 44 += [Bg:A1] +C There was a giraffe and a[EW:an] elephant. +C the giraffe saw a ball. +C but then the elephant was scare/ed. +C then the giraffe : went swim/ing to get the ball. +C but the elephant got the ball. +C and she was : nice to the giraffe. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C (Oh) it is the same one. +C There was a giraffe and an elephant who went to the pool. +C the elephant is go/ing to go to the water. +C but the elephant slip/ed. +C then she had a[EW:an] owee. +C (then she lo) (got) and then the giraffe call/ed the lifeguard. +C then she put a bandaid. +C and it is all better now. +C and it is feel/ing better and better and better and better. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C There was a giraffe and a[EW:an] elephant. +C (the gi) and the giraffe was have/ing (a um) a plane. +C and he was fly/ing it. +C (ahs) and then (um) the elephant saw some string. +C then the elephant try/ed it. +C but then it went in the water. +C but then[!] the giraffe got mad. +C and the elephant was sad. +C then the lifeguard : look/ed at the plane. +C then the girl said [~_high_pitched_voice] I did not do that. +C [~_high_pitched_voice] it was just an accident. +C so the lifeguard get|get[EW:got] it. +C so the elephant did not got|get[EW:get] it, the lifeguard [~_I_guess]. +C but then : (um) a girl : came : to get the airplane. +C then she just got it. +C (and there) and then she got it. +C (and then sh) (there was a) then he had the plane back. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C there was a bunny. +C and a little girl made a sandcastle. +C then the bunny and the dog made some (sa uh) sandcastle/s. +C but then the rabbit put some sand on the sandcastle. +C but then it got ruin/ed. +C then she built it up again. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C there was a bunny : and a dog. +C (but he use/ed) and (he had) the bunny has (a) a basket. +C and the dog had the basket. +C then they had a picnic. +C then the bunny got full. +C and : he had a stomachache. +C but (then[!] : some um grandmother) (then the : mom) then (the dentist) [~_no_no_ahh_what_was_it_#_yeah] the dentist came. +C (and his) and (then he) then the dog pull/ed the dentist. +C then it is right there. +C this look/s like a doctor. +C then he got all better. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C there was a dog and bunny. +C and the dog had a stroller and a balloon. +C (then he was go/ing to look at) then he was (gra) almost go/ing to [~_gonna] grab the balloon. +C and then he tie/ed the balloon off. +C but then it flew. +C then he got angry : the dog. +C then there was[EW:were] some more[!] balloon/s. +C (and) and he said can I have one balloon please? +C and he said sure. +C and there was (f) balloon/s five cent/s [EU]. +C then : they did not have any balloon/s. +C there was a dentist. +C said can I have one cent please [EU]? +C (and she) and sure (I) I can give you some [EU]. +C and there was[EW:were] some balloon/s : for each : other. +C and they both had balloon/s. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/718.slt b/data/ENNI_SALT/train/718.slt new file mode 100644 index 0000000000000000000000000000000000000000..550c1c41e886cc786b551e031a95ab49725d30c1 --- /dev/null +++ b/data/ENNI_SALT/train/718.slt @@ -0,0 +1,123 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 9/4/1992 ++DOE: 6/9/2000 ++CA: 7;9;5 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 718=CHI ++Tape Location: Disk L17 Track 2 += [Bg:A1] +C (Um) (two : people) (two) an elephant and (a zebra) [~_no] (a) : a giraffe are talk/ing. +C and (they look) (they are go/ing) it look/3s like they are (go/ing) : go/ing swim/ing. +C and the elephant : is talk/ing to the : giraffe. +C and the elephant : (sort of) probably[?] throw/3s the ball into the : water. +C and she is shock/ed. +C (and he is) and the giraffe is just : calm. +C (he is) (he is) (he is) look/3s like he is go/ing to dive in and go get it. +C and he start/3s to swim toward/3s the ball. +C he is swim/ing toward/3s the ball. +C and then the elephant : (um) do/3s not want to watch because he think/3s he is probably pretty scare/ed. +C he get/3s it. +C and he swim/3s back. +C and the elephant is pretty happy. +C and now she is hug/ing the ball. +C and (the gir um) the giraffe is just smile/ing. += [Eg:A1] += [Bg:A2] +C (um) the elephant and the giraffe[-:] [EU]. +C (um) the giraffe is (uh) hold/ing (a) this towel. +C (and the) and the elephant is hold/ing her hand/s like that. +C (she is) and the elephant is point/ing to the water. +C she is point/ing to the water. +C and she is take/ing a step toward/3s the water. +C (she is look/3s like) she look/3s like she start/3s to run. +C and she slip/3s. +C and then the giraffe start/3s run/ing after. +C and she get/3s hurt. +C and then she start/3s to run to get help it look/3s like. +C she start/3s to cry. +C and then the (uh) giraffe is try/ing to comfort her. +C and the lifeguard (um her) start/3s to come. +C (the) now the lifeguard start/3s to comfort her. +C and she stop/3s cry/ing. +C the lifeguard bring/3s a bandaid and put/3s it on the knee. +C (and she is start/3s) and she open/3s her eye/s. +C and she sit/3s down on the bench. +C and the lifeguard is point/ing to no run/ing. += [Eg:A2] += [Bg:A3] +C The elephant is talk/ing to (zebra) [~_no] the giraffe. +C and the giraffe is hold/ing this plane. +C he is pretend/ing that it is fly/ing. +C and the elephant is watch/ing. +C now[-:] : (um) the elephant take/3s the plane. +C and the (ze) giraffe is not that happy. +C the plane fall/3s in the water. +C and (every) they are both look/ing at it. +C the giraffe (s) is pretty mad at the elephant. +C the lifeguard : (um) come/3s. +C and (he say/3s what is the) he is probably say/ing what is the matter or something. +C and the plane start/3s to sink. +C and the elephant is explain/ing what happpen/ed. +C the lifeguard is try/ing to reach the plane. +C it is too far. +C it is too far in the water. +C so he can not get it. +C (and so) and someone go/3s to fetch a net so they can just scoop the plane up. +C (she get/3s) she[-:] get/3s the plane in the net. +C and then : the giraffe is happy again. +C he is hug/ing the plane. +C and the elephant smile/3s. += [Eg:A3] += [Bg:B1] +C the bunny is talk/ing to the dog. +C and (the dog/z um) the dog has made a sandcastle. +C and the bunny is (pre um) pretty amaze/ed that it look/3s pretty good. +C and the bunny ask/3s if (she) he can help him. +C (the) the dog say/3s sure. +C (um) the bunny pour/3s sand on the : castle. +C and the dog (do/3s not sound that) do/3s not look that happy. +C it turn/3s into a big pile. +C and the bunny is shock/ed. +C the dog start/3s to cry. +C and the bunny is just : say/ing it was an accident. += [Eg:B1] += [Bg:B2] +C the (bu) (um they are both) the bunny is walk/ing down the road. +C and then the dog meet/3s (um) the bunny. +C they stop for a picnic down on the lawn. +C the bunny is eat/ing a lot. +C and the dog has not ate[EW:eaten] that much yet. +C the bunny is stuff/ed. +C and the dog is[EW:has] just start/ed to eat. +C it look/3s like he is pretty dizzy. +C and : (um) the dog call/3s the doctor. +C and the doctor come/3s to see what is the problem with the bunny. +C (and the dog) (and she is tug/ing it i) and she is (tug/ing the doc) pull/ing the doctor as hard as she : can : to him to see what is the matter. +C and she is look/ing at the bunny and point/ing. +C and the doctor walk/3s away with the bunny. += [Eg:B2] += [Bg:B3] +C the dog is pull/ing the wagon : (and the bunny/z) with a balloon tie/ed to it. +C and the bunny is walk/ing down the road. +C the bunny is point/ing to the balloon. +C and it look/3s like he is go/ing to [~_gonna] grab it. +C (he un) he is untie/ing it. +C (and he release/3s it) and he release/3s it. +C and (it go/3s) it start/3s to rise. +C it is too high for them to reach. +C and the dog is pretty mad. +C and there is (: um) a bunny sell/ing balloon/s. +C (um) and the bunny look/s like he is go/ing to [~_gonna] buy some. +C but he has no money. +C so he can not buy : any balloon/s. +C and[-:] it look/3s like : he is talk/ing to them. +C and (the) they look/ed (that) pretty puzzle/ed and stuff. +C and (there is a) the bunny start/3s run/ing toward/3s a doctor. +C and (she uh) [~_no] (his mom and the) (mom) (the mom : um) the bunny ask/3s his mom if she can buy some balloon/s. +C she : says sure. +C and she buy/3s (t) him two[!] balloon/3s. +C and they are hug/ing the balloon/s. += [Eg:B3] diff --git a/data/ENNI_SALT/train/720.slt b/data/ENNI_SALT/train/720.slt new file mode 100644 index 0000000000000000000000000000000000000000..457449f63e3fcdbe89b8e0bfddd6cfb03251d6ff --- /dev/null +++ b/data/ENNI_SALT/train/720.slt @@ -0,0 +1,91 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 7/24/1992 ++DOE: 6/12/2000 ++CA: 7;10;19 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 720=CHI ++Tape Location: Disk L17 Track 54 += [Bg:A1] +C once there was an (elephant and a) an elephant and a giraffe. +C one day the (eleph) the elephant was play/ing with a ball by the pool. +C and the giraffe came along. +C and the giraffe said can I play? +C and the elephant said sure. +C so the giraffe start/ed to bounce it. +C and it fell into the water. +C (so) and then the elephant start/ed to cry. +C so the giraffe jump/ed in and start/ed to swim to get it. +C he got it. +C and he gave it back to the elephant. +C and then the elephant was really happy. += [Eg:A1] += [Bg:A2] +C (One) the next day the elephant (went swim/ing again) went swim/ing again. +C so the elephant was go/ing to jump in. +C but then she slip/ed : and hurt her knee. +C then the lifeguard came along : and put a bandaid on it. +C it was a huge scratch. +C and the giraffe said are you okay? +C and then the lifeguard (told) show/ed the elephant the sign that said no run/ing. += [Eg:A2] += [Bg:A3] +C The next day they went swim/ing again. +C and the elephant told the giraffe a new game they could play : with the giraffe/z (a) airplane. +C the giraffe put the airplane high in the air. +C then the elephant grab/ed it from him and was go/ing to [~_gonna] fly it on his own. +C then it fell into the water. +C the giraffe got so[!] mad at the elephant. +C the lifeguard came along and said what is all the fuss about? +C and the elephant (told) explain/ed that she had : put the airplane in the water. +C so the lifeguard try/ed to reach over. +C but it was just too far. +C (so then) so then the lifeguard told her (he) she could not get it. +C and the giraffe start/ed to cry. +C then[!] another elephant came along with a net[!] : and scoop/ed it out. +C the giraffe was so happy. +C (and) (and sh) and he hug/ed and hugged the airplane. += [Eg:A3] += [Bg:B1] +C one day (um) a rabbit was play/ing in the sandbox. +C and another rabbit came along and ask/ed can I play? +C (so the two rabbit/s start/ed) so the first rabbit said sure. +C so they start/ed to build a sandcastle. +C they built and built for hour/s and hour/s. +C and then the second rabbit broke it with too much sand. +C and then (the) that first rabbit start/ed to cry. +C and the second rabbit felt really bad. += [Eg:B1] += [Bg:B2] +C (then the next) and so (um) after (the next) that day that the second rabbit : broke the sandcastle the (first ra) first rabbit felt much better. +C and then they went out for a walk together. +C and then they stop/ed for a picnic. +C the (s) first rabbit thought the second rabbit was a big pig. +C and then the second rabbit got a huge stomachache. +C then : this first rabbit saw a doctor. +C and (she) she ran over tell him about the second rabbit. +C (and she) and she pull/ed (him over) her over to the second rabbit. +C (and then the s) and then the doctor (te) told the second rabbit not to eat so much next time. +C and so she brung|bring[EW:brought] him: home so he could go to sleep. += [Eg:B2] += [Bg:B3] +C so (one) the next day : the first rabbit was on a walk with his balloon. +C and the second rabbit ran up to say hi. +C the second rabbit said what a beautiful balloon. +C and the first rabbit said stop stop because the second rabbit was untie/ing the balloon from her wagon. +C suddenly it float/ed up up up. +C the first rabbit yell/ed come back balloon. +C then the first rabbit got so mad at the second rabbit. +C but then there was a balloon seller. +C (and : gave) and the (f) second rabbit went over to the balloon seller. +C and he bought[!] one of the other balloon/s. +C (and then he gave) (and then) but then he had no money. +C so then the first rabbit came along. +C and then they saw the doctor again they had saw the other day. +C (and they told them abou) and the second rabbit told : her about the balloon/s. +C and she bought two balloon/s for the kid/s. +C and then they were really happy. +C and the second rabbit did not ever let his go. += [Eg:B3] diff --git a/data/ENNI_SALT/train/721.slt b/data/ENNI_SALT/train/721.slt new file mode 100644 index 0000000000000000000000000000000000000000..73704d82ca1afff93059267b63ab74ddc57d2d61 --- /dev/null +++ b/data/ENNI_SALT/train/721.slt @@ -0,0 +1,102 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 12/31/1992 ++DOE: 4/26/2000 ++CA: 7;3;26 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 721=CHI ++Tape Location: Disk L11 Track 37 += [Bg:A1] +C There was a giraffe and an elephant play/ing. +C (and the) and the elephant : was bounce/ing a ball. +C and the ball fell in the pool. +C and the zebra try/ed to catch the ball. +C so zebra gave it to the elephant. +C and the elephant was happy at the zebra. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C The giraffe and elephant left was seen the pool [EU]. +C and (he is) elephant was sad. +C and he want/3s to go on the jump thing. +C and he like ran. +C and he hurt hisself[EW:himself]. +C but the sign say/3s no run/ing. +C so (he) (the) the lifeguard came. +C and then the zebra fell in the xx. +C and the elephant was start/ing to cry. +C then he said youch. +C then he put *on a bandaid, the lifeguard [EU]. +C and he felt much better. +C (and he) and he look/ed at the sign no run/ing. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C The zebra and elephant (were have/ing) were start/ing to have fun. +C then (they use/ed) [~_I_mean] (giraffe) : (they use/ed) he found a[EW:an] airplane. +C so he play/ed with it. +C and then elephant took it (from el um) from zebra. +C and it fell in the water and start/ed to sink. +C and it sinked|sink[EW:sunk] more. +C and zebra was get/ing mad. +C and the lifeguard came and said (theys no) there is[EW:are] no toy/s in this pool allow/ed. +C and then they said (uh) : it is not as if we did it by accident. +C so the lifeguard start/ed to get it. +C he still did not get it. +C then they[?] used a net : [~_no] the elephant. +C and (it) (it) it almost got it. +C and it did got[EW:get] it. +C so (he) (he gave it) he gave it to the giraffe. +C then he start/ed to play with it again. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C Bunny and : giraffe were build/ing a sandcastle. +C (bunny and) (and his) and bunny and rabbit were build/ing it more. +C and rabbit put more about the whole sand on it. +C then it brokes|broke[EW:broke]. +C the bunny made a mistake. +C he said oops. +C and then bunny said I am sorry. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C there was +[EW:were] (bunny and rabbit) bunny (and) : and rabbit. +C they are look/ing for berry/s. +C (and) but they did not look for berry/s. +C they look/ed for food. +C then they got full. +C then rabbit ate more. +C so he got dizzy. +C and then there was a other rabbit. +C (he said) he said (uh) can you help my other rabbit? +C and she pull/ed him. +C and : she said that he ate too much. +C rabbit and bunny live/ed together. +C but the other rabbit did not. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C there is +[EW:are] bunny and rabbit. +C they are (pu) put/ing a balloon on their wagon. +C (the) the (bunny) bunny love/ed the balloon. +C then he start/ed to took|take[EW:take] it off. +C then it flew up in the sky. +C then (bunny) (rabbit got) rabbit got mad. +C then a balloon man came. +C and he said (do you) (can I) do you want some? +C then (bunny) rabbit said yes. +C it is five dollar/s. +C so he : did not have money. +C but he only had (um) only five[!] cent/s. +C and he did not get a balloon. +C and then he start/ed to ask the other : person (if he) if he has money. +C and he said : I want to [~_wanna] buy those balloon/s. +C then he gave them change. +C then he (st) (they) : rabbit and bunny start/ed to play with them. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/722.slt b/data/ENNI_SALT/train/722.slt new file mode 100644 index 0000000000000000000000000000000000000000..be878a65c5618a9111a0ce7ff4c3eeaff1841555 --- /dev/null +++ b/data/ENNI_SALT/train/722.slt @@ -0,0 +1,100 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 2/24/1993 ++DOE: 11/14/2000 ++CA: 7;8;21 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 722=CHI ++Tape Location: Disk M5, Track 50 += [Bg:A1] +C there is a[EW:an] [-:] elephant and a giraffe. +C kid/s. +C they are play/ing by the pool. +C then the ball bounce/3s in the pool. +C and the giraffe go/3s out to swim to get it. +C and then he hand/3s it to the : elephant : kid. +C (and then he) and then she is like thank[!] you because it was her ball. +C and he was like [~_hee_hee_yaw][~!_laughing]. +E what is that expression ? +C he is smile/ing[~!_laughs]. += [Eg:A1] += [Bg:A2] +C (there is a girl and) : there is the elephant and a giraffe by the pool. +C and then the elephant want/3s to go on the diving[!] board. +C and then she slip/3s. +C and she hurt/3s herself. +C and then she start/3s to cry. +C and the lifeguard come/3s. +C and then he put/3s a bandage on her. +C and then he take/3s her to the bench. +C then he is kind of mad at her because it says no run/ing on the sign. += [Eg:A2] += [Bg:A3] +C there is the giraffe and the elephant. +C and the giraffe has an airplane toy. +C and then he is go/ing to fly it in the xx. +C and the elephant (uh) really want/3s to fly it too. +C and then she take/3s it away from him. +C then she accidentally drop/3s it in the water. +C then the giraffe get/3s really mad at her. +C and then she tell/3s the lifeguard : what happen/ed. +C and then : he got kind of worry/ed. +C and she told him that she accidentally drop/ed it in the water. +C (so he try/3s) so the lifeguard try/3s to get it and reach for it. +C and the giraffe start/3s to cry. +C and : the elephant is kind of : worry/ed. +C and the lifeguard is like (m) I do not know what to do. +C then the elephant/z mom come/3s with a net. +C then she get/3s the[-:] : airplane out : and give/3s it to the giraffe. +C and he is really happy. +C and so is the elephant girl. += [Eg:A3] += [Bg:B1] +C there is a rabbit and a little mouse try/ing to build a sandcastle in the sandbox. +C and then the rabbit want/3s to (do s) take some sand out of the bucket too. +C and he pour/3s it on the castle accidentally. +C and it wreck/3s the castle. +C and the mouse is really sad. +C and the mouse try/3s to build it : again. += [Eg:B1] += [Bg:B2] +C well there is a mouse and a rabbit (s) go/ing along. +C and they are walk/ing on the road : (for a) go/ing for a picnic. +C and then the rabbit is like eat/ing all of his food at once. +C and he got a really bad stomachache. +C and he is feel/ing really weird[~!_laughing]. +C and then the mouse go/3 to the : rabbit/z mom : and tell/3s her that he is not feel/ing very well. +C and then the mom get/3s mad at him and say/3s : you go home right now! +C and then she take/3s him home. +C and then the mouse say/3s goodbye. += [Eg:B2] += [Bg:B3] +C (there) : the : mouse is pull/ing her wagon (with the b) with a balloon hook/ed onto it. +C and the rabbit is come/ing along. +C and he is say/ing can I hold it? +C and the mouse is say/ing okay[~!_laughing]. +C so then he take/3s it off. +C and she is like [~_makes_exasperated_noise]. +C and then he accidentally let/3s go of it. +C and it go/3s away. +C then she is really[!] mad at him. +C and he is kind of sad and worry/ed. +C then there is a balloon man there. +C and they go to see him. +=C then he ask/3s for a balloon [+_bch]. +E he has what? +C then the bunny ask/3s for a balloon from the man. +C (but : he is) : but they are five cent/s. +C and he do/3s not have any money. +C so then he is just stand/ing there. +C and then they are really sad. +C so they go back. +C and then the bunny/z mom is there. +C and then he ask/3s for some money to get a balloon because he lost the mouse/z (money) : [~_I_mean] balloon. +C so then (he) the mom bunny give/3s the man some money. +C and they get a balloon. +C and then they are say/ing thank you! +C and the mom is like : you are welcome! += [Eg:B3] diff --git a/data/ENNI_SALT/train/723.slt b/data/ENNI_SALT/train/723.slt new file mode 100644 index 0000000000000000000000000000000000000000..8761e773f2075a7a5e1561e1df13429ccc2019c4 --- /dev/null +++ b/data/ENNI_SALT/train/723.slt @@ -0,0 +1,81 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 12/31/1992 ++DOE: 5/3/2000 ++CA: 7;3;26 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 723=CHI ++Tape Location: Disk L12 Track 76 += [Bg:A1] +C An elephant and a : giraffe met together. +C and : they found something in the water. +C they (s) try/ed to (sw) swim. +C the giraffe was try/ing to get it. +C and the giraffe gave it to the elephant. +C (and then) and then the giraffe was all wet. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C (Ah) a giraffe and an elephant saw something. +C they try/ed to run for it. +C and then an elephant slip/ed. +C and the elephant hurt her knee. +C and then a lifeguard (a) came. +C then : (the lifeguard try/ed to put) the lifeguard put a bandaid on her knee. +C (then) then the lifeguard put the elephant on the bench. +C then the lifeguard point/ed at the sign no run/ing. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C A giraffe and a[EW:an] : elephant met together. +C (they um) the giraffe (s) found an airplane. +C and then : the elephant took it from the : giraffe. +C then it got into the water. +C then it was sink/ing. +C and then a lifeguard came. +C and then : the elephant : was : shout/ing at the lifeguard. +C and the lifeguard try/ed to get it. +C but it stay/ed there. +C so (he uh) another lifeguard got a net : and scoop/ed it up. +C then (i) the : lifeguard gave it to the (gi) giraffe. +C and then he was play/ing with it. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C a baby dog : and a : rabbit are play/ing in the sandbox. +C they are build/ing a sandcastle. +C and : (the ra) the rabbit dump/ed some sand on the sandcastle. +C and it broke. +C (they start/ed) and they start/ed to cry except for the rabbit. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C a rabbit and a : dog are go/ing for a picnic. +C they had a picnic together. +C the rabbit was too full. +C the rabbit (um) : got a stomachache. +C and (he w) he was lay/ing on the (um) the : picnic : (w) on the grass. +C and a lady came. +C and : the guy was still lay/ing on the grass. +C (then) then the lady : (um) check/ed him. +C and then he was all better. += [Eg:B2] += [Bg:B3] +C a dog and a rabbit met together. +C the rabbit want/ed the balloon. +C and he try/ed to take it off. +C and (it fl) it flew away up in the sky. +C (and then : the) the dog got mad at the rabbit. +C and then a man came with a whole bunch of balloon/s. +C and then : the rabbit pick/ed a balloon. +C and he pick/ed : balloon : five cent/s [EU]. +C and he did not have any money. +C (then) then he did not (get) get any. +C and then the girl got some. +C (and) and the rabbit ask/ed for money. +C and he (ga) gave (um the ra) the rabbit five cent/s. +C and then he got a balloon. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/725.slt b/data/ENNI_SALT/train/725.slt new file mode 100644 index 0000000000000000000000000000000000000000..941677c4de7639c51abbd016e85cc735580c35f4 --- /dev/null +++ b/data/ENNI_SALT/train/725.slt @@ -0,0 +1,212 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 5/27/1992 ++DOE: 4/26/2000 ++CA: 7;10;30 ++Gender: F ++Context: Nar ++Group of CHI: SLI ++ID: 725=CHI ++Tape Location: Disk L12 Track 80 += [Bg:A1] +C (There is a) [~_CHI:_is_that_a_donkey_EXA:_what_do_you_think__it_is_CHI:_it_looks_like_a_donkey] a donkey want/3s to play with the elephant. +C and they are by a swimming pool. +C and he see/3s the elephant. +C and there is a note that say/3s something or like that. +C and the ball is bounce/ing really fast. +C and it is hard to see. +C and the elephant is wear/ing a girl/z[-:] dress and a bow tie. +C and the donkey is wear/ing a hat : pant/s : and a shirt. +C and the ball went in the (uh) : pool. +C and the donkey was kind of squirt/ing the water out of his mouth for he can get the ball [EU]. +C and he got the ball to the elephant. +C then she was happy. +C then : he pass/ed the ball up to her. +C then she is happy[-:]. +C then the donkey went out of the water. +C then he is wet. +C and I can see some : water fall/ing from him when he was in the swimming pool. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C Now they went to a swim/ing pool where you would jump off (where a diving thing) where you kind of jump on. +C there is a swimming pool underneath it. +C then the kid/s feel like they want to go swim/ing because they have swimming stuff on. +C and she say/3s[-:] I want to go on there first. +C then you are go/ing on there second. +C then she is walk/ing to the diving[-:] stick thing where you jump off. +C and she was walk/ing to the diving stick. +C and she was go/ing to go on it and then jump on the swimming pool or something. +C (sh) she is[-:] walk/ing too fast. +C and she is kind of slip/ing. +C and she is kind of do/ing a spin around almost. +C and the donkey I think it is go/ing to help her. +C she hurt her knee when she just fell. +C and the donkey was kind of sad. +C and he was go/ing to get someone to help her. +C the donkey is right beside her. +C and she is cry/ing. +C (s uh elephant) a boy elephant or something is go/ing to help her. +C she does not really like the pain when the bandaid kind of hurt/3s her. +C then she can not go in the swimming pool with a bandaid on. +C then it was on her knee. +C and she was okay. +C she had to sit down for a little bit. +C then they start/ed talk/ing to her. +C the sign says no run/ing. +C or you kind of get hurt. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C Her leg is fine. +C and they went back to the swimming pool. +C and the donkey had to bring his toy. +C and she want/ed to go swim/ing instead of run/ing. +C and she stare/ed at the airplane. +C and the donkey kind of put his tongue on the side of him. +C and I can see some line/s from the airplane when he was play/ing with it. +C and she is still stare/ing at it. +C and her eye/s kind of look funny : the elephant/z eyes. +C now she gots|get[EW:gets] it. +C and[-:] the donkey say/3s that is my[!] airplane not your/z. +C (and) and she said I want to play with it. +C and then she start/ed play/ing with it. +C then she kind of get/ing happy. +C but not the donkey. +C now his airplane is in the : swim/ing pool. +C www. += %exp: makes comment about her ring. +C then[-:] the donkey is go/ing to go back in the water or swimming pool or something like that. +C (now hi) now the donkey is upset what the elephant did. +C and (he) (she kin) she is really a little bit sad. +C and the donkey is a lot of mad [EU]. +C now[-:] the (ma) the elephant person already come|come[EW:came] back. +C now both of them are sad. +C and that one is kind of a little bit upset : from that elephant. +C : [~_sighs] now the airplane is sink/ing to the bottom of the swimming pool. +C and they had to try to solve the problem. +C or they have to hurry. +C or that airplane might be sink/ing. +C or it might be hard to see. +C and they think that person is go/ing to try to get it. +C but he might fall because it is a little bit far from him. +C now the donkey is cry/ing because his airplane is sink/ing. +C now a lady with a net : she is go/ing to get it with a swimming pool net : (tha) get it out. +C she is go/ing to go swim/ing because she has a bathing suit on her. +C she gots|get[EW:gets] it with the net. +C she is try/ing to be careful try/ing not to lose it. +C then she gots|get[EW:gets] it. +C she give/3s it to the boy. +C and then : she said you are welcome. +C and (she) he said thank you. +C and he is hug/ing his airplane. +C and now both of them are happy. +C they are go/ing to play and try not get in the swimming pool again. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C Now there is a bunny rabbit. +C and the bunny rabbit want/3s to play in the sandbox. +C and (the dog is play/ing) the : girl : dog is play/ing in the sandbox. +C and she has a : pony tail on her tail. +C and[-:] she has a shovel like the bunny rabbit. +C and she say/3s hey do you want to [~_wanna] play with me? +C and the dog is wear/ing a dress. +C and it is a girl. +C she has a[-:] leash around her neck. +C and she is (buh) (be) (biling) build/ing a castle. +C and the (bundy) bunny is try/ing to build something else with a bucket with sand in it. +C and[-:] he is go/ing to do something like pour/ing sand onto the castle. +C and[-:] he put too much sand on it. +C and it kind of [~_kinda] wreck/ed the castle. +C now he is sorry because he wreck/ed her castle. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C Now the dog is go/ing for a picnic. +C and even the bunny is do/ing the same thing as her. +C he is go/ing to [~_gonna] follow her anywhere. +C but she is not wear/ing her leash : today. +C the bunny is kind of [~_kinda] sweat/ing. +C and he is : kind of [~_kinda] happy. +C and his tongue is stick/ing out. +C and I can see some water fall/ing from him. +C and he has a carrot in his hand and even a pie or something. +C even the dog she is a little bit happy. +C but he gots[EW:has] more food than her. +C then she took her sandwich out. +C then she start/ed stare/ing at the bunny rabbit. +C now the bunny rabbit is full but not the dog. +C she did not ate|eat[EW:eat] all of her/z I think. +C now his stomach hurt/3s. +C and the dog is kind of sad. +C and I can see some brown line/s from the bunny/z head. +C and I can see some bunny/z (uh) bubble/s right beside him. +C there is a doctor kind of [~_kinda] help/3s[-:] people [EU]. +C and it is a (person do um) (a do uh) lady bunny rabbit. +C and she is (a uh) help/3s (uh) one of those (one/s) animal/s. +C and the bunny he is lay/ing down. +C and I can see some air from him. +C now the dog is pull/ing her to the boy : is kind (of) of ate too much of his [EU]. +C the[-:] bubble/s are make/ing him sick because he has ate too much. +C (now[-:]) [~_yeah] now he feel/3s fine. +C and he is go/ing to [~_gonna] go home with his mom or something. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C Now I can see some flower/s on the grass. +C and I can see the dog. +C she is[-:] : pull/ing her[-:] pail with a balloon on it. +C she has her dress on with her bow tie on her now. +C and the bunny is feel/ing fine. +C he is wear/ing his short/s his shirt. +C he is run/ing to her. +C the bunny really want/3s her balloon (because she). +C he want/3s it because (he got her) (her) she[!] got it first. +C and he was not there. +C then that is why he did not got one. +C and he want/3s her/z. +C and she is say/ing hey that is my balloon not your/z. +C and the bunny is not listen/ing. +C and he want/3 the balloon. +C and he is make/ing it unloose to take it. +C now the bunny let go of it. +C and now the balloon is fly/ing away from that bunny what he did. +C now he is still stare/ing at the balloon. +C and she is upset because he let her balloon go. +C and she is really mad. +C and she is shake/ing so mad. +C she drop/ed her[-:] pail[-:] (pool or) thing. +C and then : she is mad. +C and the other one is sad. +C now there is a bunny : with a hat on (with a). +C now she is still mad. +C and the bunny want/3s a balloon. +C and that he is happy [EU]. +C and he do/3s not know her balloon flew up in the air. +C and (she) the bunny is run/ing up to him to get a balloon. +C now (the girl) the girl dog she is go/ing to [~_gonna] pull her pail to someone else. +C and she is still mad. +C and the bunny rabbit is happy. +C and he want/3s a balloon. +C and the big bunny one is stare/ing at him. +C and the : little bunny (is) want/3s a balloon. +C and he is point/ing at one. +C that one is five : (s) dollar/s. +C he does not have any five dollar/s for it. +C that is why you know the bunny is upset. +C and that one is sad. +C and he want/ed that balloon. +C but (you can not) he do/3s not have any money for it. +C (now the dog and the girl) (the girl dog and the boy dog) (boy bunny rabbit) [~_I_mean] now the (bunny) big bunny is a little bit sad because they do not have any money to get a balloon. +C (now that doctor) now the girl : is stand/ing by (the big bunny) the (boy) : man bunny. +C and (the) the little bunny boy he is : run/ing to the nurse. +C and he touch/ed her. +C (and he want/ed money to get) and he is go/ing to ask her for some money to get some balloon/s. +C and (he is) she is give/ing some money to them. +C and then they are get/ing their own balloon. +C and the girl is wag/ing her tail because she is get/ing a balloon. +C (now) : both of them are happy now. +C and (the bunny ra) the nurse bunny is happy too. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/726.slt b/data/ENNI_SALT/train/726.slt new file mode 100644 index 0000000000000000000000000000000000000000..8a1a50d5f66acde342eaf9cdf22d7eff5a4bff5b --- /dev/null +++ b/data/ENNI_SALT/train/726.slt @@ -0,0 +1,130 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 6/01/1993 ++DOE: 11/21/2000 ++CA: 7;5;20 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 726=CHI ++Tape Location: Disk M5, Track 64 += [Bg:A1] +C (um) : a : giraffe is : play/ing (uh) ball[-:] with : (a girl by a p) : a[EW:an] elephant (by a) : by a pool[-:]. +C then the ball go/3s in the water. +C and they are kind of[~!_laughing] frighten/ed. +C and the giraffe go/3es in the water. +C and (they s) he swim/3s out to the ball to get it. +C (um) : the giraffe give/3s the ball to the : elephant. +C and then[-:] (she is : happy with the eleph : um) the elephant is happy with the giraffe (t) for get/ing (h) : her ball (for him) : from[?] him. += [Eg:A1] += [Bg:A2] +C they are[-:] go/ing to [~_gonna] : go in the water. +C and (the) there is a sign. +C and it say/3s no run/ing. +C she start/3s to run to go in the water : the elephant. +C and then the elephant slip/3s. +C and[-:] then she is hold/ing her knee. +C and then the giraffe come/3s and see|see[EW:sees] what is : wrong with her. +C then the lifeguard come/3s. +C and : he come/3s. +C and (um) : he : see/3s the elephant down on the ground. +C and he put/3s [EW:a] bandaid on her knee. +C and she is close/ing her eye/s. +C and then when she open/ed her eye/s : (um) she saw a bandaid on her knee. +C (th[-:]) : then she kind of look/3s[~!_laughing] embarass/ed because the lifeguard is tell/ing her that the sign say/3s no run/ing. +C and she was run/ing. += [Eg:A2] += [Bg:A3] +C the : elephant see/3s that the giraffe has an : airplane. +C and (he) : (he) (they are) I think she is ask/ing if : (um) : she could play with it with him. +C and I think he say/3s no. +C then he start/3s play/ing (with) with : it[?]. +C (uh) and : the elephant is watch/ing him. +C and then she (snap/3s) : (um sna um) take/3s the : airplane out of the giraffe/z hand[-:]. +C and then it go/3s into the : pool. +C and then the : giraffe get/3s kind of mad at her because I think that might be his favorite (um) : airplane. +C and then the lifeguard (come/3s and seen) : come/3s to see[-:] what was go/ing on. +C and[-:] (then : she um) : then the lifeguard talk/3s with the elephant. +C and[-:] the giraffe kind of look/3s like he is a bit worry/ed. +C and[-:] the lifeguard is try/ing to get the airplane. +C but (I do not) he can not. +C (then the) : (then uh). +E (did I) did I turn it too soon? +=C no [+_bch]. +C and then the giraffe start/3s to cry. +C and[-:] : then : I think the elephant : really look/3s kind of like she is sorry for the : (um g) giraffe. +C but then a girl come/3s with a (net) net. +C and they are all like what the! +C and then : (she scoop/3s out the air) she is scoop/ing out the airplane. +C and then she gots|get[EW:gets] the airplane out. +C and she give/3s it to the giraffe. +C and the giraffe is happy. +C and he is hug/ing[~!_laughing] the airplane. += [Eg:A3] += [Bg:B1] +C (um[-:]) : I think it is a dog (um) : and a rabbit. +C the character/s are the dog and the rabbit. +C and[-:] the dog is (s) : build/ing a sandcastle. +C and : (he is fillding um) he is (um : uh) kind of (uh) : fill/ing a bucket with sand. +C (and sh) : the dog is : (um) try/ing to like make sure it does not fall down the sandcastle. +C and then the : bunny put/3s sand on top of the : castle. +C and then it knock/3s down the castle. +C the dog is kind of : look/ing like he did not want that to happen. +C and : the bunny felt really (s um) sad. +C and (they) he try/ed : the dog try/ed to : put it back up. +C but (h) : he could not. +=C and that is the end [+_bch]. += [Eg:B1] += [Bg:B2] +C (um) : the rabbit and the dog are have/ing a picnic together. +C and[-:] : (the) : the rabbit pack/ed too much : lunch. +C and[~!_laughing] the : dog pack/ed like only a bit because he did not : want to [~_wanna] get a stomachache[~!_laughing]. +C and then (he um) the rabbit ate all he had. +C and then : he kind of [~_kinda] look/3s a bit fat[~!_laughing]. +C and then he start/3s getting dizzy because he ate too much food. +C and then (um) : the dog see/3s a : doctor on the road come/ing by. +C and then he (told him) : told her that (there um) the character that is (um) lay/ing down is kind of dizzy. +C (so : um he). +E you tell me to turn when I need to. +C (um) : but : she (um) : need/3s : to : kind of [~_kinda] help him. +=C you can turn now [+_bch]. +C (um) then : he is : show/ing : the doctor (where h) : where he is lay/ing down and tell/ing her : (how) what happen/ed. +C and then he : (te) tell/3s : the bunny to stick his tongue out. +C and he stick/3s his tongue out[~!_laughing]. +C and then (h) : he is walk/ing home with (um) : the doctor. +=C and that is the end [+_bch]. += [Eg:B2] += [Bg:B3] +C (um[-:]) the dog (is ha) is pull/ing a balloon. +C and he has a balloon (um) tie/ed on to : his wheel of the wagon. +C (and he um) : and then the rabbit come/3s. +C and then he want/3s the balloon. +C and so he is like grab/ing out to take it. +C and then he untie/3s it from the wheel. +C and (then : the) : then it go/3s off of the : wagon. +C (and then they) and[-:] then the : bunny is kind of [~__kinda] taller. +C and so (he a) : he is try/ed to : (um) : reach it. +C but he can not reach it. +C and then : the dog is kind of : angry at (the : um) the rabbit : for lose/ing his balloon by go/ing : up in the air. +C and then : a : bunny that is hold/ing balloon/s come/3s by. +C and he is just walk/ing. +C and then the : bunny kind of [~_kinda] has a[EW:an] idea that he could buy a new balloon for him. +C and then he : (um) : said how much (um) do those balloon/s cost? +C (um) : and then he take/3s down a balloon. +C and it say/3s : balloon/s (f[-:]) : five cent/s. +C and (he) he do/3s not have any five cent/s. +C so he could not buy : a balloon. +C but then he see/3s the doctor. +C and then (she) he is run/ing to ask if she has five cent/s. +C and[-:] (um : he) she is kind of [~_kinda] look/ing : (this) this way. +C and[-:] (sh) she just probably look/ing at the scene/s of the park. +C and then he is talk/ing to her about what happen/ed. +C (and : he) : (sh) (she um : want) and the : dog want/3s a balloon. +C except he does not have enough money to buy one for the dog. +C and then (he give/3s him) : she give/3s him two five cent/s for the : bunny and the dog. +C and they : got the : two balloon/s. +C and they both were : play/ing with their balloon/s. +C and they : had a lot of fun with them. +C the : doctor is smile/ing[~!_laughing]. +=C that is the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/727.slt b/data/ENNI_SALT/train/727.slt new file mode 100644 index 0000000000000000000000000000000000000000..bbd070a24b8592e16c9fa9db8e4a5cc551288e91 --- /dev/null +++ b/data/ENNI_SALT/train/727.slt @@ -0,0 +1,92 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 7/15/1992 ++DOE: 4/26/2000 ++CA: 7;9;11 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 727=CHI ++Tape Location: Disk L13 Track 5 += [Bg:A1] +C (um the) : a pig : and a girl pig *are : look/ing at the : (three) : three pie[EW:pies] [EU]. +C : the boy saw one big egg[?]. +C then the boy swim|swim[EW:swam]. +C then he got it. +C then he give|give[EW:gave] it to the girl. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C the boy : he saw the diving board. +C no run/ing. +C : the girl runned|run[EW:ran]. +C : then a girl (ss) slip|slip[EW:slipped]. +C then a girl hurt her knee. +C then (a swimming : is) : the swimming (pe) man is taking a bandaid [EU]. +C then it all came [EU]. +C : then he read the sign no run/ing. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C the boy : is stand/ing with the girl. +C : the boy got a[EW:an] airplane. +C and the girl (t) take|take[EW:took] a[EW:an] airplane off his hand [EU]. +C (then a g) then he fell in the water. +C then a boy is angry. +C then a swimming man is [<~?_washing]watching[>~?_washing]. +C then swimming man is : talk/ing with the girl. +C the swimming man is : try/ing to get it. +C then[-:] is go/ing it down [EU]. +C then a swimming girl try/ed to get it. +C and the swimming girl did get it. +C and the swimming girl gave it to the boy. +C (then a swimming girl) and (then) then the boy (is) is happy. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C there is a : boy and a girl : build/ing the (castle) sandcastle. +C the boy is dig|dig[EW:digging] more sand. +C and the girl build|build[EW:builds] it. +C then a boy put all the sand on top of the sandcastle. +C then the sandcastle is broke[EW:broken] all (day) down. +C and one is still up. +C then he build|build[EW:builds] it back. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C the boy and the girl *are walk/ing down to buy stuff [EU]. +C they *are going to [~_gonna] *a picnic [EU]. +C the boy got a carrot and the : (uh : uh sss) sandwich : and a juice. +C and he *was hungry [EU]. +C : then he *was fat [EU]. +C : then (he stand) (he s) he try/ed to stand up. +C except he (not) is about[?] to stand up. +C : (then he da) then a doctor (he) a girl ran to him. +C hey : like this. +C (then) : (then) then he pull/ed the doctor (where) where the boy is fat. +C : then a doctor try/ed to fix him. +C : then (he) a boy walk|walk[EW:walked] : (to hi) to : him. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C the girl (get : go) go with his store[?] [EU]. +C and a boy ran there. +C then (the girl ff) a boy try/ed to get a balloon. +C then a girl *was stand/ing [EU]. +C then a boy go [<~_no]under the[>~_no] (ss) beside it : and try/ed to put *it up [EU]. +C the balloon went up. +C and the girl is bad. +C there is[EW:are] more balloon[EW:balloons]. +C : and a boy ran. +C and he (ff) got it. +C then he tell|tell[EW:told] the man I have one balloon? +C : if I (ff) (balla) bill five dollar [EU]. +C : and : (uh) then the xx is boy next time [EU]. +C (then the) then there is a doctor for the story. +C (ask/ed) (he ask/ed) he ask/ed the doctor (dd) do you (take the) take him and xx [~_sounds_like_"top_so"] [EU]. +E and what? +C and : he did. +C then he get[EW:gave] him (five) : five dollar/s. +C : then he got two balloon[EW:balloons]. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/729.slt b/data/ENNI_SALT/train/729.slt new file mode 100644 index 0000000000000000000000000000000000000000..3118fbf68d01e71796025dc238ce592a8596e472 --- /dev/null +++ b/data/ENNI_SALT/train/729.slt @@ -0,0 +1,157 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 10/14/1992 ++DOE: 4/26/2000 ++CA: 7;6;12 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 729=CHI ++Tape Location: Disk L12 Track 58 += [Bg:A1] +C I am play/ing with you giraffe said. +C no[!] said a[EW:an] elephant. +C a ball is : oopsy daisy said : a zebra. +C I *will get it [EU]. +C I *will spray (m) your[EW:my] trunk : at you[!] giraffe [EU]. +C and he did. +C and (he) he fall|fall[EW:fell] in the water. +C (and) and the hippo is sad. +C (and then : he) : grab[!] it grab|grab[EW:grabbed][!] it : said the elephant. +C thank you giraffe said. +C where *is my hat [EU]? +C www. += %exp: CHI asks about noise from recorder, EXA explains and tells CHI to keep going. +C what is that giraffe said. +C (um) a pull said the hippo. += [Eg:A1] += [Bg:A2] +C And then (ha a ha) we get the ball. +C next[!] we get the towel. +C and (look) look over there. +C look said the giraffe. +C and the elephant *is run/ing [EU]. +C please slip those [~_coughs][EU]. +C do not run said the giraffe wag/ing them[EW:their] tail[tails] around. +C elephant be (quick) quick like the giraffe. +C (and he) ow* (I bruise/ed my) call the doctor he said. +C supervisor said are you all right girl : hippo? +C and he said (ah) [~_argh]. +C (that) the supervisor telled|tell[EW:told] the giraffe come quickly. +C you (do not) do not run : he said. += [Eg:A2] += [Bg:A3] +C I play a[EW:an] airplane [EU]. +C no hippo said. +C I am play/ing with it. +C no fair said the elephant. +=C turn the page [+_bch]. +C [~_high_pitched_voice] I am fly/ing. +C [~_deep_voice] he zoom|zoom[EW:zooms] it : said the elephant. +C hm [~_makes_sound] I : xx [EU]. +C [~_high_pitched_voice] your turn. +C [~_deep_voice] you have it. +C xxx xxx for. +C [~_high_pitched_voice] give it back said the giraffe. +C and then [~_makes_crying_sound_'waah']. +C you *are sorry said elephant [EU]. +C you apologize to me[!] said elephant. +C sorry said elephant : ground/ing his face at : him [EU]. +C you ruin/ed my airplane. +C and I want xx to play with it : any more [EU]. +C and (uh) : an airplane and hippo (sl) : slide : on the mat. +C (and) and [~_high_pitched_voice] help. +C and suddenly [+//]> +C www. += %exp: makes irrelevant comment to EXA +E thank you. +C [~_high_pitched_voice] (I p) I put it in the (s) pool. +C [~_high_pitched_voice] and (he give it) I grab/ed it to him[!] [EU]. +C [~_makes_sounds] said the supervisor. +=C turn the page [+_bch]. +C and he *did not get it [EU]. +C and : he *was wet and wet and wet and wet [EU]. +C he said : I *will give it [~_makes_sound] [EU]. +C then xx [~_?_elly] said [~_makes_growling_sound]. +C : [~_high_pitched_voice] thank you said : mommy : happily. +C [~_high_pitched_voice] my new airplane. +C said : yeah[!] [EU]. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C (um xx) (you : do not : said) do not[!] said the rabbit [EU]. +C do not break my castle. +C I have built it. +C I *will pat it down [EU]. +C (do not) do not hurt it. +C (I) my mother said no. +C too much sand (said) said the dog. +C no rabbit. +C you broken|broke[EW:broke] my : sandcastle : said the dog. +C that mine : idea [EU]. +C we *will buy : another one [~_coughs,_EXA_gives_him_tissue;__continues_on_track_62] [EU]. +E : what is happen/ing? +C (um : so many) you ruin/ed mine : said the cow. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C we are go/ing : *on a picnic said : dog [EU]. +C we *are pack/ing : pine cone/s [EU]. +C my mother! +C ayeaye Captain : Hook said the dog. +C you have a snack. +C then we *will go said : the rabbit [EU]. +C (uh) said rabbit : munch/ing him[EW:his] whole food up [EU]. +C I have a : full tummyache. +C you tell my mom please [EU]. +C [~_makes_various_noises]. +C then : wake up! +C xxx. +C a what? +C (doctor) (doctor) (doctor rabbit) doctor rabbit. +C help me. +C help me. +=C turn the page [+_bch]. +C (help me) (help) help him. +C help him. +C [~_heavy_breathing] (I your m) I *am your[!] mother [EU]. +C I *will get my mother [EU]. +C xxx. +C he mess him [EU]. +C snack[?] up and : went home [EU]. += [Eg:B2] += [Bg:B3] +C hello said : a girl dog. +C hello : you come and pick [EU]. +C go with *the circus : said rabbit? +C no thank you. +C (wo) a cool balloon [EU]. +C we buy them on (sale) saleman[!] [EU]. +C what is a saleman? +E what is a saleman? +C and then the dog (uh) play/ing : a rabbit [EU]. +C where is that balloon : go said rabbit : jump/ing high [EU]. +C [~_makes_'grrr'_sound] (said) said dog : walk/ing away [EU]. +C rabbit : tell him : up here. +C hello (I have) I have : got : xx xx. +C dog : wagon : him hide [EU]. +C and then : (he is) suddenly a man come|come[EW:came] up. +C and : aha *can I have those balloon/s please [EU]. +C one and you [EU]. +C okay. +C write : a number : a five on it okay? +C good. +C and he went and went and went and went and went. +C and him[EW:his] wagon *was full[!] of : balloon/s [EU]. +C he [~_makes_crying_sounds] dad [EU]! +C mom! +C dad! +C mom! +C dad : said doctor. +C one *is not there : said doctor [EU]. +C (xx) they needed cent/s : (said) [EU]. +C yay(*4)! +C we have balloon/s! +C we have balloon/s! +C (um) cost [EU]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/731.slt b/data/ENNI_SALT/train/731.slt new file mode 100644 index 0000000000000000000000000000000000000000..d3094c607f750d201379a6cecdd963dce6599ec2 --- /dev/null +++ b/data/ENNI_SALT/train/731.slt @@ -0,0 +1,77 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 8/14/1992 ++DOE: 4/26/2000 ++CA: 7;8;12 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 731=CHI ++Tape Location: Disk L13 Track 12 += [Bg:A1] +C (have a : wwu) elephant have|have[EW:has] a ball. +C (and one ball) and ball swimming pool[EU]. +C and (ball) cow (ss) get|get[EW:got] this. +C and (ball) : cow : take|take[EW:took] this ball : for elephant. +C and (eleph) [~_no] have a cow soak/ing wet [EU]. += [Eg:A1] += [Bg:A2] +C (have a) : have no runned[EW:running] [EU]. +C and him[EW:he](walked) got on the diving board. +C (and a) and : the[-:] elephant and the cow runned|run[EW:ran]. +C and him[EW:he] fall|fall[EW:fell] and get him[EW:his] leg [EU]. +C and have a other elephant comed|come[EW:came] [EU]. +C and have|have[EW:has] *a big bandage [EU]. +C (and : ff) (look/ed out th) and look/ed out on (rad) (ra) cut [EU]. +C and the elephant put no runned[EW:running] [EU]. += [Eg:A2] += [Bg:A3] +C (and have) : (xx have) a cow have|have[EW:has] a plane. +C and : the elephant want some one [EU]. +C and him elephant have|have[EW:has] a (cc) cow hand [EU]. +C and the airplane *is in the water [EU]. +C and the cow take mad [EU]. +C and the elephant comed|come[EW:came][~_/kUmEd/]. +C and the elephant say/3s cow do this. +C and (the leph) the elephant try|try[EW:tried] get this [EU]. +C and (the) the (cow) cow cry|cry[EW:cried]. +C and the other elephant comed|come[EW:came]. +C and the other elephant pick/ed the plane up. +C (and the : elephant get) the : cow get|get[EW:got] the plane. +C and the : cow is happy. += [Eg:A3] += [Bg:B1] +C have two[-:] : rabbit[EW:rabbits] [EU]. +C and (uh) play sand [EU]. +C and one : have|have[EW:has] *a pail [EU]. +C and one (have a) make|make[EW:makes] a sandcastle. +C and (the) one rabbit throw|throw[EW:threw] a[EW:the] sand on the castle. +C and the other[?] rabbit *is sad [EU]. +C and : the rabbit is cry/ing. += [Eg:B1] += [Bg:B2] +C (have) a rabbit have|have[EW:has] a picnic. +C and (all ra have) the rabbit have|have[EW:has] a carrot and hot dog : a bun [EU]. +C and (a) the rabbit is full. +C and him[EW:he] hit/3s (these) these xx [~_yeah]. +C and him[EW:he] have|have[EW:has]: another rabbit [EU]. +C a : doctor *is come/ing [EU]. +C and the other rabbit pull/ed him on [EU]. +C and the doctor (ss) say/3s : you want: eat any more [EU]? +C and the doctor come|come[EW:came] and take|take[EW:took] the other rabbit away. += [Eg:B2] += [Bg:B3] +C (have a b) bunny have|have[EW:has] a balloon. +C and the other[?] rabbit want|want[EW:wants] one. +C (ha) and the bunny tie this off [EU]. +C and the balloon flied|fly[EW:flew] away. +C and all : bunny is mad [EU]. +C and found a lot more[!] balloon[EW:balloons] [EU]. +C and (have one) want|want[EW:wants] one [EU]. +C (have) : want|want[EW:wants] : one for a other[EW:another] [?] bunny [EU]. +C have (a) two bunny[EW:bunnies] want[-:] one [EU]. +C and (a) (the bunny) the doctor come|come[EW:came]. +C and (the) the other[?] bunny (w) : put a balloon [EU]. +C (have) : buy two [EU]. +C and : all bunny[Ew:bunnies] have one. += [Eg:B3] diff --git a/data/ENNI_SALT/train/732.slt b/data/ENNI_SALT/train/732.slt new file mode 100644 index 0000000000000000000000000000000000000000..26073222798ace6bf952f5760b57f852c248f15a --- /dev/null +++ b/data/ENNI_SALT/train/732.slt @@ -0,0 +1,122 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 12/02/1992 ++DOE: 11/21/2000 ++CA: 7;11;19 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 732=CHI ++Tape Location: Disk M5, Track 88 += [Bg:A1] +C the alligator and : the elephant (has) : have some ball/s. +C one ball went in the swimming pool. +C and they are look/ing at it. +C (th) the : alligator is try/ing to get the ball. +C and the elephant is[-:] close/ing her eye/s. +C the elephant got her ball. +C and the (al) alligator is climb/ing back up. +E is what ? +E I did not hear the word. +=C is climb/ing back up [+_bch]. +C (the alligator : and the elephant : w) the alligator was smile/ing. +C and the elephant was not. +C and the elephant gots|get[EW:got] the ball. += [Eg:A1] += [Bg:A2] +C (uh) : the sign say/3s no : run/ing. +C and the elephant (i) and the alligator are happy. +C the elephant is tell/ing the alligator look over there. +C there is a jump/ing : thing. +C (and they are) : and they are walk/ing towards it. +C the elephant is run/ing. +C and the alligator is walk/ing. +C the elephant got an[EW:a]: bruise. +C and the alligator is sad. +C (the alligator) : the elephant (um : and to) and the grownup elephant came and : help/ed the baby elephant. +C and : the alligator is look/ing. +C the big elephant putted|put[EW:put] a bandage on. +C and the other elephant is cry/ing. +C and the alligator is sad. +C the (um e) elephant is sit/ing on a bench : because (she got) she can not walk because she gots[EW:has] an owie. +C and (um) : the elephant is[-:] : carry/ing her. +C and the : alligator is help/ing. +C the elephant : is talk|talk[EW:talking] to the girl. += [Eg:A2] += [Bg:A3] +C (um) the alligator and the elephant are smile/ing. +C the alligator (i) has (a : pape) : (a paper) a toy airplane. +C and the elephant is look/ing at it. +C the elephant took it away from the alligator. +C and the alligator say/3s hey! +C and then : (she) : she is play/ing with it. +C and then the alligator is mad because she drop/ed it in the swimming pool. +C and the elephant said : I do|do[EW:did] not mean to. +C and then the alligator got really mad. +C then the grownup elephant said what are you kid/s still do/ing here? +C and then the alligator and the : elephant is[EW:are] [-:] : mad. +C the elephant is talk/ing loud to the big elephant. +C and the alligator is watch/ing. +C the big elephant is try/ing to get it. +C (and) but he can not. +C so : they are mad. +C the big elephant is : mad[-:] also because he can not reach it. +C and : the alligator is : cry/ing. +C and : the elephant is : sad. +C (the ele) (the ele um) the : little elephant is : take/ing a rod to : pull it in. +C and : the alligator : and the (two : um) : two : elephant/s are : watch/ing with the alligator. +C she pull/ed it in. +C and the alligator was happy with the other/s. +C and when she gaved|give[EW:gave] it back to the alligator (sh) the alligator was happy. +C and the alligator : and the : elephant live/ed happily ever after. += [Eg:A3] += [Bg:B1] +C there is[-:] the bunny and a dog make/ing a castle. +C there is : the dog and bunny : (make/ing) (make/ing) : make/ing it bigger. +C there is the bunny and : the dog (um) : dump/ing sand on it. +C the bunny is mad because the dog broke the castle. +C the dog is try/ing to help build it. += [Eg:B1] += [Bg:B2] +C there is : the dog and bunny go/ing on a (picnit) picnic. +C the bunny is eat/ing a sandwich and carrot. +C and the dog (s) : has[-:] a sandwich. +C the dog is eat/ing a sandwich and have/ing some juice. +C and[-:] the bunny is lay/ing down. +C the bunny : (i) has a tummyache. +C and the dog is look/ing at him. +C (the) : (the) the dog is run/ing after the bunny. +C the dog got the bunny. +C the dog gots[EW:has] [-:] a tummyache. +C and the dog and bunny : is[EW:are] walk/ing. += [Eg:B2] += [Bg:B3] +C (um the) the dog is pull/ing : (um) : a wagon with a balloon. +C and the bunny is walk/ing : towards him. +C (the) : (the dog : and the ra) the rabbit is : try/ing to get the balloon. +C and the dog is look/ing. +C the bunny untie/ed : the balloon. +C and : the dog is happy. +C the balloon went up in the air. +C (and the dog is) : and the dog is not happy. +C and the bunny is try/ing to get it. +C the dog is angry and left with his : (um) wagon. +C and the (bunny is) : bunny is sad. +C (the) (some) (a guy i) a bunny is sell/ing balloon/s. +C and the dog and : the bunny are go/ing towards him. +C the[-:] bunny is buy/ing : some balloon/s. +C and the dog is wait/ing. +C (the bunny : is) : the big bunny is say/ing : it cost five cent/s. +C and : the : bunny (s) : do/3s not have any money. +C and[-:] the : dog is come/ing. +C (the bunny) : the dog and bunny are not happy. +C and the : big bunny is : hold/ing the balloon/s. +C the puppy and (big um) : big (uh) : guy is : hold/ing the balloon/s. +C one balloon is going up in the air. +C and the bunny is walk/ing toward/3s a grownup. +C the : bunny is tell/ing the grownup look over there. +C and the dog and : the (b) other bunny is : wait/ing. +C (the : big) the : dog and bunny are happy because they got two balloon/s. +C and : the grownup is pay/ing. +C the grownup (s) : is mad because they just : want/ed him to buy a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/733.slt b/data/ENNI_SALT/train/733.slt new file mode 100644 index 0000000000000000000000000000000000000000..1455c89cb7108fbfd2c9b4028243a5e2a7ec3805 --- /dev/null +++ b/data/ENNI_SALT/train/733.slt @@ -0,0 +1,90 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 9/17/1992 ++DOE: 4/26/2000 ++CA: 7;7;9 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 733=CHI ++Tape Location: Disk L12 Track 87 += [Bg:A1] +C A giraffe and a[EW:an] elephant : are play/ing : basketball [~_/baesIkbal/]. +C and the basketball fell in the water. +C and the giraffe swimmed|swim[EW:swam] to it : to get the basketball. +C and (the elephant) the giraffe[-:] : (hand it) hand|hand[EW:handed] it : to the elephant. +C and the elephant was surprise/ed. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C The giraffe and the elephant want/ed to jump in the water. +C and (gir) elephant went first. +C then elephant was dance/ing. +C and the elephant got hurt. +C and the giraffe help/ed her, the elephant. +C and the elephant cry/ed. +C and (the) the other elephant got a bandaid and put it on his owee. +C the other elephant said no run/ing. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C (The giraffe and the) the : giraffe and the elephant was[EW:were] happy. +C the giraffe was play/ing with a[EW:an] airplane. +C and the elephant took the plane and play/*ed with it [EU]. +C and : elephant drop/ed it in the water. +C and giraffe was mad : (uh) at the elephant. +C (and the other elephant is). +=C what [+_bch]? +=C what is he do/ing [+_bch]? +E what is he doing? +C (he was do/ing) : (like[-:] he was). +E what is happen/ing? +C elephant and giraffe was[EW:were] look/ing at the elephant. +C (the ele) (the first ele) the girl elephant : look|look[EW:looked] at the airplane. +C and the other elephant try/ed to get it. +C and the (uh) giraffe : elephant and the other elephant was sad. +C the : third elephant : can get the airplane. +C and (the elep) the other elephant get|get[EW:got] out the airplane. +C and the other third (ele) elephant give|give[EW:gave] it to the giraffe. +C and the giraffe said thank you. +C and giraffe was so happy. += [Eg:A3] += [Bg:B1] +C bunny and a dog was[EW:were] make/ing a sandcastle. +C and[-:] the bunny and the dog was[EW:were] make/ing a big (s) sandcastle. +C and : rabbit : (w) was not : do/ing the right thing. +C and[-:] rabbit broke the sandcastle. +C and one part left. +C and the dog was so[-:] : sad. += [Eg:B1] += [Bg:B2] +C the dog and the bunny was[EW:were] go/ing for a snack. +C and the rabbit got a cake : cookie/s mustard : carrot/s : and a hot dog. +C and the bunny was too full. +C and the bunny was too[-:] stuff/ed. +C and the dog said : are you a nurse? +C please help : my friend. +C (here is) : here she is. +C the nurse said : you are get/ing sick. +C and (a nurse said to go) the nurse said you have to go home and go to your bed and : sleep awhile. += [Eg:B2] += [Bg:B3] +C (The dog w) (and the bunny were going to have[-:]) (to go for) (go) (want/ed) the dog want/ed to go to the park. +C the bunny said how you got|get[EW:get] that balloon [EU]? +=C what is that [~_noises] [+_bch]? +E just somebody next door. +C (the bunny : put) (the bunny) the bunny (inti) untie/ed the balloon. +C and the balloon went away. +C and : the dog : was too mad. +C the[-:] balloon man had (lo) : (fi) nine balloon/s. +C the balloon man said do you want a balloon? +C yes please. +C balloon (five) : five cent/s please. +C and the bunny did not have any money : to buy a balloon. +C and[-:] the nurse bunny said *do you have any money [EU]? +C I want to have a balloon. +C it is okay. +C you can have a balloon. +C yes. +C thank you nursey. += [Eg:B3] diff --git a/data/ENNI_SALT/train/735.slt b/data/ENNI_SALT/train/735.slt new file mode 100644 index 0000000000000000000000000000000000000000..9c8fb033e7092d2ff1c7e7732d4ae5dbfecadc02 --- /dev/null +++ b/data/ENNI_SALT/train/735.slt @@ -0,0 +1,194 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 7/19/1992 ++DOE: 5/04/2000 ++CA: 7;9;7 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 735=CHI ++Tape Location: Disk L13 Track 19 += [Bg:A1] +C giraffe sawed|see[EW:saw] elephant (with) with her ball! +C hey that is cool. +C can I try it? +C sure! +C but do not get in the water. +C all right. +C I throwed|throw[EW:threw] it in the water said elephant. +C oh my gosh I will get it : for you elephant said giraffe. +C : (I) I almost got it. +C ( I am) I can not watch. +C I got it. +C I got it [~_said_twice_for_emphasis]! +C and he was keep/ing on go/ing [EU]. +C I got it! +C here. +C there elephant I got it for you. +C thank/s. +C thank you. +C thank you giraffe. +C [~_hee] I am wet[?] okay? +C all right. +C byebye. +C see you. += [Eg:A1] += [Bg:A2] +C giraffe and elephant were go/ing swim/ing. +C (and they saw the pool) and they saw a pool [~_I_mean]. +C : (I will go jump in the p) I will go on the[-:] : jump/ing board. +C and I will go[-:] in the water[-:] and splash okay? +C all right : said giraffe. +C : do not run! +C walk! +C (all right I[-:]) okay I will walk. +C : ow I run. +C now I : hurt my : knee! +C ouch. +C ow! +C I am come/ing! +C do not worry! +C : the lifeguard is come/ing now. +C : she get/3s (hur[-:]) (hurt uh) : *a bruise there on her knee [EU]. +C and : lifeguard [+..] [EU]. +C : there you go child. +C now you can walk. +C you have to walk safe. +C do not run. +C or you might slip : and hurt you[EW:yourself]. +C so go play along. +C : no run/ing allow/ed! +C see the sign? +C yeah. +C go[?]. +C okay. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C let us go swim/ing okay? +C all right let us go! +C grab a[EW:an] (b) airplane. +C let us go! +C : because I do not want to go in the pool with my airplane. +C so let us go! +C [~_child_makes_airplane_noises] that is a good toy airplane. +C thank/s. +C I got it from yesterday [~_child_makes_airplane_noises]. +C hey can I try? +C sure! +C be careful! +C [~_child_makes_airplane_noises] cool! +C [~_child_makes_airplane_noises] : (whuh) whoopsadaisy I drop/ed it in the water. +C so you have to get it. +C all right. +C here I go. +C : I can not! +C you did that [~_makes_grrr_sound]! +C I am mad at you! +C whoopsadaisy I am sorry. +C : (hmm) a toy huh *is in that pool [EU]. +C whose is it said the lifeguard? +C : it was mine! +C and she drop/ed it in! +C (I) you was[EW:were] just play/ing with it first. +C (and I) (I) then (I just uhm) : (may) (I just) I was try/ing to make it fly. +C but it falled|fall[EW:fell] in the water (sai) said elephant talk/ing to the lifeguard. +C : the lifeguard was get/ing it. +C (and he is) and he is go/ing to [~_gonna] get it. +C : oh I can not get it. +C oh my gosh I am sad now. +C I am sorry : giraffe. +C : [~_makes_a_sound] (then a woman go) and then a woman was here. +C and she got a net to catch it. +C (huh) the three of them said huh? +C I got it! +C [~_child_pretends_to_cry] I am cry/ing. +C now it is go/ing to [~_gonna] be broken said giraffe. +C here. +C (have) thank you : said giraffe. +C (hm[-:] ) I want you to be back. +C ( I am s) I am happy too. +C [~_makes_sound_effects_'ooh_ahh'] that is okay. +C I will keep *an eye on it forever ever and ever [EU]. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C one rabbit and (uh[-:]) one[-:] : mouse (: were b) [EU]. +C (he) the rabbit want/ed to help the mouse. +C she made : a : sandcastle[!] in her backyard : in her sandbox. +C and he help/ed the : mouse build it. +C and he put sand on it. +C and she was gee [EU]. +C and then she said [~_makes_gasping_sound]! +C : and he said uhoh I am in big trouble. +C and she was sad. +C she cry/ed. +C and she was do/ing it all by herself. +C (and he) and the rabbit (was watch) was look/ing at hisself[EW:himself]. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C (uh) the puppy : was go/ing for a picnic. +C and the rabbit was go/ing for the picnic too. +C and they said hi. +C and they eat|eat[EW:ate] and ate and ate : and ate (and he) and[-:] ate. +C (and they a) and the rabbit was full. +C but : the dog was keep/ing on eat/ing [EU]. +C he was worry/ed and sick : but not the dog. +C she was not sick. +C she call/ed for the nurse : who was come/ing by. +C and she said (doc) nurse nurse (um) my friend bunny is sick. +C and he ate too much food. +C come come come [~_repeated_for_emphasis] : right now! +C he is feel/ing sick! +C all right I will come. +C [~_child_making__sounds_'aaahh'] and he woked|woke[EW:woke] up. +C now : you should never eat too much food! +C thank/s : because I like that. +C I am not sick any more. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C (she had a ga) (a : hm hm) : she had a[-:] wheel (barre) barrel with a balloon on it. +C she was walk/ing. +C then she sawed|saw[EW:saw] (um) : bunny : again. +C he said cool! +C cool : puppy. +C that is cool. +C where do you get it? +C (sh) she said no do not take it off please! +C (oka) why : said (ra) bunny? +C he tie/ed it out [EU]. +C then it flied|fly[EW:flew] up into the sky. +C and she was worry/ed. +C and he was try/ing to get it. +C and they were try/ing to get it. +C and she got mad at the bunny. +C [~_angry_voice] you tie/ed it out! +C [~_angry_voice] and now I am angry at you! +C I am go/ing to [~_gonna] beat you up. +C : ah there is one. +C hey I can get one for you. +C let me get one : okay? +C and (I will tie it back) I will tie one back on that. +C okay? +C [~_makes_sound_'hhrr'] she was still mad. +C : hey can I have that for my friend please? +C sure said the man. +C it is : twenty buck/s. +C all right. +C I have twenty buck/s. +C bye. +C five cent/s. +C I do not have five cent/s. +C so long my rabbit[?] friend. +C : I got[EW:have] to [~_gotta] ask the nurse. +C I got[EW:have] to [~_gotta] ask her (so she can) does she have (one) : five cent/s. +C do you have five cent/s nurse? +C I think so : said the nurse. +C five cent/s. +C thank you madam. +C yay! +C [~_child_makes_a_sound_'whee'] and they were happy : at last. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/736.slt b/data/ENNI_SALT/train/736.slt new file mode 100644 index 0000000000000000000000000000000000000000..ba0dd0ae988bc66219fca425f5be8f2eaeb4b768 --- /dev/null +++ b/data/ENNI_SALT/train/736.slt @@ -0,0 +1,67 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 6/15/1993 ++DOE: 12/04/2000 ++CA: 7;5;19 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 736=CHI ++Tape Location: Disk M6 Track 97 += [Bg:A1] +C a[EW:an] elephant was bounce/ing *a ball by a pool [EU]. +C and the ball fall/3s in the water. +C (and) and a giraffe swim/3s and get/3s it. +C and the elephant get/3s the ball. +C and the elephant thank/3s the[-:] giraffe. += [Eg:A1] += [Bg:A2] +C the elephant saw : a diving board. +C and she ran to it. +C and she slip/ed. +C and she : scrape/ed her knee. +C and she start/3s cry/ing. +C and they put a bandaid on : then sit her on a bench : and show/ed the sign. += [Eg:A2] += [Bg:A3] +C the giraffe has a[-:] plane. +C and (she) he show/3s it to the elephant. +C and the elephant grab/3s it : and drop/3s it in the water. +C and the giraffe is mad at the elephant. +C (and) and them[EW:they] can not get it. +C and she try/s to : tell them : that it was a[EW:an] accident. +C and them[EW:they] try to reach it. +C but them[EW:they] can not. +C and then : (the) : the giraffe start/3s to cry. +C and then : another elephant come/3s in : get/3s it : with a net. +C and the giraffe is happy (and :) and do/3s not let the elephant touch it. += [Eg:A3] += [Bg:B1] +C a rabbit was play/ing in the sandbox. +C and then a different rabbit come/3s : and dump/3s some sand on top. +C then the sandcastle is broken. +C and the other rabbit start/3s to cry. += [Eg:B1] += [Bg:B2] +C two rabbit/s go for a picnic. +C (and) (and a ra) and the rabbit eat/3s all the food. +C and he get/3s dizzy. +C : [~_EXA:_anything_for_this_page] and he is very dizzy. +C then the other rabbit get/3s the doctor : and pull/3s the doctor over there. +C and the doctor check/3s the rabbit. +C and then : the doctor and the rabbit go home. += [Eg:B2] += [Bg:B3] +C a rabbit was push/ing a wagon with a balloon. +C and a other rabbit came : and took the balloon. +C and it flew away. +C the rabbit is mad at the other rabbit. +C then the rabbit see/3s (the) the guy who sell/3s balloon/s. +C and the rabbit is buy/ing one. +C but he gots[EW:has] no money. +C so them[EW:they] can not get one. +C and them[EW:they] find (a) a doctor. +C and them[EW:they] ask/ed [~_pronounced_"axt"] the doctor. +C and the doctor buy/3s them one. +C then them[EW:they] both have a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/737.slt b/data/ENNI_SALT/train/737.slt new file mode 100644 index 0000000000000000000000000000000000000000..e079e0c2528977c09684273fa4562c9a9d65079c --- /dev/null +++ b/data/ENNI_SALT/train/737.slt @@ -0,0 +1,81 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 6/2/1992 ++DOE: 4/18/2000 ++CA: 7;10;16 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 737=CHI ++Tape Location: Disk L5 Track 24 += [Bg:A1] +C Two kid/s *are meet/ing each other [EU]. +C two kid/s had a ball. +C and it fell in the water. +C one of the kid/s went to go get the ball in the water. +C he gave the ball to the other kid. +C and when the (kid) other kid was wet, the other kid did not want to [~_wanna] go close. += [Eg:A1] += [Bg:A2] +C Two kid/s[-:] are about to jump in the diving pool. +C one kid : say/3s no : because she do/3s not want to[:_wanna] get wet. +C the other one run/3s away : when the sign say/3s no run/ing. +C she fell down because she did not see the sign. +C she had this big scratch on her knee. +C then her head start/ed to hurt. +C then : they put her on a bench : to let her knee heal. +C the lifeguard point/ed : to the sign no run/ing. += [Eg:A2] += [Bg:A3] +C One girl *is scream/ing [EU]. +C and the other kid *is laugh/ing [EU]. +C one kid *is play/ing with the airplane [EU]. +C and the other kid *is just : stare/ing at him [EU]. +C then the other kid steal/3s the airplane away from : the boy. +C then : the airplane fell in the water. +C then it start/ed to sink. +C then the lifeguard came. +C and the lifeguard talk/ed to them what happen/ed [EU]. +C the lifeguard try/ed to reach the airplane in the water. +C but he could not reach it. +C so he got a fish/ing net. +C he use/ed the fish/ing net : to get : the airplane out of the water. +C (he) she got the airplane out. +C now they were both happy. += [Eg:A3] += [Bg:B1] +C two kid/s *are play/ing in the sandbox [EU]. +C two of the kid/s *are try/ing to build a sandcastle [EU]. +C the other kid dump/3s sand on the sandcastle to ruin it. +C then the sandcastle break/3s. +C the kid is sad now. += [Eg:B1] += [Bg:B2] +C two kid/s : *are take/ing a jog to : have picnic [EU]. +C the one kid is eat/ing like a pig. +C and the other is just take/ing out a sandwich. +C the other one is full while the other one is still eat/ing. +C the other one : is still full. +C and the other one (is) start/3s to worry about the : other kid. +C then : the other kid (start/3s to ask a lad) start/3s to ask a nurse : to help him. +C the nurse help/3s (the) the kid (um) : with his full stomach. +C she tell/3s the kid to open his mouth. +C the kid is okay now. += [Eg:B2] += [Bg:B3] +C one kid *is walk/ing with a wagon [EU]. +C and the other one *is try/ing to catch up [EU]. +C the other one *is try/ing to grab the balloon [EU]. +C the other kid try/3s to untie the balloon from the wagon. +C the balloon fly/3s away. +C the kid get/3s mad. +C and the other one just stare/3s at the balloon fly/ing in the air. +C (a) another person is hold/ing a bunch of balloon/s for sale. +C he is ask/ing (to go) : to give one of the balloon/s to the kid because the other kid lost his balloon. +C the man show/ed (the balloon) that the balloon/s are five cent/s. +C they did not get a balloon because they did not have any money. +C then : a doctor came. +C they ran to the doctor (to get) and ask/ed the doctor to buy them a balloon. +C the doctor bought them a balloon. +C they were both happy. += [Eg:B3] diff --git a/data/ENNI_SALT/train/738.slt b/data/ENNI_SALT/train/738.slt new file mode 100644 index 0000000000000000000000000000000000000000..76ee6ba5b272aafc9c1aeb3b884283138e0bab80 --- /dev/null +++ b/data/ENNI_SALT/train/738.slt @@ -0,0 +1,118 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 5/22/1993 ++DOE: 12/04/2000 ++CA: 7;6;12 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 738=CHI ++Tape Location: Disk M6 Track 101 += [Bg:A1] +C once upon a time : there was a giraffe : and an elephant. +C (they were play/ing : with) and they were (pl) play/ing with a ball. +C but the elephant bounce/ed the ball too hard. +C and it fell into (the wa) the pool. +C so the giraffe dove in and : went to get the ball. +C but the elephant was scare/ed that he would drown. +C but then the giraffe came back with the ball. +C and the elephant was happy. +C (and : then : the elephant w) : (the zebra was drip/ing) and the (gir) giraffe was drip/ing wet. +C but the elephant (was still ha) was happy that he brought the ball back. += [Eg:A1] += [Bg:A2] +C one day an elephant and a giraffe want/ed : to : go on the diving board. +C (the :) the elephant said : (let us go) let us go quick before anybody else : get/3s on it. +C (but) and the elephant start/ed to run over to the diving board. +C but she[-:] slip/ed and fell and hurt her knee. +C and[-:] so the giraffe went to get the lifeguard. +C the elephant was scare/ed because[-:] : she thought (she would) it would hurt when the lifeguard was help/ing her. +C but the lifeguard did not hurt her. +C (and) and then she was : surprise/ed. +C then[-:] she was embarrass/ed because the lifeguard told her : not to run. += [Eg:A2] += [Bg:A3] +C one day an elephant and a giraffe (: were) were play/ing together. +C the giraffe (pl) : brought out his airplane. +C the giraffe[-:] was fly/ing the plane. +C and the elephant want/ed : to play with it too. +C so she grab/ed it from him. +C and she was play/ing with it. +C then she drop/ed it in the water. +C and they could not get it back. +C (so the) and the giraffe got angry at the elephant. +C (but the) and the elephant (phant) was scare/ed. +C but then the lifeguard came : (and help/ed them) and try/ed to help them to get the[-:] plane back. +C (but he could not) but he could not. +C xxx. +E turn? +C so the elephant explain/ed it to him. +C and the lifeguard try/ed to help. +C but he could not reach the airplane. +C it was too far in the pool. +C so[-:] the giraffe start/ed to cry. +C the elephant (was sad for him) was sad for him. +C and the : lifeguard did not know what to do. +C but then someone with a net came along. +C and then : she[!] : help/ed them get the airplane back. +C she try/ed. +C and she try/ed. +C and she got the plane. +C and then the giraffe was happy again. +C and so was the elephant. +C so they got to play with the plane again. += [Eg:A3] += [Bg:B1] +C one day a rabbit (and a) and a dog were play/ing in a sandbox. +C the dog had built : a sandcastle. +C the rabbit want/ed to help the dog. +C so : he came in : and help/ed her. +C but he dump/ed too much sand on the sandcastle. +C and[!] : he bury/ed the sandcastle. +C and the : dog was : sad. +C and the rabbit was surprise/ed. +C and the dog : was build/ing the : sandcastle again. +C (and) and (the) the dog built the sandcastle again. +C (and the) but the rabbit did not help this time. += [Eg:B1] += [Bg:B2] +C one day a dog and a rabbit : were walk/ing through the wood/s. +C they were go/ing on a picnic. +C the rabbit was very hungry. +C (and :) and the dog was still unpack/ing the food. +C (so) (and he ate all the food and all the rab) (all) so the rabbit ate all the food. +C and (all the dog) all that the dog had left : was a juice box and a sandwich. +C then the rabbit felt sick. +C and the dog did not know what to do. +C then the dog saw a doctor and ran over to the doctor and : told her the story. +C after the dog told the doctor the story : she brought her over to the rabbit. +C the doctor look/ed at : the rabbit. +C and[-:] he was still sick : though. +C but then the rabbit felt better because : the doctor made him feel better. += [Eg:B2] += [Bg:B3] +C one day a dog and a rabbit (were walk/ing) (were) were walk/ing together. +C they met. +C and : the dog had a balloon attach/ed to her wagon. +C the rabbit want/ed to hold the balloon. +C and the dog said it was okay. +C but then he was go/ing to untie the balloon. +C and she did not : want him to do that. +C (but the) and the rabbit held it. +C but he let go of it by accident. +C and it was too high for them to reach. +C it (f) : slowly float/ed away. +C and the : dog was angry at the rabbit. +C and the rabbit : was still watch/ing the balloon float. +C then they saw a balloon man. +C and they went over to buy a balloon. +C the rabbit point/ed to a shiny green one : and want/ed it. +C (but) and (it) (they) the balloon/s were five cent/s. +C but the rabbit did not have any money. +C the dog and the rabbit were sad. +C then they saw someone : (across) not too far from them. +C they went over to her and ask/ed (for them) for her to buy them a balloon. +C so after (they said they) they ask/ed her : she said okay. +C she bought a balloon for both of them. +C and then they both were happy because both of them had a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/739.slt b/data/ENNI_SALT/train/739.slt new file mode 100644 index 0000000000000000000000000000000000000000..ce80604aca1f70081a61bc39ed357ea94e29012e --- /dev/null +++ b/data/ENNI_SALT/train/739.slt @@ -0,0 +1,68 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 3/22/1993 ++DOE: 5/12/2000 ++CA: 7;1;20 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 739=CHI ++Tape Location: Disk L14 Track 12 += [Bg:A1] +C there was a cow and a[EW:an] elephant. +C but : the elephant drop/ed the ball to the water [EU]. +C and then the cow had to [~_hadda] come to swim to get it. +C and the cow got it. +C and then the cow was soak/ing wet. += [Eg:A1] += [Bg:A2] +C (th[-:]) the cow and the elephant were look/ing at the : swimming pool. +C the elephant was not watch/ing where he was : go/ing. +C and : she slip/ed : and hurted|hurt[EW:hurt] : her : knee. +C then the lifeguard come|come[EW:came] over. +C then the lifeguard put a bandaid on there : and then[-:] let her to rest for a little while. +C and the lifeguard show|show[EW:showed] her the sign no run/ing. += [Eg:A2] += [Bg:A3] +C (uh) the elephant saw the cow had a[EW:an] airplane. +C : and : the elephant was surprise/ed. +C so she grab/ed it. +C and then she throwed|throw[EW:threw] it in the water by accident. +C and then the cow was mad at her. +C the lifeguard come|come[EW:came] over. +C (and splaining to) and the elephant was explain/ing to the : lifeguard what happen/ed. +C and[-:] lifeguard was try/ing to reach it. +C but : the lifeguard could not reach it. +C and then : another : lifeguard came over : and got it. +C and then he was happy. +C and he was : glad that he got his airplane back. += [Eg:A3] += [Bg:B1] +C (a) : there was[EW:were] : (b) bunny/s. +C and one made a sandcastle. +C so one animal want/ed to join her. +C and[-:] he was make/ing a sandcastle (wi) : like her [EU]. +C but (it) he drop/ed it on the girl with : a sandcastle. +C and then it was a pile[-:]. +C and then she had to [~_hadda] start all over again. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C (uh) : two of (th) the bunny rabbit/s were go/ing on a picnic. +C but one : was eat/ing faster than the other one : that[EW:then] he got full. +C and then he got sick. +C and then the doctor came over. +C and then the girl was : (hold/ing) : push/ing him over : and check/ing him[-:]. +C and he was : better. += [Eg:B2] += [Bg:B3] +C she[-:] had a balloon tie/ed onto her wagon. +C and : the other bunny rabbit was look/ing at it : and untie/ing it : and let/ing it go up into the air. +C and then the girl was mad at him. +C and then there was[EW:were] lot/s of [~_lotsa] balloon/s. +C and then[-:] : the boy (ra) rabbit : (wa) want/ed one for the girl. +C and : he had to [~_hadda] pay five buck/s. +C and then they were sad. +C : but then : this boy rabbit : was go/ing to the doctor : and tell/ing : about something : to : give him five buck/s. +C and then they were happy. += [Eg:B3] diff --git a/data/ENNI_SALT/train/744.slt b/data/ENNI_SALT/train/744.slt new file mode 100644 index 0000000000000000000000000000000000000000..dcbf2a98e1e6ef16e286c41a2b19f43726b8a782 --- /dev/null +++ b/data/ENNI_SALT/train/744.slt @@ -0,0 +1,90 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 12/14/1992 ++DOE: 11/16/2000 ++CA: 7;11;2 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 744=CHI ++Tape Location: Disk L20 Track 59 += [Bg:A1] +C once upon a (di) time Giraffe saw Elephant play/ing ball in the swimming pool. +C Elephant : hit it off the edge and into the swimming pool. +C Giraffe went swim/ing for it. +C Elephant said thank/s. +C : you are welcome said Giraffe. += [Eg:A1] += [Bg:A2] +C once upon a time Giraffe and Elephant want/ed : to swim. +C (Ele) (Elephant) giraffe look/ed at no run/ing. +C Elephant want/ed to run. +C (Giraffe) Giraffe forgot to tell him about the sign. +C Elephant ran and slip/ed. +C and Giraffe (wa) : was behind him. +C Elephant hurt his knee. +C Giraffe went : say/ing : it is okay. +C Giraffe told the lifeguard. +C the lifeguard put a bandage on it. +C then : they made her sit down on a bench. +C he remind/ed her (no run/ing) no run/ing. += [Eg:A2] += [Bg:A3] +C once upon a time Giraffe brought a plane to the swimming pool. +C Elephant ask/ed if he could use it. +C he (play/ed) play/ed with it and show/ed him what to do. +C Elephant : grab/ed it from him : and threw it up in the air. +C and it came back down crash/ing into the water. +C Giraffe was mad. +C and Elephant said sorry. +C then the lifeguard saw (it) it. +C he ask/ed elephant why it was in there. +C the lifeguard : try/ed to reach for it. +C he said how do we get it? +C somebody came with a net. +C the swimming teacher got it out. +C thank you said giraffe. +C I[-:] : will not let you use it again. += [Eg:A3] += [Bg:B1] +C once upon a time there was this dog. +C and he had a friend name/ed Bunny. +C he said his friend Bunny could help build a sandcastle. +C he pour/ed a : pail of sand on it. +C now look what you did Bunny. +C : I am sorry. += [Eg:B1] += [Bg:B2] +C once upon a time Dog was go/ing on a picnic. +C Bunny came too. +C Bunny brought : cake : cheese : chocolate bar : cookie/s carrot/s sandwich/s chip/s jam. +C and Dog only brought hardly anything. +C Dog was eat/ing. +C and Bunny was full. +C Dog keeped|keep[EW:kept] eat/ing. +C and then Bunny felt sick. +C Dog ran to Bunny/z mom. +C Dog pull/ed (bunny) Bunny/z mom over. +C : Bunny/z : mom help/ed him. +C Bunny went home with his mom. +C and Dog stay/ed there. += [Eg:B2] += [Bg:B3] +C once upon a time : Dog was go/ing to pick up one more balloon. +C Bunny said : can I have one? +C Dog said no do not. +C now look what you did. +C sorry. +C Bunny watch/ed it. +C and dog look/ed very mad. +C there was a balloon seller man. +C (he) Bunny ask/ed if he could buy one. +C Bunny look/ed for money. +C it was five : cent/s. +C Dog came : and said : we will not need one. +C Bunny/z mom : was stand/ing. +C and Bunny went over there to ask for some money. +C he told his mother about the balloon/s. +C his mother paid the balloon man. +C they each got a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/746.slt b/data/ENNI_SALT/train/746.slt new file mode 100644 index 0000000000000000000000000000000000000000..28ad6293b0abd11931dc696f4d7467c2bbce8e0d --- /dev/null +++ b/data/ENNI_SALT/train/746.slt @@ -0,0 +1,92 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 6/7/1993 ++DOE: 11/16/2000 ++CA: 7;5;9 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 746=CHI ++Tape Location: Disk L20 Track 48 += [Bg:A1] +C one day (there is :) (there um) there was[EW:were] two friend/s : Polka Dot/s and : (Long) Long Neck. +C they want/ed to go swim/ing together. +C they found a ball. +C and they jump/d into the pool and play/ed with it. +C but then before even Polka Dot jump/ed in : Long Neck jump/ed in first and grab/ed it. +C then : Long Neck (swa) swam back : to the shore and got it for Polka Dot. +C and she smile/ed. +C and : Long Neck smile/ed back. += [Eg:A1] += [Bg:A2] +C one day : (there) (there) Long Neck and : Polka Dot : want/ed to go on the diving board. +C so Polka Dot said let us go on the diving board. +C and (she) she went. +C she ran : very fast : and fell. +C she was cry/ing. +C so the : lifeguard : quickly came over. +C and so he gave her a bandaid : and : put her on : a bench. +C (and said now n) and the lifeguard said no run/ing allow/ed. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C one day : Polka Dot and Long Neck : were talk/ing together. +C Long Neck brang along his plane. +C and Polka Dot : was really surprise/ed. +C and then Polka Dot grab/ed it out of Long Neck/z : hand. +C and she start/ed play/ing with it. +C but then it fell into the water. +C Polka Dot was really sorry. +C and then Long Neck : got really mad. +C and (sh) she felt really : sad. +C so the lifeguard came over : and saw what they were do/ing. +C (he) and so Polka Dot told the story to the lifeguard. +C and the lifeguard reach/ed over to get it. +C and (he) he could not get it. +C and then Polka Dot/z mother came and had : a net. +C she : took the net put it in the water and try/ed to get it. +C then (mom um) Polka Dot/z mom got it : for Long Neck. +C and Polka Dot and Long Neck were happy. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C (once) one day : Rabbit and : Puppy went outside play/ing in the sandbox. +C Puppy (made) made (um) a : sandcastle. +C and Bunny (um) started put/ing sand into a bucket. +C Bunny pour/ed a big full : (sand) (sand um : box) sandbox : on top of the (sand) sandcastle. +C and it ruin/ed puppy/z sandcastle. +C and bunny : was really sorry. +C and then puppy start/ed to cry. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C one day : Puppy and Bunny went walk/ing down : (the) (the) : the sidewalk : to find a place for a picnic. +C they laid their blanket down and took out the food. +C Bunny (mo) ate most of it really fast. +C and Puppy ate slow. +C Bunny was really really full. +C Puppy saw : (a b) a nurse. +C (he) Puppy grab/ed the nurse brang|bring[EW:brought] it over to Bunny [EU]. +C and the nurse : said lay down so I can check you. +C and the nurse : said let us go home. +=C the end [~_whispered] [+_bch]. += [Eg:B2] += [Bg:B3] +C one day Puppy and Bunny went walk/ing down : the sidewalk. +C Puppy was : take/ing : behind : (um) a wagon with (um) with a balloon on it. +C (Bu) Bunny saw the balloon and said could I hold it? +C Puppy said no when Bunny (ju) just about took it off. +C then bunny let go. +C and it flew up into the air. +C Puppy got really mad. +C and Bunny felt sorry. +C (then puppy saw) then Bunny saw : more balloon/s : while Puppy was mad. +C so he ran over. +C he gave some money to the : balloon man and got a balloon. +C and so the balloon man : (told him : here : to) gave him a balloon. +C (and sa) and then : the balloon man (sai) said : you could give her this. +C and then the bunny saw the nurse again. +C the bunny told the nurse (th) (could I) could I have some money? +C and so the : nurse gave (h) him some money. +C and Bunny and Puppy had their own. += [Eg:B3] diff --git a/data/ENNI_SALT/train/752.slt b/data/ENNI_SALT/train/752.slt new file mode 100644 index 0000000000000000000000000000000000000000..98bed51267a2ee50754b00ca2ea7f669022b76f5 --- /dev/null +++ b/data/ENNI_SALT/train/752.slt @@ -0,0 +1,93 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 1/20/1993 ++DOE: 11/21/2000 ++CA: 7;10;1 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 752=CHI ++Tape Location: Disk L21, Track 14 += [Bg:A1] +C one day an elephant and a zebra were bounce/ing a ball. +C and the ball fell in the water. +C and then the zebra swam to get it. +C and then : he got it and gave it to the elephant. +C and the elephant was really happy. +C and the zebra was really happy too. += [Eg:A1] += [Bg:A2] +C a zebra (and a elephant) and an elephant were go/ing swim/ing. +C and (um) the elephant was : (um) go/ing to go off the diving board. +C and she was run/ing to go : to the diving board. +C and she trip/ed : and fell on her knee and hurt herself. +C and (um) then she start/ed to cry. +C (and the lifeguard) and the lifeguard put a bandaid on her. +C and (um) then she could not move it for a little while. +C and then she was able to move it. += [Eg:A2] += [Bg:A3] +C one day (an eleph uh) the zebra (and the) and an elephant were play/ing with an airplane. +C and (um) then : (i the) the zebra was play/ing with the airplane. +C (and the elephant) and (um) the elephant want/ed to try. +C and then the elephant grab/ed it from the zebra. +C and then it fell in the water. +C the zebra got mad at the elephant. +C (um) and then the lifeguard came. +C the lifeguard saw the boat. +C (and um he was) (and he) and the elephant said : could : you (um) get the plane. +C and then he try/ed. +C but he could not do it. +C and the zebra was cry/ing. +C and the elephant : was kind of sad for him : and kind of guilty. +C and then (um : uh) : a (la oh) lady came. +C (and um) and she had a net to get the airplane. +C and she got it for him. +C and : he was really happy. +C and then he hug/ed the airplane. += [Eg:A3] += [Bg:B1] +C (uh[-:] : um I can not um) Bill and Harold were build/ing a castle. +C and (um : b[-:]) Bill (bi) (um sh) shape/ed the castle while Harold dug some sand. +C and then Harold dump/ed the sand on the castle. +C and he ruin/ed it. +C and they were both kind of sad. +C (and um Harold was a) and Harold was : kind of sad. +C and : Bill did not really care. +C (and then he start oh uh) and then : he did not look like he was sad. +C (but) : and then he start/ed to cry. +C he did not look very sad. +C and then (um) : Harold : was kind of sad for him. += [Eg:B1] += [Bg:B2] +C (um[-:] Har) Harold and Bill went on a picnic. +C and Harold brought a lot of thing/s. +C and he look/ed hungry. +C and then he ate all of them. +C (and um he felt) and : Harold felt sick. +C and then (um) Bill went to go get a doctor. +C and then (um) the doctor did not want to come. +C but then Bill pull/ed her over. +C (and um she) and (um) she said not to eat that much the next time. +C and then he walk/ed home : with (her) the doctor. += [Eg:B2] += [Bg:B3] +C (um) one day : (Harold) Harold and Bill : went to go play. +C and (um) Harold saw that Bill had a balloon on his : (um) wagon. +C and then he was try/ing to untie it. +C and Bill did not want him to. +C and then the balloon flew away. +C and they were both try/ing to catch it. +C but they could not. +C and then Bill got mad at Harold. +C and (um) : he start/ed to shake. +C and then they saw (some) (a balloon) (a g) a person (say um) with some balloon/s. +C and then they went to go get him. +C and then (um) : Harold went and chose a balloon for Bill. +C and (um) it said five cent/s on the balloon. +C (and um) but Harold did not have that much. +C and then they could not get it. +C and then (um) they saw Harold/z Mom : and asked her for five cent/s. +C (and then : they) and then (um) she gave the balloon salesman five cent/s. +C and then : they were both able to get a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/754.slt b/data/ENNI_SALT/train/754.slt new file mode 100644 index 0000000000000000000000000000000000000000..c6bc49d0a7d0312f74d623bba8dc10973d19e1a1 --- /dev/null +++ b/data/ENNI_SALT/train/754.slt @@ -0,0 +1,83 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 8/23/1993 ++DOE: 11/21/2000 ++CA: 7;2;29 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 754=CHI ++Tape Location: Disk L21, Track 24 += [Bg:A1] +C a giraffe and a[EW:an] elephant are bounce/ing a ball. +C but it roll/ed into (the) : a pool. +C the cow jump/ed in to get it : and brang|bring[EW:brought] it back to the elephant. +C the elephant said to the : giraffe thank you. += [Eg:A1] += [Bg:A2] +C an elephant and a giraffe want/ed : to go on a diving board. +C the elephant : start/ed run/ing over to it. +C but the elephant slip/ed. +C the giraffe (went to get to the) went to get the lifeguard. +C the lifeguard : came and put a bandaid on it. +C : the elephant close/ed : her eye/s while he put the bandaid on : then : help/ed her go over to the bench. +C the lifeguard : said : the sign over there says no run/ing. += [Eg:A2] += [Bg:A3] +C a giraffe was hold/ing an airplane. +C : (and : he) :. +E : and he [+..]. +E : let us try the next page? +=C okay [+_bch]. +C and the : elephant took the : airplane away : from the giraffe. +C but it : fell : in the pool. +C the giraffe : got mad at the elephant for do/ing that. +C the lifeguard came over and said what is the matter? +C the elephant explain/ed I took : a[EW:an] airplane : (t) from the giraffe. +C and it fell into the pool. +C the lifeguard try/ed to get it. +C but he could not. +C the giraffe start/ed to cry because nobody could get it. +C a different lady came over : and : said that she could get : the airplane out with a net. +C and she got it. +C the giraffe said thank you to the lady. +C and the elephant said : she would never do it again. += [Eg:A3] += [Bg:B1] +C a rabbit and a dog : went to the park and : play/ed in the sand box. +C and they built a : castle out of sand. +C the rabbit : want/ed to see what happen/ed if he : pour/ed : more sand on the castle. +C it : broked|broke[EW:broke] the castle when : the rabbit pour/ed the sand. +C so the dog fix/ed it back up. += [Eg:B1] += [Bg:B2] +C a rabbit and a dog went for a picnic. +E : look at the picture/s. +E what do you think is happen/ing in the story? +C the rabbit is (eat) : eat/ing. +C and : the rabbit got full. +C but the dog did not. +E : would you like to try the next page? +=C okay [+_bch]. +C and the dog went to get : the rabbit/z mom because the rabbit could not get up. +C the dog (dra) : show/ed the rabbit/z mom where they had a picnic. +E : do you want to try the next page? +=C okay [+_bch]. +C and : they went back home together. += [Eg:B2] += [Bg:B3] +C a dog was : pull/ing his wagon with a balloon tie/ed onto it. +C a rabbit came and : want/ed the balloon. +C he try/ed to take the balloon off. +C but it : float/ed up into the sky. +C soon they could not see it. +C and the dog got mad at the rabbit. +C then the rabbit saw a : guy sell/ing balloon/s. +C they came over. +C and the rabbit said I want that one. +C so : the balloon man gave : the balloon for five cent/s. +C but the rabbit did not have any money. +C the rabbit went to ask her mom : if she could have some money. +C so her mom gave her some : and buyed|buy[EW:bought] two balloon/s. +C and then they both had a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/755.slt b/data/ENNI_SALT/train/755.slt new file mode 100644 index 0000000000000000000000000000000000000000..18925b1e20292e8119a6a6df400597b196b38e11 --- /dev/null +++ b/data/ENNI_SALT/train/755.slt @@ -0,0 +1,117 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 5/13/1993 ++DOE: 11/15/2000 ++CA: 7;6;2 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 755=CHI ++Tape Location: Disk L20 Track 33 += [Bg:A1] +C (Um : the elephant he was sh) the elephant and (the) (um : the d um) the horse (um) were : at the pool. +C and the elephant was bounce/ing the ball very very fast. +C And : the elephant was watch/ing. +C And then : the elephant saw how the ball went in the water. +C and the dog was surprise/ed. +C And then the dog : went : (um) in : and chase/ed it [~_laughs]. +C and : it never could get there. +C And then he got it. +C and : he gave it to the (um) : girl so (he) she could bounce it again. +C and he was all all wet. += [Eg:A1] += [Bg:A2] +C (Um there wa in) the (um) horse and the elephant : want/ed to go swim/ing. +C and then the : (um) elephant saw a diving board. +C so she want/ed to go. +C And she start/ed run/ing. +C and he : was just smile/ing. +C and (um) : she keeped|keep[EW:kept] on run/ing faster. +C and then she slip/ed : and fell[-:] : and hurt her knee. +C And then the lifeguard came : and put a bandage on her. +C and then she sat down on the bench. +C And : then (um) : she was embarrass/ed because the lifeguard show/ed her no run/ing it said. += [Eg:A2] += [Bg:A3] +C The horse : was play/ing with the airplane. +C and the : (um) elephant want/ed to play with it. +C And then he[!] was flap/ing it around in the air. +C and she was look/ing. +C and then she took it from him. +C and she[!] was. +C and then she let it go into the pool. +C and then : (he) the : horse got mad. +C and then the lifeguard saw. +C and they were both not happy. +C and then (um) she told the lifeguard about it. +C and (um) the lifeguard : said down there? +C and then he was try/ing to reach it. +C (and then h) but he could not. +C so the horse was cry/ing. +C and then : (um) another lifeguard came with a net to pick it up with. +C and (they were a all) (the life) the other lifeguard the elephant : and : the horse were surprise/ed. +C and then she : try/ed. +C and the horse was in tear/s. +C and she got it for him. +C and he was happy. +C and then he love/ed it. += [Eg:A3] += [Bg:B1] +C (um) there is a rabbit and (um) a dog[-:]. +C and they : both came to the same sandbox. +C and then the rabbit he fill/3s the bucket to help make the sandcastle. +C and then he think/3s that : it would work if he just pour/3s it on. +C but then : it make/3s (i) a sand pile on top of it. +C and you can only see one window. +C and then the dog is in tear/s because (he work/ed) he (b) made the (k) castle. +C (he ju) the rabbit just fill/ed the sandbox. += [Eg:B1] += [Bg:B2] +C this is a bunny. +C and he is hop/ing down the street. +C name/ed Roger Rabbit. +C and he meet/3s : a fox. +C and (they want to have a pic) they have a picnic. +C and then the rabbit he eat/3s ton/s and ton/s and ton/s of stuff. +C and the dog just (eats a ju) has a juice and a sandwich. +C and then : the dog see/3s (ra) the rabbit. +C and he is almost pass/ed out. +C he ate so much. +C and then : the dog he call/ed : the nurse rabbit. +C and (um) she saw him. +C and she is like : okay[!]. +C and then she came over. +C and then she gave him the pill/s and stuff. +C and then they went home. += [Eg:B2] += [Bg:B3] +C (um the do and the) a dog (and the rabbit came) and the rabbit came by. +C the dog had a cart and a balloon. +C and the rabbit had nothing. +C the rabbit want/ed to hold the balloon. +C and : the dog was not sure. +C and then the rabbit untie/ed the balloon. +C (and he) and the dog was : scare/ed that he would let go of it. +C and then (um) the rabbit let go of it. +C and the dog was run/ing to catch it. +C and the rabbit was try/ing to. +C but they could not. +C and it went higher. +C and the dog got madder [EU]. +C (and then : they saw) and then the rabbit saw (bu) a balloon man. +C and the dog was really really mad. +C and then he asked for a balloon. +C and the dog was surprise/ed. +C (and then he) : it was five dollar/s. +C and he look/ed. +C and (he was) he did not have any money. +C and the dog was come/ing up the hill. +C and then they were like aw[-:]. +C and then the man is like you need five dollar/s. +C and then : the rabbit go/3s to his Mom : and ask/es her for five dollar/s. +C and : she was kind of [~_kinda] surprise/ed what he want/ed because he never was interest/ed in balloon/s. +C and then she paid for (one) two : balloon/s. +C and then they were both happy. +C and the rabbit could let his go if he want/ed to. +C and the dog want/ed to keep his. += [Eg:B3] diff --git a/data/ENNI_SALT/train/756.slt b/data/ENNI_SALT/train/756.slt new file mode 100644 index 0000000000000000000000000000000000000000..bfeb4e26aa710780bafd0aca81f66479d6d7f31a --- /dev/null +++ b/data/ENNI_SALT/train/756.slt @@ -0,0 +1,89 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 4/14/1993 ++DOE: 11/30/2000 ++CA: 7;7;16 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 756=CHI ++Tape Location: Disk L22 Track 10 += [Bg:A1] +C (fir) first there is an elephant that (um) see/3s a[-:] : giraffe. +C (and then) and the giraffe (ask) ask/3s (if the ele) if : the giraffe can play (with the elephant) (with his) with the elephant/z ball. +C (then they) then they accidentally throw it. +C and it land/3s (in the) in the[-:] swimming pool. +C (then he dive) then the : (um) : giraffe dive/3s into the : swimming pool to grab the ball. +C (then) (but) (an) and then the giraffe give/3s the ball back (to) : to the elephant. +C (and then : he say) then he is say/ing you are welcome. += [Eg:A1] += [Bg:A2] +C (after they) after : the : giraffe : got out of the pool : the giraffe dry/ed up. +C then they : felt like go/ing for a swim. +C but they did not want to. +C then they want/ed to go off the diving board. +C (so the eleph) so they both ran there. +C and the elephant start/ed to slip. +C and the elephant slip/ed and scratch/ed : her knee. +C now the elephant is cry/ing. +C (and) and the lifeguard[-:] came. +C the lifeguard gave the elephant : a bandaid. +C then the (ele) lifeguard (s) : put the : elephant on the bench. +C then the lifeguard was talk/ing : (to the) to the little elephant about no run/ing. += [Eg:A2] += [Bg:A3] +C then the giraffe (bring) : go/3s home quickly and grab/3s an airplane and come/3s back to the swimming pool. +C (then they are play/ing) and : then the giraffe is play/ing with it. +C and the elephant is watch/ing. +C then the elephant take/3s it (from) from the giraffe and start/3s (play) fly/ing it around. +C then the elephant drop/3s it in the water. +C (then) now : the giraffe : is mad at the elephant : for drop/ing it in the water. +C now the lifeguard come/3s : and ask/3s (what is wrong) what is wrong. +C then the lifeguard try/3s to reach it out of the water. +C but the lifeguard could not get it. +C and the (g) giraffe is cry/ing about his airplane. +C then (the um[-:]) another elephant come/3s with a net : and (s) (try) is about to scoop it up. +C (then the : el) then she scoop/3s it up. +C (and then : the giraffe) : (pl) (get/3s to play with his air) now the giraffe has his airplane back. +C (now he) now he is hug/ing his airplane. += [Eg:A3] += [Bg:B1] +C first : (there wa : uh) there was a : rabbit and a dog play/ing in the sand make/ing a sandcastle. +C then the rabbit fill/ed a bucket up with sand : (the) when the dog (was make) had a : really neat : castle. +C (then the) : then the rabbit dump/3s all that sand[-:] on the : castle. +C now the castle is ruin/ed. +C (now this) : now the rabbit : is[-:] : confuse/ed. +C and the dog is cry/ing. += [Eg:B1] += [Bg:B2] +C first there was a : dog and a rabbit go/ing for a picnic. +C (then there uh) and the rabbit has a whole bunch of food set down already. +C and the rabbit eat/3s it all up. +C (now he is) now (he is) (s uh) he is sick. +C then a doctor come/3s by. +C and the (dog so) dog go/3s run/ing toward/s the doctor to say that the rabbit is sick. +C (she) : now : the dog is try/ing to pull the doctor over to the rabbit. +C now he is sick. +C and the doctor give/3s him a pill. +C (then he feel) now they are walk/ing to the hospital for him to rest. += [Eg:B2] += [Bg:B3] +C once there was a dog and a little rabbit. +C and the dog had a balloon tie/ed to his (wheelbarrow : uh) [~_I_mean] wagon. +C and then : the rabbit untie/3s : the balloon off the : wagon. +C then : (the rabbit) : it slip/3s out of the rabbit/z hand. +C and it fly/3s away. +C (now the) : now the dog is mad at the rabbit. +C and then they see (a balloon sale) (s) a balloon man sell/ing balloon/s. +C they ran over. +C (they ask if th) the rabbit ask/3s if he can have a balloon. +C (you need five c) the : balloon (sale) saler[EW:seller] say/3s you need five cent/s before you can have a balloon[-:]. +C (then the dog come/3s and ask/3s) and then the dog come/3s. +C and they are : look/ing at : the balloon saler[EW:seller]: smile/ing. +C then they see the doctor again. +C (they come run/ing to) the rabbit go/3s run/ing to the doctor. +C (the doc) (the) (he) the rabbit ask/3s the (dos) doctor (if he) if the doctor can : (um) buy a balloon for the dog and : the rabbit. +C (then) : then the : doctor give/3s the balloon saler[EW:seller]: some money. +C and then (they get) they both get (two balloon[EW:balloons]) one balloon. +C (now they are hug/ing) now they are hang/ing onto their balloon/s so they do not fly away. += [Eg:B3] diff --git a/data/ENNI_SALT/train/757.slt b/data/ENNI_SALT/train/757.slt new file mode 100644 index 0000000000000000000000000000000000000000..24c0d6bddbe17164bc490d69b058cbfea1805f32 --- /dev/null +++ b/data/ENNI_SALT/train/757.slt @@ -0,0 +1,100 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 5/20/1993 ++DOE: 11/15/2000 ++CA: 7;5;26 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 757=CHI ++Tape Location: Disk L20 Track 39 += [Bg:A1] +C they are at the swimming pool. +C (a b) they saw a ball in the water. +=C (th) is that a horse or a giraffe [~_whispers] [+_bch]? +E it is your story. +C the giraffe is : try/ing to swim for the ball. +C and then he got it for the elephant. +C and then : she was proud of him. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C (they are) the same character/s are at the pool. +C the elephant start/3s to run. +C she slip/3s. +C she scrape/3d her knee. +C then[-:] the lifeguard come/3s. +C and she is cry/ing. +C and the : lifeguard put/3s (um) a bandage on. +C and then : she is like [~_inhales_sharply]. +C and the lifeguard : (um) tell/3s her : the sign no run/ing. +C and then : she is look/ing at it. +C (then) then lifeguard is point/ing it out. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C (um) the giraffe has a : toy airplane in his hand. +C and (the el) the : giraffe he is play/ing with it. +C and then the elephant grab/3s it from him. +C (and then she put/3s it in the w) and she accidentally : put it in the water. +C then the giraffe get/3s mad at her. +C then the lifeguard come/3s. +C and then the lifeguard is talk/ing to the elephant what happen/ed. +C and then the lifeguard is try/ing to reach for it. +C then the : giraffe is cry/ing. +C then (um) a girl elephant come/3s. +C and she (um) : has a net. +C and she scoop/ed it out. +C and : now he is all glad. +C and now he is hug/ing it. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C a bunny : rabbit was : (um) in the sandpit and a dog. +C and then (um) the dog made a sandcastle. +C and then the bunny rabbit was stir/ing up sand in a pail. +C and then he pour/3s it onto the sandcastle. +C and then (um) : Rabbit is scream/ing. +C then : (um) Dog was try/ing to fix it up (for her) for him. +=C and that is the end [+_bch]. += [Eg:B1] += [Bg:B2] +C the same character/s (are) [EU]. +C but they are go/ing on a picnic. +C rabbit is eat/ing so much. +C and (he is) I think he is get/ing full. +C and now I think he has a tummyache. +C and (he is) now he is all dizzy. +C and now a doctor come/3s. +C and the dog is pull/ing a doctor to the rabbit. +C and then (the ra) the doctor was try/ing to : figure out : what had happen/ed to the rabbit. +C and then rabbit is feel/ing a little bit better. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C they are the same character/s. +C and the dog is pull/ing a wagon. +C and he has a balloon on it. +C and : rabbit is come/ing. +C and then rabbit look/3s at the balloon. +C and he say/3s wow. +C and then he is try/ing to untie it. +C (then the balloo) and he untie/3s it. +C and the balloon float/3s up. +C and Dog is try/ing to chase it. +C and Rabbit is trying to reach it. +C and now Dog is really mad at : him. +C then there is a balloon seller come/ing. +C (and uh she) and : rabbit want/3s to buy one. +C but : [~_whispers_'okay'] balloon/s are twenty (fi s) five cent/s. +C and dog is pull/ing his wagon. +C and : (th) they are (um) look/ing (at the m) at the balloon seller. +C and the balloon seller is (um) : ignore/ing them. +C and then : the doctor (she) she is there. +C (and : then) : and then the rabbit run/3s to her. +C and then the rabbit point/3s out to the balloon/s. +C and (the um) : (the) : the doctor give/3s him : (two five) ten cent/s for two balloon/s. +C and then they each got their own balloon. +C and the doctor is really happy. +=C and that is the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/758.slt b/data/ENNI_SALT/train/758.slt new file mode 100644 index 0000000000000000000000000000000000000000..2bf8384a3d6a8b332c1be1e71d8997e2bb39c36c --- /dev/null +++ b/data/ENNI_SALT/train/758.slt @@ -0,0 +1,97 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 10/05/1993 ++DOE: 1/30/2001 ++CA: 7;3;25 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 758=CHI ++Tape Location: Disk L24, Track 6 += [Bg:A1] +C there is a giraffe and this (um) elephant. +C and the elephant is bounce/ing this ball. +C and they are right beside a pool. +C and now the ball land/3s into the pool. +C and now the giraffe : jump/3s into the pool. +C and he is swim/ing for it. +C and now he is (be) be give/ing it back to the elephant. +C and now : the elephant is kind of smile/ing. +C (and) : and the[-:] giraffe is just smile/ing at each other. +=C that is the end [+_bch]. += [Eg:A1] += [Bg:A2] +C the elephant and the giraffe again. +C and they see this diving board. +C and now : the elephant is (gonna) point/ing at it. +C and (it is gonna) and : he is go/ing to[:_gonna] go to run over to it. +C and now they are both run/ing over. +C and elephant is go/ing to [~_gonna] fall. +C and now the elephant fell and : (stub) (made) gots|get[EW:gets] a booboo on her knee. +C now : the lifeguard : is another[!] elephant and come/3s over to see what *is the matter [EU]. +C and now (um : the) (the) the : lifeguard is put/ing a bandaid on the elephant that : (made) got a booboo on her knee. +C and the : giraffe is just kneel/ing there on : his knee/s. +C and now they are take/ng (the) : the elephant that gots|get[EW:got](um) a : booboo on her knee to a bench. +C and now : the lifeguard point/3s to the sign no run/ing. +C and that is what she was do/ing. += [Eg:A2] += [Bg:A3] +C (um) a[EW:an] elephant and a giraffe. +C and the giraffe has gots|get[EW:got] a[EW:an] airplane in his hand : ready to fly it. +C and now : (the) (the) the : (gir) giraffe is go/ing to [~_gonna] throw it. +C and the elephant is stare/ing at it. +C and now the elephant grab/3s it. +C and now : she is go/ing to[:_gonna] try to fly it. +C and now she throw/3s it into the pool[-:]. +C and now the giraffe is angry at the elephant. +C and now the lifeguard see/3s it just float/ing in there. +C and now : (the elephant) the : girl elephant is try/ing to talk : what happen/ed with the airplane to the lifeguard. +C now the lifeguard is try/ing to reach over and get it. +C and (now the) : now the giraffe (is tear) got[EW:has] tear/s in his eye/s. +C now : there is a girl there : a girl elephant with a net that is go/ing to[:_gonna] grab it. +C and now it is pick/ing it up out of the water. +C now give/3s it : to the giraffe. +C and now : the giraffe is hug/ing[!] : (the) his airplane. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C (um) a rabbit and his dog : are make/ing a sandcastle. +C and now the rabbit gots[EW:has] a shovel and his bucket. +C and now : the rabbit is go/ing to[?] dump the sand from the bucket onto the sandcastle. +C and[-:] the sandcastle is all mush/ed with a big pile of sand on top of it. +C and now they are try/ing to put it back together. +C and the rabbit is like stand/ing (like) : something like this. += [Eg:B1] += [Bg:B2] +C (um) a rabbit and this : dog are walk/ing down the road with these picnic basket/s. +C and now they are eat/ing. +C and now the rabbit is stuff/ed. +C and he is lie/ing down. +C and the dog is still eat/ing : with a juice box in his hand. +C and now the juice box is is still in his hand. +C and now the rabbit is still do/ing what (he) he was do/ing before. +C and now : he has gots[EW:has] his hand/s on his tummy. +C and he is go/ing pluck(*3) : something like that. +C and now : (the dog) (the) the dog is run/ing to : a doctor that is walk/ing down the road : and pull/3s the doctor to the rabbit. +C and now : the doctor is fix/ing up the rabbit. +C and now (the r) the doctor rabbit is take/ing : (the) the little rabbit home : I think. += [Eg:B2] += [Bg:B3] +C this dog has a balloon tie/ed up to his wagon. +C (and the ra) and the rabbit is walk/ing by. +C and now the rabbit is go/ing to [~_gonna] grab the balloon and untie it I guess. +C and now[-:] he is untie/ing it. +C and now the balloon is float/ing up into the air. +C and now the string is all that they can see. +C (and the rab) and the dog : shake/ing it/z fist/s : and *is just stand/ing there [~_makes_noise_"errr"] [EU]. +C and then there is another rabbit over here : that gots[EW:has] some balloons in his hands. +C and now (the rabbit) : the little rabbit walk/3s up to him and ask/3s could I have a balloon? +C and they are five cent/s[~!_yawning] each a balloon. +C and now he is pull/ing out his pocket/s. +C and there is nothing in it. +C and now they are both just stand/ing there. +C and now (the rabbit) the little[!] rabbit walk/3s over to the doctor bunny[!] again : and ask/3s can I have a balloon from him? +C and now (he) the (lit) rabbit is pay/ing[-:] : (to) for a balloon : too. +C and now they both got[EW:have] a balloon. +=C and that is the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/760.slt b/data/ENNI_SALT/train/760.slt new file mode 100644 index 0000000000000000000000000000000000000000..9ae69cb4742508c1c8c433ad7887d90f3584441c --- /dev/null +++ b/data/ENNI_SALT/train/760.slt @@ -0,0 +1,111 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 7/28/1993 ++DOE: 1/30/2001 ++CA: 7;6;2 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 760=CHI ++Tape Location: Disk L24, Track 69 += [Bg:A1] +C once there was a[EW:an] elephant : play/ing with : a ball. +C and she was bounce/ing it. +C and a giraffe come/3s along and say/3s can I play? +C then they both start bounce/ing the ball. +C and the ball fall/3s inside a pool. +C the giraffe go/3s into the pool to get (the) : the ball. +C and the elephant is very worry/ed. +C then the giraffe get/3s the ball out from the water and give/3s it to the elephant. +C then the elephant : say/3s thank you. +C (and start). += [Eg:A1] += [Bg:A2] +C (there is a little um) two friend/s are at the pool. +C and they see : a diving board. +C and they want to jump on it. +C and then they start. +C and then the elephant tell/3s the giraffe let us go on the diving board. +C so they start run/ing. +C and the little elephant slip/3s! +C and she hurt/3s her knee really bad. +C then the lifeguard come/3s along : and see/3s what is the matter. +C and he put/3s a bandaid on the little elephant/z knee. +C and then the elephant is : feel/ing better. +C and then the life (guad) guard remind/3s her no run/ing. +C and then the lifeguard : show/3s her the sign on the wall. +C and it says no run/ing. += [Eg:A2] += [Bg:A3] +C (there is) two friend/s are at the swimming pool. +C and one of them has a : new toy. +C and they like it very much. +C and he start/3s : pretend/ing he is inside the : airplane and start/3s move/ing it around and make/ing noise/s. +C then the little elephant grab/3s the plane and try/s to play with it. +C and then she accidentally drop/3s it in the water. +C (and the life) and then the little : giraffe get/3s angry at her because (she) : she drop/ed the : airplane in the water. +C then the lifeguard come/3s over. +C the little elephant tell/3s the lifeguard what happen/ed. +C the lifeguard try/3s to : get the airplane out of the water. +C (but he is) but it is too far to reach. +C then the giraffe get/3s upset. +C and so do/3s the little elephant. +C and the : lifeguard do/3s not know what to do. +C but then another lifeguard come/3s over with a net. +C and she said she can get it out. +C and she get/3s it out with the net. +C and then : the little elephant say/3s thank you to the lifeguard. +C and then : the little elephant : (um say/3s you are welcome because) say/3s can I play with your little : airplane ? +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C once there was a little puppy. +C and a little rabbit come/3s to play with him. +C the little puppy tell/3s the rabbit that he is make/ing a sandcastle. +C and the rabbit ask/3s if he can : make one too. +C so the rabbit fill/3s a big : pail of sand and pour/3s it onto the sandcastle. +C and the puppy get|get[Ew:gets] very worry/ed. +C and so does the rabbit. +C and then the little puppy start/3s get/ing upset because : the rabbit ruin/ed his sandcastle. += [Eg:B1] += [Bg:B2] +C once there was a little puppy. +C and he was go/ing to (take) : make a picnic. +C and then a rabbit come/3s along and ask/3s if he can join[!] him. +C and the little puppy start/3s unload/ing. +C and the rabbit start/s to eat lot/s and lot/s of food/s[EW:food]. +C then the : puppy get/3s very worry/ed. +C and the : rabbit get/3s very full. +C and his stomach is very big. +C then : the[-:] rabbit (s) get/3s a headache. +C (and start/3s to) and his stomach start/3s to growl. +C then the puppy find/3s a doctor and ask/3s him : if she can : help him because his friend is very sick. +C (so the) (so he) so the doctor come/3s (o) over to see what was[EW:is] wrong. +C and the doctor find/3s out that : the : little rabbit has a stomachache. +C and he has eaten too much. +C and then the doctor take/3s him to the (ho) hospital to make him feel better. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C there was a little puppy : who had a : balloon on his wagon. +C and a rabbit come/3s by to say hello. +C and then : the : bunny see/3s the balloon and want/3s : to keep it. +C and then : the bunny start/3s to untie the : balloon from the wagon. +C and the : little doggy is very surprise/ed. +C and then the balloon fly/3s away. +C and they are both very mad because : they do not have a balloon. +C then (the little : um) : the little dog get/3s angry at the rabbit because he lost his balloon. +C then they all see : a man with lot/s of balloon/s and think they can get one. +C and then the little rabbit ask/3s for a balloon. +C and the : man say/3s (there) you need to : pay for one. +C (and the little : man) and the little bunny (does not have) try/3s to check his pocket/s. +C and there is nothing in them. +C then they are both upset because they do not have anything to buy a balloon with. +C then the little rabbit see/3s (a) a : lady. +C and he go/3s to ask him for some money. +C and he tell/3s the lady why he want/3s a : balloon. +C but he do/3s not have any : money. +C then (the l) the lady give/3s : the man five cent/s so that they can buy a balloon. +C then they are both happy because they have a balloon to play with. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/761.slt b/data/ENNI_SALT/train/761.slt new file mode 100644 index 0000000000000000000000000000000000000000..899b3c0645d907bb1a6053bca6c911f4c0c8eb86 --- /dev/null +++ b/data/ENNI_SALT/train/761.slt @@ -0,0 +1,85 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 11/11/1992 ++DOE: 6/6/2000 ++CA: 7;6;26 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 761=CHI ++Tape Location: Disk L16 Track 37 += [Bg:A1] +C There is a girl : (um) elephant go/3s swim/ing [EU]. +C the ball fall/3s into the water. +C (the guy) the : horse swim/3s after it. +C he pass/3s the ball up : to the girl elephant. +C the : horse : is all wet! += [Eg:A1] += [Bg:A2] +C The elephant and the horse are look/ing at the water. +C the girl : elephant start/3s to walk toward/s it. +C she : run/3s away. +C she (bou) fell down and hurts|hurt[EW:hurt] her knee. +C (ssh) (sh) : the horse and another[!] elephant came along. +C and they put a bandaid : on her knee. +C and : they help her : walk. +C then : she sit/3s on the bench. += [Eg:A2] += [Bg:A3] +C The girl is look/ing : at : the horse and the water. +C the horse (is f) (f) is fly/ing a plane. +C the girl : take/3s it : and : start/3s fly/ing it. +C and then it fall/3s into the water. +C it sink/3s down to[EW:into] *the water [EU]. +C and the horse get/3s mad. +C and then[!] it sink/3s deeper and deeper into the water. +C then she say/3s sorry : to the : elephant. +C (then they) then he jump/3s in and get/3s it. +C and then : the horse : is cry/ing. +C then : a girl came along and had a net with her. +C and : she holded|hold[EW:held] it by the water. +C she took[!] it out. +C then : the horse was happy again. +C then he said thank you. += [Eg:A3] += [Bg:B1] +C The rabbit is play/ing in the sandbox. +C and then a boy come/3s along. +C they play together : and have fun. +C then the rabbit pour/3s sand all over her castle. +C then it break/3s. +C and he[!] say/3s sorry. +C then the girl start/3s cry/ing. += [Eg:B1] += [Bg:B2] +C The girl meet/3s a boy. +C they are both go/ing to [~_gonna] have a picnic. +C they have a picnic together. +C then : (when the) when they are both done eat/ing (th) (th) the boy bunny : gets : full. +C then : he say/3s he has a stomachache. +C then a doctor come/3s along. +C then : the girl pull/3s him (t be) toward/s the boy bunny. +C then the doctor talk/3s to him. +C then he is all better. += [Eg:B2] += [Bg:B3] +C (the) the girl come/3s (sa) along with her wagon with a balloon. +C and (the) : the boy rabbit come/3s along. +C then[!] he say/3s I want that balloon. +C then he hold/3s it. +C then[!] he let/3s it go[!]. +C and (the g) they start run/ing after it. +C then the girl come/3s back. +C and then[!] : a guy came along with more balloon/s. +C then the boy say/3s can I have one of those balloon/s. +C and *he let him have one. +C but he did not have no[EW:any] money. +C so then the girl : was sad. +C then the boy rabbit : (um) walk/ed away. +C so did the girl. +C she ran. +C (then : the doctor said) (and then) and then the boy rabbit told[!] the doctor that she was sad. +C then the doctor pay/3s[!] for the balloon/s. +C then they both[!] have a balloon. +C and then they are happy. += [Eg:B3] diff --git a/data/ENNI_SALT/train/763.slt b/data/ENNI_SALT/train/763.slt new file mode 100644 index 0000000000000000000000000000000000000000..59bfb83e40119a033905c59d00ea1184cc9ef0de --- /dev/null +++ b/data/ENNI_SALT/train/763.slt @@ -0,0 +1,106 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 12/26/1992 ++DOE: 6/6/2000 ++CA: 7;5;11 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 763=CHI ++Tape Location: Disk L16 Track 33 += [Bg:A1] +C (um) [~_clears_throat] an elephant is play/ing : ball. +C and a giraffe is come/ing along to watch. +C one of the ball/s skid/ed into the pool. +C and they are both watch/ing it. +C and then the giraffe : come/3s in : and try/3s to get the ball : and give/3s it to the elephant. +C and the : elephant is happy that the giraffe (give) (fou um) : swim|swim[EW:swam] (and get) and got the ball and give|give[EW:gave] it back. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C (um) a giraffe : and an elephant are watch/ing the : swimming pool. +C then the elephant say/3s : let us go over here. +C and : they are run/ing over to there. +C and the elephant look/3s like he is go/ing to slip. +C and the elephant stub/3s his : knee. +C and it is cut. +C and the elephant is come/ing along (and) the lifeguard : (and) to see what was the matter. +C and the lifeguard is give/ing the elephant a bandaid [~_coughs]. +C and the lifeguard is take/ing the elephant : (with) : out : to : the side. +C and : the lifeguard is tell/ing the elephant no run/ing. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C The elephant is [~_coughs] happy. +C and she want/3s to go somewhere. +C and the giraffe is play/ing with his : plane. +C and the elephant took it. +C and[-:] she want/3s to try. +C and it go/3s into the water [~_coughs]. +C and the giraffe : is get/ing mad at the elephant for : put/ing it in the water. +C the lifeguard is look/ing : and the giraffe and the elephant [EU]. +C and the plane is in the pool. +C (the li) (life) the elephant is tell/ing the lifeguard what happen/ed [~_coughs]. +C the lifeguard is try/ing : to get the : airplane out of the water. +C he can not. +C and the giraffe is cry/ing. +C then : another : person comes along with a net. +C (and sh) (and she got) and she is try/ing to get it. +C she got it : and gave it to the giraffe. +C and : now the giraffe is happy. +C now the giraffe is : hug/ing the airplane. +C and : he is happy. +C and the elephant is happy too. += [Eg:A3] += [Bg:B1] +C (Um um : a : um) a brother rabbit and a sister rabbit *are play/ing in the sandbox [EU]. +C and the : sister rabbit is : make/ing a sandcastle. +C and the brother rabbit is get/ing some sand out of the bucket. +C and then the brother rabbit is pour/ing it over top of the sandcastle. +C and then : the sister rabbit is look/ing at the sandcastle. +C and the brother rabbit is : (um : um) : mad : I think. +C and then : the sister rabbit is try/ing to make it over again. +C and the brother rabbit is stand/ing there. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C a brother rabbit and (a) a sister rabbit have (picnic bastics) picnic basket/s. +C and : they are go/ing for a picnic. +C and the brother rabbit is have/ing a carrot and a sandwich. +C and : the sister rabbit is pull/ing out her stuff. +C and the brother rabbit is full. +C and the sister rabbit is have/ing the sandwich and a drink. +C and (the brother rabbit) the (bluther) brother rabbit is : (um) hold/ing his stomach. +C and the sister rabbit is still have/ing some drink : and something to eat. +C (the) and a doctor is come/ing. +C and the sister (says : wait) : want/3s him to wait. +C and the sister rabbit is drag/ing the doctor (to his) to her brother. +C and the doctor is check/ing out the brother rabbit. +C now the doctor and the brother rabbit are walk/ing away. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C (um) the sister rabbit is pull/ing a wagon with a balloon tie/ed to it. +C and Brother Rabbit : is : try/ing to take the balloon. +C and he is untie/ing the balloon from the wagon. +C and now (it's f) the balloon is float/ing up. +C and both of them are try/ing to catch it. +C (the brother) the sister rabbit is get/ing mad. +C and the brother rabbit is watch/ing it go up. +C then a man is come/ing with a whole bunch of balloon/s. +C and brother rabbit look/3s like he is go/ing to [~_gonna] run to him. +C and the brother rabbit say/3s one balloon. +C balloon five cent[EW:cents] [EU]. +C and : the brother rabbit do/3s not have any money. +C the brother rabbit is (hold/ing) put/ing his hand/s in his pocket/s. +C and Sister Rabbit : is put/ing her hand/s by her side. +C and the man is stand/ing there with a whole bunch of balloon/s in his hand. +C (hm) the : (um) doctor rabbit is there. +C and Brother Rabbit is run/ing to the doctor. +C Doctor do you have any money (the) the (um) other rabbit is say/ing : to her. +C and the doctor is give/ing : the man : (fi) two five centses|cent[EW:cents]. +C and the man is hold/ing out his hand : and two balloon/s for : the kid/s. +C then : the : two rabbit/s have the balloon. +C and the : doctor is just smile/ing. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/764.slt b/data/ENNI_SALT/train/764.slt new file mode 100644 index 0000000000000000000000000000000000000000..46cefea2b474f2dc1a9a0747dfe2365595013217 --- /dev/null +++ b/data/ENNI_SALT/train/764.slt @@ -0,0 +1,87 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 5/03/1993 ++DOE: 1/30/2001 ++CA: 7;8;27 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 764=CHI ++Tape Location: Disk L24, Track 83 += [Bg:A1] +C (um) there was a horse and an elephant. +C : and they saw a ball in the water. +C [~_no] (um) : and the horse (ran) swam to it. +C and he gave it to the elephant. +C and the elephant was : happy. +C and : (the horse) [~_I_think_that_(i)s_a_bull_#_no] the horse : [~_I_(wi)ll_just_call_it_a_horse] was smile/ing. += [Eg:A1] += [Bg:A2] +C there was a horse and an elephant. +C and they saw water. +C and they were : there[?]. +C and they ran (fo) to the water. +C and the elephant ran fast. +C and the horse was right behind it. +C and the elephant trip/ed and hurted|hurt[EW:hurt] herself. +C and the : lifeguard elephant ran[-:] toward/s them. +C and : he check/ed if she was okay. +C and : he put a bandaid on[-:] her cut and sat her down on a bench. +C and she was on the bench smile/ing. += [Eg:A2] += [Bg:A3] +C there was a : horse with a plane and an elephant that was : happy. +C and the : horse (was : try/ing to mm) he was play/ing with the : plane. +C and the elephant was watch/ing. +C and the elephant grab/ed the plane and (sh) try/ed to play with it. +C and the elephant threw it. +C and it went in the water. +C and the horse was mad at the elephant. +C and a lifeguard came. +C and : (uh) he saw the plane in the water. +C and he try/ed to reach it. +C and : the horse start/ed to cry. +C and (the) : (a lady) a lady elephant came with a fish/ing net. +C and she : got it out for him. +C and she[-:] gave it to him. +C and he was happy. += [Eg:A3] += [Bg:B1] +C (um) : there was[EW:were] two bunny/s in a sandbox. +C and they built a sandcastle. +C and the one[!] : put lot/s of sand in a[-:] : pail. +C and he dump/ed it over the sandcastle. +C and he : scream/ed when the sandcastle broke. +C (and the other o) and : the other bunny was cry/ing. +C and the : other bunny was stand/ing up : (l) look/ing up. += [Eg:B1] += [Bg:B2] +C and they stop/ed for a picnic. +C and one was : hungry. +C and then he got full : and : then : dizzy. +C and the other one ran for help. +C and she pull/ed the lady[-:] : toward/s him. +C [~_oh] : that was a doctor. +C (uh) : and : she said he is dizzy I think. +=C I do not know [+_bch]. +C and[-:] he was okay. +C he was[!] okay. += [Eg:B2] += [Bg:B3] +C (um) there was[EW:were] two bunny/s pull/ing a wagon. +=C (and the : uh) and that is all [+_bch]. +C and : the boy bunny was go/ing to [~_gonna] to grab the balloon. +C and he untie/ed it. +C and the other : girl bunny was yell/ing. +C and he let it go. +C and he was try/ing to grab it. +C then the : other one was mad. +C and they saw : (another) a guy hold/ing balloon/s. +C and : the boy (bun) rabbit (ra) ran up to him and : told[EW:ask/ed] him if he could have a balloon. +C (and he had no) and : he had no money. +C and : they were sad. +C and : the other bunny saw : a lady stand/ing there. +C and he ask/ed her if she has|have[EW:had] enough to buy a : balloon. +C and : she did. +C and : they were happy. += [Eg:B3] diff --git a/data/ENNI_SALT/train/766.slt b/data/ENNI_SALT/train/766.slt new file mode 100644 index 0000000000000000000000000000000000000000..f2ab270310a1e7382f81cdb4a42706f9b9fff734 --- /dev/null +++ b/data/ENNI_SALT/train/766.slt @@ -0,0 +1,117 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 12/12/1992 ++DOE: 11/27/2000 ++CA: 7;11;15 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 766=CHI ++Tape Location: Disk M6 Track 16 += [Bg:A1] +C once upon a time there was an elephant and a : horse. +C the horse and the elephant : saw a ball in the pool. +C the horse jump/ed into the pool and swam to the ball. +C the horse got the ball. +C (and the elep) and the horse brought it to the elephant. +C and the elephant got the ball. +C the elephant was really happy and smile/ed. +C and the horse was all wet. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C once upon a time there was an elephant and a horse. +C the horse had a cloth with it. +C they were at a pool. +C and the elephant want/ed to jump into the pool where the diving board is. +C the elephant ran. +C (the horse) the horse ran after the elephant. +C the elephant scrape/ed her knee because she was run/ing. +C and there was no run/ing allow/ed. +C the lifeguard came. +C and the elephant was cry/ing. +C and the horse sat down : beside the elephant. +C the lifeguard got a bandaid and put the bandaid on : the elephant/z knee. +C and the elephant said it really really hurt. +C the elephant : sat down on the bench. +C and the lifeguard : took the[-:] elephant to the bench. +C the lifeguard said no run/ing. +C and the elephant : knew not to run. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C once upon a time there was an elephant and a horse. +C and the horse had an airplane to play with. +C the elephant want/ed to play with the airplane too. +C the horse was drive/ing it around and make/ing (a) airplane sound/s. +C and : the elephant really want/ed to play. +C the elephant grab/ed the airplane from the horse. +C and the horse said ah give me back my airplane. +C then the elephant drop/ed : the[-:] airplane into the water. +C and they could not get it. +C now the horse got really mad at the elephant. +C the lifeguard came. +C and it was in the middle of the pool. +C and they ask/ed if he could get it out. +C and the lifeguard said okay I will try and get it out for you. +C the lifeguard could not reach. +C (then) then the horse start/ed to cry. +C then a girl in a bathing suit : that was the elephant/z mom : had a net with her. +C and she got the (pl) airplane out of the water. +C and the horse was nice and happy again. +C the horse was really happy. +C he hug/ed the plane. +C so was the : elephant. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C once upon a time there was a dog and a rabbit. +C and they : were in a sandbox play/ing. +C (one) one day they start/ed to make : a sandcastle. +C the bunny put : a bucket of : sand on the sandcastle. +C and the sandcastle melt/ed. +C and they all start/ed to cry. +C the dog really cry/ed. +C but the bunny did not. +C (he was mad) he was sad though. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C once upon a time there was a dog and a bunny. +C (they were) they had basket/s. +C they were go/ing to go on a picnic. +C (they start/ed) the bunny start/ed to get real[!][EW:really] hungry. +C he dump/ed out all his food : while the dog was just take/ing his food out very carefully. +C the bunny ate all[!] his food. +C and he[!] was very (hungr) stuff/ed. +C the dog ate very slow : so she[!] would not get a stomachache. +C then the bunny felt seasick. +C and he was about to throw up. +C then the dog ran to : a doctor. +C then the doctor came with the dog (to) to the bunny. +C the (b) doctor took care of the bunny. +C bunny was feel/ing a little better. +C and the dog was happy again. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C the dog had a balloon and a (wa) wagon. +C the balloon was tie/ed to the wagon. +C then the bunny untie/ed the balloon off the wagon. +C then the balloon flew away. +C the dog was very[!] mad at the bunny. +C they saw some balloon/s. +C and the bunny ran to the balloon man. +C and he ask/ed could we have a balloon? +C but he had no money. +C the dog start/ed run/ing after him. +C the bunny felt sad. +C so did the dog. +C then the bunny ran to his mom : and ask/ed if they could have some money. +C so they ask/ed. +C and they ask/ed. +C and then she finally gave them some money. +C and they both bought : two balloon/s : for ten cent/s. +C so now they both had balloon/s. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/767.slt b/data/ENNI_SALT/train/767.slt new file mode 100644 index 0000000000000000000000000000000000000000..182cc0c53c99360cc839960cd3336329674fa002 --- /dev/null +++ b/data/ENNI_SALT/train/767.slt @@ -0,0 +1,109 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 10/26/1993 ++DOE: 5/02/2001 ++CA: 7;6;6 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 767=CHI ++Tape Location: Disk L28 Track 2 += [Bg:A1] +C they were say/ing hello. +C (uh) and the giraffe and the (gir) elephant are bounce/ing some ball/s. +C the ball fell into : a swamp. +C the giraffe went : into the water and got it. +C (and the gir) and the : elephant : (he said) he said thank you to the giraffe. +C (the um) : the elephant is : keep/ing the ball to hisself[EW:himself]. += [Eg:A1] += [Bg:A2] +C (he) the elephant and the giraffe are : in their bathing suit/s. +C and : they are ready to jump in the pool. +C the[-:] : elephant is go/ing to jump in the pool. +C then she slip/3s. +C she hurt/3s her knee. +C the lifeguard come/3s and see/3s what is wrong. +C the lifeguard put/3s a bandaid on it. +C it is all better. +C she sitted|sit[EW:sat] on the bench. += [Eg:A2] += [Bg:A3] +C (um) the giraffe and the elephant meets[EW:meet] again. +C and the giraffe has a toy. +C and I think the toy is a[EW:an]: airplane. +C and (the elephant) the elephant is go/ing wow! +C the elephant has it now. +C and she is drive/ing it around. +C now it is in the pool. +C and they can not get it. +C so the giraffe is mad at the (um : uh) : elephant (that he put it) that she threw it in the : pool [EU]. +C now they go and get the lifeguard. +C and : the lifeguard can not do anything about it. +C so[-:] the lifeguard think/3s and think/3s. +C but he can not do anything. +C so the lifeguard (s) (reach) reach/3s out his hand. +C but he can not still reach it. +C now he say/3s (he can/'t) I can not do anything. +C (someone come/3s up with a net : and they) : someone come/3s up with a net. +C and they go wow ! +C and the person with the net they[-:] stretch[EW:stretches] the net out. +C and then (uh) : she get/3s it. +C and she said here you go giraffe. +C here is your (pla) airplane. +C and[-:] the giraffe hug/ed his airplane. += [Eg:A3] += [Bg:B1] +C there is[EW:are] (a bunny and) : two bunny/s. +C and (they are) they are play/ing in the sandbox. +C (the uh) (the bun) the first bunny make/3s : a sandcastle. +C and : the second bunny is fill/ing up a bucket. +C and that second bunny is : pour/ing the sand on the sandcastle. +C (that) : then the sandcastle was wreck/ed. +C and : the first bunny : he was cry/ing. +C and he try/ed to fix it. +C but he could not. += [Eg:B1] += [Bg:B2] +C (the bunny meet/3s) (the) the first bunny meet/3s the second bunny. +C and they are walk/ing with : (a picnic) a picnic basket. +C and then they sit down. +C (and they are uh) the : first bunny is just munch/ing away : on (their f) his food. +C (and) and then he get/3s very very very[!] full. +C he start/3s burp/ing (and) and all that. +C and the other bunny is just : have/ing his juice box and sandwich. +C (then they meet) then they call the doctor. +C the doctor arrive/ed. +C doctor doctor : (he :) my friend ate too much. +C then they pull/ed the doctor over to the picnic. +C (and he said) and : the bunny was just lay/ing there. +C then the doctor sat down on the blanket. +C and : he said ah. +C then the second bunny open/ed his mouth. +C and : the doctor put the stick in his mouth. +C after the doctor was done he was all better. += [Eg:B2] += [Bg:B3] +C the first bunny was pull/ing (a basket) (the) the wagon with : a balloon on it. +C he meet/3s the second bunny. +C the second bunny look/3s up. +C he saw the balloon. +C he point/3s at it. +C (the se) the second bunny try/ed to untied[EW:untie] it. +C the second bunny untie/ed it. +C and they runned|run[EW:ran] for the balloon. +C now the first bunny is mad mad mad at the : second bunny. +C (the) there is a man sell/ing balloon/s. +C (they) they think : and think. +C maybe we have enough money to buy one. +C they check their pocket/s. +C (it) it said five cent/s a balloon. +C they did not have five cent/s. +C so : they : were mad. +C there was a man : stand/ing in the middle of the road. +C he will not give us a balloon. +C they cost five cent/s. +C and (we do not) we only have one cent. +C so the man buy/s two balloon/s : for the two : little children. +C the man say/3s there you go. +C are you happy? += [Eg:B3] diff --git a/data/ENNI_SALT/train/768.slt b/data/ENNI_SALT/train/768.slt new file mode 100644 index 0000000000000000000000000000000000000000..a8312368d5a2ec72c01fd02cafdf95d85d4363dc --- /dev/null +++ b/data/ENNI_SALT/train/768.slt @@ -0,0 +1,135 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 10/11/1993 ++DOE: 5/02/2001 ++CA: 7;6;21 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 768=CHI ++Tape Location: Disk L28 Track 12 += [Bg:A1] +C there is a giraffe and an elephant. +C they are play/ing by a pool. +C and so the elephant is sort of[:_sorta] tease/ing the giraffe. +C and so she is play/ing with the ball. +C and so she throw/3s the ball in the water. +C and the (gir) giraffe is try/ing to get it. +C (so) and it is in the deep end. +C and : (the um) the elephant is sort of[:_sorta] : like [~__gestures] she is cover/ing her eye/s. +C and so the giraffe : is get/ing the ball. +C but water is squirt/ing out of his ear/s. +C (and then) so : (um) the elephant got the ball. +C and the giraffe is still in the water. +C and so : the elephant hand/3s the ball to the giraffe. +C and then : the giraffe is all wet. +C and : now the elephant has the ball. +C and she is play/ing with it. += [Eg:A1] += [Bg:A2] +C there is the giraffe and elephant again. +C and so they want to[:_wanna] go swim/ing together. +C and then they saw a sign that says no run/ing. +C but the elephant is run/ing anyways into the pool. +C and so : the elephant slip/3s. +C and[-:] she fall/3s. +C and (then) now the giraffe is run/ing to save her. +C and then she got a bruise by the swimming pool. +C so the giraffe is still run/ing. +C and so the giraffe catch/3s up to her. +C and then the lifeguard come/3s. +C and so (um) she is cry/ing. +C and[-:] the lifeguard get/3s her a bandaid. +C and the giraffe is still by her. +C and then so the lifeguard is ask/ing her how did she fall. +C and then[-:] she is sort of surprise/ed that he ask/ed that question. +C and then the giraffe is[-:] still by her. +C and then she tell/3s him : what she was do/ing. +C and then : (um) the lifeguard say/3s look at the sign. +C it says no run/ing. += [Eg:A2] += [Bg:A3] +C (there is) there is the giraffe and the elephant again. +C and they are by the pool. +C (and then) so[-:] the giraffe got his plane. +C and so he is play/ing with it. +C and then (the) the elephant is get/ing dizzy because : the giraffe is do/ing loop/s with the plane. +C (and then) so the elephant like/3s it so much : (she) she just took it out of the giraffe/z hand. +C and she was play/ing with it. +C and (then it) then it slip/ed out of her finger/s. +C and it : went in the pool. +C and so now it is sink/ing. +C and : the giraffe is mad at her. +C and then she like [~_makes_sound_'ahhhhhh']. +C and (um) : the lifeguard come/3s again. +C and then : he look/3s in the pool. +C and he see/3s the plane. +C and then the elephant is try/ing to tell the lifeguard : I did not do it on purpose. +C I did not do it on purpose. +C (and then) so the lifeguard is reach/ing over the pool to try to get it. +C (and then) so[-:] the giraffe is really really really sad. +C and then the lifeguard did not reach it. +C and (the) the elephant is really sad that she did that. +C (and then) so[-:] (s) another elephant come/3s up with a net. +C and then (all of the three um) (the two elephant/s) the lifeguard the elephant and the giraffe : are surprise/ed that somebody knew that the plane was sink/ing and : that they got a net. +C and so : the elephant get/3s the plane out of the water. +C and the giraffe is really happy. +C and then so he get/3s to play with it again. +C and then he is really happy. +C so now : like she is being careful to play with the plane. += [Eg:A3] += [Bg:B1] +C (um) there is[EW:are]: two bunny/s (in) in the sandbox. +C and [~_well] one bunny come/3s along and ask/3s if he can play in the sandbox. +C and so : they are play/ing together. +C and they are build/ing a sandcastle. +C and so : one of the bunny/s pour/3s : some sand on the castle. +C and then it all melt/3s. +C (and then) so they start build/ing it again. += [Eg:B1] += [Bg:B2] +C (um) it is the same bunny and the other bunny again. +C and so they are go/ing on a picnic. +C and so one of the bunny/s are[EW:is] eat/ing everything up. +C and he is get/ing sick. +C (um) and so : then he feel/3s like he is really hot. +C and then the other bunny is still eat/ing. +C and so : the bunny is get/ing really dizzy. +C and he is really hot : and full. +C and then so : (um) one of the bunny/s find/*3s like a doctor. +C they call a doctor. +C so : a doctor come/3s. +C and so : (um) she see/3s him lie/ing in the sand. +C and then so the bunny is pull/ing : the doctor/z arm to come quicker. +C and then so : the doctor is like point/ing to something. +C and : the bunny sort of has to follow it. +C and so then the doctor sort of [~_sorta] become/3s friend/s with the patient. +C (and then) so they walk along the sidewalk. += [Eg:B2] += [Bg:B3] +C (um) it is the same bunny/s again [EU]. +C so one of the bunny/s have|have[EW:has] a wagon and a balloon attach/ed to it. +C and so[-:] the other bunny sort of [~_sorta] want/3s the balloon. +C (but) and the other bunny is sort of [~_sorta] shock/ed. +C like you can not have it. +C and so the bunny untie/3s the string : (te) so he can have it. +C and then the other bunny is sort of [~_sorta] mad. +C (and then) so (he um) the bunny who has the balloon : it slip/3s out of his finger/s. +C and then it go/3s up in the air. +C and they can not catch it. +C so it go/3s higher and higher. +C and the bunny get/3s madder and madder. +C and then so they see another : balloon guy that has some more balloon/s. +C and then so[-:] (um) they are get/ing a new balloon. +C and : the balloon/s are five cent/s. +C but the bunny do/3s not have five cent/s. +C so they will not get a balloon. +C and then both of them come up again. +C and : (they want a) they want a balloon even though they do not have five cent/s. +C and then they see the doctor. +C and so : one of the bunny/s are[EW:is] run/ing to see the doctor again. +C and then (so the) so the bunny ask/3s for some money to get a balloon. +C and then so : the doctor is give/ing him some money so they can have a balloon/s[EW:balloon]. +C and then so they are both happy[~!_laughing]. +C and they are play/ing with them. += [Eg:B3] diff --git a/data/ENNI_SALT/train/769.slt b/data/ENNI_SALT/train/769.slt new file mode 100644 index 0000000000000000000000000000000000000000..9e7fd18c0ef1cc4c38ed37017128a3dc9de0fa1d --- /dev/null +++ b/data/ENNI_SALT/train/769.slt @@ -0,0 +1,80 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 6/07/1993 ++DOE: 3/13/2001 ++CA: 7;9;6 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 769=CHI ++Tape Location: Disk M7 Track 94 += [Bg:A1] +C an elephant was play/ing with the ball at the swimming pool. +C and then : she drop/ed the ball into the pool. +C and then the horse went to get it. +C and he got it for her. +C and she was very happy. += [Eg:A1] += [Bg:A2] +C [~_oh_this_one_(i)s_a_little_hard] (hmmm) : elephant and : horse went to the swimming pool. +C and elephant want/ed to go on the diving board. +C so she ran there. +C and she slip/ed. +C and she hurt her knee. +C and : (uh) horse went to get the lifeguard. +C the lifeguard came : to see it she was all right [EU]. +C and the lifeguard put a bandaid on her knee. +C then she sat down for a little bit. +C and the lifeguard said : no run/ing in the swimming pool. += [Eg:A2] += [Bg:A3] +C elephant and : horse were at the swimming pool. +C (eleph) [~_I_mean] horse show/ed elephant : his airplane : that he brought. +C and then elephant just grab/ed it out of his hand/s. +C and then it fell in the water. +C and then horse was very mad. +C then the lifeguard came. +C and then : elephant said : the airplane fell in the water by accident. +C she drop/ed it by accident. +C and the lifeguard try/ed to reach it. +C but (his) his arm/s were too short. +C and then horse was cry/ing. +C and then this : other girl came with a net. +C and : she try/ed to get it out. +C and she got the airplane out. +C and then horse was very happy. +C and (he) he was glad he had his airplane. += [Eg:A3] += [Bg:B1] +C rabbit : and dog were play/ing in the sandbox. +C and rabbit made a very nice castle. +C and then rabbit dug up some sand and put it in his bucket : and dump/ed it all over the castle. +C and then : he was : (um : he) he did not mean to put the : sand on the : castle. +C and then dog was cry/ing. += [Eg:B1] += [Bg:B2] +C one day dog and rabbit went to have a picnic. +C rabbit was very[!] hungry. +C and he ate (all of : the stuff) all of the food. +C then he got a tummyache. +C and then : a doctor[!] came (and) down the road. +C and then dog came to get her. +C and dog pull/ed her and pull/ed her to come see rabbit. +C and the rabbit check/ed her and said that she had a tummyache. +C and then (she said) the doctor said : to rabbit go home and have a nice nap. += [Eg:B2] += [Bg:B3] +C one day dog had a balloon. +C and rabbit came : to see him. +C and then : rabbit show/ed : dog the balloon. +C and then the rabbit untie/ed it. +C then the balloon flew away. +C and then : dog was angry. +C and then they saw a man with balloon/s. +C and rabbit ask/ed could I have one of those balloon/s please? +C and the man said balloon/s are five cent/s. +C and rabbit said I do not have any money. +C and then (sh) rabbit saw the doctor : and ask/ed can you get me one of those balloon/s please? +C so[-:] she got some money out and : gave the man the money. +C and then : dog and[!] rabbit had a balloon [EU]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/770.slt b/data/ENNI_SALT/train/770.slt new file mode 100644 index 0000000000000000000000000000000000000000..f209ca773dd61eea8dd9054552019afb062c56b2 --- /dev/null +++ b/data/ENNI_SALT/train/770.slt @@ -0,0 +1,125 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 10/03/1993 ++DOE: 3/13/2001 ++CA: 7;5;10 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 770=CHI ++Tape Location: Disk M7 Track 104 += [Bg:A1] +C once upon a time there was (a) an elephant that was play/ing with her ball. +C and : it went into the water. +C and : so the : giraffe : said I will get it for you. +C so he swam and swam to get the ball. +C and then he got it for the elephant. +C and the elephant was happy. +C and she was (happy that) so happy that (she was) she was blush/ing. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C one day (an) the same elephant and the same zebra came to the pool again. +C and : the elephant want/ed to go in the pool. +C so she ran to the diving board. +C and she slip/ed : and fell : and got a scrape. +C so the zebra went to get a lifeguard. +C and the lifeguard gave her a bandage. +C and she was cry/ing and cry/ing. +C (so she) so as soon as the lifeguard put a bandaid on it : she felt better. +C and then she could not go in the water because : it will come off. +C and it will hurt again. +C so she just stay/ed. +C and she just wait/ed on : the bench. +C and the lifeguard said no run/ing. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C one day (the zebra) and the elephant came to the pool [~_I__mean] the giraffe. +C and then the giraffe flew the airplane. +C and : he try/ed to toward/s it : away from the pool [EU]. +E try/ed to what? +=C towards it [+_bch]. +C make it not go onto the side where the pool was. +C and the elephant just grab/ed it out of (the) his hand. +C and : he was sad. +C and the elephant was happy. +C and the elephant by accidentally: threw it into the water. +C and the : giraffe was mad because she by accidentally threw it in the water. +C but the lifeguard said it is okay. +C it will not get wreck/ed. +C (I) someone could get it. +C so : the elephant ask/ed the (i) lifeguard how to get it. +C and the lifeguard told her. +C and the lifeguard try/ed to get it. +C but he could not get it. +C it was too far. +C then (the) the giraffe was : sad. +C and the elephant was embarrass/ed. +C so : an elephant came along : and got something that would get : that toy out of the water. +C and then : it would come out. +C and she got it. +C and : she try/ed : to keep it in the net. +C but it went into the net. +C and she got it out. +C and the giraffe was happy, so happy (he was) his face went red. +C and : the elephant was happy too. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C one day : a little doggie : found a friend that was a rabbit. +C and he built a castle. +C and : the rabbit said could I help? +C and the doggie said yes. +C (and the) and the rabbit built a castle. +C and it turn/ed out to be bigger. +C (and) : and the doggie was so happy that : he : was almost go/ing to [~_gonna] cry. +C but then it fell over. +C and then the doggie cry/ed. += [Eg:B1] += [Bg:B2] +C one day the doggie and the rabbit met up together. +C and they were go/ing to [~_gonna] have a picnic. +C and then rabbit took : a lot/s of thing/s. +C and the doggie did not. +C so the doggie just ate a sandwich and a juice. +C and then the rabbit was too full to play. +C and then (the doggie was) [~_I_mean] the rabbit was so full he felt like he was go/ing to [~_gonna] puke. +C so then he ran to the doctor. +C and : the doctor said let me see him. +C and : the doggie pull/ed the doctor so quick that the doctor could not even walk. +C and the doctor was : look/ing at the rabbit. +C and the rabbit was sick. +C and it had a high fever. +C and then (the) : she made him feel all better. +C and the doggie was still at the picnic. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C (once) one day the doggie was go/ing for a birthday party. +C and the rabbit came and said hey could I come? +C and (the ra) the rabbit grab/ed the balloon so (he) he could go in the wagon. +C but : it came off. +C so he tie/ed it back on. +C but then the knot was too loose. +C it flew away. +C (but) and the doggie was really really mad and did not even go to the party. +C but a rabbit sold lot/s of balloon/s that were the exact same. +C and the rabbit was really happy. +C and it got one for the doggie. +C and (the) the (um) rabbit said yes you could have one. +C and : he said thank you. +C but it costed|cost[EW:cost] five dollar/s. +C and the rabbit did not have any money at all. +C so : he did not give (an) neither one of them any balloon[EW:balloons]. +C but there was (um : um) a doctor. +C (and :) and the rabbit went to the doctor. +C and the doctor was just look/ing at something else. +C and it did not even know that there was[EW:were] balloon/s over there. +C and then the rabbit told the rabbit that : the doctor could : ask for five dollar/s to get a balloon. +C and : the rabbit said yes you could have five dollar/s for the balloon. +C and the rabbit was happy to give each of them one. +C so they both got one. +C and they were really happy. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/771.slt b/data/ENNI_SALT/train/771.slt new file mode 100644 index 0000000000000000000000000000000000000000..d1a28533b2858d726b2249833424ad28ba16fe65 --- /dev/null +++ b/data/ENNI_SALT/train/771.slt @@ -0,0 +1,77 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 11/09/1993 ++DOE: 3/13/2001 ++CA: 7;4;4 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 771=CHI ++Tape Location: Disk M8, Track 2 += [Bg:A1] +C two elephant/s want/ed to play ball. +C and the ball accidentally went : in the water. +C and the zebra jump/ed in and : was swim/ing to the ball. +C and they got the ball out. +C (an) : and (uh) : they could play again. +C (and they s) and they start/ed play/ing. += [Eg:A1] += [Bg:A2] +C (the) : the two kid/s want/ed to play : tag. +C they were run/ing. +C they were run/ing : and run/ing. +C the girl[-:] (um : um :) sweeped|sweep[EW:swept] off (um) her feet (with the) when the water splash/ed up. +C and she hurt her knee. +C (and everybody wa) and a : lifeguard was come/ing over. +C and they put a bandaid on her. +C (and she) : and she went : to (um the) the bench. +C and the lifeguard said stay there for awhile. += [Eg:A2] += [Bg:A3] +C the two kid/s had an (airplane) : (a tor) a toy airplane. +C and they were play/ing with it. +C and the elephant took it. +C and she drop/ed it into the water. +C and the : giraffe was mad at her. +C and the life (gyar) guard came over. +C and : the girl explain/ed to[-:] (uh) the lifeguard what happen/ed. +C and the lifeguard : try/ed to : get the plane : back. +C but he could not. +C (an) : and so : (the) : another lifeguard came. +C and she : grab/ed it with a net. +C and she gave it back to the giraffe. +C and they were happy again. += [Eg:A3] += [Bg:B1] +C [~_okay] : (uh : the two ki) the two bunny/s were make/ing a sandcastle. +C and : they got a sand bucket. +C (and they) : and the bunny dump/ed the sand on top of the castle. +C (and the s) : and it accidentally (um) : broke (it) the sandcastle. +C and they try/ed to fix it. += [Eg:B1] += [Bg:B2] +C the two bunny/s were[-:] go/ing for a picnic. +C when they got there they (b) got out everything. +C and : (the) : the boy bunny ate everything. +C (and he was ver) and he was full. +C and the doctor came by. +C and the : girl (um) : ask/ed the (do) doctor if he could help the bunny. +C (s) and[-:] the doctor went with her. +C and the doctor : was check/ing him. +C and[-:] he said that (sh) you should be all right. += [Eg:B2] += [Bg:B3] +C the two bunny/s were (um) push/ing a cart (wheel/ing) wheeler. +C and there was a balloon on it. +C they try/ed to untie the balloon. +C and the balloon went up. +C and the girl was mad. +C and there were other balloon/s (o) over (wi) with the other bunnny. +C and the[-:] boy : want/ed a balloon. +C : he wanted five balloon/s. +C but he could not get any. +C so the doctor came. +C (um : the kid : um was) : the bunny was point/ing to the : balloon man. +C and the doctor paid him : cash. +C and they both[!] got a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/773.slt b/data/ENNI_SALT/train/773.slt new file mode 100644 index 0000000000000000000000000000000000000000..ecf9fdcfbc16d08a14b84066180ee013bb8b37cd --- /dev/null +++ b/data/ENNI_SALT/train/773.slt @@ -0,0 +1,78 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 9/22/1993 ++DOE: 3/13/2001 ++CA: 7;5;19 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 773=CHI ++Tape Location: Disk M8, Track 30 += [Bg:A1] +C one day there was an elephant and a giraffe. +C the elephant was bounce/ing (uh) a ball. +C the ball[-:] fell in the water[-:]. +C and the giraffe jump/ed in the water and (got) swam to the ball. +C he got the ball and gave it to the elephant. +C the elephant[-:] : said thank you. += [Eg:A1] += [Bg:A2] +C the : elephant and the (g) giraffe were look/ing in the water[-:]. +C the elephant was going to go off : the (um) : board[-:]. +C the elephant slip/ed[-:] : and fell. +C she hurt her knee. +C the elephant start/ed to cry. +C so the lifeguard came and put a bandaid on it. +C the lifeguard[-:] telled|tell[EW:told] her to sit on the bench. +C (she : t) the lifeguard told the elephant : (to) not to run. += [Eg:A2] += [Bg:A3] +C one day there was an elephant and a giraffe. +C the giraffe had an airplane. +C he was : play/ing with it[-:]. +C the elephant took it away from him. +C and the elephant drop/ed it in the water[!]. +C the[-:] giraffe got very mad at the elephant. +C and : the lifeguard came[-:] (to try to get) and look/ed at the airplane. +C the elephant : was tell/ing the lifeguard about the airplane. +C the lifeguard try/ed to get the airplane. +C but the lifeguard could not get it. +C so (a uh) a girl other elephant came with a net : and got the airplane out. +C and the giraffe was very happy. +C (and the elephant and the giraffe) : the giraffe hug/ed the (hair) airplane[-:]. += [Eg:A3] += [Bg:B1] +C one day there was a bunny : and another bunny. +C they[-:] built a sandcastle. +C (they) the boy bunny put the big bucket of sand on the sandcastle. +C and the sandcastle broke. +C and the girl[-:] : bunny start/ed to cry. += [Eg:B1] += [Bg:B2] +C the : boy[-:] bunny and the girl bunny went for a picnic. +C they[-:] found a spot near the tree/s. +C the boy bunny ate all the food. +C and he got sick. +C so : (uh) the girl bunny went to get a doctor bunny. +C the girl bunny pull/ed the doctor bunny to the boy bunny. +C the doctor bunny told : the boy bunny : not to eat : lot/s of food. +C the (r uh) doctor bunny took the boy bunny : with her. += [Eg:B2] += [Bg:B3] +C one day there was the girl bunny. +C she had a wagon with a balloon on it. +C the boy bunny : look/ed at the balloon. +C and (h) the boy bunny took the balloon off. +C and it (f) the balloon flew in the air. +C the girl bunny was mad at the boy bunny. +C there[-:] was a man hold/ing : balloon/s. +C and the : boy bunny went to buy one. +C he ask/ed for a balloon. +C but he could not buy the balloon/s because they were five cent/s. +C and he did not have any money. +C the girl[-:] : bunny and the boy bunny were very sad. +C (um) a : other bunny : was walk/ing down the path. +C and the boy bunny ask|ask[EW:asked] if the girl had any money to buy a balloon. +C and the girl[-:] (b) : bunny gave : (the um) : the person with the balloon/s : the money (so that tho) so that the bunny/s could have (the) two balloon/s. +C the boy[-:] bunny and the girl bunny were very happy. += [Eg:B3] diff --git a/data/ENNI_SALT/train/774.slt b/data/ENNI_SALT/train/774.slt new file mode 100644 index 0000000000000000000000000000000000000000..1f6ca3eac569f6d8fa7cebe70b58b2f2d45618b0 --- /dev/null +++ b/data/ENNI_SALT/train/774.slt @@ -0,0 +1,109 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 10/15/1993 ++DOE: 5/03/2001 ++CA: 7;6;18 ++Gender: F ++Context: Nar ++Group of CHI: SLI ++ID: 774=CHI ++Tape Location: Disk M9, Track 34 += [Bg:A1] +C the elephant was bounce/ing the ball. +C and the zebra was watch/ing. +C (the ele) the elephant : got the ball : into the water[-:]. +C and then the (z) elephant was so sad. +C and the zebra : was try/ing to get the ball. +C the[-:] zebra got her ball. +C then : the zebra : gave her her ball. +C and then : the elephant was so happy. +C and the : zebra was happy. += [Eg:A1] += [Bg:A2] +C the[-:] elephant : want/ed to : go into the water. +C but it was so[!] deep. +C and then she ran[-:]. +C and then she slip/ed. +C and then she got a cut. +C and the : zebra was so[!] : sad. +C and the : elephant was really[!] sad. +C and then the elephant cry/ed. +C and then the lifeguard : went : to her. +C and then : the lifeguard put a bandaid on : the elephant. +C and then she just sit|sit[EW:sat] down on the bench. +C and then it was start/ing to hurt. +C she was so[-:] : silly. += [Eg:A2] += [Bg:A3] +C the zebra[-:] : was happy with his airplane in his hand/s. +C and the elephant was happy too. +C and then the[-:] : elephant (was) : was : (um) : kind of : sad. +C and[-:] the zebra was play/ing with his airplane. +C and then the zebra was sad because the : elephant took : his airplane away. +C and she was happy. +C and then it (f) : went into the water. +C it was go/ing to sink. +C and the zebra : was so mad. +C and the lifeguard : was : sad. +C and the : elephant was sad. +C and the zebra was sad because it was sink/ing. +C and then he could not get his : airplane. +C the lifeguard was try/ing to get : (it/z airplane) his airplane. +C but she was so sad. +C and the zebra was cry/ing. +C and then : someone got a net. +C (and got) (and) : and she : put it in the water and got it. +C and then : she gave : the airplane to the zebra. +C and then he was so[!] happy again. +C and the : elephant was so happy again too. += [Eg:A3] += [Bg:B1] +C (um) : the : both kid/s[-:] are make/ing a sandcastle : with sand. +C and then[-:] : the rabbit : and the dog [EU]. +C the dog was make/ing the sandcastle. +C and the rabbit was put/ing sand into a bucket[!]. +C and then[-:] : the rabbit[-:] pour/ed it onto the sandcastle. +C and the dog (fel) felt (um) : cross/ed[EW:cross] : with the dog. +C and then[-:] : the dog : almost smile|smile[EW:smiled]. +C and the : rabbit was scare/ed. +C and then the dog cry/ed. +C and then : the dog said (um) : sorry! +C you have to build it : again! += [Eg:B1] += [Bg:B2] +C the dog and rabbit : saw each other : on a[-:] path. +C (and they s) (and the) and they want to have a picnic. +C and so[-:] the rabbit want|want[EW:wants] to eat : everything in : (it) his basket [~_pronounced_/baesIk/]. +C (and) and the dog did not. +C and he took one thing at a time. +C and then the rabbit was full. +C and then : he did not want to eat nothing[EW:anything] else : because he was full. +C and then the dog[-:] : ran to the : doctor : (and) : and grab/ed her (to the little) : (to) : (to) to the : blanket. +C and then the doctor was : check/ing the rabbit. +C and then[-:] the doctor took him home : without the basket. += [Eg:B2] += [Bg:B3] +C the dog[-:] had a wagon with a balloon on it. +C the rabbit want|want[EW:wanted] to have it. +C and the dog : (um) : did not hold (onto the) : (on the) : on[-:] it. +C and the rabbit took it off. +C and : he was so happy. +C and then he[-:] : tie/ed off of it. +C and he let goed[EW:go] of it. +C and the dog was sad. +C and then[-:] : the rabbit was : sad. +C and the dog was mad[-:][!]. +C and then the dog[-:] was (re) so mad of the rabbit [EU]. +C (and : he wa) and the rabbit was happy (to) (saw) he saw : balloon/s. +C and the rabbit want/ed a balloon (from the : rabbit) from the big rabbit. +C and then : the rabbit did not have any money. +C and then : (he could not get any of ba) (not a balloon) he can not get a balloon. +C and then they were both sad. +C (and then : he were) (and he was) and the rabbit was happy. +C and then the dog stay/ed by the rabbit. +C and the rabbit went over to the doctor. +C and the rabbit said to the doctor : (um) : he want/ed a balloon. +C and[-:] : the doctor gave some money : to the : rabbit. +C and then the : rabbit : (um) : give|give[EW:gave] the balloon/s to the : rabbit and the dog. +C and then they both each got a balloon from the : rabbit because the : doctor : had some money[-:]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/777.slt b/data/ENNI_SALT/train/777.slt new file mode 100644 index 0000000000000000000000000000000000000000..db7645e708787677801459a97a2802e81c33186e --- /dev/null +++ b/data/ENNI_SALT/train/777.slt @@ -0,0 +1,75 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 12/31/1993 ++DOE: 5/23/2001 ++CA: 7;4;22 ++Gender: F ++Context: Nar ++Group of CHI: SLI ++ID: 777=CHI ++Tape Location: Disk M11, Track 53 += [Bg:A1] +C the elephant : and giraffe are play/ing ball. +C the ball went in the water. +C the giraffe went and get it [EU]. +C the giraffe gave the ball to the elephant. +C the elephant said thank you. += [Eg:A1] += [Bg:A2] +C (um) : they were look/ing in the water. +C they saw the diving board. +C she was run/ing. +C then she hurt her knee. +C there was : a lifeguard : (h) help/ing. +C (she gave) the lifeguard gave him a bandaid. +C (he) the[-:] lifeguard : elephant : were[EW:was] sit/ing in the bench [EU]. +C and[-:] the lifeguard say/3s no run/ing. += [Eg:A2] += [Bg:A3] +C the giraffe had a[EW:an] airplane[-:]. +C the giraffe was try/ing to fly it. +C the elephant want/ed to fly it too. +C (the el) (the[-:]) : the airplane went in the water. +C (they didnt) they do not know how to get it out. +C (they) : they call/ed the lifeguard to get it. +C the lifeguard : did not took|take[EW:take] it. +C the lifeguard try/ed to get it. +C but : it was (f) too far. +C the lifeguard did not know how to get it back. +C (the) (there come) the girl had a net to get the airplane. +C she got the airplane. +C she gave it back to the giraffe. +C the giraffe was happy that he had his airplane back. += [Eg:A3] += [Bg:B1] +C the dog and the rabbit were make/ing a (k) sandcastle. +C the[-:] : rabbit was put/ing some more sand [EU]. +C (he put) he dump/ed the sand on the sandcastle. +C and the sandcastle broke down. +C (then the rabbit) : then : the dog was sad. += [Eg:B1] += [Bg:B2] +C the dog and the rabbit went for a picnic. +C the rabbit ate too much. +C he got[EW:was] full. +C he got a tummyache. +C the dog : ask/ed [~_pronounced_"axed"] the doctor : to help the rabbit. +C and the rabbit say/3s do not eat too much food. +C and then the doctor took the : rabbit home. += [Eg:B2] += [Bg:B3] +C the dog had a wagon : with a balloon. +C the rabbit like/ed the balloon. +C he untie/ed the balloon. +C it flewed|fly[EW:flew] away. +C the dog got angry. +C they[-:] ask/ed [~_pronounced_"axed"] the balloon man. +C the rabbit ask/ed [~_pronounced_"axed"] for another balloon. +C it was five cent/s. +C but he did not have any five cent/s [EU]. +C (they) : they were sad that they do not have a balloon. +C they ask/ed [~_pronounced_"axed"] the doctor : to (have) : give some five cent/s [EU]. +C the rabbit ask/ed [~_pronounced_"axed"] (the ra) the : doctor : can we have a balloon? +C (she) the doctor gave (the[-:]) : the balloon man five cent/s. +C they were happy. += [Eg:B3] diff --git a/data/ENNI_SALT/train/801.slt b/data/ENNI_SALT/train/801.slt new file mode 100644 index 0000000000000000000000000000000000000000..5f6fcb6f3147ecf7ca90738e0a3faa9348e08b3c --- /dev/null +++ b/data/ENNI_SALT/train/801.slt @@ -0,0 +1,79 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 5/29/1991 ++DOE: 4/18/2000 ++CA: 8;10;20 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 801=CHI ++Tape Location: Disk L5 Track 31 += [Bg:A1] +C Me and my friend were play/ing : ball. +C [~_laughs] then the ball fell into (the lake or) a swimming pool. +C so I jump/ed in to go and get it. +C and I brang|bring[EW:brought] it back to my friend. +C (hm) (um) : and then she thought I was brave or something [~_laughs]. += [Eg:A1] += [Bg:A2] +C Me and my friend were go/ing to : swim. +C my friend told me she was go/ing to go on the dive/ing board. +C but she start/ed run/ing and slip/ed : and hurt her knee. +C then I went over to see if she was okay. +C and the lifeguard came. +C then the lifeguard put a bandaid on it. +C and then she took a break. +C and then the lifeguard got mad at her for run/ing. += [Eg:A2] += [Bg:A3] +C Me and my friend were go/ing to play with my new airplane. +C and I was : fly/ing it around and make/ing funny noise/s [~_laughs]. +C and then she took it away and start/ed play/ing with it. +C and then it fell into the pool. +C and I got really mad at her. +C and the lifeguard came. +C then my friend ask/ed : if the lifeguard could get the plane out. +C he was try/ing to reach it. +C but the water was push/ing it away. +C and the lifeguard said I can not get it. +C and then : her mom came with a net : and took the airplane out. +C and I said a big thank you [~_laughs]. +C and I was really really happy [~_laughs]. += [Eg:A3] += [Bg:B1] +C my friend and I were play/ing at the park : make/ing a sandcastle. +C we were just make/ing just a few little minor[-:] touch/s [~_laughs]. +C then I dump/ed *a huge pail of sand on it [EU]. +C and I broke it [~_laughs]. +C and I was feel/ing really bad : while my friend was make/ing a huge other one. += [Eg:B1] += [Bg:B2] +C (Me and my friend) my friend and I : were go/ing : on a picnic. +C we were eat/ing and eat/ing. +C or I was eat/ing and eat/ing [~_laughs]. +C until I got really really stuff/ed. +C and then she start/ed eat/ing just really slow. +C and I got dizzy and sick. +C then my friend went to go get a doctor. +C and she was pull/ing and pull/ing over to the (puh) picnic : thing. +C the doctor was check/ing me out. +C and then : I think she was take/ing : me over : to walk slowly and : take out some of my lunch. += [Eg:B2] += [Bg:B3] +C (um) my friend was : (um) (carry/ing) pull/ing a : wagon with a balloon on it. +C and I came. +C and I said nice balloon [~_laughs]. +C and I was try/ing to take it off. +C then it float/ed up into the air. +C and we could not reach it. +C my friend got really really mad at me. +C then we saw a guy with (a) lot/s of balloon/s. +C (so I) and I went over to see if I could get a balloon. +C and I did not have any money [~_laughs]. +C (um[-:]) then I think we were just beg/ing for one. +C then the doctor came back. +C and we ask/ed if : we could borrow five dollar/s. +C and he said okay. +C and we got : a balloon each. +C and we said thank you. += [Eg:B3] diff --git a/data/ENNI_SALT/train/802.slt b/data/ENNI_SALT/train/802.slt new file mode 100644 index 0000000000000000000000000000000000000000..07dd36a594f4e324cc9a5bbab14548d71d77d642 --- /dev/null +++ b/data/ENNI_SALT/train/802.slt @@ -0,0 +1,114 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 12/16/1991 ++DOE: 3/7/2000 ++CA: 8;2;20 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 802=CHI ++Tape Location: Disk M2 Track 2 += [Bg:A1] +C (the[-:] um) : the elephant is : bounce/ing a ball[-:]. +C and the giraffe is (say/ing) [~_I_do_n(o)t_know_like] say/ing wow or something. +E say/ing what? +=C say/ing wow [+_bch]. +C and then (um) the elephant : is bounce/ing the ball still. +C and it fall/3s into the water. +C and then : the[-:] giraffe[-:] look/3s a little surprise/ed. +C : and then : the horse jump/3s into the pool and swim/3s to go get it. +C and then the elephant is go/ing like this [~_child_holding_hands__up_to_her_face]. +C and then she get/3s a ball. +C and the : giraffe is a little surprise/ed. +C : and now (sh) the elephant is really proud that she has her ball back. +E is really what? +=C proud that she has the ball back [+_bch]. += [Eg:A1] += [Bg:A2] +C (um) the[-:] elephant and the giraffe are go/ing swim/ing. +C and then[-:] (the gir) the (um) elephant is run/ing. +C : and the giraffe is just stand/ing there hold/ing the[-:] towel. +C : and the elephant is run/ing : over to (this side) that side. +C and then : the giraffe is run/ing after her. +C : and then the elephant : fall/3s : and hurt/3s her knee. +C : and then she is[-:] still cry/ing and hold/ing her knee. +C and the giraffe is stand/ing by her. +E sorry? +=C and the giraffe is stand/ing by her [+_bch]. +C and then her dad is run/ing : to her. +C and then her dad is fix/ing it up. +C and then (sh) she is sit/ing on the thing hold/ing her knee : still : and sit/ing on the bench. +C and then (sh um) she is (sup) like grin/ing. += [Eg:A2] += [Bg:A3] +C the elephant is[-:] say/ing wow : to the giraffe (hold/ing the : um) hold/ing the plane. +C : and then he is[-:] zoom/ing it up in twirl/s and stuff like that. +C and she is just surprise/ed, the elephant. +C and then (uh) the elephant take/3s it away from the giraffe : grab/3s it : and start/3s play/ing with it. +C and then she drop/3s it in the pool. +C and : I think the giraffe is a little mad. +C : and[-:] then : the giraffe is mad. +C and (she is) she is scare/ed. +C and then her dad come/3s. +C : and[-:] (um) her dad is go/ing like this [~_child_has_hands_on__hips]. +C and (she is just : really) she is not happy. +C like she is mad. +E she has her hand/s on her hip/s, oh right. +C and then she is explain/ing what happen/ed : to her dad. +C and the giraffe is still a little mad. +C and then : her dad is : (getting) try/ing to get it. +C but he can not. +C : and (then um) then giraffe is cry/ing. +C : and then her mom come/3s and has a net in her hand/s and : is go/ing to[:_gonna] get it. +C and then she get/3s it. +C : then she is hold/ing (the : um) the : (um :) plane. +C : and then : the giraffe is : happy to get his plane back. += [Eg:A3] += [Bg:B1] +C (um) the rabbit : and : I will say : the dog are play/ing and make/ing a sandcastle : in the sandbox. +C : and then : the rabbit is[-:] play/ing with a bucket. +C and : the dog : is (fix/ing his like) touch/ing his castle. +C then[-:] the bunny rabbit come/3s and dump/3s sand on (the) his castle. +C and the dog is surprise/ed. +C and the : rabbit is happy. +C : and then the castle is : broken. +C he is sort of sad. +C and then the rabbit is a little surprise/ed. +C : and then the dog is cry/ing (cause his castle). +C and the rabbit is : think/ing : should he did it or should he not do it [EU]. += [Eg:B1] += [Bg:B2] +C they are go/ing on a picnic : the dog and the rabbit. +C and : the rabbit is eat/ing so much because he gots|get[EW:got] it all out. +C and the dog is just get/ing his stuff out. +C and then (he had) he is stuff/ed. +C and he is about to fall over. +C then he fall/3s over. +C and the dog is run/ing to the doctor. +=C (and then the doctor) [~_requests_page_turn] [+_bch]. +C (and then) and then (um) the dog pull/3s the doctor over to the rabbit. +C and then the rabbit : is talk/ing to the bunny ask/ing if he feel/3s all right. +C and then : the rabbit go/3s home : with his mom. += [Eg:B2] += [Bg:B3] +C (um the[-:] ) the dog is : go/ing. +C and the balloon is hang/ing off of the[-:] : wagon. +C and then the rabbit come/3s along. +C then the bunny show/3s that the balloon is there. +C and the dog is : stand/ing by there (lo) listen/ing. +C (and then[-:] the rabbit) and then the rabbit come/3s and take/3s it off. +C and then the rabbit let/3s go of it. +C and then it is way up in the sky. +C and the dog is really mad. +C and the rabbit is surprise/ed. +C : and then : he see/3s that there is[EW:are] more balloon/s. +=C (and then he go/3s over to the) [~_I_mean_that's_the_other_page] [+_bch]. +C and then he ask/3s for the[-:] balloon. +C and then he check/3s in his pocket/s if there is (um) any money [EU]. +C and there is not. +C and then he is[-:] stand/ing there. +C and then he run/3s over to his mom. +C and then the rabbit ask/3s if he can have a balloon. +C and then : she give/3s him (five cent/s) : ten cent/s [~_I_mean]. +C and then they both got a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/804.slt b/data/ENNI_SALT/train/804.slt new file mode 100644 index 0000000000000000000000000000000000000000..c4f549ac27f68b36b4cc8bc3904b263560bc1298 --- /dev/null +++ b/data/ENNI_SALT/train/804.slt @@ -0,0 +1,132 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 7/3/1991 ++DOE: 3/7/2000 ++CA: 8;8;4 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 804=CHI ++Tape Location: Disk M2 Track 12 += [Bg:A1] +C once upon a time (gi) Giraffe and Elephant were play/ing ball close to a swim/ing pool. +C they had lot/s of fun : until[!] the ball drop/ed into (the) the swim/ing pool. +C they said ooww someone get it! +C : Giraffe swam and try/ed to get it. +C : Giraffe (got it) got it for Elephant. +C but he was wet[!]. +C : Giraffe : put his hand/s behind his back. +C (and) (and) and Elephant said thank you. += [Eg:A1] += [Bg:A2] +C Elephant and Giraffe want/ed to swim in the swimming pool. +C there was a sign stat/ing no run/ing. +C but they did not (li) listen. +C : (elephant and gir) Elephant decide/ed to run (along) along (the) the swimming pool. +C (she is) (she) (she is gonna s) she start/ed to slip. +C : then she hurt her feet. +C (she is cry) she was cry/ing. +C : the lifeguard then came to see what was happen/ing. +C : the lifeguard check/ed her knee. +C but she still cry/ed. +C : the lifeguard put her on the bench. +C and she put a bandage on (her) (her) her knee. +C : and the lifeguard said no run/ing[!] [~_child_points_to_sign_in__picture] : next time okay? += [Eg:A2] += [Bg:A3] ++COMMENT: child gestureed a lot with his hands during this one and used a lot of emphasis; very expressive intonation +C (gi) Giraffe and Elephant (were) were go/ing *to play with giraffe[EW:giraffe/z] airplane (in the sw) close to the swimming pool. +C : giraffe : flew his airplane. +C : (then) then elephant snatch/ed[!] it and said I want my turn! +C : then she threw[!] it : but *it land/ed in the swimming pool [EU]. +C giraffe was mad[!]! +C (he) he look/ed (at) at giraffe madly. +C : then the lifeguard came. +C he said what happen/ed? +C (he said) giraffe said : elephant : threw (my) (my) my airplane into the swimming pool. +C : lifeguard said I think I will try to reach it. +C he said okay. +C : the lifeguard try/ed to reach it. +C : but he could not! +C (then uh hm) (then) then giraffe (s) kept on cry/ing. +C : then : a woman in : a swimming suit got a net (and) and (caught) was go/ing to[:_gonna] get it out. +C : and she got it. +C : giraffe said thank you to the woman (that) (that) that (get) got (her) his airplane out. +C : he hug/ed his airplane and said (not) let us not play close to the swimming pool any more. += [Eg:A3] += [Bg:B1] +C once upon a time there is : a dog and a (cat uh) rabbit. +C (they) (they want/ed) they were go/ing to[:_gonna] play together in the sandbox. +C they were go/ing to[:_gonna] make a sandcastle. +C rabbit got the sand. +C and dog put the sand (on the) (on) on the sandbox to make the castle. +C then rabbit dump/ed (the) the sand on top of the sandcastle. +C then it collapse/ed! +C he was sad. +C he was shock/ed! +C (they) dog began to cry. +C but he said oh : we will build another one. += [Eg:B1] += [Bg:B2] +C once upon the time dog and rabbit were go/ing to[:_gonna] have a picnic. +C they were go/ing to[:_gonna] (go somewhere) go to a good spot to have a picnic. +C and they chose (the good one) a good one. +C (they) (r) (ca) (r) rabbit and dog ate (the) (the) their food. +C (but) but rabbit said yuck this is yucky! +C rabbit : soon became sick. +C he ate too much food. +C he said dog I need to go see (a dentist) a doctor. +C I still[!] have it! +C call the doctor! +C I am really get/ing sick. +C after : the doctor came. +C (he said) (he) (the dog) the dog said to the rabbit come here. +C (my fra) my friend rabbit is sick! +C : then[~!_laughing] the : dog help/ed by pull/ing her until she was in the sandbox. +C she said hey why are you pull/ing me? +C I know what to do! +C : (ra) (r) (the) the doctor look/ed (at) at (doc) rabbit. +C (he look/3s) (he) he check/ed his tongue. +C (he said) (he sa) he said stick out your tongue! +C he said [~_makes_sound_'aah']. +C he said okay. +=C turn the page [+_bch]. +=C (then) Did you miss anything [+_bch]? +E no. +C (the) (the) (the) the doctor told the rabbit to (go to his) (his : office to see if he was all) go to his office (to see) (to see him if he wa) to check his mouth again. +C dog was happy. += [Eg:B2] += [Bg:B3] +=C can I always start with once upon a time if I want to [+_bch]? +E sure. +C once upon a time dog and (cat) (rabbit) : [~_okay_I_I_mean] : dog and rabbit had a wagon. +C (they w) they had a balloon too. +C they both want/ed the balloon. +C both of them said I want that. +C but both of them did not agree. +C they both want/ed them still. +C rabbit tie/ed it to the wagon (so) so dog cannot get it. +C he was say aah I want that! +C then the balloon flew away. +C dog was angry! +C he want/ed to hit rabbit. +C then they saw (a) (a) a man carry/ing balloon/s. +C it costed|cost[EW:cost] five cent/s. +C he said can I have one please? +C he said only if you have five cent/s. +C and (he) rabbit pull/ed his pocket. +C it was empty! +C (uh) but (the dog) (the) (the) the guy who : had the balloon/s said no you can not have them! +C only if you have five cent/s. +C rabbit want/ed to ask : his mom. +C and (she) he went. +C and he saw her. +C so he went to tell her that : they want/ed balloon/s. +C (the mom : paid) the (mom s) mom said okay. +C are you sure you want them? +C he said okay. +C : the mom gave (the) the guy (two n) two nickel/s so (the) (the two guys) the two boy/s can have them. +C (dog) (ca) (ha) rabbit and dog were very happy. +C and they said thank you to : rabbit/z mom. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/805.slt b/data/ENNI_SALT/train/805.slt new file mode 100644 index 0000000000000000000000000000000000000000..e1e606ecdc2b4a86706465068b701218097a0c7a --- /dev/null +++ b/data/ENNI_SALT/train/805.slt @@ -0,0 +1,138 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 5/05/1991 ++DOE: 4/18/2000 ++CA: 8;11;10 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 805=CHI ++Tape Location: Disk L6 Track 9 += [Bg:A1] +C There was once an elephant and *a giraffe [EU]. +C they are play/ing with a ball and see who could bounce the ball the fastest [EU]. +C and all of sudden the ball bounce/ed into a pool. +C and the giraffe did not have a swimming suit on. +C but the elephant did. +C and she said I would go get it for you. +C and (sh) the giraffe said thank you. +C so the giraffe jump/ed off in the pool instead of the elephant and went to go get the ball. +C but he was just about there. +C the giraffe gave the ball to the elephant. +C and the elephant said you are a real neat swimmer. +C (and the) and then when the giraffe got out he was all soak/ing wet. +C and so was the elephant. +C (and um :) (and : um) and they fell in love. += [Eg:A1] += [Bg:A2] +C The giraffe and the elephant : saw a sign say/ing no run/ing. +C but they felt like run/ing to the diving board. +C and the elephant said I will beat you there first. +C and the giraffe said not if I can. +C and all of a sudden the elephant slip/ed. +C and he said oh no : help. +C and all of a sudden she trip/ed and hit her knee and start/ed cry/ing because it hurt really bad. +C the lifeguard came : and ask[EW:asked] her what was wrong. +C I was run/ing and fell on my knee. +C so (the ele) the lifeguard put a (um) bandage on her. +C and (she) she was ready to cry because it hurt. +C (and) and she did not cry because it was not that[!] bad. +C and then the lifeguard said did not you see the sign that said no run/ing. +C and then she said oh I never saw that. +C and then she was in a lot of trouble from the lifeguard because : she was run/ing without (the) see/ing the sign say/ing no run/ing. += [Eg:A2] += [Bg:A3] +C The elephant start/ed feel/ing happy. +C and she said let us go for a swim. +C but the giraffe was play/ing with his toy airplane. +C (and he did not) (and he did not) he got upset. +C and (she did not) (um) she like/ed play/ing with him. +C (so the) so the elephant just grab/ed the (el) airplane away and start/ed drive/ing it : without even ask/ing to play with it. +C and all of a sudden the elephant threw it up in the air. +C it came twirl/ing around and land/ed in the water. +C and the giraffe said : (you are) you are not suppose/ed to be do/ing that with the airplane. +C now all of a sudden the airplane start/ed : to sink. +C and the giraffe got mad and mad : and start/ed yell/ing at the elephant. +C the lifeguard came. +C and the giraffe was sad because his (plane) airplane was in the water. +C and the elephant start/ed walk/ing away. +C so the elephant told him that : he was play/ing with it. +C so I just grab/ed it away from him and start/ed play/ing with it too. +C I threw it up in the air. +C and there it land/ed in the water[!]. +C and the lifeguard try/ed to grab it. +C but it was too far away from the edge that he could not grab it. +C but the lifeguard did not know what to do. +C and : the giraffe start/ed cry/ing because : he did not want to go in the water. +C and the elephant start/ed feel/ing sorry. +C and so the other lifeguard came and grab/ed the net. +C and all of a sudden she pull/ed it back in and gave it to the giraffe. +C and the elephant (was) were[EW:was] happy. +C and then she try/ed and try/ed. +C and then when she finally got it : the elephant and giraffe were happy. +C the giraffe ran and thank/ed the lifeguard. +C and then the giraffe and the elephant took turn/s play/ing with the airplane. += [Eg:A3] += [Bg:B1] +C there is a rabbit and a dog (s) build/ing a sandcastle inside the sandbox. +C and then they came up with a great idea for the sandcastle. +C so the dog start/ed work/ing on the sandcastle to make it better (while this) while the : rabbit start/ed making a hill of sand. +C so there is[EW:are] hill/s[!] all over it. +C and (then the dog) after the dog was finish/ed build/ing it it was so beautiful that the rabbit : thought it would be so funny to pour the whole bucket of sand on top of it. +C and all of a sudden (the) : only one part of the sandcastle was left. +C and it was one of the window/s. +C (and the rabbit) and the dog : start/ed look/ing funny. +C and the dog start/ed cry/ing. +C and the rabbit start/ed look/ing up and start/ed walk/ing away. += [Eg:B1] += [Bg:B2] +C (Then the one) then the other day : the dog want/ed to go for a picnic. +C and then the rabbit said : could I come? +C I will bring my own food. +C then the dog said okay. +C (the rabbit brought a) the rabbit brought pickle/s : cheese : mustard : sandwich/s strawberry/s : (um) a cake and some sub/s and a carrot. +C and the dog brang|bring[EW:brought] a sandwich : and a juice. +C (and) and the pig start/ed feeling (um) full. +C and he ate all his stuff. +C and he left a big mess. +C and then the dog was just sit/ing there eat/ing. +C and (then the) : then the rabbit start/ed burp/ing right in front of him and start/ed walk/ing crazy. +C (and then his mother) and then (all) his mother rabbit came. +C and then the dog went race/ing to say : your son he is[EW:has] gotten dizzy. +C and then he drag/ed (the rabbit) his mother over there : to see what happen/ed. +C and all of a sudden : she said you should not have eaten too much food : you pig. +C and then they went walk/ing off home. += [Eg:B2] += [Bg:B3] +C and then that even/ing the dog was pull/ing : his wagon with nothing in it. +C and it had a balloon on it. +C and the rabbit said hey could I see the balloon? +C and the dog said okay then. +C but be careful. +C so the rabbit start/ed untie/ing it. +C and the dog start/ed say/ing : no do not do that. +C you will let it fly away. +C and the rabbit did not do it. +C he just kept on untie/ing the balloon. +C and all of a sudden the rabbit let the balloon go and start/ed crying : when it was not his. +C it was the dog/z. +C and he start/ed run/ing after it and *was yell/ing help help [EU]! +C all of a sudden the dog got mad at the rabbit. +C and the rabbit start/ed cry/ing. +C then the dog was so mad that the rabbit had an idea. +C he saw another rabbit sell/ing balloon/s. +C so he went to go buy them. +C the rabbit said I will take that one. +C the purple one said the big rabbit? +C he said yes. +C so he bought that one for five cent/s. +C : (but the r) but the[~!_laughs] rabbit was out of change. +C and then the rabbit : said sorry but you can not buy that balloon. +C you do not have five cent/s. +C then all of a sudden (the r) he saw another[!] rabbit. +C and he went to go ask him[!] if he had five cent/s. +C and he said could I borrow five cent/s to buy my friend a purple balloon? +C and then : she gave him ten cent/s instead and got two balloon/s for both of them. +C and then they were both happy : really happy. +=C the end [+_bch]. += [Eg:B3]- diff --git a/data/ENNI_SALT/train/806.slt b/data/ENNI_SALT/train/806.slt new file mode 100644 index 0000000000000000000000000000000000000000..2cfc54f539d55c016757c5845e8518c7ba9acf86 --- /dev/null +++ b/data/ENNI_SALT/train/806.slt @@ -0,0 +1,94 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 7/4/1991 ++DOE: 3/7/2000 ++CA: 8;8;3 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 806PA1=CHI ++Tape Location: Disk M2 Track 30 += [Bg:A1] +C once there was a giraffe and an elephant. +C (th) they are play/ing bouncy ball or something. +C : they accidentally drop/ed the ball into the water. +C : and so the giraffe went and swam in to get it. +C : and (he got it out) he got it out : gave it to the elephant [EU]. +C (and : um) and elephant was happy to get her ball back. += [Eg:A1] += [Bg:A2] +C (okay) elephant and the giraffe were by a pool. +C : and they did not see [EW:the]no run/ing sign : the elephant did not [~__okay] [~_child_clarifying_that_the_elephant_didn't_see_the_sign]. +C and then so (she ran) she start/ed run/ing. +C : (then) and then she slip/ed. +C she fell : and hurt her knee. +C : and the giraffe came to help her. +C she was cry/ing. +C and a : lifeguard came : to : put a bandaid on it. +C and then : lifeguard told her it is go/ing to[:_gonna] be okay. +C and then lifeguard got mad and show/ed her the no run/ing sign. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C the giraffe and the elephant : were play/ing with a plane. +C : and they were have/ing a lot of fun[-:] . +C : and then the elephant took it away from the giraffe. +C : he got mad. +C (and um) and then it fell into the pool. +C : and the giraffe got mad at the elephant. +C : and the lifeguard came : and ask/ed what was wrong. +C and then the elephant told him : that they were play/ing with the : plane and it fell into the pool. +C : and lifeguard try/ed to get it. +C but he could not reach it. +C : so then the giraffe was cry/ing (cause he) because no one could get it. +C : and a lady came and : got : a net. +C : and then (she got it out) : she was try/ing to get it. +C she got it. +C she gave it to the giraffe. +C the giraffe was (ha) happy. +C (he was) he was like laugh/ing in joy : sort of. +C and : (um) he hug/ed his plane. +C and the elephant was happy too. += [Eg:A3] += [Bg:B1] +C there was (an) an elephant and a dog. +C (were play/ing) (er pla) (make/ing a sandcastle) they made a sandcastle. +C (and then : they start/ed) and then the bunny came and help/ed (the) because he was not really do/ing anything. +C he (came to help and um) : came to help too. +C and then he dump/ed the whole bucket on. +C (and it) (oh I mean he made a pile) (um thought) [~_I__mean] he made a pile. +C (cause) : I thought he was dump/ing it on the castle. +C : [~_oh] she wreck/ed it. +=C yeah I just could not see it [+_bch]. +C [~_okay] he dump/ed it on[-:] . +C she got mad[-:] . +C and (she is r) now she is cry/ing. +=C : the end [+_bch]. += [Eg:B1] += [Bg:B2] +C (okay) rabbit and dog (were go/ing) were walk/ing down the road to have a picnic. +C : rabbit (um go) was hot and : was really hungry. +C so (he ate) he ate all his food really fast. +C he got sick. +C and then (dog went : because) dog saw a doctor and (went) (went to her) ask/ed for help. +C and then (um) dog (grab/ed) (like) brang|bring[EW:brought] (the rabbit) [~_I_mean] doctor over. +C : and then she help/ed him. +C : (and then she) and the doctor had a talk with him. +=C and the end [+_bch]. += [Eg:B2] += [Bg:B3] +C (um) : dog and rabbit were : (um) : walk/ing down the road. +C : they found a balloon. +C and then rabbit try/ed to take it away. +C (then it flew) then it (um) flew into the air. +C dog got really mad. +C : and she was still mad. +C but then : rabbit saw : (um) a man hold/ing a whole bunch of balloon/s. +C : and then he ask/ed for a balloon. +C : (um) but he did not have enough money. +C : (it was) so then : they were sit/ing there wonder/ing what they could do. +C and then rabbit saw the angel. +C : and he told her what was wrong. +C : she bought (them a balloon) : them both a balloon. +C and they were happy. += [Eg:B3] diff --git a/data/ENNI_SALT/train/808.slt b/data/ENNI_SALT/train/808.slt new file mode 100644 index 0000000000000000000000000000000000000000..af756d9ae167ce901e5783450e29b1db202346eb --- /dev/null +++ b/data/ENNI_SALT/train/808.slt @@ -0,0 +1,116 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 10/26/1991 ++DOE: 3/7/2000 ++CA: 8;4;10 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 808=CHI ++Tape Location: Disk M2 Track 40 += [Bg:A1] +C [~!_sighs] (um) : a giraffe see/3s (um) : a[EW:an] elephant play[EW:playing] with a ball[-:] [~_oh] near a pool. +C [~_oh] (um : i) it (uh) gets[EW:goes] in the water[-:]. +C (and they bo) and (uh) I think the elephant cry/ed a lot. +C so that xxx : back. +E {whispers} want/3s what? +=C the ball[-:] to play with it [+_bch]. +C so the giraffe go/3s there and (swim/3s ah for it) go/3s swim/ing for it. +C (um) he give/3s the ball back to[-:] (ooh) the (uh) elephant. +C : and : now the elephant and the giraffe are happy. += [Eg:A1] += [Bg:A2] +C [~_okay] (a[-:] ) the[-:] elephant[-:] and the giraffe[-:] are (er) by the pool still. +C and[-:] there is a no run/ing sign. +C : and : (uh) the elephant (look/3s like) start/3s run/ing. +C (ay) but the giraffe stay/3s right where he is. +C : now (um : uh) it look/3s like the elephant (sli) *is slip/ing [EU]. +C [~_oh] now she has fallen. +=C and (the uh) sorry [+_bch]. +E what? +C now the elephant (uh : i) has hurt herself. +C and : the giraffe (i[-:] ) look/3s like is go/ing for the lifeguard [EU]. +C : the lifeguard is come/ing[-:]. +C and the giraffe is by the elephant. +C and the elephant is cry/ing. +C : the lifeguard put a bandage on[-:] (um) her cut[-:]. +C ( i) and (the el) the elephant do/es not look too happy. +C : now the lifeguard is help/ing her : onto the bench. +C and the giraffe look/3s (uh) kind of happy that she is all right. +C : now[-:] (uh) the lifeguard is[-:] tell/ing her not to run and that the sign say/3s no run/ing. += [Eg:A2] += [Bg:A3] +C [~_okay] the (um[-:]) the giraffe has an airplane. +C and the elephant[-:] look/3s like[-:] she want/3s to play with it. +C : the elephant is show/ing (you her er um) : how like to play with it and : that it is fun to play with. +C : (the) (and the elephant) [~_I_mean] then the giraffe let/3s (her) her play with it. +C (and) and (uh) (she) the (l) elephant look/3s happy. +C (i) but (i the elephant) [~_I_mean] the giraffe kind of look/3s (uh not too[-:] sure[-:]) kind of (um) unsure about it. +C (um) the (elephant[-:]) (ah ah) (bank/3s it um) get/3s it in the water. +C (er) and now it is in the water. +C (and they are both kind of : um) (do not know) the giraffe look/3s kind of sad. +C now the giraffe is very very mad (uh) at the elephant : and want/3s that plane back. +C : (the el[-:] ) the elephant (uh) go/3s[-:] to the lifeguard I think to see if he could get the plane out. +C : (she is te[-:] ) the elephant is tell/ing the lifeguard what happen/ed. +C and the lifeguard kind of look/3s [~_well] surprise/ed : perhaps. +C now the lifeguard (is try/ing to get[-:] the) is try/ing to reach for the airplane. +C but he can not reach it. +C : (the ele) the lifeguard[-:] say/3s he can not do it. +C the[-:] elephant look/3s kind of sad. +C (and the) and the (uh) giraffe is cry/ing. +C : (um) then[-:] the elephant/z mother come/3s along : (with a net and um) : with a net. +C (um) : then she[-:] is try/ing to get it with the net. +C : now (the)[~!_sighs] (uh) the elephant/z mother give/3s the plane back to (the elephant) [~_I_mean] the[-:] giraffe. +C : now (uh) the elephant and the giraffe are happy. += [Eg:A3] += [Bg:B1] +C (um : uh) (there[-:] are) (er) there is it look/3s like a dog and a bunny in this picture [EU]. +C the dog look/3s like he is make/ing a sandcastle. +C and the bunny : I think want/3s to help him. +C and so they are help/ing each other[-:]. +C (the dog is help/ing) [~_I_mean] the rabbit is help/ing the dog make the sandcastle. +C and[-:] now the bunny dump/3s a pile of sand on (and) the sandcastle. +C : and[-:] : (um) now the sandcastle is wreck/ed. +C : and now the dog is try/ing to rebuild it. += [Eg:B1] += [Bg:B2] +C (um) the dog see/3s the rabbit come/ing down the road. +C and they are both carry/ing basket/s : with something in them. +C (um) : (they[-:] ) (um) now they are have/ing a picnic (nic um) with a whole bunch of (look) good look/ing food in it. +C they are eat/ing. +C : (um) : it look/3s like the bunny ate a little too much : and (do/3s not look) and look/3s sick. +C : (um) the dog is : [~_well] kind of : surprise/ed. +C and the bunny still do/3s not look very very well. +C (um : there i) it look/3s like a doctor bunny come/ing down. +C and the dog (r) rushes (eh and) to get him. +C (um) (he) the dog is pull/ing[-:] the doctor towards the (uh) rabbit : on the[-:] (picnic uh) picnic cloth. +C : (looks like the[-:] um doctor rabbit) (it um is) : (um : kind of is) look/3s like the young rabbit is wake/ing up but still is not look/ing too well. +C and the doctor : rabbit is[-:] check/ing. +C : (um) now : the doctor rabbit (and the r) and the younger rabbit are walk/ing[-:] : down the road again. +C and the dog look/3s happy now. += [Eg:B2] += [Bg:B3] +C (um) : the dog (um) : (is carry[-:] i[-:]) is pull/ing a wagon with a balloon on it. +C and the rabbit see/3s (h) him[-:] come/ing. +C and so he run/3s to greet him. +C (um) the rabbit see/3s the balloon (uh) and : look/3s like he want/3s it. +E want/3s what? +=C want/3s the balloon [+_bch]. +C look/3s like (he) the rabbit is untie/ing the balloon[-:]. +C and[-:] : (the balloon um) they lost the balloon. +C the balloon rose too high. +C and they could not reach it. +C now the dog is very mad at the rabbit. +C (and : um then they bo[-:]) and then the rabbit see/3s[-:] (um) : another rabbit sell/ing balloon/s. +C (um) : the rabbit ask|ask[EW:asked] (uh) can I have (uh) : a balloon : please? +C : (um) you have to pay five cent/s for the balloon. +C (uz um) but the balloon/s were five cent/s. +C and the rabbit did not have any money. +C : (uh) now the rabbit is sad. +C and now the dog has come up to the rabbit and : look/3s sad too. +C : (um) the rabbit see/3s[-:] : I think his dad (and[-:]) : and : I think (go/3s) go/3s to him. +C (he) the rabbit asks if he can have (some money : for) (five cents) (uh um) some money for : balloons. +C : now[-:] his dad is pay/ing[-:] ten cent/s for a balloon for each of them. +C now they are both very very happy. +C and so is the dad. += [Eg:B3] diff --git a/data/ENNI_SALT/train/809.slt b/data/ENNI_SALT/train/809.slt new file mode 100644 index 0000000000000000000000000000000000000000..3c8966b727e0a3883b3863fdc3249f7abc4421d2 --- /dev/null +++ b/data/ENNI_SALT/train/809.slt @@ -0,0 +1,90 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 5/17/1991 ++DOE: 4/18/2000 ++CA: 8;11;1 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 809=CHI ++Tape Location: Disk L6 Track 16 += [Bg:A1] +C Once there was a giraffe named George and an elephant named Martha. +C and they were best friend/s. +C one day they were play/ing ball. +C and the ball fell into a swimming pool. +C George went to the swimming pool and swimmed|swim[EW:swam] and got the ball. +C Martha was very happy : to get her ball back. +C (and then the next) and then they play/ed for the rest of the day and talk/ed. += [Eg:A1] += [Bg:A2] +C One day George and Martha saw a swimming pool. +C and they want/ed to go swim/ing. +C : then Martha ask/ed : George if he want/ed to go swim/ing with her. +C then she was run/ing. +C and she slip/ed. +C she : got a big scratch on her knee. +C and then she was cry/ing. +C the lifeguard came and try/ed to help. +C the lifeguard put a bandaid on Martha/z knee. +C (then Marth) but Martha was still cry/ing. +C after a little while she felt better. +C then the lifeguard told her to not run ever again. += [Eg:A2] += [Bg:A3] +C One day George and Martha was[EW:were] : play/ing : with George/z : airplane toy. +C : Martha really like/ed : the toy. +C and Martha grab/ed it away from George and start/ed play/ing with it. +C then she drop/ed it into the swimming pool. +C George was very mad at Martha. +C suddenly the lifeguard came. +C : Martha said she drop/ed the (air) toy airplane in the pool. +C and she was really sorry. +C then the lifeguard try/ed to reach it. +C but he could not. +C then : George became really sad. +C and then another lifeguard came : and had a net. +C she used the net : and : got the airplane out of the water. +C George became happy again. +C then George and Martha share/ed the airplane. += [Eg:A3] += [Bg:B1] +C once there was : a puppy : and a bunny. +C they like/ed to go the park and build sandcastle/s together. +C one day they were build/ing a sandcastle. +C and they were happy. +C and suddenly : by accident : all : the sand that bunny had in his bucket accidentally pour/ed on the sandcastle they were make/ing. +C they were both very surprise/ed. +C puppy was cry/ing. += [Eg:B1] += [Bg:B2] +C One day puppy and bunny were go/ing : for a picnic. +C : bunny was make/ing a pig of himself. +C and puppy was star/ing at him. +C : after a little while puppy start/ed eat/ing her lunch. +C then bunny got a very very bad stomachache. +C then puppy saw a doctor and call/ed her to come over : to where their picnic spot was. +C puppy kept on grab/ing the doctor to come : over. +C then the doctor saw : bunny. +C and : (sh) she was look/ing at him : and try/ing to figure out what was (a) the matter with him. +C the doctor thought he had a stomachache. +C so she took him : home and put him to bed. += [Eg:B2] += [Bg:B3] +C one day puppy : had a balloon in her wagon. +C and suddenly bunny came. +C bunny want/ed to take the balloon and touch it. +C then he (untie/ed the) : untie/ed the balloon from the wagon. +C (and) : and the balloon float/ed away. +C they were all try/ing to catch it. +C then puppy got really really angry at bunny. +C then : they saw a : man hold/ing lot/s of balloon/s. +C (the bunny) bunny ask/ed the man if he could have : some : of the balloon/s. +C but he did not have any money. +C puppy and bunny were really disappoint/ed. +C then they saw the doctor. +C and bunny went run/ing to : her. +C he asked her if : she could get them some : balloon/s. +C then the doctor paid for : two balloon/s. +C then puppy and bunny were happy again. += [Eg:B3] diff --git a/data/ENNI_SALT/train/810.slt b/data/ENNI_SALT/train/810.slt new file mode 100644 index 0000000000000000000000000000000000000000..c1819ff2a26db66952f1d533215e8b219bc075a0 --- /dev/null +++ b/data/ENNI_SALT/train/810.slt @@ -0,0 +1,81 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 12/4/1991 ++DOE: 4/18/2000 ++CA: 8;4;14 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 810=CHI ++Tape Location: Disk M4 Track 9 += [Bg:A1] +C (uhm) there is a giraffe and an elephant (that) (that have) that have three ball/s[-:]. +C and (then the giraffe and the elephant see another ball) they see (their) one of their ball/s in the water. +C : so the giraffe swim/3s to get it. +C : and then he bring/3s it back to the elephant. +C : and then the[-:] elephant hug/3s it and everything. += [Eg:A1] += [Bg:A2] +C (um well : um) there is the giraffe and the elephant again. +C and it has a sign that says no run/ing. +C : and then : the elephant start/3s run/ing : or something. +C : and then he slip/3s. +C : and then he hurt/3s (hi) herself[EW:himself]. +C : so a lifeguard come/3s : (and put) and put/3s on a bandaid. +C and the elephant : look/3s like (he) she is about to cry. +C : but she notice/3s that it do/3s not hurt at all. +C : and then the lifeguard point/3s to the sign. +C and the elephant see/3s (it and) the sign that say/3s no run/ing. += [Eg:A2] += [Bg:A3] +C (um) this giraffe has an airplane in his hand. +C then he is try/ing to fly everywhere. +C : (but) and the elephant grab/3s it. +C and then she drop/3s it in the water accidentally. +C and (um) the giraffe get/3s really mad at the elephant. +C and then a lifeguard come/3s and see/3s the airplane. +C : and then (the) : the elephant try/3s to explain why it is in the water. +C so the lifeguard try/3s to get it out. +C and then : the giraffe start/3s to cry. +C so a lady come/3s along with a net. +C and she try/3s to grab it out of the water with the net. +C and then she give/3s it back to the giraffe. +C and then he start/3s hug/ing it. += [Eg:A3] += [Bg:B1] +C there is a bunny and a puppy (who are) who are make/ing a sandcastle. +C [~_no_wait] the puppy already made the sandcastle. +C : and then he is try/ing to fix it up kind of to make it look a little better. +C and then the bunny start/3s pour/ing sand : (on) on the sandcastle. +C and the sand is all over it. +C and the puppy start/3s wipe/ing off the : sand. += [Eg:B1] += [Bg:B2] +C there is a puppy and a bunny that is[EW:are] go/ing for a (picic) picnic. +C and then they are eat/ing. +C and the bunny is eat/ing a lot. +C and then she is really really full[-:]. +C and then (um) the puppy notice/3s that she is really really full. +C so the puppy go/3s and get/3s this doctor that he[-:] found on the path. +C and he bring/3s : the doctor over to the bunny. +C and then the doctor : try/3s to help the bunny. +C and then the bunny feel/3s a little better. += [Eg:B2] += [Bg:B3] +C there is a puppy and a bunny : who have a wagon with a balloon tie/ed to it. +C and the bunny : see/3s the balloon. +C and then she try/3s to take it off. +C and then she took it off. +C and it is float/ing away. +C and then the puppy get/3s really mad at the bunny. +C and then there is (an) (a) (a : bu) another bunny that has : balloon/s in (they) in his hand. +C and the bunny see/3s : the other bunny. +C and then the bunny say/3s that he want/ed one of the balloon/s. +C and then the balloon/s are suppose/ed to be fifty cent/s. +C but the bunny has no money. +C so (then) : then they feel all sad and everything. +C and then they see : (um) a doctor. +C and the bunny ask/3s : (if) if the doctor could pay for them for one of the balloon/s. +C so the doctor do/3s. +C and then : they each have a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/812.slt b/data/ENNI_SALT/train/812.slt new file mode 100644 index 0000000000000000000000000000000000000000..decaf33a11e65c05120b568a9f76d7fa7ff56551 --- /dev/null +++ b/data/ENNI_SALT/train/812.slt @@ -0,0 +1,105 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 8/12/1991 ++DOE: 4/18/2000 ++CA: 8;8;6 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 812=CHI ++Tape Location: Disk M4 Track 19 += [Bg:A1] +C (um) once upon a time a giraffe (met) met a[EW:an] elephant : bounce/ing a ball : (by) (in the sw) (um) by the swimming pool. +C the ball drop/ed in the water. +C (and) and the (elephant um) (elephant um) elephant (did not like it) (it) it would[?] like the ball. +C the elephant start/ed to cry. +C and the giraffe : (um) dived|dive[EW:dove] (uh) : try/ing to get the ball for her. +C : the giraffe gave the ball to the elephant. +C : (um) the giraffe : got out of the water. +C and : the elephant (ss) start/ed to like the giraffe. += [Eg:A1] += [Bg:A2] +C (uhm) : once upon a time there was an elephant and (a) a giraffe hold/ing a towel. +C : the elephant : was run/ing to the diving board. +C : [~_child_breathes_deeply] the elephant was run/ing (fast) fast and slip/ed. +C : [~_child_breathes_deeply] (um) the elephant did not notice there was a sign say/ing no run/ing. +C and she hurt herself on her knee. +C (um) (she) she start/ed to cry a little. +C the lifeguard (came) came. +C : (um) the lifeguard put a bandaid (on) on : (the) the owie. +C : the lifeguard brought her (to) to a wooden : (ch) chair. +C : [~_child_breathes_deeply] the lifeguard said there was no run/ing and became mad at her. +E what? +=C and became mad [+_bch]. += [Eg:A2] += [Bg:A3] +C one day a giraffe (um : um) went to a swimming pool with her friend : and had (a ai) a toy airplane. +C : (he a) (h) he start/ed to play with the elephant to make it fly. +C (um : the) : the elephant (took the ele) took the airplane from the giraffe : and want/ed to see it. +C she accidentally drop/ed it : (by) in the water. +C the giraffe was very : very : very mad. +C : then the lifeguard came. +C (and the) and the elephant : went to the lifeguard. +C she said if he could : reach and get the airplane. +C the lifeguard try/ed to get (the ele) the airplane. +C but (he) it was too far. +C : the elephant kneel/ed down and start/ed cry/ing. +C (the ele) and the giraffe kneel/ed down and start/ed to cry. +C the elephant felt sorry. +C : (then) then this woman came with a fishnet. +C and she : put the net by the water to try and get the airplane. +C she got the airplane and gave it back to the giraffe. +C the giraffe was happy now. +C and[-:] (the elephant) the elephant was happy too. += [Eg:A3] += [Bg:B1] +C once upon a time there was a dog. +C and he met a rabbit. +C the dog had built (um) a sandcastle. +C and the rabbit fill/ed a bucket with sand. +C (the) the rabbit had dump/ed the sand on the castle. +C and the dog : (did not) was not happy. +C (um : the rabbit um) : the rabbit look/3s sorry. +=C and the dog : [+_bch] [EU]. +E turn the page? +=C yeah [+_bch]. +C the dog start/ed to cry. += [Eg:B1] += [Bg:B2] +C once upon a time there was : a dog : go/ing for a picnic and met a rabbit [EU]. +C (um the dog) the rabbit had lot/s of food. +C and the dog was look/ing at the rabbit. +C the dog start/ed to eat. +C the rabbit was full and had a stomachache. +C then he felt dizzy and : dizzier. +C (the) the dog ran to : a doctor : and told the doctor (um) about the stomachache. +C the dog start/ed to (pull) pull the doctor (by) : by the rabbit. +C the doctor (checked) check/ed the rabbit. +C (um) [~_child_makes_sounds_while_thinking_about_what_to_say] : the doctor said if he was okay. +C and then he said he was okay. += [Eg:B2] += [Bg:B3] +C once upon a time there was a dog with a wagon. +C and a balloon was tie/ed (on the top) on the wagon. +C (he met) he met a rabbit. +C (and) : [~_child_breathed_deep] (and um asked him um) and the rabbit want/ed to hold the balloon. +C (the ra) the rabbit untie/ed the knot with the dog did not want him to. +C the rabbit (lo) accidentally let go of the : balloon. +C and the balloon : flew up. +C (the dog tried to) the dog try/ed : to get the balloon down. +C : (um it) the balloon went very high. +C the dog was very mad at the rabbit. +C (then they s) then the rabbit saw (a b) a rabbit sell/ing balloon/s. +C but the dog did not. +C the rabbit ask/ed if he could have : a balloon. +C (and) (and um) : and (the) : the dog (um) was not sure what he was do/ing. +C : the rabbit show/ed his pocket/s. +C and there was[EW:were] : no balloon/s. +C the balloons were five cent/s. +C : the dog went (by the) (be) beside the rabbit : and look/ed at the : rabbit sell/ing the balloon/s. +C (um) the rabbit went to the doctor. +C he ask/ed (if) : the doctor if he had money to get balloon/s for the rabbit and the dog. +C the doctor gave him money for two balloon/s : for the dog and the rabbit. +C the (ra) the dog and the rabbit were please/ed. +C and : the doctor (was ver) was happy because (they wer) they were happy. += [Eg:B3] diff --git a/data/ENNI_SALT/train/813.slt b/data/ENNI_SALT/train/813.slt new file mode 100644 index 0000000000000000000000000000000000000000..3ceb8f7cc56470d8efbc866e9df523ad8934f473 --- /dev/null +++ b/data/ENNI_SALT/train/813.slt @@ -0,0 +1,91 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 12/18/1991 ++DOE: 4/19/2000 ++CA: 8;4;1 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 813=CHI ++Tape Location: Disk L7 Track 30 += [Bg:A1] +C It is a[EW:an] elephant play/ing ball. +C : she threw the ball in the water. +C : the giraffe : try/3s to get it. +C the giraffe got the ball for the elephant. +C (the) the elephant say/3s thank you. += [Eg:A1] += [Bg:A2] +C They are look/ing at the water. +C the elephant want/3s to go in. +C she walk/3s away. +C and the giraffe follow/3s her. +C she was run/ing. +C and she slip/ed on her knee. +C she got hurt. +C another elephant came and put a bandaid on her. +C and then the elephant said do not run any more. +C you should not run. +C or else you will slip and fall and hurt your knee again. += [Eg:A2] += [Bg:A3] +C (They) : the giraffe brought a helicopter to the pool. +C he want/3s to fly it. +C the elephant take/3s it away from the giraffe. +C the elephant drop/3s it in the water. +C the giraffe get/3s mad at the elephant. +C the lifeguard come/3s. +C the elephant say/3s I accidentally drop/ed the : plane in the water. +C the lifeguard try/3s to get it. +C but he can not reach. +C the giraffe start/3s to cry. +C another girl elephant come/3s. +C and she has a net. +C she will try to catch the plane. +C she got the plane. +C she gave it to the giraffe. +C the giraffe said thank you. +C and : then the giraffe said (do not throw it) do not throw it in the water again. +C and do not grab it from me again. += [Eg:A3] += [Bg:B1] +C a dog is play/ing in a sandbox. +C a rabbit come/3s. +C the rabbit want/3s to help. +C the rabbit throw/3s sand in the castle. +C the rabbit say/3s uhoh. +C and then the dog start/3s to cry. += [Eg:B1] += [Bg:B2] +C The rabbit come/3s walk/ing with a picnic basket. +C and the dog : (s) saw him and said hi. +C they have[EW:had] : a picnic together. +C the rabbit is fat. +C and the dog is : not fat [~_laughs]. +C the rabbit start/3s to get a stomachache. +C the dog run/3s to (a rabbit) another rabbit : and say/3s : my friend rabbit (is) has a big stomachache [~_pronounced_'stomyache']. +C so she pull/3s (the rabb) the girl rabbit : and say/3s come. +C (the rabbit) : the girl rabbit said (the boy) the little boy rabbit ate too much. +C after she help/ed it the rabbit felt all better. += [Eg:B2] += [Bg:B3] +C The dog is : pull/ing a wagon with a balloon on it. +C the rabbit come/3s run/ing. +C the rabbit say/3s that is a nice balloon. +C the rabbit take/3s it off. +C and the dog say/3s do not! +C the balloon fly/3s up into the air. +C the dog get/3s really mad at the rabbit. +C a big bunny come/3s. +C and : the rabbit see/3s him. +C and the little bunny say/3s : can I have a balloon? +C the man said : sorry. +C but the balloon/s cost five cent/s. +C and then the dog come/3s. +C then (a lady) a lady : bunny : is stand/ing near them. +C the rabbit say/3s there is[EW:are] balloon/s. +C they cost five cent/s. +C could you buy one? +C the lady bought two of them. +C they both had two balloon/s. += [Eg:B3] diff --git a/data/ENNI_SALT/train/815.slt b/data/ENNI_SALT/train/815.slt new file mode 100644 index 0000000000000000000000000000000000000000..b14740ae1e8b8dc9bcb713b752d3f1046ef9576b --- /dev/null +++ b/data/ENNI_SALT/train/815.slt @@ -0,0 +1,102 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 2/02/1992 ++DOE: 4/20/2000 ++CA: 8;2;18 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 815PA1=CHI ++Tape Location: Disk L8 Track 26 += [Bg:A1] +C There once lived a : cow and an elephant. +C the elephant had some ball/s. +C one of the ball/s from the elephant (um) drop/ed into a swimming pool. +C then the cow (went to s) went swim/ing to get (the : sw) the ball. +C and the cow save/ed : the ball. +C and then he was under the water. +C (he gave it) he gave the ball to the elephant. +C and the elephant thank/ed him. +C she was really happy that her ball was back. += [Eg:A1] += [Bg:A2] +C The elephant and the cow (are have/ing a) I think they found something in the swimming pool. +C the elephant talk/ed to the cow. +C and she was not watch/ing where she was go/ing. +C and then she slip/ed. +C the cow (was try/ing) was run/ing to save her. +C the elephant hurt her knee. +C the lifeguard came and help/ed the elephant. +C the lifeguard put a bandage on the elephant. +C then the elephant sat on a bench with the lifeguard. +C (the ele) the little elephant got in trouble because there was a sign that said no run/ing. += [Eg:A2] += [Bg:A3] +C There was an elephant : and a cow. +C and the elephant was talk/ing to the cow. +C the cow found an airplane. +C and the : cow was make/ing the sound/s (uh). +C and then he was : fly/ing the airplane around with his hand. +C then the elephant just grab/ed : the airplane right out of : the cow/z hand (and was) : and look/ed at it. +C but (then while sh) then the cow try/ed to get it back. +C but it went into the water. +C (and then the cow was mad at the c um) and then the cow was mad at the elephant. +C the lifeguard came. +C and they were both : amaze/ed. +C the elephant talk/ed to the lifeguard. +C the lifeguard try/ed to get the : (pla) airplane. +C : but the lifeguard could not get the airplane. +C then the cow was cry/ing. +C and then : another lifeguard : came : and had : (one of those[-:]) : something to pick it up with. +C then she (oop) scoop/3s the airplane up with it. +C and the cow was happy. +C the cow hug/ed the airplane. +C and (the) : the elephant was smile/ing. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C There was : a bunny and dog play/ing in the sandbox. +C they both together made a sandcastle. +C the bunny he was : put/ing sand in a pail. +C and then when the : dog was done make/ing the sandcastle the bunny pour/ed : sand : on the sandcastle. +C and then : the bunny and[!] the dog were not happy. +C so then the dog (had the) was cry/ing. +C and he had to make another one. += [Eg:B1] += [Bg:B2] +C a dog and a rabbit : were go/ing on a picnic together. +C (the b) the rabbit was a little bit (ra) late. +C the rabbit (had) was act/ing like a pig and eat/ing everything. +C but the dog was look/ing at him. +C and then when the dog was start/ed to eat : the rabbit (was a) was all full. +C and the garbage was all around him. +C then the rabbit had a headache. +C so then (the doctor came to the : dog : and) [~_actually] the dog phone/ed[!] the doctor. +C and : the doctor came. +C and the dog told the doctor what happen/ed (to the) to the rabbit. +C so then (the dog took him to the doctor and) the dog took him to the doctor. +C and the doctor was amaze/ed. +C and then : the doctor took the rabbit somewhere. += [Eg:B2] += [Bg:B3] +C The : girl dog is pull/ing a wagon. +C and the rabbit is come/ing. +C the rabbit like/3s : the balloon. +C he want/3s to play with it. +C the rabbit try/3s to untie the balloon from the wagon. +C then the (ba) balloon fly/3s away. +C (they tr) the rabbit and the dog try to get it. +C so then (the dog) the girl dog is mad at the rabbit. +C and the rabbit is sad. +C then they see : a (bunny) : bunny sell/ing more balloon/s. +C and the rabbit (co) go/3s and get/3s a balloon. +C (the balloo) (the rabbit do/3s um) (loo/3s for some) (f look/3s) the rabbit look/3s for five cent/s : to buy a balloon. +C the rabbit : do/3s not have five cent/s. +C so then they are both sad. +C but then (the doctor come/3s) (the) the doctor come/3s. +C the rabbit see/3s the doctor. +C he go/3s to the doctor. +C he ask/3s for : five cent/s : so he can buy a balloon. +C so the doctor give/3s : them ten[!] cent/s so both (of) the dog and[!] the rabbit can have balloon/s. +C then both of the animal/s are happy. += [Eg:B3] diff --git a/data/ENNI_SALT/train/816.slt b/data/ENNI_SALT/train/816.slt new file mode 100644 index 0000000000000000000000000000000000000000..f96a06003cc6db6c53265bcc53f5182a521191ca --- /dev/null +++ b/data/ENNI_SALT/train/816.slt @@ -0,0 +1,101 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 8/28/1991 ++DOE: 4/27/2000 ++CA: 8;7;30 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 816=CHI ++Tape Location: Disk M5 Track 5 += [Bg:A1] +C one day at the swimming pool : Elephant went over there. +C and she brought her balloon. +C she was bouncing it when : Giraffe came : over. +C : he ask/ed if he could play it [EU]. +C but then : it scare/ed Elephant. +C so she drop/ed the ball in : the pool. +C : Elephant did not know what to do. +C (so she a) so Giraffe want/ed to help. +C he : jump/ed into the water : until he swam close to the balloon. +C : he brought up : the ball : to Elephant. +C Elephant was really please/ed that Giraffe help/ed him : find her ball : in the water. += [Eg:A1] += [Bg:A2] +C one day at the swimming pool Elephant and Giraffe want/ed to go in the water to go swim/ing. +C : Elephant want/ed to go on the jump/ing board. +C she ran until she (fe) slip/ed on some water and fell. +C she cry/ed really loudly. +C Giraffe came. +C : the lifeguard saw it. +C so he came along. +C he quickly got out a bandage and put it on Elephant. +C the lifeguard help/ed her up and put her on the bench. +C then the lifeguard told her that you can not run : in the swimming pool. += [Eg:A2] += [Bg:A3] +C when Giraffe came to the pool : Elephant (ss) saw him. +C he had brought his new airplane toy. +C (hh) he show/ed her how : it could move. +C Elephant like/ed it a lot. +C she grab/ed it from Giraffe. +C but then : she accidentally drop/ed it. +C Giraffe was really mad that she drop/ed it in the water : and was go/ing farther away [EU]. +C then the lifeguard came along. +C : Elephant told him what had happen/ed : and ask/ed if (they) he could help them reach it. +C the lifeguard try/ed very hard. +C but he could not reach it. +C Giraffe was really sad until : they saw another[!] : elephant come/ing along. +C (she kne) (thin) she thought she knew what happen/ed. +C so she try/ed : to get out the airplane with her : net. +C finally she got it out and gave it to Giraffe. +C Giraffe was please/ed. +C and Elephant was happy that : he got it back. += [Eg:A3] += [Bg:B1] +C a rabbit want/ed to help : a dog that made a sandcastle to finish it [EU]. +C : and then : he : got a sandbox and put sand in it. +C the dog was already done. +C but the rabbit took the bucket and pour/ed the sand on the sandcastle. +C (the cat uh) the rabbit was surprise/ed : what happen/ed [EU]. +C he made the sandcastle fall down and turn/ed into a big clump like a mountain [EU]. +C the dog try/ed to make it over again. +C but it did not work. += [Eg:B1] += [Bg:B2] +C Dog was plan/ing a picnic with Rabbit. +C : Rabbit took out his food : Dog saw that he had pack/ed too many thing/s. +C Rabbit ate too much. +C and his tummy was full. +C and he got sick. +C and then he felt : really bad. +C Dog want/ed to help. +C : a nurse was walk/ing on the road. +C Dog quickly ran to the nurse. +C come! +C my friend has got a big tummyache. +C I can help said the nurse. +C he check/ed the body temperature. +C but then she knew that he was really sick. +C but later soon he got better. +C and he got back up. +C and Dog was really happy that : he : was not sick anymore. += [Eg:B2] += [Bg:B3] +C one day Dog was go/ing out with his wagon with a balloon tie/ed on it. +C Rabbit came along. +C Rabbit like/ed the balloon very much. +C he try/ed to take it off : and want/ed to keep it. +C when he took it off the balloon flew up in the sky. +C Dog was mad because they could not catch it. +C then there was a balloon man. +C Rabbit went over to the balloon man. +C can I have a balloon he ask/ed? +C each balloon is five dollar/s : the man said. +C they did not have any money. +C so they were sad. +C but then they saw the nurse that had money. +C they ask/ed her if : they could : (borrow some of h) use (one of) some of her money : to buy two balloon/s. +C the nurse gave him five dollar/s : (for each : of) for one for rabbit and one for dog. +C : they were really happy and said thank yous[EW:you]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/817.slt b/data/ENNI_SALT/train/817.slt new file mode 100644 index 0000000000000000000000000000000000000000..4335804461d49642cbdb22c268f27e2cc7aaab9b --- /dev/null +++ b/data/ENNI_SALT/train/817.slt @@ -0,0 +1,85 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 3/20/1992 ++DOE: 5/2/2000 ++CA: 8;1;6 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 817=CHI ++Tape Location: Disk L12 Track 16 += [Bg:A1] +C Once upon a time there was[EW:were] two funny animal/s. +C (their) their ball fall|fall[EW:fell] down through the water. +C he was swim/ing. +C and : he got the ball. +C now he was happy. +C there was no problem. += [Eg:A1] += [Bg:A2] +C One day (they) they were : happy. +C and they want to go swimming. +C they *are run/ing to[~?_run_into] the pool [EU]. +C (then) then she trip/ed. +C then she got a bruise. +C then (the doctor) : [~_I_mean_I_mean] a lifeguard [EU]. +E anything else? +=C that is it [+_bch]. +C then he was try/ing to help. +C [~_sharp_intake_of_breath] she was feel/ing better. +C [~_sharp_intake_of_breath] she should not have done that. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C : Once upon a time : [~_makes_'tsk'_sound,_inhales_sharply] his friend just camed|come[EW:came]. +C (and) : (an) and she was happy to play right now[!]. +C (and) and then he play|play[EW:played] with his airplane. +C : then she just take|take[EW:took] it away. +C now it is in the water. +C he was so mad. +C (he) : then the lifeguard came. +C she ask/ed about : what happen/ed. +C the lifeguard try/3s to reach it. +C : he was so : sad. +C (then) : then : the other girl just got a net. +C then she got it. +C (she w) : he was very please/ed. +C he like/ed it so much. += [Eg:A3] += [Bg:B1] +C Once upon a time : they were play/ing on the sandbox [EU]. +C they are both make/ing a sandcastle. +C he pour/ed the whole thing. +C one *of them did not liked|like[EW:like] it [EU]. +C then they wreck/ed it. +C (then) then the other person cry/ed. += [Eg:B1] += [Bg:B2] +C One day they were walk/ing in the forest. +C then they were have/ing a picnic. +C one of them were[EW:was] too full. +C one of them have|have[EW:had] a tummyache. +C they ask/ed : (her) (some) the doctor. +=C I know what this mean/3s [+_bch]. +C he ask/ed. +C and : (he have|have[EW:has] a tummyache) the bunny have[EW:has] a tummyache. +=C because [~_whispers] I can see xx [+_bch]. +C the bunny said (um) are you okay? +C (then) then she feel|feel[EW:felt] good. += [Eg:B2] += [Bg:B3] +C Once upon a time : one of them have|have[EW:had] (a) a balloon (and[!]) and (a) a wagon. +C he like/ed it. +C then he was try/ing to[:_tryna] unloose it [EU]. +C then it was gone. +C now he was mad. +C they sawed|see[EW:saw] balloon/s. +C : he said can I have a balloon please? +C (and) : and he like/ed it. +C (then) then they ask/ed. +C then both of them were sad. +C then they ask/ed the doctor how much : *do you[!] have [EU]. +C they ask/ed : we want one balloon, please. +C the man said : yes. +C then they both like/ed it. += [Eg:B3] diff --git a/data/ENNI_SALT/train/818.slt b/data/ENNI_SALT/train/818.slt new file mode 100644 index 0000000000000000000000000000000000000000..ca15085b3dacc0e6dea6cdbc1fd72166e3684a1a --- /dev/null +++ b/data/ENNI_SALT/train/818.slt @@ -0,0 +1,133 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 2/14/1992 ++DOE: 11/21/2000 ++CA: 8;9;7 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 818=CHI ++Tape Location: Disk M5(2), Track 92 += [Bg:A1] +C (okay um) : the giraffe and the elephant are[-:] at : a beach party. +C and[-:] they are play/ing with a ball. +C suddenly (the ball) : the[-:] elephant drop/3s the ball into the pool. +C so the giraffe : go/3s to get it[?] [~_disk_skips]. +C the elephant look/3s worry/ed because the pool is very deep. +C and the[-:] giraffe might drowned|drown[EW:drown]. +C and[-:] : the giraffe does not drowned|drown[EW:drown] : because (he is very long) his neck is very long and : give/3s the ball : to the elephant [EU]. +C and[-:] (um) : then the : giraffe feel/3s very proud of himself. +C and the elephant think/3s he (is) look/3s[-:] cute that way. += [Eg:A1] += [Bg:A2] +C (um) : the giraffe and : the[-:] (uh) : elephant are at the pool again : because they are have/ing swimming lessons. +C and : the elephant : is run/ing : into the pool. +C suddenly she slip/3s : and[-:] fall/3s. +C then the giraffe see/3s her cry/ing : because she has : an owie on her knee. +C he call/3s the lifeguard. +C and the lifeguard come/3s run/ing. +C he put/3s a bandage on : the : elephant. +C and : she think/3s it is go/ing to hurt. +C but it : do/3s not. +C and then he put/3s the elephant onto the bench for her to sit for awhile. +C the lifeguard point/3s to a sign say/ing no run/ing. +C and she (is) [-:] : will not do it ever again. += [Eg:A2] += [Bg:A3] +C the giraffe brought a new toy to : the swimming pool. +C and the elephant really like/3s it. +C he play/3s with the airplane. +C and : has a really cool string at the end. +C the elephant[!] snatch/3s it away from the giraffe : and think/3s it is really : cool! +C and she is fly/ing it around. +C but then it : drop/3s into the pool. +C and it/z : flinger thing break/3s. +E and what? +=C and the[-:] (um) propeller thing : break/3s off [+_bch]. +E oh okay. +C and it go/3s deeper deeper into the water. +C and the giraffe is really mad at the elephant. +C but : she[-:] make/3s an (in) innocent face on her : face. +C (the life) (she) the (um) : giraffe call/3s the lifeguard. +C and : he : come/3s to[-:] the pool and find/3s : the : airplane in the pool. +C the elephant is explain/ing[!] to the lifeguard what happen/ed. +C and she[-:] feel/3s really sorry. +C so the lifeguard try/3s to : get : the : airplane : and give|give[EW:gives] it back to the : giraffe. +C the giraffe : is cry/ing : because it goes deeper deeper into the water. +C and : (the : lifeguard) the other lifeguard with the net come/3s and : (give/3s it) (um) : get/3s the : plane. +C and the giraffe : has one more tear. +C but then it go/3s. +C and[-:] everyone feel/3s happy. +C the giraffe has no more tear/s and : is smile/ing. +C the lifeguard[!] is smile/ing too : and give/3s the plane back : to the : giraffe. +C the giraffe hug/3s : the plane. +C and (um) : the (el) elephant is happy again. += [Eg:A3] += [Bg:B1] +C the kangaroo : was build/ing a sandcastle. +C and then : her friend rabbit[!] came along. +C he put : some sand into : a big bucket : and : start/ed to build something. +C (then the dog realize/ed) then (the um) : the kangaroo realize/ed that : the bunny was make/ing a sandcastle : right : in front of it. +C but it spill/ed all over the castle. +C the[-:] mountain of sand : cover/ed half of the castle. +C and only a little bit was left. +C the : kangaroo start/ed cry/ing. +C and the bunny (felt) : made an innocent face on his face. += [Eg:B1] += [Bg:B2] +C bunny was go/ing down to the forest (to) for a picnic. +C and : he saw : (uh um) kangaroo there too. +C they said hi and : found a place for their picnic. +C (bunny) [~_I_mean] (um) : kangaroo never (really li) realiz/ed (what is) : how big of a[EW:an] eater bunny was. +C and : he pack/ed : no food but just junk food. +C after he was done : he look/ed like an enormous pig : because his belly was : big. +C and : (dog was : drink) (um bun uh) kangaroo was drink/ing : her juice and eat/ing her sandwich. +C then (s) : bunny start/ed hicup/ing : and : burp/ing (ca) : and had a (s) tummyache. +C and : kangaroo just realize/ed that! +C she start/ed run/ing : (to[-:] bunny/z) (to the doctor) : to doctor bunny : and : said my friend look/3s like he is very sick. +C (she) (sh) (she) (she drag/ed) : she pull/ed (miss) doctor bunny there. +C and : (um : she) : doctor bunny start/ed look/ing at : bunny. +C she said you have been eat/ing too much[EW:many] sweet/s (candy) : and candy : and not enough healthy (nutrent) : nutritious stuff. +C you should : eat your dessert after but only a little[!] bit of dessert. +C or else you will feel very sick. +C so doctor bunny (took : bunny home to) : took bunny home (to her) : to his mother. +C and : he told her all[!] about the thing/s : that he ate and did : today. += [Eg:B2] += [Bg:B3] +C one day : (kangaroo was in) : Joey the kangaroo was in the forest. +C and bunny : saw her with her balloon : tuck/ed : onto (her) : the wheel of her : wagon. +C he said : hey I really like that! +C is there any more around? +C kangaroo said I do not know. +C the balloon man might be : somewhere far from here. +C (um) and[-:] bunny try/ed to take it off : for[-:] him[!]. +C but : kangaroo said hey that is mine. +C and I really like it. +C it is my favorite color. +C and : then : bunny : realize/ed that he was not alone. +C he look/ed very[!] nervous. +C suddenly he let go of the balloon! +C bunny : realize/ed that the : balloon was : high up in the sky. +C and no one could catch it because it was go/ing high : too fast! +C kangaroo look/ed very[!] mad at bunny. +C then[!] they saw the balloon man : with (all) : more (of bunny) of kangaroo/z favorite color/s[!] and bunny/z too : purple and blue. +C bunny ask/ed for a blue : balloon. +C the man said : that would be (ten[-:]) [~_I_mean] : one dollar please. +C bunny look/ed in his pocket/s. +C (but) : [~_oh_no] that is five cent/s for a balloon. +C [~_oh] (um uh) bunny look/ed in his pocket/s! +C and he only kept his money at home. +C then : mister bunny : said well I guess you can not buy a : balloon if you do not have five cent/s. +C then they saw a doctor[-:] bunny there : and[-:] said : miss bunny : (can we) can me and my friend please have five cent/s each? +C we really want a purple and blue : balloon. +C bunny point/ed it out and : lift/ed up his pocket/s. +C oh[!] you have no money said : miss : bunny. +C I guess I will have to give you five cent/s each. +C so she gave the man five cent/s. +C and (they both got) : bunny got a blue balloon. +C and : kangaroo got : a purple one. +C thank[!] you said the man for the coin/s. +C and they : both play/ed with their : balloon/s. +C and : miss bunny said make sure you tie it somewhere safe : (a) so it do/3s not get loose and float : away. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/819.slt b/data/ENNI_SALT/train/819.slt new file mode 100644 index 0000000000000000000000000000000000000000..d838f61555202036887e2dbaa1d12860bb3c9275 --- /dev/null +++ b/data/ENNI_SALT/train/819.slt @@ -0,0 +1,150 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 8/05/1991 ++DOE: 5/09/2000 ++CA: 8;8;27 ++Gender: F ++Context: Nar ++Group of CHI: SLI ++ID: 819=CHI ++Tape Location: Disk L13 Track 26 += [Bg:A1] +C (there is :) the (um) zebra is the coach. +C and[-:] : this girl is bounce/ing a ball : near the water. +C then her ball fall|fall[EW:falls] into the water. +C and she can not get it. +C but the zebra swim/3s and (help/3s it) help/3s her get her ball back. +C the[-:] elephant : say/3s thank you to give/ing her ball back [EU]. +C and the zebra say/3s you are welcome. +C and then she is (um) so glad that she hug/3s her ball. +C (and) and they are both smile/ing at each other. +C and the zebra is all wet. += [Eg:A1] += [Bg:A2] +C there is a : zebra and the elephant. +C and there is xx of water [~_?]. +C and it say/3s no run/ing. +C and[-:] there is a diving board. +C and the elephant is : [~_child_coughs] walk/ing. +C and[-:] : she says I am go/ing to[:_gonna] go (on the high dive) on the diving board. +C (and the) : and then (the) : the elephant want/ed it. +C (he) she is go/ing to (sl) [~_child_coughs] slip. +C and the elephant slip/3s. +C and she is cry/ing. +C so then the lifeguard come/3s. +C and she look/3s at it. +C and (s) there is a tear [~_/teer/]. +C and it is all wipe/ed up. +C : and now (she put/3s) they put a bandaid on her : to make it all better. +C [~_child_yawns] and she is sit/ing on a bench. +C and : that is why : (it) it say/3s no run/ing. +C and the elephant and the zebra says|say[EW:say] : do you know why that sign is up? +C no : the elephant say/3s. +C because it say/3s no run/ing. +C and you just runned|run[EW:ran]. +C : (and : we) : and she said yeah. +C it say/3s no run/ing. +C and you did! +C and she is (like : um) kind of scare/ed. +C and he has (a face on her) : a mean face on him, the elephant. += [Eg:A2] += [Bg:A3] +C (the ze) the zebra has a[EW:an] airplane in his hand. +C and he say/3s hey. +C and the elephant say/3s hey can I try that out? +C and he is near the water. +C and he say/3s yes. +C : and : it go/3s everywhere. +C (and he is) and he is (um) spit/ing. +C and (she is like) she is like whoa cool. +C and then : (she[-:]) (he) she take/3s it out of his hand. +C and (she fl) she fly/3s it : without ask/ing. +C and then : the : plane go/3s into the water. +C : and the zebra get/3s mad at her (beca). +C : and it is sink/ing lower and lower : and lower. +C and the guy is like (um) : be/ing mad at her. += %COM: "the guy" appears to refer to lifeguard +C and then she say/3s it was not my fault[!]. +C I did not mean to do it. +C so (it is) he is try/ing to get it. +C but it is too far. +C and so[-:] : (the) the zebra is cry/ing. +C and the elephant is (li) try/ing to put her foot in. +C and then (the lifeg) the girl lifeguard : is here. +=C and then : he[~?_yawning] had a net with her [+_bch]. +E can you say that again ? +C and : she has a net with her. +C and then she (fl) : try/3s to pick it up. +C : and she do/3s. +C and then (him uh) he is hold/ing it very tight. +C and she is glad. += [Eg:A3] += [Bg:B1] +C (a[-:]) : a dog and a bunny [EU]. +C (and) (and he) and the bunny has a shovel. +C and the dog has a shovel. +C and : he is make/ing a castle : in the sand. +C they play/ed with each other. +C and the bunny : is put/ing sand in the bucket with the (ch) shovel. +C (and the other) and the dog is pat/ing the sandcastle. +C : and now : the bunny pour/ed some sand on the castle. +C and : he has a face. +C and the dog has a (um : uh) : kind of a scare/ed face. +C and the castle broke. +C and then (they c) the dog cry/ed. +C and the rabbit (was) was look/ing up. +C and he put his hand behind his back. += [Eg:B1] += [Bg:B2] +C and then the bunny and a dog [EU]. +C they have some basket/s. +C and : the dog say/3s hi. +C and them[EW:they] *are walk/ing down the road [EU]. +C and the bunny *is try/ing to catch up to him [EU]. +C the bunny is so hungry that : (um) : he put/3s all that stuff out. +C and then it is (fall/ing) drip/ing from him. +C and now the bunny is full : too. +C and the bunny has a stomachache. +C and the : dog do/3s not. +C and : missus Bunny come/3s. +C and the dog (go) (go) go/3s run/ing to her. +C (and he) and the bunny is lay/ing down on the floor. +C and the dog is try/ing to pull him. +C but (he) he can not. +C and he *is try/ing to get away [EU]. +C and the bunny is still right there. +C and now : the doctor is (um) try/ing to make him wake up. +C and then they go home. += [Eg:B2] += [Bg:B3] +C the dog is push/ing a wagon with a balloon in it. +C and[-:] (the) the bunny (s) say/3s hi. +C and he is try/ing to catch up to him again. +C (and the bunny) and the bunny look/3s at the balloon. +C and they stop. +C and then the clown : is there. +C and the bunny is try/ing to get it off. +C : and then : the balloon go/3s away. +C and they are try/ing to get it. +C and now (they) the dog is so angry at the bunny. +C and he is look/ing up like a scare/ed bunny. +C : (the bunny) : (and : the bu) : (the) : they see a boy bunny. +C and he is hold/ing a balloon[-:] : with a hat on his head. +C and the bunny is walk/ing to it. +C and : the dog is still mad at him. +C (the bunny is) the bunny point/3s at the balloon and say/3s : can I have that balloon? +C and the dog is make/ing a frown. +C and the : rabbit is make/ing : a glad face. +C : and the bunny do/3s not have any money. +C so : the rabbit : say/3s (he) (if he can not) if you do not have money you can not buy a balloon. +C : and (the bun) the dog and the bunny : (is) is[EW:are] (uh) worry/ed that : they might not get enough money to buy the balloon back. +C : and the : bunny went to (the other) the doctor bunny. +C and the dog and the bunny [~_child_yawns] stands|stand[EW:stand] there look/ing at him. +C : the bunny say/3s : me and my friend : want to buy that balloon. +C and he is not let/ing us. +C and we do not have enough money. +C so : can you lend us some? +C [~_child_makes_a_comment_under_breath] so she do/3s. +C and : she give/3s them (a balloon) each a balloon. +C they both have the balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/824.slt b/data/ENNI_SALT/train/824.slt new file mode 100644 index 0000000000000000000000000000000000000000..9537e812287b8d30379f788dcc558ae39c050248 --- /dev/null +++ b/data/ENNI_SALT/train/824.slt @@ -0,0 +1,101 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 11/27/1992 ++DOE: 11/27/2000 ++CA: 8;0;0 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 824=CHI ++Tape Location: Disk M6 Track 12 += [Bg:A1] +C the giraffe and the elephant and the ball [~_Title]. +C once upon a time (a rabbit and a) (I mean a : uh zebra and I mean) : a giraffe and a[EW:an] elephant were play/ing by the pool. +C the ball flew in. +C the giraffe came to get it. +C he gave it back. +C I love you Missus elephant [~_laughing]. +E I what? +=C I like you Missus elephant [+_bch]. +E Oh I love you Missus elephant. += [Eg:A1] += [Bg:A2] +C (the) (the el) the elephant (and the) and the giraffe in the pool, no run/ing [~_title]. +C the elephant want/ed to jump off of the jumping board. +C he ran. +C she fell. +C she : cry/ed. +C (and the) and the : giraffe came run/ing to her. +C he came to tell (her mom) [~_I_mean] the coach. +C (are) : are you okay the coach said. +C no[!] she cry/ed. +C he put a bandage on her. +C (hh) he said there. +C (no run/ing in the) no run/ing he said : because it said on the board. += [Eg:A2] += [Bg:A3] +C the giraffe and the elephant and the airplane [~_title]. +C the giraffe and the elephant were play/ing (wi) with their toy airplane. +C (the) the elephant want/ed a turn. +C (she she threw it right in the) she took it from him and threw it right[!] in the pool. +C (h) the[-:] giraffe was not very happy. +C she cross/ed her finger/s. +C he said [~_makes_'errrr'_sound] look what you did now! +C you threw my : first toy airplane in the water! +C I am tell/ing the coach. +C he ran. +C and the coach came. +C and he said I will get it. +C he could not reach it. +C he try/ed again. +C he still could not reach it. +C (he) (he s) he said (I can not rea) I can not reach it. +C ask Missus[!] elephant. +C (she came) he went to (came) come and tell her. +C and she came to get the airplane. +C she got it out with her scooper. +C (here you go mist) here you go sir (she said) (she) she said to (the) the[-:] giraffe. +C thank you he said. +C I will never play with this toy again by the water. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C the rabbit and the dog [~_title]. +C once upon a time a rabbit and a dog were build/ing a sandcastle. +C the rabbit was not very good at it. +C the rabbit pour/ed the castle over [EU]. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C the rabbit and the dog have lunch [~_title]. +C once upon a time a dog and a rabbit (were ea) were eat/ing their lunch. +C the rabbit was eat/ing everything. +C soon enough he got fat. +C he felt dizzy. +C (litt do) little dog (ra) ran to tell his mom. +C he kept on pull/ing her. +C [~_in_a_different_voice] well I must say you ate too much. +C (he took him) she took him home so that he could have a diet. += [Eg:B2] += [Bg:B3] +C the rabbit and the dog and the wagon [~_title]. +C (one) once upon a time a dog (an) and a rabbit were use/ing (their uh trailer) their (uh) trailer to go on a ride. +C they tie/ed a balloon to the top. +C it start/ed to flow[EW:float] away. +C the dog was mad. +C (the do) (the do) but the rabbit saw (something real) something that would replace it. +C he said can I have these balloon/s? +C : balloon/s five cent/s. +C I do not have any five cent/s he said [EU]. +C the dog came run/ing along. +C they felt really sad. +C the rabbit came to run to his mom [EU]. +E came to what? +=C run to his mom [+_bch]. +C mom can you buy a balloon for me he said? +C how much does it cost? +C five dollar/s. +C okay thank you. +C and they both pretend they (had big chubby : uh) big chubby tummy/s [EU]. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/825.slt b/data/ENNI_SALT/train/825.slt new file mode 100644 index 0000000000000000000000000000000000000000..abd6e789cd2f834b6d948e4e4fc7b417186807fc --- /dev/null +++ b/data/ENNI_SALT/train/825.slt @@ -0,0 +1,95 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 10/26/1991 ++DOE: 5/09/2000 ++CA: 8;6;6 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 825=CHI ++Tape Location: Disk L13 Track 44 += [Bg:A1] +C here he come/3s. +C oh hi giraffe. +C how are you? +C I will get your (ba um) ball elephant. +C oh do not drowned|drown[EW:drown]. +C oh thank you giraffe. +C I like you giraffe. += [Eg:A1] += [Bg:A2] +C Elephant why do not we go swimming [EU]? +C : I will jump in first. +C oh Elephant do not slip : and hurt yourself. +C oh Elephant are you okay? +C I will go get the lifeguard. +C there is the lifeguard. +C he will help you. +C are you okay? +C sit on this bench for awhile. +C and you will feel better. +C : next time no run/ing. += [Eg:A2] += [Bg:A3] +C hello Elephant. +C (how is) : your leg is better. +C do you like my new airplane? +C could I play with it? +C (sorry) sorry Giraffe that I drop/ed your plane in the water. +C [~_makes_growling_sound] I do not want to[:_wanna] be your friend any more. +C I do not like you. +C lifeguard I was only play/ing with it. +C I can not reach it. +C now look they will think you made (lil) (the little giraffe) the little boy giraffe cry. +C it is okay. +C I can get it out with my net. +C : see you can not[!] get it out : with your net. +C oh maybe you can. +C thank you. +C I am sorry that I said I do not want to[:_wanna] be your friend any more. += [Eg:A3] += [Bg:B1] +C a bunny and a : bunny rabbit [EU]. +E okay why do you not start now? +C oh (hi) hi bunny. +C do you want to[:_wanna] play with me in the sand? +C I am build/ing a sandcastle. +C do you want to[:_wanna] help? +C sure I will help. +C : oh no (look how sand) I pour/ed too much sand on the sandcastle. +C it broke. +C I am sorry. += [Eg:B1] += [Bg:B2] +C hi Rabbit. +C do you want to[:_wanna] have a picnic with me? +C this[EW:these] (is) sure are some good carrot/s. +C I am full. +C [~_child_makes_snoring_sound] he look/3s likes|like[EW:like] he is xx asleep. +C missus Rabbit (your um) (your lil) your son : rabbit is (um) fall/ing asleep. +C and I can not wake him up. +C hurry hurry. +C [~_stern_voice] you ate too much again. +C you are ground/ed. +C time to go home Rabbit. += [Eg:B2] += [Bg:B3] +C hi Rabbit. +C do you want to[:_wanna] come for a walk with me? +C nice balloon : Rabbit. +C I will untie it : for you. +C oh no! +C it slip/ed out of my hands. +C and I can not reach it. +C I am mad at you stinky stupid Rabbit! +C I do not like you. +C hey (there some mor) there is (a) a man over there sell/ing : some balloon/s. +C hey can I have one of those balloon/s? +C : oh : price is (five bu) five cent/s [EU]. +C oh no. +C guess I can not get *a balloon for you [EU]. +C mom : can I have five cent/s : because I want to[:_wanna] get a balloon? +C : oh thank you mama. +C now we both have balloon/s (ra) Rabbit. +C thank you Rabbit for ask/ing your mom to get me : a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/826.slt b/data/ENNI_SALT/train/826.slt new file mode 100644 index 0000000000000000000000000000000000000000..d07f036deacf4d2807743c8d2473adbc33c7a876 --- /dev/null +++ b/data/ENNI_SALT/train/826.slt @@ -0,0 +1,94 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 11/23/1992 ++DOE: 11/27/2000 ++CA: 8;0;4 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 826=CHI ++Tape Location: Disk M6 Track 26 += [Bg:A1] +C the elephant has a ball. +C and : (uh) the elephant is bounce/ing it fast. +C and the zebra want/3s to play. +C the ball bounce/3s into the water. +C the zebra is go/ing to get (it) the ball. +C the zebra (got) get/3s the ball. +C and : he give/3s it to the elephant. +C the elephant is so happy : because of : the giraffe. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C (uh) the elephant and the zebra are at the swimming pool. +C (the s) : (the z) the elephant want/3s to jump off the diving board. +C the elephant is run/ing. +C and so is the zebra. +C the sign says no run/ing. +C and : the elephant hurt her knee. +C and : the zebra is come/ing to help her. +C (uh) : the lifeguard is come/ing : to give her a bandaid. +C (the z) the lifeguard is put/ing on the bandaid. +C the sign say/3s no run/ing. +C and : she is go/ing to sit on the bench. +C he is say/ing look at the sign. +C it says no run/ing said the lifeguard. +C and the elephant said sorry[!]. += [Eg:A2] += [Bg:A3] +C the elephant and the zebra are at : the swimming pool. +C and the zebra has an airplane. +C (the z) the zebra is make/ing airplane sound/s and fly/ing the airplane. +C the elephant grab/3s the airplane. +C she drop/3s it in the water. +C the zebra get/3s mad. +C the lifeguard come/3s to help. +C (uh he is ask/ing : the li) she is ask/ing the lifeguard if : he can get the : airplane. +C (uh) he can not get the airplane. +C the zebra start/3s to cry. +C this lady come/3s with a net to get the airplane. +C she is go/ing to get the airplane. +C she get/3s the airplane and give/3s it back : to the zebra. +C the zebra is happy : that he got his airplane back. +C and so is the elephant for him get/ing his airplane back. += [Eg:A3] += [Bg:B1] +C (uh) the dog meet/3s the rabbit who want/3s to help the dog build (the cas) a sandcastle. +C the rabbit : got sand in the pail. +C he is go/ing to take some out. +C the rabbit dump/3s the pail on the castle. +C (the) the dog is : get/ing sad. +C the dog is cry/ing. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C the dog meet/3s the rabbit that is go/ing on a picnic. +C the rabbit : brought too much stuff. +C then (the dog) : [~_page_is_turned] the rabbit ate it all. +C and he had a stomachache. +C he felt weary. +C the dog went to get a doctor. +C the doctor came over to see what was the matter. +C the rabbit : was sick. +C the doctor was : go/ing : to help the rabbit. +C the doctor brought the rabbit home. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C the dog had a balloon tie/ed on it/z wagon. +C the rabbit is go/ing to take it off. +C the rabbit (took) take/3s it off. +C the balloon float/3s away[-:]. +C the rabbit is look/ing at the balloon. +C and the dog is really angry. +C (the dog is :) the rabbit see/3s a man sell/ing balloon/s that are (ow) okay. +C the rabbit say/3s can we have two balloon/s please? +C the balloon salesman say/3s (for a balloons[EW:balloon]) balloon/s five cent/s each. +C but (the) they did not have any money. +C so they could not buy it. +C the rabbit ask/3s his mom for : ten cent/s. +C (uh) he want/3s to buy two balloon/s[-:]. +C his mom pay/3s for the balloon/s[-:]. +C (they both have the s) they both have a balloon. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/828.slt b/data/ENNI_SALT/train/828.slt new file mode 100644 index 0000000000000000000000000000000000000000..80da4b4794bd0c0781d910922c5c12ecd4848891 --- /dev/null +++ b/data/ENNI_SALT/train/828.slt @@ -0,0 +1,82 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++CA: 8;5;28 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 828=CHI ++Tape Location: Disk M7 Track 34 += [Bg:A1] +C (um) : the elephant got a ball. +C (th) : it bounce/ed in the water. +C the donkey swam to get it. +C (um : the donkey got) [~_actually_that_(i)s_a_giraffe__is_n(o)t_it_#_well] the giraffe got : for the elephant [EU]. +E got what? +=C got the ball for the elephant [+_bch]. +C the elephant (l) : said thank you. += [Eg:A1] += [Bg:A2] +C (um) : the[-:] elephant and the giraffe : want/ed to go swim/ing. +C (um) the elephant said let us go (in) in the pool. +C she ran : over to the[-:] diving board. +C she (um) scrape/ed her knee. +C (um) the giraffe got the lifeguard. +C the lifeguard put a bandage on the elephant/z knee. +C (the) (the : giraffe : uh um uh) : the lifeguard said you are okay now. +C the lifeguard said no run/ing. += [Eg:A2] += [Bg:A3] +C (um) : the giraffe got a : new airplane. +C the[-:] giraffe was play/ing with it. +C the elephant grab/ed it away. +C the elephant drop/ed it in the water accidentally. +C (um) the giraffe got : mad. +C the lifeguard came. +C and : the elephant explain/ed what happen/ed. +C the lifeguard try/ed to get it. +C but he could not. +C the : giraffe cry/ed. +C (the : la uh : well) the pool lady got it out for him. +C (um : she try/ed to get it out) [~_well,_I_can_n(o)t_xx_this_one_#__well] she was get/ing it out. +C she got it out for the giraffe. +C the giraffe was very happy. += [Eg:A3] += [Bg:B1] +C (um : hmm :) the rabbit want/ed to play with the [~_what_is_it_a__dog_or_something] dog. +C (um) they built a sandcastle [~_CHI_knocks_into_something,__says_'sorry']. +C (um) the rabbit dump/ed sand all over the sandcastle. +C the rabbit (was say/ing sorry) said sorry. +C (um then : uh) [~_I_can_n(o)t_think_of_one_for_this_picture] and then they rebuilt (another uh) another castle. += [Eg:B1] += [Bg:B2] +C (um) : the rabbit and the dog (want/ed to have a picnic) [~__well] went to have a picnic. +C (uh) the rabbit got hungry. +C so he ate before the dog. +E he ate what? +=C before the dog [+_bch]. +C and then he got full. +C and the dog just start/ed to eat. +C (he) he got a bellyache. +C and dog : [~_I_can_n(o)t_think_of_one] [~_well] he got a bellyache. +C the dog (call/ed) got the doctor. +C (uh um) the dog told the doctor that his friend had a bellyache. +C (um the doctor um :) [~_I_can_n(o)t_think_of_one_for_this_one,__it_(i)s_too_hard] (the doctor) [~_I_can_n(o)t_it_(i)s_really_hard] [EU]. +E do you want to skip that page then? +C the doctor (um) : said do not eat too much food next time. += [Eg:B2] += [Bg:B3] +C (um) : the rabbit and the dog had a balloon : that was tie/ed onto a wagon. +C [~_actually] the dog[!] had a balloon that was tie/ed onto the wagon. +C the rabbit want/ed to hold it. +C the rabbit untie/ed it. +C the balloon (flo) float/ed up into the air. +C the dog got mad. +C they saw : a person sell/ing balloon/s. +C the rabbit said I want one of those. +C the rabbit did not have any money. +C so (um) he could not get a balloon. +C (um) : they really want/ed a balloon. +C they went to the doctor : and said can you get me a balloon? +C then the doctor paid for the balloon/s. +C they love/ed their balloon/s and said thank you. += [Eg:B3] diff --git a/data/ENNI_SALT/train/829.slt b/data/ENNI_SALT/train/829.slt new file mode 100644 index 0000000000000000000000000000000000000000..7179ea910b0795f2f159a01017ddde06886b6ee8 --- /dev/null +++ b/data/ENNI_SALT/train/829.slt @@ -0,0 +1,87 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 11/19/1991 ++DOE: 5/10/2000 ++CA: 8;5;21 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 829=CHI ++Tape Location: Disk L13 Track 58 += [Bg:A1] +C they are : bounce/ing a ball : on the sidewalk. +C : (and) : and the ball fall|fall[EW:fell] in the water. +C (and the mo) (and the moose) : (then) then the moose cross/ed the lake to get it. +C (and) (and um) and (um) moose get|get[EW:got] it. +C (and a) and it feel|feel[EW:felt] happy. +C and then everyone (be s) be[EW:is] shy. += [Eg:A1] += [Bg:A2] +C : they are : stand/ing on the (sw um) [~_I_mean] the swimming pool. +C [~_sneezes_loudly] and the elephant went and (jump on the um) : (in the) jump[EW:jumped] in the swimming pool. +C (then[-:]) then the elephant : climb|climb[EW:climbed] up here and dance|dance[EW:danced]. +C : (then) (then him fa) then him[EW:he] fall|fall[EW:fell] and hurt himself. +C (and then) and the moose : come|come[EW:came] back (and) with the elephant. +C and the elephant : (um) fix|fix[EW:fixed] [~?_pronounced_fit] her knee. +E can you say that again, the elephant [+..]. +=C fit her knee [+_bch]. +C and then her[EW:she] can not swim. +C : and no run/ing across : the swimming pool. += [Eg:A2] += [Bg:A3] ++COMMENT: CHI comments that they're all the same; EXA says "same characters" +C and (they) : they feel happy. +C and (then) (then) then the (um) happy couple tee[EW:take] [~__maybe_means_take] off. +C (then) and then the elephant (um) catch|catch[EW:caught] it. +C (and the) and the elephant : plop|plop[EW:plopped] him in the water. +C then (it sinked|sink[EW:sank]) (th) : the (um) airplane sinked|sink[EW:sank] into the water. +C and then the diver : saw. +=C (and) : (and then) : [+_bch]. +E do you want me to turn? +C and then they feel mad. +C and the diver (um) reach|reach[EW:reached] : up to see. +C and then he can not do it. +C (and then) (and then) (and) and then the elephant : got (um) a fish thing to catch fish. +C and (then) then he pull|pull[EW:pulled] up [EU]. +C (and the a) and the : airplane : lift|lift[EW:lifted] up. +C (and then) and (then) then the elephant fix|fix[EW:fixed] [~?_fit] him back [EU]. +C then him[EW:he] feel|feel[EW:feels] happy. += [Eg:A3] += [Bg:B1] +C they are make/ing a sandcastle. +C and the baby (um) : mussed her castle [EU]. +C (and then) and then him[EW:he] : put more sand on it. +C and then : the castle fall|fall[EW:fell] down. +C and he feel|feel[EW:felt] sad. += [Eg:B1] += [Bg:B2] +C they are : walk/ing in the : forest. +C and they make/ing (um) : a picnic [EU]. +C and the bunny feel|feel[EW:felt] : sick. +C and then : he feel|feel[EW:felt] really really dizzy. +C and then the doctor : run|run[EW:ran] : to him. +C help help! +C everybody : (f um) : full [EU]. +C (and the) : and the doctor : fix|fix[EW:fixed] him. +C and he feel|feel[EW:felt] better. += [Eg:B2] += [Bg:B3] +C they are pull/ing (a) : a wagon. +C and the bunny : (he wa) he want|want[EW:wanted] some help. +C look look [~_said_twice_for_effect] a balloon. +C well take it. +C and (him) (him) him[EW:he] untie|untie[EW:untied] it. +C (and) : and the bunny : tie[EW:untied] him [EU]. +C and the balloon take|take[EW:took] off. +C and the dog feel|feel[EW:felt] mad [~_makes_growling_sound]. +C and the clown : got[EW:has] a lot of balloon/s. +C can I have one please? +C and he did [EU]. +C [<~?_I_got]it cost[>~?_I_got] five dollar/s. +C please please can we have one for free? +C nope. +C and a train come|come[EW:came] to : him [EU]. +C can you buy me one of these : please? +C : then he did. +C then he feel|feel[EW:felt] happy. += [Eg:B3] diff --git a/data/ENNI_SALT/train/831.slt b/data/ENNI_SALT/train/831.slt new file mode 100644 index 0000000000000000000000000000000000000000..ad1869833041b9535424308b7f5c94b26f1ab182 --- /dev/null +++ b/data/ENNI_SALT/train/831.slt @@ -0,0 +1,121 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 10/16/1991 ++DOE: 5/10/2000 ++CA: 8;6;16 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 831=CHI ++Tape Location: Disk L13 Track 68 += [Bg:A1] ++COMMENT: first 5 lines are false start - do not code +=C : she is bouncing a [+_bch] [+..]. +=C (and the gym teacher) (and the gym) (and the gym person) [~_no] and the gym guy is walking [+_bch]. +=C then he sees him [+_bch]. +=C and (he says) and he is think/ing that that girl is good [+__bch]. +=C so he wants him to be on his team [+_bch]. +=C or I know another story [+_bch]. +C (or he wants to learn or) this kid want/3s to learn. +C (and) and he want/3s to play with the ball too. +=C there is[EW:are] two story/s [+_bch]. +E umhm. +C : then he take/3s it away from her. +C then it bounce/3s to the water. +C (then she) (then she is) then she is sad. +C and he go/3s in and swim/3s (to get th) [~_sounds_like_mic_drops] to get it. +C and he give/3s her back the ball. +C : and she like/3s him. += [Eg:A1] += [Bg:A2] +C : oh then they want to go swim/ing. +C then she want/3s to be the first one in. +C so she is run/ing. +C but then she slip/3s. +C and he come/3s to help her. +C then she hurt/3s her knee/s and cry/3s. +C and : the : watcher : came : over to help her too. +C she is cry/ing. +C she is give/ing (him) her a bandaid. +C (and she sa) and he say/3s to her (sh) you should not run. +C she is sit/ing on : the rest : get better [EU]. +C but then he say/3s no run/ing. += [Eg:A2] += [Bg:A3] +C (he want/3s) she want/3s to play with his airplane. +C : and (sh) he : will not let him. +C (and she is try) and he is try/ing to show off. +C then she take/3s it from her. +C and then she get/3s happy and start/3s play/ing with it. +C and (he) : she drop/3s it into the water. +C and he get/3s mad at her. +C : (then) then she is kind of worry/ed because he is mad at : (hi) her. +C and the lifeguard come/3s to see what is happen/ing. +C and she is say/ing to the lifeguard I did not do it and all that stuff. +C and he go/3s and try/3s to get it. +C and he can not. +C so then he is cry/ing. +C then she[!] come/3s, another lifeguard. +C and she is go/ing to[:_gonna] take the thing and get the paper airplane out. +C and she get/3s it out. +C (and she has it for) (and he ge) and he gets happy xx. +C and he smile/3s at her : and laugh/3s at her. += [Eg:A3] += [Bg:B1] +C a rabbit and a dog [EU]. +C and the dog is : play/ing in the sandbox make/ing a castle. +C and the rabbit : see/3s him and : say/3s can I play? +C and they start play/ing. +C and they make the castle. +C (and) (and he ma) and he pour/3s a whole bunch of dirt on and ruin/3s it. +C : then she is a little [+//]> +=C : why is she happy [+_bch]? +E why is she happy, what is happen/ing? +C [~_oh_-:] because now it look/3s like (a castle) a[EW:an] underground castle. +C : [~_oh] now she is go/ing to[:_gonna] try to make it again. += [Eg:B1] += [Bg:B2] +C they are go/ing for a picnic. +C and he meet/3s his friend. +C : and : (he only get/3s a little bit of s) he only get/3s a sandwich. +C he get/3s (all) all yummy stuff. +C (and he is) (and he is) and he want/3s some. +C but he eat/3s it all. +C so (he is try/ing to eat it : to see) (to show[-:] him) [~_no] he is happy because he got a stomachache from that. +C : (he) : (he) he got knock/ed out. +C and he go/3s and tell/3s the lady that is walk/ing : by that (ee) guy. +C and it is a doctor. +C : she see/3s him knock/ed out. +C then the doctor get/3s worry/ed. +C and he is carry/ing : her over (to). +C now she is see/ing what is the problem. +C and (then) then she fix/3s his problem. +C and he is all right. +C and he go/3s back home. += [Eg:B2] += [Bg:B3] +C [~_hey] a dog is in there : and a rabbit. +E Okay C go ahead and start now. +C : she is (um) take/ing (a ca um) a cart : to (pl) (play[-:] something) to play. +C she is roll/ing the cart. +C then he has a balloon. +C (and) and : he show/3s it. +C then he get/3s : (um) : happy [EU]. +C and he want/3s to (take) grab the balloon off. +C he try/3s (to) : it. +C but he scream/3s : no. +C : and it fly/3s away. +C and (then) then she get/3s angry. +C (then) (then there is a balloon man) then there is a balloon man (sel) sell/ing balloon/s. +C and he is run/ing to get some for her. +C (then) : then he is ask/ing the balloon man if he can have some. +C : (and) : and he has no change. +C : then he get/3s sad. +C and they look xx. +C : then he go/3s : to see : a doctor. +C : and he say/3s to the doctor (bo) this girl she is really sad : because (she can not : finish) she do/3s not have any money. +C so he ask/3s [~_pronounced_'askes'] him if he could have some money. +C and he give/3s them [EU]. +C then they both get balloon/s. +C : then they are all happy. += [Eg:B3] diff --git a/data/ENNI_SALT/train/834.slt b/data/ENNI_SALT/train/834.slt new file mode 100644 index 0000000000000000000000000000000000000000..e994c7e25beb3a77c9a659ce917cff22c372efdf --- /dev/null +++ b/data/ENNI_SALT/train/834.slt @@ -0,0 +1,98 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 5/18/1992 ++DOE: 1/30/2001 ++CA: 8;8;12 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 834=CHI ++Tape Location: Disk L24, Track 46 += [Bg:A1] +C there is a giraffe and[!] an elephant. +C the elephant is bounce/ing a ball. +C and (they are) they are by a : swimming pool. +C and the ball bounce/ed in. +C then the : giraffe[!] : jump/ed in the water and swam after it. +C the giraffe got the ball back to the elephant. +C and then he was : soak/ed. +C and he was say/ing thank you to the : elephant. += [Eg:A1] += [Bg:A2] +C there is a giraffe and an elephant. +C the elephant[!] want/ed to go off the diving[!] board. +C the sign said no run/ing. +C and the giraffe : start/ed to run to the : diving board. +C the giraffe ran (and slip) and slip/ed. +C (the giraffe hurt her knee) (so the) : [~_I_mean] the elephant (hurt) hurt her knee. +C and the giraffe (st) (ran) walk/ed to the giraffe. +C the giraffe : got a lifeguard. +C and the lifeguard help/ed the giraffe by put/ing on a bandaid. +C and (the giraffe sat on the bench) : [~_I_mean] the elephant[~!_laughing] sat on the bench [~_I_get_mixed_up]. +C (and the elepha) and the lifeguard (said) show/ed the elephant where the no run/ing sign was. += [Eg:A2] += [Bg:A3] +C there is a giraffe and a[EW:an] elephant by the pool. +C the giraffe[-:] : has a[-:] plane. +C the giraffe start/ed to fly the plane. +C and then the : elephant grab/ed[!] the plane from the giraffe. +C the elephant accidentally drop/ed the plane in the pool. +C the[-:] giraffe got really mad[!] at the elephant. +C the lifeguard : he walk/ed over. +C and both[!] of them : (look/ed) (were look) were look/ing at him : for some weird reason. +C and then the elephant : (um) told them what happen/ed. +C and : so the lifeguard try/ed[!] to reach in and get the plane. +C he could not get it. +C so the : giraffe start/ed to cry. +C then another elephant came with a big[-:] long net. +C she reach/ed it in and grab/ed the plane : and gave the plane back to the giraffe. +C then the giraffe : was really happy that he had his plane back. += [Eg:A3] += [Bg:B1] +C (there is a) (there is a) there is a rabbit. +C and there is a little dog. +C and : the dog was make/ing a sandcastle. +C and the rabbit want/ed to make it too. +C so the dog invit/ed him over. +C then the dog : and[!] the rabbit work/ed together to make the sandcastle. +C the rabbit dump/ed a whole bucket of sand on[!] the castle. +C (then the whole) then the whole castle was cover/ed in sand. +C and it all fell down. +C then the dog : start/ed to cry because his castle was ruin/ed. += [Eg:B1] += [Bg:B2] +C (there is) there is the same dog and the same rabbit. +C and (they are : on) (there is) they are on a path in the wood/s. +C and the dog say/3s hi to the rabbit. +C but they both have a picnic together : (on) : on all the grass. +C the rabbit (ate) : ate all[!] of his food. +C and the dog is still eat/ing his. +C (the rabbit go) (is) the rabbit got a stomachache. +C and the dog look/ed worry/ed. +C the dog ran to the rabbit/z : Mom or someone else (and) (an) and told her that : (the ra) the rabbit has a stomachache. +C he yank/ed her over : to the sandbox. +C and then (the) she start/ed to : give the rabbit heck (for eating[~!_laughing] too much food) for : eat/ing too much food too fast. +C (then) then the rabbit start/ed to feel better. +C and they both walk/ed home. += [Eg:B2] += [Bg:B3] +C there is a dog and the rabbit again. +C the dog (ha) just got a brand[!] new wagon : with a balloon hang/ing on to it by a string. +C the rabbit came along : and compliment/ed : on his wagon. +C then the rabbit was start/ing to untie[!] the balloon. +C then the balloon flew way[!] up into the air. +C and they both try/ed to grab it. +C it flew too high. +C and the rabbit : was[-:] scare/ed. +C and the dog was really[!] mad. +C (and then they both) (then the rabbit) and the dog was still mad. +C the rabbit saw a guy with balloon/s[!]. +C so the rabbit ran there and (took) got a balloon. +C and the balloon/s were five cent/s. +C but he had no money. +C (then) : then both of them thought they were out of luck. +C (and the) and the rabbit ran[-:] to his grandma : and ask/ed for five cent/s because he want/ed to buy one. +C so she got five cent/s. +C they took it. +C (and : the rabbit) and both[!] of them got a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/836.slt b/data/ENNI_SALT/train/836.slt new file mode 100644 index 0000000000000000000000000000000000000000..5a02f997ec896fc5b3e60c8bf51c6a55db6f65f9 --- /dev/null +++ b/data/ENNI_SALT/train/836.slt @@ -0,0 +1,122 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 4/15/1992 ++DOE: 2/02/2001 ++CA: 8;9;18 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 836=CHI ++Tape Location: Disk L24, Track 88 += [Bg:A1] +C (one) (one) (one) (as) (as um) [~_is_that_a__giraffe_#_probably] (as a) as one day a giraffe was walk/ing to the swimming pool he saw a girl with : a ball bounce/ing it up and down! +C the ball fell into the water. +C the girl : yell/ed yeeks! +C the giraffe jump/ed in : to save the ball for her! +C he took it to the girl. +C she said thank you. +C (they start/ed) : he got out of the pool. +C (and) and he said you are welcome. +C she said you are so[!] brave. +C you could do it anytime : when my ball fall/3s in. += [Eg:A1] += [Bg:A2] +C as the elephant and the giraffe were walk/ing : they saw the big swim/ing pool. +C and they saw a sign say/ing no run/ing. +C (the dog) the elephant start/ed to run[!]. +C (the) (the guy) the giraffe was look/ing at her. +C he was go/ing to say no you should not run! +C but she went anyway/3s! +C and he went too. +C she fell down and hurt her knee on the cement by the pool. +C (the guy) the giraffe start/ed to (chase him) chase her (t) to where she fell. +C he call/ed the lifeguard[!]. +C and he came for (h) help. +C (she p) he put a bandaid on her knee that she scrape/ed. +C they took her to a bench. +C and the lifeguard said : no run/ing. +C he show/ed her the sign. +C she made a frown. +=C and that is the end [+_bch]. += [Eg:A2] += [Bg:A3] +C the giraffe and the elephant were play/ing together. +C the giraffe brought a[EW:an] airplane to play with the pool. +C he was play/ing with the airplane. +C (the) the elephant got dizzy. +C she want/ed to play with it. +C so she took it away. +C she (thr) accidentally threw it in the water. +C the giraffe (got) he went yikes! +C and he got mad[!] at her. +C the lifeguard saw what happen/ed. +C the elephant start/ed to say to the lifeguard I accidentally (dropped) drop/ed my friend/z : airplane into the water! +C so the lifeguard start/ed : to go after it : on the edge of the pool. +C (he could not) he could not get it. +C (the gir) the giraffe start/ed to cry. +C a lady (she) she took a net. +C (sh) she start/ed to smile at them. +C (she) she took the net put it in the water to try to get out the plane. +C she got the plane. +C she gave it back to the giraffe. +C he said thank[!] you. +C he gave it a big hug. +=C and that is the end [+_bch]. += [Eg:A3] += [Bg:B1] +C as : the dog and the rabbit start/ed to play the rabbit ask/ed if he could (help) help the dog : build a sandcastle. +C the dog start/ed help/ing the rabbit. +C the rabbit took a bucket and fill/ed it with sand! +C the rabbit took the bucket. +C he put (it) all the sand on the sandcastle! +C the dog and the rabbit : they went yeek[!] together : all at the same time. +C (the d) the dog start/ed to cry. +C the rabbit felt shy. += [Eg:B1] += [Bg:B2] +C (rabbit had) rabbit *was start/ing to walking[EW:walk] the dog [EU]. +C the dog (start/ed) saw the rabbit walk/ing. +C he said come along! +C walk with me! +C the rabbit took out his picnic. +C the dog only had a sandwich. +C the rabbit had almost everything : to eat! +C the dog had a : juice : and a sandwich. +C he had not ated|eat[EW:ate] it yet. +C the rabbit ate everything[!]. +C he did not have a crumb left! +C the dog still was not eat/ing. +C the rabbit start/ed to get dizzy. +C the dog ran to the : rabbit/z Mom! +C he said come for : help[!]. +C he started pull/ing her and pull/ing her : to where the rabbit was. +C (the wo) the rabbit/z : Mom said do not eat too much. +C or else you will get a stomachache! +C so she took him home to his own[!] place. +=C and that is the end [+_bch]. += [Eg:B2] += [Bg:B3] +C (when a) (when um) when Dog was walk/ing with his balloon (in his wheel) in his : [~_what_was_it_called_what_is_it__called_#_I_(wi)ll_just_say_wheelchair] : a (wagon) wagon Rabbit start/ed to walk along. +C he said hello! +C Rabbit said what a nice balloon. +C so he look/ed at it. +C he want/ed to untie it. +C and he did! +C (and the) and he let go. +C and the balloon went up and up and up : and more up[!]. +C they could not catch it! +C the dog got so mad. +C and the rabbit saw a another rabbit carry/ing : some balloon/s? +C he said can I have this one please? +C and the guy said (f) balloon/s five cent/s. +C and : the rabbit check/ed his pocket/s. +C he had nothing. +C so : the dog and the rabbit they both went up. +C the rabbit with the balloon/s (he) he look/ed at them : down below! +C the rabbit went to a doctor[!] and ask/ed for help. +C he ask/ed (for) to the doctor : can you please : get a balloon for my friend? +C (so she) so she paid : the rabbit five cent/s for two[!] balloon/s. +C they both got one. +C and they were happy! +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/837.slt b/data/ENNI_SALT/train/837.slt new file mode 100644 index 0000000000000000000000000000000000000000..c7072a94227897b234471d96c6c77186570fe544 --- /dev/null +++ b/data/ENNI_SALT/train/837.slt @@ -0,0 +1,89 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 12/29/1991 ++DOE: 6/12/2000 ++CA: 8;5;14 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 837=CHI ++Tape Location: Disk L18 Track 9 += [Bg:A1] +C Two dragon/s are play/ing by the park. +C and there is this pool in the park. +C and this ball fall/3s in the water. +C (the b) the boy dragon try/3s to get the ball by swim/ing to it. +C and he get/3s the ball. +C (h) the girl elephant (is ha) thank/3s him for get/ing the ball. += [Eg:A1] += [Bg:A2] +C There is[EW:are] these two (: um) kid/s. +C and [~_softly] : they want to go swim/ing. +C the elephant run/3s and slip/3s over. +C the elephant hurt her knee. +C the[-:] giraffe went to go get the lifeguard. +C the lifeguard put a bandage on : the elephant/z knee. +C the elephant sat down on the bench. +C the lifeguard was angry because (she did not) she was run/ing. += [Eg:A2] += [Bg:A3] +C Two : animal/s are play/ing near (the sea) [~_I_mean] the pool. +C the giraffe is fly/ing (a) a plane. +C the elephant watch/3s. +C the elephant (ta) snatch/3s the : plane from the giraffe/z hand. +C and she drop/3s it into the pool. +C the giraffe is angry with the elephant. +C the lifeguard : came and : ask/ed what is the matter. +C the : giraffe said : that the elephant (threw the) snatch/ed the plane from (the) his hand and threw it in the water. +C the lifeguard try/s to get the : plane. +C but he can not. +C the giraffe is sad : because he could not get his plane. +C and then another lifeguard came (an) with a net. +C she grab/ed the plane in the net. +C and she gave it back to the giraffe. +C the giraffe was happy that he got his plane back. +C and the elephant ask/ed if she could play with it. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C (a) two bunny/s were play/ing in the sand park. +C (the bunny) one of the bunny/s were[EW:was] : make/ing a sandcastle. +C the other one was help/ing. +C but then the other bunny just : threw some sand onto the castle. +C : and then they were (sa) shock/ed because it fell down. +C (the : one) the bunny who threw the sand : just : pretend/ed he did not do anything. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C a bunny and a wolf were play/ing together (in) in the : forest. +C they had the picnic in the open : field. +C and the bunny was : eat/ing lots. +C then the bunny just (lie) lie/ed down with a fat stomach. +C suddenly the bunny felt sick. +C the wolf went to get the bunny/z mom. +C the bunny/z mom : went with the wolf. +C the bunny/z mom was a doctor. +C and she : said you should take a rest to the bunny. +C finally the bunny felt better. +C and they walk/ed home. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C a bunny and a dog were (wal) take/ing a walk. +C the dog had a balloon with him. +C the bunny was try/ing to get the balloon. +C the bunny : made the (lo) dog lose the balloon. +C and it float/ed away. +C the dog was angry with the bunny : because : that was his only balloon. +C suddenly they saw (a m) (a b) a bunny : with a whole bunch of balloon/s. +C the bunnies ask/ed if they could buy one of them. +C (the bun) the big bunny said : yes you can. +C but : they are five cent/s. +C the bunny did not have any[!] money. +C suddenly he saw his mom. +C he ask/ed his mom if he could have five cent/s for a balloon. +C the (bunn) bunny/z mom gave the : big bunny (five cent/s and) : ten cent/s. +C and (the) : both the dog and bunny could have balloon/s. +C the dog and the bunny were play/ing together : with the balloon/s. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/838.slt b/data/ENNI_SALT/train/838.slt new file mode 100644 index 0000000000000000000000000000000000000000..50dfeb7d36ab4ace302d5f97a97aaa41700d5279 --- /dev/null +++ b/data/ENNI_SALT/train/838.slt @@ -0,0 +1,83 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 7/16/1992 ++DOE: 2/02/2001 ++CA: 8;6;17 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 838=CHI ++Tape Location: Disk L24, Track 98 += [Bg:A1] +C once Giraffe and Elephant were[aux] play/ing ball. +C Elephant accidentally threw[ip] the ball in the water[!]. +C : Horse went[ip] to get it : [~_I_mean] (Giraffe). +C (um) then : Horse (uh) : gave[ip] the ball to : Elephant. +C (and they both got out) and Giraffe got[ip] out of the water. +=C : and [+_bch] [+..]. += [Eg:A1] += [Bg:A2] +C one[!] day Giraffe and Elephant were[aux] play/ing beside the water[!]. +C Elephant[!] : was[aux] go/ing to : go in the water. +C then she slip/ed : and fell? +C she had[ip] a big scar. +C and it was[aux] (really) really hurt/ing. +C so Giraffe went[ip] to go get some help. +C Elephant was[aux] cry/ing. +C so : Giraffe got[ip] the lifeguard. +C she was[aux] cry/ing lot/s. +C and the lifeguard put a bandage on it so it would[modal] feel better. +C she could[modal] not walk that good. +C so Giraffe and the lifeguard help/ed her home. +C the lifeguard point/ed to the sign *that [EMORPH] *said[ip] [EV] no running [EU]. +C and that taught[ip] her a lesson. += [Eg:A2] += [Bg:A3] +C once : Giraffe and Elephant were[aux] play/ing with : Giraffe/z (out) airplane. +C Giraffe was[aux] fly/ing it high[-:] : and over : Elephant/z head. +C so Elephant took[ip] it from Giraffe. +C she accidentally threw[ip] it in the water[!]. +C Giraffe cwas[cop] (really) really mad at : Elephant. +C the lifeguard came[ip] : and : was[aux] go/ing to get it out. +C so they explain/ed to him : what happen/ed (and) so he can[modal] get it out. +C so : he was[aux] try/ing to reach for it. +C but he could[modal] not reach it. +C so : the lady lifeguard came[ip] with a net : and scoop/ed up the airplane : gave[ip] it back to Giraffe. +C and Giraffe cwas[cop] happy as can[modal] be. += [Eg:A3] += [Bg:B1] +C once there cwas[cop] (a) (a rabbit and a) [~_no] a girl rabbit and a : girl dog. +C they cwere[cop] really best friend/s. +C and they were[aux] play/ing in the sandbox together make/ing a : sandcastle. +C then : the : girl bunny dump/ed a whole bunch of sand on the sandcastle. +C then : (she) (she um) : she got[ip] mad at herself because : she accidentally ruin/ed the whole thing[!]. +C and then Dog start/3s cry/ing. +C Bunny was[aux] look/ing up and : feel/ing (ba) embarrassed. += [Eg:B1] += [Bg:B2] +C (as bunny and) as Bunny and Dog walk/ed down the : street with their : basket/s : they walk/ed along and : had[ip] a picnic. +C while they were have/ing a picnic : Rabbit ate[ip] (all) most of the food. +C Rabbit got[ip] full and had swirl/s around his head. +C then : Dog went[ip] to go get (h) her mother. +C she pull/ed[-:] [OTHER] her way[-:] over where Bunny cwas[cop] [EU]. +C they[EW:it] [EPRONOUN] happen/ed to be that Bunny cwas[cop] sick [EU]. +C so : her mom (took her therm) took[ip] her temperature. +C and : she cwas[cop] : sick. +C so they went[ip] home. += [Eg:B2] += [Bg:B3] +C once upon a time there cwas[cop][cnumerr][EW:cwere] [EV] Dog and Rabbit [EU]. +C (rabbit had a) [~_I_mean] Dog had[ip] a : balloon tie/ed : to the wagon. +C Rabbit untie/ed the : balloon off the wagon. +C (it) the balloon went[ip] (up) up and away! +C Dog got[ip] mad because it cwas[cop] (her balloon) her favourite[!] balloon. +C (and she could not) and she would[modal] not : stop get/ing mad at : Bunny. +C there cwere[cop] more balloon/s at : Mister Bunny/z : shop. +C but she did[aux] not want a new one. +C so Rabbit[!] got[ip] her one. +C Rabbit did[aux] not have enough money[!] to buy : a balloon (so) . +C they look/ed up at Mister Rabbit and : walk/ed away. +C (rabbit) Little Rabbit point/ed at Mister Rabbit : and said[ip] : yay (our mom) my Mom is[aux] go/ing to give us money for the (ba) balloon/s! +C thanks Mom! +C they both had balloon/s and would[modal] not let them go. += [Eg:B3] diff --git a/data/ENNI_SALT/train/840.slt b/data/ENNI_SALT/train/840.slt new file mode 100644 index 0000000000000000000000000000000000000000..e5705aeac219a2e677887152cace574e1b04fec2 --- /dev/null +++ b/data/ENNI_SALT/train/840.slt @@ -0,0 +1,98 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 11/19/1992 ++DOE: 2/02/2001 ++CA: 8;2;14 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 840=CHI ++Tape Location: Disk L24, Track 102 += [Bg:A1] +C one day a brother and a sister were : play/ing outside in their back yard : by their pool. +C and (the[-:]) : the sister was bounce/ing the ball. +C but then it fell in the water. +C (and then he went) and then the brother went to go swim : for the ball. +C and then he gave it back. +C and then she was happy. += [Eg:A1] += [Bg:A2] +C one day (a) a brother and a sister were[-:] : by their swimming pool. +C the sister want/ed to go swimming! +C she ran : really fast. +C and she slip/ed. +C (and she br) and she hurt her knee. +C and then the brother came. +C and then the lifeguard came. +C and they (um : gave um) gave them a bandage. +C [~_I_mean] (they um) they clean/ed it. +C and (then gave them a bandage) then they gave the sister a bandage. +C (and then they help/ed them walk to the be) and then they help/ed her walk to the bench. +C and then the lifeguard said go[!]. += [Eg:A2] += [Bg:A3] +C one day there was a brother and a sister. +C (and they) and the brother said : do you want to play with my plane? +C and the sister said okay. +C (then h) then he show/ed her how to : (um) use it. +C and then she went ah. +C and then she took it. +C and she try/ed. +C (and it) and when she[!] threw (it) it fell in the water! +C and then he got really[!] mad. +C and she was cry/ing. +C and the lifeguard : look/3s puzzle/ed[-:]. +C and : (the d) the sister said : I threw the plane. +C and it fell in the water. +C and then the lifeguard (try/ed to get it) try/ed to get it. +C and he could not get it. +C and then (the br) the brother was cry/ing. +C and then the mom came. +C and she had a net. +C and she scoop/ed the plane up with the net. +C (and he s) (he was) and (the boy) the brother was happy again. +=C (the) the end [+_bch]. += [Eg:A3] += [Bg:B1] +C there was a bunny and a dog : I guess. +C dog was build/ing a sandcastle. +C and the : rabbit was (goin) was try/ing to help. +C but when he pour/ed the pail of sand on it it broke the sandcastle. +C and then : the dog : was (um) : puzzle/ed : I guess. +C and then he start/ed to cry. +C and the rabbit felt sorry. += [Eg:B1] += [Bg:B2] +C one fine day there was : a dog and a rabbit. +C and they were go/ing for a picnic! +C the rabbit had lot/3s of food. +C and the (um) dog had a sandwich : and a juice box. +C and the rabbit : was full[-:]. +C and the dog was still eat/ing. +C (uh) : and : the dog just finish/ed eat/ing. +C and the rabbit had a (tum) stomachache. +C the dog went to go get a doctor. +C the doctor came. +C the doctor (um check/ed) check/ed the rabbit. +C (the) (the rabbit) [~_okay] the doctor : took the rabbit. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C once[-:] (the) there was a dog. +C (and he was using) and he was : use/ing his wheelbarrel. +C (and it was) and there was a balloon tie/ed to his wheelbarrel. +C (and then the ra) and then a rabbit saw the balloon. +C and he[!] want/ed it. +C so he untie/ed the balloon. +C and it sail/ed up. +C and it sail/ed up. +C and then[-:] they saw a balloon man. +C but (he said can I have) the rabbit said can I have one? +C (the) (the r) the balloon man said five[!] cent/s. +C (so they s) (so they wen) so they left. +C and then they found a doctor. +C (and he) and they said can I have (fi) five cent/s? +C and then : (he gave) the doctor gave him ten cent/s so they both[!] could have a balloon. +C and they both had balloon/s. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/842.slt b/data/ENNI_SALT/train/842.slt new file mode 100644 index 0000000000000000000000000000000000000000..fc362ec6f6ea8105e3416010489148739546c05f --- /dev/null +++ b/data/ENNI_SALT/train/842.slt @@ -0,0 +1,111 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 9/16/1992 ++DOE: 2/02/2001 ++CA: 8;4;17 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 842=CHI ++Tape Location: Disk L24, Track 112 += [Bg:A1] +C (one) one day : a[EW:an] elephant was : go/ing to go swimming. +C and he was bounce/ing three ball/s at the exact same time. +C (n then) and then[-:] the elephant : drop/ed : all of them in the pool. +C then the : guy went swim/ing for all of them. +C and they[-:] both play/ed ball together. +C (and : the elephant) then they stop/ed play/ing. +C and the elephant (tooked|take[EW:took] it) took it. += [Eg:A1] += [Bg:A2] +C (then) then the next day : the elephant went swim/ing again. +C then she : ask/ed if she could go in the pool! +C (I ee) then she start/ed run/ing. +C but then the other guy start/ed run/ing after her to tell her (to) : not to run. +C and then she fell down and hurt herself. +C and she start/ed to cry. +C and then the lifeguard came. +C and : he put a bandaid on her. +C (and then) and then she had to sit on the : bench. +C (and the li) and the lifeguard ask/ed what she was do/ing. +C and she said she was run/ing. +C and the lifeguard said can not you see the sign [EU]? +C there is no[!] run/ing. += [Eg:A2] += [Bg:A3] +C that afternoon : (the) : the elephant/z friend came. +C and he brought a plane. +C and : the elephant said can I play with you? +C and[-:] he said no. +C and he just kept on fly/ing it. +C then the elephant just took it away from him. +C and it fell in the water. +C and (then) : then the elephant/z friend got mad. +C (and) and the elephant was guilty. +C and the lifeguard (s) went in there to go (get) get it. +C and the lifeguard ask/ed : (who) who did this? +C (and the) and : the elephant said I did by accident. +C and : the lifeguard : try/ed to reach for it. +C and (then) then : the elephant/z : friend was cry/ing for the plane. +C then the other[!] girl[!] lifeguard (came and got with it) came with : a net : to get it. +C and she got the plane for him. +C and (he was so) he was really happy. +C and[-:] then they both play/ed together. += [Eg:A3] += [Bg:B1] +C once upon a time there was a dog : build/ing a castle. +C and then (there) there came a rabbit. +C he ask/ed (if he could help : the) if he could help the dog. +C (and) and the dog said sure[!]. +C (and then the) and then the rabbit help/ed him. +C and the dog was pat/ing (the s) the sand. +C then the rabbit put sand all over the castle. +C and the castle broke. +C (and the r) and the dog was happy. +C but the rabbit (was : um) was mad. +C and (then) then the : dog start/ed cry/ing. +C (and) : and the rabbit felt (guil) guilty. += [Eg:B1] += [Bg:B2] +C one day : when the rabbit and the dog were go/ing for a picnic : (they) (they saw) they : end/ed up : see/ing each other. +C (then they) then they set out the blanket : and all the food. +C the rabbit ate all the food. +C and (he w) he was really full. +C and the dog only ate : his sandwich. +C (and) and he drinked|drink[EW:drank] the juice. +C (and then the) and then the rabbit : was sick. +C and he did not feel that good. +C then the dog went run/ing to a doctor : and said help help! +C (there is a) my friend rabbit : is (sick) really sick! +C (then) then the dog is pull/ing on her. +C and (then) : then the doctor check/ed on[-:] the rabbit. +C and he was (sick) really sick. +C and then : the rabbit had to go to the hospital. +=C that is it [+_bch]. += [Eg:B2] += [Bg:B3] +C he was : take/ing a wagon. +C and he had a balloon in it. +C and the rabbit ask/ed where did you get the balloon from? +C he said I got it from : the : clown over there. +C and then (the rabbit just) (he um) the dog said : do you want it? +C and then : the rabbit just took it. +C and then (the) the rabbit : let go of it. +C and then they both were jump/ing up for it. +C then the dog got : mad. +C (and then they saw this) and then they saw the clown guy. +C and then[-:] the rabbit was happy. +C and he went to go get a balloon for the dog. +C (and) and she got : a blue one. +C (and it) and it was five cent/s : per balloon. +C (and he) and he did not have any money. +C (and then) : and then they both were sad. +C and the dog stand|stand[EW:stood] right beside him. +C and then the rabbit went run/ing for the doctor. +C (and) : and the rabbit call/ed for the doctor. +C (um) : then he said (that) that guy will not give us a balloon. +C (and I) and can (I) we have five cent/s? +C and (then) (then they were) : then the doctor gave : five cent/s. +C and then they got two balloon/s. +C then they each got their own balloon/s. += [Eg:B3] diff --git a/data/ENNI_SALT/train/843.slt b/data/ENNI_SALT/train/843.slt new file mode 100644 index 0000000000000000000000000000000000000000..a1fee9680f5b485e5455621ca3cebaad27bdfa67 --- /dev/null +++ b/data/ENNI_SALT/train/843.slt @@ -0,0 +1,82 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 4/12/1992 ++DOE: 11/16/2000 ++CA: 8;7;4 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 843=CHI ++Tape Location: Disk L20 Track 67 += [Bg:A1] +C [~_okay] the giraffe and the elephant are bounce/ing a ball. +C it go/3s into the pool. +C (the) the (uh) [~_giggles] [+..] [EU]. +E [~_prompt] it'is your story. +C the (uh) cowlike thing go/3s in the pool and get/3s the ball. +C and then he bring/3s it out to the elephant. +C and then (the) (they) they are play/ing with it again. += [Eg:A1] += [Bg:A2] +C okay (the) the elephant and the giraffe_like thing is[EW:are] go/ing to[:__gonna] go for a swim. +C the elephant want/3s to go off the diving board. +C (she slips : and :) she slip/3s. +C she fell. +C and she : hurt her knee. +C and now the lifeguard come/3s rush/ing over. +C and the lifeguard put/3s a bandaid on it. +C and then the elephant walk/3s over to the bench. +C and then the lifeguard point/3s to the no run/ing sign. += [Eg:A2] += [Bg:A3] +C [~_okay] the giraffe thing has the airplane. +C and they are play/ing with it. +C and the giraffe guy is pretend/ing that it is do/ing loopdeloop/s and stuff. +C and the elephant snatch/3s it from him and want/3s to play with it. +C and then the elephant drop/3s it in the pool. +C then the giraffe is mad. +C and the lifeguard : see/3s the plane in the water. +C and the elephant explain/3s what happened. +C and the lifeguard try/3s to stretch out and get it. +C but then[-:] he could not reach it. +C and the giraffe is cry/ing. +C And then : this woman (come/3s along with a net and) she come/3s along with a net. +C and she grab/3s the plane out with the net. +C and then she give/3s it back to the giraffe. +C and then the giraffe hug/3s it. += [Eg:A3] += [Bg:B1] +C the bunny and the[-:] : (uh) animal [~_giggles] (uh) want to be together. +C (uh) they (uh) start/ed (uh) build/ing this (cas) sandcastle. +C the bunny pour/3s sand all over the sandcastle. +C and then the sandcastle (is) : it collapse/ed. +C and now the other animal is cry/ing. += [Eg:B1] += [Bg:B2] +C (uh) : the animal see/3s the rabbit. +C and he is wave/ing. +C they decide to have a picnic together. +C and (the) the rabbit eat/3s too much. +C so now he has a tummyache. +C and : now the rabbit feel/3s really bad. +C and now the doctor come/3s. +C and : the animal is pull/ing the doctor to the rabbit. +C and the doctor is take/ing the rabbit/z temperature. +C and then he is all better. += [Eg:B2] += [Bg:B3] +C (uh) the rabbit see/3s the animal with a balloon. +C and he wave/3s. +C the rabbit is (gett/ing) grab/ing the balloon. +C and now the rabbit is play/ing with the balloon. +C and[-:] by accident he let go of it. +C and now it is way up in the sky. +C and then they see a man with balloon/s. +C and the bunny[-:] ask/3s if he can get one. +C (and then ther f) and then the (g) guy say/3s (the) they are five cent/s. +C and then he frown/3s because he do/3s not have any money. +C and then he run/3s to his : dad or his mom or whatever. +C and he ask/3s her to buy him a balloon. +C and she buy/3s both of them a balloon. +C and then (they) they are play/ing with the balloon/s. += [Eg:B3] diff --git a/data/ENNI_SALT/train/844.slt b/data/ENNI_SALT/train/844.slt new file mode 100644 index 0000000000000000000000000000000000000000..ad79a95d6fd531b57a4418a95f4059f6f9c335af --- /dev/null +++ b/data/ENNI_SALT/train/844.slt @@ -0,0 +1,165 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 2/27/1992 ++DOE: 2/02/2001 ++CA: 8;11;6 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 844=CHI ++Tape Location: Disk L24, Track 116 += [Bg:A1] +C (um) an elephant is play/ing with a giraffe. +C and she is bounce/ing the ball with her trunk. +C but then (the ball) (they see a) the ball go/3s into the water. +C and the : giraffe go/3s and try/3s to catch it. +C but the elephant look/3s really worry/ed. +C and then they catch the ball. +C and they are both really happy. +C and then she hug/3s[!] the ball. +C (and the) and (the um) the giraffe look/3s really really happy[!]. +C and so do/3s the girl. += [Eg:A1] += [Bg:A2] +C (um) the elephant and the giraffe again [EU]. +C (they) they see a sign that say/3s no run/ing. +C [~_well] it say/3s no run/ing. +C but I do not think they see it. +C and they are look/ing into the water. +C but then : the[-:] elephant[!] start/3s run/ing. +C and : she do/3s not see the sign. +C but then it is really slippery. +C and she fall/3s. +C (and she) : and her friend : ran right past her. +C and he did not see her. +C and : then : he saw her. +C and she scrape/ed her knee. +C so he went and got the lifeguard. +C and : now she is cry/ing hold/ing her knee. +C so : he put cream [EU]. +C and then he put a bandaid on it. +C and then (th) she try/ed to walk over to the bench. +C but she could not. +C so they had to kind of [~_kinda] help her. +C and then she sat down look/ing kind of [~_kinda] : embarrass/ed because : then the lifeguard just point/ed out : the sign[~!__laughing] that said no run/ing to her. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C the giraffe (he) he has (a[EW:an] airplane and) like a toy airplane. +C and the elephant see/3s it. +C and she is like oh cool(*2) (can you) can you fly it! +C so he is like well l will try it. +C and so he twirl/3s it and twirl/3s it. +C and he is try/ing to make it fly. +C and the elephant is like [~_sharp_intake_of_breath] that is cool! +C and then (she) instead of ask/ing she just snatch/3s from him [EU]. +C and then he look/3s really mad[!] at her. +C but she look/3s happy. +C and then (she) she is try/ing to fly it. +C but she drop/3s it in the water. +C so he get|get[EW:gets] super[-:][!] mad. +C and she look/3s really scare/ed. +C and he go/3s [~_makes_angry_sound]! +C and then : the lifeguard come/3s and look/3s. +C and they are both really scare/ed. +C they are on the other side of the pool. +C and then (the) the : elephant look/3s and look/3s. +C (the elephant) the girl elephant say/3s oh I am really really sorry. +C I just accidentally did this blah [blahblah]! +C and the lifeguard say/3s well that is okay I guess. +C so then he try/3s to reach it. +C (and) but he can not reach yet, not yet. +C so it is stuck in there now. +C and the : giraffe start/3s cry/ing. +C but then a girl elephant like I think it is the little girl elephant/z mom : she come/3s. +C and she has a net. +C so : then she (s) grab/3s the plane and[-:] (um) : scoop/3s it up in the net and give/3s it back to him. +C and then : he is really happy. +C and so is the girl. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C [~_(o)kay] there is[EW:are] two rabbit/s. +C (one) the girl (is name/ed) is Amanda. +C and the boy/z name is Mark. +C and they[-:] are at the beach. +C and they decide to build a sandcastle! +C but then (Mark he) they build it. +C and then Mark he take/3s it. +C and he just dump/3s all[!] the sand over top of it. +C so now all they have is just a big clump of (snow) [~_I_mean] sand. +C and then Amanda start/3s cry/ing! +=C the end : I think [+_bch]. += [Eg:B1] += [Bg:B2] +C there is (um) an elephant and a rabbit. +C and they are each carry/ing picnic basket/s. +C and they meet each other out in the wood/s. +C (and so they de) and they decide to have a picnic! +C but then the rabbit he is like ah this stuff is so[-:] good! +C (and the mon) and (the monkey) [~_well_actually] the rabbit (he just) he just bring/3s : junk[!] food. +C like there is like a big[!] really big cake. +C and he is like ah I love junk food! +C while [<~_well]the other[>~_well] the elephant is like [~_well] he is just looking at him you should eat some healthy food too[!]. +C so then : the elephant is eat/ing a nice sandwich and drink/ing some juice. +C but the rabbit he just : shove/3s all this stuff and just leave/3s it a mess! +C and then : he is pat/ing his big fat tummy because he ate too much. +C but then he feel/3s really dizzy. +C and it look/3s like he is go/ing to[:_gonna] get sick. +C but then he faint/3s. +C so : just out of the blue come/3s a doctor. +C and the : elephant say/3s doctor doctor my friend over there ate too much junk food and faint/ed! +C so she just pull/3s[!] him right over there. +C and the : guy is still (fainted) like really dizzy. +C and there is still a mess. +C (so he is like) so the doctor : check/3s it/z throat and everything. +C and he finally wake/3s up. +C and the doctor is like oh[-:] you should not eat so much junk food! +C but then : they take a little walk just to make sure he is okay while : the : (um) elephant (clean/3s it up) clean/3s the mess up. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C there is : an elephant name/3d[-:] Jennifer. +C and there is a rabbit : the same one who ate too much junk food. +C (named) : let us call him John. +C and[-:] the[-:] girl named Jennifer (has a little balloon) has a wagon. +C and there is a balloon tie/ed to it! +C and (the) John is like well what is that balloon for? +C and Jennifer explain/3s well I am not sure yet [~_laughs]. +C so then he is like well why do not we rip it off and : throw it up in the air? +C and it can like drift up to heaven and stuff. +C and the bird/s can you know eat it. +C and (she is like) no no no said Jennifer! +C he is like well I will try and undo it still. +C while she went away he try/ed to undo it. +C and then : he let it go on purpose! +C and he is like oh Jennifer Jennifer! +C he lie/ed to Jennifer. +C he is like Jennifer Jennifer (the) (um the) the balloon it drift/ed away! +C and Jennifer is like oh man it drift/ed away! +C that was my favourite balloon! +C so then (she is gets) she is like (you did that) you did that! +C and she get/3s all[-:] mad[!]. +C like oh I am just go/ing to[:_gonna] hurt you! +C so then : a guy come/3s along with some more[!] balloon/s. +C and they get an idea. +C [~_well] John get/3s an idea. +C but : Jennifer is too mad to even notice[!]. +C John is like : hi mister can I have some balloon/s! +C and Jennifer is like huh what the heck is he do/ing? +C so then : he get/3s out (um) : ten cent/s. +C (um) and (the) : (the um) : (the) [~__whatyoumacallit] the balloon person say/3s sorry they are for five cent/s only! +C if you do not have five cent/s you can not have a balloon. +C (so the guy is like) so then the guy is like hm you can not have a balloon. +C and the both of the people are like please please please said John and Jennifer! +C so then : (um) : the doctor[!] came along. +C (and he is like) and then John run/3s up to him and : say/3s he will not give us no[EW:any] balloon/s (h) (cuz) just because I have ten cent/s. +C and the balloons are only for five. +C he will not give us no[EW:any] balloon/s. +C so : then the doctor has two five centses [EU]. +C so she give/3s it to them. +C and they get two balloon/s. +C and then they hug them and squeeze them and everything. +C but they do not pop yet. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/846.slt b/data/ENNI_SALT/train/846.slt new file mode 100644 index 0000000000000000000000000000000000000000..e62a30d62114ff6799c91bdb19545e859371a9fa --- /dev/null +++ b/data/ENNI_SALT/train/846.slt @@ -0,0 +1,104 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 1/07/1993 ++DOE: 2/02/2001 ++CA: 8;0;26 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 846=CHI ++Tape Location: Disk L24, Track 134 += [Bg:A1] +C once upon a time there were two friend/s a : giraffe (and a zeb a) (and) and an elephant. +C the elephant was play/ing ball : by the pool. +C and then by accident she drop/ed it in the pool. +C the ball bounce/ed into the pool. +C and : (they) : they did not know what to do. +C but then the (gira) giraffe : thought of an idea and jump/ed into the pool : and swam to get the ball. +C and he did. +C and the elephant and : giraffe were very happy. +C and the elephant : (was very very very) like/ed the : giraffe for get/ing her ball. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C once[-:] (there) : there were two friend/s. +C and : they : were (by the swimming) by a swimming pool. +C and : the elephant want/ed to go : to the diving board. +C and she was start/ing to run there. +C and then she slip/ed[!] : and fell and scratch/ed herself. +C and then the : lifeguard came over : and gave her a bandaid : and told her to (sit) (take a) sit down on the bench (and said) : (and show/ed her) and point/ed to the sign : that said no run/ing. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C once[-:] there were two friend/s. +C : and they were by the swimming pool. +C and : the giraffe[-:] (um) had a (air) toy airplane. +C and (he want/ed) he said do you want to play with me? +C and : he was play/ing with his airplane : and made it go loop[!] and then up. +C and then the elephant : got really dizzy : and grab/ed it away from him. +C and : (he) the giraffe was (ver) very nervous. +C and then by accident : the elephant drop/ed it into the : pool. +C and (the) the (um) giraffe got very mad at her. +C and the lifeguard : seen|see[EW:saw] that : (the) : [~_says_under_breath] (the thing) the airplane was in the water. +C and the elephant told (her) him that : she need/ed his help : to get the airplane. +C but it was too far for him. +C so he could not get it. +C and he did not know what to do. +C so : he told them : to find somebody else. +C and then : (the) a woman with a net : came over : and said she would get it. +C and : she put the net in the water. +C and she got the airplane. +C (and he was) and[-:] the : (zebra um) giraffe was very happy. +=C the endbch]. += [Eg:A3] += [Bg:B1] +C once upon a time (there was : a rabbit) there were two friend/s : a rabbit and a dog. +C the dog want/ed to make a sandcastle (but the) with (the) her friend. +C (and : so) and so they did. +C but : when the rabbit got his shovel and pail : then : he start/ed help/ing[!] : the dog[!] : (her) his friend. +C and : he (um) : put the sand in his pail and : (ss um) : was (flatn) (flatteni) flatten/ing the sand down. +C and then : he pour/ed it over (the sandca) the castle. +C and the dog : look/ed terrify/ed because (it did) (it) that was not how it was suppose/ed to go. +C and then : the rabbit : (look) seen|see[EW:saw] that he broke the sandcastle and : said it was an accident. +C and I did not mean to. +C and the dog (try/ed to m) made the sandcastle again. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C (the) : [~_let_(u)s_think] (the) (the) (the two frie) there were two friend/s : the rabbit and a dog. +C they went for a picnic lunch. +C and : they went in the forest. +C then : the rabbit : had a whole picnic. +C (and : he) : and it was a little too much. +C so : he look/ed (little) a little dizzy. +C and : he fell down because he ate (all) (all) (all of the food) almost all the food. +C and : he : was full. +C and he decide/ed to get dizzy : and then : look|look[EW:looked] really sick. +C and then : (the rabbit/z mother came) a doctor came. +C and (the) the dog : ran up to her and : told her that her friend : (fel) was really dizzy and got knock/ed out. +C and : the dog pull/ed her all the way over : to the rabbit. +C and (the) : she : help/ed him. +C (she) : and then : the doctor : (um) brung|bring[EW:brought] him over to the : (um) [~_what_is_it] (uh) : the center. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C there was[EW:were] two friend/s a rabbit and a dog. +C the dog had a balloon. +C and (the rabbit was) the dog went for a walk with : her balloon. +C the rabbit came : along. +C and (the) the (f) rabbit : seen|see[EW:saw] the balloon. +C and : he want/ed to take it off. +C and[-:] so[-:] : he untie/ed it. +C and : the balloon flew away. +C and : they were very (uh) scare/ed. +C and the dog was very mad at the rabbit. +C and : the rabbit : seen|see[EW:saw] [-:] : a balloon man and : went over : and : said can I have one of those balloon/s! +C but : the balloon man show/ed him (wa) how much (i) they were. +C but : he did not have any money. +C (so the balloon man uh) : so the balloon man did not give (hi) them one. +C and : the rabbit seen|see[EW:saw] the doctor : and told her that : he need/ed some money : (for) : for a balloon. +C and : the : doctor (um) : got two balloon/s (and) : instead of one. +C and she paid him ten cent/s. +C and they were all very happy. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/847.slt b/data/ENNI_SALT/train/847.slt new file mode 100644 index 0000000000000000000000000000000000000000..26659125b01a2f938770072736dc504a7b1e269f --- /dev/null +++ b/data/ENNI_SALT/train/847.slt @@ -0,0 +1,97 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 12/23/1991 ++DOE: 11/16/2000 ++CA: 8;10;24 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 847=CHI ++Tape Location: Disk L20 Track 81 += [Bg:A1] +C one day : George and his friend : Suzanne were play/ing by the pool with their ball. +C but then accidentally : they drop/ed it in the pool. +C but then George went in to get it. +C and then they were both happy. +C and : then they were play/ing with the ball again. +C then George was embarrass/ed. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C George and (sh) Sharon were at the swimming pool. +C (sh uh um) : then they want/ed to go on the diving board. +C but then Sharon was run/ing. +C and she was not suppose/ed to. +C and then she fell and hurt herself. +C George went to go and get a lifeguard. +C and then the lifeguard help/ed her. +C then he put a bandage on her : knee. +C and then George was happy. +C but Sharon was still surprise/ed. +C but then the lifeguard said no run/ing. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C one beautiful day : (um) George brought his airplane to play with Sharon. +C he was play/ing with it twist/ing around in the air. +C and then Sharon had a turn. +C but then Sharon accidentally drop/ed it in the water. +C and then they did not know what to do. +C they got a lifeguard. +C the lifeguard did not know what to do. +C he try/ed reach/ing over to grab the airplane. +C but then they still did not know what to do. +C and George was cry/ing still. +C then : another lady came with a big net. +C and she grab/ed the airplane out with the net. +C she gave it to (the) George. +C and then George was happy again. +C he love/ed his airplane. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C once upon a time there was one bunny name/ed : Sarah and a dog : name/ed : Aaron. +C they went to the park to play in the sand. +C they made a sandcastle of wet sand : and then dump/ed sand all over the castle. +C then they were all : surprise/ed to see the castle was broken. +C and then they start/ed to cry. += [Eg:B1] += [Bg:B2] +C one day Bunny and Rabbit : had a picnic. +C and they met each other : on the road. +C then they sat down. +C and : Bunny ate (most of all of) most of all the food (of) like the candy. +C and then : Bunny ate all the treat/s. +C and then : Dog (was) was healthy. +C so he ate the sandwich/s. +C then after Bunny felt really sick. +C and then : Dog did not know what to do. +C then he had an idea. +C and he ran to (bun) Bunny/z mom which[EW:who] is a doctor. +C and (then she pull/ed) then : she pull/ed Bunny/z mom to Bunny. +C and then : Bunny/z mom got really mad at him. +C and then : he sent him home. +C then : they went home together instead. += [Eg:B2] += [Bg:B3] +C one day Bunny and Dog met each other (at) : on the road. +C Bunny saw a balloon stuck to : Dog/z : (uh) wagon. +C and (uh) he thought it was neat. +C he try/ed take/ing it off. +C but it would not : come off. +C but then when it came off : bunny did not know what to do. +C so he let go of the string. +C then they watch/ed it go up. +C and : Dog was really mad at Bunny. +C (on the way) : on the way home Bunny : saw (balloons) a bunny man sell/ing balloon/s. +C he want/ed to buy a balloon. +C the balloon/s were fifty cent/s. +C but Bunny : had no : money. +C and then they stare/ed at the man. +C (the) bunny went to (her) his mom. +C (and then) : and then : Bunny/z mom gave them : money. +C first he explaine/ed it to his mom. +C and then : Bunny/z mom : bought a balloon for each of them. +C they both like/ed their balloon/s. +=C and that is the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/848.slt b/data/ENNI_SALT/train/848.slt new file mode 100644 index 0000000000000000000000000000000000000000..f1b581cd6650f800f9964c44659800c66aff8da6 --- /dev/null +++ b/data/ENNI_SALT/train/848.slt @@ -0,0 +1,169 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 6/14/1992 ++DOE: 2/12/2001 ++CA: 8;7;29 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 848=CHI ++Tape Location: Disk L25, Track 2 += [Bg:A1] +C [~_kay] (once upon a time) [~_no] long long ago (in) in a deep deep forest there live/ed : a giraffe and (a) an elephant. +C they were : very[!] good friend/s. +C and so then one day they want/ed to go swim/ing. +C the giraffe/z name was Timmy. +C the elephant/z name was : Veronica. +C and so then : Timmy went *to trying[EW:try] to swimming[EW:swim] in a pool [EU]. +C but (he) he was try/ing so hard to get the ball that they were go/ing to play [EU]. +C and Veronica was shut/ing her eye/s. +C then Timmy got the ball. +C and she gave it to Veronica. +C and then they were both very[!] better[EW:good][!] friends. +C and Timmy was soak/ing wet. += [Eg:A1] += [Bg:A2] +C (once upon a) okay (then) okay (it is on) (it is) [~_like_let_(u)s_say] it is a tap broke [~_okay] [EU]. +C and then the next day they went there again. +C (and[-:] : then) : and then : Veronica want/ed to go swim/ing. +C so she (jump/ed) hop/ed in. +C but she slip/ed. +C and she is like whoa[-:]! +C and Timmy is like run/ing after her. +C then she fell and hit her knee and got a big big owie. +C then she start/ed to cry because it really hurt. +C she got a huge scratch. +C and then : the lifeguard came. +C and the lifeguard was an elephant. +C (his name was) : (um) his name was : Kyle. +C and he want/ed to help her. +C so he got out his safety[-:] box. +C so then he (g) took out the bandage and got it out. +C and then : Veronica was sit/ing on the bench. +C and then it was heal/ing. +C (so then : she) and then : the lifeguard said : (something really : like) no run/ing. +C and she was run/ing again. += [Eg:A2] += [Bg:A3] +C (then) : and then (on the third chapter they are) Timmy and Veronica[-:] on the third day came to the swimming pool again. +C this time Timmy brought a little (um) : toy plane. +C (and it) and it could not go in the water. +C and then : Veronica was so happy. +C (and so she) and then Timmy letted|let[EW:let] her borrow it to play with for a little while. +C (but) : and then she want/ed to see it first : fly. +C (and then he made it) (and then he) and then he like went [~_makes_sound_'nerrrooo']! +C (and then) : (and then he : accidentally) : and then he accidentally : like : threw it over to Monica. +C and then (mo) Veronica want/ed to : see it. +C (so he let) and he is like what ! +C so then Veronica want/ed to try. +C but she accidentally threw it into the water. +C then Timmy got very[!] mad. +C he was so mad that he want/ed to : like : break up with her. +C and she was like oh[-:] ! +C but then the lifeguard (s) : look/ed. +C (and he is like) : and Timmy is look/ing down. +C (and) and Veronica is (like) like go/ing back from the lifeguard because he was on the other side of Timmy. +C and she was : (beside) in the middle of both of them. +C and he is like what is go/ing on here ? +C and Timmy is like sad. +C but (then he) : then Veronica explaine/ed [~_high_pitched_voice] I was just go/ing to see ! +C [~_high_pitched_voice] and Timmy let me! +C [~_high_pitched_voice] but : I accidentally threw it into the water! +C [~_high_pitched_voice] and it is not suppose/ed to! +C then the : lifeguard try/ed to reach it. +C (and he) (and then) : (and then he finally) and then he finally : try/ed[-:]. +C and he almost fell in. +C and so : he almost gave up. +C but then Timmy start/ed to go on his knee/s and cry. +C but then : (uh : Veronica/z mom) [~_or_no] the lifeguard/z : wife came. +C and she had a net with her. +C (she) and then : she scoop/ed : out the plane. +C and then she gave it back to Timmy. +C and he was so happy (that he would not) that he still would be Veronica/z friend. +C and then he hug/ed her. +C and Veronica did not want to catch it any more. += [Eg:A3] += [Bg:B1] +C one day[-:] there was a : little rabbit and a little dog. +C they were good friend/s. +C the dog was a girl. +C and her name was Jennifer. +C the boy rabbit was Tim. +C and : he was : a boy. +C and so then one day they want/ed to go in (Jen) Jennifer/z : (play : um) : sand place. +C they made a castle. +C they made (uh) : lot/s of stuff. +C (they dug) (they made) like probably soup[-:] they made out of a barrel [EU]. +C and they made lots of stuff like a castle. +C and they probably even made little : people. +C and so then one day : Tim got a little excite/ed because they were so happy. +C and so then he pour/ed (his) his (bottle of) : bottle of sand onto (Veronic) [~_I_mean] Jennifer/z : castle. +C (uh) and then : all that was left was a pile : and then a little steeple (with) (with um) : with a little bit of sand on it. +C and it look/ed like a (poin) finger point/ing out of the : thing. +C (and) : and Timmy was so sorry. +C and he is like almost cry/ing. +C and Veronica/z like oh[-:] ! +C and then Veronica went cry/ing again. +C and then : Timmy is like huh[-:]! +C and he never did that again. += [Eg:B1] += [Bg:B2] +C (one day) and then the next day they went to pick berry/s[!]. +C and so then they went along a nice good summer path. +C (and then : one day they) and then they had also a picnic : in one basket and : like other kind of food in a other. +C and so they also found[!] some berry/s and food. +C so they made a picnic! +C (and) : and (like) : the dog was like just take/ing stuff out. +C (and) : (and) : and the rabbit was just like gobble/ing up the carrot/s and all. +C so then the rabbit soon ate all the stuff except for like a piece of bread. +C and the poor dog only got a little piece (of bread) of a sandwich. +C but then : the rabbit Jennifer she got a very[!] bad tummyache. +C so she is like [~_makes_moaning_sounds]. +C (but then) : but then Tim race/ed[!] up to Jennifer/z Mom and said your daughter has got a cold! +C your daughter has got a cold! +C and she is like oh dear! +C and then : he pull/ed[-:] her until she went : to (Jenn) Jennifer. +C and then she check/ed : Jennifer. +C and she said you have got a stomachache. +C you have got to go home and sleep. +C and so then : Jennifer was walk/ing home. +C and she became happy : to get a rest. +C and same with Timmy. += [Eg:B2] += [Bg:B3] +C then (the next day) on the third day they went along a nice snowy path. +C and they were go/ing to (give) like go and like just travel. +C and if they saw some (like) like something they would like hook it onto to the wheel/s. +C or if it was something that you could not hook on (you would) they would just put it (on : to) into the barrel. +C and they had a balloon. +C (and then : Tim want/ed) [~_I_mean] and then (um) : Tim [~_yeah] he want/ed to see it! +C so then (he) he grab/ed the balloon. +C and : (Veroni) [~_I_mean] Jennifer would let him. +C so then : (he[-:]) (he let) she let him grab it. +C and then : (Veronica) Jennifer (she) : she let Tim : like : go and : (t) like see it and : hold it. +C but then Tim (he) he try/ed to untie it. +C and she is like what[!]. +C and then Tim accidentally untie/ed it and forgot to hold onto it. +C and then (it went) : it went (um) : a little up. +C and then Jennifer got (a li) really mad. +C and then Timmy is like oh look there is a balloon man! +C we can get (balloon/s) balloon/s! +C but then (h) they : went and ask/ed. +C and Jennifer is like what is he do/ing? +C and Tim is like could we have one? +C and then : the guy is like where is your money? +C it cost five cent/s! +C (but) : but he did not have any money. +C he check/ed in his pocket/s. +C but he did not have any[!] money. +C (and then he is like) and then he is like well : you kid/s go run along then. +C and so then : they were sad walk/ing away. +C but then : (Timmy) [~_I_mean_yeah] Tim : (he) he saw his mother. +C and his mother was : a rabbit like him. +C and so then (they) : (he got them to) he try/ed to like (get them to pay) : get her to pay for both of them. +C and so then (she is like) he is like mommy get us a balloon! +C mommy get us a balloon! +C so then she paid him ten cent/s for them each to have one balloon. +C (and then they both were happily) and then they all were very happily with their balloon/s. +C and same with the mother. += [Eg:B3] diff --git a/data/ENNI_SALT/train/849.slt b/data/ENNI_SALT/train/849.slt new file mode 100644 index 0000000000000000000000000000000000000000..4d465c5b1261c3439dc034b92f9748c9be063972 --- /dev/null +++ b/data/ENNI_SALT/train/849.slt @@ -0,0 +1,92 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 5/19/1992 ++DOE: 11/20/2000 ++CA: 8;6;1 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 849=CHI ++Tape Location: Disk L20 Track 117 += [Bg:A1] +C a giraffe (um) and an elephant were play/ing : with a ball close to a swimming pool. +C and then : the ball got drop/ed in the water accidentally. +C the giraffe try/ed to get it. +C and finally he got it : and pass/ed it on to the elephant. +C and the elephant : look/ed like she had done it all by herself. += [Eg:A1] += [Bg:A2] +C an elephant : and a giraffe were play/ing by : a nonrun/ing swimming pool. +C the elephant said that she would : go onto the diving platform. +C she started run/ing to get there. +C and : the giraffe was start/ing to run too. +C then the elephant slip/ed. +C and the giraffe kept on run/ing. +C Giraffe try/ed to see (if he could help the e) if he could help the elephant. +C (and the lifeguard came) and the lifeguard came. +C and the elephant start/ed cry/ing. +C the (let) lifeguard taught the elephant how to walk again. +C and then (he point/ed) the lifeguard point/ed to the : no run/ing sign. +C (and the elephant said) and the elephant : try/ed (t) : to hide her face. +=C or I do not know [+_bch]. += [Eg:A2] += [Bg:A3] +C (um : a) a giraffe (was) and the elephant were playing at a pool : with an airplane. +C the giraffe was play/ing with the airplane. +C the elephant grab/ed the airplane : from the giraffe and start/ed play/ing with it. +C she drop/ed : it in the water. +C the giraffe got really mad at the elephant. +C the lifeguard came puzzle/ed. +C the elephant explaine/ed what happen/ed. +C the lifeguard try/ed[!] to reach it. +C lifeguard could not. +C the giraffe start/ed cry/ing. +C another elephant came. +C she try/ed scoop/ing up the airplane in her net. +C she got it and pass/ed it back to the giraffe. +C and the giraffe was very happy to have it back. +C and so was the elephant : because she could drop it in the water again. += [Eg:A3] += [Bg:B1] +C a rabbit and a dog were play/ing : with the sand : in the sandbox. +C and the sandcastle was : by there. +C (the) (the um :) the dog start/ed play/ing with the sandcastle as the : rabbit start/ed putt/ing sand in the bucket. +C (the dog : put the sand) the (um) dog was surprise/ed when the rabbit : put a bucket of sand over the sandcastle. +C the dog : look/ed : (happy um) ready to play with it : while the rabbit look/ed surprise/ed. +C then the dog start/ed cry/ing. +C and the rabbit look/ed (like) as if he had done nothing. += [Eg:B1] += [Bg:B2] +C (um) a dog : was have/ing a picnic as a rabbit came along. +C the dog start/ed to take out a sandwich while the rabbit took out everything in his bag. +C he ate it all just as : the dog was about [~_laughs] to (ss) (do one bite of his sand) have one bite of his sandwich. +C the rabbit looked dizzy when the dog had only bitten into his : sandwich. +C the dog ran : to a nurse rabbit : and ask/ed : her if she could help the rabbit. +C (he) (he pull/ed) (she pull/ed him) she pull/ed : him over to the (um) rabbit. +C the nurse said you bad : rabbit[~!_yelling] : and then took the rabbit out to eat her lunch. += [Eg:B2] += [Bg:B3] +C a dog : had : a wheelbarrow and a balloon. +C and the rabbit came along. +C (the r) the rabbit was amaze/ed : by the balloon. +C and the dog look/ed happy. +C the rabbit start/ed untie/ing the balloon. +C and the dog was surprise/ed. +C the rabbit let go of the balloon. +C and the balloon flew up. +C the rabbit was amaze/ed by how the balloon float/ed up : so fast. +C and the dog was get/ing really mad at the rabbit. +C (then : a) then they saw (a guy) a dog : with a whole bunch of balloon/s. +C and (the) the rabbit ask/ed : if they could have one balloon. +C but the dog answer/ed : five cent/s for a balloon. +C they look/ed : sad. +C (and) : and the (um) dog said that will teach you not to : throw away balloon/s[~!_sternly]! +C then they saw : the rabbit/z mom. +C and (the rabbit ask/ed : if) the rabbit ask/ed his mom (if he could) if he could have : a[-:] balloon. +C the rabbit paid the dog : (two five uh) two nickel/s. +C and he gave : the rabbit and the dog each a balloon. +C : the dog : got a balloon. +C and he look/ed very happy. +C and so did the rabbit. +C and so did the mom. += [Eg:B3] diff --git a/data/ENNI_SALT/train/851.slt b/data/ENNI_SALT/train/851.slt new file mode 100644 index 0000000000000000000000000000000000000000..186babe21004e7868481c50603dfe6199668c91f --- /dev/null +++ b/data/ENNI_SALT/train/851.slt @@ -0,0 +1,83 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 3/11/1992 ++DOE: 11/21/2000 ++CA: 8;8;10 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 851=CHI ++Tape Location: Disk L21, Track 31 += [Bg:A1] +C a giraffe met the elephant. +C the elephant drop/ed (a) the ball in a : pool. +C the giraffe went to get the ball. +C the giraffe got the ball. +C the elephant was happy. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C the giraffe and the elephant want/ed to go swim/ing. +C the elephant point/ed over there. +C she ran. +C she fell and hurt her knee. +C the lifeguard came run/ing. +C he put a bandaid on the (s) scar. +C he put her down on a bench. +C he said you should not have been run/ing. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C the giraffe met the elephant. +C he was play/ing with an airplane. +C the elephant snatch/ed the airplane. +C she threw it. +C and it land/ed in the pool. +C the giraffe got very mad. +C the lifeguard came. +C the elephant told him what happen/ed. +C he could not reach. +C he shrug/ed his shoulder/s. +C (then another l) then a woman came by and (got a) has a net. +C she grab/ed : the airplane with (a) the net. +C she gave it back to the giraffe. +C the giraffe was happy. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C a bunny met the dog and want/ed to play in the sandbox. +C they start/ed build/ing a sandcastle together. +C the bunny pour/ed sand on : the sandcastle : which broke the sandcastle. +C (the pup) the dog was very sad. +C and the rabbit felt bad too. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C the rabbit and the dog met each other again. +C they start/ed to have a picnic. +C that rabbit ate too much. +C then the rabbit got sick. +C the dog went to : (the um) a doctor nearby. +C he pull/ed the doctor to the rabbit. +C the doctor help/ed the rabbit. +C she took the rabbit back home. +C and the rabbit felt a lot better. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C the rabbit met the dog again. +C the dog was pull/ing a wagon with a balloon attach/ed to it. +C the rabbit untie/ed the balloon. +C the balloon float/ed away. +C the dog got very angry. +C (they saw a man) the rabbit saw a man sell/ing balloon/s. +C he ask|ask[EW:asked] if he could have one of the balloon/s. +C the man said no they cost five cent/s. +C and the rabbit did not have any money. +C (he went up) (and they both were) the rabbit was very sad. +C he went up to : the doctor. +C he asked if he could have (um se) five cent/s. +C she gave him five cent/s. +C and they got (the) some balloon/s. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/853.slt b/data/ENNI_SALT/train/853.slt new file mode 100644 index 0000000000000000000000000000000000000000..094d0df78937526073001b60c39b9b72162bfede --- /dev/null +++ b/data/ENNI_SALT/train/853.slt @@ -0,0 +1,98 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 4/17/1992 ++DOE: 11/21/2000 ++CA: 8;7;4 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 853=CHI ++Tape Location: Disk L21, Track 36 += [Bg:A1] +C it look/3s like (the elephant and the giraffe are) [~_no] the elephant is (um) dribble/ing the ball. +C and the giraffe is watch/ing. +C and the ball fell into the swimming pool. +C and the giraffe is (in um) in the swimming pool go/ing to get it. +C and now (that) (sh) the giraffe gave the ball to (um) the elephant. +C and he is happy. +C and now (um) : they are both happy. += [Eg:A1] += [Bg:A2] +C (um) the giraffe and the elephant are (um) beside the pool wait/ing to jump in I think. +C (um) now the elephant is run/ing to the diving board. +C and the giraffe is hold/ing the towel. +C and now (the) it look/3s like the elephant is start/ing to slip. +C and now she bang/ed her knee. +C and she is cry/ing. +C (um uh) and (the giraffe told) : now I think the giraffe told the lifeguard. +C and the lifeguard is come/ing. +C and the lifeguard put a bandaid on her knee. +C now (um) the lifeguard : is help/ing the elephant to a bench. +C and now the lifeguard is make/ing her sit on the bench. += [Eg:A2] += [Bg:A3] +C (um the gira) [~_I_mean_yeah] the giraffe has a plane. +C and the elephant is look/ing at it. +C (um) the giraffe is play/ing with the plane. +C and now the elephant has (um) grab/ed the plane out of the giraffe/z hand. +C and now it fell into the : water. +C now the giraffe is mad at the elephant. +C now : (uh) the lifeguard come/3s. +C and : the lifeguard is talk/ing to the elephant. +C now the lifeguard is try/ing to get it. +C but he can not. +C and now the giraffe is cry/ing. +C and now : (the uh) a : lady elephant gets a net. +C and she get/3s the plane out. +C and she give/3s it to the giraffe. +C and : the giraffe is happy. +C and : now he is really happy. +C and the elephant is : look/ing at him again too. += [Eg:A3] += [Bg:B1] +C it look/3s like (um uh) a girl is play/ing in the sand. +C and a boy come/3s. +C and now the : girl is make/ing the sandcastle. +C and the boy is (hel) help/ing. +C and now the boy dump|dump[EW:dumped] a pail of sand (on the) on the castle : that she built. +C and now (it) it fell down. +C and they are all look/ing at it. +C and now the : girl is cry/ing and try/ing to make it up. += [Eg:B1] += [Bg:B2] +C it look/3s like a rabbit is come/ing up the lane. +C and his friend is wave/ing. +C (and) and now the rabbit is eat/ing all the food. +C and the friend is take/ing out a sandwich. +C now the rabbit is full. +C and he can not eat any more. +C and his friend is still eat/ing. +C and now it look/3s like the rabbit is[EW:has] got a tummyache. +C now (um) : the : girl come/3s to : a doctor. +C and I think she tell/3s her : what happen/ed. +C now she is take/ing the doctor to : the rabbit. +C and : the doctor is (try/ing) : tell/ing the rabbit something. +C and now the doctor is take/ing the rabbit : that ate too much. += [Eg:B2] += [Bg:B3] +C (i uh uh) it look/3s like a rabbit is come/ing down the lane. +C and another girl : has a wagon. +C and a balloon is tie/ed to it. +C now (the rabbit is try) (I think she) I think the rabbit is try/ing to get the balloon. +C and the rabbit is untie/ing the balloon. +C and the balloon float/ed away. +C and they are try/ing to grab it. +C but it : float/3s away. +C and now the : girl is very mad. +C and they see a balloon man. +C and so : the rabbit go/3s to him. +C (and) (and) and the balloon/s are five cent/s. +C (so) and he do/3s not have five cent/s. +C (now he g) and so they are both (um) at (the rab um um) the man who is sell/ing the balloon/s. +C and now they see a : lady[-:]. +C and the rabbit go/3s up to her. +C (and she ask/3s) and he ask/3s if : she has any money. +C (and um) and the : lady give/3s (the um) the balloon man five cent/s. +C (and they get) and (uh) I think she[?] give/3s them the balloon. +C and now they both got a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/854.slt b/data/ENNI_SALT/train/854.slt new file mode 100644 index 0000000000000000000000000000000000000000..b524bc55d87c7ad029b1424faad989b8ca62700a --- /dev/null +++ b/data/ENNI_SALT/train/854.slt @@ -0,0 +1,101 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 4/28/1992 ++DOE: 2/27/2001 ++CA: 8;9;30 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 854=CHI ++Tape Location: Disk L26 Track 5 += [Bg:A1] +C once upon a time an elephant and his friend the giraffe were playing with : the elephant/z purple bouncy ball. +C (she accidentally drop/ed) when she was bounce/ing the ball she drop/ed it into the swimming pool. +C the giraffe was a very good swimmer. +C so he swam up : out and grab/ed the ball. +C he swam over to the elephant : and : gave it (to the) to her. +C and then they decide/ed to play some more. += [Eg:A1] += [Bg:A2] +C one day the elephant and her friend the giraffe decide/ed to go swim/ing. +C the elephant ran to the diving board. +C and the giraffe just decide/ed to walk (cause she) because he saw the sign that said no run/ing. +C the elephant continue/ed run/ing. +C then he start/ed run/ing after her. +C when he[EW:she] was run/ing the elephant slip/ed and scrape/ed her knee. +C (uh) the giraffe call/ed the lifeguard. +C and : he ran over. +C he put a bandage on the mark. +C (and) and then he left (to k) to solve another problem. +C the lifeguard sat her on the bench. +C and : the giraffe sat down beside her. +C (the other) the other lifeguard (dec) : decide/ed to kick her out because she has a bandage on. += [Eg:A2] += [Bg:A3] +C one day the elephant met : (her) : her friend the giraffe at the swimming pool. +C he was play/ing with his airplane. +C and the elephant : got hypnotize/ed. +C she grab/ed it from his hand : and : drop/ed it in the[-:] pool. +C (uh) the giraffe got mad at her. +C (and she :) and she froze solid. +C the giraffe : got so mad : that he push/ed her. +C the lifeguard try/ed to reach the : airplane. +C but : it was too far out. +C the elephant told the lifeguard (that it was a) that it was an accident and (sh) that (she would nev) she will not do it again. +C the lifeguard try/ed again. +C but it got : farther and farther out. +C then the other lifeguard came (with the) with a pool scooper (and deci) and try/ed to reach it. +C the first time (she tri) she try/ed she did not (re) reach it. +C (and she) and then she was talk/ing to the kid/s. +C and then she (um) was talk/ing to the other lifeguard. +C she try/ed a second time. +C she got the airplane and gave it back to the giraffe. +C the giraffe : smile/ed very firmly : (and decide/ed) (and) (and um) and never went swim/ing with his airplane again. +C when they were done they decide/ed to play in the playpen with the airplane instead of near the pool. += [Eg:A3] += [Bg:B1] +C one day : a bunny and his friend the dragon decide/ed to go to the : sandbox and (b) build a sandcastle. +C (when they were still mold/ing) when they were (s) add/ing on to the : castle (the) (the rab) the rabbit : was hog/ing the sand in the pail. +C (when) when he was done : he pour/ed : all the sand on the sandcastle. +C and then the sandcastle was ruin/ed. +C when : the dragon : was try/ing to mold it again (she did) she (s) was still cry/ing. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C one day : the rabbit and the : dragon : were walk/ing down the street. +C and they saw each other with picnic basket/s. +C (since the rab) since the rabbit had : cake : sub/s and sandwich/s : (they decided to have) and chip/s they decide/ed to have (um) a picnic together. +C when they were done the rabbit was sick. +C and he look/ed like he was go/ing to[:_gonna] throw up. +C (he got) he was get/ing dizzy. +C and (onl) the dragon only had a juice box and two sandwich/s. +C (the) when the doctor was walk/ing by : (he um) the dragon ran over to her and said that her friend : was : sick. +C the dragon decide/ed to drag her : to her friend the rabbit : because he was (v) very sick. +C the doctor : tap/ed his head. +C and he faint/ed. +C (then : the) : then (the) the doctor took him home. +C (and) and he had (uh um some) lot/s of carrot/s and vitamin/s. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C one day : (uh the) (the) the rabbit/z friend the dragon : was walk/ing with her wagon : with a balloon tie/ed to the wheel. +C (the) her friend the rabbit ask/ed where did you get that balloon? +C and she said from the big old clown over there. +C the rabbit was try/ing to untie it from the wheel. +C and the dragon got mad at him. +C the balloon flew away. +C and : they were both jump/ing for it. +C the dragon got so mad (at the) at the rabbit : that she burst off (in a r) (in a fla) into a big red flame. +C then : the rabbit (saw the b) saw the (cl) clown and decide/ed to run over and get a balloon. +C he pick/ed an orange balloon. +C and : (uh the) the clown said : five cent/s please. +C and the bunny/z pocket/s were empty. +C (uh he) the rabbit got sad. +C and the dragon ran over. +C (and he) and she had no money either. +C the doctor came by. +C (and the) but the rabbit ran over : to her : (and said) and said : do you have any money? +C I will pay you back. +C and she paid : the clown (t) : ten cent/s for two balloon/s. +C and when : they got the balloon/s : they were happy once again. += [Eg:B3] diff --git a/data/ENNI_SALT/train/855.slt b/data/ENNI_SALT/train/855.slt new file mode 100644 index 0000000000000000000000000000000000000000..e73d8263bc239673d15c683f854628ab19fb31a4 --- /dev/null +++ b/data/ENNI_SALT/train/855.slt @@ -0,0 +1,78 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 3/25/1992 ++DOE: 1/10/2001 ++CA: 8;9;15 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 855=CHI ++Tape Location: Disk L23 Track 5 += [Bg:A1] +C (um) : a[EW:an] [-:] elephant is dribble/ing a ball near water I think. +C the ball fall/3s in the water. +C (the) [~_is_that_a_donk*_no] the giraffe go/3s to get it. +C and[-:] the giraffe give/3s it back to the : elephant. +C and now the elephant is happy. += [Eg:A1] += [Bg:A2] +C (um) : they see the pool again. +C and[-:] there is a sign that say/3s no run/ing. +C and[-:] they see a diving board. +C and they want to go to the diving board. +C but they start to run. +C and the elephant slip/3s : and[-:] hurt/3s her (uh) knee. +C and then a lifeguard come/3s : and put/3s a bandaid on it. +C and[-:] then it is fine. +C and then the lifeguard point/3s to a no run/ing sign. += [Eg:A2] += [Bg:A3] +C (um) : they are back at the pool. +C and[-:] the giraffe has a[-:] : plane. +C and the[-:] elephant grab/3s it from the[-:] giraffe/z hand. +C and it fall/3s in the water. +C and it is sink/ing. +C now the lifeguard see/3s it. +C and[-:] : the elephant is (um) ask/ing what he can do about it. +C the lifeguard try/3s to reach it. +C but he can not. +C so[-:] a lady got a net : and : get/3s it out. +C and then the giraffe is happy again. +C and : now I guess he is play/ing with it again. += [Eg:A3] += [Bg:B1] +C two rabbit/s are[-:] make/ing a sandcastle. +C (um) : I guess they are just make/ing it better. +C (um) one rabbit dump/3s the sand on the sandcastle. +C and it wreck/3s it. +C and[-:] the other rabbit is sad. +=C that is it [+_bch]. += [Eg:B1] += [Bg:B2] +C the two rabbit/s are go/ing for a picnic. +C (um) : I guess one has lot/s [EU]. +C and the other one has hardly any. +C (the) : the bunny get/3s fat. +C he get/3s dizzy. +C (um) : he call/3s for help. +C (um) : the rabbit is pull/ing her (um) : because maybe she just want/3s to go for a walk more [~_laughs] [EU]. +C : (um) she is make/ing him (feel) feeling[EW:feel] better. +=C I do not know [+_bch]. +C (um) and : he walk/3s away when she is better again. += [Eg:B2] += [Bg:B3] +C (um) the rabbit/s are back again. +C and : one is pull/ing a wagon with a balloon on it. +C (um) : the other rabbit notice/3s (that) the balloon I guess. +C (um) : the other rabbit is try/ing to pull it off. +C and it go/3s up into the air. +C and now the other rabbit is mad. +C and then they see : a different rabbit that is sell/ing balloon/s. +C so : the rabbit go/3s up and buy/3s one. +C and they are five cent/s. +C but he do/3s not have any five cents[EW:money]. +C (um : uh) : so I guess he is mad or something. +C then he go/3s to a lady : to ask (if) if she has five cent/s. +C and she do/3s. +C so they both get a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/856.slt b/data/ENNI_SALT/train/856.slt new file mode 100644 index 0000000000000000000000000000000000000000..9b9a92728524f897d9f8581a35080d806682b457 --- /dev/null +++ b/data/ENNI_SALT/train/856.slt @@ -0,0 +1,71 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 5/05/1992 ++DOE: 3/08/2001 ++CA: 8;10;3 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 856=CHI ++Tape Location: Disk L22 Track 95 += [Bg:A1] +C (um) [-:] an elephant is bounce/ing a ball[-:]. +C the ball get/3s in the water. +C the horse swim/3s : to try to get it : and got it. +C (uh : the other) the elephant is thankful. += [Eg:A1] += [Bg:A2] +C (uh) the horse and elephant want to[:_wanna] go swim/ing[-:] on the diving board[-:] [EU] . +C (uh) the elephant run/3s[-:]. +C and she slip/3s[-:] : and get/3s a sore knee[-:]. +C (uh) the lifeguard (s) come/3s[-:] : and give/3s her a bandaid. +C (uh l sh) she is sit/ing on a bench. +C lifeguard told : her[-:] no run/ing. += [Eg:A2] += [Bg:A3] +C elephant and a horse meet[-:]. +C and they[-:] : want to[:_wanna] play. +C (s) : the horse is play/ing with his : airplane. +C the elephant play/3s with it too[-:]. +C it go/3s into the water. +C the horse get/3s angry. +C (uh) the lifeguard see/3s it. +C the elephant : told the lifeguard. +C lifeguard try/3s to reach it. +C he could not reach it. +C (he) : someone got a net : and fish/ed it out : and got the plane and gave it to the horse. +C : and a horse[-:] : hugg/ed it. += [Eg:A3] += [Bg:B1] +C (uh) the rabbit and the dog meet each other to play with the castle. +C the dog : fix/3s the castle. +C and the rabbit put/3s sand in a bucket. +C the rabbit dump/3s the sand on the castle. +C the castle got wreck/ed[-:]. +C and dog try/ed to[-:] build it back. += [Eg:B1] += [Bg:B2] +C the dog and[-:] rabbit meet each other. +C they both have a picnic. +C the rabbit : ate too much[-:]. +C the rabbit got dizzy. +C the dog got the doctor. +C the doctor came[-:] : and help/ed the rabbit. +C and now the rabbit is more better [EU]. += [Eg:B2] += [Bg:B3] +C the rabbit and dog (meech) : meet each other. +C and the dog has a wagon and a balloon. +C (uh) : the rabbit : (thought) told him that (he could pl) he could play with it. +C the rabbit untie/ed it. +C the balloon flew up in the air. +C dog got angry. +C they saw a : person who is sell/ing balloon/s [EU]. +C the : rabbit told if he can buy one [EU]. +C he said that they are five cent/s each[-:]. +C they did not have any money[-:]. +C (they went an) they went to someone. +C and they told if : she could (get) pay them money [EU]. +C and[-:] : she did[-:]. +C now they are happy with the balloon/s. += [Eg:B3] diff --git a/data/ENNI_SALT/train/857.slt b/data/ENNI_SALT/train/857.slt new file mode 100644 index 0000000000000000000000000000000000000000..c6f11474f63e4d6d8b220e2efdb379e9c295dff8 --- /dev/null +++ b/data/ENNI_SALT/train/857.slt @@ -0,0 +1,73 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 4/24/1992 ++DOE: 1/10/2001 ++CA: 8;8;17 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 857=CHI ++Tape Location: Disk L23 Track 9 += [Bg:A1] +C (um) an elephant is dribble/ing a ball. +C and a (hh) giraffe or horse is watch/ing. +C and[-:] : the ball[-:] go/3s into the water. +C and the horse [~_laughing] or (g) giraffe (um) swim/3s to get it. +C and he (hands it) hand/3s it back to the : elephant. +C and[-:] the elephant is happy [~_laughs]. += [Eg:A1] += [Bg:A2] +C (um) the elephant and I guess the giraffe are look/ing into the : pool. +C and the elephant start/3s run/ing : on the dock. +C and the elephant slip/3s : and hit/3s her knee. +C and the lifeguard come/3s run/ing over [~_laughs]. +C and he put/3s a bandaid on it. +C and then they go to a bench. +C and then the lifeguard point/3s her off [~_laughs] [EU]. += [Eg:A2] += [Bg:A3] +C an elephant and (giraffe) the giraffe (um) are talk/ing. +C and giraffe pick/3s up a plane and start/3s play/ing with it. +C and[-:] the elephant take/3s it away. +C (and it gets) : (and it) and the elephant drop/ed it into the water by accident. +C and the giraffe is mad at the elephant. +C and the lifeguard come/3s. +C and (the li) (lifegua) the lifeguard and the elephant talk. +C he try/3s to reach for it. +C but he can not reach it. +C and then the giraffe cry/3s. +C and then : (um) another lifeguard come/3s with a net. +C and : she[-:] scoop/3s (it) up (with) the airplane with the net. +C and she hand/3s it (pac) back to the : giraffe. += [Eg:A3] += [Bg:B1] +C (um[-:]) : a rabbit and a dog are play/ing in the sand. +C (uh) : and rabbit is help/ing the dog make a sandcastle. +C and then the rabbit : by accident pour/3s all the sand over the castle. +C and then the rabbit (uh : lo) [~_laughs] look/3s sorry. += [Eg:B1] += [Bg:B2] +C (uh) : the rabbit and the dog are have/ing a picnic. +C and the rabbit start/3s stuff/ing his[-:] face [~_laughs]. +C and[-:] : the rabbit burp/3s [~_laughs]. +C and he get/3s sick. +C and there is a doctor run/ing by. +C and the dog : go/3s to get him. +C and the dog pull/3s him towards the sick rabbit. +C and the doctor[-:] give|give[EW:gave] the rabbit medicine. += [Eg:B2] += [Bg:B3] +C (um) the dog is push/ing (a c) a[-:] cart with a balloon on it. +C and the rabbit come/3s run/ing up to her. +C and the rabbit look/3s at : the balloon. +C and he start/3s to untie it. +C and by accident he let it go. +C and then the dog is really mad at him. +C and then he sees a (uh) person sell/ing balloon/s. +C he run/3s up and point/3s to a balloon. +C but he do/3s not have five cent/s. +C and then they[-:] look sad. +C and then they run up to a person : and ask : if he could buy her a balloon. +C and she go/3s up to the guy : and buy/3s two balloon/s. +C and they both have their own balloon/s now. += [Eg:B3] diff --git a/data/ENNI_SALT/train/859.slt b/data/ENNI_SALT/train/859.slt new file mode 100644 index 0000000000000000000000000000000000000000..ccc5d8980520fa7e934532375df3ba785bffa956 --- /dev/null +++ b/data/ENNI_SALT/train/859.slt @@ -0,0 +1,110 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 4/17/1992 ++DOE: 1/10/2001 ++CA: 8;8;24 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 859=CHI ++Tape Location: Disk L23 Track 19 += [Bg:A1] +C once there was an elephant and a horse. +C and they went to a beach. +C the elephant had a brand[!] new ball. +C (when the) once the elephant said do you want to[:_wanna] see my biggest bounce? +C sure said the horse. +C the elephant bounce/ed it much too high. +C and it land/ed in the water. +C the horse : want/ed to try it too. +C so he went in the water to save elephant/z brand new ball. +C when (uh) horse got the ball she gave it to the elephant. +C the elephant said oh thank you, thank you! +C (when the elephant was sa) the elephant was so happy she decide/ed to give the : horse a try of her new ball. += [Eg:A1] += [Bg:A2] +C (wo) once there was a horse and an elephant. +C (there was a) they went to the beach. +C and there was a sign that said no run/ing. +C the elephant want/ed to go and swim and dive off the diving board. +C and she was run/ing. +C (the elephant was) while (sh) the elephant was run/ing she slip/ed and fell. +C she scrape/ed her knee. +C (and) but the horse came run/ing after her (and) : and took care of her. +C the lifeguard came and : was very proud of the horse. +C the lifeguard put a bandaid on it. +C (the) : the horse : said : (I) are you all right? +C the elephant said : I am okay. +C the lifeguard was mad. +C the elephant was sad. += [Eg:A2] += [Bg:A3] +C once there was an elephant and a horse. +C and the horse had a brand new airplane. +C the brand new red airplane was red. +C and the horse (l) like/ed it a lot. +C the elephant was surprise/ed. +C she want/ed it too. +C so the elephant grab/ed it from the horse. +C and the horse said please give me it back. +C when the elephant try/ed it out it land/ed in the water. +C the horse was very mad. +C and the elephant was scare/ed. +C they call/ed the lifeguard. +C and the lifeguard said what is the matter now? +C my plane went in the water said the horse. +C the elephant said : I threw it in the water. +C (I) I am really sorry. +C the lifeguard try/ed to get it. +C but he could not. +C the lifeguard said I can not get it. +C the horse was very very sad. +C (the) (the) (an) a lady who had a net (caught it with) got it with a[?] net. +C and the horse stop/ed cry/ing a little. +C when the : lady got it out : the horse was very happy. +C and : the elephant was happy that the horse got it back. += [Eg:A3] += [Bg:B1] +C there was : (um) a dog play/ing in the sandbox. +C (in) (and a bun) and a bunny rabbit came along. +C the dog said I am build/ing a sandcastle. +C do you want to[:_wanna] help me? +C the bunny said sure. +C so when the bunny : put a lot of sand on the sandcastle : it fell. +C the dog was sad. +C and the bunny : apologize/ed. += [Eg:B1] += [Bg:B2] +C a dog (uh) and a bunny went for a picnic one beautiful day. +C the bunny pack/ed a lot and a lot of food. +C the bunny ate[!] too much and ate too quick. +C the dog did not eat too much and not too quick. +C and the bunny got very very sick. +C there was a nurse come/ing down the road : past them. +C and the dog went for help. +C she (pull) pull/ed her over to the bunny. +C the doctor said : you should not eat too much any more. +C soon the bunny was : not feel/ing so sick. +C and the dog was very happy. += [Eg:B2] += [Bg:B3] +C once there was a bunny and a dog. +C and the dog had a wagon with a balloon on it. +C the bunny really like/ed the dog/z balloon. +C she want/ed to take it off. +C when the dog said no : the bunny did not listen. +C the bunny accidentally let go. +C and the dog : (was very very) was try/ing to catch it. +C the dog was very very mad. +C and the bunny : was very scare/ed. +C then they saw : (ball) a balloon person carry/ing a bunch of balloon/s. +C the bunny went up to him and ask/ed could I have a balloon? +C the : balloon said five dollar/s. +C and the bunny did not have any. +C the bunny and the dog were very sad. +C and they saw (a lady :) a grown up lady : stand/ing on the street. +C the bunny : (uh) went up to her. +C and (she) he ask/ed her : could we have five dollar/s to get a balloon? +C the : lady gave : him : ten dollar/s for the bunny and the : rabbit. +C (the) and then the bunny and the dog were happy. += [Eg:B3] diff --git a/data/ENNI_SALT/train/861.slt b/data/ENNI_SALT/train/861.slt new file mode 100644 index 0000000000000000000000000000000000000000..055bcce7157a6caa81a72a0f0493349829916a09 --- /dev/null +++ b/data/ENNI_SALT/train/861.slt @@ -0,0 +1,93 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 10/18/1992 ++DOE: 1/10/2001 ++CA: 8;2;29 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 861=CHI ++Tape Location: Disk L23 Track 32 += [Bg:A1] +C a giraffe name/ed : Savannah and an elephant name/ed Tutu : were : play/ing ball beside the[-:] pool. +C (um) : Tutu drop/3s the : (b) ball into the water. +C Savannah jump/3s in and (s) start/3s swimming towards the ball. +C Savannah get/3s the ball and hand/3s it to Tutu. +C (Sava) Savannah get/3s out. +C and : Tutu is very happy. += [Eg:A1] += [Bg:A2] +C Tutu and Savannah are get/ing ready to jump into the : pool. +C Tutu say/3s she is go/ing to : go : over to the diving board. +C Tutu run/3s. +C and she slip/3s on the wet deck. +C (she) : she got a big scrape when she fell. +C a lifeguard come/3s run/ing over. +C he put/3s a bandaid : on : Tutu/z knee. +C the lifeguard help/3s : Tutu back to Savannah. +C the lifeguard : tell/3s Savannah very sternly : never run on the deck. += [Eg:A2] += [Bg:A3] +C Tutu and Savannah are play/ing with Savannah/z new airplane by the pool. +C Savannah show/3s Tutu how high he can make his airplane fly. +C Tutu : grab/3s the airplane out of Savannah/z hand/s. +C she accidentally drop/3s it in the water. +C Savannah get/3s really mad. +C they call the lifeguard. +C (he ha) he has to think for a while before : he figure/3s out : how[-:] to get the plane. +C Tutu : say/3s : she accidentally drop/ed it in the water. +C the lifeguard stretch/3s as far as he can. +C but he can not get it. +C Savannah start/3s cry/ing : really : loud. +C Tutu feel/3s really sorry. +C then a lady come/3s by with a net. +C (she is said) she say/3s : she would get the plane out for them. +C the lady : put/3s the net into the water : and fish/3s the plane out. +C then she hand/3s it to Savannah. +C and (he) he is really happy. +C he hug/3s his : plane. +C and (s) : Tutu is happy too. += [Eg:A3] += [Bg:B1] +C a dog name/3d : Dog and rabbit name/ed Rabbit were play/ing in a sandbox : at school. +C (dog was) Dog was make/ing : a sandcastle. +C and Rabbit was fill/ing a bucket with sand. +C Rabbit : lift/3s the bucket and dump/3s all the sand out onto Dog/z : finish/ed castle. +C (r) Rabbit did not realize that all the sand he had put into the bucket : was so heavy that it would : destroy the : castle. +C Dog start/3s to cry. +C Rabbit feel/3s very sorry. += [Eg:B1] += [Bg:B2] +C Dog and Rabbit are go/ing to a picnic. +C (they) they are each bring/ing their own picnic basket. +C : Rabbit dump/3s : (all of the) : all of his food out of his basket : while Dog take/3s thing/s out one at a time. +C Rabbit (hur) hurry/3s to eat all his food. +C Dog : be/ing polite : eat/3s it very slowly. +C soon Rabbit get/3s a stomachache. +C fortunately a doctor is walk/ing down the road. +C Dog : run/3s over and tell/3s : the doctor about Rabbit. +C Dog show/3s her (where th) where Rabbit is : and tell/3s her : he has a bad stomachache. +C the doctor say/3s open wide and say ah. +C soon : Rabbit feel/3s better. += [Eg:B2] += [Bg:B3] +C Dog is (push/ing a wagon) : [~_or] pull/ing a wagon : with a balloon tie/ed to it. +C Rabbit come/3s walk/ing down the road and say/3s : what a nice balloon you have there. +C he start/3s untie/ing it. +C Dog do/3s not think that is a very good idea. +C Rabbit let/3s go. +C and the balloon start/3s float/ing away. +C they both run and try and catch it. +C Dog get/3s very[!] mad. +C Rabbit watch/3s the balloon go up and up. +C they see : a balloon salesman : carry/ing a whole : set of balloon/s. +C Rabbit run/3s up to him and ask/3s can I have one of those balloon/s please? +C the : balloon : salesman pull/3s down a balloon : that say/3s balloon/s five cent/s. +C (dog) neither Dog or Rabbit have five cent/s. +C Rabbit run/3s up to his mother and say/3s : can I have ten cent/s to buy two balloon/s? +C the mother look/3s puzzle/ed. +C (why would) she think/3s why would they need a balloon? +C she do/3s it anyway. +C so : Dog and[!] Rabbit get a balloon. +C Dog : and Rabbit : are very happy that they both have balloon/s. += [Eg:B3] diff --git a/data/ENNI_SALT/train/863.slt b/data/ENNI_SALT/train/863.slt new file mode 100644 index 0000000000000000000000000000000000000000..5591a1f07afd8db86de8ae2cf5be3e481e215758 --- /dev/null +++ b/data/ENNI_SALT/train/863.slt @@ -0,0 +1,78 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 12/10/1992 ++DOE: 1/30/2001 ++CA: 8;1;20 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 863=CHI ++Tape Location: Disk L24, Track 32 += [Bg:A1] +C there was once upon a time a : giraffe and an elephant : who[-:] : want/ed to go in a pool. +C and the[-:] elephant lost his ball. +C so the giraffe try/ed to swim for it. +C and the giraffe got the ball. +C and : the elephant like/ed the giraffe. += [Eg:A1] += [Bg:A2] +C there was once upon a time : a giraffe and an elephant. +C they want/ed to go on the diving board. +C (uh) the elephant was run/ing. +C the sign said no[!] run/ing. +C and the elephant trip/ed and hurt her knee. +C and : (the lifeguard came run/ing and the gira) : the lifeguard came run/ing. +C and : the : girl elephant was cry/ing. +C and : the girl (elev) elephant was okay : because she had a bandaid on. +C and the lifeguard told her : see the sign no run/ing? += [Eg:A2] += [Bg:A3] +C (there was once upon a time) : there was once upon a time an elephant and a giraffe. +C (the) and (uh) the giraffe play/ed with its airplane. +C and then the elephant took the airplane away from the giraffe. +C and the elephant accidentally threw it in the water. +C and the giraffe got mad at the elephant. +C and the lifeguard[-:] said what is the problem? +C and the : elephant said I accidentally threw it in the water. +C and the lifeguard try/ed to reach it with it/z own hands. +C but he could not. +C so : the giraffe cry/ed. +C and the : elephant was sorry. +C and another lifeguard came with a net. +C and she got the airplane out of the pool : and then gave it to the giraffe. +C and then the giraffe was happy. +C and then the giraffe was play/ing with it. +C and (she) he said to the : elephant : (if) (do not throw the) be careful with this airplane. += [Eg:A3] += [Bg:B1] +C once upon a time there was[EW:were] : two little mice : (that : build[-:]) that : (bil) : builded|build[EW:built] a sandcastle. +C and : a[-:] mouse[-:] : dump/ed sand on it. +C and the other mouse was : sad. +C and then he was cry/ing. +C and (he did not want to) (he want) he : did not want him to play with him any more. += [Eg:B1] += [Bg:B2] +C there was[EW:were] once : two little mice : have/ing a picnic. +C and one mice[EW:mouse] ate : a lot of stuff. +C and then he had a stomachache. +C (and he tol) and the other mice[EW:mouse] told his : mother that he had a stomachache. +C and (his) he pull/ed his mother to see (wh). +C and his mother said : are you okay? +C and he was okay (cause) : [~_oh_I_forgot]. += [Eg:B2] += [Bg:B3] +C there was[EW:were] once upon a time : two mice. +C and one mice[EW:mouse] had a balloon. +C and : the other mice[EW:mouse] want/ed to look at it. +C (he was : sur) (he was) : he want/ed to : feel it. +C so he untie/ed the balloon so : it would (f) fly away. +C and : the other mouse[-:] got really mad. +C and there was a man that selled|sell[EW:sold] balloon/s. +C the other mouse want/ed a balloon. +C but the : balloon/s were five cent/s. +C and he did not have enough. +C so they could not get a balloon. +C and then they came to their mother : and said can we have a balloon? +C and their mother paid the man so they could have a balloon. +C and now they : each have a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/865.slt b/data/ENNI_SALT/train/865.slt new file mode 100644 index 0000000000000000000000000000000000000000..057bfd27ded0d47502be778adf11a7409a94b88e --- /dev/null +++ b/data/ENNI_SALT/train/865.slt @@ -0,0 +1,72 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 3/29/1992 ++DOE: 1/30/2001 ++CA: 8;10;1 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 865=CHI ++Tape Location: Disk L24, Track 36 += [Bg:A1] +C (um : two um) : two animal/s are play/ing (with a) with a (bla) ball. +C then it go/3s into a pool. +C (then the guy is) then he jump/3s. +C and he start/3s to get it. +C she[?] get|get[EW:got] it. +C then he pass/3s it back up. +C and then (um) he get/3s out of the water. += [Eg:A1] += [Bg:A2] +C (um) : two animal/s see : a diving board. +C they (um) want to go over there. +C they start to run. +C and one slip/3s : fall/3s down and hurt/3s herself. +C and then a lifeguard come/3s over and see/3s that she is cry/ing. +C (then she put/3s) then he put/3s a[-:] : bandaid on. +C then she sit/3s down on the (bens) bench. +C then (um : he) one of the (uh) guy/s point|point[EW:points] to (um) the no run/ing sign. += [Eg:A2] += [Bg:A3] +C (um) : one animal has a plane. +C he (um) throw/3s it up and down. +C then the other one grab/3s it from him : and (s) drop/3s it in a pool. +C then it start/3s to sink. +C and he is mad at her. +C and then a lifeguard come/3s over : and see/3s that it is in the water. +C so he try/3s to get it. +C and (he) he can not get it. +C and the other one start/3s to cry. +C and then : another lifeguard come/3s over with a net : and[-:] pick/3s it up : and give/3s it back to him. +C and he is all happy. += [Eg:A3] += [Bg:B1] +C (um) : they are build/ing[!] a sandcastle two dog/s. +C (and[-:] the) : (th) and one is : take/ing a shovel and put/ing some on. +C and[-:] he put/3s a lot on. +C and then he ruin/3s the castle. +C then one start/3s to cry. += [Eg:B1] += [Bg:B2] +C (um) : a dog and a rabbit are run/ing over to each other. +C then they have a picnic : one with eat and everything [EU]. +C (then he gets) then one get/3s full : really really full[~!__laughing]. +C and then[-:] (um) (wha) the other one go/3s over to a doctor : and bring/3s her over to him. +C then she (um) : try/3s to fix him. +C and then she do/3s. += [Eg:B2] += [Bg:B3] +C (um) : (one[-:]) the dog has (um) : a wagon with a balloon on it. +C and a rabbit come/3s over to see it. +C and then he untie/3s it. +C and it go/3s up in the air. +C (then) (then the o) then the other one get/3s mad at him. +C and then he sees[-:] a guy with all kind/s of balloon/s. +C he go/3s over and want/3s to get one. +C but he do/3s not have any money. +C the balloon/s cost five cent/s. +C so then the other one come/3s over. +C then they go to (the) a lady : and ask if they can get a balloon. +C and she give/3s them five cent/s. +C and they get : a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/866.slt b/data/ENNI_SALT/train/866.slt new file mode 100644 index 0000000000000000000000000000000000000000..cdace9d045107b4bc0be129458de62b1a06ded87 --- /dev/null +++ b/data/ENNI_SALT/train/866.slt @@ -0,0 +1,104 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 4/24/1991 ++DOE: 4/18/2000 ++CA: 8;11;25 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 866=CHI ++Tape Location: Disk L5 Track 41 += [Bg:A1] +C There was this giraffe and this elephant : who want/ed to swim. +C but the elephant : was[-:] play/ing ball. +C and : the ball went into the water. +C and the elephant did not want[!] to go swim/ing. +C the giraffe : went to get the ball. +C and the elephant was scare/ed. +C the elephant : help/3s the giraffe out (with the balloon) with the ball . +C and : the elephant was glad. +C and : the elephant : start/ed to play with the giraffe : with the ball . += [Eg:A1] += [Bg:A2] +C The[-:] giraffe want/ed to (tea) teach the elephant how to swim. +C but then the elephant just want/ed to jump in. +C the giraffe : said okay. +C but then the elephant start/ed to run. +C and the giraffe : said you can not run. +C the elephant slip/ed and : hit her knee : on the : side : of the pool . +C the giraffe saw a lifeguard and call/ed him over. +C the lifeguard start/ed to heal : her. +C (it h) he put a bandaid on her knee. +C and : it hurt her. +C then when she : got up : it did not hurt any more . +C then the lifeguard got mad and said can not you read the sign [EU]? += [Eg:A2] += [Bg:A3] +C The elephant : said to the giraffe I want to play with the : airplane too! +C the giraffe said no I want : to play by myself. +C the elephant just snatch/ed (the) : the airplane away. +C and the : giraffe got mad. +C the[-:] elephant accidentally drop/ed the : airplane in the pool. +C the giraffe got really mad. +C and : she : did not mean it. +C the elephant saw a lifeguard : and : ask/ed him to get it out. +C and then he said okay. +C he start/ed to reach for it. +C but he could not reach it. +C the giraffe start/ed to cry. +C there was this other[!] elephant. +C she said I will[!] get it for you guy/s. +C (she) she went to get a net and start/ed to get the : airplane. +C she got the airplane and gave it to the giraffe. +C the giraffe was happy . +C and : he was sorry for yell/ing at the elephant . += [Eg:A3] += [Bg:B1] +C There were these two animal/s : a bunny and : a[-:] dog : who decide/ed to play in the sandbox. +C they start/ed to make a sandcastle. +C the rabbit : pour/ed sand on : the sandcastle. +C and the dog got : disappoint/ed. +C and then : the dog : made a pile. +C and the rabbit got mad. +C and then the dog : cry/ed. +C and then : the bunny : was : just mind/ing his own business. += [Eg:B1] += [Bg:B2] +C there was this dog and this bunny : that decide/ed to go on a picnic. +C the rabbit start/ed to eat : lot/s. +C and : the : dog : just look/ed at him. +C then the rabbit laid down. +C and : he burp/ed while the dog : was eat/ing. +C and then the bunny : start/ed to get sick. +C and the dog did not know what to do. +C (he ran) : (the) then they saw : a nurse. +C and the dog ran : to call the nurse. +C he pull/ed the nurse to the bunny : and said : to the nurse that : the bunny was sick. +C the doctor : check/ed the bunny : (an) to see what is wrong with him. +C she gave him some medicine. +C and the bunny was better. +C and the dog was glad. += [Eg:B2] += [Bg:B3] +C There : was a dog and a bunny. +C and the dog had a wagon : with a balloon. +C and the bunny came and said what : are you do/ing? +C the dog said : I am go/ing to : go in the wagon and : go down the hill : and see what would happen. +C the : bunny start/ed to untie the : balloon. +C and the dog got mad. +C the bunny : let go of the balloon. +C and then they all scream/ed and try/ed to chase it. +C (the) : the bunny just look/ed up (and) to see the balloon go[EW:going] away. +C and the dog got really mad. +C the bunny saw a man : with lot/s of balloon/s. +C and he : want/ed to get one for the dog. +C he ask/ed the man for one balloon : and brought it to the dog. +C the man said the balloon/s were for five cent/s. +C and (he) the bunny said that he had no money left. +C then the dog came : and ask/ed what he was do/ing. +C the bunny : said that he want/ed to get another balloon. +C and then he saw : this[-:] : other : bunny : that look/ed : like : (a) : (a) : a banker. +C (he) (she) (he) the bunny told the other bunny that : he had no money to buy a balloon for his friend. +C the woman gave : ten cent/s to the man to buy two balloon/s for each of them. +C and then : the bunny said sorry to the dog. += [Eg:B3] diff --git a/data/ENNI_SALT/train/867.slt b/data/ENNI_SALT/train/867.slt new file mode 100644 index 0000000000000000000000000000000000000000..6c195ab5765b081d66bfbf86503c89d0f08bbcde --- /dev/null +++ b/data/ENNI_SALT/train/867.slt @@ -0,0 +1,126 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 6/01/1992 ++DOE: 2/23/2001 ++CA: 8;8;22 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 867=CHI ++Tape Location: Disk M7 Track 48 += [Bg:A1] +C one day there were two friend/s : mister giraffe and missus elephant. +C they were at the beach. +C and (mi) missus elephant was play/ing with a ball when mister giraffe ask/ed if he could play too. +C but then he bounce/ed it and bounce/ed it. +C and then it went into the water. +C so mister giraffe went into the water to get it. +C and then he gave it to missus elephant. +C and : they both smile/ed [~_laughs]. +C and then she really really really like/ed him[?]. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C one day mister giraffe and missus elephant : want/ed to go for a swim. +C and there was a sign that said no[!] run/ing. +C so (she) she was run/ing to the dive/ing board : so she could dive into the water. +C but then she was run/ing and run/ing. +C and then she all of a sudden slip/ed. +C and she really hurt her (near) knee when mister giraffe went to get a lifeguard. +C the lifeguard came run/ing to see what was go/ing on. +C he put a bandaid on missus elephant/z knee. +C and then she sat on the bench : when mister giraffe was say/ing all[!] better. +C and then the lifeguard point/ed to the sign that said no run/ing. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C once mister giraffe and missus elephant (s met) met at the pool again. +C (he) mister giraffe show/ed missus elephant his new airplane. +C he was show/ing her how high it could fly when she was just stare/ing at it. +C [~_said_under_breath] how high it could fly. +C so then she just : took it from him. +C and mister giraffe was like hey! +C and then she accidentally : threw it to see if it could go higher. +C and it land/ed right into the water. +C and he was really really really mad at her. +C (and she s) and she said whoops. +C then the lifeguard (was) was not really happy. +C but he still try/ed to get the plane. +C she was tell/ing (him all about it) (all about) the lifeguard all about the plane. +C and then the lifeguard (s) said that is okay. +C I will try and get it. +C so he try/ed and try/ed and try/ed. +C but he could not reach it. +C so then mister giraffe was start/ing to cry. +C missus elephant was : think/ing. +C and the lifeguard (was) said he do/3s not know how they can get it. +C but then another : lifeguard came with a net to get the plane. +C (she) she stretch/ed the net (to get) into the water to get the plane. +C and then she got the plane and gave it back to mister giraffe. +C mister giraffe (was very) [+/]^ +E am I suppose/ed to turn ? +C [+,] was very very very happy to have the plane back. += [Eg:A3] += [Bg:B1] +C once upon a time there was a little dog : who built a really good (castle) sandcastle. +C and the bunny said : he could make one. +C but he said : why do not you make one in the other sandbox? +C but he said he want/3s to make it right beside his. +C he filled the bucket to build a tower : (while the) while the little dog was : build/ing : the rest of his castle. +C but then he pour/ed (the) all the sand in the bucket onto : the dog/z castle. +C and the dog got really : mad at the bunny. +C and the bunny : was say/ing : he never meant to. +C but then the little dog had to do it all[!] over again. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C once upon a time (the little) a little dog : saw his friend rabbit come/ing down the road. +C she ask/ed him if he want/ed a (s) picnic with[!] him. +C so they decide/ed to have a picnic. +C the bunny had a cake sandwich/s : pickle/s : carrot/s : chip/s. +C and he was all eat/ing it as fast as he could. +C and when he had everything out : the little dog only had a sandwich out. +C so then (he start) he start/ed eat/ing it and eat/ing it and eat/ing it : when the dog : was still eat/ing her sandwich take/ing her first bite. +C then he felt not very good. +C he had a big stomachache. +C so she decide/ed to go (get) find someone : to help him. +E try not to play with that. +C he found (a girl) a woman : (with) kind of[:_kinda] like a doctor with a case : and the thing/3s that go (on your) on the doctor/z ear/s and listen to [EU]. +C so the little dog ran up to her (to tell her) to tell her. +C so he started pull/ing the doctor : to the rabbit. +C so she help/ed the rabbit. +C and she said that he had ate too much too fast. +C and then he felt better. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C once there was a little dog and a rabbit. +C the little dog was happily play/ing with a wagon with a balloon tie/ed to it. +C then the rabbit said hi and went up to it. +C the rabbit : was talk/ing about the balloon and say/ing how much he want/ed it : when the dog was just listen/ing. +C then he untie/ed the balloon. +C and the dog was : amaze/ed that he would do that. +C then they : both try/ed to catch the balloon when it was go/ing into the air. +C she was so mad at him. +C she was shake/ing all around. +C then : the rabbit saw a balloon man who was sell/ing balloon/s. +C he walk/ed up to him and ask/ed for the same colour balloon. +C but (h) he said they are five cent/s. +C but he said he did not have any money. +C so he could not get one. +C and the little dog was come/ing. +E and what? +=C the little dog was come/ing [+_bch]. +C then they both ask/ed for a free one because (his we) her/z went up in the air by him [EU]. +C they ask/ed for a free one. +E they what? +=C they asked for a free balloon [+_bch]. +C and then (the) the rabbit saw (the doctor) a doctor that help/ed him[!]. +C so he decide/ed to ask her : if she had any money to get another balloon. +C he told her. +C she said okay. +C she paid him : ten cent/s. +C and they each got their own balloon. +C and they both play/ed with them for a long time. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/868.slt b/data/ENNI_SALT/train/868.slt new file mode 100644 index 0000000000000000000000000000000000000000..9d0c7d634d194916041e4bd9d860006f1df91985 --- /dev/null +++ b/data/ENNI_SALT/train/868.slt @@ -0,0 +1,103 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 7/03/1992 ++DOE: 3/13/2001 ++CA: 8;8;10 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 868=CHI ++Tape Location: Disk M8, Track 19 += [Bg:A1] +C the[-:] elephant has : a ball[-:]. +C and the giraffe see/3s the ball[-:]. +C (and : so) : and then : (I) the giraffe : took the ball. +C and[-:] : the elephant look/3s unhappy because : the ball is in the pool. +C so the giraffe go/3s out and swim/3s for it. +C and the giraffe get/3s the ball back. +C and the elephant look/3s happy. +C and so : the elephant is really happy with him. += [Eg:A1] += [Bg:A2] +C [~_kay_-:] there is : an elephant : that want/3s to go (on) on the diving board. +C and then : so the elephant run/3s over to the diving board. +C but the giraffe see/3s the no run/ing sign. +C but the elephant do/3s not. +C and so she slip/3s. +C and she start/3s cry/ing because she hit her knee. +C (so the oth) so the giraffe get/3s : a lifeguard. +C and the lifeguard come/3s over. +C and so he put/3s a bandage on it. +C and[-:] : the lifeguard help/3s the elephant over to a bench. +C and then he point/3s at : the no run/ing sign. += [Eg:A2] += [Bg:A3] +C the giraffe has an[-:] airplane. +C and the elephant : like/3s it. +C so the giraffe : start/3s play/ing with it. +C and the elephant is dumbstruck. +C so the elephant take/3s the : airplane. +C and the giraffe look/3s really unhappy. +C then (the ax) accidentally the elephant drop/3s the plane into the water. +C and so the giraffe get/3s really mad at the elephant. +C the lifeguard see/3s the plane. +C so he come/3s over. +C the elephant explain/3s what happened. +C so the lifeguard try/3s to reach it with his : hand. +C but he can not. +C so : the giraffe start/3s cry/ing[-:]. +C but then a lady : come/3s over. +C and she has : a net. +C and so[-:] she[-:] fish/3s the[-:] : airplane out of : the water with the net. +C and giraffe is really happy. +C and so he hug/3s his airplane. += [Eg:A3] += [Bg:B1] +C (um) : there is : a dog[-:]. +C (and[-:] there) and he is at the beach. +C and there is also a bunny. +C and the dog has made a sandcastle. +C and so they are talk/ing. +C and I think that the bunny : is want/ing to help build the rest of the sandcastle. +C so[-:] the bunny help/3s : build the sandcastle. +C and then : the bunny : pour/3s : a bunch of sand right[!] over top of the castle. +C and the dog look/3s really disappoint/ed. +C and so the dog try/3s to reform : the[-:] castle. +C and the bunny : just look/3s really unhappy. += [Eg:B1] += [Bg:B2] +C [~_okay] (um) : the bunny and the dog are go/ing : for a picnic in the wood/s. +C and[-:] : the dog : see/3s what the bunny is eat/ing. +C and the bunny/z : mouth is water/ing. +C and the dog just stare/3s[-:]. +C the dog eat/3s very slowly. +C and the bunny is already done. +C and (he is really really unha) he look/3s really really proud of himself. +C and then (it) the dog look/3s worry/ed because his friend is now sick. +C (um) : the dog see/3s a doctor bunny : and : ask/3s her : to come with him. +C so[-:] the doctor bunny : look/3s[~!_laughing] at him. +C and he tell/3s : the dog to do something : while he examine/3s the bunny. += [Eg:B2] += [Bg:B3] +C the dog has a balloon tie/3d to a wagon. +C and the bunny come/3s along : and look/3s at the balloon and say/3s : something. +C and[-:] the dog look/3s : worry/ed. +C so the : bunny untie/3s the balloon. +C and the dog look/3s really unhappy now. +C and the bunny accidentally let/3s go of the balloon. +C so the dog is like ah! +C the bunny look/3s up. +C and the dog look/3s really mad now. +C the bunny see/3s (another balloon man an) a balloon man. +C and : so he go/3s over : to him : (ask/3s : for a balloon) : and ask/3s for a balloon. +C and[-:] the balloon/s are five (cent/s an) cent/s each. +C but : the bunny do/3s not have any money on him. +C so the man just look/3s really happy[!]. +C and then they see the doctor[!] bunny again. +C so they go over : and ask her[!] : for some money for a balloon. +C and then : so she pay/3s (the ma) the balloon man. +C and the dog and[!] the bunny : each get a balloon. +C and so the dog hug/3s the balloon. +C the doctor bunny look/3s really[!] happy. +C and so do/3s the little bunny. += [Eg:B3] diff --git a/data/ENNI_SALT/train/869.slt b/data/ENNI_SALT/train/869.slt new file mode 100644 index 0000000000000000000000000000000000000000..65283477f06ec2dbe1814a1276ae1283bc15ee96 --- /dev/null +++ b/data/ENNI_SALT/train/869.slt @@ -0,0 +1,110 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 7/11/1992 ++DOE: 3/13/2001 ++CA: 8;8;2 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 869=CHI ++Tape Location: Disk M8, Track 23 += [Bg:A1] +C there was once an elephant : with some ball/s and[-:] a giraffe. +C the elephant/z (ball/s) : ball fell into the water. +C and[-:] the giraffe had his hand out : almost ready to get it. +C and[-:] : the elephant/z : (uh um) hand/s are almost cover/ing her eyes. +C and the giraffe is swim/ing in the water try/ing to get her ball back for her. +C and : he swim/3s back *and give/3s her ball to her [EU]. +C and she is : smile/ing very happy. +C and[~!_laughing] she is very happy that (she) he got her ball back. +C and then[-:] : it look/3s like : she want/3s to kiss him. +=C the very end[~!_laughing] [+_bch]. +C and (he is)[~!_laughing] : it was funny. += [Eg:A1] += [Bg:A2] +C the elephant and the giraffe saw : a swimming pool : and were stand/ing there. +C the elephant : was[-:] go/ing to run and jump into the pool. +C the elephant slip/3s[!] on the water on the side. +C she fall/3s down and hurt/3s her knee. +C she start/3s cry/ing. +C and the lifeguard come/3s. +C he give/3s her a bandage. +C he help/3s her walk (to the ch) to the[-:] bench. +C (then) then he point/3s to the sign no run/ing. +C and[-:] : she look/3s like she is done something wrong [EU]. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C there was a : giraffe and a elephant. +C and the giraffe is hold/ing a[EW:an] (uh) airplane in his hand. +C : the elephant : has her eyes wide open. +C and the giraffe is stick/ing out (hi) : his tongue (on the si) on the side of his face : (drive/ing his) [~_um_not_driving] play/ing with his plane and show/ing her. +C she take/3s it right out of (her) his hand/s and go/3s like this (arou) and look/3s at it. +C and she drop/3s it into the water. +C the giraffe : get/3s : kind of angry with the elephant because she drop/ed the (plane) airplane in the water. +C (the life) : they get the lifeguard. +C and the lifeguard come/3s. +C and he look/3s : at the plane in the water. +C the elephant : (ask/3s him to[-:] get) (as) ask/3s him nicely to get the plane out of the water for (her[-:]) her friend. +C the lifeguard try/3s to get it. +C but he can not reach it. +C the lifeguard say/3s I can not reach[!] it! +C and then : (uh) a nice : lady : elephant come/3s with a net. +C she get/3s the plane out of the water. +C she give/3s it back to the : little giraffe. +C and then he is happy again. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C there was a bunny who was play/ing with a shovel. +C and then another[!] bunny came. +C the other bunny ask/3s : if he (c) : could play with : him and help : him build a sandcastle. +C and she say/3s yes. +C and[-:] : then (he try/3s to) she try/3s to dump the : bucket on the sandcastle. +C it break/3s her sandcastle. +C she cry/3s because she is try/ing to get it back up. +C and it is all broken. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C there was a bunny[-:] who was walk/ing with a picnic basket. +C and the other bunny say/3s hi. +C the bunny and : the[-:] other bunny : take their picnic (baks) basket/s : and go find a nice[-:] spot on the ground. +C (they) they ate their lunch. +C and one of the bunny[EW:bunnies][!] : has eaten very very fast. +C and now he has got a stomachache. +C he feel/3s really dizzy. +C the other : bunny go/3s to get : (a) a doctor[!] bunny. +C and she say/3s come here come here. +C (my friend is) my friend is not feel/ing so good! +C and so she pull/3s her : and pull/3s her until she get/3s there. +C and : she take/3s her thermometer out of her : bucket. +C and[-:] she check/3s his temperature. +C and then : he is all better. +C and : she is walk/ing off with him. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C there was a bunny with a : balloon and a wagon pull/ing. +C and[-:] she say/3s hi to her friend. +C her friend : want/3s to see the balloon. +C so he put/3s his hand out ready to grab (i) her balloon. +C he try/3s to untie her balloon. +C he untie/3s it. +C and he let/3s go by accident. +C and the balloon fly/3s up : into the sky. +C it fly/3s up so high that : (the) : the girl whose balloon that belong/ed to [~_sighs] : (um) : rose too high up to the sky to get it [EU]. +C and then (sh) : she is get/ing really mad at him. +C the other guy : see/3s (another) : mister balloon guy. +C and he has a (bu) whole bunch of balloon/s. +C and he think/3s oh[!] well I should go get my friend another[!] balloon! +C and he go/3s one balloon please[-:]! +C and : he[-:] look/3s in his pocket/s. +C and he do/3s not have any money. +C and it say/3s on a balloon balloon/s five cent/s. +C (his girl come) (the) : the girl bunny come/3s and look/3s at the balloon/s. +C then : the other bunny go/3s : run/ing : to (a) : a lady bunny : and ask/3s her for five cent/s. +C and then the lady pay/3s ten cent/s because five plus five equal/3s ten for both[!] of them to have a balloon. +C then they were both[!] happy : because they got balloon/s. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/870.slt b/data/ENNI_SALT/train/870.slt new file mode 100644 index 0000000000000000000000000000000000000000..4db1d393cc2539dfd132fc39cd6aa814ad41a0fc --- /dev/null +++ b/data/ENNI_SALT/train/870.slt @@ -0,0 +1,82 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 6/01/1992 ++DOE: 4/18/2001 ++CA: 8;10;17 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 870=CHI ++Tape Location: Disk M10, Track 11 += [Bg:A1] +C the elephant is bounce/ing a ball. +C the ball went in the water[-:]. +C (uh) the giraffe : swam to (the) get the ball. +C the : giraffe got the ball and bring|bring[EW:brought] it back to the elephant. +C (the elephant) : the elephant is : (thanks) thank/ing[~!__whispering] [EU]. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C (the elephant) : the elephant want/3s to go swim/ing. +C the elephant ran[-:]. +C the elephant slip/ed. +C the elephant (hur) : (hurt her leg) hurt her knee. +C (uh) : giraffe call|call[EW:called] her dad. +C elephant is cry/ing. +C elephant has a bandaid now. +C *the guy say/3s : no run/ing [EU]. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C the giraffe has a airplane. +C (the gi) the giraffe is play/ing with it. +C the elephant took it. +C the elephant drop/ed it : in the water. +C the giraffe is mad at the elephant. +C elephant dad came [EU]. +C elephant : talk/ed to (the elephant) : the girl elephant. +C the : daddy elephant : reach/ed to get it. +C giraffe cry/ed. +C (n) mommy elephant came. +C (m) mommy elephant got it. +C mommy elephant give|give[EW:gave] to the giraffe [EU]. +C (giraffe t oh uh) : giraffe hug/ed the airplane. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C (the bunny) : the bunny : (ma) made a sandcastle. +C (the) : (the) : the dog : help/ed it. +C : (the dog was make) the dog was make/ing it straight up. +C (the) the bunny is (sh) get/ing some sand. +C (the) : the bunny (pour some um) : pour|pour[EW:poured] some sand on the sandcastle. +C the bunny is not happy. +C the dog fix|fix[EW:fixed] it up. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C (the[-:]) they are go/ing to having[EW:have] a picnic. +C they are start/ing eat/ing [EU]. +C the bunny is full. +C the bunny is (day) : dizzy. +C a doctor came. +C the dog (pull the) : pull|pull[EW:pulled] the doctor. +C the doctor : (h) help/3s the bunny. +C (the doctor : is) (um the) : the : mother help/3s her son. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C (the do) the dog is (w) walk/ing the wagon with a balloon on it. +C the bunny is go/ing to[:_gonna] touch it. +C the bunny untie|untie[EW:unties][-:] the knot. +C (the b) the balloon is fly/ing up. +C (uh) : the dog is mad. +C the bunny saw : (a uh) a[EW:an] other bunny with some balloon/s. +C and the bunny said can I have one of them[EW:those] balloon/s? +C the man (give a) : (give a) : said : it cost[EW:costs] five dollar/s. +C (they) : they did not have no[EW:any] money. +C (they saw) bunny saw (the) his mother. +C the bunny went to his mother. +C the mother give/3s some money to the man. +C the dog and the rabbit : got : balloon/s. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/871.slt b/data/ENNI_SALT/train/871.slt new file mode 100644 index 0000000000000000000000000000000000000000..881ef84cdb878b7467d772488ed40a04754f2627 --- /dev/null +++ b/data/ENNI_SALT/train/871.slt @@ -0,0 +1,89 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 5/18/1992 ++DOE: 4/19/2001 ++CA: 8;11;1 ++Gender: F ++Context: Nar ++Group of CHI: SLI ++ID: 871=CHI ++Tape Location: Disk M10, Track 52 += [Bg:A1] +C (uh : uh) : these two : animal/s were play/ing ball[-:]. +C (the) the ball fell into the water. +C one of the (ani) animal/s went swim/ing to get the ball. +C the animal/s (got) got the ball and play/ed with it. +C (they[-:]) (they ha) they (j) jump/ed. +C and (the la) the lady : (h) (ha) had the (um) ball[-:]. +=C now it is done [+_bch]. += [Eg:A1] += [Bg:A2] +C these two animal/s went swim/ing. +C these[-:] two : animal/s : went to walk to the diving board. +C (one was) both of them were run/ing : down the : aisle. +C (one of a) one of the : (um) animal/s : fell (and) : and cut his knee. +C both[-:] the (li) lifeguard came and put a bandage on it. +C (he[-:]) she was : happy that she (ha) got (a uh) a bandaid. +C she : (hu) (huddig) hug/ed the lifeguard. +C she sat on a bench : scare/ed. +=C now [+_bch]. += [Eg:A2] += [Bg:A3] +C (thee) these two[-:] kid/s : went swim/ing with a[EW:an] airplane. +C they flew it. +C they hold|hold[EW:held] it : and then flied|fly[EW:flew] it. +C and then : they play/ed with it. +C then it fell in the (wa) (wa) water. +C and it broke. +C they[-:] both was[EW:were] scare/ed : of : the airplane. +C they tease/ed each other. +C (bo) the lifeguard said no toy/s in the water. +C (these) (th) the two kid/s said sorry. +C then the (li) (li) lifeguard jump/ed into the water and got it. +C (it) (the) (the airplane) : (wa) (co) the lifeguard could not get the airplane. +C the mom[-:] got a net and then put it in (the) the water. +C she got the : net and put it on the airplane and got the plane. +C the mom gived|give[EW:gave] it back to (the) the animal fix/ed. +C he hug/ed it. +=C now [+_bch]. +E okay, close that you said? += [Eg:A3] += [Bg:B1] +C these two kid/s were play/ing in the sandbox. +C these two kid/s made a sandcastle. +C these kid/s put sand over top of the castle[?]. +C it broke. +C they made a dinosaur kind of. +=C and now[?] [+_bch]. += [Eg:B1] += [Bg:B2] +C (these two[-:] : guy) this one guy was wait/ing for one of other of a kid [EU]. +C they play/ed[-:] with food[-:] . +C they had a party : with food. +C they drinked|drink[EW:drank] juice. +C one of them got full. +C they ate candy. +C they threw all[-:] the candy stuff on the ground and never pick/ed it up. +C they play/ed : with the sandbox. +C the : dad[-:] went to get one of them. +C (he) they pull/ed the teeshirt. +C he said : open your mouth! +C they walk/ed home[-:] (and : w) and walk/ed home in the bush/s. +=C and now [+_bch] [EU]. += [Eg:B2] += [Bg:B3] +C these two[-:] guy/s were : (w) (w) (ride/ing a) : ride/ing a : wagon with a balloon on it. +C they : wave/ed at somebody. +C they untie/ed the balloon. +C (it went) it went up in the : air. +C it went in the : sky. +C (a guy wa) a clown was sell/ing more balloon/s. +C a guy said can I have that one? +C (the) (the) : the : clown said it is (five) : five cent/s. +C (they) (they got : ta) (the) : (they) (the) they had both : money. +C and : the clown did not give him (the) the balloon. +C (they di) (went) they went to see a doctor after : and said : the clown did not gived|give[EW:give] me a balloon. +C then : they got : (two) two (m) money[EW:cents]. +C then after they : hold[EW:held] it. +=C and the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/872.slt b/data/ENNI_SALT/train/872.slt new file mode 100644 index 0000000000000000000000000000000000000000..197306bdf901421159e4deed3bdc158be7464726 --- /dev/null +++ b/data/ENNI_SALT/train/872.slt @@ -0,0 +1,83 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 5/18/1992 ++DOE: 4/19/2001 ++CA: 8;11;1 ++Gender: F ++Context: Nar ++Group of CHI: SLI ++ID: 872=CHI ++Tape Location: Disk M10, Track 62 += [Bg:A1] +C these[-:] two people : a giraffe and a[EW:an] elephant : were go/ing : into the swimming pool and play/ed ball [EU]. +C then[-:] they cry/ed : because the ball went : down in the river. +C then : the giraffe : went to swim and got[!] it [EU]. +C then : they were : play/ing ball again. +C and then they : were : happy as : a[EW:an] elephant can be. += [Eg:A1] += [Bg:A2] +C (they[-:]) these people want to : go swim/ing : in the lake. +C then they found a : jump/ing board. +C and they jump/ed in. +C then : the elephant went swim/ing. +C and then : (he) : he : run|run[EW:ran]. +C and then he fell down and made a scrape [EU]. +C then : he : found a (lifedo) (life) lifeguard. +C and he put a bandaid/s on it [EU]. +C and the elephant cry/ed. +C and : it was over. +C then : he : walk/ed[-:]. +C then[-:] : he : said : to sit down. +=C that is it [+_bch]. += [Eg:A2] += [Bg:A3] +C these[-:] people went : to swim with : a : toy. +C they were fly/ing it. +C and : they : flied|fly[EW:flew] it. +C and then it fell in the lake. +C and (then it was ss) : then it was (swinking) sink/ing. +C and the lifeguard : was try/ing to get it. +C then : he : got it. +C then he try/ed[-:] to get it. +C then : the : giraffe was cry/ing. +C then : the : lifeguard : got a net and catched|catch[EW:cought] it. +C then they were happy. +C then they got it out. +C then[-:] (they) (he) the giraffe was hug/ing it. += [Eg:A3] += [Bg:B1] +C two little baby/s were : play/ing in the : sandbox. +C and : the other baby was make/ing (a : sun) a sandcastle. +C and the : other bunny : spill/ed : little bit : of : sand on the sandcastle. +C and it broke : in piece/s. +C then : the : little baby : was try/ing to fix it and see[?]. +C then it can not [EU]. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C two[-:] little : mans[EW:men] went walk/ing with : basket/s. +C and : they (ea) ate : food : from the basket. +C (then they were) : then they were full[-:]. +C and then they were dizzy. +C they met : a : doctor. +C and : the : man : was : pull/ing : on the doctor/z jacket. +C and : the doctor said ah. +C (then[-:]) : then they went walk/ing : home. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C two[-:] little : people went : to the parade : and with a wagon. +C they[-:] : walk/ed and walk/ed : with the wagon. +C and they got tire/ed. +C the other one stop/ed to tie a balloon onto the : wagon. +C but the balloon flew away. +C and : then the string was only left : til[-:][?] : they found : another : balloon : and : ask/ed [~_pronounced_'axed'] the mans[EW:man] if (h) he can have another : balloon. +C balloon[-:] : five cents[-:] [EU]. +C and : he did not have five cent/s. +C and[-:] they were sad. +C and[-:] : they went home. +C then[-:] : they stop|stop[EW:stopped] at (another) : another : balloon person. +C and they want/ed to buy a : balloon. +C and then the doctor bought two balloon/s for five cent/s. +C and they had their own balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/874.slt b/data/ENNI_SALT/train/874.slt new file mode 100644 index 0000000000000000000000000000000000000000..9aa93ebf0356e3514f77686fb4d246f22fcea8d7 --- /dev/null +++ b/data/ENNI_SALT/train/874.slt @@ -0,0 +1,102 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 11/23/1992 ++DOE: 5/3/2001 ++CA: 8;5;10 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 874=CHI ++Tape Location: Disk M9, Track 55 += [Bg:A1] +C once upon a time the elephant was play/ing with a ball. +C and the (gi) giraffe came by. +C (the giraffe wa) [~_no] the : elephant pass/ed the : giraffe the ball. +C and the ball fell in the water. +C the giraffe was swim/ing in the water to get the ball. +C and the : elephant was happy. +C (and the) : (um : there was) : and the : elephant was happy. +=C (the kay) the end [+_bch]. += [Eg:A1] += [Bg:A2] +C one day (the) : the elephant and the : giraffe : was[EW:were] : go/ing to have a swim in the pool[!]. +C the elephant run|run[EW:ran] to the : trampoline : for the water [EU]. +C and the elephant slip|slip[EW:slipped][!]. +C the elephant hurt : (his leg) : her leg. +C and the zebra was run/ing : behind him. +C (the gi) [~_I_mean] (the gi) the giraffe : was take/ing care of the elephant. +C and the[EW:a] different elephant : come|come[EW:came] to help her! +C the elephant put a bandaid [EU]. +C it hurt/3s. +C the elephant : was okay. +C and (the) they : was[EW:were] happy. +C and : (the lifeguard) : the lifeguard said : no run/ing. +=C and the end [+_bch]. += [Eg:A2] += [Bg:A3] +C once upon a time the giraffe have|have[EW:had] a[EW:an] airplane. +C and the elephant was happy. +C one day (the el) : the : giraffe was play/ing with : the airplane. +C and the : elephant look/ed. +C and the elephant took it away from (gi) : giraffe. +C and she accident[EW:accidentally] drop|drop[EW:dropped] it [~_whispers_something_to_self]. +C and (the) : the giraffe was mad. +C the lifeguard saw the airplane in the water. +C and he[-:] : was talk/ing to the elephant. +C and (he is try/ing to) he try/ed to reach it. +C and he did not. +C and the : giraffe was cry/ing. +C and : [<~_no]the elephant don not know how[>~_no] the elephant do|do[EW:does] not know how you take it out. +C a girl elephant : got a net (and take it awa) and[-:] : go|go[EW:went] (to ge) to get it. +C (and) : and she is[-:] [~_no] she is try/ing to get it. +C and she got it. +C and she was so happy. +C she give[EW:gave] it to the giraffe. +C and the giraffe was so happy. +C (and) : and (the giraffe was : so) (the giraffe was so) (is ha) : the giraffe is happy. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C once upon a time : a rabbit : and a dog : was[EW:were] make/ing a sandcastle. +C the dog : made a (ca) castle. +C and the rabbit : made : a different sandcastle. +C (the) : (the) : the rabbit : put : the : sand over the castle. +C and the castle broke because the rabbit : throw|throw[EW:threw] the sand in the : castle [EU]. +C (and[-:]) : and the : dog cry/ed. +C and the : rabbit do|do[EW:did] nothing. +=C and the end [+_bch]. += [Eg:B1] += [Bg:B2] +C once upon a time : (her frien) (her) her friend dog : *was walk/ing : on the sidewalk [EU]. +C and : the rabbit came along. +C (the rabbit) : [~_no] the dog : went on the grass and eat|eat[EW:ate] thing/s. +C and the rabbit : eat|eat[EW:ate] a lot. +C and : the : rabbit got a stomachache. +C and the rabbit (feel) : feel|feel[EW:felt] dizzy. +C and (the girl) : [~_no] the dog was scare/ed. +C and : the dog ran to a doctor (and) : to get some help. +C (the dog) [~_I_mean_yeah] (the) (the) the dog took the doctor to : (where) where is the rabbit was lay/ing down. +C the doctor took : a stick and put it (his) : in his mouth. +C (the ra) (the rabbit) : the doctor help/ed the rabbit. +C and the rabbit feel|feel[EW:felt] good. +=C and the end [+_bch]. += [Eg:B2] += [Bg:B3] +C once upon a time : the girl dog : was carry/ing a balloon. +C and the (radit) rabbit (come) came by. +C the rabbit saw the balloon. +C and the dog saw the balloon. +C and the : rabbit *was go/ing to hold the balloon [EU]. +C and : he is try/ing to get the knot : undone. +C (and the r) and the : balloon : was fly/ing in the air[-:]. +C (the) the girl dog : was mad because : the bunny : let it go. +C the rabbit was run/ing to the : balloon guy. +C and : the : rabbit ask|ask[EW:asked] : he allow/ed to have one [EU]. +C and : it cost five (s) : cent/s. +C (they was so) : (sc) they was[EW:were] sad. +C (they) the rabbit came : to the doctor : and ask/3s for some money [EU]. +C (and they) : and : the rabbit took the doctor to get : a balloon. +C and : the : doctor give|give[EW:gave] them : (uh two uh) five cent/s : for : two balloon/s. +C and they was[EW:were] happy. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/878.slt b/data/ENNI_SALT/train/878.slt new file mode 100644 index 0000000000000000000000000000000000000000..38c964c2f8234f6f4763c1994a7b30a790257c4f --- /dev/null +++ b/data/ENNI_SALT/train/878.slt @@ -0,0 +1,84 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 5/21/1993 ++DOE: 5/06/2002 ++CA: 8;11;15 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 878=CHI ++Tape Location: Disk M12, Track 38 ++Comment: TC += [Bg:A1] +C (the elephant) one morning the elephant went to the pool and bounce/ed the ball. +C (and want) and the giraffe saw : the elephant bounce/ing the ball. +C then : the elephant/z ball went in the pool. +C then the giraffe : was get/ing it. +C then the giraffe gave it to : the elephant. +C then : the : [+..] [EU]. +E nothing for that page? +=C yeah [+_bch]. += [Eg:A1] += [Bg:A2] +C the[-:] elephant (wa) was stand/ing by the pool. +C then she want/3s to go : on the diving board. +C then (she) she ran and slip/ed : and hurt her : knee. +C then the lifeguard : went[-:] to[-:] (the rescue) the rescue. +C then the lifeguard put a bandaids[EW:bandaid] on the elephant/z knee. +C then she sat on the (bench) bench. +C : then the lifeguard (so) show/ed : her the sign : say/3s no run/ing. += [Eg:A2] += [Bg:A3] +C The giraffe got his airplane and : got it from his house. +C then bring|bring[EW:brought] it to the pool [EU]. +C then he : flewed|fly[EW:flew] it. +C then the elephant wants/3 to : (throw it) grab it. +C then she[-:] : (um) : let go. +C and then the airplane went : into the pool. +C then the giraffe got mad to the elephant [EU]. +C then the lifeguard came. +C (and) (and the elephant was ask/ing how) : the lifeguard : said how did that get in there? +C then the lifeguard : was try/ing to reach the airplane : for the kid/s. +C then the giraffe is : cry/ing. +C then[-:] : the catcher elephant : is get/ing the airplane. +=C there is nothing [+_bch]. +=E I have not seen that one yet [+_bch]. +E anything for this one? +=C no [+_bch]. +C then she gave it (to the toy) to the giraffe. +C then the giraffe was happy again. += [Eg:A3] += [Bg:B1] +C the : dog was play/ing in the sandbox. +C and the rabbit came. +C and then the rabbit (wa) got out a pail : and put sand in the pail. +C then she put the sand on the sandcastle. +C then[-:] : the rabbit broke the sandcastle. +C then the dog cry/ed. += [Eg:B1] += [Bg:B2] +C the dog was wait/ing for the rabbit : for a picnic. +C then the rabbit start/ed to eat. +C then he ate a lot. +C (and the) and : the rabbit got a stomachache. +C then the dog : went to : a doctor. +C (then : the do) then the dog pull/ed (the rabbit to the : rabbit) the doctor to the rabbit. +C then : the doctor is check/ing on the : rabbit. += [Eg:B2] += [Bg:B3] +C the dog (is) : is pull/ing the wagon. +C and the rabbit came. +C then the rabbit (w) want|want[EW:wanted] to touch the balloon. +C then the rabbit (wa) is (inty) untie/ing the balloon. +C then the balloon flewed|float[EW:flew] away. +C then the dog : got mad. +C then they want the balloon. +C then they saw : a rabbit carry/ing the balloon/s. +C then the rabbit : ask/ing for two balloon/s [EU]. +C and it cost/3s five cent/s. +C and : the rabbit do/3s not have : any : money. +=C then : that is it [+_bch]. +C then the rabbit saw the doctor again. +C (then) : then the rabbit ask/ed for a balloon. +C then : the doctor : gave them money to the : balloon carrier [EU]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/880.slt b/data/ENNI_SALT/train/880.slt new file mode 100644 index 0000000000000000000000000000000000000000..e78c9e9a526293cb6ec921d55f079c67bfb46712 --- /dev/null +++ b/data/ENNI_SALT/train/880.slt @@ -0,0 +1,131 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 7/24/1993 ++DOE: 5/06/2002 ++CA: 8;9;12 ++Gender: F ++Context: Nar ++Group of CHI: SLI ++ID: 880=CHI ++Tape Location: Disk M12, Track 17 += [Bg:A1] +C There once was a boy and a girl. +C and the girl is bounce/ing her favoritest[EW:favorite] ball. +C she drop/ed it in the water. +C she did not want to go in. +C so something happen/ed. +C so the : boy swam to the ball and got it for her. +C and she was so happy : that (sh) she did not go by the pool no[EW:any] more and bouncing[EW:bounce] it. +C (and) : and she smile/ed at the boy and said thank you for get/ing my lovely ball. += [Eg:A1] += [Bg:A2] +C (um) there once was a boy and a girl again. +C and : they were go/ing : to jump into the pool. +C So they both ran to the jumper. +C and (they would have) they would have seen the sign that said no (ru) run/ing. +C but they did not. +C and she scrape/ed her knee. +C and he came run/ing after. +C and then the manager he came : and saw her : (on the) on the floor. +C and he took a bandaid and put it on her : knee. +C and then (he s) he said no more run/ing. +C you can hurt yourself again. +C because there is such a sign say/ing no run/ing. +C so you should listen to the sign/s. +C or else you would[EW:could] hurt yourself. += [Eg:A2] += [Bg:A3] +C There once was a boy and a girl. +C (with a) and the boy had an airplane : which he want/ed to play : with. +C so he play/ed with it. +C and then : she[!] : said ooh[!]. +C and then[!] he gaved|give[EW:gave] it to her. +C she play/ed with it. +C and he was not that happy. +C she threw it. +C and : it land/ed in the : pool. +C and he was very very mad : at her. +C and he went you drop/ed (my) (my favorite) favoritest[EW:favorite] toy. +C and I am angry[!] at you. +C so (the) : the manager came again : saw the two fight/ing. +C and he[!] said what is (m) the problem? +C (and he) and then the boy[!] said : she drop/ed my airplane in the water. +C and I can not get it. +C and she explain/ed that it was an accident. +C and he is like I[!] can get that. +C and he try/ed. +C and he try/ed. +C but he could not. +C he reach/ed it as far as he could. +C but he was about to fall in. +C then (he cry/ed) the boy cry/ed to bit/s [EU]. +E Then what? +=C Then the little boy cry/ed to bit/s [+_bch] [EU]. +C then the girl[!] manager came. +C and she ask/ed what was the problem [~_?] [EU]. +C she had a net. +C so she could get it. +C she reach/ed as far as she can with it [EU]. +C and she got it : in the net. +C and (he) she[!] said never play around with toy/s : (wu) at the side of the : pool. +C or else the toy/s will get stuck again. +C and (he : would not) he would not play with his toy (at) at the side of the pool any more. +C so (they both learnt a p) (ay) they both learn/ed something for (um) drop/ing toy/s into the water : and get/ing hurt [EU]. += [Eg:A3] += [Bg:B1] +C there once was a boy and a girl. +C they were make/ing a (sandcastle) (sa) sandcastle in the sand. +C so they both help/ed. +C and[-:][!] something bad happen/ed. +C that the boy dump/ed all[!] the sand on top. +C and something happen/ed again. +C the (s) (the sand wa) the sandcastle only had one thing stick/ing up. +C and : the rest of the sand was on top of everything else. +C and he put it back up. +C and she was just[!] wait/ing and wait/ing. += [Eg:B1] += [Bg:B2] +C there was a boy and a girl again. +C and they were go/ing to have a picnic. +C so they set off to play : someplace. +C and he ate lot/s and lot/s of stuff. +C and then[!] something terrible[!] happen/ed to him. +C he got stuff/ed : dizzy : and he need|need[EW:needed] a doctor. +C he went wibbly[c] wobbly. +C and his stomach was growl/ing. +C and his stomach was really big too. +C so she got a doctor. +C and then she pull/ed (him) her all of the way to him. +C and she said doctor doctor I need you really badly. +C there is someone who need/3s your help. +C so she said : say ah : and never knew it again when she was done [EU]. +C so she brought him to : the nurse : at the nurse/z place : so : he can lay down and (ha) have a rest. += [Eg:B2] += [Bg:B3] +C there once was a boy and a girl again. +C (who had a balloon) the girl had a balloon. +C (and : sh) and the boy said can I see your lovely balloon? +C and he try/ed to get the balloon. +C but : he untie/ed it. +C and she said do not(*3) do that. +C or else : it would float away. +C and she was very mad at him. +C so she got steam/ed up. +C and he was still look/ing. +C and she was very very angry. +C (and they saw) : and he[!] saw a balloon : saler[EW:seller]. +C she was still steam/ing mad : at him. +C He was still run/ing. +C and : she was hold/ing on to her wagon. +C he was (g) say/ing : to get that : balloon. +C but[!] : it was : [EW:a]balloon for five cent/s. +C and he only had : five buck/s. +C so[!] he said if you do not have enough (you sh) you can not get a balloon. +C and they saw the doctor. +C so they ran to her[!] and ask/ed if (we can have some) if they can have five cent/s : because they want/ed a balloon for her because : she lost one. +C because he want/ed to pay her back. +C so[!] : (she) (he paid her) (he) she[!] paid him[!]. +C and they got the (two bal) two balloon/s. +C and they hug/ed it and did not let it float away. +=C The end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/902.slt b/data/ENNI_SALT/train/902.slt new file mode 100644 index 0000000000000000000000000000000000000000..2892ab8313877d7029ab39a6575370f9dd42bfdd --- /dev/null +++ b/data/ENNI_SALT/train/902.slt @@ -0,0 +1,125 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 4/24/1990 ++DOE: 3/7/2000 ++CA: 9;10;12 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 902=CHI ++Tape Location: Disk M2 Track 16 += [Bg:A1] +C (um) the giraffe[-:] is say/ing hi. +C and then she is bounce/ing the ball. +C and she is go/ing hi too. +C hi. +E she is what ? +=C she is say/ing hi [+_bch]. +C and then : she is bounce/ing the ball. +C and she say/3s hi again. +C and then : the ball go/3s into the water. +C and they are go/ing oh no[!]. +C and then the giraffe swim/3s to it : and get/3s the ball. +C : and then : (sh) the giraffe give/3s it to the elephant. +C : and they smile back at each other. +C and then she[-:] : say/3s thank you. +C and : she has the : love in her eye/s[~!_softly_laughing]. += [Eg:A1] += [Bg:A2] +C (um) she want/3s to[-:] go over on the diving board. +C : and she[-:] is run/ing to the diving board now. +C : and (she[-:] is) she slip/ed on the water. +C : and now she is cry/ing. +C now she has a : booboo on her (uhm) kneecap. +C : and now the lifeguard is come/ing : to help her. +C and now the lifeguard put/3s on a bandage. +C : and : they are put/ing her on the bench. +C : and she has a smile. +C and he has a hm [~_child_making_a_face] like that. += [Eg:A2] += [Bg:A3] +C [~_okay] she is say/ing[-:] hi to the giraffe. +C and he is say/ing hi back. +C and the giraffe is play/ing with his airplane. +C and the elephant is look/ing at the airplane. +C and then the elephant take/3s it away from the giraffe. +C and he is go/ing hey[!]. +C and then the elephant drop/3s it into the water. +C and now they are all : worry/ed. +C and then the giraffe get/3s all mad at the elephant. +C and she is go/ing : ooh (I) am I bad ? += %com: EXA asks CHI to repeat +C and then the lifeguard (s) come/3s again. +C and then she is kind of like : walk/ing away. +C and then he is just stand/ing there : with a smile on the side of the face. +C (and then the lifeguard ask/3s) : (I think the guard) (lifeguard he) she is go/ing [~_high_pitched_voice] well I[!] did not do it. +C (and she is go/ing) and the giraffe is go/ing like that [~_child__raises_her_eyebrows]. +E oh, raise/ing his eyebrow/s, uhhm. +C and then the lifeguard is try/ing to get the airplane. +C but he can not. +C and the giraffe and the elephant are just stand/ing back go/ing (I hope I get my) I hope I get my airplane back. +C and then the giraffe is cry/ing. +C and (like) she is upset. +C (and the elephant is go/ing) the lifeguard is say/ing well I[!] could not get it. +C : (and then : I think that[-:]) well I think it is another lifeguard or something or a friend or something. +C (that) she has a net to get the airplane. +C and (sh) in this picture she is get/ing it. +C and they have a smile on their face/*s. +C and now : he[!] has a big[!] smile on his face. +C and she is[-:] give/ing it to him. +C now : they are both : happy. += [Eg:A3] += [Bg:B1] +C (um) the rabbit is saying hi. +C and it look/3s like a dog. +C and she or he is say/ing hi. +C : and then : those two are play/ing. +C the rabbit has a bucket. +C and he is fill/ing it up with the sand. +C and she is or he is make/ing a (castle) sandcastle. +C and then : the rabbit is put/ing the sand that he has in the bucket onto the sandcastle. +C and (she is worry/ing) she is worry/ed that the first sandcastle is go/ing to [~_gonna] break. +C : and : the sandcastle break/3s. +C and he is go/ing [~_sharp_intake_of_breath] oh no did I wreck it? +C (and then he) (she is cry/ing) and she is sadly cry/ing and (put/ing) try/ing to put it back together while he is go/ing : uhoh what did I do? += [Eg:B1] += [Bg:B2] +C (sh) the[-:] : dog : is say/ing hi to the rabbit. +C and then the rabbit is : eat/ing. +C but he has all his food. +C and : his tongue is just (ta) stick/ing out. +C and the rabbit ate all his food really really fast. +C then the : dog : still is eat/ing her sandwich and juice box. +C and : he has a sick feel/ing in his stomach. +C and she is worry/ing. +C and the doctor come/3s by. +C and the dog go get/3s the doctor. +C and then (she is say/ing) (she is pull/ing the) the dog is pull/ing the (doc) doctor or nurse to see the rabbit. +C then the nurse : check/3s the : rabbit : and *is say/ing that you have a bad cold. +C : (and she) (and the rab) both the rabbit/s are walk/ing by while the dog is stay/ing there. += [Eg:B2] += [Bg:B3] +C (um) the dog has the balloon on : (her) his wagon. +C and the rabbit is come/ing by again. +C (and say/ing) they are both say/ing hi. +C and the rabbit is go/ing to go touch the balloon. +C and then he is untie/ing it. +C and she is go/ing oh no please do not do that. +C and then the rabbit let/3s go of it. +C and : they are try/ing to catch it. +C but they can not catch it. +C then the dog is really really really[!] mad at the rabbit : while he is look/ing up. +C and then : all of a sudden they see : a : balloon person. +C well I think that the rabbit see/3s a balloon person while the girl dog is still mad at him. +C and then he is say/ing how much for one of those please? +C (five) and it has five dollar/s [EU]. +C (but they do not have) but he do/3s not have five dollar/s. +C and they are all worry/ing : while he is stand/ing up : still hold/ing the balloon/s. +C and then they see (the doc) the nurse again. +C (and the rabbit is gonna) and the rabbit is run/ing over there. +C and (he is ask/ing her : do you have any) (uh) he is probably say/ing I am broke. +C so I was wonder/ing if you can buy me and her a balloon please. +C and (then she give/3s) then she buy/3s : the balloon/s for them. +C and then they both are happy. +C and so is she. += [Eg:B3] diff --git a/data/ENNI_SALT/train/903.slt b/data/ENNI_SALT/train/903.slt new file mode 100644 index 0000000000000000000000000000000000000000..7c14a563bd40045033cad27739c72deefd047360 --- /dev/null +++ b/data/ENNI_SALT/train/903.slt @@ -0,0 +1,75 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 3/31/1991 ++DOE: 5/10/2000 ++CA: 9;1;1 ++Gender: F ++Context: Nar ++Group of CHI: SLI ++ID: 903=CHI ++Tape Location: Disk L13 Track 75 += [Bg:A1] +C they are at the swimming pool. +C : (bu) but : (they do not know) : they do not know : how to swim. +C zebra try/3s : to. +C (but) and he (gets a : s) (tr) try/3s to. +C (but) : and he got the ball. +C he is wet. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C they meet again. +C : but this time (she is) she is go/ing into the pool. +C but she slip/3s : and[-:] : fall/3s : and is cry/ing. +C : the lifeguard come/3s : and (sh) : help/3s : the : scrape on her knee get better. +C : (she can : s) he say/3s she has to sit down. +C : he point/3s to the sign and say/3s (n) that say/3s no run/ing. += [Eg:A2] += [Bg:A3] +C her knee is better. +C : he has a plane. +C she snatch/3s it from him. +C she drop/3s it in the water. +C it sink/3s. +C : the lifeguard : tell/3s her to get it. +C : she tell/3s the truth. +C he try/3s to get it. +C but he can not. +C he is sad. +C but someone else come/3s with a net : and scoop/3s it up : (but) : and give/3s it back to (her) him. +C he is happy. += [Eg:A3] += [Bg:B1] +C one of the : animal/s spill/ed his sandcastle. +C bunny want/3s to help. +C he spill/3s it on. +C : (zz) this woman (is) she is sad. +C and then she cry/3s. += [Eg:B1] += [Bg:B2] +C they are there : again. +C he is eat/ing a carrot. +C and (she) (he has all) he is eat/ing all the yummy stuff. +C and all she has is a sandwich. +C and then he is full. +C : (d) dizzy. +C then : she run/3s : (back) : back up : to get the doctor. +C : and : the doctor (sa um) : tell/3s the bunny (tha) do not eat too much. +C and then : the doctor take/3s the bunny : to the : doctor/z office. += [Eg:B2] += [Bg:B3] +C (she) she has a balloon and wagon. +C (she is point/ing at it) he is point/ing at it. +C (he w) he want/3s : to untie it. +C it fly/3s away. +C and then she get/3s mad. +C (ss[-:]) : someone is sell/ing balloon/s. +C : and he ask/3s for another one for her. +C : he do/3s not have any money. +C : he tell/3s (the bu) : her. +C so : she might have money. +C they ask someone else for five (ss) penny/s : for a balloon. +C : there is[EW:are] two left. +C : he want/3s his to pop : and fly away maybe. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/904.slt b/data/ENNI_SALT/train/904.slt new file mode 100644 index 0000000000000000000000000000000000000000..617acc44cb99c1d43b723f6c9f351da6ed1bfe98 --- /dev/null +++ b/data/ENNI_SALT/train/904.slt @@ -0,0 +1,79 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 1/11/1991 ++DOE: 3/7/2000 ++CA: 9;1;25 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 904=CHI ++Tape Location: Disk M2 Track 26 += [Bg:A1] +C one day giraffe and elephant : went play/ing : by the pool [EU]. +C they were play/ing with a ball. +C but accidentally : giraffe : bounc/ed it into the pool. +C so : (g) giraffe (a d d) jump/ed into the water and went after the ball. +C then he gave it (to) to elephant. +C elephant thank/ed him very much. += [Eg:A1] += [Bg:A2] +C one day giraffe and elephant went to the swimming pool. +C : elephant : want/ed to go on the diving board : and start/ed run/ing : across the deck. +C suddenly elephant slip/ed and scrape/ed her knee. +C : the lifeguard came over : (and) : and gave her a bandage. +C : elephant went over to a bench to sit down. +C : then the lifeguard told her you are not suppose/ed to be run/ing on the deck. += [Eg:A2] += [Bg:A3] +C one day giraffe and elephant went to play by the swimming pool. +C giraffe brought along his airplane. +C : he made it fly (re) very high up. +C : then : suddenly elephant snatch/ed it from him : then accidentally drop/ed it in the water. +C : giraffe was very angry at elephant. +C : then the lifeguard came over. +C : they told (him) him what had happen/ed. +C he try/ed get/ing it. +C but he could not reach. +C : (th) suddenly giraffe start/ed cry/ing. +C : then someone else came over : with a net. +C : and then she got it out. +C : she gave it to a : giraffe : who was very happy after that. += [Eg:A3] += [Bg:B1] +C one day two animals were play/ing in (th) a sandbox. +C : one was a rabbit. +C and one was a dog. +C the dog had built a sandcastle. +C the rabbit start/ed help/ing out. +C (but the ra) but : he dump/ed (the bucket of sand on : th) a bucket of sand on the castle. +C and there it stood : in : a heap of sand. +C : suddenly the dog start/ed cry/ing. +=C : wi : and : guess that's it [+_bch]. += [Eg:B1] += [Bg:B2] +C one day : rabbit and dog went for a picnic. +C : (they brought) rabbit brought a lot of food. +C but dog only brought : a sandwich. +C then rabbit ate all his food. +C and dog just ate his sandwich and juice. +C suddenly rabbit start/ed feel/ing dizzy : and then faint/ed. +C (ss) then[-:] dog went for a doctor. +C (the dog) the doctor came over : and told the rabbit not to eat as much. +C : then the rabbit start/ed (walk) go/ing home. += [Eg:B2] += [Bg:B3] +C one day : rabbit and dog went for a walk. +C dog had a balloon : tie/ed to his wagon. +C : rabbit suddenly start/ed admire/ing the balloon : and then tie/ed it from the wagon. +C then suddenly he accidentally let go. +C dog was very angry at rabbit. +C : then rabbit went to the balloon man. +C he ask/ed him for a balloon. +C the balloon man told rabbit that they were five cent/s. +C but rabbit had nothing in his pocket/s. +C : so they could not buy one. +C : then rabbit went : to the doctor and ask/ed him if he could (b) buy them a balloon. +C rabbit point/ed at the balloon man : and show/ed him that his (empties wer) pocket/s were empty. +C : then the doctor bought (both) : both the dog and the rabbit a balloon. +C they were very happy. += [Eg:B3] diff --git a/data/ENNI_SALT/train/905.slt b/data/ENNI_SALT/train/905.slt new file mode 100644 index 0000000000000000000000000000000000000000..5c7f94d3471ce9651339e68898cabca7e2aab957 --- /dev/null +++ b/data/ENNI_SALT/train/905.slt @@ -0,0 +1,174 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 1/14/1991 ++DOE: 6/19/2000 ++CA: 9;5;5 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 905=CHI ++Tape Location: Disk L18 Track 58 += [Bg:A1] +C A long time ago there was a little elephant name/ed Ella. +C and she was play/ing (with) with her best friend Gerome the giraffe. +C they were play/ing along the swimming pool. +C and as they were play/ing pass with the ball, the ball went inside the pool. +C (and they were shock/ed) (and they were) (and they were) and they were very shock/ed. +C Ella the elephant did not know how to swim. +C so Gerome the giraffe had to go in and try to get the ball. +C when he got the ball he gave it to Ella the elephant. +C (Ella wa) (E) Ella was very happy. +C Gerome was also very happy because he like/ed Ella. +C and Ella now really like/ed him. += [Eg:A1] += [Bg:A2] +C A long time ago there were two friend/s. +C there was Rachelle the elephant and Bob the giraffe. +C (and they) and they were go/ing to have a swim in the swimming pool. +C but then they saw a sign that said no run/ing. +C but (um) Rachelle the elephant did not recognize it. +C so she start/ed run/ing along the swimming pool then. +C (she) then when she was run/ing she slip/ed and fell. +C and she skin/ed her knee. +C and she start/ed to cry. +C Gerome came run/ing to see what had happen/ed. +C (a) after he start/ed to care for her the lifeguard came (and check/ed) and check/ed (what was) what was wrong. +C and he saw (that) that (Rachelle) Rachelle the elephant was run/ing and she slip/ed and that she did not see the sign and that she hurt herself. +C the lifeguard put a big bandage on where she skin/ed her knee. +C and Rachelle felt much better. +C (as Rachelle was) as the lifeguard carry/ed Rachelle back to the bench, (Gerome) Gerome comfort/ed her. +C and then the lifeguard spot/ed the sign. +C and he told her Rachelle that the sign was there and she miss/ed the sign and that she should never run again. += [Eg:A2] += [Bg:A3] +C Here we are again with Rachelle the elephant and Bob the giraffe. +C (Bob) (Bob) Bob was show/ing off his new airplane that he got from his grandma for his birthday. +C (ra) Rachelle was very happy. +C (she thought) she thought that it was very interesting. +C so when they start/ed to play with it Gerome show/ed her a trick (that he found) that he found out with the airplane. +C Rachelle was very shock/ed and surprise/ed. +C Rachelle like/ed it so much that she stole it out of Bob/z hand/s and start/ed to play with it herself. +C (Bob) Bob did not know what was happen/ing. +C but when she play/ed with it, it fell inside the swimming pool. +C Bob got kind of sad. +C (but then he) (not) not only did he get sad : but he got really mad at Rachelle. +C and he said Rachelle now you have to go get it. +C but Rachelle did not know how to swim. +C so they called (ov) over the lifeguard to go get it because Rachelle did not know how to swim [<~_I_mean]and Gerome thought[>~_I_mean] and Bob thought that it was only fair that she had to get it because she threw it into the pool. +C (the lifeguard) the lifeguard said (well you are not) why did you throw it into the pool ? +C and Rachelle said it is just an accident. +C and the lifeguard said (well why) (why did you) why did you take it out of Bob/z hand anyway ? +C she said well it was really interesting. +C I just want to see it. +C the next time you should ask. +C (and) and Rachelle said can you please please[!] get it ? +C so he try/ed to get it. +C and he try/ed and try/ed. +C but he could not get it. +C Gerome start/ed to feel sad that he would never get it again. +C so finally : (um) Rachelle/z mother came and had a big long net. +C (and she) and she was about to get it. +C and she got[!] it : with the big net. +C she got the airplane all safe and sound no broken piece/s. +C so then she gave it to Bob. +C and Bob start/ed to get very happy and very excite/ed that he could play with it again. +C he hug/ed and hug/ed it so much. +C and now Rachelle was happy that he had it back. += [Eg:A3] += [Bg:B1] +C (a couple of da) last week (there were) there was a bunny name/ed (um) Babs and a dog name/ed : Michelle. +C (they) (they were) (Babs) Babs was walk/ing (on her way to) just on a walk. +C and she saw Michelle (play) play/ing in a sandbox and build/ing a sandcastle. +C she thought it would be fun. +C and she want/ed to play too. +C so Michelle let her play with it. +C (and they) and they were make/ing sandcastle/s and : all different kind/s of animal/s. +C so then when Babs pour/ed her bucket of sand all over the top of the castle : it broke it. +C Michelle was so sad. +C so was Babs. +C (she thought) she thought it would make it better. +C but instead it made it worse. +C Michelle start/ed to cry. +C and she start/ed to fine her sandcastle again [EU]. +C but (it was all) it was all coat/ed with sand (but) by the big bucket of sand. +C (Babs look/ed) (Babs look/ed) Babs look/ed embarrasse/ed because (it) she broke it. +C and now her friend was cry/ing. += [Eg:B1] += [Bg:B2] +C here we are again with Babs and Michelle. +C (Bab) Babs was walk/ing along in the forest (when) when she caught up with Michelle. +C they were go/ing on a walk to a picnic. +C Michelle said oh look at the perfect view. +C (and) and (um Mich) Babs said it is so beautiful. +C (why do not) (why don't we) why do not we have a picnic here? +C so they did. +C and (Bab) (Babs ate) (Babs) Babs brought a lot. +C he brought a cake submarine sandwich pickle/s cheese chip/s : and almost anything you could think of. +C and : Michelle only brought a couple thing/s only thing/s she need/ed. +C Babs was eat/ing everything. +C (after Babs) after Michelle was finish/ing her juice and her sandwich : Babs was done everything. +C he had a gigantic stomach (and start/ed) (and) and start/ed to burp the ABC/s. +C Babs got really dizzy (and) and felt sleepy. +C (when) when Michelle was just[!] about to finish her juice and sandwich : (Babs) Babs fell asleep. +C so when he was sleep/ing : (Michelle) (Michelle saw) Michelle phone/ed the doctor because he was really dizzy. +C (and he) (and he did not) and he did not look very good. +C so when the doctor came she hurry/ed over (and told) and told the doctor to come and see what was wrong. +C (she) : Michelle kept drag/ing her over. +C but : when they were just a few feet away the doctor said he just sleep/ing. +C (and he ate) and he ate too much. +C (do not) do not worry. +C he will just be a couple minute/s (when he) when he will get better. +C but she said but he do/3s not look very good. +C you should come and see. +C but she did not want to come and see. +C so she did. +C and when she tap/ed him on the head (he start/ed) (he start/ed to bark) he start/ed to bark even though he was a rabbit. +C the doctor thought something was wrong. +C but then : when she check/ed him : he was just right. +C all he did was eat a little too many : chip/s. += [Eg:B2] += [Bg:B3] +C (last) last year (about) in the middle of the spring time (there was) there was a dog name/ed : Sarah (and a) and a rabbit name/ed Christopher. +C (as they were) as (um) Sarah was walk/ing with her new wagon : (she) (that she got from a parade) that she won from a parade with a balloon that she also got from the parade : (she was walk/ing) she was walk/ing and play/ing with it. +C when Christopher saw it he want/ed to play too. +C he love/ed the balloon. +C he thought it was the best part of everything. +C he want/ed to see it even closer because (it was) it was high in the sky. +C so when he want/ed to untie it just so he see a (leettle) little more (um Sarah) Sarah thought he should not do it. +C but then she thought maybe I will get to see it closer too. +C but when he let go : the balloon start/ed to sail way up high in the sky. +C (Sarah) Sarah start/ed to feel sad and that she would never see it again. +C (and that) and Christopher (was) was very sad because he[!] want/ed to see it even closer. +C but : he did not get it because he let it off. +C but then Sarah got really[!] mad at Christopher because he let her favorite balloon off. +C and she started to throw a fit. +C then[!] (a guy from) a guy was walk/ing down the street with billion/s of balloon/s. +C (while) while Sarah was still be/ing mad at Christopher Christopher spot/ed him. +C (and he w) and he thought maybe he should buy a balloon for her. +C so he said can I have (one balloo) one of those balloon/s? +C and can I have a purple one? +C he said sure. +C and the purple one was the biggest one. +C and he gave it to her. +C (and as) (and as he) (and when) (and as) and as he was walk/ing Sarah start/ed to feel a little happier because he bought a balloon for her. +C at least she thought so. +C (but when) (but when he) but when he look/ed in his pocket to buy[!] a balloon he did not have any money. +C so then the guy that own/ed the balloons said you can not have it because you have no money. +C so Sarah start/ed to walk towards him. +C (so) so : (um) Christopher put his hand/s in his pocket still try/ing to find something. +C and the guy said well you know what? +C just because you let her balloon off (and) and since you are my grandson[!] : I will let you have a balloon for free. +C but then he change/ed his mind again because he thought well even though he let it off he should still buy it for her. +C so then[!] they saw : his mom walk/ing down the street. +C and she said mom can I have five cent/s? +C (and she) and she did not hear him. +C and so she said it again. +C he said I need five cent/s. +C but I have none because I let Sarah/z balloon go. +C and she really want/3s another one. +C so the lady pay/ed the man (five cent/s) ten cent/s actually so that they could both have a balloon. +C they were really happy. +C and (they hug/ed them and) they hug/ed the balloon/s a lot. +C (and then they said) and they said thank you to Christopher/z mom. +C and then they went off to play again. += [Eg:B3] diff --git a/data/ENNI_SALT/train/906.slt b/data/ENNI_SALT/train/906.slt new file mode 100644 index 0000000000000000000000000000000000000000..c8ec4333625dc7fb84f26b005412c7a6cd72e44f --- /dev/null +++ b/data/ENNI_SALT/train/906.slt @@ -0,0 +1,90 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 9/06/1991 ++DOE: 3/07/2001 ++CA: 9;6;1 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 906=CHI ++Tape Location: Disk M7 Track 59 += [Bg:A1] +C (uh) : there once was a girl who was at a swimming pool. +C and she was play/ing with some ball/s. +C she accidentally threw one of the ball/s in the water. +C so[-:] this other guy went to go get it for her. +C and then he got it. +C then she was happy. +=C and then (um) : [+_bch]. +E do you have anything to say about that page ? +C then after that she like/ed him. += [Eg:A1] += [Bg:A2] +C (um) : there was a girl at a swimming pool. +C and she want/ed to : go on the diving board. +C so she : : ran over there to the diving board. +C then she ran all the way there. +C then she accidentally fell. +C and she scrape/ed her knee. +C so then the lifeguard came : to her : to help her. +C and the lifeguard put a bandage on her knee. +C and : they help/ed her to the bench to sit down. +C and the lifeguard point/ed to a sign that said no run/ing. += [Eg:A2] += [Bg:A3] +C there once was a girl who was[-:] at a swimming pool. +C and she seen|see[EW:saw] this boy that had an airplane. +C when he was fly/ing it around (she lik/ed it) she start/ed to like it. +C so then she : start/ed fly/ing it too. +C and then she accidentally got it stuck in the water. +C so then the other guy got sort of mad at her : because it was in the water. +C so then the lifeguard came. +C and then the girl told the lifeguard it was an accident. +C so then the lifeguard try/ed reach/ing for it. +C but they could not. +C and then : that guy was cry/ing because he want/ed his airplane. +C so then this other lady came with a net thing to[-:] try to get the airplane out. +C and then she got[!] it. +C (she start/ed to) and then she gave it to the little boy. +C (and then he like/ed) then he was happy because he got his airplane back. += [Eg:A3] += [Bg:B1] +C there once was[-:] a girl play/ing at the park build/ing a sandcastle. +C and then this other boy came (ch) and start/ed to help her build it. +C and then he start/ed dumping sand all over it. +C and then the tower broke. +C and then she was cry/ing. +C so she start/ed to try fix/ing it back. += [Eg:B1] += [Bg:B2] +C there were these two people walk/ing down the trail to go for a picnic. +C and also they both had a picnic together. +C and : the rabbit he ate lot/s and lot/s of food. +C and then after he ate all the food he felt sick. +C and then he felt real dizzy. +C so then the other friend told this nurse. +C (and then :) and then she came to help him. +C and then : she (uh) : ask/ed him how many finger/s she is point/ing. +C and then after that (they went) (she drop/ed) she (wa) walk/ed with him around. += [Eg:B2] += [Bg:B3] +C there once was a girl who had a wagon. +C and she had a balloon tie/ed to it. +C then she met this other boy. +C and then he like/ed her balloon. +C so then he start/ed try/ing to untie the balloon off her wagon. +C and then he : put it up in the air. +C and it went float/ing in the air. +C and then the other : girl got mad because her balloon was gone. +C so then she seen|see[EW:saw] this other guy with a whole bunch of balloon/s sell/ing balloon/s. +C and then the rabbit ask/ed : the man (if he could buy) if he could have a balloon. +C and then : he said balloon/s are fifty cent/s. +C but he did not have enough money or any money. +C then (um) : he want/ed a balloon really bad. +C and then there was this other lady. +C so : the other guy start/ed walk/ing up to her. +C and (he ask/ed her) he ask/ed the lady if : she could (um) give five cent/s for a balloon. +C so then the lady gave the man five cent/s. +C and they got two[!] balloon/s. +C and then they each had one balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/908.slt b/data/ENNI_SALT/train/908.slt new file mode 100644 index 0000000000000000000000000000000000000000..8d27c41451288a29815f747b5527dbed5a9c3a5c --- /dev/null +++ b/data/ENNI_SALT/train/908.slt @@ -0,0 +1,136 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 5/16/1991 ++DOE: 3/07/2001 ++CA: 9;9;19 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 908=CHI ++Tape Location: Disk M7 Track 69 += [Bg:A1] +C (um) there is a giraffe and an elephant play/ing by the pool. +C and : the elephant has a ball and is bounce/ing it by the pool. +C and : she throw/3s it into the water. +C and the giraffe and the elephant look surprise/ed. +C and the giraffe (go/3s and run/3s to get in) go/3s in the water and : is swim/ing to get the ball. +C and the elephant is scare/ed that he might drowned[EW:drown]. +C and (the) the giraffe get/3s the ball and give/3s it to the elephant. +C and the elephant is happy. +C the elephant say/3s thank you. +C and the giraffe say/3s you are welcome. += [Eg:A1] += [Bg:A2] +C (um : the) there is a[EW:an] elephant and a giraffe at the pool. +C and there is a sign (the no). +C and it say/3s no run/ing. +C and the elephant (go/3s) (look/3s) see/3s a diving board : and go/3s run/ing towards it. +C and the giraffe is run/ing after her try/ing to tell her that the sign says no run/ing. +C and she slip/3s. +C and she scrape/3s her knee. +C and the giraffe come/3s walk/ing fast behind her to see what is the matter. +C and he call/3s the lifeguard. +C and the lifeguard (come) come/3s : walk/ing (a li) a little bit fast but not run/ing. +C and the lifeguard put/3s a bandaid. +C (and the) and the elephant is cry/ing. +C and the giraffe (is hold) is say/ing it is okay. +C it will not hurt. +C (um) : and the elephant has to sit on the bench (until) (un) for awhile. +C and the lifeguard say/3s she could go in the pool after. +C and the lifeguard show/3s her the sign that says no run/ing. +C and (she ssss) she say/3s oh I sorry [EU]. += [Eg:A2] += [Bg:A3] +C there is (um) a[EW:an] elephant and a giraffe at the swimming pool. +C and the giraffe has a toy airplane. +C and the giraffe is (um) play/ing with the airplane, spin/ing it around. +C and the elephant is ask/ing him if (he) she could play with it. +C (um) the elephant take/3s it away from the giraffe. +C and the giraffe is say/ing no give it back. +C give it back. +C and the elephant accidentally drop/3s it in the water. +C and the giraffe is look/ing surprise/ed. +C (then the) (it is) and then it start/3s to sink. +C (and the) and the elephant is look/ing like she never did anything. +C and the giraffe is get/ing mad at her say/ing why did you take it away ? +C then the lifeguard come/3s. +C (and the) and the giraffe tell/3s him what happen/ed. +C (and he) and : he is stand/ing by the pool see/ing : how they could get it out. +C (and then) and then the elephant tell/3s : him that : she accidentally drop/ed it in the pool. +C (and) and it is sink/ing even more. +C then the lifeguard try/3s to get it out. +C and he is on his hand/s and knee/s (on the) on the pool : and try/ing to go over to get it. +C then the lifeguard (s) tell/3s them there is nothing we could do. +C it is too far out. +C and the (gir) elephant and the giraffe : are sad. +C and the giraffe is cry/ing. +C then the elephant/z mom come/3s : and (h) has a net (and is gonna) and tell/3s the kid/s that she will get the airplane out. +C and she take/3s the net and (sc) try/3s to scoop it out of the water. +C and she got it out with the net. +C and the giraffe thank/3s her very much. +C and then the giraffe play/3s with it. +C (and he) and he say/3s to the elephant you could only play with it if you could not put it in the water. += [Eg:A3] += [Bg:B1] +C there is (um) a dog in the sandbox. +C and rabbit want/3s to play with him. +C and the dog made a sandcastle. +C (the rabbit put it) the rabbit is play/ing with the dog. +C and the rabbit (um) put some sand in the bucket and is : move/ing it around with the shovel. +C and the rabbit (um) take/3s the sand in the bucket and put/3s it on the dog/z[?] sandcastle. +C (um) the rabbit wreck/3s the sandcastle (in) when he put all the sand on the sandcastle. +C (and the) and the dog looks funny. +C and (the) now the dog is cry/ing. +C and the rabbit (um) is look/ing like he did not do nothing. += [Eg:B1] += [Bg:B2] +C (um) the rabbit and the dog (is) are carry/ing picnic basket/s. +C and they are in the forest. +C and they unpack their picnic basket/s. +C and : the rabbit has all[!] junk food. +C and the dog has only a sandwich out. +C and the rabbit ate all his food. +C (and) and (he is all) he is all look/ing silly. +C and the dog is still eat/ing his food. +C now the rabbit is get/ing dizzy. +C and the dog : is look/ing at him. +C (and) and the rabbit is not feel/ing well. +C and the dog get/3s (um) a doctor (and want/3s) and is talk/ing to her about the rabbit. +C and their doctor come/3s (to the picnic) to their picnic (ban) blanket to go help the rabbit. +C and the doctor is (put/ing um a thermometer in the rabbit/z) go/ing to [~_gonna] put (it in) a thermometer in the rabbit/z mouth to check the temperature. +C and the rabbit is all well. +C and he is walk/ing now and thank/ing the doctor. += [Eg:B2] += [Bg:B3] +C (um) there is a dog pull/ing it/z wagon. +C and it has a balloon tie/ed to the wagon. +C and the rabbit is come/ing jog/ing to the (r) dog. +C (the) the rabbit look/3s at the dog/z balloon. +C and it is say/ing (this i) can I have this balloon? +C and the dog say/3s no. +C and the rabbit untie/3s it from the wagon. +C (and its the r) and the dog is look/ing : surprise/ed. +C and (he let/3s go) the rabbit let/3s go of the balloon. +C and it is fly/ing in the air. +C and they are try/ing to catch it. +C the rabbit is look/ing up into the sky at the balloon. +C and the dog is look/ing very angry at the rabbit. +C (the) (the t) the rabbit see/3s a man hold/ing lot/s and lot/s of balloon/s and tell/3s the dog. +C and the dog is still look/ing angry at him. +C the rabbit go/3s to the man with the balloon/s and ask/3s him for one. +C and : the man tell/3s him that the balloon/s are five cent/s. +C and the rabbit tell/3s him he has no money. +C and the dog is trail/ing behind him. +C (then the) then the dog come/3s. +C and : he ask/3s (the ra) (the) the man if they could have one for free. +C and he say/3s no. +C then they see the doctor. +C and (they w) and the rabbit run/3s to her. +C and the dog is stand/ing by the man. +C and the rabbit ask/3s the doctor if they could have some money (for) (for) for the balloon/s and because he is broke [EU]. +C (the r) (the r) the doctor go/3s up to the man and give/3s him : ten cent/s for the balloon/s. +C (and the b) and the rabbit and the dog have balloon[EW:balloons]. +C and the rabbit and the dog are happy. +C and they thank (the) the doctor. +C and they are rub/ing their balloon/s all over the place. += [Eg:B3] diff --git a/data/ENNI_SALT/train/909.slt b/data/ENNI_SALT/train/909.slt new file mode 100644 index 0000000000000000000000000000000000000000..0d8f7da99fd8459c143363bbeb6f8e0b2fb82e5d --- /dev/null +++ b/data/ENNI_SALT/train/909.slt @@ -0,0 +1,94 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 2/25/1991 ++DOE: 5/17/2000 ++CA: 9;2;22 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 909=CHI ++Tape Location: Disk L15 Track 51 += [Bg:A1] +C A giraffe is play/ing with an elephant. +C the ball that they were play/ing with went into (s) a pool of water. +C the giraffe dove down (and[-:]) swim/ing towards the ball. +C he grab/ed the ball and gave it to the elephant. +C the elephant is happy with the giraffe. += [Eg:A1] += [Bg:A2] +C (um) The giraffe and the elephant[-:] are[-:] go/ing to swim in a pool. +C the elephant start/3s run/ing towards the pool. +C she slip/3s : because she was run/ing. +C she fell and hurt her knee. +C the giraffe and lifeguard come to see if she is okay. +C (the) the[-:] elephant[-:] lifeguard put a bandage on her knee. +C she is okay. +C and she is sit/ing on a bench. +C the lifeguard is mad at her because she was run/ing. += [Eg:A2] += [Bg:A3] +C (The ele) [~_or] the giraffe has : (a t plane) a toy plane. +C and the elephant : is happy. +C the giraffe is show/ing the elephant what it can do. +C the elephant is surprise/ed. +C the elephant grab/ed the plane away from the giraffe. +C the giraffe is : unhappy. +C the elephant (um f) drop/ed the plane into the pool. +C the giraffe got mad at the elephant. +C the lifeguard see/3s that the plane is sink/ing into the pool. +C and[-:] he is upset with them. +C the elephant explain/3s to the lifeguard what happen/ed. +C the lifeguard try/3s to reach the plane before it sink/3s. +C the lifeguard can not get it. +C and the giraffe is cry/ing. +C a[-:] lady elephant come/3s with the net and[-:] is go/ing to grab the plane. +C she try/3s. +C and she almost got it. +C and the : giraffe stop/3s cry/ing. +C she get/3s the plane and give/3s it to the giraffe. +C (the giraffe is n) the giraffe is now happy. +C the giraffe[-:] : is happy because he got his plane back. += [Eg:A3] += [Bg:B1] +C [<~_or_#_yeah]um a little[-:] kangaroo[>~_or_#_yeah] : a kangaroo is : play/ing in the sand. +C and a rabbit come/3s. +C the kangaroo and rabbit are make/ing a sandcastle. +C the rabbit dump/ed sand on top of the sandcastle. +C and the kangaroo is not so happy. +C the[-:] sandcastle fall/3s down. +C and the rabbit is surprise/3d. +C and it fell down on the kangaroo. +C the kangaroo is try/ing to push : back up the sandcastle while : the[-:] rabbit is stand/ing there[-:] like he did not do anything. += [Eg:B1] += [Bg:B2] +C the rabbit met the kangaroo (while he) with a basket. +C and the kangaroo has a basket as well. +C they are have/ing a picnic. +C (um) and the rabbit is eat/ing[-:] lot/s. +C and he is full while the kangaroo is still eat/ing. +C the[-:] rabbit now is dizzy and has a stomachache. +C and the kangaroo is worry/ing. +C the kangaroo go/3s to a older rabbit : which is a doctor. +C (and she is say/3s) : and she ask/3s for help. +C (she come/3) she pull/3s the doctor towards (the) her friend rabbit because he is all sick. +C the doctor is : give/ing[-:] the rabbit a checkup. +C the : little rabbit is now better. += [Eg:B2] += [Bg:B3] +C the kangaroo has a wagon with (a balloon on it) a balloon on it. +C and the rabbit is[-:] come/ing : and say/ing hi to the kangaroo. +C the rabbit see/3s the balloon and start/3s grab/ing for it. +C the rabbit is try/ing to take the balloon off the wagon : while the[-:] kangaroo : do/3s not want him to. +C the rabbit let/3s go of the balloon. +C and the kangaroo and the rabbit start reach/ing for it. +C the kangaroo is mad at the rabbit because he could not get the balloon back. +C the rabbit see/3s a man sell/ing some balloon/s. +C and then he start/3s walk/ing (towards it) towards him. +C he ask/3s to buy a balloon for his friend. +C (um) he do/3 not have any money for the balloon. +C (um) the salesman : is not go/ing to sell a balloon to the : rabbit for his friend. +C the rabbit (ss) see/3 the doctor and start/3s run/ing (toward him) : towards her. +C he ask/3s the doctor rabbit to come[-:] talk to the salesman. +C the rabbit pay/3 for a balloon for the kangaroo : and give/3s (the g) the salesman some money. +C now both the rabbit and the kangaroo have a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/910.slt b/data/ENNI_SALT/train/910.slt new file mode 100644 index 0000000000000000000000000000000000000000..21f8109893375bdf13b1891c3cd196f64bd7a73b --- /dev/null +++ b/data/ENNI_SALT/train/910.slt @@ -0,0 +1,116 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 10/18/1991 ++DOE: 3/07/2001 ++CA: 9;4;17 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 910=CHI ++Tape Location: Disk M7 Track 73 += [Bg:A1] +C it look/3s like (um) two : (people or) animal/s : play/ing with (a r kw uh) a ball : by the : pool. +C (um) it look/3s like : the girl : has (um) accidentally : not caught the ball : when she had bounce/ed it. +C and it bounce/ed into the pool. +C it look/3s like the boy : was swim/ing : out to go and get the ball for her. +C the boy is give/ing the ball to the girl. +C and the girl is really happy. +C the boy (is like) think/3s he is quite charm/ing. +C and the girl : think/3s he is cute. += [Eg:A1] += [Bg:A2] +C it look/3s like a boy and girl (want) *are look/ing at the water like ooh I really want to dive in here [EU]. +C the girl is like come on. +C let us run over to the diving board and get in : the water. +C she is run/ing over. +C she is slip/ing on some : water : that has came up. +C she fell and scrape/ed her knee : (while) after she : was run/ing. +C the lifeguard is come/ing over : to give her a bandaid : (while : sh) while (um) the boy is try/ing to comfort her. +C the lifeguard is put/ing on a bandaid. +C and she is feel/ing a lot of pain : while the boy is try/ing to comfort her. +C the lifeguard is : (help) help/ing her get down. +C same with the boy onto a bench. +C the lifeguard is (um) : discipline/ing the girl : (look) it look/3s like. += [Eg:A2] += [Bg:A3] +C it look/3s like a boy and girl (play/ing with a) and a model airplane. +C the boy is (fling) go/ing zoom zoom (with) with his tongue and make/ing it (sw) swiff[c] and swirl all around. +C and the girl is : amaze/ed by it. +C the (b) girl take/3s it away and play/3s with it. +C and the boy is like [~_high_pitched_voice] what ? +C [~_high_pitched_voice] what are you do/ing ? +C [~_high_pitched_voice] that is my toy ! +C [~_high_pitched_voice] I am go/ing to go crazy ! +C and she drop/3s it down into the pool. +C the boy is like : [~_high_pitched_voice] now look what you have done. +C [~_high_pitched_voice] my plane is gone forever ! +C then the lifeguard come/3s over. +C and he is like what is happen/ing : or something like that. +C the girl explain/3s to the lifeguard that she took it away from him. +C and : it drop/ed into the water. +C the lifeguard try/3s to reach out for it. +C (but it sail/3s) but it sail/3s away (because of the wind) because of the : (um) wind is make/ing little wave/s that push it away. +C the boy is really really sad. +C and the girl is like well I did not do anything. +C and the lifeguard is like : I am sorry. +C but I can not get at it. +C a girl with : a scoop is : go/ing to (um) : get it out. +C and the boy, the girl, and the : lifeguard are all amaze/ed by what they are see/ing. +C she is reach/ing out with the scoop : get/ing it. +C the lifeguard is quite surprise/ed. +C and : the little boy is (um) still a bit sad about it. +C and now the : lady is : give/ing : the airplane to him. +C and the boy is quite happy. +C he is : hold/ing the airplane really tight in his arm/s. +C (and the girl) : and (it) the girl : supposedly is (a a) ask/ing to play with it. += [Eg:A3] += [Bg:B1] +C it is a boy and a girl that have just finish/ed create/ing[?] a nice sandcastle. +C the boy is take/ing out sand : because he want/3s to help the girl out with the sandcastle. +C the boy is dump/ing the sand. +C the girl is like oh no you are go/ing to ruin it. +C and the boy is like oopsies! +C and the girl is like what did you do? +C then the girl is cry/ing. +C and the boy is like I did not do anything. += [Eg:B1] += [Bg:B2] +C a boy and a girl are go/ing off for a picnic with two picnic basket/s. +C the girl and the boy have unload/ed all their : stuff. +C well the boy has. +C and it is (all) mostly junk food. +C he has eaten it all by himself : quite fast. +C he is get/ing drowsy dizzy : get/ing a stomachache : (get/ing) probably get/ing pain/s in his side/s. +C the girl is run/ing over to a paramedic : (who) (whose um) who has came over for what look/3s like : an outdoor lunch. +C the girl is drag/ing her to the : boy. +C the paramedic is open/ing up her bag and : take/ing one of those thing/s that (they) you put in their mouth and check/ing (all the) (all of his) all the temperature and stuff. +C and she is take/ing him home. +C and the girl feel/3s happy that : she has help/ed him. += [Eg:B2] += [Bg:B3] +C it look/3s like a girl with a balloon on her wagon that is like oh I love this balloon. +C and she is see/ing (her boy) her (um) friend. +C (they are both) the boy is look/ing up at the balloon : and say/ing : I want this balloon. +C the boy is (unt) try/ing to untie it. +C and the girl is like what are you do/ing? +C (um) the boy and the girl are reach/ing up for the balloon while it is soar/ing off into the air. +C the boy is like oopsies. +C and the girl is like now look what you have done you little pee hole or something like that. +E you little what, I do not know that word. +=C butt hole [+_bch]. +E oh you said bee hole, okay. +C and then the boy see/3s (um) someone : with a whole bunch of balloon/s. +C and he is walk/ing over. +C the girl is still really angry. +C and then (um) : the boy is like can I have that balloon? +C and the girl is like huh? +C what is he do/ing? +C and then he show/3s balloon/s five cent/s each. +C and then (he) the boy do/3s not have any money. +C and then they are both : like oh dang we do not have any money. +C and (um) they are run/ing over to the doctor. +C they are ask/ing the doctor (if) or maybe their mother if they can have : (um five cent/s) five or ten cent/s for some balloon/s. +C and the doctor is give/ing : the : balloon man some money : while the kid/s are get/ing their balloon/s. +C and the : doctor or their mom is really happy. +C and the two kid/s are : happy too. += [Eg:B3] diff --git a/data/ENNI_SALT/train/912.slt b/data/ENNI_SALT/train/912.slt new file mode 100644 index 0000000000000000000000000000000000000000..f1287626da5d5aaadb66dcaae883f57d88abf26d --- /dev/null +++ b/data/ENNI_SALT/train/912.slt @@ -0,0 +1,164 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 5/03/1991 ++DOE: 3/07/2001 ++CA: 9;10;4 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 912=CHI ++Tape Location: Disk M7 Track 83 += [Bg:A1] +C one day a[EW:an]: elephant and a giraffe were play/ing by the : swimming pool. +C and the : elephant had (his) this really bouncy ball. +C and then the ball fell in the water while they were play/ing with it. +C (and the) and the : elephant was really : really (s) upset that his ball was in the water. +C and the : zebra was like maybe I could go get[!] it for her. +C so he jump/ed into the water and swam all[!] the way. +C and the elephant was worry/ed about the giraffe. +C and the giraffe almost had the ball. +C but then : he got it and came back : and gave it to the elephant. +C and the elephant was really happy that he got his ball. +C and then : the elephant : kind of[:_kinda] thinked|think[EW:thought] that the : giraffe was cute. +C and so did the : giraffe think the elephant was cute. += [Eg:A1] += [Bg:A2] +C one day an elephant and the giraffe (were) went to the swimming pool together because they want/ed to go swim/ing. +C and the elephant was run/ing along. +C and the giraffe was walk/ing[!] along : behind her. +C and then the elephant slip/ed. +C and then : the giraffe rush/ed over to her. +C and he never caught up. +C and the : elephant got a big[!] cut on her leg. +C and the : giraffe was worry/ed. +C so he went to go get some help. +C and then the lifeguard came over. +C and the giraffe : was beside the elephant. +C and the lifeguard : rush/ed over to her. +C and the elephant start/ed to cry. +C and then the lifeguard gave her a bandaid. +C but it hurt the elephant when it got on. +C and the : giraffe was curious. +C (what) why did he put on a bandaid? +C why did not he clean it up and stuff? +C and then they help/ed her to a bench. +C and the giraffe was go/ing to help. +C and the elephant got her on the bench (with the). +C and the elephant stuck out her leg. +C and the lifeguard : point/ed to a sign that said no run/ing. +C (and the) : and the[-:] elephant (ss) was like (uh) I was not run/ing : (uh) : (um). +C and the lifeguard is like no run/ing at the swimming pool. +C you could slip and hurt yourself like you did. += [Eg:A2] += [Bg:A3] +C one day the elephant and the giraffe were at the swimming pool. +C but the giraffe : brought his plane with him. +C and the elephant like/ed plane/s a lot. +C so then (the) the giraffe (was) put it up in the air : twirl/ed it around. +C and the elephant is like wow ! +C and then she grab/ed it out of the giraffe/z hand. +C and she was like yes, I want to [~_wanna] play with this[!] one. +C it is real fun ! +C and then she (drop) accidentally drop/ed it in the water. +C and it start/ed to sink. +C you could only see the top of it. +C and then the giraffe got really mad at the elephant. +C and the elephant is like oops. +C and then the lifeguard was on the other side. +C and he[!] saw it. +C he is like how did that plane get in there ? +C (and they are) and they did not say nothing else. +C and then the elephant explain/ed what happen/ed to the lifeguard. +C and the lifeguard is : hmmm, maybe I can help. +C so he try/ed reach/ing over : to get the plane. +C but (he) his arm/s were a little bit too short. +C and then the : giraffe start/ed to cry. +C (and the) and the elephant (s) look/ed very[!] upset. +C and the lifeguard said there is nothing I can do. +C and then this lady came along : with a real long net. +C and they are like wow ! +C could you help us get out my plane said the giraffe ? +C and she said hmm okay. +C so she bent over and try/ed reach/ing for the plane. +C and she got it. +C and then (they are) the : giraffe thought (he) she would not get it. +C and then he start/ed to cry. +C but then the lifeguard saw it : and is like yes she got it. +C and then she scoop/ed it up : with her net and gave it to the giraffe. +C and the giraffe was really happy. +C and he said thank/s missus. +C you are a real help. +C and then the giraffe got : his plane back. +C and he (went) yay I got my plane back. +C and then the elephant said I am sorry that I drop/ed your plane in the water. +C and he said okay. +C we could play with it together. += [Eg:A3] += [Bg:B1] +C one day a bunny and a dog : went to a beach. +C and the dog already made a sandcastle. +C and the bunny ask/ed if he could help. +C so the bunny put some : sand in a box and was go/ing to [~_gonna] help the dog with his big sandcastle. +C and then he pour/ed all the sand on the castle. +C and then : the castle collapse/ed. +C it was full of sand. +C and the dog : look/ed very upset. +C but the bunny was [~_gasps] oh no! +C so the dog start/ed to cry. +C and the bunny felt very sad that he broke his sandcastle. += [Eg:B1] += [Bg:B2] +C one day a bunny and a dog went for a picnic : (at) in the forest. +C the bunny pack/ed lot/s of stuff. +C (and the) but the dog knew if he ate lot/s of stuff he will get a stomachache. +C so he just pack/ed a little bit. +C the bunny ate all his stuff really really quickly. +C and his belly got real big. +C and then : the dog was eat/ing slowly. +C so (he) it did not get a stomachache. +C but then the bunny felt very sick and had a real big stomachache. +C and the dog did not know what to do. +C and then : a bunny nurse came by. +C and the : dog said I will help you bunny. +C I will go get that nurse. +C and then the nurse came. +C but : the dog struggle/ed her over to the bunny : that was lay/ing on the ground. +C the nurse told him to open up and say ah. +C and the bunny open/ed up. +C and then : she said stop eat/ing so much food. +C you will get a : stomachache again. += [Eg:B2] += [Bg:B3] +C one day (the rabbit and the dog) (the) : (the rab) [~__no] the dog had a balloon with his wagon that he brought along with him to go walk by the park. +C and then he met the bunny again. +C and the bunny saw his balloon and want/ed to play with it. +C and the dog (w) said okay. +C and then the bunny got the balloon : and untie/ed it. +C and the dog is like [~_gasps] no*3! +C and then the bunny untie/ed it. +C and the balloon flew away. +C (and) and they are both like no the balloon! +C and then the dog got real[!] mad at the bunny. +C and the bunny is like oh no oh no the balloon! +C and then (the :) the dog (s) was real real mad. +C and then the (r) bunny saw : a guy with a whole bunch of balloon/s. +C and (s) the dog was still mad at him. +C so he went over : to the guy with the balloon/s. +C and he pick/ed one out. +C and the guy said : five cent/s : for this balloon. +C and the : bunny did not have no[EW:any] money. +C and then the dog came over. +C and they both were stand/ing there. +C but the bunny keeper said five cent/s. +C and they both looked very upset. +C but then they saw : (I) the bunny/z mom. +C so he went over to her. +C (and she) and he said mom I need five cent/s for the balloon because I lost : the dog/z balloon : and went high up into the air. +C so she came over. +C here you go. +C (and) and she gave him ten cent/s one for the dog and one for the rabbit. +C and then the : bunny and the dog was[EW:were] really happy. +C (and then) and then the doggie was nice again to the bunny. +C and then they both had a balloon. +C and : the dog said thank/s to the bunny/z mom. += [Eg:B3] diff --git a/data/ENNI_SALT/train/913.slt b/data/ENNI_SALT/train/913.slt new file mode 100644 index 0000000000000000000000000000000000000000..657b880c91687b4576ae00a77e03a759884e6db6 --- /dev/null +++ b/data/ENNI_SALT/train/913.slt @@ -0,0 +1,106 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 1/10/1991 ++DOE: 5/17/2000 ++CA: 9;4;7 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 913=CHI ++Tape Location: Disk L15 Track 37 += [Bg:A1] +C : One really hot July : a boy name/ed : Jordan and a girl name/ed : Keesha went to a swimming pool. +C Keesha drop/ed : a ball that she was bounce/ing at the swimming pool into the water. +C Jordan dove in to go get it. +C Jordan came back with the ball. +C Keesha was happy. +C Jordan was proud. +C and : Keesha thought he was cool. += [Eg:A1] += [Bg:A2] +C Then after Jordan and Keesha got their ball back : Jordan[-:] saw the diving board : same with Keesha. +C Keesha want/ed to go onto the diving board. +C Keesha and Jordan were run/ing. +C and a sign[-:] said no run/ing. +C Keisha slip/ed and scrape/ed[-:] her knee. +C Jordan call/ed the lifeguard. +C the lifeguard : patch/ed up (um) Keesha/z knee. +C the lifeguard sat Keesha down. +C Jordan comfort|comfort[EW:comforted] her. +C the lifeguard told her to be more careful : around the pool. += [Eg:A2] += [Bg:A3] +C Jordan and Keesha are here again : in the pool. +C Jordan has a : airplane. +C he is pretend/ing to fly. +C Keesha is[-:] stare/ing at him. +C Keesha took the plane from Jordan without ask/ing : and drop/ed it in the water by accident. +C Jordan was a little bit mad. +C then[-:] Jordan got really[!] mad : at Keesha for drop/ing his toy plane into the water. +C the lifeguard came over. +C and[-:] : Keesha kind of (s[-:]) : ran away. +C then[!] Keesha told the lifeguard it was an accident. +C the lifeguard try/ed to get it. +C he could not reach it. +C Jordan was really[-:] upset. +C then[!] a lady with a net came. +C Jordan was happy that the net is go/ing to get it out. +C the lady got the plane. +C but it would not fit into the net. +C [~_oh] : then[-:] : on her second try, she did get it in. +C Jordan was really happy. +C Keesha said she would be more careful with friend/z toy/s and would ask before use/ing : Jordan/z toy. += [Eg:A3] += [Bg:B1] +C one bright sunny afternoon : a boy named Joe came over to his friend/z : Arlene/z house. +C Arlene had built a sandcastle in her sandbox. +C Joe want/ed to go in : to the sandbox. +C Joe star/ted dig/ing in a bucket. +C Joe dump/ed the sand on Arlene/z sandcastle. +C Arlene look/ed at it strangely. +C then Joe : got all scare/ed. +C Joe felt : innocent. +C well that is what he thought he was. += [Eg:B1] += [Bg:B2] +C then[-:] Arlene and Joe : went for a walk in the forest. +C Joe had a brought a picnic basket and same with Arlene. +C Joe took out all[!] of his food/s and : got really[!] ready to gobble it up. +C Arlene just sat and watch/ed him. +C Arlene slowly bit into her sandwich. +C Joe stuff/ed himself with his food. +C : quickly Joe/z : stomach start/ed to rumble. +C Arlene look/ed at Joe. +C Arlene found a doctor. +C : Joe was still sit/ing at the picnic table. +C Arlene said (there) Joe was still at the picnic. +C and he was really[!] sick. +C so Arlene pull/ed[-:] the doctor over : so he could : make Joe a little bit better. +C the doctor took a stick out of his bag : and[-:] said : to Joe you should not eat so fast. +C the doctor was : go/ing to bring Joe : to his emergency room to get him : all[-:] better. += [Eg:B2] += [Bg:B3] +C after Joe got better : (he went) he : went back to Arlene/z place. +C Arlene was pull/ing a wagon around : with a balloon attach/ed to it. +C Joe thought the balloon look/ed cool. +C Arlene said no do not untie it. +C but it (wa) was too late. +C Joe had untie/ed it. +C and it flew up. +C Arlene try/ed to catch it. +C Arlene got really[-:] mad. +C Joe just stare/ed at the balloon think/ing he was innocent. +C then : a man came walk/ing down the path : with a couple of balloon/s. +C Joe start/ed to run towards him. +C Joe ask/ed for a balloon. +C the man said the balloon/s were five cent/s. +C and Joe was flat broke. +C so Arlene came. +C and Joe was still look/ing at the man with the balloon/s. +C Joe had said he did not have five cent/s. +C so he went back to the doctor that had help/ed him. +C Joe ask/ed for five cent/s : for the balloon. +C the doctor stare/ed at Joe : and said yes. +C Arlene was happy same with Joe because he got a balloon too. +C Joe said he should be more careful with his friend/z toy/s. += [Eg:B3] diff --git a/data/ENNI_SALT/train/914.slt b/data/ENNI_SALT/train/914.slt new file mode 100644 index 0000000000000000000000000000000000000000..59bb3c3b51c2a794e163c331b5ae27ffb347e900 --- /dev/null +++ b/data/ENNI_SALT/train/914.slt @@ -0,0 +1,87 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 6/21/1991 ++DOE: 3/07/2001 ++CA: 9;8;16 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 914=CHI ++Tape Location: Disk M7 Track 87 += [Bg:A1] +C a giraffe and an elephant were play/ing ball by a pool. +C the elephant accidentally drop/ed the ball in the pool. +C and the giraffe went in and got it : and gave it back to the elephant. +C and the elephant was really really happy. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C the elephant and the giraffe were get/ing ready to swim in the pool. +C and the : elephant (starting) start/ed run/ing. +C and she slip/ed. +C and she hurt her knee. +C and then the giraffe went and got the lifeguard. +C and the lifeguard came run/ing to help. +C and she was cry/ng. +C and the lifeguard put a bandage over her cut : and help/ed her to a seat. +C and the lifeguard said look at the sign. +C and : she look/ed at the sign. +C and it said no run/ing. += [Eg:A2] += [Bg:A3] +C the elephant and the giraffe were play/ing together with an airplane. +C and the elephant took it from the giraffe. +C and the giraffe got really mad : and drop/ed it in the water. +C and then : the : elephant : said sorry. +C and then the giraffe start/ed yell/ing at the elephant. +C and then the lifeguard came and try/ed to get it out of the water. +C but he could not get it. +C and he almost fell in the water when he was try/ing to get it. +C and the giraffe start/ed to cry. +C and : the[-:] elephant had (a fff) a : sad face on her. +C and (another one came with) another lifeguard came with a net : and try/ed to get it out of the water. +C and[-:] she got it. +C and the giraffe was really happy. +C and he was hug/ing his airplane. +C and : the elephant was hug/ing herself. += [Eg:A3] += [Bg:B1] +C a bunny : and his friend were make/ing castle/s in a sand pit. +C and the : bunny took the[-:] : little pail from (the) : his best friend and start/ed make/ing a sandcastle. +C and it got really really big. +C and then : he pour/ed sand over the sandcastle. +C and it got wreck/ed. +C and then his friend start/ed cry/ing. +C and : he had his hand/s behind his back. += [Eg:B1] += [Bg:B2] +C the rabbit and his best friend went out for a picnic in the afternoon. +C the[-:] rabbit brang|bring[EW:brought] pickle/s chip/s : cake and sandwich/s. +C and he ate it all. +C and he start/ed to (gr) turn green. +C and he did not feel well. +C so then (his friend got) his friend got worry/ed : and ran to the nurse. +C and the nurse came run/ing. +C and : (he seen) she seen|see[EW:saw] that he was really really green. +C (and he walk/ed him home) and : she walk/ed him home. += [Eg:B2] += [Bg:B3] +C there was big race. +C and (the :) the rabbit/z best friend was in it. +C and he had a balloon on his cart so he would go fast. +C and the rabbit took it off. +C and it went fly/ing. +C and they both try/ed to grab it. +C and then his best friend got really mad at him. +C and then he seen|see[EW:saw] : a big rabbit with a bunch of balloon/s. +C and they were five cent/s each. +C and : the rabbit ask/ed for one. +C and he seen|see[EW:saw] [-:] that it was five cent/s. +C he ran up : to the nurse. +C and the nurse bought them one. +C and the nurse was really happy. +C [~_sighs] and : the dog was happy too because he got a balloon back. +C and (the rab) (the girl) the nurse paid the guy for the two balloon/s. +C and then they were hug/ing their balloon/s. +C and the nurse was really happy. += [Eg:B3] diff --git a/data/ENNI_SALT/train/915.slt b/data/ENNI_SALT/train/915.slt new file mode 100644 index 0000000000000000000000000000000000000000..b45806394e2376a479d269b959ca3a7bb0e9c7de --- /dev/null +++ b/data/ENNI_SALT/train/915.slt @@ -0,0 +1,87 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 5/2/1991 ++DOE: 5/17/2000 ++CA: 9;0;15 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 915=CHI ++Tape Location: Disk L15 Track 33 += [Bg:A1] +C One day a : guy was bounce/ing : a bouncy ball : with his friend. +C they were by[-:] a pool. +C and it fell in the pool. +C one guy went to swim for it. +C he got the ball. +C and they were very happy. +C (um : then : ah :) then : she[-:] : let her friend try her[?]. += [Eg:A1] += [Bg:A2] +C One[-:] day two friend/s went swim/ing. +C they jump/ed in the pool. +C but before they jump/ed (they slip/ed) one slip/ed : and hurt her knee. +C the other friend went got a lifeguard. +C and the lifeguard came and help/ed. +C the lifeguard put a bandaid on it. +C and (she) (she) : she was better. +C then the lifeguard said (no) : no run/ing. += [Eg:A2] += [Bg:A3] +C One day a friend had[-:] his[-:] remote control airplane. +C he turn/ed it on. +C (and it) : and it went : all over the place. +C his friend caught it. +C and then it slip/ed and fell in the pool. +C the guy was very mad : because it was new. +C the (l) : lifeguard (um) got mad kind of too. +C she told the story. +C and then[-:] (he) : he[-:] (ah) [~_sighs,_says_oops] thought it was okay. +C he : try/ed to grab the : airplane out of the water. +C they could not get it. +C : a lady had a net. +C and she was go/ing to : get it with the net. +C she got it. +C she gave the (ai) : remote control airplane to : the owner. +C the owner was happy that : he had his airplane back. += [Eg:A3] += [Bg:B1] +C (um) one[-:] day two friend/s (went : and) : (w) went to play in their sandbox. +C they built a sandcastle. +C (um : the um : th) they pour/ed sand on it. +C it fell down. +C and[-:] : they were sad. +C (they try/ed) one of them try/ed to build another : sandcastle. += [Eg:B1] += [Bg:B2] +C one day two friend/s : went on a picnic. +C they had : lot/s of yummy : food/s. +C when they were finish/ed they were (s) really full. +C and[-:] : they could not eat any more. +C (and then : he f) (the) they were too full. +C they fell down. +C and then[-:] they found a doctor. +C they ask/ed the doctor to help. +C the doctor help/ed : them : get better. +=C and they were all better [+_bch]. += [Eg:B2] += [Bg:B3] +C one day : (um) : a guy[-:] was walk/ing. +C and he saw his friend. +C (he) he had a balloon. +C so (he sh) he show/ed it to his friend. +C his friend like/ed it. +C and then he untie/ed it. +C and it flew : away. +C (they) (he) the : guy who had the balloon was mad : because his balloon flew away. +C but then he saw : a[-:] person sell/ing balloon/s. +C he ask/ed if he could (had) have a balloon. +C he paid (the doll) : the money and took the balloon. +C : (hm : um) : it flew away. +C so : they had to go back. +C they got another balloon and : saw[-:] another person. +C : (uh) : they[-:] : show/ed the person the balloon/s. +C she bought a balloon too. +C and she bought them for those people. +C and : they were happy. += [Eg:B3] diff --git a/data/ENNI_SALT/train/916.slt b/data/ENNI_SALT/train/916.slt new file mode 100644 index 0000000000000000000000000000000000000000..6befcabd727b23c73bdb2601b7c6c924a434e165 --- /dev/null +++ b/data/ENNI_SALT/train/916.slt @@ -0,0 +1,135 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 11/22/1991 ++DOE: 3/14/2001 ++CA: 9;3;20 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 916=CHI ++Tape Location: Disk M8, Track 40 += [Bg:A1] +C (w) once upon a time there was : a donkey and elephant. +C and elephant was bounce/ing : a ball. +C but then : the ball accidentally fell in (the) the water. +C the donkey and the : elephant stare/ed at the : ball. +C (the) the donkey (sw) jump/ed into the pool and swam[-:][!] to the ball. +C the elephant look/ed at him. +C and then the donkey got : the ball[-:] to the elephant. +C the elephant was happy. +C and then : (the) : the elephant : probably (look/ed) [~__no] : (uh) told the : donkey (that) : thank/s for : (take/ing) (get) get/ing my ball back. += [Eg:A1] += [Bg:A2] +C (there) (there) (the donkey and the elephant) [~_okay] once upon a time there was a donkey and the elephant. +C they went to the swimming pool. +C they saw : a sign that said : no run/ng on it. +C but then : the elephant was : tell/ing the donkey something. +C but then (he s) the elephant start/ed run/ing. +C (he) : she slip/ed and fell and hurt her knee. +C (the don) the donkey came run/ing after her. +C and then the lifeguard came. +C the : elephant was hurt. +C she was cry/ing[!]. +C the donkey was at her side. +C then the (li) lifeguard gave her a bandaid to (s) make sure (it felt better) her : knee felt better. +C the donkey was just stare/ing at her. +C then the lifeguard : made[-:] the : elephant (s) sit on (the : uh) a chair so : she can feel better. +C (the) the donkey was (r) at her side. +C then the lifeguard (told) : (l) look/ed at the sign and (point/ed at it) point/ed at it. +C and elephant looked at it too. +C then she (knew) : knew a new thing. +C do not run on : deck/s. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C once upon a time there was : an elephant and the donkey. +C the donkey had an airplane. +C the donkey was fly/ing[!] the airplane. +C the elephant want/ed the airplane (w) because it was cool[!]. +C (the) : but the elephant took : the plane away from the donkey : and start/ed play/ing with it. +C the donkey was upset. +C but then it fell in the water[-:]. +C and the donkey and the elephant just : stare/ed at it. +C the donkey got so[!] mad because it : fell[!] in the water. +C the : elephant said uhoh. +C and then the lifeguard stare/ed at both of them. +C and they both stare/ed back. +C then the elephant told the lifeguard there is a plane[!] in the water. +C (I accidentally) it accidentally went into the (wa) : water. +C and (the) the donkey is sad ! +C then the : lifeguard try/ed to get the : plane. +C but it was too hard to reach. +C then the donkey start/ed cry/ing. +C (the elephant just stare/ed at the ba) : the elephant and the lifeguard just stare/ed at (the) the[-:] : plane. +C then (a) (ano) an elephant girl[!] came[-:] with a net[!]. +C (the) the three of them stare/ed at her. +C (the) the elephant : put the net in the water. +C (it) and (it touch/ed the) : (it went in t) the plane went into the net. +C the elephant gave : the plane to : the donkey. +C the donkey was happy[!]. +C now both of them are happy because he : got : his plane back. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C once upon a time[-:] there was : a dog and a rabbit. +C (they were) they were go/ing to play in the sandbox. +C (they[-:]) : the rabbit (um) : he got a pail of sand. +C and he put a shovel in it to try I think to mix : the : sand. +C and the dog was : pat/ing (it) : the sand. +C and then the rabbit : dump/ed the bucket on the sand. +C and then : he got upset because he wreck/ed the sandcastle. +C but : (that) the dog did not look that upset. +C and then he start/ed cry/ing and try/ing to put it back together. +C but the : rabbit (he just) : he look/ed like he was lazy. +C and he did not want to [~_wanna] help fix it. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C once upon a time there was : a dog and a rabbit. +C they were go/ing on a picnic in the wood/s. +C (they[-:]) : they found a : perfect spot in the shade. +C and : they start/ed to take out : all their food. +E start/ed to what? +=C take out all their food [+_bch]. +C and but the rabbit ate up all the food. +C but the dog only (ha) had some[!] of it. +C (and) but then the dog look/ed at the rabbit. +C he look/ed sick[!]. +C so he went : to find : a doctor. +C and : he found a doctor. +C so he told him to come here. +C the doctor look at the rabbit. +C and : he look/ed really sick. +C and then the doctor : was try/ing to (m) make the rabbit feel[!] better. +C but then (h) (na) (he made him) the doctor made him feel[!] better. +C and the dog is happy too. += [Eg:B2] += [Bg:B3] +C (um there) once upon a time there was : a rabbit and a dog. +C they had (a) a balloon : tape/ed onto a wagon. +C the rabbit[!] want/ed to take a look at the balloon. +C the rabbit (untie) : took the tape off the : balloon. +C and (he w) (he w) he : (got) (took on) holded|hold[EW:held] onto it. +C but then he let go of it. +C and : the : balloon (took off) : took off. +C and then the dog was so[!] upset because (he) (thi) that was his[!] balloon. +C but the rabbit was just (look/ing up) stare/ing up at the balloon. +C they saw a balloon guy sell/ing balloon/s[!]. +C the rabbit : look/ed at the balloon guy. +C and the dog was still mad. +C the (r) : rabbit ask/ed the balloon guy can I have a balloon? +C but the balloon/s were five cent/s. +C he did not have any money[!]. +C so : he was just stand/ing there. +C and both of them came and : look/ed at him. +C but then he saw the same doctor[!] in the[~!_laughing] other story. +C the rabbit went to the doctor. +C and the rabbit ask : the doctor : that : he want/ed a balloon because his other one took off[-:]. +C (so h) but he did not have any money. +C so : he want/ed the doctor to : (buy) buy a balloon for him. +C the doctor bought a : (b) balloon for both[!] of them. +C and they were happy[!]. +C they both have a balloon now. +C now they are really[!] happy. +=C the end[~!_whispering] [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/917.slt b/data/ENNI_SALT/train/917.slt new file mode 100644 index 0000000000000000000000000000000000000000..8d8adee0f0636a597bfb5eaac4c0921dcf740c80 --- /dev/null +++ b/data/ENNI_SALT/train/917.slt @@ -0,0 +1,89 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 6/7/1991 ++DOE: 6/12/2000 ++CA: 9;0;5 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 917=CHI ++Tape Location: Disk L18 Track 23 += [Bg:A1] +C (uh) There was (a) a giraffe : talk/ing to a[EW:an] [-:] elephant bounce/ing ball/s. +C and then one of them fell in the water. +C and (then he went) the giraffe went to swim[!] for it. +C and he got it and : gave it to the elephant. +C and then[-:] elephant was really happy. += [Eg:A1] += [Bg:A2] +C There was a giraffe and an elephant : look/ing at the lake or the swimming pool. +C and then the elephant was about to jump in. +C [~_wait_no] they are play/ing : a game around the pool. +C and then he was about to fall in. +C and then he got hurt. +C and then the lifeguard came. +C and then he put a bandaid on it. +C and it really hurted|hurt[EW:hurt]. +C and then it was better after. +C and then the lifeguard (point/ed) said sit down on the chair. +C and he point/ed to a sign that said no run/ing. += [Eg:A2] += [Bg:A3] +C There was an elephant and a giraffe talk/ing once again. +C and then (the) : the giraffe took a plane and went [~_makes__airplane_sound]. +C and then the elephant grab/ed it and start/ed to play with it. +C and then the giraffe got really mad. +C and then it fell in the water. +C and then he was really mad at the elephant. +C and then the lifeguard came. +C and then[-:] : he[-:] : told him not to do that. +C and then he try/ed to reach for it. +C but they could not get it out. +C so (they took) another girl came and took a net. +C (and she got it o) [~_wait] she is try/ing to get it out. +C and she got it out. +C and then (he wa) they were both very happy,. += [Eg:A3] += [Bg:B1] +C there was (a um) a[EW:an] elephant build/ing : a sandcastle. +C and then[-:] a bunny came and start/ed to help him. +C and then the bunny dump/ed a whole bunch of sand on the castle. +C and it broke. +C and there was one tower left. +C and then[-:] : the elephant was really mad. +C and the (uh) bunny did not know what to say. +=C and then it was over [+_bch]. += [Eg:B1] += [Bg:B2] +C and then an elephant came. +C and then a bunny came. +C and they were go/ing for a picnic. +C and the elephant had not open/ed his lunch kit yet. +C and the : bunny had all sort/s of food. +C (and then he got) and then while the elephant was eat/ing the (um) : bunny was really sick : or full. +C and then : he[-:] got sick. +C and : he was still eat/ing. +C so then (they went to get) the elephant went to get a doctor. +C and the doctor came. +C and then he start/ed to help him. +C and then he was all better. +C well not all better but [EU] [+/]^ += [Eg:B2] += [Bg:B3] +C there was (a : um) an elephant pull/ing a stroller with a balloon on it. +C and (uh) then the bunny came. +C and he was go/ing to [~_gonna] grab it : to see it. +C and he start/ed to untie it. +C and then (the bun) it flew away. +C and : it kept fly/ing. +C and[-:] the bunny was look/ing up. +C and the elephant : was really mad. +C and then they saw a balloon man. +C (and he was go/ing to have) and then the bunny was go/ing to [~_gonna] have one. +C and then[-:] he said they were five cent/s. +C and then[-:] : they were mad. +C but[-:] he still did not give them one. +C and then (he told) he asked the man for five cent/s I think. +C and (he : bo) then he got one : for them. +C and then they were happy. += [Eg:B3] diff --git a/data/ENNI_SALT/train/918.slt b/data/ENNI_SALT/train/918.slt new file mode 100644 index 0000000000000000000000000000000000000000..ba5672d7a56400533044db7a02bbc656d8d5450c --- /dev/null +++ b/data/ENNI_SALT/train/918.slt @@ -0,0 +1,113 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 4/03/1991 ++DOE: 3/14/2001 ++CA: 9;11;11 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 918=CHI ++Tape Location: Disk M8, Track 44 += [Bg:A1] +=C this one look/3s a little harder [+_bch]. +C [~_okay_oop_there] look/3s like a giraffe (and a) and an elephant are : go/ing to[:_gonna] go for a swim in the pool. +C and it look/3s like they are friend/s. +C and they see a ball[!] in there. +C and I think they want to[:_wanna] play. +C they : jump into the water. +C (and the) and the : (uh) giraffe start/3s swim/ing for it. +C and : then he give/3s it (to) to his friend (the e) the elephant. +C and[-:] then it look/3s : like they are really good friend/s now. += [Eg:A1] += [Bg:A2] +C look/3s like the giraffe and the elephant (are) see the diving board. +C and they want to[:_wanna] go off it. +C so the elephant : (ru) rush/3s to the : diving board. +C (and[-:] she run) and she run/3s really really fast. +C and she (f) slip/3s and : cut/3s her knee. +C and so the lifeguard come/3s to help. +C so (he) he put/3s a bandaid on her knee. +C (and[-:]) : and it look/3s like she is confuse/ed. +C it look/3s like she has never seen a bandaid before. +C and then it look/3s like the lifeguard is mad at her : for run/ing : break/ing one of the rule/s. +C and there is a sign there that says no run/ing. += [Eg:A2] += [Bg:A3] +C [~_okay] there is the elephant : and the giraffe again. +C and it look/3s like she is : look/ing at the giraffe/z new toy plane. +C and he start/3s play/ing with it. +C (and she start) and she look/3s at it : amaze/3d. +C then she snatch/3s[!] it away from him. +C and then she accidentally drop/3s it in the pool. +C and it start/3s drownding[EW:drowning]. +C (and) and the : giraffe is really mad at her. +C then the lifeguard see/3s. +C and : he look/3s like he is going to[:_gonna] try and help. +C and the elephant is explain/ing what happen/ed. +C and (he) the lifeguard try/3s and reach/3s for the plane. +C and : the giraffe is sad because he could not grab it. +C so it : look/3s like (the li) the : elephant/z mom come/3s and has a net. +C so she get/3s it. +C and : the giraffe stop/3s cry/ing. +C and he is really happy now. +C and[-:] he is happy that he has his toy back. += [Eg:A3] += [Bg:B1] +C (there is : uh) (there is) look/3s like it is a little dog that is play/ing in the sandbox. +C and it made a really cool sandcastle. +C and a rabbit come/3s along and want/3s to help. +C so : they : start work/ing together. +C (and the) : and the bunny (scoop) scoop/3s up a lot of sand. +C and : he dump/3s it all : onto the sandcastle. +C and it bury/3s[!] it. +C (and) : and he is (r) really mad : because : (he a) he accidentally : put (the) : the sand on. +C he thought it would help. +C and : then the : little dog start/3s cry/ing. += [Eg:B1] += [Bg:B2] +C there is the dog and the bunny again. +C they are go/ing to [~_gonna] go on a picnic together. +C and[-:] the bunny : bring/3s a lot of : food. +C (and he) and he : eat/3s like a pig. +C and he get/3s (r) really big and fat. +C and he is : sick : because he ate too much. +C (and the do) and the dog is worry/ed. +C (and) : and the bunny is (ro) look/ing really sick. +C he has got circle/s around his head. +C and then the dog spot/3s (a n) a nurse. +C and she come/3s to help. +C so she do/3s[!] help. +C so she look/3s (wha) what is[-:] wrong. +C and she find/3s out what it is. +C and then she make/3s him all better. +C and he : walk/3s home happily. += [Eg:B2] += [Bg:B3] +C (uh) the dog and the bunny : (co) comes|come[EW:came] along again. +C (and) : and the : dog is pull/ing a wagon around. +C (and[-:] the) and the bunny is (s um) see/3s : a balloon on there. +C and he is really amaze/ed. +C so he want/3s to touch[!] it. +C so he accidentally untie/3s[!] it : because he think|think[EW:thinks] (it) something will happen. +C and it is really cool! +C but he accidentally : let/3s it away. +C and they rush for it. +C but they can not get it. +C (the uh) the dog is really steam/ed[!] (an) : and is show/ing her teeth. +C (and) : and the bunny is look/ing up. +C (an) : and he is like uhoh. +C then they spot a balloon[!] man who is sell/ing balloon/s[!]. +C and then he think/3s (he) he can buy[!] a balloon. +C so he go/3s over there. +C so he : ask/3s for a balloon. +C (and the) [~_okay] : (and then : the) and then (um) the bunny (think/3s) say/3s that he do/3s not have any money. +C but he can not have one : because they are five cent/s. +C so he is get/ing sad. +C (um : there is a) both of them are : disappoint/ed that they can not get one : because they do not have any money. +C and then the bunny spot/3s his mom[!]. +C (an he) and he ask/3s for (f) five cent/s. +C and she give/3s it to him. +C she pay/3s the : man. +C and they get two[!] balloon/s. +C and they are really happy because they got two of them. += [Eg:B3] diff --git a/data/ENNI_SALT/train/919.slt b/data/ENNI_SALT/train/919.slt new file mode 100644 index 0000000000000000000000000000000000000000..f342bdc02a70ed6e5b595395682989bfb8642bbc --- /dev/null +++ b/data/ENNI_SALT/train/919.slt @@ -0,0 +1,91 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 4/6/1991 ++DOE: 6/12/2000 ++CA: 9;2;6 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 919=CHI ++Tape Location: Disk L18 Track 5 += [Bg:A1] +C : (Deena and Nathan bought some) : Deena and Nathan : met (at) at each other on the road. +C and Deena had a ball. +C but Deena/z ball fell in the water. +C so[-:] Nathan went to get the ball for her because he was an excellent swimmer. +C and when he came back to give the ball to : Deena, : Deena was really happy. +C and she thank/ed Nathan for get/ing her ball. += [Eg:A1] += [Bg:A2] +C Deena and Nathan : went to the pool. +C Deena spot/ed a diving board. +C so they ran to go on the diving board. +C (but) : but Deena fell and hurt her knee. +C and she start/ed cry/ing. +C and the lifeguard came. +C the lifeguard start/ed to put a bandaid on her. +C and then her knee was all better. +C : but the lifeguard was kind of mad at her because : she broke a rule. +C and that was no run/ing. += [Eg:A2] += [Bg:A3] +C Deena and Nathan went to the pool. +C and this time Nathan brought a toy airplane. +C Nathan : zoom/ed the plane around. +C and it got Deena kind of dizzy. +C then Deena : like/ed the airplane. +C and she took it right away from Nathan. +C but then Deena drop/ed the airplane in the pool. +C Nathan was really mad at Deena because (he did that :) she did that. +C the lifeguard came. +C Deena told the lifeguard that she drop/ed (his) Nathan/z : airplane in the pool. +C so the lifeguard try/ed to reach it. +C but the lifeguard could not get it. +C and Nathan start/ed cry/ing. +C then this lady came by with a net. +C she try/ed to scoop the airplane out of the pool. +C (and she got it) and she got it for Nathan. +C Nathan was so[-:] happy that he got his airplane back. += [Eg:A3] += [Bg:B1] +C : Bill and Sally (want/ed) were go/ing to play in the sand pit. +C and they want/ed to build a sandcastle. +C so : Bill start/ed : put/ing lot/s of sand in the bucket : for make/ing a sandcastle. +C then he dump/ed the : bucket of sand on (the) the sandcastle. +C but he wreck/ed the whole sandcastle : because he put the bucket too early. +C then Sally start/ed to cry because it was her best sandcastle that she ever made. += [Eg:B1] += [Bg:B2] +C : John and Megan want/ed to go for a walk to pick : flower/s. +C but they decide/ed to not pick flower/s and have a picnic instead. +C (when) : when : Megan took out some food : John already ate his food. +C and he felt really sick. +C he felt really dizzy after he ate all that : food. +C then Megan ran to go get some help. +C Megan : ask/ed the woman (if) : if she could : help : John. +C John was lucky because the woman : was a doctor. +C so she help/ed him. +C and John felt better after the woman help/ed him. += [Eg:B2] += [Bg:B3] +C : Kate and Kerrick were go/ing on a walk. +C and Kate had a nice balloon on her wagon. +C Kerrick want/ed the balloon. +C so he start/ed (to) (to) to pick it up. +C he was try/ing to pick it up. +C and : Kate start/ed scream/ing. +C then Kerrick unloose/ed[EW:untied] it. +C (and) and the balloon start/ed fly/ing away. +C Kate was really mad at : Kerrick because : she really like/ed that balloon. +C and it was her favorite color. +C and : Kerrick saw a balloon : seller. +C and he had a great idea. +C he went and bought Kate : her favorite color. +C (and) and : (he) : he got Kate : her favorite color. +C but he had no money. +C (then Kerrick) then Kerrick was sad because he could not buy : Kate the balloon. +C then Kerrick went to Kate/z mom for some money. +C and : he told : Kate/z mom the whole story about how he lost Kate/z (balloo) balloon. +C so : Kate/z mom bought : them both a balloon. +C (and) and it was their favorite color. += [Eg:B3] diff --git a/data/ENNI_SALT/train/922.slt b/data/ENNI_SALT/train/922.slt new file mode 100644 index 0000000000000000000000000000000000000000..b4721df4cc7bfdeb15f2c6a59ac6f3ea28b73076 --- /dev/null +++ b/data/ENNI_SALT/train/922.slt @@ -0,0 +1,211 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 11/27/1991 ++DOE: 4/18/2001 ++CA: 9;4;22 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 922=CHI ++Tape Location: Disk M9, Track 9 += [Bg:A1] +C one[-:][!] day[-:] (uh) a girl elephant name/ed[-:] : (uh) Sally was bounce/ing (uh) : a ball[-:] near a swimming pool. +=C (uh the) I was not done on that second page [+_bch]. +E you were not done okay. +C and then (be) a zebra came. +C and : he was so surprise/ed[!]. +C (he) he like/ed : the ball. +C and he want/ed to play with it. +C (uh) (and it) and when he was play/ing with it : it actually got stuck in the swimming pool. +C and the elephant said oh[-:][!] no[-:][!] said Sally. +C do not worry I can probably : try to get it said : (ja) Joan. +E what is his name ? +=C (j) April [+_bch]. +E oh okay. +C (he swam and swam) April swam and swam. +C he swam hard as he can [EU]. +C and he : just[-:] reach/ed it. +C (when) when he[?] came back and gave her the ball Sally[!] : was so surprise/ed. +C and : they became friend/s. +C Sally said thank you for get/ing my ball ! +C and then : she gave him a kiss. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C one[-:][!] day[-:] : Sally and April : were come/ing to swim at the same swimming pool : before (w uh) the ball problem. +C (there) (they s) they want/ed to swim! +C and sally was so surprise/ed. +C (he) : he look/ed : at the water. +C and he said look a diving board! +C we can use that! +C but a sign said : no (run/ing) : run/ing on : the : rink. +C he slip/ed! +C and she did the split/s when he came down. +C (and he) : and April came to help. +C Sally cry/ed[-:] because she : hurt her leg. +C (and) : and April said are you okay? +C are you okay! +C then the lifeguard came : and said Sally : are you hurt? +C and she said yes[-:][!] I am! +C (so she) : so the lifeguard went back : (and) to get some bandaid/s. +C when : he came back he put the bandaid on. +C and he said : (and : uh) there we go. +C oh : see that sign over there? +C no run/ing on a rack[?]. +C make sure you do not do that again. +C (well I try again) (just make sure to) then the lifeguard said : want to[:_wanna] try again? +C (you could) (you could) (do not put) (no run/ing) no run/ing though. +C or you will be kick/ed out. +C (uh : but I am) : you[-:] should have seen that sign[-:][!] before. +C (uh) : and Sally said I am sorry. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C one[-:][!] day[-:] when April came : April the zebra : actually the[-:] : (uh) zebra actually [EU]. +C and : (he) (she) he had a[EW:an] airplane. +C Sally was surprise/ed. +C this toy[!] : is call/ed the airplane (said) : said April. +C (it) (uh) (I) April[-:] : the giraffe : was (play) : show/ing her (how) what it do/3s ! +C (it was like) and Sally was like [~_makes_sound_'woo_-:'] can I play with it ? +C and : she grab|grab[EW:grabbed] [!] it away. +C (and) : and she began to play with it. +C and he said hey[-:] that is mine ! +C he was like you got to[:_gotta] get me. +C (you[!]) : and Sally drop/ed it. +C (and he said) and he felt[?] so sad. +C he said : you[-:][!] drop/ed it in the swimming pool. +C oops : said Sally. +C [~_makes_sound_'rrr'] April was like so mad : (when) : at Sally. +C he say/3s I am really sorry. +C I I I am ! +C lifeguard : (said) : said (I) what is the matter : with you ? +C (a) April said : (sa) Sally drop/ed my airplane in the swimming pool ! +C I was really sorry said Sally ! +C I was ! +C (well) : well April said he did on purpose though. +C all right we *will try to get it the lifeguard said. +C when he try/ed[-:] : he could not get it. +C and April said oh rat/s I : cannot get my toy again. +C and[-:] Sally said : (uh uh) I will look so sorry. +C (the zebra) : the zebra was so[-:] sad. +C he cry/ed. +C and : Sally said I am really really really really really really sorry. +C and[-:] I could probably give you a kiss. +C no[-:] you did that really on purpose now. +C lifeguard (di) could not do anything. +C : then[-:] : the lady who work/ed for : the build/ing : came and : had a net. +C yay[-:][!] hip hip hooray (all) they all : said. +C and : he try/ed it. +C she got[!] it. +C and then he scoop/ed it. +C (and they all) (and they all[-:]) and the (airplane barely) toy airplane (land) came out of the swimming pool. +C and April had it back. +C he was really (s) happy now. +C (he s) : when the lady : who work/ed for the building name/ed : (uh) (sa uh) : (sal) (Sally) actually Sally/z (mo) mother : who work/ed for the building : (ap) (he) she gave : April (her) her airplane. +C and April was so[-:] happy. +C and Sally said that is okay. +C I do not want to play with it no[EW:any] more ! +C giraffe (uh lo) (hug/ed it) love/ed it the rest : of the day. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C one[!] day (a rabbit) : a dog (was take)[?] was build/ing a sandcastle. +C (name/ed) and he was name/ed : (ra) (uh ra) Billy. +C and a rabbit came. +C (he) his : name was Easter. +C Easter want/ed to : play in the sandbox too. +=C (uh) what was : the dog/z name [+_bch]? +E your story you make it up. +=C john [+_bch]. +C and : he[-:] let him play in[-:] the sandbox. +C Easter (wan) (was) was : put/ing sand in the bucket : (and) and[-:] (sh) when : John : (was : make/ing) was still build/ing a sandcastle. +C and Easter dump/ed : the : bucket of sand on top (of) : of John/z sandcastle. +C she was very angry[-:] at him. +C he was very sad[-:] actually. +C and she cry/ed my sandcastle my sandcastle is all gone! +C and he just said sorry[-:]. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C one[!] day : easter rabbit was (come/ing) walk/ing down the road when (he seed[EW:saw] johnny) (he see) he saw John. +C (hey) hi John! +C hi Easter! +C want to have a picnic today? +C all right! +C (pic) Easter had a lot of stuff. +C he had : carrot/s : cake chocolate : (um) jam : cookie/s : and chip/s. +C oh sure that is a lot of stuff said john. +C I have a sandwich and some juice. +C that is all. +C well (you) you should eat a lot : said easter. +C so : I will : eat all this stuff in one minute (sa) he said. +C (I) : and he eat|eat[EW:ate] it. +C and he got a tummyache. +C I got a big[?] tummyache [~_sneezes]. +C I feel sick. +C I feel real[!][-:] sick. +C I think I *am go/ing to [~_gonna] eat for a week. +C and then a doctor was walk/ing (uh) by the way : along : [~__sneezes] the path [~_sneezes]. +C and (he) : (uh) : John went up to the doctor. +C doctor doctor : can you help a friend (of mi) of mine [~__sneezes]! +C sure said the doctor. +C (so he went) : so he went. +C it is (o) over here over here : (said the) (said) said John. +C someone gots[EW:has] a tummyache : said the doctor. +C let us see. +C (he sh) I should take his temperature. +C (sh) he is really hot. +C (ne) (then the doctor) I think (I need/3s) he need/3s an appointment. +C come on! +C oh come on. +C (you) (we got to have a br) (you uh got have) (you got) (you can have a) you have brain surgery too. +C make sure you do not eat next time okay? +C or you will get sick. +C okay! +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C hello[!] Easter said to John. +C I got a wagon : with a balloon[!][-:] on it! +C hey can I have the balloon! +C sure you can. +C (I cut[?] off) : (l) [~_no] (s) look at that[-:]. +C it is got a balloon[-:] ! +C that is the balloon! +C oh! +C I never seen|see[EW:saw] one of these in age/s. +C can I have it? +C oh sure you can. +C (it is really) so he try/ed to tie it off. +C and he did. +C but it fell away[-:] ! +C it float/ed away. +C and : they both could not get it. +C now what *am I go/ing to [~_gonna] do. +C it float|float[EW:floated] away. +C and : John was so[!] angry. +C he want/ed his balloon back. +C do not worry. +C do not worry. +C I will try to get it. +C look : over there! +C there is a (b) balloon man : (said) : said John. +C I *am go/ing to [~_gonna] get (one o) (t) probably two over there. +C can I have one of those balloon/s please? +C oh sure you can. +C (but you got) : (k) and he said (k uh) but you got[EW:have] to pay (fi) : five cent/s for the balloon/s. +C (uh) and he is check/ing his pocket/s. +C he gots[EW:has] no money left. +C oh man. +C (and what are w) then : (april : and) [~_actually] John and Easter : did not know what to do. +C so there was a doctor stand/ing by. +C and (uh) he said I will go ask her : for some money. +C (co) and he went there. +C and he said can I have some money please for two of those balloon/s! +C and he is like oh sure you can! +C and he paid for them : five cent/s. +C and they said hip hip hooray[-:] : (they all shout/ed) (k) (the) April and Easter shout/ed. +C and they (both had their balloon/s) both had balloon/s. +C (all) [-:] and they play/ed with their balloon/s all[-:] day. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/923.slt b/data/ENNI_SALT/train/923.slt new file mode 100644 index 0000000000000000000000000000000000000000..55e9f05a328f9debc63677a45dc963a38539194e --- /dev/null +++ b/data/ENNI_SALT/train/923.slt @@ -0,0 +1,77 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 8/19/1990 ++DOE: 6/9/2000 ++CA: 9;9;21 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 923=CHI ++Tape Location: Disk L17 Track 26 += [Bg:A1] +C [~_Well] a giraffe (uh) see/3s an elephant play/ing with : a ball[-:]. +C and the ball go/3s into a swimming pool. +C : and the giraffe go/3s into the water and swim/3s towards it : and (um) get/3s the ball and give/3s it back to the elephant. +C and he smile/3s. +C and he is drip/ing wet. += [Eg:A1] += [Bg:A2] +C (Well) the elephant and the giraffe are at the swimming pool. +C and there is a sign that say/3s no run/ing. +C and the elephant go/3s run/ing : towards the pool and point/3s to the diving board : and slip/3s while run/ing. +C she fall/3s and scrape/3s her knee in the pool. +C and (um) the giraffe get/3s the lifeguard. +C and he put/3s a bandage on her knee : and help/3s her sit down on a bench. +C and then he frown/3s and point/3s to the sign that said no run/ing [EU]. += [Eg:A2] += [Bg:A3] +C (Well) : the giraffe has a little model airplane with him. +C he[-:] : (um) has the airplane in his hand and : kind of move/3s his hand/s around and stick/s his tongue out and say/3s [~_makes__airplane_sound]. +C then (the) the elephant take/3s the airplane from him : and drop/3s it into the pool[-:]. +C and the giraffe (ge) look/3s mad at the elephant. +C and then[-:] the lifeguard see/3s[!] the airplane. +C and the (um) : elephant she explain/3s to him what happen/ed. +C and he reach/3s out to reach it. +C and he can not reach it. +C and the giraffe start/3s to cry. +C : then another elephant come/3s and (um) has a net with her. +C she put/3s the net in the water and try/3s to scoop up the airplane. +C and she get/3s it out for the giraffe[!]. +C then he is happy again and hold/3s the (um) airplane up : towards : his cheek. += [Eg:A3] += [Bg:B1] +C [~_Well] : it look/3s like a bunny is play/ing with : another type of animal in a sandbox : I think maybe a dog. +C and they are build/ing a sandcastle. +C and the bunny pour/3s : (ss) a bucket of sand onto the sandcastle. +C and : they both do not look a little too happy. +C then : the (um) dog : cry/3s. +C and the bunny look/3s a little guilty. += [Eg:B1] += [Bg:B2] +C [~_well] (it is the) it is the bunny and dog again. +C and they are go/ing on a picnic. +C the bunny has carrot/s : a[-:] sandwich and look/3s like (junk food and :) : junk food. +C and the dog has only taken out a : sandwich. +C and the : bunny has finish/ed his[!] lunch. +C and the dog has only : start/ed a juice box and : eat/ing it/z sandwich. +C and : the bunny is feel/ing dizzy from eat/ing too fast (I think) : and faint/3s. +C so the dog get/3s : a doctor rabbit : and (gets it) (get/3s the doctor to look at the : well) he is bring/ing the doctor to the bunny. +C and : the doctor is examine/ing the bunny. +C (and : he wa) and the little bunny walk/3s with the doctor. += [Eg:B2] += [Bg:B3] +C [~_well] the dog has (a) : a wagon with a balloon tie/ed to it. +C and the bunny come/3s walk/ing : to greet it. +C and he look/3s at the balloon. +C so he start/3s to untie[-:] the balloon from the : wagon : and let/3s the balloon go. +C and : the dog get/3s : mad. +C and then there is a bunny with more balloon/s. +C and : the dog still look/3s mad. +C and the (um) bunny (um) see/3s those balloon/s with the : man and start/3s walk/ing towards it. +C and he buy/3s a balloon. +C : and he show/3s him that the balloons are (five dollar) five cent/s a balloon. +C so then (the little) the dog come/3s to see : what is go/ing on with the bunny and : the man. +C and the : bunny (go/3s to) go/3s to the doctor : and probably : ask/3s for five cent/s : to buy a balloon because he has no money. +C so the : doctor buy/3s two balloon/s : for : ten cent/s five cent/s per balloon. +C and they are both pretty happy. += [Eg:B3] diff --git a/data/ENNI_SALT/train/924.slt b/data/ENNI_SALT/train/924.slt new file mode 100644 index 0000000000000000000000000000000000000000..3cb7b2980ce70b31e0776fc265a3b5822663677b --- /dev/null +++ b/data/ENNI_SALT/train/924.slt @@ -0,0 +1,147 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 12/5/1991 ++DOE: 4/18/2001 ++CA: 9;4;13 ++Gender: M ++Context: Nar ++Group of CHI: SLI ++ID: 924=CHI ++Tape Location: Disk M10, Track 18 += [Bg:A1] +C (um : uh) : there was a giraffe and a[EW:an] elephant. +C (uh an) (and) and the elephant had (a ba) : a ball. +C and she was bounce/ing it. +C and the giraffe was look/ing at it like whoa that look/3s nice ! +C (and) (and he) (and) and (uh) the elephant accidentally put it in the water. +C (and) : and the zebra[-:] look/ed (a) at it. +C and he was like : waa ! +C and the elephant is like : aah my ball. +C my ball is gone. +C so the zebra (he ca) (he) (he go) : (he) he went to get it. +C (and) and[-:] (the uh) : the : elephant was like whoa this guy is[-:] : get/ing my ball ! +C (and) (and) and the giraffe : (um) he was go/ing out to the : ball. +C and he was swim/ing fast. +C so he[-:] got the ball. +C and he swam back : to the (eleph) elephant : (that) : that lost her ball. +C and she said thank you ! +C and he is like you are welcome ! +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C (um uh : uh) the elephant want/ed to like go off the diving board[-:] : and go into the water. +C so she (went to) (to the uh) : went to the (uh) diving board. +C and she was not suppose/ed[!] to run. +C (she) and she run|run[EW:ran]. +C and the zebra said do not run! +C and he only jog/ed[-:]. +C and : (the elephant is like) (it is) (he : like) she is slip/ing. +C and she fall|fall[EW:fell] down. +C she had a cut. +C there was a sign say/ing no run/ing. +C (the) (and) and the zebra is like uhoh (what ay) are you okay! +C anyway[?] there is no run/ing : (in) : in the swimming pool place! +C and the lifeguard he came[-:]. +C and he said are you okay little girl? +C (and[-:] the) (and the) (and the) and the : elephant said no[-:] it hurt/3s! +C and : then (uh) : the elephant gived|give[EW:gave] her a bandaid. +C (and) and she look/ed at it. +C (and she is) and the (z) zebra is like are you okay? +C and she is like : ooh it do/3s not hurt anymore. +C are you okay[-:] ? +C (and she) (and she is told the st) the she start the story how she fall [EU]. +C (and[-:] uh) and the lifeguard say/3s there is no run/ing (in) : in swimming pool/s! +=C (um : the) the end [+_bch]. += [Eg:A2] += [Bg:A3] +C (uh) : giraffe had[-:] : [~_like] a[EW:an] airplane in it/z hand. +C and he was [~_like] play/ing with it. +C (and said) and the elephant said whoa nice airplane you have in your hand ! +C (and he) and he said thank/s ! +C and he was : pretend/ing to fly with it. +C that was wow[-:][!][~!_laughing]. +C and then she took it. +C (and) and the zebra is like hey ! +C he is like wow ! +C she accidentally threw it into the water[-:]. +C (uh) and the giraffe is like : what did she did[EW:do]! +C (she is like) and she is like oopsie/s. +C (and then) and then the giraffe start/ed to get mad at the elephant. +C then the elephant went to like a lifeguard[-:]. +C and (uh) : she said (uh) can you please get that airplane out of the swimming pool ! +C (and he said) and he said I will try. +C and he try/ed to reach it. +C but he could not reach it. +C then (uh) the lifeguard could not. +C and the giraffe was cry/ing. +C and she is like oh man how am I suppose/ed to get that back now ? +C and this one lady with this one net (uh) : she came. +C and she took the airplane out of there. +C and it is like whoa(*3) ! +C (she has) : she has a net on her hand ! +C (for) what for ? +C (and then she took) then she took out the airplane. +C it is (like : like) : like whoa she is do/ing that to get my airplane back ! +C (and sh) and he said thank/s. +C you are welcome : said the elephant with the net. +C said (I) I like this airplane. +C ( um) and the elephant is like : I like it. +C in her mind[?] (I) I like it too. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C (uh : they[?] : uh) (the uh) this[-:] (dog) [~_I__mean] : hare (uh) he made a sandcastle. +C and a rabbit came. +C the rabbit : start/ed (to) to like (uh) put his sand in the pail. +C (so he dump/ed it : on) so the rabbit dump/ed it on[-:] : the hare/z sandcastle. +C and : the hare : (uh : he was like) (uh he was look/ing like kinda) like he was look/ing just like this. +C (what did this guy) like what did this rabbit do? +C and the rabbit was (like) like (why[-:] i) if the hare get mad[-:] [EU]. +C (s) : (and[-:]) : and the hare start/ed to cry. +C (an) : and the rabbit (uh : start/ed) start/ed to like feel bad. +=C (and he) : the end [+_bch]. += [Eg:B1] += [Bg:B2] +C (uh) : the rabbit and the hare (uh) they are both go/ing to have a picnic. +C and : then they took out all their stuff and put out the blanket. +C (then uh) (then) : then they start/ed eat/ing! +C an : the rabbit had lot/s of food : like sandwich/s chocolate bar/s chip/s sub/s carrot/s cake. +C (and : uh) and the hare is like (what is) oh what did this guy bring to eat? +C a whole bunch of thing/s! +C (and) : and the hare only ated|eat[EW:ate] a sandwich. +C and the rabbit ated|eat[EW:ate] the whole thing : when she gotted|got[EW:got] her sandwich out. +C (uh : the uh) the hare : look/ed at the rabbit. +C and the rabbit did not look so well. +C so : the hare (went) went to a nurse (and) : (and) and tell (uh the) the rabbit (s) : has a stomachache [EU]. +C (and) and the hare is like pull/ing her : to (like uh) get over there fast. +C (and) (and the ra) (and[-:]) : (and the ra) and (the rabbit uh : wa) [~_like] the nurse rabbit (uh she) she look|look[EW:looks] and say|say[EW:says] you have a stomachache! +C (an) : and he like[-:] I think I notice/ed. +C (so[-:] he came) so he came with the nurse (to like uh) : to [~_like] see (his) [~_like] his mom or his dad. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C the hare was pull/ing a wagon. +C and[-:] the hare had[-:] (a) : a balloon on it/z wagon. +C and[-:] the rabbit came by and say|say[EW:says] hey you have a nice balloon! +C and the rabbit he came to [~_like] touch the balloon. +C then (uh he) he try/ed to take it off for a sec. +C (the) and the hare is like what are you do/ing! +C the rabbit accidentally let go of it. +C and the hare was try/ing to reach it same with the rabbit. +C (but) but : it went up too fast. +C and (uh) the hare start/ed to get mad at him : again. +C (there was) : there was (uh : a balloon[-:]) : (uh) a balloon. +C and a rabbit was sell/ing them. +C (and) and he was just like stand/ing there smile/ing. +C then (uh the ra) the rabbit say[-:] (uh) : can I please have : one balloon? +C he was like (uh) : balloon/s five cent/s. +C [~_like] that is how much : (like) : [~_like] : (it) it (co) cost. +C and they did not have any (money) money. +C so[-:] they went back to the nurse. +C (s) they ask (uh) if we can have [~_like] a balloon[-:] [EU]? +C (and[-:]) : and she came. +C (and she) (she) and she gived|give[EW:gave] : ten cent/s to [~_like] (uh) : the rabbit and the hare. +C (and they both) and the hare gotted|got[EW:got] her balloon back. +C and the hare has it/z[!] own balloon now. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/926.slt b/data/ENNI_SALT/train/926.slt new file mode 100644 index 0000000000000000000000000000000000000000..4f932e79b2791d9f432fd7468fe214e14ca567fb --- /dev/null +++ b/data/ENNI_SALT/train/926.slt @@ -0,0 +1,102 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 11/08/1991 ++DOE: 5/10/2001 ++CA: 9;6;2 ++Gender: F ++Context: Nar ++Group of CHI: SLI ++ID: 926=CHI ++Tape Location: Disk M9, Track 59 += [Bg:A1] +C once there was a girl elephant : and[-:] a : giraffe who was[EW:were] play/ing with a bouncy ball : by a swimming pool. +C the ball[-:] : was in the pool. +C and : they were : disappoint/ed. +C the giraffe : was swim/ing : to the ball : (and) : as fast as he could. +C (a elephant was uh) that girl elephant was very : happy : to see the ball. +C and the giraffe : was very happy too. +C and the girl : elephant : was : surprise/ed that she got : the ball. +C and the elephant was surprise/ed too. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C once : there was a[EW:an] elephant : (who : was run/ing) (who was w) who want/ed to go on the jumping board. +C she was (wa) run/ing to the jumping board[-:]. +C and suddenly she slip/ed! +C and then she start/ed cry/ing. +C and the giraffe : came run/ing to her. +C and : the lifeguard : was : (k) come/ing : and : said what is all (thi) the fuss. +C the (bi) girl elephant : was : cry/ing : so hard that : it hurted|hurt[EW:hurt]. +C and then : she : had to : sit on the bench. +C and the lifeguard said no run/ing in the hall/s. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C once : the elephant : was watch/ing the giraffe : fly/ing (a) his airplane. +C the : elephant was look/ing : sad because : the giraffe was have/ing fun with his airplane. +C and the elephant : (took) grab/ed the : airplane from the giraffe. +C and she start/ed to play with it. +C and (the) the elephant (acci) accidentally : put : threw the : airplane in the pool. +C the giraffe got very : angry at the elephant. +C and the lifeguard came and said what is all this fuss ? +C and : the elephant said : I accidentally[-:] put : (the gi) : (his) : (the giraffe/z) : his airplane in the pool. +C I can not reach it. +C then the : giraffe start/ed to cry : for his airplane. +C and the : girl elephant : got a net : and : start/ed to get (it) the airplane. +C and she pull/ed as hard[?] [EU]. +C and she got it ! +C and the : giraffe was very happy to see it. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C once there was a dog who build|build[EW:built] : a castle. +C and a bunny rabbit ask|ask[EW:asked] dog if : (he) she can help. +C and the dog said sure[!]. +C the rabbit : took a (bi) bucket and put (lot/s) some sand in it. +C and the dog was fix/ing the castle. +C and the rabbit : put the sand on the castle. +C and the rabbit was : disappoint/ed that he did that. +C and he said sorry : dog. +C and the dog : was : very sad because (the) : the castle was broken. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C once[-:] upon a time : the rabbit : came to see the dog for a picnic. +C (they both) they both : brought basket/s. +C the[-:] : bunny took lot/s of stuff like chip/s pickle/s large[?] sandwich/s carrot/s cake/s : cheese : cookie/s. +C the dog[!] just took (uh) : a sandwich and more stuff : juice[-:] and[-:] : cookie/s. +C the rabbit : ate all of it. +C and he (got) start/ed to get sick. +C the dog : ate his sandwich and : cookie/s and : drank his juice. +C and the rabbit start/ed to get dizzy. +C and the rabbit said : oh no! +C and the dog : came : to get the doctor. +C and the doctor said hmm. +C (a) (an) and the dog (carry/ed the) : took the doctor and pull/ed and pull/ed : and said (the r) the rabbit is sick because he ate too much. +C and the doctor took (his) her stuff and : took out a (s) popsicle stick and said the rabbit say ah. +C and (the : rabbit) : the doctor : (she) she took the : rabbit : to the hospital. +C and the : dog (said) was very happy. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C once : the dog (was) had a balloon. +C and the rabbit came along and said oh[-:][!] you have a : nice red : shiny balloon! +C (he) : (he want/ed) the rabbit want/ed to see the : bright nice : shiny (balloo) : balloon. +C and[-:] : the dog (was) said no! +C but the rabbit said I am just go/ing to [~_gonna] see it! +C and : the rabbit : lost the string. +C and the : dog was very mad. +C and the rabbit was disappoint/ed (that). +C the rabbit saw : a balloon : person. +C and : he went over to the balloon person. +C and he said : mister : can I have one of these balloon/s please? +C (it) (do not y) can not you read [EU]? +C it cost/3s : balloon/s : for five cent/s [EU]. +C and : the : rabbit was very sad. +C (and the) : and he saw the doctor : again. +C and he said : (m) doctor (can) (we : want two) we want balloon/s. +C and the doctor : gave them : (t) : two five cent/s. +C and the balloon man gave them (two balloon/s) : two blue balloon/s. +C they were very happy because the doctor gave them two balloon/s. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/927.slt b/data/ENNI_SALT/train/927.slt new file mode 100644 index 0000000000000000000000000000000000000000..7e2942eaa42e0386515a74cde984b6dced590e19 --- /dev/null +++ b/data/ENNI_SALT/train/927.slt @@ -0,0 +1,85 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 10/25/1990 ++DOE: 6/12/2000 ++CA: 9;7;18 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 927=CHI ++Tape Location: Disk L17 Track 40 += [Bg:A1] +C One day there was a girl. +C and (she boun) she was bounce/ing her ball on the street. +C and she met her friend. +C (then the) then her ball tumble/ed into the pool. +C so her friend jump/ed into the pool and start/ed swim/ing after it. +C and he brought it back to the girl. +C (then he said) then the girl said thank you very much. += [Eg:A1] += [Bg:A2] +C One day the two friend/s were at the pool. +C and they decide/ed to go swim/ing. +C then the girl said let us go on the diving board : and start/ed run/ing towards it. +C she fell and hurt her knee. +C then the lifeguard came. +C and he put on a bandaid. +C then he sat her down on the bench. +C and he point/ed to the sign that said no run/ing. += [Eg:A2] += [Bg:A3] +C One day[-:] the two friend/s were at the pool. +C and (one) the boy had (an ai) an airplane with him. +C and he start/ed to make it fly with sound effect/s. +C the girl was so dazzle/ed that she grab/ed it away from him and start/ed play/ing with it. +C and then she drop/ed it into the pool. +C the boy got very mad at her. +C then the lifeguard came. +C and they explain/ed what happen/ed. +C the lifeguard try/ed to reach for the plane. +C but it was too far (out in the wa) (of the wa) in the water for him to reach. +C and (the : life) (the) the lifeguard did not know what to do. +C and neither did anyone else. +C the giraffe start/ed to cry. +C then[!] a lady came by with a net[!]. +C and she reach/ed in and got the airplane out. +C the boy was happy again. +C (he hug/ed) he hug/ed the airplane. += [Eg:A3] += [Bg:B1] +C once upon a time there were two bunny/s play/ing at the beach. +C and they built a sandcastle. +C the other bunny start/ed add/ing a lot. +C they add/ed a lot onto their sandcastle. +C and they were enjoy/ing their time. +C (then) then (the bunny) one of the bunny/s (accidentally) [~_no] dump/3s a pile of sand onto the sandcastle : which made it fall down. +C (the) (the bunny) the girl bunny was really upset. +C and she start/ed to cry. += [Eg:B1] += [Bg:B2] +C one morning two bunny/s were walk/ing in the wood/s with two picnic basket/s. +C (one) once they found a nice spot they start/ed to unpack their lunch/s. +C (the s) (the) one of the bunny/s ate his lunch very very quickly. +C and he had a terrible stomachache. +C (then he) and the girl bunny ran to the doctor : and pull/ed her over towards : her friend. +C (the doctor said) the doctor point/ed : towards his head and said he must have a terrible headache or a stomachache. +C but when the boy felt better the doctor (took her) took him with her. += [Eg:B2] += [Bg:B3] +C once upon a time : (there was a girl bu) there was a girl walk/ing : a pull/ing a wagon with a balloon tie/ed to one of the wheel/s. +C and then she met her friend come/ing by. +C he saw the balloon. +C and (he re) he got really excite/ed. +C then he try/ed to untie the balloon. +C and the balloon flew up high because they could not hang onto it. +C then the girl got very very mad at her friend. +C and they saw a balloon salesman : come/ing by. +C so the boy stroll/ed up to him : and ask/ed for a balloon. +C (then the) (then the balloon) then the balloon man said that the balloon/s were five cent/s each. +C they both came (up to) up to him and look/ed at the balloon/s (with wide) with wide open eye/s. +C (then they saw uh) then they saw the doctor. +C and the boy went up to her. +C and he said can we get some balloon/s? +C and the doctor gave the man ten cent/s so they could each get one balloon. +C and then they were both happy. += [Eg:B3] diff --git a/data/ENNI_SALT/train/929.slt b/data/ENNI_SALT/train/929.slt new file mode 100644 index 0000000000000000000000000000000000000000..b6facc70e95e9502cdac6f8c194b7041468d9fc2 --- /dev/null +++ b/data/ENNI_SALT/train/929.slt @@ -0,0 +1,115 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 12/20/1990 ++DOE: 6/12/2000 ++CA: 9;5;23 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 929=CHI ++Tape Location: Disk L17 Track 44 += [Bg:A1] +C (Um) there is an elephant and a giraffe play/ing with (a balloon) : [~_or] a ball. +C and then the ball fall/3s into : the water. +C so the giraffe try/3s to : swim out and get it. +C and the elephant is worry/ed. +C then the giraffe give/3s the elephant back her ball. +C and the elephant is happy. +C (ah) then (a) the giraffe get/3s out of the water. +C and the elephant : will not let him have the ball. += [Eg:A1] += [Bg:A2] +C (Um) they are stand/ing by the pool. +C and it look/3s like they are ready to swim. +C and (a) the elephant look/3s really excite/ed to go in the water. +C so she run/3s across the edge of the pool. +C and then she slip/3s and fall/3s. +C and the giraffe is really scare/ed. +C then the lifeguard come/3s to help the elephant and the giraffe. +C and then he put/3s a bandaid on the elephant/z knee. +C (um) the elephant has to sit down on a bench. +C and it look/3s like she is being told that she should not run on (the) the side of the pool. +C and then she feel/3s really ashame/ed of herself for run/ing. += [Eg:A2] += [Bg:A3] +C (ah) the elephant and the giraffe : are stand/ing by the pool again. +C and the giraffe has an airplane. +C and he is play/ing around with it. +C and the elephant look/3s really surprise/ed. +C so the elephant grab/3s it away from the giraffe. +C and she start/3s to play with it. +C and then it fall/3s in the water. +C and the elephant : look/3s like she is kind of scare/ed : because she do/3s not want the giraffe to get angry at her. +C and then the giraffe start/3s to get really mad. +C and the elephant is start/ing to get (um) : a little scare/ed. +C and then the lifeguard come/3s. +C and the elephant and the giraffe : (uh looks) look like surprise/ed. +C and then the elephant is explain/ing to the lifeguard what happen/ed : with the plane. +C so the lifeguard try/3s to grab the plane : away. +C and he can not get it. +C so the giraffe start/3s to cry. +C and the : elephant (um) : look/3s really : ashame/ed. +C (a) but then (uh) another elephant come/es. +C and she is[EW:has] got a little net. +C and (then she scoop/3s out the) then she scoop/3s out the plane with her net. +C and it look/3s like : they are a little relieve/ed. +C and then she give/3s the plane back to : the giraffe. +C and then the giraffe is really happy again. +C and so is the elephant. += [Eg:A3] += [Bg:B1] +C there is[EW:are]: two rabbit/s. +C and they are play/ing in the sandbox. +C and they made a sandcastle. +C (oh) [~_I_mean] a rabbit and a dog. +C and (uh) the dog is : finish/ing make/ing the sandcastle. +C and the rabbit is : play/ing with sand in a bucket. +C then he dump/3s the sand on top of (the castle) the sandcastle. +C and (a) the rabbit it look/3s like oh no [EU]. +C and the dog is sit/ing there. +C and he look/3s really surprise/ed. +C then the dog start/3s to cry. +C and the rabbit : look/3s like he is try/ing to say that (oh) I am really sorry. +C I did not mean to do that. += [Eg:B1] += [Bg:B2] +C the : dog and the rabbit (are) it look/3s like they are go/ing to a picnic. +C and they sit down. +C and : the dog is eat/ing his food. +C and the rabbit has all this : food out. +C and he is just : eat/ing it all. +C (and the dog just) and the dog continue/3s eat/ing. +C and then the rabbit is really full : like he is go/ing to : burst. +C then the rabbit start/3s to get really sick. +C and the dog is just still eat/ing. +C then (um) the dog rush/3s for help. +C and she find/3s another rabbit. +C and then she pull/3s the other rabbit towards (the ah) (the) rabbit that ate too much. +C and then she (help/3s) help/3s (the) the rabbit that ate too much because she is a doctor. +C and then she take/3s the : rabbit home. +C [~_like] : she just take/3s him. += [Eg:B2] += [Bg:B3] +C the rabbit is walk/ing down the road. +C and the dog has : (a cart and) (a w) a wagon with a balloon on it. +C and then the rabbit is : point/ing to the balloon like he really want/3s it. +C and then he try/3s to untie it off of the wagon. +C and then the dog look/3s like she is try/ing to say no. +C no do not take it off. +C then the rabbit take/3s it off. +C and it fly/3s away. +C and the dog and the rabbit try to grab it. +C and then the dog get/3s really angry at the rabbit. +C and (um) the dog is still mad. +C and the rabbit see/3s : someone who is sell/ing balloon/s. +C so he ask/3s the : person who is sell/ing balloon/s if he could have a balloon. +C but he do/3s not have any money. +C and : the guy say/3s that it is five cent/s for balloon/s. +C so the dog come/3s up. +C and he see/3s the rabbit sit/ing there by the balloon : seller. +C and the doctor rabbit is stand/ing in the middle of the road. +C and the rabbit come/3s to see. +C then he tell/3s the doctor that (um) there is[EW:are] balloon/s. +C and she give/3s the balloon man money for balloon/s. +C then the dog and the rabbit are really happy because they both have balloon/s. += [Eg:B3] diff --git a/data/ENNI_SALT/train/931.slt b/data/ENNI_SALT/train/931.slt new file mode 100644 index 0000000000000000000000000000000000000000..4f70a5af4e67ff3ed09b414dc75eb27ebf496b49 --- /dev/null +++ b/data/ENNI_SALT/train/931.slt @@ -0,0 +1,99 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 6/15/1990 ++DOE: 6/9/2000 ++CA: 9;11;25 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 931=CHI ++Tape Location: Disk L17 Track 19 += [Bg:A1] +C The : elephant is : bounce/ing a ball. +C and the : giraffe : is say/ing : you are play/ing with a ball I think. +C I guess the giraffe by accidentally knock/ed the : ball into the pool. +C the giraffe is : swim/ing : for the ball. +C the giraffe get/3s[!] the ball for the elephant : and give/3s it to the elephant. +C the elephant I guess like/3s[!] the[-:] giraffe now : I think. += [Eg:A1] += [Bg:A2] +C (Uh) : I guess the elephant and the giraffe are go/ing to[:__gonna] : go : in[!] the pool. +C the elephant is run/ing : toward the pool. +C the elephant slip/3s. +C the elephant hurt : his : knee. +C and then the : giraffe is try/ing to get help I think. +C the[-:] giraffe call/ed for help. +C and the lifeguard is come/ing. +C the lifeguard is put/ing a : bandaid on : the elephant/z leg : or wound. +C they[-:] get the elephant to sit on a bench. +C the : lifeguard is (say/ing) point/ing to the sign : no run/ing. +C and the elephant is like whoopsies. += [Eg:A2] += [Bg:A3] +C (uh) : the : elephant : is talk/ing to the giraffe. +C the giraffe has a[EW:an] airplane and is play/ing with it. +C the elephant steal/3s[!] the[-:] airplane away[!] from the giraffe. +C the : elephant : (uh) I guess drop/ed the airplane into the pool. +C the giraffe is mad at the elephant. +C and the[-:] plane is sink/ing. +C the lifeguard is[-:] wonder/ing what happen/ed. +C and the : elephant is like what ? +C the elephant is explain/ing what happen/ed to the lifeguard. +C the lifeguard is try/ing to reach for the[-:] airplane. +C the lifeguard : gave up. +C and the[-:] giraffe is cry/ing. +C (a pers) an elephant I guess : came with a[-:] net. +C she is scoop/ing the airplane out. +C the elephant gave the[-:] airplane back to the[-:] : giraffe. +C the giraffe is[-:] happy. +C and the[-:] elephant is happy. += [Eg:A3] += [Bg:B1] +C (uh) the father is a rabbit. +C and : the kid is make/ing a : sandcastle in a sandbox. +C and the father say/3s (wow) nice castle. +C then the father help/3s : the son (make/3s) make the sandcastle. +C the father dump/3s all[!] the sand on the castle. +C I : think that is the father. +C the father (I guess) made all the sand : into just a big pile. +C the kid try/3s to rebuild it. +C but : it is like a little bit too mess/ed up. += [Eg:B1] += [Bg:B2] +C they are go/ing for a picnic : the[-:] two rabbit/s. +C they sit down. +C and one of the rabbit[EW:rabbits] is (are re) is really hungry. +C so he unpack/ed his stuff really fast. +C and I guess he is eat/ing a carrot. +C (and) : [~_I_do_n(o)t_know_what_that_is]. +C the guy that ate all that food really fast is really : lazy now I guess. +C and then : he is really just lay/ing down try/ing to : get up. +C [~_I_cannot_tell_what_that_is]. +C [~_but] the[-:] guy ate that all the food (is) has got up now. +C and the doctor came. +C and the person that did not eat all their stuff really fast (um) got the doctor. +C and then : I guess he is bring/ing him over. +C he is drag/ing him over to : meet the : guy that ate all his food up really fast. +C the doctor check/3s the guy that ate all the food really : fast. +C the doctor take/3s away the : rabbit : I guess. += [Eg:B2] += [Bg:B3] +C (um) the rabbit is come/ing to play with the other rabbit. +C the rabbit that came is : say/ing hey a balloon. +C the guy is try/ing to fix the balloon or take it off. +C it was tooken|take[EW:taken] off. +C and then the balloon sail/3s away. +C the guy that had the balloon is really mad at the guy that took off the balloon. +C they see a guy sell/ing balloon/s. +C the guy that I guess : let go of the balloon is go/ing to buy one balloon for his friend again. +C (uh) he has no money. +C so : it is five cent/s for a balloon. +C so I guess he can not pay for it. +C (uh) they ask him if they can have a balloon for free I guess. +C (they ask the doctor if they) they go to the doctor. +C and : I guess they are go/ing to ask him (something) for money I guess. +C they ask the doctor (if they can buy) if he can buy a balloon : for them. +C the doctor buy/3s a balloon for both[!] of them. +C they are both happy. +C and the doctor is : also happy. += [Eg:B3] diff --git a/data/ENNI_SALT/train/932.slt b/data/ENNI_SALT/train/932.slt new file mode 100644 index 0000000000000000000000000000000000000000..c1c9564906f0469a968a9a0d17167c6c16c3a16a --- /dev/null +++ b/data/ENNI_SALT/train/932.slt @@ -0,0 +1,114 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 8/01/1991 ++DOE: 5/23/2001 ++CA: 9;9;22 ++Gender: F ++Context: Nar ++Group of CHI: SLI ++ID: 932=CHI ++Tape Location: Disk M11, Track 35 += [Bg:A1] +C (one[!] uh) : once upon a time there was : (t) one boy and one girl ! +C (w) one was name[EW:named] longneck. +C (and was) : and one was : name/ed longnose. +C (um : well) well longnose (w) drop/ed her balloon in the water. +C (and then) : and then she was cry/ing help somebody help me ! +C my balloon fell in the water ! +C (so then[-:]) : (then) so then longneck (was) : was[-:] go/ing to get it. +C and (then[-:]) (when) : so then : longneck got it for : longnose. +C and (then l) : (long) : then : longnose was very : happy. +C (and[-:] long) and[-:] longneck : was very brave. += [Eg:A1] += [Bg:A2] +C when they was[EW:were](uh) : in the pool : (they[-:]) they want/ed to jump in the water. +C (so[-:]) so[-:] : longnose was run/ing : toward the water. +C and she slip/ed. +C and she scrape/ed her knee. +C and then she was : cry/ing. +C then the lifeguard came. +C and then so he gave longnose a bandaid. +C and then (they wa) : (they) (he wa) she was not cry/ing any more. +C (and then) : and then the lifeguard said see the sign? +C no run/ing. +C and (he was very) : (he was very um) : she forgot about that. += [Eg:A2] += [Bg:A3] +C once upon a time there was : (two) one boy and one girl. +C they were friend/s ! +C (and[-:] uh) : (and[-:] : um) : (and l) : and Longneck : (had a) : had a[EW:an] airplane. +C he was fly/ing and fly/ing ! +C and[-:] : Longnose : want/ed to try it. +C so he grab/ed[!] it out of her hand and was fly/ing it. +C and he said no no no. +C and then : she accidentally drop/ed it in the water. +C uhoh. +C and so (he wa) (he was) he got so[!] mad that he said : what is wrong with you ? +C why do you do that ? +C and she was so[!] sad. +C (and then) : and then the lifeguard : came and said : do not be xx. +C what is wrong ? +C and so then (h um) : Longnose was walk/ing toward him : and told him all[-:] about what happen/ed. +C and so he was try/ing to dive in the water to get it. +C but : it was sink/ing. +C (and then) : and then Longneck was[-:] (so) : so sad that he was cry/ing. +C and then (longnose mom : wa) Longnose mom (was) : got a net : and was try/ing to get[!] it. +C (and) and she got[!] it ! +C (yay[-:] to the) yay to (longnose[-:]) : (long) [~__yeah] Longnose mom. +C and : Longnose mom[!] : gave it back[!] to : (long) : Longneck. +C and they were all[!] friend/s again. += [Eg:A3] += [Bg:B1] +C (once a) : once upon a time there was a rabbit and a dog. +C the rabbit (was play/ing) : was[-:] make/ing : a sandcastle. +C and the dog was help/ing. +C but then : (one) : (the) : the rabbit : pour/ed the sand : (in the[-:]) (on the k) on the dog/z castle. +C and then[-:] the rabbit : got very[!] mad because : it broke. +C and so then : (the) the puppy : name/ed : cereal (um) : was fix/ing it all over again and was cry/ing. +C and[-:] : (miss) miss : stewart (um was very) : (was very : um) : was very[-:] : (uh um) sad. += [Eg:B1] += [Bg:B2] +C one[!] day there was : a little girl : name/ed : Cookie : and[-:] (a[-:]) : a little boy name/ed : Carrot. +C they[-:] were have/ing a picnic. +C and[-:] Cookie : took out all[-:][!] her food. +C but then : Rabbit was get/ing so[!] hungry that he ate the carrot/s. +C but then : (when) when[-:] Cookie was eat/ing her sandwich and drink/ing juice : (th) : Carrot : was : very full (and very[-:]). +C and (um hi) his stomach really hurted|hurt[EW:hurt]. +C but then : Cookie realize/ed that (um she could ge) she should get a doctor because she does not want : Carrot to : get very sick. +C so (when she was) (when) when : she saw a doctor walk down she xx[?]. +C and she yell/ed doctor doctor : please help my friend : Carrot. +C (he w) he is very sick. +C so[-:] : (cookie grab/ed hi) Cookie grab/ed : his coat and ran back : to the picnic. +C (and h) and[-:] the doctor check/ed. +C he said uhoh you have been eat/ing too much food. +C (we) (we) this is important. +C so then : (the) the[-:] doctor (m) (mister : um) : mister : Bookyabye[c] : (um : he took) (he) he[-:] (fix/ed up : um) : fix/ed up Carrot. +C and : (uh) they were all friend/s. +C and they walk/ed home. += [Eg:B2] += [Bg:B3] +C one[!] : interesting day (um : peanut bu) : Peanut : (w) had a balloon on her wagon[!]. +C (and) : and[-:] (jelly) : Jelly saw it. +C so she *was wander/ing[EW:wonder/ing] : if she could take it off! +C (but then) : but then : (p) Peanut : said no! +C (so[-:]) : so (h) (h) he got very[!] mad that (h) (h). +C so then he took : off the balloon : on the wagon. +C and[-:] the balloon (f) flew away. +C and they were all try/ing to get it. +C and then : (when : jelly was try/ing to) when Jelly was try/ing to catch it : Peanut got very[!] mad[-:] at her. +C but then they saw a lot of balloon/s. +C (so[-:] : pean) : so Peanut was try/ing to : buy some. +C and he said oh look. +C this is wonderful! +C I think I am go/ing to buy one : for : Peanut! +C but (it was only f) : the balloon/s : was[EW:were] only five cent/s. +C and so : (um) Jelly (was try/ing to) : was look/ing for some (m) : in her[-:] in her pocket. +C but there was no money. +C (but then) : and then they were all stare/ing at the balloon/s. +C (h) and they saw another[!] doctor (who came) : (who was) who was just stand/ing there[?] still. +C and : Peanut was : walk/ing toward him. +C (he ask/ed if he) (if) : (he ask if he could) (he) (he ask if he) [~_sighs] : he ask[EW:asked] if : he could buy : them a balloon. +C so he said okay. +C and then : so he gave them the two last balloon/s. +C and they were all[!] friend/s again. += [Eg:B3] diff --git a/data/ENNI_SALT/train/933.slt b/data/ENNI_SALT/train/933.slt new file mode 100644 index 0000000000000000000000000000000000000000..2a4881211f9378c10d1de6d9b32c7177ea56146e --- /dev/null +++ b/data/ENNI_SALT/train/933.slt @@ -0,0 +1,88 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 7/13/1990 ++DOE: 6/19/2000 ++CA: 9;11;6 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 933=CHI ++Tape Location: Disk L18 Track 37 += [Bg:A1] +C Giraffe and Elephant were : friend/s. +C and (whe) while they were play/ing : their ball got stuck in the water. +C (uh giraffe went to i) Giraffe jump/ed into the pool : to get the : ball : back[~!_laughs]. +C and : while he was still in the pool he gave it to Elephant. +C Elephant was really proud of Giraffe[~!_laughs]. += [Eg:A1] += [Bg:A2] +C Elephant and Giraffe went to the[-:] swimming pool. +C Elephant ask/ed : Giraffe if he want/ed to go on the diving board. +C Giraffe said yes. +C and they went. +C but Elephant slip/ed. +C Elephant had hurt her knee. +C Giraffe quickly ran to help[~!_laughs]. +C then the lifeguard came over : to help. +C he put a bandaid on Elephant/z knee. +C the lifeguard help/ed : Elephant (go to) get to a bench. +C and then the lifeguard point/ed at a sign that said no run/ing. += [Eg:A2] += [Bg:A3] +C so these are all about the elephant and the giraffe, okay [+_bch]. +E that is right, okay, go ahead. +C Elephant and Giraffe went to the pool. +C and Giraffe brought his[-:] toy airplane. +C he[-:] show/ed : Elephant how to fly it. +C then she snatch/ed it away (fer) from Giraffe : and try/ed to fly it herself. +C then she drop/ed it into the pool. +C Giraffe got very angry. +C and the lifeguard look/ed worry/ed. +C : Elephant explain/ed how she drop/ed it in. +C the lifeguard try/ed to reach it. +C but he could not. +C Giraffe was very sad. +C then a lady came with a fishing net. +C she scoop/ed the airplane out of the water. +C she gave it back to Giraffe. +C he was really happy. += [Eg:A3] += [Bg:B1] +C Rabbit and Dog : were play/ing in the sandbox. +C they were build/ing a sandcastle. +C Rabbit dump/ed a bunch of sand onto the sandcastle. +C and it was broken. +C Dog was sad. += [Eg:B1] += [Bg:B2] +C Rabbit and Dog met for a picnic. +C they sat down. +C and Hare was a big pig. +C while Dog ate her lunch : Rabbit was stuck on the ground because he had eaten so much. +C he felt sick. +C Dog ran to get the doctor. +C (she pu) she drag/ed the doctor over to : Rabbit. +C the doctor took his temperature. +C then she took him home. += [Eg:B2] += [Bg:B3] +C one day Rabbit and Dog met. +C Dog was pull/ing her wagon. +C there was a balloon on it. +C Rabbit like/ed the balloon. +C he try/ed to untie it. +C but he let go too soon. +C and the balloon float/ed away. +C dog was very[!] angry. +C then they saw a rabbit sell/ing more balloon/s. +C Rabbit ask/ed (to) for a blue one. +C (he said that) : the rabbit sell/ing the balloon/s said that they cost five cent/s. +C Rabbit did not have any money. +C Dog was sad. +C and now so was Rabbit. +C then they saw the doctor again. +C Rabbit went over to her. +C he asked if they could borrow five cent/s for Dog. +C so she did and bought them both a balloon. +C they were both really happy. += [Eg:B3] diff --git a/data/ENNI_SALT/train/935.slt b/data/ENNI_SALT/train/935.slt new file mode 100644 index 0000000000000000000000000000000000000000..27bc6e230dbff357167459e6f2863fa71ec33793 --- /dev/null +++ b/data/ENNI_SALT/train/935.slt @@ -0,0 +1,80 @@ +$ CHI, EXA ++PARTICIPANTS: CHI target_child, EXA examiner ++DOB: 2/22/1993 ++DOE: 6/12/2002 ++CA: 9;3;21 ++Gender: F ++Context: Nar ++Group of CHI: SLI ++ID: 935=CHI ++Tape Location: Disk M13 Track 12 += [Bg:A1] +C a[EW:an] : elephant is bounce/ing : a ball by the pool. +C and then it go/3s in the water. +C and the horse : (um) swim/3s to go get it. +C and (it) the : horse : gave (i) it to the elephant. +C and (it) she like/3s : the : horse. += [Eg:A1] += [Bg:A2] +C (um the) they saw a diving board. +C and they : want to : go on it. +C and the elephant run/3s to it. +C and she slip/3s. +C and she hurt : her knee. +C and : the lifeguard come/3s and : (um) put/3s a bandaid on. +C and (then : it) (then it go) then the lifeguard (s) put/3s it on : her knee. +C then : she sit/3s down : on the bench. +C and (she) (the el) the lifeguard : show/3s : to her : on the wall it says no run/ing. += [Eg:A2] += [Bg:A3] +C the giraffe gots[EW:has] a : toy : airplane. +C and (she) they like it a lot. +C and then : (sh) he fly/3s it. +C and the : girl elephant take it away : from him. +C him accidentally put : the toy elephant in the water. +C and the : giraffe : was mad at her. +C and : the lifeguard come/3s and see/3s : what happen/ed. +C (and) : and (the lifeguard) (the : girl giraffe) the girl elephant : tell/3s what happen/ed to (the) : the airplane. +C and the lifeguard try/3s to : (rea) get it. +C and he could not get it. +C (and) and they can not get it. +C and then another lady come/3s. +C and she has a net to get it. +C and then : she get/3s it : the : airplane : and (give es) give it to the giraffe. +C and then : (h) the elephant say/3s : sorry. += [Eg:A3] += [Bg:B1] +C (um) three : bunny/s are play/ing in : the sandbox. +C and they are build/ing a castle. +C the boy bunny is pour/ing sand on it. +C (and) : and the castle is broken. +C and : they try/ed to fix it. += [Eg:B1] += [Bg:B2] +C they are have/ing a picnic. +C and : the boy bunny (is ha) has lot/s of : goody/s. +C and : the bunny is full of food. +C and he get/3s sick : of the food. +C and : the doctor come/3s to fix him up. +C and the girl bunny is pull/ing the doctor : over to the picnic table. +C and he (fix) fix/ing him. +C and (he is) he walk/3s : home : with the doctor. += [Eg:B2] += [Bg:B3] +C the girl has (a) a wagon on with a balloon. +C and the boy bunny (h) look/3s at the balloon. +C and (it tie) he (tie/3s) untie/3s it. +C and then it float/3s away. +C then the girl bunny is : mad. +C then : the boy bunny is go/ing to [~_gonna] buy a new balloon. +C then : (he) : he buy/3s the balloon. +C (and) but the balloon/s is[EW:are] fifty cent/s. +C he only got[EW:has] one dollar. +C and : they (w) are sad. +C and then : (um) the nurse have|have[EW:has] (um) some money. +C and he is go/ing to (t) pay and have (s) ask : her to have some money. +C (and then she) and then she say/3s yes : to buy the balloon. +C and (the) he buy|buy[EW:buy/3s] it : the balloon. +C and they got two balloon/s. +C they are happy. += [Eg:B3] diff --git a/data/ENNI_SALT/train/937.slt b/data/ENNI_SALT/train/937.slt new file mode 100644 index 0000000000000000000000000000000000000000..f261d61e61a2229178b476c7d5501d63929ae419 --- /dev/null +++ b/data/ENNI_SALT/train/937.slt @@ -0,0 +1,97 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 11/26/1990 ++DOE: 6/19/2000 ++CA: 9;6;24 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 937=CHI ++Tape Location: Disk L18 Track 44 += [Bg:A1] +C a giraffe is talk/ing to an elephant who is bounce/ing a ball. +C the ball fly/3s into the pool. +C (so) (so the) and the giraffe and the elephant are look/ing at it. +C the giraffe jump/3s into the water and try/3s to save the ball. +C and the elephant is cover/ing her eye/s. +C (the elephant grab/3s the ball) the giraffe give/3s the elephant the ball. +C and he is smile/ing. +C (and the giraffe) and the (um) : elephant is now happy. +C the elephant like/3s the giraffe. += [Eg:A1] += [Bg:A2] +C The giraffe and the elephant again. +C (are) the giraffe is hold/ing a cloth. +C and they are stare/ing at the pool. +C (the) the elephant look/3s like if she is going to jump in. +C she slip/3s : and hurt/3s her knee. +C the giraffe come/3s. +C and the lifeguard is run/ing also to : the elephant. +C (they s) (they) the lifeguard put/3s a bandaid on the elephant/z knee : and sit/3s her down on the bench. +C he point/3s at the sign. +C (And the) : and then the elephant (feel/3s all) [~_how_do__you_say_it] : feel/3s ashame/ed : you could say. +=C that is it [+_bch]. += [Eg:A2] += [Bg:A3] +C The giraffe and the elephant are play/ing with a model : (um) airplane. +C the giraffe hold/3s it up (and) and make/3s it spin around. +C the elephant take/3s it away from his hand. +C and the giraffe is like what ! +C the elephant drop/3s it into the pool. +C the giraffe is very angry with the elephant. +C now the lifeguard is just stare/ing at the elephant and the giraffe. +C then the elephant talk/3s to the lifeguard about what happen/ed. +C the lifeguard try/3s to save it. +C but it is too far. +C (so the ele) so the giraffe start/3s cry/ing. +C and the elephant[-:] is ashame/ed of herself. +C then[!] another elephant which is a lady : (um) come/3s with a big net. +C she scoop/3s up the airplane : and (gi) hand/3s it to the giraffe. +C the giraffe is happy. +C (he l) he : is not mad at the elephant. +C he is hug/ing his airplane. += [Eg:A3] += [Bg:B1] +C the rabbit is smile/ing : same with the dog because they made a big sandcastle. +C they are add/ing more to it. +C the bunny is scoop/ing up sand. +C and the doggy is pat/ing down the sand onto the sandcastle. +C the rabbit pour/3s all the sand onto the castle. +C and the dog : feel/3s like she do/3s not believe what she is see/ing. +C the rabbit feel/3s all weird because (he) (it see/3s) he see/3s that it did not break the castle. +C now the dog is cry/ing because all the sand got mush/ed together. +C and the rabbit feel/3s all[!] : stupid inside. += [Eg:B1] += [Bg:B2] +C The dog (is wav) is wave/ing hello to the rabbit (who). +C and they are both carry/ing basket/s. +C they end/ed up being picnic[!] basket/s. +C (and the) and the rabbit is just munch/ing away on his lunch while the dog quietly take/3s out her picnic. +C the rabbit is full by the time the dog has just start/ed. +C he feel/3s all woozy. +C and the dog (feel/3s all s) (all nice because the rab) feel/3s perfect. +C but the rabbit has eaten too fast. +C so he feel/3s sick. +C so the dog run/3s to go get a doctor : and pull/3s[!] her over to the bunny. +C the doctor : (um does not um) fix/3s him up with (um) medical tool/s and stuff : and pick/3s him up and takes him away. += [Eg:B2] += [Bg:B3] +C the dog is hold/ing a cart with a wagon. +C and again (the bun) the rabbit is walk/ing down the road and says hello. +C the rabbit admire/3s the balloon. +C he untie/3s it. +C the dog is surprise/ed. +C he let/3s go. +C the dog try/3s to catch it. +C but it is too late. +C she is really[!] mad with the rabbit. +C then she see/3s (a balloo) (a um) a rabbit hold/ing a bunch of balloon/s. +C the rabbit go/3s to buy one. +C they are five cent/s. +C but he do/3s not have any money. +C so[-:] the rabbit : and the dog : are sad : because they can not afford another one. +C then : (the rabbit) the rabbit (go/3s to) (to) go/3es to the doctor and ask/3s for five cent/s. +C she buy/3s two balloon/s and give/3s one to each of the : young one/s. +C they each have a balloon. +C and they are happy. += [Eg:B3] diff --git a/data/ENNI_SALT/train/939.slt b/data/ENNI_SALT/train/939.slt new file mode 100644 index 0000000000000000000000000000000000000000..a7cdc9c45e51dbc7191728630635db4ef6add551 --- /dev/null +++ b/data/ENNI_SALT/train/939.slt @@ -0,0 +1,93 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 9/30/1990 ++DOE: 6/19/2000 ++CA: 9;8;20 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 939=CHI ++Tape Location: Disk L18 Track 54 += [Bg:A1] +C This elephant is play/ing with a ball. +C and then the giraffe want/3s to play. +C and then (they a) it accidentally fall/3s into the pool. +C so then the giraffe swim/3s to get it. +C and he give/3s it back to the elephant. +C then she is very happy. +C and : she say/3s (ve) thank you to the giraffe. += [Eg:A1] += [Bg:A2] +C (the[-:] um) : the elephant and the giraffe want to go in the water. +C and so the elephant : want/3s to go on the diving board. +C but then she run/3s too fast. +C and she start/3s slip/ing. +C then she hurt/3s her knee. +C and : the giraffe : (ca) come/3s to help. +C then he call/3s the lifeguard and tell/3s him what happen/ed. +C then he put/3s a bandaid on her knee. +C and[-:] she go/3s to sit down on a bench. +C then the lifeguard say/3s (that he) that she is not suppose/ed to be run/ing on deck. += [Eg:A2] += [Bg:A3] +C The elephant start/3s talk/ing to the giraffe. +C and the giraffe show/3s : her[-:] his plane. +C then she take/3s it away from him. +C and : she start/3s play/ing with it. +C then it fall/3s into the water. +C the giraffe get/3s mad at her. +C then the lifeguard see/3s that there is a toy in the pool. +C and he is mad at them both. +C and then he ask/3s what happen/ed. +C and she says she accidentally drop/ed it in the water. +C then the lifeguard try/3s to get it. +C and he[!] can not get it. +C and now the giraffe is cry/ing. +C then : her mom come/3s : (and) with a net thingy. +C and she try/3s to get the plane : and hand/3s it to the giraffe. +C the giraffe is very happy. +C the elephant : is happy that he got it back. += [Eg:A3] += [Bg:B1] +C (uh uh) two : bunny/s I think are make/ing a sandcastle. +C this bunny is make/ing a sandcastle. +C and the other bunny want/3s to help. +C and then [~_like] they start build/ing it [~_like] really tall and stuff. +C then the other bunny (uh) throw/3s a bucket on top of the : sandcastle. +C and : the sandcastle [~_like] get/3s destroy/ed or something like that. +C and then : the other bunny start/3s cry/ing and try/3s to rebuild his sandcastle[~!_laughing]. += [Eg:B1] += [Bg:B2] +C (this bunny is) these two bunny/s are go/ing to [~_gonna] go on [~_like] a picnic I think. +C and : one bunny bring/3s [~_like] a lot of stuff. +C (the other) the other bunny just bring/3s a sandwich and (uh) some pop. +C (one) the other bunny feel/3s very sick : because he ate so much. +C and so the : other bunny go/3s to tell the doctor what happen/ed. +C and then so the doctor : come/3s and try/3s to help. +C and : she talk/3s to the : sick bunny[~!_laughing] and : ask/3s what happen/ed. +C and then he get/3s better. +C and : she say/3s to be careful. += [Eg:B2] += [Bg:B3] +C one bunny is taking a wagon out : somewhere. +C and then another bunny come/3s and : ask/3s her something. +C the bunny ask/3s if he could see the balloon. +C and the : other bunny : is think/ing about it. +C so : the : bunny undo/3s the balloon. +C and the other bunny is very surprise/ed. +C and then he let/3s go of the balloon. +C and : she try/3s to get it back. +C but then it disappear/3s. +C and she is very mad at him. +C then : a bunny sell/ing balloon/s[-:] : say/3s do you want another one? +C and[-:] : the boy bunny come/3s up (and take/3s) and ask/3s for a balloon. +C and it is[-:] five cent/s for a balloon. +C but he do/3s not have five cent/s. +C and then they ask him really nicely. +C and he : say/3s maybe. +C (and then they find their) (hi) and then he find/3s his mom and ask/3s her for some money. +C and then : (um) she is surprise/ed that he want/3s a balloon because : (he) he : lost the other girl/z balloon. +C and then so she give/3s the man : (five) (te) ten cent/s. +C and they each get a balloon. +C and then they both are very happy. += [Eg:B3] diff --git a/data/ENNI_SALT/train/941.slt b/data/ENNI_SALT/train/941.slt new file mode 100644 index 0000000000000000000000000000000000000000..57a2d4c88b85f1761602b6f90bafb55a35d956e8 --- /dev/null +++ b/data/ENNI_SALT/train/941.slt @@ -0,0 +1,106 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 11/23/1990 ++DOE: 6/19/2000 ++CA: 9;6;27 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 941=CHI ++Tape Location: Disk L18 Track 65 += [Bg:A1] +C I see an elephant : stand/ing by a giraffe bounce/ing a ball : by a swimming pool. +C then[-:] the ball (go) fall/3s into the water. +C then the giraffe hop/3s in and try/3s to swim for it. +C then the giraffe give/3s the elephant the ball. +C then : the : giraffe get/3s out. +C and the elephant is happy. += [Eg:A1] += [Bg:A2] +C (They are) the giraffe and elephant is[EW:are] stand/ing by the pool. +C and : there is a no run/ing sign. +C then : the : elephant : start/3s : to run : and (sh) (g) go/3s faster and[-:] start/3s to slip. +C (then she) then the elephant fall/3s. +C and she hurt her : knee. +C and then : the giraffe come/3s run/ing. +C then : the lifeguard come/3s. +C and the (gi) : giraffe and elephant are sit/ing down. +C the lifeguard put/3s a bandage : on : the elephant/z knee. +C then the lifeguard : pull/3s her up to a bench so she can rest. +C then the lifeguard point/3s to the no run/ing sign. +C and the elephant : look/3s kind of embarrasse/ed. += [Eg:A2] += [Bg:A3] +C The elephant is stand/ing by the pool with : her friend the giraffe. +C and he is hold/ing a[-:] toy airplane. +C then the giraffe start/3s move/ing the airplane : around. +C and the elephant look/3s surprise/ed. +C then the elephant grab/3s the[-:] airplane out of : the[-:] giraffe/z hand/s. +C then she drop/3s it in the water. +C and[-:] the giraffe look/3s kind of : upset : and surprise/ed. +C then it start/3s to sink. +C and the giraffe look/3s really upset. +C and : the[-:] elephant would kind of be like : (um) embarrasse/ed and :[-:] kind of[-:] mad at herself. +C then the lifeguard come/3s. +C and he see/3s[-:] the airplane sink/ing. +C then : the : elephant start/3s talk/ing : to the lifeguard. +C the lifeguard try/3s to reach it. +C but he can not. +C so[-:] : then : the giraffe start/3s cry/ing because : it was : a toy of his. +C and : he really like/ed it. +C then : another elephant come/3s by with (a) : a net : that has a long pole attach/ed to it. +C then she (s) : try/3s to scoop the airplane up in it. +C she get/3s the airplane out of the water. +C and : the giraffe look/3s very happy. +C now he is hold/ing his airplane. +C and[-:] he : look/3s very happy. += [Eg:A3] += [Bg:B1] +C there is a : dog sit/ing in a sandbox that is build[EW:building] a : sandcastle. +C and then a rabbit come/3s. +C then the rabbit start/3s build/ing : his own sandcastle : as the dog work/3s on her/z. +C then the rabbit take/3s a bucket of sand and pour/3s it over : the dog/z castle. +C now the castle is ruin/ed. +C and they both look upset. +C the dog is cry/ing because : it is ruin/ed. +C and : the rabbit look/3s : like she[-:] : did not mean to do it on purpose. +C but : she is kind of embarrasse/ed and sad. += [Eg:B1] += [Bg:B2] +C there is[-:] a rabbit and a dog : look/ing for a picnic site. +C and they have picnic basket/s in their hand. +C then they : sit down. +C and the rabbit is eat/ing all this stuff and has all this stuff. +C and the dog just got out a sandwich. +C now the rabbit is finish/ed eat/ing and look/3s very stuff/ed. +C and the dog just start/3s eat/ing. +C the rabbit is not feel/ing too well now : and : do/3s not look too good. +C then[-:] a nurse come/3s along. +C and the dog : tell/3s her that : his friend need/3s help. +C and : then she start/3s pull/ing the nurse over to their picnic basket lunch place. +C then the nurse start/3s : take/ing his temperature as he lie/3s down. +C now the rabbit is better. +C and : they are go/ing back home. += [Eg:B2] += [Bg:B3] +C there is[-:] a : dog pull/ing a : wagon : with a balloon tie/ed onto it. +C and : a rabbit is come/ing. +C he look/3s at the balloon. +C : and : the : dog look/3s curious. +C then the : rabbit start/3s untie/ing the balloon from the wagon. +C then the balloon float/3s away as they try to reach it. +C now the : dog is very mad at the rabbit. +C (then the ss) then the rabbit see/3s : a : man sell/ing more balloon/s. +C then : the : rabbit : want/3s to buy one from him. +C and then he see/3s that they are five cent/s. +C and : the rabbit do/3s not have any money. +C so : they can not buy any balloon/s. +C and : (the) they both look sad. +C then the rabbit : go/3s to see the nurse. +C and the dog stand/3s by the man sell/ing balloon/s. +C : the rabbit point/3s to the man sell/ing balloon/s and : tell/3s the nurse : that they do not have any money and they can not buy one. +C and then the nurse pay/3s : for : the balloon/s. +C and : she bought one for both of them. +C now they both have their own balloon/s. +C and they are happy. += [Eg:B3] diff --git a/data/ENNI_SALT/train/945.slt b/data/ENNI_SALT/train/945.slt new file mode 100644 index 0000000000000000000000000000000000000000..305d607e5e38004d37543df0806952e7eb538ff0 --- /dev/null +++ b/data/ENNI_SALT/train/945.slt @@ -0,0 +1,111 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 12/01/1991 ++DOE: 1/30/2001 ++CA: 9;1;29 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 945=CHI ++Tape Location: Disk L24, Track 50 += [Bg:A1] +C (one day) : [~_I_do_n(o)t_know_if_that_(i)s_a_coach_or_what] : one day : two friend/s met each other at the pool. +C and then a ball went in the pool[-:]. +C (and they) and then they look/ed surprise/ed after it fell in. +C so one of them jump/ed in and went to : catch the ball. +C and one of them were[EW:was] cry/ing. +C (and then the) and then the person that swam in : got the ball. +C (and sh) and then when : she got it back the girl : (she) she was really happy. +C so (then) : then the boy climb/ed out of the pool : and start/ed smile/ing too. += [Eg:A1] += [Bg:A2] +C one day : some people were look/ing at the pool. +C and they want/ed to jump (in um) in the pool on the : springboard. +C so the girl ran over to it. +C and the boy was run/ing after her. +C but then she fell and hurt her knee and start/ed cry/ing. +C and : the lifeguard heard : her cry/ing. +C (so she) : so the lifeguard (came and) : came look/ing at it : and : put a bandaid on it. +C and (then put her) and : then they put her on the bench. +C and then the lifeguard : point/ed at the no run/ing sign. +C and she look/ed embarrasse/ed. += [Eg:A2] += [Bg:A3] +C one day : the friend/s met each other. +C (and : the) and (the friend) : the giraffe said : I got an airplane. +C do you want to fly it with me ? +C and the girl said yes. +C (and then she) and then she start/ed look/ing at it when the boy flied|fly[EW:flew] it. +C and then the girl (lo) : took it away from him. +C and : the boy start/ed get/ing freak/ed. +C and then the girl drop/ed it in the pool[-:]. +C and the boy look/ed a little sad. +C and then the boy start/ed get/ing mad at the girl. +C and the girl was : start/ing to get a little sad. +C so the lifeguard came[-:] and : look/ed at : it. +C and : both of them were : a little bit cry/ing. +C and then (the gir) the elephant told (the other elephant) the life (gald) guard : that (the) (the) she was fly/ing the airplane. +C and the airplane flew in the : pool[-:]. +C so the lifeguard (tri) try/ed to catch it. +C and he did. +C but then (he) it went a little farther : after he touch/ed it. +C and then : another person came : and had a net to catch it. +C so the other : person that came [~_yawns] put the net in and caught it : and then gave it back to the person that it belong/ed[!] to. +C so then : he was really happy. +C and the girl was too. += [Eg:A3] += [Bg:B1] +C one day two friend/s : the : dog and the rabbit met each other at the park. +C (and they) and the dog ask/ed (the) : the rabbit do you want to [~_wanna] make a : [~_I_do_n(o)t_know_what_they_(a)re_gonna] sandcastle with me? +C so they made a sandcastle : with a bucket (and the) and[-:] : a spoon. +C and the (dog wa) dog was pat/ing it down. +C and then the rabbit put sand all over it. +C and the rabbit broke it when she did that. +C and then the : dog start/ed cry/ing. +C and the : bunny look/ed embarrasse/ed. += [Eg:B1] += [Bg:B2] +C one[-:] day[-:] the dog and the rabbit met each other. +C and they were both go/ing on a picnic. +C so they had their picnic together. +C and the dog did not have that much. +C but the rabbit did. +C the rabbit got too full. +C the dog did not. +C the rabbit had cake and all that. +C and then he start/ed get/ing a stomachache. +C (the rabbit) and the dog was still sit/ing there eat/ing his sandwich and : drink/ing his drink. +C and then[-:] the dog (ra) saw a doctor and ran to the doctor and told : him that (the[-:]) the rabbit was feel/ing sick. +C and the doctor was a rabbit : too. +C so the dog start/ed pull/ing the rabbit over to her. +C and the : rabbit check/ed the rabbit. +C and : it did not look like[~!_yawning] (he) she was feel/ing very well. +C so : the doctor took (the) the rabbit : to home or the doctor place. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C one day (the) a rabbit and a dog : met each other. +C and the : dog had a balloon on his wagon. +C and[-:] the rabbit ask/ed what is that? +C and then the dog told : him it is a balloon. +C and then the rabbit want/ed to untie it to put it on him. +C the dog was get/ing freak/ed. +C and then it went up. +C and they both start/ed try/ing to get it. +C and then the dog got really[!] really mad. +C and the rabbit was still look/ing at it [~_yawns]. +C but there was other balloon/s because the guy was hold/ing them. +C and the dog was still back : there mad at the rabbit. +C but the rabbit was look/ing at the balloon/s. +C so the rabbit went over there and ask/ed if they could have (a) two balloon/s. +C and then : (he) he said you can not have one unless you pay me : ten cent/s because you are get/ing two balloon/s. +C so (th) they both felt sad because they (weren) could not get one. +C and the person was really (hapn) happy that was (get/ing) give/ing the balloon/s away. +C and then the doctor[!] was there. +C and the rabbit start/ed run/ing to the doctor. +C and the rabbit ask/ed the doctor can you buy us a : balloon[~!__yawning]? +C and the doctor said okay. +C and then they were both really really really happy. +C and they like/ed their balloon/s so much. +C and the doctor was really happy. += [Eg:B3] diff --git a/data/ENNI_SALT/train/947.slt b/data/ENNI_SALT/train/947.slt new file mode 100644 index 0000000000000000000000000000000000000000..79e9cb7389770fcef40ce320de31b3fcdd7cdd52 --- /dev/null +++ b/data/ENNI_SALT/train/947.slt @@ -0,0 +1,79 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 2/28/1991 ++DOE: 1/31/2001 ++CA: 9;11;3 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 947=CHI ++Tape Location: Disk L22 Track 41 += [Bg:A1] +C two friend/s met again. +C they had a ball. +C the ball drop/ed in the river. +C and then the (friend) friend (s : uh) swam into the river to get the ball. +C he gave back the ball. +C (and then he look/ed very) : and then she look/ed very happy. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C two friend/s met[!] again. +C (uh) one friend want/ed to (go) go off the diving board. +C (she ran down the hallway and sli) and : she ran down the hallway. +C (she ran to) : and she slip/ed. +C the lifeguard came : and gave her a (um) : bandaid. +C then she (sat) : sat on the bench. +C and then the lifeguard (real) got really mad because there was a sign that said no run/ing. += [Eg:A2] += [Bg:A3] +C the two friend/s met again. +C he (had) was play/ing with a[EW:an] airplane. +C the other friend took the airplane away. +C and it fell into the water[!]. +C the one friend got really[!] mad. +C the lifeguard saw it. +C and (they all look/ed) they all look/ed unhappy. +C and then (the uh) the friend explain/ed what happen/ed. +C and the lifeguard look/ed : kind of surprise/ed. +C so the lifeguard reach/ed out to get it. +C but : he could not. +C so the friend cry/ed. +C a lady with a pole : came over. +C and she fish/ed out the airplane : and gave it back. +C and (he) they both look/ed very[!] happy. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C two kid/s met (at uh) in the sand box. +C they built a castle. +C (uh) : one of the friend/s pour/ed (um) sand onto the castle. +C the castle broke (ss). +C one of the friend/s got really sad. += [Eg:B1] += [Bg:B2] +C (two f) the two friend/s met again. +C (they) : (they) : they ate a picnic. +C one of the friend/s ate too much and got a stomachache. +C [~_whispers:_let_(u)s_see] : (it got even) : it got even worse. +C (then the) : then there was (a lady on the road) a doctor on the road. +C and (the) : one of the friend/s went to get the doctor. +C (the : girl) : (the) one of friend/s pull/ed the doctor (to the) : to the other friend. +C the doctor look/ed at him. +C and after that he felt really happy. += [Eg:B2] += [Bg:B3] +C the two friend/s met again. +C (uh) the one friend (ask/ed) ask/ed her what : (if he could have the) if he could take off the balloon. +C so he : was untie/ing the balloon. +C and the balloon flew away[!]. +C (the) : the friend got really[!] mad at him. +C then he saw (some) a man with balloon/s. +C he ask/ed for one. +C five cent/s each. +C and they both look/ed very sad. +C (then came) : then came a lady. +C and they ask/ed her for some money. +C so she paid him five cent/s. +C and they got each one balloon! += [Eg:B3] diff --git a/data/ENNI_SALT/train/949.slt b/data/ENNI_SALT/train/949.slt new file mode 100644 index 0000000000000000000000000000000000000000..ecb7d9836293c5aad241e6d962c9c4333ee1d43a --- /dev/null +++ b/data/ENNI_SALT/train/949.slt @@ -0,0 +1,103 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOE: 1/31/2001 ++CA: 9;5;24 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 949=CHI ++Tape Location: Disk L22 Track 48 += [Bg:A1] +C (um[-:] : me uh) some : little girl and : a friend : are play/ing with a ball around (the) : a little lake : that you can swim in. +C and[-:] they accidentally drop the ball into the water. +C and (the[-:]) (her friend) : the girl/z friend go/3s in and get/3s it : and pass/3s it to her. +C and he is all wet. +C and she is all happy. +C and she is all smiley[-:]. +C and : he is all wet. += [Eg:A1] += [Bg:A2] +C (um) : it is the same girl with her friend. +C and they want to[:_wanna] go swim/ing. +C (i) : and[-:] : it say/3s no run/ing. +C and they just want to go (swim/ing[-:]) swim/ing. +C and the girl want/3s to run and jump in. +C but she is not suppose/ed to run. +C and she run/3s. +C and she slip/3s and fall/3s[-:]. +C she hurt/3s her knee. +C and she start/3s cry/ing. +C and her friend come/3s run/ing for her. +C and then : a lifeguard come/3s : (after him c) : (after) when she fall/3s because : (she hear/3s) he hear/3s it. +C and then he : put/3s some : stuff on. +C and then he put/3s a bandaid on. +C and there is still a sign that says no run/ing. +C she has to sit out on the bench. +C and her friend is[-:] : kind of smiley. +C and so[-:] she is[-:] kind of[:_kinda] : in trouble because (she i) there is a sign that says no run/ing. +C and the lifeguard point/3s to the sign. +C and she is[-:] kind of : worry/ed. += [Eg:A2] += [Bg:A3] +C (um : um) : there is[EW:are] [-:] : the two friend/s again. +C (and[-:]) : (um and one of) and her friend : has a toy[-:]. +C and she is[-:] all surprise/ed and stuff. +C and he is play/ing with it. +C and she is just look/ing at it : get/ing dizzy : sort of. +C and then she grab/3s the toy : away from him : (and she want/3s) because she want/3s to play with it. +C she accidentally drop/3s it in the water. +C and it start/ing to kind of[:_kinda] sink. +C and (the) her friend is get/ing mad at her. +C (that) she (s) go/3s to get the lifeguard. +C and the lifeguard look/3s at the toy. +C and she is : say/ing[-:] can you get that please : it look/3s like. +C and the lifeguard try/3s to (rea) reach. +C but it is too far. +C and now he is cry/ing[-:] : because the lifeguard could not get it. +C and then : a[-:] person bring/3s a net so she can try to get it. +C and she get/3s it for him. +C and now he is happy : that he got his toy back. +C and now : she is happy that he is happy. +C and he is all : snuggle/ed up to his toy. += [Eg:A3] += [Bg:B1] +C me and my friend Alana : (um) go/ing to the park to play : in the sandbox. +C (us make/ing a s) me and my friend Alana make/ing (a sandbox) a sandcastle [~_I_mean]. +C (um) pour/ing a whole bunch of sand on it. +C and Alana get/ing a little mad. +C and[-:] the sandcastle break/3s (cause I pour : s) because we pour/ed sand on it. +C and[-:] : us try/ing to build it again [EU]. += [Eg:B1] += [Bg:B2] +C me : and my friend *are go/ing on a picnic [EU]. +C my friend *is eat/ing : all the food [EU]. +C my friend *is get/ing kind of sick[!] (and[-:]) because he ate all the food [EU]. +C he is get/ing even sicker. +C he see/3s a nurse walk/ing down the road. +C and (he run/3s to go get the nurse) : [~_well] I run to go get the nurse. +C and I pull him to (the[-:] uh) my friend who is kind of sick from eat/ing all the food. +C and then she is[-:] (give/ing[-:] hi[-:]) take/ing his temperature and give/ing him some medicine. +C and her[EW:she] *is make/ing him feel a little bit better [EU]. += [Eg:B2] += [Bg:B3] +C (um : m) me and my friend *are walk/ing down the street with a wagon [EU]. +C and I have : a balloon tie/ed to my wagon. +C my friend is look/ing at it and say/ing how wonderful the balloon is. +C my friend want/3s to hold it. +C and he untie/3s it. +C and he let/3s it go. +C and it fly/3s away. +C and I get all mad at him because my balloon is gone. +C and it was my favourite balloon. +C and (we see a balloon man) [~_well] he see/3s a balloon man down the : other side of the street. +C and he ask/3s if he can get one of the balloon/s. +C but his pocket/s are empty. +C and he has no money. +C and : (he um) : we are just stand/ing there and look/ing at the balloon/s. +C and then (we see the nurse) [~_well] he see/3s the nurse down the road. +C and he show/3s her where the balloon man is. +C and : he give/3s : the man : ten cent/s because the balloon/s are five cent/s so they could each get a balloon. +C and now they each got their own balloon. +C and now : I am[-:] smile/ing. +C and I am happy with my friend. += [Eg:B3] diff --git a/data/ENNI_SALT/train/951.slt b/data/ENNI_SALT/train/951.slt new file mode 100644 index 0000000000000000000000000000000000000000..f6558a7f64d37480da36fb4cba531476ddc2d451 --- /dev/null +++ b/data/ENNI_SALT/train/951.slt @@ -0,0 +1,72 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOE: 1/31/2001 ++CA: 9;2;30 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 951=CHI ++Tape Location: Disk L22 Track 55 += [Bg:A1] +C an elephant ask/ed (if) : if the giraffe want/3s to play with her and her ball. +C and[-:] it bounce/3s into a pool. +C and the giraffe go/3s to get it. +C and then[-:] he give/3s it back to her. +C and she is happy. += [Eg:A1] += [Bg:A2] +C and then the giraffe : and the elephant want to play again. +C and then she say/3s do you : want to go on the diving board? +C and she slip/3s[-:] : and hurt/3s her knee. +C the giraffe go/3s and get/3s a lifeguard. +C and[-:] (the) (the uh) : the lifeguard put/3s a bandage on it. +C and (uh) she feel/3s (uh) : better. +C and (uh uh[-:]) : the lifeguard say/3s[-:] to her no run/ing. += [Eg:A2] += [Bg:A3] +C the elephant want/3s to play with the giraffe and the plane. +C and[-:] (uh) he swing/3s the (pl) plane. +C and then[-:] (the) : the elephant take/3s it from him. +C and then she accidentally drop/3s it in the water. +C and the giraffe get/3s mad at her[-:]. +C and the lifeguard (is) : come/3s. +C and[-:] (uh) she tell/3s him what happen/ed. +C and[-:] he try/3s to get it. +C but he can not. +C (uh) and then the giraffe is cry/ing. +C and then[-:] (uh) : another elephant come/3s : with a net : and (uh get uh) scoop/3s it out and give/3s it back to the giraffe. +C and the giraffe is happy. += [Eg:A3] += [Bg:B1] +C (nuh) : a[-:] rabbit ask/3s[-:] someone if he could build a castle with him. +C (and they) and he say/3s yes. +C and they start build/ing it. +C he put/3s sand on top of the castle. +C and it break/3s. +C and the guy is try/ing to make it again. += [Eg:B1] += [Bg:B2] +C the[-:] guy again[-:] ask/3s if he can have a picnic with him. +C and they start to eat. +C and[-:] : the rabbit eat/3s a lot. +C and he get/3s full. +C and then he get/3s sick. +C and then[-:] the other guy come/3s and get/3s a doctor : and tell/3s her that (uh) he is sick. +C and she[-:] (uh) help/3s him. +C (and he) : and she take/3s him to her office. += [Eg:B2] += [Bg:B3] +C the rabbit again come/3s to play with him. +C and then he see/3s the balloon. +C and he untie/3s it because he want/3s to [~_wantsa] hold it. +C and it fly/3s away. +C and then[-:] (the[-:]) watch/ing the other guy get/3s mad at him [EU]. +C and then (the[-:]) he see/3s a balloon guy. +C and (he go/3s ask/3s) : he[-:] (uh) go/3s to see him. +C (uh) and he ask/3s for a balloon. +C and then (nn) they need five cent/s to buy one. +C (andb the) and then the other guy come/3s. +C and then they go to see the doctor again : and ask if (they) she can get them a balloon. +C and then she (pay/3s and) : paid for : two. +C and then they both (uh) are happy. += [Eg:B3] diff --git a/data/ENNI_SALT/train/953.slt b/data/ENNI_SALT/train/953.slt new file mode 100644 index 0000000000000000000000000000000000000000..9e2f6d32c15febf52ff15dfd31863f2cd7fe535f --- /dev/null +++ b/data/ENNI_SALT/train/953.slt @@ -0,0 +1,104 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 8/28/1991 ++DOE: 1/31/2001 ++CA: 9;5;3 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 953=CHI ++Tape Location: Disk L22 Track 59 += [Bg:A1] +C (uh) a giraffe and a[EW:an] elephant are : (uh) go/ing swim/ing. +C but the : elephant is play/ing with her ball. +C then the elephant by accident drop/3s it into the water. +C and[-:] (uh : the : uh) there is no dive/ing allow/ed in the water[-:]. +C and then the[-:] : (uh) : giraffe swim/3s in the water and grab/3s the ball. +C and then : the giraffe give/3s the ball back to the elephant. +C and[-:] (um) : the giraffe is all wet. +C and (sh) the[-:] elephant is happy. += [Eg:A1] += [Bg:A2] +C (um) the elephant and the giraffe : finds|find[EW:find](uh) a diving board. +C the elephant want/3s to go on the diving board. +C so do/3s the giraffe. +C (um) the elephant slip/3s. +C but the giraffe do/3s not. +C the elephant (hurt/3s) : hurt/3s itself. +C and : the giraffe is (um : um) : nervous. +C the giraffe : (and) : is with the elephant. +C and the lifeguard elephant came to see what was the matter with the girl elephant. +C the : lifeguard put a bandaid on the elephant/z knee. +C and : the lifeguard take/3s (um) the elephant to a bench. +C and the : lifeguard show/3s : (um) the girl elephant : the[-:] no run/ing sign. +=C done [+_bch]. += [Eg:A2] += [Bg:A3] +C (um) the giraffe : brang|bring[EW:brought] a[EW:an]: airplane to play with. +C and the elephant : is happy to see the giraffe. +C the giraffe is play/ing with his (uh) plane. +C and : the elephant is just stand/ing there : stare/ing at the plane. +C then the elephant scoop/3s the[-:] plane out of the giraffe/z hand : and[-:] (uh) : start/3s play/ing with it. +C the elephant : and the giraffe is[EW:are] worry/ed that the plane would sink at the bottom : of the pool. +C (um) the giraffe is : (uh) angry at the elephant. +C the lifeguard come/3s : and[-:] see/3s what is[-:] the matter. +C the[-:] : girl elephant tell/3s (h) : the lifeguard everything. +C and the lifeguard is like hmm ? +C and then the lifeguard try/3s to get the airplane[-:]. +C and the giraffe and[-:] : the[-:] : elephant are : worry/ed he would not sink. +C and then the : giraffe is cry/ing for his airplane back. +C and then this : (gi) other : elephant : with (um) a fishing net : come/3s and give/3s them a hand. +C and (the girl uh) the[-:] : big girl elephant scoop/3s the airplane up. +C and[-:] the giraffe is still cry/ing. +C then the giraffe is happy : that (the : girl eleph) the big girl elephant : got the plane back for him. +C and : then (um) : the : giraffe was love/ing his (pl) airplane again. += [Eg:A3] += [Bg:B1] +C (um) there is a rabbit. +C and[-:] there is something [~_I_do_n(o)t_know_what_it_is] : has a funny nose. +C but the rabbit and that : little guy are dig/ing[!]. +C and : the little guy (is make/ing a san) made a sandcastle. +C then the : bunny : had a pail (with) : and dig (um) : sand into the pail [EU]. +C and (the[-:]) : it look/3s like the dog : (um are) is (make/ing a) (still make/3s) try/ing to make a sandcastle. +C now the bunny was pour/ing (um) : the[-:] (uh) sand onto the dog/z sandcastle. +C and the dog is : wonder/ing what he is : do/ing. +C then : (um : uh) the bunny is like (um) : worry/ed. +C he thought that (um) the whole entire sandcastle would be destroy/ed. +C but the : dog is like [~_makes_sound_'huh_ya']! +C (um) the dog is cry/ing. +C and the bunny is like : [~_hums] : try/ing to ignore it. +=C finish/ed [+_bch]. += [Eg:B1] += [Bg:B2] +C (um) once upon a time there is (uh) : the dog and the rabbit go/ing for a picnic. +C the[-:] : rabbit brang|bring[EW:brought] a whole bunch of junk food. +C the dog[-:] (um) brang|bring[EW:brought] (s) (norm) : healthy food. +C (um) : the rabbit got stuff/ed. +C and the dog is still eat/ing. +C and the : rabbit do/3s not feel so good. +C and the dog is worry/ed what happen/ed to him. +C and then : the dog find/3s a doctor : because the rabbit ain't[EW:is][EW:not] feel/ing so good. +C and the dog pull/3s the doctor to the rabbit. +C and (the rabbit) : the[-:] doctor check/3s what is wrong with the rabbit. +C and : the rabbit get/3s tooken|take[EW:taken] to the hospital. += [Eg:B2] += [Bg:B3] +C (um) the dog : is pull/ing his wagon : with the balloon tie/ed to it. +C and[-:] the dog seen|see[EW:saw] the rabbit. +C the dog still had (his wagon) : [~_I_mean] her wagon. +C and the balloon was was still on there. +C and then the : dog is like yell/ing at the rabbit for try/ing to take off : the[-:] dog/z balloon. +C and the balloon float/s away. +C and the : dog and the rabbit are try/ing to get the balloon. +C (um) the dog is angry[-:] at the rabbit : and very mad. +C and then the rabbit see/3s (um) : a[-:] bigger rabbit with balloon/s. +C the rabbit ask/3s if he can have a balloon. +C but : he could not buy one for the dog. +C the balloon/s were five cent/s. +C and the rabbit did not have any money on him. +C the (r) dog and the rabbit were worry/ed they would not get a balloon. +C then the rabbit saw that (doc) : doctor rabbit again : and[-:] (um) [-:] ask/ed : the doctor rabbit if she can buy : the dog and the rabbit a balloon. +C (and) : and she : bought (uh) the dog and the rabbit (uh) : a balloon for both of them. +C and then the rabbit and the dog were happy. +C so was the[-:] doctor. += [Eg:B3] diff --git a/data/ENNI_SALT/train/955.slt b/data/ENNI_SALT/train/955.slt new file mode 100644 index 0000000000000000000000000000000000000000..e0bd26d7960d7fc768328bb7d8c93ef157402aef --- /dev/null +++ b/data/ENNI_SALT/train/955.slt @@ -0,0 +1,184 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 5/16/1991 ++DOE: 1/31/2001 ++CA: 9;8;15 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 955=CHI ++Tape Location: Disk L22 Track 69 += [Bg:A1] +C (uh) there is : a giraffe[-:]. +C and then there is an elephant. +C the elephant is bounce/ing a ball. +C and : they are probably say/ing hi to each other. +C they are by a pool. +C and the : elephant has his swimsuit (maybe on) probably yeah : on. +C and then the : elephant probably bounce/3s it into the water. +C and they are both : oh no it is went into the water [EU] ! +C what are we go/ing to do[-:] ! +C so (the horse) [~_no_the_horse] the (um) : giraffe jump/3s into the water : hold/3s his breath probably and then swim/3s over to it and : probably grab/3s it. +C and then he is like no[-:] what if he do/3s not come up [~_laughs] ! +C and then : the giraffe come/3s back with the ball and hand/3s it over to the elephant. +C (with) and then they are both happy they look like. +C and then : I think[!] they like each other because[~!_laughing] they are like [~_dreamy_facial_expression] : to each other. +C yeah. += [Eg:A1] += [Bg:A2] +C (uh) they are the same two people the giraffe and the[-:] : elephant. +C and they are still[!] at the (um) : pool. +C and there is a no run/ing sign. +C and then I think the elephant is probably start/ing to run. +C and the giraffe has a towel on it : hold/ing it. +C and then she do/3s start to run. +C and then : she slip/3s. +C and I think the giraffe[!] is start/ing to run. +C but then : he probably see/3s her : fall. +C so he probably do/3s not run then. +C and then he is like oh no I have to get over to her : because she hurt her knee! +C and she is probably cry/ing. +C and she is hold/ing her knee up. +C and there is still[!] a no run/ing sign. +C and : then the lifeguard come/3s over. +C and : (she see/3s) he see/3s her : with a[EW:an]: owie. +C and then the[-:] lifeguard run/3s down and put/3s a bandage on her knee : to make her feel better. +C and then : she look/3s down like ooh[-:] a bandage[-:] ! +C and then the giraffe is all happy because she is real (um) : not sad and : cry/ing [EU]. +C and then the lifeguard get/3s mad and point/3s at the no run/ing sign. +C and she is like oh[-:] okay[-:] I am not go/ing to run no more [~__laughs]. += [Eg:A2] += [Bg:A3] +C they are[-:] the same two character/s the giraffe and the elephant. +C and[-:] the giraffe has[-:] a[EW:an][-:] : airplane it look/3s like. +C and he is fly/ing it like whoa[-:]. +C and he is hang[EW:hanging] his tongue out (uh[-:]) [~_sticks_tongue_out] [~__laughs]. +C that was so rude [~_laughs]. +C and then the elephant want/3s to try. +C and : the : giraffe probably do/3s not want it to because he is like waa[-:] do not touch that ! +C and then it fall/3s into the water. +C and (the : like) : the elephant start/3s to like uhoh he is probably go/ing to get mad at me ! +C and[-:] the giraffe is not[!] cry/ing yet. +C but he will probably get really mad. +C yeah[!] he really gets mad[!][-:]. +C and he is [~_makes_mad_sound_"hmmm"] ! +C and then the man is[?] like uhoh[-:] [~_laughs] : because (it is pra) it looks like this plane is sink/ing. +C but I do not think it is. +C and then the lifeguard (came/3s o) come/3s over. +C and (the giraffe is like) : (look/3s) : [~_no] : the giraffe look/3s : over to see the lifeguard. +C and the elephant look/3s over to see the lifeguard : come/ing. +C and then the (elephan) elephant probably start/3s to tell[!] (the : other) : the elephant lifeguard that : she accidentally drop/ed it into the : water. +C and she probably ask/ing him can you get it out for us ? +C and the elephant start/3s to try[!] to get it out. +C but I do not think he can reach. +C and they are like whoa I do not think he can reach [~_laughs]. +C and then : the giraffe start/3s to cry[-:]. +C and then the elephant was like uhoh (um) again. +C I am[-:] : go/ing to[:_gonna] get mad at for drop/ing in the plane. +C and then a girl elephant come/3s over. +C and she has one of those net thing/s you know ? +C and she is probably go/ing to[:_gonna] fish it out (for them) and like yay probably for (them) : her. +C and then she get/3s it. +C she[-:] dip/3s it into the water : and : scoop/3s it up. +C and then (the) : I think the giraffe is still probably cry/ing. +C but : (the) : the lifeguard is happy[!]. +C and then (the ele) the other elephant : the : little one : was actually like (uh[-:]) hope this one get/3s it [~_laughs]. +C and then she scoop/3s it up pick/3s it up and then give/3s it to the giraffe. +C (and every) and both of them are happy. +C and now : the giraffe is really happy[-:] ! +C and the elephant is really happy. +C and (he) the giraffe is hug/ing[!] the airplane. += [Eg:A3] += [Bg:B1] +C (uh) [-:] I think it look/3s like a rabbit : and a dog. +C the dog is make/ing a sandcastle. +C and it look/3s like the rabbit want/3s to join in to make the : sandcastle. +C and[-:] the rabbit has a pail of sand[-:] with a shovel in it. +C and he start/3s to dig in it. +C and the guy is shape/ing it [~_laughs] the dog. +C and then the rabbit start/3s to pour[-:][!] it on the sandcastle. +C and he is like : kind of : sad or scare/ed of what is go/ing to [~__gonna] happen to it. +C and then[-:] : it wreck/3s it. +C (it) it come/3s out with a big pile of sand but with just[!] one[-:][!] little building on top but with the whole mound. +C and then the : rabbit is uhoh[~!_laughing]. +C and then (the guy) : the dog is kind of : oh[-:]. +C and then[-:] the rabbit is sort of like a sorry look. +C and I think the dog is cry/ing[-:]. +C and he is try/ing to : maybe to shape it. +C and (there) there is[EW:are] two little more hump/s : with the sandcastle. +=C that is all [+_bch]. += [Eg:B1] += [Bg:B2] +C (uh) [-:] (the rabbit) (there is a) : they are the same two character/s from the[-:] one B [~_previous_story_number] I think. +C and[-:] they both have picnic basket/s. +C and the rabbit is walk/ing down[-:] on the forest : on the path. +C and he meet/3s the dog with the : other : (one) : [~_uh_what_(i)s__it_call/ed] : basket. +C and[-:] : the rabbit start/3s to take out all[-:] the food. +C there is (uh) carrot/s sandwich cake another[!] sandwich (uh) : pickle/s[-:] cookie/s : (uh) chip/s : another sandwich [EU]. +C (uh) there is a lot of stuff. +C (um) [-:] : and then he has the carrot and the sandwich in his hand. +C (uh) [-:] : (he has sort of a) : yum I am go/ing to eat this. +C and then the dog just take/3s out one sandwich. +C he is like whoa[-:][!] : this[-:] guy eat/3s a lot [~_laughs]. +C and (um) : the rabbit start/3s to gobble it all up. +C and there is[EW:are] crumb/3s left. +C there is an apple core : a juice box I think : some[-:] crumb/s. +C (and then the ba) and then he has a big tummy[!]. +C and he is still munch/ing his food. +C and the[-:] lunchbox is tip/ed over. +C and then the dog is just sit/ing there : munch/ing on his (sandwi) sandwich and has a juice box in his hand. +C and then the rabbit go/3s whoa that is a lot of food. +C and then he (s) kind of fall/3s over it look/3s like : cause he (has a) : probably has a tummyache. +C and then : the dog is like whoa what is wrong with him? +C and he still[~!_laughing] has the : sandwich and the juice box in his hand. +C and then : (the dog[-:] start/3s) [~_no] (the um) : there is a mother rabbit. +C it is probably the rabbit/z mother. +C she is walk/ing down[-:]. +C and then : the little dog go/3s and : tell/3s her that probably the : rabbit *that is lie/ing there : (uh) has a stomachache [EU]. +C and : he start/3s to pull[!] on her to come over : and check on him to make sure he is okay. +C and (he) there is a big twirl come/ing over the : rabbit/z face. +C and then (the rabbit) : [~_I_think_it_(i)s_a_doctor] (the rabbit) the older rabbit is a doctor. +C and he has (a telescope thingy) [~_not_a_telescope_#_you_know__those_things_I_can_n(o)t_do_n(o)t_know_what_they_are_called_-:_#_whoa__they_have_like_a_little_round_thing_and_then_there_(i)s_a_poke__#_hole]. +C and then she has glass/s. +C and she has (a) : one of those : thing/s that go down there. +C and then : (she go/3s : to) she is probably tell/ing him (um) to open wide or to not eat so much food. +C and then : (the ra) the doctor rabbit say/3s : I guess he feel/3s better. +C and (um) he get/3s up and (wa) start/3s to walk with the doctor. +C and then and the dog (s) start/3s to smile. += [Eg:B2] += [Bg:B3] +C (uh) [-:] the rabbit is walk/ing down. +C and the dog has a balloon[!] in it : that is tie/ed to a wagon. +C and I think she is pull/ing[!] it. +C and (then the do) : then the rabbit say/3s probably can I look at it and (ho) : want/3s to hold it. +C and then probably the dog say/3s yeah sure. +C and then : she (un) start/3s to untie it. +C and the dog is (like) : like a little surprise/ed : think : yeah. +C and then : I guess the balloon float/3s away. +C it is float/ing away. +C and the rabbit is like no[-:] ! +C and the dog is[~!_laughing] no either. +C and then : the dog get/3s really[!] mad like hmmm[~!_grunting]. +C I am really mad at you! +C and the rabbit is like (uh) hm (ye) yeah. +C he is like : scare/ed of him maybe. +C and then they see : another rabbit : with all these balloon/s. +C and then : the dog still has a mad[!] face on it. +C and the rabbit is like woo maybe you can get one from there. +C and then (the dog run/3s over) [~_no] : the rabbit[!] run/3s over to[-:] probably ask if they could have one. +C (and[-:] yeah) and then they cost five : cent/s : for the balloon/s. +C but : she do/3s not have none[EW:any]. +C and the dog (s) come/3s run/ing : over. +C and then the dog and the rabbit have really sad face/s. +C and[-:] : the : older rabbit I guess has like : I am proud of myself [~_laughs]. +C then they see (the rabbit) the doctor rabbit. +C and (the rab) the other little rabbit that is the baby run/3s over to her probably ask her for a balloon. +C and (sh) the rabbit ask/3s her if they could get a balloon too : probably : for one : for each of them. +C then[-:] : the rabbit come/3s over and give/3s (t) ten cent/s to get both of them a balloon. +C and she give/3s it to (them) : him. +C and (uh) : rabbit is hold/ing the two balloon/s out : for them to get. +C and then everyone is all happy. +C the dog is like : hug/ing[!] it. +C and the rabbit is hold/ing and hug/ing probably it. +C the rabbit is really happy : older rabbit. += [Eg:B3] diff --git a/data/ENNI_SALT/train/956.slt b/data/ENNI_SALT/train/956.slt new file mode 100644 index 0000000000000000000000000000000000000000..bbf656012c55896696a208db741b7c5ccf95bf62 --- /dev/null +++ b/data/ENNI_SALT/train/956.slt @@ -0,0 +1,110 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOE: 3/13/2001 ++DOB: 1/09/1992 ++CA: 9;2;4 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 956=CHI ++Tape Location: Disk L26 Track 27 += [Bg:A1] +C once upon a time there was a giraffe. +C he saw (a) : a[EW:an] elephant bounce/ing a ball. +C (i) (i) the elephant lost control. +C and it went into the water. +C the zebra (ran in to get) swam in to get it. +C the zebra gave it back to the elephant. +C the elephant look/ed at him and smile/ed. +=C the end [+_bch]. +=C that was easy [+_bch]. += [Eg:A1] += [Bg:A2] +C (um) once upon a time there was a giraffe and an elephant. +C (she saw) : she want/ed to go (on) off the diving board. +C so she ran over (it) to it. +C the giraffe said (no run/ing) the sign say/3s no run/ing. +C she fell and hurt her knee. +C see I told[!] you. +C the lifeguard came to help her. +C he put a bandaid on : and help/ed her up. +C they went to : sit down. +C the lifeguard said : the sign say/3s no run/ing : just for next time so you know. += [Eg:A2] += [Bg:A3] +C (there) there was an elephant and a giraffe. +C the elephant saw : what a nice airplane you have. +C he said look it even fly/3s too. +C (the giraffe stole it) [~_no_#_no] the elephant stole it from the giraffe. +C (she) it slip/ed out of her hand and went into the water. +C the giraffe was very very mad at the elephant. +C the lifeguard came to see and said well I will go get the thing. +C the page just pull/ed out [~_page_came_loose_from_the_binder] [+__bch]. +C (she s) he said well why would you do that ? +C and she said : it slip/ed out of my hand/s. +C the lifeguard try/ed to get it. +C but he could not. +C he said well : I do not know how you get it. +C a lady came along with a big : (fi) fishing net. +C and she got it out. +C it was very hard. +C but : she got it. +C she gave it back to the zebra. +C the zebra was very very happy. +C after that (the) the elephant was happy that (gira) the giraffe got it. +C and the giraffe was very happy. += [Eg:A3] += [Bg:B1] +C once there was a bunny name/ed : Peter and a dog name/ed : Rosie. +C and Rosie was build/ing : a castle. +C and : Peter came along and said can I help you? +C (um) Peter help/ed : her make the castle. +C but (uh) Peter decide/ed to dump the sand all over the castle. +C and he broke it. +C (um) Rosie got mad at Peter. +C and : Peter said sorry. +C Rosie try/ed to build it again. += [Eg:B1] += [Bg:B2] +C once upon a time (there was a bunny name/ed[-:]) : there was a bunny. +C and he was walk/ing along. +C and he saw a dog and said can I walk with you? +C they decide/ed to have a picnic together. +C at the end the rabbit was : so full that he got very fat. +C (um) : he got : so fat that he could not walk home. +C (um) the dog found a doctor and said come over. +C come over. +C my friend is hurt. +C so she : pull/ed him over. +C and : the doctor start/ed to look. +C the doctor said you should not have ate so much food. +C and you would not have got sick. +C the doctor help/ed (um) the bunny back (uh) home. += [Eg:B2] += [Bg:B3] +C once upon a time there was a dog. +C and (she) she was pull/ing a wagon. +C behind her she saw a bunny. +C the bunny said what a nice balloon. +C can I hold it for you? +C he tie/ed it to his arm. +C and they start/ed off on their way. +C (it) (it ca) it unloosen/ed and went off the bunny/z hand. +C and it float/ed into the sky. +C the dog was very mad : at the bunny. +C (uh) down the road the bunny saw : a balloon man. +C and he said what a nice surprise. +C I will just buy one and give it back to her. +C he said how much do they cost? +C (the) the guy said twenty five cent/s. +C (um) so he bought one. +C (and) : (and um) : and he gave it to : the dog. +C (um) : the dog saw the : rabbit : buy/ing one. +C he saw the : doctor and ran to him. +C the : doctor said you do not have enough to buy one of those. +C how much money do you need? +C he gave : the guy enough money to buy two balloon/s so that they could each have one. +C the dog was very happy. +C so was the bunny. +C and they thank/ed : the doctor and went off. += [Eg:B3] diff --git a/data/ENNI_SALT/train/957.slt b/data/ENNI_SALT/train/957.slt new file mode 100644 index 0000000000000000000000000000000000000000..38e638b65f7297823e600ff4c6892059aa89c6b8 --- /dev/null +++ b/data/ENNI_SALT/train/957.slt @@ -0,0 +1,103 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 9/14/1991 ++DOE: 2/01/2001 ++CA: 9;4;18 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 957=CHI ++Tape Location: Disk L22 Track 73 += [Bg:A1] +C (it) this look/3s like a love[!] story because she is bounce/ing[!] her ball. +C and she say/3s hey do you want to play. +C and (she) she pass/3s[!] it to the giraffe. +C and the giraffe : can not[!] catch it because she pass/3s it really fast. +C and it go/3s into the pool. +C and the giraffe say/3s do not[!] worry. +C I will get it. +C so : the giraffe swim/3s[!] into the pool. +C and : he grab/3s[!] the ball and give/3s it : to[-:] the[-:] elephant. +C and the elephant : is in love with the giraffe now. += [Eg:A1] += [Bg:A2] +C (she) they say they are go/ing to[:_gonna] go : take a : dive on the diving board. +C and she say/3s hey let us go over to the diving board really fast! +C come on! +C and[-:] so : she run/3s. +C and she slip/3s! +C and she bang/3s her knee. +C and she hurt/3s it really bad. +C and the lifeguard[!] come/3s over. +C and she is all[-:] : cry/ing. +C and give/3s her a[-:] bandaid[!] : and then put/3s her on the bench : and[-:] : say/3s you will be okay. +C then : (sh) he point/3s to the no run/ing sign. +C and she say/3s okay I will not run next time. += [Eg:A2] += [Bg:A3] +C (the giraffe say/3s) : (the) the elephant say/3s hey[!] nice plane. +C and the giraffe say/3s cool you want to[:_wanna] : play with me ? +C (so[-:]) so the giraffe go/3s [~_makes_sound_effects_'prrfff']. +C (and) and she go/3s wow ! +C so she take/3s it. +C she go/3s [~_makes_sound_effects_'prrfff']. +C and the giraffe go/3s cool[-:]. +C and then she accidentally : get/3s it in the water. +C and he go/3s oh[-:] that was my favourite plane ! +C why did you do that ! +C and : she go/3s to tell the lifeguard if she can get it out[!]. +C (and the life) and : she go/3s to tell[~!_laughing] the lifeguard if[~!_laughing] he can get it out. +C and the lifeguard try/3s[!] to reach. +C but he can not. +C so : the giraffe[!] start/3s to cry. +C and the girl is like that. +C (and the gi) and the lifeguard say/3s I[-:] do not know what we can do about it. +C and a lady[!] come/3s by with a big net. +C and then she say/3s hey do you want me get it out ? +C they say sure. +C so she : take/3s the net[!] put/3s[!] it in the water and grab/3s the plane : give/3s[!] the plane back : to[-:] the giraffe. +C and the giraffe say/3s ooh I got my favourite plane back. +C and now all the people are happy. += [Eg:A3] += [Bg:B1] +C the bunny[!] meet/3s up with the[-:] : dog I guess and say/3s hey do you want to build sandcastle/s? +C and[-:] so they are build/ing[!] the sandcastle/s. +C and the bunny has got a big bucket (and[-:]) full of sand. +C and he is scoop/ing it up. +C and he take/3s[!] the big bucket[!] of sand. +C and he dump/3s it over her sandcastle. +C and now[!] (the) (the whole sandcastle) the whole castle is now bury/ed[!] in a bunch of sand and broken[!]. +C so she start/3s to cry. +C and the bunny just mind/3s his own business. += [Eg:B1] += [Bg:B2] +C the[-:] : dog and the bunny are on a picnic. +C they are go/ing on a picnic. +C so[-:] they meet up in the park. +C and they set up all their stuff. +C and the bunny bring/3s a bunch of carrot/s and sub/s and[-:] all this stuff that is not good[!] for you. +C and he start/s eat/ing it all. +C and he go/3s aw[-:] I am full. +C and then he feel/3s queasy and woozy and he [~_makes_sound_'ooo']. +C (so the) : so the : dog : run/3s over to a bunny doctor that is just across the[-:] street : and bring/3s him over to the queasy : bunny. +C and she say/3s you should not have (s) eat that. +C and he say/3s you should eat what is good for you. += [Eg:B2] += [Bg:B3] +C one[!] day the bunny and the dog met up in the park. +C and : the dog had brought her wagon and her favourite balloon. +C and the bunny said hi[!] (can) can I see your balloon? +C and the dog said sure. +C so the bunny take/3s the balloon and untie/3s it. +C and the dog say/3s : hey what are you do/ing? +C (and) (and he) and : the dog distract/3s the bunny and accidentally let/3s go of the balloon. +C and : now the dog[!] is really mad at the bunny[!]. +C (and he s) and then the bunny see/3s (a) : a balloon[-:] : stand guy with a bunch of balloon/s. +C and he say/3s can I have one of those balloon/s? +C and the guy say/s balloon/s five cent/s. +C (and then) and then he is all aw[-:] : okay. +C and then they see the bunny[!] doctor. +C and the bunny doctor say/3s : she need/3s a balloon because her favourite balloon (w) is gone. +C so the : bunny doctor take/3s out her change purse and give/3s her five cent/s. +C (and they both[!] get : g) and they both get balloon/s. += [Eg:B3] diff --git a/data/ENNI_SALT/train/960.slt b/data/ENNI_SALT/train/960.slt new file mode 100644 index 0000000000000000000000000000000000000000..23a2e6edcbbdcb21115ad3ceae43fc165d8ac18b --- /dev/null +++ b/data/ENNI_SALT/train/960.slt @@ -0,0 +1,127 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 12/3/1991 ++DOE: 3/13/2001 ++CA: 9;3;10 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 960=CHI ++Tape Location: Disk L26 Track 42 += [Bg:A1] +C one day a giraffe saw an elephant at the pool. +C and she was play/ing with a (ball) ball, bounce/ing it up and down. +C then she by accidentally bounce/ed it into the pool. +C and she could not go in and get it. +C so they were both scare/ed. +C and then the giraffe went in and swam after it. +C (he brought) he swam over to the elephant and gave her (her) (the) her ball. +C and then she said thank you. +C and : the giraffe (felt) felt proud. +C and the elephant felt (va) very very happy. += [Eg:A1] += [Bg:A2] +C one day giraffe and elephant decide/ed to go swim/ing. +C (the) (then the) so the elephant want/ed to go off the diving board. +C so : she start/ed to run. +C as she ran she slip/ed. +C and the giraffe came run/ing. +C she sat there with : a cut on her knee cry/ing. +C then the giraffe came run/ing even faster. +C then : (the) (a l) the lifeguard came. +C and (um) : the giraffe was just sit/ing there : make/ing sure that the elephant was okay. +C and then the (um) lifeguard put (um on) a bandaid on the cut : (for) so the elephant : would not get her (um) : knee infect/ed. +C (um) then they sat her on a bench. +C and she look/ed at the bandaid. +C and the lifeguard talk/ed to her. +C and the giraffe was also talk/ing to her. +C then the : lifeguard point/ed out the sign that said no run/ing. +C and then the elephant start/ed to blush. += [Eg:A2] += [Bg:A3] +C one day (um) giraffe brought an airplane to the pool. +C and elephant saw it. +C and ( sh) (it) (it) it look/ed really neat to her. +C (the) the giraffe made all these sound/s with his tongue : (and he) as he : play/ed with his airplane. +C and the : elephant was amaze/ed. +C (then she just grab/ed) then she grab/ed : the airplane out of the giraffe/z hand. +C and : he was : surprise/ed. +C (then she by acci) then she accidentally drop/ed it in the pool. +C then the giraffe got mad. +C and the elephant felt sad. +C so they got the lifeguard and told him about what had happen/ed. +C then : he said so this is what happen/ed. +C it end/ed up in the pool. +C so he try/ed to reach it. +C but he could not. +C and so the giraffe start/ed to cry (and sw) and sweat because : he was afraid that his airplane might sink all the way. +C then another elephant come/3s with : a net. +C and then she say/3s that maybe she could help. +C so then : she (take) use/3s her net to try and (get it) : get the airplane. +C and everybody watch/3s. +C then she get/3s it and give/3s it to the giraffe. +C the giraffe is very happy. +C and so is the elephant. += [Eg:A3] += [Bg:B1] +C (um) one day a rabbit and : (um) a monster were build/ing a castle in the sandbox. +C (um) : so the monster was straighten/ing up the castle (the rab) (and the rabbit) while the rabbit was put/ing sand in the bucket. +C and then the rabbit dump/ed : all the sand that he put in the bucket onto the castle. +C and then it fell down. +C and all that was left was a little tower. +C and : the monster start/ed to cry. +C and it start/ed to put it (up) back up. +C (but the) and the rabbit felt bad. += [Eg:B1] += [Bg:B2] +C the same monster and rabbit decide/ed to go on a picnic. +C when they got there the monster had start/ed to unpack. +C but the rabbit had (all this) all the food. +C but the monster all that it had was sandwich/s and juice. +C so the rabbit got all hot and start/ed to eat. +C and : the monster (had) had not start/ed eat/ing. +C but the rabbit had already finish/ed before the monster could start to eat. +C then the rabbit did not feel (too) too good. +C so the : monster was puzzle/ed. +C (and he did not) and she did not know what to do. +C and then (she got) a doctor was walk/ing past. +C and then she ran and got the doctor. +C and then (she) (the) she pull/ed the doctor towards the rabbit. +C the doctor look/ed at the rabbit and : said that it ate too fast. +C so it probably felt sick. +C and then : (um) the rabbit : went with the doctor. +C and he felt much better. += [Eg:B2] += [Bg:B3] +C one day monster (put) (got) pull/ed up her wagon to rabbit with a balloon attach/ed to her wagon. +C and the rabbit said hi. +C and then the rabbit saw the balloon and thought it look/ed neat. +C but the monster : was a little scare/ed that it might pop it. +C and then the rabbit undid it. +C and the monster (s) just try/ed to tell it (not to) to stop. +C but (um) the rabbit just kept on (t) untie/ing the balloon. +C and then the balloon float/ed away. +C they both try/ed to get it. +C and then (: all) all that they could see was a string. +C the rabbit was scare/ed. +C and the monster was very mad. +C then : the rabbit saw (a) a balloon man sell/ing balloon/s. +C so (he) he decide/ed to go and buy one for his friend. +C and then he ask/ed if he could buy a balloon. +C and the man said yes. +C so he paid. +C he had no money. +C and the balloon/s were five cent/s. +C (so) (and the monst) (so he try/ed) and he want/ed to surprise the monster. +C but the monster was already come/ing his way. +C but then : the salesman (um) hear/ed the monster. +C and the rabbit told the sale/s (man) man what (um happen/ed) had happen/ed to the balloon. +C the salesman thought that they could (um) have a balloon maybe. +C (then he) then (th) they saw (um) the (uh) the doctor. +C so the rabbit ran to the doctor and ask/ed for five cent/s : (uh) for a balloon. +C and then the doctor said okay. +C and then she paid for two[!] balloon/s. +C so they each got one. +C (th) then they had so much fun. +C and they were all happy. += [Eg:B3] diff --git a/data/ENNI_SALT/train/961.slt b/data/ENNI_SALT/train/961.slt new file mode 100644 index 0000000000000000000000000000000000000000..b130a765c5b82453a07f493eba47f403b4c5e0cb --- /dev/null +++ b/data/ENNI_SALT/train/961.slt @@ -0,0 +1,81 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 12/08/1991 ++DOE: 2/08/2001 ++CA: 9;2;0 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 961=CHI ++Tape Location: Disk L22 Track 81 += [Bg:A1] +C once : (a) : a giraffe and an elephant were play/ing with a ball. +C the ball bounce/ed into the water. +C the giraffe (try/ed) : was swim/ing to go get it. +C he got it. +C and[-:] the elephant took it. += [Eg:A1] += [Bg:A2] +C once a[-:] elephant and a giraffe : were : (l) stare/ing into the water of the pool. +C (the elephant said : let us go a) : the elephant ran and said : let us go in! +C the elephant slip/ed. +C the : giraffe try/ed to run and : get her. +C and then she hurt her knee. +C and then the lifeguard came : to look at it. +C and he put a bandage[!] on it. +C and then he said : do not : run on the deck any more. +=C oh no that is right now[~!_laughing] [+_bch]. +C see look at the sign : he said. +C you should have paid attention to the sign! += [Eg:A2] += [Bg:A3] +C once a giraffe and an elephant were play/ing with a toy plane. +C they were[-:] : play/ing with it just : at the edge of the water. +C the elephant took the plane from the giraffe and start/ing play/ing with it. +C and then she drop/ed it in the water. +C and then the giraffe got mad (at h) at the elephant. +C and the lifeguard came over. +C and : the elephant said I drop/ed the plane into the pool[!] by accident. +C then the lifeguard try/ed to reach it. +C but he could not. +C and then the giraffe start/ed cry/ing. +C and then a girl with a net came. +C she[-:] got the plane out of the water with the net : and gave it back to the giraffe. +C and then they : start/ed play/ing. +C (ha) and then : they : did not want to[:_wanna] play : by the water again with the plane. += [Eg:A3] += [Bg:B1] +C once there was a rabbit and : a dog : make/ing a sandcastle[!]. +C the dog was : smooth/ing out the top. +C and then the rabbit put a whole bunch of sand on. +C stupid dog. +C and then it : broke. +C (and then the rabbit) : (and he[-:] did) and he should not have done it. +C and the dog : look/ed surprise/ed. +C and then the dog was try to (be) : rebuilt|rebuild[EW:rebuild] it very hard [EU]. +C but : she could not. += [Eg:B1] += [Bg:B2] +C once (there) a rabbit and a dog went for a picnic. +C the rabbit was eat/ing very fast. +C (he got) : he was not hungry any more. +C he got dizzy[!]. +C and then : he faint/ed. +C (and) [~_no] and then the dog ran up and got a lady and : told her to come see (the) : if the rabbit was okay. +C the lady told the rabbit that you should not eat : food that fast. +C and then the lady walk/ed off with the rabbit. += [Eg:B2] += [Bg:B3] +C (once : a) : once a dog was : wheel/ing around her balloon in a wagon. +C a rabbit came : and : said nice balloon. +C the rabbit untie/ed the balloon : and then it : float/ed into the sky. +C the dog got very mad at the rabbit. +C the rabbit saw : another rabbit carry/ing balloon/s for sale. +C the rabbit ask/ed if he could have one. +C but he said they are (five dollar/s : uh) five cent/s. +C and he did not have any money! +C they look/ed surprise/ed. +C and then (he) they ask/ed another rabbit for some money. +C (they gave her some money) : they gave the rabbit some money : to buy two balloon/s. +C and then they both[!] had a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/962.slt b/data/ENNI_SALT/train/962.slt new file mode 100644 index 0000000000000000000000000000000000000000..4f21ebafc70aa74ea9cffd1dd6ab7be9688099c5 --- /dev/null +++ b/data/ENNI_SALT/train/962.slt @@ -0,0 +1,85 @@ +$ CHI, EXA ++PARTICIPANTS: CHI target_child, EXA examiner ++DOB: 4/24/1991 ++DOE: 3/13/2001 ++CA: 9;10;17 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 962=CHI ++Tape Location: Disk L26 Track 46 += [Bg:A1] +C (um) there was a girl name/ed Melanie who was an elephant : and a boy named Chris who was a giraffe. +C they like/ed to go swim/ing [~_laughs]. +C (the) Chris the giraffe : drop/ed the ball into the water. +C he went and swam for the ball. +C he got it and gave it to Melanie. +C they live happily ever after. += [Eg:A1] += [Bg:A2] +C there was a girl name/ed Melanie and Chris. +C and they were at the swimming pool. +C they want/ed to go dive/ing. +C and they were run/ing to the board. +C Melanie slip/ed and fell. +C she scrape/ed her knee : and was cry/ing. +C Chris went to see her. +C and the lifeguard went too. +C (she s) the lifeguard put a bandaid on her knee. +C Melanie was walk/ing again. +C (and this) and then she got in trouble because the sign said no run/ing. += [Eg:A2] += [Bg:A3] +C Melanie : was an elephant. +C and Chris was a giraffe. +C they : were swim/ing. +C (with) and they had a plane. +C Melanie was play/ing with the plane. +C she accidentally drop/ed it into the water. +C Melanie could not reach it. +C and Chris is get/ing mad at her. +C the lifeguard saw the : plane in the water. +C (the) the lifeguard : was stare/ing at Melanie. +C and Melanie was tell/ing what happen/ed. +C the lifeguard could not reach it either. +C Chris was cry/ing. +C (ma) (a swi) a lady that was swim/ing there got a net. +C and she got the plane out of the water : and gave it to Chris. +C Chris was happy. +C Chris really love/3s his plane. += [Eg:A3] += [Bg:B1] +C there was (a ra) a rabbit : and a dog. +C they like/ed to build lot/s of sandcastle/s. +C the rabbit accidentally pour/ed some sand on the sandcastle. +C and : the : dog was surprise/ed. +C dog start/ed to cry. += [Eg:B1] += [Bg:B2] +C there was a rabbit and a dog. +C they were go/ing on a picnic. +C (the d) the rabbit had to eat lot/s because he was hungry. +C (the dog) [~_I_mean] the rabbit got really really full. +C his stomach start/ed to ache. +C the dog went and got : a : doctor rabbit. +C the doctor came to see the boy. +C she said that he had a fever. +C (um) and the rabbit/s walk/ed away happily. += [Eg:B2] += [Bg:B3] +C there was a dog and a rabbit. +C the dog had a balloon. +C the rabbit want/ed to see[!] the balloon. +C the rabbit (un) accidentally untie/ed their balloon. +C the balloon flew into the sky. +C the dog was really mad at the rabbit. +C then they saw (another sta) (another) : another guy with balloon/s. +C the rabbit want/ed some. +C the balloon/s are five cent/s. +C but the rabbit did not have any money. +C so the man would not let them have any balloon/s. +C (the rabb) the rabbit ran over to the doctor rabbit and ask/ed for some money. +C so she gave him money. +C and they bought two balloon/s. +C and they both like/ed their balloon/s. += [Eg:B3] diff --git a/data/ENNI_SALT/train/963.slt b/data/ENNI_SALT/train/963.slt new file mode 100644 index 0000000000000000000000000000000000000000..f62901fe575bad0cb8a00d7c4663283e4ecd17c4 --- /dev/null +++ b/data/ENNI_SALT/train/963.slt @@ -0,0 +1,95 @@ +$ CHI, EXA ++PARTICIPANTS: CHI target_child, EXA examiner ++DOB: 1/24/1992 ++DOE: 2/08/2001 ++CA: 9;0;15 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 963=CHI ++Tape Location: Disk L22 Track 91 += [Bg:A1] +C once there was : a little giraffe and an elephant who was bounce/ing a ball. +C the giraffe drop/ed : the ball into a pool. +C he jump/ed in and swam to get the ball. +C he gave the ball back to the little elephant. +C she said thank/s. +C the giraffe smile/ed. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C once there was a giraffe and an elephant who want/ed to go swim/ing. +C the elephant walk/ed over to the pool. +C but she slip/ed. +C she got a cut on her knee. +C the giraffe ran to get a lifeguard. +C the lifeguard came over to help the little elephant. +C she cry/ed while the lifeguard put a bandaid on her knee. +C the lifeguard and the little giraffe : help/ed her walk : out to a bench. +C the lifeguard said no more run/ing while you are in the pool. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C once there was : a giraffe and a[EW:an] elephant play/ing with a toy plane by a pool. +C the giraffe : pretend/ed the plane could really fly and try/ed to get it as high : up in the air as he could. +C the elephant want/ed to see : the airplane. +C so she grab/ed it from the giraffe : and start/ed to play with it. +C but she accidentally threw the plane in the water. +C the giraffe got mad at her. +C the lifeguard came : over to see what was the matter. +C the little elephant told the lifeguard what had happen/ed. +C so he try/ed to get the plane. +C but he could not reach. +C so the little giraffe start/ed to cry. +C he want/ed his plane back. +C so : the little elephant/z mom got a fishing net and : scoop/ed up the plane. +C she gave it back to the little giraffe. +C the little giraffe was so[!] happy he gave : the little elephant/z mom a big hug. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C once upon a time there was : a bunny : and a puppy. +C and one day they went to the beach and made a sandcastle. +C but then the bunny dump/ed a huge bucket of sand all over the sandcastle. +C the sandcastle was ruin/ed. +C the little puppy cry/ed because he like/ed the sandcastle a lot. +C but the bunny pretend/ed he did not do it. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C one day (the) : there was a puppy : and : a bunny. +C and they decide/ed to go for : a walk. +C they walk/ed through a park and : sat down and had a picnic. +C the bunny ate lot/s and lot/s and lot/s and lot/s. +C but the puppy only ate a little bit. +C the bunny got sick because he ate way too much. +C and the puppy look/ed at him in a weird way. +C then the puppy went over to : a lady who was walk/ing down the path. +C he beg/ed her to come over to help his friend. +C she : help/ed him. +C and he got better. +C then they went home. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C once upon a time there was a puppy and : a bunny who had a wagon with a balloon tie/ed on it. +C the bunny want/ed the balloon. +C he try/ed to untie the balloon off the wagon. +C the puppy smile/ed. +C but the bunny let go of the balloon. +C it float/ed way way up. +C the puppy got mad at the bunny. +C so the : bunny ran over to buy a balloon. +C he : bought a red one. +C the balloon was five cent/s. +C the bunny did not have any money. +C the : puppy came over to see what was happen/ing. +C the bunny look/ed at the salesman with his hand in his pocket/s. +C so he ran over to a lady. +C he said that there was : a man with a balloon. +C and his puppy friend want/ed : a balloon for his wagon. +C the : lady : paid the man. +C and the puppy and the bunny both got a balloon. +C they play/ed with the balloon/s. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/964.slt b/data/ENNI_SALT/train/964.slt new file mode 100644 index 0000000000000000000000000000000000000000..385e418a5fdcd7e6e007c81fa9b7896ab17cb89d --- /dev/null +++ b/data/ENNI_SALT/train/964.slt @@ -0,0 +1,101 @@ +$ CHI, EXA ++PARTICIPANTS: CHI target_child, EXA examiner ++DOB: 10/01/1991 ++DOE: 3/13/2001 ++CA: 9;5;12 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 964=CHI ++Tape Location: Disk L26 Track 56 += [Bg:A1] +C one day (there was a pe sh) a girl was bounce/ing a ball by the pool. +C and she was have/ing lot/s of fun with it. +C her friend came by and : look/ed like he like/ed it too. +C then it land/ed in the pool right beside them. +C the (um) boy that (met her) met the girl with the ball : went into pool and swam and got the ball : gave it back to the girl. +C and the girl was very happy that : he did. +C and then : (they :) she was very thankful and : said : would you like to : play with the ball too ? += [Eg:A1] += [Bg:A2] +C there was once (two boys) one girl and one : boy that were in swim suit/s. +C and they were go/ing : swim/ing. +C then the girl thought it would be a good idea to go off the diving board. +C and she start/ed run/ing to it. +C she slip/ed : when she was run/ing. +C she hurt her knee. +C the other boy had to go get : the lifeguard to help her. +C he put a bandage on it. +C and it help/ed. +C then the : lifeguard told her do not run in the swimming pool. +C it is slippery. +C and you can fall. +C : and show/ed her the no run/ing sign. += [Eg:A2] += [Bg:A3] +C one day there was a boy and girl. +C and they were both by the pool in swim suit/s. +C (w) one of them had an airplane that he was play/ing with. +C he was have/ing lot/s of fun with it. +C and the girl thought it look/ed fun too. +C she grab/ed it away from him and start/ed play/ing with it. +C it land/ed in the pool by accident. +C the boy was really mad at the girl. +C (then the life) then they call/ed the lifeguard over. +C they told him what happen/ed. +C and (he) he thought he might be able to get it out. +C he reach/ed. +C but he could not get it. +C the lifeguard thought it was impossible to get. +C then a lady with a net came by. +C (she) they told her what happen/ed. +C and she fish/ed it out of the pool with her net (: gave it) and gave it back to the boy. +C the boy love/ed his plane so much. +C and he thank/ed the woman. += [Eg:A3] += [Bg:B1] +C there was[EW:were] two boy/s one day. +C (they) one of them thought to build a sandcastle in the sandbox. +C so he did. +C the other one fill/ed a pail with the sand just as : the other boy was finish/ed. +C but then he pour/ed it (o) all over the boy/z sandcastle. +C (the) he was not : too happy about it. +C but : he could (um) : understand it I guess. +C but the other boy start/ed to cry (because). +C and then the other boy knew that he had done something wrong after that. += [Eg:B1] += [Bg:B2] +C one day two boy/s were go/ing on a picnic. +C they both thought it was go/ing to be the best idea of the day. +C one pack/ed : so big of a lunch. +C he thought he was really hungry. +C the other one only pack/ed a little lunch. +C but the one that pack/ed the big lunch : had (um) : a very big stomachache after he ate all he had. +C then the one with the littler lunch : thought that he was (si) really sick. +C and he was. +C so she (call/ed) went for help (to um) on the side of the road where a woman was walk/ing. +C and she took her because she was a doctor. +C and : (he went) (she went) the doctor went to : help the boy that ate too much. +C and she told him do not eat too much any more : and took him away so (he) she could fix him up a little better. += [Eg:B2] += [Bg:B3] +C one day a boy went with a wagon with a balloon tie/ed to the : wheel of it. +C and he met his best friend on the path. +C and : his friend thought it was a really neat balloon : and reach/ed for it. +C he trie/ed untie/ing it. +C and the boy was surprise/ed that he did. +C then the boy that try/ed to untie it let go of the other boy/z balloon. +C and it flew up into the air. +C the boy that the balloon was : was very angry at his friend [EU]. += %com: 'that the balloon was' sounds like an attempt at a relative clause: 'whose balloon it was' +C then : the boy that : let it up in the air saw : a balloon man hold/ing : lot/s of : more balloon/s. +C he ask/ed for one from the man. +C he check/ed in his pocket because they were five cent/s. +C and he did not have any money. +C so they both look/ed very sad because : they both knew that : they had no five cent/s and that the balloon was gone. +C then they ask/ed : (um) a doctor on the side of the road. +C (sh um) : she look/ed surprise/ed when the boy ask/ed her. +C but the lady gave (h) him five cent/s (and the boys got) ten cent/s. +C and both boy/s got balloon/s. +C and they were (very) very thankful to the woman on the side of the road. += [Eg:B3] diff --git a/data/ENNI_SALT/train/968.slt b/data/ENNI_SALT/train/968.slt new file mode 100644 index 0000000000000000000000000000000000000000..b386cfb4fbc27873efafd6f9d358bcb3cdb23cb8 --- /dev/null +++ b/data/ENNI_SALT/train/968.slt @@ -0,0 +1,79 @@ +$ CHI, EXA ++PARTICIPANTS: CHI child, EXA examiner ++DOB: 7/21/1991 ++DOE: 4/03/2001 ++CA: 9;8;13 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 968=CHI ++Tape Location: Disk L26 Track 74 += [Bg:A1] +C (um) once upon a time there were two animal/s (play/ing) bounce/ing a ball. +C then the ball fell in the water. +C then (um) one of the animal/s went to go get the ball. +C they got it back for : them. +C and then she was thrill/ed. += [Eg:A1] += [Bg:A2] +C (um) one time two animal/s were play/ing. +C and then one of them were[EW:was] run/ing. +C then : she was run/ing some more. +C and she almost fell over. +C then she fell over and scrape/ed her knee. +C then the lifeguard came to come and help. +C they put a bandage over the : scrape. +C she was all better. +C the lifeguard : said no run/ing. += [Eg:A2] += [Bg:A3] +C (um) one time (a girl) a[EW:an]: elephant girl want/ed to play : with an airplane. +C then there was another animal that (um) was play/ing with it. +C and the other (um) one like/ed it. +C then (um) the girl grab/ed it. +C and now she was play/ing it. +C then she drop/ed it in the water. +C then the guy got mad. +C then the lifeguard came. +C (um) the girl told the lifeguard what happen/ed. +C the lifeguard could not reach. +C the lifeguard did not know what to do. +C then (um) someone got a scoop : and got it out. +C and then (um) she gave it back to the boy. +C the boy was happy. += [Eg:A3] += [Bg:B1] +C one time a little girl was make/ing a sandcastle. +C then (um ) a[EW:an] other person came to come and help. +C (she) he dump/ed (a) a bucket of sand on the sandcastle. +C and the sandcastle broke. +C she try/ed to fix it. += [Eg:B1] += [Bg:B2] +C one time two : people were go/ing to [~_gonna] have a picnic. +C the rabbit want/ed to eat lot/s. +C and he did[!] eat lot/s. +C he was stuff/ed. +C then he : went to sleep. +C and (um) : I think the other person thought he was dead. +C so he went to go get a : grownup. +C (she) (he) she pull/ed her towards the : rabbit : and made her wake up. +C then they were happy again. += [Eg:B2] += [Bg:B3] +C (uh w) one day a boy had a : balloon. +C then another person came. +C and he wan/ted to : see the balloon. +C (he) (he was tie) (tying) he was untie/ing the balloon. +C and then it went up fly/ing high. +C the girl got angry. +C and then : the other (b) guy (got ano) (got a) found a balloon : person. +C and he want/ed one balloon. +C and he had (to pay) to pay five cent/s. +C but he did not have the money. +C then they : beg/ed the guy. +C (then : he) then : [~_clears_throat] the rabbit went to go get their mom. +C and he ask/ed for five cent/s. +C and he got five cent/s. +C and he got a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/969.slt b/data/ENNI_SALT/train/969.slt new file mode 100644 index 0000000000000000000000000000000000000000..d2ff3e50a36e5cc14e49fe165173dc8965a2c426 --- /dev/null +++ b/data/ENNI_SALT/train/969.slt @@ -0,0 +1,92 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 12/06/1991 ++DOE: 4/03/2001 ++CA: 9;3;28 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 969=CHI ++Tape Location: Disk L26 Track 84 += [Bg:A1] +C once there was an elephant and a giraffe : at a swimming pool. +C then the giraffe (saw) saw a ball in the water and want/ed to go in. +C then the giraffe ran in and try/ed to swim. +C the elephant was worry/ed. +C then : the elephant gave the giraffe another balloon so he would get out of the water. +C then : the elephant when he was just about to (take it) give it to the giraffe he took it back. +=C the end [+_bch]. += [Eg:A1] += [Bg:A2] +C once there was : a giraffe and a[EW:an] : elephant. +C they walk/ed past a balloon. +C and then the elephant saw a diving board that look/ed like fun. +C then he start/ed run/ing to it. +C and the giraffe follow/ed behind. +C then (the) the elephant trip/ed and fell and hurt herself. +C then the lifeguard came : and stitch/ed up (the ban) the wound. +C then the lifeguard help/ed her get back up. +C and then she was sit/ing down (at this) by the sign that said no run/ing. +=C the end [+_bch]. += [Eg:A2] += [Bg:A3] +C once there was an elephant and a giraffe. +C the giraffe was play/ing with : a toy airplane. +C then the elephant snatch/ed it out of the giraffe/z hand/s. +C then the giraffe drop/ed it in the pool. +C and the (ele) giraffe was mad : very mad. +C and then the lifeguard saw : the giraffe and the elephant and the toy airplane in the water. +C the elephant try/ed to explain to the lifeguard. +C but he could not. +C (he) he (was) was not understand/ing what she was say/ing. +C then (she finally) he finally understood what she was say/ing. +C and he try/ed to get it out of the water. +C then he could not make it. +C and the giraffe was cry/ing. +C then an elephant : came with : a little catcher thing to get the toy airplane out of the water. +C then (she) she was try/ing to get it out. +C then she got it out. +C and the giraffe was happy. +C and then the giraffe : held it in her hand/s close. +=C the end [+_bch]. += [Eg:A3] += [Bg:B1] +C once there was : a bunny and a : dog. +C one day when the dog was make/ing a sandcastle : the bunny was play/ing beside him. +C she was scoop/ing sand out of a bucket. +C then : when she thought she was done (she) she took the sand that was left in the bucket and : pour/ed it on the dog/z : sandcastle. +C that made the dog : mad and the bunny : funny. +C then the dog start/ed cry/ing. +=C the end [+_bch]. += [Eg:B1] += [Bg:B2] +C once there was : just (a) : a bunny and a dog. +C (they were) they were go/ing out on a picnic. +C when the dog had barely taken out anything just his sandwich : he saw the bunny pig/ing out on treat/s. +C after (the) the dog finish/ed his sandwich and drink/3s some juice : the bunny had already finish/ed all his lunch with an upset stomach. +C when the dog was still eat/ing : it look/ed like the bunny ate more. +C and (now he had) : now he had star/s go/ing around his head. +C then the dog went to the doctor bunny. +C and : he ask/ed her to come to (the) : the other bunny. +C then he made her come closer. +C then : (the bun) the doctor bunny gave : the bunny : medicine. +C then the bunny took him home. +=C the end [+_bch]. += [Eg:B2] += [Bg:B3] +C once there was : a dog pull/ing a wagon when a bunny came along. +C the bunny told him to look : away. +C then : the bunny took the balloon off the dog/z wagon. +C and : when he got it up he let go. +C and then it went float/ing away. +C then the dog was really mad at the bunny. +C then : a sale/s (ba) balloon bunny was sell/ing (boo) balloon/s over by where the dog and the bunny were. +C then : the bunny ask/ed the : sale/s person balloon bunny for a balloon. +C (but) but then he found out (that) that they were five cent/s. +C and he had no money. +C so then (the) the dog : and (the ba) the : bunny were mad. +C then : the bunny found his mom : and ask/ed for five cents for the balloon. +C he gave : him five cent/s. +C and they each got a balloon. +=C the end [+_bch]. += [Eg:B3] diff --git a/data/ENNI_SALT/train/970.slt b/data/ENNI_SALT/train/970.slt new file mode 100644 index 0000000000000000000000000000000000000000..ed75eb3c61376a6327bb34e77e4e6bfd9c1de862 --- /dev/null +++ b/data/ENNI_SALT/train/970.slt @@ -0,0 +1,91 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 9/06/1991 ++DOE: 4/03/2001 ++CA: 9;6;28 ++Gender: M ++Context: Nar ++Group of CHI: TD ++ID: 970=CHI ++Tape Location: Disk L26 Track 88 += [Bg:A1] +C (one) an elephant love/ed to play basketball. +C and she was near a pool. +C she accidentally hit it with her nose. +C and it went bounce/ing into the water. +C a giraffe came by (and swam into th) and swam into the water to get her ball. +C the giraffe (got) got the ball and gave it to the (el) elephant. +C the elephant said thank you. +C (and they) and the giraffe really like/ed the elephant. += [Eg:A1] += [Bg:A2] +C one day the giraffe and (the) the elephant (were watch/ing) (were um) (were look/ing) were laugh/ing at the pool because the pool was splash/ing all over the place. +C the elephant (tr) was go/ing to run and jump (on) into the water. +C but she slip/ed. +C and she fell on her knee. +C and she scrape/ed it. +C and she start/ed cry/ing. +C so the giraffe came over and : help/ed her (with her s scrape/ed) with her scrape/ed knee. +C the lifeguard put a bandaid on it. +C and the giraffe held : the elephant/z hand. +C (eleph) (elephant) the elephant was okay. +C (and and the giraffe gave her a) and the giraffe save/ed her a seat on a bench. +C (and the elephant) and the lifeguard got really mad at her because on a sign it said no run/ing. += [Eg:A2] += [Bg:A3] +C one day the giraffe got a new airplane. +C the giraffe start/ed break/ing and zoom/ed it all over the place and got the elephant really dizzy. +C (the elephant) the elephant got really jealous (and took hi) and took the giraffe/z airplane. +C (the a) the (air) airplane slip/ed out of the elephant/z hand and drop/ed into the pool. +C the giraffe got really mad at elephant and start/ed make/ing a mad grin at her. +C the lifeguard (got really) (got :) was really : not too happy with elephant and the giraffe. +C the elephant ask/ed (the) the lifeguard to swim and go get the airplane. +C but the airplane was really really wet. +C the lifeguard try/ed to reach for it. +C but he just could not reach. +C elephant (got really) got really sad. +C and giraffe start/ed cry/ing. +C (the) the elephant/z mom came over with a net : because she was just fish/ing in : a lake. +C she pick/ed up the airplane : by the net and (gave it to the elephant) gave it to the giraffe. +C the giraffe was really please/ed and happy : (for um) for that the elephant/z mom gave him the airplane. +C and they play/ed with it together. +C and they had fun. += [Eg:A3] += [Bg:B1] +C one day : (the) a bunny/z sister star/ted play/ing in his sandbox. +C bunny : (made) (was dig/ing in) was dig/ing in the sand and made a pail : of sand. +C he dump/ed it on his little sister/z castle. +C and his little sister got really mad. +C so she start/ed cry/ing. += [Eg:B1] += [Bg:B2] +C one day : (the bunny/z little sister and he) the bunny and I were go/ing on a picnic. +C (the) : (I) : (the bunny) (the bunny took a huge pic) the bunny took a huge snack : and was very full after that. +C he had a big bump on his belly (and was ver) and had a really (s) bad stomachache. +C he start/ed daze/ing off and went to sleep. +C then a doctor ran by. +C and his little sister : ask/ed the doctor if (sh) you could help my brother. +C and then the doctor said yeah. +C so the doctor came and sat beside the bunny and help/ed him. +C (the) (the) the bunny was all right. +C and the little sister was happy (that he did something right for) that she did something right for his brother. += [Eg:B2] += [Bg:B3] +C one day : the bunny/z little sister : brang|bring[EW:brought] a bucket with a balloon on the side. +C (bunny got) bunny thought it was a really nice balloon : and start/ed grab/ing it. +C he untie/ed it. +C and it almost flew away. +C but then after awhile : it flew (past their) (the) over their head/s. +C it was very gone. +C (it) (it was) (it was) it was gone out of sight. +C (and bu) and bunny/z little sister got really mad at the bunny. +C the bunny : ran over to (a balloon) a balloon man (and bought) (and bought the) (and bought s) and bought a balloon (um) that he got for his allowance from his mom and dad. +C the bunny pick/ed a yellow one because there was a yellow one (uh) beside : bunny/z little sister/z : (um) bucket. +C (and) : (and the balloon) (and the balloon) and the balloon was five cent/s. +C but he only had three. +C so then he could not get any balloon. +C so he ran off : with no balloon until (he saw a doc) (um the) : (his) he saw his mom and ask/ed them if I could get a balloon for my little sister. +C and she said : I might be able to get one. +C (so she gave) so she gave the balloon man (uh) five cent/s. +C and they both share/ed a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/971.slt b/data/ENNI_SALT/train/971.slt new file mode 100644 index 0000000000000000000000000000000000000000..c0df6534911d2c98cd081047e15f5719d2573404 --- /dev/null +++ b/data/ENNI_SALT/train/971.slt @@ -0,0 +1,74 @@ +$ CHI, EXA ++PARTICIPANTS: CHI Target_Child, EXA examiner ++DOB: 1/14/1992 ++DOE: 4/17/2001 ++CA: 9;3;3 ++Gender: F ++Context: Nar ++Group of CHI: TD ++ID: 971=CHI ++Tape Location: Disk L27, Track 42 += [Bg:A1] +C once there was a dog and a[EW:an] elephant who were friend/s. +C and they want/ed to go swim/ing. +C they found a ball. +C and giraffe want/ed to get it. +C so he jump/ed into the pool. +C (eleph) elephant grab/ed the ball and : said yay[~!_laughing] : (um) : and then help/ed giraffe out. +C and giraffe was very proud of himself. += [Eg:A1] += [Bg:A2] +C giraffe and elephant want/ed to go for a swim. +C elephant want/ed to jump off the diving board. +C so she ran really fast : and (slip/ed on) : her knee got scrape/ed. +C the lifeguard came run/ing : and help/ed : and put a bandage on : elephant/z[~!_laughing] knee. +C elephant was feel/ing much better. +C and then she had a time out for no run/ing. += [Eg:A2] += [Bg:A3] +C giraffe and elephant were back[~!_laughing] at the swimming pool. +C and they were fly/ing an airplane. +C elephant grab/ed the airplane : and : accidentally drop/ed it in the pool. +C giraffe was very mad at elephant. +C and then the lifeguard came (and look/ed at) and look/ed at the airplane. +C elephant explain/ed what happen/ed. +C the lifeguard try/ed to grab it. +C but his hand was : too small. +C and he said I do not know what[~!_laughing] to do. +C (a la) and then a lady came with a net : and try/ed grab/ing the airplane. +C and she gave the airplane back to giraffe. +C giraffe was very please/ed and said thank you. += [Eg:A3] += [Bg:B1] +C once there was[EW:were] two friend/s. +C and they decide/ed to build a sandcastle together. +C a bunny was (small) smaller than that dog [~_I_think_he_(i)s_a__dog]. +C and he spill/ed the sand on top. +C and it was all crash/ed. +C bunny was very : (um s) scare/ed. +C (um) : dog : try/ed to build it back. += [Eg:B1] += [Bg:B2] +C rabbit and dog were go/ing on a picnic together. +C rabbit was very hungry. +C so they start/ed to eat. +C rabbit ate (all) practically all[~!_laughing] (hi) the food : and got sick. +C and dog ran up to (a lady) : [~_oh] that is a doctor : and said to come here. +C the doctor saw rabbit and was very scare/ed : and took rabbit : (to) to his mom. += [Eg:B2] += [Bg:B3] +C (ra) rabbit and : dog were : go/ing to [~_gonna] have a ride in the wagon. +C rabbit show/ed dog his nice balloon tie/ed[!] to the wagon. +C rabbit try/ed to get it off to let : dog hold it. +C but then it slip/ed out of rabbit/z hand/s. +C (um) : rabbit was very sad. +C and : dog was very mad. +C so they went to a (n) guy sell/ing balloon/s and ask/ed. +C can we have one of your balloon/s said rabbit. +C [~_sighs] the : guy who was sell/ing balloon/s say/3s you need five cent/s. +C rabbit did not have any. +C so then : rabbit went up to ask again but act as if he was different. +C and then rabbit ran to : a : doctor : and said : (um) : to come here. +C the : doctor paid the : balloon guy money for the balloon. +C and they each got their own balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/973.slt b/data/ENNI_SALT/train/973.slt new file mode 100644 index 0000000000000000000000000000000000000000..677f14482f48c978336fe6423adff4eb7ad27de7 --- /dev/null +++ b/data/ENNI_SALT/train/973.slt @@ -0,0 +1,80 @@ +$ CHI, EXA ++participants: CHI target_child, EXA examiner ++DOB: 9/04/1992 ++DOE: 4/18/2002 ++CA: 9;7;14 ++Gender: F ++Context: Nar ++Group of CHI: SLI ++transcriber: linda kaert ++id: 973=CHI ++tape location: disk L30 track 2-7 ++Comment: TC += [Bg:A1] +C (um) : the elephant : is bounce/ing : (bl) ball/s. +C the elephant : say|say[EW:says] : the ball (in) is in the : (um) swimming pool. +C the : moose : was swim/ing in the water so he can get the (bee) ball. +C the elephant : say|say[EW:says] thank you moose. +C the elephant : look/ed at him. += [Eg:A1] += [Bg:A2] +C (um) : the elephant : *is watch/ing the wave/s [EU]. +C the elephant : run/ing : on the thing and : almost fall in [EU]. +C the elephant : soup : her feet/s [EU]. +C the elephant : close|close[EW:closes] her eye/s. +C the elephant : fall|fall[EW:fell] down and got a scrape. +C the security[?] guard : help|help[EW:helped] her and put a bandaid on. +C and then the elephant (slll) : sit|sit[EW:sat] on the bench. +C the elephant was okay. += [Eg:A2] += [Bg:A3] +C the elephant : was fine. +C and : she took the bandaid off. +C (the) the moose was (finly) find/ing the plane. +C the elephant : took the plane away from the moose. +C the (moo) the plane went in the water. +C moose was mad at the elephant. +C (the security guard) the lifeguard came to check : on the elephant and the moose. +C (the security guard) the lifeguard was mad. +C he try/ed to catch (the plee) the plane. +C but he could not. +C the plane was : go/ing deeper and deeper. +C the plane was : go/ing deeper and deeper. +C (the plane) (the) then (the eleph) the lifeguard came and pick|pick[EW:picked] the plane up. +C (then the moose : put the pla) then the elephant gave : the moose his plane back. +C the moose say/3s thank you. += [Eg:A3] += [Bg:B1] +C (the elephant) the kangaroo was : build/ing a sandcastle. +C the bunny and the : kangaroo was[EW:were] make/ing a sandcastle. +C the bunny put some (s) more sand on the castle. +C the bunny : look/ed : at the sandcastle. +C (it) it was broken. +C (then) : then : the : kangaroo was sad. += [Eg:B1] += [Bg:B2] +C there is (two bunny/s : go/ing to) : one kangaroo and one bunny go/ing for : a picnic. +C the bunny and the kangaroo went : to eat. +C the bunny is full : now. +C the bunny[EW:bunny/z] : tummy was big. +C the (um) doctor bunny came. +C the doctor bunny : moose : came to see the rabbit. +C the rabbit look/ed at the : moose rabbit. +C the doctor bringed|bring[EW:brought] the rabbit : to (the) : the : hospital. += [Eg:B2] += [Bg:B3] +C the kangaroo had a balloon on the : wagon. +C and the bunny was run/ing. +C (the kang) the bunny try/ed to reach the balloon. +C (the) the bunny go/ing get the balloon [EU]. +C the balloon go away [EU]. +C the balloon fly|fly[EW:flies] : in the sky. +C then : (the) the balloon guy came back : and give/3s them a balloon. +C the bunny/s : say one please. +C the : balloon say five cent/s [EU]. +C (the bunny s) (the) the [~_whispers:_what's_his_name] guard said : you can not have a : balloon. +C (so) : so the : kangaroo : goed|go[EW:went] : with the balloon. +C (the rabbit) the doctor said : could I have a balloon? +C (the doctor : gived|give[EW:gave] some) his mom gived|give[EW:gave] some money. +C then : he got a balloon. += [Eg:B3] diff --git a/data/ENNI_SALT/train/974.slt b/data/ENNI_SALT/train/974.slt new file mode 100644 index 0000000000000000000000000000000000000000..868afbd3b8f767b77c81b6b25124e4d6b7fd60b1 --- /dev/null +++ b/data/ENNI_SALT/train/974.slt @@ -0,0 +1,111 @@ +$ CHI, EXA ++participants: CHI target_child, EXA examiner ++DOB: 9/10/1992 ++DOE: 4/25/2002 ++CA: 9;7;15 ++Gender: M ++Context: Nar ++Group of CHI: TD ++transcriber: linda kaert ++id: 974=CHI ++tape Location: disk L30 track 9-14 ++Comment: TC += [Bg:A1] +C (um) there is a[EW:an][-:] elephant in a pool. +C and she is bounce/ing a ball. +C and it go/3s in the water. +C and (the security guard) [~_I_mean] the guy that watch/3s if somebody drown/3s come/3s and : (um) try/3s to get the ball. +C he go/3s swim/ing. +C and she is like almost cry/ing. +C and then he get/3s it. +C and then she is really happy. +C she walk/3s away. +=C and that is the end [+_bch]. += [Eg:A1] += [Bg:A2] ++Comment: CHI pronounces "security" as "sescurity" each time +C the two[-:] people again. +C and (um) they are look/ing at the water. +C (um) she is run/ing : the elephant. +C and she is still run/ing. +C (and the other) and the (s) security guy is run/ing after her. +C she hurt/3s her knee. +C (um) another security guard come/3s. +C she is cry/ing. +C and (they are try/ing to fig) and he put/3s a bandaid on her knee. +C (and sh) (then sh) and she is walk/ing now. +C and the security guard is mad now. +=C and that is the end [+_bch]. += [Eg:A2] += [Bg:A3] ++Comment: CHI pronounces "security" as "sescurity" each time +C (um the two) the security guard and the elephant are there. +C and (um) she (s) look/3s surprise/ed. +C (he got a pl) the security guy got a plane. +C and she is almost fall/ing. +C and she grab/3s it from him. +C she drop/3s it in the water. +C and now the security guard is really mad. +C and it is sink/ing. +C (um) the other security guard come/3s. +C they all look at it. +C and she explain/3s to the other security guard (and um) what happen/ed. +C and (he tri) and the security guard try/3s to get it. +C but he can not reach. +C and now the other security guard is cry/ing. +C and they can not get it. +C and then another lady come/3s and has a net. +C and she try/s to catch it. +C and she got it. +C and the (se) other security guard is happy now. +=C and that is the end [+_bch]. += [Eg:A3] += [Bg:B1] +C (um) a rabbit make/ing a sandcastle [EU]. +C and then there is (a) a girl and a boy like a girl rabbit and a boy rabbit. +C and the boy rabbit : has a weird look/ing face. +C and they start make/ing the sandcastle. +C (um) (the) the boy rabbit pour/3s (um) more sand on the castle. +C and it break/3s. +C and the girl rabbit cry/3s. +=C and that is the end [+_bch]. += [Eg:B1] += [Bg:B2] +C the two rabbit/s again. +C but (um) the girl rabbit is come/ing walk/ing. +C and they (say hello) : wave hello. +C (um) then they start eat/ing because they are on a picnic. +C (um) the boy rabbit is really full. +C and[-:] all the food is gone. +C and the girl rabbit is still eat/ing. +C and the boy rabbit is (um : uh) dizzy. +C and then they see a doctor. +C (and he go) and the : girl rabbit go/3s run/ing to her. +C pull/3s on her arm. +C the doctor check/3s him. +C and then he is better. +=C and that is the end [+_bch]. += [Eg:B2] += [Bg:B3] +C (um) the two rabbit/s again except the girl one has a balloon on her wagon. +C and she is pull/ing it. +C and the boy rabbit run/3s to her. +C and then they both go on a walk (with). +C and he say/3s : (um) I like your balloon. +C (and she pull) and he tie/3s it off. +C and (she has a) she is scare/ed that it will go up up and away. +C and it do/3s. +C and then she is really mad at him. +C and they are sell/ing more balloon/s. +C (and) and they are go/ing to walk to him. +C but she is still mad. +C (she buy/3s one) [~_I_mean] he buy/3s one. +C they cost five cent/s. +C he do/3s not have five cent/s. +C he can not buy one. +C so (he) he see/3s the doctor. +C (and he s) and he point/3s at (the) the guy with the balloon/s. +C and she buy/3s them one. +C and they both happy now. +=C and that is the end [+_bch]. += [Eg:B3] diff --git a/data/enni_salt_for_morpheme/test.csv b/data/enni_salt_for_morpheme/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..f6cd2bb88d987637e112c5496da349554f28f2d3 --- /dev/null +++ b/data/enni_salt_for_morpheme/test.csv @@ -0,0 +1,6236 @@ +file_name,slt_transcription,cleaned_transcription,morpheme_code +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Once a horse met *an elephant [EU].,Once a horse met elephant,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And then they saw a ball in a pool.,And then they saw a ball in a pool,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And then the horse try/ed to swim and get the ball.,And then the horse tried to swim and get the ball,0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And (the) then the elephant gave him the ball.,And then the elephant gave him the ball,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And then the horse was wet.,And then the horse was wet,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And the elephant was hold/ing the ball.,And the elephant was holding the ball,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,The end [+_bch].,The end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,They might be the same [+_bch].,They might be the same,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Oh well you start it off any way you want.,Oh well you start it off any way you want,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Okay [+_bch].,Okay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Once (a horse : and) (this) this was a horse (and saw) (saw that) that I just talk/ed about.,Once this was a horse that I just talked about,0 0 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,but the ball was not in[!] there.,but the ball was not in there,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Okay.,Okay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And then the elephant want/ed to go in.,And then the elephant wanted to go in,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,(I mean not) : and then (he :) his feet went like this [~__points_to_legs_lifting_up].,and then his feet went like this,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Then he hurt : his knee cap.,Then he hurt his knee cap,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,and then the horse help/ed him.,and then the horse helped him,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Then there was another : elephant.,Then there was another elephant,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And he was a lifeguard.,And he was a lifeguard,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And then I do not know what they did.,And then I do not know what they did,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,But they are do/ing something :.,But they are doing something,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,What do you think they are do/ing?,What do you think they are doing,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Well how you look at the picture cause I do not know [+_bch].,Well how you look at the picture cause I do not know,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,oh it does not matter.,oh it does not matter,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,What do you think is happen/ing ?,What do you think is happening,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,I : think they are battle/ing [~_?].,I think they are battling,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,okay.,okay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And then they sat on the bench.,And then they sat on the bench,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And then : the lifeguard was mad.,And then the lifeguard was mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Okay.,Okay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And : [+/]^,And,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Are you point/ing at something ?,Are you pointing at something,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,I am I am just I am just xxx [+_bch].,I am I am just I am just,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,"Okay, are you all done ?",Okay are you all done,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Yes [+_bch].,Yes,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Okay.,Okay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,The end [+_bch].,The end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Once : that horse : and elephant was[EW:were] happy near the swimming pool.,Once that horse and elephant was happy near the swimming pool,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,(Oh) and then the horse had an airplane to play with : (a) which : had (ss : ah) something come/ing down : the bottom.,and then the horse had an airplane to play with which had something coming down the bottom,0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Okay.,Okay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And the elephant went like this [~_gestures_with_arm].,And the elephant went like this,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Then he[!] try/ed it.,Then he tried it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And the horse went like this [~_gestures_with_arm_again].,And the horse went like this,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Then they put it : in the water.,Then they put it in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And then the elephant went like this [~_gestures_with_arm_again].,And then the elephant went like this,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And then the horse was mad.,And then the horse was mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And then the lifeguard went like this [~_pointing_angry_finger].,And then the lifeguard went like this,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Then the elephant talk/ed to him a little bit.,Then the elephant talked to him a little bit,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And then : the lifeguard try/ed to : get it.,And then the lifeguard tried to get it,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,But he could not.,But he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And the horse cry/ed.,And the horse cried,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,(an :) and then a[EW:an] elephant with a net came.,and then a elephant with a net came,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And she caught[!] it.,And she caught it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And then she gave it back to the horse.,And then she gave it back to the horse,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And : then the horse went like this [~_displays_action_with_arms_and__shoulders].,And then the horse went like this,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,What do/3s that mean?,What does that mean,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,They love it [+_bch].,They love it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,"oh, good.",oh good,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,and the end [+_bch].,and the end,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Once : two rabbit/s : made a sandcastle.,Once two rabbits made a sandcastle,0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And it was a great one.,And it was a great one,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And then : one : did this with a xx .,And then one did this with a,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,(and one took some s) and the other one took some sand from : (a) a : pail : because they were down at the beach.,and the other one took some sand from a pail because they were down at the beach,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,and then : he dump/ed it on the castle.,and then he dumped it on the castle,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,and then : (it tur) part of it : stay/ed the way it was.,and then part of it stayed the way it was,0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,but the rest turn/ed : into : just a lump.,but the rest turned into just a lump,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,and then they try/ed to do it.,and then they tried to do it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,but it was not very good that : time.,but it was not very good that time,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,The end [+_bch].,The end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,We saw two : rabbit/s had basket/s and were in : part of the forest.,We saw two rabbits had baskets and were in part of the forest,0 0 0 1 0 1 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Or we can call it the wood/s.,Or we can call it the woods,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Yeah we can.,Yeah we can,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Then they had a picnic.,Then they had a picnic,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,then one of them belly got this big [~_pantomimes_his_stomach__sticking_out] [EU].,then one of them belly got this big,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,How big?,How big,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,About this big [~_repeats_gesture] [+_bch].,About this big,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Wow.,Wow,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And then in the picture there is a twirl around on his head.,And then in the picture there is a twirl around on his head,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,and then : a bigger : bunny came up.,and then a bigger bunny came up,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,and they run to that bunny.,and they run to that bunny,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,and then he falled|fall[EW:fell] asleep [~_laughs].,and then he falled asleep,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And then : he did this [~_gestures_with_arms].,And then he did this,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Why did he do that?,Why did he do that,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,I do not know [+_bch].,I do not know,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Okay.,Okay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And then : he was happy.,And then he was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,He was happy?,He was happy,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Yes [+_bch].,Yes,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Okay.,Okay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,The end [+_bch].,The end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Once : that little bunny was pull/ing a wagon.,Once that little bunny was pulling a wagon,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,and that other : fat bunny came up.,and that other fat bunny came up,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,and then he : like/ed the balloon [EU].,and then he liked the balloon,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,and then he try/ed to get off.,and then he tried to get off,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,and then : he got it off.,and then he got it off,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,but they lost the grip.,but they lost the grip,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And it was helium.,And it was helium,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And then another man came with : a bunch of balloon/s.,And then another man came with a bunch of balloons,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,(but x) But then[!] : (they) he went : to them.,But then he went to them,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,and : he : said that (it) the balloon/s were five : cent/s.,and he said that the balloons were five cents,0 0 0 0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,and he could not find[!] five cent/s.,and he could not find five cents,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,and then they were sad[!].,and then they were sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,then they : went back to (that) out by (the) we found that other story [EU].,then they went back to out by we found that other story,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,and he said : I want one of those balloon/s.,and he said I want one of those balloons,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,he gave him five : cent/s.,he gave him five cents,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And then they gave : him a balloon.,And then they gave him a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And they gave : him to them [EU].,And they gave him to them,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,To who?,To who,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,To them [+_bch].,To them,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Oh.,Oh,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And then : they both[!] have one[!].,And then they both have one,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,The end [+_bch].,The end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,(The el) (the um) the little elephant is play/ing with her bouncy ball.,the little elephant is playing with her bouncy ball,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,(and the gi) and the giraffe come/3s to meet her.,and the giraffe comes to meet her,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,suddenly the ball fall/3s : in : a (f) pool beside them.,suddenly the ball falls in a pool beside them,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,(the) the giraffe go/3s and swim/3s for it.,the giraffe goes and swims for it,0 0 3 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,and the giraffe is so kind and bring/3s back the ball.,and the giraffe is so kind and brings back the ball,0 0 0 0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,the elephant is so[!] happy.,the elephant is so happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,The elephant and the giraffe meet at the pool and look at the[-:] diving board.,The elephant and the giraffe meet at the pool and look at the diving board,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,(the) the elephant go/3s to run for it.,the elephant goes to run for it,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,but there is a sign above her head that says no run/ing.,but there is a sign above her head that says no running,0 0 0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,she slip/3s and fall/3s.,she slips and falls,0 3 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,(she) she scrape/3s her knee (and) and can not swim.,she scrapes her knee and can not swim,0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,a lifeguard come/3s to see what happen/ed to her knee.,a lifeguard comes to see what happened to her knee,0 0 3 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,(the) and he put a bandaid on it.,and he put a bandaid on it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,he set/3s her down on a bench so (it will) (it will) it will heal.,he sets her down on a bench so it will heal,0 3 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,and the lifeguard point/3s to the sign that says no run/ing.,and the lifeguard points to the sign that says no running,0 0 0 3 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,(The ele) The elephant and giraffe are swim/ing together.,The elephant and giraffe are swimming together,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,the giraffe find/3s a plane and start/3s to show it to the : elephant.,the giraffe finds a plane and starts to show it to the elephant,0 0 3 0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,(the giraffe) (um) the elephant (grab/3s from) it from the giraffe and : swim/3s away.,the elephant it from the giraffe and swims away,0 0 0 0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,suddenly she drop/ed it.,suddenly she dropped it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,: the giraffe get/3s very mad : and can not hold in his anger.,the giraffe gets very mad and can not hold in his anger,0 0 3 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,the (lifeg) lifeguard come/3s and see/3s what has happen/ed.,the lifeguard comes and sees what has happened,0 0 3 0 3 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,the : elephant start/3s to complain (that) that it was not her fault.,the elephant starts to complain that it was not her fault,0 0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,and the : lifeguard try/3s to get the plane.,and the lifeguard tries to get the plane,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,but no one can reach it.,but no one can reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,so a lady with : a net come/3s and : pull/3s it out.,so a lady with a net comes and pulls it out,0 0 0 0 0 0 3 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,she is very kind think/3s everyone.,she is very kind thinks everyone,0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,and the giraffe get/3s his plane back.,and the giraffe gets his plane back,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,everyone is very happy.,everyone is very happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,(um) a bunny : and a dog (were mak) were make/ing sandcastle/s in the (sand uh) : sand bin.,a bunny and a dog were making sandcastles in the sand bin,0 0 0 0 0 0 6 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,(um : the bu) the bunny (um : he) he got a bucket and start/ed to build a better castle.,the bunny he got a bucket and started to build a better castle,0 0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,suddenly he dump/ed all the sand (on the uh) (the bi) the other castle.,suddenly he dumped all the sand the other castle,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,and everyone was disappoint/ed.,and everyone was disappointed,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,(the o) the dog (was) was so sad she start/ed to cry.,the dog was so sad she started to cry,0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,the dog (mee) meet/3s the bunny (um) for a picnic.,the dog meets the bunny for a picnic,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,(they) they have a picnic together except the bunny is kind of piggish.,they have a picnic together except the bunny is kind of piggish,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,he eat/3s all the food : really fast while the other one eat/3s very slow and : politely.,he eats all the food really fast while the other one eats very slow and politely,0 3 0 0 0 0 0 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,the rabbit feel/3s very sick after his big meal.,the rabbit feels very sick after his big meal,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,the doctor has to come : and : help|help[EW:helps] (the) the (s) sick rabbit.,the doctor has to come and help the sick rabbit,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,the dog pull/3s (her) her over (to the um) to see if he is conscious.,the dog pulls her over to see if he is conscious,0 0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,the doctor say/3s (she ha) he has a fever.,the doctor says he has a fever,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,and he ate too much.,and he ate too much,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,soon he feel/3s better again.,soon he feels better again,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,(the) (the) the dog (is) has a balloon on her wagon.,the dog has a balloon on her wagon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,and the bunny come/3s to meet her.,and the bunny comes to meet her,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,the bunny notice/3s the nice (um) shiny balloon.,the bunny notices the nice shiny balloon,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,(he) the bunny try/3s to untie the balloon.,the bunny tries to untie the balloon,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,but (the dog : um) the dog get/3s nervous.,but the dog gets nervous,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,and it float/3s away.,and it floats away,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,the dog get/3s very very mad at the bunny.,the dog gets very very mad at the bunny,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,but : when they turn around they see another man with : twenty more balloon/s.,but when they turn around they see another man with twenty more balloons,0 0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,the rabbit buy/3s one : (to make) [~_yeah].,the rabbit buys one,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,(um) : but he do/3s not have enough money for one balloon.,but he does not have enough money for one balloon,0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,the man tell/3s them (they could ha) they could get a free one.,the man tells them they could get a free one,0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,and : the nurse say/3s no actually I will[!] buy you one.,and the nurse says no actually I will buy you one,0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,and she go/3s and buy/3s one.,and she goes and buys one,0 0 3 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,this make/3s both the bunny and the dog very happy.,this makes both the bunny and the dog very happy,0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,now they both have one balloon.,now they both have one balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,They *are go/ing at the swimming pool [EU].,They going at the swimming pool,0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,they *are put/ing (it) the ball in the swimming pool [EU].,they putting the ball in the swimming pool,0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,and he is try/ing to get it.,and he is trying to get it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,he got it.,he got it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,she is happy.,she is happy,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,(They were dr) they (dry themselves) dry themselves.,they dry themselves,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,and the girl is go/ing into the swimming pool.,and the girl is going into the swimming pool,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,she is dance/ing.,she is dancing,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,she is : cry/ing.,she is crying,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,: she gots|get[EW:got] a help from her friend [EU].,she gots a help from her friend,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,put a bandage on it [EU].,put a bandage on it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,now (sh) : she can go on the[-:] swimming pool [EU].,now she can go on the swimming pool,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,she is sit/ing.,she is sitting,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,She is talk/ing.,She is talking,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,the boy is play/ing with his airplane.,the boy is playing with his airplane,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,she xx grab|grab[EW:grabs] it away from him.,she grab it away from him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,the : airplane is in the[-:] swimming pool.,the airplane is in the swimming pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,and the boy got angry.,and the boy got angry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,and (the k) the man come/3s by them.,and the man comes by them,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,what did you say ?,what did you say,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,the man come/3s side them [+_bch].,the man comes side them,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,and the girl is talk/ing.,and the girl is talking,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,the man was try/ing to : get it.,the man was trying to get it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,the man can not get it.,the man can not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,*the woman : try/ed to get it [EU].,woman tried to get it,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,she gots|get[EW:got] it.,she gots it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,the boy is happy now.,the boy is happy now,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,the boy and the girl is[EW:are] happy now.,the boy and the girl is happy now,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,The boy is talk/ing to the[-:] : dog.,The boy is talking to the dog,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,and they are make/ing a castle.,and they are making a castle,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,and the boy *is put/ing the sandcastle [EU].,and the boy putting the sandcastle,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,and the girl is so happy[~!_laughs].,and the girl is so happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,not the boy.,not the boy,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,he is sorry for it.,he is sorry for it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,he is what?,he is what,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,sorry [+_bch].,sorry,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,and the end [+_bch].,and the end,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,They are look/ing for easter egg/s.,They are looking for easter eggs,0 0 6 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,and they are eat/ing.,and they are eating,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,he eat|eat[EW:ate] the whole thing.,he eat the whole thing,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,he got hiccup/s.,he got hiccups,0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,there is his father.,there is his father,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,and[-:] he have|have[Ew:has] to help him.,and he have to help him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,and he gots|get[EW:got] a headache.,and he gots a headache,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,he is go/ing.,he is going,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,and the end [+_bch].,and the end,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,The boy is run/ing.,The boy is running,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,and the boy is talk/ing.,and the boy is talking,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,and the boy is take/ing off the balloon.,and the boy is taking off the balloon,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,the balloon is float/ing away.,the balloon is floating away,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,and the girl went angry [EU].,and the girl went angry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,and there is lot/s of[:_lotsa] ball [EU].,and there is lots of ball,0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,(sh) the girl is push/ing.,the girl is pushing,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,the boy gots[EW:has] no money.,the boy gots no money,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,the man is happy.,the man is happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,the dad is here again.,the dad is here again,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,and : the man is not give/ing (thm) them balloon[EW:balloons].,and the man is not giving them balloon,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,the man give[EW:gave][-:] the[-:] : (rat : balloon) rabbit a (ba) balloon.,the man give the rabbit a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,and they can have one.,and they can have one,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,and the end [+_bch].,and the end,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,[~_I_like_looking] she is play/ing with a ball.,she is playing with a ball,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,then it drop/3s in the water.,then it drops in the water,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,the cow (s) want/3s to get it.,the cow wants to get it,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and then : the : cow : give/3s it back to the elephant.,and then the cow gives it back to the elephant,0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and she like/3s it.,and she likes it,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and the end [+_bch].,and the end,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,(um : something is sink/ing) something is sink/ing.,something is sinking,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and : the elephant is go/ing to[:_gonna] get it.,and the elephant is going to get it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and she trip/3s.,and she trips,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and she fall/3s and hurt/3s her knee[-:].,and she falls and hurts her knee,0 0 3 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and the lifeguard come/3s.,and the lifeguard comes,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and she get/3s a bandaid on it.,and she gets a bandaid on it,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,[~!_laughs] and (she) she sit/3s on a bench.,and she sits on a bench,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,the lifeguard tell/3s her not : to do it again.,the lifeguard tells her not to do it again,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,Elephant is excited to see what the giraffe has.,Elephant is excited to see what the giraffe has,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and then : he[-:] try/3s to throw it up into the air.,and then he tries to throw it up into the air,0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and then : the elephant grab/3s it away.,and then the elephant grabs it away,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and then it sink/3s into the water.,and then it sinks into the water,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,then the giraffe get/3s mad at her.,then the giraffe gets mad at her,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and the lifeguard get/3s mad (at the gir) at the elephant.,and the lifeguard gets mad at the elephant,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and (he explai) he try/3s to explain : what happen/ed.,and he tries to explain what happened,0 0 3 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and the lifeguard : (um) try/3s to get it.,and the lifeguard tries to get it,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,then : they can not get it.,then they can not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and : then : a woman come/3s up with a net.,and then a woman comes up with a net,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and she get/3s it out.,and she gets it out,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and she give/3s it back to the giraffe.,and she gives it back to the giraffe,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and then he hug/3s it.,and then he hugs it,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,(um) : the bunny and : the baby elephant are : build/ing a sandcastle.,the bunny and the baby elephant are building a sandcastle,0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and then : the bunny is fill/ing up a pail with sand.,and then the bunny is filling up a pail with sand,0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,(um) then : he is stuff/ing it on the : sandcastle.,then he is stuffing it on the sandcastle,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and then : it is ruin/ed.,and then it is ruined,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,then : one of them is sad.,then one of them is sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,that is it [+_bch].,that is it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,they are go/ing on a picnic.,they are going on a picnic,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,(they are) the bunny is eat/ing lots of stuff.,the bunny is eating lots of stuff,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,he is get/ing full.,he is getting full,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and : he has a stomachache.,and he has a stomachache,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and then : one of them see/3s (his mom) rabbit/z mom.,and then one of them sees rabbit's mom,0 0 0 0 0 3 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and : he try/3s to get her (to get) (to get) to get rabbit.,and he tries to get her to get rabbit,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and : she wake/3s him up.,and she wakes him up,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and they go home.,and they go home,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,ah that was a good one.,ah that was a good one,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,he is take/ing a balloon somewhere.,he is taking a balloon somewhere,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,his friend is come/ing up to him.,his friend is coming up to him,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,(and : he) and his friend like/3s the balloon.,and his friend likes the balloon,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and then his friend try/3s to untwist it.,and then his friend tries to untwist it,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,then it go/3s away.,then it goes away,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and he is sad.,and he is sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and then : she is angry with rabbit.,and then she is angry with rabbit,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and then there is a new (ba) balloon sale.,and then there is a new balloon sale,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and : he want/3s one.,and he wants one,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and : he give/3s it to him.,and he gives it to him,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and then : he want/3s another one [~_laughs].,and then he wants another one,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and then : mother is here.,and then mother is here,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,he come/3s up to her.,he comes up to her,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and : he tell/3s her that there is[EW:are] balloon/s.,and he tells her that there is balloons,0 0 3 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,(and : she will) and she is give/ing him money.,and she is giving him money,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and then : they both have (one) a balloon.,and then they both have a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,that is it [+_bch].,that is it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,there were two animal/s an elephant and a giraffe : who want/ed to play in a pool.,there were two animals an elephant and a giraffe who wanted to play in a pool,0 0 0 1 0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and (the w) (there) they were play/ing with a ball.,and they were playing with a ball,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and it fell into the pool.,and it fell into the pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and they want/ed to : (sw) swim and get it.,and they wanted to swim and get it,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and they thought it was fun.,and they thought it was fun,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,one of them (he fell) he went into the water and try/ed to swim to the ball.,one of them he went into the water and tried to swim to the ball,0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,but the ball was float/ing away from him.,but the ball was floating away from him,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,(and then the elephant) and (uh) then the giraffe : got the ball for the elephant.,and then the giraffe got the ball for the elephant,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and then : the elephant (was) start/ed play/ing with the ball again.,and then the elephant started playing with the ball again,0 0 0 0 4 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,(and they uh) : and they still want/ed to play with it.,and they still wanted to play with it,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,so [~_coughs] they still play/ed together.,so they still played together,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,there was a no run/ing sign.,there was a no running sign,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and they still want/ed to play in the pool.,and they still wanted to play in the pool,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and (th) they were run/ing : away.,and they were running away,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,(and then) and then : (sh) the giraffe start/ed chase/ing the elephant.,and then the giraffe started chasing the elephant,0 0 0 0 4 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the elephant slip/ed.,and the elephant slipped,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and then it hurt : itself.,and then it hurt itself,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the elephant was cry/ing.,and the elephant was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the giraffe : said are you okay?,and the giraffe said are you okay,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and then the : lifeguard came : and said are you all right?,and then the lifeguard came and said are you all right,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,: and the elephant : got a bandaid and sat on the chair.,and the elephant got a bandaid and sat on the chair,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,(and he) and (the lifeguard was try/ing) [~_I_mean] the elephant was try/ing to get off : the bandaid.,and the elephant was trying to get off the bandaid,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the lifeguard (wa) said keep it on.,and the lifeguard said keep it on,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,the giraffe and the elephant came back to the pool with the airplane.,the giraffe and the elephant came back to the pool with the airplane,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,the giraffe was play/ing with it and try/ed[-:] not to drop it into the pool.,the giraffe was playing with it and tried not to drop it into the pool,0 0 0 6 0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the elephant was : so into it.,and the elephant was so into it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,(he) the elephant (w) (was) kept stare/ing at it.,the elephant kept staring at it,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,(the) the giraffe said hey[!] when the elephant took the plane away.,the giraffe said hey when the elephant took the plane away,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the elephant start/ed play/ing with it.,and the elephant started playing with it,0 0 0 4 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the elephant accidentally drop/ed it into the pool.,and the elephant accidentally dropped it into the pool,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the giraffe was kind of : mad.,and the giraffe was kind of mad,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and then : he was so[!] mad that he growl/ed at the elephant.,and then he was so mad that he growled at the elephant,0 0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the elephant was : (scared) scare/ed.,and the elephant was scared,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,(and the li) and the elephant call/ed the lifeguard to come and try to get the airplane.,and the elephant called the lifeguard to come and try to get the airplane,0 0 0 4 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and they look/ed like they try/ed.,and they looked like they tried,0 0 4 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,(and : after that) (and af) and then : after that (he) he was try/ing to get the plane.,and then after that he was trying to get the plane,0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,but he did not.,but he did not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,(so the ele) so[-:] the elephant did not know what to do.,so the elephant did not know what to do,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the giraffe was cry/ing.,and the giraffe was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the elephant decide/ed I will have an idea.,and the elephant decided I will have an idea,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the elephant went to get a net.,and the elephant went to get a net,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and then : he use/ed it to get the plane : and got the plane for the giraffe.,and then he used it to get the plane and got the plane for the giraffe,0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,[~_oops] : and the giraffe was really happy.,and the giraffe was really happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,there was a rabbit and a dog.,there was a rabbit and a dog,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,they were : make/ing a sandcastle.,they were making a sandcastle,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and then the dog and the rabbit made the sandcastle.,and then the dog and the rabbit made the sandcastle,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the dog was sit/ing into[EW:in] the sandbox and[-:] said hey rabbit we made it!,and the dog was sitting into the sandbox and said hey rabbit we made it,0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,we made it!,we made it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,(and the) and the : rabbit was help/ing the dog make it more bigger.,and the rabbit was helping the dog make it more bigger,0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,(and it) and he put too much on : and made it fall right down on it.,and he put too much on and made it fall right down on it,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,(and then it al almost) [~_I_mean] then it broke.,then it broke,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and then it was totally broken (at the end of it) by the end.,and then it was totally broken by the end,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,(um) : there once was a dog and a rabbit.,there once was a dog and a rabbit,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,they want/ed to go on a (picnich) picnic instead of make/ing a sandcastle in the park.,they wanted to go on a picnic instead of making a sandcastle in the park,0 4 0 0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,rabbit want/ed to have the most stuff.,rabbit wanted to have the most stuff,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,so he took out (h) all of his stuff and : start/ed his stuff [EU].,so he took out all of his stuff and started his stuff,0 0 0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the dog : want/ed to eat just this couple of stuff [EU].,and the dog wanted to eat just this couple of stuff,0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the rabbit was totally full.,and the rabbit was totally full,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and (he) he was almost : have/ing a tummyache.,and he was almost having a tummyache,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and then he fell down.,and then he fell down,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and he had a big tummyache.,and he had a big tummyache,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the dog ran to get his mom (and) to help.,and the dog ran to get his mom to help,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and then : the dog beg/ed his mom to : do it.,and then the dog begged his mom to do it,0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,so the mom came : and help/ed.,so the mom came and helped,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and he was okay.,and he was okay,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,instead of go/ing (to) for a picnic (and) and go/ing into the park and make/ing a sandcastle : they got a balloon.,instead of going for a picnic and going into the park and making a sandcastle they got a balloon,0 0 6 0 0 0 0 6 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and they were play/ing with : a balloon.,and they were playing with a balloon,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and they tie/ed it onto their : wagon.,and they tied it onto their wagon,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,they were drive/ing it around.,they were driving it around,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the rabbit want/ed to take it off.,and the rabbit wanted to take it off,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the rabbit was try/ing to take it off.,and the rabbit was trying to take it off,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and then he made it fly away.,and then he made it fly away,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the rabbit did not know what to do.,and the rabbit did not know what to do,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the dog was very mad.,and the dog was very mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and then (they saw more balloon/s and want/ed to get) [~_or] (uh) the dog was still mad.,and then the dog was still mad,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the rabbit was go/ing to [~_gonna] get another one for : the : dog.,and the rabbit was going to get another one for the dog,0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the balloon/s were five cent/s.,and the balloons were five cents,0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and he could not get it because he did not have any money.,and he could not get it because he did not have any money,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the dog (was) want/ed to get one too.,and the dog wanted to get one too,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and he try/ed to get : one.,and he tried to get one,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and : the dog was wait/ing for the rabbit to get some money from it/z mom.,and the dog was waiting for the rabbit to get some money from it's mom,0 0 0 0 6 0 0 0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and it asked the mom : if he could have some money to buy the balloon.,and it asked the mom if he could have some money to buy the balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and he got five cent/s and got a balloon : for the kid/s.,and he got five cents and got a balloon for the kids,0 0 0 0 1 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and they got to play all they want with the balloon/s.,and they got to play all they want with the balloons,0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,There was a giraffe : (and) : and (a) a girl elephant.,There was a giraffe and a girl elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,they were play/ing ball : (by the street) (on the sidewalk) : by the swimming pool [~_I_mean].,they were playing ball by the swimming pool,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and then[!] they drop/ed the ball[!] into the pool!,and then they dropped the ball into the pool,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,they (could not ge) could not get it.,they could not get it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,but[!] giraffe dived|dive[EW:dove] in : and (k) (was) : was swim/ing.,but giraffe dived in and was swimming,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,but elephant was cover/ing her eye/s.,but elephant was covering her eyes,0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,then he got it and gave it to her.,then he got it and gave it to her,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,she was amaze/ed.,she was amazed,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,then he was soak/ing wet.,then he was soaking wet,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and she hug/ed the ball.,and she hugged the ball,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and he look/ed like a genius.,and he looked like a genius,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,There they were again : by the pool.,There they were again by the pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and there was a sign : by : (uh) the diving board.,and there was a sign by the diving board,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and it said no run/ing [~_takes_a_deep_breath].,and it said no running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,so : they look/ed at the pool amaze/ed for some reason.,so they looked at the pool amazed for some reason,0 0 4 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,then : elephant said I want to go on the diving board!,then elephant said I want to go on the diving board,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and she ran to it.,and she ran to it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,she ran[!] to it.,she ran to it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and she slip/ed.,and she slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and giraffe did too.,and giraffe did too,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and she scrape/ed her knee.,and she scraped her knee,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,[~_high_pitched_voice] ouch!,ouch,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,she had (X's in her eyes) [~_something_like_that] star/s in her eye/s.,she had stars in her eyes,0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,she was cry/ing.,she was crying,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,the lifeguard came.,the lifeguard came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and it was an elephant.,and it was an elephant,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,(no run/ing in the f) (in : the) no run/ing : by the side : of the pool (he) said the lifeguard.,no running by the side of the pool said the lifeguard,0 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and he put a bandaid on it.,and he put a bandaid on it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,she still had star/s in her eye/s.,she still had stars in her eyes,0 0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and then at least giraffe did not fall.,and then at least giraffe did not fall,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and then it felt much better.,and then it felt much better,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,"see, no run/ing in the pool (he) said the lifeguard.",see no running in the pool said the lifeguard,0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,did not you see that sign [EU]?,did not you see that sign,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,no run/ing!,no running,0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,he was mad.,he was mad,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,There was Elephant : with Giraffe again : by the pool again.,There was Elephant with Giraffe again by the pool again,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,they found a plane : with string at the back.,they found a plane with string at the back,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,"and : she had swirl/s in her eye/s, the elephant.",and she had swirls in her eyes the elephant,0 0 0 1 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and : the giraffe was spit/ing out spit.,and the giraffe was spitting out spit,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,then[!] : she caught it.,then she caught it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,(he was really) he was like huh?,he was like huh,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,splash it land/ed in the pool.,splash it landed in the pool,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,oh no they said.,oh no they said,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and then Giraffe was very[!] mad.,and then Giraffe was very mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,it was just about to sink.,it was just about to sink,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and elephant was go/ing [~_makes_gulping_sound].,and elephant was going,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,then the lifeguard[-:] came again.,then the lifeguard came again,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and he had his hand/s on his hip/s.,and he had his hands on his hips,0 0 0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,(and) : and : the airplane was still there.,and the airplane was still there,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,but it was not sink/ing.,but it was not sinking,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,then it was almost go/ing down.,then it was almost going down,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,they explain/ed to Mister Elephant.,they explained to Mister Elephant,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,Mister Elephant you see I grab/ed it.,Mister Elephant you see I grabbed it,0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and I drop/ed it by accident : in the water : when giraffe was play/ing with it.,and I dropped it by accident in the water when giraffe was playing with it,0 0 4 0 0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,he bendednd[EW:bent] over.,he bendednd over,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and (he try/ed to) (he was) he was (um) : growl/ing.,and he was growling,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,he could not even get it.,he could not even get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,he[!] could not even get it.,he could not even get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and then giraffe (just uh start/ed) just : start/ed : to cry[-:].,and then giraffe just started to cry,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and then Miss[!] Elephant came along.,and then Miss Elephant came along,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,she had a net.,she had a net,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and (she got) she : had a net.,and she had a net,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and she look/ed surprise/ed.,and she looked surprised,0 0 4 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,she fish/ed it out with the net.,she fished it out with the net,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,(and the) and then Giraffe (start/ed) : stop/ed cry/ing.,and then Giraffe stopped crying,0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,the lifeguard stop/ed (um : um) worry/ing.,the lifeguard stopped worrying,0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,so did the elephant.,so did the elephant,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,(and gave) and then : with amazement she gave it : to : Giraffe.,and then with amazement she gave it to Giraffe,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,he hug/ed his airplane.,he hugged his airplane,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,he was happy.,he was happy,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and the elephant was happy too.,and the elephant was happy too,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,There is : a[-:] bunny : and a dog [~_I_think] : were play/ing in the sandbox and make/ing a sandcastle [EU].,There is a bunny and a dog were playing in the sandbox and making a sandcastle,0 0 0 0 0 0 0 0 6 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,(the bu) the bunny : was get/ing the sand from the bucket.,the bunny was getting the sand from the bucket,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and the dog was make/ing the sandcastle.,and the dog was making the sandcastle,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,but (he) the rabbit pour/ed all the sand on it.,but the rabbit poured all the sand on it,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and the dog look/ed (um : fri um) surprise/ed.,and the dog looked surprised,0 0 0 4 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,the sandcastle was broke[EW:broken].,the sandcastle was broke,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,the bunny had his mouth open.,the bunny had his mouth open,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,but the dog did not.,but the dog did not,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,the dog was cry/ing.,the dog was crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,but the bunny : was just nervous.,but the bunny was just nervous,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,Here is the doggy : and the rabbit : again.,Here is the doggy and the rabbit again,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,(um) they are go/ing for a picnic with their (basks) basket/s : in the wood/s.,they are going for a picnic with their baskets in the woods,0 0 6 0 0 0 0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,the bunny : was really thirsty.,the bunny was really thirsty,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,but the dog was not.,but the dog was not,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,he looked at him surprise/ed.,he looked at him surprised,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,there was a cake : cheese : (and a basket and) and the basket pour/ed and a carrot [~_laughs] [EU].,there was a cake cheese and the basket poured and a carrot,0 0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,(the dog) : [~_no] the bunny ate all[!] his stuff.,the bunny ate all his stuff,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,there was an apple.,there was an apple,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,it was all done.,it was all done,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,there was a cheese *that was all eaten [~_pronounced_/etEn/] [EU].,there was a cheese was all eaten,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,the carrot was all eaten.,the carrot was all eaten,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,but the dog was still eat/ing her sandwich and (her juice) [~_well] drink/ing her juice.,but the dog was still eating her sandwich and drinking her juice,0 0 0 0 0 6 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,then[!] (the) the bunny had a tummyache.,then the bunny had a tummyache,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,but the dog was look/ing at : the bunny surprise/ed.,but the dog was looking at the bunny surprised,0 0 0 0 6 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,Missus Bunny came.,Missus Bunny came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,(and : wa) and she was walk/ing along.,and she was walking along,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and then the dog ran : (to her) : to doctor.,and then the dog ran to doctor,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,: (he was still ha) he still had a tummyache.,he still had a tummyache,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and the dog was pull/ing (her) her sleeve.,and the dog was pulling her sleeve,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and she look/ed surprise/ed the doctor.,and she looked surprised the doctor,0 0 4 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,the doctor (was) : said he has a tummyache from eat/ing too much.,the doctor said he has a tummyache from eating too much,0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and he had to look (uh) with his tongue with a stick [EU].,and he had to look with his tongue with a stick,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,then she : walk/ed along with rabbit.,then she walked along with rabbit,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,(he) and they went : together.,and they went together,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and the dog was only left with the picnic.,and the dog was only left with the picnic,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,Well : the dog was : going with a balloon on her (um) wagon wheel.,Well the dog was going with a balloon on her wagon wheel,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and the bunny ran[!] to her.,and the bunny ran to her,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,it looked like he was jog/ing.,it looked like he was jogging,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,the bunny : was surprise/ed she had a balloon.,the bunny was surprised she had a balloon,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and (there was) : there was the doggy.,and there was the doggy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,she did not look so happy.,she did not look so happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,but then she scream/ed : because the bunny was take/ing : the balloon away from her.,but then she screamed because the bunny was taking the balloon away from her,0 0 0 4 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and then[!] he let go of the balloon.,and then he let go of the balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,it flew up.,it flew up,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and (he) they both yell/ed come back.,and they both yelled come back,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,then the balloon drift/ed away.,then the balloon drifted away,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,the bunny had his ear/s down.,the bunny had his ears down,0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,but the dog was very (mean) (bad) [~_I_mean] (mean) : [~_laughs] mad.,but the dog was very mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,there was Mister Rabbit : carry/ing : some balloon/s.,there was Mister Rabbit carrying some balloons,0 0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,they found him again (with) (and a b) by a bench and a garbage can.,they found him again by a bench and a garbage can,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,the rabbit ran up to him and said may I please have a blue : balloon (s) he said?,the rabbit ran up to him and said may I please have a blue balloon he said,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,five[-:] dollar/s first.,five dollars first,0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,(he) he pull/ed out his pocket/s.,he pulled out his pockets,0 4 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,but there was no money.,but there was no money,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,the dog was rush/ing to the bunny.,the dog was rushing to the bunny,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,then they look/ed at : the Mister Bunny with a grin.,then they looked at the Mister Bunny with a grin,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,(h) they could not buy another balloon.,they could not buy another balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,then Missus Rabbit the doctor rabbit : (and then) was stand/ing there.,then Missus Rabbit the doctor rabbit was standing there,0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and then : little rabbit went to go ask her something.,and then little rabbit went to go ask her something,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,can you (bo) please buy us a balloon said rabbit.,can you please buy us a balloon said rabbit,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and then she look/ed at him amaze/ed : because it is for five buck/s only said (f) the : (Mis) Mister Bunny.,and then she looked at him amazed because it is for five bucks only said the Mister Bunny,0 0 0 4 0 0 4 0 0 0 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,then she paid five buck/s.,then she paid five bucks,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and they got two balloon/s.,and they got two balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,[~_I_mean] ten buck/s.,ten bucks,0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and they both had their balloon/s.,and they both had their balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and they live/ed happily ever after.,and they lived happily ever after,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,first there is a lady who is bounce[EW:bouncing] a ball under the giraffe.,first there is a lady who is bounce a ball under the giraffe,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,(it went right beside) they are work/ing at a centre[?].,they are working at a centre,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,she bounce/ed it into the wall.,she bounced it into the wall,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,the giraffe and the : elephant are look/ing at it.,the giraffe and the elephant are looking at it,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,the giraffe go/3s and swim/3s (and get the) and get/3s the ball.,the giraffe goes and swims and gets the ball,0 0 3 0 3 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,then the elephant take/3s it.,then the elephant takes it,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,(he :) then the giraffe get/3s out of : the water.,then the giraffe gets out of the water,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,[~_okay] first the elephant and the giraffe : see the diving board.,first the elephant and the giraffe see the diving board,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,then the elephant see/3s it.,then the elephant sees it,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,then she : go/3s to go on it.,then she goes to go on it,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,she went : run/ing too fast.,she went running too fast,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,and she fell.,and she fell,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,and she bruise/ed her knee.,and she bruised her knee,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,the giraffe went down and comed|come[EW:came] to see her.,the giraffe went down and comed to see her,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,(then) and then the elephant that was a lifeguard comed|come[EW:came] to see it too.,and then the elephant that was a lifeguard comed to see it too,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,(the eleph) (the) the lifeguard : put a bandaid on the bruise.,the lifeguard put a bandaid on the bruise,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,they had to sit on the bench for awhile.,they had to sit on the bench for awhile,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,(and they talk/ed not allow/ed to) they talk/ed about they are not allow/ed to run [EU].,they talked about they are not allowed to run,0 4 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,okay.,okay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,now she know/3s it [+/]^,now she knows it,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,is that it?,is that it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,"[+,] (because he saw the sign) (because he show/ed him the sign) because he show/ed her the sign now.",because he showed her the sign now,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,no run/ing.,no running,0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,the giraffe and the elephant got together[?].,the giraffe and the elephant got together,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,and the giraffe got a[EW:an] airplane.,and the giraffe got a airplane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,the giraffe : is put/ing it up high and pretend/ing it is go/ing.,the giraffe is putting it up high and pretending it is going,0 0 0 6 0 0 0 0 6 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,then the elephant take/3s it.,then the elephant takes it,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,and she try/3s to do it too.,and she tries to do it too,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,but the elephant throwed|throw[EW:threw] it in the water.,but the elephant throwed it in the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,the giraffe get/3s angry.,the giraffe gets angry,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,then there is a lifeguard come/ing along.,then there is a lifeguard coming along,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,the elephant is explain/ing what happen/ed.,the elephant is explaining what happened,0 0 0 6 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,the lifeguard try/3s to get it.,the lifeguard tries to get it,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,but she can not get it.,but she can not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,(so :) so the giraffe start/3s cry/ing.,so the giraffe starts crying,0 0 0 3 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,(then comes) and then come/3s a lady with a net.,and then comes a lady with a net,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,then she get/3s it out of the water.,then she gets it out of the water,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,then she give/3s it to the giraffe.,then she gives it to the giraffe,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,now : the giraffe is hug/ing : the airplane.,now the giraffe is hugging the airplane,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,(first the rabbit see/3s the puppy play/ing in the sand he want/3s) [~_I_mean] the rabbit see/3s the puppy play/ing in the sand.,the rabbit sees the puppy playing in the sand,0 0 3 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,and he want/3s to play.,and he wants to play,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,they builded|build[EW:built] a sandcastle.,they builded a sandcastle,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,the rabbit fill/ed up a bucket of sand.,the rabbit filled up a bucket of sand,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,the rabbit dump/ed it on the castle.,the rabbit dumped it on the castle,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,then the rabbit said oh no.,then the rabbit said oh no,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,then the puppy was try/ing to get it off.,then the puppy was trying to get it off,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,one time : the puppy saw the rabbit come/ing with a basket.,one time the puppy saw the rabbit coming with a basket,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,and : the girl had a basket.,and the girl had a basket,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,the rabbit : had pile/s of food.,the rabbit had piles of food,0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,the lady did not.,the lady did not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,she saw the rabbit eat/ing so much.,she saw the rabbit eating so much,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,the rabbit : got really fat.,the rabbit got really fat,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,(she was) he was start/ing to feel dizzy.,he was starting to feel dizzy,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,he call/ed the doctor.,he called the doctor,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,"(and he got the lady ) [~_I_mean,_turn_it_back] the lady told the doctor to : help him.",the lady told the doctor to help him,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,the doctor said you are eat/ing too much food : too fast.,the doctor said you are eating too much food too fast,0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,so : he take/3s the bunny.,so he takes the bunny,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,(the :) the dog see/3s the bunny come/ing along.,the dog sees the bunny coming along,0 0 3 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,and the girl : has a wagon with the balloon hook/ed on it.,and the girl has a wagon with the balloon hooked on it,0 0 0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,(the bunny) the bunny look/3s at it.,the bunny looks at it,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,then the bunny take/3s it off.,then the bunny takes it off,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,then : the bunny accidentally let it go.,then the bunny accidentally let it go,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,and it *is go/ing too high [EU].,and it going too high,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,and they can not reach it.,and they can not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,(the) the dog is get/ing mad at the bunny.,the dog is getting mad at the bunny,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,they see another balloon holder.,they see another balloon holder,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,so the bunny say/3s can we have one of those balloon/s?,so the bunny says can we have one of those balloons,0 0 0 3 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,but none[EW:no] cash [EU].,but none cash,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,and it cost/3s five dollar/s.,and it costs five dollars,0 0 3 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,(uh :) they explain/ed what happen/ed to the balloon.,they explained what happened to the balloon,0 4 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,then they go run/ing to go : get somebody.,then they go running to go get somebody,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,can you say that louder?,can you say that louder,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,they went to go get somebody [+_bch].,they went to go get somebody,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,he is explain/ing[?] about the balloon man.,he is explaining about the balloon man,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,(and) and we do not have enough money.,and we do not have enough money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,so she buyed|buy[EW:bought] : two balloon/s.,so she buyed two balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,and now they both got[EW:have] a balloon.,and now they both got a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,once upon a time they were play/ing basketball.,once upon a time they were playing basketball,0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,(then) : then the boy came named giraffe.,then the boy came named giraffe,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,the ball got stuck in the pond.,the ball got stuck in the pond,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then he went back home.,then he went back home,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then it fell back in the water.,then it fell back in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and he gave the cow a : (nnn) new[?] [EU].,and he gave the cow a new,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then he went : out of the water.,then he went out of the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,there was a : girl name/ed : elephant.,there was a girl named elephant,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and the giraffe went swim[EW:swimming] again[?] xx the lake.,and the giraffe went swim again the lake,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and then they just ran ahead.,and then they just ran ahead,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then they jump/ed into the water.,then they jumped into the water,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and then they[EW:she] hurt her knee[-:].,and then they hurt her knee,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then they could not : give a bandage [EU].,then they could not give a bandage,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and he just put on a bandage for her.,and he just put on a bandage for her,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,(then it feel) then they went swim/ing for a[?] next time [EU].,then they went swimming for a next time,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then he got mad.,then he got mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,once upon a time (a) : a boy (me) met a girl.,once upon a time a boy met a girl,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and he was go/ing to [~_gonna] fly his airplane.,and he was going to fly his airplane,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then he flew it.,then he flew it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and (then) then he let go of it.,and then he let go of it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and then she grab/ed it from him.,and then she grabbed it from him,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and it was her/z.,and it was her's,0 0 0 2 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and he throwed|throw[EW:threw] it in the water[-:] .,and he throwed it in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and then he got mad at her.,and then he got mad at her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then he got mad.,then he got mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and he need|need[EW:needed] to do something.,and he need to do something,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and they could not reach it.,and they could not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,so (they) they got a net.,so they got a net,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and it was there for a long time.,and it was there for a long time,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and he got a net.,and he got a net,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then he got it.,then he got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then he just : try/ed to get it.,then he just tried to get it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then he just got it.,then he just got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then he just : give|give[EW:gave] it to the boy who had it.,then he just give it to the boy who had it,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and xxx.,and,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,he went.,he went,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and : he met a girl : go/ing to (the) : the playground.,and he met a girl going to the playground,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and she made a (ca) sandcastle.,and she made a sandcastle,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,try/ing make/ing one like hers [EU].,trying making one like hers,6 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,[<~?_where]then[>~?_where] it broke.,then it broke,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then they : got very angry.,then they got very angry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,but they need/ed to make it all over again.,but they needed to make it all over again,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,there was a boy name/ed : bunnyhead.,there was a boy named bunnyhead,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then he went (to) to have a picnic and met another guy with a picnic basket.,then he went to have a picnic and met another guy with a picnic basket,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and they had a picnic before (it) (it) it got night time [EU].,and they had a picnic before it got night time,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then they had two box/s of sandwich/s.,then they had two boxes of sandwiches,0 0 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and then they got full.,and then they got full,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,(then they went) (then they) : then they went full [EU].,then they went full,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and : they get|got[EW:got] more and more.,and they get more and more,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then came the mommmy.,then came the mommmy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,(then the) : then : the doctor.,then the doctor,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then they ran up to her.,then they ran up to her,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then they bump/ed[!] into her.,then they bumped into her,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and she took a temperature.,and she took a temperature,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and she was sick.,and she was sick,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and she need/ed to take her to a hospital.,and she needed to take her to a hospital,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,once : upon a time there was a boy (and went) (um uh what um) give/ing him[EW:his] wagon a walk.,once upon a time there was a boy giving him wagon a walk,0 0 0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,(then they) then they (got) put it on a balloon.,then they put it on a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and that was good.,and that was good,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then he tighten|tighten[EW:tightened] it on[-:] very good.,then he tighten it on very good,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and he gave it to the girl.,and he gave it to the girl,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,(then) then it flew away.,then it flew away,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then there was no way [EU].,then there was no way,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then he was (ba) angry.,then he was angry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then he met a : balloon guy.,then he met a balloon guy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and he bought her one : and buyed|buy[EW:bought] a new balloon (so) (so they c) so there could be one on the wagon.,and he bought her one and buyed a new balloon so there could be one on the wagon,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then he gave us one before he flew away.,then he gave us one before he flew away,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and thank you!,and thank you,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and (then it went) she sawed|see[EW:saw] the : doctor again.,and she sawed the doctor again,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and (a little girl) can you buy us a balloon?,and can you buy us a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and they gave him money.,and they gave him money,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,(then) then he gave them balloon/s.,then he gave them balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,(then they) then they both had one.,then they both had one,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,good.,good,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,once : a[EW:an] elephant was walk/ing over to a giraffe : with a backpack full of three ball/s.,once a elephant was walking over to a giraffe with a backpack full of three balls,0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,then : the ball/s sank into the water and float/ed away.,then the balls sank into the water and floated away,0 0 1 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,they try/ed to catch it.,they tried to catch it,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,but they nearly fell into the water.,but they nearly fell into the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,they fell into the water.,they fell into the water,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,(and try/ed to float) he try/ed to float to (the balloon) the ball.,he tried to float to the ball,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,(but it wa) : (but it) but the ball was too[!] fast.,but the ball was too fast,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,then the elephant caught the ball and pull/ed giraffe out of the water.,then the elephant caught the ball and pulled giraffe out of the water,0 0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,then[!] he was soak/ing wet.,then he was soaking wet,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,then they walk/ed home.,then they walked home,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,once : (gira) giraffe and elephant were so excited.,once giraffe and elephant were so excited,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,they want/ed to go into the pool.,they wanted to go into the pool,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,they walk/ed over to the stair/s.,they walked over to the stairs,0 4 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then : they walk/ed over to the board.,and then they walked over to the board,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then : they jump/ed in.,and then they jumped in,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,then elephant jump/ed in.,then elephant jumped in,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then elephant slip/ed and slide|slide[EW:slid].,and then elephant slipped and slide,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and : then he fell into the water head first.,and then he fell into the water head first,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,he did not realize (that) that : he had no bandaid on his owie.,he did not realize that he had no bandaid on his owie,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and it hurted|hurt[EW:hurt] and hurted|hurt[EW:hurt] and hurted|hurt[EW:hurt] and hurted|hurt[EW:hurt].,and it hurted and hurted and hurted and hurted,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,(uh : momma bear) poppa bear walk/ed over to him.,poppa bear walked over to him,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,are you okay?,are you okay,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,no reply/ed sister bear.,no replied sister bear,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,(then : they were so excited : they are) : (they v) (poppa bear gave him) poppa elephant gave : sister elephant : a bandaid.,poppa elephant gave sister elephant a bandaid,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,then it felt much better.,then it felt much better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,now they were ready to play in the water.,now they were ready to play in the water,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,but then : suddenly : the poppa bear said you stay there.,but then suddenly the poppa bear said you stay there,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,do not go with the giraffe.,do not go with the giraffe,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,once : Elephant and Giraffe : were walk/ing to the pool again[!].,once Elephant and Giraffe were walking to the pool again,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,: Giraffe brought an airplane.,Giraffe brought an airplane,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then (he) elephant flied|fly[EW:flew] it.,and then elephant flied it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,but then it sank into the water.,but then it sank into the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,you said [~_deep_voice] elephant : you get that airplane out of the water.,you said elephant you get that airplane out of the water,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,but I can not cry/ed elephant.,but I can not cried elephant,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,now (it sank into the pool) it sank into the pool nearly all the way.,now it sank into the pool nearly all the way,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,poppa bear said get that airplane.,poppa bear said get that airplane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,[~_deep_voice] I[!] can not (said) poppa bear : said to the giraffe.,I can not poppa bear said to the giraffe,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,poppa bear try/ed to reach it.,poppa bear tried to reach it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,but it was too far.,but it was too far,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,oh now we will never get it : cry/ed poppa bear and sister bear.,oh now we will never get it cried poppa bear and sister bear,0 0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,(hold it said) hold it said giraffe.,hold it said giraffe,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,I[!] got something.,I got something,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,I[!] have an idea.,I have an idea,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,(he) (he got his) momma bear got the net.,momma bear got the net,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then (he try/ed) he got it.,and then he got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,then he try/ed to get it.,then he tried to get it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and at last : he got it.,and at last he got it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then it was soak/ing wet : that he had to waited|wait[EW:wait] till it was dry.,and then it was soaking wet that he had to waited till it was dry,0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,now it was dry.,now it was dry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and he could fly it but not into the water any more.,and he could fly it but not into the water any more,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,once : two bunny/s were play/ing in the sandbox.,once two bunnies were playing in the sandbox,0 0 1 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,one bunny build|build[EW:built] a sandcastle.,one bunny build a sandcastle,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and one digged|dig[EW:dug] sand to put in his bucket.,and one digged sand to put in his bucket,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,he pour/ed it onto the castle.,he poured it onto the castle,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then it all broke.,and then it all broke,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then it all fell.,and then it all fell,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then : (the uh) the bunny had to build it again.,and then the bunny had to build it again,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,once : two bunny/s were go/ing out for a picnic.,once two bunnies were going out for a picnic,0 0 1 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,(ss) one : ate : a carrot and some hot dog/s.,one ate a carrot and some hot dogs,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,then he was all full.,then he was all full,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then the second bunny drank : juice : and ate his sandwich.,and then the second bunny drank juice and ate his sandwich,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then : the sandwich : taste|taste[EW:tasted] yucky.,and then the sandwich taste yucky,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then : they went home to their mom.,and then they went home to their mom,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,(the mom said) the mom said : please take care of your little brother.,the mom said please take care of your little brother,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and they took care of each other.,and they took care of each other,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,then : (the) the sister bunny and the momma baby (all) they walk/ed home together.,then the sister bunny and the momma baby they walked home together,0 0 0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,once (a ba) a bunny was bring/ing (uh) : a wagon with a balloon : attached to a wheel.,once a bunny was bringing a wagon with a balloon attached to a wheel,0 0 0 0 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then : (the) the bunny was so excit/ed that he look/ed at the balloon.,and then the bunny was so excited that he looked at the balloon,0 0 0 0 0 0 4 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then : he try/ed to put the balloon off the wheel [EU].,and then he tried to put the balloon off the wheel,0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,but it was stuck.,but it was stuck,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then it flew up.,and then it flew up,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,they try/ed to catch it.,they tried to catch it,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,but it was float/ing away up into the air.,but it was floating away up into the air,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then : it nearly disappear/ed.,and then it nearly disappeared,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then they got so mad (they had to get a different one) they had to get a new one.,and then they got so mad they had to get a new one,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,so they walk/ed over to mister balloon.,so they walked over to mister balloon,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,(and said) can I have (one) a new balloon the bunny ask/ed?,can I have a new balloon the bunny asked,0 0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then he gave him the nice five : balloon.,and then he gave him the nice five balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then : he did not (gi) give (him) them one.,and then he did not give them one,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then : all of sudden (brother bear) brother bunny and sister bunny saw their mom.,and then all of sudden brother bunny and sister bunny saw their mom,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and (they w) then they (walk/ed over the river) skate/ed over to the river.,and then they skated over to the river,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and out at the river she saw their mom.,and out at the river she saw their mom,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then [~_change_in_voice_quality] mommy : mister balloon will not (give us) give us a balloon.,and then mommy mister balloon will not give us a balloon,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and (then : then h) then momma bunny walk/ed over to mister balloon.,and then momma bunny walked over to mister balloon,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,(and said) can you please give them a balloon she ask/ed.,can you please give them a balloon she asked,0 0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,certainly reply/ed mister balloon.,certainly replied mister balloon,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then they had two balloon/s : for themselves.,and then they had two balloons for themselves,0 0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,two friend/s were play/ing with a ball.,two friends were playing with a ball,0 1 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,the ball went in the water.,the ball went in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,the guy try/ed to get the ball.,the guy tried to get the ball,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,then (she uh) the boy pass/ed (the) the ball to the elephant.,then the boy passed the ball to the elephant,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,and then (they) the boy was in love with her.,and then the boy was in love with her,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,two friend/s : were go/ing for a swim.,two friends were going for a swim,0 1 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,and the elephant want/ed to dive.,and the elephant wanted to dive,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,she trip/ed (and) : and hurt her knee.,she tripped and hurt her knee,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,the lifeguard came : and put a bandaid on : her.,the lifeguard came and put a bandaid on her,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,and : she was : curious.,and she was curious,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,and the lifeguard show/ed her the sign of no run/ing [~_haha].,and the lifeguard showed her the sign of no running,0 0 0 4 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,the giraffe brought a[EW:an] airplane.,the giraffe brought a airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,he was play/ing with it.,he was playing with it,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,and the elephant was : get/ing bore/ed.,and the elephant was getting bored,0 0 0 0 6 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,then the elephant took it away from the giraffe and start/ed to play with it.,then the elephant took it away from the giraffe and started to play with it,0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,she accidentally drop/ed it in the water.,she accidentally dropped it in the water,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,the : person was very mad at her.,the person was very mad at her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,the lifeguard came.,the lifeguard came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,and the elephant explain/ed to the lifeguard.,and the elephant explained to the lifeguard,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,he try/ed to reach it.,he tried to reach it,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,but he could not.,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,(the life) (the) the boy was cry/ing.,the boy was crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,then : somebody came in with a net : and reach/ed it and got it out : and pass/ed it to the giraffe.,then somebody came in with a net and reached it and got it out and passed it to the giraffe,0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,and he was happy.,and he was happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,and so was the elephant.,and so was the elephant,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,one day (uh) a bunny went to the park with his friend.,one day a bunny went to the park with his friend,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,she was make/ing his sandcastle with her.,she was making his sandcastle with her,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,he dump/ed it all over her sandcastle.,he dumped it all over her sandcastle,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,(and it : uh) : and it blew up [~_laughs].,and it blew up,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,and she was cry/ing[?].,and she was crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,(and he did not) and he did not even say anything [~_laughs].,and he did not even say anything,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,(uh) two friend/s went : for a picnic.,two friends went for a picnic,0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,(uh) the one friend ate everything [~_laughs].,the one friend ate everything,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,he was very full.,he was very full,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,he got a stomachache.,he got a stomachache,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,the little girl ran to the nurse : and pull/ed her over to the : boy.,the little girl ran to the nurse and pulled her over to the boy,0 0 0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,and she said Merry Christmas.,and she said Merry Christmas,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,and they live/ed happily ever after [~_laughs].,and they lived happily ever after,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,two friend/s went to the park.,two friends went to the park,0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,and the girl had a balloon.,and the girl had a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,(uh) : the boy want/ed to : hold the balloon.,the boy wanted to hold the balloon,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,he untie/ed it.,he untied it,0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,and it flew up.,and it flew up,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,and then the girl was very mad at him.,and then the girl was very mad at him,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,then they saw a balloon person.,then they saw a balloon person,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,and he ask/ed if he could have a balloon of hubbadubba[?].,and he asked if he could have a balloon of hubbadubba,0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,(uh bl) and the guy said balloons five cent/s.,and the guy said balloons five cents,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,and they were very sad.,and they were very sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,then they seen|see[EW:saw] a doctor.,then they seen a doctor,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,(and ask/ed :) and the boy ask/ed if : she can buy two balloon/s with five cent/s.,and the boy asked if she can buy two balloons with five cents,0 0 0 4 0 0 0 0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,and : they got the balloon/s.,and they got the balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,and she paid [~_laughs].,and she paid,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,and they love/ed the balloon/s.,and they loved the balloons,0 0 4 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,a[EW:an] elephant met (a) a giraffe.,a elephant met a giraffe,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,(and the) and the elephant/z ball went into the water.,and the elephant's ball went into the water,0 0 2 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,then the giraffe would get it.,then the giraffe would get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and (then she w) then she was happy.,and then she was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and then : (hmmm) she like/ed her.,and then she liked her,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and then [+..].,and then,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,Okay.,Okay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,(um) the elephant (and) and (the) the giraffe was[EW:were] go/ing to run.,the elephant and the giraffe was going to run,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and he was go/ing.,and he was going,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and the elephant was go/ing to run over to the jump/ing thing.,and the elephant was going to run over to the jumping thing,0 0 0 0 6 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and then she slip/ed.,and then she slipped,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and then she fell.,and then she fell,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and then the lifeguard came.,and then the lifeguard came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and then he putted|put[EW:put] a bandaid on.,and then he putted a bandaid on,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and (then) then she knowed|know[EW:knew] that there was no run/ing.,and then she knowed that there was no running,0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and then she look/ed at the sign.,and then she looked at the sign,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and it said no run/ing.,and it said no running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and then the end.,and then the end,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,the giraffe (had) had a[EW:an] airplane.,the giraffe had a airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and he was go/ing to throw it.,and he was going to throw it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,(and) (and the) and the : elephant want/ed to try too.,and the elephant wanted to try too,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and then (he s) (he was tr) he want/ed to throw it.,and then he wanted to throw it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,: and then the elephant was go/ing to throw it.,and then the elephant was going to throw it,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and then it sank.,and then it sank,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and (then) then the giraffe was mad.,and then the giraffe was mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,: (and :) and then the lifeguard came.,and then the lifeguard came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,(and then) and then the lifeguard was go/ing to get it.,and then the lifeguard was going to get it,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,: (and then he) and then he was almost about to get it.,and then he was almost about to get it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,: (and then) and then the giraffe was sad.,and then the giraffe was sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,[~_long_pause] what happened next ?,what happened next,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and (then) then the girl lifeguard came : to get the airplane with (a th) a net.,and then the girl lifeguard came to get the airplane with a net,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and then : she got it.,and then she got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,: (and then) and then she got it.,and then she got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and then he was happy.,and then he was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,a bunny and a bunny : were play/ing in a sandbox.,a bunny and a bunny were playing in a sandbox,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and then they builded|build[EW:built] a snowcastle.,and then they builded a snowcastle,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and then (the) the other rabbit pour/ed some sand in it.,and then the other rabbit poured some sand in it,0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,(and) and one part was still fix/ed.,and one part was still fixed,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,: then what happen/ed?,then what happened,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and then : the other one was sad.,and then the other one was sad,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,The end [+_bch].,The end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,(um : um) two rabbit/s had basket/s.,two rabbits had baskets,0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and it[EW:they] had a picnic.,and it had a picnic,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,(and then) and then the other rabbit was full.,and then the other rabbit was full,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,: then he was hurt.,then he was hurt,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,: what happen/ed?,what happened,0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,he found a doctor.,he found a doctor,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,(and) and he thoughted|thought[EW:thought] that guy was hurt.,and he thoughted that guy was hurt,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,: and then the doctor came.,and then the doctor came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and (then) then the boy was better.,and then the boy was better,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,(um) the girl had a wagon with a balloon on it.,the girl had a wagon with a balloon on it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,(and the) and the other rabbit : was run/ing.,and the other rabbit was running,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and then the boy rabbit was go/ing to[:_gonna] take the balloon.,and then the boy rabbit was going to take the balloon,0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,(and then he) and then he was try/ing to take it off.,and then he was trying to take it off,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,: then what happen/ed?,then what happened,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,then it flew up in the air.,then it flew up in the air,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and (then) then it pop/ed.,and then it popped,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,: and then he was go/ing to the balloon man.,and then he was going to the balloon man,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and (then) : then the girl was sad.,and then the girl was sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,: what happen/ed then?,what happened then,0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and (then) then he was mad.,and then he was mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,: (um) then the girl came.,then the girl came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,(then sh) : (then she) (then) then she want/ed a balloon.,then she wanted a balloon,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and then he ask/ed : the doctor (that could) could he have some of your money?,and then he asked the doctor could he have some of your money,0 0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,: what happen/ed then?,what happened then,0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,(then) then the boy and the girl : was[EW:were] go/ing to[:_gonna] have a balloon.,then the boy and the girl was going to have a balloon,0 0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,: and then they both had a balloon.,and then they both had a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,once[-:] an elephant and a giraffe were play/ing ball : when suddenly the ball drop/ed into[-:] the sand that[-:] was water.,once an elephant and a giraffe were playing ball when suddenly the ball dropped into the sand that was water,0 0 0 0 0 0 0 6 0 0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,out they sunk [EU].,out they sunk,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,the ball pick/ed them out [EU].,the ball picked them out,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,but it was just the elephant.,but it was just the elephant,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,and they play/ed ball again.,and they played ball again,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,Once (an) an elephant and a : horse [~_I_keep_getting__mixed_up] : [~_EXA:_once_an_elephant_and_a_horse] [~_Well_this__one_(i)s_a_horse_and_this_one_(i)s_a_elephant] : were play/ing in the sand.,Once an elephant and a horse were playing in the sand,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,Suddenly it was not sand they realize/ed.,Suddenly it was not sand they realized,0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,They fell : and sunk.,They fell and sunk,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,They came out again.,They came out again,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,: They got hurt : because that is how it look/3s.,They got hurt because that is how it looks,0 0 0 0 0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,"they had to put a bandaid (on a different[!] eleph) on that elephant, a doctor elephant.",they had to put a bandaid on that elephant a doctor elephant,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,and : they sat down.,and they sat down,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,: the doctor elephant got angry!,the doctor elephant got angry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,once an elephant and a : giraffe : (w) were shoot/ing airplane/s : (when it look/ed) : when suddenly the airplane got broken.,once an elephant and a giraffe were shooting airplanes when suddenly the airplane got broken,0 0 0 0 0 0 0 6 1 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,and it shooted|shoot[EW:shot] (into that water :) into the water.,and it shooted into the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,oh no said the little giraffe.,oh no said the little giraffe,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,like : he yell/ed.,like he yelled,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,Mister FixIt came and said what is all this yell/ing : about?,Mister FixIt came and said what is all this yelling about,0 0 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,(a) (a) a plane got stuck in the water.,a plane got stuck in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,can you take it out?,can you take it out,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,of course I will.,of course I will,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,and (he s) he got angry too.,and he got angry too,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,did not know how [EU].,did not know how,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,so he took his net out of his : truck and scoop/ed it up.,so he took his net out of his truck and scooped it up,0 0 0 0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,and that did the job [~_laughs].,and that did the job,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,and they play/ed airplane[!] again.,and they played airplane again,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,and they were happy.,and they were happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,they like/ed (the) the airplane.,they liked the airplane,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,it was all fix/ed up.,it was all fixed up,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,Once a dog and a rabbit : [~_I_have_a_dog] were play/ing in the sand.,Once a dog and a rabbit were playing in the sand,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,They made a sandcastle.,They made a sandcastle,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,(And when) by the time it was finish/ed they pour/ed some more sand.,by the time it was finished they poured some more sand,0 0 0 0 0 4 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,And it fell down : and did [~_makes_sound_effect_'glop'][!].,And it fell down and did,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,They built the sandcastle again.,They built the sandcastle again,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,It was up.,It was up,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,Once a dog and a rabbit : were walk/ing down.,Once a dog and a rabbit were walking down,0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,They had a picnic[!].,They had a picnic,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,Soon the rabbit was so tire/ed and full : that he had to go to sleep.,Soon the rabbit was so tired and full that he had to go to sleep,0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,Out they pack/ed [EU].,Out they packed,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,His leg/s got tired.,His legs got tired,0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,Dog had to pull him.,Dog had to pull him,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,Doctor came along and fix/ed up the rabbit : and took them home.,Doctor came along and fixed up the rabbit and took them home,0 0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,once (a) : a dog and a rabbit : were wait/ing down with a balloon : when the balloon pop/ed.,once a dog and a rabbit were waiting down with a balloon when the balloon popped,0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,on that hot day they all sat.,on that hot day they all sat,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,up went the balloon.,up went the balloon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,it pop/ed.,it popped,0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,out came : the balloon man with lot/s of balloon/s.,out came the balloon man with lots of balloons,0 0 0 0 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,and they gave one to each.,and they gave one to each,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,and they had lot/s of balloon/s.,and they had lots of balloons,0 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,only one pop/ed.,only one popped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,and they like/ed their balloon/s.,and they liked their balloons,0 0 4 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,off they went.,off they went,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,out came Doctor Rabbit.,out came Doctor Rabbit,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,he said what (are) these balloon/s[!] are for [EU]?,he said what these balloons are for,0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,the balloon man gave it to us because we love balloon/s.,the balloon man gave it to us because we love balloons,0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,and ours pop/ed away.,and ours popped away,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,"Once there was[EW:were] : (uh) two[-:] friend/s, one Tally and one (hm) : Snout.",Once there was two friends one Tally and one Snout,0 0 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and Snout had a beautiful : green ball.,and Snout had a beautiful green ball,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,but[!] it fell in a pool.,but it fell in a pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,so Tally : swam to get the ball.,so Tally swam to get the ball,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and : he got it back.,and he got it back,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,(um) : Tally was blush/ing.,Tally was blushing,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,his whole face went red.,his whole face went red,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,This is another story about (Snuff ) Snout and Tally.,This is another story about Snout and Tally,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,once there the pool in the last story with the beautiful green ball fell in the pool.,once there the pool in the last story with the beautiful green ball fell in the pool,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and Tally got it back.,and Tally got it back,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,there was a diving board.,there was a diving board,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and Snout said I am go/ing to go on that diving board.,and Snout said I am going to go on that diving board,0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and I will show you a nice dive.,and I will show you a nice dive,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,well Tally said stop do not run.,well Tally said stop do not run,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and unfortunately Snout slip/ed and fell : and really really hurt her knee.,and unfortunately Snout slipped and fell and really really hurt her knee,0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and then Tally warn/ed her because Tally saw a sign that said no run/ing.,and then Tally warned her because Tally saw a sign that said no running,0 0 0 4 0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,Snout (started) start/ed to cry.,Snout started to cry,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,but the lifeguard luckily saw and came to the rescue.,but the lifeguard luckily saw and came to the rescue,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and the lifeguard gave Snout a bandaid.,and the lifeguard gave Snout a bandaid,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,"once Snout stop/ed cry/ing, the lifeguard gave her a sticker for be/ing such a good help not move/ing her knee around and stuff.",once Snout stopped crying the lifeguard gave her a sticker for being such a good help not moving her knee around and stuff,0 0 4 6 0 0 0 0 0 0 0 6 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and then (um) the lifeguard point/ed to the sign that said no run/ing.,and then the lifeguard pointed to the sign that said no running,0 0 0 0 4 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and Snout look/ed and said sorry.,and Snout looked and said sorry,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,This is a story about Snout and Tally.,This is a story about Snout and Tally,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and Tally had this nice model airplane that he was play/ing with by the pool.,and Tally had this nice model airplane that he was playing with by the pool,0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,he was fly/ing it around.,he was flying it around,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and Snout was like ooh.,and Snout was like ooh,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,she really want/ed to play with it.,she really wanted to play with it,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,so : she snatch/ed[!] it away.,so she snatched it away,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and then Tally was like [~_high_pitched_voice] hey give it back!,and then Tally was like hey give it back,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,[~_high_pitched_voice] it is mine!,it is mine,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and[-:] Snout : drop/ed it in the pool.,and Snout dropped it in the pool,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and then Tally (s) said now look what you have done.,and then Tally said now look what you have done,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,you should not grab.,you should not grab,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and : Tally got really really really mad at : Snout.,and Tally got really really really mad at Snout,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and then the lifeguard : ask/ed what is the problem here kid/s?,and then the lifeguard asked what is the problem here kids,0 0 0 0 4 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and : Snout said : well (um Ta) Tally here was play/ing with this model airplane.,and Snout said well Tally here was playing with this model airplane,0 0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and : (I) I really want/ed to play (wis) with it.,and I really wanted to play with it,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,so I grab/ed it away.,so I grabbed it away,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,but I accidentally drop/ed it in the pool.,but I accidentally dropped it in the pool,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,so the lifeguard had to : get down : and stretch out for the plane.,so the lifeguard had to get down and stretch out for the plane,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,but : it was (too) too far out.,but it was too far out,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,the lifeguard could not get it.,the lifeguard could not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and then : (the) the : girl luckily had a net.,and then the girl luckily had a net,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,so : she dip/ed it in the pool.,so she dipped it in the pool,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and[-:] : luckily : or : not [EU].,and luckily or not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,but : he was lucky.,but he was lucky,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,she did[!] get it out.,she did get it out,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and then : Snout said sorry I drop/ed it in the pool.,and then Snout said sorry I dropped it in the pool,0 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,Once there was[EW:were] two[-:] : animal/s a wolf and a bunny.,Once there was two animals a wolf and a bunny,0 0 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and they were (at the beach : or) in a sandbox.,and they were in a sandbox,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and they built a big big sandcastle.,and they built a big big sandcastle,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,the wolf was work/ing on the tower.,the wolf was working on the tower,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and the bunny was : (um) collect/ing the sand.,and the bunny was collecting the sand,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,but then the bunny pour/ed (the who) the whole bucket of sand : onto the sandcastle.,but then the bunny poured the whole bucket of sand onto the sandcastle,0 0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and it ruin/ed one tower.,and it ruined one tower,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,but then[!] the sand that was on the tower start/ed come/ing down and wreck/ing the whole sandcastle.,but then the sand that was on the tower started coming down and wrecking the whole sandcastle,0 0 0 0 0 0 0 0 0 4 6 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,so when that[!] was all finished the only thing left was one tower.,so when that was all finished the only thing left was one tower,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and then the wolf start/ed to cry.,and then the wolf started to cry,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and the bunny : *was feel/ing bad [EU].,and the bunny feeling bad,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,once there was[EW:were] two animal/s : (a ra) a hare and a : wolf.,once there was two animals a hare and a wolf,0 0 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,(and the wo) and the bunny thought that he was so[-:] good so he could have all the food he want/ed.,and the bunny thought that he was so good so he could have all the food he wanted,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,so then (once) once they were finish/ed : the wolf had just : a sandwich and a juice.,so then once they were finished the wolf had just a sandwich and a juice,0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and then the rabbit was : feel/ing kind of queasy.,and then the rabbit was feeling kind of queasy,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,so (um the) the wolf told him he would walk him home.,so the wolf told him he would walk him home,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,but luckily a doctor was walk/ing by.,but luckily a doctor was walking by,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,so the wolf (a) asked the doctor if he could (um) help the (uh) wolf.,so the wolf asked the doctor if he could help the wolf,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and then : (the) : the wolf : (um) brang|bring[EW:brought] the doctor over to the bunny.,and then the wolf brang the doctor over to the bunny,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and : (the) the wolf said he has faint/ed.,and the wolf said he has fainted,0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,he need/3s your help.,he needs your help,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,so (the) (the) the hare[!] doctor : said : well I will give him this medicine.,so the hare doctor said well I will give him this medicine,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,so she did.,so she did,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and he woke up.,and he woke up,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,but still he was feel/ing kind of[:_kinda] queasy.,but still he was feeling kind of queasy,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and then (he) he just took a run around the tree/s.,and then he just took a run around the trees,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,that is what (the) the doctor told him to do.,that is what the doctor told him to do,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and then he was feel/ing fine.,and then he was feeling fine,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,two best friend/s name/ed : Fluffball and Fluffy : were once play/ing : at the park.,two best friends named Fluffball and Fluffy were once playing at the park,0 0 1 4 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,(and) (and the) and Fluffball : which was *a hare : kept go/ing on about this balloon he got for be/ing the best student in his class [EU].,and Fluffball which was hare kept going on about this balloon he got for being the best student in his class,0 0 0 0 0 0 6 0 0 0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,but then : (the) the hare : said : I am go/ing to take it off and show it around.,but then the hare said I am going to take it off and show it around,0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,but the wolf said no do not!,but the wolf said no do not,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,(it) what if you let it go?,what if you let it go,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,it will fly up into the air!,it will fly up into the air,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,but the hare did not listen.,but the hare did not listen,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,so : (um) the balloon : he accidentally let it go.,so the balloon he accidentally let it go,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and it went up into the air.,and it went up into the air,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,: (the) (the um) the wolf got so mad at him : that (he) (he) (he) he said I am not your friend any more.,the wolf got so mad at him that he said I am not your friend any more,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,but then the hare saw : (some) : some balloon/s.,but then the hare saw some balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,so he went over : to the balloon guy : said I want (um) that red one right there.,so he went over to the balloon guy said I want that red one right there,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,but it was five cent/s.,but it was five cents,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,but he did not have any[!][-:] money.,but he did not have any money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,so : the guy that was sell/ing the balloon/s said sorry but you can not have this nice red balloon.,so the guy that was selling the balloons said sorry but you can not have this nice red balloon,0 0 0 0 0 6 0 1 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and then : (um) doctor Fluffball : which was Fluffball/z mom : (um : ask/ed him um) Fluffball ask/ed his mom if he could have five cent/s : because (the) : the red balloon was five cent/s.,and then doctor Fluffball which was Fluffball's mom Fluffball asked his mom if he could have five cents because the red balloon was five cents,0 0 0 0 0 0 2 0 0 4 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,so Doctor Fluffball : gave : the man five cent/s.,so Doctor Fluffball gave the man five cents,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and he got : two[!] balloon/s : for both of them.,and he got two balloons for both of them,0 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and that was that.,and that was that,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,they both got a blue and red balloon.,they both got a blue and red balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,play/ing baseball [EU].,playing baseball,6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,bounce/ing the three ball/s in the : fall[-:] [EU].,bouncing the three balls in the fall,6 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,look/ing at a : ball in the fall[-:] [EU].,looking at a ball in the fall,6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,lay/ing down in the fall try/ing to get the ball [EU].,laying down in the fall trying to get the ball,6 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,try :*to give someone the ball in the water : in the spring [EU].,try give someone the ball in the water in the spring,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,play/ing : run/ing around in the spring[-:] [EU].,playing running around in the spring,6 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,look/ing in the water in the (f) : summer [EU].,looking in the water in the summer,6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,(lookin) run/ing through the water in the summer [EU].,running through the water in the summer,6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,run/ing (in the) in the summer : on the sidewalk [EU].,running in the summer on the sidewalk,6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,get/ing hurt on the sidewalk in the : summer [EU].,getting hurt on the sidewalk in the summer,6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,get hurt in the summer cry/ing [EU].,get hurt in the summer crying,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,play/ing in the summer [EU].,playing in the summer,6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,sit/ing down on the bench in the summer [EU].,sitting down on the bench in the summer,6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,sit/ing down on the bench in the : summer [EU].,sitting down on the bench in the summer,6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,(get) someone *is get/ing mad [EU].,someone getting mad,0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,be/ing happy : in the fall[-:] [EU].,being happy in the fall,6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,play/ing in the fall with a little toy : airplane [EU].,playing in the fall with a little toy airplane,6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,play/ing with a little toy in the : fall[-:] [EU].,playing with a little toy in the fall,6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,put his airplane in the water in the fall[-:] [EU].,put his airplane in the water in the fall,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,put the water (in the) in the water in fall [EU].,put the water in the water in fall,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,put the water in *the fall [EU].,put the water in fall,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,put the water in *the fall [EU].,put the water in fall,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,and they *are happy [EU].,and they happy,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,try and get it in the water in the fall [EU].,try and get it in the water in the fall,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,sad it *is in the water in the fall [EU].,sad it in the water in the fall,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,get/ing : a net to try to get [EW:it] in the water in the fall [EU].,getting a net to try to get in the water in the fall,6 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,try to get it in the fall[-:] [EU].,try to get it in the fall,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,then kind of got it [EU].,then kind of got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,give/ing the airplane to somebody in the (f) fall [EU].,giving the airplane to somebody in the fall,6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,(givin) hold/ing the airplane in the fall [EU].,holding the airplane in the fall,6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,play/ing [EU].,playing,6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,play/ing in the sand [EU].,playing in the sand,6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,make/ing a sandcastle : with sand [EU].,making a sandcastle with sand,6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,play/ing with sand : with sand [EU].,playing with sand with sand,6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,play/ing with sand with sand [EU].,playing with sand with sand,6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,[~_sighs] play/ing with sand with sand [EU].,playing with sand with sand,6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,(uh) bring/ing food : somewhere [EU].,bringing food somewhere,6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,have/ing a picnic somewhere [EU].,having a picnic somewhere,6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,lay/ing down and eat/ing somewhere [EU].,laying down and eating somewhere,6 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,(la) lay/ing down and eat/ing somewhere [EU].,laying down and eating somewhere,6 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,play/ing somewhere [EU].,playing somewhere,6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,pull/ing somewhere [EU].,pulling somewhere,6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,play/ing somewhere [EU].,playing somewhere,6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,play/ing somewhere [EU].,playing somewhere,6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,bring/ing a cart : on the sidewalk in the spring [EU].,bringing a cart on the sidewalk in the spring,6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,take/ing a cart : somewhere in the spring [EU].,taking a cart somewhere in the spring,6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,take/ing a cart somewhere in the spring [EU].,taking a cart somewhere in the spring,6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,try/ing to get the balloon[-:] [EU].,trying to get the balloon,6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,no handle/ing [EU].,no handling,0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,and they would all go somewhere in the spring.,and they would all go somewhere in the spring,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,look/ing up (s) in the sidewalk in the spring [EU].,looking up in the sidewalk in the spring,6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,saying could I have a : balloon in the spring [EU].,saying could I have a balloon in the spring,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,see/ing what?,seeing what,6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,(ss) get/ing a balloon in the spring [EU].,getting a balloon in the spring,6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,look/ing at a : balloon [EU].,looking at a balloon,6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,(ss) look/ing they were (at a tr) at a balloon in the spring [EU].,looking they were at a balloon in the spring,6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,but they were all gone.,but they were all gone,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,walk/ing in the spring [EU].,walking in the spring,6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,(um) : look/ing at the balloon/s [EU].,looking at the balloons,6 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,pull/ing someone to that[EW:those] balloon/s in the spring [EU].,pulling someone to that balloons in the spring,6 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,(uh) : get/ing a balloon in the spring [EU].,getting a balloon in the spring,6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,walk/ing [EU].,walking,6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,once upon a time the elephant had a ball.,once upon a time the elephant had a ball,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and the giraffe like/ed it.,and the giraffe liked it,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and he decide/ed to play with it by the pool.,and he decided to play with it by the pool,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and then : he made a mistake.,and then he made a mistake,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and it falled|fall[EW:fell] in the water.,and it falled in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,(and) (and) and the elephant thought that he could not get it.,and the elephant thought that he could not get it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,but (he) he just try/ed and try/ed.,but he just tried and tried,0 0 0 4 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and he got it.,and he got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and he gave it back to the elephant.,and he gave it back to the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,so the elephant was very happy.,so the elephant was very happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,once upon a time there is[EW:was] a[EW:an] elephant and a giraffe by the diving pool.,once upon a time there is a elephant and a giraffe by the diving pool,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and the elephant ran[-:] and slip/ed.,and the elephant ran and slipped,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,I think I think that is next page [+_bch].,I think I think that is next page,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and he slip/ed[!] and got hurt.,and he slipped and got hurt,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,so the giraffe came run/ing.,so the giraffe came running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and then one of the elephant/s came to help with a bandage.,and then one of the elephants came to help with a bandage,0 0 0 0 0 1 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,(and the band) and he put the bandage on.,and he put the bandage on,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and he hurt and hurt.,and he hurt and hurt,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and she had to keep her leg out like straight in front (so) so it would not hurt when she walk/3s.,and she had to keep her leg out like straight in front so it would not hurt when she walks,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,but she had to sit there xxx.,but she had to sit there,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,what was that last bit?,what was that last bit,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,she has|have[EW:had] to sit there at the diving pool all day until it feeled|feel[EW:felt] better.,she has to sit there at the diving pool all day until it feeled better,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,: (so) : and then the big elephant said no run/ing.,and then the big elephant said no running,0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and she went [~_humming_sound].,and she went,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,that is why he got hurt.,that is why he got hurt,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,(and he said) : so she had to sit there for time out.,so she had to sit there for time out,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,that is why.,that is why,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,once upon a time there is[EW:was] a[EW:an] elephant and a giraffe.,once upon a time there is a elephant and a giraffe,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,the giraffe had a[EW:an] airplane.,the giraffe had a airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and they were at the diving pool.,and they were at the diving pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,the elephant play/ed with the airplane and watch/ed it zoom around.,the elephant played with the airplane and watched it zoom around,0 0 4 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,"and he did like [~_motor_sounds,_laughing].",and he did like,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and the elephant took it away and start/ed play/ing with it.,and the elephant took it away and started playing with it,0 0 0 0 0 0 0 4 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and then it fell in the water.,and then it fell in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and the giraffe stare/ed at it.,and the giraffe stared at it,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,what ?,what,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and the giraffe stare/ed at it [+_BCH].,and the giraffe stared at it,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and then the giraffe was very mad at the elephant that the elephant was so scare/ed [EU].,and then the giraffe was very mad at the elephant that the elephant was so scared,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,so (the beach) (the suh) (the) (the) [~_what__do_you_call_it_the_yeah] the lifeguard (he) he decide/ed to take it out.,so the lifeguard he decided to take it out,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and he try/ed to get it because the elephant said[!] so.,and he tried to get it because the elephant said so,0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,small elephant xx as tall as me[!] [EU].,small elephant as tall as me,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and then he try/ed[-:] and try/ed[-:] [+_bch].,and then he tried and tried,0 0 0 4 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and then I should not [~_?] [+_bch].,and then I should not,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,what is that last part ?,what is that last part,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,then he try/ed and try/ed.,then he tried and tried,0 0 4 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,but he could not get it.,but he could not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,so he just try/ed still.,so he just tried still,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,so he could not get it.,so he could not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and the zebra was sad[-:] so sad.,and the zebra was sad so sad,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and then there is somebody that (ha) was even a bigger elephant and try/ed to get it with her net.,and then there is somebody that was even a bigger elephant and tried to get it with her net,0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,(and she got it) : and she got it out for : their giraffe.,and she got it out for their giraffe,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,"and the giraffe was happy, very very happy.",and the giraffe was happy very very happy,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,so the elephant and the giraffe became[-:] friend/s again.,so the elephant and the giraffe became friends again,0 0 0 0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,there is so much one/s about them at the diving pool [~_laughs] [+_bch].,there is so much ones about them at the diving pool,0 0 0 0 1 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,once upon a time there was a little dog : and a little rabbit.,once upon a time there was a little dog and a little rabbit,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,they were play/ing in the sandbox.,they were playing in the sandbox,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and they builded|build[EW:built] a castle.,and they builded a castle,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and : the bunny took some : sand and put it in the bucket.,and the bunny took some sand and put it in the bucket,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and he start/ed shovel/ing it.,and he started shoveling it,0 0 4 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and then the bunny pour/ed all the sand over the sandcastle : that the dog made.,and then the bunny poured all the sand over the sandcastle that the dog made,0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and then : the bunny said oh I am sorry.,and then the bunny said oh I am sorry,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,I will not do that again.,I will not do that again,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,oh : the dog was very sad.,oh the dog was very sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,he cry/ed (h) because the bunny was not very smart.,he cried because the bunny was not very smart,0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,(and then : f) and then the bunny just : would not play with him.,and then the bunny just would not play with him,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and he standed|stand[EW:stood] still with his ear/s down like this.,and he standed still with his ears down like this,0 0 0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,once upon a time there was a bunny and a dog.,once upon a time there was a bunny and a dog,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,they were : go/ing to have a picnic with each other.,they were going to have a picnic with each other,0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and they met each other in the wood/s.,and they met each other in the woods,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,they met a what?,they met a what,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,they met a each other in the wood/s [+_bch].,they met a each other in the woods,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,the bunny brought lot/s and lot/s of junk [~_!_laughing].,the bunny brought lots and lots of junk,0 0 0 1 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,that is like all food that is bad for you : junk.,that is like all food that is bad for you junk,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,like what?,like what,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,like junk I call it when it is food that is bad for you I call it junk [+_bch].,like junk I call it when it is food that is bad for you I call it junk,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and the bunny ate so much of his junk he got sick.,and the bunny ate so much of his junk he got sick,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and he falled|fall[EW:fell] down.,and he falled down,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and he got dizzy.,and he got dizzy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and then the doggy ran to the doctor bunny : to help.,and then the doggy ran to the doctor bunny to help,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and : the doggy pull/ed him over.,and the doggy pulled him over,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and then : he start/ed work/ing on fix/ing him in case he was okay.,and then he started working on fixing him in case he was okay,0 0 0 4 6 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,well : then : he threw a thing at his head : and try/ed to (s) make him look over there.,well then he threw a thing at his head and tried to make him look over there,0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and he fix/ed him up.,and he fixed him up,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,he had to go home.,he had to go home,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,so (he) the doctor brought him to his home.,so the doctor brought him to his home,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and the doggy was very happy.,and the doggy was very happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,once upon a time : there were[EW:was] : a dog and a bunny.,once upon a time there were a dog and a bunny,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and they met each other in the wood/s.,and they met each other in the woods,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and the dog (had) : had a balloon.,and the dog had a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and the bunny came run/ing.,and the bunny came running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and a bunny (ca) took the balloon : out : of the : [~__what_do_you_call_it] the wagon [~_yeah_that_(i)s_it].,and a bunny took the balloon out of the the wagon,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and : try/ed to untie it.,and tried to untie it,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,but the dog said no.,but the dog said no,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and he would not listen.,and he would not listen,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and then the dog try/ed to catch it.,and then the dog tried to catch it,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and the bunny try/ed to catch it too.,and the bunny tried to catch it too,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,but : they just could not catch it.,but they just could not catch it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,oh and then the bunny/z dog friend got mad and made his teeth like this [~_aargh_sound].,oh and then the bunny's dog friend got mad and made his teeth like this,0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and made what?,and made what,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and made (ade) him mad [+_bch].,and made him mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,so he would be so mad : that he would just be like this stand/ing there [~_makes_angry_sound].,so he would be so mad that he would just be like this standing there,0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,then he went off to get a balloon from a balloon seller that sell/3s balloon/s.,then he went off to get a balloon from a balloon seller that sells balloons,0 0 0 0 0 0 0 0 0 0 0 0 0 3 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,he decide/ed (to) to get one.,he decided to get one,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,[~_what]?,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,(he decide/ed to get one) the bunny decide/ed to get : a balloon [+__bch].,the bunny decided to get a balloon,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,but he did not have any money for five cent/s.,but he did not have any money for five cents,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,well they were sad.,well they were sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and he did not have any balloon/s for each other because (they want/ed) then the bunny want/ed one too.,and he did not have any balloons for each other because then the bunny wanted one too,0 0 0 0 0 0 1 0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,so they went off to someone that had money.,so they went off to someone that had money,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,(and then the) (and then he) and then he bought some for them.,and then he bought some for them,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and they got (two) the two last one/s left.,and they got the two last ones left,0 0 0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and they were so happy.,and they were so happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and (they) they have been friend/s with each other all[!] day.,and they have been friends with each other all day,0 0 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,the elephant and the cow : [EU].,the elephant and the cow,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,umhm [~_long_pause] so you have told me what is in the picture can you tell me a story about it ?,umhm so you have told me what is in the picture can you tell me a story about it,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,(cow) : (elephant) cow and a[EW:an] elephant [EU].,cow and a elephant,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,umhm [~_long_pause] what is happen/ing ?,umhm what is happening,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,they are try/ing to find each other.,they are trying to find each other,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,the elephant and the cow had a[EW:an] accident with the ball[-:] .,the elephant and the cow had a accident with the ball,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and (the eleph) the cow got in there.,and the cow got in there,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,the cow got what ?,the cow got what,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,(he got in there) he got in[!] there [+_bch].,he got in there,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and the elephant got it.,and the elephant got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and the cow is still in there.,and the cow is still in there,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,(and : the cow) and (the) the cow is drip/ing.,and the cow is dripping,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and she : has the ball.,and she has the ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,there is (a slide cow and a[EW:an] elephant) : a cow and a[EW:an] elephant and a slide and a pool.,there is a cow and a elephant and a slide and a pool,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and the elephant is run/ing and slip/ing.,and the elephant is running and slipping,0 0 0 0 6 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and the sand and the cow [EU].,and the sand and the cow,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and she got hurt.,and she got hurt,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,: she got hurt on her knee.,she got hurt on her knee,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,: and it hurted|hurt[EW:hurt].,and it hurted,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,: and she can not go in the pool[-:] .,and she can not go in the pool,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and she hurt herself.,and she hurt herself,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,(uh the bo) the cow and the elephant [EU].,the cow and the elephant,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,(the cow) the elephant has a ribbon and a dress.,the elephant has a ribbon and a dress,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and[-:] the cow gots[EW:has] a[EW:an] airplane.,and the cow gots a airplane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,(and) : and (uh) she got it.,and she got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and it got[EW:went] in the water.,and it got in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and the cow was mad[-:] .,and the cow was mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and she is mad too.,and she is mad too,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,both of them are all mad.,both of them are all mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and the elephant is get/ing it.,and the elephant is getting it,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,: he try/ed and try/ed to get it.,he tried and tried to get it,0 4 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,: she gots[EW:has] a net to catch it.,she gots a net to catch it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and she is go/ing to get it with the net.,and she is going to get it with the net,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and they got it back.,and they got it back,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and they are happy.,and they are happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,the rabbit (and the d) (the d) (he) she made (a) a sandcastle.,the rabbit she made a sandcastle,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and the rabbit gots[EW:has] a shovel.,and the rabbit gots a shovel,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and the rabbit want/3s to play[-:] .,and the rabbit wants to play,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,(and the s) (and he s g) something is go/ing to happen to the sandcastle.,something is going to happen to the sandcastle,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and : it brokeded|broke[EW:broke].,and it brokeded,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and then (the) she is cry/ing.,and then she is crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,they got[EW:have] picnic basket/s [~_pronounced_/baeksIts/].,they got picnic baskets,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and they are have/ing lunch.,and they are having lunch,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,(and they are havi) and the rabbit is full.,and the rabbit is full,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and the rabbit is what?,and the rabbit is what,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,full[-:] [+_bch].,full,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,(and they are) (and) and (the) : she is hungry.,and she is hungry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,(and the[-:]) (de[-:] ) and she go/3s to another lady.,and she goes to another lady,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,: and : (sh) (she) she is go/ing to say hi.,and she is going to say hi,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and[-:] there is the rabbit/z mom.,and there is the rabbit's mom,0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,(the[-:]) there is a balloon and a wagon.,there is a balloon and a wagon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and she is carry/ing [EU].,and she is carrying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and the rabbit is not.,and the rabbit is not,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,the rabbit is what?,the rabbit is what,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,he is not carry/ing and the girl is just carry/ing it [+_bch].,he is not carrying and the girl is just carrying it,0 0 0 6 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,what did you say the rabbit was carrying?,what did you say the rabbit was carrying,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,nothing [+_bch].,nothing,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and (there) the balloon is go/ing to[:_gon(na)] be poppeded|pop[EW:popped].,and the balloon is going to be poppeded,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,: and the (rab) the rabbit is go/ing to take it off.,and the the rabbit is going to take it off,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,: and it is go/ing away.,and it is going away,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,: and it got away.,and it got away,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,: and they were go and get another one from the man [EU].,and they were go and get another one from the man,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,can you take your fingers out of your mouth then I can hear your words better?,can you take your fingers out of your mouth then I can hear your words better,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,they are pick/ing one.,they are picking one,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,: and they are go/ing to[:_gonna] give one.,and they are going to give one,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,(and : they are gon to go) the man said no.,the man said no,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,: (and) and (there is) there is the bunny/z mom.,and there is the bunny's mom,0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and : (he is) (the b) the rabbit said [~_high_pitched__voice] he will not give me a balloon.,and the rabbit said he will not give me a balloon,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and : now (it xx) he is get/ing one.,and now he is getting one,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,: and he got both : balloon/s.,and he got both balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,once upon a time.,once upon a time,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he is look/ing : apple/s [EU].,and he is looking apples,0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and the apple/s fall into a pool.,and the apples fall into a pool,0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and (uh a buddy) (a) a guy (f) is catch/ing it.,and a guy is catching it,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he get|get[EW:got] it.,and he get it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he put it back.,and he put it back,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he be happy [EU].,and he be happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,once upon a time : are walk/ing in a pool [EU].,once upon a time are walking in a pool,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he is look/ing backwards.,and he is looking backwards,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and a girl *is walk/ing [EU].,and a girl walking,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,(and a) and he stopp/ed.,and he stopped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he be worry/ed [EU].,and he be worried,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he be scared [EU].,and he be scared,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he sit|sit[EW:sat] on a bench.,and he sit on a bench,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he sit|sit[EW:sat] on a bench [~_new_page].,and he sit on a bench,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,once upon a time : out walk/ing [EU].,once upon a time out walking,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he is fly/ing a plane.,and he is flying a plane,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,(and he) and he[!] is play/ing a plane.,and he is playing a plane,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,then he drop/ed it.,then he dropped it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,gone is sink/ing [EU].,gone is sinking,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and sink/ing [EU].,and sinking,0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and sink/ing [EU].,and sinking,0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and sink/ing [EU].,and sinking,0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and sink/ing [EU].,and sinking,0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and sink/ing [EU].,and sinking,0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and sink/ing [EU].,and sinking,0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he catch|catch[EW:caught] it.,and he catch it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he put it right back on his hand/s.,and he put it right back on his hands,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he be happy [EU].,and he be happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,: you can start once upon a time.,you can start once upon a time,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,once upon a time [+_bch].,once upon a time,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,: what do you see?,what do you see,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,use words so I can hear you so my tape recorder can hear you.,use words so I can hear you so my tape recorder can hear you,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,(hm) .,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,what has happen/ed?,what has happened,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,them[EW:they] *are build/ing [EU].,them building,0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he *is throw/ing sand [EU].,and he throwing sand,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and : mess/ed all (d) up [EU].,and messed all up,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he be sad [EU].,and he be sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,: how do/3s it start?,how does it start,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,: once upon a time.,once upon a time,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,try again.,try again,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,(hm) : and he is eat/ing.,and he is eating,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he is tired.,and he is tired,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he is go/ing *to sleep [EU].,and he is going sleep,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he is run/ing.,and he is running,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he is hold/ing : his dress.,and he is holding his dress,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he : fall|fall[EW:fell] down.,and he fall down,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he walk/3s.,and he walks,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,once upon a time : [~_tells_EXA_to_turn_page].,once upon a time,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,[~_easy_xx_hm_##_hm_##_hm] : a tree.,a tree,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he *is catch/ing a balloon [EU].,and he catching a balloon,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and it pop/3s.,and it pops,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and xx want/3s the balloon/s.,and wants the balloons,0 3 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and she want/3s the balloon/s again.,and she wants the balloons again,0 0 3 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and they pop/ed.,and they popped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and they pop/ed : again.,and they popped again,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he is look/ing.,and he is looking,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he get xx.,and he get,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he be happy [EU].,and he be happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he be happy again [EU].,and he be happy again,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,There is an elephant and a giraffe (that).,There is an elephant and a giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,but the elephant is bounce/ing a ball so fast that the giraffe want/3s to try.,but the elephant is bouncing a ball so fast that the giraffe wants to try,0 0 0 0 6 0 0 0 0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(and the elephant um) (and well the elephant and the giraffe) but the giraffe is try/ing to get the ball in the water.,but the giraffe is trying to get the ball in the water,0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,so he swam.,so he swam,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(and) (and the elephant was cover/ing eyes) (his eyes) and (um) the elephant was cover/ing his eyes.,and the elephant was covering his eyes,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and his trunk was full of stuff.,and his trunk was full of stuff,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and then (h) he was happy.,and then he was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and then the giraffe was happy.,and then the giraffe was happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,then the : elephant start/ed to grab it from (the) the : giraffe/z hand/s.,then the elephant started to grab it from the giraffe's hands,0 0 0 4 0 0 0 0 0 2 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and he said thank you.,and he said thank you,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the (: um) elephant had the ball.,and the elephant had the ball,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the : giraffe was soak/ed.,and the giraffe was soaked,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,so the giraffe ask/ed him if he could bounce it.,so the giraffe asked him if he could bounce it,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(but he said) but the elephant laugh/ed.,but the elephant laughed,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and he said no.,and he said no,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,There is the giraffe and the elephant.,There is the giraffe and the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the giraffe has a kleenex.,and the giraffe has a kleenex,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and they were go/ing to go in the water.,and they were going to go in the water,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and : (um) the elephant was go/ing to go in the water.,and the elephant was going to go in the water,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,but the giraffe push/ed the elephant.,but the giraffe pushed the elephant,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and : so the elephant fell in the water.,and so the elephant fell in the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the elephant slip/ed (when) when the giraffe was : run/ing after him so he would not slip.,and the elephant slipped when the giraffe was running after him so he would not slip,0 0 0 4 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,but then the elephant : he got hurt [~_?].,but then the elephant he got hurt,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and (the giraffe) [~_well] the elephant got hurt because (um) he slip/ed.,and the elephant got hurt because he slipped,0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the giraffe was run/ing : to see (what was ran) what was wrong.,and the giraffe was running to see what was wrong,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the elephant was cry/ing.,and the elephant was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the coach came to see.,and the coach came to see,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the giraffe was just look/ing at the elephant.,and the giraffe was just looking at the elephant,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and (then the) : then the coach start/ed to put a bandaid [EU].,and then the coach started to put a bandaid,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the : elephant was cover/ing (ey) his eyes and (um) : do/ing kind of a mad [~_laughs] face.,and the elephant was covering his eyes and doing kind of a mad face,0 0 0 0 6 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the : giraffe was just look/ing.,and the giraffe was just looking,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,but : then the coach sat : the elephant down on a bench.,but then the coach sat the elephant down on a bench,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the (uh : um) giraffe was just : (um) hold/ing his hands like this [~_gestures].,and the giraffe was just holding his hands like this,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the coach was point/ing his finger.,and the coach was pointing his finger,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(and he is) and the elephant : was hold/ing : his hands right between his legs.,and the elephant was holding his hands right between his legs,0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(and then : he) and then the elephant (: um) had a kind of a mad face again.,and then the elephant had a kind of a mad face again,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,The giraffe and the elephant [EU].,The giraffe and the elephant,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and (the elephant was) [~_well] the giraffe was hold/ing the (airplane) toy airplane.,and the giraffe was holding the toy airplane,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(and then the) and the : elephant want/ed to play with him.,and the elephant wanted to play with him,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(but the) (but : he was still play/ing with it : but) [~_I__mean] the giraffe was still play/ing with it.,the giraffe was still playing with it,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and he : was : make/ing the elephant not catch it.,and he was making the elephant not catch it,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,but the : elephant finally caught it.,but the elephant finally caught it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and then he start/ed play/ing with it.,and then he started playing with it,0 0 0 4 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the giraffe was start/ing to get mad.,and the giraffe was starting to get mad,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(but the : po) but the toy plane went in the water.,but the toy plane went in the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(so the two guy) but the : giraffe and the elephant : (um) put their mouth like this [~_makes_facial_gesture].,but the giraffe and the elephant put their mouth like this,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,but then the : giraffe was really mad.,but then the giraffe was really mad,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the : elephant was ( still ga) still look/ing at the airplane.,and the elephant was still looking at the airplane,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the coach came.,and the coach came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(and the) and (he) he was look/ing at the giraffe.,and he was looking at the giraffe,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,so : (um) the elephant was tell/ing him what happen/ed.,so the elephant was telling him what happened,0 0 0 0 6 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and then (the um) the : plane start/ed to sink even more.,and then the plane started to sink even more,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(and the : the elephant) but (the elep) [~_I_mean] the coach went over to the : elephant.,but the coach went over to the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the giraffe was (um) look/ing at (the) the two : elephant/s.,and the giraffe was looking at the two elephants,0 0 0 0 6 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the elephant was : scream/ing his head off.,and the elephant was screaming his head off,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and he was tell/ing the coach what happen/ed.,and he was telling the coach what happened,0 0 0 6 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,but the coach had to grab it before it sank all to the bottom.,but the coach had to grab it before it sank all to the bottom,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,but he could not reach it.,but he could not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the : giraffe was start/ing to cry.,and the giraffe was starting to cry,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,but this other elephant : came with a net and try/ed to get it.,but this other elephant came with a net and tried to get it,0 0 0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the (um) plane was started[EW:starting] to sinking[EW:sink] more.,and the plane was started to sinking more,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,but he still could not reach it.,but he still could not reach it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,but he finally got it.,but he finally got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and he gave it back to the giraffe.,and he gave it back to the giraffe,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(now : the) now the giraffe and the elephant (were happily) were happy.,now the giraffe and the elephant were happy,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,There is a bunny rabbit and a dog : make/ing a sandcastle.,There is a bunny rabbit and a dog making a sandcastle,0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(there is the bunny and the dog that : um : are :) (um : well) the bunny rabbit is dig/ing the sand up.,the bunny rabbit is digging the sand up,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the : dog is : (um) make/ing the sandcastle smoother.,and the dog is making the sandcastle smoother,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the bunny rabbit was pour/ing sand all over the sandcastle.,and the bunny rabbit was pouring sand all over the sandcastle,0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,so the dog was : (um) : start/ing to (s um) (uh) get sad.,so the dog was starting to get sad,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(but the) but half of the : sandcastle was left.,but half of the sandcastle was left,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,then the : dog (is) was start/ing to cry.,then the dog was starting to cry,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and he was start/ing to make it all over again.,and he was starting to make it all over again,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,There is a : bunny rabbit and a dog that : are go/ing to[:_gonna] have lunch together.,There is a bunny rabbit and a dog that are going to have lunch together,0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,there is a bunny and a dog that are : have/ing[!] lunch.,there is a bunny and a dog that are having lunch,0 0 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,there is the bunny and the dog.,there is the bunny and the dog,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(but the bunny) (but) but the (bu) dog is eat/ing.,but the dog is eating,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(and the bunny is) (and the bunny is chew) and the bunny is sick.,and the bunny is sick,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,the bunny : (um is) : does not feel good.,the bunny does not feel good,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the : dog does feel good.,and the dog does feel good,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,there is a : bunny and a dog.,there is a bunny and a dog,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,but the (bu) bunny is a mess.,but the bunny is a mess,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(and the bunny is go/ing to : well) the dog is go/ing to tell the other bunny that : (um) he has to : fix him.,the dog is going to tell the other bunny that he has to fix him,0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,but he pull/ed him because he will not [EU].,but he pulled him because he will not,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and he made him worse.,and he made him worse,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and then the bunny felt good.,and then the bunny felt good,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the : dog was just : by the sandbox.,and the dog was just by the sandbox,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,There is a bunny and a dog.,There is a bunny and a dog,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(and) but the dog (s) has a balloon on his wagon.,but the dog has a balloon on his wagon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and he is pull/ing the wagon.,and he is pulling the wagon,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the bunny : rabbit : seen|see[EW:saw] the balloon.,and the bunny rabbit seen the balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and (he) he was go/ing to[:_gonna] not : try to take the balloon off [EU].,and he was going to not try to take the balloon off,0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,but the dog did not want him to.,but the dog did not want him to,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the balloon (fl) flew away.,and the balloon flew away,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and both of them were try/ing to catch it.,and both of them were trying to catch it,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(the bunny rabbit : the dog) but the dog was (rea) really mad at him.,but the dog was really mad at him,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(the : rabbit was) [~_well] there is a big rabbit that : had a lot of balloon/s.,there is a big rabbit that had a lot of balloons,0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(and the bunny rabbit) (but) (and the dog) but the dog was still mad.,but the dog was still mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the (w) bunny rabbit went to get another one.,and the bunny rabbit went to get another one,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and he asked the man that has all the balloon/s : could I have one?,and he asked the man that has all the balloons could I have one,0 0 0 0 0 0 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,but they were only five cent/s.,but they were only five cents,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and he did not have five cent/s.,and he did not have five cents,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,"and then he said : if you do not have five cent/s, you can not (um) take a balloon.",and then he said if you do not have five cents you can not take a balloon,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,then the : dog and the bunny (ra) rabbit seen|see[EW:saw] the doctor.,then the dog and the bunny rabbit seen the doctor,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the bunny rabbit ran.,and the bunny rabbit ran,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,but the : dog stay/ed.,but the dog stayed,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the : bunny rabbit said I want one of those balloon/s.,and the bunny rabbit said I want one of those balloons,0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and he will not give me it.,and he will not give me it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(then he : um) and the doctor had a lot of money.,and the doctor had a lot of money,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,so he gave him most of his money.,so he gave him most of his money,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and : there is[Ew:are] only two left because (the bunny rab) the dog took most of them.,and there is only two left because the dog took most of them,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and (the bunny and the wa) (the bunny and the wa) [~_I__mean] the bunny and the dog had (the two balloo) the balloon/s.,and the bunny and the dog had the balloons,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(and the) (then they went) and both of them were really happy.,and both of them were really happy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,[~_Well] (a giraffe and a) a giraffe is watch/ing (a) an elephant : juggle : a ball.,a giraffe is watching an elephant juggle a ball,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and : the ball get/3s stuck in (some wa) (cement or) a pool.,and the ball gets stuck in a pool,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the horse is swim/ing in to get it.,and the horse is swimming in to get it,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and : he give/3s : the elephant (the balloon) the : ball.,and he gives the elephant the ball,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and then he step/3s : out.,and then he steps out,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and he is wet.,and he is wet,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the : elephant is happy.,and the elephant is happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,(Well an ele) an elephant and giraffe are look/ing at the pool.,an elephant and giraffe are looking at the pool,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,(and there is) and there is something behind a rock or something else.,and there is something behind a rock or something else,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and it look/3s like bunny ear/s.,and it looks like bunny ears,0 0 3 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the elephant is talk/ing about the bunny ear/s.,and the elephant is talking about the bunny ears,0 0 0 0 6 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,(and they run) and they run to see him.,and they run to see him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and then the elephant do/3s a stretch.,and then the elephant does a stretch,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,(and) and then there is a swipe and hurt/3s her knee [EU].,and then there is a swipe and hurts her knee,0 0 0 0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and then xx her knee.,and then her knee,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the giraffe is come/ing after [EU].,and the giraffe is coming after,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and a lifeguard come/3s over to them.,and a lifeguard comes over to them,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and he is put/ing a bandaid on the knee.,and he is putting a bandaid on the knee,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and then they sit in a bench.,and then they sit in a bench,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the lifeguard is point/ing to a sign that says no run/ing.,and the lifeguard is pointing to a sign that says no running,0 0 0 0 6 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,[~_Well] there is a giraffe : and a[EW:an] elephant by a pool.,there is a giraffe and a elephant by a pool,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the : (gir) giraffe has an airplane.,and the giraffe has an airplane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and he is fly/ing it around in his hand.,and he is flying it around in his hand,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and suddenly the elephant grab/3s (the) the airplane : and drop/3s it in the pool.,and suddenly the elephant grabs the airplane and drops it in the pool,0 0 0 0 3 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and it is sink/ing.,and it is sinking,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the giraffe is mad at the elephant.,and the giraffe is mad at the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the lifeguard is look/ing at them both and the airplane.,and the lifeguard is looking at them both and the airplane,0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the elephant is tell/ing the : lifeguard about (what) what happen/ed.,and the elephant is telling the lifeguard about what happened,0 0 0 0 6 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the lifeguard is : reach/ing to get the airplane.,and the lifeguard is reaching to get the airplane,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,but he can not (reach it) quite reach it.,but he can not quite reach it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the : giraffe is : (like) pant/ing.,and the giraffe is panting,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and : the elephant is (um : kind) kind of nervous or : sad.,and the elephant is kind of nervous or sad,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,the lifeguard kind of has a smell.,the lifeguard kind of has a smell,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and his ear/s are go/ing up.,and his ears are going up,0 0 1 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and then (a) (an ele) a girl elephant come/3s along with a net.,and then a girl elephant comes along with a net,0 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and she net/3s the airplane out.,and she nets the airplane out,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and she give/3s (it) it to the giraffe.,and she gives it to the giraffe,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and then (the gir) the giraffe hug/3s the airplane.,and then the giraffe hugs the airplane,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,a rabbit and a mouse are play/ing in the sand.,a rabbit and a mouse are playing in the sand,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and they are build/ing a sandcastle.,and they are building a sandcastle,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,(with) and the rabbit is fill/ing : a bucket.,and the rabbit is filling a bucket,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the mouse is flatten/ing the castle.,and the mouse is flattening the castle,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and then the rabbit he pour/3s the : sand on the castle.,and then the rabbit he pours the sand on the castle,0 0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the mouse has a kind of a whiny face because : he is surprise/ed he is do/ing that.,and the mouse has a kind of a whiny face because he is surprised he is doing that,0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and he wreck/3s the sandcastle [~_laughs].,and he wrecks the sandcastle,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,(and then they) and now they are build/ing it again.,and now they are building it again,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,[~_well] : (um) a mouse and rabbit are go/ing for a picnic.,a mouse and rabbit are going for a picnic,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and : they are at their picnic eat/ing the food.,and they are at their picnic eating the food,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the rabbit is very hot because he look/3s hot.,and the rabbit is very hot because he looks hot,0 0 0 0 0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,(and) and the rabbit is full.,and the rabbit is full,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the mouse is : drink/ing juice.,and the mouse is drinking juice,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the rabbit is like : really full.,and the rabbit is like really full,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and then there is a doctor rabbit.,and then there is a doctor rabbit,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the mouse is : run/ing over to him.,and the mouse is running over to him,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the mouse is pull/ing him over.,and the mouse is pulling him over,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and he see/3s the rabbit.,and he sees the rabbit,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and (his) (his) his stomach is really full.,and his stomach is really full,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and then he take/3s him off to the doctor/z [~_laughs].,and then he takes him off to the doctor's,0 0 0 3 0 0 0 0 2 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,[~_Well] a mouse : went to a party : (he) because it look/3s pretty.,a mouse went to a party because it looks pretty,0 0 0 0 0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,(much like) there is a party balloon.,there is a party balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the rabbit is look/ing at the balloon.,and the rabbit is looking at the balloon,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the rabbit is try/ing to untie it.,and the rabbit is trying to untie it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and : he untie/3s it and accidentally let/3s go.,and he unties it and accidentally lets go,0 0 3 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the balloon is float/ing away.,and the balloon is floating away,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and then they are in a big : fit.,and then they are in a big fit,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,[~_well] : the mouse is really mad.,the mouse is really mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the rabbit is like terrifyed because the balloon (fel) float/ed away.,and the rabbit is like terrifyed because the balloon floated away,0 0 0 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and then they see : a rabbit sell/ing balloon/s.,and then they see a rabbit selling balloons,0 0 0 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and : the rabbit is point/ing to the balloon up in the sky.,and the rabbit is pointing to the balloon up in the sky,0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,(and) : and : the : (um) rabbit show/3s him a balloon.,and the rabbit shows him a balloon,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and it say/3s balloon/s five cent/s.,and it says balloons five cents,0 0 3 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the rabbit is look/ing in his pocket/s for five cent/s.,and the rabbit is looking in his pockets for five cents,0 0 0 0 6 0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and (the) (the man) the rabbit is hold/ing the balloon/s.,and the rabbit is holding the balloons,0 0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the mouse and : rabbit are look/ing at him.,and the mouse and rabbit are looking at him,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,(and then th) and the mouse (is) stay/s (behind) (aside) beside the balloon man.,and the mouse stays beside the balloon man,0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,the rabbit go/3s to get the doctor : (uh) rabbit again.,the rabbit goes to get the doctor rabbit again,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and he say/3s there is a balloon man.,and he says there is a balloon man,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and : we do not have any money.,and we do not have any money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,(and the um : doctor) and the doctor rabbit is give/ing (the) (the b) : the balloon man some money : so they can have the balloon.,and the doctor rabbit is giving the balloon man some money so they can have the balloon,0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and then they get the balloon/s.,and then they get the balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and everybody is smile/ing.,and everybody is smiling,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,one[-:] day[-:] : some kid/s were[-:] at a swimming pool.,one day some kids were at a swimming pool,0 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,one of the kid/s had a[-:] big bouncy ball.,one of the kids had a big bouncy ball,0 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,the other kid want/ed to try it.,the other kid wanted to try it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,he accidentally drop/ed it into the water.,he accidentally dropped it into the water,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,the other kid was scare/ed that it would go to the bottom.,the other kid was scared that it would go to the bottom,0 0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,so[-:] the kid that drop/ed it went into the pool and got it.,so the kid that dropped it went into the pool and got it,0 0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,the other friend : said thank you.,the other friend said thank you,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,: and the other friend gave the[-:] : other kid : her ball back.,and the other friend gave the other kid her ball back,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,one day some kid/s went to a swimming pool.,one day some kids went to a swimming pool,0 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,one of the kid/s said let us jump in!,one of the kids said let us jump in,0 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,the kid : want/ed to jump in.,the kid wanted to jump in,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,but she[-:] slip/ed.,but she slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,and she fell on the ground and scrape/ed her knee.,and she fell on the ground and scraped her knee,0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,then the lifeguard came to help her.,then the lifeguard came to help her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,he put a bandaid on.,he put a bandaid on,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,they sat her down on the bench : to rest for a while.,they sat her down on the bench to rest for a while,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,then the lifeguard point/ed to a sign that says no run/ing.,then the lifeguard pointed to a sign that says no running,0 0 0 4 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,one day two kid/s were play/ing by a swimming pool.,one day two kids were playing by a swimming pool,0 0 0 1 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,one of the kid/s had brought an airplane to play with.,one of the kids had brought an airplane to play with,0 0 0 1 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,they were play/ing with it.,they were playing with it,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,and the other kid snatch/ed it from their hand/s.,and the other kid snatched it from their hands,0 0 0 0 4 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,and she accidentally drop/ed it in the water.,and she accidentally dropped it in the water,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,the other friend got really mad at her.,the other friend got really mad at her,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,the airplane was sink/ing : more : into the water.,the airplane was sinking more into the water,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,(then the k) then the kid who put it in the water by accident : said : to the lifeguard the airplane got drop/ed in the water!,then the kid who put it in the water by accident said to the lifeguard the airplane got dropped in the water,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,the lifeguard try/ed to reach it with his hand/s.,the lifeguard tried to reach it with his hands,0 0 4 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,but his arm/s were too short.,but his arms were too short,0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,the other kid who had brought the airplane start/ed cry/ing.,the other kid who had brought the airplane started crying,0 0 0 0 0 0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,then : one of the people who were[EW:was] swim/ing saw the airplane : and got out of the pool got a : fish/ing net and : told them that : they would get the airplane for them.,then one of the people who were swimming saw the airplane and got out of the pool got a fishing net and told them that they would get the airplane for them,0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,(they) they reach/ed into the water.,they reached into the water,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,and[-:] (sh) she got the airplane caught in the net.,and she got the airplane caught in the net,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,and she gave the airplane to the kid who brought it.,and she gave the airplane to the kid who brought it,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,and that kid kept it : and did not let other kid/s play with it by the pool.,and that kid kept it and did not let other kids play with it by the pool,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,one day two friend/s were in a sandbox play/ing together.,one day two friends were in a sandbox playing together,0 0 0 1 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,they were build/ing a sandcastle.,they were building a sandcastle,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,one of the[-:] kid/s : dump/ed a bucket of sand on one end of the castle.,one of the kids dumped a bucket of sand on one end of the castle,0 0 0 1 4 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,and that end collapse/ed.,and that end collapsed,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,and the other friend : start/ed cry/ing.,and the other friend started crying,0 0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,one day two friend/s were go/ing for a picnic.,one day two friends were going for a picnic,0 0 0 1 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,one of the[-:] : friend/s ate[-:] : too much.,one of the friends ate too much,0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,when they were done they had a big tummyache.,when they were done they had a big tummyache,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,: and they really want/ed to go home.,and they really wanted to go home,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,so one of the friend/s : went : to see a doctor.,so one of the friends went to see a doctor,0 0 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,they pull/ed the doctor by his sleeve to bring him over to the other friend.,they pulled the doctor by his sleeve to bring him over to the other friend,0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,the doctor said do not eat so much next time you have a picnic.,the doctor said do not eat so much next time you have a picnic,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,and the doctor took : the other friend to his house.,and the doctor took the other friend to his house,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,one day in the forest two friend/s : were walk/ing.,one day in the forest two friends were walking,0 0 0 0 0 0 1 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,one of the[-:] friend/s had a wagon with a balloon tie/ed to it.,one of the friends had a wagon with a balloon tied to it,0 0 0 1 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,one of the friend/s want/ed : to touch it.,one of the friends wanted to touch it,0 0 0 1 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,(so they a) so they took it off the wagon.,so they took it off the wagon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,pretty soon it : almost touch/ed the sky.,pretty soon it almost touched the sky,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,and the other friend was mad at him.,and the other friend was mad at him,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,and the string was only left.,and the string was only left,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,so : the other : friend : got really really really mad at him.,so the other friend got really really really mad at him,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,so they both went to a balloon guy.,so they both went to a balloon guy,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,the balloon guy said do you want to buy a balloon?,the balloon guy said do you want to buy a balloon,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,and then he also said five cent/s a balloon.,and then he also said five cents a balloon,0 0 0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,and the rabbit : reach/ed into his pocket/s.,and the rabbit reached into his pockets,0 0 0 4 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,but they were empty.,but they were empty,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,so[-:] the friend/s : just look/ed at him.,so the friends just looked at him,0 0 1 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,then one of the friend/s went to a doctor : and said : that guy is not let/ing us have a balloon!,then one of the friends went to a doctor and said that guy is not letting us have a balloon,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,and then the doctor gave him five cent/s.,and then the doctor gave him five cents,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,and they[-:] : got a balloon.,and they got a balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,and (the) then the doctor paid another five cent/s for the other friend.,and then the doctor paid another five cents for the other friend,0 0 0 0 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,and he got a balloon too.,and he got a balloon too,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,and[-:] then : they both play/ed with their balloon/s all day.,and then they both played with their balloons all day,0 0 0 0 4 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,elephant [EU].,elephant,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,zebra [EU].,zebra,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,what happen/3s in the story?,what happens in the story,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,(ze) zebra [EU].,zebra,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,ball [EU].,ball,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,zebra and elephant [EU].,zebra and elephant,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,(ze : um) elephant and zebra and ball [EU].,elephant and zebra and ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,zebra and the[?] ball (an) : and the[?] elephant [EU].,zebra and the ball and the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,zebra and the elephant and the ball [EU].,zebra and the elephant and the ball,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,[~_um_why_I_need_this] (um) elephant and zebra [EU].,elephant and zebra,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,elephant and zebra [EU].,elephant and zebra,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,elephant and zebra [EU].,elephant and zebra,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,(owie and uh) (owie) elephant has a[EW:an] owie.,elephant has a owie,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,and the zebra do|do[EW:does] not has|have[EW:have] a[EW:an] owie.,and the zebra do not has a owie,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,there is[EW:are] two elephant/s.,there is two elephants,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,zebra [EU].,zebra,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,two elephant[EW:elephants] [EU].,two elephant,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,two elephant/s and zebra [EU].,two elephants and zebra,0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,two elephant/s and zebra [EU].,two elephants and zebra,0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,two (ele) elephant/s (st) [EU].,two elephants,0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,no zebra [EU].,no zebra,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,elephant and zebra [EU].,elephant and zebra,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,(uh) : elephant and zebra [EU].,elephant and zebra,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,airplane [EU].,airplane,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,(uh) elephant and zebra : airplane [EU].,elephant and zebra airplane,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,elephant and zebra airplane [EU].,elephant and zebra airplane,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,(uh) it is on [+_bch].,it is on,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,what is that sound [+_bch]?,what is that sound,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,what is that sound in there [+_bch]?,what is that sound in there,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,(um) elephant and zebra and : airplane [EU].,elephant and zebra and airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,elephant and zebra [EU].,elephant and zebra,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,elephant and zebra [EU].,elephant and zebra,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,two : elephant/s and zebra [EU].,two elephants and zebra,0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,elephant and zebra and airplane [EU].,elephant and zebra and airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,elephant and zebra [EU].,elephant and zebra,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,elephant and zebra [EU].,elephant and zebra,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,elephant and zebra [EU].,elephant and zebra,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,elephant and zebra [EU].,elephant and zebra,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,elephant and zebra [EU].,elephant and zebra,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,elephant and zebra [EU].,elephant and zebra,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,bunny [EU].,bunny,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,what happen/3s in the story?,what happens in the story,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,(um) sandcastle [EU].,sandcastle,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,sandcastle [EU].,sandcastle,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,sandcastle and puppy and bunny [EU].,sandcastle and puppy and bunny,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,(sandcastle and bun) (uh : san) sandcastle and : (dog) doggy and rabbit [EU].,sandcastle and doggy and rabbit,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,bunny [EU].,bunny,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,*the sandcastle breaked|break[EW:broke] [EU].,sandcastle breaked,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,a sandcastle breaked|break[EW:broke].,a sandcastle breaked,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,they are make/ing it again.,they are making it again,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,(um) basket [EU].,basket,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,puppy and : rabbit [EU].,puppy and rabbit,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,carrot [EU].,carrot,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,I said a carrot that is it [+_bch].,I said a carrot that is it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,drink [EU].,drink,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,(pa) basket [EU].,basket,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,sandwich [EU].,sandwich,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,juice [EU].,juice,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,I said juice [+_bch].,I said juice,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,: what happen/3s in the story?,what happens in the story,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,(um) tree [EU].,tree,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,tree [EU].,tree,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,(tr) : tree [EU].,tree,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,tree [EU].,tree,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,tree [EU].,tree,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,(uh) balloon [EU].,balloon,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,balloon [EU].,balloon,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,balloon [EU].,balloon,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,what happen/3s in the story?,what happens in the story,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,balloon [EU].,balloon,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,balloon [EU].,balloon,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,fly away balloon.,fly away balloon,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,(t) pop/ed the balloon [EU].,popped the balloon,4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,lot/s of balloon/s [EU].,lots of balloons,1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,lot/s of balloon/s [EU].,lots of balloons,1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,lot/s of balloon/s [EU].,lots of balloons,1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,five balloon[EW:balloons] [EU].,five balloon,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,lot/s of balloon/s [EU].,lots of balloons,1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,I said lot/s of balloon/s [+_bch].,I said lots of balloons,0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,lot/s of balloon/s [EU].,lots of balloons,1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,yeah (uh) : lot/s of balloon/s [EU].,yeah lots of balloons,0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,let us count the balloon/s (in here) in this picture.,let us count the balloons in this picture,0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,[~_counts_balloons:_1_2_3_4_6_7_8_9].,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,there is[EW:are] nine.,there is nine,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,two : balloon/s [EU].,two balloons,0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,there is[EW:are] two balloon/s.,there is two balloons,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,none[EW:no] balloon[EW:balloons] [EU].,none balloon,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,one balloon [EU].,one balloon,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,(two ba) the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,(um) the : (uh[-:]) : giraffe (s come/3s : to see uh) come/3s (on) : to swim in the water.,the giraffe comes to swim in the water,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then there is an elephant.,and then there is an elephant,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then (um) she is bounce/ing a ball.,and then she is bouncing a ball,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and (he um) he is ask/ing to play[-:] with her.,and he is asking to play with her,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,they play volleyball.,they play volleyball,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and : (um) it actually falled|fall[EW:fell] in the water by accident.,and it actually falled in the water by accident,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,(he was go/ing to go in the sw) he was go/ing to swim to get it.,he was going to swim to get it,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then he (swan[-:]) swam in.,and then he swam in,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then : the[-:] elephant had (um) her hand/s over her eye/s.,and then the elephant had her hands over her eyes,0 0 0 0 0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and he had a mad face : cause he knew he could get it.,and he had a mad face cause he knew he could get it,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and : (um : the[-:]) : he got it.,and he got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,he gave it back to the elephant.,he gave it back to the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then the elephant : (um) was go/ing to fall in love with the giraffe.,and then the elephant was going to fall in love with the giraffe,0 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,(um) they want/ed to go for a swim.,they wanted to go for a swim,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and : she want/ed to try the diving board.,and she wanted to try the diving board,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,she did not see (um[-:]) no run/ing.,she did not see no running,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,(she was gon) she was run/ing.,she was running,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and the[-:] (um[-:]) (ele) giraffe said (um) you : better not run it because he saw the sign.,and the giraffe said you better not run it because he saw the sign,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,but he did not tell the elephant.,but he did not tell the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and (she did not) she did not hear him.,and she did not hear him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then she slip/ed[-:].,and then she slipped,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,she was run/ing to get her.,she was running to get her,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,then she got a big owie.,then she got a big owie,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,she was cry/ing.,she was crying,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then the lifeguard came over : and gave her a bandage.,and then the lifeguard came over and gave her a bandage,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,she was scare/ed[-:].,she was scared,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and now he said there (um) you have a bandaid now.,and now he said there you have a bandaid now,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and (he was m) the lifeguard was mad.,and the lifeguard was mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,don not run.,don not run,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,did not you see the sign[-:] [EU].,did not you see the sign,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,(uh um the[-:]) : (a gir) the giraffe was walk/ing.,the giraffe was walking,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then (um[-:]) a elephant came.,and then a elephant came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and she want/ed to play with his (um) airplane.,and she wanted to play with his airplane,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,they were take/ing turn/s.,they were taking turns,0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,(the um) : he was play/ing with it.,he was playing with it,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and : (um[-:]) the[-:] elephant was curious that it would go in the water [EU].,and the elephant was curious that it would go in the water,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then she took it away.,and then she took it away,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then it land/ed in the water.,and then it landed in the water,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and (th) he was mad at her.,and he was mad at her,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,(she wa) she was curious what she could (um) do about it [EU].,she was curious what she could do about it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,then the lifeguard came.,then the lifeguard came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,(a) and : he saw that it was in the water.,and he saw that it was in the water,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,the giraffe told him that (um th) the elephant was (took) take/ing it away and threw it in the water [EU].,the giraffe told him that the elephant was taking it away and threw it in the water,0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then she said : I did not do it.,and then she said I did not do it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and (he did it by ac) he did it on purpose.,and he did it on purpose,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then (he was) the lifeguard was curious.,and then the lifeguard was curious,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and he was try/ing to reach it.,and he was trying to reach it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,they were both curious that he could get it [EU].,they were both curious that he could get it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then it was start/ing to sink more.,and then it was starting to sink more,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then a girl[-:] came with a net.,and then a girl came with a net,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then she scoop/ed it out : and gave it back to (um) the : (uh) giraffe.,and then she scooped it out and gave it back to the giraffe,0 0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then she said here have your airplane back.,and then she said here have your airplane back,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and he said thank/3s for get/ing it.,and he said thanks for getting it,0 0 0 3 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and[-:] : they fell in love again [~_laughs].,and they fell in love again,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,(um) a girl was build/ing a sandcastle.,a girl was building a sandcastle,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,the[-:] (um) bunny want/ed to play with her.,the bunny wanted to play with her,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and (he) : they dump/ed some sand.,and they dumped some sand,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,she was pat/ing it down.,she was patting it down,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then he put some sand on it.,and then he put some sand on it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and (um) it broke.,and it broke,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then (um) he said oh no.,and then he said oh no,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and she : (um) said it is okay.,and she said it is okay,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and (he was) : she : was cry/ing.,and she was crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,she was try/ing to make it again.,she was trying to make it again,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,(um) a boy and a girl was[EW:were] walk/ing along.,a boy and a girl was walking along,0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and they were go/ing for a picnic with each other.,and they were going for a picnic with each other,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,he was eat/ing a lot of his [EU].,he was eating a lot of his,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and he had a lot of junk.,and he had a lot of junk,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,he got so full.,he got so full,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and he was get/ing sick[-:].,and he was getting sick,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and he said I need a (docor he) doctor.,and he said I need a doctor,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,(he) he felt dizzy.,he felt dizzy,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,she was go/ing to[:_gonna] phone a doctor.,she was going to phone a doctor,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then : (um she) : there is a doctor walk/ing along.,and then there is a doctor walking along,0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then (um) she ran up to him.,and then she ran up to him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,she said (um) : my friend : he : has a stomachache.,she said my friend he has a stomachache,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,he is dizzy.,he is dizzy,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,he ate too much of junk [EU].,he ate too much of junk,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and[-:] he said no.,and he said no,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and she said come on come on.,and she said come on come on,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,please help me.,please help me,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then she said yes.,and then she said yes,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and : (um : he) he said you are dizzy.,and he said you are dizzy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,your temperature is five[-:].,your temperature is five,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,now he is okay.,now he is okay,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and he went with the doctor home.,and he went with the doctor home,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,(um : she) a girl was walk/ing along.,a girl was walking along,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and a boy was walk/ing just for : a jog.,and a boy was walking just for a jog,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and : then she *is just walk/ing[-:] with a balloon tie/ed to her wagon [EU].,and then she just walking with a balloon tied to her wagon,0 0 0 0 6 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and : he want/ed to play with it.,and he wanted to play with it,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and she said no.,and she said no,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and he was tie/ing it off the wheel.,and he was tying it off the wheel,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then it float/ed up in the air.,and then it floated up in the air,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then she was really mad at him.,and then she was really mad at him,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,he was scare/ed.,he was scared,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,he look/ed at the balloon.,he looked at the balloon,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then : (they both s) : she was still angry at him.,and then she was still angry at him,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and he saw a balloon[-:] guy.,and he saw a balloon guy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and he said can I have one of those balloon/s?,and he said can I have one of those balloons,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and : you have to pay five cent/s.,and you have to pay five cents,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and[-:] they both want/ed one.,and they both wanted one,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,(she) he was curious that : (um) she was go/ing to[:__gonna] be really mad at him again [EU].,he was curious that she was going to be really mad at him again,0 0 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and : (um) he went to (hi) : his mom.,and he went to his mom,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and he was go/ing to (ask him) : ask her if he could have five cent/s.,and he was going to ask her if he could have five cents,0 0 0 6 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and[-:] : (uh) : she said yes.,and she said yes,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and (she le) (he letted|let[EW:let]) : (he) she gave (um) five cent/s to him.,and she gave five cents to him,0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and[-:] they both were happy that they (got a) both got a balloon.,and they both were happy that they both got a balloon,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and they would not share theirs again.,and they would not share theirs again,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and the mom (wa ha) was happy too.,and the mom was happy too,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,(um) once upon a time there was a[EW:an] elephant.,once upon a time there was a elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and she was bounce/ing three ball/s.,and she was bouncing three balls,0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and giraffe came.,and giraffe came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,(and she try) and he want/ed to try.,and he wanted to try,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and the elephant said okay.,and the elephant said okay,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then : the giraffe said I can not do it.,and then the giraffe said I can not do it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and (then one ball wen) then all three ball/s went into the : water.,and then all three balls went into the water,0 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then the elephant and the giraffe said oh no.,and then the elephant and the giraffe said oh no,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then the giraffe went : splash/ing in the water to get all three ball/s.,and then the giraffe went splashing in the water to get all three balls,0 0 0 0 0 6 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then : the elephant got one ball.,and then the elephant got one ball,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,(and then he wa happ) and then she was happy.,and then she was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,(um) once upon a time there was a little : giraffe.,once upon a time there was a little giraffe,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and he want/ed to go swim/ing.,and he wanted to go swimming,0 0 4 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,[~_well] he was try/ing to go in the diving board [EU].,he was trying to go in the diving board,0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and he was scare/ed.,and he was scared,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then the elephant said I will try it out.,and then the elephant said I will try it out,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then : she was run/ing.,and then she was running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then the giraffe was slow/ing down.,and then the giraffe was slowing down,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then (n the) the elephant (stub/ed her) hurt her knee.,and then the elephant hurt her knee,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,then : the lifeguard came.,then the lifeguard came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then : the lifeguard put a bandaid on her knee.,and then the lifeguard put a bandaid on her knee,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then : she was on a bench.,and then she was on a bench,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then : [~_stern_voice] he put her on a timeout.,and then he put her on a timeout,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,that is it [+_bch].,that is it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,(um) once upon a time there was a little giraffe : and a little elephant.,once upon a time there was a little giraffe and a little elephant,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,(and) and the little giraffe was go/ing to throw his plane.,and the little giraffe was going to throw his plane,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,[~_well] he thought it was go/ing to go in the water.,he thought it was going to go in the water,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,then he try/ed.,then he tried,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then he try/ed.,and then he tried,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,[~_well] he did not let go.,he did not let go,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then the elephant took it away.,and then the elephant took it away,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then she threw it in the water.,and then she threw it in the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,then the giraffe was mad.,then the giraffe was mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,then the lifeguard came.,then the lifeguard came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then he said you were on another timeout : for the elephant.,and then he said you were on another timeout for the elephant,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then the lifeguard said : I do not know if you should have a timeout.,and then the lifeguard said I do not know if you should have a timeout,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then the lifeguard was go/ing to : try to reach it.,and then the lifeguard was going to try to reach it,0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,[~_well] he did not reach it.,he did not reach it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,: then he did not know.,then he did not know,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then the giraffe was start/ing to cry.,and then the giraffe was starting to cry,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,then this lady : elephant : came.,then this lady elephant came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and she got a net.,and she got a net,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and she was go/ing : to get it with the net.,and she was going to get it with the net,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then the lady : almost got it.,and then the lady almost got it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then she got[!] it.,and then she got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then : the giraffe was happy.,and then the giraffe was happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,once upon a (tame) time there was a little rabbit and a little dog.,once upon a time there was a little rabbit and a little dog,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and the little dog (that was mak) it was make/ing : a sandcastle.,and the little dog it was making a sandcastle,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and the rabbit join/ed in.,and the rabbit joined in,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then (h) the rabbit try/ed to do it.,and then the rabbit tried to do it,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,well he did not get it right.,well he did not get it right,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then he dump/ed it on top.,and then he dumped it on top,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,(and then it did not) and the dog/z eye/s went crazy.,and the dog's eyes went crazy,0 0 2 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then the dog : his mouth (was) (he was kind of) it was kind of : crazy.,and then the dog his mouth it was kind of crazy,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then it was try/ing to make it back.,and then it was trying to make it back,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,well it did not.,well it did not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,once upon a (tame) time there was a little rabbit and a little : (um) dog.,once upon a time there was a little rabbit and a little dog,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then (they wer) they were go/ing for a picnic.,and then they were going for a picnic,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and the rabbit said hello.,and the rabbit said hello,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,would you like to : join my picnic?,would you like to join my picnic,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,well the dog said no thank you.,well the dog said no thank you,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,I will enjoy my picnic.,I will enjoy my picnic,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then the rabbit was eat/ing all it/z stuff that it brought.,and then the rabbit was eating all it's stuff that it brought,0 0 0 0 0 6 0 2 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then he was get/ing so hot (that he) (that it : was get) that it was burn/ing.,and then he was getting so hot that it was burning,0 0 0 0 6 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then he was very fat.,and then he was very fat,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then he was go/ing crazy.,and then he was going crazy,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,(and then he saw) and (then she[!] saw) then the puppy saw a doctor.,and then the puppy saw a doctor,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,(and then) and then she was bring/ing the : doctor to the rabbit.,and then she was bringing the doctor to the rabbit,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then (sh) that rabbit saw the other rabbit.,and then that rabbit saw the other rabbit,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then : it took (it) that little rabbit to the doctor/z.,and then it took that little rabbit to the doctor's,0 0 0 0 0 0 0 0 0 2 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,that is the end [+_bch].,that is the end,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,once upon a time there was a little rabbit and a little dog.,once upon a time there was a little rabbit and a little dog,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then the little : rabbit want/ed to have the balloon.,and then the little rabbit wanted to have the balloon,0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then : it almost took it.,and then it almost took it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then he did not notice.,and then he did not notice,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then he untie/ed it.,and then he untied it,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then he did not know : what was there.,and then he did not know what was there,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,(and then it) and then the balloon went up up up.,and then the balloon went up up up,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then that : dog was mad at that rabbit.,and then that dog was mad at that rabbit,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then another rabbit came by with some more[!] balloon/s.,and then another rabbit came by with some more balloons,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then that (d um) rabbit want/ed a balloon.,and then that rabbit wanted a balloon,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then : he : saw he did not have any money.,and then he saw he did not have any money,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then he did not get any balloon/s.,and then he did not get any balloons,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and (then : one : rabbit) then that rabbit saw a nurse doctor.,and then that rabbit saw a nurse doctor,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and (then that doctor) then that little : rabbit said can I have some money for one of those balloon/s?,and then that little rabbit said can I have some money for one of those balloons,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then he got one.,and then he got one,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,: (and then he had) and then they had two for each.,and then they had two for each,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,Giraffe and : Elephant were : in the pool.,Giraffe and Elephant were in the pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,(and I wonder what were) (were) they were bounce/ing the ball.,they were bouncing the ball,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,I wonder what will happen?,I wonder what will happen,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,the ball felled|fall[EW:fell] in the water.,the ball felled in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,Giraffe was swim/ing to get it.,Giraffe was swimming to get it,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,(and) : and Giraffe got it.,and Giraffe got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and Elephant said thank you.,and Elephant said thank you,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and you are my hero.,and you are my hero,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,"Giraffe said oh, my pleasure.",Giraffe said oh my pleasure,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,(and) (and) and Elephant was engage/ed with him [EU].,and Elephant was engaged with him,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,Elephant and Giraffe were : by the pool.,Elephant and Giraffe were by the pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,(they) I wonder what will happen?,I wonder what will happen,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,: Elephant was run/ing.,Elephant was running,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,(and) : and I wonder what will happen?,and I wonder what will happen,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,she slip/ed.,she slipped,0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,: and she got a[EW:an] owie.,and she got a owie,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and : she[-:] was cry/ing.,and she was crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and : Giraffe (wa) is go/ing to help her.,and Giraffe is going to help her,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and the lifeguard came : (and ss) and gave her a bandaid.,and the lifeguard came and gave her a bandaid,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,she was so sad that (sh) he had to put a big[!] bandaid on.,she was so sad that he had to put a big bandaid on,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,then the lifeguard let her sit down for awhile.,then the lifeguard let her sit down for awhile,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,the lifeguard was so mad.,the lifeguard was so mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and it said no run/ing.,and it said no running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and (ii) she was so sad.,and she was so sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,Giraffe and Elephant were at the pool.,Giraffe and Elephant were at the pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,: Giraffe had a[EW:an] airplane.,Giraffe had a airplane,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,Elephant took it away from him.,Elephant took it away from him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,he was so upset.,he was so upset,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,it felled|fall[EW:fell] in the pool[-:]!,it felled in the pool,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,(ele) and Giraffe got so mad that he (wanted) said that he want/ed a new one.,and Giraffe got so mad that he said that he wanted a new one,0 0 0 0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and she took (toward) to the lifeguard and said can you get that?,and she took to the lifeguard and said can you get that,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and he said : did you do this ?,and he said did you do this,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,(and he will) and she will say no.,and she will say no,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,(she wa) she was cry/ing and said that : all right : I[!] did it.,she was crying and said that all right I did it,0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,this is the truth.,this is the truth,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,I throwed|throw[EW:threw] it in the pool.,I throwed it in the pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,the lifeguard crawl|crawl[EW:crawled] and try|try[EW:tried] to get it.,the lifeguard crawl and try to get it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,I wonder what will happen?,I wonder what will happen,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,he could not get it.,he could not get it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and : Giraffe start/ed to cry.,and Giraffe started to cry,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and a girl lifeguard had a net.,and a girl lifeguard had a net,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,(and try) and she got it.,and she got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and : she did.,and she did,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,Giraffe was so happy that he did not have to have a new one.,Giraffe was so happy that he did not have to have a new one,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and then he love/ed it.,and then he loved it,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and he never ever : ever[!] let : Elephant played|play[EW:play] with it ever again.,and he never ever ever let Elephant played with it ever again,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,this[!] rabbit is go/ing to : make a sandcastle with this[!] dog.,this rabbit is going to make a sandcastle with this dog,0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,the rabbit is : put/ing sand in the pail when the dog was make/ing : a sandcastle.,the rabbit is putting sand in the pail when the dog was making a sandcastle,0 0 0 6 0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,: the rabbit pour/ed the sand onto the : sandcastle.,the rabbit poured the sand onto the sandcastle,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,the dog was sad.,the dog was sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,the dog work/ed so hard.,the dog wrought so hard,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,(she start/ed) (she was go/ing) (she wa) the rabbit was : upset : because he was go/ing to make another[!] one.,the rabbit was upset because he was going to make another one,0 0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,the dog was cry/ing.,the dog was crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,the rabbit was disappoint/ed.,the rabbit was disappointed,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,(rabbit : and) : Rabbit saw the dog.,Rabbit saw the dog,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,(dog) the dog wave/ed at Rabbit.,the dog waved at Rabbit,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,they were walk/ing to a picnic.,they were walking to a picnic,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,: the : rabbit was so hungry that he had too many junks [EU].,the rabbit was so hungry that he had too many junks,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,(the ra) (the) : the dog had a sandwich : first.,the dog had a sandwich first,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,soon : the rabbit was fat : and full.,soon the rabbit was fat and full,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,the dog was still hungry.,the dog was still hungry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,then the : rabbit got dizzy.,then the rabbit got dizzy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,(the ra) and : the dog look/ed at him.,and the dog looked at him,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,the dog saw his mother.,the dog saw his mother,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,: and he said that : Rabbit is hurt.,and he said that Rabbit is hurt,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,he do/3s not feel well.,he does not feel well,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,then (he pu) the dog pull/ed : (his) (his mother) [~_no] the rabbit/z mother : to see him.,then the dog pulled the rabbit's mother to see him,0 0 0 4 0 2 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and he was very ill.,and he was very ill,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,: (the r) the rabbit ate too much junk.,the rabbit ate too much junk,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,(and) : and his mother was : a doctor.,and his mother was a doctor,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,so : she took care of him.,so she took care of him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and she took him to his house.,and she took him to his house,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and (he) she said to the dog : he will be okay.,and she said to the dog he will be okay,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,the dog was : (going) : go/ing for a walk with [<~?_the]a[>~?_the] wagon.,the dog was going for a walk with a wagon,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,then Rabbit show/ed up.,then Rabbit showed up,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,he said hi.,he said hi,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and I wonder what will happen?,and I wonder what will happen,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,Rabbit saw the balloon.,Rabbit saw the balloon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and : the dog said : be careful.,and the dog said be careful,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,: the rabbit untie/ed the balloon.,the rabbit untied the balloon,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,(the) : the dog was disappoint/ed.,the dog was disappointed,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,then Rabbit let go.,then Rabbit let go,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,(and dog) and Dog was worry/ed.,and Dog was worried,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and (he want/ed) she want/ed her balloon back.,and she wanted her balloon back,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and : she got very mad at Rabbit.,and she got very mad at Rabbit,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,(he al) he always bug/3s her.,he always bugs her,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,then : (the) : the balloon man : was carry/ing some balloon/s.,then the balloon man was carrying some balloons,0 0 0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and the dog was still mad.,and the dog was still mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,he said (that) may I have a (ye) white one?,he said may I have a white one,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,(and the) and the balloon man said sure.,and the balloon man said sure,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,(when) (when he got to) when got : to : his pocket : and pull/ed down the balloon : it was : five cent/s.,when got to his pocket and pulled down the balloon it was five cents,0 0 0 0 0 0 4 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and he did not have no five cent/s [EU].,and he did not have no five cents,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and (he was) he was sad.,and he was sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,then the balloon man : put the balloon up again : and did not listen to him.,then the balloon man put the balloon up again and did not listen to him,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,then the rabbit went to the doctor again.,then the rabbit went to the doctor again,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,she had : money.,she had money,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and he want/ed five cent/s.,and he wanted five cents,0 0 4 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,he ask/ed [~_pronounced_'askeded'] if you can buy me a balloon : two of us because I do not have no[EW:any] more money [EU].,he asked if you can buy me a balloon two of us because I do not have no more money,0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and she said yes.,and she said yes,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,(and) : (and she[-:]) and he took two balloon/s to them (and ga) and one of the money [EU].,and he took two balloons to them and one of the money,0 0 0 0 1 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,they were happy.,they were happy,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and the doctor was happy too that : they have balloon/s.,and the doctor was happy too that they have balloons,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,first they have (balling) bowling balls.,first they have bowling balls,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,: (secon) second they drop|drop[EW:dropped] one.,second they drop one,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,third : he try/ed to swim and got|get[EW:get] it.,third he tried to swim and got it,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,after : she got the ball.,after she got the ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,: after he try/ed to jump with the bowling ball.,after he tried to jump with the bowling ball,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,that is a silly idea.,that is a silly idea,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,you will fall down and hurt yourself.,you will fall down and hurt yourself,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,first : they saw the thing.,first they saw the thing,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and they want/ed to jump.,and they wanted to jump,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and then they ran.,and then they ran,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,: (and) and then she ran too fast.,and then she ran too fast,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,then she fell down and hurt shes[EW:her] knee.,then she fell down and hurt shes knee,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,: and she cried.,and she cried,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and the coach help/ed her up : and put a bandage and put her on the bench.,and the coach helped her up and put a bandage and put her on the bench,0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,: after (she) the coach said do not run because it is wet and slippery.,after the coach said do not run because it is wet and slippery,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,should not run like that.,should not run like that,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,(first they) first the elephant saw the giraffe/z airplane.,first the elephant saw the giraffe's airplane,0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,: and then he flied|fly[EW:flew] it.,and then he flied it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and (the) the elephant want|want[EW:wanted] to tried[EW:try] it.,and the elephant want to tried it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,then she try/ed it.,then she tried it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and then it accidentally drop/ed on the water.,and then it accidentally dropped on the water,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and (the) the giraffe was angry.,and the giraffe was angry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and then (the coach) (the um) the coach said what is happen/ing?,and then the coach said what is happening,0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and she said I accidentally flied|fly[EW:flew] it.,and she said I accidentally flied it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,it *is gone on the river [EU].,it gone on the river,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,(the coa) the coach (trie um) (s s) try/ed to help.,the coach tried to help,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,the coach could not help.,the coach could not help,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,(this) after the giraffe has tear/s because he want/3s his airplane.,after the giraffe has tears because he wants his airplane,0 0 0 0 1 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,after (the) the woman (in the net i got : um : um) had a net (and tried) and (um want) help/ed him to get it out.,after the woman had a net and helped him to get it out,0 0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and then the woman try/ed.,and then the woman tried,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and she got it.,and she got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,: and then : the giraffe was happy.,and then the giraffe was happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,after he hug/ed his airplane.,after he hugged his airplane,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,"they was[EW:were] make/ing a (ss) sandcastle, (the um) (the um) the dog.",they was making a sandcastle the dog,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and then the rabbit came and help/ed it.,and then the rabbit came and helped it,0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,": and then : he got some sand, the rabbit.",and then he got some sand the rabbit,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,he pour/ed it : on the sandcastle.,he poured it on the sandcastle,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,he felled it down [EU].,he felled it down,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,: and then the dog try/ed to make another one.,and then the dog tried to make another one,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,but he could not.,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,they went for a picnic.,they went for a picnic,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,they ate their food.,they ate their food,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,they were full.,they were full,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,: and then the rabbit had a stomachache.,and then the rabbit had a stomachache,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and then he went to a doctor.,and then he went to a doctor,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and then he ask/ed the doctor to help his friend.,and then he asked the doctor to help his friend,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and then the doctor help/ed.,and then the doctor helped,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,: (and then the doc) and then he was back to normal.,and then he was back to normal,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,first they were (um) pull/ing (the) the balloon on a wagon.,first they were pulling the balloon on a wagon,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and then he show/ed it to his [~_pronounced_'hes'] friend.,and then he showed it to his friend,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and then the rabbit untie/ed it.,and then the rabbit untied it,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and then it flew away.,and then it flew away,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and then the dog is angry.,and then the dog is angry,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and then : (they) they saw : a man (buy/ing) (havin) have some balloon/s [EU].,and then they saw a man have some balloons,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and they want to[:_wanna] get one.,and they want to get one,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and then he ask/ed for one.,and then he asked for one,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and then (h) he show/ed how much it was for.,and then he showed how much it was for,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and then (she) she said (not) not to take it.,and then she said not to take it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and then he ask/ed the doctor to pay.,and then he asked the doctor to pay,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and then (he) he ask/ed (like) (like) doctor (um) I tooked|take[EW:took] a balloon off my friend/z wagon [EU].,and then he asked doctor I tooked a balloon off my friend's wagon,0 0 0 4 0 0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and it flew away.,and it flew away,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and then he paid.,and then he paid,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,after they both have balloon/s.,after they both have balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,(the f) (the) only the : dog has a balloon.,only the dog has a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,both of them have a balloon.,both of them have a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,"oh, now at the end they do.",oh now at the end they do,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,yeah [+_bch].,yeah,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,(um) it look/3s like the giraffe and the[-:] elephant are play/ing basketball [~_that_(i)s_all].,it looks like the giraffe and the elephant are playing basketball,0 3 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,and the ball go/3s into the pool.,and the ball goes into the pool,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,the giraffe try/3s and jump/3s in and get|get[EW:gets] it.,the giraffe tries and jumps in and get it,0 0 3 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,(um) but the[-:] elephant get/3s it.,but the elephant gets it,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,and[-:] : the giraffe look/3s embarrass/ed.,and the giraffe looks embarrassed,0 0 0 3 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,(um it um) the giraffe and the elephant want to[:_wanna] go swim/ing.,the giraffe and the elephant want to go swimming,0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,(um the) [~_okay] : (the giraffe [~_I_mean]) the elephant want/3s to go : off the diving board.,the elephant wants to go off the diving board,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,and she start/3s run/ing.,and she starts running,0 0 3 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,and the sign say/3s no run/ing.,and the sign says no running,0 0 0 3 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,and she slip/3s and fall/3s and : scrape/3s her knee.,and she slips and falls and scrapes her knee,0 0 3 0 3 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,the lifeguard come/3s run/ing up to her : put/3s a bandaid on it.,the lifeguard comes running up to her puts a bandaid on it,0 0 3 6 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,and she is all better.,and she is all better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,and then the lifeguard point/3s out the sign.,and then the lifeguard points out the sign,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,and she look/3s really really embarrass/ed : and guilty.,and she looks really really embarrassed and guilty,0 0 3 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,(um) the giraffe has an airplane in his hand.,the giraffe has an airplane in his hand,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,and the elephant : (um) really like/3s it.,and the elephant really likes it,0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,(um) the giraffe : pretend/3s to fly it.,the giraffe pretends to fly it,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,and he is make/ing airplane noise/s.,and he is making airplane noises,0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,the elephant get/3s jealous.,the elephant gets jealous,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,(the elephant) the elephant steal/s the : plane away from him.,the elephant steals the plane away from him,0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,and[-:] I guess she try/3s to fly it.,and I guess she tries to fly it,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,but it go/3s into the water.,but it goes into the water,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,(uh the ele) and the giraffe get/3s mad.,and the giraffe gets mad,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,the lifeguard come/3s up.,the lifeguard comes up,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,the lifeguard say/3s what happen/ed ?,the lifeguard says what happened,0 0 3 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,(the : oh) and the elephant explain/ed it to him.,and the elephant explained it to him,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,so now the lifeguard is try/ing to get (the) the : plane back.,so now the lifeguard is trying to get the plane back,0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,and the lifeguard can not do nothing[EW:anything].,and the lifeguard can not do nothing,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,the giraffe start/s cry/ing.,the giraffe starts crying,0 0 1 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,then (s a woman come/3s) another elephant come/3s up : with a net : scoop/3s the airplane out : and give/3s it back to the giraffe.,then another elephant comes up with a net scoops the airplane out and gives it back to the giraffe,0 0 0 3 0 0 0 0 3 0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,(the giraffe) and the giraffe is really really happy now.,and the giraffe is really really happy now,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,(the bunny and uh the dog uh) [~_oh] the dog has built (uh) a sandcastle.,the dog has built a sandcastle,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,and the bunny want/3s to help.,and the bunny wants to help,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,(the bunny scoop/3s up uh uh a shovel) (uh a pi) : the bunny take/3s a shovel and scoop/3s up some sand.,the bunny takes a shovel and scoops up some sand,0 0 3 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,and[-:] then she pour/3s it on the sandcastle.,and then she pours it on the sandcastle,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,she bury/3s the sandcastle.,she buries the sandcastle,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,and the dog start/3s to cry.,and the dog starts to cry,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,the dog and the bunny are have/ing a picnic.,the dog and the bunny are having a picnic,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,the bunny start/3s to eat.,the bunny starts to eat,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,and she has a lot of junk food.,and she has a lot of junk food,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,the bunny (uh) get/3s a really really big tummyache.,the bunny gets a really really big tummyache,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,(um) the dog do/3s not know what is happen/ing.,the dog does not know what is happening,0 0 3 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,(the) the dog run/3s up to (the bunny/z mom) : [~_or] a doctor or something (and the) and pull/3s the doctor over : to see the bunny.,the dog runs up to a doctor or something and pulls the doctor over to see the bunny,0 0 3 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,the doctor : (um) : brang|bring[EW:brought] her back [~_I_I_I_do_n(o)t_know] : like maybe : gave her a painkiller or something.,the doctor brang her back like maybe gave her a painkiller or something,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,(but : but) but then the bunny feel/3s better.,but then the bunny feels better,0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,and then they walk away.,and then they walk away,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,the dog has a balloon.,the dog has a balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,the bunny want/3s to see the balloon.,the bunny wants to see the balloon,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,so the bunny untie/3s it from his wagon[!].,so the bunny unties it from his wagon,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,the balloon float/3s up in the air.,the balloon floats up in the air,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,(um) the dog get/3s mad.,the dog gets mad,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,there is a balloon salesman on the other side of the park.,there is a balloon salesman on the other side of the park,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,(he wants) the bunny go/3s up to buy one.,the bunny goes up to buy one,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,but each balloon is five cent/s.,but each balloon is five cents,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,and the bunny and the dog have no money.,and the bunny and the dog have no money,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,so the bunny run/3s up (to uh) to the doctor : and ask/3s (if she) if (she um) the doctor can (buy : uh) buy a balloon for a friend.,so the bunny runs up to the doctor and asks if the doctor can buy a balloon for a friend,0 0 0 3 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,the doctor go/3s up (pays us) and pay/3s the balloon man.,the doctor goes up and pays the balloon man,0 0 3 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,(and now each) and now the dog and the bunny have a balloon.,and now the dog and the bunny have a balloon,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,there are two kid/s who find ball/s (on the si) on the sidewalk.,there are two kids who find balls on the sidewalk,0 0 0 1 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and (then they f) then (they) it fall/3s into the water.,and then it falls into the water,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,(and they) and they do not want to[:_wanna] get wet.,and they do not want to get wet,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,but (the um) the moose (got it) (want/3s) get/3s the ball.,but the moose gets the ball,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and he give/3s it back (to the li) to the elephant.,and he gives it back to the elephant,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and then he get/3s out of the water.,and then he gets out of the water,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and he is soak/ing.,and he is soaking,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,they want to go swim/ing.,they want to go swimming,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,but there is no run/ing allow/ed.,but there is no running allowed,0 0 0 0 6 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,(ss) but they want (to run) to run and jump into the pool.,but they want to run and jump into the pool,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and (w) when the elephant is run/ing she slip/3s : and hurt/3s her knee.,and when the elephant is running she slips and hurts her knee,0 0 0 0 0 6 0 3 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and then : the giraffe get/3s the lifeguard.,and then the giraffe gets the lifeguard,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and he put/3s a bandaid on the knee.,and he puts a bandaid on the knee,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and then she is all better.,and then she is all better,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and then he (s) point/3s to the sign : and say/3s no[!] run/ing allow/ed.,and then he points to the sign and says no running allowed,0 0 0 3 0 0 0 0 3 0 6 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,(um : the uh) the giraffe and the elephant want to[:__wanna] throw the airplane and see if it (s) fall/3s into the water.,the giraffe and the elephant want to throw the airplane and see if it falls into the water,0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,(and when) (and when) and he is go/ing to[:_gonna] start to throw [EU].,and he is going to start to throw,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,(and then) and then the elephant grab/3s it away : (and thr) and drop/3s it in the water.,and then the elephant grabs it away and drops it in the water,0 0 0 0 3 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and then the giraffe get/3s really mad.,and then the giraffe gets really mad,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,(and) : and (now) now (um) : now they have to go and get it : because the lifeguard is there.,and now now they have to go and get it because the lifeguard is there,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and now the elephant is say/ing : I drop/ed it in by accident.,and now the elephant is saying I dropped it in by accident,0 0 0 0 0 6 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,(and the el) and the lifeguard is go/ing to[:_gonna] get it.,and the lifeguard is going to get it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,but he can not reach.,but he can not reach,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,(and then its) and then there is someone who (swims ga) (ge) get/3s a net and : get/3s it (the end) : and give/3s it back.,and then there is someone who gets a net and gets it and gives it back,0 0 0 0 0 0 3 0 0 0 3 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and now he is go/ing to[:_gonna] play with it.,and now he is going to play with it,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,(theres an) there is an elephant and a dog try/ing to build a sandcastle.,there is an elephant and a dog trying to build a sandcastle,0 0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and the dog want/3s (um) to break it sort of.,and the dog wants to break it sort of,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and then when the rabbit pour/3s the sand on : (it gonna) it might break.,and then when the rabbit pours the sand on it might break,0 0 0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and it break/3s down.,and it breaks down,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,so now the dog try/3s to help him (buil) build it back.,so now the dog tries to help him build it back,0 0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,The dog : and the rabbit [<~_no]want to go swim/ing[>~_no] are go/ing to have a picnic [EU].,The dog and the rabbit want to go swimming are going to have a picnic,0 0 0 0 0 0 0 0 6 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and the rabbit bring/3s carrot stuff.,and the rabbit brings carrot stuff,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and the dog bring/3s : stuff with cheese and stuff.,and the dog brings stuff with cheese and stuff,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and the rabbit is so full that the dog try/3s to eat the rest.,and the rabbit is so full that the dog tries to eat the rest,0 0 0 0 0 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,(and the dog) and then the rabbit get/3s sick.,and then the rabbit gets sick,0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,(so) so the dog get/3s a doctor.,so the dog gets a doctor,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and he pull/3s : him over : because someone got sick.,and he pulls him over because someone got sick,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and the doctor say/3s open your mouth.,and the doctor says open your mouth,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and say ah.,and say ah,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and then the rabbit felt[!] better.,and then the rabbit felt better,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,One day the rabbit and the dog : meet because the dog and the rabbit are walk/ing somewhere.,One day the rabbit and the dog meet because the dog and the rabbit are walking somewhere,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and then : they meet.,and then they meet,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and the dog has a little balloon on his wagon.,and the dog has a little balloon on his wagon,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and the rabbit sort of want/3s to pop it.,and the rabbit sort of wants to pop it,0 0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,(so) (and then he want/3s the) now he want/3s to undo (it) the balloon : and make it fly away.,now he wants to undo the balloon and make it fly away,0 0 3 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and now the dog is sad because his balloon is gone.,and now the dog is sad because his balloon is gone,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,so now the dog get/3s really mad[!] at the rabbit.,so now the dog gets really mad at the rabbit,0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and now the balloon is for sale.,and now the balloon is for sale,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,so the rabbit get/3s : one for his friend.,so the rabbit gets one for his friend,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,(five cent/s) but he do/3s not have five cent/s.,but he does not have five cents,0 0 3 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,so they can not get one.,so they can not get one,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,but then there is a doctor.,but then there is a doctor,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,so they might ask him for five cent/s.,so they might ask him for five cents,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,so they ask for five cent/s to get a balloon.,so they ask for five cents to get a balloon,0 0 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,(and he give/3s them five ce) so he give/3s the guy five cent/s.,so he gives the guy five cents,0 0 3 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and they each get a balloon.,and they each get a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,they were play/ing[-:].,they were playing,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,they smile/ed.,they smiled,0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and : a ball was (in the) : in the pool.,and a ball was in the pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,the boy he want/ed to catch : the ball.,the boy he wanted to catch the ball,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,so he went in.,so he went in,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and the elephant : girl : put her hand/s in front of her nose.,and the elephant girl put her hands in front of her nose,0 0 0 0 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and then he caught the ball for her.,and then he caught the ball for her,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and she was smile/ing.,and she was smiling,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and he was all wet.,and he was all wet,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and he was what?,and he was what,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,he was all wet [+_bch].,he was all wet,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,is that the end ?,is that the end,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,yeah [+_bch].,yeah,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,they found a pool[-:].,they found a pool,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and then she was talk/ing to him.,and then she was talking to him,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and they runned|run[EW:ran] [-:].,and they runned,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and she got hurt.,and she got hurt,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and somebody came and ran to her.,and somebody came and ran to her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,she was cry/ing.,she was crying,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,she was cry/ing so[-:][!] much : (that) : that the boy that ran to her gave her a bandaid.,she was crying so much that the boy that ran to her gave her a bandaid,0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,she was sit/ing on a bench.,she was sitting on a bench,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and : he got very greedy.,and he got very greedy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,he found (a airplane) : a toy airplane.,he found a toy airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,then he was play/ing with it.,then he was playing with it,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,she grab/ed it away from him.,she grabbed it away from him,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,then it fell in the water[-:].,then it fell in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and then he was mad at her.,and then he was mad at her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,then a boy came walk/ing by[-:].,then a boy came walking by,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,then she told him something.,then she told him something,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,then he was try/ing to catch it.,then he was trying to catch it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and then (they) he could not.,and then he could not,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,so he cry/ed[-:].,so he cried,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and then a girl[!] came down : with a fetcher.,and then a girl came down with a fetcher,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,with a what?,with a what,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,with a fetcher to [+_bch].,with a fetcher to,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,oh a fetcher okay.,oh a fetcher okay,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and then she[!] try/ed and grab/ed it.,and then she tried and grabbed it,0 0 0 4 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and she got it for him.,and she got it for him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and he was so[!] happy.,and he was so happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,they : made a sandcastle.,they made a sandcastle,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,(they sc) : they scoop/ed (some) some : sand.,they scooped some sand,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and (she dump/ed) the rabbit dump/ed : it (on) right on the sandcastle.,and the rabbit dumped it right on the sandcastle,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and it broke.,and it broke,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,then he was cry/ing (when i) when he was fix/ing it.,then he was crying when he was fixing it,0 0 0 6 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and it is the end of the story [+_bch].,and it is the end of the story,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,they went for a picnic.,they went for a picnic,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,they ate[-:].,they ate,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and the rabbit got a tummyache.,and the rabbit got a tummyache,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,she was so[-:] full : that she : was growl/ing.,she was so full that she was growling,0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,then the boy call/ed[!] someone.,then the boy called someone,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,then he grab/ed her to : the bunny.,then he grabbed her to the bunny,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,she check/ed her if she was well [EU].,she checked her if she was well,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,if she was what?,if she was what,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,if she was well[!] [+_bch].,if she was well,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,then she was good.,then she was good,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and she did not have a tummyache any more.,and she did not have a tummyache any more,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and (sh) they had a walk.,and they had a walk,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,they had a stroller with a balloon in the front.,they had a stroller with a balloon in the front,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,they watch/ed the balloon if it was come/ing off.,they watched the balloon if it was coming off,0 4 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and (he tie/ed it right on s) : (ti) she tie/ed it on so tight as she can.,and she tied it on so tight as she can,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,then after it came up in the air.,then after it came up in the air,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and after : the dog was so[!] greedy at her.,and after the dog was so greedy at her,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and then a balloon : man came.,and then a balloon man came,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,(and h) and the rabbit said can we borrow a balloon?,and the rabbit said can we borrow a balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and he said would you like this one?,and he said would you like this one,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and he said yes[-:].,and he said yes,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,it is five[-:] dollar/s.,it is five dollars,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,(and he) and he check/ed if he had : much [EU].,and he checked if he had much,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and then they did not get a balloon.,and then they did not get a balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and then : they ran[-:] to someone.,and then they ran to someone,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,they ask/ed her : (th) we want a balloon.,they asked her we want a balloon,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and she did not know why.,and she did not know why,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,so she paid five dollar/s : to him.,so she paid five dollars to him,0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and they gave : both of them a balloon.,and they gave both of them a balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and they like/ed to play with it.,and they liked to play with it,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,once upon a time : they had three (ba) ball/s.,once upon a time they had three balls,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,and one went in the river.,and one went in the river,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,: (and him immediately went to get it :) [~_no] (he falled|fall[EW:fell] in : and then) (and he got) [~_no_actually] (um) he went in *to swim to give it to (the : pi um) the elephant again [EU].,he went in swim to give it to the elephant again,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,(uh : an then) (an then um) and then (hir) it look/3s like they are in love.,and then it looks like they are in love,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,once upon a time : the elephant went to run.,once upon a time the elephant went to run,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,: (an then) and then they start run/ing.,and then they start running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,: (an her) (her) and her[EW:she] got a booboo.,and her got a booboo,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,: and then his mom comed|come[EW:came] : put a bandaid on her.,and then his mom comed put a bandaid on her,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,: and then her[EW:she] went back to her friend/s.,and then her went back to her friends,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,: and then he got mad at her.,and then he got mad at her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,once upon a time : (he s) he show/ed the elephant his airplane.,once upon a time he showed the elephant his airplane,0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,and then her[EW:she] grab/ed it (out of the) : out of his hand/s.,and then her grabbed it out of his hands,0 0 0 4 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,and then her[EW:she] drop/ed it into the water by mistake [~_pronounced__astake].,and then her dropped it into the water by mistake,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,and then he got very [~_pronounced_wery] angry at her.,and then he got very angry at her,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,and then : the elephant comed|come[EW:came] and got wery angry (at the pi) (the um) at the elephant too [EU].,and then the elephant comed and got wery angry at the elephant too,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,(uh) then he had (a) a talk.,then he had a talk,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,: and then he try and reach it [EU].,and then he try and reach it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,(an) and then : he start try/ing [EU].,and then he start trying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,(an then) and then the girl come with the net : (got it for) *and got it for him [EU].,and then the girl come with the net got it for him,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,: (an then he) (and then he was happy) and he was happy.,and he was happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,and he hug/ed his airplane.,and he hugged his airplane,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,once upon a time : a dog was play/ing a castle.,once upon a time a dog was playing a castle,0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,and a bunny comed|come[EW:came] over to play with him.,and a bunny comed over to play with him,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,(and th) (and when he) and he was hold/ing the castle.,and he was holding the castle,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,and he was (um) have/ing a shovel to (um) pick up the sand.,and he was having a shovel to pick up the sand,0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,and he was dump/ing on the castle.,and he was dumping on the castle,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,and then he broke the castle.,and then he broke the castle,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,(and then) and then he start cry/ing.,and then he start crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,once upon a time they went on a picnic.,once upon a time they went on a picnic,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,(and) (and he) (and) (and som) [~_I_do_n(o)t__know_how_to_do_that_one] his tongue is out like this [~_CHI_sticks__tongue_out].,his tongue is out like this,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,okay you are stick/ing your tongue out that is what it look/3s like.,okay you are sticking your tongue out that is what it looks like,0 0 0 6 0 0 0 0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,and I do not know how to do that part [+_bch].,and I do not know how to do that part,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,can you tell me in word/s?,can you tell me in words,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,(uh) : it look/3s like he is do/ing [~_child_sticking_tongue_out].,it looks like he is doing,0 3 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,oh tongue out okay.,oh tongue out okay,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,and once upon a time when they was[EW:were] eat/ing : something (um) (it wa um) (it wa um) : he start to have a headache.,and once upon a time when they was eating something he start to have a headache,0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,: and then the dog went to his mother : and try/ed : pull her (to the) to her kid bunny [EU].,and then the dog went to his mother and tried pull her to her kid bunny,0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,(and) and it start give/ing him medicine [EU].,and it start giving him medicine,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,(and then he) and then they went on.,and then they went on,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,when he was go/ing to play at the park : the bunny went and touch/ed the balloon.,when he was going to play at the park the bunny went and touched the balloon,0 0 0 6 0 0 0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,he did what with the balloon?,he did what with the balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,touch/ed it [+_bch].,touched it,4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,and he try/ed to pull it off.,and he tried to pull it off,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,: and then it got go [EU].,and then it got go,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,(an they was) (an) and the dog was angry.,and the dog was angry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,no maybe the angry was not at that part the angry was this one [~__+_bch].,no maybe the angry was not at that part the angry was this one,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,and he was angry.,and he was angry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,and then he went on with balloon/s.,and then he went on with balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,and he gave the kid another balloon.,and he gave the kid another balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,and he said he want another balloon.,and he said he want another balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,and he said no (cause he got) because he need/ed to get five balloon/s because he want/3s five balloon/s.,and he said no because he needed to get five balloons because he wants five balloons,0 0 0 0 0 0 4 0 0 0 1 0 0 3 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,xxx.,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,(an he ask/ed) (an the dog said can I have another) [~_no] the bunny said can I have another bunny for the dog?,the bunny said can I have another bunny for the dog,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,: and then the bunny went back to his mom.,and then the bunny went back to his mom,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,and he said : (he wo) (he will not give me another ba) he will not give me another balloon.,and he said he will not give me another balloon,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,: (so he did ge) so he give the kid/s two balloon/s [~_child__holds_up_two_fingers] [EU].,so he give the kids two balloons,0 0 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,: (and) (an they) and then they went off home.,and then they went off home,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,the elephant is play/ing with a ball.,the elephant is playing with a ball,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the giraffe want|want[Ew:wanted] to play with it : with the elephant in the water.,and the giraffe want to play with it with the elephant in the water,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and they drop/ed it in the water.,and they dropped it in the water,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and then the giraffe was : go/ing to[:_gonna] swim and get it for the elephant.,and then the giraffe was going to swim and get it for the elephant,0 0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the giraffe got it for the elephant.,and the giraffe got it for the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and she was happy.,and she was happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and : she said : thank you to the giraffe.,and she said thank you to the giraffe,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,the elephant and the giraffe were go/ing swim/ing.,the elephant and the giraffe were going swimming,0 0 0 0 0 0 6 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the elephant : was go/ing to [~_gonna] go in the water.,and the elephant was going to go in the water,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and she slip/ed.,and she slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and she hold|hold[EW:held] her knee.,and she hold her knee,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and she was cry/ing.,and she was crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and (the) her dad went to go see her : and put a bandaid on her owie.,and her dad went to go see her and put a bandaid on her owie,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and then she have|have[EW:had] to sit on the bench.,and then she have to sit on the bench,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,(and she) and her dad said no run/ing.,and her dad said no running,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,the elephant and the giraffe were play/ing with a[EW:an] airplane.,the elephant and the giraffe were playing with a airplane,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the giraffe was : make/ing it fly and made the elephant dizzy.,and the giraffe was making it fly and made the elephant dizzy,0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the elephant took : the : airplane.,and the elephant took the airplane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the giraffe was mad.,and the giraffe was mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the elephant : drop/ed the airplane in the water.,and the elephant dropped the airplane in the water,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,the giraffe was mad at her.,the giraffe was mad at her,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,so : they have to get the airplane.,so they have to get the airplane,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and her dad said to her : why did you drop the airplane in the water?,and her dad said to her why did you drop the airplane in the water,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,so her mother try/ed to get it.,so her mother tried to get it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the giraffe was cry/ing.,and the giraffe was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the mum got it with a net.,and the mum got it with a net,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,she pick/ed it out of the water and gave it back to the giraffe.,she picked it out of the water and gave it back to the giraffe,0 4 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the giraffe was happy.,and the giraffe was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the giraffe : hug/ed his airplane.,and the giraffe hugged his airplane,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,the bunny : and the dog were make/ing a sandcastle.,the bunny and the dog were making a sandcastle,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the bunny was fill/ing up the bucket.,and the bunny was filling up the bucket,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the : dog was : break/ing the sandcastle.,and the dog was breaking the sandcastle,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the bunny (was : break/ing) broke some of it.,and the bunny broke some of it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and then the puppy was : a little bit : sad.,and then the puppy was a little bit sad,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the puppy was cry/ing.,and the puppy was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,the bunny and the dog was[EW:were] go/ing on a picnic.,the bunny and the dog was going on a picnic,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and : the bunny took all of the food out : and want/ed : the puppy/z food.,and the bunny took all of the food out and wanted the puppy's food,0 0 0 0 0 0 0 0 0 0 4 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and : the bunny was full.,and the bunny was full,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the bunny was get/ing dizzy : and full.,and the bunny was getting dizzy and full,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the puppy went to get the doctor.,and the puppy went to get the doctor,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and puppy said that (the) : the bunny ate too much food.,and puppy said that the bunny ate too much food,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the bunny was : feel/ing sick.,and the bunny was feeling sick,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and then the bunny was not feel/ing sick because the doctor made : him all better.,and then the bunny was not feeling sick because the doctor made him all better,0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,the dog had a balloon : and a wagon.,the dog had a balloon and a wagon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,the bunny said can I come with you?,the bunny said can I come with you,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,so : he : did.,so he did,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,the bunny was go/ing to[:_gonna] take off the balloon.,the bunny was going to take off the balloon,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,the (pu) dog said : do not take off : the balloon.,the dog said do not take off the balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,or it will fly away.,or it will fly away,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the bunny did.,and the bunny did,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the balloon flied|fly[EW:flew] away.,and the balloon flied away,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the dog was mad at the bunny.,and the dog was mad at the bunny,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,so : he went to go see the circus bunny again : to get a[EW:an] other balloon.,so he went to go see the circus bunny again to get a other balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,so : the bunny got a[EW:an] other balloon for the : dog.,so the bunny got a other balloon for the dog,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and : he did not have no[EW:any] money : so he can buy a balloon [EU].,and he did not have no money so he can buy a balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,then they were go/ing to[:_gonna] get some money : from the doctor.,then they were going to get some money from the doctor,0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the doctor said (uh) yes.,and the doctor said yes,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the doctor gave (the) : both of them some money : to buy a balloon.,and the doctor gave both of them some money to buy a balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,they both get their own balloon.,they both get their own balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,(um) an elephant and a giraffe went swim/ing.,an elephant and a giraffe went swimming,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,(the uh um s a wa) they were play/ing with water balloon/s it look/ed like.,they were playing with water balloons it looked like,0 0 6 0 0 1 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and they : drop/ed a water balloon in the pool or the balloon.,and they dropped a water balloon in the pool or the balloon,0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,(um) the giraffe try/3s to swim after it.,the giraffe tries to swim after it,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,(um) : he catch/3s it.,he catches it,0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and the elephant get/3s it.,and the elephant gets it,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and : now she love/3s him.,and now she loves him,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,(um) an elephant and a giraffe are swim/ing.,an elephant and a giraffe are swimming,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,the elephant run/3s to the pool.,the elephant runs to the pool,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,he slip/3s : and hurt/3s her knee.,he slips and hurts her knee,0 3 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and the lifeguard come/3s.,and the lifeguard comes,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and the giraffe help/3s her.,and the giraffe helps her,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,(um) the elephant cry/3s.,the elephant cries,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and the lifeguard put/3s a bandaid on it.,and the lifeguard puts a bandaid on it,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and : he sat down on a bench.,and he sat down on a bench,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and the lifeguard (p) point/3s to a no run/ing sign.,and the lifeguard points to a no running sign,0 0 0 3 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,(um) : the elephant and the giraffe are at the swimming pool.,the elephant and the giraffe are at the swimming pool,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,the giraffe bring/3s a toy airplane.,the giraffe brings a toy airplane,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,(um he) the giraffe play/3s with it.,the giraffe plays with it,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and the elephant stare/3s at it.,and the elephant stares at it,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,then (he) the elephant grab/3s it from him : and drop/3s it in the pool.,then the elephant grabs it from him and drops it in the pool,0 0 0 3 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,the giraffe is mad at the elephant.,the giraffe is mad at the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and the lifeguard see/3s it.,and the lifeguard sees it,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and it is start/ing to sink.,and it is starting to sink,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,the lifeguard look/3s sort of angry at the (ele) other elephant.,the lifeguard looks sort of angry at the other elephant,0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,xxx [~_whispered_an_aside] and (um) he try/3s to get it.,and he tries to get it,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,but he can not reach it.,but he can not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,the giraffe start/3s to cry.,the giraffe starts to cry,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,(um) and then : another : elephant (um) get/3s a net : (and um) : and pick/3s up the plane : and give/3s it to the giraffe.,and then another elephant gets a net and picks up the plane and gives it to the giraffe,0 0 0 0 3 0 0 0 3 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and the giraffe is happy.,and the giraffe is happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,(um) : a dog is play/ing in the sand.,a dog is playing in the sand,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and a rabbit come/3s and want/3s to play with her.,and a rabbit comes and wants to play with her,0 0 0 3 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,(he start/3s make/ing a little bit of the castle while the rabb) (while um) the dog start/3s make/ing a little bit of the castle while the rabbit fill/3s : a pail up with sand.,the dog starts making a little bit of the castle while the rabbit fills a pail up with sand,0 0 3 6 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and the bunny dump/3s it on the castle.,and the bunny dumps it on the castle,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and the castle break/3s.,and the castle breaks,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and the bunny scream/3s.,and the bunny screams,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,(um) : and the bunny pretend/3s he did not do it.,and the bunny pretends he did not do it,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,but he really did.,but he really did,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and : the dog is feel/ing sad because (it is broke) it broke.,and the dog is feeling sad because it broke,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,(um) the : bunny and the dog are go/ing for a picnic.,the bunny and the dog are going for a picnic,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,(um) : the dog bring/3s sandwich/s.,the dog brings sandwiches,0 0 3 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and the bunny bring/3s carrot/s and sandwich/3s and pickle/s and : chip/s : and sandwich/s and carrot/s.,and the bunny brings carrots and sandwiches and pickles and chips and sandwiches and carrots,0 0 0 3 1 0 3 0 1 0 1 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and : (he get/3s fu) the bunny get/3s full : while the dog is still eat/ing.,and the bunny gets full while the dog is still eating,0 0 0 3 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,the bunny is feel/ing sick.,the bunny is feeling sick,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,(um) : the dog run/3s and get/3s : (um) the doctor.,the dog runs and gets the doctor,0 0 3 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and (he pull/3s) the dog pull/3s the doctor over.,and the dog pulls the doctor over,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,(um) : the doctor look/3s : and tell/3s him to open his mouth.,the doctor looks and tells him to open his mouth,0 0 3 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and then he is all done.,and then he is all done,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,(um) the dog is pull/ing a wagon with a balloon.,the dog is pulling a wagon with a balloon,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,(and) and the bunny see/3s her.,and the bunny sees her,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,the bunny try/3s to get it.,the bunny tries to get it,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,(um) he get/3s it.,he gets it,0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and the dog open/3s his mouth and start/3s to scream sort of.,and the dog opens his mouth and starts to scream sort of,0 0 0 3 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,the bunny (let/3s it g) let/3s go of the balloon.,the bunny lets go of the balloon,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and the dog is really mad at the bunny.,and the dog is really mad at the bunny,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and he is just star/ing at the balloon.,and he is just staring at the balloon,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and : (um) he see/3s : (um) : another rabbit sell/ing : balloon/s.,and he sees another rabbit selling balloons,0 0 3 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,he ask/3s for some.,he asks for some,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and they are five cent/s.,and they are five cents,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and he said you can not have them if : you can not pay five cent/s.,and he said you can not have them if you can not pay five cents,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and : then they are really sad.,and then they are really sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and then there is : (a bunny) : another bunny up there.,and then there is another bunny up there,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,I think it is his mom.,I think it is his mom,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and : he want/3s to buy a balloon.,and he wants to buy a balloon,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and (they) he give/3s five cent/s to him.,and he gives five cents to him,0 0 3 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and they each get a balloon.,and they each get a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and they are play/ing with them.,and they are playing with them,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,[~_well][-:] there is an elephant and a giraffe.,there is an elephant and a giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,the elephant : is[-:] bounce/ing a ball.,the elephant is bouncing a ball,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and[-:] : there is the giraffe guy : I think is talk/ing to her.,and there is the giraffe guy I think is talking to her,0 0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and they are watch/ing.,and they are watching,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and[-:] all of a sudden the ball that the elephant was bounce/ing fell into the water.,and all of a sudden the ball that the elephant was bouncing fell into the water,0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and[-:] they are both look/ing kind of sad and : (um) excite/ed.,and they are both looking kind of sad and excited,0 0 0 0 6 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now the giraffe (uh) : jump/ed into the water and now is swim/ing : to catch the ball.,and now the giraffe jumped into the water and now is swimming to catch the ball,0 0 0 0 4 0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and the giraffe is back at the end of the pool and : gave the ball back to : the elephant.,and the giraffe is back at the end of the pool and gave the ball back to the elephant,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now the elephant is happy and[-:] : look/3s : happy [~_laughs].,and now the elephant is happy and looks happy,0 0 0 0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,(uh um : the) there is the giraffe and the elephant again.,there is the giraffe and the elephant again,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and the[-:] : elephant is look/ing at the water with the giraffe.,and the elephant is looking at the water with the giraffe,0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now the elephant (is) look/3s like (uh) she is go/ing to jump into the pool.,and now the elephant looks like she is going to jump into the pool,0 0 0 0 3 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and[-:] right when she start/ed jump/ing (uh) the elephant slip/ed : and hurt herself.,and right when she started jumping the elephant slipped and hurt herself,0 0 0 0 4 6 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now she has a : cut on her leg.,and now she has a cut on her leg,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now the giraffe is[-:] (stand) sit/ing by her and call/ed the lifeguard to come.,and now the giraffe is sitting by her and called the lifeguard to come,0 0 0 0 0 6 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and[-:] now the elephant is[-:] : kind of[:_kinda] scare/ed that it is go/ing to hurt when they put on the bandaid [~_laughs].,and now the elephant is kind of scared that it is going to hurt when they put on the bandaid,0 0 0 0 0 0 0 4 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now she is walk/ing with the lifeguard with the bandaid on herself.,and now she is walking with the lifeguard with the bandaid on herself,0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and she is kind of [~_laughs] happy and kind of sad[~!_laughing].,and she is kind of happy and kind of sad,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now : she is sit/ing the bench.,and now she is sitting the bench,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and the lifeguard is point/ing to no run/ing because she was run/ing.,and the lifeguard is pointing to no running because she was running,0 0 0 0 6 0 0 6 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,(uh the elephant and the giraffe) [~_well] the elephant is look/ing at the giraffe/z : airplane that he has in his hand/s.,the elephant is looking at the giraffe's airplane that he has in his hands,0 0 0 6 0 0 2 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and she is happy.,and she is happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,now the giraffe is[-:] kind of play/ing with the[-:] airplane and pretend/ing that it is fly/ing.,now the giraffe is kind of playing with the airplane and pretending that it is flying,0 0 0 0 0 0 6 0 0 0 0 6 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and[-:] (the[-:]) the elephant is try/ing it now.,and the elephant is trying it now,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and she is pretend/ing.,and she is pretending,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and : the giraffe is think/ing : (she is) he is scare/ed that she is go/ing to wreck it.,and the giraffe is thinking he is scared that she is going to wreck it,0 0 0 0 6 0 0 4 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now (the) : the[-:] : airplane fell into the water.,and now the airplane fell into the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now the : giraffe is mad.,and now the giraffe is mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now the lifeguard is stand/ing there and : watch/ing them[-:] (uh) : be mad : at each other[~!_laughing].,and now the lifeguard is standing there and watching them be mad at each other,0 0 0 0 0 6 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and (now) so[-:] the elephant is[-:] say/ing what happen/ed.,and so the elephant is saying what happened,0 0 0 0 0 6 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and : the lifeguard : is (wa) look/ing at her.,and the lifeguard is looking at her,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,now the lifeguard is try/ing to[-:] : get the[-:] airplane.,now the lifeguard is trying to get the airplane,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and[-:] (the) now the giraffe is cry/ing because the lifeguard can not get the airplane out of the water.,and now the giraffe is crying because the lifeguard can not get the airplane out of the water,0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now there is another : (uh) elephant.,and now there is another elephant,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and she has a fish net.,and she has a fish net,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now she is try/ing to catch it with the fish net.,and now she is trying to catch it with the fish net,0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and she got it with the fish net and gave it to : giraffe.,and she got it with the fish net and gave it to giraffe,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,now giraffe is happy.,now giraffe is happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and[-:] : (um) elephant is happy too.,and elephant is happy too,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,[~_well] there is a bunny.,there is a bunny,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and[-:] I think there is a dog.,and I think there is a dog,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and the dog has made a[-:] : sandcastle in the sandbox.,and the dog has made a sandcastle in the sandbox,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and[-:] the[-:] bunny (looks) has a shovel.,and the bunny has a shovel,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and he look/3s happy [~_laughs].,and he looks happy,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now the[-:] bunny was help/ing : the dog : to make : the rest of the sandcastle.,and now the bunny was helping the dog to make the rest of the sandcastle,0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and (then the) then the bunny : pour/3s all[!] of the sand over onto the : sandcastle.,and then the bunny pours all of the sand over onto the sandcastle,0 0 0 0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now (the b) the bunny wreck/ed the whole sandcastle.,and now the bunny wrecked the whole sandcastle,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,the dog do/3s not seem that : (uh) mad.,the dog does not seem that mad,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and then now : he look/3s at it now again.,and then now he looks at it now again,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and : (uh) he is really mad.,and he is really mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and the bunny : is just stand/ing there look/ing : kind of sad and mad too.,and the bunny is just standing there looking kind of sad and mad too,0 0 0 0 0 6 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,(uh) there is the bunny and the dog again.,there is the bunny and the dog again,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and the bunny and the dog are go/ing for a picnic.,and the bunny and the dog are going for a picnic,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,the bunny is sit/ing by[-:] the dog.,the bunny is sitting by the dog,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and they are eat/ing.,and they are eating,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and the bunny has lot/s of food around him [~_laughs].,and the bunny has lots of food around him,0 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now the bunny is really[!] stuff/ed.,and now the bunny is really stuffed,0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and : the dog is still eat/ing nicely [~_laughs].,and the dog is still eating nicely,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and the dog is[-:] eat/ing.,and the dog is eating,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and the bunny look/3s kind of : (uh) really : (um) : full [~__laughs].,and the bunny looks kind of really full,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,so now the dog is run/ing to[-:] a parent that is walk/ing down : the road : and[-:] brought (the[-:]) the other bunny to[-:] : (uh) the little bunny that ate too much [~_laughs].,so now the dog is running to a parent that is walking down the road and brought the other bunny to the little bunny that ate too much,0 0 0 0 0 6 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and[-:] now (the[-:] bunny) the big bunny is look/ing at the little bunny.,and now the big bunny is looking at the little bunny,0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now the little bunny is all better now.,and now the little bunny is all better now,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,[~_okay] there is the dog and the bunny again.,there is the dog and the bunny again,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and the bunny (is ru) are[EW:is] run/ing down (the roa) the (s) sidewalk.,and the bunny are running down the sidewalk,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and the dog has (a) : a little cart : with a balloon : tie/ed to it.,and the dog has a little cart with a balloon tied to it,0 0 0 0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,now the bunny is look/ing at the balloon that is tie/ed to[-:] the cart.,now the bunny is looking at the balloon that is tied to the cart,0 0 0 0 6 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now (the) the dog is look/ing at the bunny.,and now the dog is looking at the bunny,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and the bunny is try/ing to take off the balloon.,and the bunny is trying to take off the balloon,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and the : bunny took off the balloon.,and the bunny took off the balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now the balloon is sail/ing up in the sky.,and now the balloon is sailing up in the sky,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now the dog is really[!] mad.,and now the dog is really mad,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and the bunny : is look/ing (at) at the balloon at the sky [~__laughs].,and the bunny is looking at the balloon at the sky,0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now the[-:] bunny is walk/ing down (the s) the sidewalk.,and now the bunny is walking down the sidewalk,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and : the dog is look/ing at : the bunny walk/ing down.,and the dog is looking at the bunny walking down,0 0 0 0 6 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and the bunny see/3s : some balloon/s.,and the bunny sees some balloons,0 0 0 3 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and the bunny[-:] see/3s the balloon/s with the man hold/ing them and ask/3s if[-:] she can buy one.,and the bunny sees the balloons with the man holding them and asks if she can buy one,0 0 0 3 0 1 0 0 0 6 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and[-:] (they are) they are five cent/s.,and they are five cents,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and : the bunny is look/ing in his pocket/s because he do/3s not have (uh) : any money.,and the bunny is looking in his pockets because he does not have any money,0 0 0 0 6 0 0 1 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now (the) both the dog and the bunny are look/ing at the balloon/s see/ing if he will give them one [~_laughs].,and now both the dog and the bunny are looking at the balloons seeing if he will give them one,0 0 0 0 0 0 0 0 0 6 0 0 1 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now : (the : big bunny uh) the little bunny is go/ing to ask the big bunny and see if[-:] she has any money.,and now the little bunny is going to ask the big bunny and see if she has any money,0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,now[-:] (they are ask/ing) the (bunny) little bunny is ask/ing the big bunny if (he can) she can have a five cent/s : to buy a balloon.,now the little bunny is asking the big bunny if she can have a five cents to buy a balloon,0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and so the big bunny gave : the man (five cent/s so that they can ha or) ten cent/s so they can have two balloon/s.,and so the big bunny gave the man ten cents so they can have two balloons,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now each of them (have two) has a balloon.,and now each of them has a balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,[~_okay] the giraffe and the elephant are : play/ing in the water.,the giraffe and the elephant are playing in the water,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and they are bounce/ing a ball[-:] : [~_well] the elephant is.,and they are bouncing a ball the elephant is,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and[-:] the : elephant is out of the water.,and the elephant is out of the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and so is the giraffe.,and so is the giraffe,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,but she bounce/3s it too hard.,but she bounces it too hard,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and it land|land[EW:lands] in the water.,and it land in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and the giraffe try/3s (to get it) [~_like] to jump in and get it.,and the giraffe tries to jump in and get it,0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,but it : look/3s like it is hard for him to : get it.,but it looks like it is hard for him to get it,0 0 3 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,but then he got it.,but then he got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then he swam to the elephant.,and then he swam to the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and the elephant got it.,and the elephant got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then[-:] : the : giraffe : got out of the : water.,and then the giraffe got out of the water,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and the elephant : took it from him.,and the elephant took it from him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,[~_okay] the elephant and the giraffe : are stare/ing into the water.,the elephant and the giraffe are staring into the water,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and the elephant : (try/3s to : run[-:] in the water[-:]) (try/3s) (she) (like she is on : where) [~_like] she is on the ground.,and the elephant she is on the ground,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then she try/3s to run in the water.,and then she tries to run in the water,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,but then she slip/3s.,but then she slips,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then she got : a[EW:an] owie on her knee.,and then she got a owie on her knee,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and she start/ed to cry.,and she started to cry,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then the giraffe call/ed the lifeguard.,and then the giraffe called the lifeguard,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and the lifeguard (help) try/ed to help her : was run/ing over to her [EU].,and the lifeguard tried to help her was running over to her,0 0 0 4 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and the lifeguard got a bandaid and put it on her knee.,and the lifeguard got a bandaid and put it on her knee,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then the lifeguard (told her) told her to bend her leg.,and then the lifeguard told her to bend her leg,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then it felt better.,and then it felt better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,but then the lifeguard : (um) show/ed the elephant : that there was a sign that said no run/ing.,but then the lifeguard showed the elephant that there was a sign that said no running,0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then she had to sit on the bench.,and then she had to sit on the bench,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,the elephant and the giraffe : are[-:] (um) : laugh/ing together.,the elephant and the giraffe are laughing together,0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and the giraffe has a toy airplane in the swimming pool.,and the giraffe has a toy airplane in the swimming pool,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then the giraffe : play/3s with it and fly/3s it in the air.,and then the giraffe plays with it and flies it in the air,0 0 0 0 3 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,but then the elephant grab/ed it away from him : and start/ed to playing[EW:play] with it.,but then the elephant grabbed it away from him and started to playing with it,0 0 0 0 4 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,but then she drop/ed it.,but then she dropped it,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and it fell in the water.,and it fell in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then the giraffe got really mad[-:].,and then the giraffe got really mad,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and[-:] the[-:] lifeguard came over and look/ed at the airplane : and was shock/ed.,and the lifeguard came over and looked at the airplane and was shocked,0 0 0 0 0 0 4 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and the elephant said it was an accident.,and the elephant said it was an accident,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,(but then the) so the lifeguard bent down and try/ed to get it.,so the lifeguard bent down and tried to get it,0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,but he was too short.,but he was too short,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then the giraffe start/ed cry/ing.,and then the giraffe started crying,0 0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then the[-:] elephant look/ed shy[-:] (like) : kind of[-:] like she is sorry.,and then the elephant looked shy kind of like she is sorry,0 0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and the lifeguard did not know what to say.,and the lifeguard did not know what to say,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,but then (a girl walk/ed over) [~_well] one of the lifeguard/s walk/ed over : and grab/ed the net and : grab/ed the airplane with the net.,but then one of the lifeguards walked over and grabbed the net and grabbed the airplane with the net,0 0 0 0 0 1 4 0 0 4 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then the giraffe (start/ed) stop/ed cry/ing.,and then the giraffe stopped crying,0 0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then the lifeguard was happy.,and then the lifeguard was happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then the elephant did not know what to say.,and then the elephant did not know what to say,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,(and then the) and then the lifeguard : pick/ed up the airplane and gave it to the giraffe.,and then the lifeguard picked up the airplane and gave it to the giraffe,0 0 0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,(and the gir) and the elephant was happy.,and the elephant was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and the giraffe was very happy.,and the giraffe was very happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,(a[-:] : dog and a) [~_no_yeah] a dog and a bunny [EU].,a dog and a bunny,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,(uh well) first the dog is play/ing in the sand with a shovel.,first the dog is playing in the sand with a shovel,0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then the bunny come/3s along with his[!] shovel.,and then the bunny comes along with his shovel,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and[-:] the[-:] dog is just done[EW:finished] his castle.,and the dog is just done his castle,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and the bunny is put/ing some sand in his : sand bucket.,and the bunny is putting some sand in his sand bucket,0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then the bunny pour/3s all of the sand on the castle.,and then the bunny pours all of the sand on the castle,0 0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,(and) : and then : (the bunny) instead of the dog get/ing mad the bunny get/3s mad.,and then instead of the dog getting mad the bunny gets mad,0 0 0 0 0 0 6 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then the dog start/3s to cry.,and then the dog starts to cry,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,(a bunny is w) : the bunny is (w) walk/ing : down the road : with his : basket.,the bunny is walking down the road with his basket,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and a dog : wave/3s at the bunny : with his basket.,and a dog waves at the bunny with his basket,0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and : the dog take/3s out his sandwich.,and the dog takes out his sandwich,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and the bunny take/3s out : her big meal that she has : in her basket.,and the bunny takes out her big meal that she has in her basket,0 0 0 3 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then the : bunny[~!_laughing] eat/3s it all.,and then the bunny eats it all,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then : you can see garbage all over the mat[-:] .,and then you can see garbage all over the mat,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then the dog is just eat/ing a sandwich.,and then the dog is just eating a sandwich,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then the bunny feel/3s a bit sick.,and then the bunny feels a bit sick,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and the dog is shock/ed.,and the dog is shocked,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,so the dog[-:] run/3s down the road : to the bunny is granny and tell/3s her [EU].,so the dog runs down the road to the bunny is granny and tells her,0 0 0 3 0 0 0 0 0 0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then (the granny) : (um well) the dog is pull/ing the granny toward/3s the bunny.,and then the dog is pulling the granny towards the bunny,0 0 0 0 0 6 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and : (the) : the granny[-:] (fix) like help/3s the bunny.,and the granny like helps the bunny,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then they walk home happily together.,and then they walk home happily together,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,(the bun) [~_oh] first the dog has a wagon[-:] with a balloon tie/ed on it.,first the dog has a wagon with a balloon tied on it,0 0 0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and the bunny is walk/ing down the road wave/ing at the dog.,and the bunny is walking down the road waving at the dog,0 0 0 0 6 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then the[-:] bunny : say/3s[-:] that is a nice balloon that you have.,and then the bunny says that is a nice balloon that you have,0 0 0 0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then the bunny try/3s to tie it off the wagon.,and then the bunny tries to tie it off the wagon,0 0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,but then : he did[!] tie it off.,but then he did tie it off,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then it float/ed up in the air.,and then it floated up in the air,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,(the dog) and the dog got really mad[-:] .,and the dog got really mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,(and[-:] he got so) but : he did not have to be mad for long because he saw : a[-:] : balloon carrier.,but he did not have to be mad for long because he saw a balloon carrier,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and : the bunny was walk/ing towards him.,and the bunny was walking towards him,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and the bunny[-:] : ask/ed (how many) how much : are those balloon/s?,and the bunny asked how much are those balloons,0 0 0 4 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and (um) : the salesman : said they are five cent/s each.,and the salesman said they are five cents each,0 0 0 0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,but the bunny did not have enough money.,but the bunny did not have enough money,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,he did not have any money.,he did not have any money,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then the bunny and the dog just standed|stand[EW:stood] there (and went) gave a sad face.,and then the bunny and the dog just standed there gave a sad face,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then[-:] the bunny : walk/ed toward[-:] : this[-:] girl on the street : and ask/ed if I can get a balloon.,and then the bunny walked toward this girl on the street and asked if I can get a balloon,0 0 0 0 4 0 0 0 0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then the girl (gave her fi) gave him (five cent) [~_I__mean] ten cent/s for two balloon/s.,and then the girl gave him ten cents for two balloons,0 0 0 0 0 0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and they both had the balloon and were very happy.,and they both had the balloon and were very happy,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,there is a : giraffe and an elephant.,there is a giraffe and an elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,: shall I turn the page?,shall I turn the page,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,okay [+_bch].,okay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,(then) : then there was a : ball in the water.,then there was a ball in the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,then the giraffe : went to get it.,then the giraffe went to get it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,then the giraffe got the ball for the elephant.,then the giraffe got the ball for the elephant,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,: and : he was play/ing with it.,and he was playing with it,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,they want/ed to go (on : the) : on the jumping : thing.,they wanted to go on the jumping thing,0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,and the : elephant one want|want[EW:wanted] to go on it.,and the elephant one want to go on it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,then the elephant trip/ed.,then the elephant tripped,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,then he got a[EW:an] : owie.,then he got a owie,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,then the lifeguard came.,then the lifeguard came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,he put a bandaid on it.,he put a bandaid on it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,(and they) and he (took it) took him to the bench.,and he took him to the bench,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,: I do not know it [~_whispered] [+_bch].,I do not know it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,there is a giraffe and an elephant.,there is a giraffe and an elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,the giraffe has an airplane.,the giraffe has an airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,then : the : elephant took it.,then the elephant took it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,then it fell in the water.,then it fell in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,: then the giraffe was mad at the elephant.,then the giraffe was mad at the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,"[~_page_6] : do not know [~_whispered,_page_turned] [+_bch].",do not know,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,it look/ed like it was sink/ing.,it looked like it was sinking,0 4 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,but the lifeguard was try/ing to get it.,but the lifeguard was trying to get it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,[~_page_9] i do not know [~_page_turned] [+_bch].,i do not know,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,and the lifeguard got a net.,and the lifeguard got a net,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,and he fish/ed it out.,and he fished it out,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,and he gave it back to the : giraffe.,and he gave it back to the giraffe,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,[~_page_13] : do not know [+_bch].,do not know,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,There is[EW:are] two rabbit/s that are go/ing to make a castle.,There is two rabbits that are going to make a castle,0 0 0 1 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,: they are make/ing one.,they are making one,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,he dump/ed : (ah) sand on it.,he dumped sand on it,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,then it broke.,then it broke,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,(and) : and : they were go/ing to[:_gonna] build it again.,and they were going to build it again,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,There are two rabbit/s that are go/ing picnick/ing.,There are two rabbits that are going picnicking,0 0 0 1 0 0 6 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,they brought food to eat.,they brought food to eat,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,they ate all the food.,they ate all the food,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,: one of the rabbit/s are[EW:is] really fat.,one of the rabbits are really fat,0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,then (t) a doctor came.,then a doctor came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,then one of the rabbit/s are[EW:is] pull/ing him.,then one of the rabbits are pulling him,0 0 0 0 1 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,(and) : then he was : check/ing his temperature.,then he was checking his temperature,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,then : the doctor took one of the (r) rabbit/s.,then the doctor took one of the rabbits,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,there are two rabbit/s that have one balloon.,there are two rabbits that have one balloon,0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,okay : anything on this page?,okay anything on this page,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,no [~_page_turned]?,no,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,then they took it off.,then they took it off,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,then it went up : in the sky.,then it went up in the sky,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,then : it was up : high.,then it was up high,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,there was a rabbit : had : lot/s of balloon/s [EU].,there was a rabbit had lots of balloons,0 0 0 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,and one of the rabbit/s ask/ed him if he can have one.,and one of the rabbits asked him if he can have one,0 0 0 0 1 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,it cost/3s five cent/s.,it costs five cents,0 3 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,": nothing here, okay [~_page_turned].",nothing here okay,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,and there was a rabbit come/ing.,and there was a rabbit coming,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,then he ask/ed : the rabbit if he can have money : for a balloon.,then he asked the rabbit if he can have money for a balloon,0 0 4 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,(then he) : (then he gave) the bunny gave him the money.,the bunny gave him the money,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,then they each got one.,then they each got one,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,a donkey thing and an elephant are play/ing with their ball : play/ing basketball.,a donkey thing and an elephant are playing with their ball playing basketball,0 0 0 0 0 0 0 6 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,(um : the) they shoot it.,they shoot it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and the ball fall/3s into the pool that they were stand/ing by.,and the ball falls into the pool that they were standing by,0 0 0 3 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,the donkey go/3s in and get/3s it out of the water.,the donkey goes in and gets it out of the water,0 0 3 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,he bring/3s it back to the elephant.,he brings it back to the elephant,0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and the elephant is happy.,and the elephant is happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,the elephant fall/3s in love with him.,the elephant falls in love with him,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,they are go/ing to [~_gonna] go swim/ing.,they are going to go swimming,0 0 6 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,the elephant go/3s to run to the diving board.,the elephant goes to run to the diving board,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,she slip/3s and fall/3s and hurt/3s herself.,she slips and falls and hurts herself,0 3 0 3 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,she is bleed/ing because she has a cut on her knee.,she is bleeding because she has a cut on her knee,0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,(um) : the donkey thing go/3s to get the lifeguard.,the donkey thing goes to get the lifeguard,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,they put a bandaid on.,they put a bandaid on,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,she is okay.,she is okay,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,he point/3s to the sign that says no run/ing.,he points to the sign that says no running,0 3 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and she get/3s (um) embarrass/ed.,and she gets embarrassed,0 0 3 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,(um) they are going to [~_gonna] play with this plane near the swimming pool.,they are going to play with this plane near the swimming pool,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,he is fly/ing around with it.,he is flying around with it,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and she want/3s a turn.,and she wants a turn,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,(she) so she grab/3s it from him and start/3s play/ing with it.,so she grabs it from him and starts playing with it,0 0 3 0 0 0 0 3 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,it fall/3s into the water.,it falls into the water,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and they can not get it out.,and they can not get it out,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,he get/3s mad at the elephant.,he gets mad at the elephant,0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,then they call the lifeguard.,then they call the lifeguard,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and then the lifeguard : is look/ing at it.,and then the lifeguard is looking at it,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,the lifeguard can not reach it.,the lifeguard can not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,he still try/3s to reach.,he still tries to reach,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,but he still can not reach it.,but he still can not reach it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,it is sink/ing.,it is sinking,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and the (ele) donkey thing is cry/ing.,and the donkey thing is crying,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and the elephant feel/3s sorry.,and the elephant feels sorry,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and the lifeguard say/3s he can not do anything.,and the lifeguard says he can not do anything,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,then the other lifeguard come/3s with a net.,then the other lifeguard comes with a net,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and she fish/3s it out with the net.,and she fishes it out with the net,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and then she give/3s it back to him.,and then she gives it back to him,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and he is happy.,and he is happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and then they are both happy the two little kid/s.,and then they are both happy the two little kids,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and then they play with the airplane again.,and then they play with the airplane again,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,the rabbit and the dog are play/ing in the sand.,the rabbit and the dog are playing in the sand,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,they are build/ing a sandcastle.,they are building a sandcastle,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,he pour/3s too much sand on the sandcastle.,he pours too much sand on the sandcastle,0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,he wreck/3s it.,he wrecks it,0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,(um) : the bunny and the dog are go/ing to [~_gonna] go and have a picnic.,the bunny and the dog are going to go and have a picnic,0 0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,they are have/ing a picnic.,they are having a picnic,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and he is eat/ing everything.,and he is eating everything,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,he ate all unhealthy stuff and only like a few carrot/s and stuff that is healthy.,he ate all unhealthy stuff and only like a few carrots and stuff that is healthy,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,he get/3s sick.,he gets sick,0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,the dog go/3s to get a medic.,the dog goes to get a medic,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,(the me) the medic (um) help/3s him.,the medic helps him,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and he is sick.,and he is sick,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,so she is go/ing to [~_gonna] cure him.,so she is going to cure him,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and then : (he take) she take/3s her like to the doctor/z office place.,and then she takes her like to the doctor's office place,0 0 0 3 0 0 0 0 2 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and then she is go/ing to [~_gonna] : (um) : make him better.,and then she is going to make him better,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,(um : the) the dog and the bunny are go/ing to [~_gonna] go and play with their balloon.,the dog and the bunny are going to go and play with their balloon,0 0 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,(th) the bunny take/3s the balloon off the wagon.,the bunny takes the balloon off the wagon,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,he tie/3s it off.,he ties it off,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and then the dog do/3s not want (it) him to.,and then the dog does not want him to,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,it go/3s up in the air.,it goes up in the air,0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and they can not get it.,and they can not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,the dog get/3s mad at him.,the dog gets mad at him,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,(uh) they go to buy another balloon.,they go to buy another balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,they pick one.,they pick one,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,but it is five cent/s.,but it is five cents,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,(and they do not have any money : sss) and they both do not have any money.,and they both do not have any money,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,so they are think/ing what to do.,so they are thinking what to do,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,(um they so) so they go to their mom.,so they go to their mom,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and she is go/ing to [~_gonna] give them money.,and she is going to give them money,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,(um : she is gonna gi) she is get/ing her money out of her pocket/s to give to them.,she is getting her money out of her pockets to give to them,0 0 6 0 0 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,she give/3s it to them.,she gives it to them,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and they can buy two balloon/s.,and they can buy two balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,then they are both happy.,then they are both happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,there is a guy (gi uh) have candy [EU].,there is a guy have candy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and he is sell/ing it.,and he is selling it,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,(and he give|give[EW:gave]) and (it) one drop/ed into the water.,and one dropped into the water,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and he swim/3s for it.,and he swims for it,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and (he pull/3s um um) (he gots|get[EW:got] it) the other guy gots|get[EW:got] it.,and the other guy gots it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,(and he get um) and (he get) (and do/3s not) he do/3s not give it to him.,and he does not give it to him,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,The guy is go/ing to jump into the water.,The guy is going to jump into the water,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,the guy (um) run/3s and run/3s.,the guy runs and runs,0 0 3 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and (the guy) the other guy he slip/3s.,and the other guy he slips,0 0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and he fall/3s down.,and he falls down,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and he cry/3s.,and he cries,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,(and he) and he has a booboo.,and he has a booboo,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and he put/3s a bandaid on it.,and he puts a bandaid on it,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and he carry/3s him.,and he carries him,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,puts him on the bench [EU].,puts him on the bench,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,The guy is look/ing at him.,The guy is looking at him,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and he has a[EW:an] airplane.,and he has a airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and then the other guy take/3s the airplane and play/3s with it.,and then the other guy takes the airplane and plays with it,0 0 0 0 0 3 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and then (it fall/3s o) it fall/3s into the water.,and then it falls into the water,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and then the other guy get/3s mad at him.,and then the other guy gets mad at him,0 0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and (the other guy get/3s m) (um the other guy) there is[EW:are] two guy/s stand/ing : get/ing mad.,and there is two guys standing getting mad,0 0 0 0 1 6 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and the other guy (ge um um) get/3s scare/ed.,and the other guy gets scared,0 0 0 0 3 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and the other guy chase/3s it : into the water.,and the other guy chases it into the water,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,(an) and the other guy cry/3s.,and the other guy cries,0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and the other guy has a net.,and the other guy has a net,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and the other guy : take/3s it out of the pool.,and the other guy takes it out of the pool,0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and then he give/3s it back.,and then he gives it back,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and then (he) he like/3s him.,and then he likes him,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,(There is a) (there is a bunny rabbit um um gonna make a) there is a bunny rabbit who made a sandcastle.,there is a bunny rabbit who made a sandcastle,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and (they are) both of them are make/ing a sandcastle.,and both of them are making a sandcastle,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and (they are) (they are pour) (they are pour/ing it on) (on) (the guy) somebody is pour/ing it on.,and somebody is pouring it on,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and he is break/ing it.,and he is breaking it,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and the other one get/3s : mad.,and the other one gets mad,0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,no not mad I forgot [+_bch].,no not mad I forgot,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,it break/3s.,it breaks,0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and they make another one.,and they make another one,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,they have both basket/s.,they have both baskets,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,the bunny rabbits has|have[EW:have] basket/s.,the bunny rabbits has baskets,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and (they gr) they are have/ing a picnic.,and they are having a picnic,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and then the other one eat/3s all of his.,and then the other one eats all of his,0 0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and then the other one (du um) has (uh) juice.,and then the other one has juice,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and then (the other one is wa um) somebody is walk/ing.,and then somebody is walking,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and somebody is pull/ing somebody/z shirt.,and somebody is pulling somebody's shirt,0 0 0 6 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and somebody gets mad.,and somebody gets mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,somebody bring/3s somebody home.,somebody brings somebody home,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,there is a guy have/ing a balloon in his : wagon [EU].,there is a guy having a balloon in his wagon,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and the other one is walk/ing.,and the other one is walking,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,(and he w) and he is try/ing to take it off.,and he is trying to take it off,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and then he (en) unwrap/3s it a little bit off.,and then he unwraps it a little bit off,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and then it fly/3s away.,and then it flies away,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and then (it float|float[EW:floats]) (he wrap um) (the um) the string fall/3s down.,and then the string falls down,0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,(why does your boss) do/3s your boss let you look at these page/s [+_bch]?,does your boss let you look at these pages,3 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,"she says while your do/ing them I am not suppose/ed to so I am not so you can see them, go ahead.",she says while your doing them I am not supposed to so I am not so you can see them go ahead,0 0 0 0 6 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,the guy has balloon/s in his hand.,the guy has balloons in his hand,0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,(and the) and the other one buy/3s one.,and the other one buys one,0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,(and then he) and (then he sh) then he : check/3s in his pocket for money.,and then he checks in his pocket for money,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and he does not have money.,and he does not have money,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,he check/3s it for money.,he checks it for money,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and he can not get one.,and he can not get one,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,(and) and (he was allow/ed to ah) (the other one : is) (the uh) there was a man : (heh uh) sell/ing balloon/s.,and there was a man selling balloons,0 0 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and then he give/3s one to him.,and then he gives one to him,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and the other one has a balloon.,and the other one has a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and the other[!] one has a balloon.,and the other one has a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,A[EW:an] elephant is go/ing to his friend.,A elephant is going to his friend,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,he is say/ing (what is there) what is in there ?,he is saying what is in there,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,orange.,orange,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,: he said (the) the orange fall[EW:fell] down in the water.,he said the orange fall down in the water,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,"and then (the) his friend, (he) he falled|fell[EW:fell] in the water.",and then his friend he falled in the water,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,he was try/ing to get the orange.,he was trying to get the orange,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then) (and then the elephant got the thing out) : and then : the elephant got the orange out.,and then the elephant got the orange out,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then he walk/ed) (and then he walk/ed his) and then he walk/ed to his home.,and then he walked to his home,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,The end[!] [+_bch].,The end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(Um the) the elephant and the friend he was go/ing to the pool [EU].,the elephant and the friend he was going to the pool,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,they were go/ing to jump into the pool really fast.,they were going to jump into the pool really fast,0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and they are go/ing to jump into where the side/s are.,and they are going to jump into where the sides are,0 0 0 6 0 0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and they) and (the) his friend hurt his leg.,and his friend hurt his leg,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,he hurt his leg.,he hurt his leg,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and that hurt/3s really bad.,and that hurts really bad,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(um his f) his (um) his brother came.,his his brother came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and he) (and so he) and he seed|see[EW:saw] what happen/ed.,and he seed what happened,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and he gave him a bandaid.,and he gave him a bandaid,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then it hur) and then he went home.,and then he went home,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,They were go/ing to play pool again.,They were going to play pool again,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then there) and then he was drive/ing *an airplane [EU].,and then he was driving airplane,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and then (the) his friend was (drive/ing a) (drive/ing) drive/ing a[EW:an] airplane.,and then his friend was driving a airplane,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and play/ing again) they are play/ing again.,they are playing again,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(they were going to jump i) and the airplane got in the water.,and the airplane got in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,okay.,okay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then he was try/ing to) and then he was very mad.,and then he was very mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then his friend) and then (his sister went over to that girl t : um) the sister went over to the brother.,and then the sister went over to the brother,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then he) and then the brother came over her [EU].,and then the brother came over her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then) and then he sawed|see[EW:saw] what happened.,and then he sawed what happened,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and then he is try/ing to get it.,and then he is trying to get it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and then (he) he did not know how to get it.,and then he did not know how to get it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,he try/ed.,he tried,0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,he pick/ed that.,he picked that,0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and then he try/ed to get it.,and then he tried to get it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,hey (look) look behind here [+_bch]!,hey look behind here,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(um) the boy has girl hair.,the boy has girl hair,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(the) the girl : was pretty.,the girl was pretty,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,then he try/ed to get it.,then he tried to get it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and she *was try/ing to get that (um) airplane [EU].,and she trying to get that airplane,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then he tr) and then he got it.,and then he got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and he was very happy.,and he was very happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then : h) and then the elephant was very happy too.,and then the elephant was very happy too,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,The end [+_bch].,The end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(I see a bunny that is in the s um) I see a dog that is in the sandbox and help/ing the bunny.,I see a dog that is in the sandbox and helping the bunny,0 0 0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and the bunny) and the bunny is make/ing a sandcastle.,and the bunny is making a sandcastle,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,they are try/ing to make a sandcastle.,they are trying to make a sandcastle,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and he is help/ing) and he is help/ing the dog.,and he is helping the dog,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and (uh um) the rabbit broke the doggy/z castle.,and the rabbit broke the doggy's castle,0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and then he was make/ing it all over again.,and then he was making it all over again,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,The end[!] [+_bch].,The end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(Um) the bunny was go/ing for a picnic.,the bunny was going for a picnic,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,he was follow/ing the dog.,he was following the dog,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and : then they were there already.,and then they were there already,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,they were play/ing in the sandbox with a picnic.,they were playing in the sandbox with a picnic,0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then he burped) and then he burp/ed.,and then he burped,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then he was eating all th) and then the dog was eat/ing all the other thing[EW:things].,and then the dog was eating all the other thing,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,he was eat/ing one at a time.,he was eating one at a time,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then : he was) and (then he sawed|see[EW:saw]) then the dog : he was lay/ing down.,and then the dog he was laying down,0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and then he was sleep/ing.,and then he was sleeping,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,he was kind of asleep.,he was kind of asleep,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,but he did not.,but he did not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then :) and (then he was turn/ed into a doctor) then he was turn/ed into a doctor.,and then he was turned into a doctor,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and he had) and he had doctor thing/s.,and he had doctor things,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and :) and a doctor came.,and a doctor came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and then : he went with the doctor.,and then he went with the doctor,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and then he tooked|take[EW:took] him to the doctor : where the doctor thing is [~__laughs].,and then he tooked him to the doctor where the doctor thing is,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and then : he laid down with a blankie.,and then he laid down with a blankie,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,went to sleep [EU].,went to sleep,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then) : and then the doctor came (to a different) to a different man.,and then the doctor came to a different man,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,but it was not that man.,but it was not that man,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(he was so) he was so tall.,he was so tall,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and he was try/ing to help the man.,and he was trying to help the man,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then he w) and then the doctor came (with this) with : the bunny.,and then the doctor came with the bunny,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,he was go/ing to the doctor.,he was going to the doctor,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,the end[!] [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,they are go/ing to the (um) : circus.,they are going to the circus,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and then (the bunny was c) the bunny came with him.,and then the bunny came with him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and he had) and he had a balloon.,and he had a balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then he w) and then he was try/ing to get the balloon.,and then he was trying to get the balloon,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and he was follow/ing him.,and he was following him,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and then he took it off.,and then he took it off,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then it po) and then it was gone.,and then it was gone,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and they were try/ing to (get it) : (get) (get) get it back.,and they were trying to get it back,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and then he was very mad.,and then he was very mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and then he said I am sorry.,and then he said I am sorry,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and then he had a whole bunch : of balloon/s.,and then he had a whole bunch of balloons,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then he want/ed) (and then he want/ed m) and then he was go/ing to get one.,and then he was going to get one,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and then he want/ed one.,and then he wanted one,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and then he had some dollars[EW:money].,and then he had some dollars,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and he was) then he was go/ing to[:_gonna] buy one.,then he was going to buy one,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,: and then : he gots[EW:has] no money.,and then he gots no money,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and then he could not buy one.,and then he could not buy one,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then he was) and then the doctor (help him) help|help[EW:helps] him.,and then the doctor help him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and then he gave him some money.,and then he gave him some money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then) and then he want/ed the balloon.,and then he wanted the balloon,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and then (um) : he got a balloon for him.,and then he got a balloon for him,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,he gave him some money.,he gave him some money,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and then : he got a balloon.,and then he got a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and they wan) (and they like/ed) and they like/ed it.,and they liked it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then they said) and then they said : thank you.,and then they said thank you,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,The end [+_bch].,The end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,An elephant meet/3s a[-:] horse.,An elephant meets a horse,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,then the elephant/z ball[-:] bounce/3s in the water.,then the elephant's ball bounces in the water,0 0 2 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,the horse : swim/3s to get it.,the horse swims to get it,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,the horse got the ball.,the horse got the ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,the elephant was happy.,the elephant was happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,An elephant and a horse want/ed to go on a diving board.,An elephant and a horse wanted to go on a diving board,0 0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,the elephant say/3s let us go on the diving board.,the elephant says let us go on the diving board,0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,the elephant slip/3s : and scrape/3s her knee.,the elephant slips and scrapes her knee,0 0 3 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,then[-:] the elephant/z : father come/3s : and put/3s a bandaid on it.,then the elephant's father comes and puts a bandaid on it,0 0 2 0 3 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,and the father said that bandaid will make sure it does not hurt.,and the father said that bandaid will make sure it does not hurt,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,the father say/3s no run/ing.,the father says no running,0 0 3 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,an elephant : met a horse who has a toy plane.,an elephant met a horse who has a toy plane,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,(the plane f) (he) the horse (pretend it) pretend|pretend[EW:pretend/3s] it fly/3s.,the horse pretend it flies,0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,then the elephant want/3s to try.,then the elephant wants to try,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,then : the elephant threw it into the water.,then the elephant threw it into the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,it : was sink/ing.,it was sinking,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,and the horse was mad.,and the horse was mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,: and : the elephant/z father came.,and the elephant's father came,0 0 2 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,and the elephant said I threw that plane into the water by an accident.,and the elephant said I threw that plane into the water by an accident,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,and it is the horse/z.,and it is the horse's,0 0 0 0 2 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,the : elephant/z dad could not reach it because it was too far.,the elephant's dad could not reach it because it was too far,0 2 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,and the horse was : cry/ing.,and the horse was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,then a[-:] lady came and : had a net : (and caught it with) and : almost caught it with the net.,then a lady came and had a net and almost caught it with the net,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,and she got it with the net and gave it to the horse.,and she got it with the net and gave it to the horse,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,the[-:] horse was happy.,the horse was happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,a dog and a bunny are make/ing a sandcastle.,a dog and a bunny are making a sandcastle,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,they need/ed : thick sand.,they needed thick sand,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,but the : sand was too light.,but the sand was too light,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,so it fell on the castle.,so it fell on the castle,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,now[-:] the castle is nothing.,now the castle is nothing,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,but they could see part of the castle.,but they could see part of the castle,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,a bunny and a dog are go/ing for a walk.,a bunny and a dog are going for a walk,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,: they have a picnic.,they have a picnic,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,the bunny get/3s too full.,the bunny gets too full,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,(he) the bunny gots[EW:has] a stomachache.,the bunny gots a stomachache,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,the dog run/3s to : the doctor.,the dog runs to the doctor,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,the dog pull/3s the doctor to the bunny.,the dog pulls the doctor to the bunny,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,the doctor said : he has a stomachache.,the doctor said he has a stomachache,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,then the bunny/z mom came.,then the bunny's mom came,0 0 2 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,a : dog is pull/ing a wagon with a balloon.,a dog is pulling a wagon with a balloon,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,the bunny say/3s : if you let go it will fly up to the sky.,the bunny says if you let go it will fly up to the sky,0 0 3 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,the dog say/3s no do not do that.,the dog says no do not do that,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,the balloon flied|fly[EW:flew] up : to the sky.,the balloon flied up to the sky,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,the doggy get/3s mad.,the doggy gets mad,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,then : a man come/3s by (with) who was[EW:is] sell/ing balloon/s.,then a man comes by who was selling balloons,0 0 0 3 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,: the bunny pick/ed : one of the balloon/s : which was five cent/s.,the bunny picked one of the balloons which was five cents,0 0 4 0 0 0 1 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,and he did not have any money.,and he did not have any money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,: so he could not buy it.,so he could not buy it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,his mom came.,his mom came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,and the : bunny say/3s I need a five cent/s to buy one of those balloon/s.,and the bunny says I need a five cents to buy one of those balloons,0 0 0 3 0 0 0 0 1 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,then the (um) mother : (w) one give five (cents) cent/s to the man [EU].,then the mother one give five cents to the man,0 0 0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,then they both got balloon/s.,then they both got balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the elephant and the giraffe : were play/ing with a ball.,the elephant and the giraffe were playing with a ball,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the ball went in the water[-:].,the ball went in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the animal was swim[EW:swimming] and got it.,the animal was swim and got it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the elephant got her ball back.,the elephant got her ball back,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,(the elephant) : (uh : the : um) : they were happy.,they were happy,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,: they were at : the water pool.,they were at the water pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the elephant was : point/ing : at the : jump board.,the elephant was pointing at the jump board,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the elephant slip/ed.,the elephant slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the elephant got a[EW:an] owee.,the elephant got a owee,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the safety guard[-:] : ran[-:].,the safety guard ran,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the safety guard put a bandaid on her.,the safety guard put a bandaid on her,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,she sat down.,she sat down,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the : safety guard got mad at her.,the safety guard got mad at her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,no run/ing.,no running,0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,they were go/ing to play with a[EW:an] [?] airplane.,they were going to play with a airplane,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the animal was play/ing with (it : uh) the airplane[~!__whispering].,the animal was playing with the airplane,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the elephant[~!_whispering] took the airplane.,the elephant took the airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the plane went in the water.,the plane went in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the animal got mad at her.,the animal got mad at her,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the safety guard : was come/ing to check.,the safety guard was coming to check,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,(he) : the elephant said[-:] the airplane is in the water.,the elephant said the airplane is in the water,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the safety guard : try/ed to get it.,the safety guard tried to get it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,they could not get it.,they could not get it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,a big elephant with a catcher : got it.,a big elephant with a catcher got it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,she pull/ed it out.,she pulled it out,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the animal/z[-:] : airplane was back.,the animal's airplane was back,0 2 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,they were both happy.,they were both happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,they were go/ing to [~_gonna] make a sandcastle.,they were going to make a sandcastle,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the rabbit put/3s : sand in the bucket.,the rabbit puts sand in the bucket,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,he dump/ed it on the castle.,he dumped it on the castle,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the : sandcastle broke.,the sandcastle broke,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the dog cry/ed.,the dog cried,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,they were go/ing to go for a picnic.,they were going to go for a picnic,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,they : took their stuff out.,they took their stuff out,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,bunny ate fast.,bunny ate fast,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,what is that?,what is that,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,bunny ate fast [+_bch].,bunny ate fast,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,he got a sore tummy.,he got a sore tummy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,he was call/ing the doctor.,he was calling the doctor,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the pup drag/ed the doctor over there.,the pup dragged the doctor over there,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,(you ate too) you ate fast : said the[-:] doctor.,you ate fast said the doctor,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the doctor : (took him with him) [~_EXA:_the_doctor_what] took (him wi) the bunny with him.,the doctor took the bunny with him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,bunny was come/ing to look at the : balloon.,bunny was coming to look at the balloon,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the bunny said wow!,the bunny said wow,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the bunny untie/ed it.,the bunny untied it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,it flew away[-:].,it flew away,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,dog was mad[-:].,dog was mad,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,they were go/ing to [~_gonna] buy a new one.,they were going to buy a new one,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,they did not have no[EW:any] change.,they did not have no change,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,actually[?] : they did not have five cent/s.,actually they did not have five cents,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,they could not buy one.,they could not buy one,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,there was a doctor.,there was a doctor,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the doctor gave them twenty five cent/s for two balloon/s.,the doctor gave them twenty five cents for two balloons,0 0 0 0 0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,they : got their balloon.,they got their balloon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,they were happy.,they were happy,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,one day there was a[EW:an] elephant bounce/ing : a ball.,one day there was a elephant bouncing a ball,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,: it went into the water.,it went into the water,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,: the zebra jump/ed in and (ge) get/3s the ball [EU].,the zebra jumped in and gets the ball,0 0 4 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,: and zebra give/3s it back to elephant.,and zebra gives it back to elephant,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,: the lady smile/3s.,the lady smiles,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,and the giraffe smile/3s.,and the giraffe smiles,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,one day : they are both laugh/ing.,one day they are both laughing,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,and they want/ed to go on the board.,and they wanted to go on the board,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,: (the) : the elephant : said to the giraffe let us go on the board.,the elephant said to the giraffe let us go on the board,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,: and : the elephant slip/3s.,and the elephant slips,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,: and he get/3s a booboo.,and he gets a booboo,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,: then another (el) elephant come/3s run/ing and look|look[EW:looks] at the booboo.,then another elephant comes running and look at the booboo,0 0 0 3 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,: and he put/3s a bandage on.,and he puts a bandage on,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,: and now (she go) she is : surprise/ed.,and now she is surprised,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,: no run/ing allow/ed (the :) the other elephant say/3s.,no running allowed the other elephant says,0 6 4 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,one day : the giraffe had : a[EW:an] : airplane in his hand.,one day the giraffe had a airplane in his hand,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,: he was fly/ing it.,he was flying it,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,elephant took it away from him.,elephant took it away from him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,and she drop/ed it into the pool.,and she dropped it into the pool,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,: the giraffe got angry at the elephant.,the giraffe got angry at the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,but the guy came : run/ing.,but the guy came running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,and : he : see/3s the plane in the water.,and he sees the plane in the water,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,the elephant said it was not : me that brought it.,the elephant said it was not me that brought it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,the other elephant try/ed to reach it.,the other elephant tried to reach it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,: (then the l) then the giraffe was cry/ing.,then the giraffe was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,I know a way to get the plane out.,I know a way to get the plane out,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,she put in her thing and : got the airplane.,she put in her thing and got the airplane,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,(she is) she hand/ed : (the) : the airplane to the giraffe.,she handed the airplane to the giraffe,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,: and the giraffe hug/ed it.,and the giraffe hugged it,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,one day : rabbit want/ed to play in the sand.,one day rabbit wanted to play in the sand,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,and so did the dog.,and so did the dog,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,the dog : was go/ing to touch it.,the dog was going to touch it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,and the rabbit was fill/ing up his bucket.,and the rabbit was filling up his bucket,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,rabbit dump/3s sand on it.,rabbit dumps sand on it,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,the dog saw.,the dog saw,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,(and) : and the rabbit was horrified.,and the rabbit was horrified,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,the dog try/ed to fix it.,the dog tried to fix it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,one day dog met rabbit.,one day dog met rabbit,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,and they both want/ed to have a picnic.,and they both wanted to have a picnic,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,rabbit ate and ate.,rabbit ate and ate,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,: rabbit got a stomachache.,rabbit got a stomachache,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,and the dog was eat/ing.,and the dog was eating,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,: he got : sick.,he got sick,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,the dog came run/ing to a doctor.,the dog came running to a doctor,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,he said wait a minute.,he said wait a minute,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,what is this problem about?,what is this problem about,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,it is about him.,it is about him,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,and he is sick.,and he is sick,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,the doctor take/3s him : for a walk.,the doctor takes him for a walk,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,one day a dog (was take/ing a b) wrap/ed a balloon : on her[-:] : wagon.,one day a dog wrapped a balloon on her wagon,0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,the bunny see/3s the balloon.,the bunny sees the balloon,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,he tie/3s it off.,he ties it off,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,he let go.,he let go,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,and it was float/ing away.,and it was floating away,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,and the dog was mad at the rabbit.,and the dog was mad at the rabbit,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,and the rabbit see/3s balloon/s.,and the rabbit sees balloons,0 0 0 3 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,: a[EW:the] balloon/s : were holded|hold[EW:held] by an old rabbit.,a balloons were holded by an old rabbit,0 1 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,it is worth five : cent/s.,it is worth five cents,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,you cannot have a balloon if you do not have any money.,you cannot have a balloon if you do not have any money,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,rabbit go/3s : to the doctor.,rabbit goes to the doctor,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,we want a balloon.,we want a balloon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,she paid : (two[-:] ) two (ff) : nickele/s.,she paid two nickeles,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,and now they both got[EW:have] balloon/s.,and now they both got balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,(um) : a giraffe and a[EW:an] elephant were friend/s.,a giraffe and a elephant were friends,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and they were play/ing (ta) with each other.,and they were playing with each other,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and then : their ball : went in the water.,and then their ball went in the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and the giraffe went to try and[EW:to] swim for the ball.,and the giraffe went to try and swim for the ball,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and the giraffe got it and gave it : to the elephant.,and the giraffe got it and gave it to the elephant,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and the giraffe was soak/ing wet.,and the giraffe was soaking wet,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,(um) : once there was a[EW:an] elephant and giraffe.,once there was a elephant and giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and they (wen) were friend/s.,and they were friends,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and they went to a swimming pool together.,and they went to a swimming pool together,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and the elephant was go/ing to jump in.,and the elephant was going to jump in,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,(and she) and before she jump/ed in : (um) : for some reason she must have forgot something.,and before she jumped in for some reason she must have forgot something,0 0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,(she went) she ran very fast.,she ran very fast,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,with no run/ing allow/ed the elephant fell down and hurt her knee.,with no running allowed the elephant fell down and hurt her knee,0 0 6 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,she was cry/ing and look/ing at the pain.,she was crying and looking at the pain,0 0 6 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,she is : cry/ing even more[!] and not[!] look/ing at the pain.,she is crying even more and not looking at the pain,0 0 6 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,then she sat down on the bench.,then she sat down on the bench,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and the lifeguard gave her a bandaid.,and the lifeguard gave her a bandaid,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and the lifeguard said no run/ing allow/ed.,and the lifeguard said no running allowed,0 0 0 0 0 6 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,the elephant and the giraffe went to the swimming pool.,the elephant and the giraffe went to the swimming pool,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,(and they) and the giraffe brought a swimming toy with him.,and the giraffe brought a swimming toy with him,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,(and) and he was play/ing it.,and he was playing it,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and the elephant was just like stare[EW:stare/ing] (on it) : (on) at it like crazy.,and the elephant was just like stare at it like crazy,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,(the) the elephant grab/ed it from the giraffe.,the elephant grabbed it from the giraffe,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,it look/ed so neat.,it looked so neat,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and then she drop/ed it in the water.,and then she dropped it in the water,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,the : giraffe got very mad at the elephant.,the giraffe got very mad at the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,the lifeguard came and : look/ed at it : (and) and came closer to the elephant.,the lifeguard came and looked at it and came closer to the elephant,0 0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and the elephant was (ex) try/ing to explain : how it happen/ed.,and the elephant was trying to explain how it happened,0 0 0 0 6 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and the lifeguard was listen/ing very carefully.,and the lifeguard was listening very carefully,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,the lifeguard try/ed to get it.,the lifeguard tried to get it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,but he could not.,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,the giraffe was cry/ing.,the giraffe was crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,(the both) the lifeguard and the elephant (were) was[EW:were] just kind of stare/ing at it.,the lifeguard and the elephant was just kind of staring at it,0 0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,then a girl with a net came.,then a girl with a net came,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,(and the) [~_actually_go_back] and (they was sup) they were like [~_points_to_the_picture].,and they were like,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and the girl with the net : was : (pull) : (get) try/ing to get the airplane with her net.,and the girl with the net was trying to get the airplane with her net,0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and she got it for the : giraffe.,and she got it for the giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,the giraffe was hug/ing it.,the giraffe was hugging it,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,once there was a bunny and : dog.,once there was a bunny and dog,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,(and and) and they were friend/s.,and they were friends,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,the dog was make/ing a sandcastle.,the dog was making a sandcastle,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,then the bunny was about to come in with a shovel.,then the bunny was about to come in with a shovel,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and he came in and throwed|throw[EW:threw] a : bucket of sand.,and he came in and throwed a bucket of sand,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,the bunny dump/ed it onto the (ca) : sandcastle.,the bunny dumped it onto the sandcastle,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,dog was kind of sad.,dog was kind of sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,(it bro) I think it broke her castle.,I think it broke her castle,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,she was cry/ing.,she was crying,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,there was a dog and a bunny.,there was a dog and a bunny,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,they were friend/s.,they were friends,0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and they were go/ing to [~_gonna] go to a picnic with each other.,and they were going to go to a picnic with each other,0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,(um : the) the dog : was take/ing everything out of her picnic basket.,the dog was taking everything out of her picnic basket,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,but the bunny was just eat/ing everything she took out.,but the bunny was just eating everything she took out,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,(the) the bunny was : very full.,the bunny was very full,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and the dog was hardly even (eat) ate everything [EU].,and the dog was hardly even ate everything,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,the bunny was : fat.,the bunny was fat,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and then the : dog was about to drink a little bit of her juice.,and then the dog was about to drink a little bit of her juice,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and the : bunny had a tummyache.,and the bunny had a tummyache,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,then a grownup bunny came along.,then a grownup bunny came along,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,(and the) and the dog was race/ing to her.,and the dog was racing to her,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and it was like please(*3).,and it was like please,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and the lady was like you eat too : to eat : you bunny.,and the lady was like you eat too to eat you bunny,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and the bunny and the : grownup bunny (just) : just went along with each other.,and the bunny and the grownup bunny just went along with each other,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,(the bunny and the dog were) (the) the bunny was run/ing to the dog.,the bunny was running to the dog,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and the dog was just : go/ing her wagon in front of her : with her balloon.,and the dog was just going her wagon in front of her with her balloon,0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and the bunny like/ed the balloon.,and the bunny liked the balloon,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,he was about to pull it off.,he was about to pull it off,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and the bunny was untie/ing it.,and the bunny was untying it,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and (the bunny was like) [~_I_mean] (the) the dog was like [~_makes_gasping_sound].,and the dog was like,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and then the bunny : untie/ed it.,and then the bunny untied it,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and (the) : the balloon float/ed away.,and the balloon floated away,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,they were try/ing to reach to get it.,they were trying to reach to get it,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,the dog got mad at the bunny (un) (until) when the string was just left.,the dog got mad at the bunny when the string was just left,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and then a bunny with (balloon) (lot/s of) lot/s[!] of balloon/s came.,and then a bunny with lots of balloons came,0 0 0 0 0 1 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and he said [~_change_in_voice] come here come here the bunny.,and he said come here come here the bunny,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and (the) the man with the balloon/s came.,and the man with the balloons came,0 0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and the bunny was like [~_forlorn_look_on_face].,and the bunny was like,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and the big bunny with the balloon/s was like which one do you want?,and the big bunny with the balloons was like which one do you want,0 0 0 0 0 0 1 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,that one that one the little bunny was like [~_facial_expression].,that one that one the little bunny was like,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,(this) : this one?,this one,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,[~_CHI_asks_EXA:_actually_go_back] you can not have this one [~__harsh_voice].,you can not have this one,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and then the bunny and[!] the dog was[EW:were] sad.,and then the bunny and the dog was sad,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and then (the) the same lady with the other book came.,and then the same lady with the other book came,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,(and the) and the bunny was run/ing to her.,and the bunny was running to her,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and the dog was just stay/ing with the : bunny with the balloon/s.,and the dog was just staying with the bunny with the balloons,0 0 0 0 0 6 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,(and) : and the dog still had her wagon.,and the dog still had her wagon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,(and the) and (the grown up b) (girl bunny was) the kid bunny was say/ing to the grown up girl bunny : can we get one of those balloon/s?,and the kid bunny was saying to the grown up girl bunny can we get one of those balloons,0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,can we get one of those balloon/s : for the dog?,can we get one of those balloons for the dog,0 0 0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,(and the) : (and the) and she paid for it.,and she paid for it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and they each got a balloon.,and they each got a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,two : different animal/s were : the swimming pool [EU].,two different animals were the swimming pool,0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,"they want/ed to play dodgeball in the water, water dodgeball.",they wanted to play dodgeball in the water water dodgeball,0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,the ball got in the water.,the ball got in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,and the (an) giraffe[-:] was go/ing to[:_gonna] get it.,and the giraffe was going to get it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,so (huh : hm) while he was swim/ing water came out of his mouth.,so while he was swimming water came out of his mouth,0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,and[-:] he was all drippy.,and he was all drippy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,then[?] : giggle/ed [EU].,then giggled,0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,(he[-:]) (the ele) the elephant watch/ed.,the elephant watched,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,when they were at : a swimming pool the elephant want/ed (in the dive) the diving board.,when they were at a swimming pool the elephant wanted the diving board,0 0 0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,(and there) (she want/ed to run toward) she want/ed to race towards it.,she wanted to race towards it,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,but there was a sign[-:] that said no run/ing.,but there was a sign that said no running,0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,she runned|run[EW:ran][!] : towards here.,she runned towards here,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,the giraffe never runned|run[EW:ran].,the giraffe never runned,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,(and they) (xx xx huh) and the elephant slip/ed and slip/ed : and fall|fall[EW:fell] down and hurt her knee.,and the elephant slipped and slipped and fall down and hurt her knee,0 0 0 4 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,lifeguard came run/ing.,lifeguard came running,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,she[-:] : got a bandaid on it : [EW:an]elephant sized[~!_laughing] : bandaid.,she got a bandaid on it elephant sized bandaid,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,and (h) : bit better [EU].,and bit better,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,and[~!_laughing] the lifeguard said next[~!_laughing] time look at the sign[-:] [~_laughs] !,and the lifeguard said next time look at the sign,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,they were at the swimming pool.,they were at the swimming pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,and the (huh) giraffe (huh) : is throw/ing (air huh) super duper fly/ing jet plane [EU].,and the giraffe is throwing super duper flying jet plane,0 0 0 0 6 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,he want/ed to fly it.,he wanted to fly it,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,but : Elephant want/ed to fly it into the water see if it could : land on its gear [EU].,but Elephant wanted to fly it into the water see if it could land on its gear,0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,but (it w) it was start/ing to sink.,but it was starting to sink,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,then[-:] the giraffe got angry at her : because of the plane : in the water.,then the giraffe got angry at her because of the plane in the water,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,and a lifeguard (huh : s) look/ed at them.,and a lifeguard looked at them,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,what is go/ing on?,what is going on,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,and they said : (the) : my friend (s) : his super duper : jet plane is in the swimming pool.,and they said my friend his super duper jet plane is in the swimming pool,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,it is sink/ing.,it is sinking,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,he try|try[EW:tried] to get it.,he try to get it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,but he could not reach it.,but he could not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,it was start/ing to sink more.,it was starting to sink more,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,cry/ed [EU].,cried,4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,then (they s) he who is : there to swim [~_laughs] he got something : (was all) that look/ed like a big fishing net.,then he who is there to swim he got something that looked like a big fishing net,0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,he got it out.,he got it out,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,(huh) he got it.,he got it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,and he tooked|take[EW:took] it out and : (start/ing) stop cry/ing [EU].,and he tooked it out and stop crying,0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,then[-:] : to : the giraffe : and got happy [EU].,then to the giraffe and got happy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,he hug/ed his plane : like it was[~!_laughing] a lost memory.,he hugged his plane like it was a lost memory,0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,(hm) : there : were [~_laughs] : two : mole/s at the sandbox.,there were two moles at the sandbox,0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,one : was : build/ing a sandcastle.,one was building a sandcastle,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,and one was build/ing a pail.,and one was building a pail,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,(one) the bunny : when he was done fill/ing it up : and pat/ing it down he put it right[!] over (the) : the sandcastle[-:][!].,the bunny when he was done filling it up and patting it down he put it right over the sandcastle,0 0 0 0 0 0 6 0 0 0 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,: went oh no [EU]!,went oh no,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,doggy got[EW:was] sad.,doggy got sad,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,[~_laughs] bunny just whistle/ed [~_laughs].,bunny just whistled,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,the animal/s : go/ing out for a picnic in the wood/s [EU].,the animals going out for a picnic in the woods,0 1 6 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,they found the perfect spot.,they found the perfect spot,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,they start/ed chow/ing down.,they started chowing down,0 4 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,[~_laughs] the doggy ate (s) sandwich[EW:sandwiches] and juice.,the doggy ate sandwich and juice,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,and the bunny[~!_laughing] got just a tummyache [EU].,and the bunny got just a tummyache,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,[~_laughs] : then : him[EW:he] : (xx xx) drinked|drink[EW:drank] : his juice : and ate a biscuit.,then him drinked his juice and ate a biscuit,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,and the bunny[~!_laughing] got (a) : sicker.,and the bunny got sicker,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,[~_laughs] the bunny faint/ed [~_laughs].,the bunny fainted,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,then got : there [EU].,then got there,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,him[EW:he] want|want[EW:wanted][?] to get him to : come [~_laughs].,him want to get him to come,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,[~_laughs] he got a big tummyache.,he got a big tummyache,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,he was go/ing dizzy[-:] [EU]!,he was going dizzy,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,(hm pic) [EW:the]picnic was all gone.,picnic was all gone,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,[~_laughs] the (we) bunny went back home.,the bunny went back home,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,one animal had a balloon[-:].,one animal had a balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,and : the bunny was come/ing towards (this) him.,and the bunny was coming towards him,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,[~_laughs] : he say|say[EW:says] cool[!] : balloon[-:].,he say cool balloon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,he untie/ed the balloon.,he untied the balloon,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,did not know it would float up [EU].,did not know it would float up,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,it went really[!] high.,it went really high,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,they could not get[!] it.,they could not get it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,and the balloon : was gone.,and the balloon was gone,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,the doggy got angry.,the doggy got angry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,then[-:] : there was a balloon saler[EW:seller].,then there was a balloon saler,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,he want/ed one of the balloon/s (to get) : (to) : for his friend.,he wanted one of the balloons for his friend,0 4 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,but : he was broke.,but he was broke,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,(s) so : decide/ed to get someone who had money.,so decided to get someone who had money,0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,the bunny went to get the doctor.,the bunny went to get the doctor,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,she had lot/s[!] of money : (huh) : to get : a balloon.,she had lots of money to get a balloon,0 0 1 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,then[-:] : two balloon/s : for each of them.,then two balloons for each of them,0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,and they were pretty [~_laughs] have/ing fun [~_laughs] and laugh/ing [EU].,and they were pretty having fun and laughing,0 0 0 0 6 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,an : elephant was play/ing with a ball.,an elephant was playing with a ball,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and a giraffe came to play with it.,and a giraffe came to play with it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,(um) and the elephant : threw the ball into the pool.,and the elephant threw the ball into the pool,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and then : they got : scare/ed : that it would sink.,and then they got scared that it would sink,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,the giraffe try/ed : swim/ing : to get it.,the giraffe tried swimming to get it,0 0 4 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,but he could not get it.,but he could not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,(and h um) : but he got it.,but he got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and he gave the ball back to the elephant.,and he gave the ball back to the elephant,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and the elephant was happy to see the ball again.,and the elephant was happy to see the ball again,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,The elephant and the giraffe seen|see[EW:saw] a diving board.,The elephant and the giraffe seen a diving board,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,(and the elephant said) and the elephant start/ed run/ing.,and the elephant started running,0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and the sign said no run/ing.,and the sign said no running,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and then the giraffe try/ed to catch the elephant.,and then the giraffe tried to catch the elephant,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,but the elephant hurt herself.,but the elephant hurt herself,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and she had a cut.,and she had a cut,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and she got a bandaid.,and she got a bandaid,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and she felt better.,and she felt better,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and the lifeguard got mad at her because the sign said no run/ing.,and the lifeguard got mad at her because the sign said no running,0 0 0 0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,The giraffe had a toy airplane.,The giraffe had a toy airplane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and the elephant want/ed to play with it.,and the elephant wanted to play with it,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,the giraffe : start/ed fly/ing it.,the giraffe started flying it,0 0 4 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,[~_coughs] and then the elephant took it from him and start/ed fly/ing it.,and then the elephant took it from him and started flying it,0 0 0 0 0 0 0 0 0 4 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and then it sunk underwater.,and then it sunk underwater,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and the giraffe got mad at the elephant.,and the giraffe got mad at the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,but the lifeguard went to get it.,but the lifeguard went to get it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and it was still float/ing in the pool.,and it was still floating in the pool,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and then he try/ed get/ing it from the outside of the pool.,and then he tried getting it from the outside of the pool,0 0 0 4 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and he could not reach it.,and he could not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and then : someone else came with a fishing net : and got it out of the pool : and gave it back to the giraffe.,and then someone else came with a fishing net and got it out of the pool and gave it back to the giraffe,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and he was happy again.,and he was happy again,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,a rabbit and a dog were play/ing : in the sand.,a rabbit and a dog were playing in the sand,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,they made a sandcastle.,they made a sandcastle,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,the rabbit broke the sandcastle.,the rabbit broke the sandcastle,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and the rabbit : got : mad.,and the rabbit got mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and the : dog start/ed cry/ing.,and the dog started crying,0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,the rabbit and the dog went for a picnic.,the rabbit and the dog went for a picnic,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,the rabbit had more stuff to eat than the dog.,the rabbit had more stuff to eat than the dog,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,the rabbit got really really full.,the rabbit got really really full,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and then the rabbit had a stomachache.,and then the rabbit had a stomachache,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,the dog ran to the rabbit/z mom.,the dog ran to the rabbit's mom,0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,[~_whispers] the dog [+_bch].,the dog,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,(and) and : she went to see the rabbit.,and she went to see the rabbit,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,(um) : and : (the) : she was a doctor.,and she was a doctor,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,(um) the rabbit felt better.,the rabbit felt better,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and he went home.,and he went home,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,the dog was with his wagon and his balloon.,the dog was with his wagon and his balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and : the rabbit want/ed the balloon.,and the rabbit wanted the balloon,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,the rabbit untie/ed the balloon and took it.,the rabbit untied the balloon and took it,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,then the balloon : flew up in the air.,then the balloon flew up in the air,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and the dog got mad.,and the dog got mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and there was a rabbit hold/ing a lot of balloon/s.,and there was a rabbit holding a lot of balloons,0 0 0 0 0 6 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and : the little rabbit bought : a balloon.,and the little rabbit bought a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,(hm) : and the little rabbit could not buy the balloon because it was five cent/s.,and the little rabbit could not buy the balloon because it was five cents,0 0 0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and : the dog : saw the balloon/s.,and the dog saw the balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and the little rabbit : went to get some money from the : doctor.,and the little rabbit went to get some money from the doctor,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and : the rabbit told the doctor that he did not have any money.,and the rabbit told the doctor that he did not have any money,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and : she bought the balloon.,and she bought the balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and the little rabbit and the dog had balloon/s.,and the little rabbit and the dog had balloons,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,there was this old : giraffe [~_pronounced_/gUraef/].,there was this old giraffe,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and elephant was play/ing (by) by the pool with some bouncy ball/s.,and elephant was playing by the pool with some bouncy balls,0 0 0 6 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and the giraffe came up and said can I play?,and the giraffe came up and said can I play,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,then he bump/ed the ball.,then he bumped the ball,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and then it went into the pool.,and then it went into the pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,then the giraffe swam(*2) [~_said_twice_for_effect].,then the giraffe swam,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and (there was) : water came out of his ear/s.,and water came out of his ears,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and the : elephant could not look.,and the elephant could not look,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,then : the : giraffe : gave it to the elephant.,then the giraffe gave it to the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and she was happy.,and she was happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,then he smile/ed.,then he smiled,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and she smile/ed.,and she smiled,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,there was (these two elephants) the giraffe and the elephant.,there was the giraffe and the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and there was a diving board.,and there was a diving board,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and the sign said no run/ing.,and the sign said no running,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and the elephant ran and ran.,and the elephant ran and ran,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and they almost slip/ed.,and they almost slipped,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,then she slip/ed.,then she slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and then the giraffe ran after her.,and then the giraffe ran after her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and then the elephant : hurt herself on the knee.,and then the elephant hurt herself on the knee,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and the giraffe look/ed at the sign : no run/ing.,and the giraffe looked at the sign no running,0 0 0 4 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,(and she sa) and the giraffe said no run/ing.,and the giraffe said no running,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and the lifeguard came.,and the lifeguard came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,: and (sh) (sh) the lifeguard put a bandaid on.,and the lifeguard put a bandaid on,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and : she was still cry/ing.,and she was still crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,: and the lifeguard help/ed her up and hand/ed her to the giraffe.,and the lifeguard helped her up and handed her to the giraffe,0 0 0 4 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and the lifeguard said no run/ing.,and the lifeguard said no running,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and she got up.,and she got up,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and she was all better.,and she was all better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and he flew his airplane.,and he flew his airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and he flew it.,and he flew it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and slobber came out.,and slobber came out,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and : the (gir) elephant look/ed at : the airplane.,and the elephant looked at the airplane,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and : she got dizzy.,and she got dizzy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,then she took it and flew it.,then she took it and flew it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and the giraffe said (uh) [EU].,and the giraffe said,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,then it went into the water.,then it went into the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and the : giraffe got really mad at the elephant.,and the giraffe got really mad at the elephant,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and the lifeguard came again.,and the lifeguard came again,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and : he look/ed : at the elephant.,and he looked at the elephant,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and there was a airplane in the water.,and there was a airplane in the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and : he try/ed to reach it.,and he tried to reach it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,but he could not.,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,(and) and the giraffe start/ed to cry.,and the giraffe started to cry,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and another lifeguard came : and : brought this net.,and another lifeguard came and brought this net,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and she : try/ed to get it.,and she tried to get it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and she did.,and she did,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and she hand/ed it back to : the giraffe.,and she handed it back to the giraffe,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,then the giraffe and the elephant was[EW:were] so happy.,then the giraffe and the elephant was so happy,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,there are these two bunny rabbit/s : play/ing in the sand.,there are these two bunny rabbits playing in the sand,0 0 0 0 0 1 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,they made a castle.,they made a castle,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and they are laugh/ing.,and they are laughing,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,they start/ing to fix it : and : build/ing new stuff.,they starting to fix it and building new stuff,0 6 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,: the boy rabbit dump/ed : sand on the castle.,the boy rabbit dumped sand on the castle,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,(sh) and (the) a little part of the castle is show/ing.,and a little part of the castle is showing,0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and now it is only sand.,and now it is only sand,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,now they are try/ing to build it back together.,now they are trying to build it back together,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,they are these two rabbit/s walk/ing (down the) : in the forest.,they are these two rabbits walking in the forest,0 0 0 0 1 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,they walk/ed and walk/ed.,they walked and walked,0 4 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,they met each other.,they met each other,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and they start/ed to have a picnic (with every bo) (and with every) : with : that girl.,and they started to have a picnic with that girl,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and then the boy rabbit ate everything up.,and then the boy rabbit ate everything up,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and he was full.,and he was full,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,then : the girl rabbit look/ed at the boy rabbit.,then the girl rabbit looked at the boy rabbit,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and the boy rabbit did not feel so good.,and the boy rabbit did not feel so good,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and then : there was a doctor came [EU].,and then there was a doctor came,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and the girl went to get (hi) her.,and the girl went to get her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and she pull/ed.,and she pulled,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and she pull/ed.,and she pulled,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and they finally got there.,and they finally got there,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and she was check/ing : if he was : all right.,and she was checking if he was all right,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,then : the doctor took him.,then the doctor took him,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and : the girl stay/ed there.,and the girl stayed there,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,they saw these two rabbit/s walk/ing down the wood/s again.,they saw these two rabbits walking down the woods again,0 0 0 0 1 6 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and one had a wagon and a balloon.,and one had a wagon and a balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and the boy jog/ed and jog/ed.,and the boy jogged and jogged,0 0 0 4 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and they look/ed at the balloon.,and they looked at the balloon,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and the boy rabbit untie/ed it.,and the boy rabbit untied it,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and he tie/ed : it.,and he tied it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and it flew up up and away.,and it flew up up and away,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and the girl rabbit got so mad.,and the girl rabbit got so mad,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,there was : another balloons[EW:balloon].,there was another balloons,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and the girl (ma) rabbit was still[!] mad.,and the girl rabbit was still mad,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,: and : the : boy ask/ed the man a question.,and the boy asked the man a question,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,: and : then the girl was come/ing over.,and then the girl was coming over,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and the man said the balloon/s were five cent/s.,and the man said the balloons were five cents,0 0 0 0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and the girl look/ed at there [EU].,and the girl looked at there,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and the man smile/ed.,and the man smiled,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,(oh again) there was the doctor : again.,there was the doctor again,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,: and (sh) the boy talk/ed to the rabbit : and said : my sister is mad because I lost her balloon.,and the boy talked to the rabbit and said my sister is mad because I lost her balloon,0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,the girl is mad.,the girl is mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,: here is five cent/s.,here is five cents,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and here are two balloon/s he said.,and here are two balloons he said,0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,they were so happy.,they were so happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,A giraffe and an elephant [EU].,A giraffe and an elephant,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,(are bou) the elephant is bounce/ing a ball.,the elephant is bouncing a ball,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and they are by the pool.,and they are by the pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,the ball fall/3s into the pool.,the ball falls into the pool,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,the giraffe swim/3s to get it.,the giraffe swims to get it,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,(um) the giraffe : give/3s the : ball back to the elephant.,the giraffe gives the ball back to the elephant,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,she thank/3s the giraffe.,she thanks the giraffe,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,The elephant and the giraffe are go/ing to the pool.,The elephant and the giraffe are going to the pool,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,the elephant is point/ing to the diving board.,the elephant is pointing to the diving board,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,(she) she is run/ing so she slip/3s.,she is running so she slips,0 0 6 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,she hurt/3s her knee.,she hurts her knee,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,the lifeguard come/3s to see what happen/ed.,the lifeguard comes to see what happened,0 0 3 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,the lifeguard put/3s a bandaid on it.,the lifeguard puts a bandaid on it,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,(she) the elephant sit/3s on the bench.,the elephant sits on the bench,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and she smile/3s at the lifeguard when he point/3s at the no run/ing sign.,and she smiles at the lifeguard when he points at the no running sign,0 0 3 0 0 0 0 0 3 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,The elephant and the giraffe go to the pool again.,The elephant and the giraffe go to the pool again,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,the : giraffe bring/3s an airplane that he is try/ing to fly.,the giraffe brings an airplane that he is trying to fly,0 0 3 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and the elephant is just look/ing at it.,and the elephant is just looking at it,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,then the elephant take/3s it away from the giraffe.,then the elephant takes it away from the giraffe,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and she drop/3s it into the water.,and she drops it into the water,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,the giraffe get/3s mad at her.,the giraffe gets mad at her,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,the lifeguard come/3s and see[EW:see/3s] what is happen/ing.,the lifeguard comes and see what is happening,0 0 3 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,the elephant is try/ing to explain what happen/ed.,the elephant is trying to explain what happened,0 0 0 6 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,the lifeguard try/3s to reach it.,the lifeguard tries to reach it,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and he can not reach it.,and he can not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,(and the elephant) and the giraffe : start/3s cry/ing.,and the giraffe starts crying,0 0 0 3 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,then another elephant come/3s with a : (um) net : and put/3s the net in the water and try/3s to get the : airplane.,then another elephant comes with a net and puts the net in the water and tries to get the airplane,0 0 0 3 0 0 0 0 3 0 0 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and she get/3s it out.,and she gets it out,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and the giraffe is happy again.,and the giraffe is happy again,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,(um : Two people) two (um) animal/s are : in the sandbox.,two animals are in the sandbox,0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,they are build/ing a sandcastle.,they are building a sandcastle,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,one of them is dump/ing sand over the castle.,one of them is dumping sand over the castle,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,the sandcastle break/3s : because all of the sand.,the sandcastle breaks because all of the sand,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and one of the animal/s get/3s sad.,and one of the animals gets sad,0 0 0 0 1 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,two animal/s are go/ing on a picnic.,two animals are going on a picnic,0 1 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,they bring lot/s of food.,they bring lots of food,0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and one of them is drool/ing over it.,and one of them is drooling over it,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,one of them eat/3s it all up.,one of them eats it all up,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and he get/3s a (tomach) stomachache.,and he gets a stomachache,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and the doctor come/3s to see what is wrong with him.,and the doctor comes to see what is wrong with him,0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,(she) (she) one of the animal/3s is drag/ing her.,one of the animals is dragging her,0 0 0 3 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,(she is) (she) she come/3s and (see what) see/3s what is wrong.,she comes and sees what is wrong,0 3 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and she help/3s him.,and she helps him,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,two : animal/s [EU].,two animals,0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,one animal come/3s to see the other animal.,one animal comes to see the other animal,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,one animal look/3s at the balloon that she has.,one animal looks at the balloon that she has,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,(she is) he is take/ing it off of the wagon.,he is taking it off of the wagon,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and it fly/3s away.,and it flies away,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,then one of them get/3s really mad.,then one of them gets really mad,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,then they see the balloon man.,then they see the balloon man,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and he probably go/3s to buy her another one.,and he probably goes to buy her another one,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and she ask/3s for one balloon.,and she asks for one balloon,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and the balloon/s are five cent/s.,and the balloons are five cents,0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and he is look/ing in his pocket/s.,and he is looking in his pockets,0 0 0 6 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and he is sad because he do/3s not have five cent/s.,and he is sad because he does not have five cents,0 0 0 0 0 0 3 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and then the doctor is just look/ing at the view.,and then the doctor is just looking at the view,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and he go/3s and ask/3s for five cent/s.,and he goes and asks for five cents,0 0 3 0 3 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and she give/3s the balloon man five cent/s.,and she gives the balloon man five cents,0 0 3 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and then : they both get balloon/s.,and then they both get balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,An elephant is play/ing ball with a ball.,An elephant is playing ball with a ball,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and then a giraffe is just (look/ing at) look/ing at the elephant like wow[!].,and then a giraffe is just looking at the elephant like wow,0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and (the) now (the) the elephant was bounce/ing it.,and now the elephant was bouncing it,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and it fell into the water.,and it fell into the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now the elephant is sad.,and now the elephant is sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,so look/3s like the giraffe is go/ing to go get it.,so looks like the giraffe is going to go get it,0 3 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now the giraffe jump/3s in : and is swim/ing to get (the balloon) [~_not_the_balloon] the : ball.,and now the giraffe jumps in and is swimming to get the ball,0 0 0 0 3 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and so now she got it for the elephant.,and so now she got it for the elephant,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the elephant is help/ing him out.,and the elephant is helping him out,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now the elephant is happy.,and now the elephant is happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the giraffe : is happy too!,and the giraffe is happy too,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,(Um : hm) [~_laughs] (um) they are stand/ing in front of a pool the giraffe and the elephant.,they are standing in front of a pool the giraffe and the elephant,0 0 6 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and look/3s like they could (be) feel like swim/ing.,and looks like they could feel like swimming,0 3 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,that is all [+_bch].,that is all,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now the elephant see/3s the diving board.,and now the elephant sees the diving board,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the elephant want/3s to go dive/ing into the pool.,and the elephant wants to go diving into the pool,0 0 0 3 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the elephant is run/ing to go get : to the diving board.,and the elephant is running to go get to the diving board,0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the[?] giraffe is run/ing after her.,and the giraffe is running after her,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and then she fell : and hurt her knee.,and then she fell and hurt her knee,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and looks like she is go/ing to cry.,and looks like she is going to cry,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the[?] giraffe is run/ing to help her.,and the giraffe is running to help her,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and then the lifeguard come/3s : and is help/ing her.,and then the lifeguard comes and is helping her,0 0 0 0 3 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and : the giraffe is help/ing her too.,and the giraffe is helping her too,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now she is cry/ing.,and now she is crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the : lifeguard is put/ing a bandaid on her : leg.,and the lifeguard is putting a bandaid on her leg,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now (the) the lifeguard is carry/ing her to a bench.,and now the lifeguard is carrying her to a bench,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and (the hiraff) the giraffe is help/ing her.,and the giraffe is helping her,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the lifeguard is mad (and is say) and is tell/ing her look at the sign.,and the lifeguard is mad and is telling her look at the sign,0 0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,it says no run/ing on it.,it says no running on it,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the giraffe (and) and (the um) the elephant (look/3s like he is) look/3s (like she never) (I don't know) (I can not) (I don't know what she is do/ing) (let us see) (like hm) like he is go/ing to[:_gonna] : get very mad at her?,and the giraffe and the elephant looks like he is going to get very mad at her,0 0 0 0 0 0 3 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,now the giraffe has a : little : airplane.,now the giraffe has a little airplane,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the elephant want/3s to play with it too.,and the elephant wants to play with it too,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now the giraffe is try/ing to make it move.,and now the giraffe is trying to make it move,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the elephant is look/ing at it like wow[!].,and the elephant is looking at it like wow,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now it is the elephant/z turn.,and now it is the elephant's turn,0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the elephant : is try/ing to fly it : now.,and the elephant is trying to fly it now,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now the giraffe is look/ing at his plane because the plane fell into the (wa) swimming pool.,and now the giraffe is looking at his plane because the plane fell into the swimming pool,0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now the giraffe is mad at the elephant : because : his : airplane is sink/ing into the water.,and now the giraffe is mad at the elephant because his airplane is sinking into the water,0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,now the lifeguard look/ing at them.,now the lifeguard looking at them,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and they are look/ing back at him.,and they are looking back at him,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,now : (she is try/ing to) the elephant is try/ing to explain to the lifeguard that the plane fell in and is ask/ing if (they can) he can get it out : for them.,now the elephant is trying to explain to the lifeguard that the plane fell in and is asking if he can get it out for them,0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the lifeguard (is try/ing) is on his knees try/ing to (ah) : get it : out of the water.,and the lifeguard is on his knees trying to get it out of the water,0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and both of them are look/ing at him.,and both of them are looking at him,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the lifeguard look/3s like he is use/ing all his might.,and the lifeguard looks like he is using all his might,0 0 0 3 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now the lifeguard could not get it.,and now the lifeguard could not get it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the elephant (s) felt sad.,and the elephant felt sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and so did the giraffe.,and so did the giraffe,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,now a lady come/3s.,now a lady comes,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and : she has a little net.,and she has a little net,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,she said she would get it for them : the airplane.,she said she would get it for them the airplane,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now she is use/ing all her[!] might and : look/3s like she got it.,and now she is using all her might and looks like she got it,0 0 0 0 6 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and then she got it out (for the li) for the giraffe.,and then she got it out for the giraffe,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the giraffe was happy.,and the giraffe was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now the elephant and the giraffe (are both) are both happy again.,and now the elephant and the giraffe are both happy again,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,(Um[-:] two[-:] ) a bunny *is in the[?] sandbox make/ing : a castle [EU].,a bunny in the sandbox making a castle,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and another one is (out) on the outside go/ing to[:_gonna] come in.,and another one is on the outside going to come in,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and then now they are both make/ing a bigger and bigger one.,and then now they are both making a bigger and bigger one,0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and (that is all) that is all I can see [+_bch].,and that is all I can see,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and then one of the bunny/s is pour/ing so much sand on.,and then one of the bunnies is pouring so much sand on,0 0 0 0 0 1 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the other one (is) I think it is scare/ed or something [~_I__do_n(o)t_know].,and the other one I think it is scared or something,0 0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and (now the sand) now the sandcastle was broken!,and now the sandcastle was broken,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the other one [~_I_do_n(o)t_know] just look/ed normal [~_laughs].,and the other one just looked normal,0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now she is try/ing and try/ing to make (a b) another one because it is all broken.,and now she is trying and trying to make another one because it is all broken,0 0 0 0 6 0 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,Two bunny/s are walk/ing along in [~_I_don't_know] maybe a forest or something.,Two bunnies are walking along in maybe a forest or something,0 1 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and they are hold/ing (a picnic basket) two picnic basket/s.,and they are holding two picnic baskets,0 0 0 6 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now they are have/ing a picnic.,and now they are having a picnic,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,(and all) and they are eat/ing.,and they are eating,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,actually one of them is eat/ing with all the food.,actually one of them is eating with all the food,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the other one is just sitt/ing there with his sandwich in his hand.,and the other one is just sitting there with his sandwich in his hand,0 0 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now they are both eat/ing.,and now they are both eating,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now one of them'is eat/ing.,and now one of them'is eating,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the other one has a stomachache.,and the other one has a stomachache,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the other one really do/3s not know what to do : because he has a stomachache.,and the other one really does not know what to do because he has a stomachache,0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,(and he) and he is get/ing dizzy[!].,and he is getting dizzy,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and then a : doctor was walk/ing along.,and then a doctor was walking along,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the other one came : and told the doctor (that : he was) that he had a stomachache.,and the other one came and told the doctor that he had a stomachache,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and so now she is pull/ing the : doctor : to come and get (the person) the rabbit actually.,and so now she is pulling the doctor to come and get the rabbit actually,0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now the doctor is operat/ing on the (guy) : little bunny.,and now the doctor is operating on the little bunny,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,now the little bunny is fine.,now the little bunny is fine,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and he is go/ing home with the doctor.,and he is going home with the doctor,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the other one is sit/ing by (the sand box thing or whatever) [~_I_mean] the big (picnic) picnic[!][-:] thing.,and the other one is sitting by the big picnic thing,0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,now the two bunny/s are : walk/ing along.,now the two bunnies are walking along,0 0 0 1 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and one of them is pull/ing a wagon : that has a balloon attach/ed to it [~_laughs].,and one of them is pulling a wagon that has a balloon attached to it,0 0 0 0 0 6 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now the other bunny never notice/ed the : (um) balloon : and is look/ing at the balloon and point/ing at it.,and now the other bunny never noticed the balloon and is looking at the balloon and pointing at it,0 0 0 0 0 0 4 0 0 0 0 6 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,[~_I_don't_know] pretty funny.,pretty funny,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,now (the) the bunny is try/ing to untie the balloon.,now the bunny is trying to untie the balloon,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the other one (is) [~_I_don't_know] look/3s kind of scare/ed.,and the other one looks kind of scared,0 0 0 0 3 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the balloon flew away.,and the balloon flew away,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and they are both hop/ing and try/ing (to get it) to catch it.,and they are both hopping and trying to catch it,0 0 0 0 6 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the balloon *is gone [EU].,and the balloon gone,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and one of them (look) is just look/ing up.,and one of them is just looking up,0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the other one is very mad.,and the other one is very mad,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,now : the other one see/3s : a man sell/ing balloon/s.,now the other one sees a man selling balloons,0 0 0 0 3 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and then so he is walk/ing along (k) to get a balloon for the one he : made fly away.,and then so he is walking along to get a balloon for the one he made fly away,0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,now (he is say) he is say/ing to (the thing) the man can I have a balloon?,now he is saying to the man can I have a balloon,0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,look/3s like it.,looks like it,3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and (now he got) now he did not have any money for the balloon/s.,and now he did not have any money for the balloons,0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,(and li) and (uh) the guy said it is only five cent/s for a balloon.,and the guy said it is only five cents for a balloon,0 0 0 0 0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and then (hm) he look/3s (um) [~_let_(u)s_see] he look/3s weird [~_I_don't_know].,and then he looks he looks weird,0 0 0 3 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,now they are both look/ing at the guy.,now they are both looking at the guy,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the guy *is look/ing down at them : while he is hold/ing the balloon/s [EU].,and the guy looking down at them while he is holding the balloons,0 0 0 6 0 0 0 0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now : (she is run/ing to) one of the rabbit guy/s are run/ing to the doctor : that they saw before.,and now one of the rabbit guys are running to the doctor that they saw before,0 0 0 0 0 0 1 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and (the doctor) (there) she is run/ing to the doctor : maybe to get some money.,and she is running to the doctor maybe to get some money,0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now (she is) he is (um) show/ing the bunny (what he need/3s) : what she want/3s.,and now he is showing the bunny what she wants,0 0 0 0 6 0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now she is pay/ing for it.,and now she is paying for it,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and both of the kid/s are happy.,and both of the kids are happy,0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now they both got a balloon.,and now they both got a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and they are happy.,and they are happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the doctor is happy too.,and the doctor is happy too,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,It is over [+_bch].,It is over,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,there was a[EW:an]: (um) elephant that had a ball.,there was a elephant that had a ball,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and (um) a giraffe want/ed to play with : (the balaloo) the ball too.,and a giraffe wanted to play with the ball too,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,but the balloon accidentally got[EW:went](into the w) into the swimming pool.,but the balloon accidentally got into the swimming pool,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,(and) : and the elephant was very : worry/ed that (it would) (it would) it might sink.,and the elephant was very worried that it might sink,0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then (the cow[!]) [~_I_mean] the giraffe came over (to s) to (get it) swim : after it to get it.,and then the giraffe came over to swim after it to get it,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then he got it.,and then he got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and he gave it to the elephant : so she could play with it : with him.,and he gave it to the elephant so she could play with it with him,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then : the elephant and the : giraffe : (came) : came to be friend/s.,and then the elephant and the giraffe came to be friends,0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and (also : they wan) and they also play/ed (t) with the ball together.,and and they also played with the ball together,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,there was an elephant and : (um) : a (g) (gir) giraffe.,there was an elephant and a giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and the elephant ran over to the : diving board.,and the elephant ran over to the diving board,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then : she accidentally slip/ed.,and then she accidentally slipped,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,(then she) : and (then) : then the giraffe came run/ing after to see if : the elephant was okay!,and then the giraffe came running after to see if the elephant was okay,0 0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,(and then) and (then) : then the elephant start/ed to cry because it really[!] hurt.,and then the elephant started to cry because it really hurt,0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,she scrape/ed her knee.,she scraped her knee,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,then the lifeguard came run/ing over : and : said do not cry!,then the lifeguard came running over and said do not cry,0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,I will help.,I will help,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then he put on a bandaid (on her) on her scrape/ed knee.,and then he put on a bandaid on her scraped knee,0 0 0 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and (then) : then she : stop/ed cry/ing.,and then she stopped crying,0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then : the lifeguard help/ed her : get onto (the) the bench so she[!] could : go over and[-:] rest her knee for awhile.,and then the lifeguard helped her get onto the bench so she could go over and rest her knee for awhile,0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then she can go back : swim/ing.,and then she can go back swimming,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and (then : she did not) : then the lifeguard : said : you must look at the sign/s[-:] that say no run/ing : or : no do/ing anything just in case there was : something slippery.,and then the lifeguard said you must look at the signs that say no running or no doing anything just in case there was something slippery,0 0 0 0 0 0 0 0 0 0 1 0 0 0 6 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,or : you can not go on the diving board.,or you can not go on the diving board,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,there was a : giraffe that had an airplane.,there was a giraffe that had an airplane,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and he really[!] like it lot/s.,and he really like it lots,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then an elephant want/ed to play with it.,and then an elephant wanted to play with it,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then he start/ed play/ing with it even more[!].,and then he started playing with it even more,0 0 0 4 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then the elephant want/ed to play with it.,and then the elephant wanted to play with it,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,then the elephant grab/ed[!] it (from the) from the giraffe.,then the elephant grabbed it from the giraffe,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then he was very[-:] angry.,and then he was very angry,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then it fell into the water.,and then it fell into the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then they could not get it.,and then they could not get it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,(so : they) so they did not know what to do.,so they did not know what to do,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then giraffe got very[-:][!] very angry at the : elephant.,and then giraffe got very very angry at the elephant,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then the lifeguard came over : (and) and said what is the problem ?,and then the lifeguard came over and said what is the problem,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and elephant explain/ed : I grab/ed : (the) : the toy airplane from the giraffe.,and elephant explained I grabbed the toy airplane from the giraffe,0 0 4 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then I accidentally threw it into the water[-:].,and then I accidentally threw it into the water,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then the lifeguard try/ed reach/ing for it.,and then the lifeguard tried reaching for it,0 0 0 0 4 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,but he could not get it.,but he could not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,then the : giraffe start/ed to cry about he like/ed it [EU].,then the giraffe started to cry about he liked it,0 0 0 4 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,then somebody came over with a net[!] so they could get[!] it.,then somebody came over with a net so they could get it,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,then she reach/ed[!] over and got it for them.,then she reached over and got it for them,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,then he got it back.,then he got it back,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and he really[!] really : like/ed it : again.,and he really really liked it again,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then the : elephant really[!] really want/ed to play with it.,and then the elephant really really wanted to play with it,0 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,but the giraffe was too[!] busy play/ing with it.,but the giraffe was too busy playing with it,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,there was a bunny and dog.,there was a bunny and dog,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,they want/ed to build a sandcastle together.,they wanted to build a sandcastle together,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then the bunny took too much sand.,and then the bunny took too much sand,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then he dump/ed it onto the castle.,and then he dumped it onto the castle,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,but[-:] : the castle got ruin/ed : (accidentally)[~!_whispering] accidentally.,but the castle got ruined accidentally,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then the dog was sad[-:] : because : her : castle got knock/ed down.,and then the dog was sad because her castle got knocked down,0 0 0 0 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,there was a dog and a bunny.,there was a dog and a bunny,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,they want/ed to have a picnic together.,they wanted to have a picnic together,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and they each : took out all of their stuff from their basket/s : and : ate.,and they each took out all of their stuff from their baskets and ate,0 0 0 0 0 0 0 0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and they ate and ate and ate : until the bunny got : so[!] full (he wa) he felt like he was sick.,and they ate and ate and ate until the bunny got so full he felt like he was sick,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then : the puppy dog went to go and get doctor somebody who could help.,and then the puppy dog went to go and get doctor somebody who could help,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,(and then) : and then the doctor came over and help/ed the dog and the bunny.,and then the doctor came over and helped the dog and the bunny,0 0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,(and the bun) and the : doctor help/ed the bunny : be all right again.,and the doctor helped the bunny be all right again,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then the bunny got[EW:was] taken someplace where he could be all right.,and then the bunny got taken someplace where he could be all right,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,there was a dog that had a balloon hook/ed up onto : her[-:] little : wagon.,there was a dog that had a balloon hooked up onto her little wagon,0 0 0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,then the bunny want/ed to have the balloon.,then the bunny wanted to have the balloon,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and so the dog : let the bunny : look[!] at the balloon.,and so the dog let the bunny look at the balloon,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then the bunny untie/ed[!] the balloon.,and then the bunny untied the balloon,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then : he lost the balloon.,and then he lost the balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,but then the dog (very[-:] an) very sad.,but then the dog very sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,then the dog (get) got very angry at the bunny.,then the dog got very angry at the bunny,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then they saw : (a) : (a s) a person that was sell/ing : some balloon/s.,and then they saw a person that was selling some balloons,0 0 0 0 0 0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,(an) : and then : they came over : to him and said[-:] can I please have (another balloon) a balloon?,and then they came over to him and said can I please have a balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,(but the rabbit) but the : little rabbit : came over and said can I please have a : balloon?,but the little rabbit came over and said can I please have a balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,but the person said no you need some money.,but the person said no you need some money,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,(and then he) : and then he show/ed him (how much money he n) : (how mu) how much money he need/ed for a balloon.,and then he showed him how much money he needed for a balloon,0 0 0 4 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,(i) and it was quite[!] a bit.,and it was quite a bit,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and he did not even have any money.,and he did not even have any money,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,so : they could not get another balloon for the little dog.,so they could not get another balloon for the little dog,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,(and they) and they were very[-:] sad.,and they were very sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then they : came over to a doctor.,and then they came over to a doctor,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,(and) and the little bunny said (can) can you please help us get a balloon?,and the little bunny said can you please help us get a balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then the doctor said : all right.,and then the doctor said all right,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,I will get you a balloon.,I will get you a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,(and the) and the doctor gave[-:] (the) : the person : (um) as much money (as) : as they need/ed.,and the doctor gave the person as much money as they needed,0 0 0 0 0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then they enjoy/ed their balloon/s[-:] again.,and then they enjoyed their balloons again,0 0 0 4 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,there was an elephant : play/ing with a ball[-:] : near the pool[-:].,there was an elephant playing with a ball near the pool,0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,(and the) (and a gira) and a[-:] : giraffe (came) want/ed to play too.,and a giraffe wanted to play too,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the ball fell right into the pool[-:].,the ball fell right into the pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the giraffe : (swam right towards) : (w) jump/ed into the pool and went to go get the ball.,the giraffe jumped into the pool and went to go get the ball,0 0 4 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the giraffe got the ball (for the eleph) (baby) for the : elephant.,the giraffe got the ball for the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,and the elephant : like/3s the giraffe[-:].,and the elephant likes the giraffe,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,that is all [+_bch].,that is all,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the elephant and the giraffe want/ed to go swim/ing.,the elephant and the giraffe wanted to go swimming,0 0 0 0 0 4 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the : elephant[-:] was go/ing on the diving board[-:].,the elephant was going on the diving board,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the elephant was run/ing.,the elephant was running,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,then she slip/ed[-:].,then she slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,she (h) cut her knee.,she cut her knee,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the lifeguard came.,the lifeguard came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the lifeguard put a bandaid on.,the lifeguard put a bandaid on,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the lifeguard[-:] put (the) : the elephant (on) : on (a b) the bench (w).,the lifeguard put the elephant on the bench,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,and the lifeguard : point/ed to the sign that said no run/ing.,and the lifeguard pointed to the sign that said no running,0 0 0 4 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the giraffe was play/ing with his toy plane[-:].,the giraffe was playing with his toy plane,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,(h : um) he did loop/s and stuff with his plane.,he did loops and stuff with his plane,0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the elephant grab/ed it.,the elephant grabbed it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,and it land/ed in the pool.,and it landed in the pool,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the giraffe was very mad[-:].,the giraffe was very mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the lifeguard came : (to s) : to see what the problem was.,the lifeguard came to see what the problem was,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,(h) (he uh) : (the lil) the little elephant told everything what happen/ed.,the little elephant told everything what happened,0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the : lifeguard try/ed to get (the : air) : the plane.,the lifeguard tried to get the plane,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,but he could not reach it.,but he could not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,(then[-:]) (then a) : then an elephant with a net came.,then an elephant with a net came,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the : elephant with the net scoop/ed out the : plane : and gave it back to the giraffe.,the elephant with the net scooped out the plane and gave it back to the giraffe,0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,and : he was happy again[-:].,and he was happy again,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,there is (a little bun) a bunny (and[-:] a th) and a dog[-:].,there is a bunny and a dog,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,they are : go/ing to [~_gonna] play in the sandbox[-:].,they are going to play in the sandbox,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the dog was build/ing a sandcastle.,the dog was building a sandcastle,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,and (the[-:] : wa) the rabbit was : put/ing sand[-:] in a bucket.,and the rabbit was putting sand in a bucket,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,(he) : the rabbit (dump) : dump/ed the : sand on the : sandcastle/s.,the rabbit dumped the sand on the sandcastles,0 0 4 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,(the rabbit and the do) (the ra) the rabbit : was like : what happen/ed?,the rabbit was like what happened,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,(and[-:]) : (and[-:] the dog was try/ing to rebi) and the little dog try/ed to rebuild it.,and the little dog tried to rebuild it,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the little dog and the rabbit they (saw) : were go/ing for a picnic.,the little dog and the rabbit they were going for a picnic,0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,(uh uh the) : the dog had a sandwich.,the dog had a sandwich,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,"and the rabbit had : carrot/s sandwich : cake, (chi).",and the rabbit had carrots sandwich cake,0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,he had all kind/s of (st) : stuff.,he had all kinds of stuff,0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,(then he) : then[-:] : all his food was gone.,then all his food was gone,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,then he felt sick.,then he felt sick,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the dog ran to : get a[-:] : doctor.,the dog ran to get a doctor,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,(sh) : the dog show/ed (where) the doctor (where) : where they were have/ing the picnic.,the dog showed the doctor where they were having the picnic,0 0 4 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,(the do) the doctor : they were : say/ing : ah with his stick[?].,the doctor they were saying ah with his stick,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,and[-:] I think that is what he did.,and I think that is what he did,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,then he felt all better.,then he felt all better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the little dog was pull/ing a wagon with a balloon.,the little dog was pulling a wagon with a balloon,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,(the ra) and the rabbit came along.,and the rabbit came along,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the rabbit saw the balloon[-:] (on the wagon) : tie/ed to the wagon.,the rabbit saw the balloon tied to the wagon,0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the rabbit untie/ed the balloon.,the rabbit untied the balloon,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the balloon float/ed away.,the balloon floated away,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the dog was very mad.,the dog was very mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the rabbit ran to a balloon[-:] : man.,the rabbit ran to a balloon man,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the : rabbit want/ed a balloon.,the rabbit wanted a balloon,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,(h) : (he) : he had no money.,he had no money,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,(so they) so they were very sad.,so they were very sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,(then the do) then the doctor was : walk/ing along.,then the doctor was walking along,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,and the rabbit (went to ask for some m) : went to ask for some money.,and the rabbit went to ask for some money,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,(sh) (sh) (he told) : (the) the rabbit told the doctor everything.,the rabbit told the doctor everything,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,(the ra) the : doctor gave : (money) (m) money to the : balloon man.,the doctor gave money to the balloon man,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,so they got the two balloon/s.,so they got the two balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,(and now they were very ha) and[-:] they were very happy.,and they were very happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,(uh) he walk/3s to a horsey.,he walks to a horsey,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then the horsey (fell) fall/3s down.,and then the horsey falls down,0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,then the horsey fell in the water.,then the horsey fell in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then he : give/3s the ball back to him.,and then he gives the ball back to him,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then : they play with it.,and then they play with it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and that is the end so [+_bch].,and that is the end so,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,(um) he go/3s in the sandbox with the elephant.,he goes in the sandbox with the elephant,0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then they walk (in the) into the sandbox.,and then they walk into the sandbox,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then they walk into the hill.,and then they walk into the hill,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then they laugh.,and then they laugh,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,(and then they got a scr) and then elephant got a scrape.,and then elephant got a scrape,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and (then he) then he start/ed to cry.,and then he started to cry,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then (he) he sat up and got a (bandage) bandage.,and then he sat up and got a bandage,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and he said are you okay?,and he said are you okay,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,(um) he found an airplane in the sandbox.,he found an airplane in the sandbox,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,(and then he) (and then the) and then he fly/3s it up in the sky.,and then he flies it up in the sky,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,(and then he stands up) [~_other_child_talking] and then he stand/3s up in the sandbox.,and then he stands up in the sandbox,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then they (br) broke the airplane in the sandbox.,and then they broke the airplane in the sandbox,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and they drop/ed it.,and they dropped it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then (he) (he) it was stuck in the sandbox forever.,and then it was stuck in the sandbox forever,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then it was more stucker[EW:stuck].,and then it was more stucker,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then : a lifeguard came and get|get[EW:got] it.,and then a lifeguard came and get it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,(and then he got it with his) and he reach/ed it with his arm.,and he reached it with his arm,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then : they were sad.,and then they were sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,the lifeguard got it for him.,the lifeguard got it for him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then the lifeguard pour/ed on : the net.,and then the lifeguard poured on the net,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and he got it.,and he got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then : he said here[!] you go.,and then he said here you go,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then he keeped|keep[EW:kept] it forever.,and then he keeped it forever,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,(he) the dog go/3s in the sandbox.,the dog goes in the sandbox,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then he start/3s make/ing the sandcastle.,and then he starts making the sandcastle,0 0 0 3 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then the rabbit spill/3s on it.,and then the rabbit spills on it,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,(and then he) and then it is all gone.,and then it is all gone,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,it xxx up.,it up,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,then it was all cover/ed up.,then it was all covered up,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,he go/3s look/ing at his favourite friend.,he goes looking at his favourite friend,0 3 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,then he go/3s and : stick/3s out his tongue.,then he goes and stickes out his tongue,0 0 3 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,then he had a drink.,then he had a drink,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then he lie/3s down in the sun.,and then he lies down in the sun,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then he walk/3s away.,and then he walks away,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,then he pull/3s on his shirt.,then he pulls on his shirt,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,(and then he) and then he : talk/3s to him.,and then he talks to him,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then they walk away.,and then they walk away,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,he come/3s along with a balloon (with) with his wagon.,he comes along with a balloon with his wagon,0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,then he come/3s.,then he comes,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then he walk/3s with him.,and then he walks with him,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,then : they stop/ed : and walk/ed in the snow.,then they stopped and walked in the snow,0 0 4 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,then they lose the balloon.,then they lose the balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then they : stop and : get angry.,and then they stop and get angry,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,then they walk away and saw a man with balloon/s [EU].,then they walk away and saw a man with balloons,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,then : they said to him balloon [EU].,then they said to him balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then he give/3s him one.,and then he gives him one,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then : they walk away.,and then they walk away,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then : they[!] : think : (the rabbit) the big rabbit [EU].,and then they think the big rabbit,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,(and then they walk to his mom) [~_another_child__says:_that_(i)s_Nolan's_mom] then they walk to their mom.,then they walk to their mom,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then he come/3s and walk to the lady [EU].,and then he comes and walk to the lady,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then he : come/3s.,and then he comes,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then he get/3s (a ba) (another balloons[EW:balloon]) : balloons.,and then he gets balloons,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,(A horse) a giraffe : and an elephant were bounce/ing a ball.,a giraffe and an elephant were bouncing a ball,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,the ball *is in the pool [EU].,the ball in the pool,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the giraffe was scare/ed.,and the giraffe was scared,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,then the giraffe (um) : went in and swam and got the ball out.,then the giraffe went in and swam and got the ball out,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,then the elephant was happy.,then the elephant was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the giraffe was all wet.,and the giraffe was all wet,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and they were both happy.,and they were both happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,The giraffe (wa) was scare/ed to go in the water again.,The giraffe was scared to go in the water again,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,so the elephant went in.,so the elephant went in,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and she saw a diving board.,and she saw a diving board,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and she decide/ed to go on the diving board and jump.,and she decided to go on the diving board and jump,0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and then the giraffe said maybe that is a good idea.,and then the giraffe said maybe that is a good idea,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,the elephant went slip/ed and fell [EU].,the elephant went slipped and fell,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the giraffe was run/ing to the diving board.,and the giraffe was running to the diving board,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,the elephant hurt (her) her knee.,the elephant hurt her knee,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the giraffe was scare/ed.,and the giraffe was scared,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,so the giraffe help/ed the elephant.,so the giraffe helped the elephant,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,the lifeguard came and saw the giraffe (um) was take/ing care of the elephant.,the lifeguard came and saw the giraffe was taking care of the elephant,0 0 0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,the lifeguard put on a bandaid.,the lifeguard put on a bandaid,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,it did not hurt any more.,it did not hurt any more,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,so the giraffe did not look scare/ed any more.,so the giraffe did not look scared any more,0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the lifeguard was happy.,and the lifeguard was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and then the other elephant the lifeguard look/ed at a sign.,and then the other elephant the lifeguard looked at a sign,0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and it said no run/ing.,and it said no running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,The giraffe : and the elephant : were happy.,The giraffe and the elephant were happy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,so (they decide/ed maybe we could fly a) the giraffe decide/ed maybe he could fly the airplane : in the water.,so the giraffe decided maybe he could fly the airplane in the water,0 0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,(and then got) and then the elephant could dive down and get it.,and then the elephant could dive down and get it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and then : the giraffe would : throw it again into the water.,and then the giraffe would throw it again into the water,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the elephant would keep on get/ing it.,and the elephant would keep on getting it,0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,: (then it) (then it was) then it (was) want/ed real : crazy [EU].,then it wanted real crazy,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,so the elephant let xx him.,so the elephant let him,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,the giraffe (would : make) made a tongue [EU].,the giraffe made a tongue,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,the elephant grab/ed it from the giraffe.,the elephant grabbed it from the giraffe,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,(and the elephant look/ed) and the giraffe look/ed scare/ed.,and the giraffe looked scared,0 0 0 4 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the elephant look/ed happy.,and the elephant looked happy,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,the elephant threw it.,the elephant threw it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and it went in the water.,and it went in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the elephant looked scare/ed.,and the elephant looked scared,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the giraffe did not know what to do.,and the giraffe did not know what to do,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,the giraffe got mad at the elephant.,the giraffe got mad at the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and : the elephant got[EW:was] sad.,and the elephant got sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,the lifeguard got mad again.,the lifeguard got mad again,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,(and they both : got) : and they both did not know that again [EU].,and they both did not know that again,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,: so the lifeguard : look/ed nervous because the elephant look/ed scare/ed.,so the lifeguard looked nervous because the elephant looked scared,0 0 0 4 0 0 0 0 4 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the : giraffe was sad.,and the giraffe was sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,*the lifeguard was go/ing to get it [EU].,lifeguard was going to get it,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,so the lifeguard : was try/ing to get it.,so the lifeguard was trying to get it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,(and the : giraffe) and the elephant look/ed nervous.,and the elephant looked nervous,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,the : giraffe start/ed cry/ing.,the giraffe started crying,0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the elephant was sad.,and the elephant was sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the lifeguard was nervous.,and the lifeguard was nervous,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,(oh) then another : elephant came with a net to get it out of the water so (the) they could have it back again.,then another elephant came with a net to get it out of the water so they could have it back again,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and he try/ed to get it out.,and he tried to get it out,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,but : (it : mm) (it) she (tried) try/ed a lot [EU].,but she tried a lot,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,but it would not come out.,but it would not come out,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,then he got it out.,then he got it out,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and they : were happy.,and they were happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,then the giraffe was happy.,then the giraffe was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the elephant was too.,and the elephant was too,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,a bunny and a dog : were : build/ing a sandcastle.,a bunny and a dog were building a sandcastle,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,the bunny got scare/ed.,the bunny got scared,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the dog : was nervous.,and the dog was nervous,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,they made a sandcastle.,they made a sandcastle,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,then they both were happy.,then they both were happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,(they poured : and) : the rabbit pour/ed sand over the dog/z sandcastle.,the rabbit poured sand over the dog's sandcastle,0 0 4 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,: the sandcastle broke down.,the sandcastle broke down,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and (the : rabbit was :) the sandcastle did not break down.,and the sandcastle did not break down,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,(and the rabbit was : nervo) and the dog was nervous.,and the dog was nervous,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and then the dog : (um) try/ed to build it up.,and then the dog tried to build it up,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,but : he was cry/ing.,but he was crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the : bunny was : nervous.,and the bunny was nervous,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,the dog (and the) and the bunny : were collect/ing coconut/s and berry/s.,the dog and the bunny were collecting coconuts and berries,0 0 0 0 0 0 6 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and they : saw each other.,and they saw each other,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and then they said hi to each other.,and then they said hi to each other,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and then they were happy.,and then they were happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,(and) (and they) and they had a picnic.,and they had a picnic,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,they went home first.,they went home first,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and then they went back to the spot they were go/ing to have a picnic at.,and then they went back to the spot they were going to have a picnic at,0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and then : the bunny : ate a lot.,and then the bunny ate a lot,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the dog was nervous.,and the dog was nervous,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and then : the : bunny ate too much.,and then the bunny ate too much,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,he got so fat.,he got so fat,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the dog (um) ate the rest.,and the dog ate the rest,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,the : rabbit did not feel well.,the rabbit did not feel well,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the dog was nervous.,and the dog was nervous,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,: so the dog call/ed the doctor.,so the dog called the doctor,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the doctor came.,and the doctor came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and then the dog : told him that : the rabbit ate too much.,and then the dog told him that the rabbit ate too much,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,so he did not feel well.,so he did not feel well,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,(so the doc) so the dog drag/ed : the doctor there : because the rabbit was not feel/ing well.,so the dog dragged the doctor there because the rabbit was not feeling well,0 0 0 4 0 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,the doctor saw (that the dog) that the rabbit was not (fee) feel/ing very well.,the doctor saw that the rabbit was not feeling very well,0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,so (um the) (hh he) he was scare/ed.,so he was scared,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and (then : he felt) then the doctor made the rabbit : feel better.,and then the doctor made the rabbit feel better,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and : the dog was happy.,and the dog was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,the : dog : (mm) pull/ed the wagon with a balloon tie/ed onto it.,the dog pulled the wagon with a balloon tied onto it,0 0 4 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the rabbit saw that : the dog was pull/ing a wagon with a balloon on it.,and the rabbit saw that the dog was pulling a wagon with a balloon on it,0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,the rabbit want/ed the balloon.,the rabbit wanted the balloon,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the dog look/ed nervous.,and the dog looked nervous,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,the rabbit try/ed take/ing off the balloon.,the rabbit tried taking off the balloon,0 0 4 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,the dog look/ed scare/ed.,the dog looked scared,0 0 4 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,: the rabbit was sad because : (it) when he got off the balloon it start/ed float/ing away.,the rabbit was sad because when he got off the balloon it started floating away,0 0 0 0 0 0 0 0 0 0 0 0 4 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,(so they were both) : (and then one : um wen) and the rabbit was sad.,and the rabbit was sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the dog was scare/ed.,and the dog was scared,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,: the rabbit was : (nervous) : nervous.,the rabbit was nervous,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the dog was mad.,and the dog was mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,there is a balloon man over : there.,there is a balloon man over there,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,(uh it) it was go/ing to another bunny (hu) him too [EU].,it was going to another bunny him too,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,(can I have a) (and the) and he said (um) can I have a balloon?,and he said can I have a balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the dog was way back : there.,and the dog was way back there,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,(so the) and the rabbit was up : to get a balloon.,and the rabbit was up to get a balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and then : (the guy) the balloon : man said balloon/s five cent/s.,and then the balloon man said balloons five cents,0 0 0 0 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,so the rabbit check/ed in his pocket for any money.,so the rabbit checked in his pocket for any money,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,but he did not have any.,but he did not have any,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,: the rabbit look/ed shy.,the rabbit looked shy,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the dog : did not look shy.,and the dog did not look shy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and then the (um) man look/ed nervous.,and then the man looked nervous,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,the doctor was come/ing.,the doctor was coming,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and : the rabbit was run/ing to the doctor.,and the rabbit was running to the doctor,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the : balloon man was : sell/ing xx.,and the balloon man was selling,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the dog was nervous.,and the dog was nervous,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and then (um he show/ed) (the doc) the rabbit show/ed the doctor : (um) that he want/ed (a balloon to buy to) five cent/s to buy a balloon so he could : have a balloon and : the dog could have a balloon.,and then the rabbit showed the doctor that he wanted five cents to buy a balloon so he could have a balloon and the dog could have a balloon,0 0 0 0 4 0 0 0 0 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,then : he gave him five : cent/s for each balloon.,then he gave him five cents for each balloon,0 0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and then : the balloon man gave him : two balloon[EW:balloons].,and then the balloon man gave him two balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and then : they : (were) were happy.,and then they were happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the : balloon man was happy.,and the balloon man was happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,(and : the rabb) the doctor was kind of nervous.,the doctor was kind of nervous,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,the doctor was real nervous.,the doctor was real nervous,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and they : were both real happy.,and they were both real happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(uh : uh : the) : the elephant and (the[-:] : zebra) : [~_I_mean] (the) : [~_yeah] the zebra : were (go/ing) : play/ing ball.,the elephant and the zebra were playing ball,0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,and that was on this page [+_bch].,and that was on this page,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(and) (and then) : (and[-:]) : (and then um) : and then the ball fall/3s in the water.,and then the ball falls in the water,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,and then zebra go/3s in (to) : to swim to it.,and then zebra goes in to swim to it,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(the) and then the zebra bring/3s it to the elephant.,and then the zebra brings it to the elephant,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,and the elephant felled|fell[EW:fell] in love with the : zebra.,and the elephant felled in love with the zebra,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,fell in love with the what ?,fell in love with the what,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,zebra [+_bch].,zebra,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,oh.,oh,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(they went on the) they are[-:] go/ing to go on the diving board.,they are going to go on the diving board,0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,and then she go/3s run/ing to the diving board.,and then she goes running to the diving board,0 0 0 3 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,then she slip/3s[-:] : (and) : and (hurt/3s her knee) : get/3s a scrape on her knee.,then she slips and gets a scrape on her knee,0 0 3 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,and then the lifeguard come/3s to put a bandage on it.,and then the lifeguard comes to put a bandage on it,0 0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,and then she start/3s scream/ing.,and then she starts screaming,0 0 0 3 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(and then she w) and then she (do/3s not) : put/3s her leg up like it is broken.,and then she puts her leg up like it is broken,0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,then the lifeguard say/3s : no run/ing!,then the lifeguard says no running,0 0 0 3 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(the z) the zebra find/3s (a[-:]) : a plane.,the zebra finds a plane,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,and the elephant said : wow !,and the elephant said wow,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,and then he start/3s fly/ing[-:] it.,and then he starts flying it,0 0 0 3 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,then elephant[!] : grab/3s it from the zebra.,then elephant grabs it from the zebra,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(and then) (then sh) and then she start/ed (fly/ing[-:]) : fly/ing it.,and then she started flying it,0 0 0 4 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(and) (and) : and then she drop/3s it into the water.,and then she drops it into the water,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,then it float/3s and start/3s (sink) : sink/ing.,then it floats and starts sinking,0 0 3 0 3 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,then the lifeguard come/3s.,then the lifeguard comes,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(s) : and (then) then the little boy : zebra said : can you get my : plane ?,and then the little boy zebra said can you get my plane,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(and then) : and then the zebra said : the elephant was fly/ing it.,and then the zebra said the elephant was flying it,0 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,and then she dump/ed it into the water.,and then she dumped it into the water,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,the elephant[-:] lifeguard/z arm/s : try/ed to grab it.,the elephant lifeguard's arms tried to grab it,0 0 2 1 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,but (she) he could not.,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(then the l) then the[-:] lifguard gived|give[EW:gave] her trouble.,then the lifguard gived her trouble,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(a) and the zebra was cry/ing.,and the zebra was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(and then she go) (and then the) and then the mom[-:] : get/3s a net (and s) and grab/3s it out of the water : and get/3s it for the little boy.,and then the mom gets a net and grabs it out of the water and gets it for the little boy,0 0 0 0 3 0 0 0 3 0 0 0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,then the boy was happy.,then the boy was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,and they start/ed hug/ing it.,and they started hugging it,0 0 4 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,and it was done [+_bch].,and it was done,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(there is m) (they are ma) they are make/ing a sandcastle.,they are making a sandcastle,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,and then a friend came.,and then a friend came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,and then (he dig/ed) : he digged|dig[EW:dug] some sand and put it in a bucket while : the other kid was make/ing a sandcastle.,and then he digged some sand and put it in a bucket while the other kid was making a sandcastle,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,and then he dump/3s[!] it on the sandcastle.,and then he dumps it on the sandcastle,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(and then[-:]) : and then the rabbit was mad.,and then the rabbit was mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(she) : (uh the other one st) and then the mouse start/3s cry/ing.,and then the mouse starts crying,0 0 0 0 3 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(they go for a picnic and) : the mouse and the rabbit goes|go[EW:go] for a picnic.,the mouse and the rabbit goes for a picnic,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,the rabbit start/3s eat/ing loud.,the rabbit starts eating loud,0 0 3 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,and then the rabbit got fulled|full[EW:full] (while) while the mouse was eat/ing lot/s of sandwich/s and (ju) drink/ing juice.,and then the rabbit got fulled while the mouse was eating lots of sandwiches and drinking juice,0 0 0 0 0 0 0 0 0 0 6 1 0 1 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,and then the rabbit ate some more.,and then the rabbit ate some more,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(and then he had a) : (and a) and then he got sick.,and then he got sick,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,then the doctor came : to see the rabbit.,then the doctor came to see the rabbit,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(and the doctor was not) : (then the) : and then the mouse was drag/ing the doctor.,and then the mouse was dragging the doctor,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,and then the doctor (see) (said) : [~_I_mean] (s) : (seem) seen|see[EW:saw] what is wrong.,and then the doctor seen what is wrong,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(uh) and then he got all[-:][!] better.,and then he got all better,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,they are go/ing to the circus.,they are going to the circus,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,and the balloon pop/3s.,and the balloon pops,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,he tie/3s up another balloon.,he ties up another balloon,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,then it fly/3s away[-:].,then it flies away,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(and then there is) and then they can not move their wagon.,and then they can not move their wagon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(there[-:]) : there is a balloon[!] man.,there is a balloon man,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,and the rabbit say/3s I[!] want one of those balloon/s.,and the rabbit says I want one of those balloons,0 0 0 3 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(um) and he can not buy any because they are five cent/s.,and he can not buy any because they are five cents,0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(and then he) (and then) (and then he) and then he : dump/3s his pocket/s out.,and then he dumps his pockets out,0 0 0 3 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,and he go/3s to : go run/ing to his dad to ask his dad for[-:] a balloon : for his friend.,and he goes to go running to his dad to ask his dad for a balloon for his friend,0 0 3 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(and[-:] the doc) and (then) (then) : then his dad (sa) : say/3s okay.,and then his dad says okay,0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,then they bought two balloon/s!,then they bought two balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,and then they pop them.,and then they pop them,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,he said hi.,he said hi,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,: I love those rock/s!,I love those rocks,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,then : that rock is fall/ing!,then that rock is falling,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and (he) : that one is swim/ing!,and that one is swimming,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and he gave that rock[!] [EU].,and he gave that rock,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,(and he play) : and he can play with it now.,and he can play with it now,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and : (uh b xx) there (was) is *an elephant and this one [EU].,and there is elephant and this one,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,he was jump/ing[!] over.,he was jumping over,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,(an) and they can run faster[!].,and they can run faster,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,hm were you go/ing to help turn?,hm were you going to help turn,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,yep [+_bch].,yep,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,okay.,okay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,he said I want to go run[!] faster and jump[!] over it.,he said I want to go run faster and jump over it,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and he said you are not big[!] enough.,and he said you are not big enough,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and he said oh yes I will[EW:am] [-:].,and he said oh yes I will,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,she ran[!] (and) : and then slip/ed.,she ran and then slipped,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,(uh) and he will say : (y) ouch!,and he will say ouch,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and that hurt/3s!,and that hurts,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,he has a booboo.,he has a booboo,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and he tell|tell[EW:tell/3S] his mom[-:].,and he tell his mom,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and then : he *is still cry[EW:cying] [-:] [EU].,and then he still cry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,then he sit|sit[EW:sits] on it.,then he sit on it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and he could help.,and he could help,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and : do not : play : (on : the rule/s) on (the) the pool/s [EU].,and do not play on the pools,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,once upon a time (there was the) (this one is re) (really sheal) (he) he said I like your airplane.,once upon a time he said I like your airplane,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,he said thank you!,he said thank you,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and then it fly/3s[-:]!,and then it flies,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and he will catch[!] it.,and he will catch it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and he catch|catch[EW:caught] an airplane.,and he catch an airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,it do/3s not fly[-:].,it does not fly,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,but : suddenly (he) the airplane did not fly[!] up.,but suddenly the airplane did not fly up,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,he look/3s so angry [~_makes_sound_'grrr']!,he looks so angry,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,(and then) : and he said : what is the matter?,and he said what is the matter,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,he said I was : drop/ing it.,he said I was dropping it,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,(and) and he take|take[EW:takes] it.,and he take it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and it fall/3s down.,and it falls down,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,then : why did you did that!,then why did you did that,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,I did not do anything he said!,I did not do anything he said,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,maybe I can get[!] it.,maybe I can get it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,[~_grunting] and it is too hard.,and it is too hard,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,(maybe) : maybe I could try again.,maybe I could try again,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,I will catch it in that net[!].,I will catch it in that net,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,he scoop|scoop[EW:scoops] it up.,he scoop it up,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and that airplane : work/3s!,and that airplane works,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and he is so[!] happy.,and he is so happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,a bunny (l) love/3s the dog.,a bunny loves the dog,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,(and : they shovel the) (and they) and that dog build|build[EW:builds] a castle.,and that dog build a castle,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,(and : the castle[-:]) and (that bunny : just : well) : it will fall down the castle.,and it will fall down the castle,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and : that : bunny : (he) : he melt|melt[EW:melts][!] them.,and that bunny he melt them,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,he did not do it.,he did not do it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,they fix|fix[EW:fixed] it up.,they fix it up,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,he wave/ed : at bunny.,he waved at bunny,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and they eat some snack/s.,and they eat some snacks,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and the rabbit[EW:rabbit/z] (is) tummy is full.,and the rabbit tummy is full,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and they got a tummyache [EU].,and they got a tummyache,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,he tell|tell[EW:tells] him.,he tell him,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,he just : look|look[EW:looks] at it.,he just look at it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,he just got a : tummyache.,he just got a tummyache,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,she *is really : not feel/ing all better [EU].,she really not feeling all better,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,then she feel/3s all better.,then she feels all better,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,he wave/ed at the dog.,he waved at the dog,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and he get/3s the balloon.,and he gets the balloon,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,then : he show at the balloon [EU].,then he show at the balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,then : she[-:] pull|pull[EW:pulls] it up.,then she pull it up,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,(he did not) she did.,she did,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and it : go|go[EW:goes] up!,and it go up,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and he was mad[!].,and he was mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,(it) : she tell|tell[EW:tells] them.,she tell them,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and he look|look[EW:looks] at the balloon/s.,and he look at the balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and he said : would you : please get that balloon?,and he said would you please get that balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and[-:] this present number five.,and this present number five,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and they : love[-:] them.,and they love them,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and they tell him again[!].,and they tell him again,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and he said the balloon (will not get) (it wo) he will not get it back!,and he said the balloon he will not get it back,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and : they all had two balloon/s.,and they all had two balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and last year they have|have[EW:had] a balloon.,and last year they have a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,the zebra was go/ing to the zoo.,the zebra was going to the zoo,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and the elephant : want/ed to come and show : them : his practice at the circus.,and the elephant wanted to come and show them his practice at the circus,0 0 0 4 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and then they saw something inside a[EW:the] water.,and then they saw something inside a water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,but : the giraffe want/ed to get that ball : because : the elephant drop/ed it.,but the giraffe wanted to get that ball because the elephant dropped it,0 0 0 4 0 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and the elephant said thank you for get/ing it.,and the elephant said thank you for getting it,0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,the elephant want/ed to go swim/ing.,the elephant wanted to go swimming,0 0 4 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,but it : ran : jump/ed into the pool [EU].,but it ran jumped into the pool,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and it hurt itself.,and it hurt itself,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,is that what is on this page ?,is that what is on this page,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,the elephant ran.,the elephant ran,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,then when it ran it : just ran fast.,then when it ran it just ran fast,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and then : (it um) it fell down.,and then it fell down,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and it hurt it/z knee.,and it hurt it's knee,0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and then another elephant came : what[EW:that] was the lifeguard.,and then another elephant came what was the lifeguard,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,(he) and the lifeguard saw : the elephant hurt itself.,and the lifeguard saw the elephant hurt itself,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,then the lifeguard : said you can not swim without a lifeguard if it tell/3s you.,then the lifeguard said you can not swim without a lifeguard if it tells you,0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and it said [~_EXA:_can_you_take_your_finger_out_of_your_mouth] go on the bench.,and it said go on the bench,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,[~_stern_voice] and no more go/ing swim/ing : until you calm down and I say so.,and no more going swimming until you calm down and I say so,0 0 0 6 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,(the zebra w) [~_I_mean] the giraffe want/ed to put his airplane in to see it swim.,the giraffe wanted to put his airplane in to see it swim,0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,(and it) and it did.,and it did,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and then it : went in the water.,and then it went in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and the : giraffe did not know how to get it out.,and the giraffe did not know how to get it out,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,but then : the elephant took it from it[EW:him].,but then the elephant took it from it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and then : it[EW:he] : drop/ed it in the water.,and then it dropped it in the water,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and then the lifeguard : did not know how that (it) airplane got in.,and then the lifeguard did not know how that airplane got in,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,said : (um) : that is the giraffe/z airplane [EU].,said that is the giraffe's airplane,0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and the lifeguard try/ed to get it.,and the lifeguard tried to get it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,but he could not reach it.,but he could not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and the giraffe was sad because nobody could get it.,and the giraffe was sad because nobody could get it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,then another elephant [EU].,then another elephant,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and it[EW:she] got (um) a thing what[EW:that] you catch fish with.,and it got a thing what you catch fish with,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and it try/ed out to do it [EU].,and it tried out to do it,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,but : it got (it :) the airplane.,but it got the airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,the elephant who caught fish gave it to the : giraffe.,the elephant who caught fish gave it to the giraffe,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and giraffe said thank you.,and giraffe said thank you,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,giraffe was happy.,giraffe was happy,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,he was make/ing a castle (in :) in the beach.,he was making a castle in the beach,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,what[?] he got the sandbox he won[?] [EU].,what he got the sandbox he won,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and he made a castle there.,and he made a castle there,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,then when : he was done make/ing the castle he want/ed to make another one.,then when he was done making the castle he wanted to make another one,0 0 0 0 0 6 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and then he tip/ed sand on it.,and then he tipped sand on it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,but : he was afraid if it was going to crash.,but he was afraid if it was going to crash,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and it did crash.,and it did crash,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,but he had to make another one.,but he had to make another one,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,but it was hard to make.,but it was hard to make,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,they were go/ing to[:_gonna] go and have a picnic.,they were going to go and have a picnic,0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and the bunny want/ed to come.,and the bunny wanted to come,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and he said yes.,and he said yes,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,they eated|eat[EW:ate] carrot/s.,they eated carrots,0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and they listen/ed to some music.,and they listened to some music,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and the : bunny rabbit was full.,and the bunny rabbit was full,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and the puppy dog was not.,and the puppy dog was not,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and then the bunny rabbit got sick.,and then the bunny rabbit got sick,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and the puppy dog was : not very happy.,and the puppy dog was not very happy,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and then : (um) the bunny rabbit/z grandma came.,and then the bunny rabbit's grandma came,0 0 0 0 2 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and the puppy said : the bunny rabbit is sick.,and the puppy said the bunny rabbit is sick,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and they said come here come here.,and they said come here come here,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and she came.,and she came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and she look/ed at the bunny rabbit and said : you are sick!,and she looked at the bunny rabbit and said you are sick,0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,then they went back home.,then they went back home,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,the puppy dog was all alone have/ing a picnic.,the puppy dog was all alone having a picnic,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,they were go/ing to a circus.,they were going to a circus,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and they brought a wagon with a balloon on it.,and they brought a wagon with a balloon on it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,then bunny want/ed to grab the balloon.,then bunny wanted to grab the balloon,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,but the puppy dog would not let it.,but the puppy dog would not let it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,(so it said :) it is putt/ing it in a knot he said.,it is putting it in a knot he said,0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,then it flied|fly[EW:flew] away.,then it flied away,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and he was mad at the bunny rabbit.,and he was mad at the bunny rabbit,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and then : there is a man with a whole bunch of balloon/s.,and then there is a man with a whole bunch of balloons,0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and puppy dog was mad.,and puppy dog was mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,but then : the bunny rabbit : was not.,but then the bunny rabbit was not,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,he want/ed some balloon/s.,he wanted some balloons,0 4 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and he said please can I have a balloon?,and he said please can I have a balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,but : the man would not let him.,but the man would not let him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,he had no money.,he had no money,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,but the puppy dog did.,but the puppy dog did,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,(so the pup) but then : the bunny rabbit saw another bunny rabbit : ask/ed can I come to wherever you go [EU]?,but then the bunny rabbit saw another bunny rabbit asked can I come to wherever you go,0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,can I have a balloon if you have some?,can I have a balloon if you have some,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,(and he said) but then he realiz/ed that is not : a man.,but then he realized that is not a man,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,that is a girl.,that is a girl,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,said (y) yes [EU].,said yes,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,then : he gave her a balloon.,then he gave her a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,(the) that is a giraffe who is laugh/ing with the elephant.,that is a giraffe who is laughing with the elephant,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,: and then he saw the ball[-:].,and then he saw the ball,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then the elephant was scared.,and then the elephant was scared,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,: and then : the giraffe gave (him) the : elephant the ball.,and then the giraffe gave the elephant the ball,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,(and then the giraffe came up the sidewalk) and then the giraffe came up the sidewalk.,and then the giraffe came up the sidewalk,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,(the) the giraffe and the elephant were too scared to jump in the water.,the giraffe and the elephant were too scared to jump in the water,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then the elephant was laugh/ing.,and then the elephant was laughing,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,but the giraffe was (like ssss) scared.,but the giraffe was scared,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then the elephant (s) was like trip/ing.,and then the elephant was like tripping,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then the elephant (was) hurt his knee/s.,and then the elephant hurt his knees,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then the elephant cry/ed.,and then the elephant cried,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,: then the elephant : camed|come[EW:came] home.,then the elephant camed home,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,: and then the elephant was laugh/ing.,and then the elephant was laughing,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,: and then the : swim/ing man (said) : he was point/ing a hand [EU].,and then the swimming man he was pointing a hand,0 0 0 6 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,the swim/ing man was what?,the swimming man was what,0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,point/ing his hand [+_bch].,pointing his hand,6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,the elephant was laugh/ing.,the elephant was laughing,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and the giraffe was laugh/ing.,and the giraffe was laughing,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,: and then they were play/ing with[-:] the : airplane.,and then they were playing with the airplane,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then : the elephant/z turn to : play the airplane [EU].,and then the elephant's turn to play the airplane,0 0 0 2 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,: but they drop/ed it in the water.,but they dropped it in the water,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then (they) the elephant was scared.,and then the elephant was scared,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,but the giraffe was angry.,but the giraffe was angry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then the : swim/ing man : was all mad at them.,and then the swimming man was all mad at them,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,but he said what happen/ed ?,but he said what happened,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then he was like : (wo) say/ing uhoh.,and then he was like saying uhoh,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then he was try/ing to get it.,and then he was trying to get it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,but he could not.,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then : the giraffe was cry/ing.,and then the giraffe was crying,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then the[-:] girl was try/ing to get a fish tank and then : get it [EU].,and then the girl was trying to get a fish tank and then get it,0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then she got the airplane.,and then she got the airplane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then (sh) she gave it back to the giraffe.,and then she gave it back to the giraffe,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,this one the bunny was dig/ing.,this one the bunny was digging,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,but this : girl came and then dig|dig[EW:dug].,but this girl came and then dig,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then (they) they both share/ed.,and then they both shared,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,: then they put it on together.,then they put it on together,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,but that girl was scared.,but that girl was scared,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then they were (like) all sad.,and then they were all sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and they made it back again.,and they made it back again,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,the bunny said hi.,the bunny said hi,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,: and then they went : to[EW:on] : a field : (tr) trip.,and then they went to a field trip,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then they ate carrot/s.,and then they ate carrots,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,but they[EW:the] guy did not got[EW:get] nothing[EW:anything].,but they guy did not got nothing,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then (they) they both (um) share/ed food.,and then they both shared food,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then (the f) the bunny (um) dranked|drink[EW:drank].,and then the bunny dranked,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and the bunny was fatter and fatter and fatter.,and the bunny was fatter and fatter and fatter,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,(and) but he flew it off to this doctor bunny [EU].,but he flew it off to this doctor bunny,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then he (s) told the doctor that (he is fff) he need/3s help.,and then he told the doctor that he needs help,0 0 0 0 0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then he said go to the doctor.,and then he said go to the doctor,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then : the doctor (ss) went (to the dd) to his : workshop.,and then the doctor went to his workshop,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,this guy was hold/ing a balloon with a : little car.,this guy was holding a balloon with a little car,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,: and then he was say/ing look my balloon!,and then he was saying look my balloon,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then he pull/ed it off and give|give[EW:gave] it to (the) the other guy.,and then he pulled it off and give it to the other guy,0 0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,but it flewed|fly[EW:flew] up *in the sky [EU].,but it flewed up the sky,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then the dog was all angry.,and then the dog was all angry,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,(and then they ss) and then they sawed|see[EW:saw] the balloon man.,and then they sawed the balloon man,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then he said can I have that?,and then he said can I have that,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,(and) but it was five dollar[EW:dollars].,but it was five dollar,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then they were all sad.,and then they were all sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,but they saw the doctor.,but they saw the doctor,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and doctor can we buy this?,and doctor can we buy this,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,can we buy the balloon doctor?,can we buy the balloon doctor,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then the doctor (s) gave him the money.,and then the doctor gave him the money,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,(th) then they (b) got another balloon.,then they got another balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,first there is an : elephant : and a giraffe.,first there is an elephant and a giraffe,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and the elephant is bounce/ing a ball.,and the elephant is bouncing a ball,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,Turn [+_bch].,Turn,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and : the elephant I think bounce/3s it into a pool.,and the elephant I think bounces it into a pool,0 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and then : the : giraffe dive/3s in to get it.,and then the giraffe dives in to get it,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and then : the giraffe : come/3s back : and give/3s it : to[-:] the elephant.,and then the giraffe comes back and gives it to the elephant,0 0 0 0 3 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and[-:] the elephant : (look/3s like he said th) look/3s like he is say/ing thank you.,and the elephant looks like he is saying thank you,0 0 0 3 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,(um) : there is a giraffe and an elephant : stand/ing by a pool.,there is a giraffe and an elephant standing by a pool,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and there is a sign that say/3s no run/ing.,and there is a sign that says no running,0 0 0 0 0 0 3 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,so[-:] the : elephant point/3s at the diving board.,so the elephant points at the diving board,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and : she[-:] run/3s over there.,and she runs over there,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and she slip/3s.,and she slips,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and she[-:] scrape/3s her knee.,and she scrapes her knee,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and then the lifeguard come/3s : (and : help) and put/3s a (band) bandaid : on : her.,and then the lifeguard comes and puts a bandaid on her,0 0 0 0 3 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,(then she) then he (put) (put) (put/3s[-:]) : put her[-:] on a bench : to sit down.,then he put her on a bench to sit down,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and then the lifeguard : point/3s his finger out say/ing[-:] bad : I think.,and then the lifeguard points his finger out saying bad I think,0 0 0 0 3 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,there is an[-:] elephant and a giraffe.,there is an elephant and a giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and : the giraffe is fly/ing a toy plane around.,and the giraffe is flying a toy plane around,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and then the elephant : (um) look/3s at it and I think say/3s : that is interest/ing.,and then the elephant looks at it and I think says that is interesting,0 0 0 0 3 0 0 0 0 0 3 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,so the : giraffe give/3s a turn to the elephant.,so the giraffe gives a turn to the elephant,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and the elephant is : (th um) : threw|throw[EW:throwing] it into the pool.,and the elephant is threw it into the pool,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and the giraffe get/3s : mad[!] at the elephant.,and the giraffe gets mad at the elephant,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,so the elephant ask/3s the lifeguard to help : and then talk/3s : to (hi) (the liteguar) the lifeguard what happen/3s [EU].,so the elephant asks the lifeguard to help and then talks to the lifeguard what happens,0 0 0 3 0 0 0 0 0 0 3 0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and the lifeguard try/3s : to reach : and get it.,and the lifeguard tries to reach and get it,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,then the lifeguard (do/3s) do/3s not know what to do.,then the lifeguard does not know what to do,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and the giraffe : go/3s on his knee/s and start/3s to cry.,and the giraffe goes on his knees and starts to cry,0 0 0 3 0 0 1 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,so (a dif) I think : a person that swim/3s (take/3s a n) take/3s a net : and try/3s to scoop it.,so I think a person that swims takes a net and tries to scoop it,0 0 0 0 0 0 3 3 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and she (s) scoop/3s[-:] it up : and give/3s it back to the giraffe.,and she scoops it up and gives it back to the giraffe,0 0 3 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and[-:] : the giraffe hold/3s it (by) like this by his neck.,and the giraffe holds it like this by his neck,0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and[-:] the[-:] elephant : (um) has his hand/s (like this) : like that in front of the giraffe.,and the elephant has his hands like that in front of the giraffe,0 0 0 0 0 1 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,there is (um) I think a : bunny and a dog.,there is I think a bunny and a dog,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and : the dog built a sandcastle.,and the dog built a sandcastle,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and the bunny I think : want/3s to help.,and the bunny I think wants to help,0 0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,(um) [-:] the dog is smooth/ing the side/3s out while the : bunny is dig/ing sand out for : the sandcastle.,the dog is smoothing the sides out while the bunny is digging sand out for the sandcastle,0 0 0 6 0 3 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and : then the bunny pour/3s it : all over the sandcastle.,and then the bunny pours it all over the sandcastle,0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,(and he) and it destroy/3s the sandcastle.,and it destroys the sandcastle,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and then : the : dog cry/3s and : try/3s to build a new one.,and then the dog cries and tries to build a new one,0 0 0 0 3 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,(um) : there is a : bunny and a dog : that have their[-:] basket/s with (uh f) food in them.,there is a bunny and a dog that have their baskets with food in them,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and : then the : bunny (dump/3s it all) dump/3s it all out.,and then the bunny dumps it all out,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and : the dog just take/3s it one at a time.,and the dog just takes it one at a time,0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and then : the dog is : still eat/ing.,and then the dog is still eating,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and : the bunny is lay/ing on the ground with all this garbage around.,and the bunny is laying on the ground with all this garbage around,0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and then : the[-:] : dog is drink/ing a juice box.,and then the dog is drinking a juice box,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and : I think the bunny feel/3s sick.,and I think the bunny feels sick,0 0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,(then : uh) and then the : dog : I think find/3s a doctor.,and then the dog I think finds a doctor,0 0 0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and the dog is pull/ing the doctor/z sleeve over to where : (um) the bunny is lay/ing down.,and the dog is pulling the doctor's sleeve over to where the bunny is laying down,0 0 0 0 6 0 2 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and : (the[-:]) : the doctor : take/3s (a thing and) this little stick and : like : point/3s at something.,and the doctor takes this little stick and like points at something,0 0 0 3 0 0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and then : the : doctor bring/3s : the : bunny : I think home.,and then the doctor brings the bunny I think home,0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and : (uh) : the : dog is (stand/ing b) just stand/ing still : with : (a th) a thing behind her back.,and the dog is just standing still with a thing behind her back,0 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,first (um) : the : dog is pull/ing a wagon with a balloon attach/ed to it.,first the dog is pulling a wagon with a balloon attached to it,0 0 0 0 6 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,then the : dog drop/3s the handle.,then the dog drops the handle,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and : the[-:] bunny (try/3s) : look/3s at it.,and the bunny looks at it,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and then : the bunny try/3s to untie it.,and then the bunny tries to untie it,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and it (s) : blow/3s away into the sky.,and it blows away into the sky,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and then the dog get/3s mad at : him.,and then the dog gets mad at him,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and then : (the) : [~_well] (the da) the dog is mad.,and then the dog is mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,the bunny run/3s over.,the bunny runs over,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and he see/3s (a) : a balloon man : sell/ing balloon/s.,and he sees a balloon man selling balloons,0 0 3 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and : the bunny take/3s one of the balloon/s.,and the bunny takes one of the balloons,0 0 0 3 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,(and[-:]) : and on one of the balloon/s it say/3s : balloon/s five cent/s.,and on one of the balloons it says balloons five cents,0 0 0 0 0 1 0 3 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and then the bunny pull/3s out the inside of his pocket/s.,and then the bunny pulls out the inside of his pockets,0 0 0 0 3 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and he has got no coin/s.,and he has got no coins,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,so[-:] : the : balloon : guy : was hold/ing the balloon/s.,so the balloon guy was holding the balloons,0 0 0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and : the bunny : has his hand/s in his pocket/s : with the dog behind him.,and the bunny has his hands in his pockets with the dog behind him,0 0 0 0 0 1 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,(the) (um : the) (the) : the (p) dog is stand/ing by the balloon guy.,the dog is standing by the balloon guy,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and : (the rab) the rabbit see/3s (this) : (this p) (this girl) : this lady.,and the rabbit sees this lady,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and then (I th) (she tell/3s) : he tell/3s the lady to I think (b) get him a balloon.,and then he tells the lady to I think get him a balloon,0 0 0 3 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and then (the) : the lady take/3s out her wallet and put/3s : some coin/s in her hand.,and then the lady takes out her wallet and puts some coins in her hand,0 0 0 0 3 0 0 0 0 3 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and they (uh) each get a balloon.,and they each get a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,(the elephant start) : (the elephant[-:] start/s scream/ing[-:][!] with) [~_what_(i)s_this_thing_#_on_#_oh_a_trunk_trunk] : the elephant start/s do/ing with his trunk [EU]!,the elephant starts doing with his trunk,0 0 1 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,he (s) make/3s lot/s of noise.,he makes lots of noise,0 3 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,do you know about the elephant/s [+_bch]?,do you know about the elephants,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,oh (it do/3s not) it is your story.,oh it is your story,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,you make it up : whatever you think.,you make it up whatever you think,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then they saw a[EW:an] egg in the water swim/ing.,and then they saw a egg in the water swimming,0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,they want to pick it up.,they want to pick it up,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,the elephant said (uh) :[~!_screaming_'aah'] why there is a[EW:an] egg!,the elephant said why there is a egg,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,I want to jump in the water and get it!,I want to jump in the water and get it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,ah[!] the guy swim|swim[EW:swam] in the water to catch it!,ah the guy swim in the water to catch it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and the elephant is do/ing this [~_makes_unknown_gesture]!,and the elephant is doing this,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then the guy[-:] : (um) swim|swim[EW:swam].,and then the guy swim,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and he give|give[EW:gave] the thing : for[EW:to] the elephant.,and he give the thing for the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,the elephant said wow!,the elephant said wow,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,: and then the elephant went away.,and then the elephant went away,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,they saw a water [EU]!,they saw a water,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,they want to swim in there.,they want to swim in there,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,it is like the two guy/s the elephant and that guy.,it is like the two guys the elephant and that guy,0 0 0 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,: same.,same,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and that is it [+_bch].,and that is it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and[-:] then the elephant said look!,and then the elephant said look,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,I want to swim in the water!,I want to swim in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then they start.,and then they start,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,the elephant was first.,the elephant was first,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,the guy was behind him.,the guy was behind him,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and he start/s run/ing.,and he starts running,0 0 1 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,I do not know what is he run/ing for.,I do not know what is he running for,0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and they still[!] run again.,and they still run again,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,know what is he run/ing for too.,know what is he running for too,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then they stop/ed.,and then they stopped,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and the elephant fell.,and the elephant fell,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and it hurt his leg.,and it hurt his leg,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,[~_laughs] that is *a funny part [EU].,that is funny part,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then a[EW:an] elephant came (and squeeze/ed[-:] his).,and then a elephant came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then he put a bandaid [EU].,and then he put a bandaid,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and that is it [+_bch].,and that is it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,elephant came[-:].,elephant came,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,(and that) what is what is this guy/z long neck [+_bch]?,what is what is this guy's long neck,0 0 0 0 0 2 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,what is what is this guy/z long neck [+_bch]?,what is what is this guy's long neck,0 0 0 0 0 2 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,what is his long [+_bch] [+/]^,what is his long,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,I can not see it.,I can not see it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,"it is your story, you make it up.",it is your story you make it up,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and[-:] : he got a helicopter.,and he got a helicopter,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,he flied|fly[EW:flew] it in the air[-:].,he flied it in the air,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,(it fell in the water) [~_no] it keeped|keep[EW:kept] flying in the : sky.,it keeped flying in the sky,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,it could not get down.,it could not get down,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,he was go/ing to[:_gonna] catch it.,he was going to catch it,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,he could not.,he could not,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,okay shall I turn now?,okay shall I turn now,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,oh[-:] (he) he want/3s to fly it right now!,oh he wants to fly it right now,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,the elephant is like this [~_makes_unknown_facial_expression]!,the elephant is like this,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,"oh, you show/ed me again with your face.",oh you showed me again with your face,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,(and then) and then he want/3s to fly it!,and then he wants to fly it,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,the elephant catched|catch[EW:caught] it.,the elephant catched it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,he must have[?] want/ed to fly it.,he must have wanted to fly it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then it fell in the water!,and then it fell in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,uhoh and then that guy get/3s mad on the elephant : (cause it is) : because (it got s : um) it is got snuck[?] down [EU].,uhoh and then that guy gets mad on the elephant because it is got snuck down,0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and it got stuck now!,and it got stuck now,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then the other guy said : here is the bigger dad.,and then the other guy said here is the bigger dad,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and (the eleph) (the other guy) the other one said[-:] : look.,and the other one said look,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,the helicopter sneaked|sneak[EW:snuck] down!,the helicopter sneaked down,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,oh[-:][!] : (the guy) : the guy is try/ing to catch it!,oh the guy is trying to catch it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,it gots[EW:got] all[-:] the way there!,it gots all the way there,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then they could not catch it.,and then they could not catch it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,that is a long one.,that is a long one,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then the guy got a[-:] like : net[!]!,and then the guy got a like net,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,oh[-:] the net catch everything.,oh the net catch everything,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,he catch|catch[EW:caught] fish.,he catch fish,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,but it is hard to catch fish.,but it is hard to catch fish,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,they are fast!,they are fast,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and[-:] (helicopter is) it is just a toy down there.,and it is just a toy down there,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,you can catch it fast.,you can catch it fast,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,"okay, should I turn?",okay should I turn,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then the guy catched|catch[EW:caught] it.,and then the guy catched it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and he give it back to the : other guy.,and he give it back to the other guy,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then the elephant is really[?] happy.,and then the elephant is really happy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and he went [~_makes_unknown_facial_expression].,and he went,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and he what?,and he what,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,the (ele) elephant is happy.,the elephant is happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and he went [~_makes_unknown_facial_expression] : because he got that thing.,and he went because he got that thing,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,the other guy was[-:] build/ing his sandcastle.,the other guy was building his sandcastle,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and the other guy with glass/s[?] [EU].,and the other guy with glasses,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,they was[EW:were] happy.,they was happy,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then turn the page now [+_bch].,and then turn the page now,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then the guy (w) want/3s to mix it : because he can not see or[?] watch.,and then the guy wants to mix it because he can not see or watch,0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,[~_see] the guy put the pail.,the guy put the pail,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,it is go/ing to wreck it now!,it is going to wreck it now,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,it is lot/s of sand!,it is lots of sand,0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then he wreck/ed it!,and then he wrecked it,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,that guy that is his sandcastle!,that guy that is his sandcastle,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,he wreck/ed it!,he wrecked it,0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then the other guy build|build[EW:built] another[!] sandcastle.,and then the other guy build another sandcastle,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,but it is not nice.,but it is not nice,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,the guy said bye to (the guy) : the guy with the glass/s.,the guy said bye to the guy with the glasses,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then he went.,and then he went,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and he sit[?].,and he sit,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and he was play/ing with the sand.,and he was playing with the sand,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,they was[EW:were] eat/ing.,they was eating,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,(and snow : uh) and snow came down.,and snow came down,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,(um[-:]) : and then[-:] they was[EW:were] cold.,and then they was cold,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and they went in the house.,and they went in the house,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then they came back out[-:].,and then they came back out,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and it was so[!] windy!,and it was so windy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then they came back out.,and then they came back out,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,it was rain/ing[?]!,it was raining,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and when they came back out it was sunny[!].,and when they came back out it was sunny,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and when they came back out it was windy again.,and when they came back out it was windy again,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and when they came back out it was sunny.,and when they came back out it was sunny,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,(um) : the guy went with the pail : with a balloon on.,the guy went with the pail with a balloon on,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then they see|see[EW:saw] [?] it.,and then they see it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,they want to get it to the sand.,they want to get it to the sand,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,they could not find the sandpile.,they could not find the sandpile,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,(and then[-:]) : and then the other[-:] balloon fell in the sky.,and then the other balloon fell in the sky,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,balloon/s can fly in the sky when it is windy because it is not heavy.,balloons can fly in the sky when it is windy because it is not heavy,1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then the guy want/3s to take it off.,and then the guy wants to take it off,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,whoa[-:]!,whoa,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,it forgot[?] to[?] go[?]!,it forgot to go,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,it is not hang/ing in : tight like that.,it is not hanging in tight like that,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,it is like this.,it is like this,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,flied|fly[EW:flew] off [EU].,flied off,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,it is gone.,it is gone,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,he can not catch it in the air.,he can not catch it in the air,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,oh yeah if that guy was with it then it is windy so hard [EU]!,oh yeah if that guy was with it then it is windy so hard,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,it can fly with it : if it is hang/ing on.,it can fly with it if it is hanging on,0 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,oh[-:] it is fly/ed!,oh it is flew,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,he took it out and it flied|fly[EW:flew] up.,he took it out and it flied up,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,(and then[-:] : th) and then the balloon pop[EW:popped].,and then the balloon pop,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and the guy was mad.,and the guy was mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and the other guy was sad.,and the other guy was sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and the other guy bought lot/s[!] of balloon/s.,and the other guy bought lots of balloons,0 0 0 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and he gived|give[EW:gave] them to the kid.,and he gived them to the kid,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and the other balloon pop/ed [~_laughs] : the last one.,and the other balloon popped the last one,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then the other[!] one pop/ed.,and then the other one popped,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,that is it.,that is it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then another[!] one.,and then another one,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then it is not go/ing to pop!,and then it is not going to pop,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then[-:] [+/]^,and then,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,okay anything to say about this page here?,okay anything to say about this page here,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,(um) [+/]^,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,page eleven?,page eleven,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then the guy (look) : look how many balloon/s he say [EU].,and then the guy look how many balloons he say,0 0 0 0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then he give|give[EW:gave] him some money.,and then he give him some money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,(and he) and then they *are jump/ing to get the balloon [EU].,and then they jumping to get the balloon,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,the guy can not see.,the guy can not see,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,they just gather[?] by his hand.,they just gather by his hand,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and he went.,and he went,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,(and then they hang/ed on their arm) [~_EXA:_can_n(o)t_hear_you] and then they hanged|hang[EW:hung] on on the balloon [EU].,and then they hanged on on the balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,they hanged|hang[EW:hung] on on a balloon [EU].,they hanged on on a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then they *are smile/ing [EU].,and then they smiling,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,It look/3s like a giraffe and an elephant that are go/ing swim/ing.,It looks like a giraffe and an elephant that are going swimming,0 3 0 0 0 0 0 0 0 0 6 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and they are[-:] play/ing with a ball.,and they are playing with a ball,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,"(although it) although when (um) they were play/ing with it, it (um) maybe bounce/3s in the water.",although when they were playing with it it maybe bounces in the water,0 0 0 0 6 0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and the giraffe try/3s to swim and get it.,and the giraffe tries to swim and get it,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and the giraffe got it and give/3s it to the elephant.,and the giraffe got it and gives it to the elephant,0 0 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and : the : elephant thank/3s him.,and the elephant thanks him,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and : the giraffe is smile/ing.,and the giraffe is smiling,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,It look/3s like they might want to dive in and go swim/ing.,It looks like they might want to dive in and go swimming,0 3 0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,look/3s like the elephant is point/ing to the diving board to (um).,looks like the elephant is pointing to the diving board to,3 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and he want/3s to dive.,and he wants to dive,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and (um) the elephant start/3s to run.,and the elephant starts to run,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,although : it is slipery.,although it is slipery,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,so she start/3s to slide.,so she starts to slide,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and she fall/3s and hurt/3s her knee.,and she falls and hurts her knee,0 0 3 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and then (um) the lifeguard come/3s.,and then the lifeguard comes,0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and he[-:] put/3s a bandage on it.,and he puts a bandage on it,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,then he (um) say/ing probably that there is a no run/ing sign and that you can not that you should not run cause you can slip and fall.,then he saying probably that there is a no running sign and that you can not that you should not run cause you can slip and fall,0 0 6 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and then he is point/ing to the sign that say/3s no run/ing.,and then he is pointing to the sign that says no running,0 0 0 0 6 0 0 0 0 3 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,Look/3s like they are talk/ing : about something.,Looks like they are talking about something,3 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,(and then he) and then the giraffe look/3s like he is show/ing : her : his new airplane.,and then the giraffe looks like he is showing her his new airplane,0 0 0 0 3 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and she look/3s like she is get/ing dizzy watch/ing it going around in circle/s.,and she looks like she is getting dizzy watching it going around in circles,0 0 3 0 0 0 6 0 6 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and she[-:] take/3s it from him and start/3s to look/3s[EW:look] at him.,and she takes it from him and starts to looks at him,0 0 3 0 0 0 0 3 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and the giraffe look/3s like he is get/ing mad.,and the giraffe looks like he is getting mad,0 0 0 3 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and then she accidentally drop/ed it in the water.,and then she accidentally dropped it in the water,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and she look/3s like (sh) : she is scare/ed or something.,and she looks like she is scared or something,0 0 3 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and the giraffe look/3s like he is (m) really mad.,and the giraffe looks like he is really mad,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and then the lifeguard come/3s along : and probably say/3s : what is that ?,and then the lifeguard comes along and probably says what is that,0 0 0 0 3 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and what is it do/ing in the pool ?,and what is it doing in the pool,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and then the elephant is probably blame/ing it on the giraffe that he threw it in the water.,and then the elephant is probably blaming it on the giraffe that he threw it in the water,0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and the lifeguard is (try/ing to catch it) try/ing to pick it up out of the water : although he can not reach it.,and the lifeguard is trying to pick it up out of the water although he can not reach it,0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and the giraffe look/3s like he is get/ing really sad.,and the giraffe looks like he is getting really sad,0 0 0 3 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,so he start/3s to cry.,so he starts to cry,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and then this lady elephant come/3s along with a net.,and then this lady elephant comes along with a net,0 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and she[-:] try/3s to (fish it) fish it out with the net.,and she tries to fish it out with the net,0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and she get/3s it out and give/3s it back to the giraffe.,and she gets it out and gives it back to the giraffe,0 0 3 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and he is all happy.,and he is all happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and he is hug/ing it.,and he is hugging it,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,(it look/3s like[-:] two[-:]) it look/3s like a bunny : (and : um) and a dog or something play/ing in the sand.,it looks like a bunny and a dog or something playing in the sand,0 3 0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,(and they start) and the bunny look/3s like he is help/ing : the dog make a sandcastle.,and the bunny looks like he is helping the dog make a sandcastle,0 0 0 3 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and[-:] the bunny pour/3s a whole bucket of sand on it.,and the bunny pours a whole bucket of sand on it,0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and the dog look/3s like he is get/ing sort of worry/ed.,and the dog looks like he is getting sort of worried,0 0 0 3 0 0 0 6 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and the bunny (s) get/3s surprise/ed because it is all cover/ed in sand.,and the bunny gets surprised because it is all covered in sand,0 0 0 3 4 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and the dog start/3s to cry.,and the dog starts to cry,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and the bunny look/3s like he is : embarrasse/ed.,and the bunny looks like he is embarrasseed,0 0 0 3 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,it look/3s like the dog is go/ing for a picnic.,it looks like the dog is going for a picnic,0 3 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and the bunny is come/ing along with him.,and the bunny is coming along with him,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,it look/3s like the bunny is look/ing at all this good food that he want/3s to eat.,it looks like the bunny is looking at all this good food that he wants to eat,0 3 0 0 0 0 6 0 0 0 0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and he eat/3s it all.,and he eats it all,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,(and : he) (and he) I guess he has a stomachache.,I guess he has a stomachache,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and then he start/3s to feel sick.,and then he starts to feel sick,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,: and it look/3s like/3s[EW:like] he is[EW:has] faint/ed.,and it looks likes he is fainted,0 0 3 3 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and (the puppy) the dog go/3s to find somebody.,and the dog goes to find somebody,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and : he (fi) (h um) he find/3s this (um) lady.,and he he finds this lady,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and he pull/3s the lady to where (um) the bunny drop/ed out.,and he pulls the lady to where the bunny dropped out,0 0 3 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,(and[-:] the) and the lady was a doctor.,and the lady was a doctor,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,so she : test/ed him to see if he was awake : or not.,so she tested him to see if he was awake or not,0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and she took him.,and she took him,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and she is probably go/ing to [~_gonna] take him back to the doctor office to check him up.,and she is probably going to take him back to the doctor office to check him up,0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,it looks like (she is pull) the dog is pull/ing a wagon with a balloon on it.,it looks like the dog is pulling a wagon with a balloon on it,0 0 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,(And the) and the bunny is come/ing : like run/ing along.,and the bunny is coming like running along,0 0 0 0 6 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and he see/3s the dog.,and he sees the dog,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and he is wave/ing.,and he is waving,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and[-:] the rabbit (pra um) look/3s like he is say/ing (um) like nice balloon.,and the rabbit looks like he is saying like nice balloon,0 0 0 3 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and then the bunny try/3s to pull it off.,and then the bunny tries to pull it off,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and the dog look/3s : like : scare/ed : that it will fly away.,and the dog looks like scared that it will fly away,0 0 0 3 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and then the bunny accidentally let/3s go of it.,and then the bunny accidentally lets go of it,0 0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and it start/3s to fly up in the air.,and it starts to fly up in the air,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and they are try/ing to catch it : although they can not.,and they are trying to catch it although they can not,0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and the bunny is look/ing up at the balloon.,and the bunny is looking up at the balloon,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and the dog is get/ing really mad.,and the dog is getting really mad,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and then (this um old bun) this bunny is sell/ing balloon/s.,and then this bunny is selling balloons,0 0 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and the bunny see/3s it.,and the bunny sees it,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,so he run/3s over.,so he runs over,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and then he ask/3s (the bunny) the older bunny : for (a) one of the balloon/s.,and then he asks the older bunny for one of the balloons,0 0 0 3 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and then the balloon man said that the balloon/s are five cent/s.,and then the balloon man said that the balloons are five cents,0 0 0 0 0 0 0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and the bunny look/3s in his pocket/s.,and the bunny looks in his pockets,0 0 0 3 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and he do/3s not have any money.,and he does not have any money,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and : the bunny look/3s sad because he can not : buy another balloon (for his) : for the dog.,and the bunny looks sad because he can not buy another balloon for the dog,0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and then the bunny walk/3s over to this lady.,and then the bunny walks over to this lady,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and he ask/3s her for some money.,and he asks her for some money,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and the lady give/3s him five cent/s.,and the lady gives him five cents,0 0 0 3 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and then they each got one of their own balloon/s.,and then they each got one of their own balloons,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,There is an elephant and a giraffe : by the swimming pool.,There is an elephant and a giraffe by the swimming pool,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the elephant is bang/ing a ball with his trunk.,and the elephant is banging a ball with his trunk,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the elephant (kno) accidentally knock/ed the ball inside the water.,and the elephant accidentally knocked the ball inside the water,0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the giraffe : had to go and get it.,and the giraffe had to go and get it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,(he had) the giraffe had to swim inside the water to go and get the ball.,the giraffe had to swim inside the water to go and get the ball,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,the giraffe got the ball back for the elephant.,the giraffe got the ball back for the elephant,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,(and the elephant) : and the elephant was happy to get the ball back.,and the elephant was happy to get the ball back,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,The elephant and the giraffe are stand/ing by the water.,The elephant and the giraffe are standing by the water,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,the elephant ran closer to the water.,the elephant ran closer to the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,the elephant slip/ed[!].,the elephant slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the giraffe is run/ing to (s) stop the elephant from fall/ing on the ground.,and the giraffe is running to stop the elephant from falling on the ground,0 0 0 0 6 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the elephant fell on (his) her knee and hurt it.,and the elephant fell on her knee and hurt it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,the giraffe is try/ing to fix the elephant/z knee.,the giraffe is trying to fix the elephant's knee,0 0 0 6 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and (this oth) another elephant came and put a bandage on it.,and another elephant came and put a bandage on it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,"and (all the giraffe, the elephant and the other elephant are) the giraffe is sit/ing down.",and the giraffe is sitting down,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the (gg) giraffe is stand/ing up.,and the giraffe is standing up,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and (the elephant is still) the other elephant is stand/ing up.,and the other elephant is standing up,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the girl elephant is sit/ing down.,and the girl elephant is sitting down,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,(The elephant is) : the elephant and the giraffe are happy.,the elephant and the giraffe are happy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,the giraffe is play/ing with a toy plane.,the giraffe is playing with a toy plane,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,: and the elephant is look/ing at it.,and the elephant is looking at it,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the elephant took[!] the toy plane and start/ed to play with it.,and the elephant took the toy plane and started to play with it,0 0 0 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the elephant drop/ed the toy plane inside the water.,and the elephant dropped the toy plane inside the water,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the giraffe is get/ing mad at the elephant.,and the giraffe is getting mad at the elephant,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the lifeguard came and (s) look/ed at the toy plane.,and the lifeguard came and looked at the toy plane,0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and then : the elephant : was look/ing at the lifeguard.,and then the elephant was looking at the lifeguard,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and (the one) the giraffe is look/ing at the plane.,and the giraffe is looking at the plane,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and (the ele) : the elephant ask/ed the lifeguard to get that plane out.,and the elephant asked the lifeguard to get that plane out,0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,the lifeguard is[-:] hold/ing onto the edge and try/ing to get : the toy plane out.,the lifeguard is holding onto the edge and trying to get the toy plane out,0 0 0 6 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and : the elephant and the giraffe are look/ing at the plane.,and the elephant and the giraffe are looking at the plane,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the lifeguard can not[!] get : (the eleph) the (um) plane out.,and the lifeguard can not get the plane out,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,so : the giraffe start/ed to cry.,so the giraffe started to cry,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,(and the) and another lifeguard grab/ed a net (and tr) and try/ed to get it out.,and another lifeguard grabbed a net and tried to get it out,0 0 0 4 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the other lifeguard (um) caught it in the net in there.,and the other lifeguard caught it in the net in there,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and (um the) everybody (was look/ing) was proud.,and everybody was proud,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and that other lifeguard got it for the giraffe.,and that other lifeguard got it for the giraffe,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the giraffe was very happy.,and the giraffe was very happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the elephant and the giraffe are very happy to get the plane back.,and the elephant and the giraffe are very happy to get the plane back,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,There is a rabbit and a dog play/ing in the sandbox.,There is a rabbit and a dog playing in the sandbox,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the rabbit and the dog are make/ing a sandcastle.,and the rabbit and the dog are making a sandcastle,0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the : rabbit : fulled|fill[EW:filled] the bucket of sand and : broke the sandcastle.,and the rabbit fulled the bucket of sand and broke the sandcastle,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and now : the rabbit : is[-:] a bit frighten/ed of what happen/ed to the sandcastle.,and now the rabbit is a bit frightened of what happened to the sandcastle,0 0 0 0 0 0 0 4 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and : the dog (ha) is try/ing to make the sandcastle all over again.,and the dog is trying to make the sandcastle all over again,0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,there is a dog and a rabbit.,there is a dog and a rabbit,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,they are go/ing to have a picnic.,they are going to have a picnic,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the rabbit took all the food out : and is get/ing very hungry.,and the rabbit took all the food out and is getting very hungry,0 0 0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,the rabbit ate all his food.,the rabbit ate all his food,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the dog is still drink/ing and eat/ing : his food very nicely.,and the dog is still drinking and eating his food very nicely,0 0 0 0 0 6 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the rabbit is very[-:] (ff) full.,and the rabbit is very full,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the dog is still[!] eat/ing his food.,and the dog is still eating his food,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the dog see/3s a doctor : and ran over to the doctor.,and the dog sees a doctor and ran over to the doctor,0 0 0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and (the doctor is[-:] ) the dog is pull/ing the doctor/z (leg) [~_I_mean] arm : to move it over there.,and the dog is pulling the doctor's arm to move it over there,0 0 0 0 6 0 2 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the doctor (is gon) (go/ing to take : um : the) (the bunny/z) (the rabbit/z : uh) is (go/ing) try/ing to fix the rabbit.,and the doctor is trying to fix the rabbit,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the rabbit is all better now.,and the rabbit is all better now,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,the rabbit : is run/ing over to the dog that is pull/ing a wagon : with a balloon on it.,the rabbit is running over to the dog that is pulling a wagon with a balloon on it,0 0 0 6 0 0 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the rabbit : is try/ing to grab the balloon.,and the rabbit is trying to grab the balloon,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the rabbit is untie/ing the balloon from the wagon.,and the rabbit is untying the balloon from the wagon,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the dog is very proud.,and the dog is very proud,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and then (the balloo) the balloon : slip/ed out of the rabbit/z hand and went fly/ing up in the air.,and then the balloon slipped out of the rabbit's hand and went flying up in the air,0 0 0 0 4 0 0 0 2 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,(and they are all try) and the rabbit and the dog are try/ing to catch it.,and the rabbit and the dog are trying to catch it,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the dog is very mad at the rabbit.,and the dog is very mad at the rabbit,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,(and they s) and the rabbit see/3s : (another man sell/ing ballo) (a balloo) a man sell/ing balloon/s.,and the rabbit sees a man selling balloons,0 0 0 3 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and (he bought one) the rabbit bought one[!] balloon.,and the rabbit bought one balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,(and he) and the rabbit has no money for balloon/s.,and the rabbit has no money for balloons,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,(and th) and the rabbit and[!] the dog are try/ing to get a balloon.,and the rabbit and the dog are trying to get a balloon,0 0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and[-:] the rabbit went (to th) (to the) (to this other rabbit) : to the doctor.,and the rabbit went to the doctor,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the doctor saw him.,and the doctor saw him,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and (the) the (ra) other rabbit is point/ing to : the balloon/s.,and the other rabbit is pointing to the balloons,0 0 0 0 0 6 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and : the doctor is buy/ing a balloon.,and the doctor is buying a balloon,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and[-:] both of them have a balloon.,and both of them have a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,the girl has three (ba) ball/s[-:].,the girl has three balls,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(and she is) : and there is (a) a big one and a medium size/ed and a small ball.,and there is a big one and a medium sized and a small ball,0 0 0 0 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(and) : and there is (um) : a giraffe : that would like to play with one.,and there is a giraffe that would like to play with one,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,by accident (he s) the girl throw/3s the ball into the pool.,by accident the girl throws the ball into the pool,0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,the giraffe (go/3s) : (try) he is in to swim for it.,the giraffe he is in to swim for it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,he give/3s it back to the girl and say/3s that is okay.,he gives it back to the girl and says that is okay,0 3 0 0 0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,he is smile/ing at the girl.,he is smiling at the girl,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,the girl : elephant and the boy giraffe are look/ing at the pool.,the girl elephant and the boy giraffe are looking at the pool,0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,okay can you talk a bit louder cause someone is make/ing noise out there.,okay can you talk a bit louder cause someone is making noise out there,0 0 0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,[~_CHI:_kay] what is next?,what is next,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(the girl) (the girl is run/ing) the girl is run/ing.,the girl is running,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,mm okay.,mm okay,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(she) : she accidentally slip/3s[-:].,she accidentally slips,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(and she hur) and she hurt/3s her knee.,and she hurts her knee,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and now she is (cry/ing) : cry/ing.,and now she is crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,the lifeguard : come/3s run/ing.,the lifeguard comes running,0 0 3 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,he put the bandage (on) : on the (um) bruise.,he put the bandage on the bruise,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(and she) now she is sit/ing down on the (um) : bench.,now she is sitting down on the bench,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,he point/3s to the sign that says no run/ing.,he points to the sign that says no running,0 3 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and she was run/ing.,and she was running,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,the boy giraffe have|have[EW:has] a toy airplane.,the boy giraffe have a toy airplane,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and (the girl giraffe) : [~_I_mean] the girl elephant is ask/ing to play with it.,and the girl elephant is asking to play with it,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(and he wa) (and he um) : and he is show/ing : her how to do a loopdeloop with the airplane.,and he is showing her how to do a loopdeloop with the airplane,0 0 0 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(and then sh) and then she take/3s it.,and then she takes it,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(sh) she is : look/ing at it like : it is her/z.,she is looking at it like it is her's,0 0 6 0 0 0 0 0 2 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,she accidentally drop/3s it into the pool.,she accidentally drops it into the pool,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(the um gira) the boy giraffe is get/ing mad at her.,the boy giraffe is getting mad at her,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(the la) (the l) when the lifeguard see/3s (he) : he is kind of happy.,when the lifeguard sees he is kind of happy,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and he is kind of mad.,and he is kind of mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(the girl) the elephant is : tell/ing (hu) him what happen/ed.,the elephant is telling him what happened,0 0 0 6 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,he is try/ing to reach out : to get it.,he is trying to reach out to get it,0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,the boy giraffe : is cry/ing because they can not get it.,the boy giraffe is crying because they can not get it,0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(the) (the other gir) there is another girl elephant : that has : a net.,there is another girl elephant that has a net,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and she think/3s that she can get it.,and she thinks that she can get it,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and she can get it.,and she can get it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(she give/ing it) she is give/ing the toy airplane back to the giraffe.,she is giving the toy airplane back to the giraffe,0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and he is hug/ing it : because he love/3s it.,and he is hugging it because he loves it,0 0 0 6 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,there is a rabbit that is make/ing a castle.,there is a rabbit that is making a castle,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and there is another rabbit that want/3s to help that rabbit make the castle.,and there is another rabbit that wants to help that rabbit make the castle,0 0 0 0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(they) they are help/ing make the castle together.,they are helping make the castle together,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(one) one is build/ing the castle.,one is building the castle,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and one is make/ing the wall/s.,and one is making the walls,0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(one) (one) : (one is ac) one accidentally pour/3s the sand right onto the castle.,one accidentally pours the sand right onto the castle,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and the other one : look/3s embarrass/ed.,and the other one looks embarrassed,0 0 0 0 3 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(uh) after he pour/3s it on all there is is a tower from the castle.,after he pours it on all there is is a tower from the castle,0 0 3 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and it is all gone.,and it is all gone,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and : the other one is kind of smile/ing.,and the other one is kind of smiling,0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,but one has a frown/ing face.,but one has a frowning face,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and : (that other) that other (wa) one (that had a) that was smile/ing is now cry/ing.,and that other one that was smiling is now crying,0 0 0 0 0 0 6 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and the other one : is : think/ing of what he did.,and the other one is thinking of what he did,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,that is the end of the story [+_bch].,that is the end of the story,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(there is two) there are two rabbit/s.,there are two rabbits,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,one is[-:] run/ing to the other with a (pis) : picnic[!] basket.,one is running to the other with a picnic basket,0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and the other one is hold/ing a (pis) (picnic) : picnic basket[!].,and the other one is holding a picnic basket,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(one said) one has open/ed up his picnic basket.,one has opened up his picnic basket,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and he is eat/ing : all the food.,and he is eating all the food,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and the other one is (s) still open/ing hers up.,and the other one is still opening hers up,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,when he is done all his food (he kinds of) he kind of faint/s.,when he is done all his food he kind of faints,0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(and the other) and the other one is still eat/ing.,and the other one is still eating,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(uh) he feel/3s kind of sick.,he feels kind of sick,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(and) : and (he) the other one is still eat/ing[~!__laughing].,and the other one is still eating,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,the one that was still eat/ing (ru) run/3s to get a doctor.,the one that was still eating runs to get a doctor,0 0 0 0 0 6 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(and) : and he is tell/ing (her) (him) her : what happen/ed to her friend.,and he is telling her what happened to her friend,0 0 0 6 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(now she) now she is pull/ing : the doctor to (her fr) her friend.,now she is pulling the doctor to her friend,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,the doctor : is speak/ing to the boy (and) to tell him not to eat too quick.,the doctor is speaking to the boy to tell him not to eat too quick,0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,now : the boy is all better.,now the boy is all better,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(and : now) : and now the girl and the boy is[EW:are] going home.,and now the girl and the boy is going home,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(there is a girl that is push/ing her wagon : and : uh) [~__clears_throat] there is a girl that is push/ing her wagon.,there is a girl that is pushing her wagon,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and : on the wagon there is a balloon.,and on the wagon there is a balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(and the boy) and the boy rabbit is chase/ing after her.,and the boy rabbit is chasing after her,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(he want/3s) he want/3s the balloon.,he wants the balloon,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,so he reach/s : out.,so he reaches out,0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and she is : kind of have[EW:has] a frown/ing face.,and she is kind of have a frowning face,0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,what kind of face?,what kind of face,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,a frown/ing face [+_bch].,a frowning face,0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,oh frown/ing okay.,oh frowning okay,0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,when he get/3s : his balloon (the gir) the girl (um kind) is say/ing hey.,when he gets his balloon the girl is saying hey,0 0 3 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and he is play/ing.,and he is playing,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and he is tie/ing it to his wrist.,and he is tying it to his wrist,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,he let/3s the balloon go.,he lets the balloon go,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and it float/3s away.,and it floats away,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,the girl is get/ing really : mad : at the boy.,the girl is getting really mad at the boy,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and soon they see another rabbit (that ha) that is hold/ing balloon/s.,and soon they see another rabbit that is holding balloons,0 0 0 0 0 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,[~_clears_throat] (when the bo) (when the boy : s) when the boy see/3s : that : he ask/3s if : he can have a balloon.,when the boy sees that he asks if he can have a balloon,0 0 0 3 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,the man said it is five cent/s.,the man said it is five cents,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and the boy do/3s not have any money.,and the boy does not have any money,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,he say/3s : it is okay.,he says it is okay,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,maybe next time you will have some.,maybe next time you will have some,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and when the : boy see/3s the doctor he ask/3s (if he can pay for the) : if (sh) : she can pay (for the : balloon) : for both of the balloon/s.,and when the boy sees the doctor he asks if she can pay for both of the balloons,0 0 0 0 3 0 0 0 3 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(I sa) the doctor say/3s (y) yes.,the doctor says yes,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and (um) : they both get a balloon.,and they both get a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,right here she is : pay/ing.,right here she is paying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and[-:] they both really like : their balloon/s.,and they both really like their balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,there once were two friend/s.,there once were two friends,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and they were : play/ing a game.,and they were playing a game,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and they want/ed to go swim/ing.,and they wanted to go swimming,0 0 4 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,so then : they got there.,so then they got there,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and then : they were play/ing.,and then they were playing,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and the ball fell in the pool.,and the ball fell in the pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,so : one of the friend/s swam[!] out and got it.,so one of the friends swam out and got it,0 0 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and then they got it.,and then they got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and one of the friend/s she took it out.,and one of the friends she took it out,0 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and then they want/ed to play again.,and then they wanted to play again,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,there were two friend/s.,there were two friends,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and : they were the same one[EW:ones] in the last story.,and they were the same one in the last story,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and they want/ed to go swim/ing again.,and they wanted to go swimming again,0 0 4 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,so they went.,so they went,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and then one of the friend/s : she want/ed to go in right[!] away.,and then one of the friends she wanted to go in right away,0 0 0 0 0 1 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,so she ran[-:].,so she ran,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,(and sh) and she want/ed to jump in.,and she wanted to jump in,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,but then : she fell.,but then she fell,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and she scrape/ed her knee.,and she scraped her knee,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and the lifeguard came.,and the lifeguard came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and he said oh it is all right.,and he said oh it is all right,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,here is a bandage.,here is a bandage,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,here you can sit here and wait til it is better.,here you can sit here and wait til it is better,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and then : she was happy[!].,and then she was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,she took a little rest[!].,she took a little rest,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,there were once two friend/s.,there were once two friends,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and they want/ed to go swim/ing.,and they wanted to go swimming,0 0 4 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,so they went[!].,so they went,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and one friend (bought) brought an airplane.,and one friend brought an airplane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,the other friend grab/ed it and said wow an airplane !,the other friend grabbed it and said wow an airplane,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and then she accidentally drop/ed it in the pool.,and then she accidentally dropped it in the pool,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and then the other friend was a (l) little bit mad[-:].,and then the other friend was a little bit mad,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,so then she said uhoh[-:] !,so then she said uhoh,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and he went [~_makes_sound_'err'] !,and he went,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and then the lifeguard came.,and then the lifeguard came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and he went hmm.,and he went hmm,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and then she said (I) I accidentally drop/ed the airplane[!] in the pool[-:].,and then she said I accidentally dropped the airplane in the pool,0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,he try/ed to get it.,he tried to get it,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,but he could not reach.,but he could not reach,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,so then : the friend that (ha) had the airplane he was cry/ing.,so then the friend that had the airplane he was crying,0 0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and then : one lady : she came.,and then one lady she came,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and she had a net to get it.,and she had a net to get it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,she said do not worry.,she said do not worry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,I will get it.,I will get it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and then she went and got[!] it.,and then she went and got it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and then : (xx the) he was happy[!] again.,and then he was happy again,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and then they were both happy.,and then they were both happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and she was happy he got his airplane back.,and she was happy he got his airplane back,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,once : there were : two[-:] friend/s.,once there were two friends,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,(and they went) : and they want/ed to play in the sandbox.,and they wanted to play in the sandbox,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and they built a sandcastle.,and they built a sandcastle,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and[-:] it was : really[!] nice.,and it was really nice,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and they : need/ed lot/s of sand to make it (unless) : unless it would not work out [EU].,and they needed lots of sand to make it unless it would not work out,0 0 4 1 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and then : he put too much sand on it that it all collapse/ed and fell.,and then he put too much sand on it that it all collapsed and fell,0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,(and then) : and then : one of them start/ed to cry.,and then one of them started to cry,0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,(so) and then : he want/ed to rebuild[!] it.,and then he wanted to rebuild it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,once there were two[-:] friend/s.,once there were two friends,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,(and) : and they want/ed to go on a picnic.,and they wanted to go on a picnic,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,they pack/ed all[-:] the lunch.,they packed all the lunch,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and when they got there they start/ed to eat.,and when they got there they started to eat,0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and they start/ed to eat.,and they started to eat,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and one of them felt really sick[!].,and one of them felt really sick,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,so they had to : get a doctor.,so they had to get a doctor,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,(and) and (while the doctor was come/ing) when the doctor was : come/ing he felt really[!] sick.,and when the doctor was coming he felt really sick,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and (he k) he could not wait.,and he could not wait,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and the doctor came.,and the doctor came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,one of the friend/s she ran[!] up to the doctor.,one of the friends she ran up to the doctor,0 0 0 1 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,she said doctor doctor help!,she said doctor doctor help,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,my friend is sick.,my friend is sick,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,we need some help so he feel/3s better.,we need some help so he feels better,0 0 0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,the doctor said oh my (he has a) he has a very bad tummyache.,the doctor said oh my he has a very bad tummyache,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and he felt better because the doctor made him feel better.,and he felt better because the doctor made him feel better,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and then : he live/ed happily ever after.,and then he lived happily ever after,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,there were two friend/s the same one/s in the last story that I read.,there were two friends the same ones in the last story that I read,0 0 0 1 0 0 1 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and they want/ed to go on a walk[!].,and they wanted to go on a walk,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,so they went[!].,so they went,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,(and they) : (and they saw) : and they saw somebody : with balloon/s.,and they saw somebody with balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and (they) : they got one.,and they got one,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and they tie/ed it on.,and they tied it on,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,but then it went up in the air[!].,but then it went up in the air,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and they were sad[-:].,and they were sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and then : (they) they kept go/ing.,and then they kept going,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and then they saw (a man) another man with balloon/s.,and then they saw another man with balloons,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and (they went) : they want/ed to get some.,and they wanted to get some,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,(say) (so they got) : so they got some.,so they got some,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and then they left.,and then they left,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,but then : they did not have any money!,but then they did not have any money,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and he was sad.,and he was sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and the balloon man : said : hm I do not know : if you can get a balloon[-:].,and the balloon man said hm I do not know if you can get a balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and they did not : (d) get any.,and they did not get any,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and then : they saw a lady.,and then they saw a lady,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,(and see) (she was) and then he ask/ed : can you get us some money so we can get a balloon?,and then he asked can you get us some money so we can get a balloon,0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and then : so she bought a balloon for them.,and then so she bought a balloon for them,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and then they were both happy.,and then they were both happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,(uh : hm :) once upon a time : then there was a[EW:an] elephant go/ing [EU].,once upon a time then there was a elephant going,0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,(then[-:] the ra) then (the) : he came.,then he came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,(and was) and a ball[-:] was in[!] the pool[-:].,and a ball was in the pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,then he try/ed[-:] to swim in there.,then he tried to swim in there,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,but he could not : [~_right]?,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,then[-:] : she pick|pick[EW:picked] the ball up.,then she pick the ball up,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,then[-:] he was all wet.,then he was all wet,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,then that is the end of the story [+_bch].,then that is the end of the story,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,once upon a time : a[EW:an] elephant came along[-:].,once upon a time a elephant came along,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and (that) (then) (then[-:] ) then [~_turn_the_story] : (then) (then : she want/ed to) then[-:] she want/ed to go.,and then then she wanted to go,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,but[!] : she falled|fall[EW:fell] on herself.,but she falled on herself,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and the more she was run/ing she falled|fall[EW:fell][-:].,and the more she was running she falled,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and[!] someone is go/ing to[:_gonna] help her.,and someone is going to help her,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and she got a (br um) a[EW:an] owie [~_okay].,and she got a a owie,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,(then[-:] come along) (elephant came) then the elephant came.,then the elephant came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,(and he) and that was a coast.,and that was a coast,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,then there was a[EW:an] owie go/ing.,then there was a owie going,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,(and there was) but then[-:] : there was nothing to do[-:].,but then there was nothing to do,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,then the animal was all[-:] better.,then the animal was all better,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and[-:] he said no run/ing : because if you run you fall on yourself.,and he said no running because if you run you fall on yourself,0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,I never do that I but I run on a sidewalk and I like like while I was two [+_bch].,I never do that I but I run on a sidewalk and I like like while I was two,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,like once upon a time : she did not : allow/ed in[-:] [EU].,like once upon a time she did not allowed in,0 0 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,something came.,something came,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,(and[-:]) and then there was an airplane go/ing in the water[-:].,and then there was an airplane going in the water,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and she[-:] : play/ed it and[-:] something.,and she played it and something,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and she taked|take[EW:took] it away and : throwed|throw[EW:threw] it in there.,and she taked it away and throwed it in there,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,: (um then[-:]) : then he was angry.,then he was angry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,(and she) and the boy told her : you did it on a purpose.,and the boy told her you did it on a purpose,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,then a lifeguard came[-:].,then a lifeguard came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,(then[-:]) : then the airplane was still in there.,then the airplane was still in there,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,he want/ed it out.,he wanted it out,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,he try/ed to reach it.,he tried to reach it,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,but he could not!,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and[-:] someone got it.,and someone got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,but she was very trifle[?].,but she was very trifle,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,(um) then[-:] someone is go/ing to pick in[EW:up] a net.,then someone is going to pick in a net,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,(um) : then someone is go/ing to pick it xx.,then someone is going to pick it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,then he was happy.,then he was happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,then[-:] he was glad.,then he was glad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,then she[!] was glad.,then she was glad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,they were : make/ing new friend/s again.,they were making new friends again,0 0 6 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,then the end of the story [+_bch].,then the end of the story,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,once upon a time[-:] (he) she built a nice sandcastle.,once upon a time she built a nice sandcastle,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,but (then that rabbit) : then the rabbit was surprise/ed.,but then the rabbit was surprised,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,(then c) then[-:] they were make/ing a other[EW:another] castle.,then they were making a other castle,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,then[-:] someone push/ed it down.,then someone pushed it down,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and that was (her[-:] like) like a rabbit or maybe : someone else.,and that was like a rabbit or maybe someone else,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and it was[!] rabbit.,and it was rabbit,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and[-:] she did not do it.,and she did not do it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,so she try/ed to fix it.,so she tried to fix it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and he[-:] was not (uh) please/ed.,and he was not pleased,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,then that is the end of the story [+_bch].,then that is the end of the story,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,(he) she was walk/ing by.,she was walking by,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and[-:] (then[-:]) then[-:] a rabbit was go/ing[!] by.,and then a rabbit was going by,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and a puppy saw her.,and a puppy saw her,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and a puppy said[-:] I am go/ing to picnic like you.,and a puppy said I am going to picnic like you,0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,so they had a nice picnic.,so they had a nice picnic,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and[-:] he was get/ing : goofy.,and he was getting goofy,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and[-:] suddenly he was tire/ed.,and suddenly he was tired,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and he was full of candy.,and he was full of candy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and[-:] he is get/ing sicker : sicker and sicker.,and he is getting sicker sicker and sicker,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,then he knowed|know[EW:knew]: he[-:] was get/ing sicker and sicker.,then he knowed he was getting sicker and sicker,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and (he) she need/ed : him to help her.,and she needed him to help her,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,he was so full he could not even walk.,he was so full he could not even walk,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and[-:] the rabbit said : get up!,and the rabbit said get up,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and[-:] then[-:] he was : fine at all.,and then he was fine at all,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,then[-:] she was try/ing to pull it.,then she was trying to pull it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,but he was so[-:] happy.,but he was so happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,(a ra) and a other[EW:another] rabbit came along.,and a other rabbit came along,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and she said what are you do/ing[!]?,and she said what are you doing,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,I am just pull/ing some stuff.,I am just pulling some stuff,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and[-:] a balloon was not go/ing up.,and a balloon was not going up,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and she[-:] was happy.,and she was happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,suddenly it was go/ing up : and up : and up : and up and up : and up.,suddenly it was going up and up and up and up and up and up,0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,then suddenly he : want/ed a other[EW:another] one.,then suddenly he wanted a other one,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and[-:] : she was angry.,and she was angry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,there she came.,there she came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,just a sec [~_interruption_as_someone_came_into_the_office].,just a sec,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,then he was go/ing to [~_gonna] get a other[EW:another] balloon.,then he was going to get a other balloon,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,she was angry.,she was angry,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and he[!] want/ed a balloon.,and he wanted a balloon,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and he said yup I want a balloon.,and he said yup I want a balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and he did not know.,and he did not know,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,: and[-:] the xx [~_sounds_like_'mendasee'] said no[-:].,and the said no,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,can you see?,can you see,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,(and[-:]) and he said : you do not have any money?,and he said you do not have any money,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,(that is) : that is not do/ing.,that is not doing,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,: (then[-:]) then suddenly : he had idea.,then suddenly he had idea,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and[-:] a rabbit had money somewhere : to find[-:].,and a rabbit had money somewhere to find,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and that was someone else look/ing : in a far away.,and that was someone else looking in a far away,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and she said what is it you are do/ing?,and she said what is it you are doing,0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,I need some money!,I need some money,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,(but) and she said : she did not know what she need[EW:needed] the money for.,and she said she did not know what she need the money for,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,: (then[-:]) then she give|give[EW:gave] him some (won) money.,then she give him some money,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and they want/ed two[-:] balloon/s.,and they wanted two balloons,0 0 4 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,that was all.,that was all,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and he[-:] want/ed them two.,and he wanted them two,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,but other/s hear/ed[?] it.,but others heard it,0 1 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,but there was[EW:were] two left.,but there was two left,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,then they got both the balloon.,then they got both the balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and they love/ed it.,and they loved it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,then they : hug/ed it.,then they hugged it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,(and then something went[-:] ) (then[-:]) [~_coughs] (then[-:]) then she was surprise/ed[-:].,then she was surprised,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and that was true.,and that was true,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,that is the end [+_bch].,that is the end,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,[~_okay] : so (a guy) : there was a giraffe.,so there was a giraffe,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,he was at the pool.,he was at the pool,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,then he met a girl : bounce/ing a ball.,then he met a girl bouncing a ball,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,but the ball fell in the water.,but the ball fell in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and (the man) [~_like] the boy try/ed to go get it.,and the boy tried to go get it,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and then he got the ball.,and then he got the ball,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and then[-:] : he was still all wet because he was in his clothes.,and then he was still all wet because he was in his clothes,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,there [+_bch].,there,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,[~_okay] they saw a diving board.,they saw a diving board,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,(and it) and it said no run/ing : (and) the sign said (but).,and it said no running the sign said,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and then she start/ed to run[-:].,and then she started to run,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and then she slip/ed.,and then she slipped,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,she fell on the ground.,she fell on the ground,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and she hurt her knee.,and she hurt her knee,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and then the lifeguard came : and put a bandage on it.,and then the lifeguard came and put a bandage on it,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,sat on a bench [EU].,sat on a bench,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and then the[-:] lifeguard said you are kick/ed out.,and then the lifeguard said you are kicked out,0 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,[~_okay] a boy was there.,a boy was there,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and the girl was there.,and the girl was there,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and then the boy had an airplane in his hand.,and then the boy had an airplane in his hand,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,he flew it around like this [~_gestures].,he flew it around like this,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and then the girl grab/ed it out of his hand.,and then the girl grabbed it out of his hand,0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and then[-:] it slip/ed out of her hand.,and then it slipped out of her hand,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and it went into the water.,and it went into the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,it was a pool.,it was a pool,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and then the boy got so angry.,and then the boy got so angry,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and the lifeguard came[-:].,and the lifeguard came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and the girl said it was an accident.,and the girl said it was an accident,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,I accidentally : got the (w) : plane in the water.,I accidentally got the plane in the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,so the lifeguard try/ed to reach it.,so the lifeguard tried to reach it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,then he could not.,then he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,the lifeguard girl[!] came : and pick/ed it up with a scooper : and gave it back to the boy.,the lifeguard girl came and picked it up with a scooper and gave it back to the boy,0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and then (he hug/ed it) : he hug/ed the plane[!].,and then he hugged the plane,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,well he[-:] were[EW:was] in the sandbox.,well he were in the sandbox,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and he meant[?] [EU].,and he meant,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,(and he) somebody had a sandcastle built up.,somebody had a sandcastle built up,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and they play/ed together.,and they played together,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and he put some sand in a bucket.,and he put some sand in a bucket,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and the other guy touch/ed the castle[-:].,and the other guy touched the castle,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and then the rabbit : put the sand on[!] the castle.,and then the rabbit put the sand on the castle,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and then : he got so mad.,and then he got so mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,so then they try/ed to fix it.,so then they tried to fix it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,there [+_bch].,there,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,so[-:] : he was on the road somewhere.,so he was on the road somewhere,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and he : put his hand out like[~!_laughing] this.,and he put his hand out like this,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and he saw somebody run : down[?] the street.,and he saw somebody run down the street,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and then[-:] : they decide/ed to have a picnic together.,and then they decided to have a picnic together,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,one is eat/ing a carrot.,one is eating a carrot,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and then he got so[!] full because he ate all the food.,and then he got so full because he ate all the food,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and he got so[!] full that : the basket fell over.,and he got so full that the basket fell over,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and then his dad came.,and then his dad came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and he is still lay/ing on the carpet.,and he is still laying on the carpet,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and then (he) the : child[!] pull|pull[EW:pulled] : the dad/z shirt.,and then the child pull the dad's shirt,0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and then he said go[~!_laughing] to your room now.,and then he said go to your room now,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,(and then) (he) : (he sna) and then the other guy went home because : the other guy was not really his child.,and then the other guy went home because the other guy was not really his child,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,the other guy was?,the other guy was,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,(re) really not his child [+_bch].,really not his child,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,so (the) this boy met a girl[-:] : push/ing a wagon with a balloon attach/ed to it.,so this boy met a girl pushing a wagon with a balloon attached to it,0 0 0 0 0 0 6 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and then[-:] they want/ed to play together.,and then they wanted to play together,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,(so[-:]) : and then : the boy took the balloon off[!].,and then the boy took the balloon off,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and it float/ed up into the air.,and it floated up into the air,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and then the girl got angry.,and then the girl got angry,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,so then another man came by sell/ing balloon/s.,so then another man came by selling balloons,0 0 0 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,so the girl want/ed one.,so the girl wanted one,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,so then (he uh) the guy look/ed in his pockets to see if he had any : money.,so then the guy looked in his pockets to see if he had any money,0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,but he did not.,but he did not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,so he had to walk back : and ask somebody else : (to) for some more money.,so he had to walk back and ask somebody else for some more money,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,then he got more money.,then he got more money,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and then[-:] (they got another balloon) they each got a balloon.,and then they each got a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,the elephant is (talk/ing to the) : talk/ing to a horse.,the elephant is talking to a horse,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,the elephant is push/ing the horse.,the elephant is pushing the horse,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,the elephant push/ed : the horse in the water.,the elephant pushed the horse in the water,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,the elephant is help/ing him out.,the elephant is helping him out,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,: the elephant *is (ah) : be/ing nice [EU].,the elephant being nice,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,and that is the end [+_bch].,and that is the end,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,the elephant is be/ing nice.,the elephant is being nice,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,(elephant) the elephant is go/ing to[:_gonna] jump in the water.,the elephant is going to jump in the water,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,(th) the elephant is run/ing.,the elephant is running,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,the elephant (got a) got an owie.,the elephant got an owie,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,the elephant is cry/ing.,the elephant is crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,: (uh) the daddy is put/ing a bandaid on it.,the daddy is putting a bandaid on it,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,and she is sit/ing on a bench.,and she is sitting on a bench,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,(uh and she was) (and she is be) and she was just tease/ing.,and she was just teasing,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,she was just tease/ing that she had a owie.,she was just teasing that she had a owie,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,the elephant is make/ing funny faces.,the elephant is making funny faces,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,: the elephant is : (uh) : look/ing at the airplane.,the elephant is looking at the airplane,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,the elephant (s) want/3s to fly it.,the elephant wants to fly it,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,(the elephant is) the elephant is : sink/ing it.,the elephant is sinking it,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,(the elephant is) and : the elephant is look/ing at : the airplane sink/ing.,and the elephant is looking at the airplane sinking,0 0 0 0 6 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,: and (hm) the elephant is : mad.,and the elephant is mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,: and (she s) she said to her dad (that) (that) that I sinked|sink[EW:sunk] : his airplane.,and she said to her dad that I sinked his airplane,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,and the dad is try/ing to get it.,and the dad is trying to get it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,: and the dad is : put/ing his hands out like this.,and the dad is putting his hands out like this,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,(and) (and the ga) (and) (and the fly) : (fly : swatter) [~_child_whispers_swatter] (uh) and she is try/ing to get it with the fly (shw) (ss) swatter : (s) .,and she is trying to get it with the fly swatter,0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,(and) and she got it out for him.,and she got it out for him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,now the elephant is happy.,now the elephant is happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,and that is the end [+_bch].,and that is the end,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,(um) they are play/ing in sand.,they are playing in sand,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,the rabbit is dig/ing in sand.,the rabbit is digging in sand,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,the rabbit is : put/ing sand on the sandcastle.,the rabbit is putting sand on the sandcastle,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,the rabbit wreck/ed the sandcastle.,the rabbit wrecked the sandcastle,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,: (and) and the : piggy is sad.,and the piggy is sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,and he is build/ing it back up.,and he is building it back up,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,and that the end [+_bch].,and that the end,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,the rabbit is walk/ing down the : path.,the rabbit is walking down the path,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,(the ra) (they are have/ing a) the pig and the rabbit are have/ing a picnic.,the pig and the rabbit are having a picnic,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,the rabbit is eat/ing candy.,the rabbit is eating candy,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,: (the rabbit is) : the rabbit is feel/ing sick.,the rabbit is feeling sick,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,(and they are gi) (and the) : and the pig has a flower in his hand.,and the pig has a flower in his hand,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,and the pig is pull/ing (the) the girl bunny/z : hand.,and the pig is pulling the girl bunny's hand,0 0 0 0 6 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,and the girl bunny hit him on the head.,and the girl bunny hit him on the head,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,and the girl bunny is take/ing him.,and the girl bunny is taking him,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,and that is the end [+_bch].,and that is the end,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,the rabbit (wr) walk/ing down the path again.,the rabbit walking down the path again,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,the rabbit is look/ing at the balloon.,the rabbit is looking at the balloon,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,(the pig has a f um) the rabbit is untie/ing the balloon.,the rabbit is untying the balloon,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,and the balloon is go/ing up.,and the balloon is going up,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,and the pig is get/ing mad at the rabbit.,and the pig is getting mad at the rabbit,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,(and) : and there is another rabbit.,and there is another rabbit,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,and they are go/ing to[:_gonna] go buy another one.,and they are going to go buy another one,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,and they are go/ing to [:_gonna] get one.,and they are going to get one,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,: and (then they are go/ing to [:_gonna] ge) (go get another one from someone else) then they are go/ing to [:_gonna] go get another one from someone else.,and then they are going to go get another one from someone else,0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,and then they got one.,and then they got one,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,(and then the) (and then the) (then the gi) (then the girl um) (and) and the rabbit is run/ing to (the girl : bunny) : the girl rabbit.,and the rabbit is running to the girl rabbit,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,(n and) (and then) (and) and he is point/ing to the balloon/s.,and he is pointing to the balloons,0 0 0 6 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,(and) and they want another balloon.,and they want another balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,so they are get/ing : their mom to buy another one.,so they are getting their mom to buy another one,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,(and this t) and they got their own this time.,and they got their own this time,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,and that is the end [+_bch].,and that is the end,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,a girl is bounce/ing (a b) a ball.,a girl is bouncing a ball,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,the ball went into the pool.,the ball went into the pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,the moose went to go get it.,the moose went to go get it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,the moose got it and brang|bring[EW:brought] it back.,the moose got it and brang it back,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,and then he (got out of the pool) got out of the pool.,and then he got out of the pool,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,and the girl was happy.,and the girl was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,(they) they see a pool.,they see a pool,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,they run to the diving pool.,they run to the diving pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,[~_well] now[!] they are run/ing to the diving pool.,now they are running to the diving pool,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,"okay so you were thinking about that because you knew what came next, anything else on this page?",okay so you were thinking about that because you knew what came next anything else on this page,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,they see the diving board.,they see the diving board,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,so they run to the diving board.,so they run to the diving board,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,the girl ran so fast : that she slip/ed and hurt her knee.,the girl ran so fast that she slipped and hurt her knee,0 0 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,the lifeguard came to see : to give a (bandaid :) bandaid.,the lifeguard came to see to give a bandaid,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,(the) the : moose went to go get him.,the moose went to go get him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,the lifeguard gave : her a bandaid.,the lifeguard gave her a bandaid,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,she thought it really hurted|hurt[EW:hurt].,she thought it really hurted,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,and then (the) the lifeguard took : her to the bench.,and then the lifeguard took her to the bench,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,and then she try/ed touch/ing it.,and then she tried touching it,0 0 0 4 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,and it was better.,and it was better,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,and then the lifeguard : point/ed to a sign.,and then the lifeguard pointed to a sign,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,she look/ed.,she looked,0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,it said no run/ing.,it said no running,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,the moose[-:] has a plane.,the moose has a plane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,they were go/ing to[:_gonna] play with it : at the pool.,they were going to play with it at the pool,0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,the moose : (fl fl) made it fly [~_gestures].,the moose made it fly,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,"okay, you were show/ing me with your hands.",okay you were showing me with your hands,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,and then : the girl took it : away : and threw it.,and then the girl took it away and threw it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,it land/ed in the pool.,it landed in the pool,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,the moose got really mad.,the moose got really mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,the girl said oopsie/s.,the girl said oopsies,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,the lifeguard came.,the lifeguard came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,she was scare/ed.,she was scared,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,she told (what) (how :) (um how) how it happen/ed.,she told how it happened,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,the lifeguard try/ed to reach it.,the lifeguard tried to reach it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,but he could not.,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,the moose cry/ed.,the moose cried,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,the lifeguard got a net : and got the plane with the net : then pull/ed it out (so sh) so the moose can have it.,the lifeguard got a net and got the plane with the net then pulled it out so the moose can have it,0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,and then they had fun : later.,and then they had fun later,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,there are two boy/s make/ing a sandcastle.,there are two boys making a sandcastle,0 0 0 1 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,one of them smooth/ed it up.,one of them smoothed it up,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,the other one : put sand on it.,the other one put sand on it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,since he was get/ing tire/ed of do/ing that he dump/ed the whole pail on.,since he was getting tired of doing that he dumped the whole pail on,0 0 0 6 4 0 6 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,and then the (wh) whole pail cover|cover[EW:covered] most of the : sandcastle.,and then the whole pail cover most of the sandcastle,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,one of the boy/s start/ed to cry.,one of the boys started to cry,0 0 0 1 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,two people had a : picnic.,two people had a picnic,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,: one of the boy/s (ate) had more[!] than the other one.,one of the boys had more than the other one,0 0 0 1 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,(the) (the) one of the boy/s (had : l :) had too much to eat.,one of the boys had too much to eat,0 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,(he got) he ate a little more.,he ate a little more,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,and he got dizzy.,and he got dizzy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,(and then) : and then (um a) : the other boy : saw a girl.,and then the other boy saw a girl,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,she pull/ed the girl : to the picnic.,she pulled the girl to the picnic,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,: and : (the boy wa) the boy : was not so dizzy any more : because the girl help/ed him.,and the boy was not so dizzy any more because the girl helped him,0 0 0 0 0 0 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,a boy was pull/ing a wagon with : a balloon on it.,a boy was pulling a wagon with a balloon on it,0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,the boy saw the balloon.,the boy saw the balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,the boy : was untie/ing the balloon.,the boy was untying the balloon,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,the balloon float/ed away.,the balloon floated away,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,the other boy got mad at him.,the other boy got mad at him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,(he) so (he) the other boy look/ed up.,so the other boy looked up,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,and then they saw more balloon/s.,and then they saw more balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,so they went to go get one.,so they went to go get one,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,(but) but it cost/3s money.,but it costs money,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,and that was this page [+_bch].,and that was this page,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,and then the boy check/ed his pocket/s.,and then the boy checked his pockets,0 0 0 0 4 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,but he did not have : five cent/s.,but he did not have five cents,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,so the man with the balloon/s said no you can not have : one because you do not have any money.,so the man with the balloons said no you can not have one because you do not have any money,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,and then a boy found : a girl.,and then a boy found a girl,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,the boy ask/ed her : nicely if she could buy him : a balloon.,the boy asked her nicely if she could buy him a balloon,0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,the girl gave him a balloon.,the girl gave him a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,they both had a balloon now.,they both had a balloon now,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,The : elephant : (and the : ah) [EU].,The elephant,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,the giraffe : (was : uh) saw the elephant was bounce/ing the ball.,the giraffe saw the elephant was bouncing the ball,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and (the :) the ball was on the water.,and the ball was on the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and giraffe : *was try/ing to get the ball on the water [EU].,and giraffe trying to get the ball on the water,0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and : the giraffe : got it.,and the giraffe got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and : the elephant get|got[EW:got] it.,and the elephant get it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the giraffe was wet.,and the giraffe was wet,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,Once upon a time (a) the elephant and the giraffe was saw the water [EU].,Once upon a time the elephant and the giraffe was saw the water,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,(and) and : (ahh : um) the elephant want|want[EW:wanted] to go on the water.,and the elephant want to go on the water,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the elephant go|go[EW:goes] right away to go on the water.,and the elephant go right away to go on the water,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the elephant slip/ed over (the) the ground [EU].,and the elephant slipped over the ground,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the elephant got hurt on the knee/s.,and the elephant got hurt on the knees,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the elephant was cry/ing.,and the elephant was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,(and the) and the elephant was put/ing a bandaid on.,and the elephant was putting a bandaid on,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and (the : elephant was) the elephant was (ahh ahh) mad because it hurt/3s on the knee/s with the bandaid.,and the elephant was mad because it hurts on the knees with the bandaid,0 0 0 0 0 0 0 3 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and they feel better.,and they feel better,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and they sit down.,and they sit down,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,but the elephant (ahh) : look/ed so mad because (they're) the giraffe and the elephant want to go to the water.,but the elephant looked so mad because the giraffe and the elephant want to go to the water,0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,the giraffe and the elephant [EU].,the giraffe and the elephant,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,the elephant saw the airplane on the giraffe[EW:giraffe/z] hand.,the elephant saw the airplane on the giraffe hand,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the : elephant : (was) saw the airplane was fly/ing.,and the elephant saw the airplane was flying,0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the giraffe was : stand/ing (uh) with the airplane.,and the giraffe was standing with the airplane,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the elephant take|take[EW:took] away from the giraffe[EW:giraffe/z] airplane [EU].,and the elephant take away from the giraffe airplane,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the elephant want|want[EW:wanted] to see it.,and the elephant want to see it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the elephant drop|drop[EW:dropped] it in the water.,and the elephant drop it in the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the giraffe was very angry.,and the giraffe was very angry,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and (the elephant and the giraffe was saw the) the other elephant was saw the airplane in the water [EU].,and the other elephant was saw the airplane in the water,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and : (the) the elephant was (uh) say[EW:saying] (the) she was dropped[EW:dropping] the airplane in the water.,and the elephant was say she was dropped the airplane in the water,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and (the : uh) the elephant *was try/ing to go get (the) the airplane [EU].,and the elephant trying to go get the airplane,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and he can not get it.,and he can not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,: but (: uh) the giraffe was cry/ing with the airplane.,but the giraffe was crying with the airplane,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and : (the) then the other (uh) elephant will get the airplane with : that thing (to) for the fish.,and then the other elephant will get the airplane with that thing for the fish,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and (she) the elephant *was try/ing to get it [EU].,and the elephant trying to get it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,but : it is too hard to get it.,but it is too hard to get it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,but : she get|get[EW:got] it.,but she get it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,the elephant got it now.,the elephant got it now,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the (uh) giraffe was happy.,and the giraffe was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and : the elephant and the giraffe was[EW:were] happy too.,and the elephant and the giraffe was happy too,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,the bunny and (the) : the dog [EU].,the bunny and the dog,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,the dog was make/ing a sandcastle.,the dog was making a sandcastle,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the rabbit want|want[EW:wanted] to help the dog.,and the rabbit want to help the dog,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the rabbit : was make/ing a sandcastle.,and the rabbit was making a sandcastle,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the dog *was all finish[EW:finished] [EU].,and the dog all finish,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the rabbit : was try/ing to put the sand on the castle.,and the rabbit was trying to put the sand on the castle,0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the dog : was so scare/ed.,and the dog was so scared,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,(the) the rabbit *was try/ing to put : the sand on the castle [EU].,the rabbit trying to put the sand on the castle,0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and there is breaked|break[EW:broke] (the) the sandcastle [EU].,and there is breaked the sandcastle,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the dog was cry/ing.,and the dog was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the rabbit was so sorry : breaked|break[EW:broke] the sandcastle [EU].,and the rabbit was so sorry breaked the sandcastle,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,The dog and the rabbit was[EW:were] go/ing to the picnic.,The dog and the rabbit was going to the picnic,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and : the rabbit was have[EW:having] the carrot and some hot_dog/s and some cake : and some sandwich/s.,and the rabbit was have the carrot and some hot dogs and some cake and some sandwiches,0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the rabbit got[EW:had] too much to eat.,and the rabbit got too much to eat,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the rabbit got a (st) stomachache.,and the rabbit got a stomachache,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and he is get/ing so fat.,and he is getting so fat,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and : the doctor was came[EW:coming] and saw the rabbit.,and the doctor was came and saw the rabbit,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,(the) and the dog try/ed to get the doctor.,and the dog tried to get the doctor,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the doctor was : come/ing : and saw the rabbit there.,and the doctor was coming and saw the rabbit there,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the rabbit was so : have a stomachache [EU].,and the rabbit was so have a stomachache,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and he *was feel/ing right sick [EU].,and he feeling right sick,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the rabbit go|go[EW:went] home.,and the rabbit go home,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and he felt better.,and he felt better,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,(The dog and the bal) the dog and the bunny was[EW:were] saw (the balloon) the color pink balloon [EU].,the dog and the bunny was saw the color pink balloon,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,(and) : and the rabbit went to see the balloon.,and the rabbit went to see the balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and he *was try/ing to take it off for the dog [EU].,and he trying to take it off for the dog,0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and (is) is float/ing away : from the dog [EU].,and is floating away from the dog,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the dog was right angry because : the bunny was : let go of the balloon [EU].,and the dog was right angry because the bunny was let go of the balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and : the dog : and the rabbit saw lot/s of balloon/s there.,and the dog and the rabbit saw lots of balloons there,0 0 0 0 0 0 0 1 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,"pink, green and orange and blue and purple, white and : gold.",pink green and orange and blue and purple white and gold,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and : the rabbit choosed|choose[EW:chose] the : blue one.,and the rabbit choosed the blue one,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,(and that) and : (the) (the nother) : the another[EW:other] (uh) rabbit was right angry because that is number five.,and the another rabbit was right angry because that is number five,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,so the rabbit and the dog want to pick the balloon.,so the rabbit and the dog want to pick the balloon,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,but : the doctor *was there because : the dog was sick [EU].,but the doctor there because the dog was sick,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and (the) the doctor saw the dog was sick.,and the doctor saw the dog was sick,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and (he has got some) the doctor got[EW:has] some monies[EW:money] for the dog and the rabbit for the balloon/s.,and the doctor got some monies for the dog and the rabbit for the balloons,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the dog got the color the gold balloon [EU].,and the dog got the color the gold balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the rabbit got the color the blue balloon [EU].,and the rabbit got the color the blue balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,the : elephant was play/ing with his ball.,the elephant was playing with his ball,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,then he threw it in the : pool.,then he threw it in the pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,then : the giraffe : catch|catch[EW:caught] the ball and : throwed|throw[EW:threw] it to the elephant.,then the giraffe catch the ball and throwed it to the elephant,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,and : he pick|pick[EW:picked] it up[?].,and he pick it up,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,xxx.,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,"okay, what did you say?",okay what did you say,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,[~_grunts].,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,they : want to go in the pool.,they want to go in the pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,he was run/ing.,he was running,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,then he slip/ed.,then he slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,then : hurt his knee [EU].,then hurt his knee,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,then he cry/ed.,then he cried,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,what is that?,what is that,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,then the lifeguard : go [EU].,then the lifeguard go,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,and he close/ed his eye/s.,and he closed his eyes,0 0 4 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,and : it (hur) hurt.,and it hurt,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,then : (uh) : the lifeguard told him that (he) it say/3s no run/ing.,then the lifeguard told him that it says no running,0 0 0 0 0 0 0 3 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,the elephant look/ed at the : giraffe : play/ing.,the elephant looked at the giraffe playing,0 0 4 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,then he play/ed with it.,then he played with it,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,then he grab/ed it.,then he grabbed it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,then he throw : into the deep : pool[?] [EU].,then he throw into the deep pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,and the : giraffe : been angry [EU].,and the giraffe been angry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,and the lifeguard : came.,and the lifeguard came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,(he) and he told : him : that he throwed|throw[EW:threw] (um) : the giraffe[EW:giraffe's] : plane into the deep.,and he told him that he throwed the giraffe plane into the deep,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,he try/ed to grab it.,he tried to grab it,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,but he can not.,but he can not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,and there was xx daddy[?].,and there was daddy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,he get|get[EW:got] the : plane.,he get the plane,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,and he catched|catch[EW:caught] it.,and he catched it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,and he bring|bring[EW:brought] it : back to the giraffe.,and he bring it back to the giraffe,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,and he : hug/ed it tight to the xx.,and he hugged it tight to the,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,the bunny and the dog are make/ing a (castle) castle.,the bunny and the dog are making a castle,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,the bunny : put : sand in his bucket.,the bunny put sand in his bucket,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,and he dump|dump[EW:dumped] : it all.,and he dump it all,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,and he : wreck|wreck[EW:wrecked] : the dog/z castle.,and he wreck the dog's castle,0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,(mm : he) (he) : he pretend/ed (to) he did it to xx him.,he pretended he did it to him,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,the dog and the bunny (went) go/ing for a picnic [EU].,the dog and the bunny going for a picnic,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,the bunny : ate some food.,the bunny ate some food,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,and : he ate some more.,and he ate some more,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,and then he has a stomachache.,and then he has a stomachache,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,then : the dog got by the doctor [EU].,then the dog got by the doctor,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,and he grab/ed him.,and he grabbed him,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,and : (he : uh) : he told the dog that he has a stomachache [EU].,and he told the dog that he has a stomachache,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,and then : they came.,and then they came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,the dog and the (b) bunny went to see the bunny.,the dog and the bunny went to see the bunny,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,(the) the bunny (see) he : see/3s : the dog[?].,the bunny he sees the dog,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,then : he : tie/ed up the balloon.,then he tied up the balloon,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,and the balloon : went up.,and the balloon went up,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,and the dog got angry.,and the dog got angry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,then : the bunny losed|lose[EW:lost] it.,then the bunny losed it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,he talk the mom : to give him the balloon [EU].,he talk the mom to give him the balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,but he do|do[EW:does] not have money.,but he do not have money,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,(the) : (the) : the bunny and the dog have no money.,the bunny and the dog have no money,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,they : come : to go : to him [EU].,they come to go to him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,and then (the dog) [~_no] the bunny goed|go[EW:went] xx xx xx.,and then the bunny goed,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,and he gave : both balloon/s : to them : bunny and the dog.,and he gave both balloons to them bunny and the dog,0 0 0 0 1 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,(um) : the donkey want/ed to play (uh with) with another animal with his ball/s.,the donkey wanted to play with another animal with his balls,0 0 4 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,(um : they) they went to the swim[EW:swimming] pool.,they went to the swim pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and (they) they found a friend.,and they found a friend,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and he jump/ed in the : water and splash/ed the elephant by accident.,and he jumped in the water and splashed the elephant by accident,0 0 4 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and the elephant pick/ed the ball up.,and the elephant picked the ball up,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and the giraffe ask/ed if he could have it.,and the giraffe asked if he could have it,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and he came out with his : cloth/s on.,and he came out with his cloths on,0 0 0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,(um) they went back to the swimming : pool and did not want to go into the water.,they went back to the swimming pool and did not want to go into the water,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,the elephant want/ed to go in the water.,the elephant wanted to go in the water,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,but the giraffe did not.,but the giraffe did not,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,(um) the elephant : ask/ed if he could race the : giraffe to the diving board.,the elephant asked if he could race the giraffe to the diving board,0 0 4 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,but : the elephant trip/ed (and) and fell and hurt her knee.,but the elephant tripped and fell and hurt her knee,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and : the swimming : person check/ed if he was okay : and put the bandaid on her.,and the swimming person checked if he was okay and put the bandaid on her,0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and she feeled|feel[EW:felt] all better.,and she feeled all better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and she stay/ed there so she could get better.,and she stayed there so she could get better,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,(um) the : giraffe throwed|throw[EW:threw] his airplane.,the giraffe throwed his airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and it flew.,and it flew,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,(but) but by accident he (th) threw it too soft.,but by accident he threw it too soft,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and it fell in the water.,and it fell in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and : he try/ed to get it out.,and he tried to get it out,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,(but he) and he did.,and he did,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and without ask/ing : the elephant grab/ed the airplane away from him because she want/ed to play with it.,and without asking the elephant grabbed the airplane away from him because she wanted to play with it,0 0 6 0 0 4 0 0 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,(and because they was grab/ing) they grab/ed.,they grabbed,0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and it fell in the water.,and it fell in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and the giraffe was angry at the elephant because she : throwed|throw[EW:threw] it in by accident.,and the giraffe was angry at the elephant because she throwed it in by accident,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,the lifeguard was mad because : they throwed|throw[EW:threw] it in.,the lifeguard was mad because they throwed it in,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and toy/s was[EW:were] not suppose/ed to be in the water.,and toys was not supposed to be in the water,0 1 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and the elephant : said look what I did.,and the elephant said look what I did,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,it was by accident.,it was by accident,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and the lifeguard try/ed to pick it up.,and the lifeguard tried to pick it up,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,but he could not.,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,the lifeguard could not.,the lifeguard could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,so he just got up.,so he just got up,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and he had an (ide) a plan.,and he had an a plan,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,(he) : but : he did not.,but he did not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,his wife took : (um) : a stick with a rope (on the ss) on the front.,his wife took a stick with a rope on the front,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and he catched|catch[EW:caught] it out.,and he catched it out,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,(he try/ed to) she try/ed to catch it out.,she tried to catch it out,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,(an) but she could not.,but she could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and she did.,and she did,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and she gave it back to the (el) giraffe.,and she gave it back to the giraffe,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and now he was proud : of : the girl because : she got his plane back.,and now he was proud of the girl because she got his plane back,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,the bunny said hi to : the dog.,the bunny said hi to the dog,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and the dog was make/ing a sandcastle.,and the dog was making a sandcastle,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and the bunny want/ed to help.,and the bunny wanted to help,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,but the dog said yes.,but the dog said yes,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and they start/ed build/ing a sandcastle.,and they started building a sandcastle,0 0 4 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and then : the bunny dump/ed a bucket.,and then the bunny dumped a bucket,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,(and it) (and it) and the : castle fell down.,and the castle fell down,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and the dog was : mad at the bunny.,and the dog was mad at the bunny,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and the bunny was : sorry because he knock/ed the sandcastle down.,and the bunny was sorry because he knocked the sandcastle down,0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,(and then they builded|build[EW:built] it all) : and then the dog builded|build[EW:built] it all up and *was cry/ing [EU].,and then the dog builded it all up and crying,0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,the dog said hi again to the : bunny.,the dog said hi again to the bunny,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,the bunny was race/ing down with a basket of food.,the bunny was racing down with a basket of food,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,so was the dog.,so was the dog,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and when they got : there they : unpack/ed the food.,and when they got there they unpacked the food,0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and they start/ed eat/ing.,and they started eating,0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and the bunny[EW:bunny/z]: tummy hurted|hurt[EW:hurt].,and the bunny tummy hurted,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and he was sick of the food.,and he was sick of the food,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and the dog race/ed to the doctor and said doctor doctor can you help?,and the dog raced to the doctor and said doctor doctor can you help,0 0 0 4 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,(my bun) my friend bunny is sick.,my friend bunny is sick,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,Doctor doctor come on [~_announcement_interruption_from_the_school].,Doctor doctor come on,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,come on doctor.,come on doctor,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,come on.,come on,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,my friend bunny is really sick because he eat|eat[EW:ate] so much food.,my friend bunny is really sick because he eat so much food,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,okay okay.,okay okay,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,he took his temperature.,he took his temperature,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and he was (sick) sick.,and he was sick,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,(and) and then he check/ed the bunny again.,and then he checked the bunny again,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and he was all better.,and he was all better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,the dog said hi again.,the dog said hi again,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and the bunny want/ed the balloon and said where did you get that from?,and the bunny wanted the balloon and said where did you get that from,0 0 0 4 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,I want that balloon right now.,I want that balloon right now,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and he untie/ed it from : the wagon.,and he untied it from the wagon,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and it start/ed (float) float/ing off the wagon.,and it started floating off the wagon,0 0 4 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and the dog was mad at the bunny because he untie/ed it.,and the dog was mad at the bunny because he untied it,0 0 0 0 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and he want/ed it.,and he wanted it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and then the bunny had a great idea.,and then the bunny had a great idea,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,he can go over to the balloon man to buy another balloon.,he can go over to the balloon man to buy another balloon,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and they ask/ed : could we have two balloon/s please?,and they asked could we have two balloons please,0 0 4 0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,(and uh) and (it cost/ed) it costed|cost[EW:cost] five dollar/s.,and it costed five dollars,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,(and he had) he did not have any money in his pocket.,he did not have any money in his pocket,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,so he could not get a balloon.,so he could not get a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and they said please.,and they said please,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,but no only for five dollar/s.,but no only for five dollars,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,doctor can you help us?,doctor can you help us,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,(can we have five) could we have : five dollar/s for both of us so we can have a balloon?,could we have five dollars for both of us so we can have a balloon,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,he said : okay you can have balloon.,he said okay you can have balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,(I) (I do not) we do not have any money in : our pocket/s.,we do not have any money in our pockets,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,so please can you give us five dollar/s?,so please can you give us five dollars,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,so they gived|give[EW:gave] him five dollar/s for both of : us[EW:them].,so they gived him five dollars for both of us,0 0 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and then they got the two leftover balloon/s.,and then they got the two leftover balloons,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and then they was[EW:were] proud of the doctor because : they got a balloon.,and then they was proud of the doctor because they got a balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and the bunny said sorry to : the dog because : (he uh) he want/ed the balloon.,and the bunny said sorry to the dog because he wanted the balloon,0 0 0 0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and he untie/ed it.,and he untied it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,so he said sorry.,so he said sorry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,"Play ball [~_sentence_stress_on_""ball""].",Play ball,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and : he take/ing swimming pool [EU].,and he taking swimming pool,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and he get[EW:got] it.,and he get it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and thank you[-:].,and thank you,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and welcome[?] (uh)[?] [EU].,and welcome,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and over [+_bch].,and over,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,Play swim/ing [EU].,Play swimming,0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and go[EW:goes] in it [EU].,and go in it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,(and) and run [EU].,and run,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and walk on knee [EU].,and walk on knee,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and her[EW:she] cry[EW:cried] : and cry[EW:cried] lot/s.,and her cry and cry lots,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and sit on bench [EU].,and sit on bench,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and stay here [EU].,and stay here,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,the what?,the what,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and stay on *the bench [EU].,and stay on bench,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,over [+_bch].,over,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,Play!,Play,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,play?,play,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,play a[!] play [EU].,play a play,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and play a play again [EU].,and play a play again,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and play it (in) in water [EU].,and play it in water,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and : it *is angry [EU].,and it angry,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and : say : bad [EU].,and say bad,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and : dad [EU].,and dad,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,what is that?,what is that,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,daddy [+_bch].,daddy,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,I play[EW:played] in *the pool [EU].,I play in pool,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and (they are get it) (get[!] it) : I am get[EW:getting][!] it.,and I am get it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,look/ing [EU].,looking,6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and get[EW:got] it [EU].,and get it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and : it in there [EU].,and it in there,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,I get[EW:got][!] it.,I get it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,you get[!] it.,you get it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and : (loff/ed it) [~_EXA:_and_what] love/ed it [EU].,and loved it,0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,lov/ed it [EU].,loved it,4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,He play[EW:played] (on s) in *the sand [EU].,He play in sand,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and play make castle [EU].,and play make castle,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and dump[EW:dumped] it [EU].,and dump it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and what?,and what,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,dump it [+_bch].,dump it,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,oh no.,oh no,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,oops sorry.,oops sorry,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and cry[EW:cried] [EU].,and cry,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,uhoh.,uhoh,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,They go picnic [EU].,They go picnic,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and eat [EU].,and eat,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and they drinks[EW:drink] juice.,and they drinks juice,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and hungry [EU].,and hungry,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and : (that girl : her tummy) that man *is sick [EU].,and that man sick,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,she what?,she what,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,sick [+_bch].,sick,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and : a bunny : his[?] : tummy hurt/3s.,and a bunny his tummy hurts,0 0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and turn that [+_bch].,and turn that,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and : go *to doctor/z house [EU].,and go doctor's house,0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,he what?,he what,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,doctor [+_bch].,doctor,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,all done [+_bch].,all done,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,her[EW:she] play[EW:played].,her play,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and : hold that up higher [EU].,and hold that up higher,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,tie it up [EU].,tie it up,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and up higher [EU].,and up higher,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and up clouds [EU].,and up clouds,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,angry [EU].,angry,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and : man[!] [EU].,and man,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,: what?,what,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,man balloon/s on it [EU].,man balloons on it,0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,(him) : him[EW:he] take[EW:took] one.,him take one,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,(and) and xxx.,and,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and bring[?] doctor here and check [EU].,and bring doctor here and check,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and talk [EU].,and talk,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and money [EU].,and money,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and balloon [EU].,and balloon,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and two balloon/s [EU].,and two balloons,0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and over [+_bch].,and over,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,there are these two kid/s.,there are these two kids,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,one has a ball[-:].,one has a ball,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and she is bounce/ing it really fast : by a pool[-:].,and she is bouncing it really fast by a pool,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and the ball fall/3s in[-:].,and the ball falls in,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,so the other kid jump/3s in and swim/3s to the ball.,so the other kid jumps in and swims to the ball,0 0 0 0 3 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and he get/3s it for her : and then : climb/3s out.,and he gets it for her and then climbs out,0 0 3 0 0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,there is[EW:are] these two kid/s[-:].,there is these two kids,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and they are look/ing at the water.,and they are looking at the water,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and : one of the kid/s : say/3s that there is a diving board.,and one of the kids says that there is a diving board,0 0 0 0 1 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and it look/3s like fun.,and it looks like fun,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and the kid who said that the diving board look/3s fun run/3s : and[-:] : slip/3s and hurt/3s her knee.,and the kid who said that the diving board looks fun runs and slips and hurts her knee,0 0 0 0 0 0 0 0 0 3 0 3 0 3 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and the lifeguard come/3s : and : put/3s a bandaid on : the hurt spot : and[-:] put/3s her on a bench : and show/3s her the sign no run/ing.,and the lifeguard comes and puts a bandaid on the hurt spot and puts her on a bench and shows her the sign no running,0 0 0 3 0 3 0 0 0 0 0 0 0 3 0 0 0 0 0 3 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,there is[EW:are] these two kid/s.,there is these two kids,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,one has an airplane.,one has an airplane,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and he : play/3s : with it.,and he plays with it,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and the other one : take/3s his airplane away : and accidentally drop/3s it in : the pool.,and the other one takes his airplane away and accidentally drops it in the pool,0 0 0 0 3 0 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and the other kid is really mad at her.,and the other kid is really mad at her,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,(so she go get/3s) so she get/3s a lifeguard.,so she gets a lifeguard,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and : she ask/3s him : if he could try and get the plane out.,and she asks him if he could try and get the plane out,0 0 3 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and he try/3s.,and he tries,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,but he can not reach it.,but he can not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and he do/3s not know what to do.,and he does not know what to do,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and then : this lifeguard with : a net come/3s : and fish/3s it out : and give/3s it back to the kid.,and then this lifeguard with a net comes and fishes it out and gives it back to the kid,0 0 0 0 0 0 0 3 0 3 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and the kid was really happy to have his airplane back.,and the kid was really happy to have his airplane back,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,(um) these two kid/3s (um) are go/ing to build a sandcastle.,these two kids are going to build a sandcastle,0 0 3 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and they start build/ing.,and they start building,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and : then one of the kid (um) dump/*3s sand on it.,and then one of the kid dump sand on it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and[-:] then it is all flat.,and then it is all flat,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and then the other kid cry/3s because it is broken.,and then the other kid cries because it is broken,0 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,that is kind of [~_kinda] dumb.,that is kind of dumb,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,these two kid/s are going to go for a picnic.,these two kids are going to go for a picnic,0 0 1 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and : the first kid took (um) all this unhealthy stuff.,and the first kid took all this unhealthy stuff,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and he start/3s eating.,and he starts eating,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and : he : get/3s all sick.,and he gets all sick,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and : the other one : he get/3s all dizzy.,and the other one he gets all dizzy,0 0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and the : other kid run/3s and get/3s (s) the doctor.,and the other kid runs and gets the doctor,0 0 0 0 3 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and : the other one pull/3s the doctor to him.,and the other one pulls the doctor to him,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and : then he : check/3s him out.,and then he checks him out,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and : then he say/3s that he is go/ing to give him a checkup.,and then he says that he is going to give him a checkup,0 0 0 3 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,(um) : there is[EW:are] these two kid/s.,there is these two kids,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,one of them come/3s up (and) and say/3s hi.,one of them comes up and says hi,0 0 0 3 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and he see/3s the other : one/z balloon.,and he sees the other one's balloon,0 0 3 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and then he start/3s take/ing : it off the wagon.,and then he starts taking it off the wagon,0 0 0 3 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,(and) : and the other kid is yell/ing.,and the other kid is yelling,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and then he accidentally let/3s go.,and then he accidentally lets go,0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and the other kid is really mad.,and the other kid is really mad,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,so he see/3s a[-:] guy that is sell/ing balloon/s.,so he sees a guy that is selling balloons,0 0 3 0 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and he ask/3s if he could have a balloon.,and he asks if he could have a balloon,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and then : the guy show/3s him that the balloon/s are five cent/s.,and then the guy shows him that the balloons are five cents,0 0 0 0 3 0 0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and he do/3s not have five cent/s.,and he does not have five cents,0 0 3 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,so he : go/3s to his grandma : and ask/3s if he could have a balloon.,so he goes to his grandma and asks if he could have a balloon,0 0 3 0 0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and she say/3s yes.,and she says yes,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,so they both get a balloon.,so they both get a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,One day a giraffe saw : her friend the elephant play/ing with a ball.,One day a giraffe saw her friend the elephant playing with a ball,0 0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,(gira) the giraffe took[!] the ball and threw it (in the po) in a pool nearby.,the giraffe took the ball and threw it in a pool nearby,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the elephant was scare/ed the ball might : sink.,the elephant was scared the ball might sink,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,so the giraffe went to get the ball.,so the giraffe went to get the ball,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the giraffe got the ball for the elephant.,the giraffe got the ball for the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,and the elephant was happy.,and the elephant was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,then the elephant thank/ed the giraffe.,then the elephant thanked the giraffe,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,One day the giraffe and the elephant were at the pool.,One day the giraffe and the elephant were at the pool,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the elephant said let us go off the diving board.,the elephant said let us go off the diving board,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the : elephant ran.,the elephant ran,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,and so did the giraffe.,and so did the giraffe,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the elephant fell (and) and hurt her knee.,the elephant fell and hurt her knee,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the lifeguard came and help/ed her.,the lifeguard came and helped her,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,he put a bandaid on the elephant while the giraffe watch/ed.,he put a bandaid on the elephant while the giraffe watched,0 0 0 0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the lifeguard told the elephant : not to run in the pool.,the lifeguard told the elephant not to run in the pool,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,or she might slip.,or she might slip,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,so the elephant sat down [~_coughs] and did not run.,so the elephant sat down and did not run,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,One day (in) the elephant and the giraffe were at the pool.,One day the elephant and the giraffe were at the pool,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the giraffe had (a) (a) a little plane.,the giraffe had a little plane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the giraffe play/ed with the plane.,the giraffe played with the plane,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,he did loop/s and swirl/s and (s) thing/s like that.,he did loops and swirls and things like that,0 0 1 0 1 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,then the elephant took the plane and try/ed to play with it.,then the elephant took the plane and tried to play with it,0 0 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the elephant drop/ed the plane into the water.,the elephant dropped the plane into the water,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the giraffe got furious.,the giraffe got furious,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,(and the ele) and the elephant got scare/ed.,and the elephant got scared,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,then the lifeguard came.,then the lifeguard came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the elephant told the lifeguard that she was play/ing with the plane.,the elephant told the lifeguard that she was playing with the plane,0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,but she drop/ed it in the pool.,but she dropped it in the pool,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the lifeguard try/ed to get it.,the lifeguard tried to get it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,he said he could not reach it.,he said he could not reach it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,and the : giraffe start/ed cry/ing.,and the giraffe started crying,0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,then a woman came with a net.,then a woman came with a net,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,(she took the net and) : she took the net and : took the plane out.,she took the net and took the plane out,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the boy was really happy and thank/ed (the ele) the woman.,the boy was really happy and thanked the woman,0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the boy got his plane back.,the boy got his plane back,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,and he was really happy.,and he was really happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,and so was the elephant.,and so was the elephant,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,one day two rabbit/s were play/ing in the sandbox.,one day two rabbits were playing in the sandbox,0 0 0 1 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,one rabbit was dig/ing out some sand.,one rabbit was digging out some sand,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the other one was make/ing : a sandcastle.,the other one was making a sandcastle,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the rabbit pour/ed the sand in the bucket on the sandcastle.,the rabbit poured the sand in the bucket on the sandcastle,0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,(the rabbit got conf) : the rabbit pour/ed on the sand.,the rabbit poured on the sand,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,and : I can not make this one : (um) (uh) [+_bch].,and I can not make this one,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,: just tell me what is happen/ing.,just tell me what is happening,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the rabbit is like scare/ed because then the other : rabbit might : get mad at him.,the rabbit is like scared because then the other rabbit might get mad at him,0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the[-:] dog or rabbit : start/ed to cry.,the dog or rabbit started to cry,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,and the rabbit just stood there.,and the rabbit just stood there,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,one day two friend/s met to go to a picnic.,one day two friends met to go to a picnic,0 0 0 1 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,one friend kept on eat/ing and eat/ing (and : got) : and : (keep) kept on eat/ing and eat/ing and got really full.,one friend kept on eating and eating and kept on eating and eating and got really full,0 0 0 0 6 0 6 0 0 0 6 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,by the time he finish/ed he was really stuff/ed.,by the time he finished he was really stuffed,0 0 0 0 4 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the other friend : just drank some juice and some bread.,the other friend just drank some juice and some bread,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,(w) when the other friend found the doctor who was in the park : (h) he went to get him to see if there was anything wrong with : her friend.,when the other friend found the doctor who was in the park he went to get him to see if there was anything wrong with her friend,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 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,she beg/ed the doctor to come.,she begged the doctor to come,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,(so she did) so the doctor came.,so the doctor came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the doctor check/ed the rabbit.,the doctor checked the rabbit,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,and : it seem/ed that he had a stomachache.,and it seemed that he had a stomachache,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the doctor told the rabbit : to not eat too much junk food.,the doctor told the rabbit to not eat too much junk food,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,so the rabbit did not get much of a stomachache.,so the rabbit did not get much of a stomachache,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,one day (a) : the rabbit met : his friend the dog : which had a wagon and a balloon.,one day the rabbit met his friend the dog which had a wagon and a balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the rabbit like/ed the balloon.,the rabbit liked the balloon,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,so he point/ed to it.,so he pointed to it,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the rabbit untie/ed the balloon.,the rabbit untied the balloon,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,and the dog just stood there with surprise.,and the dog just stood there with surprise,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,(so) and then the balloon flew away.,and then the balloon flew away,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the dog got mad at the rabbit.,the dog got mad at the rabbit,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,then[!] the two (s) saw a man hold/ing a bunch[!] of balloon/s.,then the two saw a man holding a bunch of balloons,0 0 0 0 0 0 6 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the rabbit ask/ed for : another balloon.,the rabbit asked for another balloon,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the man told him it was five cent/s.,the man told him it was five cents,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,but the rabbit did not have any money.,but the rabbit did not have any money,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,then the other[!] friend came.,then the other friend came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the rabbit went to see : his mom.,the rabbit went to see his mom,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,(and s) : and (the) his friend watch/ed him as he walk/ed to his mom.,and his friend watched him as he walked to his mom,0 0 0 4 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,he told his mom he want/ed a balloon.,he told his mom he wanted a balloon,0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the man : gave two balloon/s (to the) to the two friend/s.,the man gave two balloons to the two friends,0 0 0 0 1 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,and the mom paid : the money.,and the mom paid the money,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,(they) the two friend/s thank/ed (their) the mom.,the two friends thanked the mom,0 0 1 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,(um) : let us play boy/s!,let us play boys,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,the ball went in the water!,the ball went in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,I got[EW:have] to swim[!] and get it.,I got to swim and get it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,[~_high_pitched_voice] I got another ball to swim with it!,I got another ball to swim with it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,and I am play/ing with it.,and I am playing with it,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,aaah[~!_sighing] I am all wet.,aaah I am all wet,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,the end[~!_laughing] [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,let us swim.,let us swim,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,I am jump/ing in the water!,I am jumping in the water,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,let us run.,let us run,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,ow[-:].,ow,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,: are you okay!,are you okay,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,and it hurt/3s.,and it hurts,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,I[!] need a bandaid.,I need a bandaid,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,it is : still hurt/ing.,it is still hurting,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,I got[EW:have] to go to the doctor.,I got to go to the doctor,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,the end [+_bch]!,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,pig/s do like this [~_makes_snorting_sound] [~_laughs] [+_bch].,pigs do like this,1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,let us swim!,let us swim,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,I am cry/ing[!].,I am crying,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,I found a[EW:an] airplane.,I found a airplane,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,[~_makes_creaky_voice_sound] : give me that airplane!,give me that airplane,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,[~_hhh] my airplane[-:]!,my airplane,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,oh do not be angry at me!,oh do not be angry at me,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,let us get it!,let us get it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,oh we got it!,oh we got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,I got it in right.,I got it in right,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,he *is get/ing out of the water [EU].,he getting out of the water,0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,no[-:] !,no,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,okay let us catch it!,okay let us catch it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,I got it!,I got it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,: thank you.,thank you,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,my favourite airplane.,my favourite airplane,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,(um) you play in the sandpack.,you play in the sandpack,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,(you dig a) : you put the sand in the : bucket.,you put the sand in the bucket,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,and you dump it on the castle[-:] .,and you dump it on the castle,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,and (then) : (then um) : (then) then the castle broke.,and then the castle broke,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,and then the xx cried[~!_laughing].,and then the cried,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,the[!] end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,he is walk/ing.,he is walking,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,and then : he say/3s hi.,and then he says hi,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,he[-:] : eat/3s his sandwich with a carrot.,he eats his sandwich with a carrot,0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,and he : drink/3s his juice.,and he drinks his juice,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,and he cry/3s[-:].,and he cries,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,(um) : I am : thirsty.,I am thirsty,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,you stole it.,you stole it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,I said it!,I said it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,you stole it[~!_laughing].,you stole it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,I do not know that page [+_bch].,I do not know that page,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,should we try the next page?,should we try the next page,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,he cry/3s[-:].,he cries,0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,goodbye.,goodbye,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,(um) : here is a balloon.,here is a balloon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,(um) I am run/ing around!,I am running around,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,my balloon/s [EU].,my balloons,0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,do not take it off!,do not take it off,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,ah[-:] the balloon : it is fly/ing!,ah the balloon it is flying,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,aw the balloon is broken!,aw the balloon is broken,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,there is[EW:are] (a lots balloons) lots of balloon/s.,there is lots of balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,I[!] want a balloon.,I want a balloon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,I only have one.,I only have one,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,oh there is[EW:are] a lot of balloon/s.,oh there is a lot of balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,ah[~!_whispering].,ah,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,I[!] want some balloon/s.,I want some balloons,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,where can we put the balloon?,where can we put the balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,but our balloon is broken.,but our balloon is broken,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,let us have another balloon.,let us have another balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,and : we got[EW:have] two.,and we got two,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,let us have it!,let us have it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,we got[EW:have][!] : two.,we got two,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,that kind [EU].,that kind,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,(the dog) [~_no] the giraffe and the elephant [EU].,the giraffe and the elephant,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,the elephant was play/ing basketball with the giraffe.,the elephant was playing basketball with the giraffe,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and then : the (do) elephant throw|throw[EW:threw] the basketball in the water.,and then the elephant throw the basketball in the water,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,the giraffe try/ed to save the (balloon) [~_no] ball.,the giraffe tried to save the ball,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and the giraffe said here you go.,and the giraffe said here you go,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,here is the (balloon) [~_no] ball.,here is the ball,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and now the elephant/s have the ball.,and now the elephants have the ball,0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,a giraffe and a[EW:an] elephant : was[EW:were] go/ing swim/ing.,a giraffe and a elephant was going swimming,0 0 0 0 0 0 6 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and the elephant said I am go/ing on the diving board.,and the elephant said I am going on the diving board,0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and then : the elephant hurt/3s her foot.,and then the elephant hurts her foot,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and she slip/ed.,and she slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and[-:] she break|break[EW:broke] her foot.,and she break her foot,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,(and) and then the giraffe came : to save her.,and then the giraffe came to save her,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and then the swimming teacher came.,and then the swimming teacher came,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and then (the s) (s) the swimming teacher give|give[EW:gave] her a bandaid.,and then the swimming teacher give her a bandaid,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and the swimming teacher : gave her a bandaid.,and the swimming teacher gave her a bandaid,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,(and then) and then the elephant said thank you for the bandaid.,and then the elephant said thank you for the bandaid,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and the teacher said no run/ing.,and the teacher said no running,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,said oopsie [EU].,said oopsie,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,the giraffe is play/ing (wi) with his helicopter.,the giraffe is playing with his helicopter,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,(eh eh) and the elephant (wa) want|want[EW:wanted] to play (with) with it too.,and the elephant want to play with it too,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and the giraffe play/ed with his helicopter.,and the giraffe played with his helicopter,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and then[-:] the elephant take|take[Ew:took] it away from him.,and then the elephant take it away from him,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and then the elephant drop|drop[EW:dropped] it in the water.,and then the elephant drop it in the water,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and (the elephant was mad) [~_no] the giraffe was mad.,and the giraffe was mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and the swimming teacher was (to) to look at the helicopter [EU].,and the swimming teacher was to look at the helicopter,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,(and then) and then (this) (the[-:]) the elephant said : that the airplane is in the water.,and then the elephant said that the airplane is in the water,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and then the swimming teacher is try/ing to save the airplane : in the water.,and then the swimming teacher is trying to save the airplane in the water,0 0 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and (the) (the) the swimming teacher said I can not catch the airplane.,and the swimming teacher said I can not catch the airplane,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,(and then the) (an) and then the giraffe was cry/ing.,and then the giraffe was crying,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and then (a) a swimming (eh) elephant : was came[EW:coming] (to) : to rescue the : airplane.,and then a swimming elephant was came to rescue the airplane,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,(and then) and then she save/ed the airplane.,and then she saved the airplane,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and she said here you go : giraffe.,and she said here you go giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,here is the airplane.,here is the airplane,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,(and) and then (the) the giraffe was happy.,and then the giraffe was happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,(the bo) the dog (and) (and the) and the bunny want to build a castle.,the dog and the bunny want to build a castle,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,first : the rabbit : take/3s the sand in the bucket.,first the rabbit takes the sand in the bucket,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,(then) : and then the rabbit taked|take[EW:took] the sand the castle [EU].,and then the rabbit taked the sand the castle,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and the dog is (s) scare/ed[~!_laughs].,and the dog is scared,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and then[-:] : (the ra) the rabbit is scare/ed (be) because[?] the rabbit break|break[EW:broke] the castle.,and then the rabbit is scared because the rabbit break the castle,0 0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and then the dog try/ed to (fix) fix the castle.,and then the dog tried to fix the castle,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,the rabbit and the dog went (F) : for a picnic.,the rabbit and the dog went for a picnic,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and then : the rabbit (i) is eat/ing (his) her lunch.,and then the rabbit is eating her lunch,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and the dog (is) (is) is eat/ing his[!] lunch.,and the dog is eating his lunch,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,(and) and : because the rabbit have|have[EW:has] too much lunch now rabbit have|have[EW:has] a tummyache.,and because the rabbit have too much lunch now rabbit have a tummyache,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,but the dog do|do[EW:does] not.,but the dog do not,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and the dog (only ha) only have|have[EW:has] : some[!] lunch.,and the dog only have some lunch,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and the dog say/3s huh?,and the dog says huh,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,the rabbit (is) have|have[EW:has] a tummyache : (and now) : because the dog : did not eat too much.,the rabbit have a tummyache because the dog did not eat too much,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,only the rabbit did.,only the rabbit did,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and the dog said mama!,and the dog said mama,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and mommy [EU].,and mommy,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,but the rabbit/z mommy[~!_laughs] [EU].,but the rabbit's mommy,0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and he said this : hey mommy.,and he said this hey mommy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,here is a dog [~_laughing].,here is a dog,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,he said huh?,he said huh,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,that is not my children[EW:child].,that is not my children,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and (she said) she said : I do not know rabbit.,and she said I do not know rabbit,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,I am a doctor!,I am a doctor,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,(and now : the rabbit has gone) and the rabbit go|go[EW:goes] home except the dog.,and the rabbit go home except the dog,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,the dog has (a) a dragon.,the dog has a dragon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and the balloon is hold[EW:holding] up the dragon.,and the balloon is hold up the dragon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and then the rabbit came : with him.,and then the rabbit came with him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,(and then) and then the rabbit found the balloon.,and then the rabbit found the balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and then the rabbit *is go/ing to take it off [EU].,and then the rabbit going to take it off,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,(and) (and) and the rabbit : take|take[EW:took] it off.,and the rabbit take it off,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,(and) and it float|float[EW:floated] up to the sky.,and it float up to the sky,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and the rabbit and the dog try|try[EW:tried] to catch it.,and the rabbit and the dog try to catch it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and now the dog is mad.,and now the dog is mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,(and it) and the rabbit was scare/ed.,and the rabbit was scared,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,(and then) and then the rabbit and the dog bought some more[!] balloon/s.,and then the rabbit and the dog bought some more balloons,0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and the rabbit said how much *does that[!] cost [EU]?,and the rabbit said how much that cost,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,it cost|cost[EW:costs] five cent/s.,it cost five cents,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,but the rabbit had no money.,but the rabbit had no money,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and the rabbit and the dog said no money?,and the rabbit and the dog said no money,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,aw [~_disappointed_sound].,aw,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,xxx : a balloon.,a balloon,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,then they said mommy come here!,then they said mommy come here,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,can you buy us a balloon?,can you buy us a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,(and sh) and the mommy said which balloon/s?,and the mommy said which balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,the[!] balloon/s.,the balloons,0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and then the mom buy|buy[EW:bought] the balloons.,and then the mom buy the balloons,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,call/ed[?] a nickel [EU].,called a nickel,4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and (then) then they had the balloon/s.,and then they had the balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,then (the) (the) (the cat and) [~_no] (the) the bunny and the dog is[EW:are] happy.,then the bunny and the dog is happy,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,One day a giraffe meet/3s an elephant play/ing : with a ball.,One day a giraffe meets an elephant playing with a ball,0 0 0 0 3 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,then the ball fell into a little pool.,then the ball fell into a little pool,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the giraffe go/3s into the pool to go swim to the ball to get it.,the giraffe goes into the pool to go swim to the ball to get it,0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the giraffe : got the ball and gave it to the elephant.,the giraffe got the ball and gave it to the elephant,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the elephant is so happy to have the ball back.,the elephant is so happy to have the ball back,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the giraffe get/3s up on shore.,the giraffe gets up on shore,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,One day an elephant and a giraffe : (fou) found a pool.,One day an elephant and a giraffe found a pool,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the elephant decide/ed to go down the ladder.,the elephant decided to go down the ladder,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,(it walks but) : it run/3s.,it runs,0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,but it (f) was trip/ing.,but it was tripping,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,it hurt/3s it/z knee.,it hurts it's knee,0 3 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the giraffe come/3s run/ing.,the giraffe comes running,0 0 3 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,an elephant lifeguard came to the elephant and the giraffe.,an elephant lifeguard came to the elephant and the giraffe,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,it help/ed : the elephant.,it helped the elephant,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,it gave the elephant a bandage and let it sit on a bench.,it gave the elephant a bandage and let it sit on a bench,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the elephant lifeguard told : the elephant no run/ing.,the elephant lifeguard told the elephant no running,0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,one day the elephant and the giraffe saw a pool.,one day the elephant and the giraffe saw a pool,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,then the giraffe saw an airplane zoom/ing by.,then the giraffe saw an airplane zooming by,0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the elephant grab/3s the : airplane : from the giraffe.,the elephant grabs the airplane from the giraffe,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,then the airplane sink/3s in the pool.,then the airplane sinks in the pool,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the giraffe is mad at the elephant.,the giraffe is mad at the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the elephant lifeguard come/3s.,the elephant lifeguard comes,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the elephant told : the lifeguard what happen/ed.,the elephant told the lifeguard what happened,0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the lifeguard try/3s to get the : airplane.,the lifeguard tries to get the airplane,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,he can not get it.,he can not get it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the giraffe is cry/ing.,the giraffe is crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,and the elephant is sorry.,and the elephant is sorry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,then another elephant came along with a fish/ing net.,then another elephant came along with a fishing net,0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,she scoop/3s the airplane out with the fish/ing net.,she scoops the airplane out with the fishing net,0 3 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,she give/3s : the airplane to the giraffe.,she gives the airplane to the giraffe,0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the giraffe and the elephant is[EW:are] happy.,the giraffe and the elephant is happy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,Once there was a rabbit.,Once there was a rabbit,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,and it meet/3s: a little animal.,and it meets a little animal,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,they both try to make a sandcastle together.,they both try to make a sandcastle together,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the rabbit pour/3s sand on the sandcastle.,the rabbit pours sand on the sandcastle,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the sandcastle go/3s down.,the sandcastle goes down,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the rabbit : feel/3s sorry for the other animal.,the rabbit feels sorry for the other animal,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,Once there was a rabbit.,Once there was a rabbit,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,and it meet/3s an animal.,and it meets an animal,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,and they both want to [~_wanna] go on a picnic.,and they both want to go on a picnic,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,they together have a picnic at the same place.,they together have a picnic at the same place,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the rabbit eat/3s a lot of thing/s.,the rabbit eats a lot of things,0 0 3 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,and he is stuff/ed.,and he is stuffed,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,then he feel/3s dizzy and sleepy.,then he feels dizzy and sleepy,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the other animal tell/3s : the rabbit/z mom.,the other animal tells the rabbit's mom,0 0 0 3 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,it tell/3s her to come : to the rabbit.,it tells her to come to the rabbit,0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the other rabbit wake/3s up the little rabbit.,the other rabbit wakes up the little rabbit,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,and they : go home.,and they go home,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,one day the rabbit saw : an animal pull/ing it/z wagon with a balloon.,one day the rabbit saw an animal pulling it's wagon with a balloon,0 0 0 0 0 0 0 6 2 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the rabbit (s) : is watch/ing the balloon.,the rabbit is watching the balloon,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the rabbit try/3s to untie the balloon off the wagon.,the rabbit tries to untie the balloon off the wagon,0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,(but it) after it goes (uh) up in the air.,after it goes up in the air,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the other animal is mad at the rabbit.,the other animal is mad at the rabbit,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,then there is someone that is sell/ing balloon/s.,then there is someone that is selling balloons,0 0 0 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,and the rabbit is ask/ing for some balloon/s.,and the rabbit is asking for some balloons,0 0 0 0 6 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,he is look/ing in his pocket for money.,he is looking in his pocket for money,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,but he do/3s not have enough money.,but he does not have enough money,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,(so i) and he see/3s his mom.,and he sees his mom,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,so he go/3s over to his mom.,so he goes over to his mom,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,he ask/3s for some money to buy the balloon/s.,he asks for some money to buy the balloons,0 3 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the mom gaves|give[EW:gives] : the : man some money to buy two balloon/s.,the mom gaves the man some money to buy two balloons,0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,(they have two) now the rabbit and the other (ha) animal has|have[EW:have] two balloon/s.,now the rabbit and the other animal has two balloons,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(one :) one day (um) : a little : giraffe and (um) : elephant they were play/ing with three ball/s.,one day a little giraffe and elephant they were playing with three balls,0 0 0 0 0 0 0 0 0 6 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and (they were g) they were go/ing to go in the swimming pool.,and they were going to go in the swimming pool,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,so they got to the swimming pool : with ticket/s.,so they got to the swimming pool with tickets,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and (then they sawl a ba) they saw their ball in the swimming pool.,and they saw their ball in the swimming pool,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,so they got it.,so they got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then : (the gira) the giraffe try/ed to : come and get the (balloon um) balloon that they had.,and then the giraffe tried to come and get the balloon that they had,0 0 0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,so (they) he got it.,so he got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and (then they) then they got their ball and their balloon.,and then they got their ball and their balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then they went and play/ed with them.,and then they went and played with them,0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and so the : elephant said thank you.,and so the elephant said thank you,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then the giraffe said you are welcome.,and then the giraffe said you are welcome,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and they play/ed together (with their um) with their balloon.,and they played together with their balloon,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,one day (um they :) the giraffe and elephant want/ed to go swim/ing.,one day the giraffe and elephant wanted to go swimming,0 0 0 0 0 0 4 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then : the giraffe ran.,and then the giraffe ran,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(and he) and he[EW:she] ran in the swimming pool with her bathing suit on.,and he ran in the swimming pool with her bathing suit on,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and (then she) then she hurt herself on the knee.,and then she hurt herself on the knee,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,is that on this picture?,is that on this picture,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(um) (uh) yeah [+_bch].,yeah,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,can you just tell me the story that is on the picture?,can you just tell me the story that is on the picture,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and you tell me to turn if I am not turn/ing it fast enough.,and you tell me to turn if I am not turning it fast enough,0 0 0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then she slip/ed because there was water when she was run/ing.,and then she slipped because there was water when she was running,0 0 0 4 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(and then) : and then she hurt herself.,and then she hurt herself,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,so the lifeguard came and got her a bandage for her knee.,so the lifeguard came and got her a bandage for her knee,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(and then they) so then they (um) went to swim again.,so then they went to swim again,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and she was all better.,and she was all better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(so) but first she had to sit on the bench a little bit.,but first she had to sit on the bench a little bit,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then she was okay.,and then she was okay,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and the lifeguard said (no run) can not you see the sign.,and the lifeguard said can not you see the sign,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,there is no run/ing here.,there is no running here,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(one day there is a) one day there was : a giraffe and a[EW:an] (um) elephant.,one day there was a giraffe and a elephant,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,the giraffe had a[EW:an] : airplane.,the giraffe had a airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and he was play/ing with it.,and he was playing with it,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(and then he : al) and then the elephant want/ed to play with it.,and then the elephant wanted to play with it,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(so he na) so (um) he did.,so he did,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,but then she took it away from the giraffe.,but then she took it away from the giraffe,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then she drop/ed it in the water.,and then she dropped it in the water,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,is that on this page?,is that on this page,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,or was that on the next page?,or was that on the next page,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,"it was on that page, oh okay.",it was on that page oh okay,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,so then it sank in.,so then it sank in,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and (then the life) then the lifeguard got mad.,and then the lifeguard got mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,so then : the giraffe [+/]^,so then the giraffe,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,tell me : should I be turn/ing yet?,tell me should I be turning yet,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,[~_yeah] then the giraffe got mad at the elephant.,then the giraffe got mad at the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and she said she was sorry.,and she said she was sorry,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,so she got her mom to catch the lifeguard.,so she got her mom to catch the lifeguard,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,is that what is on this page?,is that what is on this page,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,so the lifeguard could not reach it.,so the lifeguard could not reach it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,so she got her mom to reach it : with a net.,so she got her mom to reach it with a net,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then the lifeguard (she) he came back to say sorry to the elephant because (he) he got mad at the elephant.,and then the lifeguard he came back to say sorry to the elephant because he got mad at the elephant,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then : her mom : catched|catch[EW:caught] it with (um) the thing.,and then her mom catched it with the thing,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then the lifeguard he try/ed to get it again.,and then the lifeguard he tried to get it again,0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,but her mom could not.,but her mom could not,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and the lifeguard could not.,and the lifeguard could not,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,so she got a big big net.,so she got a big big net,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and she catched|catch[EW:caught] it.,and she catched it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,is that on this page?,is that on this page,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,yeah.,yeah,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,remember I can not see so I just want you to tell the story that is on the page.,remember I can not see so I just want you to tell the story that is on the page,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(and then all the lifeguard/s) and then : the mom had a real long net.,and then the mom had a real long net,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,so she grab/ed it.,so she grabbed it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and she catched|catch[EW:caught] it.,and she catched it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and the giraffe said thank you.,and the giraffe said thank you,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then she said you are welcome.,and then she said you are welcome,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then (the) they were both happy again.,and then they were both happy again,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and they play/ed with it.,and they played with it,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,one day (a lit) a bunny rabbit went to the beach.,one day a bunny rabbit went to the beach,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(and she saw a p) and he saw a puppy.,and he saw a puppy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and she was make/ing a sandcastle.,and she was making a sandcastle,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then the bunny said can I help?,and then the bunny said can I help,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and the puppy said okay.,and the puppy said okay,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,then they build|build[EW:built] a sandcastle.,then they build a sandcastle,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and the bunny got a bucket.,and the bunny got a bucket,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(and she) and then he got a shovel.,and then he got a shovel,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(and he put it) and he put sand in the bucket to make a sandcastle.,and he put sand in the bucket to make a sandcastle,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(and the) and the puppy was make/ing (the sss um) a water hole.,and the puppy was making a water hole,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(and then the) and then the rabbit wreck/ed it because he put (all of :) all of sand on it.,and then the rabbit wrecked it because he put all of sand on it,0 0 0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and it push/ed it down.,and it pushed it down,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and the (w) puppy was very sad.,and the puppy was very sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(and then the) and the puppy try/ed to build it again.,and the puppy tried to build it again,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,but it did not work.,but it did not work,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and the rabbit (was just) he did not say sorry or anything.,and the rabbit he did not say sorry or anything,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,one day : the puppy and the rabbit came for a picnic in a forest.,one day the puppy and the rabbit came for a picnic in a forest,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then (uh) the rabbit ate too much.,and then the rabbit ate too much,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and he got sick and was too full.,and he got sick and was too full,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(so the) so the : puppy dog went to get some help.,so the puppy dog went to get some help,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(and then she) but she did not find anyone yet (until he s) until she saw that the rabbit was sick.,but she did not find anyone yet until she saw that the rabbit was sick,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(and) (and then she got a nur) she got a doctor that was walk/ing by.,she got a doctor that was walking by,0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then she took the rabbit : (and) and took the stomach away : ache.,and then she took the rabbit and took the stomach away ache,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then (: the bunny and the r um) bunny was still sick.,and then bunny was still sick,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,so : the puppy (he um) she pull/ed on the doctor.,so the puppy she pulled on the doctor,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then the doctor went on the picnic thing.,and then the doctor went on the picnic thing,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(and the s) and he was really sick.,and he was really sick,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,so the puppy went away : because the doctor said : he need/3s to be alone for a while.,so the puppy went away because the doctor said he needs to be alone for a while,0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and the end [+_bch].,and the end,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,"oh just a second I miss/ed one, did not I?",oh just a second I missed one did not I,0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,yeah and the [+/]^,yeah and the,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,it was after he need/3s to be alone for a while and then [+..].,it was after he needs to be alone for a while and then,0 0 0 0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then (um) : the puppy came back.,and then the puppy came back,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and he was all better.,and he was all better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,but he had to go lie in bed.,but he had to go lie in bed,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(one day the bunny went) (he) (he) one day the bunny went to the forest.,one day the bunny went to the forest,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(and he) and on the way there he saw a puppy.,and on the way there he saw a puppy,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(and then they) and then they saw a clown with balloon/s.,and then they saw a clown with balloons,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and so they : ask/ed bunny/z mom if they could have some money for a balloon.,and so they asked bunny's mom if they could have some money for a balloon,0 0 0 4 2 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and she said yes.,and she said yes,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,so then they got a : balloon.,so then they got a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(and then they) (then their balloon uh) there was a balloon tie/ed onto puppy/z wagon.,there was a balloon tied onto puppy's wagon,0 0 0 0 4 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and (it fell away) it flew away.,and it flew away,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,so then (um) [+..].,so then,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,tell me when to turn.,tell me when to turn,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(and then it [~_please_turn_now_(whispered)] and then it went) and it disappear/ed up in the air.,and it disappeared up in the air,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and puppy was mad (at) at bunny.,and puppy was mad at bunny,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(and then) and then they saw (a clown) (a bunny with balloon/s) a clown bunny with balloon/s.,and then they saw a clown bunny with balloons,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(so they ask/ed bunny) so they ask/ed bunny/z mom if they could have some money.,so they asked bunny's mom if they could have some money,0 0 4 2 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then they bought a balloon with their money.,and then they bought a balloon with their money,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and puppy was very happy.,and puppy was very happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and they both got two balloon/s.,and they both got two balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then puppy ran over there to get a balloon.,and then puppy ran over there to get a balloon,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,but bunny had no money.,but bunny had no money,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,so : she had to go to : (um) the mom to get his money.,so she had to go to the mom to get his money,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then after that : they got some money.,and then after that they got some money,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and they gave it to the clown bunny.,and they gave it to the clown bunny,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then they got two balloon/s : one yellow and one red.,and then they got two balloons one yellow and one red,0 0 0 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(and then) but first they had to get the money from the doctor (that fix/ed) that help/ed bunny.,but first they had to get the money from the doctor that helped bunny,0 0 0 0 0 0 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then so they got two balloon/s (ye) yellow and blue.,and then so they got two balloons yellow and blue,0 0 0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,"and then they got one for the doctor, red.",and then they got one for the doctor red,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then : [~_whispers] I do not know [+_bch].,and then I do not know,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,you are not sure on this one?,you are not sure on this one,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,nothing to say on this one?,nothing to say on this one,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,"okay, we will just turn then.",okay we will just turn then,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then they bought the balloon/s.,and then they bought the balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(and then they) and then they got two balloon/s.,and then they got two balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then they were happy.,and then they were happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and they play/ed with them.,and they played with them,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then they play/ed with them and play/ed.,and then they played with them and played,0 0 0 4 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,once there was a giraffe : who was stand/ing by a pool.,once there was a giraffe who was standing by a pool,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and a[EW:an] elephant (said) : came : with : a swimsuit[!] on : and said you want to play fetch?,and a elephant came with a swimsuit on and said you want to play fetch,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,but[-:][!] : they were not so sure about play/ing near the pool.,but they were not so sure about playing near the pool,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,just then when the elephant : blew it with her trunk : it fell in the pool.,just then when the elephant blew it with her trunk it fell in the pool,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the giraffe : jump/ed[!] in : and swam[-:][!] to get (the balloon[-:]) [~_I_mean] the ball.,the giraffe jumped in and swam to get the ball,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the giraffe[!] : came back with it : in a minute.,the giraffe came back with it in a minute,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,(and said) : (and the gira) [~_I_mean] and the elephant said : oh (you) : you got my (balloon) [~_I_mean] ball!,and the elephant said oh you got my ball,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,thank you!,thank you,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,sometime/3s I get mixed up with the word/s [+_bch].,sometimes I get mixed up with the words,3 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the giraffe[-:] : felt please/ed (that : he) that he got the ball[-:][-:] (for the) : for her friend.,the giraffe felt pleased that he got the ball for her friend,0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,but the elephant[!] (just sta) just stood there and smile/ed.,but the elephant just stood there and smiled,0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the giraffe[!] and the elephant went to the pool[-:] because it was a hot[!] summer day.,the giraffe and the elephant went to the pool because it was a hot summer day,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,(they were) they look/ed at the pool.,they looked at the pool,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and they were excite/ed.,and they were excited,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,but[!] the elephant said hey I am go/ing to go off the diving board!,but the elephant said hey I am going to go off the diving board,0 0 0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,but she did not read the sign : which said no run/ing.,but she did not read the sign which said no running,0 0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,so[-:][!] she ran anyway.,so she ran anyway,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,just[!] then : (the el) the giraffe was catch/ing up with her when she slip/ed[!] : and fell on her knee.,just then the giraffe was catching up with her when she slipped and fell on her knee,0 0 0 0 0 6 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,she got[!] : a cut on her knee.,she got a cut on her knee,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and the giraffe[-:][!] went to get someone.,and the giraffe went to get someone,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,a lifeguard[!] : came : as quickly as possible : and help/ed the elephant[!].,a lifeguard came as quickly as possible and helped the elephant,0 0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the elephant thought it was go/ing to [~_gonna] sting.,the elephant thought it was going to sting,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,but : it did not.,but it did not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,(they) they put on the bandage.,they put on the bandage,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,(and it was) and it look/ed good as new.,and it looked good as new,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the lifeguard was disappoint/ed.,the lifeguard was disappointed,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and the girl : (stood) sat on the bench and said [~_heh_heh] hi?,and the girl sat on the bench and said hi,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and the lifeguard was point/ing at the no run/ing[!] sign.,and the lifeguard was pointing at the no running sign,0 0 0 0 6 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the giraffe and the elephant went to play by the pool.,the giraffe and the elephant went to play by the pool,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and the giraffe[!] : got a new toy plane and said you want to [~__wanna] play with me?,and the giraffe got a new toy plane and said you want to play with me,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the elephant said sure!,the elephant said sure,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the giraffe flew the plane first.,the giraffe flew the plane first,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,but the elephant was so excit/ed : she just grab/ed it out of her hands.,but the elephant was so excited she just grabbed it out of her hands,0 0 0 0 0 4 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the giraffe said my plane give it back!,the giraffe said my plane give it back,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,I was not done my turn!,I was not done my turn,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,but the elephant did not care.,but the elephant did not care,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,she was just fly/ing[!] it around.,she was just flying it around,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,just[!] then she : flew it : too[!] high.,just then she flew it too high,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and : it fell in the pool.,and it fell in the pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and it start/ed to sink.,and it started to sink,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the giraffe was mad at the elephant.,the giraffe was mad at the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,but the elephant just stood there puzzle/ed[-:].,but the elephant just stood there puzzled,0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the lifeguard[!] came : right by the two girl/s.,the lifeguard came right by the two girls,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and (one of the girl/s[-:] said) [~_I_mean] : one of the elephant/s said I can explain[-:] .,and one of the elephants said I can explain,0 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,(I) I did not do it!,I did not do it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,it was the giraffe[-:]!,it was the giraffe,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,just then (g) (g) the giraffe said : she is lie/ing!,just then the giraffe said she is lying,0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,it was her!,it was her,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,then (it came) : like it was a big argument[-:].,then like it was a big argument,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,so the lifeguard said cool it.,so the lifeguard said cool it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,who drop/ed it in the pool?,who dropped it in the pool,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and the giraffe was point/ing at the elephant.,and the giraffe was pointing at the elephant,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the lifeguard try/ed to (get) catch it.,the lifeguard tried to catch it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,but it was float/ing : in the pool.,but it was floating in the pool,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the giraffe[-:] start/ed to cry : when the lifeguard said he could not reach it.,the giraffe started to cry when the lifeguard said he could not reach it,0 0 4 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and the : elephant felt sorry.,and the elephant felt sorry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,just[-:][!] then a lady[!] elephant came with a net[-:].,just then a lady elephant came with a net,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,she : quickly got the plane : with the net.,she quickly got the plane with the net,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,(and : it came) : and she pull/ed it : (f) : to her[!].,and she pulled it to her,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,she said here you go!,she said here you go,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,is this your airplane?,is this your airplane,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and the giraffe said yes : thank you very much!,and the giraffe said yes thank you very much,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the giraffe hug/ed[!] her plane.,the giraffe hugged her plane,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,but the elephant : was happy.,but the elephant was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,one day at the park : there was : a baby dog : who was make/ing a sandcastle.,one day at the park there was a baby dog who was making a sandcastle,0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,just then a bunny : came along and said : can I help you?,just then a bunny came along and said can I help you,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the dog said sure.,the dog said sure,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,they want/ed to help build (a) the biggest sandcastle in the world!,they wanted to help build the biggest sandcastle in the world,0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,so the rabbit[!] was go/ing to build it.,so the rabbit was going to build it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,so he got some sand in a pail and start/ed dig/ing.,so he got some sand in a pail and started digging,0 0 0 0 0 0 0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,just[!] then : he decid/ed that a shovel was not so slow after all.,just then he decided that a shovel was not so slow after all,0 0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,so he decide/ed to dump it on the : castle.,so he decided to dump it on the castle,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,so he did.,so he did,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,but : when he realize/ed he had wreck/ed it : he was so[-:][!] embarrass/ed.,but when he realized he had wrecked it he was so embarrassed,0 0 0 4 0 0 4 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the dog[-:] start/ed to cry : and rebuild the sandcastle.,the dog started to cry and rebuild the sandcastle,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,but the rabbit just stood there : and look/ed like he did nothing.,but the rabbit just stood there and looked like he did nothing,0 0 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,(there) : there once was a dog who was go/ing on a picnic in the : park.,there once was a dog who was going on a picnic in the park,0 0 0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and then he saw a rabbit.,and then he saw a rabbit,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,so (he) they decide/ed to go together.,so they decided to go together,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,(when the om) when they unpack/ed the lunch : the rabbit was so[!] hungry.,when they unpacked the lunch the rabbit was so hungry,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,(s) the rabbit was so[!] hungry.,the rabbit was so hungry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,but the dog was not.,but the dog was not,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,so the rabbit ate all[-:] the stuff.,so the rabbit ate all the stuff,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,when the dog[!] was eat/ing : the bunny had already finish/ed.,when the dog was eating the bunny had already finished,0 0 0 0 6 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the bunny[-:] : had a terrible[-:][!] stomachache while the dog was eat/ing.,the bunny had a terrible stomachache while the dog was eating,0 0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the dog just stood there puzzle/ed and said are you okay?,the dog just stood there puzzled and said are you okay,0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and the rabbit said no I feel like I am go/ing to[:_gonna] hurl[-:]!,and the rabbit said no I feel like I am going to hurl,0 0 0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,just then the dog : ran : to the (doc) : doctor who was stand/ing[!] right by the path.,just then the dog ran to the doctor who was standing right by the path,0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,she said excuse me could you help my friend[-:] here?,she said excuse me could you help my friend here,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,he has a stomachache!,he has a stomachache,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,(so) but the doctor said no.,but the doctor said no,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,she had : a patient who was wait/ing[!] for her.,she had a patient who was waiting for her,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,but the : dog[-:] : really need/ed her.,but the dog really needed her,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,so she : took the doctor and drag/ed them[EW:him] to the : picnic.,so she took the doctor and dragged them to the picnic,0 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the doctor said : I will take your temperature now.,the doctor said I will take your temperature now,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and you will feel much better.,and you will feel much better,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,just then the bunny (f) got up.,just then the bunny got up,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and he felt queasy[-:].,and he felt queasy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,then the doctor and the bunny : went : home.,then the doctor and the bunny went home,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,they walk/ed together : back home.,they walked together back home,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,there once was a dog : who was pull/ing a wagon with a balloon tie/ed to it.,there once was a dog who was pulling a wagon with a balloon tied to it,0 0 0 0 0 0 0 6 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,then he saw the bunny.,then he saw the bunny,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,then they want/ed to play with the balloon.,then they wanted to play with the balloon,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the bunny want/ed to : touch[!] the balloon : because : he thought it was : cool.,the bunny wanted to touch the balloon because he thought it was cool,0 0 4 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,but the dog[-:] did not : really want him to.,but the dog did not really want him to,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,so (the rabbit) : just then the rabbit : did not care[-:] about what the dog said.,so just then the rabbit did not care about what the dog said,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,so : the rabbit : untie/ed the balloon.,so the rabbit untied the balloon,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and the dog (was ss) (was a lit) was begin/ing to get a little[!] fed up.,and the dog was beginning to get a little fed up,0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,just then the balloon float/ed away.,just then the balloon floated away,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and they were try/ing[!] to catch it.,and they were trying to catch it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,but they were too short.,but they were too short,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the dog was so[-:][!] angry at the rabbit.,the dog was so angry at the rabbit,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the rabbit just : stare/ed at the balloon.,the rabbit just stared at the balloon,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and he[-:] felt like : he was get/ing a little scare/ed : because the dog was mad.,and he felt like he was getting a little scared because the dog was mad,0 0 0 0 0 0 6 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,just then they saw a balloon[!] seller : who had : ton/s[!] of balloon/s.,just then they saw a balloon seller who had tons of balloons,0 0 0 0 0 0 0 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and he just stood there.,and he just stood there,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,so : the dog and the rabbit decide/ed to go buy a new one.,so the dog and the rabbit decided to go buy a new one,0 0 0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the rabbit said may I have a balloon : please[!] for my friend over there?,the rabbit said may I have a balloon please for my friend over there,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the man said sure[-:] but : you will have to pay (for that) : for the balloon.,the man said sure but you will have to pay for the balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the rabbit look/ed through his pocket/s.,the rabbit looked through his pockets,0 0 4 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,just then : (it said) : a sign said : balloon/s five cent/s.,just then a sign said balloons five cents,0 0 0 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and he did not have[!] five cent/s.,and he did not have five cents,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,(he and the ra) the rabbit : and the : dog[-:] look/ed at the balloon seller.,the rabbit and the dog looked at the balloon seller,0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,they told him that they did not have[!] five cent/s.,they told him that they did not have five cents,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,just then : the bunny (went to the[-:]) : went to a lady who was stand/ing nearby.,just then the bunny went to a lady who was standing nearby,0 0 0 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and he said excuse me do you have five cent/s because I need to buy a balloon for : a friend.,and he said excuse me do you have five cents because I need to buy a balloon for a friend,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the rabbit[-:][!] : look/ed puzzle/ed.,the rabbit looked puzzled,0 0 4 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the lady rabbit : gave five[!] cent/s : for two balloon/s.,the lady rabbit gave five cents for two balloons,0 0 0 0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and : the bunny and the dog were jump/ing up and down : in excitement.,and the bunny and the dog were jumping up and down in excitement,0 0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,then : they both[!] got balloon/s.,then they both got balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,(and they hug/ed) and they loved them real[EW:very] [-:] much.,and they loved them real much,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,(this is) this story is call/ed[-:] : the ball [~_title].,this story is called the ball,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,one day : this little girl was play/ing with a ball[!].,one day this little girl was playing with a ball,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and a lifeguard : was play/ing with it too.,and a lifeguard was playing with it too,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and so when she was play/ing with the ball : she accidentally drop/ed it in the pool.,and so when she was playing with the ball she accidentally dropped it in the pool,0 0 0 0 0 6 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and then : the lifeguard went in the water and : swam (and got the balloon) and got the ball.,and then the lifeguard went in the water and swam and got the ball,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and when : he did : she was so[-:][!] happy.,and when he did she was so happy,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and then : (she um) : she ask/ed him if he want/3s to play with her again.,and then she asked him if he wants to play with her again,0 0 0 4 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,this story is call/ed the scratch.,this story is called the scratch,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,one[!] day : a little girl was go/ing swim/ing.,one day a little girl was going swimming,0 0 0 0 0 0 6 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and she was run/ing to the board.,and she was running to the board,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and when she did she slip/ed.,and when she did she slipped,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,(and : she) and when she slip/ed she : got a cut on her knee.,and when she slipped she got a cut on her knee,0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,(and then the lifegua) and then another lifeguard came run/ing and : said are you okay?,and then another lifeguard came running and said are you okay,0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and then he put a bandaid on.,and then he put a bandaid on,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and then he put (him on) put her on the bench.,and then he put put her on the bench,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and (she would not be able) she was not able to swim.,and she was not able to swim,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,but then the lifeguard was really mad because : (he) she should have seen (the) the sign no run/ing.,but then the lifeguard was really mad because she should have seen the sign no running,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,this story is call/ed the airplane.,this story is called the airplane,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,one day this little boy and this little girl were play/ing with an (air) airplane.,one day this little boy and this little girl were playing with an airplane,0 0 0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,the girl ask/ed can I play with it now !,the girl asked can I play with it now,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and he said okay.,and he said okay,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,(and then it) and then she accidentally drop/ed it in the water.,and then she accidentally dropped it in the water,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,when she did : the little boy got all[-:] mad.,when she did the little boy got all mad,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and then she went up to the lifeguard : and ask/ed the lifeguard if he could get the airplane.,and then she went up to the lifeguard and asked the lifeguard if he could get the airplane,0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and when he said okay I will try : he try/ed.,and when he said okay I will try he tried,0 0 0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,but he could not reach it.,but he could not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,(and then he) and then the little boy was cry/ing.,and then the little boy was crying,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,but then the girl lifeguard came.,but then the girl lifeguard came,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and[-:] : she got a net.,and she got a net,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,then she try/ed to get it.,then she tried to get it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and she did.,and she did,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and then the little boy was so happy.,and then the little boy was so happy,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and then : the little girl said I am sorry (for) : for wreck/ing your toy.,and then the little girl said I am sorry for wrecking your toy,0 0 0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,this story is call/ed : (um) the castle that break/3s.,this story is called the castle that breaks,0 0 0 4 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,one day (there is) there is a little girl and a little boy who is[EW:are] play/ing in the sand.,one day there is a little girl and a little boy who is playing in the sand,0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and the little girl : builded|build[EW:built] a castle.,and the little girl builded a castle,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and : the little boy : dump/ed : a bucket.,and the little boy dumped a bucket,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,he did not mean to dump the bucket (oh) on the castle.,he did not mean to dump the bucket on the castle,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and then when he did : the girl got all (mad) [~_I_mean] sad.,and then when he did the girl got all sad,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and she was cry/ing.,and she was crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and : the bunny said sorry.,and the bunny said sorry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,this story is call/ed : the picnic.,this story is called the picnic,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,one day (a little) (a doggy and) : a dog and a rabbit (was eat/ing) was[EW:were] have/ing a picnic [~_okay].,one day a dog and a rabbit was having a picnic,0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and the rabbit ate too much.,and the rabbit ate too much,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,so he got sick.,so he got sick,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and then the poochy ran over to : a doctor : near by.,and then the poochy ran over to a doctor near by,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,the pooch said help help.,the pooch said help help,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,a little boy is sick!,a little boy is sick,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,so the doctor : check/ed the boy and said (he was si) he had to go home.,so the doctor checked the boy and said he had to go home,0 0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and then he felt better.,and then he felt better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,this story is call/ed : the puppy who had two balloon/s.,this story is called the puppy who had two balloons,0 0 0 4 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,one day[-:] (a pup) (his uh) somebody/z friend came over : to check his balloon out.,one day somebody's friend came over to check his balloon out,0 0 2 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and when he did he tie/ed the rope off : (the) : the wagon.,and when he did he tied the rope off the wagon,0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and when he did the (ba) balloon got away.,and when he did the balloon got away,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and then the puppy is all[!] mad.,and then the puppy is all mad,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and then the rabbit saw some more balloon/s.,and then the rabbit saw some more balloons,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and he ask/ed (some) for a balloon.,and he asked for a balloon,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,but the guy said : balloon/s are five cent/s.,but the guy said balloons are five cents,0 0 0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and : the bunny did not have any money.,and the bunny did not have any money,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,(so) so the bunny said (um) well : I accidentally : lost (one that) my friend/z balloon.,so the bunny said well I accidentally lost my friend's balloon,0 0 0 0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,(and so he) and then the : balloon man said no you still need to pay five cent/s.,and then the balloon man said no you still need to pay five cents,0 0 0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,so then the bunny went over to an adult[!] to ask for five cent/s.,so then the bunny went over to an adult to ask for five cents,0 0 0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and when he did ask : she said okay.,and when he did ask she said okay,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and then she paid him five cent/s.,and then she paid him five cents,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and then : (the : boy) the girl got (his) (her balloon) (a) another balloon back.,and then the girl got another balloon back,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and then she was all happy.,and then she was all happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,once upon a time : there was : a giraffe and a[EW:an] elephant play/ing : around the pool.,once upon a time there was a giraffe and a elephant playing around the pool,0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,(and one of) they were play/ing with a ball.,they were playing with a ball,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and (it f) : it fell : in the water.,and it fell in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and the giraffe : swam to (the balloon) : the ball.,and the giraffe swam to the ball,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and then : he[-:] swam back : to : the elephant : and gave it back to her.,and then he swam back to the elephant and gave it back to her,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and she was : very[!] : happy : that he got it : for the elephant.,and she was very happy that he got it for the elephant,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,once upon a time : there was : a giraffe and a[EW:an] elephant : around the pool.,once upon a time there was a giraffe and a elephant around the pool,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and the elephant (want/ed to jump : off the j) : (the) : (the tr : um) : (the : um) : want/ed to jump : in the pool.,and the elephant wanted to jump in the pool,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and (sh) when she was run/ing : to it : she slip/ed.,and when she was running to it she slipped,0 0 0 0 6 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and she fell.,and she fell,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,she got (a scra) : a scratch on her : knee.,she got a scratch on her knee,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and[-:] the giraffe : ran to : the[-:] lifeguard.,and the giraffe ran to the lifeguard,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and : he got a bandaid.,and he got a bandaid,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and : (they) : (they) : he put it on : her knee.,and he put it on her knee,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,(and) : and he sent : her to (the) : the bench.,and he sent her to the bench,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,(and) and he show|show[EW:showed] [-:] her : no run/ing : sign.,and he show her no running sign,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,(one[-:]) there was[EW:were] two friend/s : an elephant and a giraffe.,there was two friends an elephant and a giraffe,0 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,the giraffe had a toy : that it was a airplane.,the giraffe had a toy that it was a airplane,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,he was play/ing around with it.,he was playing around with it,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and : a[EW:an] elephant want/ed to play with it : too.,and a elephant wanted to play with it too,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and elephant took[!] it from the giraffe : and (p) play/ed around with it.,and elephant took it from the giraffe and played around with it,0 0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and she drop/ed it into the pool.,and she dropped it into the pool,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and (she) : she was very sad.,and she was very sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and the giraffe was very angry at her.,and the giraffe was very angry at her,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,the lifeguard : (ran uh) came to : the elephant and the giraffe.,the lifeguard came to the elephant and the giraffe,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and : (the) (the el) (the[-:] : lifeguard) : [~_no] the elephant : said that : (I) by accident I : threw : the giraffe/z airplane inside : the water.,and the elephant said that by accident I threw the giraffe's airplane inside the water,0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and[-:] the lifeguard was try/ing to get it.,and the lifeguard was trying to get it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,but it was too far.,but it was too far,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and he said : I can not do anything.,and he said I can not do anything,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and the giraffe : start/ed to cry.,and the giraffe started to cry,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,a net : catcher : came to : the hopeless : giraffe.,a net catcher came to the hopeless giraffe,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and : she had a net in her hand.,and she had a net in her hand,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and she : got : the airplane by her net.,and she got the airplane by her net,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and the giraffe : stop/ed cry/ing.,and the giraffe stopped crying,0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and the lady : gave it to the giraffe.,and the lady gave it to the giraffe,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and (he is very) he was very happy.,and he was very happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,once upon a time : there was a little dog : that : made a castle.,once upon a time there was a little dog that made a castle,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and : (a) a rabbit : he came : (a) along : and want/ed to help him.,and a rabbit he came along and wanted to help him,0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and then : (he) (he dump) he dump/ed some sand inside : a bucket.,and then he dumped some sand inside a bucket,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,(and : the) : and he scoop/ed some up.,and he scooped some up,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and then he dump/ed it (on there) on the castle.,and then he dumped it on the castle,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,(and then) and it got cover/ed.,and it got covered,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,(and) : and then : (it really : did not do) it (was) : was a cloud : of : sand.,and then it was a cloud of sand,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and the dog[-:] was build/ing it again.,and the dog was building it again,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,there was[EW:were] : two friend/s : that : were : walk/ing along for a picnic.,there was two friends that were walking along for a picnic,0 0 0 1 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and[-:] : (the ra) (the fr) one of the friend/s had : a lot of[EW:more] (f) food than : the other : friend.,and one of the friends had a lot of food than the other friend,0 0 0 0 1 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and then : he ate all of it.,and then he ate all of it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,(and) : and he got really : stuff/ed.,and he got really stuffed,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and then : (he) : he was very sick.,and then he was very sick,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and his stomach was really hurt/ing.,and his stomach was really hurting,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and one of the friend/s call/ed : the doctor.,and one of the friends called the doctor,0 0 0 0 1 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and : the dog call/ed (her) (the) : the doctor : to help.,and the dog called the doctor to help,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and : the doctor : said do not eat a lot of food.,and the doctor said do not eat a lot of food,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and he went home.,and he went home,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and he had some rest.,and he had some rest,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,once upon a time there was[EW:were] : (a) : two friend/s walk/ing along with their[-:] wagon.,once upon a time there was two friends walking along with their wagon,0 0 0 0 0 0 0 1 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and one of the friend/s said : this is a nice wagon : and a nice balloon : you have on it.,and one of the friends said this is a nice wagon and a nice balloon you have on it,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,he tie/ed it off.,he tied it off,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,(and he) : and he want/ed to hold it.,and he wanted to hold it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and then the balloon (fell) flew away.,and then the balloon flew away,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and then : (they were re) one of the friend/z balloon : was very disappoint/ed.,and then one of the friend's balloon was very disappointed,0 0 0 0 0 2 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and one of the friend/s : saw (a) : a man sell/ing balloon/s.,and one of the friends saw a man selling balloons,0 0 0 0 1 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,so he ran[!] over there.,so he ran over there,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and : (he) : he got one from the man.,and he got one from the man,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,can I have one of those balloon/s he said?,can I have one of those balloons he said,0 0 0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,but it was actually : five cent/s : to buy (the) one of the balloon/s.,but it was actually five cents to buy one of the balloons,0 0 0 0 0 1 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,(it w) : he was really sad : that he lost : (one of the friend) : his friend : balloon.,he was really sad that he lost his friend balloon,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,he ask/ed : a person (by) : if (sh) they had five cent/s.,he asked a person if they had five cents,0 4 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and : (he) he point/ed : to the balloon/s.,and he pointed to the balloons,0 0 4 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and : he said there is only balloon/s for five cent/s.,and he said there is only balloons for five cents,0 0 0 0 0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and I have no money.,and I have no money,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and : (she) : she bought two for each of (the) the friend/s.,and she bought two for each of the friends,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and they : said (thank you) thank you for the balloon/s.,and they said thank you for the balloons,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,[~_okay] there is an elephant and a giraffe bounce/ing a ball have/ing fun with the ball.,there is an elephant and a giraffe bouncing a ball having fun with the ball,0 0 0 0 0 0 0 6 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and the ball goes into the water : gets bounce/ed into the water.,and the ball goes into the water gets bounced into the water,0 0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,the giraffe go/3s to get it.,the giraffe goes to get it,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,he is : really wet.,he is really wet,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,he give/3s it to the elephant.,he gives it to the elephant,0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and (the elephant) : the elephant is hold/ing it.,and the elephant is holding it,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and the giraffe is smile/ing quite a lot.,and the giraffe is smiling quite a lot,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,[~_okay] the giraffe and the elephant are look/ing to the water.,the giraffe and the elephant are looking to the water,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and (the : gira) the elephant see/3s a diving board.,and the elephant sees a diving board,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,the elephant is run/ing and slip/3s (on the : pavement) [~_or__whatever_it_is] on : the deck [~_or_whatever] and : scrape/3s her knee.,the elephant is running and slips on the deck and scrapes her knee,0 0 0 6 0 3 0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,the giraffe came over.,the giraffe came over,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and the : lifeguard came over and look/ed at it : and bandage/ed it up.,and the lifeguard came over and looked at it and bandaged it up,0 0 0 0 0 0 4 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and : the elephant sat on a bench.,and the elephant sat on a bench,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and (the) : the lifeguard point/ed at the no run/ing sign.,and the lifeguard pointed at the no running sign,0 0 0 4 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,the giraffe and the elephant are play/ing with a : (airplane) toy airplane.,the giraffe and the elephant are playing with a toy airplane,0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,the giraffe is make/ing it go : really high.,the giraffe is making it go really high,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,the elephant grab/3s it away and start/3s play/ing with it.,the elephant grabs it away and starts playing with it,0 0 3 0 0 0 3 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,it go/3s in the water.,it goes in the water,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,the giraffe is really mad at the elephant.,the giraffe is really mad at the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and the lifeguard see/3s the toy in the water and : look/3s mad.,and the lifeguard sees the toy in the water and looks mad,0 0 0 3 0 0 0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and : the lifeguard and : the : (el) other elephant : are talk/ing.,and the lifeguard and the other elephant are talking,0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and the lifeguard try/3s to reach the airplane.,and the lifeguard tries to reach the airplane,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,but he can not.,but he can not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,the lifeguard : is kind of shrug/ing his shoulder/s think/ing what can I do ?,the lifeguard is kind of shrugging his shoulders thinking what can I do,0 0 0 0 0 6 0 1 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and then another : person come/3s with a net : and get/3s it out for them.,and then another person comes with a net and gets it out for them,0 0 0 0 3 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and the giraffe is really really happy.,and the giraffe is really really happy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and : the giraffe is hug/ing his toy.,and the giraffe is hugging his toy,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,the bunny and : something else are play/ing.,the bunny and something else are playing,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,I think it is a dog that are[EW:is] play/ing : with sand.,I think it is a dog that are playing with sand,0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and the bunny (put) is get/ing some sand out of a pail.,and the bunny is getting some sand out of a pail,0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,he dump/3s sand on a sandcastle.,he dumps sand on a sandcastle,0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,then the sandcastle is all wreck/ed.,then the sandcastle is all wrecked,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,the bunny feel/3s really bad.,the bunny feels really bad,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and : I think it is the dog that is cry/ing.,and I think it is the dog that is crying,0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,the bunny and the : dog I think are go/ing for a picnic.,the bunny and the dog I think are going for a picnic,0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,(the dog and the) : the bunny is eat/ing too much.,the bunny is eating too much,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,he has : maybe twenty thing/s.,he has maybe twenty things,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,he is eat/ing lot/s.,he is eating lots,0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and : the bunny is really full[!].,and the bunny is really full,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and the dog is just eat/ing his sandwich and drink/ing juice box.,and the dog is just eating his sandwich and drinking juice box,0 0 0 0 0 6 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and the bunny : is feel/ing dizzy.,and the bunny is feeling dizzy,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and the dog : think/3s oh I should go get some help!,and the dog thinks oh I should go get some help,0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,so he run/3s to a doctor walk/ing down the road : and pull/3s the doctor over to her friend.,so he runs to a doctor walking down the road and pulls the doctor over to her friend,0 0 3 0 0 0 6 0 0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and the doctor check/3s her friend out : and take/3s (her) the dog/z friend home the rabbit.,and the doctor checks her friend out and takes the dog's friend home the rabbit,0 0 0 3 0 0 0 0 3 0 2 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,there is the dog and the bunny.,there is the dog and the bunny,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,the bunny is come/ing down : the road : jog/ing.,the bunny is coming down the road jogging,0 0 0 6 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,(he) and the dog has a wagon with a balloon tie/ed to it.,and the dog has a wagon with a balloon tied to it,0 0 0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,the bunny grab/3s the balloon.,the bunny grabs the balloon,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and the dog is kind of [~_kinda] fine with it.,and the dog is kind of fine with it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and : then the dog kind of [~_kinda] (freak/3s out) start/3s freak/ing out.,and then the dog kind of starts freaking out,0 0 0 0 0 0 3 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and the : bunny : and the dog try/ed to grab it.,and the bunny and the dog tried to grab it,0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,but they can not because it is float/ing up into the air.,but they can not because it is floating up into the air,0 0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and the dog is really[!] mad at the bunny.,and the dog is really mad at the bunny,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,then (the : do) the bunny go/3s : to the balloon man.,then the bunny goes to the balloon man,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,he ask/3s for a balloon.,he asks for a balloon,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,he say/3s five cent/3s for a balloon.,he says five cents for a balloon,0 3 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and the bunny has no money.,and the bunny has no money,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,so (the) the little bunny look/3s at the : balloon man very innocently : and then go/3s to (his) (the doctor) his dad [~_or_whatever] (and) : [~_I_do_n(o)t_know].,so the little bunny looks at the balloon man very innocently and then goes to his dad,0 0 0 0 3 0 0 0 0 0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,I just see him go/ing to his dad or : the doctor.,I just see him going to his dad or the doctor,0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,he ask/3s for money.,he asks for money,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and : (he) [~_yeah] he ask/3s for some money.,and he asks for some money,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and his dad pay/3s : the balloon man for two balloon/s.,and his dad pays the balloon man for two balloons,0 0 0 3 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and : (I) : I think the little bunny/z dad : feel/3s really good.,and I think the little bunny's dad feels really good,0 0 0 0 0 2 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and so do the rest of them.,and so do the rest of them,0 0 0 0 0 0 0 diff --git a/data/enni_salt_for_morpheme/train.csv b/data/enni_salt_for_morpheme/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..d5cc1e8bf35a76726170087f5e6eee5aa575e12d --- /dev/null +++ b/data/enni_salt_for_morpheme/train.csv @@ -0,0 +1,23641 @@ +file_name,slt_transcription,cleaned_transcription,morpheme_code +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,a giraffe *is play/ing with a[EW:an] elephant [EU].,a giraffe playing with a elephant,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,like they are play/ing with the ball.,like they are playing with the ball,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and it fell into the pool.,and it fell into the pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,(and) and then (the g) (the) the zebra (uh s) swam to get it.,and then the zebra swam to get it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,(and the) (the) (and the gira) (and) and the giraffe got it and gave it to the elephant.,and the giraffe got it and gave it to the elephant,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and (um) the elephant was okay.,and the elephant was okay,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,but the giraffe was all wet.,but the giraffe was all wet,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,the zebra and the elephant went to the pool again.,the zebra and the elephant went to the pool again,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,(and they wanted to s) and the elephant want/ed to swim : till : it kick/ed it/z face.,and the elephant wanted to swim till it kicked it's face,0 0 0 4 0 0 0 0 4 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and the : giraffe ran after it.,and the giraffe ran after it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,(and at last) and the giraffe just ran somewhere.,and the giraffe just ran somewhere,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,(uh) but the elephant hurt it/z knee.,but the elephant hurt it's knee,0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and she was cry/ing so much that the elephant stop/ed run/ing (when an elephant) when another[!] elephant came : and said what is wrong?,and she was crying so much that the elephant stopped running when another elephant came and said what is wrong,0 0 0 6 0 0 0 0 0 4 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,she scratch/ed me.,she scratched me,0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,ow.,ow,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,so : I could get a bandaid.,so I could get a bandaid,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and : (you should not know that) (you should not) no[!] run/ing.,and no running,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,the elephant and the giraffe went to the pool again.,the elephant and the giraffe went to the pool again,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and then : (they) they play/ed with a little plane.,and then they played with a little plane,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,but the elephant took it from the giraffe!,but the elephant took it from the giraffe,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,(and they) and they drop/ed into the pool [EU].,and they dropped into the pool,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and the giraffe was so mad to[EW:at] the elephant that : the elephant was too scared to get it.,and the giraffe was so mad to the elephant that the elephant was too scared to get it,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,when : (the) the other elephant came and said what is go/ing on around here[!].,when the other elephant came and said what is going on around here,0 0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and the (f) other elephant answer/ed we are play/ing with the plane.,and the other elephant answered we are playing with the plane,0 0 0 0 4 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,(but it) but it drop/ed into the pool.,but it dropped into the pool,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,I could get it[!] the other elephant said.,I could get it the other elephant said,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,it is no use.,it is no use,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,I could not (the) the elephant said.,I could not the elephant said,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,then another elephant came over and said what is the problem?,then another elephant came over and said what is the problem,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,(the net) the plane : drop/ed into the pool [~_different__speaking_voice].,the plane dropped into the pool,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,well I got a net to catch it [~_different_speaking_voice]!,well I got a net to catch it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,(and she did) and (she) she did (ju) just that.,and she did just that,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,I got : the plane for you.,I got the plane for you,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,oh thank you the giraffe said.,oh thank you the giraffe said,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,giraffe : hug/ed it.,giraffe hugged it,0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and the elephant was a little happy again.,and the elephant was a little happy again,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,a rabbit and a dog were : play/ing in the sand and build/ing a sandcastle.,a rabbit and a dog were playing in the sand and building a sandcastle,0 0 0 0 0 0 6 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and the dog like/ed to : make the (sand) sandcastle.,and the dog liked to make the sandcastle,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and the bunny : like/ed to help.,and the bunny liked to help,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and he put some on.,and he put some on,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and the dog was too frighten/ed to talk.,and the dog was too frightened to talk,0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,[~_right] (and it was) and it was ruin/ed (the) the bunny said after he did it.,and it was ruined the bunny said after he did it,0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and : the : rabbit did not say another : word.,and the rabbit did not say another word,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and the dog : cry/ed a little.,and the dog cried a little,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,the dog and the bunny were have/ing a picnic today.,the dog and the bunny were having a picnic today,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and they start/ed to eat.,and they started to eat,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and the bunny sweated|sweat[EW:sweat] : and fell to : the ground [EU].,and the bunny sweated and fell to the ground,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,(but) but the dog was still eat/ing.,but the dog was still eating,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,ah I can not take it any more the bunny said.,ah I can not take it any more the bunny said,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and then the mother bunny came : and said what is the matter little one?,and then the mother bunny came and said what is the matter little one,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and the dog said : he sweated|sweat[EW:sweat] and fell to the ground [EU].,and the dog said he sweated and fell to the ground,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,oh my goodness [~_high_pitched_voice].,oh my goodness,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,are you all right little one [~_high_pitched_voice]?,are you all right little one,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,I am okay [~_high_pitched_voice].,I am okay,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,let us go home okay [~_high_pitched_voice]?,let us go home okay,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,goodbye [~_high_pitched_voice].,goodbye,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,the bunny and the dog had a wagon that had (uh uh uh a big bunny/z uh) a big bunny/z balloon.,the bunny and the dog had a wagon that had a big bunny's balloon,0 0 0 0 0 0 0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and : they like/ed it so much that (they) he play/ed with it.,and they liked it so much that he played with it,0 0 4 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,but then : they try/ed to pull[?] it easily.,but then they tried to pull it easily,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and the dog almost : sweated all the time [EU].,and the dog almost sweated all the time,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and the balloon flew away.,and the balloon flew away,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and they both try/ed to get it.,and they both tried to get it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,but they could not.,but they could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,(and they are so) and the dog was so angry.,and the dog was so angry,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,when they saw the big bunny (with) hold/ing some balloon/s [EU].,when they saw the big bunny holding some balloons,0 0 0 0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,[~_high_voice] hey big one.,hey big one,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,(have you) (we) we just had a wagon that had one of your balloon/s.,we just had a wagon that had one of your balloons,0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,[~_deep_voice] oh?,oh,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,"[~_deep_voice,_menacing_tone] (you y y you) and where did you put it?",and where did you put it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,[~_high_voice] well it flew away.,well it flew away,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,[~_makes_growling_sound_'errrr'].,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,[~_high_voice] it is okay.,it is okay,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,[~_high_voice] how come : there is[EW:are] two?,how come there is two,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,[~_high_voice] oh that is just my friend.,oh that is just my friend,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and then the mother came again and : said what is up now [~__different_speaking_voice]?,and then the mother came again and said what is up now,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,oh we just found a balloon man.,oh we just found a balloon man,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and we had one of his balloon/s.,and we had one of his balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,oh [~_different_speaking_voice].,oh,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,(and and) and (uh) he had a balloon that said : five balloon/s.,and he had a balloon that said five balloons,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,(but he) (he) but he just had four because we had one of them.,but he just had four because we had one of them,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,but it is okay he said.,but it is okay he said,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,: (because) and he gave both of them a balloon.,and he gave both of them a balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(um) Elephant and giraffe want to [~_wanna] play ball : outside.,Elephant and giraffe want to play ball outside,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(and) : and giraffe : do|do[EW:does] not want to get the ball at the pool.,and giraffe do not want to get the ball at the pool,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,and the elephant *is scare/ed of height/s.,and the elephant scared of heights,0 0 0 4 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,then he bring|bring[EW:brought] a ball back to the giraffe.,then he bring a ball back to the giraffe,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,then : (um) elephant is very shy : with giraffe.,then elephant is very shy with giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(ah) the elephant (want to) : and giraffe go to the pool.,the elephant and giraffe go to the pool,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(then) and then (the elephant and gir) elephant go run [EU].,and then elephant go run,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(and el) and giraffe stay|stay[EW:stays] here.,and giraffe stay here,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(then) : then : giraffe run|run[EW:ran].,then giraffe run,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,and elephant slip|slip[EW:slipped] *on the floor [EU].,and elephant slip the floor,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,then elephant have|have[EW:has] a booboo : because[?] : *of the slippery floor [EU].,then elephant have a booboo because the slippery floor,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(then) : and the giraffe said it is okay xx the elephant.,and the giraffe said it is okay the elephant,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(and) : (and the) and the elephant give|give[EW:gave] him a bandaid.,and the elephant give him a bandaid,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,and then : the elephant stay|stay[EW:stayed] here sit|sit[EW:sat] down and watch|watch[EW:watched].,and then the elephant stay here sit down and watch,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(then) (and the) and the elephant said stay here.,and the elephant said stay here,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(um) giraffe want|want[EW:wanted] to [~_wanna] play with his airplane.,giraffe want to play with his airplane,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,then : giraffe play/3s airplane now.,then giraffe plays airplane now,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(then) (and) (and) and the elephant grab/ed to the giraffe[EW:giraffe/z] airplane [EU].,and the elephant grabbed to the giraffe airplane,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(then) (then) and the elephant (drop it) is drop[EW:dropping] *the airplane in the pool [EU].,and the elephant is drop airplane in the pool,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(then) : and the giraffe *is mean to the elephant [EU].,and the giraffe mean to the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,then : the elephant go|go[EW:goes] to get (his) giraffe[EW:giraffe/z] airplane.,then the elephant go to get giraffe airplane,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,then (h he) elephant go|go[EW:goes] to try reach his airplane [EU].,then elephant go to try reach his airplane,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(and) (and then airplane) [~_I_mean] elephant (uh get/3s airplane) : [~_wait] (tr) try|try[Ew:tried] to get it.,elephant try to get it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(then) : (then uh) and the elaphant can not.,and the elaphant can not,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(then) : (then) and the elephant *is go/ing to get it in the : net [EU].,and the elephant going to get it in the net,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,then he get|get[EW:got] the net.,then he get the net,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,then he get|get[EW:got] the airplane.,then he get the airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,then he get|get[EW:got] the toy airplane back to giraffe.,then he get the toy airplane back to giraffe,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(then) (and) : and giraffe is so happy.,and giraffe is so happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(uh) (um) the dog want|want[EW:wanted] to [~_wanna] build a sandcastle.,the dog want to build a sandcastle,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,so do/3s the rabbit.,so does the rabbit,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(then) then the dog make|make[EW:made] a castle xxx now.,then the dog make a castle now,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,and he finish/ed.,and he finished,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(then) then the rabbit dug sand in a pile.,then the rabbit dug sand in a pile,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(then) and the rabbit drop/ed sand (in the) in the dog[EW:dog/z] castle.,and the rabbit dropped sand in the dog castle,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(then) and then (then uh) the rabbit said why did you drop the sand?,and then the rabbit said why did you drop the sand,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,and so is the dog [EU].,and so is the dog,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(and) (and) and the dog cry|cry[EW:cried].,and the dog cry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(and) and the rabbit did not need to.,and the rabbit did not need to,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,and rabbit (and go to) and the dog go to get[EW:have] *a picnic [EU].,and rabbit and the dog go to get picnic,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,then he have|have[EW:has] *a picnic [EU].,then he have picnic,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,we have a lot of food.,we have a lot of food,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(then) : then the rabbit ate too much.,then the rabbit ate too much,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,and then (then) the rabbit *is get/ing dizzy [EU].,and then the rabbit getting dizzy,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,then there is a doctor with the rabbit.,then there is a doctor with the rabbit,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,there is a doctor.,there is a doctor,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(and) and then (then) the dog pull/ed on his doctor[EW:doctor/z] arm.,and then the dog pulled on his doctor arm,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,and he *is go/ing to make it feel better the rabbit [EU].,and he going to make it feel better the rabbit,0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,then and the dog just has time to go to the doctor.,then and the dog just has time to go to the doctor,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,and then we go.,and then we go,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,and the dog stay|stay[EW:stayed] here.,and the dog stay here,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,[~_okay] the dog get|get[EW:got] his wagon and a balloon.,the dog get his wagon and a balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,then the dog stand|stand[EW:stands] here.,then the dog stand here,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(and then) and then the rabbit point/3s to the balloon.,and then the rabbit points to the balloon,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,then the rabbit (tie/ed) tie/ed the balloon.,then the rabbit tied the balloon,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,then his balloon *is go/ing up [EU].,then his balloon going up,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,and dog is mad (xxx).,and dog is mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,and rabbit me too [EU].,and rabbit me too,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,and there is[EW:are] more balloon/s when a man get|get[EW:got] it [EU].,and there is more balloons when a man get it,0 0 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,and the rabbit go|go[EW:went].,and the rabbit go,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,and the (and the man go) rabbit (said) said to man to please *can I have a balloon [EU].,and the rabbit said to man to please I have a balloon,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,then he gave one five cent/s.,then he gave one five cents,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,and there is no cash money.,and there is no cash money,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(and) and then (his mommy I mean) his doctor gave him money.,and then his doctor gave him money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,or they gave it to these two.,or they gave it to these two,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,then he give him cash and get|get[EW:got] the balloon.,then he give him cash and get the balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,then (he get to p) the the doctor give|give[EW:gave] the (the) money to the man.,then the the doctor give the money to the man,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(and then) then he got to these two balloon/s [EU].,then he got to these two balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,first : the elephant was bounce/ing a ball.,first the elephant was bouncing a ball,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,a giraffe (d) come|come[EW:came] [~_past_tense_marked_on_noun:_giraffed_come].,a giraffe come,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,the giraffe actually hit it in the pool.,the giraffe actually hit it in the pool,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,the giraffe was swim/ing : for it.,the giraffe was swimming for it,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,he got it.,he got it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,: (and sh) and she was play/ing with it now.,and she was playing with it now,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,first she want/ed to go swim/ing :.,first she wanted to go swimming,0 0 4 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,she want/ed to go on the diving board.,she wanted to go on the diving board,0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,she was run/ing.,she was running,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,she slip/ed.,she slipped,0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and she fell and hurt her knee.,and she fell and hurt her knee,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and then another elephant comed|come[EW:came] over.,and then another elephant comed over,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,(and then he she pu) and then he put a bandaid on.,and then he put a bandaid on,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and then she was feel/ing a lot better.,and then she was feeling a lot better,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,then she sit|sit[EW:sat] down.,then she sit down,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,she had no run/ing.,she had no running,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,(uh first she want to pla) the boy had a[EW:an] airplane.,the boy had a airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and she want|want[EW:want/ed] to play with it.,and she want to play with it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,he was fly/ing it.,he was flying it,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and she stare/ed at it.,and she stared at it,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and then she took it away.,and then she took it away,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,: then she (rek) threw it in the water.,then she threw it in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,she [+..].,she,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,she threwed|throw[EW:threw] it into the water [+_bch].,she threwed it into the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and then the giraffe was angry.,and then the giraffe was angry,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and then another elephant comed|come[EW:came] along.,and then another elephant comed along,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,(he was try) (he) she was talk/ing about it.,she was talking about it,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,(uh) she accidentally put it in.,she accidentally put it in,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and then he start/ed to reach it.,and then he started to reach it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,but he could not.,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,(and then) and then he was feel/ing sad.,and then he was feeling sad,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and then (um) a girl elephant comed|come[EW:came].,and then a girl elephant comed,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,(she) (she got a) she got it.,she got it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and she giveded|give[EW:gave] it back.,and she giveded it back,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,(now) now he was happy again.,now he was happy again,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,they are play/ing in the sand.,they are playing in the sand,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,then a bunny comed|come[EW:came] in.,then a bunny comed in,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,the bunny was make/ing a castle.,the bunny was making a castle,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and the dog was make/ing : (a) a big castle : with stuff on it.,and the dog was making a big castle with stuff on it,0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,(then they dump/ed it on) they dump/ed it.,they dumped it,0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and it spill/ed.,and it spilled,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,(it) : and then the dog build|build[EW:built] it again.,and then the dog build it again,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,they went for a picnic.,they went for a picnic,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,they ate.,they ate,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,the rabbit was get/ing full.,the rabbit was getting full,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and he felt dizzy.,and he felt dizzy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and then a bunny come|come[EW:came] along : a bunny nurse.,and then a bunny come along a bunny nurse,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,the dog : pull/ed on the nurse.,the dog pulled on the nurse,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,(he felt) : the doctor help/ed the other bunny.,the doctor helped the other bunny,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and then he was feel/ing better.,and then he was feeling better,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,the dog was (pull/ing a : uh : a) pull/ing [~_what's_that__thing_a_box_like_a_box_and_they_have_wheels_like_four_on_a__car] [~_EXA_tells_CHI_to_decide] a car.,the dog was pulling a car,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and then : the bunny want/ed to have (a balloon) the balloon.,and then the bunny wanted to have the balloon,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,he took it off.,he took it off,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,the dog was not happy.,the dog was not happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,(it fe) (it was) it was : go/ing up.,it was going up,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and then it[EW:he] lost it.,and then it lost it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and the dog felt mad.,and the dog felt mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and then there is[EW:were] some more balloon/s.,and then there is some more balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and then he want/ed one.,and then he wanted one,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,he give|give[EW:gave] him the five one.,he give him the five one,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,he did not have any money.,he did not have any money,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,then another nurse come|come[EW:came].,then another nurse come,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,he want/ed the balloon.,he wanted the balloon,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and she gaved|give[EW:gave] him it : two penny/s [EU].,and she gaved him it two pence,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and then they have|have[EW:had] balloon/s.,and then they have balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,there was once an elephant : with some ball/s and[-:] a giraffe.,there was once an elephant with some balls and a giraffe,0 0 0 0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,the elephant/z (ball/s) : ball fell into the water.,the elephant's ball fell into the water,0 2 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and[-:] the giraffe had his hand out : almost ready to get it.,and the giraffe had his hand out almost ready to get it,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and[-:] : the elephant/z : (uh um) hand/s are almost cover/ing her eyes.,and the elephant's hands are almost covering her eyes,0 0 2 1 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and the giraffe is swim/ing in the water try/ing to get her ball back for her.,and the giraffe is swimming in the water trying to get her ball back for her,0 0 0 0 6 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and : he swim/3s back *and give/3s her ball to her [EU].,and he swims back gives her ball to her,0 0 3 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and she is : smile/ing very happy.,and she is smiling very happy,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and[~!_laughing] she is very happy that (she) he got her ball back.,and she is very happy that he got her ball back,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and then[-:] : it look/3s like : she want/3s to kiss him.,and then it looks like she wants to kiss him,0 0 0 3 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,the very end[~!_laughing] [+_bch].,the very end,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and (he is)[~!_laughing] : it was funny.,and it was funny,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,the elephant and the giraffe saw : a swimming pool : and were stand/ing there.,the elephant and the giraffe saw a swimming pool and were standing there,0 0 0 0 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,the elephant : was[-:] go/ing to run and jump into the pool.,the elephant was going to run and jump into the pool,0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,the elephant slip/3s[!] on the water on the side.,the elephant slips on the water on the side,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,she fall/3s down and hurt/3s her knee.,she falls down and hurts her knee,0 3 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,she start/3s cry/ing.,she starts crying,0 3 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and the lifeguard come/3s.,and the lifeguard comes,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,he give/3s her a bandage.,he gives her a bandage,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,he help/3s her walk (to the ch) to the[-:] bench.,he helps her walk to the bench,0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,(then) then he point/3s to the sign no run/ing.,then he points to the sign no running,0 0 3 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and[-:] : she look/3s like she is done something wrong [EU].,and she looks like she is done something wrong,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,there was a : giraffe and a elephant.,there was a giraffe and a elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and the giraffe is hold/ing a[EW:an] (uh) airplane in his hand.,and the giraffe is holding a airplane in his hand,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,: the elephant : has her eyes wide open.,the elephant has her eyes wide open,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and the giraffe is stick/ing out (hi) : his tongue (on the si) on the side of his face : (drive/ing his) [~_um_not_driving] play/ing with his plane and show/ing her.,and the giraffe is sticking out his tongue on the side of his face playing with his plane and showing her,0 0 0 0 6 0 0 0 0 0 0 0 0 0 6 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,she take/3s it right out of (her) his hand/s and go/3s like this (arou) and look/3s at it.,she takes it right out of his hands and goes like this and looks at it,0 3 0 0 0 0 0 1 0 3 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and she drop/3s it into the water.,and she drops it into the water,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,the giraffe : get/3s : kind of angry with the elephant because she drop/ed the (plane) airplane in the water.,the giraffe gets kind of angry with the elephant because she dropped the airplane in the water,0 0 3 0 0 0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,(the life) : they get the lifeguard.,they get the lifeguard,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and the lifeguard come/3s.,and the lifeguard comes,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and he look/3s : at the plane in the water.,and he looks at the plane in the water,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,the elephant : (ask/3s him to[-:] get) (as) ask/3s him nicely to get the plane out of the water for (her[-:]) her friend.,the elephant asks him nicely to get the plane out of the water for her friend,0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,the lifeguard try/3s to get it.,the lifeguard tries to get it,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,but he can not reach it.,but he can not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,the lifeguard say/3s I can not reach[!] it!,the lifeguard says I can not reach it,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and then : (uh) a nice : lady : elephant come/3s with a net.,and then a nice lady elephant comes with a net,0 0 0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,she get/3s the plane out of the water.,she gets the plane out of the water,0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,she give/3s it back to the : little giraffe.,she gives it back to the little giraffe,0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and then he is happy again.,and then he is happy again,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,there was a bunny who was play/ing with a shovel.,there was a bunny who was playing with a shovel,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and then another[!] bunny came.,and then another bunny came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,the other bunny ask/3s : if he (c) : could play with : him and help : him build a sandcastle.,the other bunny asks if he could play with him and help him build a sandcastle,0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and she say/3s yes.,and she says yes,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and[-:] : then (he try/3s to) she try/3s to dump the : bucket on the sandcastle.,and then she tries to dump the bucket on the sandcastle,0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,it break/3s her sandcastle.,it breaks her sandcastle,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,she cry/3s because she is try/ing to get it back up.,she cries because she is trying to get it back up,0 3 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and it is all broken.,and it is all broken,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,there was a bunny[-:] who was walk/ing with a picnic basket.,there was a bunny who was walking with a picnic basket,0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and the other bunny say/3s hi.,and the other bunny says hi,0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,the bunny and : the[-:] other bunny : take their picnic (baks) basket/s : and go find a nice[-:] spot on the ground.,the bunny and the other bunny take their picnic baskets and go find a nice spot on the ground,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,(they) they ate their lunch.,they ate their lunch,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and one of the bunny[EW:bunnies][!] : has eaten very very fast.,and one of the bunny has eaten very very fast,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and now he has got a stomachache.,and now he has got a stomachache,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,he feel/3s really dizzy.,he feels really dizzy,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,the other : bunny go/3s to get : (a) a doctor[!] bunny.,the other bunny goes to get a doctor bunny,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and she say/3s come here come here.,and she says come here come here,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,(my friend is) my friend is not feel/ing so good!,my friend is not feeling so good,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and so she pull/3s her : and pull/3s her until she get/3s there.,and so she pulls her and pulls her until she gets there,0 0 0 3 0 0 3 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and : she take/3s her thermometer out of her : bucket.,and she takes her thermometer out of her bucket,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and[-:] she check/3s his temperature.,and she checks his temperature,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and then : he is all better.,and then he is all better,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and : she is walk/ing off with him.,and she is walking off with him,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,there was a bunny with a : balloon and a wagon pull/ing.,there was a bunny with a balloon and a wagon pulling,0 0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and[-:] she say/3s hi to her friend.,and she says hi to her friend,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,her friend : want/3s to see the balloon.,her friend wants to see the balloon,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,so he put/3s his hand out ready to grab (i) her balloon.,so he puts his hand out ready to grab her balloon,0 0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,he try/3s to untie her balloon.,he tries to untie her balloon,0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,he untie/3s it.,he unties it,0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and he let/3s go by accident.,and he lets go by accident,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and the balloon fly/3s up : into the sky.,and the balloon flies up into the sky,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,it fly/3s up so high that : (the) : the girl whose balloon that belong/ed to [~_sighs] : (um) : rose too high up to the sky to get it [EU].,it flies up so high that the girl whose balloon that belonged to rose too high up to the sky to get it,0 3 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and then (sh) : she is get/ing really mad at him.,and then she is getting really mad at him,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,the other guy : see/3s (another) : mister balloon guy.,the other guy sees mister balloon guy,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and he has a (bu) whole bunch of balloon/s.,and he has a whole bunch of balloons,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and he think/3s oh[!] well I should go get my friend another[!] balloon!,and he thinks oh well I should go get my friend another balloon,0 0 3 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and he go/3s one balloon please[-:]!,and he goes one balloon please,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and : he[-:] look/3s in his pocket/s.,and he looks in his pockets,0 0 3 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and he do/3s not have any money.,and he does not have any money,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and it say/3s on a balloon balloon/s five cent/s.,and it says on a balloon balloons five cents,0 0 3 0 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,(his girl come) (the) : the girl bunny come/3s and look/3s at the balloon/s.,the girl bunny comes and looks at the balloons,0 0 0 3 0 3 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,then : the other bunny go/3s : run/ing : to (a) : a lady bunny : and ask/3s her for five cent/s.,then the other bunny goes running to a lady bunny and asks her for five cents,0 0 0 0 3 6 0 0 0 0 0 3 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and then the lady pay/3s ten cent/s because five plus five equal/3s ten for both[!] of them to have a balloon.,and then the lady pays ten cents because five plus five equals ten for both of them to have a balloon,0 0 0 0 3 0 1 0 0 0 0 3 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,then they were both[!] happy : because they got balloon/s.,then they were both happy because they got balloons,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,once upon a time : there was a[EW:an] elephant : and a giraffe.,once upon a time there was a elephant and a giraffe,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,: and they all got together.,and they all got together,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,: and then they falled|fall[EW:fell] in the swimming pool.,and then they falled in the swimming pool,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,: and then little elephant help/ed him.,and then little elephant helped him,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,: and then it was all wet.,and then it was all wet,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,once upon a time they want/ed to go in a pool.,once upon a time they wanted to go in a pool,0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and the little guy said you could go in the pool.,and the little guy said you could go in the pool,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and then he went in there.,and then he went in there,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,: a long time ago her[EW:she] was run/ing.,a long time ago her was running,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and her[EW:she] falled|fall[EW:fell].,and her falled,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and then her[EW:she] hurt herself.,and then her hurt herself,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,: and then the team : elephant help/ed her.,and then the team elephant helped her,0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,: and then it hurted|hurt[EW:hurt].,and then it hurted,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and then it feeled|feel[EW:felt] all better.,and then it feeled all better,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and he said do not do that again.,and he said do not do that again,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,once upon a time : elephant got [<~?_in_two] into [>~?_in_two] friend/s again [EU].,once upon a time elephant got into friends again,0 0 0 0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,he like/3s play/ing with his airplane.,he likes playing with his airplane,0 3 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and then : they went in the pool.,and then they went in the pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and then it went in the water.,and then it went in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,(and) and the giraffe be mad at the elephant [EU].,and the giraffe be mad at the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and then it sinked|sink[EW:sank].,and then it sinked,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,he said help (this) get this airplane.,he said help get this airplane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,but he could not get it out : because it was too far away.,but he could not get it out because it was too far away,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and then her[EW:she] try/ed it.,and then her tried it,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and it got : open [EU].,and it got open,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and he help[EW:helped] : him.,and he help him,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and he like/ed the airplane now.,and he liked the airplane now,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,once upon a time (they were) they were build/ing a sandcastle.,once upon a time they were building a sandcastle,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and then it maked|make[EW:made] them more [EU].,and then it maked them more,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,: and then they put sand on it.,and then they put sand on it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and then they want/ed to make it again.,and then they wanted to make it again,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and then he did not want to because he was cry/ing.,and then he did not want to because he was crying,0 0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and that is the end [+_bch].,and that is the end,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,once upon a time they were have/ing a picnic.,once upon a time they were having a picnic,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and then they took all the food to eat.,and then they took all the food to eat,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and he was too full.,and he was too full,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,he need/ed a little rest.,he needed a little rest,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and then : a little man came by.,and then a little man came by,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,(and) and he was suppose/ed to help us.,and he was supposed to help us,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and he eat[EW:ate] too much.,and he eat too much,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,so they went along.,so they went along,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,(once upon) once upon a time he had a balloon : with a wagon.,once upon a time he had a balloon with a wagon,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and then he want/ed it.,and then he wanted it,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and then he could have it.,and then he could have it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,but then it got away.,but then it got away,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and then they were not suppose/ed to take it off then.,and then they were not supposed to take it off then,0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and there was[EW:were] extra balloon/s.,and there was extra balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,he want/ed one.,he wanted one,0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,: and that one said fifty dollar/s.,and that one said fifty dollars,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,(so h) so they got a different one a balloon.,so they got a different one a balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,(and then) and then the daddy was wait/ing for him.,and then the daddy was waiting for him,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,he said daddy can I have one?,he said daddy can I have one,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and then he[?] gave him a dollar to get one.,and then he gave him a dollar to get one,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and then they both got one.,and then they both got one,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and that is the the end [+_bch].,and that is the the end,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,(Elephant s) elephant was play/ing his candy bar/s [EU].,elephant was playing his candy bars,0 0 6 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,(and) (and gi) : and giraffe want/ed some.,and giraffe wanted some,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,: and one went in the sandbox.,and one went in the sandbox,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,: but actually that was the water.,but actually that was the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,then : giraffe got it back to the elephant.,then giraffe got it back to the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,then : elephant look/ed : happy (to) to giraffe.,then elephant looked happy to giraffe,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,They want/ed to go in the swimming pool.,They wanted to go in the swimming pool,0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,(but) but they did not have (their pool) their bathing suit/s.,but they did not have their bathing suits,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,but actually they did have their bathing suits on.,but actually they did have their bathing suits on,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,but there was slippery [EU].,but there was slippery,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,then (there knee) she fell down.,then she fell down,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and (she) she hurt her knee.,and she hurt her knee,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and then her brother came to help her.,and then her brother came to help her,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,it really hurted|hurt[EW:hurt].,it really hurted,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,: so (the) (the) the brother elephant put on the bandaid on the sister elephant.,so the brother elephant put on the bandaid on the sister elephant,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and then it was still hurt/ing.,and then it was still hurting,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and the brother one said go home.,and the brother one said go home,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,So : the piggy want/ed the giraffe/z airplane.,So the piggy wanted the giraffe's airplane,0 0 0 4 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,except it went round and round and round.,except it went round and round and round,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and the piggy walk/ed round and round and round.,and the piggy walked round and round and round,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,(and) and giraffe did not want piggy to break[!] it.,and giraffe did not want piggy to break it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,so it went round and round and round.,so it went round and round and round,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,then the airplane fell in the water.,then the airplane fell in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and it was go/ing deeper.,and it was going deeper,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and (the p) (the elephant) the elephant[EW:elephant/z] brother came to seize the airplane.,and the elephant brother came to seize the airplane,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,then the sister said it went deeper.,then the sister said it went deeper,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,now it was go/ing deeper.,now it was going deeper,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,he did not want to [~_wanna] fall in the water[-:] because he was wear/ing clothes.,he did not want to fall in the water because he was wearing clothes,0 0 0 0 0 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,but : the giraffe was start/ing to cry.,but the giraffe was starting to cry,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and then (the) the lady was try[EW:trying] *to getting[EW:get] it [EU].,and then the lady was try getting it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,: and then : the lady was try/ing to get it.,and then the lady was trying to get it,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,she was try/ing to get it (at the um) .,she was trying to get it,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,: and then the giraffe was start/ing to be happy.,and then the giraffe was starting to be happy,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,when you are happy sometime/s people cry.,when you are happy sometimes people cry,0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,that is right.,that is right,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,(then) then the lady got (the) the airplane back to the giraffe.,then the lady got the airplane back to the giraffe,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,(and) and (the) the elephant/z sister was really[-:] happy to like (uh) the giraffe [EU].,and the elephant's sister was really happy to like the giraffe,0 0 2 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,(th) there were[EW:was] a dog that was make/ing a sandcastle.,there were a dog that was making a sandcastle,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and then (the) the bunny want/ed to do it too.,and then the bunny wanted to do it too,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and the dog did not want the bunny to.,and the dog did not want the bunny to,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and : then the bunny was mad too because it all fell down.,and then the bunny was mad too because it all fell down,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and (the bun) then the dog was cry/ing.,and then the dog was crying,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,The bunny was go/ing for a picnic too.,The bunny was going for a picnic too,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and the doggy was too.,and the doggy was too,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,bunny was really hungry.,bunny was really hungry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,then he was really full.,then he was really full,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,the bunny/z tummy hurted|hurt[EW:hurt].,the bunny's tummy hurted,0 2 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,then doggy saw bunny/z mom.,then doggy saw bunny's mom,0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,then doggy pull/ed on the doctor bunny.,then doggy pulled on the doctor bunny,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,the doctor said (he is) he is too full.,the doctor said he is too full,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,(the) the (doc) doctor : fix/ed the bunny.,the doctor fixed the bunny,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and the bunny was not full any more.,and the bunny was not full any more,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,The end [+_bch].,The end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,Doggy was pull/ing his : wagon with a balloon on it.,Doggy was pulling his wagon with a balloon on it,0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and bunny was run/ing at her.,and bunny was running at her,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,(bun) bunny said I like that balloon.,bunny said I like that balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and doggy said that is mine.,and doggy said that is mine,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,(and then he s) then bunny (s) was try/ing to tie it off.,then bunny was trying to tie it off,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,(and) and doggy (was m s) she was about to cry.,and doggy she was about to cry,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and then it was all fly/ing up to the air.,and then it was all flying up to the air,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and the bunny want/ed it.,and the bunny wanted it,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and the doggy want/ed it.,and the doggy wanted it,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,now the balloon pop/ed.,now the balloon popped,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,(and) and they are xxx.,and they are,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and bunny was : really : kind of nervous.,and bunny was really kind of nervous,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,(and the) and the dog was mad.,and the dog was mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,then there was a bunny rabbit : and lot/s : of balloon/s.,then there was a bunny rabbit and lots of balloons,0 0 0 0 0 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,lot/s of what?,lots of what,1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,balloon/s [+_bch].,balloons,1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,(and) and bunny ask/ed can I have a balloon : (said the ma) : said bunny.,and bunny asked can I have a balloon said bunny,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,(but bunny) but bunny did not have five dollar/s.,but bunny did not have five dollars,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and bunny did not get a balloon.,and bunny did not get a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,(but doc) : but bunny ask/ed doctor.,but bunny asked doctor,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,he was stand/ing right : there.,he was standing right there,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and bunny ask/ed doctor can I get : a balloon?,and bunny asked doctor can I get a balloon,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and (then) then bunny and doggy was[EW:were] happy because there was[EW:were] two balloon/s for them.,and then bunny and doggy was happy because there was two balloons for them,0 0 0 0 0 0 0 0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and (then they were all) then they were happy (from) (from) from the bunny doctor [EU].,and then they were happy from the bunny doctor,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,once : (a) : a giraffe and an elephant were play/ing with a ball.,once a giraffe and an elephant were playing with a ball,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,the ball bounce/ed into the water.,the ball bounced into the water,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,the giraffe (try/ed) : was swim/ing to go get it.,the giraffe was swimming to go get it,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,he got it.,he got it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,and[-:] the elephant took it.,and the elephant took it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,once a[-:] elephant and a giraffe : were : (l) stare/ing into the water of the pool.,once a elephant and a giraffe were staring into the water of the pool,0 0 0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,(the elephant said : let us go a) : the elephant ran and said : let us go in!,the elephant ran and said let us go in,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,the elephant slip/ed.,the elephant slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,the : giraffe try/ed to run and : get her.,the giraffe tried to run and get her,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,and then she hurt her knee.,and then she hurt her knee,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,and then the lifeguard came : to look at it.,and then the lifeguard came to look at it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,and he put a bandage[!] on it.,and he put a bandage on it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,and then he said : do not : run on the deck any more.,and then he said do not run on the deck any more,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,oh no that is right now[~!_laughing] [+_bch].,oh no that is right now,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,see look at the sign : he said.,see look at the sign he said,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,you should have paid attention to the sign!,you should have paid attention to the sign,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,once a giraffe and an elephant were play/ing with a toy plane.,once a giraffe and an elephant were playing with a toy plane,0 0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,they were[-:] : play/ing with it just : at the edge of the water.,they were playing with it just at the edge of the water,0 0 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,the elephant took the plane from the giraffe and start/ing play/ing with it.,the elephant took the plane from the giraffe and starting playing with it,0 0 0 0 0 0 0 0 0 6 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,and then she drop/ed it in the water.,and then she dropped it in the water,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,and then the giraffe got mad (at h) at the elephant.,and then the giraffe got mad at the elephant,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,and the lifeguard came over.,and the lifeguard came over,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,and : the elephant said I drop/ed the plane into the pool[!] by accident.,and the elephant said I dropped the plane into the pool by accident,0 0 0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,then the lifeguard try/ed to reach it.,then the lifeguard tried to reach it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,but he could not.,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,and then the giraffe start/ed cry/ing.,and then the giraffe started crying,0 0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,and then a girl with a net came.,and then a girl with a net came,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,she[-:] got the plane out of the water with the net : and gave it back to the giraffe.,she got the plane out of the water with the net and gave it back to the giraffe,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,and then they : start/ed play/ing.,and then they started playing,0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,(ha) and then : they : did not want to[:_wanna] play : by the water again with the plane.,and then they did not want to play by the water again with the plane,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,once there was a rabbit and : a dog : make/ing a sandcastle[!].,once there was a rabbit and a dog making a sandcastle,0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,the dog was : smooth/ing out the top.,the dog was smoothing out the top,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,and then the rabbit put a whole bunch of sand on.,and then the rabbit put a whole bunch of sand on,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,stupid dog.,stupid dog,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,and then it : broke.,and then it broke,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,(and then the rabbit) : (and he[-:] did) and he should not have done it.,and he should not have done it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,and the dog : look/ed surprise/ed.,and the dog looked surprised,0 0 0 4 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,and then the dog was try to (be) : rebuilt|rebuild[EW:rebuild] it very hard [EU].,and then the dog was try to rebuilt it very hard,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,but : she could not.,but she could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,once (there) a rabbit and a dog went for a picnic.,once a rabbit and a dog went for a picnic,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,the rabbit was eat/ing very fast.,the rabbit was eating very fast,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,(he got) : he was not hungry any more.,he was not hungry any more,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,he got dizzy[!].,he got dizzy,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,and then : he faint/ed.,and then he fainted,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,(and) [~_no] and then the dog ran up and got a lady and : told her to come see (the) : if the rabbit was okay.,and then the dog ran up and got a lady and told her to come see if the rabbit was okay,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,the lady told the rabbit that you should not eat : food that fast.,the lady told the rabbit that you should not eat food that fast,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,and then the lady walk/ed off with the rabbit.,and then the lady walked off with the rabbit,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,(once : a) : once a dog was : wheel/ing around her balloon in a wagon.,once a dog was wheeling around her balloon in a wagon,0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,a rabbit came : and : said nice balloon.,a rabbit came and said nice balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,the rabbit untie/ed the balloon : and then it : float/ed into the sky.,the rabbit untied the balloon and then it floated into the sky,0 0 4 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,the dog got very mad at the rabbit.,the dog got very mad at the rabbit,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,the rabbit saw : another rabbit carry/ing balloon/s for sale.,the rabbit saw another rabbit carrying balloons for sale,0 0 0 0 0 6 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,the rabbit ask/ed if he could have one.,the rabbit asked if he could have one,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,but he said they are (five dollar/s : uh) five cent/s.,but he said they are five cents,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,and he did not have any money!,and he did not have any money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,they look/ed surprise/ed.,they looked surprised,0 4 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,and then (he) they ask/ed another rabbit for some money.,and then they asked another rabbit for some money,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,(they gave her some money) : they gave the rabbit some money : to buy two balloon/s.,they gave the rabbit some money to buy two balloons,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,and then they both[!] had a balloon.,and then they both had a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,a giraffe name/ed : Savannah and an elephant name/ed Tutu : were : play/ing ball beside the[-:] pool.,a giraffe named Savannah and an elephant named Tutu were playing ball beside the pool,0 0 4 0 0 0 0 4 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,(um) : Tutu drop/3s the : (b) ball into the water.,Tutu drops the ball into the water,0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Savannah jump/3s in and (s) start/3s swimming towards the ball.,Savannah jumps in and starts swimming towards the ball,0 3 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Savannah get/3s the ball and hand/3s it to Tutu.,Savannah gets the ball and hands it to Tutu,0 3 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,(Sava) Savannah get/3s out.,Savannah gets out,0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,and : Tutu is very happy.,and Tutu is very happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Tutu and Savannah are get/ing ready to jump into the : pool.,Tutu and Savannah are getting ready to jump into the pool,0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Tutu say/3s she is go/ing to : go : over to the diving board.,Tutu says she is going to go over to the diving board,0 3 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Tutu run/3s.,Tutu runs,0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,and she slip/3s on the wet deck.,and she slips on the wet deck,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,(she) : she got a big scrape when she fell.,she got a big scrape when she fell,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,a lifeguard come/3s run/ing over.,a lifeguard comes running over,0 0 3 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,he put/3s a bandaid : on : Tutu/z knee.,he puts a bandaid on Tutu's knee,0 3 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,the lifeguard help/3s : Tutu back to Savannah.,the lifeguard helps Tutu back to Savannah,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,the lifeguard : tell/3s Savannah very sternly : never run on the deck.,the lifeguard tells Savannah very sternly never run on the deck,0 0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Tutu and Savannah are play/ing with Savannah/z new airplane by the pool.,Tutu and Savannah are playing with Savannah's new airplane by the pool,0 0 0 0 6 0 2 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Savannah show/3s Tutu how high he can make his airplane fly.,Savannah shows Tutu how high he can make his airplane fly,0 3 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Tutu : grab/3s the airplane out of Savannah/z hand/s.,Tutu grabs the airplane out of Savannah's hands,0 3 0 0 0 0 2 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,she accidentally drop/3s it in the water.,she accidentally drops it in the water,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Savannah get/3s really mad.,Savannah gets really mad,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,they call the lifeguard.,they call the lifeguard,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,(he ha) he has to think for a while before : he figure/3s out : how[-:] to get the plane.,he has to think for a while before he figures out how to get the plane,0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Tutu : say/3s : she accidentally drop/ed it in the water.,Tutu says she accidentally dropped it in the water,0 3 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,the lifeguard stretch/3s as far as he can.,the lifeguard stretches as far as he can,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,but he can not get it.,but he can not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Savannah start/3s cry/ing : really : loud.,Savannah starts crying really loud,0 3 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Tutu feel/3s really sorry.,Tutu feels really sorry,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,then a lady come/3s by with a net.,then a lady comes by with a net,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,(she is said) she say/3s : she would get the plane out for them.,she says she would get the plane out for them,0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,the lady : put/3s the net into the water : and fish/3s the plane out.,the lady puts the net into the water and fishes the plane out,0 0 3 0 0 0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,then she hand/3s it to Savannah.,then she hands it to Savannah,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,and (he) he is really happy.,and he is really happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,he hug/3s his : plane.,he hugs his plane,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,and (s) : Tutu is happy too.,and Tutu is happy too,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,(dog was) Dog was make/ing : a sandcastle.,Dog was making a sandcastle,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,and Rabbit was fill/ing a bucket with sand.,and Rabbit was filling a bucket with sand,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Rabbit : lift/3s the bucket and dump/3s all the sand out onto Dog/z : finish/ed castle.,Rabbit lifts the bucket and dumps all the sand out onto Dog's finished castle,0 3 0 0 0 3 0 0 0 0 0 2 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,(r) Rabbit did not realize that all the sand he had put into the bucket : was so heavy that it would : destroy the : castle.,Rabbit did not realize that all the sand he had put into the bucket was so heavy that it would destroy the castle,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Dog start/3s to cry.,Dog starts to cry,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Rabbit feel/3s very sorry.,Rabbit feels very sorry,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Dog and Rabbit are go/ing to a picnic.,Dog and Rabbit are going to a picnic,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,(they) they are each bring/ing their own picnic basket.,they are each bringing their own picnic basket,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,: Rabbit dump/3s : (all of the) : all of his food out of his basket : while Dog take/3s thing/s out one at a time.,Rabbit dumps all of his food out of his basket while Dog takes things out one at a time,0 3 0 0 0 0 0 0 0 0 0 0 3 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Rabbit (hur) hurry/3s to eat all his food.,Rabbit hurries to eat all his food,0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Dog : be/ing polite : eat/3s it very slowly.,Dog being polite eats it very slowly,0 6 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,soon Rabbit get/3s a stomachache.,soon Rabbit gets a stomachache,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,fortunately a doctor is walk/ing down the road.,fortunately a doctor is walking down the road,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Dog : run/3s over and tell/3s : the doctor about Rabbit.,Dog runs over and tells the doctor about Rabbit,0 3 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Dog show/3s her (where th) where Rabbit is : and tell/3s her : he has a bad stomachache.,Dog shows her where Rabbit is and tells her he has a bad stomachache,0 3 0 0 0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,the doctor say/3s open wide and say ah.,the doctor says open wide and say ah,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,soon : Rabbit feel/3s better.,soon Rabbit feels better,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Dog is (push/ing a wagon) : [~_or] pull/ing a wagon : with a balloon tie/ed to it.,Dog is pulling a wagon with a balloon tied to it,0 0 6 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Rabbit come/3s walk/ing down the road and say/3s : what a nice balloon you have there.,Rabbit comes walking down the road and says what a nice balloon you have there,0 3 6 0 0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,he start/3s untie/ing it.,he starts untying it,0 3 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Dog do/3s not think that is a very good idea.,Dog does not think that is a very good idea,0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Rabbit let/3s go.,Rabbit lets go,0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,and the balloon start/3s float/ing away.,and the balloon starts floating away,0 0 0 3 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,they both run and try and catch it.,they both run and try and catch it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Dog get/3s very[!] mad.,Dog gets very mad,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Rabbit watch/3s the balloon go up and up.,Rabbit watches the balloon go up and up,0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,they see : a balloon salesman : carry/ing a whole : set of balloon/s.,they see a balloon salesman carrying a whole set of balloons,0 0 0 0 0 6 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Rabbit run/3s up to him and ask/3s can I have one of those balloon/s please?,Rabbit runs up to him and asks can I have one of those balloons please,0 3 0 0 0 0 3 0 0 0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,the : balloon : salesman pull/3s down a balloon : that say/3s balloon/s five cent/s.,the balloon salesman pulls down a balloon that says balloons five cents,0 0 0 3 0 0 0 0 3 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,(dog) neither Dog or Rabbit have five cent/s.,neither Dog or Rabbit have five cents,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Rabbit run/3s up to his mother and say/3s : can I have ten cent/s to buy two balloon/s?,Rabbit runs up to his mother and says can I have ten cents to buy two balloons,0 3 0 0 0 0 0 3 0 0 0 0 1 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,the mother look/3s puzzle/ed.,the mother looks puzzled,0 0 3 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,(why would) she think/3s why would they need a balloon?,she thinks why would they need a balloon,0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,she do/3s it anyway.,she does it anyway,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,so : Dog and[!] Rabbit get a balloon.,so Dog and Rabbit get a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Dog : and Rabbit : are very happy that they both have balloon/s.,Dog and Rabbit are very happy that they both have balloons,0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,(um : a li) a[EW:an] elephant and a giraffe : (are gonna um) are play/ing : around a pool.,a elephant and a giraffe are playing around a pool,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and they take a ball.,and they take a ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and : by accident (it ffff) (they) they drop/ed it in the pool.,and by accident they dropped it in the pool,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,so the giraffe jump/3s in and (um) try/3s to get the ball.,so the giraffe jumps in and tries to get the ball,0 0 0 3 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and he get/3s it.,and he gets it,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and the elephant is really happy.,and the elephant is really happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,(and then they) and then they can play catch.,and then they can play catch,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,(an elephant) an elephant and a giraffe want to go swim/ing.,an elephant and a giraffe want to go swimming,0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and (the) the elephant is run/ing.,and the elephant is running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and there[EW:they] is[EW:are] not allow/ed to be run/ing along the pool because you might slip and fall.,and there is not allowed to be running along the pool because you might slip and fall,0 0 0 0 4 0 0 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and it is slippery.,and it is slippery,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and she fall/3s and hurt/3s her knee.,and she falls and hurts her knee,0 0 3 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and the giraffe (um) run/3s and tell/3s the lifeguard.,and the giraffe runs and tells the lifeguard,0 0 0 3 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,the lifeguard come/3s.,the lifeguard comes,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and he see/3s that the elephant is cry/ing.,and he sees that the elephant is crying,0 0 3 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,so he put/3s the bandaid (on um) on her cut.,so he puts the bandaid on her cut,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,(and she) and the lifeguard put/3s her down (on the) on a bench.,and the lifeguard puts her down on a bench,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and the lifeguard tell/3s her not to run.,and the lifeguard tells her not to run,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,(um) the giraffe get/3s a new (toy air) toy airplane.,the giraffe gets a new toy airplane,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and the elephant ask/3s if she can play with it.,and the elephant asks if she can play with it,0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and the giraffe said sure.,and the giraffe said sure,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and he show/3s : her how to play with it.,and he shows her how to play with it,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,so she try/3s.,so she tries,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,(and : sh) and[-:] she is run/ing with it.,and she is running with it,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,but by accident she drop/ed it in the water.,but by accident she dropped it in the water,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and it sink/3s.,and it sinks,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and the giraffe is really mad.,and the giraffe is really mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and he tell/3s the lifeguard.,and he tells the lifeguard,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and the lifeguard is disappoint/ed.,and the lifeguard is disappointed,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and the elephant say/3s she did by accident.,and the elephant says she did by accident,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,(the) and the lifeguard try/3s to get it.,and the lifeguard tries to get it,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and he can not reach it.,and he can not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and then : it start/3s to sink.,and then it starts to sink,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and the giraffe start/3s to cry.,and the giraffe starts to cry,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,then : (um : um : um :) the elephant/z mom come/3s with a net.,then the elephant's mom comes with a net,0 0 2 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,(and) and she try/3s to scoop it out.,and she tries to scoop it out,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,(and) : and she get/3s it.,and she gets it,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and she give/3s it back to the : giraffe.,and she gives it back to the giraffe,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,the giraffe hug/3s his toy airplane.,the giraffe hugs his toy airplane,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and the elephant is happy for the giraffe.,and the elephant is happy for the giraffe,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,there was a rabbit and a dog.,there was a rabbit and a dog,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and they love/ed to play in the sandbox.,and they loved to play in the sandbox,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,the dog is make/ing a castle.,the dog is making a castle,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and the rabbit is (um) fill/ing a bucket so he can add on to the castle.,and the rabbit is filling a bucket so he can add on to the castle,0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and he dump/3s it on the dog/z castle.,and he dumps it on the dog's castle,0 0 3 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and the dog : (um) do/3s not like that.,and the dog does not like that,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and she is sad.,and she is sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,she start/3s to cry because that was her castle.,she starts to cry because that was her castle,0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,(there was) the doggy and the rabbit are go/ing to go for a picnic in a forest.,the doggy and the rabbit are going to go for a picnic in a forest,0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and the rabbit love/3s carrot/s.,and the rabbit loves carrots,0 0 0 3 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,so he unpack/3s all his food.,so he unpacks all his food,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and he find/3s a carrot.,and he finds a carrot,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and he : start/3s to eat it.,and he starts to eat it,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and the dog unpack/3s her food.,and the dog unpacks her food,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and she eat/3s her sandwich (and her juice box) and drink/3s her juice box.,and she eats her sandwich and drinks her juice box,0 0 3 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,(the rabbit eat) the rabbit eat/3s so fast (that he is) that his tummy hurt/3s.,the rabbit eats so fast that his tummy hurts,0 0 3 0 0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,(so the dog go/3s and) and there is a doctor walk/ing in the forest.,and there is a doctor walking in the forest,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and the dog rush/3s over to tell the doctor.,and the dog rushes over to tell the doctor,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and : she pull/3s the doctor over to help the rabbit.,and she pulls the doctor over to help the rabbit,0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and she say/3s that (sh) the rabbit ate too much.,and she says that the rabbit ate too much,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and then the rabbit went home with the doctor.,and then the rabbit went home with the doctor,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and he felt better.,and he felt better,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,(one day a rabbit and a dog are play/ing in a park) one day : a dog is play/ing in the park.,one day a dog is playing in the park,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,(and : he) and she see/3s her friend rabbit.,and she sees her friend rabbit,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,(and she show/3s) and the rabbit point/3s to her balloon.,and the rabbit points to her balloon,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and he ask/3s if he can play with it.,and he asks if he can play with it,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,(and : the rabbit say/3s) and : the dog is think/ing about it.,and the dog is thinking about it,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,(and) : and (sh) before she could say anything the rabbit untie/ed the balloon.,and before she could say anything the rabbit untied the balloon,0 0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and it start/ed float/ing up into the air.,and it started floating up into the air,0 0 4 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,(and there were) and (um) the dog (s) got really mad at the (um) rabbit.,and the dog got really mad at the rabbit,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and the rabbit see/3s (um more) (a balloo) a person with balloon/s.,and the rabbit sees a person with balloons,0 0 0 3 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and he ask/3s if he could buy one.,and he asks if he could buy one,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,but he check/3s in his pocket/s.,but he checks in his pockets,0 0 3 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,(and there is noth) (and there is) and he has no money.,and he has no money,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,(and the) (and the balloon) and the guy with the balloon say/3s you will have to have money to buy one.,and the guy with the balloon says you will have to have money to buy one,0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,so : the rabbit run/3s and ask/3s the doctor : and ask/3s (if he could buy uh) if she could buy a balloon for the dog.,so the rabbit runs and asks the doctor and asks if she could buy a balloon for the dog,0 0 0 3 0 3 0 0 0 3 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and she give/3s the money to the (um :) guy with the balloon/s.,and she gives the money to the guy with the balloons,0 0 3 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and they each get a balloon.,and they each get a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and then they are both happy.,and then they are both happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,one day[!] : her[EW:she] is[EW:was] bounce/ing a ball.,one day her is bouncing a ball,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,then the giraffe came and say|say[EW:said] hi.,then the giraffe came and say hi,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,they want to[-:] swim.,they want to swim,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,the giraffe[!] jump/ed[-:][!] in the water.,the giraffe jumped in the water,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,then he swam and swam and swam and swam and swam.,then he swam and swam and swam and swam and swam,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,the ball[-:] keep/3s go/ing far[EW:further].,the ball keeps going far,0 0 3 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,so he pass|pass[EW:passed] the ball.,so he pass the ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,and then he[-:] just stay|stay[EW:stayed] in the water.,and then he just stay in the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,then he came out.,then he came out,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,and then her[EW:she] [-:] want|want[EW:wanted] to play with him[!].,and then her want to play with him,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,that is it [+_bch].,that is it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,one day[-:] : the giraffe and[!] the elephant : want to jumping[EW:jump] off the board.,one day the giraffe and the elephant want to jumping off the board,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,so the elephant went jump[EW:jumping] [!] off the board.,so the elephant went jump off the board,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,and then her[EW:she] [!] run|run[EW:ran] so[-:][!] fast.,and then her run so fast,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,then her[-:][!] : ouch [EU]!,then her ouch,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,(sher) then : him[EW:he] said : (why) why were you run[EW:running] so fast.,then him said why were you run so fast,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,you can not.,you can not,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,you *are suppose/ed to walk [EU].,you supposed to walk,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,and then her[EW:she] start/ed cry/ing.,and then her started crying,0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,then the lifeguard came.,then the lifeguard came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,and then : her daddy : put a bandaid on.,and then her daddy put a bandaid on,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,and then that is[?] (uh) : feel[!] better [EU].,and then that is feel better,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,so[-:] : her[EW:she] just sit|sit[EW:sat] down and : be quiet[?] [~_/kwat/] [EU].,so her just sit down and be quiet,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,that is it [+_bch].,that is it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,one day[-:] : her[EW:she] said[-:] : I want to play with the airplane.,one day her said I want to play with the airplane,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,then him[EW:he] [-:][!] : flied|fly[EW:flew] it.,then him flied it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,and then : her[EW:she] grab|grab[EW:grabbed] [!] it from him[!].,and then her grab it from him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,and then her[EW:she] throwed|throw[EW:threw] it in the water.,and then her throwed it in the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,and then : him[EW:he] got mad at her.,and then him got mad at her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,and then : so a lifeguard : try|try[EW:tried] and get|get[EW:got] (the air) the pool [EU].,and then so a lifeguard try and get the pool,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,so he[-:] did not got|get[EW:get] the[-:] airplane.,so he did not got the airplane,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,so him[EW:he] just : jump/ed[!] in the water : and got it.,so him just jumped in the water and got it,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,(and then) : and then him[EW:he] : *is try/ing to get it [EU].,and then him trying to get it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,and then : him[EW:he] (try/ing) : cry/ed.,and then him cried,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,so[-:] her[EW:she] got (uh th) the[-:] fish/ing net to fish[!] the : airplane out.,so her got the fishing net to fish the airplane out,0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,so her[EW:she] got[!] it.,so her got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,then they gives|give[EW:gave] *it to the boy [EU].,then they gives to the boy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,and then him[EW:he] said : mmm I love it now!,and then him said mmm I love it now,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,that is it [+_bch].,that is it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,(he wa) (he made) a happy[!] : little bunny he : (made[?] happy) made a sandcastle with her.,a happy little bunny he made a sandcastle with her,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,they need to[:_needa] start work/ing[!].,they need to start working,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,(then) and[-:] then him[EW:he] (s) (scoop|scoop[EW:scoops] off) scoop[EW:scoops] *it off[?] and put|put[EW:puts] it in a bucket[!] [EU].,and then him scoop off and put it in a bucket,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,and they put *it on top[!] of the sandcastle[!] [EU].,and they put on top of the sandcastle,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,it all[-:] broke now.,it all broke now,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,and then (h) : her[EW:she] [!] have|have[EW:has] to cry[!].,and then her have to cry,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,then he is stand|stand[EW:standing] [-:] still.,then he is stand still,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,that is it [+_bch].,that is it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,one day : her[EW:she] came and say|say[EW:said] hi[!] to the boy.,one day her came and say hi to the boy,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,then they were start/ing to eat[-:] lunch on the ground.,then they were starting to eat lunch on the ground,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,(then he) (then[-:]) : and then him[EW:he] [-:][!] : was (um) full[-:].,and then him was full,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,then he got dizzy.,then he got dizzy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,and then he call|call[EW:called] the doctor.,and then he call the doctor,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,then the doctor help|help[EW:helped].,then the doctor help,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,he make|make[EW:made] him more dizzy[!].,he make him more dizzy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,and then : he walk|walk[EW:walked] (with the[-:] ma) with the man (and a) : and another girl or boy [~_I_do_n(o)t_know].,and then he walk with the man and another girl or boy,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,that is it [+_bch].,that is it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,her[EW:she] is pull/ing a balloon.,her is pulling a balloon,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,him said hi.,him said hi,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,then he want/3s to sit in the[-:] : wagon : with the balloon.,then he wants to sit in the wagon with the balloon,0 0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,and then he[-:] : took off[-:] the balloon!,and then he took off the balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,then it fly|fly[EW:flew] : up[!] in the air.,then it fly up in the air,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,then[-:] : her[EW:she] got mad[-:].,then her got mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,then : her[EW:she] (have|have[EW:has] to) have|have[EW:has] to buy another balloon[!].,then her have to buy another balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,(then he said[-:]) then he went old man old man : I want a balloon [~_laughs].,then he went old man old man I want a balloon,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,old man old man number five : balloon.,old man old man number five balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,old man old man I want one too.,old man old man I want one too,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,thank you old man old man.,thank you old man old man,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,doctor said old man old man thank you.,doctor said old man old man thank you,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,give me a balloon.,give me a balloon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,the old man old man have|have[EW:has] two balloon/s.,the old man old man have two balloons,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,then old man old man : give|give[EW:gives] the two balloon/s [EU].,then old man old man give the two balloons,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,that is it [+_bch].,that is it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,(um) there was a little giraffe and a little elephant.,there was a little giraffe and a little elephant,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,: (he wa) there was a ball in the water.,there was a ball in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,the giraffe want/ed to play with it.,the giraffe wanted to play with it,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,he jump/ed in.,he jumped in,0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and he swam to it.,and he swam to it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,he gave it to the elephant.,he gave it to the elephant,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,then the elephant look/ed at him.,then the elephant looked at him,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and he look/ed back.,and he looked back,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,(um the llll) the little elephant want/ed to go to the diving board.,the little elephant wanted to go to the diving board,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and she did not see the sign that said no run/ing.,and she did not see the sign that said no running,0 0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and she ran to there.,and she ran to there,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and she said let us go on the diving board.,and she said let us go on the diving board,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and then she ran.,and then she ran,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and she slip/ed.,and she slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,: and she slip/ed.,and she slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and she hurt her knee really bad.,and she hurt her knee really bad,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and the elephant lifeguard came run/ing.,and the elephant lifeguard came running,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and the giraffe was sit/ing beside her.,and the giraffe was sitting beside her,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,(um the bi) the little elephant : was : so sad that she could not stop.,the little elephant was so sad that she could not stop,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and the lifeguard elephant gave her a bandaid.,and the lifeguard elephant gave her a bandaid,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,(and they) and they had to sit down : on a bench.,and they had to sit down on a bench,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and the lifeguard was really mad at her.,and the lifeguard was really mad at her,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,(and she said) and he said can not you see the sign that say/3s no run/ing?,and he said can not you see the sign that says no running,0 0 0 0 0 0 0 0 0 0 3 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,the little giraffe had an airplane.,the little giraffe had an airplane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and the (um) little elephant want/ed to hold it.,and the little elephant wanted to hold it,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and he did not let her.,and he did not let her,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,: (but then sh) but then he grab/ed it from her.,but then he grabbed it from her,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,: and then she drop/ed it in the water.,and then she dropped it in the water,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and she felt really sad for what she has|have[EW:had] done.,and she felt really sad for what she has done,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and then the little giraffe got so mad at her.,and then the little giraffe got so mad at her,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,then : she tiptoe/ed.,then she tiptoed,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and then the lifeguard : spot/ed her.,and then the lifeguard spotted her,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,(and the little) and (the) the little elephant lifeguard was go/ing to [~_gonna] try to reach it for her.,and the little elephant lifeguard was going to try to reach it for her,0 0 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and he try/ed it.,and he tried it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,but he could not reach it.,but he could not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,: (so she was ss) and the little giraffe was : sad.,and the little giraffe was sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and the girl lifeguard had (a bi) (a long neck and) a long net.,and the girl lifeguard had a long net,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and she was go/ing to [~_gonna] : get (um) it out.,and she was going to get it out,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and she reach/ed.,and she reached,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and she caught it.,and she caught it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,(and the ll) and the little giraffe was so[-:] happy.,and the little giraffe was so happy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and then he said thank you.,and then he said thank you,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,the little bunny was going to help [~_um_what_is_that_animal__that_(i)s_in_the_sandbox] [~_EXA:_it's_your_story] (um) kangaroo to make it/z (um ss) sandcastle.,the little bunny was going to help kangaroo to make it's sandcastle,0 0 0 0 0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,(and she) and the bunny was get/ing some sand out (to make : the) to add some more sand for the sandcastle.,and the bunny was getting some sand out to add some more sand for the sandcastle,0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and then he dump/ed it all on.,and then he dumped it all on,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,then it broke.,then it broke,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,(an) and then : the kangaroo was sad.,and then the kangaroo was sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,the kangaroo and the bunny were walk/ing for a picnic.,the kangaroo and the bunny were walking for a picnic,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and then they saw each other.,and then they saw each other,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and then they both got out for a picnic.,and then they both got out for a picnic,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and the bunny (was : um) was look/ing at : the kangaroo.,and the bunny was looking at the kangaroo,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and then : (he ate too much) the bunny ate too much candy.,and then the bunny ate too much candy,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and he fell down.,and he fell down,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and he had a : stomachache.,and he had a stomachache,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and he felt really wheezy.,and he felt really wheezy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,(and the mother um) and the doctor rabbit (je) was walk/ing around.,and the doctor rabbit was walking around,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and the kangaroo came run/ing and say/ing doctor doctor.,and the kangaroo came running and saying doctor doctor,0 0 0 0 6 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,my friend bunny : is really wheezy.,my friend bunny is really wheezy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and he ate too much candy.,and he ate too much candy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and : the kangaroo pull/ed her towards.,and the kangaroo pulled her towards,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,then she is like you should not eat too much candy.,then she is like you should not eat too much candy,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,make/3s you really sick.,makes you really sick,3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and you get really wheezy.,and you get really wheezy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,(and they) and they were both happy at[EW:with] each other.,and they were both happy at each other,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,then they both left.,then they both left,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,the bunny and the kangaroo.,the bunny and the kangaroo,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,the kangaroo had a balloon tie/ed on it/z wagon.,the kangaroo had a balloon tied on it's wagon,0 0 0 0 0 4 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,: but then the bunny was go/ing to[:_gonna] untie it.,but then the bunny was going to untie it,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,: then the bunny untie/ed it.,then the bunny untied it,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and then it went fly/ing up in the sky.,and then it went flying up in the sky,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and they both could not catch it.,and they both could not catch it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and the kangaroo was so so angry at[EW:with] him.,and the kangaroo was so so angry at him,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and the bunny saw the balloon bunny.,and the bunny saw the balloon bunny,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,(and he) and he said can I get a balloon?,and he said can I get a balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,(it is five) and he said it is five cent/s.,and he said it is five cents,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and he did not have any.,and he did not have any,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and then he (re) walk/ed up to the : doctor rabbit.,and then he walked up to the doctor rabbit,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and he said do you have five cent/s for a balloon?,and he said do you have five cents for a balloon,0 0 0 0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,(and he) and the bunny rabbit gave him (one) (the) the five cent/s.,and the bunny rabbit gave him the five cents,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and then he got the balloon for her and him a balloon.,and then he got the balloon for her and him a balloon,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,once upon a time there was an elephant and a : horse.,once upon a time there was an elephant and a horse,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the horse and the elephant : saw a ball in the pool.,the horse and the elephant saw a ball in the pool,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the horse jump/ed into the pool and swam to the ball.,the horse jumped into the pool and swam to the ball,0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the horse got the ball.,the horse got the ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,(and the elep) and the horse brought it to the elephant.,and the horse brought it to the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and the elephant got the ball.,and the elephant got the ball,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the elephant was really happy and smile/ed.,the elephant was really happy and smiled,0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and the horse was all wet.,and the horse was all wet,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,once upon a time there was an elephant and a horse.,once upon a time there was an elephant and a horse,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the horse had a cloth with it.,the horse had a cloth with it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,they were at a pool.,they were at a pool,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and the elephant want/ed to jump into the pool where the diving board is.,and the elephant wanted to jump into the pool where the diving board is,0 0 0 4 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the elephant ran.,the elephant ran,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,(the horse) the horse ran after the elephant.,the horse ran after the elephant,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the elephant scrape/ed her knee because she was run/ing.,the elephant scraped her knee because she was running,0 0 4 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and there was no run/ing allow/ed.,and there was no running allowed,0 0 0 0 6 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the lifeguard came.,the lifeguard came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and the elephant was cry/ing.,and the elephant was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and the horse sat down : beside the elephant.,and the horse sat down beside the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the lifeguard got a bandaid and put the bandaid on : the elephant/z knee.,the lifeguard got a bandaid and put the bandaid on the elephant's knee,0 0 0 0 0 0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and the elephant said it really really hurt.,and the elephant said it really really hurt,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the elephant : sat down on the bench.,the elephant sat down on the bench,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and the lifeguard : took the[-:] elephant to the bench.,and the lifeguard took the elephant to the bench,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the lifeguard said no run/ing.,the lifeguard said no running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and the elephant : knew not to run.,and the elephant knew not to run,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,once upon a time there was an elephant and a horse.,once upon a time there was an elephant and a horse,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and the horse had an airplane to play with.,and the horse had an airplane to play with,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the elephant want/ed to play with the airplane too.,the elephant wanted to play with the airplane too,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the horse was drive/ing it around and make/ing (a) airplane sound/s.,the horse was driving it around and making airplane sounds,0 0 0 6 0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and : the elephant really want/ed to play.,and the elephant really wanted to play,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the elephant grab/ed the airplane from the horse.,the elephant grabbed the airplane from the horse,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and the horse said ah give me back my airplane.,and the horse said ah give me back my airplane,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,then the elephant drop/ed : the[-:] airplane into the water.,then the elephant dropped the airplane into the water,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and they could not get it.,and they could not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,now the horse got really mad at the elephant.,now the horse got really mad at the elephant,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the lifeguard came.,the lifeguard came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and it was in the middle of the pool.,and it was in the middle of the pool,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and they ask/ed if he could get it out.,and they asked if he could get it out,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and the lifeguard said okay I will try and get it out for you.,and the lifeguard said okay I will try and get it out for you,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the lifeguard could not reach.,the lifeguard could not reach,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,(then) then the horse start/ed to cry.,then the horse started to cry,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,then a girl in a bathing suit : that was the elephant/z mom : had a net with her.,then a girl in a bathing suit that was the elephant's mom had a net with her,0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and she got the (pl) airplane out of the water.,and she got the airplane out of the water,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and the horse was nice and happy again.,and the horse was nice and happy again,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the horse was really happy.,the horse was really happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,he hug/ed the plane.,he hugged the plane,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,so was the : elephant.,so was the elephant,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,once upon a time there was a dog and a rabbit.,once upon a time there was a dog and a rabbit,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and they : were in a sandbox play/ing.,and they were in a sandbox playing,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,(one) one day they start/ed to make : a sandcastle.,one day they started to make a sandcastle,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the bunny put : a bucket of : sand on the sandcastle.,the bunny put a bucket of sand on the sandcastle,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and the sandcastle melt/ed.,and the sandcastle melted,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and they all start/ed to cry.,and they all started to cry,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the dog really cry/ed.,the dog really cried,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,but the bunny did not.,but the bunny did not,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,(he was mad) he was sad though.,he was sad though,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,once upon a time there was a dog and a bunny.,once upon a time there was a dog and a bunny,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,(they were) they had basket/s.,they had baskets,0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,they were go/ing to go on a picnic.,they were going to go on a picnic,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,(they start/ed) the bunny start/ed to get real[!][EW:really] hungry.,the bunny started to get real hungry,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,he dump/ed out all his food : while the dog was just take/ing his food out very carefully.,he dumped out all his food while the dog was just taking his food out very carefully,0 4 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the bunny ate all[!] his food.,the bunny ate all his food,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and he[!] was very (hungr) stuff/ed.,and he was very stuffed,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the dog ate very slow : so she[!] would not get a stomachache.,the dog ate very slow so she would not get a stomachache,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,then the bunny felt seasick.,then the bunny felt seasick,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and he was about to throw up.,and he was about to throw up,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,then the dog ran to : a doctor.,then the dog ran to a doctor,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,then the doctor came with the dog (to) to the bunny.,then the doctor came with the dog to the bunny,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the (b) doctor took care of the bunny.,the doctor took care of the bunny,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,bunny was feel/ing a little better.,bunny was feeling a little better,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and the dog was happy again.,and the dog was happy again,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the dog had a balloon and a (wa) wagon.,the dog had a balloon and a wagon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the balloon was tie/ed to the wagon.,the balloon was tied to the wagon,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,then the bunny untie/ed the balloon off the wagon.,then the bunny untied the balloon off the wagon,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,then the balloon flew away.,then the balloon flew away,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the dog was very[!] mad at the bunny.,the dog was very mad at the bunny,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,they saw some balloon/s.,they saw some balloons,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and the bunny ran to the balloon man.,and the bunny ran to the balloon man,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and he ask/ed could we have a balloon?,and he asked could we have a balloon,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,but he had no money.,but he had no money,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the dog start/ed run/ing after him.,the dog started running after him,0 0 4 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the bunny felt sad.,the bunny felt sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,so did the dog.,so did the dog,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,then the bunny ran to his mom : and ask/ed if they could have some money.,then the bunny ran to his mom and asked if they could have some money,0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,so they ask/ed.,so they asked,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and they ask/ed.,and they asked,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and then she finally gave them some money.,and then she finally gave them some money,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and they both bought : two balloon/s : for ten cent/s.,and they both bought two balloons for ten cents,0 0 0 0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,so now they both had balloon/s.,so now they both had balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,[~_Well] a giraffe (uh) see/3s an elephant play/ing with : a ball[-:].,a giraffe sees an elephant playing with a ball,0 0 3 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and the ball go/3s into a swimming pool.,and the ball goes into a swimming pool,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,: and the giraffe go/3s into the water and swim/3s towards it : and (um) get/3s the ball and give/3s it back to the elephant.,and the giraffe goes into the water and swims towards it and gets the ball and gives it back to the elephant,0 0 0 3 0 0 0 0 3 0 0 0 3 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and he smile/3s.,and he smiles,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and he is drip/ing wet.,and he is dripping wet,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,(Well) the elephant and the giraffe are at the swimming pool.,the elephant and the giraffe are at the swimming pool,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and there is a sign that say/3s no run/ing.,and there is a sign that says no running,0 0 0 0 0 0 3 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and the elephant go/3s run/ing : towards the pool and point/3s to the diving board : and slip/3s while run/ing.,and the elephant goes running towards the pool and points to the diving board and slips while running,0 0 0 3 6 0 0 0 0 3 0 0 0 0 0 3 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,she fall/3s and scrape/3s her knee in the pool.,she falls and scrapes her knee in the pool,0 3 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and (um) the giraffe get/3s the lifeguard.,and the giraffe gets the lifeguard,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and he put/3s a bandage on her knee : and help/3s her sit down on a bench.,and he puts a bandage on her knee and helps her sit down on a bench,0 0 3 0 0 0 0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and then he frown/3s and point/3s to the sign that said no run/ing [EU].,and then he frowns and points to the sign that said no running,0 0 0 3 0 3 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,(Well) : the giraffe has a little model airplane with him.,the giraffe has a little model airplane with him,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,he[-:] : (um) has the airplane in his hand and : kind of move/3s his hand/s around and stick/s his tongue out and say/3s [~_makes__airplane_sound].,he has the airplane in his hand and kind of moves his hands around and sticks his tongue out and says,0 0 0 0 0 0 0 0 0 0 3 0 1 0 0 1 0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,then (the) the elephant take/3s the airplane from him : and drop/3s it into the pool[-:].,then the elephant takes the airplane from him and drops it into the pool,0 0 0 3 0 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and the giraffe (ge) look/3s mad at the elephant.,and the giraffe looks mad at the elephant,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and then[-:] the lifeguard see/3s[!] the airplane.,and then the lifeguard sees the airplane,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and the (um) : elephant she explain/3s to him what happen/ed.,and the elephant she explains to him what happened,0 0 0 0 3 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and he reach/3s out to reach it.,and he reaches out to reach it,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and he can not reach it.,and he can not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and the giraffe start/3s to cry.,and the giraffe starts to cry,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,: then another elephant come/3s and (um) has a net with her.,then another elephant comes and has a net with her,0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,she put/3s the net in the water and try/3s to scoop up the airplane.,she puts the net in the water and tries to scoop up the airplane,0 3 0 0 0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and she get/3s it out for the giraffe[!].,and she gets it out for the giraffe,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,then he is happy again and hold/3s the (um) airplane up : towards : his cheek.,then he is happy again and holds the airplane up towards his cheek,0 0 0 0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,[~_Well] : it look/3s like a bunny is play/ing with : another type of animal in a sandbox : I think maybe a dog.,it looks like a bunny is playing with another type of animal in a sandbox I think maybe a dog,0 3 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and they are build/ing a sandcastle.,and they are building a sandcastle,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and the bunny pour/3s : (ss) a bucket of sand onto the sandcastle.,and the bunny pours a bucket of sand onto the sandcastle,0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and : they both do not look a little too happy.,and they both do not look a little too happy,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,then : the (um) dog : cry/3s.,then the dog cries,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and the bunny look/3s a little guilty.,and the bunny looks a little guilty,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,[~_well] (it is the) it is the bunny and dog again.,it is the bunny and dog again,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and they are go/ing on a picnic.,and they are going on a picnic,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,the bunny has carrot/s : a[-:] sandwich and look/3s like (junk food and :) : junk food.,the bunny has carrots a sandwich and looks like junk food,0 0 0 1 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and the dog has only taken out a : sandwich.,and the dog has only taken out a sandwich,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and the : bunny has finish/ed his[!] lunch.,and the bunny has finished his lunch,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and the dog has only : start/ed a juice box and : eat/ing it/z sandwich.,and the dog has only started a juice box and eating it's sandwich,0 0 0 0 0 4 0 0 0 0 6 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and : the bunny is feel/ing dizzy from eat/ing too fast (I think) : and faint/3s.,and the bunny is feeling dizzy from eating too fast and faints,0 0 0 0 6 0 0 6 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,so the dog get/3s : a doctor rabbit : and (gets it) (get/3s the doctor to look at the : well) he is bring/ing the doctor to the bunny.,so the dog gets a doctor rabbit and he is bringing the doctor to the bunny,0 0 0 3 0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and : the doctor is examine/ing the bunny.,and the doctor is examining the bunny,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,(and : he wa) and the little bunny walk/3s with the doctor.,and the little bunny walks with the doctor,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,[~_well] the dog has (a) : a wagon with a balloon tie/ed to it.,the dog has a wagon with a balloon tied to it,0 0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and the bunny come/3s walk/ing : to greet it.,and the bunny comes walking to greet it,0 0 0 3 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and he look/3s at the balloon.,and he looks at the balloon,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,so he start/3s to untie[-:] the balloon from the : wagon : and let/3s the balloon go.,so he starts to untie the balloon from the wagon and lets the balloon go,0 0 3 0 0 0 0 0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and : the dog get/3s : mad.,and the dog gets mad,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and then there is a bunny with more balloon/s.,and then there is a bunny with more balloons,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and : the dog still look/3s mad.,and the dog still looks mad,0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and the (um) bunny (um) see/3s those balloon/s with the : man and start/3s walk/ing towards it.,and the bunny sees those balloons with the man and starts walking towards it,0 0 0 3 0 1 0 0 0 0 3 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and he buy/3s a balloon.,and he buys a balloon,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,: and he show/3s him that the balloons are (five dollar) five cent/s a balloon.,and he shows him that the balloons are five cents a balloon,0 0 3 0 0 0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,so then (the little) the dog come/3s to see : what is go/ing on with the bunny and : the man.,so then the dog comes to see what is going on with the bunny and the man,0 0 0 0 3 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and the : bunny (go/3s to) go/3s to the doctor : and probably : ask/3s for five cent/s : to buy a balloon because he has no money.,and the bunny goes to the doctor and probably asks for five cents to buy a balloon because he has no money,0 0 0 3 0 0 0 0 0 3 0 0 1 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,so the : doctor buy/3s two balloon/s : for : ten cent/s five cent/s per balloon.,so the doctor buys two balloons for ten cents five cents per balloon,0 0 0 3 0 1 0 0 1 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and they are both pretty happy.,and they are both pretty happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,(There is a) [~_CHI:_is_that_a_donkey_EXA:_what_do_you_think__it_is_CHI:_it_looks_like_a_donkey] a donkey want/3s to play with the elephant.,a donkey wants to play with the elephant,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and they are by a swimming pool.,and they are by a swimming pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and he see/3s the elephant.,and he sees the elephant,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and there is a note that say/3s something or like that.,and there is a note that says something or like that,0 0 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the ball is bounce/ing really fast.,and the ball is bouncing really fast,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and it is hard to see.,and it is hard to see,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the elephant is wear/ing a girl/z[-:] dress and a bow tie.,and the elephant is wearing a girl's dress and a bow tie,0 0 0 0 6 0 2 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the donkey is wear/ing a hat : pant/s : and a shirt.,and the donkey is wearing a hat pants and a shirt,0 0 0 0 6 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the ball went in the (uh) : pool.,and the ball went in the pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the donkey was kind of squirt/ing the water out of his mouth for he can get the ball [EU].,and the donkey was kind of squirting the water out of his mouth for he can get the ball,0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and he got the ball to the elephant.,and he got the ball to the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,then she was happy.,then she was happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,then : he pass/ed the ball up to her.,then he passed the ball up to her,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,then she is happy[-:].,then she is happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,then the donkey went out of the water.,then the donkey went out of the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,then he is wet.,then he is wet,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and I can see some : water fall/ing from him when he was in the swimming pool.,and I can see some water falling from him when he was in the swimming pool,0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,Now they went to a swim/ing pool where you would jump off (where a diving thing) where you kind of jump on.,Now they went to a swimming pool where you would jump off where you kind of jump on,0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,there is a swimming pool underneath it.,there is a swimming pool underneath it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,then the kid/s feel like they want to go swim/ing because they have swimming stuff on.,then the kids feel like they want to go swimming because they have swimming stuff on,0 0 1 0 0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and she say/3s[-:] I want to go on there first.,and she says I want to go on there first,0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,then you are go/ing on there second.,then you are going on there second,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,then she is walk/ing to the diving[-:] stick thing where you jump off.,then she is walking to the diving stick thing where you jump off,0 0 0 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and she was walk/ing to the diving stick.,and she was walking to the diving stick,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and she was go/ing to go on it and then jump on the swimming pool or something.,and she was going to go on it and then jump on the swimming pool or something,0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,(sh) she is[-:] walk/ing too fast.,she is walking too fast,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and she is kind of slip/ing.,and she is kind of slipping,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and she is kind of do/ing a spin around almost.,and she is kind of doing a spin around almost,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the donkey I think it is go/ing to help her.,and the donkey I think it is going to help her,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,she hurt her knee when she just fell.,she hurt her knee when she just fell,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the donkey was kind of sad.,and the donkey was kind of sad,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and he was go/ing to get someone to help her.,and he was going to get someone to help her,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,the donkey is right beside her.,the donkey is right beside her,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and she is cry/ing.,and she is crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,(s uh elephant) a boy elephant or something is go/ing to help her.,a boy elephant or something is going to help her,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,she does not really like the pain when the bandaid kind of hurt/3s her.,she does not really like the pain when the bandaid kind of hurts her,0 0 0 0 0 0 0 0 0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,then she can not go in the swimming pool with a bandaid on.,then she can not go in the swimming pool with a bandaid on,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,then it was on her knee.,then it was on her knee,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and she was okay.,and she was okay,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,she had to sit down for a little bit.,she had to sit down for a little bit,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,then they start/ed talk/ing to her.,then they started talking to her,0 0 4 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,the sign says no run/ing.,the sign says no running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,or you kind of get hurt.,or you kind of get hurt,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,Her leg is fine.,Her leg is fine,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and they went back to the swimming pool.,and they went back to the swimming pool,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the donkey had to bring his toy.,and the donkey had to bring his toy,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and she want/ed to go swim/ing instead of run/ing.,and she wanted to go swimming instead of running,0 0 4 0 0 6 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and she stare/ed at the airplane.,and she stared at the airplane,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the donkey kind of put his tongue on the side of him.,and the donkey kind of put his tongue on the side of him,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and I can see some line/s from the airplane when he was play/ing with it.,and I can see some lines from the airplane when he was playing with it,0 0 0 0 0 1 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and she is still stare/ing at it.,and she is still staring at it,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and her eye/s kind of look funny : the elephant/z eyes.,and her eyes kind of look funny the elephant's eyes,0 0 1 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,now she gots|get[EW:gets] it.,now she gots it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and[-:] the donkey say/3s that is my[!] airplane not your/z.,and the donkey says that is my airplane not your's,0 0 0 3 0 0 0 0 0 2 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,(and) and she said I want to play with it.,and she said I want to play with it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and then she start/ed play/ing with it.,and then she started playing with it,0 0 0 4 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,then she kind of get/ing happy.,then she kind of getting happy,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,but not the donkey.,but not the donkey,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,now his airplane is in the : swim/ing pool.,now his airplane is in the swimming pool,0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,www.,www,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,then[-:] the donkey is go/ing to go back in the water or swimming pool or something like that.,then the donkey is going to go back in the water or swimming pool or something like that,0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,(now hi) now the donkey is upset what the elephant did.,now the donkey is upset what the elephant did,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and (he) (she kin) she is really a little bit sad.,and she is really a little bit sad,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the donkey is a lot of mad [EU].,and the donkey is a lot of mad,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,now[-:] the (ma) the elephant person already come|come[EW:came] back.,now the the elephant person already come back,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,now both of them are sad.,now both of them are sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and that one is kind of a little bit upset : from that elephant.,and that one is kind of a little bit upset from that elephant,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,: [~_sighs] now the airplane is sink/ing to the bottom of the swimming pool.,now the airplane is sinking to the bottom of the swimming pool,0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and they had to try to solve the problem.,and they had to try to solve the problem,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,or they have to hurry.,or they have to hurry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,or that airplane might be sink/ing.,or that airplane might be sinking,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,or it might be hard to see.,or it might be hard to see,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and they think that person is go/ing to try to get it.,and they think that person is going to try to get it,0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,but he might fall because it is a little bit far from him.,but he might fall because it is a little bit far from him,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,now the donkey is cry/ing because his airplane is sink/ing.,now the donkey is crying because his airplane is sinking,0 0 0 0 6 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,now a lady with a net : she is go/ing to get it with a swimming pool net : (tha) get it out.,now a lady with a net she is going to get it with a swimming pool net get it out,0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,she is go/ing to go swim/ing because she has a bathing suit on her.,she is going to go swimming because she has a bathing suit on her,0 0 6 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,she gots|get[EW:gets] it with the net.,she gots it with the net,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,she is try/ing to be careful try/ing not to lose it.,she is trying to be careful trying not to lose it,0 0 6 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,then she gots|get[EW:gets] it.,then she gots it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,she give/3s it to the boy.,she gives it to the boy,0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and then : she said you are welcome.,and then she said you are welcome,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and (she) he said thank you.,and he said thank you,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and he is hug/ing his airplane.,and he is hugging his airplane,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and now both of them are happy.,and now both of them are happy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,they are go/ing to play and try not get in the swimming pool again.,they are going to play and try not get in the swimming pool again,0 0 6 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,Now there is a bunny rabbit.,Now there is a bunny rabbit,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the bunny rabbit want/3s to play in the sandbox.,and the bunny rabbit wants to play in the sandbox,0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and (the dog is play/ing) the : girl : dog is play/ing in the sandbox.,and the girl dog is playing in the sandbox,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and she has a : pony tail on her tail.,and she has a pony tail on her tail,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and[-:] she has a shovel like the bunny rabbit.,and she has a shovel like the bunny rabbit,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and she say/3s hey do you want to [~_wanna] play with me?,and she says hey do you want to play with me,0 0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the dog is wear/ing a dress.,and the dog is wearing a dress,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and it is a girl.,and it is a girl,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,she has a[-:] leash around her neck.,she has a leash around her neck,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and she is (buh) (be) (biling) build/ing a castle.,and she is building a castle,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the (bundy) bunny is try/ing to build something else with a bucket with sand in it.,and the bunny is trying to build something else with a bucket with sand in it,0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and[-:] he is go/ing to do something like pour/ing sand onto the castle.,and he is going to do something like pouring sand onto the castle,0 0 0 6 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and[-:] he put too much sand on it.,and he put too much sand on it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and it kind of [~_kinda] wreck/ed the castle.,and it kind of wrecked the castle,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,now he is sorry because he wreck/ed her castle.,now he is sorry because he wrecked her castle,0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,Now the dog is go/ing for a picnic.,Now the dog is going for a picnic,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and even the bunny is do/ing the same thing as her.,and even the bunny is doing the same thing as her,0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,he is go/ing to [~_gonna] follow her anywhere.,he is going to follow her anywhere,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,but she is not wear/ing her leash : today.,but she is not wearing her leash today,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,the bunny is kind of [~_kinda] sweat/ing.,the bunny is kind of sweating,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and he is : kind of [~_kinda] happy.,and he is kind of happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and his tongue is stick/ing out.,and his tongue is sticking out,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and I can see some water fall/ing from him.,and I can see some water falling from him,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and he has a carrot in his hand and even a pie or something.,and he has a carrot in his hand and even a pie or something,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,even the dog she is a little bit happy.,even the dog she is a little bit happy,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,but he gots[EW:has] more food than her.,but he gots more food than her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,then she took her sandwich out.,then she took her sandwich out,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,then she start/ed stare/ing at the bunny rabbit.,then she started staring at the bunny rabbit,0 0 4 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,now the bunny rabbit is full but not the dog.,now the bunny rabbit is full but not the dog,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,she did not ate|eat[EW:eat] all of her/z I think.,she did not ate all of her's I think,0 0 0 0 0 0 2 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,now his stomach hurt/3s.,now his stomach hurts,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the dog is kind of sad.,and the dog is kind of sad,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and I can see some brown line/s from the bunny/z head.,and I can see some brown lines from the bunny's head,0 0 0 0 0 0 1 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and I can see some bunny/z (uh) bubble/s right beside him.,and I can see some bunny's bubbles right beside him,0 0 0 0 0 2 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,there is a doctor kind of [~_kinda] help/3s[-:] people [EU].,there is a doctor kind of helps people,0 0 0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and it is a (person do um) (a do uh) lady bunny rabbit.,and it is a lady bunny rabbit,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and she is (a uh) help/3s (uh) one of those (one/s) animal/s.,and she is helps one of those animals,0 0 0 3 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the bunny he is lay/ing down.,and the bunny he is laying down,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and I can see some air from him.,and I can see some air from him,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,now the dog is pull/ing her to the boy : is kind (of) of ate too much of his [EU].,now the dog is pulling her to the boy is kind of ate too much of his,0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,the[-:] bubble/s are make/ing him sick because he has ate too much.,the bubbles are making him sick because he has ate too much,0 1 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,(now[-:]) [~_yeah] now he feel/3s fine.,now he feels fine,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and he is go/ing to [~_gonna] go home with his mom or something.,and he is going to go home with his mom or something,0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,Now I can see some flower/s on the grass.,Now I can see some flowers on the grass,0 0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and I can see the dog.,and I can see the dog,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,she is[-:] : pull/ing her[-:] pail with a balloon on it.,she is pulling her pail with a balloon on it,0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,she has her dress on with her bow tie on her now.,she has her dress on with her bow tie on her now,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the bunny is feel/ing fine.,and the bunny is feeling fine,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,he is wear/ing his short/s his shirt.,he is wearing his shorts his shirt,0 0 6 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,he is run/ing to her.,he is running to her,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,the bunny really want/3s her balloon (because she).,the bunny really wants her balloon,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,he want/3s it because (he got her) (her) she[!] got it first.,he wants it because she got it first,0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and he was not there.,and he was not there,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,then that is why he did not got one.,then that is why he did not got one,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and he want/3s her/z.,and he wants her's,0 0 3 2 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and she is say/ing hey that is my balloon not your/z.,and she is saying hey that is my balloon not your's,0 0 0 6 0 0 0 0 0 0 2 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the bunny is not listen/ing.,and the bunny is not listening,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and he is make/ing it unloose to take it.,and he is making it unloose to take it,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,now the bunny let go of it.,now the bunny let go of it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and now the balloon is fly/ing away from that bunny what he did.,and now the balloon is flying away from that bunny what he did,0 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,now he is still stare/ing at the balloon.,now he is still staring at the balloon,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and she is upset because he let her balloon go.,and she is upset because he let her balloon go,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and she is really mad.,and she is really mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and she is shake/ing so mad.,and she is shaking so mad,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,she drop/ed her[-:] pail[-:] (pool or) thing.,she dropped her pail thing,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and then : she is mad.,and then she is mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the other one is sad.,and the other one is sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,now there is a bunny : with a hat on (with a).,now there is a bunny with a hat on,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,now she is still mad.,now she is still mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the bunny want/3s a balloon.,and the bunny wants a balloon,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and that he is happy [EU].,and that he is happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and he do/3s not know her balloon flew up in the air.,and he does not know her balloon flew up in the air,0 0 3 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and (she) the bunny is run/ing up to him to get a balloon.,and the bunny is running up to him to get a balloon,0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,now (the girl) the girl dog she is go/ing to [~_gonna] pull her pail to someone else.,now the girl dog she is going to pull her pail to someone else,0 0 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and she is still mad.,and she is still mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the bunny rabbit is happy.,and the bunny rabbit is happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and he want/3s a balloon.,and he wants a balloon,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the big bunny one is stare/ing at him.,and the big bunny one is staring at him,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the : little bunny (is) want/3s a balloon.,and the little bunny wants a balloon,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and he is point/ing at one.,and he is pointing at one,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,that one is five : (s) dollar/s.,that one is five dollars,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,he does not have any five dollar/s for it.,he does not have any five dollars for it,0 0 0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,that is why you know the bunny is upset.,that is why you know the bunny is upset,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and that one is sad.,and that one is sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and he want/ed that balloon.,and he wanted that balloon,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,but (you can not) he do/3s not have any money for it.,but he does not have any money for it,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,(now the dog and the girl) (the girl dog and the boy dog) (boy bunny rabbit) [~_I_mean] now the (bunny) big bunny is a little bit sad because they do not have any money to get a balloon.,now the big bunny is a little bit sad because they do not have any money to get a balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,(now that doctor) now the girl : is stand/ing by (the big bunny) the (boy) : man bunny.,now the girl is standing by the man bunny,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and (the) the little bunny boy he is : run/ing to the nurse.,and the little bunny boy he is running to the nurse,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and he touch/ed her.,and he touched her,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,(and he want/ed money to get) and he is go/ing to ask her for some money to get some balloon/s.,and he is going to ask her for some money to get some balloons,0 0 0 6 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and (he is) she is give/ing some money to them.,and she is giving some money to them,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and then they are get/ing their own balloon.,and then they are getting their own balloon,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the girl is wag/ing her tail because she is get/ing a balloon.,and the girl is wagging her tail because she is getting a balloon,0 0 0 0 6 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,(now) : both of them are happy now.,both of them are happy now,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and (the bunny ra) the nurse bunny is happy too.,and the nurse bunny is happy too,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(um) : there is a[EW:an] elephant who is play/ing with a ball.,there is a elephant who is playing with a ball,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and it drop/ed it.,and it dropped it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and it said (um) could I play?,and it said could I play,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,but then it went in the water.,but then it went in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(and um) and (the : um :) he went in the water.,and he went in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,shall I turn?,shall I turn,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and (the) : the elephant got the ball.,and the elephant got the ball,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(and um) and he smile/ed.,and he smiled,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and so did the elephant.,and so did the elephant,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and the end [+_bch].,and the end,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(um : uh) a[EW:an] elephant [EU].,a elephant,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and he (went) went go/ing in the water [EU].,and he went going in the water,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and (um) they said let us go in that thing and jump in the water.,and they said let us go in that thing and jump in the water,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,but (um she w) she ran.,but she ran,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and she fell.,and she fell,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and she hurt her knee.,and she hurt her knee,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and (um) : her big brother came : and (um) put a bandaid on : and (um) lift/ed her up : and said you can not get off that bench.,and her big brother came and put a bandaid on and lifted her up and said you can not get off that bench,0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(um : the um) : (this um) the elephant was there.,the elephant was there,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,then this boy came with a[EW:an] airplane.,then this boy came with a airplane,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and she said could I play with the airplane ?,and she said could I play with the airplane,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(then um) (then it w) (then he) then he said I will go first.,then he said I will go first,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and it went [~_flying_noises].,and it went,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(but) but then she try/ed.,but then she tried,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and she went like this [~_flying_noises].,and she went like this,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,but : then it went in the water.,but then it went in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,both times you were show/ing me with your hands when you went [~_flying_noises].,both times you were showing me with your hands when you went,0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and (um : it) it went in the water.,and it went in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and it was go/ing to sink.,and it was going to sink,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and he got mad : at the elephant.,and he got mad at the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and then her big brother came.,and then her big brother came,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(and) and she said could you reach it big brother ?,and she said could you reach it big brother,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and (um) he try/ed.,and he tried,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,but it went far.,but it went far,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(um but then it) (but then it) then this (um el) other elephant came to catch (i) the airplane.,then this other elephant came to catch the airplane,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,"and it went sink, sink, sink/ing.",and it went sink sink sinking,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,but : then she caught it.,but then she caught it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and (um) she brought it up.,and she brought it up,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and then she gave it to him.,and then she gave it to him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,then he hug/ed it.,then he hugged it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and that is the end [+_bch].,and that is the end,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,there was a dog and a bunny : play/ing.,there was a dog and a bunny playing,0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and (um : then um) then the bunny came and said could I : build a sandcastle with you?,and then the bunny came and said could I build a sandcastle with you,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,but then it was up before he went.,but then it was up before he went,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(then um) (then they) : then the rabbit (um) put sand in the bucket.,then the rabbit put sand in the bucket,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and they pour/ed it : on.,and they poured it on,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,turn?,turn,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(then) then it broke : down.,then it broke down,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and he is like this.,and he is like this,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(and he) (and he was) and he was try/ing to fix it.,and he was trying to fix it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,you show/ed me the face he was pull/ing.,you showed me the face he was pulling,0 4 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,the (um) dog try/ed to fix it.,the dog tried to fix it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,but it would not go up.,but it would not go up,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and that is the end [+_bch].,and that is the end,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(um) (there) there is the dog who had a picnic basket.,there is the dog who had a picnic basket,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and (um) then here came : a bunny with a picnic basket.,and then here came a bunny with a picnic basket,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(and um) (and they are) and he was go/ing to eat.,and he was going to eat,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,but he ate too much.,but he ate too much,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,but : he got a tummyache.,but he got a tummyache,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and (um) he was too full.,and he was too full,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and (um) : there was a spinny thing around his head.,and there was a spinny thing around his head,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(and he asks) and the dog ask/3s [~_pronounced_/aeks/] his mom to come here.,and the dog asks his mom to come here,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and (um) she saw (the rab) her son.,and she saw her son,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and (um) they are go/ing home.,and they are going home,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and (um : they um : were) then the bunny left.,and then the bunny left,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,now it is the end [+_bch].,now it is the end,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(um) there was a dog who had a balloon.,there was a dog who had a balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(and um) and (then uh) then came the rabbit : and (um) said[?] hey ( could) could I pull on it?,and then came the rabbit and said hey could I pull on it,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and then it went.,and then it went,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(then) then he untie/ed it.,then he untied it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(um) and he let goed[EW:go].,and he let goed,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and it went high(*2) [~_gestures].,and it went high,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and then the dog got mad.,and then the dog got mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(then um) then : the rabbit said hey lookit.,then the rabbit said hey lookit,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,there is a man : who is full of balloon/s.,there is a man who is full of balloons,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and he said could I have a balloon?,and he said could I have a balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(and um :) [~_EXA:_turn] and he said this is five : buck/s.,and he said this is five bucks,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(but) [~_you_can_turn_now] (but) but they could not buy a balloon.,but they could not buy a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,then he was go/ing to go ask [~_pronounced_/aeks/] his mother if he could have some : money : (and um) to buy a balloon : for the dog.,then he was going to go ask his mother if he could have some money to buy a balloon for the dog,0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(um) and she gave money : to him.,and she gave money to him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and (um) they both had a balloon.,and they both had a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and that is the end [+_bch].,and that is the end,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,I saw an elephant (and) (and a) and a horse.,I saw an elephant and a horse,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,(then I) then I ran and ran.,then I ran and ran,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,but he trip/ed : (on the) on the way because I was run/ing.,but he tripped on the way because I was running,0 0 4 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and my mom and dad told me I can not run because (it) there is some ice on there.,and my mom and dad told me I can not run because there is some ice on there,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,then : (he) I saw a swimming pool that I can go in.,then I saw a swimming pool that I can go in,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,(so) so that is where : the elephant and the horse want/ed to go too.,so that is where the elephant and the horse wanted to go too,0 0 0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and so they jump/ed and jump/ed try/ed to pedal [EU].,and so they jumped and jumped tried to pedal,0 0 0 4 0 4 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,but something was in the water.,but something was in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,he reach/ed for to give the ball to him [EU].,he reached for to give the ball to him,0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,but he can not reach.,but he can not reach,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,he has to get up then jump.,he has to get up then jump,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,they were chilly.,they were chilly,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,so they decide to put on (their) : their clothes and brush their teeth.,so they decide to put on their clothes and brush their teeth,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,That is the end [+_bch].,That is the end,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,One time they saw a pool.,One time they saw a pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and they saw a jump/ing thing.,and they saw a jumping thing,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,so they climb/ed way up then jump/ed in the water.,so they climbed way up then jumped in the water,0 0 4 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,it was far away so that they could not reach it.,it was far away so that they could not reach it,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,they had to jump.,they had to jump,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,(then he wo) then the elephant and the horsie was[EW:were] scare/ed because (they might) they might float down (if some) if something had a pool [EU].,then the elephant and the horsie was scared because they might float down if something had a pool,0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,so they decide/ed (to go back) to go back.,so they decided to go back,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and then she almost slip/ed on the way walk/ing.,and then she almost slipped on the way walking,0 0 0 0 4 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,(then he) then he was walk/ing.,then he was walking,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and the elephant was walk/ing.,and the elephant was walking,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,then they hurt [EU].,then they hurt,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,then : (he) (he) he said maybe we can put a bandaid on.,then he said maybe we can put a bandaid on,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and so they did.,and so they did,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and so they all (had a) had a wonderful day.,and so they all had a wonderful day,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and then they decide/ed to have (another) another surprise about this story.,and then they decided to have another surprise about this story,0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,then they put *a bandaid (on) on the way sit/ing on the bench [EU].,then they put bandaid on the way sitting on the bench,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and it feeled|feel[EW:felt] all better.,and it feeled all better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and (the ele) and the big dad said you should never go out with yourself (until) until we come with you [EU].,and and the big dad said you should never go out with yourself until we come with you,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,This elephant feeled|feel[EW:felt] all better.,This elephant feeled all better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,(and) and him[EW:he] : did : too.,and him did too,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and so they all both laugh/ed [EU].,and so they all both laughed,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and they said let us go in the water !,and they said let us go in the water,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and so : he said no[!] I want to play with my airplane.,and so he said no I want to play with my airplane,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,(and) and he grab/ed it because he want/ed to play with it too.,and he grabbed it because he wanted to play with it too,0 0 4 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,(and) and he put it in the water.,and he put it in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,(and it) and it was float/ing down.,and it was floating down,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,(so he) so the horse had to jump in and get it.,so the horse had to jump in and get it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,then : he was very mad that (his air) his airplane was float/ing down.,then he was very mad that his airplane was floating down,0 0 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,(his m) his mom said : (you) you can go in the pool.,his mom said you can go in the pool,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,but do not ever put airplane/s in the pool.,but do not ever put airplanes in the pool,0 0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,then : his dad (was) (was very) was very[!] happy because he is glad.,then his dad was very happy because he is glad,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,but (he is : mad) he is very mad now because (he) this elephant told him he throwed|throw[EW:threw] it into the water.,but he is very mad now because this elephant told him he throwed it into the water,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,that is why he was mad.,that is why he was mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and he try/ed to reach (by) by get/ing it.,and he tried to reach by getting it,0 0 4 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,but he could not.,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,they were cry/ing because they had to jump in.,they were crying because they had to jump in,0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and then : the airplane start/ed to go up (and) or maybe down.,and then the airplane started to go up or maybe down,0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,but they were still[!] cry/ing.,but they were still crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,this little elephant said : hey I think I can get it with my net.,this little elephant said hey I think I can get it with my net,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,so he[!] tried.,so he tried,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and he got it.,and he got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and (he got it) he got it.,and he got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and then they were all happy.,and then they were all happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,that is the last time.,that is the last time,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,do not put it in.,do not put it in,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and then they *were both happy and enjoyed theirselves[EW:themselves] [EU].,and then they both happy and enjoyed theirselves,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,so : they said : how about that swim?,so they said how about that swim,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and he said oh[-:] : we have to dig out some sand.,and he said oh we have to dig out some sand,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,so : they did.,so they did,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,(and) : and there was a castle way out there that had more sand.,and there was a castle way out there that had more sand,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and they ask/ed for some.,and they asked for some,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and he said let us build a castle too.,and he said let us build a castle too,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and so they build|build[EW:built] it : build|build[EW:built] it and build|build[EW:built] it until there was no castle : because somebody moved it in : to *an apartment building [EU].,and so they build it build it and build it until there was no castle because somebody moved it in to apartment building,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and so they just made it.,and so they just made it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and xx (had a do) (had t) had each three window/s.,and had each three windows,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and there was a door.,and there was a door,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,but it fell down because the rain was start/ing to come.,but it fell down because the rain was starting to come,0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,but then it stop/ed.,but then it stopped,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and so they start/ed to fix it again.,and so they started to fix it again,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and they were chilly.,and they were chilly,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and this (little) little rabbit was cry/ing because he did not know how[!] his castle was made.,and this little rabbit was crying because he did not know how his castle was made,0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,That is the end [+_bch].,That is the end,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,I saw two rabbit/s.,I saw two rabbits,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and I was walk/ing down on the same track.,and I was walking down on the same track,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and I was ask/ing them can I come.,and I was asking them can I come,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and they said sure.,and they said sure,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,so I forgot my picnic [~_pronounced_'pinkink'].,so I forgot my picnic,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and it ran fast and (ran) ran back to there.,and it ran fast and ran back to there,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and so I did.,and so I did,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and so (they) (they hardly) they hardly had their castle.,and so they hardly had their castle,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,so they decid/ed to take a lunch.,so they decided to take a lunch,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and they had our card/s : then put them back : then started to go for another picnic.,and they had our cards then put them back then started to go for another picnic,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,but no picnic there.,but no picnic there,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,they start/ed to take a nap.,they started to take a nap,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and this little pig start/ed to drink the juice.,and this little pig started to drink the juice,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,then he waked|wake[EW:woke] up.,then he waked up,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,suddenly he bump/ed his head on the ground.,suddenly he bumped his head on the ground,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,then : he tip/ed his picnic : basket over.,then he tipped his picnic basket over,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,but : little rabbit said I want more juice.,but little rabbit said I want more juice,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,see there is no more juice there.,see there is no more juice there,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,oh there is still more.,oh there is still more,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and so he said it is gone.,and so he said it is gone,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,(and he) and he had to learn to : know.,and he had to learn to know,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and then : he said come on!,and then he said come on,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,come on doctor!,come on doctor,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,come on!,come on,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,go ahead and finish the story [~_New_track_begins_due_to_power_failure].,go ahead and finish the story,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,so he could not pull him.,so he could not pull him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,so he just left him and ran[-:] and ran.,so he just left him and ran and ran,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,he told (doctor) (doctor) this doctor (is not plas) it is plastic.,he told this doctor it is plastic,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and so : he felleded|fall[EW:fell] down again.,and so he felleded down again,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,then he fell down.,then he fell down,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,then he start/ed to give him a tweek like a bandaid on his head.,then he started to give him a tweek like a bandaid on his head,0 0 4 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,then he feeled|feel[EW:felt] much better.,then he feeled much better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,but (this ma) this doctor was not plastic anymore.,but this doctor was not plastic anymore,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and so he begin|begin[EW:began] to get tire/ed.,and so he begin to get tired,0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,once they saw a sign.,once they saw a sign,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and they : said that is put (uh) our balloon [EU].,and they said that is put our balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and let us[?] write a sign on our balloon.,and let us write a sign on our balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,but he said no that is not a good idea.,but he said no that is not a good idea,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,then he start/ed to : pull it and start/ed to ride home.,then he started to pull it and started to ride home,0 0 4 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,why do not you go home [EU]?,why do not you go home,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and I will tell a secret.,and I will tell a secret,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and why do not we surprise [EU].,and why do not we surprise,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and so : he made a balloon : by hisself[EW:himself].,and so he made a balloon by hisself,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,(and) and he blowed|blow[EW:blew] and blowed|blow[EW:blew] it until it was get/ing small.,and he blowed and blowed it until it was getting small,0 0 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and so he start/ed to get inside.,and so he started to get inside,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and nobody push/ed them.,and nobody pushed them,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,so that is why he had hard push/ing this rabbit [EU].,so that is why he had hard pushing this rabbit,0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,then he try/ed to reach for the balloon.,then he tried to reach for the balloon,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,but it was float/ing way up in the air that they could not reach it.,but it was floating way up in the air that they could not reach it,0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,(they were) (they) he was so mad : (cause he) (cause) he was so mad (that he) that he cut (the balloo) the balloon of (this) this plastic.,he was so mad he was so mad that he cut the balloon of this plastic,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,then he said hello to Mrs Ballooner.,then he said hello to Mrs Ballooner,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and he said would you like to borrow some balloon[EW:balloons]?,and he said would you like to borrow some balloon,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and he said yes.,and he said yes,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,(but this then) : (this towards little bunny look/ed past) way down there (was a big) was a big man carry/ing a bunch of balloon/s.,way down there was a big man carrying a bunch of balloons,0 0 0 0 0 0 0 6 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,then he went down there and say/3s hello Mr Ballooner.,then he went down there and says hello Mr Ballooner,0 0 0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,can I borrow a balloon?,can I borrow a balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,of course.,of course,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,so he take|take[EW:took] one and snap/ed it towards the hanger.,so he take one and snapped it towards the hanger,0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and they were sit/ing down on that bench.,and they were sitting down on that bench,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and he said I am finish/ed.,and he said I am finished,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,where is the garbage?,where is the garbage,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,right there.,right there,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and so they both : beginned|begin[EW:began] [EU].,and so they both beginned,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,(and he) (and he s) and he said can I have a balloon?,and he said can I have a balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and he said (you) (he) your brother (al) already got a balloon.,and he said your brother already got a balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and so [~_yawns] he beginned|begin[EW:began] : (to) : to (just gra) just get one and say please.,and so he beginned to just get one and say please,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,but he could not.,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,this man got mad because he took one.,this man got mad because he took one,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and he said why yes you can take one.,and he said why yes you can take one,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and so he take|take[EW:took] one.,and so he take one,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and they went home.,and they went home,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and both happys [EU].,and both happys,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,: and then he was happy forever.,and then he was happy forever,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,the doctor was happy : because he want/ed a balloon too.,the doctor was happy because he wanted a balloon too,0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,but one balloon was float/ing up in the air.,but one balloon was floating up in the air,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and he told his mother doctor this balloon is float/ing away.,and he told his mother doctor this balloon is floating away,0 0 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and he said I will try to reach it (with a fl) with a[EW:an] airplane.,and he said I will try to reach it with a airplane,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and so : they beginned|begin[EW:began] to say happy [EU].,and so they beginned to say happy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and (he was) the doctor was : happy that he had a balloon.,and the doctor was happy that he had a balloon,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,so they all beginned|begin[EW:began] [EU].,so they all beginned,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,Giraffe and Elephant were : friend/s.,Giraffe and Elephant were friends,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,and (whe) while they were play/ing : their ball got stuck in the water.,and while they were playing their ball got stuck in the water,0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,(uh giraffe went to i) Giraffe jump/ed into the pool : to get the : ball : back[~!_laughs].,Giraffe jumped into the pool to get the ball back,0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,and : while he was still in the pool he gave it to Elephant.,and while he was still in the pool he gave it to Elephant,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,Elephant was really proud of Giraffe[~!_laughs].,Elephant was really proud of Giraffe,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,Elephant and Giraffe went to the[-:] swimming pool.,Elephant and Giraffe went to the swimming pool,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,Elephant ask/ed : Giraffe if he want/ed to go on the diving board.,Elephant asked Giraffe if he wanted to go on the diving board,0 4 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,Giraffe said yes.,Giraffe said yes,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,and they went.,and they went,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,but Elephant slip/ed.,but Elephant slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,Elephant had hurt her knee.,Elephant had hurt her knee,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,Giraffe quickly ran to help[~!_laughs].,Giraffe quickly ran to help,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,then the lifeguard came over : to help.,then the lifeguard came over to help,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,he put a bandaid on Elephant/z knee.,he put a bandaid on Elephant's knee,0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,the lifeguard help/ed : Elephant (go to) get to a bench.,the lifeguard helped Elephant get to a bench,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,and then the lifeguard point/ed at a sign that said no run/ing.,and then the lifeguard pointed at a sign that said no running,0 0 0 0 4 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,"so these are all about the elephant and the giraffe, okay [+_bch].",so these are all about the elephant and the giraffe okay,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,"that is right, okay, go ahead.",that is right okay go ahead,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,Elephant and Giraffe went to the pool.,Elephant and Giraffe went to the pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,and Giraffe brought his[-:] toy airplane.,and Giraffe brought his toy airplane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,he[-:] show/ed : Elephant how to fly it.,he showed Elephant how to fly it,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,then she snatch/ed it away (fer) from Giraffe : and try/ed to fly it herself.,then she snatched it away from Giraffe and tried to fly it herself,0 0 4 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,then she drop/ed it into the pool.,then she dropped it into the pool,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,Giraffe got very angry.,Giraffe got very angry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,and the lifeguard look/ed worry/ed.,and the lifeguard looked worried,0 0 0 4 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,: Elephant explain/ed how she drop/ed it in.,Elephant explained how she dropped it in,0 4 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,the lifeguard try/ed to reach it.,the lifeguard tried to reach it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,but he could not.,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,Giraffe was very sad.,Giraffe was very sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,then a lady came with a fishing net.,then a lady came with a fishing net,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,she scoop/ed the airplane out of the water.,she scooped the airplane out of the water,0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,she gave it back to Giraffe.,she gave it back to Giraffe,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,he was really happy.,he was really happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,Rabbit and Dog : were play/ing in the sandbox.,Rabbit and Dog were playing in the sandbox,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,they were build/ing a sandcastle.,they were building a sandcastle,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,Rabbit dump/ed a bunch of sand onto the sandcastle.,Rabbit dumped a bunch of sand onto the sandcastle,0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,and it was broken.,and it was broken,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,Dog was sad.,Dog was sad,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,Rabbit and Dog met for a picnic.,Rabbit and Dog met for a picnic,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,they sat down.,they sat down,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,and Hare was a big pig.,and Hare was a big pig,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,while Dog ate her lunch : Rabbit was stuck on the ground because he had eaten so much.,while Dog ate her lunch Rabbit was stuck on the ground because he had eaten so much,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,he felt sick.,he felt sick,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,Dog ran to get the doctor.,Dog ran to get the doctor,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,(she pu) she drag/ed the doctor over to : Rabbit.,she dragged the doctor over to Rabbit,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,the doctor took his temperature.,the doctor took his temperature,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,then she took him home.,then she took him home,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,one day Rabbit and Dog met.,one day Rabbit and Dog met,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,Dog was pull/ing her wagon.,Dog was pulling her wagon,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,there was a balloon on it.,there was a balloon on it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,Rabbit like/ed the balloon.,Rabbit liked the balloon,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,he try/ed to untie it.,he tried to untie it,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,but he let go too soon.,but he let go too soon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,and the balloon float/ed away.,and the balloon floated away,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,dog was very[!] angry.,dog was very angry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,then they saw a rabbit sell/ing more balloon/s.,then they saw a rabbit selling more balloons,0 0 0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,Rabbit ask/ed (to) for a blue one.,Rabbit asked for a blue one,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,(he said that) : the rabbit sell/ing the balloon/s said that they cost five cent/s.,the rabbit selling the balloons said that they cost five cents,0 0 6 0 1 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,Rabbit did not have any money.,Rabbit did not have any money,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,Dog was sad.,Dog was sad,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,and now so was Rabbit.,and now so was Rabbit,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,then they saw the doctor again.,then they saw the doctor again,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,Rabbit went over to her.,Rabbit went over to her,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,he asked if they could borrow five cent/s for Dog.,he asked if they could borrow five cents for Dog,0 0 0 0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,so she did and bought them both a balloon.,so she did and bought them both a balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,they were both really happy.,they were both really happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,one day an elephant and a zebra were bounce/ing a ball.,one day an elephant and a zebra were bouncing a ball,0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and the ball fell in the water.,and the ball fell in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then the zebra swam to get it.,and then the zebra swam to get it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then : he got it and gave it to the elephant.,and then he got it and gave it to the elephant,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and the elephant was really happy.,and the elephant was really happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and the zebra was really happy too.,and the zebra was really happy too,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,a zebra (and a elephant) and an elephant were go/ing swim/ing.,a zebra and an elephant were going swimming,0 0 0 0 0 0 6 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and (um) the elephant was : (um) go/ing to go off the diving board.,and the elephant was going to go off the diving board,0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and she was run/ing to go : to the diving board.,and she was running to go to the diving board,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and she trip/ed : and fell on her knee and hurt herself.,and she tripped and fell on her knee and hurt herself,0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and (um) then she start/ed to cry.,and then she started to cry,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,(and the lifeguard) and the lifeguard put a bandaid on her.,and the lifeguard put a bandaid on her,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and (um) then she could not move it for a little while.,and then she could not move it for a little while,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then she was able to move it.,and then she was able to move it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,one day (an eleph uh) the zebra (and the) and an elephant were play/ing with an airplane.,one day the zebra and an elephant were playing with an airplane,0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and (um) then : (i the) the zebra was play/ing with the airplane.,and then the zebra was playing with the airplane,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,(and the elephant) and (um) the elephant want/ed to try.,and the elephant wanted to try,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then the elephant grab/ed it from the zebra.,and then the elephant grabbed it from the zebra,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then it fell in the water.,and then it fell in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,the zebra got mad at the elephant.,the zebra got mad at the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,(um) and then the lifeguard came.,and then the lifeguard came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,the lifeguard saw the boat.,the lifeguard saw the boat,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,(and um he was) (and he) and the elephant said : could : you (um) get the plane.,and the elephant said could you get the plane,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then he try/ed.,and then he tried,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,but he could not do it.,but he could not do it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and the zebra was cry/ing.,and the zebra was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and the elephant : was kind of sad for him : and kind of guilty.,and the elephant was kind of sad for him and kind of guilty,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then (um : uh) : a (la oh) lady came.,and then a lady came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,(and um) and she had a net to get the airplane.,and she had a net to get the airplane,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and she got it for him.,and she got it for him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and : he was really happy.,and he was really happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then he hug/ed the airplane.,and then he hugged the airplane,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,(uh[-:] : um I can not um) Bill and Harold were build/ing a castle.,Bill and Harold were building a castle,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and (um : b[-:]) Bill (bi) (um sh) shape/ed the castle while Harold dug some sand.,and Bill shaped the castle while Harold dug some sand,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then Harold dump/ed the sand on the castle.,and then Harold dumped the sand on the castle,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and he ruin/ed it.,and he ruined it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and they were both kind of sad.,and they were both kind of sad,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,(and um Harold was a) and Harold was : kind of sad.,and Harold was kind of sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and : Bill did not really care.,and Bill did not really care,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,(and then he start oh uh) and then : he did not look like he was sad.,and then he did not look like he was sad,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,(but) : and then he start/ed to cry.,and then he started to cry,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,he did not look very sad.,he did not look very sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then (um) : Harold : was kind of sad for him.,and then Harold was kind of sad for him,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,(um[-:] Har) Harold and Bill went on a picnic.,Harold and Bill went on a picnic,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and Harold brought a lot of thing/s.,and Harold brought a lot of things,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and he look/ed hungry.,and he looked hungry,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then he ate all of them.,and then he ate all of them,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,(and um he felt) and : Harold felt sick.,and Harold felt sick,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then (um) Bill went to go get a doctor.,and then Bill went to go get a doctor,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then (um) the doctor did not want to come.,and then the doctor did not want to come,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,but then Bill pull/ed her over.,but then Bill pulled her over,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,(and um she) and (um) she said not to eat that much the next time.,and she said not to eat that much the next time,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then he walk/ed home : with (her) the doctor.,and then he walked home with the doctor,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,(um) one day : (Harold) Harold and Bill : went to go play.,one day Harold and Bill went to go play,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and (um) Harold saw that Bill had a balloon on his : (um) wagon.,and Harold saw that Bill had a balloon on his wagon,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then he was try/ing to untie it.,and then he was trying to untie it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and Bill did not want him to.,and Bill did not want him to,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then the balloon flew away.,and then the balloon flew away,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and they were both try/ing to catch it.,and they were both trying to catch it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,but they could not.,but they could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then Bill got mad at Harold.,and then Bill got mad at Harold,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and (um) : he start/ed to shake.,and he started to shake,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then they saw (some) (a balloon) (a g) a person (say um) with some balloon/s.,and then they saw a person with some balloons,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then they went to go get him.,and then they went to go get him,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then (um) : Harold went and chose a balloon for Bill.,and then Harold went and chose a balloon for Bill,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and (um) it said five cent/s on the balloon.,and it said five cents on the balloon,0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,(and um) but Harold did not have that much.,but Harold did not have that much,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then they could not get it.,and then they could not get it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then (um) they saw Harold/z Mom : and asked her for five cent/s.,and then they saw Harold's Mom and asked her for five cents,0 0 0 0 2 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,(and then : they) and then (um) she gave the balloon salesman five cent/s.,and then she gave the balloon salesman five cents,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then : they were both able to get a balloon.,and then they were both able to get a balloon,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,(have a : wwu) elephant have|have[EW:has] a ball.,elephant have a ball,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,(and one ball) and ball swimming pool[EU].,and ball swimming pool,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and (ball) cow (ss) get|get[EW:got] this.,and cow get this,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and (ball) : cow : take|take[EW:took] this ball : for elephant.,and cow take this ball for elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and (eleph) [~_no] have a cow soak/ing wet [EU].,and have a cow soaking wet,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,(have a) : have no runned[EW:running] [EU].,have no runned,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and him[EW:he](walked) got on the diving board.,and him got on the diving board,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,(and a) and : the[-:] elephant and the cow runned|run[EW:ran].,and the elephant and the cow runned,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and him[EW:he] fall|fall[EW:fell] and get him[EW:his] leg [EU].,and him fall and get him leg,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and have a other elephant comed|come[EW:came] [EU].,and have a other elephant comed,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and have|have[EW:has] *a big bandage [EU].,and have big bandage,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,(and : ff) (look/ed out th) and look/ed out on (rad) (ra) cut [EU].,and looked out on cut,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and the elephant put no runned[EW:running] [EU].,and the elephant put no runned,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,(and have) : (xx have) a cow have|have[EW:has] a plane.,a cow have a plane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and : the elephant want some one [EU].,and the elephant want some one,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and him elephant have|have[EW:has] a (cc) cow hand [EU].,and him elephant have a cow hand,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and the airplane *is in the water [EU].,and the airplane in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and the cow take mad [EU].,and the cow take mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and the elephant comed|come[EW:came][~_/kUmEd/].,and the elephant comed,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and the elephant say/3s cow do this.,and the elephant says cow do this,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and (the leph) the elephant try|try[EW:tried] get this [EU].,and the elephant try get this,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and (the) the (cow) cow cry|cry[EW:cried].,and the cow cry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and the other elephant comed|come[EW:came].,and the other elephant comed,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and the other elephant pick/ed the plane up.,and the other elephant picked the plane up,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,(and the : elephant get) the : cow get|get[EW:got] the plane.,the cow get the plane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and the : cow is happy.,and the cow is happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,have two[-:] : rabbit[EW:rabbits] [EU].,have two rabbit,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and (uh) play sand [EU].,and play sand,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and one : have|have[EW:has] *a pail [EU].,and one have pail,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and one (have a) make|make[EW:makes] a sandcastle.,and one make a sandcastle,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and (the) one rabbit throw|throw[EW:threw] a[EW:the] sand on the castle.,and one rabbit throw a sand on the castle,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and the other[?] rabbit *is sad [EU].,and the other rabbit sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and : the rabbit is cry/ing.,and the rabbit is crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,(have) a rabbit have|have[EW:has] a picnic.,a rabbit have a picnic,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and (all ra have) the rabbit have|have[EW:has] a carrot and hot dog : a bun [EU].,and the rabbit have a carrot and hot dog a bun,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and (a) the rabbit is full.,and the rabbit is full,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and him[EW:he] hit/3s (these) these xx [~_yeah].,and him hits these,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and him[EW:he] have|have[EW:has]: another rabbit [EU].,and him have another rabbit,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,a : doctor *is come/ing [EU].,a doctor coming,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and the other rabbit pull/ed him on [EU].,and the other rabbit pulled him on,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and the doctor (ss) say/3s : you want: eat any more [EU]?,and the doctor says you want eat any more,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and the doctor come|come[EW:came] and take|take[EW:took] the other rabbit away.,and the doctor come and take the other rabbit away,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,(have a b) bunny have|have[EW:has] a balloon.,bunny have a balloon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and the other[?] rabbit want|want[EW:wants] one.,and the other rabbit want one,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,(ha) and the bunny tie this off [EU].,and the bunny tie this off,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and the balloon flied|fly[EW:flew] away.,and the balloon flied away,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and all : bunny is mad [EU].,and all bunny is mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and found a lot more[!] balloon[EW:balloons] [EU].,and found a lot more balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and (have one) want|want[EW:wants] one [EU].,and want one,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,(have) : want|want[EW:wants] : one for a other[EW:another] [?] bunny [EU].,want one for a other bunny,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,have (a) two bunny[EW:bunnies] want[-:] one [EU].,have two bunny want one,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and (a) (the bunny) the doctor come|come[EW:came].,and the doctor come,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and (the) the other[?] bunny (w) : put a balloon [EU].,and the other bunny put a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,(have) : buy two [EU].,buy two,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and : all bunny[Ew:bunnies] have one.,and all bunny have one,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,There is this giraffe and the elephant play/ing ball.,There is this giraffe and the elephant playing ball,0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and then : the ball bounce/ed into the water.,and then the ball bounced into the water,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then the giraffe swimmed|swim[EW:swam] and got (the balloon) [~_I_mean] the ball.,then the giraffe swimmed and got the ball,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then : the giraffe gave it to the elephant.,then the giraffe gave it to the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then[!] he was smile/ing.,then he was smiling,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,The elephant and the giraffe (s) (swi) (de) decide to go in the pool.,The elephant and the giraffe decide to go in the pool,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and there is a sign no run/ing in the pool.,and there is a sign no running in the pool,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,(i) there is a sign right in the corner right there.,there is a sign right in the corner right there,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,but they never saw it.,but they never saw it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then the elephant said : come on let us go in the water.,then the elephant said come on let us go in the water,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then : she tumble/ed.,then she tumbled,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,she sprain/ed her ankle : up here.,she sprained her ankle up here,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and she got a[EW:an] elephant to come.,and she got a elephant to come,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then the elephant look/ed at her : knee.,then the elephant looked at her knee,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then the elephant (: was) was help/ing her up.,then the elephant was helping her up,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and the elephant look/ed mad at her.,and the elephant looked mad at her,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,(an) (and she) and she never saw the sign.,and she never saw the sign,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,The elephant and the giraffe were talk/ing to each other.,The elephant and the giraffe were talking to each other,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then the giraffe pull/ed out his play airplane.,then the giraffe pulled out his play airplane,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then the elephant took it away.,then the elephant took it away,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and then she drop/ed it in the water.,and then she dropped it in the water,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then the giraffe[!] got mad at the elephant.,then the giraffe got mad at the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and the plane is sink/ing.,and the plane is sinking,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and then the other elephant look/ed at them.,and then the other elephant looked at them,0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and then the elephant explain/ed.,and then the elephant explained,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then the[-:] guy elephant try/ed to get it.,then the guy elephant tried to get it,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,but he could not reach it.,but he could not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,(then) then the giraffe was cry/ing.,then the giraffe was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and then a lady came and brought a net.,and then a lady came and brought a net,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and the lady got it in the net.,and the lady got it in the net,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then the giraffe was happy.,then the giraffe was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and then the giraffe was proud.,and then the giraffe was proud,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,two bunny/s : (and an eleph) and a dog were play/ing in the park.,two bunnies and a dog were playing in the park,0 1 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and they were build/ing a sandcastle.,and they were building a sandcastle,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and the bunny put sand over the[-:] castle.,and the bunny put sand over the castle,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and the dog made a funny face.,and the dog made a funny face,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,(he ma) he look/3s like a funny dog.,he looks like a funny dog,0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,[~_laughs] he is silly.,he is silly,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,there is only one piece left : on top of the : castle.,there is only one piece left on top of the castle,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then the dog cry/3s : because the castle got[EW:was] broken.,then the dog cries because the castle got broken,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,: the dog and the rabbit were go/ing for a picnic.,the dog and the rabbit were going for a picnic,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and then (they started eat/ing) the rabbit start/ed eat/ing.,and then the rabbit started eating,0 0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then : the rabbit was finish/ed.,then the rabbit was finished,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,(the) then the rabbit (tum hurt) his tummy hurted|hurt[EW:hurt] [EU].,then the rabbit his tummy hurted,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then : the dog went and told the nurse.,then the dog went and told the nurse,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and she pull/ed her.,and she pulled her,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and then[!] she saw (her) the dog.,and then she saw the dog,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,: then[!] : the rabbit was feel/ing better.,then the rabbit was feeling better,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,the rabbit and the dog were walk/ing.,the rabbit and the dog were walking,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and the rabbit saw the balloon on the wagon.,and the rabbit saw the balloon on the wagon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and the rabbit untie/ed it from the wagon.,and the rabbit untied it from the wagon,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and the dog was happy.,and the dog was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and then[!] the rabbit lost it.,and then the rabbit lost it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and the rabbit was cry/ing.,and the rabbit was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and then the dog was mad at the rabbit.,and then the dog was mad at the rabbit,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then there was a bunny : sell/ing balloon/s.,then there was a bunny selling balloons,0 0 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then the bunny : ask/ed[-:] for a balloon.,then the bunny asked for a balloon,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then[!] : he never gave it to him because it cost five dollar/s.,then he never gave it to him because it cost five dollars,0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then they are both not happy.,then they are both not happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then : someone was stand/ing on the : path.,then someone was standing on the path,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and the bunny ran to the bunny.,and the bunny ran to the bunny,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then : he offer/3s some money for a balloon : for his friend.,then he offers some money for a balloon for his friend,0 0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then : he give him some money : for the balloon/s.,then he give him some money for the balloons,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and they are both[!] happy.,and they are both happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,There once lived a : cow and an elephant.,There once lived a cow and an elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,the elephant had some ball/s.,the elephant had some balls,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,one of the ball/s from the elephant (um) drop/ed into a swimming pool.,one of the balls from the elephant dropped into a swimming pool,0 0 0 1 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,then the cow (went to s) went swim/ing to get (the : sw) the ball.,then the cow went swimming to get the ball,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and the cow save/ed : the ball.,and the cow saved the ball,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and then he was under the water.,and then he was under the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,(he gave it) he gave the ball to the elephant.,he gave the ball to the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and the elephant thank/ed him.,and the elephant thanked him,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,she was really happy that her ball was back.,she was really happy that her ball was back,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,The elephant and the cow (are have/ing a) I think they found something in the swimming pool.,The elephant and the cow I think they found something in the swimming pool,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,the elephant talk/ed to the cow.,the elephant talked to the cow,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and she was not watch/ing where she was go/ing.,and she was not watching where she was going,0 0 0 0 6 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and then she slip/ed.,and then she slipped,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,the cow (was try/ing) was run/ing to save her.,the cow was running to save her,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,the elephant hurt her knee.,the elephant hurt her knee,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,the lifeguard came and help/ed the elephant.,the lifeguard came and helped the elephant,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,the lifeguard put a bandage on the elephant.,the lifeguard put a bandage on the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,then the elephant sat on a bench with the lifeguard.,then the elephant sat on a bench with the lifeguard,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,(the ele) the little elephant got in trouble because there was a sign that said no run/ing.,the little elephant got in trouble because there was a sign that said no running,0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,There was an elephant : and a cow.,There was an elephant and a cow,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and the elephant was talk/ing to the cow.,and the elephant was talking to the cow,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,the cow found an airplane.,the cow found an airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and the : cow was make/ing the sound/s (uh).,and the cow was making the sounds,0 0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and then he was : fly/ing the airplane around with his hand.,and then he was flying the airplane around with his hand,0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,then the elephant just grab/ed : the airplane right out of : the cow/z hand (and was) : and look/ed at it.,then the elephant just grabbed the airplane right out of the cow's hand and looked at it,0 0 0 0 4 0 0 0 0 0 0 2 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,but (then while sh) then the cow try/ed to get it back.,but then the cow tried to get it back,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,but it went into the water.,but it went into the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,(and then the cow was mad at the c um) and then the cow was mad at the elephant.,and then the cow was mad at the elephant,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,the lifeguard came.,the lifeguard came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and they were both : amaze/ed.,and they were both amazed,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,the elephant talk/ed to the lifeguard.,the elephant talked to the lifeguard,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,the lifeguard try/ed to get the : (pla) airplane.,the lifeguard tried to get the airplane,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,: but the lifeguard could not get the airplane.,but the lifeguard could not get the airplane,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,then the cow was cry/ing.,then the cow was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and then : another lifeguard : came : and had : (one of those[-:]) : something to pick it up with.,and then another lifeguard came and had something to pick it up with,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,then she (oop) scoop/3s the airplane up with it.,then she scoops the airplane up with it,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and the cow was happy.,and the cow was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,the cow hug/ed the airplane.,the cow hugged the airplane,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and (the) : the elephant was smile/ing.,and the elephant was smiling,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,There was : a bunny and dog play/ing in the sandbox.,There was a bunny and dog playing in the sandbox,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,they both together made a sandcastle.,they both together made a sandcastle,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,the bunny he was : put/ing sand in a pail.,the bunny he was putting sand in a pail,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and then when the : dog was done make/ing the sandcastle the bunny pour/ed : sand : on the sandcastle.,and then when the dog was done making the sandcastle the bunny poured sand on the sandcastle,0 0 0 0 0 0 0 6 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and then : the bunny and[!] the dog were not happy.,and then the bunny and the dog were not happy,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,so then the dog (had the) was cry/ing.,so then the dog was crying,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and he had to make another one.,and he had to make another one,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,a dog and a rabbit : were go/ing on a picnic together.,a dog and a rabbit were going on a picnic together,0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,(the b) the rabbit was a little bit (ra) late.,the rabbit was a little bit late,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,the rabbit (had) was act/ing like a pig and eat/ing everything.,the rabbit was acting like a pig and eating everything,0 0 0 6 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,but the dog was look/ing at him.,but the dog was looking at him,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and then when the dog was start/ed to eat : the rabbit (was a) was all full.,and then when the dog was started to eat the rabbit was all full,0 0 0 0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and the garbage was all around him.,and the garbage was all around him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,then the rabbit had a headache.,then the rabbit had a headache,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,so then (the doctor came to the : dog : and) [~_actually] the dog phone/ed[!] the doctor.,so then the dog phoned the doctor,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and : the doctor came.,and the doctor came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and the dog told the doctor what happen/ed (to the) to the rabbit.,and the dog told the doctor what happened to the rabbit,0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,so then (the dog took him to the doctor and) the dog took him to the doctor.,so then the dog took him to the doctor,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and the doctor was amaze/ed.,and the doctor was amazed,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and then : the doctor took the rabbit somewhere.,and then the doctor took the rabbit somewhere,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,The : girl dog is pull/ing a wagon.,The girl dog is pulling a wagon,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and the rabbit is come/ing.,and the rabbit is coming,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,the rabbit like/3s : the balloon.,the rabbit likes the balloon,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,he want/3s to play with it.,he wants to play with it,0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,the rabbit try/3s to untie the balloon from the wagon.,the rabbit tries to untie the balloon from the wagon,0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,then the (ba) balloon fly/3s away.,then the balloon flies away,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,(they tr) the rabbit and the dog try to get it.,the rabbit and the dog try to get it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,so then (the dog) the girl dog is mad at the rabbit.,so then the girl dog is mad at the rabbit,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and the rabbit is sad.,and the rabbit is sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,then they see : a (bunny) : bunny sell/ing more balloon/s.,then they see a bunny selling more balloons,0 0 0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and the rabbit (co) go/3s and get/3s a balloon.,and the rabbit goes and gets a balloon,0 0 0 3 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,(the balloo) (the rabbit do/3s um) (loo/3s for some) (f look/3s) the rabbit look/3s for five cent/s : to buy a balloon.,the rabbit looks for five cents to buy a balloon,0 0 3 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,the rabbit : do/3s not have five cent/s.,the rabbit does not have five cents,0 0 3 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,so then they are both sad.,so then they are both sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,but then (the doctor come/3s) (the) the doctor come/3s.,but then the doctor comes,0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,the rabbit see/3s the doctor.,the rabbit sees the doctor,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,he go/3s to the doctor.,he goes to the doctor,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,he ask/3s for : five cent/s : so he can buy a balloon.,he asks for five cents so he can buy a balloon,0 3 0 0 1 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,so the doctor give/3s : them ten[!] cent/s so both (of) the dog and[!] the rabbit can have balloon/s.,so the doctor gives them ten cents so both the dog and the rabbit can have balloons,0 0 0 3 0 0 1 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,then both of the animal/s are happy.,then both of the animals are happy,0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,one day a giraffe saw an elephant at the pool.,one day a giraffe saw an elephant at the pool,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,"and she was play/ing with a (ball) ball, bounce/ing it up and down.",and she was playing with a ball bouncing it up and down,0 0 0 6 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,then she by accidentally bounce/ed it into the pool.,then she by accidentally bounced it into the pool,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and she could not go in and get it.,and she could not go in and get it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,so they were both scare/ed.,so they were both scared,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and then the giraffe went in and swam after it.,and then the giraffe went in and swam after it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,(he brought) he swam over to the elephant and gave her (her) (the) her ball.,he swam over to the elephant and gave her her ball,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and then she said thank you.,and then she said thank you,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and : the giraffe (felt) felt proud.,and the giraffe felt proud,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and the elephant felt (va) very very happy.,and the elephant felt very very happy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,one day giraffe and elephant decide/ed to go swim/ing.,one day giraffe and elephant decided to go swimming,0 0 0 0 0 4 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,(the) (then the) so the elephant want/ed to go off the diving board.,so the elephant wanted to go off the diving board,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,so : she start/ed to run.,so she started to run,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,as she ran she slip/ed.,as she ran she slipped,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and the giraffe came run/ing.,and the giraffe came running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,she sat there with : a cut on her knee cry/ing.,she sat there with a cut on her knee crying,0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,then the giraffe came run/ing even faster.,then the giraffe came running even faster,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,then : (the) (a l) the lifeguard came.,then the lifeguard came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and (um) : the giraffe was just sit/ing there : make/ing sure that the elephant was okay.,and the giraffe was just sitting there making sure that the elephant was okay,0 0 0 0 0 6 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and then the (um) lifeguard put (um on) a bandaid on the cut : (for) so the elephant : would not get her (um) : knee infect/ed.,and then the lifeguard put a bandaid on the cut so the elephant would not get her knee infected,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,(um) then they sat her on a bench.,then they sat her on a bench,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and she look/ed at the bandaid.,and she looked at the bandaid,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and the lifeguard talk/ed to her.,and the lifeguard talked to her,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and the giraffe was also talk/ing to her.,and the giraffe was also talking to her,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,then the : lifeguard point/ed out the sign that said no run/ing.,then the lifeguard pointed out the sign that said no running,0 0 0 4 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and then the elephant start/ed to blush.,and then the elephant started to blush,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,one day (um) giraffe brought an airplane to the pool.,one day giraffe brought an airplane to the pool,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and elephant saw it.,and elephant saw it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and ( sh) (it) (it) it look/ed really neat to her.,and it looked really neat to her,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,(the) the giraffe made all these sound/s with his tongue : (and he) as he : play/ed with his airplane.,the giraffe made all these sounds with his tongue as he played with his airplane,0 0 0 0 0 1 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and the : elephant was amaze/ed.,and the elephant was amazed,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,(then she just grab/ed) then she grab/ed : the airplane out of the giraffe/z hand.,then she grabbed the airplane out of the giraffe's hand,0 0 4 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and : he was : surprise/ed.,and he was surprised,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,(then she by acci) then she accidentally drop/ed it in the pool.,then she accidentally dropped it in the pool,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,then the giraffe got mad.,then the giraffe got mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and the elephant felt sad.,and the elephant felt sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,so they got the lifeguard and told him about what had happen/ed.,so they got the lifeguard and told him about what had happened,0 0 0 0 0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,then : he said so this is what happen/ed.,then he said so this is what happened,0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,it end/ed up in the pool.,it ended up in the pool,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,so he try/ed to reach it.,so he tried to reach it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,but he could not.,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and so the giraffe start/ed to cry (and sw) and sweat because : he was afraid that his airplane might sink all the way.,and so the giraffe started to cry and sweat because he was afraid that his airplane might sink all the way,0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,then another elephant come/3s with : a net.,then another elephant comes with a net,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and then she say/3s that maybe she could help.,and then she says that maybe she could help,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,so then : she (take) use/3s her net to try and (get it) : get the airplane.,so then she uses her net to try and get the airplane,0 0 0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and everybody watch/3s.,and everybody watches,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,then she get/3s it and give/3s it to the giraffe.,then she gets it and gives it to the giraffe,0 0 3 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,the giraffe is very happy.,the giraffe is very happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and so is the elephant.,and so is the elephant,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,(um) one day a rabbit and : (um) a monster were build/ing a castle in the sandbox.,one day a rabbit and a monster were building a castle in the sandbox,0 0 0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,(um) : so the monster was straighten/ing up the castle (the rab) (and the rabbit) while the rabbit was put/ing sand in the bucket.,so the monster was straightening up the castle while the rabbit was putting sand in the bucket,0 0 0 0 6 0 0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and then the rabbit dump/ed : all the sand that he put in the bucket onto the castle.,and then the rabbit dumped all the sand that he put in the bucket onto the castle,0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and then it fell down.,and then it fell down,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and all that was left was a little tower.,and all that was left was a little tower,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and : the monster start/ed to cry.,and the monster started to cry,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and it start/ed to put it (up) back up.,and it started to put it back up,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,(but the) and the rabbit felt bad.,and the rabbit felt bad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,the same monster and rabbit decide/ed to go on a picnic.,the same monster and rabbit decided to go on a picnic,0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,when they got there the monster had start/ed to unpack.,when they got there the monster had started to unpack,0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,but the rabbit had (all this) all the food.,but the rabbit had all the food,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,but the monster all that it had was sandwich/s and juice.,but the monster all that it had was sandwiches and juice,0 0 0 0 0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,so the rabbit got all hot and start/ed to eat.,so the rabbit got all hot and started to eat,0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and : the monster (had) had not start/ed eat/ing.,and the monster had not started eating,0 0 0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,but the rabbit had already finish/ed before the monster could start to eat.,but the rabbit had already finished before the monster could start to eat,0 0 0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,then the rabbit did not feel (too) too good.,then the rabbit did not feel too good,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,so the : monster was puzzle/ed.,so the monster was puzzled,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,(and he did not) and she did not know what to do.,and she did not know what to do,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and then (she got) a doctor was walk/ing past.,and then a doctor was walking past,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and then she ran and got the doctor.,and then she ran and got the doctor,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and then (she) (the) she pull/ed the doctor towards the rabbit.,and then she pulled the doctor towards the rabbit,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,the doctor look/ed at the rabbit and : said that it ate too fast.,the doctor looked at the rabbit and said that it ate too fast,0 0 4 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,so it probably felt sick.,so it probably felt sick,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and then : (um) the rabbit : went with the doctor.,and then the rabbit went with the doctor,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and he felt much better.,and he felt much better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,one day monster (put) (got) pull/ed up her wagon to rabbit with a balloon attach/ed to her wagon.,one day monster pulled up her wagon to rabbit with a balloon attached to her wagon,0 0 0 4 0 0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and the rabbit said hi.,and the rabbit said hi,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and then the rabbit saw the balloon and thought it look/ed neat.,and then the rabbit saw the balloon and thought it looked neat,0 0 0 0 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,but the monster : was a little scare/ed that it might pop it.,but the monster was a little scared that it might pop it,0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and then the rabbit undid it.,and then the rabbit undid it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and the monster (s) just try/ed to tell it (not to) to stop.,and the monster just tried to tell it to stop,0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,but (um) the rabbit just kept on (t) untie/ing the balloon.,but the rabbit just kept on untying the balloon,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and then the balloon float/ed away.,and then the balloon floated away,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,they both try/ed to get it.,they both tried to get it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and then (: all) all that they could see was a string.,and then all that they could see was a string,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,the rabbit was scare/ed.,the rabbit was scared,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and the monster was very mad.,and the monster was very mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,then : the rabbit saw (a) a balloon man sell/ing balloon/s.,then the rabbit saw a balloon man selling balloons,0 0 0 0 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,so (he) he decide/ed to go and buy one for his friend.,so he decided to go and buy one for his friend,0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and then he ask/ed if he could buy a balloon.,and then he asked if he could buy a balloon,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and the man said yes.,and the man said yes,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,so he paid.,so he paid,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,he had no money.,he had no money,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and the balloon/s were five cent/s.,and the balloons were five cents,0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,(so) (and the monst) (so he try/ed) and he want/ed to surprise the monster.,and he wanted to surprise the monster,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,but the monster was already come/ing his way.,but the monster was already coming his way,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,but then : the salesman (um) hear/ed the monster.,but then the salesman heard the monster,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and the rabbit told the sale/s (man) man what (um happen/ed) had happen/ed to the balloon.,and the rabbit told the sales man what had happened to the balloon,0 0 0 0 0 1 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,the salesman thought that they could (um) have a balloon maybe.,the salesman thought that they could have a balloon maybe,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,(then he) then (th) they saw (um) the (uh) the doctor.,then they saw the the doctor,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,so the rabbit ran to the doctor and ask/ed for five cent/s : (uh) for a balloon.,so the rabbit ran to the doctor and asked for five cents for a balloon,0 0 0 0 0 0 0 0 4 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and then the doctor said okay.,and then the doctor said okay,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and then she paid for two[!] balloon/s.,and then she paid for two balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,so they each got one.,so they each got one,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,(th) then they had so much fun.,then they had so much fun,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and they were all happy.,and they were all happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,(um) [~_clears_throat] an elephant is play/ing : ball.,an elephant is playing ball,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and a giraffe is come/ing along to watch.,and a giraffe is coming along to watch,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,one of the ball/s skid/ed into the pool.,one of the balls skidded into the pool,0 0 0 1 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and they are both watch/ing it.,and they are both watching it,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and then the giraffe : come/3s in : and try/3s to get the ball : and give/3s it to the elephant.,and then the giraffe comes in and tries to get the ball and gives it to the elephant,0 0 0 0 3 0 0 3 0 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the : elephant is happy that the giraffe (give) (fou um) : swim|swim[EW:swam] (and get) and got the ball and give|give[EW:gave] it back.,and the elephant is happy that the giraffe swim and got the ball and give it back,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,(um) a giraffe : and an elephant are watch/ing the : swimming pool.,a giraffe and an elephant are watching the swimming pool,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,then the elephant say/3s : let us go over here.,then the elephant says let us go over here,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and : they are run/ing over to there.,and they are running over to there,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the elephant look/3s like he is go/ing to slip.,and the elephant looks like he is going to slip,0 0 0 3 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the elephant stub/3s his : knee.,and the elephant stubs his knee,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and it is cut.,and it is cut,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the elephant is come/ing along (and) the lifeguard : (and) to see what was the matter.,and the elephant is coming along the lifeguard to see what was the matter,0 0 0 0 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the lifeguard is give/ing the elephant a bandaid [~_coughs].,and the lifeguard is giving the elephant a bandaid,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the lifeguard is take/ing the elephant : (with) : out : to : the side.,and the lifeguard is taking the elephant out to the side,0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and : the lifeguard is tell/ing the elephant no run/ing.,and the lifeguard is telling the elephant no running,0 0 0 0 6 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,The elephant is [~_coughs] happy.,The elephant is happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and she want/3s to go somewhere.,and she wants to go somewhere,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the giraffe is play/ing with his : plane.,and the giraffe is playing with his plane,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the elephant took it.,and the elephant took it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and[-:] she want/3s to try.,and she wants to try,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and it go/3s into the water [~_coughs].,and it goes into the water,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the giraffe : is get/ing mad at the elephant for : put/ing it in the water.,and the giraffe is getting mad at the elephant for putting it in the water,0 0 0 0 6 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,the lifeguard is look/ing : and the giraffe and the elephant [EU].,the lifeguard is looking and the giraffe and the elephant,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the plane is in the pool.,and the plane is in the pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,(the li) (life) the elephant is tell/ing the lifeguard what happen/ed [~_coughs].,the elephant is telling the lifeguard what happened,0 0 0 6 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,the lifeguard is try/ing : to get the : airplane out of the water.,the lifeguard is trying to get the airplane out of the water,0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,he can not.,he can not,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the giraffe is cry/ing.,and the giraffe is crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,then : another : person comes along with a net.,then another person comes along with a net,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,(and sh) (and she got) and she is try/ing to get it.,and she is trying to get it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,she got it : and gave it to the giraffe.,she got it and gave it to the giraffe,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and : now the giraffe is happy.,and now the giraffe is happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,now the giraffe is : hug/ing the airplane.,now the giraffe is hugging the airplane,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and : he is happy.,and he is happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the elephant is happy too.,and the elephant is happy too,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,(Um um : a : um) a brother rabbit and a sister rabbit *are play/ing in the sandbox [EU].,a brother rabbit and a sister rabbit playing in the sandbox,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the : sister rabbit is : make/ing a sandcastle.,and the sister rabbit is making a sandcastle,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the brother rabbit is get/ing some sand out of the bucket.,and the brother rabbit is getting some sand out of the bucket,0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and then the brother rabbit is pour/ing it over top of the sandcastle.,and then the brother rabbit is pouring it over top of the sandcastle,0 0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and then : the sister rabbit is look/ing at the sandcastle.,and then the sister rabbit is looking at the sandcastle,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the brother rabbit is : (um : um) : mad : I think.,and the brother rabbit is mad I think,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and then : the sister rabbit is try/ing to make it over again.,and then the sister rabbit is trying to make it over again,0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the brother rabbit is stand/ing there.,and the brother rabbit is standing there,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,a brother rabbit and (a) a sister rabbit have (picnic bastics) picnic basket/s.,a brother rabbit and a sister rabbit have picnic baskets,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and : they are go/ing for a picnic.,and they are going for a picnic,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the brother rabbit is have/ing a carrot and a sandwich.,and the brother rabbit is having a carrot and a sandwich,0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and : the sister rabbit is pull/ing out her stuff.,and the sister rabbit is pulling out her stuff,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the brother rabbit is full.,and the brother rabbit is full,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the sister rabbit is have/ing the sandwich and a drink.,and the sister rabbit is having the sandwich and a drink,0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and (the brother rabbit) the (bluther) brother rabbit is : (um) hold/ing his stomach.,and the brother rabbit is holding his stomach,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the sister rabbit is still have/ing some drink : and something to eat.,and the sister rabbit is still having some drink and something to eat,0 0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,(the) and a doctor is come/ing.,and a doctor is coming,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the sister (says : wait) : want/3s him to wait.,and the sister wants him to wait,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the sister rabbit is drag/ing the doctor (to his) to her brother.,and the sister rabbit is dragging the doctor to her brother,0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the doctor is check/ing out the brother rabbit.,and the doctor is checking out the brother rabbit,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,now the doctor and the brother rabbit are walk/ing away.,now the doctor and the brother rabbit are walking away,0 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,(um) the sister rabbit is pull/ing a wagon with a balloon tie/ed to it.,the sister rabbit is pulling a wagon with a balloon tied to it,0 0 0 0 6 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and Brother Rabbit : is : try/ing to take the balloon.,and Brother Rabbit is trying to take the balloon,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and he is untie/ing the balloon from the wagon.,and he is untying the balloon from the wagon,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and now (it's f) the balloon is float/ing up.,and now the balloon is floating up,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and both of them are try/ing to catch it.,and both of them are trying to catch it,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,(the brother) the sister rabbit is get/ing mad.,the sister rabbit is getting mad,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the brother rabbit is watch/ing it go up.,and the brother rabbit is watching it go up,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,then a man is come/ing with a whole bunch of balloon/s.,then a man is coming with a whole bunch of balloons,0 0 0 0 6 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and brother rabbit look/3s like he is go/ing to [~_gonna] run to him.,and brother rabbit looks like he is going to run to him,0 0 0 3 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the brother rabbit say/3s one balloon.,and the brother rabbit says one balloon,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,balloon five cent[EW:cents] [EU].,balloon five cent,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and : the brother rabbit do/3s not have any money.,and the brother rabbit does not have any money,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,the brother rabbit is (hold/ing) put/ing his hand/s in his pocket/s.,the brother rabbit is putting his hands in his pockets,0 0 0 0 6 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and Sister Rabbit : is put/ing her hand/s by her side.,and Sister Rabbit is putting her hands by her side,0 0 0 0 6 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the man is stand/ing there with a whole bunch of balloon/s in his hand.,and the man is standing there with a whole bunch of balloons in his hand,0 0 0 0 6 0 0 0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,(hm) the : (um) doctor rabbit is there.,the doctor rabbit is there,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and Brother Rabbit is run/ing to the doctor.,and Brother Rabbit is running to the doctor,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,Doctor do you have any money (the) the (um) other rabbit is say/ing : to her.,Doctor do you have any money the other rabbit is saying to her,0 0 0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the doctor is give/ing : the man : (fi) two five centses|cent[EW:cents].,and the doctor is giving the man two five centses,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the man is hold/ing out his hand : and two balloon/s for : the kid/s.,and the man is holding out his hand and two balloons for the kids,0 0 0 0 6 0 0 0 0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,then : the : two rabbit/s have the balloon.,then the two rabbits have the balloon,0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the : doctor is just smile/ing.,and the doctor is just smiling,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,they are friend/s : play/ing with ball/s.,they are friends playing with balls,0 0 1 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,: but one of the ball/s fell in the water.,but one of the balls fell in the water,0 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,: then : (um) : (giraffe um) : (giraffe) the giraffe fell in the water too.,then the giraffe fell in the water too,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and then there was one more ball.,and then there was one more ball,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,: then she want/ed to keep it.,then she wanted to keep it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,(there) they want to go swim/ing.,they want to go swimming,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,(so they) so the elephant said that let us go swim/ing.,so the elephant said that let us go swimming,0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and so she kick/ed and run|run[EW:ran].,and so she kicked and run,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,kick/ed and what?,kicked and what,4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,runned|run[EW:ran] [+_bch].,runned,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and she scrape/ed her knee on the (uhm) sidewalk.,and she scraped her knee on the sidewalk,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,: and her dad came.,and her dad came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and she was scare/ed to get a bandage.,and she was scared to get a bandage,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,: and then she close/ed her eye/s.,and then she closed her eyes,0 0 0 4 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and she cry/ed when it was a bandage on her.,and she cried when it was a bandage on her,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,: then she had to settle down.,then she had to settle down,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,: her dad was (uhm) : so happy at her friend [EU].,her dad was so happy at her friend,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and then her dad was mad at her.,and then her dad was mad at her,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,they were play/ing with : the airplane.,they were playing with the airplane,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and they are take/ing turn/s.,and they are taking turns,0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and then : he said : he was play/ing with it.,and then he said he was playing with it,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and then (sh) (he) she took it away from the giraffe.,and then she took it away from the giraffe,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and then they drived|drive[EW:drove] in : through the water.,and then they drived in through the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and they drived|drive[EW:drove] and drived|drive[EW:drove].,and they drived and drived,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and : a dad came.,and a dad came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and she had to walk to the dad.,and she had to walk to the dad,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,: and then she ask/ed her dad that : [~_high_pitched_voice] I let go of it.,and then she asked her dad that I let go of it,0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,: and then the dad try/ed to get : the : airplane.,and then the dad tried to get the airplane,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,but it was drive/ing : to his hand.,but it was driving to his hand,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and the dad was (so[-:]) so : try/ing to get it.,and the dad was so trying to get it,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,he was so mad.,he was so mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,: (she) (he cry/ed) the giraffe cry/ed.,the giraffe cried,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and then the mom came and got a fish/ing : net.,and then the mom came and got a fishing net,0 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and then : she try/ed to get it.,and then she tried to get it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and then she did it.,and then she did it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,but she got it (thur) through her hand/s.,but she got it through her hands,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,: and then (she) he (um) love/ed play/ing with it.,and then he loved playing with it,0 0 0 4 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,(the bunny/s and) the bunny and the puppy dog were make/ing a sandcastle.,the bunny and the puppy dog were making a sandcastle,0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,they shovel/ed and shovel/ed and made a sandcastle.,they shoveled and shoveled and made a sandcastle,0 4 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and then he dump/ed it (on and) on the puppy dog/z sandcastle.,and then he dumped it on the puppy dog's sandcastle,0 0 0 4 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and it : broke.,and it broke,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and (she : um) the bunny was so[-:] sad because : the dog was : so sad too.,and the bunny was so sad because the dog was so sad too,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and she start/ed cry/ing.,and she started crying,0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and the bunny was [+_bch] [+/]^,and the bunny was,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,(um they were) the bunny and the puppy dog want/ed to have a picnic.,the bunny and the puppy dog wanted to have a picnic,0 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,so the : bunny was eat/ing too much.,so the bunny was eating too much,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and he felt sick.,and he felt sick,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and then his stomach was get/ing fuller and fuller : just like mine.,and then his stomach was getting fuller and fuller just like mine,0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and : (his head) his (um) head was : too full.,and his head was too full,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and then he runned|run[EW:ran]: to get his mother.,and then he runned to get his mother,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,he pull/ed and pull/ed on (him) her.,he pulled and pulled on her,0 4 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and then (he) she (um) check/ed the bunny.,and then she checked the bunny,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,she did what?,she did what,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,check/ed the bunny [+_bch].,checked the bunny,4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and then he had to go home : to the doctor/z.,and then he had to go home to the doctor's,0 0 0 0 0 0 0 0 0 2 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,(um) the bunny and the puppy dog were : take/ing a wagon with a balloon on.,the bunny and the puppy dog were taking a wagon with a balloon on,0 0 0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and then the balloon was get/ing bigger and bigger.,and then the balloon was getting bigger and bigger,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,so (he tie) the bunny tie/ed it on.,so the bunny tied it on,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and then it blowed|blow[EW:blew] away out of his : hand.,and then it blowed away out of his hand,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,the puppy dog was so mad.,the puppy dog was so mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,it pop/ed.,it popped,0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,: and then there was a guy : come/ing with a full (um) : (uh) balloon/s [EU].,and then there was a guy coming with a full balloons,0 0 0 0 0 0 6 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,guy come/ing with a what?,guy coming with a what,0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,(balloon/s) a full balloon/s [+_bch].,a full balloons,0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and then (he) : he need/ed one for his wagon.,and then he needed one for his wagon,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and there was one number five.,and there was one number five,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and then that is it.,and then that is it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,I just got : one number five.,I just got one number five,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and there was only play/ing now.,and there was only playing now,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,there was no more number five/s.,there was no more number fives,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,just only play/ing.,just only playing,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and then they were so sad that there was only one number five.,and then they were so sad that there was only one number five,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,there was[EW:were] two left.,there was two left,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and then they took it.,and then they took it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,we get to keep these two balloon/s.,we get to keep these two balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,yay[!] said : the puppy dog and the : bunny.,yay said the puppy dog and the bunny,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,An elephant and a : giraffe met together.,An elephant and a giraffe met together,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and : they found something in the water.,and they found something in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,they (s) try/ed to (sw) swim.,they tried to swim,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,the giraffe was try/ing to get it.,the giraffe was trying to get it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and the giraffe gave it to the elephant.,and the giraffe gave it to the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,(and then) and then the giraffe was all wet.,and then the giraffe was all wet,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,(Ah) a giraffe and an elephant saw something.,a giraffe and an elephant saw something,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,they try/ed to run for it.,they tried to run for it,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and then an elephant slip/ed.,and then an elephant slipped,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and the elephant hurt her knee.,and the elephant hurt her knee,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and then a lifeguard (a) came.,and then a lifeguard came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,then : (the lifeguard try/ed to put) the lifeguard put a bandaid on her knee.,then the lifeguard put a bandaid on her knee,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,(then) then the lifeguard put the elephant on the bench.,then the lifeguard put the elephant on the bench,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,then the lifeguard point/ed at the sign no run/ing.,then the lifeguard pointed at the sign no running,0 0 0 4 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,A giraffe and a[EW:an] : elephant met together.,A giraffe and a elephant met together,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,(they um) the giraffe (s) found an airplane.,the giraffe found an airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and then : the elephant took it from the : giraffe.,and then the elephant took it from the giraffe,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,then it got into the water.,then it got into the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,then it was sink/ing.,then it was sinking,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and then a lifeguard came.,and then a lifeguard came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and then : the elephant : was : shout/ing at the lifeguard.,and then the elephant was shouting at the lifeguard,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and the lifeguard try/ed to get it.,and the lifeguard tried to get it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,but it stay/ed there.,but it stayed there,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,so (he uh) another lifeguard got a net : and scoop/ed it up.,so another lifeguard got a net and scooped it up,0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,then (i) the : lifeguard gave it to the (gi) giraffe.,then the lifeguard gave it to the giraffe,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and then he was play/ing with it.,and then he was playing with it,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,a baby dog : and a : rabbit are play/ing in the sandbox.,a baby dog and a rabbit are playing in the sandbox,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,they are build/ing a sandcastle.,they are building a sandcastle,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and : (the ra) the rabbit dump/ed some sand on the sandcastle.,and the rabbit dumped some sand on the sandcastle,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and it broke.,and it broke,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,(they start/ed) and they start/ed to cry except for the rabbit.,and they started to cry except for the rabbit,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,a rabbit and a : dog are go/ing for a picnic.,a rabbit and a dog are going for a picnic,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,they had a picnic together.,they had a picnic together,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,the rabbit was too full.,the rabbit was too full,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,the rabbit (um) : got a stomachache.,the rabbit got a stomachache,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and (he w) he was lay/ing on the (um) the : picnic : (w) on the grass.,and he was laying on the the picnic on the grass,0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and a lady came.,and a lady came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and : the guy was still lay/ing on the grass.,and the guy was still laying on the grass,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,(then) then the lady : (um) check/ed him.,then the lady checked him,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and then he was all better.,and then he was all better,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,a dog and a rabbit met together.,a dog and a rabbit met together,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,the rabbit want/ed the balloon.,the rabbit wanted the balloon,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and he try/ed to take it off.,and he tried to take it off,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and (it fl) it flew away up in the sky.,and it flew away up in the sky,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,(and then : the) the dog got mad at the rabbit.,the dog got mad at the rabbit,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and then a man came with a whole bunch of balloon/s.,and then a man came with a whole bunch of balloons,0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and then : the rabbit pick/ed a balloon.,and then the rabbit picked a balloon,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and he pick/ed : balloon : five cent/s [EU].,and he picked balloon five cents,0 0 4 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and he did not have any money.,and he did not have any money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,(then) then he did not (get) get any.,then he did not get any,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and then the girl got some.,and then the girl got some,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,(and) and the rabbit ask/ed for money.,and the rabbit asked for money,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and he (ga) gave (um the ra) the rabbit five cent/s.,and he gave the rabbit five cents,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and then he got a balloon.,and then he got a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,one day a[EW:an]: elephant and a giraffe were play/ing by the : swimming pool.,one day a elephant and a giraffe were playing by the swimming pool,0 0 0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the : elephant had (his) this really bouncy ball.,and the elephant had this really bouncy ball,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then the ball fell in the water while they were play/ing with it.,and then the ball fell in the water while they were playing with it,0 0 0 0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,(and the) and the : elephant was really : really (s) upset that his ball was in the water.,and the elephant was really really upset that his ball was in the water,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the : zebra was like maybe I could go get[!] it for her.,and the zebra was like maybe I could go get it for her,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,so he jump/ed into the water and swam all[!] the way.,so he jumped into the water and swam all the way,0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the elephant was worry/ed about the giraffe.,and the elephant was worried about the giraffe,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the giraffe almost had the ball.,and the giraffe almost had the ball,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,but then : he got it and came back : and gave it to the elephant.,but then he got it and came back and gave it to the elephant,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the elephant was really happy that he got his ball.,and the elephant was really happy that he got his ball,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then : the elephant : kind of[:_kinda] thinked|think[EW:thought] that the : giraffe was cute.,and then the elephant kind of thinked that the giraffe was cute,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and so did the : giraffe think the elephant was cute.,and so did the giraffe think the elephant was cute,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,one day an elephant and the giraffe (were) went to the swimming pool together because they want/ed to go swim/ing.,one day an elephant and the giraffe went to the swimming pool together because they wanted to go swimming,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the elephant was run/ing along.,and the elephant was running along,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the giraffe was walk/ing[!] along : behind her.,and the giraffe was walking along behind her,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then the elephant slip/ed.,and then the elephant slipped,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then : the giraffe rush/ed over to her.,and then the giraffe rushed over to her,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and he never caught up.,and he never caught up,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the : elephant got a big[!] cut on her leg.,and the elephant got a big cut on her leg,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the : giraffe was worry/ed.,and the giraffe was worried,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,so he went to go get some help.,so he went to go get some help,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then the lifeguard came over.,and then the lifeguard came over,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the giraffe : was beside the elephant.,and the giraffe was beside the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the lifeguard : rush/ed over to her.,and the lifeguard rushed over to her,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the elephant start/ed to cry.,and the elephant started to cry,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then the lifeguard gave her a bandaid.,and then the lifeguard gave her a bandaid,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,but it hurt the elephant when it got on.,but it hurt the elephant when it got on,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the : giraffe was curious.,and the giraffe was curious,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,(what) why did he put on a bandaid?,why did he put on a bandaid,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,why did not he clean it up and stuff?,why did not he clean it up and stuff,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then they help/ed her to a bench.,and then they helped her to a bench,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the giraffe was go/ing to help.,and the giraffe was going to help,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the elephant got her on the bench (with the).,and the elephant got her on the bench,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the elephant stuck out her leg.,and the elephant stuck out her leg,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the lifeguard : point/ed to a sign that said no run/ing.,and the lifeguard pointed to a sign that said no running,0 0 0 4 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,(and the) : and the[-:] elephant (ss) was like (uh) I was not run/ing : (uh) : (um).,and the elephant was like I was not running,0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the lifeguard is like no run/ing at the swimming pool.,and the lifeguard is like no running at the swimming pool,0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,you could slip and hurt yourself like you did.,you could slip and hurt yourself like you did,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,one day the elephant and the giraffe were at the swimming pool.,one day the elephant and the giraffe were at the swimming pool,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,but the giraffe : brought his plane with him.,but the giraffe brought his plane with him,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the elephant like/ed plane/s a lot.,and the elephant liked planes a lot,0 0 0 4 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,so then (the) the giraffe (was) put it up in the air : twirl/ed it around.,so then the giraffe put it up in the air twirled it around,0 0 0 0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the elephant is like wow !,and the elephant is like wow,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then she grab/ed it out of the giraffe/z hand.,and then she grabbed it out of the giraffe's hand,0 0 0 4 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,"and she was like yes, I want to [~_wanna] play with this[!] one.",and she was like yes I want to play with this one,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,it is real fun !,it is real fun,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then she (drop) accidentally drop/ed it in the water.,and then she accidentally dropped it in the water,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and it start/ed to sink.,and it started to sink,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,you could only see the top of it.,you could only see the top of it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then the giraffe got really mad at the elephant.,and then the giraffe got really mad at the elephant,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the elephant is like oops.,and the elephant is like oops,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then the lifeguard was on the other side.,and then the lifeguard was on the other side,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and he[!] saw it.,and he saw it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,he is like how did that plane get in there ?,he is like how did that plane get in there,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,(and they are) and they did not say nothing else.,and they did not say nothing else,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then the elephant explain/ed what happen/ed to the lifeguard.,and then the elephant explained what happened to the lifeguard,0 0 0 0 4 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,"and the lifeguard is : hmmm, maybe I can help.",and the lifeguard is hmmm maybe I can help,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,so he try/ed reach/ing over : to get the plane.,so he tried reaching over to get the plane,0 0 4 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,but (he) his arm/s were a little bit too short.,but his arms were a little bit too short,0 0 1 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then the : giraffe start/ed to cry.,and then the giraffe started to cry,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,(and the) and the elephant (s) look/ed very[!] upset.,and the elephant looked very upset,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the lifeguard said there is nothing I can do.,and the lifeguard said there is nothing I can do,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then this lady came along : with a real long net.,and then this lady came along with a real long net,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and they are like wow !,and they are like wow,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,could you help us get out my plane said the giraffe ?,could you help us get out my plane said the giraffe,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and she said hmm okay.,and she said hmm okay,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,so she bent over and try/ed reach/ing for the plane.,so she bent over and tried reaching for the plane,0 0 0 0 0 4 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and she got it.,and she got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then (they are) the : giraffe thought (he) she would not get it.,and then the giraffe thought she would not get it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then he start/ed to cry.,and then he started to cry,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,but then the lifeguard saw it : and is like yes she got it.,but then the lifeguard saw it and is like yes she got it,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then she scoop/ed it up : with her net and gave it to the giraffe.,and then she scooped it up with her net and gave it to the giraffe,0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the giraffe was really happy.,and the giraffe was really happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and he said thank/s missus.,and he said thanks missus,0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,you are a real help.,you are a real help,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then the giraffe got : his plane back.,and then the giraffe got his plane back,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and he (went) yay I got my plane back.,and he yay I got my plane back,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then the elephant said I am sorry that I drop/ed your plane in the water.,and then the elephant said I am sorry that I dropped your plane in the water,0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and he said okay.,and he said okay,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,we could play with it together.,we could play with it together,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,one day a bunny and a dog : went to a beach.,one day a bunny and a dog went to a beach,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the dog already made a sandcastle.,and the dog already made a sandcastle,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the bunny ask/ed if he could help.,and the bunny asked if he could help,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,so the bunny put some : sand in a box and was go/ing to [~_gonna] help the dog with his big sandcastle.,so the bunny put some sand in a box and was going to help the dog with his big sandcastle,0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then he pour/ed all the sand on the castle.,and then he poured all the sand on the castle,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then : the castle collapse/ed.,and then the castle collapsed,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,it was full of sand.,it was full of sand,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the dog : look/ed very upset.,and the dog looked very upset,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,but the bunny was [~_gasps] oh no!,but the bunny was oh no,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,so the dog start/ed to cry.,so the dog started to cry,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the bunny felt very sad that he broke his sandcastle.,and the bunny felt very sad that he broke his sandcastle,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,one day a bunny and a dog went for a picnic : (at) in the forest.,one day a bunny and a dog went for a picnic in the forest,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,the bunny pack/ed lot/s of stuff.,the bunny packed lots of stuff,0 0 4 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,(and the) but the dog knew if he ate lot/s of stuff he will get a stomachache.,but the dog knew if he ate lots of stuff he will get a stomachache,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,so he just pack/ed a little bit.,so he just packed a little bit,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,the bunny ate all his stuff really really quickly.,the bunny ate all his stuff really really quickly,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and his belly got real big.,and his belly got real big,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then : the dog was eat/ing slowly.,and then the dog was eating slowly,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,so (he) it did not get a stomachache.,so it did not get a stomachache,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,but then the bunny felt very sick and had a real big stomachache.,but then the bunny felt very sick and had a real big stomachache,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the dog did not know what to do.,and the dog did not know what to do,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then : a bunny nurse came by.,and then a bunny nurse came by,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the : dog said I will help you bunny.,and the dog said I will help you bunny,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,I will go get that nurse.,I will go get that nurse,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then the nurse came.,and then the nurse came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,but : the dog struggle/ed her over to the bunny : that was lay/ing on the ground.,but the dog struggled her over to the bunny that was laying on the ground,0 0 0 4 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,the nurse told him to open up and say ah.,the nurse told him to open up and say ah,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the bunny open/ed up.,and the bunny opened up,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then : she said stop eat/ing so much food.,and then she said stop eating so much food,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,you will get a : stomachache again.,you will get a stomachache again,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,one day (the rabbit and the dog) (the) : (the rab) [~__no] the dog had a balloon with his wagon that he brought along with him to go walk by the park.,one day the dog had a balloon with his wagon that he brought along with him to go walk by the park,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then he met the bunny again.,and then he met the bunny again,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the bunny saw his balloon and want/ed to play with it.,and the bunny saw his balloon and wanted to play with it,0 0 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the dog (w) said okay.,and the dog said okay,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then the bunny got the balloon : and untie/ed it.,and then the bunny got the balloon and untied it,0 0 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the dog is like [~_gasps] no*3!,and the dog is like no no no,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then the bunny untie/ed it.,and then the bunny untied it,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the balloon flew away.,and the balloon flew away,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,(and) and they are both like no the balloon!,and they are both like no the balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then the dog got real[!] mad at the bunny.,and then the dog got real mad at the bunny,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the bunny is like oh no oh no the balloon!,and the bunny is like oh no oh no the balloon,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then (the :) the dog (s) was real real mad.,and then the dog was real real mad,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then the (r) bunny saw : a guy with a whole bunch of balloon/s.,and then the bunny saw a guy with a whole bunch of balloons,0 0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and (s) the dog was still mad at him.,and the dog was still mad at him,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,so he went over : to the guy with the balloon/s.,so he went over to the guy with the balloons,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and he pick/ed one out.,and he picked one out,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the guy said : five cent/s : for this balloon.,and the guy said five cents for this balloon,0 0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the : bunny did not have no[EW:any] money.,and the bunny did not have no money,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then the dog came over.,and then the dog came over,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and they both were stand/ing there.,and they both were standing there,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,but the bunny keeper said five cent/s.,but the bunny keeper said five cents,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and they both looked very upset.,and they both looked very upset,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,but then they saw : (I) the bunny/z mom.,but then they saw the bunny's mom,0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,so he went over to her.,so he went over to her,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,(and she) and he said mom I need five cent/s for the balloon because I lost : the dog/z balloon : and went high up into the air.,and he said mom I need five cents for the balloon because I lost the dog's balloon and went high up into the air,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,so she came over.,so she came over,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,here you go.,here you go,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,(and) and she gave him ten cent/s one for the dog and one for the rabbit.,and she gave him ten cents one for the dog and one for the rabbit,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then the : bunny and the dog was[EW:were] really happy.,and then the bunny and the dog was really happy,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,(and then) and then the doggie was nice again to the bunny.,and then the doggie was nice again to the bunny,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then they both had a balloon.,and then they both had a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and : the dog said thank/s to the bunny/z mom.,and the dog said thanks to the bunny's mom,0 0 0 0 1 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(they are) (they are) they are go/ing to pick some bubble/s.,they are going to pick some bubbles,0 0 6 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,they are put/ing bubble/s in the water.,they are putting bubbles in the water,0 0 6 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(there is : he them :) he is try/ing to get the bubble.,he is trying to get the bubble,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(he got) (her[EW:she] got) the elephant got[!] the bubble.,the elephant got the bubble,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(he) her[EW:she] still : gots[EW:had] it in her hand.,her still gots it in her hand,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,they are go/ing to : swim.,they are going to swim,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,they are go/ing to run.,they are going to run,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,and : they are go/ing to : still swim.,and they are going to still swim,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(they) (they s) they are run/ing.,they are running,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(they are[-:]) [~_I_do_n(o)t_know_what] they got hurt.,they got hurt,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,the elephant got hurt.,the elephant got hurt,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(and) : (and) and her[EW:she] got hurt again.,and her got hurt again,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,her[EW:she] gots[EW:has] a bandaid.,her gots a bandaid,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,they are sit/ing.,they are sitting,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,now : the other[?] elephant is (ba) mad.,now the other elephant is mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,they are go/ing to : play.,they are going to play,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,they are got an airplane [EU].,they are got an airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(it is go/ing) (the) (they) the elephant got it.,the elephant got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(is) it went into a[EW:the] water.,it went into a water,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,and now he is mad.,and now he is mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(he) the elephant is mad.,the elephant is mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,or they are both happy.,or they are both happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,but he is sad[!].,but he is sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,the elephant can not reach.,the elephant can not reach,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,it is sink/ing.,it is sinking,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,her[EW:she] gots[EW:has] a net.,her gots a net,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,her[EW:she] gots[EW:has][!] it.,her gots it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,the airplane is back.,the airplane is back,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(he) : (he l) he is happy now.,he is happy now,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,they are make/ing a sandcastle.,they are making a sandcastle,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(the sandcastle : i) they are still make/ing the sandcastle.,they are still making the sandcastle,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(the story) they are dump/ing : (the) : this thing on it.,they are dumping this thing on it,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,it broked|broke[EW:broke][-:] .,it broked,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,he is (dum) : close/ing the door.,he is closing the door,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(now is) : now it is sink/ing down.,now it is sinking down,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,they are have/ing a picnic.,they are having a picnic,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,they are eat/ing[-:] .,they are eating,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(he is) they are done.,they are done,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,they are happy.,they are happy,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,the rabbit is full.,the rabbit is full,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,he has a tummyache.,he has a tummyache,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(he) he call/ed (the den) the doctor.,he called the doctor,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(he is) (he is go/ing) her[EW:she] is go/ing (the) : to help him.,her is going to help him,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(he is) : (her glass um) I do not know what that is [+_bch].,I do not know what that is,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,maybe it is a needle : or a medicine thing.,maybe it is a needle or a medicine thing,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,maybe it is a medicine thing.,maybe it is a medicine thing,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,he is feel/ing better.,he is feeling better,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,he gots[EW:has] a balloon on the wagon.,he gots a balloon on the wagon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,it is still on the wagon.,it is still on the wagon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,they are look/ing at it.,they are looking at it,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,he is untie/ing it.,he is untying it,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(it was) it is blow/ing away.,it is blowing away,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,he is mad[-:] now.,he is mad now,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(the) he is bring/ing more balloon/s.,he is bringing more balloons,0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(he nee) we need more balloon/s!,we need more balloons,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(he) and he is for five dollar/s [EU].,and he is for five dollars,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,but (they) he do/3s not.,but he does not,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,now they are sad (when he did not brought[EW:bring]) when he did not give them any balloon/s.,now they are sad when he did not give them any balloons,0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,now (the) (he) they are go/ing to have some balloon/s.,now they are going to have some balloons,0 0 0 6 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(the den) the doctor came.,the doctor came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(why) : what is the problem[-:]?,what is the problem,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(the) (the balloon man) : they had more balloon/s two balloon/s.,they had more balloons two balloons,0 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,here we have more balloon/s on the wagon.,here we have more balloons on the wagon,0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(thank) (they) now they are happy.,now they are happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,know what I got (a wa) a blue wagon [+_bch].,know what I got a blue wagon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(um um) they *are look/ing at the apple/s [EU].,they looking at the apples,0 6 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,they are look/ing at the apple/s.,they are looking at the apples,0 0 6 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(um and) and somebody throwed|trow[EW:threw] the apple in.,and somebody throwed the apple in,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,somebody threw the apple in.,somebody threw the apple in,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(um) : and that giraffe want to[:_wanna] get it.,and that giraffe want to get it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,the what?,the what,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and the giraffe want to[:_wanna] get it [+_bch].,and the giraffe want to get it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,the giraffe want to?,the giraffe want to,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,get it [+_bch].,get it,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,get it oh.,get it oh,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and he got it.,and he got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,he got it?,he got it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,yeah [+_bch].,yeah,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and then elephant *is hug/ing it [EU].,and then elephant hugging it,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(um) them look/ing at the water.,them looking at the water,0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,them look/ing at the water.,them looking at the water,0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(and) (and that elephant) (and that elephant) and that elephant (um) runned|run[EW:ran].,and that elephant runned,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,that elephant runned|run[EW:ran]?,that elephant runned,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and fast.,and fast,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,fast?,fast,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,yeah [+_bch].,yeah,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(and) (and he) and he got a owie.,and he got a owie,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,he got a owie.,he got a owie,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(and) and he (look) *is look/ing at it [EU].,and he looking at it,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,tell me again.,tell me again,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(and they look/ing) and the giraffe and the elephant *are look/ing at it [EU].,and the giraffe and the elephant looking at it,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,oh the giraffe and elephant *are look/ing at it [EU].,oh the giraffe and elephant looking at it,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,[~_yep] (and) (and) (and the guy) and the guy put a bandage on it.,and the guy put a bandage on it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,a guy put a bandage on it?,a guy put a bandage on it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,[~_yeah] (and) (and) (and) (and a[EW:an] elephant) and a[EW:an] elephant sit[EW:sat] down.,and a elephant sit down,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,a[EW:an] elephant sit[EW:sat] down.,a elephant sit down,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,[~_yeah] (and hold/ing) and hold/ing it [EU].,and holding it,0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and hold/ing it [EU]?,and holding it,0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,yeah [+_bch].,yeah,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(um) a giraffe : got a[EW:an] airplane.,a giraffe got a airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,the?,the,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,a giraffe got a[EW:an] airplane [+_bch].,a giraffe got a airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,a giraffe bought a[EW:an] airplane?,a giraffe bought a airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,[~_yeah] (and) and he flied|fly[EW:flew] it [EU].,and he flied it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,he flied|fly[EW:flew] it.,he flied it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(and) (and) and the elephant taked|take[EW:took] it from him [~_EXA:_and__the_elephant_take_it_from_him] [~_yeah] (and throwed|throw[EW:threw]) and throwed|throw[EW:threw] it in the water.,and the elephant taked it from him and throwed it in the water,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and throwed|throw[EW:threw] it in the water.,and throwed it in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and they [+/]^,and they,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,oops sorry I miss/ed one [~_finds_correct_page].,oops sorry I missed one,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(and) (and) (and they) and the giraffe got mad at him.,and the giraffe got mad at him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,the giraffe got mad at him.,the giraffe got mad at him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(and) : (and) (and) (and) (and the) (and the) and the man got sad [EU].,and the man got sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and the man got sad?,and the man got sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(and) (and the elephant) : (and : he took um) : (xxx) I have not told him he got in the water [EU].,I have not told him he got in the water,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,the elephant told him.,the elephant told him,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,in the water [+_bch] [EU].,in the water,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,tell me that again.,tell me that again,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(um um) elephant told him : [~_EXA:_told_him] that elephant is in the water.,elephant told him that elephant is in the water,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,elephant is in the water.,elephant is in the water,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(and) (and the) and the man try/ed to get it.,and the man tried to get it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,the man try/ed to get it.,the man tried to get it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,[~_yeah] (and) (and) (and the giraffe) and the giraffe cry/ed.,and the giraffe cried,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and giraffe?,and giraffe,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,cry/ed [+_bch].,cried,4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,cry/ed?,cried,4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,yeah [+_bch].,yeah,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(and) (and the xxx) and the xx get|get[EW:got] it.,and the get it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,the what?,the what,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,the girl[?] get|get[EW:got] it.,the girl get it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,the girl?,the girl,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,yeah [+_bch].,yeah,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,get|get[EW:got] it?,get it,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,yeah [+_bch].,yeah,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,oh.,oh,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(and) and she got it.,and she got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and she got it.,and she got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,[~_yeah] : (and the giraffe) (and) (and the girl) and the girl give|give[EW:gave] it to him.,and the girl give it to him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and the girl give|give[EW:gave] it to him.,and the girl give it to him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,[~_yeah] (and) and giraffe *is hold/ing it.,and giraffe holding it,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,the giraffe.,the giraffe,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,was hold/ing it [+_bch].,was holding it,0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(um and a) (a rabbit) and a rabbit and a dog was[EW:were] make/ing a castle.,and a rabbit and a dog was making a castle,0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,a rabbit comed|come[EW:came] at the dog/z (um) sandbox [EU].,a rabbit comed at the dog's sandbox,0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,a rabbit what?,a rabbit what,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(a) (a rabbit) a rabbit comed|come[EW:came] at the dog/z (um san) sand [+_bch] [EU].,a rabbit comed at the dog's sand,0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,sandbox?,sandbox,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,yeah [+_bch].,yeah,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(and the) and the rabbit was (make/ing um) dig/ing a hole.,and the rabbit was digging a hole,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,the rabbit was.,the rabbit was,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,dig/ing a hole [+_bch].,digging a hole,6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,dig/ing a hole?,digging a hole,6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,"[~_yeah] (and) (and) (and) (and um) (and) (and uh) (and he) and he got the pot[?] on the bucket [~__pronounced_""buttit""] down.",and he got the pot on the bucket down,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,he got a?,he got a,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,"bucket [~_pronounced_""buttit""] [+_bch].",bucket,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,buttit?,buttit,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,no [+_bch].,no,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,oh.,oh,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,"a bucket [~_pronounced_""buttit""] [+_bch].",a bucket,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,a bucket!,a bucket,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,yeah [+_bch].,yeah,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,oh you got a bucket.,oh you got a bucket,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(and) and the sand got out.,and the sand got out,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and the sand got out?,and the sand got out,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,yeah [+_bch].,yeah,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,okay.,okay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(and) (and) (and) (and he) and he do|do[EW:did] this.,and he do this,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and he do|do[EW:did] this.,and he do this,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,yeah [+_bch].,yeah,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,what?,what,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(and) (and) and that puppy was look/ing at it.,and that puppy was looking at it,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,the puppy was look/ing at it : okay.,the puppy was looking at it okay,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(and) (and he fw) (and) (and) and he cry/ed.,and he cried,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and he cry/ed : oh.,and he cried oh,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(um um) and the dog and the rabbit was[EW:were] have/ing a picnic.,and the dog and the rabbit was having a picnic,0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,a dog and a rabbit was[EW:were] have/ing a picnic.,a dog and a rabbit was having a picnic,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,[~_yeah] (and) (and) (and a) and a rabbit have|have[EW:has] a carrot and a sandwich.,and a rabbit have a carrot and a sandwich,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,a rabbit have|have[EW:has] a carrot and a sandwich.,a rabbit have a carrot and a sandwich,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,[~_yeah] (and) (and he had) and a dog was still eat/ing.,and a dog was still eating,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,the dog was still eat/ing?,the dog was still eating,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,yeah [+_bch].,yeah,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,okay.,okay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and he was have/ing a drink.,and he was having a drink,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,he was have/ing a?,he was having a,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,drink [+_bch].,drink,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,a drink?,a drink,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,yeah a dog [+_bch].,yeah a dog,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,a what?,a what,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,a dog [+_bch].,a dog,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,a dog?,a dog,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,yeah [+_bch].,yeah,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(and) and there is (a puppy that) (that) (that um) (that : girl) (that doctor) a doctor rabbit.,and there is a doctor rabbit,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,a doctor rabbit?,a doctor rabbit,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,[~_yeah] the dog got it.,the dog got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,the dog got it?,the dog got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,yeah [+_bch].,yeah,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(and) and he pull/ed him[EW:his] shirt.,and he pulled him shirt,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and he pull/ed him[EW:his] shirt?,and he pulled him shirt,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,yeah [+_bch].,yeah,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(and he got) and he got him.,and he got him,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and he got him?,and he got him,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,[~_yeah] (and) and he bring|bring[EW:brought] him at the doctor/z [EU].,and he bring him at the doctor's,0 0 0 0 0 0 2 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,I am sorry and he?,I am sorry and he,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,bring|bring[EW:brought] him at the doctors [+_bch] [EU].,bring him at the doctors,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(a pup) a puppy was got (a um) a balloon (on) (on the) on the wagon [EU].,a puppy was got a balloon on the wagon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,the puppy was?,the puppy was,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,got (a) a balloon [+_bch].,got a balloon,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,got a balloon.,got a balloon,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,on the wagon [+_bch].,on the wagon,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,on the?,on the,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,wag[+/] [+_bch]^,wag,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,wagon.,wagon,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,yeah [+_bch].,yeah,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,oh okay.,oh okay,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(and) (and that) (and that) (and that rabbit was) and he smile/ed a rabbit [~_EXA:_a_the_rabbit_he_smile/ed] [~_yeah] and take|take[EW:took] it off.,and he smiled a rabbit and take it off,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and take|take[EW:took] it off?,and take it off,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,[~_yeah] (and) (and) (and) (and the) and the balloon was get/ing away.,and the balloon was getting away,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,the balloon was get/ing away.,the balloon was getting away,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,[~_yeah] (and) (and) and the balloon pop/ed.,and the balloon popped,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,the balloon pop/ed!,the balloon popped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,[~_yeah] (and) (and the rab) (and) and the balloon man rabbit gotted|got[EW:got] a balloon/s [EU].,and the balloon man rabbit gotted a balloons,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,a balloon man : a rabbit?,a balloon man a rabbit,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,yeah [+_bch].,yeah,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,got?,got,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,the balloon/s [+_bch].,the balloons,0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,got all the balloon/s?,got all the balloons,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,[~_yeah] : (and) (and) (and they) and the rabbit got one.,and the rabbit got one,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and the rabbit got one?,and the rabbit got one,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,[~_yeah] : (they got) he got one [+_BCH].,he got one,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,he get[EW:got] one?,he get one,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,[~_yeah] : (and) and he did not give them one.,and he did not give them one,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and he can not give them one?,and he can not give them one,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,[~_no] : and a doctor was there.,and a doctor was there,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and a?,and a,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,doctor was there [+_bch].,doctor was there,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,a doctor was there!,a doctor was there,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,[~_yeah] (and) (and) (and a rabbit) (and a rabbit said) (the rab) (a doctors) a rabbit said that (a) doctor I need/ed a balloon.,a rabbit said that doctor I needed a balloon,0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,the rabbit said to the doctor I need a balloon?,the rabbit said to the doctor I need a balloon,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and they give|give[EW:gave] (they) they[EW:them] one.,and they give they one,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,pardon me?,pardon me,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,they gived|give[EW:gave] one of them [+_bch].,they gived one of them,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,they give|give[EW:gave] one of them?,they give one of them,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and they (got) got one.,and they got one,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and they got one.,and they got one,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,one of the rabbit and one of (the) a puppy [EU].,one of the rabbit and one of a puppy,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,one for the rabbit and one for the puppy?,one for the rabbit and one for the puppy,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,yeah [+_bch].,yeah,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,There was once an elephant and *a giraffe [EU].,There was once an elephant and giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,they are play/ing with a ball and see who could bounce the ball the fastest [EU].,they are playing with a ball and see who could bounce the ball the fastest,0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and all of sudden the ball bounce/ed into a pool.,and all of sudden the ball bounced into a pool,0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and the giraffe did not have a swimming suit on.,and the giraffe did not have a swimming suit on,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,but the elephant did.,but the elephant did,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and she said I would go get it for you.,and she said I would go get it for you,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and (sh) the giraffe said thank you.,and the giraffe said thank you,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,so the giraffe jump/ed off in the pool instead of the elephant and went to go get the ball.,so the giraffe jumped off in the pool instead of the elephant and went to go get the ball,0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,but he was just about there.,but he was just about there,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,the giraffe gave the ball to the elephant.,the giraffe gave the ball to the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and the elephant said you are a real neat swimmer.,and the elephant said you are a real neat swimmer,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,(and the) and then when the giraffe got out he was all soak/ing wet.,and then when the giraffe got out he was all soaking wet,0 0 0 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and so was the elephant.,and so was the elephant,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,(and um :) (and : um) and they fell in love.,and they fell in love,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,The giraffe and the elephant : saw a sign say/ing no run/ing.,The giraffe and the elephant saw a sign saying no running,0 0 0 0 0 0 0 0 6 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,but they felt like run/ing to the diving board.,but they felt like running to the diving board,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and the elephant said I will beat you there first.,and the elephant said I will beat you there first,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and the giraffe said not if I can.,and the giraffe said not if I can,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and all of a sudden the elephant slip/ed.,and all of a sudden the elephant slipped,0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and he said oh no : help.,and he said oh no help,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and all of a sudden she trip/ed and hit her knee and start/ed cry/ing because it hurt really bad.,and all of a sudden she tripped and hit her knee and started crying because it hurt really bad,0 0 0 0 0 0 4 0 0 0 0 0 4 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,the lifeguard came : and ask[EW:asked] her what was wrong.,the lifeguard came and ask her what was wrong,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,I was run/ing and fell on my knee.,I was running and fell on my knee,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,so (the ele) the lifeguard put a (um) bandage on her.,so the lifeguard put a bandage on her,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and (she) she was ready to cry because it hurt.,and she was ready to cry because it hurt,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,(and) and she did not cry because it was not that[!] bad.,and she did not cry because it was not that bad,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and then the lifeguard said did not you see the sign that said no run/ing.,and then the lifeguard said did not you see the sign that said no running,0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and then she said oh I never saw that.,and then she said oh I never saw that,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and then she was in a lot of trouble from the lifeguard because : she was run/ing without (the) see/ing the sign say/ing no run/ing.,and then she was in a lot of trouble from the lifeguard because she was running without seeing the sign saying no running,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 6 0 0 6 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,The elephant start/ed feel/ing happy.,The elephant started feeling happy,0 0 4 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and she said let us go for a swim.,and she said let us go for a swim,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,but the giraffe was play/ing with his toy airplane.,but the giraffe was playing with his toy airplane,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,(and he did not) (and he did not) he got upset.,he got upset,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and (she did not) (um) she like/ed play/ing with him.,and she liked playing with him,0 0 4 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,(so the) so the elephant just grab/ed the (el) airplane away and start/ed drive/ing it : without even ask/ing to play with it.,so the elephant just grabbed the airplane away and started driving it without even asking to play with it,0 0 0 0 4 0 0 0 0 4 6 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and all of a sudden the elephant threw it up in the air.,and all of a sudden the elephant threw it up in the air,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,it came twirl/ing around and land/ed in the water.,it came twirling around and landed in the water,0 0 6 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and the giraffe said : (you are) you are not suppose/ed to be do/ing that with the airplane.,and the giraffe said you are not supposed to be doing that with the airplane,0 0 0 0 0 0 0 4 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,now all of a sudden the airplane start/ed : to sink.,now all of a sudden the airplane started to sink,0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and the giraffe got mad and mad : and start/ed yell/ing at the elephant.,and the giraffe got mad and mad and started yelling at the elephant,0 0 0 0 0 0 0 0 4 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,the lifeguard came.,the lifeguard came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and the giraffe was sad because his (plane) airplane was in the water.,and the giraffe was sad because his airplane was in the water,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and the elephant start/ed walk/ing away.,and the elephant started walking away,0 0 0 4 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,so the elephant told him that : he was play/ing with it.,so the elephant told him that he was playing with it,0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,so I just grab/ed it away from him and start/ed play/ing with it too.,so I just grabbed it away from him and started playing with it too,0 0 0 4 0 0 0 0 0 4 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,I threw it up in the air.,I threw it up in the air,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and there it land/ed in the water[!].,and there it landed in the water,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and the lifeguard try/ed to grab it.,and the lifeguard tried to grab it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,but it was too far away from the edge that he could not grab it.,but it was too far away from the edge that he could not grab it,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,but the lifeguard did not know what to do.,but the lifeguard did not know what to do,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and : the giraffe start/ed cry/ing because : he did not want to go in the water.,and the giraffe started crying because he did not want to go in the water,0 0 0 4 6 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and the elephant start/ed feel/ing sorry.,and the elephant started feeling sorry,0 0 0 4 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and so the other lifeguard came and grab/ed the net.,and so the other lifeguard came and grabbed the net,0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and all of a sudden she pull/ed it back in and gave it to the giraffe.,and all of a sudden she pulled it back in and gave it to the giraffe,0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and the elephant (was) were[EW:was] happy.,and the elephant were happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and then she try/ed and try/ed.,and then she tried and tried,0 0 0 4 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and then when she finally got it : the elephant and giraffe were happy.,and then when she finally got it the elephant and giraffe were happy,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,the giraffe ran and thank/ed the lifeguard.,the giraffe ran and thanked the lifeguard,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and then the giraffe and the elephant took turn/s play/ing with the airplane.,and then the giraffe and the elephant took turns playing with the airplane,0 0 0 0 0 0 0 0 1 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,there is a rabbit and a dog (s) build/ing a sandcastle inside the sandbox.,there is a rabbit and a dog building a sandcastle inside the sandbox,0 0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and then they came up with a great idea for the sandcastle.,and then they came up with a great idea for the sandcastle,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,so the dog start/ed work/ing on the sandcastle to make it better (while this) while the : rabbit start/ed making a hill of sand.,so the dog started working on the sandcastle to make it better while the rabbit started making a hill of sand,0 0 0 4 6 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,so there is[EW:are] hill/s[!] all over it.,so there is hills all over it,0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and (then the dog) after the dog was finish/ed build/ing it it was so beautiful that the rabbit : thought it would be so funny to pour the whole bucket of sand on top of it.,and after the dog was finished building it it was so beautiful that the rabbit thought it would be so funny to pour the whole bucket of sand on top of it,0 0 0 0 0 4 6 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 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and all of a sudden (the) : only one part of the sandcastle was left.,and all of a sudden only one part of the sandcastle was left,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and it was one of the window/s.,and it was one of the windows,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,(and the rabbit) and the dog : start/ed look/ing funny.,and the dog started looking funny,0 0 0 4 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and the dog start/ed cry/ing.,and the dog started crying,0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and the rabbit start/ed look/ing up and start/ed walk/ing away.,and the rabbit started looking up and started walking away,0 0 0 4 6 0 0 4 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,(Then the one) then the other day : the dog want/ed to go for a picnic.,then the other day the dog wanted to go for a picnic,0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and then the rabbit said : could I come?,and then the rabbit said could I come,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,I will bring my own food.,I will bring my own food,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,then the dog said okay.,then the dog said okay,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,(the rabbit brought a) the rabbit brought pickle/s : cheese : mustard : sandwich/s strawberry/s : (um) a cake and some sub/s and a carrot.,the rabbit brought pickles cheese mustard sandwiches strawberries a cake and some subs and a carrot,0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and the dog brang|bring[EW:brought] a sandwich : and a juice.,and the dog brang a sandwich and a juice,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,(and) and the pig start/ed feeling (um) full.,and the pig started feeling full,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and he ate all his stuff.,and he ate all his stuff,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and he left a big mess.,and he left a big mess,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and then the dog was just sit/ing there eat/ing.,and then the dog was just sitting there eating,0 0 0 0 0 0 6 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and (then the) : then the rabbit start/ed burp/ing right in front of him and start/ed walk/ing crazy.,and then the rabbit started burping right in front of him and started walking crazy,0 0 0 0 4 6 0 0 0 0 0 0 4 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,(and then his mother) and then (all) his mother rabbit came.,and then his mother rabbit came,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and then the dog went race/ing to say : your son he is[EW:has] gotten dizzy.,and then the dog went racing to say your son he is gotten dizzy,0 0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and then he drag/ed (the rabbit) his mother over there : to see what happen/ed.,and then he dragged his mother over there to see what happened,0 0 0 4 0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and all of a sudden : she said you should not have eaten too much food : you pig.,and all of a sudden she said you should not have eaten too much food you pig,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and then they went walk/ing off home.,and then they went walking off home,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and then that even/ing the dog was pull/ing : his wagon with nothing in it.,and then that evening the dog was pulling his wagon with nothing in it,0 0 0 6 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and it had a balloon on it.,and it had a balloon on it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and the rabbit said hey could I see the balloon?,and the rabbit said hey could I see the balloon,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and the dog said okay then.,and the dog said okay then,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,but be careful.,but be careful,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,so the rabbit start/ed untie/ing it.,so the rabbit started untying it,0 0 0 4 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and the dog start/ed say/ing : no do not do that.,and the dog started saying no do not do that,0 0 0 4 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,you will let it fly away.,you will let it fly away,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and the rabbit did not do it.,and the rabbit did not do it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,he just kept on untie/ing the balloon.,he just kept on untying the balloon,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and all of a sudden the rabbit let the balloon go and start/ed crying : when it was not his.,and all of a sudden the rabbit let the balloon go and started crying when it was not his,0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,it was the dog/z.,it was the dog's,0 0 0 2 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and he start/ed run/ing after it and *was yell/ing help help [EU]!,and he started running after it and yelling help help,0 0 4 6 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,all of a sudden the dog got mad at the rabbit.,all of a sudden the dog got mad at the rabbit,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and the rabbit start/ed cry/ing.,and the rabbit started crying,0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,then the dog was so mad that the rabbit had an idea.,then the dog was so mad that the rabbit had an idea,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,he saw another rabbit sell/ing balloon/s.,he saw another rabbit selling balloons,0 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,so he went to go buy them.,so he went to go buy them,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,the rabbit said I will take that one.,the rabbit said I will take that one,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,the purple one said the big rabbit?,the purple one said the big rabbit,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,he said yes.,he said yes,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,so he bought that one for five cent/s.,so he bought that one for five cents,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,: (but the r) but the[~!_laughs] rabbit was out of change.,but the rabbit was out of change,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and then the rabbit : said sorry but you can not buy that balloon.,and then the rabbit said sorry but you can not buy that balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,you do not have five cent/s.,you do not have five cents,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,then all of a sudden (the r) he saw another[!] rabbit.,then all of a sudden he saw another rabbit,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and he went to go ask him[!] if he had five cent/s.,and he went to go ask him if he had five cents,0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and he said could I borrow five cent/s to buy my friend a purple balloon?,and he said could I borrow five cents to buy my friend a purple balloon,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and then : she gave him ten cent/s instead and got two balloon/s for both of them.,and then she gave him ten cents instead and got two balloons for both of them,0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and then they were both happy : really happy.,and then they were both happy really happy,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,the : elephant want/3s to get the balloon/s.,the elephant wants to get the balloons,0 0 3 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,she lost her balloon.,she lost her balloon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and (she said) oh my : elephant said.,and oh my elephant said,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and that[!] said : he would get it for (her) the elephant [EU].,and that said he would get it for the elephant,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,she was so proud to go get her balloon.,she was so proud to go get her balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,she want/3s to get it and like|like[EW:likes][?] her.,she wants to get it and like her,0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,the : that elephant want/3s to get in the pool.,the that elephant wants to get in the pool,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,(the elephant pus) : he push|push[EW:pushed] her in.,he push her in,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and (she is like) : she runned|run[EW:ran].,and she runned,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,(: and it is like :) she went [~_yeeha].,she went,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and she hurt her knee.,and she hurt her knee,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and she cry/ed.,and she cried,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,then : it was so better : in the bandaid [EU].,then it was so better in the bandaid,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and : she like/3s her bandaid.,and she likes her bandaid,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,it help|help[EW:helps] her feel better.,it help her feel better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,the elephant (was) : (the ban) : the bandaid help|help[EW:helps] her feel better.,the elephant the bandaid help her feel better,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,then : she fall|fall[EW:fell] down in a[EW:an] airplane [EU].,then she fall down in a airplane,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and she got it in the airplane [EU].,and she got it in the airplane,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and she was so happy.,and she was so happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,then she was : so happy to get (uh) : her airplane.,then she was so happy to get her airplane,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,she want/3s her airplane back.,she wants her airplane back,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,then : she want/3s it.,then she wants it,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and (she want/3s) : then : he will get it for her.,and then he will get it for her,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,(and sh) : and he could reach it for her.,and he could reach it for her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and thinks so he could [EU].,and thinks so he could,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,"and he gots[EW:has] xx [~_sounds_like_""basmin""] and like a suit.",and he gots and like a suit,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,I guess : (she) : he : (xx) got (hims ai) her airplane.,I guess he got her airplane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and she was still happy.,and she was still happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,(and) and this other was : mines[EW:mine].,and this other was mines,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and that is the end [+_bch].,and that is the end,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,(the elephant um) : they want to make a sandcastle.,they want to make a sandcastle,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and they build it.,and they build it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and they build it.,and they build it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,then : he messed it up for him.,then he messed it up for him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and it is so : beautiful.,and it is so beautiful,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and they xxx.,and they,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and he was sad.,and he was sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and he was sad too.,and he was sad too,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,end [+_bch].,end,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,a letter!,a letter,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,a letter!,a letter,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,they want to : get a balloon.,they want to get a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and they build a sandcastle.,and they build a sandcastle,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and they try to go in the sand and xx [~_sounds_like_'blom'].,and they try to go in the sand and,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and he said sorry.,and he said sorry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,xx [~_says_something_under_breath].,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and the bunny rabbit was so happy today.,and the bunny rabbit was so happy today,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and : they was[EW:were] so : pushing in : the case [EU].,and they was so pushing in the case,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,he push/ed them in.,he pushed them in,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and they was|be[EW:were] so happy to go.,and they was so happy to go,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,then he was so happy to go see her.,then he was so happy to go see her,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and that : is the end [+_bch].,and that is the end,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,this is a balloon.,this is a balloon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,they got a balloon : to : put it on the wagon[!] [EU].,they got a balloon to put it on the wagon,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,then he is try/ing to pull it off.,then he is trying to pull it off,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and him[EW:he] xx [~_swing?] was flying (in) in the sky.,and him was flying in the sky,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and it was fly/ing.,and it was flying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and it broked|break[EW:broke] and broked|break[EW:broke].,and it broked and broked,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,then : he gots[Ew:has] more balloon/s.,then he gots more balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and : he went go get some more.,and he went go get some more,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,then : oh (wa) lots of balloon/s today [EU].,then oh lots of balloons today,0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and he said : no I want a balloon.,and he said no I want a balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,said : I want to [~_wanna] have a balloon [EU]!,said I want to have a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,I want a balloon!,I want a balloon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and they saw : more[!] balloon/s.,and they saw more balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,then he want/3s a balloon : and a balloon.,then he wants a balloon and a balloon,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,then he want/3s a balloon.,then he wants a balloon,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and he get/3s him.,and he gets him,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and he is so lucky to get a balloon.,and he is so lucky to get a balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and that is the end [+_bch].,and that is the end,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(There is a xx) one day (nn there) there is a (um) giraffe and a[EW:an] elephant.,one day there is a giraffe and a elephant,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and the elephant was bounce/ing a ball when she had her bathing suit on and a bow on her head.,and the elephant was bouncing a ball when she had her bathing suit on and a bow on her head,0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,what else do I wanna say [+_bch]?,what else do I wanna say,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and a giraffe had new clothes on that had a shirt on and a hat on.,and a giraffe had new clothes on that had a shirt on and a hat on,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and that is it [~_indicating_C_was_done_with_page] [+_bch].,and that is it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and then : accidentally (um) the giraffe drop/ed (the water) the ball into the water.,and then accidentally the giraffe dropped the ball into the water,0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and : they both saw the ball into the water.,and they both saw the ball into the water,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(hm :) and the giraffe jump/ed in and try/ed to (get) catch the ball.,and the giraffe jumped in and tried to catch the ball,0 0 0 4 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and then the giraffe got it and gave it to the elephant.,and then the giraffe got it and gave it to the elephant,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and : and that was all [+_bch].,and and that was all,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(And he) and the elephant you are very kind.,and the elephant you are very kind,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and : (then) then (the gura) the giraffe just gave (um) back the ball to the elephant.,and then the giraffe just gave back the ball to the elephant,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,The end [+_bch].,The end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(um) and then [+_bch].,and then,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,I do not know this part [+_bch].,I do not know this part,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,I do not know this book [+_bch].,I do not know this book,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,Just look at the picture and tell me what you see.,Just look at the picture and tell me what you see,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,okay [+_bch].,okay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(I see two giraffe/s) I see a giraffe and an elephant with a bow in her hair.,I see a giraffe and an elephant with a bow in her hair,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and they were look/ing at the water to see how cold it was.,and they were looking at the water to see how cold it was,0 0 0 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and the elephant : let us go in and jump on that thing [EU].,and the elephant let us go in and jump on that thing,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,I do not know what is that called [+_bch].,I do not know what is that called,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and then the elephant slip/ed.,and then the elephant slipped,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and she is almost go/ing to slip down when she was run/ing [EU].,and she is almost going to slip down when she was running,0 0 0 0 6 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and she hurt her knee.,and she hurt her knee,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and there is no run/ing in there.,and there is no running in there,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(and then) and then the giraffe went near her.,and then the giraffe went near her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(and it) (and) and the girl/z brother came by too.,and the girl's brother came by too,0 0 2 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and she got hurt.,and she got hurt,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(then her) then her brother put a bandaid on her.,then her brother put a bandaid on her,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and then they got her.,and then they got her,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(then they) (then she) then her brother said there is a bench over there.,then her brother said there is a bench over there,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,you can sit down over there.,you can sit down over there,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,see the bandaid is on.,see the bandaid is on,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and (then) then her brother got mad at her.,and then her brother got mad at her,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and I do not know [+_bch].,and I do not know,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and the brother said (see) see that sign ?,and the brother said see that sign,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,no run/ing in here.,no running in here,0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and then she got all better.,and then she got all better,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and then (they stand) they stand by (d) each other.,and then they stand by each other,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,And they laugh/ed : because he got a bandaid off [EU].,And they laughed because he got a bandaid off,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,And then : the giraffe had a[EW:an] airplane.,And then the giraffe had a airplane,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,And he flied|fly[EW:flew] it.,And he flied it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,he try/ed to fly it high : so it could be more[!] like a[EW:an] airplane.,he tried to fly it high so it could be more like a airplane,0 4 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,then : the elephant took it away from him.,then the elephant took it away from him,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and : she look/ed at it.,and she looked at it,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(and that) and (she saw s) she saw an airplane in her hand.,and she saw an airplane in her hand,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(she) she accidentally drop/ed it in the water.,she accidentally dropped it in the water,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and it got into the water.,and it got into the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(And it) and : they both look/ed at the water.,and they both looked at the water,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and then : the giraffe got mad at her.,and then the giraffe got mad at her,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and then : (she s) she still look/ed at the (um) airplane (to s) because it was go/ing to [~_gonna] go down deep into the water.,and then she still looked at the airplane because it was going to go down deep into the water,0 0 0 0 4 0 0 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,And (then : he s) then her brother came by and saw it.,And then her brother came by and saw it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,And then they all look/ed (a) at it except for his sister.,And then they all looked at it except for his sister,0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(His sister) his sister is look/ing at him to see what his : shirt look/3s like.,his sister is looking at him to see what his shirt looks like,0 0 0 6 0 0 0 0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,Then (she) she : talk/ed at him (to see) (she gra) [~__high_pitched_voice] I (grab/ed it) (in front of) : (grab/ed it : f) took it away from the giraffe [EU].,Then she talked at him I took it away from the giraffe,0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,And then : it got[EW:went] into the water !,And then it got into the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,then : (her brother try/ed) her brother try/ed : to (get it um) get the (um) airplane : out of the water.,then her brother tried to get the airplane out of the water,0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,But he could not reach it.,But he could not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(Then she) then the giraffe cry/ed.,then the giraffe cried,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and : she was sad.,and she was sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(the s) : (the) [~_no] the giraffe was sad : that nobody could not get it [EU].,the giraffe was sad that nobody could not get it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(and then) (their mum) (then : the gira) then the elephant/z mum came by.,then the elephant's mum came by,0 0 2 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(And she had : um) what is that call/ed [+_bch]?,what is that called,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,I do not know [+_bch].,I do not know,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,What ?,What,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(Um) xxx [+_bch].,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,Then she got a tank[?] to get it out of the water.,Then she got a tank to get it out of the water,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,Then she try/ed.,Then she tried,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,And she try/ed.,And she tried,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,And she almost got it.,And she almost got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,But it could not fit in there.,But it could not fit in there,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,Then she got it and gave it to the giraffe.,Then she got it and gave it to the giraffe,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,And then : the giraffe was so happy.,And then the giraffe was so happy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,And so was the elephant.,And so was the elephant,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,a bunny and (a dog) a dog was[EW:were] in the (um) sand.,a bunny and a dog was in the sand,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(when) they were both at the beach.,they were both at the beach,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and they both had shovel/s.,and they both had shovels,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and (the doggy) the girl doggy (um : she was) she made a sandcastle.,and the girl doggy she made a sandcastle,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and then they both start/ed make/ing one.,and then they both started making one,0 0 0 0 4 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and (h) (he got a buck) he had a bucket.,and he had a bucket,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and then : he was go/ing to[:_gonna] dump it on : the girl/z (um) castle.,and then he was going to dump it on the girl's castle,0 0 0 0 6 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and (then she broke it) then he broke it.,and then he broke it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and then she start/ed cry/ing.,and then she started crying,0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(um) a bunny was go/ing to [:_gonna] go get some : chocolate/s.,a bunny was going to go get some chocolates,0 0 0 6 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and : a girl had a bucket.,and a girl had a bucket,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and (so did) the boy bunny did (t) too.,and the boy bunny did too,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(and they wen) and he took all[!] her food.,and he took all her food,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,then he had a tummyache.,then he had a tummyache,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and then : he was sick.,and then he was sick,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and (he wa) he was get/ing dizzy.,and he was getting dizzy,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and then (he saw his mo) she saw his mommy.,and then she saw his mommy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and then she (ran to him) ran to her.,and then she ran to her,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and then she told the doctor that (um : he) he was sick.,and then she told the doctor that he was sick,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and he was get/ing dizzy too.,and he was getting dizzy too,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(he said) she said come(*3).,she said come,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,: see [+_bch]?,see,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,he is get/ing dizzy and sick.,he is getting dizzy and sick,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,so : she had to bring him home.,so she had to bring him home,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(A) when a girl : doggy was pull/ing a wagon with a (balloon on there) balloon on there [EU].,when a girl doggy was pulling a wagon with a balloon on there,0 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and it was tie/ed up.,and it was tied up,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and she was pull/ing it.,and she was pulling it,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and (he was) he said nice balloon.,and he said nice balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,could I have it?,could I have it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,then : he was go/ing to[:_gonna] take it off.,then he was going to take it off,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and she said[~!_intake_of_breath] [EU].,and she said,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,then he made it go up(*2).,then he made it go up,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and he could not reach it.,and he could not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,so she got mad.,so she got mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and she want/ed it back.,and she wanted it back,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,then she ask/ed for another balloon.,then she asked for another balloon,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and (the bunny want/ed) the boy (blun) bunny want/ed one of those kind of balloon/s.,and the boy bunny wanted one of those kind of balloons,0 0 0 0 4 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(and he) (x) and (he ga) he gave him one.,and he gave him one,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and then he has to give him : five cent/s.,and then he has to give him five cents,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and he do/3s not got[EW:have] that much.,and he does not got that much,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(he did not got) he check/ed and check/ed.,he checked and checked,0 4 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and (he did not) he did not got[EW:have] no[EW:any] money.,and he did not got no money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and then : he ran to the : girl and : ask/ed her (was she was) could he have some money from that girl.,and then he ran to the girl and asked her could he have some money from that girl,0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and he said : can I have five cent/s to have one of those kind[EW:kinds] of balloon/s[-:] ?,and he said can I have five cents to have one of those kind of balloons,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,then : (he ha) he was go/ing to[:_gonna] (give her) give those two two balloon/s.,then he was going to give those two two balloons,0 0 0 6 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(then he) then they both got happy [EU].,then they both got happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,the[-:] elephant was bounce/ing the ball.,the elephant was bouncing the ball,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,(the elephant accidentally) the ball went in the pool.,the ball went in the pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,the cow (was) was : swim/ing to get it.,the cow was swimming to get it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,(the elephant) : [~_no] the cow : gave it to the elephant.,the cow gave it to the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,the elephant was hug/ing the ball.,the elephant was hugging the ball,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,the elephant and the : giraffe : were go/ing to [~_gonna] go swim/ing.,the elephant and the giraffe were going to go swimming,0 0 0 0 0 0 6 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,the elephant was go/ing.,the elephant was going,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,(but the) but the giraffe (s) was go/ing to [~_gonna] stay.,but the giraffe was going to stay,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,elephant was run/ing.,elephant was running,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then the giraffe : was run/ing.,then the giraffe was running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then the elephant hurt his knee.,then the elephant hurt his knee,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then he was start/ing to cry.,then he was starting to cry,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then the : lifeguard put a bandaid on him.,then the lifeguard put a bandaid on him,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then : she : did not realize : ( that it was) that it did not hurt.,then she did not realize that it did not hurt,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then she feeled|feel[EW:felt] better.,then she feeled better,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,the giraffe held : the[-:] airplane.,the giraffe held the airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then the giraffe was play/ing with the airplane.,then the giraffe was playing with the airplane,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then the elephant was play/ing with it.,then the elephant was playing with it,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then it fell in the pool.,then it fell in the pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,(then the) then the giraffe was mad.,then the giraffe was mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then the lifeguard (is : uh) was : disappoint/ed.,then the lifeguard was disappointed,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,(then) : then the elephant was complain/ing.,then the elephant was complaining,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then the : lifeguard was : try/ing to get it.,then the lifeguard was trying to get it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then they could not.,then they could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then the giraffe was cry/ing.,then the giraffe was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then she [+/]^,then she,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,do you have to go to the bathroom?,do you have to go to the bathroom,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then the elephant (was) was (um) go/ing to[:_gonna] get it.,then the elephant was going to get it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then the elephant (was) : got it.,then the elephant got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,but she did not get it up there yet.,but she did not get it up there yet,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then the elephant : gave it to the giraffe.,then the elephant gave it to the giraffe,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then the giraffe was happy.,then the giraffe was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,the dog and the rabbit : (were) : were go/ing to[:_gonna] make : a castle.,the dog and the rabbit were going to make a castle,0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,: they were make/ing a castle.,they were making a castle,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,they were still make/ing the castle.,they were still making the castle,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,(they broke the cas) he broke the castle.,he broke the castle,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then he cry/ed.,then he cried,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,the rabbit and the dog : met.,the rabbit and the dog met,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,to get [+/]^,to get,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,shall I turn the page?,shall I turn the page,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then they : took thing/s out of their basket.,then they took things out of their basket,0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then they start/ed eat/ing.,then they started eating,0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,(then they are) and then the rabbit : was full.,and then the rabbit was full,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,(then the) : then : the dog went : to the doctor rabbit.,then the dog went to the doctor rabbit,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then the dog was pull/ing [EU].,then the dog was pulling,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,: then the doctor was check/ing the rabbit.,then the doctor was checking the rabbit,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then the doctor rabbit : was : take/ing (him :) the rabbit.,then the doctor rabbit was taking the rabbit,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,(he has a) the dog had the wagon with the balloon.,the dog had the wagon with the balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,the rabbit (was) was look/ing at it.,the rabbit was looking at it,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,the rabbit took it off.,the rabbit took it off,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,the rabbit : let it go.,the rabbit let it go,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,the dog was mad.,the dog was mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,(the) the rabbit had : balloon/s.,the rabbit had balloons,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,(the rabbit :) the rabbit came (to) (to the) to the balloon/s.,the rabbit came to the balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,the : rabbit was think/ing.,the rabbit was thinking,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,( the rabbit um) (the um) (the dog was) : (they were put/ing) they were put/ing their (hand/s s) hand/s [EU].,they were putting their hands,0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,shall I turn?,shall I turn,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,hand/s [+_bch].,hands,1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then the doctor rabbit was there.,then the doctor rabbit was there,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,the rabbit : said : go over there.,the rabbit said go over there,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,: (the r) the doctor rabbit gave : money to the man.,the doctor rabbit gave money to the man,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,they both had each balloon.,they both had each balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,"the elephant (and the hor) (and the uh[-:] ) [~_whispers:_I__do_n(o)t_know_that_one] (uh) [~_the_long_neck_(be)cause_two_things__have_long_necks,_little_foot/z_Dad_and_little_foot/z_mom_and__lit_and_uh_a_giraffe,_that_(i)s_called_a_giraffe] and (zebra) giraffe [EU].",the elephant and giraffe,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then the ball went into the pool when the giraffe and[!] the elephant were play/ing.,and then the ball went into the pool when the giraffe and the elephant were playing,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then the (uh) giraffe went into the water.,and then the giraffe went into the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,(and then) (and then[!] the) and then the giraffe had water come/ing out of his ear.,and then the giraffe had water coming out of his ear,0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,(and then the ball go) (and then the zeb) (and then) and then the zebra got it : and gived|give[EW:gave] it to the (uh) elephant.,and then the zebra got it and gived it to the elephant,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then : the elephant was happy.,and then the elephant was happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and so was the zebra too.,and so was the zebra too,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,they were go/ing to[:_gonna] go into the swimming pool when there was a diving_board there.,they were going to go into the swimming pool when there was a diving board there,0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,then[-:] (the uh um) the elephant want/ed to go first.,then the elephant wanted to go first,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then the elephant : slip/ed.,and then the elephant slipped,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,(and hurt) and then : he hurt her knee.,and then he hurt her knee,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then she cry/ed.,and then she cried,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then the coach comed|come[EW:came] over.,and then the coach comed over,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,(and sh) : and she was still cry/ing.,and she was still crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then it was all better.,and then it was all better,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and the coach was angry.,and the coach was angry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,(uh they were gon) the elephant was go/ing to[:_gonna] fly a[EW:an] airplane.,the elephant was going to fly a airplane,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,(then the airplane) (then the zeb) then the zebra fly|fly[EW:flew] it.,then the zebra fly it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,(and then the uh) and then the elephant [~_makes_raspberry__noise] got it away from the zebra.,and then the elephant got it away from the zebra,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and (then) then the (uh) elephant throwed|throw[EW:threw] it in the air.,and then the elephant throwed it in the air,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and it land/ed in the swimming pool.,and it landed in the swimming pool,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and : the zebra was mad.,and the zebra was mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then[-:] (the coach try/ed to get it) the zebra coach try/ed to get it.,and then the zebra coach tried to get it,0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then when the zebra coach try/ed to get it : it was too far.,and then when the zebra coach tried to get it it was too far,0 0 0 0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then when the coach got it : it was too far (t) too!,and then when the coach got it it was too far too,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and (then) then the zebra was sad : and cry/ed.,and then the zebra was sad and cried,0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then the girl comed|come[EW:came] over and got it with her own fish/ing net.,and then the girl comed over and got it with her own fishing net,0 0 0 0 0 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then she got it!,and then she got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then that was the end [+_bch].,and then that was the end,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,(and) : and the zebra was so happy.,and the zebra was so happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,(uh) the rabbit and the dog were play/ing in the sandbox.,the rabbit and the dog were playing in the sandbox,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,they were go/ing to[:_gonna] build : a sandcastle.,they were going to build a sandcastle,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,one pull/ed sand on top.,one pulled sand on top,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then it broked|break[EW:broke].,and then it broked,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then the dog was sad.,and then the dog was sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and the end [+_bch].,and the end,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,(the) the dog and the rabbit were go/ing to[:_gonna] have a picnic.,the dog and the rabbit were going to have a picnic,0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,(uh) the rabbit ate too much food.,the rabbit ate too much food,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,the rabbit was : sick.,the rabbit was sick,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then he got bonk/ed on the head (with something) : with a rock.,and then he got bonked on the head with a rock,0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then the hospital : thing comed|come[EW:came].,and then the hospital thing comed,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then the dog try/ed to get her.,and then the dog tried to get her,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then the hospital girl comed|come[EW:came] over : and fix/ed the rabbit.,and then the hospital girl comed over and fixed the rabbit,0 0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,(uh) the puppy want/ed to get a balloon.,the puppy wanted to get a balloon,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,(then the balloon) then the rabbit would not get it.,then the rabbit would not get it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and the rabbit tie/ed it to the (uh) : wagon.,and the rabbit tied it to the wagon,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then it flew up to the sky.,and then it flew up to the sky,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then the dog was mad.,and then the dog was mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then : the dog was mad still.,and then the dog was mad still,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then the rabbit : want/ed to get a balloon.,and then the rabbit wanted to get a balloon,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then : (five bucks) : it was five buck/s for a balloon.,and then it was five bucks for a balloon,0 0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then : they are sad.,and then they are sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then : (the) : their mom came.,and then their mom came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,(and then) and then the rabbit said they will not give me a balloon.,and then the rabbit said they will not give me a balloon,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then : the mom gave him (two do) five dollar/s.,and then the mom gave him five dollars,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then they got : balloon/s.,and then they got balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and they were happy after all.,and they were happy after all,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,(um) they are get/ing bore/ed with the elephant/z nose.,they are getting bored with the elephant's nose,0 0 6 4 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,the other one said wahoo!,the other one said wahoo,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now they drop/ed the ball in the pool.,now they dropped the ball in the pool,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,they said aah[~!_Yelling]!,they said aah,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now they are swim/ing in the pool.,now they are swimming in the pool,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and one is try/ing to get it.,and one is trying to get it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now they got the ball.,now they got the ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and now the horse is : get/ing out.,and now the horse is getting out,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and now they got the ball back.,and now they got the ball back,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,they are going to go in the pool.,they are going to go in the pool,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,they are going to jump.,they are going to jump,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and the other one is not jump/ing.,and the other one is not jumping,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now they are run/ing.,now they are running,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now (the ele) the elephant hurt his knee.,now the elephant hurt his knee,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now they ask/ed (the) the lifeguard to get (a ow) a bandaid.,now they asked the lifeguard to get a bandaid,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now they are cry/ing.,now they are crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now they got a bandaid.,now they got a bandaid,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now they are sit/ing down.,now they are sitting down,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,(um the) (they have) the horse has (a ele uh) a plane.,the horse has a plane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,(now the) now the horse is fly/ing the plane.,now the horse is flying the plane,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now the elephant is fly/ing the plane.,now the elephant is flying the plane,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,(now they drop/ed it) now the elephant drop/ed it in the water.,now the elephant dropped it in the water,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and now (the) the horsey is mad.,and now the horsey is mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and the elephant is sad.,and the elephant is sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,(and now the l :) (now the elephant is) and now the lifeguard said go and get it.,and now the lifeguard said go and get it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and she said I can not.,and she said I can not,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and then : the lifeguard try/3s to get it.,and then the lifeguard tries to get it,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and he can not.,and he can not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and he do/3s not know how.,and he does not know how,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and the horsey is sad.,and the horsey is sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now (he got the net) (the) the other one got the net.,now the other one got the net,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and they got it.,and they got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now we have the airplane back.,now we have the airplane back,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now we can fly it.,now we can fly it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,he is not sail/ing it any more.,he is not sailing it any more,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,they are : in the sand box.,they are in the sand box,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and the : other bunny is surprise/ed.,and the other bunny is surprised,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,(and the) and (he has a shovel in his hand) both of them have shovel/s in their hand.,and both of them have shovels in their hand,0 0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,they are make/ing a sandcastle.,they are making a sandcastle,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,they are dump/ing sand on other people/z sandcastle/s.,they are dumping sand on other people's sandcastles,0 0 6 0 0 0 2 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now it is wreck/ed.,now it is wrecked,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now they are build/ing it back up.,now they are building it back up,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,they are go/ing on a picnic.,they are going on a picnic,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,(the ra) they are eat/ing.,they are eating,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,(they[-:] ) one rabbit is full.,one rabbit is full,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,(and there is) and one rabbit is still eat/ing.,and one rabbit is still eating,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now the other one is full.,now the other one is full,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and (it) (now) : now the other one is still eat/ing.,and now the other one is still eating,0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and it is still full.,and it is still full,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now they are walk/ing home.,now they are walking home,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and now : the daddy is there.,and now the daddy is there,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and the guy is sleep/ing.,and the guy is sleeping,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now he come/3s closer.,now he comes closer,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and he is still[!] sleep/ing.,and he is still sleeping,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and now he is awake.,and now he is awake,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now they are walk/ing home.,now they are walking home,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,(they are carry/ing the balloon and) (tie/ed onto a wagon) [~__oh_this_one_looked] : they are carry/ing the balloon on a wagon.,they are carrying the balloon on a wagon,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and the other one is walk/ing with him.,and the other one is walking with him,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now they have a balloon on their wagon.,now they have a balloon on their wagon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and he is look/ing at it.,and he is looking at it,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,they have a balloon.,they have a balloon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and the other one is tie/ing it off.,and the other one is tying it off,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now it let/ing go fly up in the air.,now it letting go fly up in the air,0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now they are try/ing to catch it.,now they are trying to catch it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now the string is fall/ing down from the sky with it.,now the string is falling down from the sky with it,0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,it got biten [~_pronounced_/baitEn/] by a bug.,it got biten by a bug,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now they got more balloon/s : from the : (other bunny) Easter bunny.,now they got more balloons from the Easter bunny,0 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now they say can we have another one?,now they say can we have another one,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and they got another one.,and they got another one,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,it is for five dollar/s.,it is for five dollars,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,oh : they said see you later.,oh they said see you later,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now they are walk/ing home : with the dad.,now they are walking home with the dad,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,they are run/ing to the dad.,they are running to the dad,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now they said look at that [~_!] : the balloon rabbit.,now they said look at that the balloon rabbit,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now they said do you want a balloon?,now they said do you want a balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,it is for five dollar/s.,it is for five dollars,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,okay.,okay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,let us go home.,let us go home,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,(the[-:] um) : the elephant is : bounce/ing a ball[-:].,the elephant is bouncing a ball,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and the giraffe is (say/ing) [~_I_do_n(o)t_know_like] say/ing wow or something.,and the giraffe is saying wow or something,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,say/ing what?,saying what,6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,say/ing wow [+_bch].,saying wow,6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then (um) the elephant : is bounce/ing the ball still.,and then the elephant is bouncing the ball still,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and it fall/3s into the water.,and it falls into the water,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then : the[-:] giraffe[-:] look/3s a little surprise/ed.,and then the giraffe looks a little surprised,0 0 0 0 3 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,: and then : the horse jump/3s into the pool and swim/3s to go get it.,and then the horse jumps into the pool and swims to go get it,0 0 0 0 3 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then the elephant is go/ing like this [~_child_holding_hands__up_to_her_face].,and then the elephant is going like this,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then she get/3s a ball.,and then she gets a ball,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and the : giraffe is a little surprise/ed.,and the giraffe is a little surprised,0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,: and now (sh) the elephant is really proud that she has her ball back.,and now the elephant is really proud that she has her ball back,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,is really what?,is really what,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,proud that she has the ball back [+_bch].,proud that she has the ball back,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,(um) the[-:] elephant and the giraffe are go/ing swim/ing.,the elephant and the giraffe are going swimming,0 0 0 0 0 0 6 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then[-:] (the gir) the (um) elephant is run/ing.,and then the elephant is running,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,: and the giraffe is just stand/ing there hold/ing the[-:] towel.,and the giraffe is just standing there holding the towel,0 0 0 0 0 6 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,: and the elephant is run/ing : over to (this side) that side.,and the elephant is running over to that side,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then : the giraffe is run/ing after her.,and then the giraffe is running after her,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,: and then the elephant : fall/3s : and hurt/3s her knee.,and then the elephant falls and hurts her knee,0 0 0 0 3 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,: and then she is[-:] still cry/ing and hold/ing her knee.,and then she is still crying and holding her knee,0 0 0 0 0 6 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and the giraffe is stand/ing by her.,and the giraffe is standing by her,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,sorry?,sorry,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and the giraffe is stand/ing by her [+_bch].,and the giraffe is standing by her,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then her dad is run/ing : to her.,and then her dad is running to her,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then her dad is fix/ing it up.,and then her dad is fixing it up,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then (sh) she is sit/ing on the thing hold/ing her knee : still : and sit/ing on the bench.,and then she is sitting on the thing holding her knee still and sitting on the bench,0 0 0 0 6 0 0 0 6 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then (sh um) she is (sup) like grin/ing.,and then she is like grinning,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,the elephant is[-:] say/ing wow : to the giraffe (hold/ing the : um) hold/ing the plane.,the elephant is saying wow to the giraffe holding the plane,0 0 0 6 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,: and then he is[-:] zoom/ing it up in twirl/s and stuff like that.,and then he is zooming it up in twirls and stuff like that,0 0 0 0 6 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,"and she is just surprise/ed, the elephant.",and she is just surprised the elephant,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then (uh) the elephant take/3s it away from the giraffe : grab/3s it : and start/3s play/ing with it.,and then the elephant takes it away from the giraffe grabs it and starts playing with it,0 0 0 0 3 0 0 0 0 0 3 0 0 3 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then she drop/3s it in the pool.,and then she drops it in the pool,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and : I think the giraffe is a little mad.,and I think the giraffe is a little mad,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,: and[-:] then : the giraffe is mad.,and then the giraffe is mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and (she is) she is scare/ed.,and she is scared,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then her dad come/3s.,and then her dad comes,0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,: and[-:] (um) her dad is go/ing like this [~_child_has_hands_on__hips].,and her dad is going like this,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and (she is just : really) she is not happy.,and she is not happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,like she is mad.,like she is mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,"she has her hand/s on her hip/s, oh right.",she has her hands on her hips oh right,0 0 0 1 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then she is explain/ing what happen/ed : to her dad.,and then she is explaining what happened to her dad,0 0 0 0 6 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and the giraffe is still a little mad.,and the giraffe is still a little mad,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then : her dad is : (getting) try/ing to get it.,and then her dad is trying to get it,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,but he can not.,but he can not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,: and (then um) then giraffe is cry/ing.,and then giraffe is crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,: and then her mom come/3s and has a net in her hand/s and : is go/ing to[:_gonna] get it.,and then her mom comes and has a net in her hands and is going to get it,0 0 0 0 3 0 0 0 0 0 0 1 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then she get/3s it.,and then she gets it,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,: then she is hold/ing (the : um) the : (um :) plane.,then she is holding the plane,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,: and then : the giraffe is : happy to get his plane back.,and then the giraffe is happy to get his plane back,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,(um) the rabbit : and : I will say : the dog are play/ing and make/ing a sandcastle : in the sandbox.,the rabbit and I will say the dog are playing and making a sandcastle in the sandbox,0 0 0 0 0 0 0 0 0 6 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,: and then : the rabbit is[-:] play/ing with a bucket.,and then the rabbit is playing with a bucket,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and : the dog : is (fix/ing his like) touch/ing his castle.,and the dog is touching his castle,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,then[-:] the bunny rabbit come/3s and dump/3s sand on (the) his castle.,then the bunny rabbit comes and dumps sand on his castle,0 0 0 0 3 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and the dog is surprise/ed.,and the dog is surprised,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and the : rabbit is happy.,and the rabbit is happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,: and then the castle is : broken.,and then the castle is broken,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,he is sort of sad.,he is sort of sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then the rabbit is a little surprise/ed.,and then the rabbit is a little surprised,0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,: and then the dog is cry/ing (cause his castle).,and then the dog is crying,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and the rabbit is : think/ing : should he did it or should he not do it [EU].,and the rabbit is thinking should he did it or should he not do it,0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,they are go/ing on a picnic : the dog and the rabbit.,they are going on a picnic the dog and the rabbit,0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and : the rabbit is eat/ing so much because he gots|get[EW:got] it all out.,and the rabbit is eating so much because he gots it all out,0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and the dog is just get/ing his stuff out.,and the dog is just getting his stuff out,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then (he had) he is stuff/ed.,and then he is stuffed,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and he is about to fall over.,and he is about to fall over,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,then he fall/3s over.,then he falls over,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and the dog is run/ing to the doctor.,and the dog is running to the doctor,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,(and then the doctor) [~_requests_page_turn] [+_bch].,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,(and then) and then (um) the dog pull/3s the doctor over to the rabbit.,and then the dog pulls the doctor over to the rabbit,0 0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then the rabbit : is talk/ing to the bunny ask/ing if he feel/3s all right.,and then the rabbit is talking to the bunny asking if he feels all right,0 0 0 0 0 6 0 0 0 6 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then : the rabbit go/3s home : with his mom.,and then the rabbit goes home with his mom,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,(um the[-:] ) the dog is : go/ing.,the dog is going,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and the balloon is hang/ing off of the[-:] : wagon.,and the balloon is hanging off of the wagon,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then the rabbit come/3s along.,and then the rabbit comes along,0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,then the bunny show/3s that the balloon is there.,then the bunny shows that the balloon is there,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and the dog is : stand/ing by there (lo) listen/ing.,and the dog is standing by there listening,0 0 0 0 6 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,(and then[-:] the rabbit) and then the rabbit come/3s and take/3s it off.,and then the rabbit comes and takes it off,0 0 0 0 3 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then the rabbit let/3s go of it.,and then the rabbit lets go of it,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then it is way up in the sky.,and then it is way up in the sky,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and the dog is really mad.,and the dog is really mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and the rabbit is surprise/ed.,and the rabbit is surprised,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,: and then : he see/3s that there is[EW:are] more balloon/s.,and then he sees that there is more balloons,0 0 0 3 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,(and then he go/3s over to the) [~_I_mean_that's_the_other_page] [+_bch].,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then he ask/3s for the[-:] balloon.,and then he asks for the balloon,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then he check/3s in his pocket/s if there is (um) any money [EU].,and then he checks in his pockets if there is any money,0 0 0 3 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and there is not.,and there is not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then he is[-:] stand/ing there.,and then he is standing there,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then he run/3s over to his mom.,and then he runs over to his mom,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then the rabbit ask/3s if he can have a balloon.,and then the rabbit asks if he can have a balloon,0 0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then : she give/3s him (five cent/s) : ten cent/s [~_I_mean].,and then she gives him ten cents,0 0 0 3 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then they both got a balloon.,and then they both got a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,once upon a time (gi) Giraffe and Elephant were play/ing ball close to a swim/ing pool.,once upon a time Giraffe and Elephant were playing ball close to a swimming pool,0 0 0 0 0 0 0 0 6 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,they had lot/s of fun : until[!] the ball drop/ed into (the) the swim/ing pool.,they had lots of fun until the ball dropped into the swimming pool,0 0 1 0 0 0 0 0 4 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,they said ooww someone get it!,they said ooww someone get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: Giraffe swam and try/ed to get it.,Giraffe swam and tried to get it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: Giraffe (got it) got it for Elephant.,Giraffe got it for Elephant,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,but he was wet[!].,but he was wet,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: Giraffe : put his hand/s behind his back.,Giraffe put his hands behind his back,0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,(and) (and) and Elephant said thank you.,and Elephant said thank you,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,Elephant and Giraffe want/ed to swim in the swimming pool.,Elephant and Giraffe wanted to swim in the swimming pool,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,there was a sign stat/ing no run/ing.,there was a sign stating no running,0 0 0 0 6 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,but they did not (li) listen.,but they did not listen,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: (elephant and gir) Elephant decide/ed to run (along) along (the) the swimming pool.,Elephant decided to run along the swimming pool,0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,(she is) (she) (she is gonna s) she start/ed to slip.,she started to slip,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: then she hurt her feet.,then she hurt her feet,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,(she is cry) she was cry/ing.,she was crying,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: the lifeguard then came to see what was happen/ing.,the lifeguard then came to see what was happening,0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: the lifeguard check/ed her knee.,the lifeguard checked her knee,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,but she still cry/ed.,but she still cried,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: the lifeguard put her on the bench.,the lifeguard put her on the bench,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,and she put a bandage on (her) (her) her knee.,and she put a bandage on her knee,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: and the lifeguard said no run/ing[!] [~_child_points_to_sign_in__picture] : next time okay?,and the lifeguard said no running next time okay,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,(gi) Giraffe and Elephant (were) were go/ing *to play with giraffe[EW:giraffe/z] airplane (in the sw) close to the swimming pool.,Giraffe and Elephant were going play with giraffe airplane close to the swimming pool,0 0 0 0 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: giraffe : flew his airplane.,giraffe flew his airplane,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: (then) then elephant snatch/ed[!] it and said I want my turn!,then elephant snatched it and said I want my turn,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: then she threw[!] it : but *it land/ed in the swimming pool [EU].,then she threw it but landed in the swimming pool,0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,giraffe was mad[!]!,giraffe was mad,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,(he) he look/ed (at) at giraffe madly.,he looked at giraffe madly,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: then the lifeguard came.,then the lifeguard came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,he said what happen/ed?,he said what happened,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,(he said) giraffe said : elephant : threw (my) (my) my airplane into the swimming pool.,giraffe said elephant threw my airplane into the swimming pool,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: lifeguard said I think I will try to reach it.,lifeguard said I think I will try to reach it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,he said okay.,he said okay,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: the lifeguard try/ed to reach it.,the lifeguard tried to reach it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: but he could not!,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,(then uh hm) (then) then giraffe (s) kept on cry/ing.,then giraffe kept on crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: then : a woman in : a swimming suit got a net (and) and (caught) was go/ing to[:_gonna] get it out.,then a woman in a swimming suit got a net and was going to get it out,0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: and she got it.,and she got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: giraffe said thank you to the woman (that) (that) that (get) got (her) his airplane out.,giraffe said thank you to the woman that got his airplane out,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: he hug/ed his airplane and said (not) let us not play close to the swimming pool any more.,he hugged his airplane and said let us not play close to the swimming pool any more,0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,once upon a time there is : a dog and a (cat uh) rabbit.,once upon a time there is a dog and a rabbit,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,(they) (they want/ed) they were go/ing to[:_gonna] play together in the sandbox.,they were going to play together in the sandbox,0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,they were go/ing to[:_gonna] make a sandcastle.,they were going to make a sandcastle,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,rabbit got the sand.,rabbit got the sand,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,and dog put the sand (on the) (on) on the sandbox to make the castle.,and dog put the sand on the sandbox to make the castle,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,then rabbit dump/ed (the) the sand on top of the sandcastle.,then rabbit dumped the sand on top of the sandcastle,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,then it collapse/ed!,then it collapsed,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,he was sad.,he was sad,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,he was shock/ed!,he was shocked,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,(they) dog began to cry.,dog began to cry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,but he said oh : we will build another one.,but he said oh we will build another one,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,once upon the time dog and rabbit were go/ing to[:_gonna] have a picnic.,once upon the time dog and rabbit were going to have a picnic,0 0 0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,they were go/ing to[:_gonna] (go somewhere) go to a good spot to have a picnic.,they were going to go to a good spot to have a picnic,0 0 6 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,and they chose (the good one) a good one.,and they chose a good one,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,(they) (r) (ca) (r) rabbit and dog ate (the) (the) their food.,rabbit and dog ate their food,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,(but) but rabbit said yuck this is yucky!,but rabbit said yuck this is yucky,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,rabbit : soon became sick.,rabbit soon became sick,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,he ate too much food.,he ate too much food,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,he said dog I need to go see (a dentist) a doctor.,he said dog I need to go see a doctor,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,I still[!] have it!,I still have it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,call the doctor!,call the doctor,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,I am really get/ing sick.,I am really getting sick,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,after : the doctor came.,after the doctor came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,(he said) (he) (the dog) the dog said to the rabbit come here.,the dog said to the rabbit come here,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,(my fra) my friend rabbit is sick!,my friend rabbit is sick,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: then[~!_laughing] the : dog help/ed by pull/ing her until she was in the sandbox.,then the dog helped by pulling her until she was in the sandbox,0 0 0 4 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,she said hey why are you pull/ing me?,she said hey why are you pulling me,0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,I know what to do!,I know what to do,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: (ra) (r) (the) the doctor look/ed (at) at (doc) rabbit.,the doctor looked at rabbit,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,(he look/3s) (he) he check/ed his tongue.,he checked his tongue,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,(he said) (he sa) he said stick out your tongue!,he said stick out your tongue,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,he said [~_makes_sound_'aah'].,he said,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,he said okay.,he said okay,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,turn the page [+_bch].,turn the page,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,(then) Did you miss anything [+_bch]?,Did you miss anything,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,no.,no,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,(the) (the) (the) the doctor told the rabbit to (go to his) (his : office to see if he was all) go to his office (to see) (to see him if he wa) to check his mouth again.,the doctor told the rabbit to go to his office to check his mouth again,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,dog was happy.,dog was happy,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,can I always start with once upon a time if I want to [+_bch]?,can I always start with once upon a time if I want to,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,sure.,sure,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,once upon a time dog and (cat) (rabbit) : [~_okay_I_I_mean] : dog and rabbit had a wagon.,once upon a time dog and dog and rabbit had a wagon,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,(they w) they had a balloon too.,they had a balloon too,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,they both want/ed the balloon.,they both wanted the balloon,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,both of them said I want that.,both of them said I want that,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,but both of them did not agree.,but both of them did not agree,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,they both want/ed them still.,they both wanted them still,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,rabbit tie/ed it to the wagon (so) so dog cannot get it.,rabbit tied it to the wagon so dog cannot get it,0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,he was say aah I want that!,he was say aah I want that,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,then the balloon flew away.,then the balloon flew away,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,dog was angry!,dog was angry,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,he want/ed to hit rabbit.,he wanted to hit rabbit,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,then they saw (a) (a) a man carry/ing balloon/s.,then they saw a man carrying balloons,0 0 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,it costed|cost[EW:cost] five cent/s.,it costed five cents,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,he said can I have one please?,he said can I have one please,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,he said only if you have five cent/s.,he said only if you have five cents,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,and (he) rabbit pull/ed his pocket.,and rabbit pulled his pocket,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,it was empty!,it was empty,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,(uh) but (the dog) (the) (the) the guy who : had the balloon/s said no you can not have them!,but the guy who had the balloons said no you can not have them,0 0 0 0 0 0 1 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,only if you have five cent/s.,only if you have five cents,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,rabbit want/ed to ask : his mom.,rabbit wanted to ask his mom,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,and (she) he went.,and he went,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,and he saw her.,and he saw her,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,so he went to tell her that : they want/ed balloon/s.,so he went to tell her that they wanted balloons,0 0 0 0 0 0 0 0 4 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,(the mom : paid) the (mom s) mom said okay.,the mom said okay,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,are you sure you want them?,are you sure you want them,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,he said okay.,he said okay,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: the mom gave (the) the guy (two n) two nickel/s so (the) (the two guys) the two boy/s can have them.,the mom gave the guy two nickels so the two boys can have them,0 0 0 0 0 0 1 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,(dog) (ca) (ha) rabbit and dog were very happy.,rabbit and dog were very happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,and they said thank you to : rabbit/z mom.,and they said thank you to rabbit's mom,0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,the giraffe and the elephant and the ball [~_Title].,the giraffe and the elephant and the ball,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,once upon a time (a rabbit and a) (I mean a : uh zebra and I mean) : a giraffe and a[EW:an] elephant were play/ing by the pool.,once upon a time a giraffe and a elephant were playing by the pool,0 0 0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,the ball flew in.,the ball flew in,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,the giraffe came to get it.,the giraffe came to get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,he gave it back.,he gave it back,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,I love you Missus elephant [~_laughing].,I love you Missus elephant,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,I what?,I what,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,I like you Missus elephant [+_bch].,I like you Missus elephant,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,Oh I love you Missus elephant.,Oh I love you Missus elephant,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,"(the) (the el) the elephant (and the) and the giraffe in the pool, no run/ing [~_title].",the elephant and the giraffe in the pool no running,0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,the elephant want/ed to jump off of the jumping board.,the elephant wanted to jump off of the jumping board,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,he ran.,he ran,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,she fell.,she fell,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,she : cry/ed.,she cried,0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,(and the) and the : giraffe came run/ing to her.,and the giraffe came running to her,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,he came to tell (her mom) [~_I_mean] the coach.,he came to tell the coach,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,(are) : are you okay the coach said.,are you okay the coach said,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,no[!] she cry/ed.,no she cried,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,he put a bandage on her.,he put a bandage on her,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,(hh) he said there.,he said there,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,(no run/ing in the) no run/ing he said : because it said on the board.,no running he said because it said on the board,0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,the giraffe and the elephant and the airplane [~_title].,the giraffe and the elephant and the airplane,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,the giraffe and the elephant were play/ing (wi) with their toy airplane.,the giraffe and the elephant were playing with their toy airplane,0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,(the) the elephant want/ed a turn.,the elephant wanted a turn,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,(she she threw it right in the) she took it from him and threw it right[!] in the pool.,she took it from him and threw it right in the pool,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,(h) the[-:] giraffe was not very happy.,the giraffe was not very happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,she cross/ed her finger/s.,she crossed her fingers,0 4 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,he said [~_makes_'errrr'_sound] look what you did now!,he said look what you did now,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,you threw my : first toy airplane in the water!,you threw my first toy airplane in the water,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,I am tell/ing the coach.,I am telling the coach,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,he ran.,he ran,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,and the coach came.,and the coach came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,and he said I will get it.,and he said I will get it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,he could not reach it.,he could not reach it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,he try/ed again.,he tried again,0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,he still could not reach it.,he still could not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,(he) (he s) he said (I can not rea) I can not reach it.,he said I can not reach it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,ask Missus[!] elephant.,ask Missus elephant,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,(she came) he went to (came) come and tell her.,he went to come and tell her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,and she came to get the airplane.,and she came to get the airplane,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,she got it out with her scooper.,she got it out with her scooper,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,(here you go mist) here you go sir (she said) (she) she said to (the) the[-:] giraffe.,here you go sir she said to the giraffe,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,thank you he said.,thank you he said,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,I will never play with this toy again by the water.,I will never play with this toy again by the water,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,the rabbit and the dog [~_title].,the rabbit and the dog,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,once upon a time a rabbit and a dog were build/ing a sandcastle.,once upon a time a rabbit and a dog were building a sandcastle,0 0 0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,the rabbit was not very good at it.,the rabbit was not very good at it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,the rabbit pour/ed the castle over [EU].,the rabbit poured the castle over,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,the rabbit and the dog have lunch [~_title].,the rabbit and the dog have lunch,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,once upon a time a dog and a rabbit (were ea) were eat/ing their lunch.,once upon a time a dog and a rabbit were eating their lunch,0 0 0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,the rabbit was eat/ing everything.,the rabbit was eating everything,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,soon enough he got fat.,soon enough he got fat,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,he felt dizzy.,he felt dizzy,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,(litt do) little dog (ra) ran to tell his mom.,little dog ran to tell his mom,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,he kept on pull/ing her.,he kept on pulling her,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,[~_in_a_different_voice] well I must say you ate too much.,well I must say you ate too much,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,(he took him) she took him home so that he could have a diet.,she took him home so that he could have a diet,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,the rabbit and the dog and the wagon [~_title].,the rabbit and the dog and the wagon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,(one) once upon a time a dog (an) and a rabbit were use/ing (their uh trailer) their (uh) trailer to go on a ride.,once upon a time a dog and a rabbit were using their trailer to go on a ride,0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,they tie/ed a balloon to the top.,they tied a balloon to the top,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,it start/ed to flow[EW:float] away.,it started to flow away,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,the dog was mad.,the dog was mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,(the do) (the do) but the rabbit saw (something real) something that would replace it.,but the rabbit saw something that would replace it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,he said can I have these balloon/s?,he said can I have these balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,: balloon/s five cent/s.,balloons five cents,1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,I do not have any five cent/s he said [EU].,I do not have any five cents he said,0 0 0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,the dog came run/ing along.,the dog came running along,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,they felt really sad.,they felt really sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,the rabbit came to run to his mom [EU].,the rabbit came to run to his mom,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,came to what?,came to what,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,run to his mom [+_bch].,run to his mom,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,mom can you buy a balloon for me he said?,mom can you buy a balloon for me he said,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,how much does it cost?,how much does it cost,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,five dollar/s.,five dollars,0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,okay thank you.,okay thank you,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,and they both pretend they (had big chubby : uh) big chubby tummy/s [EU].,and they both pretend they big chubby tummies,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,(um) once upon a time a giraffe (met) met a[EW:an] elephant : bounce/ing a ball : (by) (in the sw) (um) by the swimming pool.,once upon a time a giraffe met a elephant bouncing a ball by the swimming pool,0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,the ball drop/ed in the water.,the ball dropped in the water,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,(and) and the (elephant um) (elephant um) elephant (did not like it) (it) it would[?] like the ball.,and the elephant it would like the ball,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,the elephant start/ed to cry.,the elephant started to cry,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,and the giraffe : (um) dived|dive[EW:dove] (uh) : try/ing to get the ball for her.,and the giraffe dived trying to get the ball for her,0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,: the giraffe gave the ball to the elephant.,the giraffe gave the ball to the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,: (um) the giraffe : got out of the water.,the giraffe got out of the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,and : the elephant (ss) start/ed to like the giraffe.,and the elephant started to like the giraffe,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,(uhm) : once upon a time there was an elephant and (a) a giraffe hold/ing a towel.,once upon a time there was an elephant and a giraffe holding a towel,0 0 0 0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,: the elephant : was run/ing to the diving board.,the elephant was running to the diving board,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,: [~_child_breathes_deeply] the elephant was run/ing (fast) fast and slip/ed.,the elephant was running fast and slipped,0 0 0 6 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,: [~_child_breathes_deeply] (um) the elephant did not notice there was a sign say/ing no run/ing.,the elephant did not notice there was a sign saying no running,0 0 0 0 0 0 0 0 0 6 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,and she hurt herself on her knee.,and she hurt herself on her knee,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,(um) (she) she start/ed to cry a little.,she started to cry a little,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,the lifeguard (came) came.,the lifeguard came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,: (um) the lifeguard put a bandaid (on) on : (the) the owie.,the lifeguard put a bandaid on the owie,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,: the lifeguard brought her (to) to a wooden : (ch) chair.,the lifeguard brought her to a wooden chair,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,: [~_child_breathes_deeply] the lifeguard said there was no run/ing and became mad at her.,the lifeguard said there was no running and became mad at her,0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,what?,what,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,and became mad [+_bch].,and became mad,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,one day a giraffe (um : um) went to a swimming pool with her friend : and had (a ai) a toy airplane.,one day a giraffe went to a swimming pool with her friend and had a toy airplane,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,: (he a) (h) he start/ed to play with the elephant to make it fly.,he started to play with the elephant to make it fly,0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,(um : the) : the elephant (took the ele) took the airplane from the giraffe : and want/ed to see it.,the elephant took the airplane from the giraffe and wanted to see it,0 0 0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,she accidentally drop/ed it : (by) in the water.,she accidentally dropped it in the water,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,the giraffe was very : very : very mad.,the giraffe was very very very mad,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,: then the lifeguard came.,then the lifeguard came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,(and the) and the elephant : went to the lifeguard.,and the elephant went to the lifeguard,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,she said if he could : reach and get the airplane.,she said if he could reach and get the airplane,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,the lifeguard try/ed to get (the ele) the airplane.,the lifeguard tried to get the airplane,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,but (he) it was too far.,but it was too far,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,: the elephant kneel/ed down and start/ed cry/ing.,the elephant kneeled down and started crying,0 0 4 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,(the ele) and the giraffe kneel/ed down and start/ed to cry.,and the giraffe kneeled down and started to cry,0 0 0 4 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,the elephant felt sorry.,the elephant felt sorry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,: (then) then this woman came with a fishnet.,then this woman came with a fishnet,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,and she : put the net by the water to try and get the airplane.,and she put the net by the water to try and get the airplane,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,she got the airplane and gave it back to the giraffe.,she got the airplane and gave it back to the giraffe,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,the giraffe was happy now.,the giraffe was happy now,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,and[-:] (the elephant) the elephant was happy too.,and the elephant was happy too,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,once upon a time there was a dog.,once upon a time there was a dog,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,and he met a rabbit.,and he met a rabbit,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,the dog had built (um) a sandcastle.,the dog had built a sandcastle,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,and the rabbit fill/ed a bucket with sand.,and the rabbit filled a bucket with sand,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,(the) the rabbit had dump/ed the sand on the castle.,the rabbit had dumped the sand on the castle,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,and the dog : (did not) was not happy.,and the dog was not happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,(um : the rabbit um) : the rabbit look/3s sorry.,the rabbit looks sorry,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,and the dog : [+_bch] [EU].,and the dog,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,turn the page?,turn the page,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,yeah [+_bch].,yeah,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,the dog start/ed to cry.,the dog started to cry,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,once upon a time there was : a dog : go/ing for a picnic and met a rabbit [EU].,once upon a time there was a dog going for a picnic and met a rabbit,0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,(um the dog) the rabbit had lot/s of food.,the rabbit had lots of food,0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,and the dog was look/ing at the rabbit.,and the dog was looking at the rabbit,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,the dog start/ed to eat.,the dog started to eat,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,the rabbit was full and had a stomachache.,the rabbit was full and had a stomachache,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,then he felt dizzy and : dizzier.,then he felt dizzy and dizzier,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,(the) the dog ran to : a doctor : and told the doctor (um) about the stomachache.,the dog ran to a doctor and told the doctor about the stomachache,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,the dog start/ed to (pull) pull the doctor (by) : by the rabbit.,the dog started to pull the doctor by the rabbit,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,the doctor (checked) check/ed the rabbit.,the doctor checked the rabbit,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,(um) [~_child_makes_sounds_while_thinking_about_what_to_say] : the doctor said if he was okay.,the doctor said if he was okay,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,and then he said he was okay.,and then he said he was okay,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,once upon a time there was a dog with a wagon.,once upon a time there was a dog with a wagon,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,and a balloon was tie/ed (on the top) on the wagon.,and a balloon was tied on the wagon,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,(he met) he met a rabbit.,he met a rabbit,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,(and) : [~_child_breathed_deep] (and um asked him um) and the rabbit want/ed to hold the balloon.,and the rabbit wanted to hold the balloon,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,(the ra) the rabbit untie/ed the knot with the dog did not want him to.,the rabbit untied the knot with the dog did not want him to,0 0 4 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,the rabbit (lo) accidentally let go of the : balloon.,the rabbit accidentally let go of the balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,and the balloon : flew up.,and the balloon flew up,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,(the dog tried to) the dog try/ed : to get the balloon down.,the dog tried to get the balloon down,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,: (um it) the balloon went very high.,the balloon went very high,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,the dog was very mad at the rabbit.,the dog was very mad at the rabbit,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,(then they s) then the rabbit saw (a b) a rabbit sell/ing balloon/s.,then the rabbit saw a rabbit selling balloons,0 0 0 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,but the dog did not.,but the dog did not,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,the rabbit ask/ed if he could have : a balloon.,the rabbit asked if he could have a balloon,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,(and) (and um) : and (the) : the dog (um) was not sure what he was do/ing.,and the dog was not sure what he was doing,0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,: the rabbit show/ed his pocket/s.,the rabbit showed his pockets,0 0 4 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,and there was[EW:were] : no balloon/s.,and there was no balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,the balloons were five cent/s.,the balloons were five cents,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,: the dog went (by the) (be) beside the rabbit : and look/ed at the : rabbit sell/ing the balloon/s.,the dog went beside the rabbit and looked at the rabbit selling the balloons,0 0 0 0 0 0 0 4 0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,(um) the rabbit went to the doctor.,the rabbit went to the doctor,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,he ask/ed (if) : the doctor if he had money to get balloon/s for the rabbit and the dog.,he asked the doctor if he had money to get balloons for the rabbit and the dog,0 4 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,the doctor gave him money for two balloon/s : for the dog and the rabbit.,the doctor gave him money for two balloons for the dog and the rabbit,0 0 0 0 0 0 0 1 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,the (ra) the dog and the rabbit were please/ed.,the the dog and the rabbit were pleased,0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,and : the doctor (was ver) was happy because (they wer) they were happy.,and the doctor was happy because they were happy,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,a[EW:an] elephant and xx.,a elephant and,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,an elephant and : what do you think?,an elephant and what do you think,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,xx.,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,you can call it whatever you want.,you can call it whatever you want,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,a cow.,a cow,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,and : the cow went in the water.,and the cow went in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,the moon say/3s no no.,the moon says no no,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,xx.,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,"then the : then the : [~_EXA:_I_can't_hear_you,_say_it_louder] it cried because : it did not come in the water.",then the then the it cried because it did not come in the water,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,it did not come in the water?,it did not come in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,yeah [+_bch].,yeah,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,the elephant cry/ed?,the elephant cried,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then the xx.,then the,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,because he got?,because he got,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,in the water [+_bch].,in the water,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,"in the water, wow!",in the water wow,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then : he : pick|pick[EW:picked] : up : a[EW:an] : apple.,then he pick up a apple,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then he pick/ed up a[EW:an] : apple?,then he picked up a apple,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then her[EW:she] *is sad [EU].,then her sad,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then her[EW:she] *is sad [EU].,then her sad,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,xxx.,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,what did she say?,what did she say,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,[~_whispers] beautiful.,beautiful,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,beautiful?,beautiful,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,yeah [+_bch].,yeah,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,that is it [+_bch].,that is it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,the elephant want|want[EW:wanted] to go in the water.,the elephant want to go in the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,the elephant want|want[EW:wanted] to go in the water.,the elephant want to go in the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,[~_yeah] then (the) let us.,then let us,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,it is cold?,it is cold,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,[~_no] (it is) let us go.,let us go,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,oh let us go I see.,oh let us go I see,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then turn the other way [EU].,then turn the other way,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then her[EW:she] runned|run[EW:ran] back there.,then her runned back there,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,her[EW:she] runned|run[EW:ran] back there.,her runned back there,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,[~_yeah] then her[EW:she] hurted|hurt[EW:hurt] her leg.,then her hurted her leg,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,and (the) her dad elephant (fix/ed a) bandage/ed it.,and her dad elephant bandaged it,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,her dad elephant give|give[EW:gave] her a bandaid?,her dad elephant give her a bandaid,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,no bandage [+_bch].,no bandage,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then her[EW:she] put on her xx.,then her put on her,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,her[EW:she] put on her boot/s and her[EW:she] go[EW:went] home?,her put on her boots and her go home,0 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then he pick|pick[EW:picked] her up.,then he pick her up,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,pardon me.,pardon me,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,wake her up.,wake her up,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,wake her up!,wake her up,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,he : *is go/ing to go put her bandage on [EU].,he going to go put her bandage on,0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then (the) : they *are sit/ing on the bench [EU].,then they sitting on the bench,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,pardon me.,pardon me,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,a bench [+_bch].,a bench,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,they are sit/ing on a bench.,they are sitting on a bench,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,yes [+_bch].,yes,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,they *are talk/ing [EU].,they talking,0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then her eye came to close [EU].,then her eye came to close,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,and her[EW:she] say|say[EW:said] I no like airplanes [EU].,and her say I no like airplanes,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,[~_repeats_what_CHI_said].,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then xx like an airplane.,then like an airplane,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then he give|give[EW:gave] it to her.,then he give it to her,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then he say|say[EW:said] give it back.,then he say give it back,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then her[EW:she] put it in the water.,then her put it in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then her[EW:she] put it?,then her put it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,in the water [+_bch].,in the water,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then : he was mad at her.,then he was mad at her,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then he was mad at her.,then he was mad at her,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then xx : the airplane : *is in the water [EU].,then the airplane in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,what?,what,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,[~_whispers] in the water [+_bch].,in the water,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,the airplane is in the water.,the airplane is in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,xxx.,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,he is go/ing *to get almost in the water [EU].,he is going get almost in the water,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,[~_repeats_what_CHI_said].,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then (uh) he can not reach it : the bad elephant.,then he can not reach it the bad elephant,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,[~_repeats_what_CHI_said].,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then : he cry/ed.,then he cried,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,and then : the mom [EU].,and then the mom,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,and it can not get it.,and it can not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,[~_repeats_what_CHI_said].,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then her[EW:she] get|get[EW:got] it.,then her get it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,[~_repeats_what_CHI_said].,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,that is : all [+_bch].,that is all,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,can you tell me a little bit about this part?,can you tell me a little bit about this part,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then (xx) [~_EXA:_then_#] him[EW:he] give|give[EW:gave] it to her.,then him give it to her,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,"give it to her, I see.",give it to her I see,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then : (her) : her (got xx) [~_EXA:_got_#] got a shovel [EU].,then her got a shovel,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,and her[EW:she] got it.,and her got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,[~_repeats_what_CHI_said].,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,xxx.,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,is it all done?,is it all done,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,yeah [+_bch].,yeah,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,(um) : what is this [+_bch]?,what is this,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,what do you think it is?,what do you think it is,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,I can not see so you have to think of something yourself.,I can not see so you have to think of something yourself,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,okay [+_bch].,okay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,this (is a) is a bunny rabbit.,this is a bunny rabbit,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,this is a dog.,this is a dog,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,okay tell me what happen/ed.,okay tell me what happened,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,(he is) the dog : he put lot/s of sand xx bucket.,the dog he put lots of sand bucket,0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then he put it on the sandcastle him[EW:he] make|make[EW:made].,then he put it on the sandcastle him make,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,: and then what?,and then what,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,(he) the bunny rabbit put : sand in his bucket.,the bunny rabbit put sand in his bucket,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then he put it on the dog/z castle.,then he put it on the dog's castle,0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then he *is go/ing *to try to put it in [EU].,then he going try to put it in,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,(then he will) then he dump/ed it.,then he dumped it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then he said he (do not lo) can not any more [EU].,then he said he can not any more,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,and then he cry/ed and he said ha.,and then he cried and he said ha,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,that is all [+_bch].,that is all,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,the bunny rabbit and the dog they was[EW:were] go/ing for a picnic with the (bas) basket.,the bunny rabbit and the dog they was going for a picnic with the basket,0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,with the basket?,with the basket,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,food.,food,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,of food food?,of food food,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,no fruit is in there.,no fruit is in there,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,fruit is in there.,fruit is in there,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,[~_yeah] and (there was) : (he jus) he eat|eat[EW:ate] his own bun.,and he eat his own bun,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then (he) he have|have[EW:has] a drinks[EW:drink].,then he have a drinks,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,and he have|have[EW:has] : a bun dog.,and he have a bun dog,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,and he have|have[EW:has] to drink.,and he have to drink,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,and then : a bunny rabbit his tummy was hurt/ing because he eat|eat[EW:ate] all *that food [EU].,and then a bunny rabbit his tummy was hurting because he eat all food,0 0 0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,(he) then : the dog talk/ed to *the other bunny [EU].,then the dog talked to other bunny,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then (uh) he said wait.,then he said wait,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,(uh) then he said I will pulled|pull[EW:pull] her jacket.,then he said I will pulled her jacket,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,(um) then : the bunny and the other (uh) bunny : he did not feel like come/ing.,then the bunny and the other bunny he did not feel like coming,0 0 0 0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,and he is go/ing *to helping|help[EW:help] to feel his tummy [EU].,and he is going helping to feel his tummy,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then he feel/3s great.,then he feels great,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,and that is his grandma : bunny.,and that is his grandma bunny,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,(um) the dog (he have|have[EW:has] a) (a um) he have|have[EW:has] wheel/s for he is push/ing.,the dog he have wheels for he is pushing,0 0 0 0 1 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then he can push with somebody get/3s in with (when) [EU].,then he can push with somebody gets in with,0 0 0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,there is a balloon on it with tape.,there is a balloon on it with tape,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,and then he is go/ing *to push it [EU].,and then he is going push it,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,(he will) and then he *is go/ing *to get it [EU].,and then he going get it,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,hold it tight.,hold it tight,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,and then (he) he tie/3s it off [EU].,and then he ties it off,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then it blowed|blow[EW:blew] away.,then it blowed away,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then (he feel/3s that) : [~_EXA:_then_he_what] (he was) (he said he was m) the dog was (m) mad.,then the dog was mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then the bunny rabbit is go/ing to get balloon/s (fr) from that man : the bunny rabbit man.,then the bunny rabbit is going to get balloons from that man the bunny rabbit man,0 0 0 0 0 6 0 0 1 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,and then (he) (he) (one for) [~_EXA:_then_he_what_tell_me_this_again] he give|give[EW:gave] one for the dog and the bunny rabbit [EU].,and then he give one for the dog and the bunny rabbit,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,(then the) they having|have[EW:have] a balloon.,they having a balloon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then there was find they have[?] [EU].,then there was find they have,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,find the what?,find the what,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,the bunny rabbit find|find[EW:finds] a balloon.,the bunny rabbit find a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,and then (he s) he said (he s) the kid/z bunny rabbit mom he give|give[EW:gave] him : a balloon [EU].,and then he said the kid's bunny rabbit mom he give him a balloon,0 0 0 0 0 2 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then it is the end [+_bch].,then it is the end,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,a giraffe : meet/3s an elephant.,a giraffe meets an elephant,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,the elephant : seem/3s like she is ask/ing the giraffe to play with her.,the elephant seems like she is asking the giraffe to play with her,0 0 3 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,the giraffe : play/3s with the elephant.,the giraffe plays with the elephant,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,but : the ball go/3s into the water.,but the ball goes into the water,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,the giraffe swim/3s to get the ball.,the giraffe swims to get the ball,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,he give/3s the ball to the elephant.,he gives the ball to the elephant,0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and the elephant : thank/3s him.,and the elephant thanks him,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,she think/3s that he is her hero.,she thinks that he is her hero,0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,the[-:] elephant : and the giraffe they want : to : jump in the water to play : in the water.,the elephant and the giraffe they want to jump in the water to play in the water,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,the elephant go/3s first.,the elephant goes first,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,but they run.,but they run,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,the elephant : hurt/3s herself.,the elephant hurts herself,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and the : giraffe tell/3s a lifeguard.,and the giraffe tells a lifeguard,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,the lifeguard put/3s a bandaid on the elephant/z hurt : and then make/3s it better.,the lifeguard puts a bandaid on the elephant's hurt and then makes it better,0 0 3 0 0 0 0 2 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,but then he make/3s her sit on the bench because she ran.,but then he makes her sit on the bench because she ran,0 0 0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,finish/ed [+_bch].,finished,4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,the giraffe and the elephant : are go/ing to play together again.,the giraffe and the elephant are going to play together again,0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,the giraffe has an airplane.,the giraffe has an airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and the elephant is watch/ing.,and the elephant is watching,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,then the elephant grab/3s it from : the giraffe.,then the elephant grabs it from the giraffe,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and then she start/3s to play with it.,and then she starts to play with it,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,but then it land/3s in the water.,but then it lands in the water,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,the giraffe get/3s angry at the elephant.,the giraffe gets angry at the elephant,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,the lifeguard : look/3s at them.,the lifeguard looks at them,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and the elephant tell/3s the lifeguard that : (her plane) the giraffe/z plane fell in the water.,and the elephant tells the lifeguard that the giraffe's plane fell in the water,0 0 0 3 0 0 0 0 2 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,the lifeguard try/3s to get it.,the lifeguard tries to get it,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,the giraffe[!] try/3s to get it.,the giraffe tries to get it,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,then : another person come/3s.,then another person comes,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and then she has a net.,and then she has a net,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and she[!] get/3s it : and then give/3s it back to the giraffe.,and she gets it and then gives it back to the giraffe,0 0 3 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and then the giraffe hug/3s his plane.,and then the giraffe hugs his plane,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,a rabbit and a dog : meet each other.,a rabbit and a dog meet each other,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and they want to play.,and they want to play,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,the doggy build/3s a sandcastle while the rabbit fill/3s : the bucket/s.,the doggy builds a sandcastle while the rabbit fills the buckets,0 0 3 0 0 0 0 0 3 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,then the rabbit dump/3s it on the sandcastle : then make/3s the dog/z castle : broken.,then the rabbit dumps it on the sandcastle then makes the dog's castle broken,0 0 0 3 0 0 0 0 0 3 0 2 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and then the dog cry/3s.,and then the dog cries,0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and then the rabbit just go/3s like this [~_child_makes_a_motion] : with his ear/s down.,and then the rabbit just goes like this with his ears down,0 0 0 0 0 3 0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,(then they meet) the rabbit and the dog meet again.,the rabbit and the dog meet again,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,the dog say/3s she would like to eat.,the dog says she would like to eat,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and the rabbit has a carrot and love/3s it.,and the rabbit has a carrot and loves it,0 0 0 0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,then he eat/3s all of his picnic stuff.,then he eats all of his picnic stuff,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and the dog is just eat/ing her[!] sandwich and drink/ing her juice box.,and the dog is just eating her sandwich and drinking her juice box,0 0 0 0 0 6 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,then the rabbit get/3s dizzy.,then the rabbit gets dizzy,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,then the dog go/3s *and tell/3s (miss) the doctor [EU].,then the dog goes tells the doctor,0 0 0 3 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and the doctor : come/3s.,and the doctor comes,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and he take/3s his temperature.,and he takes his temperature,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and he leave/3s with the doctor.,and he leaves with the doctor,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and the dog stay/3s.,and the dog stays,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,the dog and the rabbit : meet again.,the dog and the rabbit meet again,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and the doggy she is pull/ing a wagon.,and the doggy she is pulling a wagon,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and the balloon was on top.,and the balloon was on top,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,(an) and I guess (I thi) I think I know what is go/ing to happen next.,and I guess I think I know what is going to happen next,0 0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,the rabbit : ask/3s the dog for the balloon.,the rabbit asks the dog for the balloon,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and then : the rabbit take/3s the balloon off the wagon.,and then the rabbit takes the balloon off the wagon,0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,then the rabbit and the dog try to get the balloon because : the rabbit let go : of the balloon.,then the rabbit and the dog try to get the balloon because the rabbit let go of the balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,the dog get/3s angry at the rabbit.,the dog gets angry at the rabbit,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,then they go : to get another one.,then they go to get another one,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,then the rabbit ask/3s for one[!].,then the rabbit asks for one,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and then : he said balloon/s five[-:] cent/s.,and then he said balloons five cents,0 0 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,the dog and the rabbit get sad because they can not get a balloon.,the dog and the rabbit get sad because they can not get a balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,then[-:] rabbit tell/3s his mommy : if he can get any money from her [EU].,then rabbit tells his mommy if he can get any money from her,0 0 3 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,(and she give/3s) : (she sa) (and he sa) and she ask/3s why?,and she asks why,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and then the rabbit say/3s I want a balloon.,and then the rabbit says I want a balloon,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and then she give/3s : the : storekeeper two five centses[EW:cent/s] so (sh) he can get one for[-:] : the dog and the rabbit.,and then she gives the storekeeper two five centses so he can get one for the dog and the rabbit,0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and they both get them.,and they both get them,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and then (they) they are happy.,and then they are happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(um) there is a giraffe and an elephant play/ing by the pool.,there is a giraffe and an elephant playing by the pool,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and : the elephant has a ball and is bounce/ing it by the pool.,and the elephant has a ball and is bouncing it by the pool,0 0 0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and : she throw/3s it into the water.,and she throws it into the water,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the giraffe and the elephant look surprise/ed.,and the giraffe and the elephant look surprised,0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the giraffe (go/3s and run/3s to get in) go/3s in the water and : is swim/ing to get the ball.,and the giraffe goes in the water and is swimming to get the ball,0 0 0 3 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the elephant is scare/ed that he might drowned[EW:drown].,and the elephant is scared that he might drowned,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and (the) the giraffe get/3s the ball and give/3s it to the elephant.,and the giraffe gets the ball and gives it to the elephant,0 0 0 3 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the elephant is happy.,and the elephant is happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,the elephant say/3s thank you.,the elephant says thank you,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the giraffe say/3s you are welcome.,and the giraffe says you are welcome,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(um : the) there is a[EW:an] elephant and a giraffe at the pool.,there is a elephant and a giraffe at the pool,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and there is a sign (the no).,and there is a sign,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and it say/3s no run/ing.,and it says no running,0 0 3 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the elephant (go/3s) (look/3s) see/3s a diving board : and go/3s run/ing towards it.,and the elephant sees a diving board and goes running towards it,0 0 0 3 0 0 0 0 3 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the giraffe is run/ing after her try/ing to tell her that the sign says no run/ing.,and the giraffe is running after her trying to tell her that the sign says no running,0 0 0 0 6 0 0 6 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and she slip/3s.,and she slips,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and she scrape/3s her knee.,and she scrapes her knee,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the giraffe come/3s walk/ing fast behind her to see what is the matter.,and the giraffe comes walking fast behind her to see what is the matter,0 0 0 3 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and he call/3s the lifeguard.,and he calls the lifeguard,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the lifeguard (come) come/3s : walk/ing (a li) a little bit fast but not run/ing.,and the lifeguard comes walking a little bit fast but not running,0 0 0 3 6 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the lifeguard put/3s a bandaid.,and the lifeguard puts a bandaid,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(and the) and the elephant is cry/ing.,and the elephant is crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the giraffe (is hold) is say/ing it is okay.,and the giraffe is saying it is okay,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,it will not hurt.,it will not hurt,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(um) : and the elephant has to sit on the bench (until) (un) for awhile.,and the elephant has to sit on the bench for awhile,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the lifeguard say/3s she could go in the pool after.,and the lifeguard says she could go in the pool after,0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the lifeguard show/3s her the sign that says no run/ing.,and the lifeguard shows her the sign that says no running,0 0 0 3 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and (she ssss) she say/3s oh I sorry [EU].,and she says oh I sorry,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,there is (um) a[EW:an] elephant and a giraffe at the swimming pool.,there is a elephant and a giraffe at the swimming pool,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the giraffe has a toy airplane.,and the giraffe has a toy airplane,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,"and the giraffe is (um) play/ing with the airplane, spin/ing it around.",and the giraffe is playing with the airplane spinning it around,0 0 0 0 6 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the elephant is ask/ing him if (he) she could play with it.,and the elephant is asking him if she could play with it,0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(um) the elephant take/3s it away from the giraffe.,the elephant takes it away from the giraffe,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the giraffe is say/ing no give it back.,and the giraffe is saying no give it back,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,give it back.,give it back,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the elephant accidentally drop/3s it in the water.,and the elephant accidentally drops it in the water,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the giraffe is look/ing surprise/ed.,and the giraffe is looking surprised,0 0 0 0 6 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(then the) (it is) and then it start/3s to sink.,and then it starts to sink,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(and the) and the elephant is look/ing like she never did anything.,and the elephant is looking like she never did anything,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the giraffe is get/ing mad at her say/ing why did you take it away ?,and the giraffe is getting mad at her saying why did you take it away,0 0 0 0 6 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,then the lifeguard come/3s.,then the lifeguard comes,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(and the) and the giraffe tell/3s him what happen/ed.,and the giraffe tells him what happened,0 0 0 3 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(and he) and : he is stand/ing by the pool see/ing : how they could get it out.,and he is standing by the pool seeing how they could get it out,0 0 0 6 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(and then) and then the elephant tell/3s : him that : she accidentally drop/ed it in the pool.,and then the elephant tells him that she accidentally dropped it in the pool,0 0 0 0 3 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(and) and it is sink/ing even more.,and it is sinking even more,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,then the lifeguard try/3s to get it out.,then the lifeguard tries to get it out,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and he is on his hand/s and knee/s (on the) on the pool : and try/ing to go over to get it.,and he is on his hands and knees on the pool and trying to go over to get it,0 0 0 0 0 1 0 1 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,then the lifeguard (s) tell/3s them there is nothing we could do.,then the lifeguard tells them there is nothing we could do,0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,it is too far out.,it is too far out,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the (gir) elephant and the giraffe : are sad.,and the elephant and the giraffe are sad,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the giraffe is cry/ing.,and the giraffe is crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,then the elephant/z mom come/3s : and (h) has a net (and is gonna) and tell/3s the kid/s that she will get the airplane out.,then the elephant's mom comes and has a net and tells the kids that she will get the airplane out,0 0 2 0 3 0 0 0 0 0 3 0 1 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and she take/3s the net and (sc) try/3s to scoop it out of the water.,and she takes the net and tries to scoop it out of the water,0 0 3 0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and she got it out with the net.,and she got it out with the net,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the giraffe thank/3s her very much.,and the giraffe thanks her very much,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and then the giraffe play/3s with it.,and then the giraffe plays with it,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(and he) and he say/3s to the elephant you could only play with it if you could not put it in the water.,and he says to the elephant you could only play with it if you could not put it in the water,0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,there is (um) a dog in the sandbox.,there is a dog in the sandbox,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and rabbit want/3s to play with him.,and rabbit wants to play with him,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the dog made a sandcastle.,and the dog made a sandcastle,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(the rabbit put it) the rabbit is play/ing with the dog.,the rabbit is playing with the dog,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the rabbit (um) put some sand in the bucket and is : move/ing it around with the shovel.,and the rabbit put some sand in the bucket and is moving it around with the shovel,0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the rabbit (um) take/3s the sand in the bucket and put/3s it on the dog/z[?] sandcastle.,and the rabbit takes the sand in the bucket and puts it on the dog's sandcastle,0 0 0 3 0 0 0 0 0 0 3 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(um) the rabbit wreck/3s the sandcastle (in) when he put all the sand on the sandcastle.,the rabbit wrecks the sandcastle when he put all the sand on the sandcastle,0 0 3 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(and the) and the dog looks funny.,and the dog looks funny,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and (the) now the dog is cry/ing.,and now the dog is crying,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the rabbit (um) is look/ing like he did not do nothing.,and the rabbit is looking like he did not do nothing,0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(um) the rabbit and the dog (is) are carry/ing picnic basket/s.,the rabbit and the dog are carrying picnic baskets,0 0 0 0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and they are in the forest.,and they are in the forest,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and they unpack their picnic basket/s.,and they unpack their picnic baskets,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and : the rabbit has all[!] junk food.,and the rabbit has all junk food,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the dog has only a sandwich out.,and the dog has only a sandwich out,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the rabbit ate all his food.,and the rabbit ate all his food,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(and) and (he is all) he is all look/ing silly.,and he is all looking silly,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the dog is still eat/ing his food.,and the dog is still eating his food,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,now the rabbit is get/ing dizzy.,now the rabbit is getting dizzy,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the dog : is look/ing at him.,and the dog is looking at him,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(and) and the rabbit is not feel/ing well.,and the rabbit is not feeling well,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the dog get/3s (um) a doctor (and want/3s) and is talk/ing to her about the rabbit.,and the dog gets a doctor and is talking to her about the rabbit,0 0 0 3 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and their doctor come/3s (to the picnic) to their picnic (ban) blanket to go help the rabbit.,and their doctor comes to their picnic blanket to go help the rabbit,0 0 0 3 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the doctor is (put/ing um a thermometer in the rabbit/z) go/ing to [~_gonna] put (it in) a thermometer in the rabbit/z mouth to check the temperature.,and the doctor is going to put a thermometer in the rabbit's mouth to check the temperature,0 0 0 0 6 0 0 0 0 0 0 2 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the rabbit is all well.,and the rabbit is all well,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and he is walk/ing now and thank/ing the doctor.,and he is walking now and thanking the doctor,0 0 0 6 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(um) there is a dog pull/ing it/z wagon.,there is a dog pulling it's wagon,0 0 0 0 6 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and it has a balloon tie/ed to the wagon.,and it has a balloon tied to the wagon,0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the rabbit is come/ing jog/ing to the (r) dog.,and the rabbit is coming jogging to the dog,0 0 0 0 6 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(the) the rabbit look/3s at the dog/z balloon.,the rabbit looks at the dog's balloon,0 0 3 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and it is say/ing (this i) can I have this balloon?,and it is saying can I have this balloon,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the dog say/3s no.,and the dog says no,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the rabbit untie/3s it from the wagon.,and the rabbit unties it from the wagon,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(and its the r) and the dog is look/ing : surprise/ed.,and the dog is looking surprised,0 0 0 0 6 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and (he let/3s go) the rabbit let/3s go of the balloon.,and the rabbit lets go of the balloon,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and it is fly/ing in the air.,and it is flying in the air,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and they are try/ing to catch it.,and they are trying to catch it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,the rabbit is look/ing up into the sky at the balloon.,the rabbit is looking up into the sky at the balloon,0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the dog is look/ing very angry at the rabbit.,and the dog is looking very angry at the rabbit,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(the) (the t) the rabbit see/3s a man hold/ing lot/s and lot/s of balloon/s and tell/3s the dog.,the rabbit sees a man holding lots and lots of balloons and tells the dog,0 0 3 0 0 6 1 0 1 0 1 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the dog is still look/ing angry at him.,and the dog is still looking angry at him,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,the rabbit go/3s to the man with the balloon/s and ask/3s him for one.,the rabbit goes to the man with the balloons and asks him for one,0 0 3 0 0 0 0 0 1 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and : the man tell/3s him that the balloon/s are five cent/s.,and the man tells him that the balloons are five cents,0 0 0 3 0 0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the rabbit tell/3s him he has no money.,and the rabbit tells him he has no money,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the dog is trail/ing behind him.,and the dog is trailing behind him,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(then the) then the dog come/3s.,then the dog comes,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and : he ask/3s (the ra) (the) the man if they could have one for free.,and he asks the man if they could have one for free,0 0 3 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and he say/3s no.,and he says no,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,then they see the doctor.,then they see the doctor,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and (they w) and the rabbit run/3s to her.,and and the rabbit runs to her,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the dog is stand/ing by the man.,and the dog is standing by the man,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the rabbit ask/3s the doctor if they could have some money (for) (for) for the balloon/s and because he is broke [EU].,and the rabbit asks the doctor if they could have some money for the balloons and because he is broke,0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(the r) (the r) the doctor go/3s up to the man and give/3s him : ten cent/s for the balloon/s.,the doctor goes up to the man and gives him ten cents for the balloons,0 0 3 0 0 0 0 0 3 0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(and the b) and the rabbit and the dog have balloon[EW:balloons].,and the rabbit and the dog have balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the rabbit and the dog are happy.,and the rabbit and the dog are happy,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and they thank (the) the doctor.,and they thank the doctor,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and they are rub/ing their balloon/s all over the place.,and they are rubbing their balloons all over the place,0 0 0 6 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,the cow was go/ing to[:_gonna] go in the pool.,the cow was going to go in the pool,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,and there was a little elephant that had ball/s.,and there was a little elephant that had balls,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,(the c) : the elephant threw a ball into the pool.,the elephant threw a ball into the pool,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,and the cow saw.,and the cow saw,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,then the cow swam in the pool to[!] the ball.,then the cow swam in the pool to the ball,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,then he took another[!] ball.,then he took another ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,then he came out.,then he came out,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,and (the) the elephant laugh/ed[!] at him.,and the elephant laughed at him,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,there was a[EW:an] elephant and a giraffe.,there was a elephant and a giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,the elephant was go/ing to[:_gonna] run into the pool.,the elephant was going to run into the pool,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,she slip/ed : and hurt her knee.,she slipped and hurt her knee,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,the lifeguard came : and took her into the room : and try/ed to put a bandaid on her.,the lifeguard came and took her into the room and tried to put a bandaid on her,0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,so she put one on.,so she put one on,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,and she was sit/ing on the bench!,and she was sitting on the bench,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,and saw it.,and saw it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,and put it into the pool[!].,and put it into the pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,and the giraffe was mad : because it shrunk.,and the giraffe was mad because it shrunk,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,and (the) : the elephant said lifeguard lifeguard : his airplane fell into the pool!,and the elephant said lifeguard lifeguard his airplane fell into the pool,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,then the lifeguard try and reach it [EU].,then the lifeguard try and reach it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,and the giraffe was cry/ing.,and the giraffe was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,and the girl was scare/ed.,and the girl was scared,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,and then[~!_laughing] the girl came and got a net[!] : and caught[!] the airplane.,and then the girl came and got a net and caught the airplane,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,and then she gave it back[!] to him.,and then she gave it back to him,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,he was hug/ing it.,he was hugging it,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,there once was a rabbit : and a doggy.,there once was a rabbit and a doggy,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,the rabbit dug a sandcastle and put some more sand[!] in.,the rabbit dug a sandcastle and put some more sand in,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,then he put some on the castle.,then he put some on the castle,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,then : the doggy was sad.,then the doggy was sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,then she had to make it all over[!] again.,then she had to make it all over again,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,there once was (a um) : a bunny : and a doggy.,there once was a bunny and a doggy,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,(there) : the bunny decide/ed to go on a picnic with the doggy[!].,the bunny decided to go on a picnic with the doggy,0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,the doggy ate his sandwich so funny (that the) : that the rabbit laugh/ed.,the doggy ate his sandwich so funny that the rabbit laughed,0 0 0 0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,and then the rabbit was too full of laugh/ing.,and then the rabbit was too full of laughing,0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,and the doggy had card/s out.,and the doggy had cards out,0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,then the dog said go[!] go[!] : and pull/ed : and pull/ed : the : rabbit[-:] to the other rabbit.,then the dog said go go and pulled and pulled the rabbit to the other rabbit,0 0 0 0 0 0 0 4 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,that rabbit : check/ed the other rabbit.,that rabbit checked the other rabbit,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,and he was as good.,and he was as good,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,there once was a doggy and a rabbit.,there once was a doggy and a rabbit,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,the dog had a balloon.,the dog had a balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,the rabbit want/ed to play with it.,the rabbit wanted to play with it,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,so he took it off.,so he took it off,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,and then the balloon float/ed away.,and then the balloon floated away,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,and it went up up into the sky.,and it went up up into the sky,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,and then they went to buy another one.,and then they went to buy another one,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,and the doggy was mad.,and the doggy was mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,then (he) he pick/ed another one he said.,then he picked another one he said,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,then there was five[-:].,then there was five,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,then they got another[!] one.,then they got another one,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,then one float/ed away.,then one floated away,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,then another[!] float/ed away.,then another floated away,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,and then he only had two more left for one person.,and then he only had two more left for one person,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,and there was one for each of them.,and there was one for each of them,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,(um) : the elephant got a ball.,the elephant got a ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,(th) : it bounce/ed in the water.,it bounced in the water,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,the donkey swam to get it.,the donkey swam to get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,(um : the donkey got) [~_actually_that_(i)s_a_giraffe__is_n(o)t_it_#_well] the giraffe got : for the elephant [EU].,the giraffe got for the elephant,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,got what?,got what,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,got the ball for the elephant [+_bch].,got the ball for the elephant,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,the elephant (l) : said thank you.,the elephant said thank you,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,(um) : the[-:] elephant and the giraffe : want/ed to go swim/ing.,the elephant and the giraffe wanted to go swimming,0 0 0 0 0 4 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,(um) the elephant said let us go (in) in the pool.,the elephant said let us go in the pool,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,she ran : over to the[-:] diving board.,she ran over to the diving board,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,she (um) scrape/ed her knee.,she scraped her knee,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,(um) the giraffe got the lifeguard.,the giraffe got the lifeguard,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,the lifeguard put a bandage on the elephant/z knee.,the lifeguard put a bandage on the elephant's knee,0 0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,(the) (the : giraffe : uh um uh) : the lifeguard said you are okay now.,the lifeguard said you are okay now,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,the lifeguard said no run/ing.,the lifeguard said no running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,(um) : the giraffe got a : new airplane.,the giraffe got a new airplane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,the[-:] giraffe was play/ing with it.,the giraffe was playing with it,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,the elephant grab/ed it away.,the elephant grabbed it away,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,the elephant drop/ed it in the water accidentally.,the elephant dropped it in the water accidentally,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,(um) the giraffe got : mad.,the giraffe got mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,the lifeguard came.,the lifeguard came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,and : the elephant explain/ed what happen/ed.,and the elephant explained what happened,0 0 0 4 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,the lifeguard try/ed to get it.,the lifeguard tried to get it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,but he could not.,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,the : giraffe cry/ed.,the giraffe cried,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,(the : la uh : well) the pool lady got it out for him.,the pool lady got it out for him,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,"(um : she try/ed to get it out) [~_well,_I_can_n(o)t_xx_this_one_#__well] she was get/ing it out.",she was getting it out,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,she got it out for the giraffe.,she got it out for the giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,the giraffe was very happy.,the giraffe was very happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,(um : hmm :) the rabbit want/ed to play with the [~_what_is_it_a__dog_or_something] dog.,the rabbit wanted to play with the dog,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,"(um) they built a sandcastle [~_CHI_knocks_into_something,__says_'sorry'].",they built a sandcastle,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,(um) the rabbit dump/ed sand all over the sandcastle.,the rabbit dumped sand all over the sandcastle,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,the rabbit (was say/ing sorry) said sorry.,the rabbit said sorry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,(um then : uh) [~_I_can_n(o)t_think_of_one_for_this_picture] and then they rebuilt (another uh) another castle.,and then they rebuilt another castle,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,(um) : the rabbit and the dog (want/ed to have a picnic) [~__well] went to have a picnic.,the rabbit and the dog went to have a picnic,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,(uh) the rabbit got hungry.,the rabbit got hungry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,so he ate before the dog.,so he ate before the dog,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,he ate what?,he ate what,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,before the dog [+_bch].,before the dog,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,and then he got full.,and then he got full,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,and the dog just start/ed to eat.,and the dog just started to eat,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,(he) he got a bellyache.,he got a bellyache,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,and dog : [~_I_can_n(o)t_think_of_one] [~_well] he got a bellyache.,and dog he got a bellyache,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,the dog (call/ed) got the doctor.,the dog got the doctor,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,(uh um) the dog told the doctor that his friend had a bellyache.,the dog told the doctor that his friend had a bellyache,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,"(um the doctor um :) [~_I_can_n(o)t_think_of_one_for_this_one,__it_(i)s_too_hard] (the doctor) [~_I_can_n(o)t_it_(i)s_really_hard] [EU].",, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,do you want to skip that page then?,do you want to skip that page then,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,the doctor (um) : said do not eat too much food next time.,the doctor said do not eat too much food next time,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,(um) : the rabbit and the dog had a balloon : that was tie/ed onto a wagon.,the rabbit and the dog had a balloon that was tied onto a wagon,0 0 0 0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,[~_actually] the dog[!] had a balloon that was tie/ed onto the wagon.,the dog had a balloon that was tied onto the wagon,0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,the rabbit want/ed to hold it.,the rabbit wanted to hold it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,the rabbit untie/ed it.,the rabbit untied it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,the balloon (flo) float/ed up into the air.,the balloon floated up into the air,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,the dog got mad.,the dog got mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,they saw : a person sell/ing balloon/s.,they saw a person selling balloons,0 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,the rabbit said I want one of those.,the rabbit said I want one of those,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,the rabbit did not have any money.,the rabbit did not have any money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,so (um) he could not get a balloon.,so he could not get a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,(um) : they really want/ed a balloon.,they really wanted a balloon,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,they went to the doctor : and said can you get me a balloon?,they went to the doctor and said can you get me a balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,then the doctor paid for the balloon/s.,then the doctor paid for the balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,they love/ed their balloon/s and said thank you.,they loved their balloons and said thank you,0 4 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,There is a[EW:an] elephant : and a giraffe.,There is a elephant and a giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,(uh) there is some grass right here.,there is some grass right here,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and there is write/ing.,and there is writing,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,"there is a[EW:an] elephant, a giraffe and their ball (fell/ing) fell in the water.",there is a elephant a giraffe and their ball fell in the water,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there was an elephant and a giraffe.,there was an elephant and a giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,the elephant xx water.,the elephant water,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,he was try/ing to get the ball.,he was trying to get the ball,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,(he) the elephant got the ball.,the elephant got the ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and giraffe want/ed it.,and giraffe wanted it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there is a[EW:an] elephant.,there is a elephant,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there is a ball and the giraffe.,there is a ball and the giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,There is an elephant and a giraffe.,There is an elephant and a giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and there is some water.,and there is some water,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and there is[EW:are] some brick/s right here.,and there is some bricks right here,0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,can you tell me what is happen/ing?,can you tell me what is happening,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,they are look/ing at the water.,they are looking at the water,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there is a giraffe and a[EW:an] elephant.,there is a giraffe and a elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there is[EW:are] some brick/s.,there is some bricks,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and they are point/ing right over here.,and they are pointing right over here,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there is a giraffe and a[EW:an] elephant.,there is a giraffe and a elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and the elephant slip/ing.,and the elephant slipping,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there is a giraffe.,there is a giraffe,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and he hurt his knee right there.,and he hurt his knee right there,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there is a[EW:an] elephant.,there is a elephant,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there is a[EW:an] elephant.,there is a elephant,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there is a giraffe.,there is a giraffe,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and they are try/ing to help him.,and they are trying to help him,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there is a giraffe and (elephant) an elephant.,there is a giraffe and an elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and (he got) they are put/ing a bandaid on his owee.,and they are putting a bandaid on his owee,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there is a giraffe and a[EW:an] elephant elephant.,there is a giraffe and a elephant elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and he was all better.,and he was all better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there is an elephant and an elephant.,there is an elephant and an elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and he is point/ing at her.,and he is pointing at her,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,There is an elephant.,There is an elephant,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and there is a giraffe.,and there is a giraffe,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and there is[EW:are] some brick/s.,and there is some bricks,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,(there is) there is a[EW:an] airplane.,there is a airplane,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and he is hold/ing onto his airplane as he is put/ing her hand/s out.,and he is holding onto his airplane as he is putting her hands out,0 0 0 6 0 0 0 0 0 0 6 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there is a[EW:an] elephant and a giraffe.,there is a elephant and a giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,(and he was) and the airplane had string on him[EW:it].,and the airplane had string on him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and there was[EW:were] some brick/s.,and there was some bricks,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there was a[-:] : giraffe and an elephant.,there was a giraffe and an elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,the elephant took the airplane away from the giraffe.,the elephant took the airplane away from the giraffe,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,then he drop/ed it in the water.,then he dropped it in the water,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and there was[EW:were] some brick/s.,and there was some bricks,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and the giraffe was stand/ing on the brick/s.,and the giraffe was standing on the bricks,0 0 0 0 6 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,(then there was) (the) then there was a[EW:an] elephant.,then there was a elephant,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and the giraffe got mad because it went in that water.,and the giraffe got mad because it went in that water,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there was the giraffe and two elephant/s.,there was the giraffe and two elephants,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and they were (look/ing at) look/ing at the airplane to try to get it out.,and they were looking at the airplane to try to get it out,0 0 0 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there is the giraffe.,there is the giraffe,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there is the elephant.,there is the elephant,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and they are try/ing to get it out.,and they are trying to get it out,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,it is the elephant and the giraffe.,it is the elephant and the giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and he was try/ing to reach his hand and to get the airplane.,and he was trying to reach his hand and to get the airplane,0 0 0 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,he could not do it.,he could not do it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and (there is) giraffe cry/ed.,and giraffe cried,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and there is elephant and elephant.,and there is elephant and elephant,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there is a[EW:an] elephant and a[EW:an] elephant and a giraffe and another elephant.,there is a elephant and a elephant and a giraffe and another elephant,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,it was try/ing to get it out.,it was trying to get it out,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,"(he was try/ing) there is an elephant, an elephant and a giraffe and an elephant try/ing to get (the) the airplane out (with his) with his thing.",there is an elephant an elephant and a giraffe and an elephant trying to get the airplane out with his thing,0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,the elephant and giraffe.,the elephant and giraffe,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and he got it out of the water.,and he got it out of the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and then he was happy that he got his airplane the giraffe.,and then he was happy that he got his airplane the giraffe,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and then the elephant was happy.,and then the elephant was happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,There was a bunny.,There was a bunny,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and (a) there is a castle.,and there is a castle,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and she made a castle.,and she made a castle,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and there was a sandbox.,and there was a sandbox,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there was a rabbit.,there was a rabbit,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,(and there) and she was build/ing a castle.,and she was building a castle,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and there was a sandbox.,and there was a sandbox,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,(and he was) and he was put/ing dirt in his bucket.,and he was putting dirt in his bucket,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there was : a girl.,there was a girl,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there was : a rabbit.,there was a rabbit,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and the rabbit pour/ed it on her castle.,and the rabbit poured it on her castle,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,then it fell down.,then it fell down,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there was a bunny.,there was a bunny,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and his bucket fell down.,and his bucket fell down,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and she was sad.,and she was sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,she cry/ed.,she cried,0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and she try/ed to make another one.,and she tried to make another one,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and the bunny rabbit/s was[EW:were] there.,and the bunny rabbits was there,0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there was a girl.,there was a girl,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,she was carry/ing a basket.,she was carrying a basket,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and the bunny was carry/ing a basket.,and the bunny was carrying a basket,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and there were tree/s.,and there were trees,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,they had a picnic.,they had a picnic,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and the bunny was eat/ing some carrot/s.,and the bunny was eating some carrots,0 0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and he was eat/ing something.,and he was eating something,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and she was start/ing to put her/z out.,and she was starting to put her's out,0 0 0 6 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,the bunny ate all of it.,the bunny ate all of it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and he got a hurt/ing tummy.,and he got a hurting tummy,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and she did not because she did not have much stuff.,and she did not because she did not have much stuff,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,he got more sicker [EU].,he got more sicker,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and she was drink/ing still.,and she was drinking still,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and then her grandma came.,and then her grandma came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,(and sh) and she was try/ing to reach her hand.,and she was trying to reach her hand,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,(and she) (and she grab/ed her mother) [~_no] she grab/ed her grandma because she was go/ing to[:_gonna] tell her grandma that he (was) (had a) had a hurt/ing tummy.,she grabbed her grandma because she was going to tell her grandma that he had a hurting tummy,0 4 0 0 0 0 0 6 0 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,(and she s) and she said do not eat no[EW:any] more food.,and she said do not eat no more food,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and then he got all better.,and then he got all better,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there was a girl.,there was a girl,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,(and) and she was carry/ing (a) (a) a wagon.,and she was carrying a wagon,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,(And i) and she tie/ed the (wagon) balloon on her wagon.,and she tied the balloon on her wagon,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and the bunny was come/ing to see it.,and the bunny was coming to see it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there was a bunny.,there was a bunny,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there was a bunny look/ing at it.,there was a bunny looking at it,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and he like/ed it.,and he liked it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and there was balloon.,and there was balloon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and there was a wagon on it : tie/ed up.,and there was a wagon on it tied up,0 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there was a balloon.,there was a balloon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and there was a wagon.,and there was a wagon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and there was her.,and there was her,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and he was try/ing to get the balloon off because he like/ed it.,and he was trying to get the balloon off because he liked it,0 0 0 6 0 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,(and) and it flew up the air the balloon.,and it flew up the air the balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and then she did not have her balloon.,and then she did not have her balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and the bunny was try/ing to get it.,and the bunny was trying to get it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and she was try/ing to get it.,and she was trying to get it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and then it broke.,and then it broke,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,the bunny broke it because she got mad.,the bunny broke it because she got mad,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and then the wagon was left there.,and then the wagon was left there,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,then (the balloon man had) the balloon man had lot/s of balloon/s.,then the balloon man had lots of balloons,0 0 0 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and (they) (they had) they like/ed it.,and they liked it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,but the bunny like/ed it.,but the bunny liked it,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,but she was still mad.,but she was still mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and (he said could I still) he was look/ing at the balloon.,and he was looking at the balloon,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and he like/ed it.,and he liked it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and he want/ed one.,and he wanted one,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and (sh) she want/ed one too.,and she wanted one too,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,but she lost her balloon.,but she lost her balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there was a balloon guy.,there was a balloon guy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and there was the bunny.,and there was the bunny,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and there was the girl again.,and there was the girl again,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,then they ran back.,then they ran back,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,then he ran to his mother.,then he ran to his mother,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,(and) and she was still stand/ing (where) where the balloon man was.,and she was still standing where the balloon man was,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and then he point/ed to the balloon man (if) (if) if he could have some balloon/s.,and then he pointed to the balloon man if he could have some balloons,0 0 0 4 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,then she give|give[EW:gave] him some money.,then she give him some money,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and then they could have two balloon/s.,and then they could have two balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and then (they had their balloon/s for) (for) they had their balloon/s.,and then they had their balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,that is the end [+_bch].,that is the end,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,There is a giraffe and a[EW:an] elephant.,There is a giraffe and a elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,(the g*) : the elephant is bounce/ing a ball by the water.,the elephant is bouncing a ball by the water,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,(the) the ball went into the : water.,the ball went into the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,And the elephant was scare/ed and the giraffe [EU].,And the elephant was scared and the giraffe,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the giraffe dived|dive[EW:dove] in.,the giraffe dived in,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,and the elephant could[Ew:did] not even : want to look at it.,and the elephant could not even want to look at it,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the giraffe gave the ball to the elephant.,the giraffe gave the ball to the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,Then the giraffe smile/ed at the elephant.,Then the giraffe smiled at the elephant,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,And the (su* : uh) elephant smile/ed at the giraffe.,And the elephant smiled at the giraffe,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,That is the end [+_bch].,That is the end,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,The elephant and the giraffe (: um) are stand/ing on the walkway : by the pool.,The elephant and the giraffe are standing on the walkway by the pool,0 0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the elephant is go/ing to run into the pool.,the elephant is going to run into the pool,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,she slip/ed.,she slipped,0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,and (the she s*) that is all [+_bch].,and that is all,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,She slip/ed [+_bch].,She slipped,0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,She hurted|hurt[EW:hurt] her leg.,She hurted her leg,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the giraffe (was was uh) was not smile/ing.,the giraffe was not smiling,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the lifeguard came and look/ed at the elephant/z owee.,the lifeguard came and looked at the elephant's owee,0 0 0 0 4 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the lifeguard putted|put[EW:put] a bandaid on : (her owee) the elephant/z owee.,the lifeguard putted a bandaid on the elephant's owee,0 0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,she had to sit on the bench til[EW:until] : her knee felt better.,she had to sit on the bench til her knee felt better,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,(now she uh) now (uh no) the lifeguard was not happy (because it is) because there is not suppose/ed to be run/ing on the deck.,now the lifeguard was not happy because there is not supposed to be running on the deck,0 0 0 0 0 0 0 0 0 0 4 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,That is the end [+_bch].,That is the end,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,a[EW:an] elephant : and the giraffe [EU].,a elephant and the giraffe,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,(uh) the giraffe had : a[EW:an] airplane.,the giraffe had a airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,"the elephant was stare/ing at the airplane, how : the giraffe could not make it go up [EU].",the elephant was staring at the airplane how the giraffe could not make it go up,0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,(then) then she want/ed a turn.,then she wanted a turn,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,and she grab/ed it out of the giraffe/z : hand.,and she grabbed it out of the giraffe's hand,0 0 4 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,now when (sh*) they were (pull) go/ing to pull on it : it just fell in the water : of the pool.,now when they were going to pull on it it just fell in the water of the pool,0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,"the giraffe was mad at the elephant, : what she did to his airplane [EU].",the giraffe was mad at the elephant what she did to his airplane,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,now the lifeguard came and (s*) saw : (uh um) the little toy airplane was in the water [EU].,now the lifeguard came and saw the little toy airplane was in the water,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the elephant explain/ed it was an accident.,the elephant explained it was an accident,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the lifeguard was (s* s*) try/ing to reach it (through the) by the pool.,the lifeguard was trying to reach it by the pool,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the giraffe was cry/ing because : the lifeguard could not reach it.,the giraffe was crying because the lifeguard could not reach it,0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,and the elephant felt sorry.,and the elephant felt sorry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,a[EW:an] other elephant had a : net.,a other elephant had a net,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,and she was smile/ing.,and she was smiling,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,she took out the airplane (from) with the net from the water.,she took out the airplane with the net from the water,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,now the giraffe was happy.,now the giraffe was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the giraffe was smile/ing and the elephant [EU].,the giraffe was smiling and the elephant,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,there is a rabbit and a dog.,there is a rabbit and a dog,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the dog made a sandcastle.,the dog made a sandcastle,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the rabbit want/ed to help.,the rabbit wanted to help,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,so (he had she he) he gotted|got[EW:got] a shovel and a pail.,so he gotted a shovel and a pail,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,he dump/ed it on the sandcastle.,he dumped it on the sandcastle,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,it broke the sandcastle.,it broke the sandcastle,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,and the dog was : almost go/ing to cry.,and the dog was almost going to cry,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the dog was cry/ing because : the rabbit dump/ed the sand on his sandcastle what[EW:that] he built.,the dog was crying because the rabbit dumped the sand on his sandcastle what he built,0 0 0 6 0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the dog and the rabbit had a picnic basket.,the dog and the rabbit had a picnic basket,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the dog was wave/ing.,the dog was waving,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,wave/ing?,waving,6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,at the rabbit [+_bch].,at the rabbit,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,The rabbit brought a lot of stuff.,The rabbit brought a lot of stuff,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,he was drool/ing because : all his stuff he want/ed to eat right now.,he was drooling because all his stuff he wanted to eat right now,0 0 6 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,he ate all of it.,he ate all of it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,(And and) and he had a : full tummy.,and he had a full tummy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,his tummy ache/ed.,his tummy ached,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,he : went and (saw his mom and) ((no)) saw a doctor : and : telled|tell[EW:told] my friend (is) has a tummyache [EU].,he went and ) saw a doctor and telled my friend has a tummyache,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the dog pull/ed (him) her (to) to his friend.,the dog pulled her to his friend,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,(the) the nurse said you should not have ate too[EW:so] much.,the nurse said you should not have ate too much,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,(he sh*) she said walk with me.,she said walk with me,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,we will get you to the hospital.,we will get you to the hospital,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the dog had : the balloon on his (str* : uh) : stroller.,the dog had the balloon on his stroller,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the bunny saw the balloon.,the bunny saw the balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,and : he was go/ing to pull his arm to get the balloon.,and he was going to pull his arm to get the balloon,0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,he : untie/ed the balloon.,he untied the balloon,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,and then : (his) the dog/z balloon went up in the air.,and then the dog's balloon went up in the air,0 0 0 2 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the dog was mad at the : bunny.,the dog was mad at the bunny,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the rabbit saw a balloon man : have/ing balloon/s [EU].,the rabbit saw a balloon man having balloons,0 0 0 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the angry dog : saw the balloon : man : had lot/s of balloon/s.,the angry dog saw the balloon man had lots of balloons,0 0 0 0 0 0 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,and the rabbit was go/ing to get one.,and the rabbit was going to get one,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,it is (the) : the balloon (with the) with the : thing where it had the number on it with cash.,it is the balloon with the thing where it had the number on it with cash,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,(The bu*) the bunny did not have any money to get that balloon for him.,the bunny did not have any money to get that balloon for him,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,(to) : the bunny went to the nurse.,the bunny went to the nurse,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,and the dog stay/ed with the man.,and the dog stayed with the man,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the bunny said it to the nurse (s*) could you get one of those balloon/s for me?,the bunny said it to the nurse could you get one of those balloons for me,0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,I do not have too much money (for) to get one for my friend.,I do not have too much money to get one for my friend,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,she paid for the money[EW:balloons].,she paid for the money,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,and there was[EW:were] two balloon/s what[EW:that] they got.,and there was two balloons what they got,0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,they each have their balloon.,they each have their balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,and (they) the dog was hug/ing his.,and the dog was hugging his,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,and the rabbit was hold/ing on to it (on) on the side/s.,and the rabbit was holding on to it on the sides,0 0 0 0 6 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,and?,and,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,that is all [+_bch].,that is all,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,here he come/3s.,here he comes,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,oh hi giraffe.,oh hi giraffe,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,how are you?,how are you,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,I will get your (ba um) ball elephant.,I will get your ball elephant,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,oh do not drowned|drown[EW:drown].,oh do not drowned,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,oh thank you giraffe.,oh thank you giraffe,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,I like you giraffe.,I like you giraffe,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,Elephant why do not we go swimming [EU]?,Elephant why do not we go swimming,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,: I will jump in first.,I will jump in first,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,oh Elephant do not slip : and hurt yourself.,oh Elephant do not slip and hurt yourself,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,oh Elephant are you okay?,oh Elephant are you okay,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,I will go get the lifeguard.,I will go get the lifeguard,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,there is the lifeguard.,there is the lifeguard,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,he will help you.,he will help you,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,are you okay?,are you okay,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,sit on this bench for awhile.,sit on this bench for awhile,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,and you will feel better.,and you will feel better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,: next time no run/ing.,next time no running,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,hello Elephant.,hello Elephant,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,(how is) : your leg is better.,your leg is better,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,do you like my new airplane?,do you like my new airplane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,could I play with it?,could I play with it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,(sorry) sorry Giraffe that I drop/ed your plane in the water.,sorry Giraffe that I dropped your plane in the water,0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,[~_makes_growling_sound] I do not want to[:_wanna] be your friend any more.,I do not want to be your friend any more,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,I do not like you.,I do not like you,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,lifeguard I was only play/ing with it.,lifeguard I was only playing with it,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,I can not reach it.,I can not reach it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,now look they will think you made (lil) (the little giraffe) the little boy giraffe cry.,now look they will think you made the little boy giraffe cry,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,it is okay.,it is okay,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,I can get it out with my net.,I can get it out with my net,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,: see you can not[!] get it out : with your net.,see you can not get it out with your net,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,oh maybe you can.,oh maybe you can,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,thank you.,thank you,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,I am sorry that I said I do not want to[:_wanna] be your friend any more.,I am sorry that I said I do not want to be your friend any more,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,a bunny and a : bunny rabbit [EU].,a bunny and a bunny rabbit,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,okay why do you not start now?,okay why do you not start now,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,oh (hi) hi bunny.,oh hi bunny,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,do you want to[:_wanna] play with me in the sand?,do you want to play with me in the sand,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,I am build/ing a sandcastle.,I am building a sandcastle,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,do you want to[:_wanna] help?,do you want to help,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,sure I will help.,sure I will help,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,: oh no (look how sand) I pour/ed too much sand on the sandcastle.,oh no I poured too much sand on the sandcastle,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,it broke.,it broke,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,I am sorry.,I am sorry,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,hi Rabbit.,hi Rabbit,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,do you want to[:_wanna] have a picnic with me?,do you want to have a picnic with me,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,this[EW:these] (is) sure are some good carrot/s.,this sure are some good carrots,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,I am full.,I am full,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,[~_child_makes_snoring_sound] he look/3s likes|like[EW:like] he is xx asleep.,he looks likes he is asleep,0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,missus Rabbit (your um) (your lil) your son : rabbit is (um) fall/ing asleep.,missus Rabbit your son rabbit is falling asleep,0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,and I can not wake him up.,and I can not wake him up,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,hurry hurry.,hurry hurry,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,[~_stern_voice] you ate too much again.,you ate too much again,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,you are ground/ed.,you are grounded,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,time to go home Rabbit.,time to go home Rabbit,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,hi Rabbit.,hi Rabbit,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,do you want to[:_wanna] come for a walk with me?,do you want to come for a walk with me,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,nice balloon : Rabbit.,nice balloon Rabbit,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,I will untie it : for you.,I will untie it for you,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,oh no!,oh no,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,it slip/ed out of my hands.,it slipped out of my hands,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,and I can not reach it.,and I can not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,I am mad at you stinky stupid Rabbit!,I am mad at you stinky stupid Rabbit,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,I do not like you.,I do not like you,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,hey (there some mor) there is (a) a man over there sell/ing : some balloon/s.,hey there is a man over there selling some balloons,0 0 0 0 0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,hey can I have one of those balloon/s?,hey can I have one of those balloons,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,: oh : price is (five bu) five cent/s [EU].,oh price is five cents,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,oh no.,oh no,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,guess I can not get *a balloon for you [EU].,guess I can not get balloon for you,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,mom : can I have five cent/s : because I want to[:_wanna] get a balloon?,mom can I have five cents because I want to get a balloon,0 0 0 0 0 1 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,: oh thank you mama.,oh thank you mama,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,now we both have balloon/s (ra) Rabbit.,now we both have balloons Rabbit,0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,thank you Rabbit for ask/ing your mom to get me : a balloon.,thank you Rabbit for asking your mom to get me a balloon,0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,(uh) There was (a) a giraffe : talk/ing to a[EW:an] [-:] elephant bounce/ing ball/s.,There was a giraffe talking to a elephant bouncing balls,0 0 0 0 6 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then one of them fell in the water.,and then one of them fell in the water,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and (then he went) the giraffe went to swim[!] for it.,and the giraffe went to swim for it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and he got it and : gave it to the elephant.,and he got it and gave it to the elephant,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then[-:] elephant was really happy.,and then elephant was really happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,There was a giraffe and an elephant : look/ing at the lake or the swimming pool.,There was a giraffe and an elephant looking at the lake or the swimming pool,0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then the elephant was about to jump in.,and then the elephant was about to jump in,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,[~_wait_no] they are play/ing : a game around the pool.,they are playing a game around the pool,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then he was about to fall in.,and then he was about to fall in,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then he got hurt.,and then he got hurt,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then the lifeguard came.,and then the lifeguard came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then he put a bandaid on it.,and then he put a bandaid on it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and it really hurted|hurt[EW:hurt].,and it really hurted,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then it was better after.,and then it was better after,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then the lifeguard (point/ed) said sit down on the chair.,and then the lifeguard said sit down on the chair,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and he point/ed to a sign that said no run/ing.,and he pointed to a sign that said no running,0 0 4 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,There was an elephant and a giraffe talk/ing once again.,There was an elephant and a giraffe talking once again,0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then (the) : the giraffe took a plane and went [~_makes__airplane_sound].,and then the giraffe took a plane and went,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then the elephant grab/ed it and start/ed to play with it.,and then the elephant grabbed it and started to play with it,0 0 0 0 4 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then the giraffe got really mad.,and then the giraffe got really mad,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then it fell in the water.,and then it fell in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then he was really mad at the elephant.,and then he was really mad at the elephant,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then the lifeguard came.,and then the lifeguard came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then[-:] : he[-:] : told him not to do that.,and then he told him not to do that,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then he try/ed to reach for it.,and then he tried to reach for it,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,but they could not get it out.,but they could not get it out,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,so (they took) another girl came and took a net.,so another girl came and took a net,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,(and she got it o) [~_wait] she is try/ing to get it out.,she is trying to get it out,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and she got it out.,and she got it out,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,"and then (he wa) they were both very happy,.",and then they were both very happy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,there was (a um) a[EW:an] elephant build/ing : a sandcastle.,there was a elephant building a sandcastle,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then[-:] a bunny came and start/ed to help him.,and then a bunny came and started to help him,0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then the bunny dump/ed a whole bunch of sand on the castle.,and then the bunny dumped a whole bunch of sand on the castle,0 0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and it broke.,and it broke,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and there was one tower left.,and there was one tower left,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then[-:] : the elephant was really mad.,and then the elephant was really mad,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and the (uh) bunny did not know what to say.,and the bunny did not know what to say,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then it was over [+_bch].,and then it was over,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then an elephant came.,and then an elephant came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then a bunny came.,and then a bunny came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and they were go/ing for a picnic.,and they were going for a picnic,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and the elephant had not open/ed his lunch kit yet.,and the elephant had not opened his lunch kit yet,0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and the : bunny had all sort/s of food.,and the bunny had all sorts of food,0 0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,(and then he got) and then while the elephant was eat/ing the (um) : bunny was really sick : or full.,and then while the elephant was eating the bunny was really sick or full,0 0 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then : he[-:] got sick.,and then he got sick,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and : he was still eat/ing.,and he was still eating,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,so then (they went to get) the elephant went to get a doctor.,so then the elephant went to get a doctor,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and the doctor came.,and the doctor came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then he start/ed to help him.,and then he started to help him,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then he was all better.,and then he was all better,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,well not all better but [EU] [+/]^,well not all better but,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,there was (a : um) an elephant pull/ing a stroller with a balloon on it.,there was an elephant pulling a stroller with a balloon on it,0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and (uh) then the bunny came.,and then the bunny came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and he was go/ing to [~_gonna] grab it : to see it.,and he was going to grab it to see it,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and he start/ed to untie it.,and he started to untie it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then (the bun) it flew away.,and then it flew away,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and : it kept fly/ing.,and it kept flying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and[-:] the bunny was look/ing up.,and the bunny was looking up,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and the elephant : was really mad.,and the elephant was really mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then they saw a balloon man.,and then they saw a balloon man,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,(and he was go/ing to have) and then the bunny was go/ing to [~_gonna] have one.,and then the bunny was going to have one,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then[-:] he said they were five cent/s.,and then he said they were five cents,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then[-:] : they were mad.,and then they were mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,but[-:] he still did not give them one.,but he still did not give them one,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then (he told) he asked the man for five cent/s I think.,and then he asked the man for five cents I think,0 0 0 0 0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and (he : bo) then he got one : for them.,and then he got one for them,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then they were happy.,and then they were happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,(um) : a[EW:an] [-:] elephant is dribble/ing a ball near water I think.,a elephant is dribbling a ball near water I think,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,the ball fall/3s in the water.,the ball falls in the water,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,(the) [~_is_that_a_donk*_no] the giraffe go/3s to get it.,the giraffe goes to get it,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and[-:] the giraffe give/3s it back to the : elephant.,and the giraffe gives it back to the elephant,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and now the elephant is happy.,and now the elephant is happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,(um) : they see the pool again.,they see the pool again,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and[-:] there is a sign that say/3s no run/ing.,and there is a sign that says no running,0 0 0 0 0 0 3 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and[-:] they see a diving board.,and they see a diving board,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and they want to go to the diving board.,and they want to go to the diving board,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,but they start to run.,but they start to run,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and the elephant slip/3s : and[-:] hurt/3s her (uh) knee.,and the elephant slips and hurts her knee,0 0 0 3 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and then a lifeguard come/3s : and put/3s a bandaid on it.,and then a lifeguard comes and puts a bandaid on it,0 0 0 0 3 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and[-:] then it is fine.,and then it is fine,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and then the lifeguard point/3s to a no run/ing sign.,and then the lifeguard points to a no running sign,0 0 0 0 3 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,(um) : they are back at the pool.,they are back at the pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and[-:] the giraffe has a[-:] : plane.,and the giraffe has a plane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and the[-:] elephant grab/3s it from the[-:] giraffe/z hand.,and the elephant grabs it from the giraffe's hand,0 0 0 3 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and it fall/3s in the water.,and it falls in the water,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and it is sink/ing.,and it is sinking,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,now the lifeguard see/3s it.,now the lifeguard sees it,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and[-:] : the elephant is (um) ask/ing what he can do about it.,and the elephant is asking what he can do about it,0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,the lifeguard try/3s to reach it.,the lifeguard tries to reach it,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,but he can not.,but he can not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,so[-:] a lady got a net : and : get/3s it out.,so a lady got a net and gets it out,0 0 0 0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and then the giraffe is happy again.,and then the giraffe is happy again,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and : now I guess he is play/ing with it again.,and now I guess he is playing with it again,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,two rabbit/s are[-:] make/ing a sandcastle.,two rabbits are making a sandcastle,0 1 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,(um) : I guess they are just make/ing it better.,I guess they are just making it better,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,(um) one rabbit dump/3s the sand on the sandcastle.,one rabbit dumps the sand on the sandcastle,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and it wreck/3s it.,and it wrecks it,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and[-:] the other rabbit is sad.,and the other rabbit is sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,that is it [+_bch].,that is it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,the two rabbit/s are go/ing for a picnic.,the two rabbits are going for a picnic,0 0 1 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,(um) : I guess one has lot/s [EU].,I guess one has lots,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and the other one has hardly any.,and the other one has hardly any,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,(the) : the bunny get/3s fat.,the bunny gets fat,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,he get/3s dizzy.,he gets dizzy,0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,(um) : he call/3s for help.,he calls for help,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,(um) : the rabbit is pull/ing her (um) : because maybe she just want/3s to go for a walk more [~_laughs] [EU].,the rabbit is pulling her because maybe she just wants to go for a walk more,0 0 0 6 0 0 0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,: (um) she is make/ing him (feel) feeling[EW:feel] better.,she is making him feeling better,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,I do not know [+_bch].,I do not know,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,(um) and : he walk/3s away when she is better again.,and he walks away when she is better again,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,(um) the rabbit/s are back again.,the rabbits are back again,0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and : one is pull/ing a wagon with a balloon on it.,and one is pulling a wagon with a balloon on it,0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,(um) : the other rabbit notice/3s (that) the balloon I guess.,the other rabbit notices the balloon I guess,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,(um) : the other rabbit is try/ing to pull it off.,the other rabbit is trying to pull it off,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and it go/3s up into the air.,and it goes up into the air,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and now the other rabbit is mad.,and now the other rabbit is mad,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and then they see : a different rabbit that is sell/ing balloon/s.,and then they see a different rabbit that is selling balloons,0 0 0 0 0 0 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,so : the rabbit go/3s up and buy/3s one.,so the rabbit goes up and buys one,0 0 0 3 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and they are five cent/s.,and they are five cents,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,but he do/3s not have any five cents[EW:money].,but he does not have any five cents,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,(um : uh) : so I guess he is mad or something.,so I guess he is mad or something,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,then he go/3s to a lady : to ask (if) if she has five cent/s.,then he goes to a lady to ask if she has five cents,0 0 3 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and she do/3s.,and she does,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,so they both get a balloon.,so they both get a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,So (ele) elephant say|say[EW:said] : yes : you can play with me!,So elephant say yes you can play with me,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so she try/ed to put it in the water.,so she tried to put it in the water,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,aah[!] [~_makes_sound_effects].,aah,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,and she say|say[EW:said] : I got it [~_repeats_2_times].,and she say I got it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,I got it[-:]!,I got it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so (good) good job!,so good job,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so your husband too.,so your husband too,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,I am done [+_bch].,I am done,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,So (sh) she had a [~_wheee].,So she had a,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,then : she decide to get in the water!,then she decide to get in the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,(I wa) I want to go here.,I want to go here,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,hey yes you can.,hey yes you can,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,yahoo!,yahoo,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,wait[-:].,wait,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so : (you) you knee/s is hurt [EU].,so you knees is hurt,0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,aah.,aah,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,ouch.,ouch,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so : that hurt/3s.,so that hurts,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,she has got to cry.,she has got to cry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so she say/3s [~_makes_crying_sound].,so she says,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,there.,there,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,that is better!,that is better,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,(huh) that is xx your bandaid.,that is your bandaid,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so : (you) you got to swim/ing later [EU].,so you got to swimming later,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so : you got to get hurt.,so you got to get hurt,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,I am done [+_bch].,I am done,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,So (you) (you) you had to go swim.,So you had to go swim,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,I said (ahh) stop.,I said stop,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so fine!,so fine,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,she say|say[EW:said] he is dead.,she say he is dead,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,hey.,hey,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so (sh) aah!,so aah,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,my airplane!,my airplane,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,[~_grr] oh your said bad my airplane [EU].,oh your said bad my airplane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,[~_grrr] you broke my airplane.,you broke my airplane,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,but (she) (she is) she is put my airplane [EU].,but she is put my airplane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,oh no.,oh no,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,but I was do/ing that.,but I was doing that,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,oh no(*3)[-:].,oh no,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,I got it.,I got it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,I got it.,I got it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,see?,see,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,I do not think so.,I do not think so,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,(give) give it a try.,give it a try,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,here I come (stt).,here I come,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,I got it.,I got it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,I got it.,I got it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,said she just start to cry [EU].,said she just start to cry,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,my airplane!,my airplane,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so do not touch it.,so do not touch it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,then I am done [+_bch].,then I am done,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,(she) she is had to play (sand) sandcastle [EU].,she is had to play sandcastle,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,she is had to make big sandcastle for rabbit : a dog [EU].,she is had to make big sandcastle for rabbit a dog,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so : a bad rabbit : (he) he is put/ing like this [EU].,so a bad rabbit he is putting like this,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,she had a xx found a (sa) (sandcas) sandcastle.,she had a found a sandcastle,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,(uh) what is happen/ed?,what is happened,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,oops.,oops,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,she say/3s sorry.,she says sorry,0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,(uh) (rab) rabbit say|say[EW:says] (do not) do not take[?] it.,rabbit say do not take it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,you bad [EU].,you bad,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,(you) you hurt my sandcastle.,you hurt my sandcastle,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,(I) she would not come with us.,she would not come with us,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so she is hardly eat a food [EU].,so she is hardly eat a food,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,(she) (she) so tummy/s is hurt/3s [EU].,so tummies is hurts,0 1 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so : she *is sick [EU].,so she sick,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so : he *is sick [EU].,so he sick,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,a doctor is a listen [EU].,a doctor is a listen,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,(ah) his tummy is hurt.,his tummy is hurt,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,she said open your mouth.,she said open your mouth,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,she sick.,she sick,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,"[~_makes_sound_""ahhh""] yuck.",yuck,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so (a) (a doctor she) (ra) (ra) rabbit felt like this [~_makes_gesture].,so rabbit felt like this,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so a rabbit is open your mouth.,so a rabbit is open your mouth,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,"[~_makes_sound_""ahhh""].",, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,(so : rabbit) rabbit : (so) : so feel better.,rabbit so feel better,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,all done [+_bch].,all done,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so she is has a xx xx some mooo.,so she is has a some mooo,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so he said I get some balloon (like) like this.,so he said I get some balloon like this,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so she has to say [~_makes_gestures].,so she has to say,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,she say/3s[?] take it off.,she says take it off,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,and put it up.,and put it up,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,say (ahhh) a balloon.,say a balloon,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,"[~_makes_sound_""grrr""] [~_laughs].",, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,what is happen/ing?,what is happening,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,she is say what are you [EU]?,she is say what are you,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,"[~_makes_sound_""grrrr""] [~_laughs].",, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,balloon/s is[EW:are] back[!].,balloons is back,1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,"yeah [~_makes_yelling_sound_""ahhh""].",yeah,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,oops.,oops,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,ouch!,ouch,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,a balloon [~_yeahha].,a balloon,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,she say|say[EW:says] this one.,she say this one,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,(ahh) (where is) (where is my) where is my (I) (I) my balloon?,where is my my balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,what is happen/ing?,what is happening,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so : (I xxx) I go/ing to[:_gonna] say I xxx.,so I going to say I,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,I wonder what xx xx.,I wonder what,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,xxx.,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,xxx [~_/bosolasafiso/].,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,she say I talk/ed to her [EU].,she say I talked to her,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,yes?,yes,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,I tell you I xxx.,I tell you I,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,I want to go home.,I want to go home,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,"[~_makes_sound_""wha""] can you hear that?",can you hear that,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so (I) I want to buy a balloon.,so I want to buy a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,I want a balloon for the boy[?].,I want a balloon for the boy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,yay!,yay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,(she say) : then I am all done [+_bch].,then I am all done,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,he saw a balloon.,he saw a balloon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,and he was bounce/ing it.,and he was bouncing it,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,and they drop/ed it in the water.,and they dropped it in the water,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,he went to swim for it.,he went to swim for it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,and he gave it to her.,and he gave it to her,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,(and then : sh) (and then she was too) and then (wa) she was happy.,and then she was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,[~_what_(i)s_that] : they were go/ing to get the ball.,they were going to get the ball,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,she was go/ing to get it first.,she was going to get it first,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,he ran for his life.,he ran for his life,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,and then she got it.,and then she got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,and then she hurt herself.,and then she hurt herself,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,and then another elephant came.,and then another elephant came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,and then she : start/ed to cry.,and then she started to cry,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,and then she help/ed her up and put a bandaid on her.,and then she helped her up and put a bandaid on her,0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,and then she sitted|sit[EW:sat] there.,and then she sitted there,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,and the lifeguard came.,and the lifeguard came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,(she) he had a[EW:an] airplane.,he had a airplane,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,and she want/ed to give it to her.,and she wanted to give it to her,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,(and then[-:] she) and then he flied|fly[EW:flew] it.,and then he flied it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,then : she got it from him.,then she got it from him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,and then it fell in the : water.,and then it fell in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,(and) and he got so mad at her.,and he got so mad at her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,(then anoth) and the lifeguard came.,and the lifeguard came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,and then she ask/ed if he can pick that up.,and then she asked if he can pick that up,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,and he try/ed to get it.,and he tried to get it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,but he could not reach.,but he could not reach,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,then he cry/ed.,then he cried,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,and then he try/ed to get it.,and then he tried to get it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,(and then he getted|get[EW:got] it) and then he got it from out of the water.,and then he got it from out of the water,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,and he gave it to : him.,and he gave it to him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,and he said thank you.,and he said thank you,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,they were play/ing in the sandbox[-:] .,they were playing in the sandbox,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,he was dig/ing for sand : then put/ing it in the bucket.,he was digging for sand then putting it in the bucket,0 0 6 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,and he pour/ed it on the castle.,and he poured it on the castle,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,then : he was : sad.,then he was sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,then he (th s) thought (of s) of build/ing it again.,then he thought of building it again,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,he was walk/ing towards (a) a bunny.,he was walking towards a bunny,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,they ate : a picnic.,they ate a picnic,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,then he : ate too much.,then he ate too much,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,and then he was full.,and then he was full,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,then he ran to someone who could help.,then he ran to someone who could help,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,then he pull/ed her shirt.,then he pulled her shirt,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,what is this one (um) [+_bch]?,what is this one,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,look at the picture/s.,look at the pictures,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,I do not know which one it is [+_bch].,I do not know which one it is,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,let us try the next page.,let us try the next page,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,like : turn the next page [+_bch].,like turn the next page,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,and (then they) then they went home.,and then they went home,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,he was take/ing a balloon to someone.,he was taking a balloon to someone,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,(and then he took) and then he want/ed to give it to him.,and then he wanted to give it to him,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,he tie/ed it off.,he tied it off,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,then it flew up in the air.,then it flew up in the air,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,then he got so mad.,then he got so mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,then another man came by with balloon/s.,then another man came by with balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,(and he gave him) and he ask/ed for another balloon.,and he asked for another balloon,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,(and h) and he said no.,and he said no,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,then they were so upset.,then they were so upset,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,then (they) another bunny was stand/ing there.,then another bunny was standing there,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,and he said : look at those balloon/s.,and he said look at those balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,then he want/ed to give him[!] a balloon.,then he wanted to give him a balloon,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,(then they got) then they both got one.,then they both got one,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,that is a[EW:an] elephant.,that is a elephant,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and that is a cow.,and that is a cow,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,that is what?,that is what,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,a cow [+_bch].,a cow,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,that is *an elephant [EU].,that is elephant,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and then that is a cow : again.,and then that is a cow again,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,a[EW:an] elephant and a cow.,a elephant and a cow,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,oh you want/ed to turn the page/s sorry.,oh you wanted to turn the pages sorry,0 0 4 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,tell me the story.,tell me the story,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,(that) that guy fell in the mud.,that guy fell in the mud,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and this girl (pick/ed her up) (pick up) pick/ed him up : elephant [EU].,and this girl picked him up elephant,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and he was very mad at her.,and he was very mad at her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,they were go/ing to [:_gonna] go in the pool right [+_bch]?,they were going to go in the pool right,0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,can you say that louder so I can hear better?,can you say that louder so I can hear better,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,(th) they were go/ing to go in the pool[-:].,they were going to go in the pool,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,oh okay remember I can not see the picture/s so you have to tell me so I can hear it.,oh okay remember I can not see the pictures so you have to tell me so I can hear it,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,(um) she : was go/ing to [:_gonna] hurt herself : when she went.,she was going to hurt herself when she went,0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,: and she hurt herself.,and she hurt herself,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,: what is happen/ing in that picture?,what is happening in that picture,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,she hurt herself [+_bch].,she hurt herself,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,she got a scratch.,she got a scratch,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,: and then that guy came.,and then that guy came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,(and) : and then she had a bandaid on.,and then she had a bandaid on,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,: what is happen/ing on this one now?,what is happening on this one now,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,(hm) : they : were happy.,they were happy,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,oh okay.,oh okay,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,this guy is mad.,this guy is mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,he is.,he is,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,is that the end?,is that the end,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,yup [+_bch].,yup,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,he had the airplane.,he had the airplane,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and it was his.,and it was his,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and this guy : got it all tangle/ed.,and this guy got it all tangled,0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and the girl had it now.,and the girl had it now,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,(and : now the girl :) [~_EXA:_what_(i)s_that_I_did_n(o)t_hear] then the girl drop/ed it in there.,then the girl dropped it in there,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,okay.,okay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,she drop/ed it in there.,she dropped it in there,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and this guy was mad.,and this guy was mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,: (now they were both) now they were both mad.,now they were both mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,: and that[!] girl [EU].,and that girl,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,lot/s of page/s [+_bch].,lots of pages,1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,yeah yeah but on this page can you tell me what is happen/ing because I can not see.,yeah yeah but on this page can you tell me what is happening because I can not see,0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,(um) the girl is mad.,the girl is mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and now that guy was go/ing to reach it.,and now that guy was going to reach it,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and he could not.,and he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,: and then this guy was cry/ing.,and then this guy was crying,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and this girl xxx.,and this girl,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,yes she did.,yes she did,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,: and (this girl xxx) [~_EXA:_what_is_that] this girl was go/ing to catch it.,and this girl was going to catch it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and she caught[!] it.,and she caught it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,"oh okay, and on this page what is happen/ing?",oh okay and on this page what is happening,0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,she caught[!] it [+_bch].,she caught it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,: then she gave it to him.,then she gave it to him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,: (then : he) then she was happy.,then she was happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,he : and him[EW:he] builded|build[EW:built] a castle.,he and him builded a castle,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,: and then that guy was go/ing to [:_gonna] build a really high [+..] [EU].,and then that guy was going to build a really high,0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and then it spill/ed all over.,and then it spilled all over,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and then : it was broken!,and then it was broken,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and he was mad.,and he was mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,it was all his fault.,it was all his fault,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,he did it.,he did it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,what did you say what did you say honey?,what did you say what did you say honey,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,this guy was : sad.,this guy was sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and : (that guy : was not happy) [~_no] (this guy) that guy was cry/ing.,and that guy was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,that guy was run/ing.,that guy was running,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,[~!_whispers] he was [+_bch].,he was,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and then : that guy was go/ing [~_sticking_tongue__out].,and then that guy was going,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,[~!_whispers] he was [+_bch].,he was,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,can you say that louder?,can you say that louder,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,he was go/ing like [~_sticks_out_tongue] the bunny was.,he was going like the bunny was,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,oh stick/ing his tongue out.,oh sticking his tongue out,0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,yeah stick/ing his tongue out [+_bch].,yeah sticking his tongue out,0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,: now he sat down.,now he sat down,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,like he went like this [~_shaking_head].,like he went like this,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,: and that guy was [~_shakes_head].,and that guy was,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,shak/ing his head?,shaking his head,6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,umhm [+_bch].,umhm,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,that guy ran to him.,that guy ran to him,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,what was that?,what was that,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,that guy ran to him [+_bch].,that guy ran to him,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,then (he) did he XXX.,then did he,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,he did what?,he did what,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,(this guy) (this guy pull/ed him) this guy pull/ed him.,this guy pulled him,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,(um) now this guy was go/ing [~_shaking_head] again.,now this guy was going again,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,shaking his head again?,shaking his head again,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,yeah [+_bch].,yeah,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,now that guy was in the sand[?].,now that guy was in the sand,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and then (that guy) this guy (b) walk/ed with him.,and then this guy walked with him,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,that guy was run/ing again.,that guy was running again,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,this guy was [+_bch].,this guy was,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,no that guy was [+_bch].,no that guy was,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,(that guy was) that bunny was go/ing to [:_gonna] take that balloon!,that bunny was going to take that balloon,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,then he got it.,then he got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and he untie/ed it.,and he untied it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,can you talk louder so I can hear?,can you talk louder so I can hear,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,he untied it [+_bch]!,he untied it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and it flew away.,and it flew away,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and it should not do that [+_bch].,and it should not do that,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,what?,what,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,that bunny should not do that.,that bunny should not do that,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,he did not : do it [+_bch].,he did not do it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and then that[!] guy : was really mad.,and then that guy was really mad,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and then : that guy saw that guy.,and then that guy saw that guy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and he had : more balloon/s.,and he had more balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,: then this guy ran up to him.,then this guy ran up to him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,then he was go/ing to [:_gonna] get a balloon.,then he was going to get a balloon,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,did you tell me about this page?,did you tell me about this page,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,this guy (was) ran up to him[?].,this guy ran up to him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,he got a balloon!,he got a balloon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,then this guy was very sad.,then this guy was very sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,: then : this guy : got it.,then this guy got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,this guy what?,this guy what,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,this guy [+_bch]!,this guy,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,yeah what did you say?,yeah what did you say,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,this guy was here [+_bch]!,this guy was here,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,then (that guy : said) (he went over) : this guy said over there!,then this guy said over there,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,what?,what,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,this guy said over there [+_bch].,this guy said over there,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and then (this) these two got a balloon.,and then these two got a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,then this guy : (ha) sticked|stick[EW:stuck] his teeth out [~_exaggerated_grin].,then this guy sticked his teeth out,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,oh like a big grin.,oh like a big grin,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,once upon : a time : there was a[EW:an] elephant name/ed : Emily.,once upon a time there was a elephant named Emily,0 0 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,: and John ask/ed her if she want/ed to go swim/ing.,and John asked her if she wanted to go swimming,0 0 4 0 0 0 4 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,: so Emily was so sad that : (um) Jonathan fell in the pool.,so Emily was so sad that Jonathan fell in the pool,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,: she try/ed to give him the ball.,she tried to give him the ball,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,but he was go/ing to sink.,but he was going to sink,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,: he was so wet that Emily did not like him any more.,he was so wet that Emily did not like him any more,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,Emily and Michael went to the pool.,Emily and Michael went to the pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,so Michael (ww) want/ed to go in the pool.,so Michael wanted to go in the pool,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,: Emily was go/ing to jump in the pool.,Emily was going to jump in the pool,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,: but Emily want/ed to jump off : the teetertotter.,but Emily wanted to jump off the teetertotter,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,she hurt her knee.,she hurt her knee,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,: (her big brother came) the lifeguard came to see her knee.,the lifeguard came to see her knee,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,: (and they : did not want) Emily did not want to come to (the) any more swimming pool/s.,Emily did not want to come to any more swimming pools,0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,: so Emily and the lifeguard and (ju) Michael were walk/ing her home.,so Emily and the lifeguard and Michael were walking her home,0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,: the lifeguard said if you only have a parent to come with you.,the lifeguard said if you only have a parent to come with you,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,Emily and Michael came to the swimming pool again.,Emily and Michael came to the swimming pool again,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,so they were fly/ing their plane in the : room where the pool was.,so they were flying their plane in the room where the pool was,0 0 0 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,: Emily had (a) after a turn from Michael.,Emily had after a turn from Michael,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,so Michael was so sad that his plane was down in the water.,so Michael was so sad that his plane was down in the water,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,: Michael was so upset about Emily drop/ed the plane in the water.,Michael was so upset about Emily dropped the plane in the water,0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,the lifeguard : was (so nn :) not angry.,the lifeguard was not angry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,(so) : so (they ask/ed the lifeguard if they could get Michael/z) Emily ask/ed the lifeguard if she can get Michael/z : plane.,so Emily asked the lifeguard if she can get Michael's plane,0 0 4 0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,but he could not reach it.,but he could not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,: (then they were st) then Michael start/ed to cry.,then Michael started to cry,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,: a fanciest pig with a : bathing suit can catch it.,a fanciest pig with a bathing suit can catch it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,: she got her net in the water : to catch the plane.,she got her net in the water to catch the plane,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,: she gave it to Michael.,she gave it to Michael,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,: and Michael was not upset again.,and Michael was not upset again,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,once upon a time Emily and : (um) : the : [~_dropped_the__microphone] [~_EXA:_you_said_once_upon_a_time_Emily_and] Michael went to the park : to build a sandcastle.,once upon a time Emily and the Michael went to the park to build a sandcastle,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,so (they) Michael was build/ing some of his own sandcastle.,so Michael was building some of his own sandcastle,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,he was go/ing to wreck : Emily/z sandcastle.,he was going to wreck Emily's sandcastle,0 0 6 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,Emily was not (wa) happy because her castle was broke[EW:broken].,Emily was not happy because her castle was broke,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,she was so sad that Michael did that.,she was so sad that Michael did that,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,she cry/ed : because : Michael did that.,she cried because Michael did that,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,Michael was walk/ing for a picnic with his mother.,Michael was walking for a picnic with his mother,0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,so Michael got out his stuff : for his picnic.,so Michael got out his stuff for his picnic,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,he was so full that he can barely : eat any more [EU].,he was so full that he can barely eat any more,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,: so he got seasick from eat/ing all those[EW:that] food.,so he got seasick from eating all those food,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,so Emily ran to : Missus Kay.,so Emily ran to Missus Kay,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,Missus Kay came with her.,Missus Kay came with her,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,so Thumper was not all right.,so Thumper was not all right,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,: so Thumper came with (um) : Missus Kay.,so Thumper came with Missus Kay,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,once upon a time Emily had (a) her wagon and a balloon.,once upon a time Emily had her wagon and a balloon,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,Michael was come/ing along : to see : the balloon.,Michael was coming along to see the balloon,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,so Michael untie/ed it : from the wagon.,so Michael untied it from the wagon,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,Emily was so angry.,Emily was so angry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,she was so upset that her balloon went up.,she was so upset that her balloon went up,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,they saw a balloon man hold/ing more of the balloon/s.,they saw a balloon man holding more of the balloons,0 0 0 0 0 6 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,: so (Mister) Mister Kay let him pick a balloon.,so Mister Kay let him pick a balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,but (he) : he said they are only five[-:] dollar/s.,but he said they are only five dollars,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,so they could not get a balloon.,so they could not get a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,Missus Kay was come/ing along.,Missus Kay was coming along,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,Missus Kay want/ed to (he) help the little children bunny/s.,Missus Kay wanted to help the little children bunnies,0 0 4 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,so she did : buy them a balloon.,so she did buy them a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,(so sh) so Missus Kay (gave them) gave : the man : five[-:] dollar/s.,so Missus Kay gave the man five dollars,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,they were so happy that they both got their own balloon/s.,they were so happy that they both got their own balloons,0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,once upon a time : there was : a little : (ch) : giraffe and a little elephant.,once upon a time there was a little giraffe and a little elephant,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,they got a ball!,they got a ball,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and they play/ed all[-:] in the pool.,and they played all in the pool,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and : (it) they play/ed outside[!] the pool.,and they played outside the pool,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,but (the) : it got stuck in there!,but it got stuck in there,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,the elephant was the only one with her bathing suit on!,the elephant was the only one with her bathing suit on,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,(so she had : to) but he[-:][!] just goed|go[EW:went] and got the ball : because he was brave.,but he just goed and got the ball because he was brave,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and : then (the elephant ga) : the giraffe gave[-:] the elephant the ball.,and then the giraffe gave the elephant the ball,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,then he was soak/ing wet[~!_laughing].,then he was soaking wet,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and then : he laugh/ed[-:] kind of [~_laughs].,and then he laughed kind of,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,once upon a time[-:] : there was : a little giraffe and a little elephant.,once upon a time there was a little giraffe and a little elephant,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and : then they want/ed to go in the pool[!].,and then they wanted to go in the pool,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and it said no[-:] run/ing!,and it said no running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,so then : she runned|run[EW:ran] [!] : the elephant.,so then she runned the elephant,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,but she try/ed not to.,but she tried not to,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and she whoa(*3) slip/ed!,and she whoa slipped,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and she hurt[!] herself on : the knee[-:]!,and she hurt herself on the knee,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and it really hurted|hurt[EW:hurt].,and it really hurted,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and (it) : so she : (ca) call/ed the lifeguard.,and so she called the lifeguard,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and she is cry/ing.,and she is crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and : he got some[EW:a] bandaid and : put it on : her knee.,and he got some bandaid and put it on her knee,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,then it was better.,then it was better,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and then : he point/ed at him.,and then he pointed at him,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,you should not run!,you should not run,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,look at this sign.,look at this sign,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,so : the end [+_bch].,so the end,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,once upon a time there was a giraffe : and : an elephant.,once upon a time there was a giraffe and an elephant,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and : he *was fly/ing a plane around the pool [EU].,and he flying a plane around the pool,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,but then it drop/ed in the pool.,but then it dropped in the pool,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and : then : he try/ed[-:].,and then he tried,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,then the elephant use it [EU].,then the elephant use it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and : he drop [+/]^,and he drop,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,the elephant what?,the elephant what,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,the elephant (did it) (drop) play/ed with it.,the elephant played with it,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and then he try/ed[-:] not to put it in the pool.,and then he tried not to put it in the pool,0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,but then it fell in.,but then it fell in,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and he was so[!] mad.,and he was so mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,the giraffe was.,the giraffe was,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,so : and the lifeguard was mad[-:] too.,so and the lifeguard was mad too,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,(and he said) but it was an accident she said.,but it was an accident she said,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,so (she) he try/ed[-:] and try/ed to reach it.,so he tried and tried to reach it,0 0 4 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,(but this) : but he could not[-:] : just could not.,but he could not just could not,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,so : then : he cry/ed[-:].,so then he cried,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,so then (the little) a girl[!] came with a bathing suit on.,so then a girl came with a bathing suit on,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and she had a net so she could : reach[!] it.,and she had a net so she could reach it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,so (she reach) : he try/ed to reach it.,so he tried to reach it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and she got[!] it.,and she got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,then she was : happy again.,then she was happy again,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,but then[-:] : he hug/ed it and hug/ed it.,but then he hugged it and hugged it,0 0 0 4 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,the end [+_bch]!,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,once upon a time (there was a) there was a little : girl doggy play/ing.,once upon a time there was a little girl doggy playing,0 0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and she was make/ing a big sandcastle with a bow[!] on it.,and she was making a big sandcastle with a bow on it,0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and [+/]^,and,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,with a what?,with a what,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,bow on it [+_bch].,bow on it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,(and : she) and some : little bunny[!] came over.,and some little bunny came over,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and he ask/ed to play.,and he asked to play,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and the doggy said : come on.,and the doggy said come on,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,let us play.,let us play,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and so he play/ed.,and so he played,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and[-:] then[-:] they made a big[-:][!] (castle) : sandcastle[?].,and then they made a big sandcastle,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and then : they just kept[!] : dig/ing and kept dig/ing until it was very[!] very big.,and then they just kept digging and kept digging until it was very very big,0 0 0 0 0 6 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,then : (there wa) then (th) : he dump/ed it all[-:] over.,then then he dumped it all over,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,but then : doggy feeled|feel[EW:felt] kind of : sad and mad.,but then doggy feeled kind of sad and mad,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,so : then it would all break down.,so then it would all break down,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,but then they had to make it all over[!] again.,but then they had to make it all over again,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and they (wa) did it.,and they did it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and (he[-:]) she was kind of : happy.,and she was kind of happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and he was so[-:][!] (mm) : sad : that he[-:] just : said please do not : hurt me!,and he was so sad that he just said please do not hurt me,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,it was just an accident!,it was just an accident,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,so[-:] then she cry/ed.,so then she cried,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,but (then it was not) then he saw[?] it[?].,but then he saw it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,once upon a time[-:] there was : (a he) a little girl who walk/ing [EU].,once upon a time there was a little girl who walking,0 0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and she found her buddy that she was go/ing to camp with.,and she found her buddy that she was going to camp with,0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,so then[-:] she : just : let us go this[!] way.,so then she just let us go this way,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,then they went that way.,then they went that way,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and then they : did it.,and then they did it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and the bunny[!] ate : (all[-:]) almost all of the food!,and the bunny ate almost all of the food,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and (then they had to) : (th) then they had no more food just one sandwich (i) and one : little drink for : the doggy!,and then they had no more food just one sandwich and one little drink for the doggy,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,so[-:] then he was full!,so then he was full,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and his tummy hurt!,and his tummy hurt,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,so[-:] then : the doctor[!] came : and : (try/ed to) then : try/ed to cure him.,so then the doctor came and then tried to cure him,0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,try/ed to what?,tried to what,4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,cure him [+_bch].,cure him,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and then : (he) he pull/ed his sleeve and : said come on come on!,and then he pulled his sleeve and said come on come on,0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,so then : she had to : just say : (your) (his tu) (her tummy) open wide.,so then she had to just say open wide,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and : they had : a big[-:][!] problem.,and they had a big problem,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,but then he was better.,but then he was better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,once upon a time there was a little[-:] : doggy : and a bunny.,once upon a time there was a little doggy and a bunny,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and : she had a balloon!,and she had a balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,she was (ride) : pull/ing her : wagon.,she was pulling her wagon,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,so[-:] then (he[!] wan) he[-:] kind of touch/ed it.,so then he kind of touched it,0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and : then he went off.,and then he went off,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,then she tie/ed it.,then she tied it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,(she) he untie/ed it.,he untied it,0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and then : it went up up up and away.,and then it went up up up and away,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,then she lost it.,then she lost it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and then[!] : she was angry : at the bunny!,and then she was angry at the bunny,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and (h) he was sad.,and he was sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,there was another patch of balloon/s.,there was another patch of balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and he would go get one for her : the same color.,and he would go get one for her the same color,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and (k) : he point/ed at them.,and he pointed at them,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,(and he wan) : (and : she) and they had no[-:] money!,and they had no money,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,(so that) so he was very sad.,so he was very sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,so then : he[-:] gave him : a balloon.,so then he gave him a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and that[?] said (if) I will save that balloon for you if you can go get money at your[!] house!,and that said I will save that balloon for you if you can go get money at your house,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,so then (he got) : he goed|go[EW:went] and get|get[EW:got] the money from : his mom[!].,so then he goed and get the money from his mom,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,so then : he : got money so he could get that (ot) balloon.,so then he got money so he could get that balloon,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,(and she gave) and he gave (it) : two[!] (to him) to (th) her and him because : he had more[!] money than just five[-:] (buck/s) : dollar/s.,and he gave two to her and him because he had more money than just five dollars,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,so then they were : happy.,so then they were happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,I see that the elephant is (a bounce) bounce/ing (three ball/s at) : a ball[!].,I see that the elephant is bouncing a ball,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and she is go/ing to throw it into one of the hoop/s[!].,and she is going to throw it into one of the hoops,0 0 0 6 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then it felled|fall[EW:fell] into the water.,and then it felled into the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then : the zebra is try/ing to swim and get it.,and then the zebra is trying to swim and get it,0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then : the elephant is go/ing to : get the ball for him.,and then the elephant is going to get the ball for him,0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then[-:] she is smile/ing with her ball.,and then she is smiling with her ball,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and that is : the end I think [+_bch].,and that is the end I think,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,[~_all_right] it look/3s like she is look/ing at the water !,it looks like she is looking at the water,0 3 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,(and she) and I think she is go/ing to [~_gonna] walk[!] into the water.,and I think she is going to walk into the water,0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and she slip/ed[!].,and she slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then she scratch/ed her knee.,and then she scratched her knee,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and : I think (um) : the guard of the swimming pool (she) she is run/ing : to her.,and I think the guard of the swimming pool she is running to her,0 0 0 0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,(and she) and it look/3s like she is cry/ing[-:] .,and it looks like she is crying,0 0 3 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,(and then[-:]) [~_I_think__I_(a)m_ready_for_the_next_page] and then it look/3s like : (um : he is) : he is mad[!] at her.,and then it looks like he is mad at her,0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and I think that is about the end [+_bch].,and I think that is about the end,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,(I see : um the[-:] : um) I see the[-:] zebra.,I see the zebra,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,he has a[EW:an] airplane in his hand[-:] .,he has a airplane in his hand,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,(and he is) and he is fling/ing his tongue out it look/3s like and : sound/ing[EW:sound/3s] like it is a[EW:an] airplane.,and he is flinging his tongue out it looks like and sounding like it is a airplane,0 0 0 6 0 0 0 0 3 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then the elephant took it away.,and then the elephant took it away,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then she accidentally drop/ed it into the water.,and then she accidentally dropped it into the water,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then[!] he was mad[!] at her : (cau) .,and then he was mad at her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then he[!] came.,and then he came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,(and then[-:] she) and then (she : like want/ed) (she told her wha) (she) she[!] told him what happen/ed.,and then she told him what happened,0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and : he try/ed[!] to get it out.,and he tried to get it out,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,but it keeped|keep[EW:kept] float/ing and float/ing farer[EW:further].,but it keeped floating and floating farer,0 0 0 6 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then they could not get it.,and then they could not get it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,somebody need/ed to swim in there and get it : maybe.,somebody needed to swim in there and get it maybe,0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then she got something to get it out.,and then she got something to get it out,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,she try/ed (it) to get it and get it.,she tried to get it and get it,0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and it still would not get in.,and it still would not get in,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then she got it out.,and then she got it out,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,then she : got it for him.,then she got it for him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then (she hug) (he hug/ed it very) the zebra hug/ed it very much.,and then the zebra hugged it very much,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,[~_singsong_voice] the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,I see they are make/ing a sandcastle.,I see they are making a sandcastle,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and it is very nice.,and it is very nice,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and I see the rabbit[~!_laughing] is go/ing to flip that bucket over.,and I see the rabbit is going to flip that bucket over,0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then[-:] (he) the bunny (has) is go/ing to pour it on top of the sandcastle.,and then the bunny is going to pour it on top of the sandcastle,0 0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then it was wreck/ed.,and then it was wrecked,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,then he : is like oh no!,then he is like oh no,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and[-:] now the : dog is cry/ing.,and now the dog is crying,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then that is the end [+_bch].,and then that is the end,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,I see they are go/ing to have a picnic!,I see they are going to have a picnic,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,they are eat/ing.,they are eating,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,(hm) : and I think that rabbit is too full[-:] .,and I think that rabbit is too full,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,I think he ate too much candy or too much food[-:] .,I think he ate too much candy or too much food,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,(and) and the dog *is go/ing to[:_gonna] tell (th) another rabbit : the nurse : rabbit [EU].,and the dog going to tell another rabbit the nurse rabbit,0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,(hm) : and (he is look/3s like) : he is like faint/ing[!].,and he is like fainting,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and the : nurse like : is tell/ing him something : to put on his hand[?].,and the nurse like is telling him something to put on his hand,0 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then he is walk/ing.,and then he is walking,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and the dog is stand/ing up by the picnic.,and the dog is standing up by the picnic,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,I think that is about it [+_bch].,I think that is about it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,I think[!] he has a : wagon and a : balloon tie/ed onto his wagon.,I think he has a wagon and a balloon tied onto his wagon,0 0 0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and the bunny want/3s to come along with[!] him I think.,and the bunny wants to come along with him I think,0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then he saw the balloon.,and then he saw the balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then he try/ed to tie it off[-:].,and then he tried to tie it off,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then it : sail/ed up into the sky!,and then it sailed up into the sky,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then[!] the bunny look/ed up in the sky[-:].,and then the bunny looked up in the sky,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then the dog was mad at him!,and then the dog was mad at him,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then (they s) they went and saw (ano) (lots o) other balloon/s.,and then they went and saw other balloons,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then the bunny came after[!] those balloon/s.,and then the bunny came after those balloons,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and the bunny said can I have another balloon[-:]?,and the bunny said can I have another balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,but he had no cents[EW:money].,but he had no cents,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,but[-:][!] (he) (he wa) and he had a smile again.,but and he had a smile again,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then[-:] : the other bunny came along.,and then the other bunny came along,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and (he) (the oth) the little bunny said can you give me some money?,and the little bunny said can you give me some money,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and : well she said I do not know!,and well she said I do not know,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,so she gave : him some money : for a balloon.,so she gave him some money for a balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then she smile/ed[-:].,and then she smiled,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,one day there was an elephant and a giraffe who want/ed to go swim/ing.,one day there was an elephant and a giraffe who wanted to go swimming,0 0 0 0 0 0 0 0 0 0 4 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,the elephant drop/ed her ball in the swimming pool.,the elephant dropped her ball in the swimming pool,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,the giraffe swam and got it for her.,the giraffe swam and got it for her,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,he gave it to her.,he gave it to her,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,the girl was very happy.,the girl was very happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,once upon a time there was : a cow and : a[EW:an] elephant.,once upon a time there was a cow and a elephant,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,the elephant want/3s to go on a diving board.,the elephant wants to go on a diving board,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,: she ran : there.,she ran there,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,: she slip/ed and bump/ed her knee.,she slipped and bumped her knee,0 4 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,coach came run/ing.,coach came running,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,: the (go) coach put a bandaid on : it.,the coach put a bandaid on it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,: she walk/ed to the bench.,she walked to the bench,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,: then the coach got very angry at her.,then the coach got very angry at her,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,one day there was a : cow and a[EW:an] elephant.,one day there was a cow and a elephant,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,: the cow had an airplane.,the cow had an airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,(the) the elephant took it from : him.,the elephant took it from him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,: it fell into the swimming pool.,it fell into the swimming pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,the cow was very angry at the elephant.,the cow was very angry at the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,the coach : came.,the coach came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,: the elephant was talk/ing to the coach.,the elephant was talking to the coach,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,the coach try/ed and reach/ed it [EU].,the coach tried and reached it,0 0 4 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,: (the) : (the t) : the cow was : cry/ing.,the cow was crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,: then came : a lady with a net : and grab/ed it.,then came a lady with a net and grabbed it,0 0 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,and then the cow : was very happy.,and then the cow was very happy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,: and the cow and the elephant were happy.,and the cow and the elephant were happy,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,one day there was : a rabbit : and his friend who want/ed : to build a sandcastle.,one day there was a rabbit and his friend who wanted to build a sandcastle,0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,they start/ed to build it.,they started to build it,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,(the rabbit) : the rabbit pour/ed a bucket on the sandcastle : and broke it.,the rabbit poured a bucket on the sandcastle and broke it,0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,and : the rabbit/z friend : (was) was build/ing it really fast.,and the rabbit's friend was building it really fast,0 0 2 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,once upon a time there was a rabbit and a dog.,once upon a time there was a rabbit and a dog,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,they were have/ing a picnic.,they were having a picnic,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,the rabbit ate all the food in his basket.,the rabbit ate all the food in his basket,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,he had a stomachache.,he had a stomachache,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,his mom came.,his mom came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,(um) the dog pull/ed : his mom to the picnic.,the dog pulled his mom to the picnic,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,(the mom) : the mom was look/ing at his : daughter.,the mom was looking at his daughter,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,then he feeled|feel[EW:felt] better.,then he feeled better,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,and they went home.,and they went home,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,one day there was : a dog who had a balloon.,one day there was a dog who had a balloon,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,the rabbit want/ed to play with it.,the rabbit wanted to play with it,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,the rabbit untie/ed it from the wagon.,the rabbit untied it from the wagon,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,it flew away.,it flew away,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,they were very mad at each other.,they were very mad at each other,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,but then they seen|see[EW:saw] : a man sell/ing balloon/s.,but then they seen a man selling balloons,0 0 0 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,they want/ed to buy one.,they wanted to buy one,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,but the balloon/s were five cent/s.,but the balloons were five cents,0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,and the rabbit had no money.,and the rabbit had no money,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,they were sad.,they were sad,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,then he seen|see[EW:saw] : a girl.,then he seen a girl,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,and he ask/ed (if he could) if she could buy one for them.,and he asked if she could buy one for them,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,(and he) and she did.,and she did,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,and they were both very happy.,and they were both very happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,they are at the swimming pool.,they are at the swimming pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,(a b) they saw a ball in the water.,they saw a ball in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,(th) is that a horse or a giraffe [~_whispers] [+_bch]?,is that a horse or a giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,it is your story.,it is your story,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,the giraffe is : try/ing to swim for the ball.,the giraffe is trying to swim for the ball,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and then he got it for the elephant.,and then he got it for the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and then : she was proud of him.,and then she was proud of him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,(they are) the same character/s are at the pool.,the same characters are at the pool,0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,the elephant start/3s to run.,the elephant starts to run,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,she slip/3s.,she slips,0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,then[-:] the lifeguard come/3s.,then the lifeguard comes,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and she is cry/ing.,and she is crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and the : lifeguard put/3s (um) a bandage on.,and the lifeguard puts a bandage on,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and then : she is like [~_inhales_sharply].,and then she is like,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and the lifeguard : (um) tell/3s her : the sign no run/ing.,and the lifeguard tells her the sign no running,0 0 0 3 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and then : she is look/ing at it.,and then she is looking at it,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,(then) then lifeguard is point/ing it out.,then lifeguard is pointing it out,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,(um) the giraffe has a : toy airplane in his hand.,the giraffe has a toy airplane in his hand,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and (the el) the : giraffe he is play/ing with it.,and the giraffe he is playing with it,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and then the elephant grab/3s it from him.,and then the elephant grabs it from him,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,(and then she put/3s it in the w) and she accidentally : put it in the water.,and she accidentally put it in the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,then the giraffe get/3s mad at her.,then the giraffe gets mad at her,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,then the lifeguard come/3s.,then the lifeguard comes,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and then the lifeguard is talk/ing to the elephant what happen/ed.,and then the lifeguard is talking to the elephant what happened,0 0 0 0 0 6 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and then the lifeguard is try/ing to reach for it.,and then the lifeguard is trying to reach for it,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,then the : giraffe is cry/ing.,then the giraffe is crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,then (um) a girl elephant come/3s.,then a girl elephant comes,0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and she (um) : has a net.,and she has a net,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and she scoop/ed it out.,and she scooped it out,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and : now he is all glad.,and now he is all glad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and now he is hug/ing it.,and now he is hugging it,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,a bunny : rabbit was : (um) in the sandpit and a dog.,a bunny rabbit was in the sandpit and a dog,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and then (um) the dog made a sandcastle.,and then the dog made a sandcastle,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and then the bunny rabbit was stir/ing up sand in a pail.,and then the bunny rabbit was stirring up sand in a pail,0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and then he pour/3s it onto the sandcastle.,and then he pours it onto the sandcastle,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and then (um) : Rabbit is scream/ing.,and then Rabbit is screaming,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,then : (um) Dog was try/ing to fix it up (for her) for him.,then Dog was trying to fix it up for him,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and that is the end [+_bch].,and that is the end,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,the same character/s (are) [EU].,the same characters,0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,but they are go/ing on a picnic.,but they are going on a picnic,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,rabbit is eat/ing so much.,rabbit is eating so much,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and (he is) I think he is get/ing full.,and I think he is getting full,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and now I think he has a tummyache.,and now I think he has a tummyache,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and (he is) now he is all dizzy.,and now he is all dizzy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and now a doctor come/3s.,and now a doctor comes,0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and the dog is pull/ing a doctor to the rabbit.,and the dog is pulling a doctor to the rabbit,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and then (the ra) the doctor was try/ing to : figure out : what had happen/ed to the rabbit.,and then the doctor was trying to figure out what had happened to the rabbit,0 0 0 0 0 6 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and then rabbit is feel/ing a little bit better.,and then rabbit is feeling a little bit better,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,they are the same character/s.,they are the same characters,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and the dog is pull/ing a wagon.,and the dog is pulling a wagon,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and he has a balloon on it.,and he has a balloon on it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and : rabbit is come/ing.,and rabbit is coming,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and then rabbit look/3s at the balloon.,and then rabbit looks at the balloon,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and he say/3s wow.,and he says wow,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and then he is try/ing to untie it.,and then he is trying to untie it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,(then the balloo) and he untie/3s it.,and he unties it,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and the balloon float/3s up.,and the balloon floats up,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and Dog is try/ing to chase it.,and Dog is trying to chase it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and Rabbit is trying to reach it.,and Rabbit is trying to reach it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and now Dog is really mad at : him.,and now Dog is really mad at him,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,then there is a balloon seller come/ing.,then there is a balloon seller coming,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,(and uh she) and : rabbit want/3s to buy one.,and rabbit wants to buy one,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,but : [~_whispers_'okay'] balloon/s are twenty (fi s) five cent/s.,but balloons are twenty five cents,0 1 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and dog is pull/ing his wagon.,and dog is pulling his wagon,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and : (th) they are (um) look/ing (at the m) at the balloon seller.,and they are looking at the balloon seller,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and the balloon seller is (um) : ignore/ing them.,and the balloon seller is ignoring them,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and then : the doctor (she) she is there.,and then the doctor she is there,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,(and : then) : and then the rabbit run/3s to her.,and then the rabbit runs to her,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and then the rabbit point/3s out to the balloon/s.,and then the rabbit points out to the balloons,0 0 0 0 3 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and (the um) : (the) : the doctor give/3s him : (two five) ten cent/s for two balloon/s.,and the doctor gives him ten cents for two balloons,0 0 0 3 0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and then they each got their own balloon.,and then they each got their own balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and the doctor is really happy.,and the doctor is really happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and that is the end [+_bch].,and that is the end,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,(there is :) the (um) zebra is the coach.,the zebra is the coach,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and[-:] : this girl is bounce/ing a ball : near the water.,and this girl is bouncing a ball near the water,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,then her ball fall|fall[EW:falls] into the water.,then her ball fall into the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and she can not get it.,and she can not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,but the zebra swim/3s and (help/3s it) help/3s her get her ball back.,but the zebra swims and helps her get her ball back,0 0 0 3 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,the[-:] elephant : say/3s thank you to give/ing her ball back [EU].,the elephant says thank you to giving her ball back,0 0 3 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the zebra say/3s you are welcome.,and the zebra says you are welcome,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and then she is (um) so glad that she hug/3s her ball.,and then she is so glad that she hugs her ball,0 0 0 0 0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,(and) and they are both smile/ing at each other.,and they are both smiling at each other,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the zebra is all wet.,and the zebra is all wet,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,there is a : zebra and the elephant.,there is a zebra and the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and there is xx of water [~_?].,and there is of water,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and it say/3s no run/ing.,and it says no running,0 0 3 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and[-:] there is a diving board.,and there is a diving board,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the elephant is : [~_child_coughs] walk/ing.,and the elephant is walking,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and[-:] : she says I am go/ing to[:_gonna] go (on the high dive) on the diving board.,and she says I am going to go on the diving board,0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,(and the) : and then (the) : the elephant want/ed it.,and then the elephant wanted it,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,(he) she is go/ing to (sl) [~_child_coughs] slip.,she is going to slip,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the elephant slip/3s.,and the elephant slips,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and she is cry/ing.,and she is crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,so then the lifeguard come/3s.,so then the lifeguard comes,0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and she look/3s at it.,and she looks at it,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and (s) there is a tear [~_/teer/].,and there is a tear,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and it is all wipe/ed up.,and it is all wiped up,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,: and now (she put/3s) they put a bandaid on her : to make it all better.,and now they put a bandaid on her to make it all better,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,[~_child_yawns] and she is sit/ing on a bench.,and she is sitting on a bench,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and : that is why : (it) it say/3s no run/ing.,and that is why it says no running,0 0 0 0 0 3 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the elephant and the zebra says|say[EW:say] : do you know why that sign is up?,and the elephant and the zebra says do you know why that sign is up,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,no : the elephant say/3s.,no the elephant says,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,because it say/3s no run/ing.,because it says no running,0 0 3 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and you just runned|run[EW:ran].,and you just runned,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,: (and : we) : and she said yeah.,and she said yeah,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,it say/3s no run/ing.,it says no running,0 3 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and you did!,and you did,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and she is (like : um) kind of scare/ed.,and she is kind of scared,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,"and he has (a face on her) : a mean face on him, the elephant.",and he has a mean face on him the elephant,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,(the ze) the zebra has a[EW:an] airplane in his hand.,the zebra has a airplane in his hand,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and he say/3s hey.,and he says hey,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the elephant say/3s hey can I try that out?,and the elephant says hey can I try that out,0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and he is near the water.,and he is near the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and he say/3s yes.,and he says yes,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,: and : it go/3s everywhere.,and it goes everywhere,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,(and he is) and he is (um) spit/ing.,and he is spitting,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and (she is like) she is like whoa cool.,and she is like whoa cool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and then : (she[-:]) (he) she take/3s it out of his hand.,and then she takes it out of his hand,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and (she fl) she fly/3s it : without ask/ing.,and she flies it without asking,0 0 3 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and then : the : plane go/3s into the water.,and then the plane goes into the water,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,: and the zebra get/3s mad at her (beca).,and the zebra gets mad at her,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,: and it is sink/ing lower and lower : and lower.,and it is sinking lower and lower and lower,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the guy is like (um) : be/ing mad at her.,and the guy is like being mad at her,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and then she say/3s it was not my fault[!].,and then she says it was not my fault,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,I did not mean to do it.,I did not mean to do it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,so (it is) he is try/ing to get it.,so he is trying to get it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,but it is too far.,but it is too far,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and so[-:] : (the) the zebra is cry/ing.,and so the zebra is crying,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the elephant is (li) try/ing to put her foot in.,and the elephant is trying to put her foot in,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and then (the lifeg) the girl lifeguard : is here.,and then the girl lifeguard is here,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and then : he[~?_yawning] had a net with her [+_bch].,and then he had a net with her,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,can you say that again ?,can you say that again,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and : she has a net with her.,and she has a net with her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and then she (fl) : try/3s to pick it up.,and then she tries to pick it up,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,: and she do/3s.,and she does,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and then (him uh) he is hold/ing it very tight.,and then he is holding it very tight,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and she is glad.,and she is glad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,(a[-:]) : a dog and a bunny [EU].,a dog and a bunny,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,(and) (and he) and the bunny has a shovel.,and the bunny has a shovel,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the dog has a shovel.,and the dog has a shovel,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and : he is make/ing a castle : in the sand.,and he is making a castle in the sand,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,they play/ed with each other.,they played with each other,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the bunny : is put/ing sand in the bucket with the (ch) shovel.,and the bunny is putting sand in the bucket with the shovel,0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,(and the other) and the dog is pat/ing the sandcastle.,and the dog is patting the sandcastle,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,: and now : the bunny pour/ed some sand on the castle.,and now the bunny poured some sand on the castle,0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and : he has a face.,and he has a face,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the dog has a (um : uh) : kind of a scare/ed face.,and the dog has a kind of a scared face,0 0 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the castle broke.,and the castle broke,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and then (they c) the dog cry/ed.,and then the dog cried,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the rabbit (was) was look/ing up.,and the rabbit was looking up,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and he put his hand behind his back.,and he put his hand behind his back,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and then the bunny and a dog [EU].,and then the bunny and a dog,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,they have some basket/s.,they have some baskets,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and : the dog say/3s hi.,and the dog says hi,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and them[EW:they] *are walk/ing down the road [EU].,and them walking down the road,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the bunny *is try/ing to catch up to him [EU].,and the bunny trying to catch up to him,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,the bunny is so hungry that : (um) : he put/3s all that stuff out.,the bunny is so hungry that he puts all that stuff out,0 0 0 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and then it is (fall/ing) drip/ing from him.,and then it is dripping from him,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and now the bunny is full : too.,and now the bunny is full too,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the bunny has a stomachache.,and the bunny has a stomachache,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the : dog do/3s not.,and the dog does not,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and : missus Bunny come/3s.,and missus Bunny comes,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the dog (go) (go) go/3s run/ing to her.,and the dog goes running to her,0 0 0 3 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,(and he) and the bunny is lay/ing down on the floor.,and the bunny is laying down on the floor,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the dog is try/ing to pull him.,and the dog is trying to pull him,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,but (he) he can not.,but he can not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and he *is try/ing to get away [EU].,and he trying to get away,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the bunny is still right there.,and the bunny is still right there,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and now : the doctor is (um) try/ing to make him wake up.,and now the doctor is trying to make him wake up,0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and then they go home.,and then they go home,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,the dog is push/ing a wagon with a balloon in it.,the dog is pushing a wagon with a balloon in it,0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and[-:] (the) the bunny (s) say/3s hi.,and the bunny says hi,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and he is try/ing to catch up to him again.,and he is trying to catch up to him again,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,(and the bunny) and the bunny look/3s at the balloon.,and the bunny looks at the balloon,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and they stop.,and they stop,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and then the clown : is there.,and then the clown is there,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the bunny is try/ing to get it off.,and the bunny is trying to get it off,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,: and then : the balloon go/3s away.,and then the balloon goes away,0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and they are try/ing to get it.,and they are trying to get it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and now (they) the dog is so angry at the bunny.,and now the dog is so angry at the bunny,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and he is look/ing up like a scare/ed bunny.,and he is looking up like a scared bunny,0 0 0 6 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,: (the bunny) : (and : the bu) : (the) : they see a boy bunny.,they see a boy bunny,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and he is hold/ing a balloon[-:] : with a hat on his head.,and he is holding a balloon with a hat on his head,0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the bunny is walk/ing to it.,and the bunny is walking to it,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and : the dog is still mad at him.,and the dog is still mad at him,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,(the bunny is) the bunny point/3s at the balloon and say/3s : can I have that balloon?,the bunny points at the balloon and says can I have that balloon,0 0 3 0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the dog is make/ing a frown.,and the dog is making a frown,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the : rabbit is make/ing : a glad face.,and the rabbit is making a glad face,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,: and the bunny do/3s not have any money.,and the bunny does not have any money,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,so : the rabbit : say/3s (he) (if he can not) if you do not have money you can not buy a balloon.,so the rabbit says if you do not have money you can not buy a balloon,0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,: and (the bun) the dog and the bunny : (is) is[EW:are] (uh) worry/ed that : they might not get enough money to buy the balloon back.,and the dog and the bunny is worried that they might not get enough money to buy the balloon back,0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,: and the : bunny went to (the other) the doctor bunny.,and the bunny went to the doctor bunny,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the dog and the bunny [~_child_yawns] stands|stand[EW:stand] there look/ing at him.,and the dog and the bunny stands there looking at him,0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,: the bunny say/3s : me and my friend : want to buy that balloon.,the bunny says me and my friend want to buy that balloon,0 0 3 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and he is not let/ing us.,and he is not letting us,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and we do not have enough money.,and we do not have enough money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,so : can you lend us some?,so can you lend us some,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,[~_child_makes_a_comment_under_breath] so she do/3s.,so she does,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and : she give/3s them (a balloon) each a balloon.,and she gives them each a balloon,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,they both have the balloon.,they both have the balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,there was once upon a time a : giraffe and an elephant : who[-:] : want/ed to go in a pool.,there was once upon a time a giraffe and an elephant who wanted to go in a pool,0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and the[-:] elephant lost his ball.,and the elephant lost his ball,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,so the giraffe try/ed to swim for it.,so the giraffe tried to swim for it,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and the giraffe got the ball.,and the giraffe got the ball,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and : the elephant like/ed the giraffe.,and the elephant liked the giraffe,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,there was once upon a time : a giraffe and an elephant.,there was once upon a time a giraffe and an elephant,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,they want/ed to go on the diving board.,they wanted to go on the diving board,0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,(uh) the elephant was run/ing.,the elephant was running,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,the sign said no[!] run/ing.,the sign said no running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and the elephant trip/ed and hurt her knee.,and the elephant tripped and hurt her knee,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and : (the lifeguard came run/ing and the gira) : the lifeguard came run/ing.,and the lifeguard came running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and : the : girl elephant was cry/ing.,and the girl elephant was crying,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and : the girl (elev) elephant was okay : because she had a bandaid on.,and the girl elephant was okay because she had a bandaid on,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and the lifeguard told her : see the sign no run/ing?,and the lifeguard told her see the sign no running,0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,(there was once upon a time) : there was once upon a time an elephant and a giraffe.,there was once upon a time an elephant and a giraffe,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,(the) and (uh) the giraffe play/ed with its airplane.,and the giraffe played with its airplane,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and then the elephant took the airplane away from the giraffe.,and then the elephant took the airplane away from the giraffe,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and the elephant accidentally threw it in the water.,and the elephant accidentally threw it in the water,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and the giraffe got mad at the elephant.,and the giraffe got mad at the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and the lifeguard[-:] said what is the problem?,and the lifeguard said what is the problem,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and the : elephant said I accidentally threw it in the water.,and the elephant said I accidentally threw it in the water,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and the lifeguard try/ed to reach it with it/z own hands.,and the lifeguard tried to reach it with it's own hands,0 0 0 4 0 0 0 0 2 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,but he could not.,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,so : the giraffe cry/ed.,so the giraffe cried,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and the : elephant was sorry.,and the elephant was sorry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and another lifeguard came with a net.,and another lifeguard came with a net,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and she got the airplane out of the pool : and then gave it to the giraffe.,and she got the airplane out of the pool and then gave it to the giraffe,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and then the giraffe was happy.,and then the giraffe was happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and then the giraffe was play/ing with it.,and then the giraffe was playing with it,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and (she) he said to the : elephant : (if) (do not throw the) be careful with this airplane.,and he said to the elephant be careful with this airplane,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,once upon a time there was[EW:were] : two little mice : (that : build[-:]) that : (bil) : builded|build[EW:built] a sandcastle.,once upon a time there was two little mice that builded a sandcastle,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and : a[-:] mouse[-:] : dump/ed sand on it.,and a mouse dumped sand on it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and the other mouse was : sad.,and the other mouse was sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and then he was cry/ing.,and then he was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and (he did not want to) (he want) he : did not want him to play with him any more.,and he did not want him to play with him any more,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,there was[EW:were] once : two little mice : have/ing a picnic.,there was once two little mice having a picnic,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and one mice[EW:mouse] ate : a lot of stuff.,and one mice ate a lot of stuff,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and then he had a stomachache.,and then he had a stomachache,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,(and he tol) and the other mice[EW:mouse] told his : mother that he had a stomachache.,and the other mice told his mother that he had a stomachache,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and (his) he pull/ed his mother to see (wh).,and he pulled his mother to see,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and his mother said : are you okay?,and his mother said are you okay,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and he was okay (cause) : [~_oh_I_forgot].,and he was okay,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,there was[EW:were] once upon a time : two mice.,there was once upon a time two mice,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and one mice[EW:mouse] had a balloon.,and one mice had a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and : the other mice[EW:mouse] want/ed to look at it.,and the other mice wanted to look at it,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,(he was : sur) (he was) : he want/ed to : feel it.,he wanted to feel it,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,so he untie/ed the balloon so : it would (f) fly away.,so he untied the balloon so it would fly away,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and : the other mouse[-:] got really mad.,and the other mouse got really mad,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and there was a man that selled|sell[EW:sold] balloon/s.,and there was a man that selled balloons,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,the other mouse want/ed a balloon.,the other mouse wanted a balloon,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,but the : balloon/s were five cent/s.,but the balloons were five cents,0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and he did not have enough.,and he did not have enough,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,so they could not get a balloon.,so they could not get a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and then they came to their mother : and said can we have a balloon?,and then they came to their mother and said can we have a balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and their mother paid the man so they could have a balloon.,and their mother paid the man so they could have a balloon,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and now they : each have a balloon.,and now they each have a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,Two dragon/s are play/ing by the park.,Two dragons are playing by the park,0 1 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,and there is this pool in the park.,and there is this pool in the park,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,and this ball fall/3s in the water.,and this ball falls in the water,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,(the b) the boy dragon try/3s to get the ball by swim/ing to it.,the boy dragon tries to get the ball by swimming to it,0 0 0 3 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,and he get/3s the ball.,and he gets the ball,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,(h) the girl elephant (is ha) thank/3s him for get/ing the ball.,the girl elephant thanks him for getting the ball,0 0 0 3 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,There is[EW:are] these two (: um) kid/s.,There is these two kids,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,and [~_softly] : they want to go swim/ing.,and they want to go swimming,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the elephant run/3s and slip/3s over.,the elephant runs and slips over,0 0 3 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the elephant hurt her knee.,the elephant hurt her knee,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the[-:] giraffe went to go get the lifeguard.,the giraffe went to go get the lifeguard,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the lifeguard put a bandage on : the elephant/z knee.,the lifeguard put a bandage on the elephant's knee,0 0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the elephant sat down on the bench.,the elephant sat down on the bench,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the lifeguard was angry because (she did not) she was run/ing.,the lifeguard was angry because she was running,0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,Two : animal/s are play/ing near (the sea) [~_I_mean] the pool.,Two animals are playing near the pool,0 1 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the giraffe is fly/ing (a) a plane.,the giraffe is flying a plane,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the elephant watch/3s.,the elephant watches,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the elephant (ta) snatch/3s the : plane from the giraffe/z hand.,the elephant snatches the plane from the giraffe's hand,0 0 3 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,and she drop/3s it into the pool.,and she drops it into the pool,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the giraffe is angry with the elephant.,the giraffe is angry with the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the lifeguard : came and : ask/ed what is the matter.,the lifeguard came and asked what is the matter,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the : giraffe said : that the elephant (threw the) snatch/ed the plane from (the) his hand and threw it in the water.,the giraffe said that the elephant snatched the plane from his hand and threw it in the water,0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the lifeguard try/s to get the : plane.,the lifeguard tries to get the plane,0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,but he can not.,but he can not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the giraffe is sad : because he could not get his plane.,the giraffe is sad because he could not get his plane,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,and then another lifeguard came (an) with a net.,and then another lifeguard came with a net,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,she grab/ed the plane in the net.,she grabbed the plane in the net,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,and she gave it back to the giraffe.,and she gave it back to the giraffe,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the giraffe was happy that he got his plane back.,the giraffe was happy that he got his plane back,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,and the elephant ask/ed if she could play with it.,and the elephant asked if she could play with it,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,(a) two bunny/s were play/ing in the sand park.,two bunnies were playing in the sand park,0 1 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,(the bunny) one of the bunny/s were[EW:was] : make/ing a sandcastle.,one of the bunnies were making a sandcastle,0 0 0 1 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the other one was help/ing.,the other one was helping,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,but then the other bunny just : threw some sand onto the castle.,but then the other bunny just threw some sand onto the castle,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,: and then they were (sa) shock/ed because it fell down.,and then they were shocked because it fell down,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,(the : one) the bunny who threw the sand : just : pretend/ed he did not do anything.,the bunny who threw the sand just pretended he did not do anything,0 0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,a bunny and a wolf were play/ing together (in) in the : forest.,a bunny and a wolf were playing together in the forest,0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,they had the picnic in the open : field.,they had the picnic in the open field,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,and the bunny was : eat/ing lots.,and the bunny was eating lots,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,then the bunny just (lie) lie/ed down with a fat stomach.,then the bunny just lay down with a fat stomach,0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,suddenly the bunny felt sick.,suddenly the bunny felt sick,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the wolf went to get the bunny/z mom.,the wolf went to get the bunny's mom,0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the bunny/z mom : went with the wolf.,the bunny's mom went with the wolf,0 2 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the bunny/z mom was a doctor.,the bunny's mom was a doctor,0 2 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,and she : said you should take a rest to the bunny.,and she said you should take a rest to the bunny,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,finally the bunny felt better.,finally the bunny felt better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,and they walk/ed home.,and they walked home,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,a bunny and a dog were (wal) take/ing a walk.,a bunny and a dog were taking a walk,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the dog had a balloon with him.,the dog had a balloon with him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the bunny was try/ing to get the balloon.,the bunny was trying to get the balloon,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the bunny : made the (lo) dog lose the balloon.,the bunny made the dog lose the balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,and it float/ed away.,and it floated away,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the dog was angry with the bunny : because : that was his only balloon.,the dog was angry with the bunny because that was his only balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,suddenly they saw (a m) (a b) a bunny : with a whole bunch of balloon/s.,suddenly they saw a bunny with a whole bunch of balloons,0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the bunnies ask/ed if they could buy one of them.,the bunnies asked if they could buy one of them,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,(the bun) the big bunny said : yes you can.,the big bunny said yes you can,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,but : they are five cent/s.,but they are five cents,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the bunny did not have any[!] money.,the bunny did not have any money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,suddenly he saw his mom.,suddenly he saw his mom,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,he ask/ed his mom if he could have five cent/s for a balloon.,he asked his mom if he could have five cents for a balloon,0 4 0 0 0 0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the (bunn) bunny/z mom gave the : big bunny (five cent/s and) : ten cent/s.,the bunny's mom gave the big bunny ten cents,0 2 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,and (the) : both the dog and bunny could have balloon/s.,and both the dog and bunny could have balloons,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the dog and the bunny were play/ing together : with the balloon/s.,the dog and the bunny were playing together with the balloons,0 0 0 0 0 0 6 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,one day : Giraffe and Elephant went to the pool.,one day Giraffe and Elephant went to the pool,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,(uh) Elephant was bounce/ing a ball.,Elephant was bouncing a ball,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,the ball went into the water : in the pool.,the ball went into the water in the pool,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,and : Giraffe swam in to get it.,and Giraffe swam in to get it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,Elephant (pulled) got the ball (f) when Giraffe came back (to uh :) to the shore.,Elephant got the ball when Giraffe came back to the shore,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,and (when rab) when Giraffe got out Elephant said [~_high__pitched_voice] thank you Giraffe.,and when Giraffe got out Elephant said thank you Giraffe,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,and they all live/ed (hap) happily (af) ever after.,and they all lived happily ever after,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,later on that day they went (to) back to the pool again with elephant got her ball all back [EU].,later on that day they went back to the pool again with elephant got her ball all back,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,they saw a diving board.,they saw a diving board,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,elephant said hey giraffe (want to) want to go dive/ing?,elephant said hey giraffe want to go diving,0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,and (she start/ed run/ing) she start/ed run/ing.,and she started running,0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,but she trip/ed and fell.,but she tripped and fell,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,and she got a cut.,and she got a cut,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,the lifeguard came run/ing and put a bandaid on it.,the lifeguard came running and put a bandaid on it,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,and (she :) she look/ed.,and she looked,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,(and did not fe) and it did not hurt anymore.,and it did not hurt anymore,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,she sat on the bench instead of dive/ing off the diving board and did not run.,she sat on the bench instead of diving off the diving board and did not run,0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,the end.,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,one day Giraffe and Elephant went to the pool.,one day Giraffe and Elephant went to the pool,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,Giraffe had an airplane!,Giraffe had an airplane,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,(he) he told Elephant [~_oops] that it was (a grea) a great airplane and *it could fly anywhere [EU]!,he told Elephant that it was a great airplane and could fly anywhere,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,Elephant took the airplane from Giraffe.,Elephant took the airplane from Giraffe,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,and she : (uh) flew it.,and she flew it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,and it land/ed in the water.,and it landed in the water,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,Giraffe was really mad at Elephant.,Giraffe was really mad at Elephant,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,the lifeguard saw this.,the lifeguard saw this,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,Elephant told the lifeguard what happen/ed.,Elephant told the lifeguard what happened,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,the lifeguard try/ed to reach the airplane.,the lifeguard tried to reach the airplane,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,but he could not.,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,Giraffe was really really sad.,Giraffe was really really sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,then[!] : a lady with a net came by.,then a lady with a net came by,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,and she reach/ed the airplane (with her fi) with her fishing net.,and she reached the airplane with her fishing net,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,[~_under_her_breath] well she try/ed.,well she tried,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,[~_yeah] and she reach/ed it and gave it back to giraffe.,and she reached it and gave it back to giraffe,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,and giraffe was happy.,and giraffe was happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,and they all live/ed happily (ever af) ever after.,and they all lived happily ever after,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,(one day dog and rabbit) one day : rabbit came over to dog/z house.,one day rabbit came over to dog's house,0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,dog : was make/ing a sandcastle.,dog was making a sandcastle,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,rabbit took some sand out of the bucket dog was use/ing and[-:] pour/ed it on dog/z sandcastle!,rabbit took some sand out of the bucket dog was using and poured it on dog's sandcastle,0 0 0 0 0 0 0 0 0 0 6 0 4 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,then : dog/z sandcastle broke.,then dog's sandcastle broke,0 2 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,and rabbit : made a weird look/ing face [~_laughs].,and rabbit made a weird looking face,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,dog cry/ed.,dog cried,0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,(and like) and rabbit said sorry dog.,and rabbit said sorry dog,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,I did not mean it.,I did not mean it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,one day : dog and rabbit went for a picnic.,one day dog and rabbit went for a picnic,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,[~_uh_okay] rabbit got a delicious picnic when dog was take/ing out his things.,rabbit got a delicious picnic when dog was taking out his things,0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,(but after he ate) but after rabbit ate he got all queasy.,but after rabbit ate he got all queasy,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,uhoh said dog.,uhoh said dog,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,dog ran to get (r r) rabbit/z mother : the doctor.,dog ran to get rabbit's mother the doctor,0 0 0 0 2 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,and : he pull/ed her over to where rabbit was.,and he pulled her over to where rabbit was,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,(he said) and his mom said oh no you should be in bed [~_laughs].,and his mom said oh no you should be in bed,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,and so they went home.,and so they went home,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,and everyone was happy.,and everyone was happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,(once there was) [~_okay] (one day dog had a ba) one day dog was push/ing his wagon with his brand new balloon.,one day dog was pushing his wagon with his brand new balloon,0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,rabbit saw the balloon (and) and was amaze/ed of[EW:by] how it float/ed in the air.,rabbit saw the balloon and was amazed of how it floated in the air,0 0 0 0 0 0 4 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,rabbit untie/ed the balloon from the wagon.,rabbit untied the balloon from the wagon,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,and poof it went up into the sky.,and poof it went up into the sky,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,dog got really really mad at rabbit.,dog got really really mad at rabbit,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,then they saw a man with balloon/s.,then they saw a man with balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,(rabbit sai) rabbit said : (can we buy you) can we have one of your balloon/s?,rabbit said can we have one of your balloons,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,(he) he said balloon/s are five cent/s.,he said balloons are five cents,0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,do you have five cent/s?,do you have five cents,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,he look/ed.,he looked,0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,he did not have any.,he did not have any,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,(ssss mmm) maybe you should get somebody who has[!] five cent/s before (you wan) you get a balloon.,maybe you should get somebody who has five cents before you get a balloon,0 0 0 0 0 0 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,"so[!] : rabbit got his mom : and ask/ed, mom can you buy (a) a five cent balloon?",so rabbit got his mom and asked mom can you buy a five cent balloon,0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,(uh) okay I will : two.,okay I will two,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,and they have two balloon/s.,and they have two balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,they each have one balloon.,they each have one balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,and they were all happy.,and they were all happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,once upon a time : there was (a) a[EW:an] elephant : and a zebra.,once upon a time there was a elephant and a zebra,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,they were very best friend/s.,they were very best friends,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and : they were play/ing with the ball.,and they were playing with the ball,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and first the ball bounce/ed into the water.,and first the ball bounced into the water,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then : (the sh) (the) : the zebra jump/ed into the swim/ing pool and : swimmed|swim[EW:swam] to get the ball.,and then the zebra jumped into the swimming pool and swimmed to get the ball,0 0 0 0 4 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then[!] : the zebra came back and give|give[EW:gave] (it) the ball back to the elephant.,and then the zebra came back and give the ball back to the elephant,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and : then : the elephant was jealous.,and then the elephant was jealous,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and : the zebra was soak/ing wet.,and the zebra was soaking wet,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,once upon a time there was a zebra and the elephant.,once upon a time there was a zebra and the elephant,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,they were go/ing to go swim/ing.,they were going to go swimming,0 0 6 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then : (she ru) she runned|run[EW:ran] over to the jumping board.,and then she runned over to the jumping board,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then she runned|run[EW:ran].,and then she runned,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and she slip/ed.,and she slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and[-:] then she hurt her knee.,and then she hurt her knee,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then the zebra went to go get the shop keeper.,and then the zebra went to go get the shop keeper,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then the keeper saw her and then gave her a bandage.,and then the keeper saw her and then gave her a bandage,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then when they put the bandage on the zebra feeled|feel[EW:felt] a little bit sad.,and then when they put the bandage on the zebra feeled a little bit sad,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and (then) : then (the) he did this [~_child_holds_out_his__hands].,and then he did this,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,(and then) and then the swimming pool guy was pretty mad because she look/ed at the sign and said (no) no run/ing.,and then the swimming pool guy was pretty mad because she looked at the sign and said no running,0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,once upon a time : the zebra and the elephant.,once upon a time the zebra and the elephant,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,the zebra brought a play airplane where the swimming pool was.,the zebra brought a play airplane where the swimming pool was,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then : he : flied|fly[EW:flew] it.,and then he flied it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then the elephant want/ed to hold it.,and then the elephant wanted to hold it,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then : she (ff) xx pajinkly[c] drop/ed it in the water.,and then she pajinkly dropped it in the water,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,she what ?,she what,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,drop/ed it in the water the airplane [+_bch].,dropped it in the water the airplane,4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,you said what pajinkly what was that word ?,you said what pajinkly what was that word,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,(she) (the airplane) (she le) (she xx) she slip/ed the airplane and fell in the water [+_bch].,she slipped the airplane and fell in the water,0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and : then : the zebra got really mad : at the elephant.,and then the zebra got really mad at the elephant,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then : the keeper : try/ed to help.,and then the keeper tried to help,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,(and : he tr) and then he try/ed to reach/ing[EW:reach] it : with his hand/s.,and then he tried to reaching it with his hands,0 0 0 4 0 6 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and : he fell in the water.,and he fell in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then : the zebra cry/ed.,and then the zebra cried,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then : a girl : elephant came.,and then a girl elephant came,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and she : xx it out with her net : and then gave it : back : to the zebra[!].,and she it out with her net and then gave it back to the zebra,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,: I am all done [+_bch].,I am all done,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,"you are done, [~_turns_page] anything for this page?",you are done anything for this page,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,then : he said thank you.,then he said thank you,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then : he hug/ed his airplane with joy.,and then he hugged his airplane with joy,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,once upon a time there was a rabbit and a dog.,once upon a time there was a rabbit and a dog,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and : the dog was : make/ing a sandcastle.,and the dog was making a sandcastle,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then : the rabbit took a bunch of (sssh) sand[-:] from it/z sandbox.,and then the rabbit took a bunch of sand from it's sandbox,0 0 0 0 0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and he pour/ed it all over : her castle.,and he poured it all over her castle,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then : he was not very happy the dog.,and then he was not very happy the dog,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and : then the doggy cry/ed.,and then the doggy cried,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and : the rabbit felt not very happy.,and the rabbit felt not very happy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,once upon a time : there were best friend/s a rabbit and a dog.,once upon a time there were best friends a rabbit and a dog,0 0 0 0 0 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and : they have the[EW:a] picnic.,and they have the picnic,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and the rabbit ate lot/s of food.,and the rabbit ate lots of food,0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then he eat|eat[EW:ate] lot/s and lot/s.,and then he eat lots and lots,0 0 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then he had stomachache.,and then he had stomachache,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and he faint/ed.,and he fainted,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then : he went to go get the doctor.,and then he went to go get the doctor,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then : the doctor help/ed him.,and then the doctor helped him,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then : they walk/ed home again.,and then they walked home again,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,once upon a time : the doggy had a balloon.,once upon a time the doggy had a balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then : the rabbit : untie/ed it.,and then the rabbit untied it,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,(uh) and : then : the doggy said they would fly away.,and then the doggy said they would fly away,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then (the) he let go of it.,and then he let go of it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then it flied|fly[EW:flew] away.,and then it flied away,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,(then the dog) then the dog was really mad.,then the dog was really mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then : he saw a balloon man : sell/ing balloon/s.,and then he saw a balloon man selling balloons,0 0 0 0 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then he said can we have two balloon/s please?,and then he said can we have two balloons please,0 0 0 0 0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then he gave him balloon/s and gave him more money and put it back.,and then he gave him balloons and gave him more money and put it back,0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and : then they both had a balloon.,and then they both had a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,: and : they saw a doctor.,and they saw a doctor,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and they said will you get us a balloon please?,and they said will you get us a balloon please,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and (then she gave) then they get|get[EW:got] a balloon.,and then they get a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then they were best friend/s again.,and then they were best friends again,0 0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,(uh) there is : a giraffe[-:].,there is a giraffe,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then there is an elephant.,and then there is an elephant,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,the elephant is bounce/ing a ball.,the elephant is bouncing a ball,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and : they are probably say/ing hi to each other.,and they are probably saying hi to each other,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,they are by a pool.,they are by a pool,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and the : elephant has his swimsuit (maybe on) probably yeah : on.,and the elephant has his swimsuit probably yeah on,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then the : elephant probably bounce/3s it into the water.,and then the elephant probably bounces it into the water,0 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and they are both : oh no it is went into the water [EU] !,and they are both oh no it is went into the water,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,what are we go/ing to do[-:] !,what are we going to do,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,so (the horse) [~_no_the_horse] the (um) : giraffe jump/3s into the water : hold/3s his breath probably and then swim/3s over to it and : probably grab/3s it.,so the giraffe jumps into the water holds his breath probably and then swims over to it and probably grabs it,0 0 0 3 0 0 0 3 0 0 0 0 0 3 0 0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then he is like no[-:] what if he do/3s not come up [~_laughs] !,and then he is like no what if he does not come up,0 0 0 0 0 0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then : the giraffe come/3s back with the ball and hand/3s it over to the elephant.,and then the giraffe comes back with the ball and hands it over to the elephant,0 0 0 0 3 0 0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,(with) and then they are both happy they look like.,and then they are both happy they look like,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then : I think[!] they like each other because[~!_laughing] they are like [~_dreamy_facial_expression] : to each other.,and then I think they like each other because they are like to each other,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,yeah.,yeah,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,(uh) they are the same two people the giraffe and the[-:] : elephant.,they are the same two people the giraffe and the elephant,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and they are still[!] at the (um) : pool.,and they are still at the pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and there is a no run/ing sign.,and there is a no running sign,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then I think the elephant is probably start/ing to run.,and then I think the elephant is probably starting to run,0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and the giraffe has a towel on it : hold/ing it.,and the giraffe has a towel on it holding it,0 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then she do/3s start to run.,and then she does start to run,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then : she slip/3s.,and then she slips,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and I think the giraffe[!] is start/ing to run.,and I think the giraffe is starting to run,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,but then : he probably see/3s her : fall.,but then he probably sees her fall,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,so he probably do/3s not run then.,so he probably does not run then,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then he is like oh no I have to get over to her : because she hurt her knee!,and then he is like oh no I have to get over to her because she hurt her knee,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and she is probably cry/ing.,and she is probably crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and she is hold/ing her knee up.,and she is holding her knee up,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and there is still[!] a no run/ing sign.,and there is still a no running sign,0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and : then the lifeguard come/3s over.,and then the lifeguard comes over,0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and : (she see/3s) he see/3s her : with a[EW:an]: owie.,and he sees her with a owie,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then the[-:] lifeguard run/3s down and put/3s a bandage on her knee : to make her feel better.,and then the lifeguard runs down and puts a bandage on her knee to make her feel better,0 0 0 0 3 0 0 3 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then : she look/3s down like ooh[-:] a bandage[-:] !,and then she looks down like ooh a bandage,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then the giraffe is all happy because she is real (um) : not sad and : cry/ing [EU].,and then the giraffe is all happy because she is real not sad and crying,0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then the lifeguard get/3s mad and point/3s at the no run/ing sign.,and then the lifeguard gets mad and points at the no running sign,0 0 0 0 3 0 0 3 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and she is like oh[-:] okay[-:] I am not go/ing to run no more [~__laughs].,and she is like oh okay I am not going to run no more,0 0 0 0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,they are[-:] the same two character/s the giraffe and the elephant.,they are the same two characters the giraffe and the elephant,0 0 0 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and[-:] the giraffe has[-:] a[EW:an][-:] : airplane it look/3s like.,and the giraffe has a airplane it looks like,0 0 0 0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and he is fly/ing it like whoa[-:].,and he is flying it like whoa,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and he is hang[EW:hanging] his tongue out (uh[-:]) [~_sticks_tongue_out] [~__laughs].,and he is hang his tongue out,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,that was so rude [~_laughs].,that was so rude,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then the elephant want/3s to try.,and then the elephant wants to try,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and : the : giraffe probably do/3s not want it to because he is like waa[-:] do not touch that !,and the giraffe probably does not want it to because he is like waa do not touch that,0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then it fall/3s into the water.,and then it falls into the water,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and (the : like) : the elephant start/3s to like uhoh he is probably go/ing to get mad at me !,and the elephant starts to like uhoh he is probably going to get mad at me,0 0 0 3 0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and[-:] the giraffe is not[!] cry/ing yet.,and the giraffe is not crying yet,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,but he will probably get really mad.,but he will probably get really mad,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,yeah[!] he really gets mad[!][-:].,yeah he really gets mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,"and he is [~_makes_mad_sound_""hmmm""] !",and he is,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then the man is[?] like uhoh[-:] [~_laughs] : because (it is pra) it looks like this plane is sink/ing.,and then the man is like uhoh because it looks like this plane is sinking,0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,but I do not think it is.,but I do not think it is,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then the lifeguard (came/3s o) come/3s over.,and then the lifeguard comes over,0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and (the giraffe is like) : (look/3s) : [~_no] : the giraffe look/3s : over to see the lifeguard.,and the giraffe looks over to see the lifeguard,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and the elephant look/3s over to see the lifeguard : come/ing.,and the elephant looks over to see the lifeguard coming,0 0 0 3 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then the (elephan) elephant probably start/3s to tell[!] (the : other) : the elephant lifeguard that : she accidentally drop/ed it into the : water.,and then the elephant probably starts to tell the elephant lifeguard that she accidentally dropped it into the water,0 0 0 0 0 3 0 0 0 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and she probably ask/ing him can you get it out for us ?,and she probably asking him can you get it out for us,0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and the elephant start/3s to try[!] to get it out.,and the elephant starts to try to get it out,0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,but I do not think he can reach.,but I do not think he can reach,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and they are like whoa I do not think he can reach [~_laughs].,and they are like whoa I do not think he can reach,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then : the giraffe start/3s to cry[-:].,and then the giraffe starts to cry,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then the elephant was like uhoh (um) again.,and then the elephant was like uhoh again,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,I am[-:] : go/ing to[:_gonna] get mad at for drop/ing in the plane.,I am going to get mad at for dropping in the plane,0 0 6 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then a girl elephant come/3s over.,and then a girl elephant comes over,0 0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and she has one of those net thing/s you know ?,and she has one of those net things you know,0 0 0 0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and she is probably go/ing to[:_gonna] fish it out (for them) and like yay probably for (them) : her.,and she is probably going to fish it out and like yay probably for her,0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then she get/3s it.,and then she gets it,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,she[-:] dip/3s it into the water : and : scoop/3s it up.,she dips it into the water and scoops it up,0 3 0 0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then (the) : I think the giraffe is still probably cry/ing.,and then I think the giraffe is still probably crying,0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,but : (the) : the lifeguard is happy[!].,but the lifeguard is happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then (the ele) the other elephant : the : little one : was actually like (uh[-:]) hope this one get/3s it [~_laughs].,and then the other elephant the little one was actually like hope this one gets it,0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then she scoop/3s it up pick/3s it up and then give/3s it to the giraffe.,and then she scoops it up picks it up and then gives it to the giraffe,0 0 0 3 0 0 3 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,(and every) and both of them are happy.,and both of them are happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and now : the giraffe is really happy[-:] !,and now the giraffe is really happy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and the elephant is really happy.,and the elephant is really happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and (he) the giraffe is hug/ing[!] the airplane.,and the giraffe is hugging the airplane,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,(uh) [-:] I think it look/3s like a rabbit : and a dog.,I think it looks like a rabbit and a dog,0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,the dog is make/ing a sandcastle.,the dog is making a sandcastle,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and it look/3s like the rabbit want/3s to join in to make the : sandcastle.,and it looks like the rabbit wants to join in to make the sandcastle,0 0 3 0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and[-:] the rabbit has a pail of sand[-:] with a shovel in it.,and the rabbit has a pail of sand with a shovel in it,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and he start/3s to dig in it.,and he starts to dig in it,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and the guy is shape/ing it [~_laughs] the dog.,and the guy is shaping it the dog,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then the rabbit start/3s to pour[-:][!] it on the sandcastle.,and then the rabbit starts to pour it on the sandcastle,0 0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and he is like : kind of : sad or scare/ed of what is go/ing to [~__gonna] happen to it.,and he is like kind of sad or scared of what is going to happen to it,0 0 0 0 0 0 0 0 4 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then[-:] : it wreck/3s it.,and then it wrecks it,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,(it) it come/3s out with a big pile of sand but with just[!] one[-:][!] little building on top but with the whole mound.,it comes out with a big pile of sand but with just one little building on top but with the whole mound,0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then the : rabbit is uhoh[~!_laughing].,and then the rabbit is uhoh,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then (the guy) : the dog is kind of : oh[-:].,and then the dog is kind of oh,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then[-:] the rabbit is sort of like a sorry look.,and then the rabbit is sort of like a sorry look,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and I think the dog is cry/ing[-:].,and I think the dog is crying,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and he is try/ing to : maybe to shape it.,and he is trying to maybe to shape it,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and (there) there is[EW:are] two little more hump/s : with the sandcastle.,and there is two little more humps with the sandcastle,0 0 0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,that is all [+_bch].,that is all,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,(uh) [-:] (the rabbit) (there is a) : they are the same two character/s from the[-:] one B [~_previous_story_number] I think.,they are the same two characters from the one B I think,0 0 0 0 0 1 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and[-:] they both have picnic basket/s.,and they both have picnic baskets,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and the rabbit is walk/ing down[-:] on the forest : on the path.,and the rabbit is walking down on the forest on the path,0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and he meet/3s the dog with the : other : (one) : [~_uh_what_(i)s__it_call/ed] : basket.,and he meets the dog with the other basket,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and[-:] : the rabbit start/3s to take out all[-:] the food.,and the rabbit starts to take out all the food,0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,there is (uh) carrot/s sandwich cake another[!] sandwich (uh) : pickle/s[-:] cookie/s : (uh) chip/s : another sandwich [EU].,there is carrots sandwich cake another sandwich pickles cookies chips another sandwich,0 0 1 0 0 0 0 1 1 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,(uh) there is a lot of stuff.,there is a lot of stuff,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,(um) [-:] : and then he has the carrot and the sandwich in his hand.,and then he has the carrot and the sandwich in his hand,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,(uh) [-:] : (he has sort of a) : yum I am go/ing to eat this.,yum I am going to eat this,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then the dog just take/3s out one sandwich.,and then the dog just takes out one sandwich,0 0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,he is like whoa[-:][!] : this[-:] guy eat/3s a lot [~_laughs].,he is like whoa this guy eats a lot,0 0 0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and (um) : the rabbit start/3s to gobble it all up.,and the rabbit starts to gobble it all up,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and there is[EW:are] crumb/3s left.,and there is crumbs left,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,there is an apple core : a juice box I think : some[-:] crumb/s.,there is an apple core a juice box I think some crumbs,0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,(and then the ba) and then he has a big tummy[!].,and then he has a big tummy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and he is still munch/ing his food.,and he is still munching his food,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and the[-:] lunchbox is tip/ed over.,and the lunchbox is tipped over,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then the dog is just sit/ing there : munch/ing on his (sandwi) sandwich and has a juice box in his hand.,and then the dog is just sitting there munching on his sandwich and has a juice box in his hand,0 0 0 0 0 0 6 0 6 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then the rabbit go/3s whoa that is a lot of food.,and then the rabbit goes whoa that is a lot of food,0 0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then he (s) kind of fall/3s over it look/3s like : cause he (has a) : probably has a tummyache.,and then he kind of falls over it looks like cause he probably has a tummyache,0 0 0 0 0 3 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then : the dog is like whoa what is wrong with him?,and then the dog is like whoa what is wrong with him,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and he still[~!_laughing] has the : sandwich and the juice box in his hand.,and he still has the sandwich and the juice box in his hand,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then : (the dog[-:] start/3s) [~_no] (the um) : there is a mother rabbit.,and then there is a mother rabbit,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,it is probably the rabbit/z mother.,it is probably the rabbit's mother,0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,she is walk/ing down[-:].,she is walking down,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then : the little dog go/3s and : tell/3s her that probably the : rabbit *that is lie/ing there : (uh) has a stomachache [EU].,and then the little dog goes and tells her that probably the rabbit is lying there has a stomachache,0 0 0 0 0 3 0 3 0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and : he start/3s to pull[!] on her to come over : and check on him to make sure he is okay.,and he starts to pull on her to come over and check on him to make sure he is okay,0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and (he) there is a big twirl come/ing over the : rabbit/z face.,and there is a big twirl coming over the rabbit's face,0 0 0 0 0 0 6 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then (the rabbit) : [~_I_think_it_(i)s_a_doctor] (the rabbit) the older rabbit is a doctor.,and then the older rabbit is a doctor,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and he has (a telescope thingy) [~_not_a_telescope_#_you_know__those_things_I_can_n(o)t_do_n(o)t_know_what_they_are_called_-:_#_whoa__they_have_like_a_little_round_thing_and_then_there_(i)s_a_poke__#_hole].,and he has,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then she has glass/s.,and then she has glasses,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and she has (a) : one of those : thing/s that go down there.,and she has one of those things that go down there,0 0 0 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then : (she go/3s : to) she is probably tell/ing him (um) to open wide or to not eat so much food.,and then she is probably telling him to open wide or to not eat so much food,0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then : (the ra) the doctor rabbit say/3s : I guess he feel/3s better.,and then the doctor rabbit says I guess he feels better,0 0 0 0 0 3 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and (um) he get/3s up and (wa) start/3s to walk with the doctor.,and he gets up and starts to walk with the doctor,0 0 3 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then and the dog (s) start/3s to smile.,and then and the dog starts to smile,0 0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,(uh) [-:] the rabbit is walk/ing down.,the rabbit is walking down,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and the dog has a balloon[!] in it : that is tie/ed to a wagon.,and the dog has a balloon in it that is tied to a wagon,0 0 0 0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and I think she is pull/ing[!] it.,and I think she is pulling it,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and (then the do) : then the rabbit say/3s probably can I look at it and (ho) : want/3s to hold it.,and then the rabbit says probably can I look at it and wants to hold it,0 0 0 0 3 0 0 0 0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then probably the dog say/3s yeah sure.,and then probably the dog says yeah sure,0 0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then : she (un) start/3s to untie it.,and then she starts to untie it,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and the dog is (like) : like a little surprise/ed : think : yeah.,and the dog is like a little surprised think yeah,0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then : I guess the balloon float/3s away.,and then I guess the balloon floats away,0 0 0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,it is float/ing away.,it is floating away,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and the rabbit is like no[-:] !,and the rabbit is like no,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and the dog is[~!_laughing] no either.,and the dog is no either,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then : the dog get/3s really[!] mad like hmmm[~!_grunting].,and then the dog gets really mad like hmmm,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,I am really mad at you!,I am really mad at you,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and the rabbit is like (uh) hm (ye) yeah.,and the rabbit is like hm yeah,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,he is like : scare/ed of him maybe.,he is like scared of him maybe,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then they see : another rabbit : with all these balloon/s.,and then they see another rabbit with all these balloons,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then : the dog still has a mad[!] face on it.,and then the dog still has a mad face on it,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and the rabbit is like woo maybe you can get one from there.,and the rabbit is like woo maybe you can get one from there,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then (the dog run/3s over) [~_no] : the rabbit[!] run/3s over to[-:] probably ask if they could have one.,and then the rabbit runs over to probably ask if they could have one,0 0 0 0 3 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,(and[-:] yeah) and then they cost five : cent/s : for the balloon/s.,and then they cost five cents for the balloons,0 0 0 0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,but : she do/3s not have none[EW:any].,but she does not have none,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and the dog (s) come/3s run/ing : over.,and the dog comes running over,0 0 0 3 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then the dog and the rabbit have really sad face/s.,and then the dog and the rabbit have really sad faces,0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and[-:] : the : older rabbit I guess has like : I am proud of myself [~_laughs].,and the older rabbit I guess has like I am proud of myself,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,then they see (the rabbit) the doctor rabbit.,then they see the doctor rabbit,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and (the rab) the other little rabbit that is the baby run/3s over to her probably ask her for a balloon.,and the other little rabbit that is the baby runs over to her probably ask her for a balloon,0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and (sh) the rabbit ask/3s her if they could get a balloon too : probably : for one : for each of them.,and the rabbit asks her if they could get a balloon too probably for one for each of them,0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,then[-:] : the rabbit come/3s over and give/3s (t) ten cent/s to get both of them a balloon.,then the rabbit comes over and gives ten cents to get both of them a balloon,0 0 0 3 0 0 3 0 1 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and she give/3s it to (them) : him.,and she gives it to him,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and (uh) : rabbit is hold/ing the two balloon/s out : for them to get.,and rabbit is holding the two balloons out for them to get,0 0 0 6 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then everyone is all happy.,and then everyone is all happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,the dog is like : hug/ing[!] it.,the dog is like hugging it,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and the rabbit is hold/ing and hug/ing probably it.,and the rabbit is holding and hugging probably it,0 0 0 0 6 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,the rabbit is really happy : older rabbit.,the rabbit is really happy older rabbit,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,once upon a time (a uh) a giraffe and a[EW:an] elephant met.,once upon a time a giraffe and a elephant met,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,they saw : a balloon stuck (in) in their water (p) pool.,they saw a balloon stuck in their water pool,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,(they) (the) (the) the zebra try/ed to get it.,the zebra tried to get it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,but he (cou) just could not get it.,but he just could not get it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,then : (the) the elephant got it.,then the elephant got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and then (he le) he help/ed : the zebra get out of the water.,and then he helped the zebra get out of the water,0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and then : they both smile/ed at each other.,and then they both smiled at each other,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,(once upon a z) the zebra and the elephant : they want/ed to go dive/ing in the pool.,the zebra and the elephant they wanted to go diving in the pool,0 0 0 0 0 0 4 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and then the elephant runned|run[EW:ran].,and then the elephant runned,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,but it was too slippery (on the) : on the side.,but it was too slippery on the side,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,(and then he slip/ed) and then she slip/ed off.,and then she slipped off,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and she fell into the pool.,and she fell into the pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,but she was not ready to jump.,but she was not ready to jump,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,(sh) then she got a[EW:an] owie because she runned|run[EW:ran] too fast.,then she got a owie because she runned too fast,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and she hurt herself.,and she hurt herself,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,then : (th) the other elephant came to help.,then the other elephant came to help,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,she cry/ed and she cry/ed : because it was hurt/ing.,she cried and she cried because it was hurting,0 4 0 0 4 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and he put a bandaid on it.,and he put a bandaid on it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,then she feeled|feel[EW:felt] much better.,then she feeled much better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,but she just stare/ed at it.,but she just stared at it,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and (he[!] said) : she just freak/ed at him.,and she just freaked at him,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,once upon a time (the elephant) [~_I_mean] the zebra had a toy airplane.,once upon a time the zebra had a toy airplane,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and the elephant want/ed to play with it.,and the elephant wanted to play with it,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,but the zebra said no.,but the zebra said no,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and : then : the elephant took it away from the zebra.,and then the elephant took it away from the zebra,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and then it fell in the water.,and then it fell in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,then : he got upset.,then he got upset,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and then the lifeguard said no toy/s in the water.,and then the lifeguard said no toys in the water,0 0 0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and then : he said (that) that the zebra had the toy.,and then he said that the zebra had the toy,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and then : she took it from him.,and then she took it from him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and then it went in the water.,and then it went in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,(and the ele) and the lifeguard try/ed to reach it.,and the lifeguard tried to reach it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and then : he said : I can not get it out!,and then he said I can not get it out,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and then the person who take/3s toy/s out of the water : she came with a net.,and then the person who takes toys out of the water she came with a net,0 0 0 0 0 3 1 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,(and) : and she try/ed to take it out.,and she tried to take it out,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and then she just about got it.,and then she just about got it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and then she got it out of the water.,and then she got it out of the water,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and then the zebra was happy.,and then the zebra was happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,once upon a time there was[EW:were] two rabbit/s.,once upon a time there was two rabbits,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and they were play/ing in a sandbox!,and they were playing in a sandbox,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and then : one of the rabbit/s took a great big pile of sand.,and then one of the rabbits took a great big pile of sand,0 0 0 0 0 1 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and then the rabbit pour/ed it : on the sandcastle.,and then the rabbit poured it on the sandcastle,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,then it broke.,then it broke,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and then : the other one cry/ed.,and then the other one cried,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,once upon a time the rabbit/s were take/ing their lunch bag/s!,once upon a time the rabbits were taking their lunch bags,0 0 0 0 0 1 0 6 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,then : (a) one of them ate too much.,then one of them ate too much,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,he got a tummyache.,he got a tummyache,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and then he could not eat any more.,and then he could not eat any more,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,so then he ask/3s[-:] the doctor if he could fix his tummyache [EU].,so then he asks the doctor if he could fix his tummyache,0 0 0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,then : (h) the doctor said no.,then the doctor said no,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,then the doctor said open up wide.,then the doctor said open up wide,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and then he still had a tummyache.,and then he still had a tummyache,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,once upon a time the rabbit had a balloon.,once upon a time the rabbit had a balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and he was pull/ing his wagon.,and he was pulling his wagon,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,then the balloon start/ed to fly away.,then the balloon started to fly away,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and (he tie/ed it tright) he try/ed to tie it (ti) tighter.,and he tried to tie it tighter,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,then the balloon flew away.,then the balloon flew away,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,then (the) only the string was left.,then only the string was left,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,(so then the) and then the rabbit saw : (the) the man hold/ing the balloon/s.,and then the rabbit saw the man holding the balloons,0 0 0 0 0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,he said can I have a balloon?,he said can I have a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and the man said no.,and the man said no,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,then he just stood there.,then he just stood there,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,then (he) the doctor[!] walk/ed away.,then the doctor walked away,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,then the doctor look/ed at him and said : he will not give me a balloon.,then the doctor looked at him and said he will not give me a balloon,0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,(then the doc) and then the doctor gave the man : some penny/s.,and then the doctor gave the man some pence,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,(and) : and then he got a balloon.,and then he got a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,the[-:] elephant has : a ball[-:].,the elephant has a ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and the giraffe see/3s the ball[-:].,and the giraffe sees the ball,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,(and : so) : and then : (I) the giraffe : took the ball.,and then the giraffe took the ball,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and[-:] : the elephant look/3s unhappy because : the ball is in the pool.,and the elephant looks unhappy because the ball is in the pool,0 0 0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,so the giraffe go/3s out and swim/3s for it.,so the giraffe goes out and swims for it,0 0 0 3 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and the giraffe get/3s the ball back.,and the giraffe gets the ball back,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and the elephant look/3s happy.,and the elephant looks happy,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and so : the elephant is really happy with him.,and so the elephant is really happy with him,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,[~_kay_-:] there is : an elephant : that want/3s to go (on) on the diving board.,there is an elephant that wants to go on the diving board,0 0 0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and then : so the elephant run/3s over to the diving board.,and then so the elephant runs over to the diving board,0 0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,but the giraffe see/3s the no run/ing sign.,but the giraffe sees the no running sign,0 0 0 3 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,but the elephant do/3s not.,but the elephant does not,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and so she slip/3s.,and so she slips,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and she start/3s cry/ing because she hit her knee.,and she starts crying because she hit her knee,0 0 3 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,(so the oth) so the giraffe get/3s : a lifeguard.,so the giraffe gets a lifeguard,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and the lifeguard come/3s over.,and the lifeguard comes over,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and so he put/3s a bandage on it.,and so he puts a bandage on it,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and[-:] : the lifeguard help/3s the elephant over to a bench.,and the lifeguard helps the elephant over to a bench,0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and then he point/3s at : the no run/ing sign.,and then he points at the no running sign,0 0 0 3 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,the giraffe has an[-:] airplane.,the giraffe has an airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and the elephant : like/3s it.,and the elephant likes it,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,so the giraffe : start/3s play/ing with it.,so the giraffe starts playing with it,0 0 0 3 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and the elephant is dumbstruck.,and the elephant is dumbstruck,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,so the elephant take/3s the : airplane.,so the elephant takes the airplane,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and the giraffe look/3s really unhappy.,and the giraffe looks really unhappy,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,then (the ax) accidentally the elephant drop/3s the plane into the water.,then accidentally the elephant drops the plane into the water,0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and so the giraffe get/3s really mad at the elephant.,and so the giraffe gets really mad at the elephant,0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,the lifeguard see/3s the plane.,the lifeguard sees the plane,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,so he come/3s over.,so he comes over,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,the elephant explain/3s what happened.,the elephant explains what happened,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,so the lifeguard try/3s to reach it with his : hand.,so the lifeguard tries to reach it with his hand,0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,but he can not.,but he can not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,so : the giraffe start/3s cry/ing[-:].,so the giraffe starts crying,0 0 0 3 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,but then a lady : come/3s over.,but then a lady comes over,0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and she has : a net.,and she has a net,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and so[-:] she[-:] fish/3s the[-:] : airplane out of : the water with the net.,and so she fishes the airplane out of the water with the net,0 0 0 3 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and giraffe is really happy.,and giraffe is really happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and so he hug/3s his airplane.,and so he hugs his airplane,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,(um) : there is : a dog[-:].,there is a dog,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,(and[-:] there) and he is at the beach.,and he is at the beach,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and there is also a bunny.,and there is also a bunny,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and the dog has made a sandcastle.,and the dog has made a sandcastle,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and so they are talk/ing.,and so they are talking,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and I think that the bunny : is want/ing to help build the rest of the sandcastle.,and I think that the bunny is wanting to help build the rest of the sandcastle,0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,so[-:] the bunny help/3s : build the sandcastle.,so the bunny helps build the sandcastle,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and then : the bunny : pour/3s : a bunch of sand right[!] over top of the castle.,and then the bunny pours a bunch of sand right over top of the castle,0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and the dog look/3s really disappoint/ed.,and the dog looks really disappointed,0 0 0 3 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and so the dog try/3s to reform : the[-:] castle.,and so the dog tries to reform the castle,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and the bunny : just look/3s really unhappy.,and the bunny just looks really unhappy,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,[~_okay] (um) : the bunny and the dog are go/ing : for a picnic in the wood/s.,the bunny and the dog are going for a picnic in the woods,0 0 0 0 0 0 6 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and[-:] : the dog : see/3s what the bunny is eat/ing.,and the dog sees what the bunny is eating,0 0 0 3 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and the bunny/z : mouth is water/ing.,and the bunny's mouth is watering,0 0 2 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and the dog just stare/3s[-:].,and the dog just stares,0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,the dog eat/3s very slowly.,the dog eats very slowly,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and the bunny is already done.,and the bunny is already done,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and (he is really really unha) he look/3s really really proud of himself.,and he looks really really proud of himself,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and then (it) the dog look/3s worry/ed because his friend is now sick.,and then the dog looks worried because his friend is now sick,0 0 0 0 3 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,(um) : the dog see/3s a doctor bunny : and : ask/3s her : to come with him.,the dog sees a doctor bunny and asks her to come with him,0 0 3 0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,so[-:] the doctor bunny : look/3s[~!_laughing] at him.,so the doctor bunny looks at him,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and he tell/3s : the dog to do something : while he examine/3s the bunny.,and he tells the dog to do something while he examines the bunny,0 0 3 0 0 0 0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and the bunny come/3s along : and look/3s at the balloon and say/3s : something.,and the bunny comes along and looks at the balloon and says something,0 0 0 3 0 0 3 0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and[-:] the dog look/3s : worry/ed.,and the dog looks worried,0 0 0 3 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,so the : bunny untie/3s the balloon.,so the bunny unties the balloon,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and the dog look/3s really unhappy now.,and the dog looks really unhappy now,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and the bunny accidentally let/3s go of the balloon.,and the bunny accidentally lets go of the balloon,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,so the dog is like ah!,so the dog is like ah,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,the bunny look/3s up.,the bunny looks up,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and the dog look/3s really mad now.,and the dog looks really mad now,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,the bunny see/3s (another balloon man an) a balloon man.,the bunny sees a balloon man,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and : so he go/3s over : to him : (ask/3s : for a balloon) : and ask/3s for a balloon.,and so he goes over to him and asks for a balloon,0 0 0 3 0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and[-:] the balloon/s are five (cent/s an) cent/s each.,and the balloons are five cents each,0 0 1 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,but : the bunny do/3s not have any money on him.,but the bunny does not have any money on him,0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,so the man just look/3s really happy[!].,so the man just looks really happy,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and then they see the doctor[!] bunny again.,and then they see the doctor bunny again,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,so they go over : and ask her[!] : for some money for a balloon.,so they go over and ask her for some money for a balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and then : so she pay/3s (the ma) the balloon man.,and then so she pays the balloon man,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and the dog and[!] the bunny : each get a balloon.,and the dog and the bunny each get a balloon,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and so the dog hug/3s the balloon.,and so the dog hugs the balloon,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,the doctor bunny look/3s really[!] happy.,the doctor bunny looks really happy,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and so do/3s the little bunny.,and so does the little bunny,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,(Um : the elephant he was sh) the elephant and (the) (um : the d um) the horse (um) were : at the pool.,the elephant and the horse were at the pool,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and the elephant was bounce/ing the ball very very fast.,and the elephant was bouncing the ball very very fast,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,And : the elephant was watch/ing.,And the elephant was watching,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,And then : the elephant saw how the ball went in the water.,And then the elephant saw how the ball went in the water,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and the dog was surprise/ed.,and the dog was surprised,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,And then the dog : went : (um) in : and chase/ed it [~_laughs].,And then the dog went in and chased it,0 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and : it never could get there.,and it never could get there,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,And then he got it.,And then he got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and : he gave it to the (um) : girl so (he) she could bounce it again.,and he gave it to the girl so she could bounce it again,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and he was all all wet.,and he was all all wet,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,(Um there wa in) the (um) horse and the elephant : want/ed to go swim/ing.,the horse and the elephant wanted to go swimming,0 0 0 0 0 4 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then the : (um) elephant saw a diving board.,and then the elephant saw a diving board,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,so she want/ed to go.,so she wanted to go,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,And she start/ed run/ing.,And she started running,0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and he : was just smile/ing.,and he was just smiling,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and (um) : she keeped|keep[EW:kept] on run/ing faster.,and she keeped on running faster,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then she slip/ed : and fell[-:] : and hurt her knee.,and then she slipped and fell and hurt her knee,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,And then the lifeguard came : and put a bandage on her.,And then the lifeguard came and put a bandage on her,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then she sat down on the bench.,and then she sat down on the bench,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,And : then (um) : she was embarrass/ed because the lifeguard show/ed her no run/ing it said.,And then she was embarrassed because the lifeguard showed her no running it said,0 0 0 0 4 0 0 0 4 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,The horse : was play/ing with the airplane.,The horse was playing with the airplane,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and the : (um) elephant want/ed to play with it.,and the elephant wanted to play with it,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,And then he[!] was flap/ing it around in the air.,And then he was flapping it around in the air,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and she was look/ing.,and she was looking,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then she took it from him.,and then she took it from him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and she[!] was.,and she was,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then she let it go into the pool.,and then she let it go into the pool,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then : (he) the : horse got mad.,and then the horse got mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then the lifeguard saw.,and then the lifeguard saw,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and they were both not happy.,and they were both not happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then (um) she told the lifeguard about it.,and then she told the lifeguard about it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and (um) the lifeguard : said down there?,and the lifeguard said down there,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then he was try/ing to reach it.,and then he was trying to reach it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,(and then h) but he could not.,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,so the horse was cry/ing.,so the horse was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then : (um) another lifeguard came with a net to pick it up with.,and then another lifeguard came with a net to pick it up with,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and (they were a all) (the life) the other lifeguard the elephant : and : the horse were surprise/ed.,and the other lifeguard the elephant and the horse were surprised,0 0 0 0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then she : try/ed.,and then she tried,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and the horse was in tear/s.,and the horse was in tears,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and she got it for him.,and she got it for him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and he was happy.,and he was happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then he love/ed it.,and then he loved it,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,(um) there is a rabbit and (um) a dog[-:].,there is a rabbit and a dog,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and they : both came to the same sandbox.,and they both came to the same sandbox,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then the rabbit he fill/3s the bucket to help make the sandcastle.,and then the rabbit he fills the bucket to help make the sandcastle,0 0 0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then he think/3s that : it would work if he just pour/3s it on.,and then he thinks that it would work if he just pours it on,0 0 0 3 0 0 0 0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,but then : it make/3s (i) a sand pile on top of it.,but then it makes a sand pile on top of it,0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and you can only see one window.,and you can only see one window,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then the dog is in tear/s because (he work/ed) he (b) made the (k) castle.,and then the dog is in tears because he made the castle,0 0 0 0 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,(he ju) the rabbit just fill/ed the sandbox.,the rabbit just filled the sandbox,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,this is a bunny.,this is a bunny,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and he is hop/ing down the street.,and he is hopping down the street,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,name/ed Roger Rabbit.,named Roger Rabbit,4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and he meet/3s : a fox.,and he meets a fox,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and (they want to have a pic) they have a picnic.,and they have a picnic,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then the rabbit he eat/3s ton/s and ton/s and ton/s of stuff.,and then the rabbit he eats tons and tons and tons of stuff,0 0 0 0 0 3 1 0 1 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and the dog just (eats a ju) has a juice and a sandwich.,and the dog just has a juice and a sandwich,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then : the dog see/3s (ra) the rabbit.,and then the dog sees the rabbit,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and he is almost pass/ed out.,and he is almost passed out,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,he ate so much.,he ate so much,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then : the dog he call/ed : the nurse rabbit.,and then the dog he called the nurse rabbit,0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and (um) she saw him.,and she saw him,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and she is like : okay[!].,and she is like okay,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then she came over.,and then she came over,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then she gave him the pill/s and stuff.,and then she gave him the pills and stuff,0 0 0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then they went home.,and then they went home,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,(um the do and the) a dog (and the rabbit came) and the rabbit came by.,a dog and the rabbit came by,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,the dog had a cart and a balloon.,the dog had a cart and a balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and the rabbit had nothing.,and the rabbit had nothing,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,the rabbit want/ed to hold the balloon.,the rabbit wanted to hold the balloon,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and : the dog was not sure.,and the dog was not sure,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then the rabbit untie/ed the balloon.,and then the rabbit untied the balloon,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,(and he) and the dog was : scare/ed that he would let go of it.,and the dog was scared that he would let go of it,0 0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then (um) the rabbit let go of it.,and then the rabbit let go of it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and the dog was run/ing to catch it.,and the dog was running to catch it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and the rabbit was try/ing to.,and the rabbit was trying to,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,but they could not.,but they could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and it went higher.,and it went higher,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and the dog got madder [EU].,and the dog got madder,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,(and then : they saw) and then the rabbit saw (bu) a balloon man.,and then the rabbit saw a balloon man,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and the dog was really really mad.,and the dog was really really mad,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then he asked for a balloon.,and then he asked for a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and the dog was surprise/ed.,and the dog was surprised,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,(and then he) : it was five dollar/s.,it was five dollars,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and he look/ed.,and he looked,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and (he was) he did not have any money.,and he did not have any money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and the dog was come/ing up the hill.,and the dog was coming up the hill,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then they were like aw[-:].,and then they were like aw,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then the man is like you need five dollar/s.,and then the man is like you need five dollars,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and : she was kind of [~_kinda] surprise/ed what he want/ed because he never was interest/ed in balloon/s.,and she was kind of surprised what he wanted because he never was interested in balloons,0 0 0 0 0 4 0 0 4 0 0 0 0 4 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then she paid for (one) two : balloon/s.,and then she paid for two balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then they were both happy.,and then they were both happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and the rabbit could let his go if he want/ed to.,and the rabbit could let his go if he wanted to,0 0 0 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and the dog want/ed to keep his.,and the dog wanted to keep his,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,he got three ball/s.,he got three balls,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and it : and it went in the mud.,and it and it went in the mud,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,"he got : what, people/s?",he got what people,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(the) : the ball went (in) in the mud.,the ball went in the mud,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and then : he was still wet.,and then he was still wet,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and (then : the) : then he was to go to jump in there [EU].,and then he was to go to jump in there,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and then he went to go get the ball.,and then he went to go get the ball,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and he (got tick/ed[?]) [~_EXA:_he_got_#] got all dirty.,and he got all dirty,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and then he comed|come[EW:came] out.,and then he comed out,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(the :) (and now) : (now the giraffe) : and now the giraffe got his : back out.,and now the giraffe got his back out,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(the) (the) the wait/ing to go in the water [EU].,the waiting to go in the water,0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and then) and then he falled|fall[EW:fell].,and then he falled,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,he was run/ing.,he was running,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(h) he want|want[EW:wanted] to go in the water.,he want to go in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and h) and he was run/ing.,and he was running,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and he falled|fall[EW:fell].,and he falled,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and he hurt he[EW:his] knee.,and he hurt he knee,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and) and the doctor comed|come[EW:came] (and and) and put a bandaid on here.,and the doctor comed and put a bandaid on here,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and he *is better now [EU].,and he better now,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(he) he sit|sit[EW:sat] on the bench.,he sit on the bench,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and) and the doctor said you can go back in the water.,and the doctor said you can go back in the water,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,he got a plane.,he got a plane,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and then : it went in the water.,and then it went in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and he) : [~_no] he went to go get it.,he went to go get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and then : he was play/ing with it.,and then he was playing with it,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and then : he put (in) (in) in the (uh) friend[EW:friend/z] hand [EU].,and then he put in the friend hand,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and it falled|fall[EW:fell] in the water.,and it falled in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and it give it back.,and it give it back,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and then) : (and) and (he) she drop/ed it in the water.,and she dropped it in the water,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and he did.,and he did,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and he he did not got|get[EW:get] it back.,and he he did not got it back,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and then : how he) : (and the) (the girl) (the) he *is mad [EU].,he mad,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,the what?,the what,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,he *is mad now [EU].,he mad now,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and the) (put the) (the) then the doctor comed|come[EW:came] (uh) up and said you can not put that in the water.,then the doctor comed up and said you can not put that in the water,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and then the doctor was mad.,and then the doctor was mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and then : he was sad.,and then he was sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and) (and) and the doctor was (um) happy again.,and the doctor was happy again,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and then : (he) the doctor can not get it from the water.,and then the doctor can not get it from the water,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,so : the xx went to go get it take/ing it got it out.,so the went to go get it taking it got it out,0 0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(then he was) (the) he (was cry/ing) : was cry/ing.,he was crying,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and then the other[!] doctor comed|come[EW:came] and : went to go get it : the hook.,and then the other doctor comed and went to go get it the hook,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and he : did[!] got|get[EW:get] it.,and he did got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and (then he) : then he give|give[EW:gave] it back to the ray[?].,and then he give it back to the ray,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and then (he took) (that) he give|give[EW:gave] it back to the girl.,and then he give it back to the girl,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,he was play/ing in the sand and (uh) make/ing (a) (it) a castle.,he was playing in the sand and making a castle,0 0 6 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and (when) when he *was done make/ing a castle a bunny rabbit : *was make/ing it castle too [EU].,and when he done making a castle a bunny rabbit making it castle too,0 0 0 0 6 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and) and (he) (he) he dump/ed it : on the castle.,and he dumped it on the castle,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and he dump/ed it.,and he dumped it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and it was) and it knock/ed all the sand down from the castle.,and it knocked all the sand down from the castle,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and (then) then he was mad.,and then he was mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and then he wa) and then (the) he was cry/ing.,and then he was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(when) when rabbit said hi.,when rabbit said hi,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,he was run/ing.,he was running,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and then) and (then he) then (he went) (he) (he went at) (he eat a) he eat[EW:ate] (a) a bun.,and then he eat a bun,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and then he did not like it.,and then he did not like it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,he did not?,he did not,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,like it [+_bch].,like it,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,then he was sick.,then he was sick,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and (then) then the doctor was need to come [EU].,and then the doctor was need to come,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(then) and then he was fat.,and then he was fat,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and he was?,and he was,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,he got too much.,he got too much,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and (then he) (then) then he sat at doctor and said you come help me [EU].,and then he sat at doctor and said you come help me,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and then he help/ed.,and then he helped,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and then) (and then) (and) : and then he was better.,and then he was better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(xx) and the doctor help|help[EW:helped] him.,and the doctor help him,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and then) : (and then) and then (the doctor take/ed him) : the doctor taked|take[EW:took] him.,and then the doctor taked him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and the end [+_bch].,and the end,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and the rabbit comed|come[EW:came] down and said I *will pull the wagon [EU].,and the rabbit comed down and said I pull the wagon,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and) (and) (and the) (then) then balloon was (c) (c) comed|come[EW:came] off.,then balloon was comed off,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and (then) then it was was flewing[EW:flying] away.,and then it was was flewing away,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and) (and the) and the rabbit was happy.,and the rabbit was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and then he was take/ing it off.,and then he was taking it off,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and then he flewed|fly[EW:flew] away.,and then he flewed away,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and then) and then he was mad.,and then he was mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,when he saw (the) (a) the same balloon with the man he was go/ing to go get one.,when he saw the same balloon with the man he was going to go get one,0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and then (he flew the) all of them flewed|fly[EW:flew] away.,and then all of them flewed away,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,he what?,he what,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,all of them flew away?,all of them flew away,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,when he sawed|see[EW:saw] it he said I have one [EU]?,when he sawed it he said I have one,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and then he was happy.,and then he was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and then) and then he give|give[EW:gave] one to him.,and then he give one to him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and then he was flown[?] away.,and then he was flown away,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and then he was gone.,and then he was gone,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and (then he) then he was : sad.,and then he was sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and then he saw another person.,and then he saw another person,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and he) (and) and the doctor said I have one [EU]?,and the doctor said I have one,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and the doctor said no.,and the doctor said no,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and then) and then he got[EW:had] two more left.,and then he got two more left,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and) (and) and he want|want[EW:wanted] one.,and he want one,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,so he gived|give[EW:gave] one (to) to the bunny one to the other.,so he gived one to the bunny one to the other,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and) (and) and he have|have[EW:had] the same one.,and he have the same one,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and (uh) he was happy.,and he was happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the elephant and : the giraffe play with the ball.,the elephant and the giraffe play with the ball,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the ball bounce/3s into the water.,the ball bounces into the water,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the giraffe (comes a) go/3s and get/3s it.,the giraffe goes and gets it,0 0 3 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the elephant : (pick) pick/3s it up (for the) for the giraffe.,the elephant picks it up for the giraffe,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,: (uh) : they play[-:] : with the ball.,they play with the ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the elephant and them (was uh) : were play/ing [EU].,the elephant and them were playing,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the elephant want/ed to play tag[-:].,the elephant wanted to play tag,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the giraffe chase/3s the elephant.,the giraffe chases the elephant,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,and the elephant : fall/3s.,and the elephant falls,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the elephant get/3s a booboo.,the elephant gets a booboo,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the elephant : need/3s : a bandaid.,the elephant needs a bandaid,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,it hurt/3s.,it hurts,0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,it feels better.,it feels better,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the lifeguard get/3s mad.,the lifeguard gets mad,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the giraffe play/3s with his : (uh) plane.,the giraffe plays with his plane,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,it was fly/ing.,it was flying,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the elephant (was) : snatch/ed [EU].,the elephant snatched,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,(an) (an) and she play/ed with it.,and she played with it,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,(she) it fell in the water.,it fell in the water,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the giraffe is mad at the elephant.,the giraffe is mad at the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the lifeguard (uh) : try/3s : to get it.,the lifeguard tries to get it,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the elephant ask/ed if he can get it.,the elephant asked if he can get it,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,he reach/3s for it.,he reaches for it,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,like[!] he can not get it.,like he can not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,they get a net.,they get a net,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,(s) they scoop it out.,they scoop it out,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,and they give it back to the giraffe.,and they give it back to the giraffe,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,: let us play with it!,let us play with it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,Bunny and Dog make a castle.,Bunny and Dog make a castle,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the dog build/3s it.,the dog builds it,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the rabbit pour/3s sand on the castle.,the rabbit pours sand on the castle,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,(it) it is broken.,it is broken,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the dog is cry/ing.,the dog is crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,dog meet/3s the rabbit.,dog meets the rabbit,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,they eat.,they eat,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the rabbit get/3s a tummyache.,the rabbit gets a tummyache,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,he feel/3s sick.,he feels sick,0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the dog call/3s (for hel) the doctor.,the dog calls the doctor,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the dog : ask|ask[EW:asks] : to help him.,the dog ask to help him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,and : the doctor : (uh) (what was it : uh) : check/ed (it) his throat.,and the doctor checked his throat,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the doctor take/3s him : away.,the doctor takes him away,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the rabbit come/3s and meet/3s the dog because he has a balloon.,the rabbit comes and meets the dog because he has a balloon,0 0 3 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the rabbit want/3s to hold the balloon.,the rabbit wants to hold the balloon,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,he hold/3s it.,he holds it,0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,he let/3s it go.,he lets it go,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the dog is mad.,the dog is mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,*the balloon man come/3s [EU].,balloon man comes,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the rabbit want/3s a balloon.,the rabbit wants a balloon,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,(um) : the rabbit : has no money.,the rabbit has no money,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,so he can not have a balloon.,so he can not have a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,he walk/3s away : to the doctor.,he walks away to the doctor,0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the doctor give/3s : the balloon man money.,the doctor gives the balloon man money,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,they have fun with the balloon/s.,they have fun with the balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,the elephant was bounce/ing a ball.,the elephant was bouncing a ball,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,: the ball fell in the water.,the ball fell in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,: I do not know what that thing is [~_child_is_whispering] [+_bch].,I do not know what that thing is,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,: some kind of thing was come/ing after it.,some kind of thing was coming after it,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,he gived[EW:gave] it back to the elephant.,he gived it back to the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,the elephant was (hug/ing) hug/ing it.,the elephant was hugging it,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,the girl want/ed to (um) jump on this thing : that go/3s in the water.,the girl wanted to jump on this thing that goes in the water,0 0 4 0 0 0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,she was run/ing.,she was running,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,: and she slip/ed.,and she slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,she had a[EW:an] owie on her knee.,she had a owie on her knee,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,(uh) : that guy (um : come/3s in the) : came and (see her) saw her.,that guy came and saw her,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,: she was cry/ing.,she was crying,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,and that guy was go/ing to[:_gonna] put a bandaid on it.,and that guy was going to put a bandaid on it,0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,she was sit/ing on the bench.,she was sitting on the bench,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,: the guy said (the) : just look at the sign.,the guy said just look at the sign,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,: the[-:] : guy had a[EW:an] airplane.,the guy had a airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,: he was fly/ing it.,he was flying it,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,: the girl took it.,the girl took it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,: she was drive/ing it.,she was driving it,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,then (the) : the airplane fell.,then the airplane fell,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,the man got mad : at the elephant.,the man got mad at the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,the coach saw (um) : the elephant *was sad [EU].,the coach saw the elephant sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,(um) : the girl was : (do/ing something) talk/ing to the coach.,the girl was talking to the coach,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,the coach was try/ing to get it.,the coach was trying to get it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,the : guy was cry/ing.,the guy was crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,some kind of woman came and (uh) help/ed them.,some kind of woman came and helped them,0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,she caught : it.,she caught it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,she gived|give[EW:gave] it back to him.,she gived it back to him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,and then the boy was hug/ing it.,and then the boy was hugging it,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,there was a girl that (uh) was build/ing a castle.,there was a girl that was building a castle,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,and the (um) boy want/ed to help.,and the boy wanted to help,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,: (um) he was (uh) do/ing : the shovel/ing.,he was doing the shoveling,0 0 6 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,and the (um) girl was (uhm build/ing it) : do/ing the rest.,and the girl was doing the rest,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,: (uh) : the boy spill/ed the sand on[!] the castle.,the boy spilled the sand on the castle,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,the (ss) castle (sss) sunk.,the castle sunk,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,the girl was : cry/ing.,the girl was crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,and the boy was : sad.,and the boy was sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,(there[-:] was a guy) there was another guy come/ing by with a basket.,there was another guy coming by with a basket,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,and the other guy had a basket too.,and the other guy had a basket too,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,they had a picnic.,they had a picnic,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,the guy ate fast.,the guy ate fast,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,and then his tummy was (like) hurt/ing.,and then his tummy was hurting,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,(he was um) his tummy (was hurt/ing) get[EW:got] hurt [~_get_hurt_was__whispered_very_quietly].,his tummy get hurt,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,(uh) (there was) (uh) the guy was (um) find/ing (a) a doctor.,the guy was finding a doctor,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,and there was a doctor come/ing.,and there was a doctor coming,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,he got her and : bringed|bring[EW:brought] her over to him.,he got her and bringed her over to him,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,and[-:] the girl was sit/ing on the blanket and fix/ing him.,and the girl was sitting on the blanket and fixing him,0 0 0 0 6 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,and what?,and what,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,do/ing something to him [+_bch].,doing something to him,6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,: and then : she (uh) : brought him to the doctor.,and then she brought him to the doctor,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,there was a girl with a balloon on her (uh) : thingy.,there was a girl with a balloon on her thingy,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,the boy took it off.,the boy took it off,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,the balloon : he : untie/ed it.,the balloon he untied it,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,it flew up.,it flew up,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,the girl was mad.,the girl was mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,: the boy found a : guy with a balloon.,the boy found a guy with a balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,he pick/ed a balloon.,he picked a balloon,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,: five buck/s it said.,five bucks it said,0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,: he had no (buck/s) five buck/s [EU].,he had no five bucks,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,: (there was a doctor) there was a nurse.,there was a nurse,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,and : the guy will not give (it to hh) (um) the balloon to him.,and the guy will not give the balloon to him,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,: he said the guy did not give it to him.,he said the guy did not give it to him,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,he gived|give[EW:gave] some money : (for him) to him.,he gived some money to him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,they both got one.,they both got one,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,the giraffe was go/ing to[:_gonna] take a swim with the elephant.,the giraffe was going to take a swim with the elephant,0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,(um) the elephant drop/ed the ball.,the elephant dropped the ball,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,the giraffe (sw) is swim/ing to get it.,the giraffe is swimming to get it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,the giraffe : give/3s the ball to the elephant.,the giraffe gives the ball to the elephant,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,(the elephant t) the elephant get/3s the ball.,the elephant gets the ball,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,the giraffe and the elephant are go/ing to [~_gonna] take a swim again.,the giraffe and the elephant are going to take a swim again,0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,the elephant is (run/ing) : (well not) about to run.,the elephant is about to run,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,she is run/ing.,she is running,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,she hurt/3s her knee.,she hurts her knee,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,the lifeguard come/3s.,the lifeguard comes,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,(she puts a ban) the lifeguard put/3s a bandaid on her knee.,the lifeguard puts a bandaid on her knee,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,and then : (she is o) she is okay.,and then she is okay,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,the lifeguard is tell/ing her not to run in the pool again.,the lifeguard is telling her not to run in the pool again,0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,the giraffe and the elephant (are g) (want to take a swi) [~_well] they are not take/ing a swim.,the giraffe and the elephant they are not taking a swim,0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,but they are by the pool with an airplane.,but they are by the pool with an airplane,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,(um) the giraffe is play/ing with the airplane.,the giraffe is playing with the airplane,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,the elephant take/3s it.,the elephant takes it,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,she throw/3s it in the pool.,she throws it in the pool,0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,or it drop/3s.,or it drops,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,it is : sink/ing.,it is sinking,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,and the giraffe is mad.,and the giraffe is mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,the lifeguard : is talk/ing to them.,the lifeguard is talking to them,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,the lifeguard is talk/ing to them again.,the lifeguard is talking to them again,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,the lifeguard try/3s to get it.,the lifeguard tries to get it,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,(they are talk/ing) [~_I_mean] they are sad.,they are sad,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,(a women ca) a women (came) come/3s with a net.,a women comes with a net,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,she pick/3s it up with the net.,she picks it up with the net,0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,the giraffe (hug/3s it) [~_I_mean_yeah] now he hug/3s it.,the giraffe now he hugs it,0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,she is give/ing it to her.,she is giving it to her,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,and now (h) he hug/3s it.,and now he hugs it,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,the rabbit and it look/s like : a dog [EU].,the rabbit and it looks like a dog,0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,they are play/ing in the sandbox.,they are playing in the sandbox,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,and they made a castle.,and they made a castle,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,the rabbit is (make/ing) dig/ing out of the bucket.,the rabbit is digging out of the bucket,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,the rabbit is pour/ing it on the castle.,the rabbit is pouring it on the castle,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,the castle has a big pile of sand on it.,the castle has a big pile of sand on it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,(he try/3s to make) she try/3s to make it again.,she tries to make it again,0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,(they are go/ing for a picnic again) [~_well] they are go/ing for a picnic [~_though].,they are going for a picnic,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,(they are eat/ing) [~_I_mean] the rabbit is eat/ing all the food.,the rabbit is eating all the food,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,(he) he has a stomachache.,he has a stomachache,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,he is get/ing dizzy.,he is getting dizzy,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,he run/3s for his mom.,he runs for his mom,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,she pull/3s her.,she pulls her,0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,he is crazy : still[~!_laughing].,he is crazy still,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,then he is better.,then he is better,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,and his mom take/3s him home.,and his mom takes him home,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,the dog is pull/ing : a wagon : with a balloon on it.,the dog is pulling a wagon with a balloon on it,0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,(the rab) (the rabbit look/ed) the rabbit look/ed at the balloon.,the rabbit looked at the balloon,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,he (is) try/3s to tie it off.,he tries to tie it off,0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,it go/3s up in the air.,it goes up in the air,0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,it is totally up now.,it is totally up now,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,then they see a rabbit with lot/s of balloon/s.,then they see a rabbit with lots of balloons,0 0 0 0 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,they ask for one.,they ask for one,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,it is five cent/s.,it is five cents,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,they are : sad[~!_laughing] that they did not get one.,they are sad that they did not get one,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,then : the rabbit/z mom is over there.,then the rabbit's mom is over there,0 0 2 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,(she) he ask/3s [~_pronounced_'askses'] her (for a balloon) : for money for a balloon.,he asks her for money for a balloon,0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,she give/3s : the balloon person money.,she gives the balloon person money,0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,(they both) they both get a balloon.,they both get a balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,they were play/ing[-:] : with their beach ball the elephant and the giraffe.,they were playing with their beach ball the elephant and the giraffe,0 0 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,(then) but then : the ball : (bump) : jump/ed into the[-:] water.,but then the ball jumped into the water,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,the giraffe went and swam and got it.,the giraffe went and swam and got it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and (then i) then the giraffe gave it to the elephant.,and then the giraffe gave it to the elephant,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then : the elephant was so proud.,and then the elephant was so proud,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,first : they[-:] were look/ing at the : water : the giraffe and the elephant.,first they were looking at the water the giraffe and the elephant,0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,(sh) the elephant : ask/ed (if) if she could go in[!] the water.,the elephant asked if she could go in the water,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,then she ran[-:][!].,then she ran,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,but then she slip/ed and got a really bad cut.,but then she slipped and got a really bad cut,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then : she start/ed cry/ing.,and then she started crying,0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then the coach came along.,and then the coach came along,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and the elephant was feel/ing very sad.,and the elephant was feeling very sad,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,but then (when the) : when the coach was go/ing to [~_gonna] put a bandaid on it : the elephant cry/ed and cry/ed even more.,but then when the coach was going to put a bandaid on it the elephant cried and cried even more,0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 4 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,but then : (when) : when she got onto : one[-:] of the bench/s[!] it did not[?] [~_microphone_fell_off] [+/]^,but then when she got onto one of the benches it did not,0 0 0 0 0 0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,when she got onto one of the bench/s it did not?,when she got onto one of the benches it did not,0 0 0 0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,"[+,] (it did not) : it did not feel : any more hurt[!] any more [EU].",it did not feel any more hurt any more,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,(but then) : (but then the k) : (the) but then the elephant was try/ing to take it off.,but then the elephant was trying to take it off,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and (then the eleph) then the coach : said do not take it off.,and then the coach said do not take it off,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,one day (there was) : the elephant and the giraffe : are play/ing with (the) : the giraffe/z : airplane.,one day the elephant and the giraffe are playing with the giraffe's airplane,0 0 0 0 0 0 0 0 6 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and[-:] : the elephant look/ed at the airplane : when the giraffe was play/ing with it.,and the elephant looked at the airplane when the giraffe was playing with it,0 0 0 4 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then : the elephant took it away and play/ed with it.,and then the elephant took it away and played with it,0 0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then[-:] : the giraffe scream/ed.,and then the giraffe screamed,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,but then she threw it in the water[-:] .,but then she threw it in the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then the giraffe was very angry at her.,and then the giraffe was very angry at her,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and it sinks[?].,and it sinks,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then : the coach came and saw.,and then the coach came and saw,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and the elephant was very sad (that) : that she did that.,and the elephant was very sad that she did that,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and the elephant : coach was try/ing to get it out.,and the elephant coach was trying to get it out,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then : (the) : the giraffe cry/ed and cry/ed.,and then the giraffe cried and cried,0 0 0 0 4 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then a momma coach thing came along.,and then a momma coach thing came along,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and she had a net.,and she had a net,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and she pull/ed it out.,and she pulled it out,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then she gave it to the (gira) giraffe.,and then she gave it to the giraffe,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then the giraffe was (ha) happy to play with it again.,and then the giraffe was happy to play with it again,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,the doggy and the (uh) : rabbit were make/ing a sandcastle.,the doggy and the rabbit were making a sandcastle,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and they just finish/ed it.,and they just finished it,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and they were just do/ing a little bit of decoration/s.,and they were just doing a little bit of decorations,0 0 0 0 6 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then the rabbit put lot/s of sand on it.,and then the rabbit put lots of sand on it,0 0 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then the doggy : grew : sad.,and then the doggy grew sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then : (sh) she look/ed at it again.,and then she looked at it again,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then she cry/ed because it was gone.,and then she cried because it was gone,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,one day the puppy : and the rabbit were just walk/ing along through a : dusty hill.,one day the puppy and the rabbit were just walking along through a dusty hill,0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and [+/]^,and,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,through a what?,through a what,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,a dusty hill [+_bch].,a dusty hill,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then (they) : they just pack/ed : some food.,and then they just packed some food,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then : the rabbit began to eat and got dizzy : and then got dizzier : and ate all his candy and ate all his food.,and then the rabbit began to eat and got dizzy and then got dizzier and ate all his candy and ate all his food,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then : he fell down.,and then he fell down,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,(and he) and then the puppy : ran as fast as she could (to ca) : to get the doctor.,and then the puppy ran as fast as she could to get the doctor,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,(sh) she pull/ed[!] the doctor/z coat as hard[!] as she could (to get him) to get : her over there.,she pulled the doctor's coat as hard as she could to get her over there,0 4 0 2 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then she look/ed at the bunny.,and then she looked at the bunny,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,(and) : (and) : and (she) : she felt : his forehead.,and she felt his forehead,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then : (she) : (he got to s) : he got to go get a sticker.,and then he got to go get a sticker,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and he got to go home.,and he got to go home,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,one day the bunny found the doggy again have/ing her wagon and a balloon : right tie/ed to it [EU].,one day the bunny found the doggy again having her wagon and a balloon right tied to it,0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,he want/ed to hold the balloon.,he wanted to hold the balloon,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,then he untie/ed it.,then he untied it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,(and it) : but then : he lost the balloon.,but then he lost the balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,(the) the puppy got very[-:][!] angry.,the puppy got very angry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then (they saw) the bunny : saw (a bunny) : another bunny hold/ing lot/s of balloon/s for sale.,and then the bunny saw another bunny holding lots of balloons for sale,0 0 0 0 0 0 0 6 1 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,he said can I have one of those please?,he said can I have one of those please,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,five cent/s he said.,five cents he said,0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,but then : the puppy and the rabbit were very sad.,but then the puppy and the rabbit were very sad,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,so then the rabbit : (go) went (to) : to get : the doctor : for a balloon.,so then the rabbit went to get the doctor for a balloon,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,the doctor paid for a balloon : for both[!] of them.,the doctor paid for a balloon for both of them,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then they had their both balloon/s.,and then they had their both balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,once upon a time[-:] there was a donkey and a[EW:an] : elephant.,once upon a time there was a donkey and a elephant,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,they had a new ball and play/ed on the beach.,they had a new ball and played on the beach,0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,the ball fell in the water.,the ball fell in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,the[-:] donkey went to get it.,the donkey went to get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,it was : elephant/z (b) : ball.,it was elephant's ball,0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,(s) and donkey catched|catch[EW:caught] it.,and donkey catched it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,elephant said thank you.,elephant said thank you,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,once upon a time there was[-:] a donkey and a[EW:an] elephant (that) : that play/ed[-:] : on : the beach.,once upon a time there was a donkey and a elephant that played on the beach,0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,and there was no[-:][!] run/ing.,and there was no running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,elephant : try/ed to jump into the pool.,elephant tried to jump into the pool,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,but she could not.,but she could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,she ran[-:].,she ran,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,but that was against the law.,but that was against the law,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,she fell[-:] down (and) : and scrape/ed her knee.,she fell down and scraped her knee,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,donkey came run/ing and call/ed : her husband.,donkey came running and called her husband,0 0 6 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,she cry/ed and cry/ed and cry/ed.,she cried and cried and cried,0 4 0 4 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,good thing : her husband gave her a bandaid.,good thing her husband gave her a bandaid,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,she sat on the bench and smile/ed[-:].,she sat on the bench and smiled,0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,once upon a time there was a donkey and an elephant.,once upon a time there was a donkey and an elephant,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,the donkey had an airplane that was attach/ed to a cord.,the donkey had an airplane that was attached to a cord,0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,elephant took it right out of his hand/s.,elephant took it right out of his hands,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,elephant drop/ed it in the water.,elephant dropped it in the water,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,(and that was) : and that[-:] was all [+_bch].,and that was all,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,donkey was mad.,donkey was mad,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,so he : grinch/ed his face at her.,so he grinched his face at her,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,good thing elephant[!] call/ed her friend.,good thing elephant called her friend,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,elephant cry/ed can you please get the airplane.,elephant cried can you please get the airplane,0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,I cannot get it.,I cannot get it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,he try/ed.,he tried,0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,he stretch/ed hisself[EW:himself].,he stretched hisself,0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,(and) : and he try/ed[-:] to get it.,and he tried to get it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,he could not get it.,he could not get it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,so donkey cry/ed.,so donkey cried,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,good thing another[!] girl came along with a net and caught it.,good thing another girl came along with a net and caught it,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,(she) : she caught it from the water.,she caught it from the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,and it was dry.,and it was dry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,he never bring|bring[EW:brought] his airplane back to the beach.,he never bring his airplane back to the beach,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,thank you.,thank you,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,once upon a time there was : a bunny and a dog.,once upon a time there was a bunny and a dog,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,they play/ed in the sandbox all day.,they played in the sandbox all day,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,they made a sandcastle.,they made a sandcastle,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,and then : they made another.,and then they made another,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,the sandcastle broke.,the sandcastle broke,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,they cry/ed.,they cried,0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,once upon a time there was (a bunny) : [~_I_mean] a bunny and a dog.,once upon a time there was a bunny and a dog,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,they were go/ing on a picnic through the wood/s.,they were going on a picnic through the woods,0 0 6 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,they laid out their blanket : and sat down : got their food out : and took a bite.,they laid out their blanket and sat down got their food out and took a bite,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,rabbit was full[-:].,rabbit was full,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,doggy was not[-:].,doggy was not,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,rabbit got sick.,rabbit got sick,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,and dog did not.,and dog did not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,(rabbit/z mom) : rabbit/z doctor[-:] was there stand/ing.,rabbit's doctor was there standing,2 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,dog went to get some help.,dog went to get some help,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,(the rabbit) the doctor rabbit would not come[!].,the doctor rabbit would not come,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,so : dog pull/ed her.,so dog pulled her,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,uhoh this : bunny is very sick.,uhoh this bunny is very sick,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,we will take him to the doctor/z office.,we will take him to the doctor's office,0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,once upon a time there was a rabbit and a dog : who went for a party that had a balloon.,once upon a time there was a rabbit and a dog who went for a party that had a balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,they tie/ed the balloon onto their red wagon.,they tied the balloon onto their red wagon,0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,later it fell off.,later it fell off,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,so they tie/ed it on again.,so they tied it on again,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,then the balloon fell off[!] and went up into the air.,then the balloon fell off and went up into the air,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,they shout/ed help.,they shouted help,0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,the balloon was way[!] up in the sky.,the balloon was way up in the sky,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,and dog was mad.,and dog was mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,good thing they saw a balloon man.,good thing they saw a balloon man,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,the rabbit said can I please have : a balloon?,the rabbit said can I please have a balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,he said : five dollar/s.,he said five dollars,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,and he had none.,and he had none,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,(so the r) so the (b) balloon man said I guess you can not buy one.,so the balloon man said I guess you can not buy one,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,the doctor : was : over on the street/s : look/ing around to see for a treat [EU].,the doctor was over on the streets looking around to see for a treat,0 0 0 0 0 0 1 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,rabbit said he will not give me[:_gimme] a balloon.,rabbit said he will not give me a balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,so : the doctor gave him some money.,so the doctor gave him some money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,and they got two balloon/s.,and they got two balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,they said hurray[-:]!,they said hurray,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,there is a giraffe and an elephant.,there is a giraffe and an elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,they are play/ing by a pool.,they are playing by a pool,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so the elephant is sort of[:_sorta] tease/ing the giraffe.,and so the elephant is sort of teasing the giraffe,0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so she is play/ing with the ball.,and so she is playing with the ball,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so she throw/3s the ball in the water.,and so she throws the ball in the water,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and the (gir) giraffe is try/ing to get it.,and the giraffe is trying to get it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,(so) and it is in the deep end.,and it is in the deep end,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and : (the um) the elephant is sort of[:_sorta] : like [~__gestures] she is cover/ing her eye/s.,and the elephant is sort of like she is covering her eyes,0 0 0 0 0 0 0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so the giraffe : is get/ing the ball.,and so the giraffe is getting the ball,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,but water is squirt/ing out of his ear/s.,but water is squirting out of his ears,0 0 0 6 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,(and then) so : (um) the elephant got the ball.,so the elephant got the ball,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and the giraffe is still in the water.,and the giraffe is still in the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so : the elephant hand/3s the ball to the giraffe.,and so the elephant hands the ball to the giraffe,0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then : the giraffe is all wet.,and then the giraffe is all wet,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and : now the elephant has the ball.,and now the elephant has the ball,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and she is play/ing with it.,and she is playing with it,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,there is the giraffe and elephant again.,there is the giraffe and elephant again,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so they want to[:_wanna] go swim/ing together.,and so they want to go swimming together,0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then they saw a sign that says no run/ing.,and then they saw a sign that says no running,0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,but the elephant is run/ing anyways into the pool.,but the elephant is running anyways into the pool,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so : the elephant slip/3s.,and so the elephant slips,0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and[-:] she fall/3s.,and she falls,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and (then) now the giraffe is run/ing to save her.,and now the giraffe is running to save her,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then she got a bruise by the swimming pool.,and then she got a bruise by the swimming pool,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,so the giraffe is still run/ing.,so the giraffe is still running,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so the giraffe catch/3s up to her.,and so the giraffe catches up to her,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then the lifeguard come/3s.,and then the lifeguard comes,0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so (um) she is cry/ing.,and so she is crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and[-:] the lifeguard get/3s her a bandaid.,and the lifeguard gets her a bandaid,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and the giraffe is still by her.,and the giraffe is still by her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then so the lifeguard is ask/ing her how did she fall.,and then so the lifeguard is asking her how did she fall,0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then[-:] she is sort of surprise/ed that he ask/ed that question.,and then she is sort of surprised that he asked that question,0 0 0 0 0 0 4 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then the giraffe is[-:] still by her.,and then the giraffe is still by her,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then she tell/3s him : what she was do/ing.,and then she tells him what she was doing,0 0 0 3 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then : (um) the lifeguard say/3s look at the sign.,and then the lifeguard says look at the sign,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,it says no run/ing.,it says no running,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,(there is) there is the giraffe and the elephant again.,there is the giraffe and the elephant again,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and they are by the pool.,and they are by the pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,(and then) so[-:] the giraffe got his plane.,so the giraffe got his plane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so he is play/ing with it.,and so he is playing with it,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then (the) the elephant is get/ing dizzy because : the giraffe is do/ing loop/s with the plane.,and then the elephant is getting dizzy because the giraffe is doing loops with the plane,0 0 0 0 0 6 0 0 0 0 0 6 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,(and then) so the elephant like/3s it so much : (she) she just took it out of the giraffe/z hand.,so the elephant likes it so much she just took it out of the giraffe's hand,0 0 0 3 0 0 0 0 0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and she was play/ing with it.,and she was playing with it,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and (then it) then it slip/ed out of her finger/s.,and then it slipped out of her fingers,0 0 0 4 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and it : went in the pool.,and it went in the pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so now it is sink/ing.,and so now it is sinking,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and : the giraffe is mad at her.,and the giraffe is mad at her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then she like [~_makes_sound_'ahhhhhh'].,and then she like,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and (um) : the lifeguard come/3s again.,and the lifeguard comes again,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then : he look/3s in the pool.,and then he looks in the pool,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and he see/3s the plane.,and he sees the plane,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then the elephant is try/ing to tell the lifeguard : I did not do it on purpose.,and then the elephant is trying to tell the lifeguard I did not do it on purpose,0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,I did not do it on purpose.,I did not do it on purpose,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,(and then) so the lifeguard is reach/ing over the pool to try to get it.,so the lifeguard is reaching over the pool to try to get it,0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,(and then) so[-:] the giraffe is really really really sad.,so the giraffe is really really really sad,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then the lifeguard did not reach it.,and then the lifeguard did not reach it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and (the) the elephant is really sad that she did that.,and the elephant is really sad that she did that,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,(and then) so[-:] (s) another elephant come/3s up with a net.,so another elephant comes up with a net,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then (all of the three um) (the two elephant/s) the lifeguard the elephant and the giraffe : are surprise/ed that somebody knew that the plane was sink/ing and : that they got a net.,and then the lifeguard the elephant and the giraffe are surprised that somebody knew that the plane was sinking and that they got a net,0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so : the elephant get/3s the plane out of the water.,and so the elephant gets the plane out of the water,0 0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and the giraffe is really happy.,and the giraffe is really happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then so he get/3s to play with it again.,and then so he gets to play with it again,0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then he is really happy.,and then he is really happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,so now : like she is being careful to play with the plane.,so now like she is being careful to play with the plane,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,(um) there is[EW:are]: two bunny/s (in) in the sandbox.,there is two bunnies in the sandbox,0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and [~_well] one bunny come/3s along and ask/3s if he can play in the sandbox.,and one bunny comes along and asks if he can play in the sandbox,0 0 0 3 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so : they are play/ing together.,and so they are playing together,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and they are build/ing a sandcastle.,and they are building a sandcastle,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so : one of the bunny/s pour/3s : some sand on the castle.,and so one of the bunnies pours some sand on the castle,0 0 0 0 0 1 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then it all melt/3s.,and then it all melts,0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,(and then) so they start build/ing it again.,so they start building it again,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,(um) it is the same bunny and the other bunny again.,it is the same bunny and the other bunny again,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so they are go/ing on a picnic.,and so they are going on a picnic,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so one of the bunny/s are[EW:is] eat/ing everything up.,and so one of the bunnies are eating everything up,0 0 0 0 0 1 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and he is get/ing sick.,and he is getting sick,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,(um) and so : then he feel/3s like he is really hot.,and so then he feels like he is really hot,0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then the other bunny is still eat/ing.,and then the other bunny is still eating,0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so : the bunny is get/ing really dizzy.,and so the bunny is getting really dizzy,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and he is really hot : and full.,and he is really hot and full,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then so : (um) one of the bunny/s find/*3s like a doctor.,and then so one of the bunnies find like a doctor,0 0 0 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,they call a doctor.,they call a doctor,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,so : a doctor come/3s.,so a doctor comes,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so : (um) she see/3s him lie/ing in the sand.,and so she sees him lying in the sand,0 0 0 3 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then so the bunny is pull/ing : the doctor/z arm to come quicker.,and then so the bunny is pulling the doctor's arm to come quicker,0 0 0 0 0 0 6 0 2 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then so : the doctor is like point/ing to something.,and then so the doctor is like pointing to something,0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and : the bunny sort of has to follow it.,and the bunny sort of has to follow it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so then the doctor sort of [~_sorta] become/3s friend/s with the patient.,and so then the doctor sort of becomes friends with the patient,0 0 0 0 0 0 0 3 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,(and then) so they walk along the sidewalk.,so they walk along the sidewalk,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,(um) it is the same bunny/s again [EU].,it is the same bunnies again,0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,so one of the bunny/s have|have[EW:has] a wagon and a balloon attach/ed to it.,so one of the bunnies have a wagon and a balloon attached to it,0 0 0 0 1 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so[-:] the other bunny sort of [~_sorta] want/3s the balloon.,and so the other bunny sort of wants the balloon,0 0 0 0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,(but) and the other bunny is sort of [~_sorta] shock/ed.,and the other bunny is sort of shocked,0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,like you can not have it.,like you can not have it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so the bunny untie/3s the string : (te) so he can have it.,and so the bunny unties the string so he can have it,0 0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then the other bunny is sort of [~_sorta] mad.,and then the other bunny is sort of mad,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,(and then) so (he um) the bunny who has the balloon : it slip/3s out of his finger/s.,so the bunny who has the balloon it slips out of his fingers,0 0 0 0 0 0 0 0 3 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then it go/3s up in the air.,and then it goes up in the air,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and they can not catch it.,and they can not catch it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,so it go/3s higher and higher.,so it goes higher and higher,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and the bunny get/3s madder and madder.,and the bunny gets madder and madder,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then so they see another : balloon guy that has some more balloon/s.,and then so they see another balloon guy that has some more balloons,0 0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then so[-:] (um) they are get/ing a new balloon.,and then so they are getting a new balloon,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and : the balloon/s are five cent/s.,and the balloons are five cents,0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,but the bunny do/3s not have five cent/s.,but the bunny does not have five cents,0 0 0 3 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,so they will not get a balloon.,so they will not get a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then both of them come up again.,and then both of them come up again,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and : (they want a) they want a balloon even though they do not have five cent/s.,and they want a balloon even though they do not have five cents,0 0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then they see the doctor.,and then they see the doctor,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so : one of the bunny/s are[EW:is] run/ing to see the doctor again.,and so one of the bunnies are running to see the doctor again,0 0 0 0 0 1 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then (so the) so the bunny ask/3s for some money to get a balloon.,and then so the bunny asks for some money to get a balloon,0 0 0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then so : the doctor is give/ing him some money so they can have a balloon/s[EW:balloon].,and then so the doctor is giving him some money so they can have a balloons,0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then so they are both happy[~!_laughing].,and then so they are both happy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and they are play/ing with them.,and they are playing with them,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,two elephant/s want/ed to play ball.,two elephants wanted to play ball,0 1 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and the ball accidentally went : in the water.,and the ball accidentally went in the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and the zebra jump/ed in and : was swim/ing to the ball.,and the zebra jumped in and was swimming to the ball,0 0 0 4 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and they got the ball out.,and they got the ball out,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,(an) : and (uh) : they could play again.,and they could play again,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,(and they s) and they start/ed play/ing.,and they started playing,0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,(the) : the two kid/s want/ed to play : tag.,the two kids wanted to play tag,0 0 1 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,they were run/ing.,they were running,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,they were run/ing : and run/ing.,they were running and running,0 0 6 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,the girl[-:] (um : um :) sweeped|sweep[EW:swept] off (um) her feet (with the) when the water splash/ed up.,the girl sweeped off her feet when the water splashed up,0 0 0 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and she hurt her knee.,and she hurt her knee,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,(and everybody wa) and a : lifeguard was come/ing over.,and a lifeguard was coming over,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and they put a bandaid on her.,and they put a bandaid on her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,(and she) : and she went : to (um the) the bench.,and she went to the bench,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and the lifeguard said stay there for awhile.,and the lifeguard said stay there for awhile,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,the two kid/s had an (airplane) : (a tor) a toy airplane.,the two kids had an a toy airplane,0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and they were play/ing with it.,and they were playing with it,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and the elephant took it.,and the elephant took it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and she drop/ed it into the water.,and she dropped it into the water,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and the : giraffe was mad at her.,and the giraffe was mad at her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and the life (gyar) guard came over.,and the life guard came over,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and : the girl explain/ed to[-:] (uh) the lifeguard what happen/ed.,and the girl explained to the lifeguard what happened,0 0 0 4 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and the lifeguard : try/ed to : get the plane : back.,and the lifeguard tried to get the plane back,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,but he could not.,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,(an) : and so : (the) : another lifeguard came.,and so another lifeguard came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and she : grab/ed it with a net.,and she grabbed it with a net,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and she gave it back to the giraffe.,and she gave it back to the giraffe,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and they were happy again.,and they were happy again,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,[~_okay] : (uh : the two ki) the two bunny/s were make/ing a sandcastle.,the two bunnies were making a sandcastle,0 0 1 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and : they got a sand bucket.,and they got a sand bucket,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,(and they) : and the bunny dump/ed the sand on top of the castle.,and the bunny dumped the sand on top of the castle,0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,(and the s) : and it accidentally (um) : broke (it) the sandcastle.,and it accidentally broke the sandcastle,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and they try/ed to fix it.,and they tried to fix it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,the two bunny/s were[-:] go/ing for a picnic.,the two bunnies were going for a picnic,0 0 1 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,when they got there they (b) got out everything.,when they got there they got out everything,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and : (the) : the boy bunny ate everything.,and the boy bunny ate everything,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,(and he was ver) and he was full.,and he was full,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and the doctor came by.,and the doctor came by,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and the : girl (um) : ask/ed the (do) doctor if he could help the bunny.,and the girl asked the doctor if he could help the bunny,0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,(s) and[-:] the doctor went with her.,and the doctor went with her,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and the doctor : was check/ing him.,and the doctor was checking him,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and[-:] he said that (sh) you should be all right.,and he said that you should be all right,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,the two bunny/s were (um) push/ing a cart (wheel/ing) wheeler.,the two bunnies were pushing a cart wheeler,0 0 1 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and there was a balloon on it.,and there was a balloon on it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,they try/ed to untie the balloon.,they tried to untie the balloon,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and the balloon went up.,and the balloon went up,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and the girl was mad.,and the girl was mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and there were other balloon/s (o) over (wi) with the other bunnny.,and there were other balloons over with the other bunnny,0 0 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and the[-:] boy : want/ed a balloon.,and the boy wanted a balloon,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,: he wanted five balloon/s.,he wanted five balloons,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,but he could not get any.,but he could not get any,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,so the doctor came.,so the doctor came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,(um : the kid : um was) : the bunny was point/ing to the : balloon man.,the bunny was pointing to the balloon man,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and the doctor paid him : cash.,and the doctor paid him cash,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and they both[!] got a balloon.,and they both got a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,one day giraffe and elephant : went play/ing : by the pool [EU].,one day giraffe and elephant went playing by the pool,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,they were play/ing with a ball.,they were playing with a ball,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,but accidentally : giraffe : bounc/ed it into the pool.,but accidentally giraffe bounced it into the pool,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,so : (g) giraffe (a d d) jump/ed into the water and went after the ball.,so giraffe jumped into the water and went after the ball,0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,then he gave it (to) to elephant.,then he gave it to elephant,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,elephant thank/ed him very much.,elephant thanked him very much,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,one day giraffe and elephant went to the swimming pool.,one day giraffe and elephant went to the swimming pool,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: elephant : want/ed to go on the diving board : and start/ed run/ing : across the deck.,elephant wanted to go on the diving board and started running across the deck,0 4 0 0 0 0 0 0 0 4 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,suddenly elephant slip/ed and scrape/ed her knee.,suddenly elephant slipped and scraped her knee,0 0 4 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: the lifeguard came over : (and) : and gave her a bandage.,the lifeguard came over and gave her a bandage,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: elephant went over to a bench to sit down.,elephant went over to a bench to sit down,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: then the lifeguard told her you are not suppose/ed to be run/ing on the deck.,then the lifeguard told her you are not supposed to be running on the deck,0 0 0 0 0 0 0 0 4 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,one day giraffe and elephant went to play by the swimming pool.,one day giraffe and elephant went to play by the swimming pool,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,giraffe brought along his airplane.,giraffe brought along his airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: he made it fly (re) very high up.,he made it fly very high up,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: then : suddenly elephant snatch/ed it from him : then accidentally drop/ed it in the water.,then suddenly elephant snatched it from him then accidentally dropped it in the water,0 0 0 4 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: giraffe was very angry at elephant.,giraffe was very angry at elephant,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: then the lifeguard came over.,then the lifeguard came over,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: they told (him) him what had happen/ed.,they told him what had happened,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,he try/ed get/ing it.,he tried getting it,0 4 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,but he could not reach.,but he could not reach,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: (th) suddenly giraffe start/ed cry/ing.,suddenly giraffe started crying,0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: then someone else came over : with a net.,then someone else came over with a net,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: and then she got it out.,and then she got it out,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: she gave it to a : giraffe : who was very happy after that.,she gave it to a giraffe who was very happy after that,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,one day two animals were play/ing in (th) a sandbox.,one day two animals were playing in a sandbox,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: one was a rabbit.,one was a rabbit,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,and one was a dog.,and one was a dog,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,the dog had built a sandcastle.,the dog had built a sandcastle,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,the rabbit start/ed help/ing out.,the rabbit started helping out,0 0 4 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,(but the ra) but : he dump/ed (the bucket of sand on : th) a bucket of sand on the castle.,but he dumped a bucket of sand on the castle,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,and there it stood : in : a heap of sand.,and there it stood in a heap of sand,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: suddenly the dog start/ed cry/ing.,suddenly the dog started crying,0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: wi : and : guess that's it [+_bch].,wi and guess that's it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,one day : rabbit and dog went for a picnic.,one day rabbit and dog went for a picnic,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: (they brought) rabbit brought a lot of food.,rabbit brought a lot of food,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,but dog only brought : a sandwich.,but dog only brought a sandwich,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,then rabbit ate all his food.,then rabbit ate all his food,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,and dog just ate his sandwich and juice.,and dog just ate his sandwich and juice,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,suddenly rabbit start/ed feel/ing dizzy : and then faint/ed.,suddenly rabbit started feeling dizzy and then fainted,0 0 4 6 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,(ss) then[-:] dog went for a doctor.,then dog went for a doctor,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,(the dog) the doctor came over : and told the rabbit not to eat as much.,the doctor came over and told the rabbit not to eat as much,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: then the rabbit start/ed (walk) go/ing home.,then the rabbit started going home,0 0 0 4 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,one day : rabbit and dog went for a walk.,one day rabbit and dog went for a walk,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,dog had a balloon : tie/ed to his wagon.,dog had a balloon tied to his wagon,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: rabbit suddenly start/ed admire/ing the balloon : and then tie/ed it from the wagon.,rabbit suddenly started admiring the balloon and then tied it from the wagon,0 0 4 6 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,then suddenly he accidentally let go.,then suddenly he accidentally let go,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,dog was very angry at rabbit.,dog was very angry at rabbit,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: then rabbit went to the balloon man.,then rabbit went to the balloon man,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,he ask/ed him for a balloon.,he asked him for a balloon,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,the balloon man told rabbit that they were five cent/s.,the balloon man told rabbit that they were five cents,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,but rabbit had nothing in his pocket/s.,but rabbit had nothing in his pockets,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: so they could not buy one.,so they could not buy one,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: then rabbit went : to the doctor and ask/ed him if he could (b) buy them a balloon.,then rabbit went to the doctor and asked him if he could buy them a balloon,0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,rabbit point/ed at the balloon man : and show/ed him that his (empties wer) pocket/s were empty.,rabbit pointed at the balloon man and showed him that his pockets were empty,0 4 0 0 0 0 0 4 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: then the doctor bought (both) : both the dog and the rabbit a balloon.,then the doctor bought both the dog and the rabbit a balloon,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,they were very happy.,they were very happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,[~!_sighs] (um) : a giraffe see/3s (um) : a[EW:an] elephant play[EW:playing] with a ball[-:] [~_oh] near a pool.,a giraffe sees a elephant play with a ball near a pool,0 0 3 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,[~_oh] (um : i) it (uh) gets[EW:goes] in the water[-:].,it gets in the water,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(and they bo) and (uh) I think the elephant cry/ed a lot.,and I think the elephant cried a lot,0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,so that xxx : back.,so that back,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,{whispers} want/3s what?,wants what,3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,the ball[-:] to play with it [+_bch].,the ball to play with it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,so the giraffe go/3s there and (swim/3s ah for it) go/3s swim/ing for it.,so the giraffe goes there and goes swimming for it,0 0 0 3 0 0 3 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(um) he give/3s the ball back to[-:] (ooh) the (uh) elephant.,he gives the ball back to the elephant,0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: and : now the elephant and the giraffe are happy.,and now the elephant and the giraffe are happy,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,[~_okay] (a[-:] ) the[-:] elephant[-:] and the giraffe[-:] are (er) by the pool still.,the elephant and the giraffe are by the pool still,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and[-:] there is a no run/ing sign.,and there is a no running sign,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: and : (uh) the elephant (look/3s like) start/3s run/ing.,and the elephant starts running,0 0 0 3 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(ay) but the giraffe stay/3s right where he is.,but the giraffe stays right where he is,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: now (um : uh) it look/3s like the elephant (sli) *is slip/ing [EU].,now it looks like the elephant slipping,0 0 3 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,[~_oh] now she has fallen.,now she has fallen,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and (the uh) sorry [+_bch].,and sorry,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,what?,what,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,now the elephant (uh : i) has hurt herself.,now the elephant has hurt herself,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and : the giraffe (i[-:] ) look/3s like is go/ing for the lifeguard [EU].,and the giraffe looks like is going for the lifeguard,0 0 0 3 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: the lifeguard is come/ing[-:].,the lifeguard is coming,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and the giraffe is by the elephant.,and the giraffe is by the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and the elephant is cry/ing.,and the elephant is crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: the lifeguard put a bandage on[-:] (um) her cut[-:].,the lifeguard put a bandage on her cut,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: now the lifeguard is help/ing her : onto the bench.,now the lifeguard is helping her onto the bench,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and the giraffe look/3s (uh) kind of happy that she is all right.,and the giraffe looks kind of happy that she is all right,0 0 0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: now[-:] (uh) the lifeguard is[-:] tell/ing her not to run and that the sign say/3s no run/ing.,now the lifeguard is telling her not to run and that the sign says no running,0 0 0 0 6 0 0 0 0 0 0 0 0 3 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,[~_okay] the (um[-:]) the giraffe has an airplane.,the the giraffe has an airplane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and the elephant[-:] look/3s like[-:] she want/3s to play with it.,and the elephant looks like she wants to play with it,0 0 0 3 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: the elephant is show/ing (you her er um) : how like to play with it and : that it is fun to play with.,the elephant is showing how like to play with it and that it is fun to play with,0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: (the) (and the elephant) [~_I_mean] then the giraffe let/3s (her) her play with it.,then the giraffe lets her play with it,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(and) and (uh) (she) the (l) elephant look/3s happy.,and the elephant looks happy,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(i) but (i the elephant) [~_I_mean] the giraffe kind of look/3s (uh not too[-:] sure[-:]) kind of (um) unsure about it.,but the giraffe kind of looks kind of unsure about it,0 0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(um) the (elephant[-:]) (ah ah) (bank/3s it um) get/3s it in the water.,the gets it in the water,0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(er) and now it is in the water.,and now it is in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(and they are both kind of : um) (do not know) the giraffe look/3s kind of sad.,the giraffe looks kind of sad,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,now the giraffe is very very mad (uh) at the elephant : and want/3s that plane back.,now the giraffe is very very mad at the elephant and wants that plane back,0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: (the el[-:] ) the elephant (uh) go/3s[-:] to the lifeguard I think to see if he could get the plane out.,the elephant goes to the lifeguard I think to see if he could get the plane out,0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: (she is te[-:] ) the elephant is tell/ing the lifeguard what happen/ed.,the elephant is telling the lifeguard what happened,0 0 0 6 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and the lifeguard kind of look/3s [~_well] surprise/ed : perhaps.,and the lifeguard kind of looks surprised perhaps,0 0 0 0 0 3 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,now the lifeguard (is try/ing to get[-:] the) is try/ing to reach for the airplane.,now the lifeguard is trying to reach for the airplane,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,but he can not reach it.,but he can not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: (the ele) the lifeguard[-:] say/3s he can not do it.,the lifeguard says he can not do it,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,the[-:] elephant look/3s kind of sad.,the elephant looks kind of sad,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(and the) and the (uh) giraffe is cry/ing.,and the giraffe is crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: (um) then[-:] the elephant/z mother come/3s along : (with a net and um) : with a net.,then the elephant's mother comes along with a net,0 0 2 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(um) : then she[-:] is try/ing to get it with the net.,then she is trying to get it with the net,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: now (the)[~!_sighs] (uh) the elephant/z mother give/3s the plane back to (the elephant) [~_I_mean] the[-:] giraffe.,now the elephant's mother gives the plane back to the giraffe,0 0 2 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: now (uh) the elephant and the giraffe are happy.,now the elephant and the giraffe are happy,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(um : uh) (there[-:] are) (er) there is it look/3s like a dog and a bunny in this picture [EU].,there is it looks like a dog and a bunny in this picture,0 0 0 3 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,the dog look/3s like he is make/ing a sandcastle.,the dog looks like he is making a sandcastle,0 0 3 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and the bunny : I think want/3s to help him.,and the bunny I think wants to help him,0 0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and so they are help/ing each other[-:].,and so they are helping each other,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(the dog is help/ing) [~_I_mean] the rabbit is help/ing the dog make the sandcastle.,the rabbit is helping the dog make the sandcastle,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and[-:] now the bunny dump/3s a pile of sand on (and) the sandcastle.,and now the bunny dumps a pile of sand on the sandcastle,0 0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: and[-:] : (um) now the sandcastle is wreck/ed.,and now the sandcastle is wrecked,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: and now the dog is try/ing to rebuild it.,and now the dog is trying to rebuild it,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(um) the dog see/3s the rabbit come/ing down the road.,the dog sees the rabbit coming down the road,0 0 3 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and they are both carry/ing basket/s : with something in them.,and they are both carrying baskets with something in them,0 0 0 0 6 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(um) : (they[-:] ) (um) now they are have/ing a picnic (nic um) with a whole bunch of (look) good look/ing food in it.,now they are having a picnic with a whole bunch of good looking food in it,0 0 0 6 0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,they are eat/ing.,they are eating,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: (um) : it look/3s like the bunny ate a little too much : and (do/3s not look) and look/3s sick.,it looks like the bunny ate a little too much and and looks sick,0 3 0 0 0 0 0 0 0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: (um) the dog is : [~_well] kind of : surprise/ed.,the dog is kind of surprised,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and the bunny still do/3s not look very very well.,and the bunny still does not look very very well,0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(um : there i) it look/3s like a doctor bunny come/ing down.,it looks like a doctor bunny coming down,0 3 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and the dog (r) rushes (eh and) to get him.,and the dog rushes to get him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(um) (he) the dog is pull/ing[-:] the doctor towards the (uh) rabbit : on the[-:] (picnic uh) picnic cloth.,the dog is pulling the doctor towards the rabbit on the picnic cloth,0 0 0 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: (looks like the[-:] um doctor rabbit) (it um is) : (um : kind of is) look/3s like the young rabbit is wake/ing up but still is not look/ing too well.,looks like the young rabbit is waking up but still is not looking too well,3 0 0 0 0 0 6 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and the doctor : rabbit is[-:] check/ing.,and the doctor rabbit is checking,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: (um) now : the doctor rabbit (and the r) and the younger rabbit are walk/ing[-:] : down the road again.,now the doctor rabbit and the younger rabbit are walking down the road again,0 0 0 0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and the dog look/3s happy now.,and the dog looks happy now,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(um) : the dog (um) : (is carry[-:] i[-:]) is pull/ing a wagon with a balloon on it.,the dog is pulling a wagon with a balloon on it,0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and the rabbit see/3s (h) him[-:] come/ing.,and the rabbit sees him coming,0 0 0 3 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and so he run/3s to greet him.,and so he runs to greet him,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(um) the rabbit see/3s the balloon (uh) and : look/3s like he want/3s it.,the rabbit sees the balloon and looks like he wants it,0 0 3 0 0 0 3 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,want/3s what?,wants what,3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,want/3s the balloon [+_bch].,wants the balloon,3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,look/3s like (he) the rabbit is untie/ing the balloon[-:].,looks like the rabbit is untying the balloon,3 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and[-:] : (the balloon um) they lost the balloon.,and they lost the balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,the balloon rose too high.,the balloon rose too high,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and they could not reach it.,and they could not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,now the dog is very mad at the rabbit.,now the dog is very mad at the rabbit,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(and : um then they bo[-:]) and then the rabbit see/3s[-:] (um) : another rabbit sell/ing balloon/s.,and then the rabbit sees another rabbit selling balloons,0 0 0 0 3 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(um) : the rabbit ask|ask[EW:asked] (uh) can I have (uh) : a balloon : please?,the rabbit ask can I have a balloon please,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: (um) you have to pay five cent/s for the balloon.,you have to pay five cents for the balloon,0 0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(uz um) but the balloon/s were five cent/s.,but the balloons were five cents,0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and the rabbit did not have any money.,and the rabbit did not have any money,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: (uh) now the rabbit is sad.,now the rabbit is sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and now the dog has come up to the rabbit and : look/3s sad too.,and now the dog has come up to the rabbit and looks sad too,0 0 0 0 0 0 0 0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: (um) the rabbit see/3s[-:] : I think his dad (and[-:]) : and : I think (go/3s) go/3s to him.,the rabbit sees I think his dad and I think goes to him,0 0 3 0 0 0 0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(he) the rabbit asks if he can have (some money : for) (five cents) (uh um) some money for : balloons.,the rabbit asks if he can have some money for balloons,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: now[-:] his dad is pay/ing[-:] ten cent/s for a balloon for each of them.,now his dad is paying ten cents for a balloon for each of them,0 0 0 0 6 0 1 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,now they are both very very happy.,now they are both very very happy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and so is the dad.,and so is the dad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,there is a giraffe and this (um) elephant.,there is a giraffe and this elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and the elephant is bounce/ing this ball.,and the elephant is bouncing this ball,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and they are right beside a pool.,and they are right beside a pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now the ball land/3s into the pool.,and now the ball lands into the pool,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now the giraffe : jump/3s into the pool.,and now the giraffe jumps into the pool,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and he is swim/ing for it.,and he is swimming for it,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now he is (be) be give/ing it back to the elephant.,and now he is be giving it back to the elephant,0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now : the elephant is kind of smile/ing.,and now the elephant is kind of smiling,0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,(and) : and the[-:] giraffe is just smile/ing at each other.,and the giraffe is just smiling at each other,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,that is the end [+_bch].,that is the end,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,the elephant and the giraffe again.,the elephant and the giraffe again,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and they see this diving board.,and they see this diving board,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now : the elephant is (gonna) point/ing at it.,and now the elephant is pointing at it,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and (it is gonna) and : he is go/ing to[:_gonna] go to run over to it.,and and he is going to go to run over to it,0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now they are both run/ing over.,and now they are both running over,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and elephant is go/ing to [~_gonna] fall.,and elephant is going to fall,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now the elephant fell and : (stub) (made) gots|get[EW:gets] a booboo on her knee.,and now the elephant fell and gots a booboo on her knee,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,now : the lifeguard : is another[!] elephant and come/3s over to see what *is the matter [EU].,now the lifeguard is another elephant and comes over to see what the matter,0 0 0 0 0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now (um : the) (the) the : lifeguard is put/ing a bandaid on the elephant that : (made) got a booboo on her knee.,and now the lifeguard is putting a bandaid on the elephant that got a booboo on her knee,0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and the : giraffe is just kneel/ing there on : his knee/s.,and the giraffe is just kneeling there on his knees,0 0 0 0 0 6 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now : the lifeguard point/3s to the sign no run/ing.,and now the lifeguard points to the sign no running,0 0 0 0 3 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and that is what she was do/ing.,and that is what she was doing,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,(um) a[EW:an] elephant and a giraffe.,a elephant and a giraffe,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and the giraffe has gots|get[EW:got] a[EW:an] airplane in his hand : ready to fly it.,and the giraffe has gots a airplane in his hand ready to fly it,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now : (the) (the) the : (gir) giraffe is go/ing to [~_gonna] throw it.,and now the giraffe is going to throw it,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and the elephant is stare/ing at it.,and the elephant is staring at it,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now the elephant grab/3s it.,and now the elephant grabs it,0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now : she is go/ing to[:_gonna] try to fly it.,and now she is going to try to fly it,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now she throw/3s it into the pool[-:].,and now she throws it into the pool,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now the giraffe is angry at the elephant.,and now the giraffe is angry at the elephant,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now the lifeguard see/3s it just float/ing in there.,and now the lifeguard sees it just floating in there,0 0 0 0 3 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now : (the elephant) the : girl elephant is try/ing to talk : what happen/ed with the airplane to the lifeguard.,and now the girl elephant is trying to talk what happened with the airplane to the lifeguard,0 0 0 0 0 0 6 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,now the lifeguard is try/ing to reach over and get it.,now the lifeguard is trying to reach over and get it,0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and (now the) : now the giraffe (is tear) got[EW:has] tear/s in his eye/s.,and now the giraffe got tears in his eyes,0 0 0 0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,now : there is a girl there : a girl elephant with a net that is go/ing to[:_gonna] grab it.,now there is a girl there a girl elephant with a net that is going to grab it,0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now it is pick/ing it up out of the water.,and now it is picking it up out of the water,0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,now give/3s it : to the giraffe.,now gives it to the giraffe,0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now : the giraffe is hug/ing[!] : (the) his airplane.,and now the giraffe is hugging his airplane,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,(um) a rabbit and his dog : are make/ing a sandcastle.,a rabbit and his dog are making a sandcastle,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now the rabbit gots[EW:has] a shovel and his bucket.,and now the rabbit gots a shovel and his bucket,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now : the rabbit is go/ing to[?] dump the sand from the bucket onto the sandcastle.,and now the rabbit is going to dump the sand from the bucket onto the sandcastle,0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and[-:] the sandcastle is all mush/ed with a big pile of sand on top of it.,and the sandcastle is all mushed with a big pile of sand on top of it,0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now they are try/ing to put it back together.,and now they are trying to put it back together,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and the rabbit is like stand/ing (like) : something like this.,and the rabbit is like standing something like this,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,(um) a rabbit and this : dog are walk/ing down the road with these picnic basket/s.,a rabbit and this dog are walking down the road with these picnic baskets,0 0 0 0 0 0 6 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now they are eat/ing.,and now they are eating,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now the rabbit is stuff/ed.,and now the rabbit is stuffed,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and he is lie/ing down.,and he is lying down,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and the dog is still eat/ing : with a juice box in his hand.,and the dog is still eating with a juice box in his hand,0 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now the juice box is is still in his hand.,and now the juice box is is still in his hand,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now the rabbit is still do/ing what (he) he was do/ing before.,and now the rabbit is still doing what he was doing before,0 0 0 0 0 0 6 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now : he has gots[EW:has] his hand/s on his tummy.,and now he has gots his hands on his tummy,0 0 0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and he is go/ing pluck(*3) : something like that.,and he is going pluck something like that,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now : (the dog) (the) the dog is run/ing to : a doctor that is walk/ing down the road : and pull/3s the doctor to the rabbit.,and now the dog is running to a doctor that is walking down the road and pulls the doctor to the rabbit,0 0 0 0 0 6 0 0 0 0 0 6 0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now : the doctor is fix/ing up the rabbit.,and now the doctor is fixing up the rabbit,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now (the r) the doctor rabbit is take/ing : (the) the little rabbit home : I think.,and now the doctor rabbit is taking the little rabbit home I think,0 0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,this dog has a balloon tie/ed up to his wagon.,this dog has a balloon tied up to his wagon,0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,(and the ra) and the rabbit is walk/ing by.,and the rabbit is walking by,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now the rabbit is go/ing to [~_gonna] grab the balloon and untie it I guess.,and now the rabbit is going to grab the balloon and untie it I guess,0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now[-:] he is untie/ing it.,and now he is untying it,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now the balloon is float/ing up into the air.,and now the balloon is floating up into the air,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now the string is all that they can see.,and now the string is all that they can see,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,"(and the rab) and the dog : shake/ing it/z fist/s : and *is just stand/ing there [~_makes_noise_""errr""] [EU].",and the dog shaking it's fists and just standing there,0 0 0 6 2 1 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and then there is another rabbit over here : that gots[EW:has] some balloons in his hands.,and then there is another rabbit over here that gots some balloons in his hands,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now (the rabbit) : the little rabbit walk/3s up to him and ask/3s could I have a balloon?,and now the little rabbit walks up to him and asks could I have a balloon,0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and they are five cent/s[~!_yawning] each a balloon.,and they are five cents each a balloon,0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now he is pull/ing out his pocket/s.,and now he is pulling out his pockets,0 0 0 0 6 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and there is nothing in it.,and there is nothing in it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now they are both just stand/ing there.,and now they are both just standing there,0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now (the rabbit) the little[!] rabbit walk/3s over to the doctor bunny[!] again : and ask/3s can I have a balloon from him?,and now the little rabbit walks over to the doctor bunny again and asks can I have a balloon from him,0 0 0 0 0 3 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now (he) the (lit) rabbit is pay/ing[-:] : (to) for a balloon : too.,and now the rabbit is paying for a balloon too,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now they both got[EW:have] a balloon.,and now they both got a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and that is the end [+_bch].,and that is the end,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(um : uh) : there was a giraffe and a[EW:an] elephant.,there was a giraffe and a elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(uh an) (and) and the elephant had (a ba) : a ball.,and the elephant had a ball,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and she was bounce/ing it.,and she was bouncing it,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and the giraffe was look/ing at it like whoa that look/3s nice !,and the giraffe was looking at it like whoa that looks nice,0 0 0 0 6 0 0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and) (and he) (and) and (uh) the elephant accidentally put it in the water.,and the elephant accidentally put it in the water,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and) : and the zebra[-:] look/ed (a) at it.,and the zebra looked at it,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and he was like : waa !,and he was like waa,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and the elephant is like : aah my ball.,and the elephant is like aah my ball,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,my ball is gone.,my ball is gone,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,so the zebra (he ca) (he) (he go) : (he) he went to get it.,so the zebra he went to get it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and) and[-:] (the uh) : the : elephant was like whoa this guy is[-:] : get/ing my ball !,and the elephant was like whoa this guy is getting my ball,0 0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and) (and) and the giraffe : (um) he was go/ing out to the : ball.,and the giraffe he was going out to the ball,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and he was swim/ing fast.,and he was swimming fast,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,so he[-:] got the ball.,so he got the ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and he swam back : to the (eleph) elephant : (that) : that lost her ball.,and he swam back to the elephant that lost her ball,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and she said thank you !,and she said thank you,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and he is like you are welcome !,and he is like you are welcome,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(um uh : uh) the elephant want/ed to like go off the diving board[-:] : and go into the water.,the elephant wanted to like go off the diving board and go into the water,0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,so she (went to) (to the uh) : went to the (uh) diving board.,so she went to the diving board,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and she was not suppose/ed[!] to run.,and she was not supposed to run,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(she) and she run|run[EW:ran].,and she run,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and the zebra said do not run!,and the zebra said do not run,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and he only jog/ed[-:].,and he only jogged,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and : (the elephant is like) (it is) (he : like) she is slip/ing.,and she is slipping,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and she fall|fall[EW:fell] down.,and she fall down,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,she had a cut.,she had a cut,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,there was a sign say/ing no run/ing.,there was a sign saying no running,0 0 0 0 6 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(the) (and) and the zebra is like uhoh (what ay) are you okay!,and the zebra is like uhoh are you okay,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,anyway[?] there is no run/ing : (in) : in the swimming pool place!,anyway there is no running in the swimming pool place,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and the lifeguard he came[-:].,and the lifeguard he came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and he said are you okay little girl?,and he said are you okay little girl,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and[-:] the) (and the) (and the) and the : elephant said no[-:] it hurt/3s!,and the elephant said no it hurts,0 0 0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and : then (uh) : the elephant gived|give[EW:gave] her a bandaid.,and then the elephant gived her a bandaid,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and) and she look/ed at it.,and she looked at it,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and she is) and the (z) zebra is like are you okay?,and the zebra is like are you okay,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and she is like : ooh it do/3s not hurt anymore.,and she is like ooh it does not hurt anymore,0 0 0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,are you okay[-:] ?,are you okay,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and she) (and she is told the st) the she start the story how she fall [EU].,the she start the story how she fall,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and[-:] uh) and the lifeguard say/3s there is no run/ing (in) : in swimming pool/s!,and the lifeguard says there is no running in swimming pools,0 0 0 3 0 0 0 6 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(um : the) the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(uh) : giraffe had[-:] : [~_like] a[EW:an] airplane in it/z hand.,giraffe had a airplane in it's hand,0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and he was [~_like] play/ing with it.,and he was playing with it,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and said) and the elephant said whoa nice airplane you have in your hand !,and the elephant said whoa nice airplane you have in your hand,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and he) and he said thank/s !,and he said thanks,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and he was : pretend/ing to fly with it.,and he was pretending to fly with it,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,that was wow[-:][!][~!_laughing].,that was wow,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and then she took it.,and then she took it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and) and the zebra is like hey !,and the zebra is like hey,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,he is like wow !,he is like wow,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,she accidentally threw it into the water[-:].,she accidentally threw it into the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(uh) and the giraffe is like : what did she did[EW:do]!,and the giraffe is like what did she did,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(she is like) and she is like oopsie/s.,and she is like oopsies,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and then) and then the giraffe start/ed to get mad at the elephant.,and then the giraffe started to get mad at the elephant,0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,then the elephant went to like a lifeguard[-:].,then the elephant went to like a lifeguard,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and (uh) : she said (uh) can you please get that airplane out of the swimming pool !,and she said can you please get that airplane out of the swimming pool,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and he said) and he said I will try.,and he said I will try,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and he try/ed to reach it.,and he tried to reach it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,but he could not reach it.,but he could not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,then (uh) the lifeguard could not.,then the lifeguard could not,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and the giraffe was cry/ing.,and the giraffe was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and she is like oh man how am I suppose/ed to get that back now ?,and she is like oh man how am I supposed to get that back now,0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and this one lady with this one net (uh) : she came.,and this one lady with this one net she came,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and she took the airplane out of there.,and she took the airplane out of there,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and it is like whoa(*3) !,and it is like whoa,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(she has) : she has a net on her hand !,she has a net on her hand,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(for) what for ?,what for,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and then she took) then she took out the airplane.,then she took out the airplane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,it is (like : like) : like whoa she is do/ing that to get my airplane back !,it is like whoa she is doing that to get my airplane back,0 0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and sh) and he said thank/s.,and he said thanks,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,you are welcome : said the elephant with the net.,you are welcome said the elephant with the net,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,said (I) I like this airplane.,said I like this airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,( um) and the elephant is like : I like it.,and the elephant is like I like it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,in her mind[?] (I) I like it too.,in her mind I like it too,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(uh : they[?] : uh) (the uh) this[-:] (dog) [~_I__mean] : hare (uh) he made a sandcastle.,this hare he made a sandcastle,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and a rabbit came.,and a rabbit came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,the rabbit : start/ed (to) to like (uh) put his sand in the pail.,the rabbit started to like put his sand in the pail,0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(so he dump/ed it : on) so the rabbit dump/ed it on[-:] : the hare/z sandcastle.,so the rabbit dumped it on the hare's sandcastle,0 0 0 4 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and : the hare : (uh : he was like) (uh he was look/ing like kinda) like he was look/ing just like this.,and the hare like he was looking just like this,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(what did this guy) like what did this rabbit do?,like what did this rabbit do,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and the rabbit was (like) like (why[-:] i) if the hare get mad[-:] [EU].,and the rabbit was like if the hare get mad,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(s) : (and[-:]) : and the hare start/ed to cry.,and the hare started to cry,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(an) : and the rabbit (uh : start/ed) start/ed to like feel bad.,and the rabbit started to like feel bad,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and he) : the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(uh) : the rabbit and the hare (uh) they are both go/ing to have a picnic.,the rabbit and the hare they are both going to have a picnic,0 0 0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and : then they took out all their stuff and put out the blanket.,and then they took out all their stuff and put out the blanket,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(then uh) (then) : then they start/ed eat/ing!,then they started eating,0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,an : the rabbit had lot/s of food : like sandwich/s chocolate bar/s chip/s sub/s carrot/s cake.,an the rabbit had lots of food like sandwiches chocolate bars chips subs carrots cake,0 0 0 0 1 0 0 0 1 0 1 1 1 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and : uh) and the hare is like (what is) oh what did this guy bring to eat?,and the hare is like oh what did this guy bring to eat,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,a whole bunch of thing/s!,a whole bunch of things,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and) : and the hare only ated|eat[EW:ate] a sandwich.,and the hare only ated a sandwich,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and the rabbit ated|eat[EW:ate] the whole thing : when she gotted|got[EW:got] her sandwich out.,and the rabbit ated the whole thing when she gotted her sandwich out,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(uh : the uh) the hare : look/ed at the rabbit.,the hare looked at the rabbit,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and the rabbit did not look so well.,and the rabbit did not look so well,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,so : the hare (went) went to a nurse (and) : (and) and tell (uh the) the rabbit (s) : has a stomachache [EU].,so the hare went to a nurse and tell the rabbit has a stomachache,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and) and the hare is like pull/ing her : to (like uh) get over there fast.,and the hare is like pulling her to get over there fast,0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and) (and the ra) (and[-:]) : (and the ra) and (the rabbit uh : wa) [~_like] the nurse rabbit (uh she) she look|look[EW:looks] and say|say[EW:says] you have a stomachache!,and the nurse rabbit she look and say you have a stomachache,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(an) : and he like[-:] I think I notice/ed.,and he like I think I noticed,0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(so[-:] he came) so he came with the nurse (to like uh) : to [~_like] see (his) [~_like] his mom or his dad.,so he came with the nurse to see his mom or his dad,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,the hare was pull/ing a wagon.,the hare was pulling a wagon,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and[-:] the hare had[-:] (a) : a balloon on it/z wagon.,and the hare had a balloon on it's wagon,0 0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and[-:] the rabbit came by and say|say[EW:says] hey you have a nice balloon!,and the rabbit came by and say hey you have a nice balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and the rabbit he came to [~_like] touch the balloon.,and the rabbit he came to touch the balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,then (uh he) he try/ed to take it off for a sec.,then he tried to take it off for a sec,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(the) and the hare is like what are you do/ing!,and the hare is like what are you doing,0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,the rabbit accidentally let go of it.,the rabbit accidentally let go of it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and the hare was try/ing to reach it same with the rabbit.,and the hare was trying to reach it same with the rabbit,0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(but) but : it went up too fast.,but it went up too fast,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and (uh) the hare start/ed to get mad at him : again.,and the hare started to get mad at him again,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(there was) : there was (uh : a balloon[-:]) : (uh) a balloon.,there was a balloon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and a rabbit was sell/ing them.,and a rabbit was selling them,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and) and he was just like stand/ing there smile/ing.,and he was just like standing there smiling,0 0 0 0 0 6 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,then (uh the ra) the rabbit say[-:] (uh) : can I please have : one balloon?,then the rabbit say can I please have one balloon,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,he was like (uh) : balloon/s five cent/s.,he was like balloons five cents,0 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,[~_like] that is how much : (like) : [~_like] : (it) it (co) cost.,that is how much it cost,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and they did not have any (money) money.,and they did not have any money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,so[-:] they went back to the nurse.,so they went back to the nurse,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(s) they ask (uh) if we can have [~_like] a balloon[-:] [EU]?,they ask if we can have a balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and[-:]) : and she came.,and she came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and she) (she) and she gived|give[EW:gave] : ten cent/s to [~_like] (uh) : the rabbit and the hare.,and she gived ten cents to the rabbit and the hare,0 0 0 0 1 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and they both) and the hare gotted|got[EW:got] her balloon back.,and the hare gotted her balloon back,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and the hare has it/z[!] own balloon now.,and the hare has it's own balloon now,0 0 0 0 2 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,This elephant is play/ing with a ball.,This elephant is playing with a ball,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and then the giraffe want/3s to play.,and then the giraffe wants to play,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and then (they a) it accidentally fall/3s into the pool.,and then it accidentally falls into the pool,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,so then the giraffe swim/3s to get it.,so then the giraffe swims to get it,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and he give/3s it back to the elephant.,and he gives it back to the elephant,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,then she is very happy.,then she is very happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and : she say/3s (ve) thank you to the giraffe.,and she says thank you to the giraffe,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,(the[-:] um) : the elephant and the giraffe want to go in the water.,the elephant and the giraffe want to go in the water,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and so the elephant : want/3s to go on the diving board.,and so the elephant wants to go on the diving board,0 0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,but then she run/3s too fast.,but then she runs too fast,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and she start/3s slip/ing.,and she starts slipping,0 0 3 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,then she hurt/3s her knee.,then she hurts her knee,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and : the giraffe : (ca) come/3s to help.,and the giraffe comes to help,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,then he call/3s the lifeguard and tell/3s him what happen/ed.,then he calls the lifeguard and tells him what happened,0 0 3 0 0 0 3 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,then he put/3s a bandaid on her knee.,then he puts a bandaid on her knee,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and[-:] she go/3s to sit down on a bench.,and she goes to sit down on a bench,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,then the lifeguard say/3s (that he) that she is not suppose/ed to be run/ing on deck.,then the lifeguard says that she is not supposed to be running on deck,0 0 0 3 0 0 0 0 4 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,The elephant start/3s talk/ing to the giraffe.,The elephant starts talking to the giraffe,0 0 3 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and the giraffe show/3s : her[-:] his plane.,and the giraffe shows her his plane,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,then she take/3s it away from him.,then she takes it away from him,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and : she start/3s play/ing with it.,and she starts playing with it,0 0 3 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,then it fall/3s into the water.,then it falls into the water,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,the giraffe get/3s mad at her.,the giraffe gets mad at her,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,then the lifeguard see/3s that there is a toy in the pool.,then the lifeguard sees that there is a toy in the pool,0 0 0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and he is mad at them both.,and he is mad at them both,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and then he ask/3s what happen/ed.,and then he asks what happened,0 0 0 3 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and she says she accidentally drop/ed it in the water.,and she says she accidentally dropped it in the water,0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,then the lifeguard try/3s to get it.,then the lifeguard tries to get it,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and he[!] can not get it.,and he can not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and now the giraffe is cry/ing.,and now the giraffe is crying,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,then : her mom come/3s : (and) with a net thingy.,then her mom comes with a net thingy,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and she try/3s to get the plane : and hand/3s it to the giraffe.,and she tries to get the plane and hands it to the giraffe,0 0 3 0 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,the giraffe is very happy.,the giraffe is very happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,the elephant : is happy that he got it back.,the elephant is happy that he got it back,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,(uh uh) two : bunny/s I think are make/ing a sandcastle.,two bunnies I think are making a sandcastle,0 1 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,this bunny is make/ing a sandcastle.,this bunny is making a sandcastle,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and the other bunny want/3s to help.,and the other bunny wants to help,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and then [~_like] they start build/ing it [~_like] really tall and stuff.,and then they start building it really tall and stuff,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,then the other bunny (uh) throw/3s a bucket on top of the : sandcastle.,then the other bunny throws a bucket on top of the sandcastle,0 0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and : the sandcastle [~_like] get/3s destroy/ed or something like that.,and the sandcastle gets destroyed or something like that,0 0 0 3 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and then : the other bunny start/3s cry/ing and try/3s to rebuild his sandcastle[~!_laughing].,and then the other bunny starts crying and tries to rebuild his sandcastle,0 0 0 0 0 3 6 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,(this bunny is) these two bunny/s are go/ing to [~_gonna] go on [~_like] a picnic I think.,these two bunnies are going to go on a picnic I think,0 0 1 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and : one bunny bring/3s [~_like] a lot of stuff.,and one bunny brings a lot of stuff,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,(the other) the other bunny just bring/3s a sandwich and (uh) some pop.,the other bunny just brings a sandwich and some pop,0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,(one) the other bunny feel/3s very sick : because he ate so much.,the other bunny feels very sick because he ate so much,0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and so the : other bunny go/3s to tell the doctor what happen/ed.,and so the other bunny goes to tell the doctor what happened,0 0 0 0 0 3 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and then so the doctor : come/3s and try/3s to help.,and then so the doctor comes and tries to help,0 0 0 0 0 3 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and : she talk/3s to the : sick bunny[~!_laughing] and : ask/3s what happen/ed.,and she talks to the sick bunny and asks what happened,0 0 3 0 0 0 0 0 3 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and then he get/3s better.,and then he gets better,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and : she say/3s to be careful.,and she says to be careful,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,one bunny is taking a wagon out : somewhere.,one bunny is taking a wagon out somewhere,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and then another bunny come/3s and : ask/3s her something.,and then another bunny comes and asks her something,0 0 0 0 3 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,the bunny ask/3s if he could see the balloon.,the bunny asks if he could see the balloon,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and the : other bunny : is think/ing about it.,and the other bunny is thinking about it,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,so : the : bunny undo/3s the balloon.,so the bunny undoes the balloon,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and the other bunny is very surprise/ed.,and the other bunny is very surprised,0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and then he let/3s go of the balloon.,and then he lets go of the balloon,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and : she try/3s to get it back.,and she tries to get it back,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,but then it disappear/3s.,but then it disappears,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and she is very mad at him.,and she is very mad at him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,then : a bunny sell/ing balloon/s[-:] : say/3s do you want another one?,then a bunny selling balloons says do you want another one,0 0 0 6 1 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and[-:] : the boy bunny come/3s up (and take/3s) and ask/3s for a balloon.,and the boy bunny comes up and asks for a balloon,0 0 0 0 3 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and it is[-:] five cent/s for a balloon.,and it is five cents for a balloon,0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,but he do/3s not have five cent/s.,but he does not have five cents,0 0 3 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and then they ask him really nicely.,and then they ask him really nicely,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and he : say/3s maybe.,and he says maybe,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,(and then they find their) (hi) and then he find/3s his mom and ask/3s her for some money.,and then he finds his mom and asks her for some money,0 0 0 3 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and then : (um) she is surprise/ed that he want/3s a balloon because : (he) he : lost the other girl/z balloon.,and then she is surprised that he wants a balloon because he lost the other girl's balloon,0 0 0 0 4 0 0 3 0 0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and then so she give/3s the man : (five) (te) ten cent/s.,and then so she gives the man ten cents,0 0 0 0 3 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and they each get a balloon.,and they each get a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and then they both are very happy.,and then they both are very happy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,it is a giraffe.,it is a giraffe,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and the : elephant play/ed ball.,and the elephant played ball,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,it go/3s in the swimming pool.,it goes in the swimming pool,0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,: (it) the giraffe is go/ing to get it.,the giraffe is going to get it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and : the giraffe get/3s it.,and the giraffe gets it,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and they are play/ing ball again.,and they are playing ball again,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,it is[-:] : a giraffe and a[EW:an] elephant again.,it is a giraffe and a elephant again,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,(an) : and they are run/ing.,and they are running,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,: the elephant was run/ing.,the elephant was running,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,: and : the elephant hurt [<~_herself]hisself[>~_herself].,and the elephant hurt hisself,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,the lifeguard came.,the lifeguard came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,: the lifeguard is (chh uh) put/ing a bandaid on it.,the lifeguard is putting a bandaid on it,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and then he is put/ing (uhm) her on the bench.,and then he is putting her on the bench,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and then the lifeguard say/3s (to) to her no run/ing.,and then the lifeguard says to her no running,0 0 0 0 3 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,(okay) it is a[EW:an] elephant.,it is a elephant,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and (the giraffe pla ha) the giraffe has a[EW:an] airplane.,and the giraffe has a airplane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,: the giraffe is play/ing (it) with it.,the giraffe is playing with it,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,the elephant is try/ing.,the elephant is trying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,: and the elephant throw/3s it into the water.,and the elephant throws it into the water,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and the giraffe is mad.,and the giraffe is mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,: and the lifeguard came.,and the lifeguard came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,: and (the l) the[-:] elephant say/3s sorry to the lifeguard.,and the elephant says sorry to the lifeguard,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and the lifeguard try/s to get it.,and the lifeguard tries to get it,0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and the lifeguard can not get it.,and the lifeguard can not get it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and the lifeguard/z (um) wife came : with a net.,and the lifeguard's wife came with a net,0 0 2 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and the lifeguard/z[-:] : wife got the net : and pull/ed the airplane out.,and the lifeguard's wife got the net and pulled the airplane out,0 0 2 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,then she gave it to the (geraff) giraffe.,then she gave it to the giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and the giraffe was : happy.,and the giraffe was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,(ss) the rabbit and the dog (was) : was[EW:were] make/ing a sandcastle.,the rabbit and the dog was making a sandcastle,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,(they are m) they are dig/ing out the sand.,they are digging out the sand,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,they are put/ing the sand on the castle.,they are putting the sand on the castle,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and they broke the castle.,and they broke the castle,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and now the dog is cry/ing.,and now the dog is crying,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,(kay) they are go/ing for a picnic.,they are going for a picnic,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,the rabbit is eat/ing too much.,the rabbit is eating too much,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,the rabbit get/3s sick.,the rabbit gets sick,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and he is dizzy.,and he is dizzy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and the doctor come/3s.,and the doctor comes,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,the doctor check/3s : him.,the doctor checks him,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and she is put/ing the thing in his mouth.,and she is putting the thing in his mouth,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and the doctor is take/ing him home.,and the doctor is taking him home,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,(kay) they are go/ing : with : the wagon with the balloon on it.,they are going with the wagon with the balloon on it,0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,(the do) the rabbit take/3s the balloon.,the rabbit takes the balloon,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,he let/3s go of it.,he lets go of it,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and it is float/ing in the air.,and it is floating in the air,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,it is (f li) far up in the cloud/s.,it is far up in the clouds,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and they see a balloon man.,and they see a balloon man,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,they[-:] want a balloon.,they want a balloon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,: they : got the balloon.,they got the balloon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,but he did not have five cent/s.,but he did not have five cents,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and (he said : a) : the : guy said you can not have the balloon : then.,and the guy said you can not have the balloon then,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and he went to the doctor.,and he went to the doctor,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,the doctor gave him five cent/s.,the doctor gave him five cents,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and then they gave him the five cent/s.,and then they gave him the five cents,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and then (they had the balloon) : they both had a balloon.,and then they both had a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,once upon a : time there was a[EW:an]: elephant (and a) : and a giraffe.,once upon a time there was a elephant and a giraffe,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and the elephant blowed|blow[EW:blew] water.,and the elephant blowed water,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then (the) (hh) he blowed|blow[EW:blew] (the : el) the giraffe right into the water.,and then he blowed the giraffe right into the water,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then (he tr) (the) : (the) (he xx) (he) (the) she blowed|blow[EW:blew] him.,and then she blowed him,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then he fell right in with his pant/s and his shirt on.,and then he fell right in with his pants and his shirt on,0 0 0 0 0 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then he row/ed[?] to get the : watermelon.,and then he rowed to get the watermelon,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,but it was not a watermelon.,but it was not a watermelon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,it was : a rock.,it was a rock,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,(when he) when he put his nose right on it : he swam really fast.,when he put his nose right on it he swam really fast,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,then he bump/ed his nose right on it.,then he bumped his nose right on it,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then (uh) : he said ow[!].,and then he said ow,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,: then : (um) : the : elephant gave him one more rock.,then the elephant gave him one more rock,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then (he) the : giraffe had water all over.,and then the giraffe had water all over,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,once upon a time there was an elephant and a giraffe.,once upon a time there was an elephant and a giraffe,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,they look/ed at the water.,they looked at the water,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then the elephant ran.,and then the elephant ran,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and he did not see nothing[EW:anything].,and he did not see nothing,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,so he jump/ed.,so he jumped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,so he went right into the water.,so he went right into the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,: and then : the elephant hurt his knee.,and then the elephant hurt his knee,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,: and then (the mommy) came by [~_I_mean] the lifeguard.,and then came by the lifeguard,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and lifeguard ran after.,and lifeguard ran after,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then (ih) the elephant cry/ed.,and then the elephant cried,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,: and then the giraffe bend|bend[EW:bent] his knee on the ground.,and then the giraffe bend his knee on the ground,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and (the) the sign said no[-:] run/ing.,and the sign said no running,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,: and then they gave him a bandage the elephant.,and then they gave him a bandage the elephant,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,then (the) the lifeguard was angry at the (uh) elephant.,then the lifeguard was angry at the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,once upon a time there was an[EW:a] : giraffe that had (an) (a) an airplane.,once upon a time there was an giraffe that had an airplane,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and he threw it up to see *if it would glide in the air [EU].,and he threw it up to see it would glide in the air,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,then it drop/ed into the water.,then it dropped into the water,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and (the) he threw it.,and he threw it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then he got it right into the water.,and then he got it right into the water,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,: and then : (the el) she[!] try/ed to throw it.,and then she tried to throw it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then it land/ed in the water.,and then it landed in the water,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,: (and then it land/ed right) and then it sinked|sink[EW:sunk] a little bit.,and then it sinked a little bit,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,then : (the) (hh) the : giraffe was angry.,then the giraffe was angry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,: and the lifeguard took a net : and pick/ed it up.,and the lifeguard took a net and picked it up,0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,: and she could not reach it with his[EW:her] hand.,and she could not reach it with his hand,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,(so he) so he did not know what to do.,so he did not know what to do,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,then he took a net.,then he took a net,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,then he grab/ed it up.,then he grabbed it up,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then : he pull/ed it up.,and then he pulled it up,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,: and then (he ga) the lifeguard gave it back : to the giraffe.,and then the lifeguard gave it back to the giraffe,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and : then the giraffe was : happy.,and then the giraffe was happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,"once upon a time there was a little rabbit and a little dog [~_""little""_pronounced_""yittle""_both_times].",once upon a time there was a little rabbit and a little dog,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and the dog : was woof/ing.,and the dog was woofing,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and the rabbit got scare/ed.,and the rabbit got scared,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,so he just threw the shovel at[!] the dog.,so he just threw the shovel at the dog,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and the dog got angry.,and the dog got angry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then he threw his[!] shovel back.,and then he threw his shovel back,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,then they came back.,then they came back,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then they made a sandcastle.,and then they made a sandcastle,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then (they) the rabbit pour/ed (some sand) some water on it.,and then the rabbit poured some water on it,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,(the) the castle got wet.,the castle got wet,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then the castle fell down.,and then the castle fell down,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,then : the rabbit : got scare/ed from the dog.,then the rabbit got scared from the dog,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,so the rabbit ran away : threw his pail.,so the rabbit ran away threw his pail,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and the sand got in[!] the pail.,and the sand got in the pail,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,then : the dog ran away too.,then the dog ran away too,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,then : (they) : (the) they made silly joke/s.,then they made silly jokes,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,once upon a time there was a dog and a rabbit who went to have a picnic.,once upon a time there was a dog and a rabbit who went to have a picnic,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,(then they) then the rabbit ate everything.,then the rabbit ate everything,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and the dog had nothing left to eat.,and the dog had nothing left to eat,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then the dog ran away *and put a costume on (so he would think) so the dog would think he was a different person [EU].,and then the dog ran away put a costume on so the dog would think he was a different person,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,then they went swim/ing.,then they went swimming,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,then : the rabbit got stuff/ed up that he could not eat any more food [EU].,then the rabbit got stuffed up that he could not eat any more food,0 0 0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,then he got dizzy.,then he got dizzy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then the dog drank some juice.,and then the dog drank some juice,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,then the dog[!] got dizzy.,then the dog got dizzy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then the dog saw a different[!] person.,and then the dog saw a different person,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,: and then the dog pull/ed his shirt.,and then the dog pulled his shirt,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,: and then : the mommy came : to him : (and) : and said you naughty little boy.,and then the mommy came to him and said you naughty little boy,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,then : the rabbit went with his mommy back home.,then the rabbit went with his mommy back home,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,"once upon a time there was a little [~_pronounced_""yIt'l""] dog with a balloon (on his) (on his) on his wagon.",once upon a time there was a little dog with a balloon on his wagon,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,then he let go of the balloon.,then he let go of the balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,the balloon went up.,the balloon went up,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,then the dog was angry[-:].,then the dog was angry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,: and then (the t) it was there.,and then it was there,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,: and then the rabbit came : and undid (the) (the re) the balloon.,and then the rabbit came and undid the balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,the balloon went all the way up.,the balloon went all the way up,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,they could not reach it.,they could not reach it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,: and then the dog got really angry.,and then the dog got really angry,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then : they went.,and then they went,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and somebody had balloon/s.,and somebody had balloons,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,but the little [~_yittle] rabbit had no money.,but the little rabbit had no money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,so (they came) the rabbit came and : (got : st) took : one of the balloon/s.,so the rabbit came and took one of the balloons,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,but (the) the man hold|hold[EW:held] it tight so that it would not : blow away.,but the man hold it tight so that it would not blow away,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then : the rabbit took the string.,and then the rabbit took the string,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,but he could not take it away.,but he could not take it away,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,then he said : I[!] know.,then he said I know,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,I will take one of those balloon/s.,I will take one of those balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,then he said it is for five dollar/s.,then he said it is for five dollars,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,: so then : the (w) mommy came and gave him some five dollar/s.,so then the mommy came and gave him some five dollars,0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,then : (the) the balloon came for the dog.,then the balloon came for the dog,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then the dog had the balloon.,and then the dog had the balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then : (they : ha) the dog had another balloon on his wagon.,and then the dog had another balloon on his wagon,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then the mommy gave him five dollar/s.,and then the mommy gave him five dollars,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then : (the) the rabbit was happy too.,and then the rabbit was happy too,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and they both[!] got a balloon.,and they both got a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,there is a giraffe and[!] an elephant.,there is a giraffe and an elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,the elephant is bounce/ing a ball.,the elephant is bouncing a ball,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and (they are) they are by a : swimming pool.,and they are by a swimming pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and the ball bounce/ed in.,and the ball bounced in,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,then the : giraffe[!] : jump/ed in the water and swam after it.,then the giraffe jumped in the water and swam after it,0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,the giraffe got the ball back to the elephant.,the giraffe got the ball back to the elephant,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and then he was : soak/ed.,and then he was soaked,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and he was say/ing thank you to the : elephant.,and he was saying thank you to the elephant,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,there is a giraffe and an elephant.,there is a giraffe and an elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,the elephant[!] want/ed to go off the diving[!] board.,the elephant wanted to go off the diving board,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,the sign said no run/ing.,the sign said no running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and the giraffe : start/ed to run to the : diving board.,and the giraffe started to run to the diving board,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,the giraffe ran (and slip) and slip/ed.,the giraffe ran and slipped,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,(the giraffe hurt her knee) (so the) : [~_I_mean] the elephant (hurt) hurt her knee.,the elephant hurt her knee,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and the giraffe (st) (ran) walk/ed to the giraffe.,and the giraffe walked to the giraffe,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,the giraffe : got a lifeguard.,the giraffe got a lifeguard,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and the lifeguard help/ed the giraffe by put/ing on a bandaid.,and the lifeguard helped the giraffe by putting on a bandaid,0 0 0 4 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and (the giraffe sat on the bench) : [~_I_mean] the elephant[~!_laughing] sat on the bench [~_I_get_mixed_up].,and the elephant sat on the bench,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,(and the elepha) and the lifeguard (said) show/ed the elephant where the no run/ing sign was.,and the lifeguard showed the elephant where the no running sign was,0 0 0 4 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,there is a giraffe and a[EW:an] elephant by the pool.,there is a giraffe and a elephant by the pool,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,the giraffe[-:] : has a[-:] plane.,the giraffe has a plane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,the giraffe start/ed to fly the plane.,the giraffe started to fly the plane,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and then the : elephant grab/ed[!] the plane from the giraffe.,and then the elephant grabbed the plane from the giraffe,0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,the elephant accidentally drop/ed the plane in the pool.,the elephant accidentally dropped the plane in the pool,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,the[-:] giraffe got really mad[!] at the elephant.,the giraffe got really mad at the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,the lifeguard : he walk/ed over.,the lifeguard he walked over,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and both[!] of them : (look/ed) (were look) were look/ing at him : for some weird reason.,and both of them were looking at him for some weird reason,0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and then the elephant : (um) told them what happen/ed.,and then the elephant told them what happened,0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and : so the lifeguard try/ed[!] to reach in and get the plane.,and so the lifeguard tried to reach in and get the plane,0 0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,he could not get it.,he could not get it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,so the : giraffe start/ed to cry.,so the giraffe started to cry,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,then another elephant came with a big[-:] long net.,then another elephant came with a big long net,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,she reach/ed it in and grab/ed the plane : and gave the plane back to the giraffe.,she reached it in and grabbed the plane and gave the plane back to the giraffe,0 4 0 0 0 4 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,then the giraffe : was really happy that he had his plane back.,then the giraffe was really happy that he had his plane back,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,(there is a) (there is a) there is a rabbit.,there is a rabbit,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and there is a little dog.,and there is a little dog,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and : the dog was make/ing a sandcastle.,and the dog was making a sandcastle,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and the rabbit want/ed to make it too.,and the rabbit wanted to make it too,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,so the dog invit/ed him over.,so the dog invited him over,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,then the dog : and[!] the rabbit work/ed together to make the sandcastle.,then the dog and the rabbit wrought together to make the sandcastle,0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,the rabbit dump/ed a whole bucket of sand on[!] the castle.,the rabbit dumped a whole bucket of sand on the castle,0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,(then the whole) then the whole castle was cover/ed in sand.,then the whole castle was covered in sand,0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and it all fell down.,and it all fell down,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,then the dog : start/ed to cry because his castle was ruin/ed.,then the dog started to cry because his castle was ruined,0 0 0 4 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,(there is) there is the same dog and the same rabbit.,there is the same dog and the same rabbit,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and (they are : on) (there is) they are on a path in the wood/s.,and they are on a path in the woods,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and the dog say/3s hi to the rabbit.,and the dog says hi to the rabbit,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,but they both have a picnic together : (on) : on all the grass.,but they both have a picnic together on all the grass,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,the rabbit (ate) : ate all[!] of his food.,the rabbit ate all of his food,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and the dog is still eat/ing his.,and the dog is still eating his,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,(the rabbit go) (is) the rabbit got a stomachache.,the rabbit got a stomachache,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and the dog look/ed worry/ed.,and the dog looked worried,0 0 0 4 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,the dog ran to the rabbit/z : Mom or someone else (and) (an) and told her that : (the ra) the rabbit has a stomachache.,the dog ran to the rabbit's Mom or someone else and told her that the rabbit has a stomachache,0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,he yank/ed her over : to the sandbox.,he yanked her over to the sandbox,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and then (the) she start/ed to : give the rabbit heck (for eating[~!_laughing] too much food) for : eat/ing too much food too fast.,and then she started to give the rabbit heck for eating too much food too fast,0 0 0 4 0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,(then) then the rabbit start/ed to feel better.,then the rabbit started to feel better,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and they both walk/ed home.,and they both walked home,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,there is a dog and the rabbit again.,there is a dog and the rabbit again,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,the dog (ha) just got a brand[!] new wagon : with a balloon hang/ing on to it by a string.,the dog just got a brand new wagon with a balloon hanging on to it by a string,0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,the rabbit came along : and compliment/ed : on his wagon.,the rabbit came along and complimented on his wagon,0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,then the rabbit was start/ing to untie[!] the balloon.,then the rabbit was starting to untie the balloon,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,then the balloon flew way[!] up into the air.,then the balloon flew way up into the air,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and they both try/ed to grab it.,and they both tried to grab it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,it flew too high.,it flew too high,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and the rabbit : was[-:] scare/ed.,and the rabbit was scared,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and the dog was really[!] mad.,and the dog was really mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,(and then they both) (then the rabbit) and the dog was still mad.,and the dog was still mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,the rabbit saw a guy with balloon/s[!].,the rabbit saw a guy with balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,so the rabbit ran there and (took) got a balloon.,so the rabbit ran there and got a balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and the balloon/s were five cent/s.,and the balloons were five cents,0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,but he had no money.,but he had no money,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,(then) : then both of them thought they were out of luck.,then both of them thought they were out of luck,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,(and the) and the rabbit ran[-:] to his grandma : and ask/ed for five cent/s because he want/ed to buy one.,and the rabbit ran to his grandma and asked for five cents because he wanted to buy one,0 0 0 0 0 0 0 0 4 0 0 1 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,so she got five cent/s.,so she got five cents,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,they took it.,they took it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,(and : the rabbit) and both[!] of them got a balloon.,and both of them got a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,A giraffe and an elephant [EU].,A giraffe and an elephant,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the elephant is bounce/ing ball/s.,and the elephant is bouncing balls,0 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,one of them go|go[EW:went] into the pool.,one of them go into the pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,he fell in and start/ed swimming.,he fell in and started swimming,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,the elephant got the ball.,the elephant got the ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and (he) the giraffe is soak/ed in the water.,and the giraffe is soaked in the water,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,the elephant has the ball.,the elephant has the ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,she is hug/ing it.,she is hugging it,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the giraffe is smile/ing and all wet.,and the giraffe is smiling and all wet,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,they see the pool.,they see the pool,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(and she a) and there is a diving board.,and there is a diving board,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,she run/3s to the dive/ing board.,she runs to the diving board,0 3 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,she slip/3s.,she slips,0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the giraffe is run/ing.,and the giraffe is running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and then she hurt/3s her knee.,and then she hurts her knee,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the giraffe is run/ing to her.,and the giraffe is running to her,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,he is help/ing her.,he is helping her,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(um) she is cry/ing.,she is crying,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(he) and the giraffe is help/ing her.,and the giraffe is helping her,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the lifeguard is come/ing : run/ing.,and the lifeguard is coming running,0 0 0 0 6 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the lifeguard help/3s her.,and the lifeguard helps her,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the giraffe is just look/ing.,and the giraffe is just looking,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,the lifeguard just sat her on a chair.,the lifeguard just sat her on a chair,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the giraffe is look/ing at it.,and the giraffe is looking at it,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(she is) he is mad : at the elephant because she was run/ing.,he is mad at the elephant because she was running,0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,She see/3s (an um) an airplane in the giraffe/z hand.,She sees an airplane in the giraffe's hand,0 3 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,the giraffe (is f um) is about to throw.,the giraffe is about to throw,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and ( she is) she is worried.,and she is worried,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(she gots|get[EW:gets] the plane) she gots|get[EW:gets] the plane.,she gots the plane,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and she is happy.,and she is happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the giraffe : is worry/ed.,and the giraffe is worried,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,the elephant drop/ed the plane in the water.,the elephant dropped the plane in the water,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and it start/ed sink/ing.,and it started sinking,0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and they are both just look/ing at it.,and they are both just looking at it,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,he is mad at her because (sh) she drop/ed (her plane i) his plane in the water.,he is mad at her because she dropped his plane in the water,0 0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(he's) he is just look/ing.,he is just looking,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(and the) and the elephant is try/ing to sneak away.,and the elephant is trying to sneak away,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and : the : lifeguard is look/ing at it too.,and the lifeguard is looking at it too,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(she) she is yell/ing (and to the li) at the lifeguard and tell/ing him.,she is yelling at the lifeguard and telling him,0 0 6 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and she is point/ing.,and she is pointing,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the giraffe is just : look/ing at : the girl.,and the giraffe is just looking at the girl,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,the lifeguard is try/ing to get the plane out of the water.,the lifeguard is trying to get the plane out of the water,0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and they are both look/ing at him.,and they are both looking at him,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(the) the giraffe is cry/ing.,the giraffe is crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the girl is : worry/ed.,and the girl is worried,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the (j) lifeguard is : just stand/ing there.,and the lifeguard is just standing there,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(the) another (li) lifeguard came with a net.,another lifeguard came with a net,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and now all of them are just : (l) look/ing at the net/s.,and now all of them are just looking at the nets,0 0 0 0 0 0 0 6 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,"the lifeguard : (go/3s and try/es w) (she is) (she is get/ing the net wi) she is use/ing the net, get/ing the plane.",the lifeguard she is using the net getting the plane,0 0 0 0 6 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and all of them are happy.,and all of them are happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,she gots[EW:has] the plane out of the water.,she gots the plane out of the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and (he is) the giraffe is really happy.,and the giraffe is really happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,now : (sh) (they) (she) he will not let the girl play with it.,now he will not let the girl play with it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(uh) a dog is play/ing in the sandbox and build/ing a castle.,a dog is playing in the sandbox and building a castle,0 0 0 6 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and a rabbit want/3s to help.,and a rabbit wants to help,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(the) the dog is build/ing it.,the dog is building it,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the rabbit is grab/ing some sand.,and the rabbit is grabbing some sand,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,the : dog took off her hands.,the dog took off her hands,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the rabbit dump/ed : a lot of sand on the castle.,and the rabbit dumped a lot of sand on the castle,0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,the dog is just look/ing at it.,the dog is just looking at it,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the bunny is worry/ed because it is all smush/ed.,and the bunny is worried because it is all smushed,0 0 0 0 4 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,she is try/ing to build it back.,she is trying to build it back,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and she is cry/ing.,and she is crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the bunny is just : (look/ing now) : look/ing at it.,and the bunny is just looking at it,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,a bunny is (ru) run/ing (and) on the sidewalk.,a bunny is running on the sidewalk,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(and the dog has) they are go/ing for a picnic.,they are going for a picnic,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the dog is wave/ing.,and the dog is waving,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(the) the dog is take/ing her lunch.,the dog is taking her lunch,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the : rabbit is just : eat/ing it all.,and the rabbit is just eating it all,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(the rab) the dog is eat/ing his lunch.,the dog is eating his lunch,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the rabbit is done his (lu) whole lunch.,and the rabbit is done his whole lunch,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and he is pat/ing his stomach.,and he is patting his stomach,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,the dog : is eat/ing still : and just look/ing at the bunny because : he is dizzy.,the dog is eating still and just looking at the bunny because he is dizzy,0 0 0 6 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(the uh) the bunny is just lay/ing there.,the bunny is just laying there,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the dog is come/ing to : (his) his mom.,and the dog is coming to his mom,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(the) (he is) the bunny is still laying down there.,the bunny is still laying down there,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the : dog is pull/ing his mom.,and the dog is pulling his mom,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,the bunny is (um um) look/ing (at the) at the bunny.,the bunny is looking at the bunny,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,he is get/ing dizzy.,he is getting dizzy,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(the) the bunny is much better.,the bunny is much better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the other bunny is bring/ing him home.,and the other bunny is bringing him home,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the dog is (just smi) just smile/ing.,and the dog is just smiling,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,that is the end [+_bch].,that is the end,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,The doggy is pull/ing a wagon with a balloon in it.,The doggy is pulling a wagon with a balloon in it,0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the bunny is run/ing and (w s) wave/ing.,and the bunny is running and waving,0 0 0 0 6 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,he is go/ing to take the balloon.,he is going to take the balloon,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and she is look/ing at (him) the balloon.,and she is looking at the balloon,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,he take/3s off the balloon.,he takes off the balloon,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and she is worry/ed.,and she is worried,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,the balloon flie/3s up.,the balloon flies up,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(they are both) they are both try/ing to reach it.,they are both trying to reach it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and they are both very worry/ed.,and they are both very worried,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,the dog is very mad : at : him.,the dog is very mad at him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and he is look/ing at the balloon go/ing up.,and he is looking at the balloon going up,0 0 0 6 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,then (he s) she is mad.,then she is mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and then the bunny is run/ing to : another bunny that has a ton of balloon/s.,and then the bunny is running to another bunny that has a ton of balloons,0 0 0 0 0 6 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(she) (he asks) the bunny ask/3s [~_pronounced_'akses'] to buy one.,the bunny asks to buy one,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,the girl is look/ing at the bunny.,the girl is looking at the bunny,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(it said five) the balloon said five cent/s.,the balloon said five cents,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and he did not have none[EW:any].,and he did not have none,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and he was look/ing in his pocket/s.,and he was looking in his pockets,0 0 0 6 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the girl was run/ing.,and the girl was running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(and the bunny was) the big (munny) bunny was mad.,the big bunny was mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,the dog was look/ing at the man.,the dog was looking at the man,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,the man was : happy.,the man was happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and (the) : the bunny was sad.,and the bunny was sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(the nurse) the : big bunny came.,the big bunny came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and (the bunn) the bunny was run/ing to : her.,and the bunny was running to her,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the dog was just look/ing at the bunny run.,and the dog was just looking at the bunny run,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,the bunny was point/ing to all the balloon/s.,the bunny was pointing to all the balloons,0 0 0 6 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and (the k) the dog was look/ing at (the mu) (the nu) the big bunny.,and the dog was looking at the big bunny,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,the big : bunny (um) : was give/ing the other bunny : money for a balloon.,the big bunny was giving the other bunny money for a balloon,0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and (they were both : yell/ing for) the dog and the bunny were yell/ing for a balloon.,and the dog and the bunny were yelling for a balloon,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(the) the doggy was hug/ing his balloon.,the doggy was hugging his balloon,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the bunny was play/ing with his balloon.,and the bunny was playing with his balloon,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the big rabbit was smile/ing.,and the big rabbit was smiling,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,that is the end [+_bch].,that is the end,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,(mmm like) : the moose is try/ing to get the ball/s in the swimming pool.,the moose is trying to get the balls in the swimming pool,0 0 0 6 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and there is one : in the swimming pool.,and there is one in the swimming pool,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and he is happy to go in : to get them.,and he is happy to go in to get them,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and he is swim/ing : (and) to get it.,and he is swimming to get it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and he fell.,and he fell,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and he got it.,and he got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,(and) and (he is got in to) he (s) : did it already.,and he did it already,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and he did it.,and he did it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,so the elephant is proud.,so the elephant is proud,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,: that is a good one.,that is a good one,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,elephant want/3s to (g) : jump in the swimming pool.,elephant wants to jump in the swimming pool,0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and the elephant want/3s to go : there.,and the elephant wants to go there,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then they run there.,and then they run there,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then the elephant/z leg hurt/3s.,and then the elephant's leg hurts,0 0 0 2 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,(and) and the : other elephant came to : get a bandaid on.,and the other elephant came to get a bandaid on,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then : (her) (hers) (the gu) (the) the other elephant/s put a bandaid on.,and then the other elephants put a bandaid on,0 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then it felt better.,and then it felt better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then her/z stay/ed on.,and then her's stayed on,0 0 2 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,the elephant want/3s to make a plane.,the elephant wants to make a plane,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then the horse (is l w) already have|have[EW:has] a plane.,and then the horse already have a plane,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,(and) and then the horse (um) flied|fly[EW:flew] it around.,and then the horse flied it around,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,(and the) and the elephant got it.,and the elephant got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and the elephant (went) got it into the water.,and the elephant got it into the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,so the horse is so mad.,so the horse is so mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,so the : other (um) elephant came and (wh) see|see[EW:saw] what is happen/ing [EU].,so the other elephant came and see what is happening,0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,(and then) and the elephant (the) (its the) look/ed at the other elephant.,and the elephant looked at the other elephant,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then the : other elephant try/ed to reach it.,and then the other elephant tried to reach it,0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and he can not.,and he can not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,(so) (so he) so the other elephant got a plan.,so the other elephant got a plan,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,(and the) and (the other) the girl elephant (um) got a thing to get it out : and try/ed to get it.,and the girl elephant got a thing to get it out and tried to get it,0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then her[EW:she] can[!] do it.,and then her can do it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then : her[EW:she] got[!] it.,and then her got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then the horse was so happy.,and then the horse was so happy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,that is the end [+_bch].,that is the end,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,(um the) the bunny want/3s to make a castle.,the bunny wants to make a castle,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then the bunny (w) help/ed.,and then the bunny helped,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then the bunny put sand on and make|make[EW:made] it worse.,and then the bunny put sand on and make it worse,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then it went down.,and then it went down,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then : the dog was try/ing (to make it bi) make it (um) just like it was.,and then the dog was trying make it just like it was,0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,(but) but he can not.,but he can not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,that is the end [+_bch].,that is the end,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,it is!,it is,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,yeah that is a sad one.,yeah that is a sad one,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,the bunny (was go) want|want[EW:wants] to make a picnic.,the bunny want to make a picnic,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then he was so hungry.,and then he was so hungry,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and he had a stomachache.,and he had a stomachache,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then (he) he had a stomachache again.,and then he had a stomachache again,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then the doctor came : to see what happen/ed.,and then the doctor came to see what happened,0 0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then (the) (uh the de) the dog was pull/ing her.,and then the dog was pulling her,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then the doctor (her) was (s) say/ing something.,and then the doctor was saying something,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,so : he was take/ing : (um) he[EW:him] to the other doctor/z.,so he was taking he to the other doctor's,0 0 0 6 0 0 0 0 2 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,at the end [+_bch].,at the end,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,that was a good one.,that was a good one,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,the (buh) puppy (was) had a balloon (on) on a wagon.,the puppy had a balloon on a wagon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and the (um) bunny want/ed to take it : in his hand.,and the bunny wanted to take it in his hand,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then he was go/ing to take it off.,and then he was going to take it off,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then it flown|fly[EW:flew] away.,and then it flown away,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then the dog : was so mad.,and then the dog was so mad,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,(and then) and (the dog) the bunny saw a man who had some balloon/s.,and the bunny saw a man who had some balloons,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then : the bunny said : can we have another balloon?,and then the bunny said can we have another balloon,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,Our balloon is way up.,Our balloon is way up,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,(and then the) and then the (uh) man is said there is only dollar/s [EU].,and then the man is said there is only dollars,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,(and then the uh) and then the : man was : go/ing away.,and then the man was going away,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,(and try) (he) and the bunny was go/ing to the other bunny.,and the bunny was going to the other bunny,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,it was a (w) doctor.,it was a doctor,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then (c) (and then the doctor s) and then (the o) the bunny he said the other bunny who said it is only dollar/s [EU].,and then and then the bunny he said the other bunny who said it is only dollars,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,can you get it for us?,can you get it for us,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,(and then uh) (the) and then (and the c) the other bunny/s got money : (and then ha) (got) and then gave it to the man : and then got (a) the balloon/s.,and then the other bunnies got money and then gave it to the man and then got the balloons,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,(uh) [~_sighs] (a) a giraffe found a[EW:an] elephant and want/ed to play ball (with it) : with her : because she was bounce/ing her ball up and down.,a giraffe found a elephant and wanted to play ball with her because she was bouncing her ball up and down,0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,: and then the ball fell in the water.,and then the ball fell in the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,: so the giraffe : jump/ed in the water and went to get the ball.,so the giraffe jumped in the water and went to get the ball,0 0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and then he got the ball and gave it to the (gir) elephant.,and then he got the ball and gave it to the elephant,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,then the elephant was happy.,then the elephant was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and that is the end [+_bch].,and that is the end,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,(they) (uhm) : (the little elephant and giraffe want/ed to jump out) [~_well] the little elephant and giraffe want/ed to swim in the water.,the little elephant and giraffe wanted to swim in the water,0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,(and there is a sign xxx) and there was a sign that said no run/ing.,and there was a sign that said no running,0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,but[-:] the elephant ran[-:] to the diving board because she want/ed to jump off it.,but the elephant ran to the diving board because she wanted to jump off it,0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,: and then she slip/ed : and bonk/ed her knee.,and then she slipped and bonked her knee,0 0 0 4 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,: and (then she) (he got the lifeguard to come) then the giraffe got the lifeguard to come.,and then the giraffe got the lifeguard to come,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and they put a bandaid on her knee.,and they put a bandaid on her knee,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,: and then she had to sit on the bench for a minute.,and then she had to sit on the bench for a minute,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and she got into trouble because (it) the sign said no run/ing.,and she got into trouble because the sign said no running,0 0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and she ran.,and she ran,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,(the l) the elephant and[-:] the giraffe : were play/ing.,the elephant and the giraffe were playing,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,then the giraffe was play/ing with his airplane[-:].,then the giraffe was playing with his airplane,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and the elephant want/ed to play with it too.,and the elephant wanted to play with it too,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,(so) but first (the gira) the giraffe play/ed with it and zoom/ed it around in circle/s.,but first the giraffe played with it and zoomed it around in circles,0 0 0 0 4 0 0 0 4 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and the elephant want/ed to play[-:].,and the elephant wanted to play,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,then the elephant took it : and[-:] (zrro) zoom/ed it and zoom/ed it.,then the elephant took it and zoomed it and zoomed it,0 0 0 0 0 0 4 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and then[-:] : splat[!] it splash/ed in the water.,and then splat it splashed in the water,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,: (then[-:] ) then the : giraffe got really mad[-:].,then the giraffe got really mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,: so the lifeguard came and try/ed to get the airplane.,so the lifeguard came and tried to get the airplane,0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,I do not see why they could not swim in the water.,I do not see why they could not swim in the water,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,[~_well] (um) then the lifeguard came.,then the lifeguard came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and the little elephant said I by accident : zoom/ed the plane around.,and the little elephant said I by accident zoomed the plane around,0 0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and it fell in the water.,and it fell in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,: and then the lifeguard try/ed to reach the airplane.,and then the lifeguard tried to reach the airplane,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,but he could not.,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,: then : (the) the[-:] lifeguard/z[-:] (uh) wife came.,then the lifeguard's wife came,0 0 2 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,(and got) and she had a net.,and she had a net,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,so she got the airplane with the net.,so she got the airplane with the net,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,: [~_well] she try/ed[!] to get the airplane with the net.,she tried to get the airplane with the net,0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,: then she got it back.,then she got it back,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,: and the giraffe was happy.,and the giraffe was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,(um) (there is two uh) there is (a bi) a bunny and : a dog.,there is a bunny and a dog,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,the dog made a castle.,the dog made a castle,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and the bunny want/3s to play with the dog.,and the bunny wants to play with the dog,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,now : the bunny is try/ing to help make the castle bigger.,now the bunny is trying to help make the castle bigger,0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,(uh) but he is pour/ing it on the castle.,but he is pouring it on the castle,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and the dog get/3s really worry/ed.,and the dog gets really worried,0 0 0 3 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and then the castle is gone except for one little part.,and then the castle is gone except for one little part,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,then the bunny rabbit is (ss) sorry that he broke the castle.,then the bunny rabbit is sorry that he broke the castle,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and the dog is very sad.,and the dog is very sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,the bunny sees the[-:] little dog again.,the bunny sees the little dog again,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and they have picnic basket/s.,and they have picnic baskets,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and[-:] the rabbit is really hungry.,and the rabbit is really hungry,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,so he take/3s out all of his food : and : start/3s to eat.,so he takes out all of his food and starts to eat,0 0 3 0 0 0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and then he ate up all of his food really quick.,and then he ate up all of his food really quick,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and he had nothing left.,and he had nothing left,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,then (he got really fel) he felt really sick (and).,then he felt really sick,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,I think you skip/ed a page [+_bch].,I think you skipped a page,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and then the little : dog (got a doctor) found a doctor and want/ed (it to co) her to come and help.,and then the little dog found a doctor and wanted her to come and help,0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and she pull/ed[-:] her toward/3s the sick bunny.,and she pulled her towards the sick bunny,0 0 4 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and then she found out that he had a stomachache.,and then she found out that he had a stomachache,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,then he felt better because the doctor help/ed him.,then he felt better because the doctor helped him,0 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,the bunny meet/3s the rabbit again.,the bunny meets the rabbit again,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and the bunny has a wagon with a balloon tie/ed to the wheel.,and the bunny has a wagon with a balloon tied to the wheel,0 0 0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and : the rabbit want/3s to hold the balloon[-:].,and the rabbit wants to hold the balloon,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and (then[-:] : he untie/3s[-:] it) [~_well] he try/3s to tie it (on to the knot) in a knot.,and he tries to tie it in a knot,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and : then the balloon actually fly/3s[!] away.,and then the balloon actually flies away,0 0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and the little dog get/3s really mad [~_child_growls_when_he_says_this].,and the little dog gets really mad,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,(so they go) so the little rabbit go/3s to see the balloon man : so he can buy a balloon.,so the little rabbit goes to see the balloon man so he can buy a balloon,0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,but he do/3s not have any money.,but he does not have any money,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,he need/3s twenty five cent/s to buy a balloon.,he needs twenty five cents to buy a balloon,0 3 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,so they get really sad.,so they get really sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and then[-:] they find the same doctor and ask if they can have some money.,and then they find the same doctor and ask if they can have some money,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,: then the little rabbit point/3s to the balloon man and say/3s we want a balloon.,then the little rabbit points to the balloon man and says we want a balloon,0 0 0 0 3 0 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and then : she pay/3s the man.,and then she pays the man,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and they get a balloon.,and they get a balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,: (and) and then they are happy.,and then they are happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,once upon a time they were bounce/ing a ball.,once upon a time they were bouncing a ball,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,but it land/ed in the water.,but it landed in the water,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,he dived|dive[EW:dove] in and grab/ed it.,he dived in and grabbed it,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,but he did got[EW:get] it : from his hand/s [EU].,but he did got it from his hands,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,and then[-:] : he was in love.,and then he was in love,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,once upon a time there was a zebra and his sister.,once upon a time there was a zebra and his sister,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,they said let us jump on there!,they said let us jump on there,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,then she keeped|keep[EW:kept] on race/ing over there.,then she keeped on racing over there,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,then[-:] : she hurt[!] her knee.,then she hurt her knee,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,the dad came over and said what is the matter!,the dad came over and said what is the matter,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,I hurt my knee!,I hurt my knee,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,the daddy put[!] the bandaid on her.,the daddy put the bandaid on her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,and then : she was able to walk.,and then she was able to walk,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,you should never (wa) run over there ever again.,you should never run over there ever again,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,no run/ing[!] said the sign.,no running said the sign,0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,the end.,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,once upon a time there was a zebra and a[EW:an] elephant.,once upon a time there was a zebra and a elephant,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,they were play/ing with a[EW:an] airplane.,they were playing with a airplane,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,she went zoom!,she went zoom,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,and then it fell[!] into the water.,and then it fell into the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,the zebra was so[-:] angry.,the zebra was so angry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,she telled|tell[EW:told] the lifeguard : that [~_high_pitched_voice] please help us because that : airplane is stuck in the water!,she telled the lifeguard that please help us because that airplane is stuck in the water,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,The lifeguard (s) try/3s[!] to reach it.,The lifeguard tries to reach it,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,then : they bringed|bring[EW:brought] it out.,then they bringed it out,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,she try/ed it with a net : then scoop/ed it up : and send it out of the water [EU].,she tried it with a net then scooped it up and send it out of the water,0 4 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,and he was so[-:][!] happy.,and he was so happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,once upon a time there was a bunny : and a doggy.,once upon a time there was a bunny and a doggy,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,they were build/ing a castle[-:].,they were building a castle,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,(he drop/ed some s) bunny dump/ed some sand on top of the castle.,bunny dumped some sand on top of the castle,0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,but it accidentally broke into one piece.,but it accidentally broke into one piece,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,then he had to pile it back up again.,then he had to pile it back up again,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,once upon a time bunny was walk/ing : with his picnic basket.,once upon a time bunny was walking with his picnic basket,0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,they were eat/ing their favourite stuff.,they were eating their favourite stuff,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,soon : rabbit was full.,soon rabbit was full,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,and then he was twirl/ing in his head.,and then he was twirling in his head,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,then : he runned|run[EW:ran] to : grandma and said : he is twirl/ing[!] in his head[!] said he.,then he runned to grandma and said he is twirling in his head said he,0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,then she was : say/ing do not eat this carrot!,then she was saying do not eat this carrot,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,and remember next time to not eat that carrot said the old lady.,and remember next time to not eat that carrot said the old lady,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,once upon a time bunny came over.,once upon a time bunny came over,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,he found a balloon on his wagon.,he found a balloon on his wagon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,then : he thought of something.,then he thought of something,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,he[-:] : untie/ed it from the wagon.,he untied it from the wagon,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,but then when it flew up : it pop/ed.,but then when it flew up it popped,0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,then they ran to the : balloon man : and buyed|buy[EW:bought] one of those balloon/s[!].,then they ran to the balloon man and buyed one of those balloons,0 0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,but then it said : five twenty nine dollar/s.,but then it said five twenty nine dollars,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,then : they were sad : because they look/ed up : and one balloon went away.,then they were sad because they looked up and one balloon went away,0 0 0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,then the : puppy was stand/ing there.,then the puppy was standing there,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,then : both guy/s were jump/ing[!] up because he was : hide/ing the balloon/s behind[-:] him.,then both guys were jumping up because he was hiding the balloons behind him,0 0 1 0 6 0 0 0 0 6 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,then they got their own balloon/s.,then they got their own balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,They were bounce/ing the ball.,They were bouncing the ball,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,Then they fell into the pool.,Then they fell into the pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,(and the) and they swimmed|swim[EW:swam] to go get it.,and they swimmed to go get it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,And they (fe) get|get[EW:got] the ball.,And they get the ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,(and they) and the elephant was surprise/ed.,and the elephant was surprised,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,And the end [+_bch].,And the end,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,they were laugh/ing at the pool[-:].,they were laughing at the pool,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,then they were run/ing[-:].,then they were running,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and (then they) then they were run/ing.,and then they were running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,(they were run) (they were) the elephant put/3s his toe up.,the elephant puts his toe up,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and then she got a[EW:an] owie.,and then she got a owie,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,then : a[EW:an] elephant came and[EW:to] fix her.,then a elephant came and fix her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and then she was cry/ing.,and then she was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and[-:] they were sit/ing on the bench.,and they were sitting on the bench,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and : (elephant w) the big elephant was mad at her.,and the big elephant was mad at her,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,(they were) (they were pl) they were laugh/ing.,they were laughing,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and they had a[EW:an] airplane[-:].,and they had a airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and then : they were play/ing with it.,and then they were playing with it,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,then she grab/ed it.,then she grabbed it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and it was in the swimming pool[-:].,and it was in the swimming pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,(and they) and he was mad.,and he was mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and then the big elephant came.,and then the big elephant came,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,(an) and he said it fell in the water.,and he said it fell in the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,(then she try/ed) then he[!] try/ed to get it.,then he tried to get it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,but it was too far.,but it was too far,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and then they did not know what to do[-:].,and then they did not know what to do,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,then they got a net[-:].,then they got a net,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and then they : got it.,and then they got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,(and then) (then they w) then they just got it back.,then they just got it back,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and then they love/ed it.,and then they loved it,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,(um) they were play/ing sand.,they were playing sand,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and they build|build[EW:built] a sandcastle.,and they build a sandcastle,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and (then they) then the rabbit wreck/ed it.,and then the rabbit wrecked it,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and then they have to build it all over again.,and then they have to build it all over again,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,then they try/ed to build it.,then they tried to build it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,but it was too hard.,but it was too hard,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,they were walk/ing for a picnic.,they were walking for a picnic,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,they were eat/ing.,they were eating,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and (then they got ti) (then they) then they got tire/ed.,and then they got tired,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and then they felt sad because they ate too much[EW:many] goodie/s.,and then they felt sad because they ate too much goodies,0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and (then they) then they saw their dad.,and then they saw their dad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and then they got the dad.,and then they got the dad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and then they were tire/ed again [~_whispers_last_word].,and then they were tired again,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and (then the) then they went home.,and then they went home,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and they were pull/ing a wagon that was tie/ed to a balloon.,and they were pulling a wagon that was tied to a balloon,0 0 0 6 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,then a rabbit came along and said what a nice balloon.,then a rabbit came along and said what a nice balloon,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and then she try/ed to untie it.,and then she tried to untie it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,but then it went float/ed away [EU].,but then it went floated away,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and (then) (then they were) then he was mad.,and then he was mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and then they saw some more balloon/s.,and then they saw some more balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,but can we buy a balloon please?,but can we buy a balloon please,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and then they said no.,and then they said no,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,(and then) : and then they were sad.,and then they were sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and then they did not until they got their dad to buy one.,and then they did not until they got their dad to buy one,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and then dad bought one.,and then dad bought one,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,(and) and said two cent/s please.,and said two cents please,0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and they got two cent/s.,and they got two cents,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and then they got (ba) two balloon/s.,and then they got two balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,they bought candy.,they bought candy,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,they are shout/ing.,they are shouting,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,they jump/ed in.,they jumped in,0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,[~_another_child's_voice_heard_in_background] and he want/3s : the gum.,and he wants the gum,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,then she is not let/ing him have it.,then she is not letting him have it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,they are scare/ed.,they are scared,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,they think there is a shark in there.,they think there is a shark in there,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,they are run/ing away.,they are running away,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,she got a[EW:an] owie.,she got a owie,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,no I get to tell what I want [+_bch].,no I get to tell what I want,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and she was cry/ing.,and she was crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and (she) he put a bandage on it.,and he put a bandage on it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and they are sit/ing at a bench.,and they are sitting at a bench,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and somebody came over.,and somebody came over,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,he found a[EW:an] airplane.,he found a airplane,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and he want/3s to keep it.,and he wants to keep it,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and she stoled|steal[EW:stole] it from him.,and she stoled it from him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and it fell in : front.,and it fell in front,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and it broke.,and it broke,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and : somebody came over.,and somebody came over,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and they try/ed to take it out.,and they tried to take it out,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and he reach/ed over.,and he reached over,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and they were sad.,and they were sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and : he could not get it out still.,and he could not get it out still,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and they pour/ed [EU].,and they poured,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,: [~_laughs] and he got it out.,and he got it out,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and they were happy.,and they were happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,they are play/ing in the sandbox.,they are playing in the sandbox,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,they are build/ing a castle.,they are building a castle,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,he try/ed to break it.,he tried to break it,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and it was cover/ed up.,and it was covered up,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and he was cry/ing.,and he was crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,they are walk/ing.,they are walking,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,they are eat/ing.,they are eating,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,he was eat/ing and drink/ing.,he was eating and drinking,0 0 6 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,she (wa) was rest/ing.,she was resting,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and (sh she) she was run/ing.,and she was running,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and she was pull/ing on her shirt.,and she was pulling on her shirt,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and then she got in a time out.,and then she got in a time out,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and (sh) a stranger took her home.,and a stranger took her home,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,he was bring/ing the wagon and a balloon.,he was bringing the wagon and a balloon,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and they were fight/ing over it.,and they were fighting over it,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and he took his balloon.,and he took his balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and then it went up in the air.,and then it went up in the air,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and it pop/ed.,and it popped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and : the balloon man came.,and the balloon man came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and : he ask/ed them if we want/ed another one.,and he asked them if we wanted another one,0 0 4 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and he got one.,and he got one,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and they all pop/ed.,and they all popped,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and they went away.,and they went away,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and he telled|tell[EW:told] his mother about it.,and he telled his mother about it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and then : his mother got some money for him.,and then his mother got some money for him,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and then they each got balloon/s.,and then they each got balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,a giraffe and a[EW:an] elephant are bounce/ing a ball.,a giraffe and a elephant are bouncing a ball,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,but it roll/ed into (the) : a pool.,but it rolled into a pool,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,the cow jump/ed in to get it : and brang|bring[EW:brought] it back to the elephant.,the cow jumped in to get it and brang it back to the elephant,0 0 4 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,the elephant said to the : giraffe thank you.,the elephant said to the giraffe thank you,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,an elephant and a giraffe want/ed : to go on a diving board.,an elephant and a giraffe wanted to go on a diving board,0 0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,the elephant : start/ed run/ing over to it.,the elephant started running over to it,0 0 4 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,but the elephant slip/ed.,but the elephant slipped,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,the giraffe (went to get to the) went to get the lifeguard.,the giraffe went to get the lifeguard,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,the lifeguard : came and put a bandaid on it.,the lifeguard came and put a bandaid on it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,: the elephant close/ed : her eye/s while he put the bandaid on : then : help/ed her go over to the bench.,the elephant closed her eyes while he put the bandaid on then helped her go over to the bench,0 0 4 0 1 0 0 0 0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,the lifeguard : said : the sign over there says no run/ing.,the lifeguard said the sign over there says no running,0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,a giraffe was hold/ing an airplane.,a giraffe was holding an airplane,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,: (and : he) :.,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,: and he [+..].,and he,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,: let us try the next page?,let us try the next page,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,okay [+_bch].,okay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,and the : elephant took the : airplane away : from the giraffe.,and the elephant took the airplane away from the giraffe,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,but it : fell : in the pool.,but it fell in the pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,the giraffe : got mad at the elephant for do/ing that.,the giraffe got mad at the elephant for doing that,0 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,the lifeguard came over and said what is the matter?,the lifeguard came over and said what is the matter,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,the elephant explain/ed I took : a[EW:an] airplane : (t) from the giraffe.,the elephant explained I took a airplane from the giraffe,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,and it fell into the pool.,and it fell into the pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,the lifeguard try/ed to get it.,the lifeguard tried to get it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,but he could not.,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,the giraffe start/ed to cry because nobody could get it.,the giraffe started to cry because nobody could get it,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,a different lady came over : and : said that she could get : the airplane out with a net.,a different lady came over and said that she could get the airplane out with a net,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,and she got it.,and she got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,the giraffe said thank you to the lady.,the giraffe said thank you to the lady,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,and the elephant said : she would never do it again.,and the elephant said she would never do it again,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,a rabbit and a dog : went to the park and : play/ed in the sand box.,a rabbit and a dog went to the park and played in the sand box,0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,and they built a : castle out of sand.,and they built a castle out of sand,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,the rabbit : want/ed to see what happen/ed if he : pour/ed : more sand on the castle.,the rabbit wanted to see what happened if he poured more sand on the castle,0 0 4 0 0 0 4 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,it : broked|broke[EW:broke] the castle when : the rabbit pour/ed the sand.,it broked the castle when the rabbit poured the sand,0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,so the dog fix/ed it back up.,so the dog fixed it back up,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,a rabbit and a dog went for a picnic.,a rabbit and a dog went for a picnic,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,: look at the picture/s.,look at the pictures,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,what do you think is happen/ing in the story?,what do you think is happening in the story,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,the rabbit is (eat) : eat/ing.,the rabbit is eating,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,and : the rabbit got full.,and the rabbit got full,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,but the dog did not.,but the dog did not,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,: would you like to try the next page?,would you like to try the next page,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,okay [+_bch].,okay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,and the dog went to get : the rabbit/z mom because the rabbit could not get up.,and the dog went to get the rabbit's mom because the rabbit could not get up,0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,the dog (dra) : show/ed the rabbit/z mom where they had a picnic.,the dog showed the rabbit's mom where they had a picnic,0 0 4 0 2 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,: do you want to try the next page?,do you want to try the next page,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,okay [+_bch].,okay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,and : they went back home together.,and they went back home together,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,a dog was : pull/ing his wagon with a balloon tie/ed onto it.,a dog was pulling his wagon with a balloon tied onto it,0 0 0 6 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,a rabbit came and : want/ed the balloon.,a rabbit came and wanted the balloon,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,he try/ed to take the balloon off.,he tried to take the balloon off,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,but it : float/ed up into the sky.,but it floated up into the sky,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,soon they could not see it.,soon they could not see it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,and the dog got mad at the rabbit.,and the dog got mad at the rabbit,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,then the rabbit saw a : guy sell/ing balloon/s.,then the rabbit saw a guy selling balloons,0 0 0 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,they came over.,they came over,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,and the rabbit said I want that one.,and the rabbit said I want that one,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,so : the balloon man gave : the balloon for five cent/s.,so the balloon man gave the balloon for five cents,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,but the rabbit did not have any money.,but the rabbit did not have any money,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,the rabbit went to ask her mom : if she could have some money.,the rabbit went to ask her mom if she could have some money,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,so her mom gave her some : and buyed|buy[EW:bought] two balloon/s.,so her mom gave her some and buyed two balloons,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,and then they both had a balloon.,and then they both had a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,once upon a (di) time Giraffe saw Elephant play/ing ball in the swimming pool.,once upon a time Giraffe saw Elephant playing ball in the swimming pool,0 0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Elephant : hit it off the edge and into the swimming pool.,Elephant hit it off the edge and into the swimming pool,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Giraffe went swim/ing for it.,Giraffe went swimming for it,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Elephant said thank/s.,Elephant said thanks,0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,: you are welcome said Giraffe.,you are welcome said Giraffe,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,once upon a time Giraffe and Elephant want/ed : to swim.,once upon a time Giraffe and Elephant wanted to swim,0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,(Ele) (Elephant) giraffe look/ed at no run/ing.,giraffe looked at no running,0 4 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Elephant want/ed to run.,Elephant wanted to run,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,(Giraffe) Giraffe forgot to tell him about the sign.,Giraffe forgot to tell him about the sign,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Elephant ran and slip/ed.,Elephant ran and slipped,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,and Giraffe (wa) : was behind him.,and Giraffe was behind him,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Elephant hurt his knee.,Elephant hurt his knee,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Giraffe went : say/ing : it is okay.,Giraffe went saying it is okay,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Giraffe told the lifeguard.,Giraffe told the lifeguard,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,the lifeguard put a bandage on it.,the lifeguard put a bandage on it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,then : they made her sit down on a bench.,then they made her sit down on a bench,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,he remind/ed her (no run/ing) no run/ing.,he reminded her no running,0 4 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,once upon a time Giraffe brought a plane to the swimming pool.,once upon a time Giraffe brought a plane to the swimming pool,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Elephant ask/ed if he could use it.,Elephant asked if he could use it,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,he (play/ed) play/ed with it and show/ed him what to do.,he played with it and showed him what to do,0 4 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Elephant : grab/ed it from him : and threw it up in the air.,Elephant grabbed it from him and threw it up in the air,0 4 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,and it came back down crash/ing into the water.,and it came back down crashing into the water,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Giraffe was mad.,Giraffe was mad,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,and Elephant said sorry.,and Elephant said sorry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,then the lifeguard saw (it) it.,then the lifeguard saw it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,he ask/ed elephant why it was in there.,he asked elephant why it was in there,0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,the lifeguard : try/ed to reach for it.,the lifeguard tried to reach for it,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,he said how do we get it?,he said how do we get it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,somebody came with a net.,somebody came with a net,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,the swimming teacher got it out.,the swimming teacher got it out,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,thank you said giraffe.,thank you said giraffe,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,I[-:] : will not let you use it again.,I will not let you use it again,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,once upon a time there was this dog.,once upon a time there was this dog,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,and he had a friend name/ed Bunny.,and he had a friend named Bunny,0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,he said his friend Bunny could help build a sandcastle.,he said his friend Bunny could help build a sandcastle,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,he pour/ed a : pail of sand on it.,he poured a pail of sand on it,0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,now look what you did Bunny.,now look what you did Bunny,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,: I am sorry.,I am sorry,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,once upon a time Dog was go/ing on a picnic.,once upon a time Dog was going on a picnic,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Bunny came too.,Bunny came too,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Bunny brought : cake : cheese : chocolate bar : cookie/s carrot/s sandwich/s chip/s jam.,Bunny brought cake cheese chocolate bar cookies carrots sandwiches chips jam,0 0 0 0 0 0 1 1 1 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,and Dog only brought hardly anything.,and Dog only brought hardly anything,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Dog was eat/ing.,Dog was eating,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,and Bunny was full.,and Bunny was full,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Dog keeped|keep[EW:kept] eat/ing.,Dog keeped eating,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,and then Bunny felt sick.,and then Bunny felt sick,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Dog ran to Bunny/z mom.,Dog ran to Bunny's mom,0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Dog pull/ed (bunny) Bunny/z mom over.,Dog pulled Bunny's mom over,0 4 2 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,: Bunny/z : mom help/ed him.,Bunny's mom helped him,2 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Bunny went home with his mom.,Bunny went home with his mom,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,and Dog stay/ed there.,and Dog stayed there,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,once upon a time : Dog was go/ing to pick up one more balloon.,once upon a time Dog was going to pick up one more balloon,0 0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Bunny said : can I have one?,Bunny said can I have one,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Dog said no do not.,Dog said no do not,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,now look what you did.,now look what you did,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,sorry.,sorry,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Bunny watch/ed it.,Bunny watched it,0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,and dog look/ed very mad.,and dog looked very mad,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,there was a balloon seller man.,there was a balloon seller man,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,(he) Bunny ask/ed if he could buy one.,Bunny asked if he could buy one,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Bunny look/ed for money.,Bunny looked for money,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,it was five : cent/s.,it was five cents,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Dog came : and said : we will not need one.,Dog came and said we will not need one,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Bunny/z mom : was stand/ing.,Bunny's mom was standing,2 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,and Bunny went over there to ask for some money.,and Bunny went over there to ask for some money,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,he told his mother about the balloon/s.,he told his mother about the balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,his mother paid the balloon man.,his mother paid the balloon man,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,they each got a balloon.,they each got a balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,A (walk) walk back home[?] [EU].,A walk back home,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,a bad bad girl : ball [EU].,a bad bad girl ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,and went in[?] [EU].,and went in,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,a need up[?] [EU].,a need up,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,and take tea [EU].,and take tea,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,all done [+_bch].,all done,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) go/ing swim/ing[?] [EU].,going swimming,6 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) swim/ing[?] [EU].,swimming,6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) went play [EU].,went play,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) jump in pool [EU].,jump in pool,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) ow.,ow,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,: (uh) bandaid [EU].,bandaid,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) go back home [EU].,go back home,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) : tea : with mom [EU].,tea with mom,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,all done [+_bch].,all done,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) girl [EU].,girl,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,and : go back home [EU].,and go back home,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,oh a plane [EU].,oh a plane,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) bad bad girl [EU].,bad bad girl,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) in water [EU].,in water,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) man [EU].,man,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) : bad bad girl [EU].,bad bad girl,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) no reach it [EU].,no reach it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) in water [EU].,in water,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,mom[!] get it [EU].,mom get it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,mom reach|reach[EW:reached] it.,mom reach it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(and back) : and : back home [EU].,and back home,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,and it girl[?] [EU].,and it girl,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,all done [+_bch].,all done,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,Pop xx puppy be snow/ing[?] [EU].,Pop puppy be snowing,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,and xx tire [EU].,and tire,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,a man [EU].,a man,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,what else?,what else,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) more throw/ing[?] it on [EU].,more throwing it on,0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,a (man k) : man (k) [EU].,a man,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,a tire [EU].,a tire,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,xxx.,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,anything more?,anything more,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,uhuh [+_bch].,uhuh,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(eat) eat nummy[c] [EU].,eat nummy,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,and (te) (te) (te) : and tea too.,and and tea too,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,[EW:the] ball went up.,ball went up,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh man) a man drink[?] [EU].,a man drink,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,and (uh te) (te) tea [EU].,and tea,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) back home [EU].,back home,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,Where *are we go/ing [EU]?,Where we going,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,a : big balloon [EU].,a big balloon,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) back up [EU].,back up,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,a mat[-:] [EU].,a mat,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,and a bad bad go/ing [EU].,and a bad bad going,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,a more more : balloon [EU].,a more more balloon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) more more balloon [EU].,more more balloon,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,a bad pull/ing[?] [EU].,a bad pulling,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,a buy no balloon [EU].,a buy no balloon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,no.,no,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) go/ing [EU].,going,6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) : go/ing [EU].,going,6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) want balloon [EU].,want balloon,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) xx balloon.,balloon,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,all done [+_bch].,all done,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,a[EW:an] : elephant is bounce/ing : a ball by the pool.,a elephant is bouncing a ball by the pool,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and then it go/3s in the water.,and then it goes in the water,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and the horse : (um) swim/3s to go get it.,and the horse swims to go get it,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and (it) the : horse : gave (i) it to the elephant.,and the horse gave it to the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and (it) she like/3s : the : horse.,and she likes the horse,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,(um the) they saw a diving board.,they saw a diving board,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and they : want to : go on it.,and they want to go on it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and the elephant run/3s to it.,and the elephant runs to it,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and she slip/3s.,and she slips,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and she hurt : her knee.,and she hurt her knee,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and : the lifeguard come/3s and : (um) put/3s a bandaid on.,and the lifeguard comes and puts a bandaid on,0 0 0 3 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and (then : it) (then it go) then the lifeguard (s) put/3s it on : her knee.,and then the lifeguard puts it on her knee,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,then : she sit/3s down : on the bench.,then she sits down on the bench,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and (she) (the el) the lifeguard : show/3s : to her : on the wall it says no run/ing.,and the lifeguard shows to her on the wall it says no running,0 0 0 3 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,the giraffe gots[EW:has] a : toy : airplane.,the giraffe gots a toy airplane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and (she) they like it a lot.,and they like it a lot,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and then : (sh) he fly/3s it.,and then he flies it,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and the : girl elephant take it away : from him.,and the girl elephant take it away from him,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,him accidentally put : the toy elephant in the water.,him accidentally put the toy elephant in the water,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and the : giraffe : was mad at her.,and the giraffe was mad at her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and : the lifeguard come/3s and see/3s : what happen/ed.,and the lifeguard comes and sees what happened,0 0 0 3 0 3 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,(and) : and (the lifeguard) (the : girl giraffe) the girl elephant : tell/3s what happen/ed to (the) : the airplane.,and the girl elephant tells what happened to the airplane,0 0 0 0 3 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and the lifeguard try/3s to : (rea) get it.,and the lifeguard tries to get it,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and he could not get it.,and he could not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,(and) and they can not get it.,and they can not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and then another lady come/3s.,and then another lady comes,0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and she has a net to get it.,and she has a net to get it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and then : she get/3s it : the : airplane : and (give es) give it to the giraffe.,and then she gets it the airplane and give it to the giraffe,0 0 0 3 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and then : (h) the elephant say/3s : sorry.,and then the elephant says sorry,0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,(um) three : bunny/s are play/ing in : the sandbox.,three bunnies are playing in the sandbox,0 1 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and they are build/ing a castle.,and they are building a castle,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,the boy bunny is pour/ing sand on it.,the boy bunny is pouring sand on it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,(and) : and the castle is broken.,and the castle is broken,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and : they try/ed to fix it.,and they tried to fix it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,they are have/ing a picnic.,they are having a picnic,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and : the boy bunny (is ha) has lot/s of : goody/s.,and the boy bunny has lots of goodies,0 0 0 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and : the bunny is full of food.,and the bunny is full of food,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and he get/3s sick : of the food.,and he gets sick of the food,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and : the doctor come/3s to fix him up.,and the doctor comes to fix him up,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and the girl bunny is pull/ing the doctor : over to the picnic table.,and the girl bunny is pulling the doctor over to the picnic table,0 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and he (fix) fix/ing him.,and he fixing him,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and (he is) he walk/3s : home : with the doctor.,and he walks home with the doctor,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,the girl has (a) a wagon on with a balloon.,the girl has a wagon on with a balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and the boy bunny (h) look/3s at the balloon.,and the boy bunny looks at the balloon,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and (it tie) he (tie/3s) untie/3s it.,and he unties it,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and then it float/3s away.,and then it floats away,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,then the girl bunny is : mad.,then the girl bunny is mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,then : the boy bunny is go/ing to [~_gonna] buy a new balloon.,then the boy bunny is going to buy a new balloon,0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,then : (he) : he buy/3s the balloon.,then he buys the balloon,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,(and) but the balloon/s is[EW:are] fifty cent/s.,but the balloons is fifty cents,0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,he only got[EW:has] one dollar.,he only got one dollar,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and : they (w) are sad.,and they are sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and then : (um) the nurse have|have[EW:has] (um) some money.,and then the nurse have some money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and he is go/ing to (t) pay and have (s) ask : her to have some money.,and he is going to pay and have ask her to have some money,0 0 0 6 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,(and then she) and then she say/3s yes : to buy the balloon.,and then she says yes to buy the balloon,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and (the) he buy|buy[EW:buy/3s] it : the balloon.,and he buy it the balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and they got two balloon/s.,and they got two balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,they are happy.,they are happy,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,(um : that) : that elephant *is sad [EU].,that elephant sad,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,them pun[?] the lady [EU].,them pun the lady,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,the xx [~_sounds_like_/mI/] went in the water.,the went in the water,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and[-:] and try/ing to (help) : help [EU].,and and trying to help,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,say thank you [EU].,say thank you,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,(um) they want go in the water not [EU].,they want go in the water not,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and he get/3s in the water.,and he gets in the water,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and they run from the cow.,and they run from the cow,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and (the guy : fr um) the guy hurt him[EW:his] knee.,and the guy hurt him knee,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and it *is bleed/ing [EU].,and it bleeding,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and : he bite|bite[EW:bit] her.,and he bite her,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and the bandaid [EU].,and the bandaid,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and he say|say[EW:said] bad boy.,and he say bad boy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,bad [EU].,bad,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,tell me the story.,tell me the story,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,bad [EU]!,bad,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,once upon a time.,once upon a time,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,(once : in) : (in the).,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,what can you see there?,what can you see there,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,play/ing a[EW:an] airplane [EU].,playing a airplane,6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,okay.,okay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,(and he) and her dog say|say[EW:said] in the xx.,and her dog say in the,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and he grab|grab[EW:grabbed] airplane her [EU].,and he grab airplane her,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,"and he [~_makes_sound_""grrr""].",and he,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and : her[EW:she] *is sad [EU].,and her sad,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and say hey [EU]!,and say hey,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,"keep go/ing, are you finish/ed that part, okay.",keep going are you finished that part okay,0 6 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and try/ing to get *the airplane [EU].,and trying to get airplane,0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and : xx him[EW:he] *is try/ing [EU].,and him trying,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and them[EW:they] try/ed [trieded|tryEW:tried] to get it back.,and them tried to get it back,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,(um the) (the um) and them[EW:they] got the airplane.,and them got the airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and they (ha) be happy they got the airplane [EU].,and they be happy they got the airplane,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and them[EW:they] *are happy [EU].,and them happy,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,the end [+_bch]!,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,(um) : do not take that xx [+_bch].,do not take that,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,(um) there was a sandbox.,there was a sandbox,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and the boy build|build[EW:built] : *a castle [EU].,and the boy build castle,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,(and the) and (the p) the puppy maked|make[EW:made] [~_make-ed|makeEW:made] a mess.,and the puppy maked a mess,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and the pig you can make it again.,and the pig you can make it again,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,the xx have treat/s.,the have treats,0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and the the doggy ate her sandwich.,and the the doggy ate her sandwich,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,(and the) : and her[EW:she] pull|pull[EW:pulled] [EU].,and her pull,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,(and) : and the puppy drank it.,and the puppy drank it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,(and the) (and) (and) and them[EW:they] fall|fall[EW:fell] in the water.,and them fall in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,(and) : and (the um) : (the ch : uh) : the dog *is with the mommy [EU].,and the dog with the mommy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,them[EW:they] falls|fall[EW:fall][?].,them falls,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and them[EW:they] (um) got (him um) him[EW:his] mom.,and them got him mom,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,the end [+_bch]!,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,(uh) : them[Ew:they] *are pull/ing a wagon [EU].,them pulling a wagon,0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,(and : and it) and (her) them[EW:they] gots[EW:have] something on it.,and them gots something on it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,(and) and the tam[?] it bad [EU].,and the tam it bad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and (and it) : my balloon [EU]!,and my balloon,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,it blew away.,it blew away,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,him[EW:he] say|say[EW:says] [~_makes_noise_'grrr'] : like the dog.,him say like the dog,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and (the) (that) that is where they ran[?] dog/z balloon/s [EU].,and that is where they ran dog's balloons,0 0 0 0 0 0 2 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and : him[EW:he] like/3s the puppy.,and him likes the puppy,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,the balloon *is back [EU].,the balloon back,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,the man (mean) : *is mean [EU].,the man mean,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,the man : *is sad[?] [EU].,the man sad,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and the lady that backed him home [EU].,and the lady that backed him home,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and he *is *a sad boy [EU].,and he sad boy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and they hello [EU].,and they hello,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,(um) : them[EW:they] be happy [EU].,them be happy,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the elephant is bounce/ing a ball.,the elephant is bouncing a ball,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the ball went in the water[-:].,the ball went in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,(uh) the giraffe : swam to (the) get the ball.,the giraffe swam to get the ball,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the : giraffe got the ball and bring|bring[EW:brought] it back to the elephant.,the giraffe got the ball and bring it back to the elephant,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,(the elephant) : the elephant is : (thanks) thank/ing[~!__whispering] [EU].,the elephant is thanking,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,(the elephant) : the elephant want/3s to go swim/ing.,the elephant wants to go swimming,0 0 3 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the elephant ran[-:].,the elephant ran,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the elephant slip/ed.,the elephant slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the elephant (hur) : (hurt her leg) hurt her knee.,the elephant hurt her knee,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,(uh) : giraffe call|call[EW:called] her dad.,giraffe call her dad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,elephant is cry/ing.,elephant is crying,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,elephant has a bandaid now.,elephant has a bandaid now,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,*the guy say/3s : no run/ing [EU].,guy says no running,0 3 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the giraffe has a airplane.,the giraffe has a airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,(the gi) the giraffe is play/ing with it.,the giraffe is playing with it,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the elephant took it.,the elephant took it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the elephant drop/ed it : in the water.,the elephant dropped it in the water,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the giraffe is mad at the elephant.,the giraffe is mad at the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,elephant dad came [EU].,elephant dad came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,elephant : talk/ed to (the elephant) : the girl elephant.,elephant talked to the girl elephant,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the : daddy elephant : reach/ed to get it.,the daddy elephant reached to get it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,giraffe cry/ed.,giraffe cried,0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,(n) mommy elephant came.,mommy elephant came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,(m) mommy elephant got it.,mommy elephant got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,mommy elephant give|give[EW:gave] to the giraffe [EU].,mommy elephant give to the giraffe,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,(giraffe t oh uh) : giraffe hug/ed the airplane.,giraffe hugged the airplane,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,(the bunny) : the bunny : (ma) made a sandcastle.,the bunny made a sandcastle,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,(the) : (the) : the dog : help/ed it.,the dog helped it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,: (the dog was make) the dog was make/ing it straight up.,the dog was making it straight up,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,(the) the bunny is (sh) get/ing some sand.,the bunny is getting some sand,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,(the) : the bunny (pour some um) : pour|pour[EW:poured] some sand on the sandcastle.,the bunny pour some sand on the sandcastle,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the bunny is not happy.,the bunny is not happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the dog fix|fix[EW:fixed] it up.,the dog fix it up,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,(the[-:]) they are go/ing to having[EW:have] a picnic.,they are going to having a picnic,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,they are start/ing eat/ing [EU].,they are starting eating,0 0 6 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the bunny is full.,the bunny is full,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the bunny is (day) : dizzy.,the bunny is dizzy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,a doctor came.,a doctor came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the dog (pull the) : pull|pull[EW:pulled] the doctor.,the dog pull the doctor,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the doctor : (h) help/3s the bunny.,the doctor helps the bunny,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,(the doctor : is) (um the) : the : mother help/3s her son.,the mother helps her son,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,(the do) the dog is (w) walk/ing the wagon with a balloon on it.,the dog is walking the wagon with a balloon on it,0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the bunny is go/ing to[:_gonna] touch it.,the bunny is going to touch it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the bunny untie|untie[EW:unties][-:] the knot.,the bunny untie the knot,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,(the b) the balloon is fly/ing up.,the balloon is flying up,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,(uh) : the dog is mad.,the dog is mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the bunny saw : (a uh) a[EW:an] other bunny with some balloon/s.,the bunny saw a other bunny with some balloons,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,and the bunny said can I have one of them[EW:those] balloon/s?,and the bunny said can I have one of them balloons,0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the man (give a) : (give a) : said : it cost[EW:costs] five dollar/s.,the man said it cost five dollars,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,(they) : they did not have no[EW:any] money.,they did not have no money,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,(they saw) bunny saw (the) his mother.,bunny saw his mother,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the bunny went to his mother.,the bunny went to his mother,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the mother give/3s some money to the man.,the mother gives some money to the man,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the dog and the rabbit : got : balloon/s.,the dog and the rabbit got balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,Once upon a time there was[EW:were] two funny animal/s.,Once upon a time there was two funny animals,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,(their) their ball fall|fall[EW:fell] down through the water.,their ball fall down through the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,he was swim/ing.,he was swimming,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,and : he got the ball.,and he got the ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,now he was happy.,now he was happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,there was no problem.,there was no problem,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,One day (they) they were : happy.,One day they were happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,and they want to go swimming.,and they want to go swimming,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,they *are run/ing to[~?_run_into] the pool [EU].,they running to the pool,0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,(then) then she trip/ed.,then she tripped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,then she got a bruise.,then she got a bruise,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,then (the doctor) : [~_I_mean_I_mean] a lifeguard [EU].,then a lifeguard,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,anything else?,anything else,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,that is it [+_bch].,that is it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,then he was try/ing to help.,then he was trying to help,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,[~_sharp_intake_of_breath] she was feel/ing better.,she was feeling better,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,[~_sharp_intake_of_breath] she should not have done that.,she should not have done that,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,": Once upon a time : [~_makes_'tsk'_sound,_inhales_sharply] his friend just camed|come[EW:came].",Once upon a time his friend just camed,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,(and) : (an) and she was happy to play right now[!].,and she was happy to play right now,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,(and) and then he play|play[EW:played] with his airplane.,and then he play with his airplane,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,: then she just take|take[EW:took] it away.,then she just take it away,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,now it is in the water.,now it is in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,he was so mad.,he was so mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,(he) : then the lifeguard came.,then the lifeguard came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,she ask/ed about : what happen/ed.,she asked about what happened,0 4 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,the lifeguard try/3s to reach it.,the lifeguard tries to reach it,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,: he was so : sad.,he was so sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,(then) : then : the other girl just got a net.,then the other girl just got a net,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,then she got it.,then she got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,(she w) : he was very please/ed.,he was very pleased,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,he like/ed it so much.,he liked it so much,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,Once upon a time : they were play/ing on the sandbox [EU].,Once upon a time they were playing on the sandbox,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,they are both make/ing a sandcastle.,they are both making a sandcastle,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,he pour/ed the whole thing.,he poured the whole thing,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,one *of them did not liked|like[EW:like] it [EU].,one them did not liked it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,then they wreck/ed it.,then they wrecked it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,(then) then the other person cry/ed.,then the other person cried,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,One day they were walk/ing in the forest.,One day they were walking in the forest,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,then they were have/ing a picnic.,then they were having a picnic,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,one of them were[EW:was] too full.,one of them were too full,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,one of them have|have[EW:had] a tummyache.,one of them have a tummyache,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,they ask/ed : (her) (some) the doctor.,they asked the doctor,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,I know what this mean/3s [+_bch].,I know what this means,0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,he ask/ed.,he asked,0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,and : (he have|have[EW:has] a tummyache) the bunny have[EW:has] a tummyache.,and the bunny have a tummyache,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,because [~_whispers] I can see xx [+_bch].,because I can see,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,the bunny said (um) are you okay?,the bunny said are you okay,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,(then) then she feel|feel[EW:felt] good.,then she feel good,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,Once upon a time : one of them have|have[EW:had] (a) a balloon (and[!]) and (a) a wagon.,Once upon a time one of them have a balloon and a wagon,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,he like/ed it.,he liked it,0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,then he was try/ing to[:_tryna] unloose it [EU].,then he was trying to unloose it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,then it was gone.,then it was gone,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,now he was mad.,now he was mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,they sawed|see[EW:saw] balloon/s.,they sawed balloons,0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,: he said can I have a balloon please?,he said can I have a balloon please,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,(and) : and he like/ed it.,and he liked it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,(then) then they ask/ed.,then they asked,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,then both of them were sad.,then both of them were sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,then they ask/ed the doctor how much : *do you[!] have [EU].,then they asked the doctor how much you have,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,"they ask/ed : we want one balloon, please.",they asked we want one balloon please,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,the man said : yes.,the man said yes,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,then they both like/ed it.,then they both liked it,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,one day at the swimming pool : Elephant went over there.,one day at the swimming pool Elephant went over there,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,and she brought her balloon.,and she brought her balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,she was bouncing it when : Giraffe came : over.,she was bouncing it when Giraffe came over,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,: he ask/ed if he could play it [EU].,he asked if he could play it,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,but then : it scare/ed Elephant.,but then it scared Elephant,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,so she drop/ed the ball in : the pool.,so she dropped the ball in the pool,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,: Elephant did not know what to do.,Elephant did not know what to do,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,(so she a) so Giraffe want/ed to help.,so Giraffe wanted to help,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,he : jump/ed into the water : until he swam close to the balloon.,he jumped into the water until he swam close to the balloon,0 4 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,: he brought up : the ball : to Elephant.,he brought up the ball to Elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,Elephant was really please/ed that Giraffe help/ed him : find her ball : in the water.,Elephant was really pleased that Giraffe helped him find her ball in the water,0 0 0 4 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,one day at the swimming pool Elephant and Giraffe want/ed to go in the water to go swim/ing.,one day at the swimming pool Elephant and Giraffe wanted to go in the water to go swimming,0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,: Elephant want/ed to go on the jump/ing board.,Elephant wanted to go on the jumping board,0 4 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,she ran until she (fe) slip/ed on some water and fell.,she ran until she slipped on some water and fell,0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,she cry/ed really loudly.,she cried really loudly,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,Giraffe came.,Giraffe came,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,: the lifeguard saw it.,the lifeguard saw it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,so he came along.,so he came along,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,he quickly got out a bandage and put it on Elephant.,he quickly got out a bandage and put it on Elephant,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,the lifeguard help/ed her up and put her on the bench.,the lifeguard helped her up and put her on the bench,0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,then the lifeguard told her that you can not run : in the swimming pool.,then the lifeguard told her that you can not run in the swimming pool,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,when Giraffe came to the pool : Elephant (ss) saw him.,when Giraffe came to the pool Elephant saw him,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,he had brought his new airplane toy.,he had brought his new airplane toy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,(hh) he show/ed her how : it could move.,he showed her how it could move,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,Elephant like/ed it a lot.,Elephant liked it a lot,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,she grab/ed it from Giraffe.,she grabbed it from Giraffe,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,but then : she accidentally drop/ed it.,but then she accidentally dropped it,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,Giraffe was really mad that she drop/ed it in the water : and was go/ing farther away [EU].,Giraffe was really mad that she dropped it in the water and was going farther away,0 0 0 0 0 0 4 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,then the lifeguard came along.,then the lifeguard came along,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,: Elephant told him what had happen/ed : and ask/ed if (they) he could help them reach it.,Elephant told him what had happened and asked if he could help them reach it,0 0 0 0 0 4 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,the lifeguard try/ed very hard.,the lifeguard tried very hard,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,but he could not reach it.,but he could not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,Giraffe was really sad until : they saw another[!] : elephant come/ing along.,Giraffe was really sad until they saw another elephant coming along,0 0 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,(she kne) (thin) she thought she knew what happen/ed.,she thought she knew what happened,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,so she try/ed : to get out the airplane with her : net.,so she tried to get out the airplane with her net,0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,finally she got it out and gave it to Giraffe.,finally she got it out and gave it to Giraffe,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,Giraffe was please/ed.,Giraffe was pleased,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,and Elephant was happy that : he got it back.,and Elephant was happy that he got it back,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,a rabbit want/ed to help : a dog that made a sandcastle to finish it [EU].,a rabbit wanted to help a dog that made a sandcastle to finish it,0 0 4 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,: and then : he : got a sandbox and put sand in it.,and then he got a sandbox and put sand in it,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,the dog was already done.,the dog was already done,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,but the rabbit took the bucket and pour/ed the sand on the sandcastle.,but the rabbit took the bucket and poured the sand on the sandcastle,0 0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,(the cat uh) the rabbit was surprise/ed : what happen/ed [EU].,the rabbit was surprised what happened,0 0 0 4 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,he made the sandcastle fall down and turn/ed into a big clump like a mountain [EU].,he made the sandcastle fall down and turned into a big clump like a mountain,0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,the dog try/ed to make it over again.,the dog tried to make it over again,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,but it did not work.,but it did not work,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,Dog was plan/ing a picnic with Rabbit.,Dog was planning a picnic with Rabbit,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,: Rabbit took out his food : Dog saw that he had pack/ed too many thing/s.,Rabbit took out his food Dog saw that he had packed too many things,0 0 0 0 0 0 0 0 0 0 4 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,Rabbit ate too much.,Rabbit ate too much,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,and his tummy was full.,and his tummy was full,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,and he got sick.,and he got sick,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,and then he felt : really bad.,and then he felt really bad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,Dog want/ed to help.,Dog wanted to help,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,: a nurse was walk/ing on the road.,a nurse was walking on the road,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,Dog quickly ran to the nurse.,Dog quickly ran to the nurse,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,come!,come,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,my friend has got a big tummyache.,my friend has got a big tummyache,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,I can help said the nurse.,I can help said the nurse,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,he check/ed the body temperature.,he checked the body temperature,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,but then she knew that he was really sick.,but then she knew that he was really sick,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,but later soon he got better.,but later soon he got better,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,and he got back up.,and he got back up,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,and Dog was really happy that : he : was not sick anymore.,and Dog was really happy that he was not sick anymore,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,one day Dog was go/ing out with his wagon with a balloon tie/ed on it.,one day Dog was going out with his wagon with a balloon tied on it,0 0 0 0 6 0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,Rabbit came along.,Rabbit came along,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,Rabbit like/ed the balloon very much.,Rabbit liked the balloon very much,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,he try/ed to take it off : and want/ed to keep it.,he tried to take it off and wanted to keep it,0 4 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,when he took it off the balloon flew up in the sky.,when he took it off the balloon flew up in the sky,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,Dog was mad because they could not catch it.,Dog was mad because they could not catch it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,then there was a balloon man.,then there was a balloon man,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,Rabbit went over to the balloon man.,Rabbit went over to the balloon man,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,can I have a balloon he ask/ed?,can I have a balloon he asked,0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,each balloon is five dollar/s : the man said.,each balloon is five dollars the man said,0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,they did not have any money.,they did not have any money,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,so they were sad.,so they were sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,but then they saw the nurse that had money.,but then they saw the nurse that had money,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,they ask/ed her if : they could : (borrow some of h) use (one of) some of her money : to buy two balloon/s.,they asked her if they could use some of her money to buy two balloons,0 4 0 0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,the nurse gave him five dollar/s : (for each : of) for one for rabbit and one for dog.,the nurse gave him five dollars for one for rabbit and one for dog,0 0 0 0 0 1 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,: they were really happy and said thank yous[EW:you].,they were really happy and said thank yous,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,The : elephant is : bounce/ing a ball.,The elephant is bouncing a ball,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,and the : giraffe : is say/ing : you are play/ing with a ball I think.,and the giraffe is saying you are playing with a ball I think,0 0 0 0 6 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,I guess the giraffe by accidentally knock/ed the : ball into the pool.,I guess the giraffe by accidentally knocked the ball into the pool,0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the giraffe is : swim/ing : for the ball.,the giraffe is swimming for the ball,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the giraffe get/3s[!] the ball for the elephant : and give/3s it to the elephant.,the giraffe gets the ball for the elephant and gives it to the elephant,0 0 3 0 0 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the elephant I guess like/3s[!] the[-:] giraffe now : I think.,the elephant I guess likes the giraffe now I think,0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,(Uh) : I guess the elephant and the giraffe are go/ing to[:__gonna] : go : in[!] the pool.,I guess the elephant and the giraffe are going to go in the pool,0 0 0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the elephant is run/ing : toward the pool.,the elephant is running toward the pool,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the elephant slip/3s.,the elephant slips,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the elephant hurt : his : knee.,the elephant hurt his knee,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,and then the : giraffe is try/ing to get help I think.,and then the giraffe is trying to get help I think,0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the[-:] giraffe call/ed for help.,the giraffe called for help,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,and the lifeguard is come/ing.,and the lifeguard is coming,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the lifeguard is put/ing a : bandaid on : the elephant/z leg : or wound.,the lifeguard is putting a bandaid on the elephant's leg or wound,0 0 0 6 0 0 0 0 2 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,they[-:] get the elephant to sit on a bench.,they get the elephant to sit on a bench,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the : lifeguard is (say/ing) point/ing to the sign : no run/ing.,the lifeguard is pointing to the sign no running,0 0 0 6 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,and the elephant is like whoopsies.,and the elephant is like whoopsies,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,(uh) : the : elephant : is talk/ing to the giraffe.,the elephant is talking to the giraffe,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the giraffe has a[EW:an] airplane and is play/ing with it.,the giraffe has a airplane and is playing with it,0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the elephant steal/3s[!] the[-:] airplane away[!] from the giraffe.,the elephant steals the airplane away from the giraffe,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the : elephant : (uh) I guess drop/ed the airplane into the pool.,the elephant I guess dropped the airplane into the pool,0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the giraffe is mad at the elephant.,the giraffe is mad at the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,and the[-:] plane is sink/ing.,and the plane is sinking,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the lifeguard is[-:] wonder/ing what happen/ed.,the lifeguard is wondering what happened,0 0 0 6 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,and the : elephant is like what ?,and the elephant is like what,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the elephant is explain/ing what happen/ed to the lifeguard.,the elephant is explaining what happened to the lifeguard,0 0 0 6 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the lifeguard is try/ing to reach for the[-:] airplane.,the lifeguard is trying to reach for the airplane,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the lifeguard : gave up.,the lifeguard gave up,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,and the[-:] giraffe is cry/ing.,and the giraffe is crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,(a pers) an elephant I guess : came with a[-:] net.,an elephant I guess came with a net,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,she is scoop/ing the airplane out.,she is scooping the airplane out,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the elephant gave the[-:] airplane back to the[-:] : giraffe.,the elephant gave the airplane back to the giraffe,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the giraffe is[-:] happy.,the giraffe is happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,and the[-:] elephant is happy.,and the elephant is happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,(uh) the father is a rabbit.,the father is a rabbit,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,and : the kid is make/ing a : sandcastle in a sandbox.,and the kid is making a sandcastle in a sandbox,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,and the father say/3s (wow) nice castle.,and the father says nice castle,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,then the father help/3s : the son (make/3s) make the sandcastle.,then the father helps the son make the sandcastle,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the father dump/3s all[!] the sand on the castle.,the father dumps all the sand on the castle,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,I : think that is the father.,I think that is the father,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the father (I guess) made all the sand : into just a big pile.,the father made all the sand into just a big pile,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the kid try/3s to rebuild it.,the kid tries to rebuild it,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,but : it is like a little bit too mess/ed up.,but it is like a little bit too messed up,0 0 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,they are go/ing for a picnic : the[-:] two rabbit/s.,they are going for a picnic the two rabbits,0 0 6 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,they sit down.,they sit down,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,and one of the rabbit[EW:rabbits] is (are re) is really hungry.,and one of the rabbit is is really hungry,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,so he unpack/ed his stuff really fast.,so he unpacked his stuff really fast,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,and I guess he is eat/ing a carrot.,and I guess he is eating a carrot,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,(and) : [~_I_do_n(o)t_know_what_that_is].,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the guy that ate all that food really fast is really : lazy now I guess.,the guy that ate all that food really fast is really lazy now I guess,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,and then : he is really just lay/ing down try/ing to : get up.,and then he is really just laying down trying to get up,0 0 0 0 0 0 6 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,[~_I_cannot_tell_what_that_is].,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,[~_but] the[-:] guy ate that all the food (is) has got up now.,the guy ate that all the food has got up now,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,and the doctor came.,and the doctor came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,and the person that did not eat all their stuff really fast (um) got the doctor.,and the person that did not eat all their stuff really fast got the doctor,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,and then : I guess he is bring/ing him over.,and then I guess he is bringing him over,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,he is drag/ing him over to : meet the : guy that ate all his food up really fast.,he is dragging him over to meet the guy that ate all his food up really fast,0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the doctor check/3s the guy that ate all the food really : fast.,the doctor checks the guy that ate all the food really fast,0 0 3 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the doctor take/3s away the : rabbit : I guess.,the doctor takes away the rabbit I guess,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,(um) the rabbit is come/ing to play with the other rabbit.,the rabbit is coming to play with the other rabbit,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the rabbit that came is : say/ing hey a balloon.,the rabbit that came is saying hey a balloon,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the guy is try/ing to fix the balloon or take it off.,the guy is trying to fix the balloon or take it off,0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,it was tooken|take[EW:taken] off.,it was tooken off,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,and then the balloon sail/3s away.,and then the balloon sails away,0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the guy that had the balloon is really mad at the guy that took off the balloon.,the guy that had the balloon is really mad at the guy that took off the balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,they see a guy sell/ing balloon/s.,they see a guy selling balloons,0 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the guy that I guess : let go of the balloon is go/ing to buy one balloon for his friend again.,the guy that I guess let go of the balloon is going to buy one balloon for his friend again,0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,(uh) he has no money.,he has no money,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,so : it is five cent/s for a balloon.,so it is five cents for a balloon,0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,so I guess he can not pay for it.,so I guess he can not pay for it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,(uh) they ask him if they can have a balloon for free I guess.,they ask him if they can have a balloon for free I guess,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,(they ask the doctor if they) they go to the doctor.,they go to the doctor,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,and : I guess they are go/ing to ask him (something) for money I guess.,and I guess they are going to ask him for money I guess,0 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,they ask the doctor (if they can buy) if he can buy a balloon : for them.,they ask the doctor if he can buy a balloon for them,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the doctor buy/3s a balloon for both[!] of them.,the doctor buys a balloon for both of them,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,they are both happy.,they are both happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,and the doctor is : also happy.,and the doctor is also happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,once there was an (elephant and a) an elephant and a giraffe.,once there was an an elephant and a giraffe,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,one day the (eleph) the elephant was play/ing with a ball by the pool.,one day the the elephant was playing with a ball by the pool,0 0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and the giraffe came along.,and the giraffe came along,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and the giraffe said can I play?,and the giraffe said can I play,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and the elephant said sure.,and the elephant said sure,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,so the giraffe start/ed to bounce it.,so the giraffe started to bounce it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and it fell into the water.,and it fell into the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,(so) and then the elephant start/ed to cry.,and then the elephant started to cry,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,so the giraffe jump/ed in and start/ed to swim to get it.,so the giraffe jumped in and started to swim to get it,0 0 0 4 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,he got it.,he got it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and he gave it back to the elephant.,and he gave it back to the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and then the elephant was really happy.,and then the elephant was really happy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,(One) the next day the elephant (went swim/ing again) went swim/ing again.,the next day the elephant went swimming again,0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,so the elephant was go/ing to jump in.,so the elephant was going to jump in,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,but then she slip/ed : and hurt her knee.,but then she slipped and hurt her knee,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,then the lifeguard came along : and put a bandaid on it.,then the lifeguard came along and put a bandaid on it,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,it was a huge scratch.,it was a huge scratch,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and the giraffe said are you okay?,and the giraffe said are you okay,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and then the lifeguard (told) show/ed the elephant the sign that said no run/ing.,and then the lifeguard showed the elephant the sign that said no running,0 0 0 0 4 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,The next day they went swim/ing again.,The next day they went swimming again,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and the elephant told the giraffe a new game they could play : with the giraffe/z (a) airplane.,and the elephant told the giraffe a new game they could play with the giraffe's airplane,0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,the giraffe put the airplane high in the air.,the giraffe put the airplane high in the air,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,then the elephant grab/ed it from him and was go/ing to [~_gonna] fly it on his own.,then the elephant grabbed it from him and was going to fly it on his own,0 0 0 4 0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,then it fell into the water.,then it fell into the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,the giraffe got so[!] mad at the elephant.,the giraffe got so mad at the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,the lifeguard came along and said what is all the fuss about?,the lifeguard came along and said what is all the fuss about,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and the elephant (told) explain/ed that she had : put the airplane in the water.,and the elephant explained that she had put the airplane in the water,0 0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,so the lifeguard try/ed to reach over.,so the lifeguard tried to reach over,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,but it was just too far.,but it was just too far,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,(so then) so then the lifeguard told her (he) she could not get it.,so then the lifeguard told her she could not get it,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and the giraffe start/ed to cry.,and the giraffe started to cry,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,then[!] another elephant came along with a net[!] : and scoop/ed it out.,then another elephant came along with a net and scooped it out,0 0 0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,the giraffe was so happy.,the giraffe was so happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,(and) (and sh) and he hug/ed and hugged the airplane.,and he hugged and hugged the airplane,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,one day (um) a rabbit was play/ing in the sandbox.,one day a rabbit was playing in the sandbox,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and another rabbit came along and ask/ed can I play?,and another rabbit came along and asked can I play,0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,(so the two rabbit/s start/ed) so the first rabbit said sure.,so the first rabbit said sure,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,so they start/ed to build a sandcastle.,so they started to build a sandcastle,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,they built and built for hour/s and hour/s.,they built and built for hours and hours,0 0 0 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and then the second rabbit broke it with too much sand.,and then the second rabbit broke it with too much sand,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and then (the) that first rabbit start/ed to cry.,and then that first rabbit started to cry,0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and the second rabbit felt really bad.,and the second rabbit felt really bad,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,(then the next) and so (um) after (the next) that day that the second rabbit : broke the sandcastle the (first ra) first rabbit felt much better.,and so after that day that the second rabbit broke the sandcastle the first rabbit felt much better,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and then they went out for a walk together.,and then they went out for a walk together,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and then they stop/ed for a picnic.,and then they stopped for a picnic,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,the (s) first rabbit thought the second rabbit was a big pig.,the first rabbit thought the second rabbit was a big pig,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and then the second rabbit got a huge stomachache.,and then the second rabbit got a huge stomachache,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,then : this first rabbit saw a doctor.,then this first rabbit saw a doctor,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and (she) she ran over tell him about the second rabbit.,and she ran over tell him about the second rabbit,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,(and she) and she pull/ed (him over) her over to the second rabbit.,and she pulled her over to the second rabbit,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,(and then the s) and then the doctor (te) told the second rabbit not to eat so much next time.,and then the doctor told the second rabbit not to eat so much next time,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and so she brung|bring[EW:brought] him: home so he could go to sleep.,and so she brung him home so he could go to sleep,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,so (one) the next day : the first rabbit was on a walk with his balloon.,so the next day the first rabbit was on a walk with his balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and the second rabbit ran up to say hi.,and the second rabbit ran up to say hi,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,the second rabbit said what a beautiful balloon.,the second rabbit said what a beautiful balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and the first rabbit said stop stop because the second rabbit was untie/ing the balloon from her wagon.,and the first rabbit said stop stop because the second rabbit was untying the balloon from her wagon,0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,suddenly it float/ed up up up.,suddenly it floated up up up,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,the first rabbit yell/ed come back balloon.,the first rabbit yelled come back balloon,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,then the first rabbit got so mad at the second rabbit.,then the first rabbit got so mad at the second rabbit,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,but then there was a balloon seller.,but then there was a balloon seller,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,(and : gave) and the (f) second rabbit went over to the balloon seller.,and the second rabbit went over to the balloon seller,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and he bought[!] one of the other balloon/s.,and he bought one of the other balloons,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,(and then he gave) (and then) but then he had no money.,but then he had no money,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,so then the first rabbit came along.,so then the first rabbit came along,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and then they saw the doctor again they had saw the other day.,and then they saw the doctor again they had saw the other day,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,(and they told them abou) and the second rabbit told : her about the balloon/s.,and the second rabbit told her about the balloons,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and she bought two balloon/s for the kid/s.,and she bought two balloons for the kids,0 0 0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and then they were really happy.,and then they were really happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and the second rabbit did not ever let his go.,and the second rabbit did not ever let his go,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,once there were[EW:was] a giraffe and an elephant.,once there were a giraffe and an elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,they were play/ing with the ball.,they were playing with the ball,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and it fell in the water.,and it fell in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,the giraffe try/ed to go get it.,the giraffe tried to go get it,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and he did[-:].,and he did,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and the elephant : was happy.,and the elephant was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,once there were[EW:was] a giraffe and an elephant.,once there were a giraffe and an elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and they want/ed to go on the diving board.,and they wanted to go on the diving board,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,they ran[-:] to it.,they ran to it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and the elephant slip/ed and scrape/ed her knee[-:].,and the elephant slipped and scraped her knee,0 0 0 4 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,the lifeguard came.,the lifeguard came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,(and) (and she pu) and he put a bandaid on it.,and he put a bandaid on it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and she was all better.,and she was all better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and (then she had) (and then she had to s) and then she sat down[-:].,and and then she sat down,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,once there were[EW:was] : an elephant and a giraffe.,once there were an elephant and a giraffe,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and the giraffe had an airplane[-:].,and the giraffe had an airplane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and the elephant took it.,and the elephant took it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and it fell in the water.,and it fell in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,the giraffe was mad at the elephant.,the giraffe was mad at the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and then the lifeguard came[-:].,and then the lifeguard came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,(he) (the elephant said to the : lifeguard) he try/ed to reach it.,he tried to reach it,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,but he could not.,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,then another lifeguard came[-:] : with a net.,then another lifeguard came with a net,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,she scoop/ed it out.,she scooped it out,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and the giraffe was happy.,and the giraffe was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,once (there were : some) (there was) (there were bunny/s) there were[EW:was] a bunny and a dog.,once there were a bunny and a dog,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,(and they were) and the dog was build/ing a sandcastle[-:].,and the dog was building a sandcastle,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and the bunny got some sand[-:].,and the bunny got some sand,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and he pour/ed it on the castle[-:].,and he poured it on the castle,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and it broke.,and it broke,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,the dog try/ed to make it again[-:].,the dog tried to make it again,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,once there was a bunny and a dog[-:].,once there was a bunny and a dog,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,they went for a picnic.,they went for a picnic,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,the bunny ate all the stuff.,the bunny ate all the stuff,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and he got a tummyache.,and he got a tummyache,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,then the mom came.,then the mom came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,(and) and then she told : that the bunny (was) had a (tum) stomachache [EU].,and then she told that the bunny had a stomachache,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and the mom try/ed to fix it.,and the mom tried to fix it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and she did.,and she did,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,there was a dog and a rabbit.,there was a dog and a rabbit,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and they had a balloon.,and they had a balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and the bunny want/ed to have it.,and the bunny wanted to have it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,the bunny try/ed to take it off[-:].,the bunny tried to take it off,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and he did.,and he did,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and it flew away[-:].,and it flew away,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,the dog was mad[-:].,the dog was mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,they saw some more balloon/s[-:].,they saw some more balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,they decide/ed to buy one.,they decided to buy one,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,but it was five[-:] dollar/s.,but it was five dollars,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and they wait/ed.,and they waited,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and then the mom came.,and then the mom came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and then he ask/ed (if they) (if she) if she had any money.,and then he asked if she had any money,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and they got one.,and they got one,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and then they had their own balloon/s.,and then they had their own balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(uh : um uh : uh) a boy and a girl.,a boy and a girl,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(oh uh she) (she try to) : a water there.,a water there,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(and he) and (a) two friend/s are friend/s.,and two friends are friends,0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,a (ball) ball (fe) fell in the water.,a ball fell in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,a (donkey) donkey (uh um sw) swim in the water : and (catch) catch the ball [EU].,a donkey swim in the water and catch the ball,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,a (donkey) donkey catch it and swim all back : (xxx) and (pick) pick a ball and to his donkey his hand/s [EU].,a donkey catch it and swim all back and pick a ball and to his donkey his hands,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(then) (then) then (don key[-:] get/ing) (donkey : get/ing) donkey (get) get (a) (at) (a) (a) (a) (a) a water [EU].,then donkey get a water,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,a donkey and a[EW:an] elephant : (uh) are show[?] the water [EU].,a donkey and a elephant are show the water,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,and one (want) (want) want (get) get in the water [EU].,and one want get in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,I do not know how.,I do not know how,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,a[EW:an] (elephant) (elephant) (elephant) elephant got (a) a[EW:an] idea.,a elephant got a idea,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,I (saw) saw something.,I saw something,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,: (uh and) and something (jump) jump|jump[EW:jumped] on (d) it.,and something jump on it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,then : (el) elephant want/3s that (uh jump) jump in the water [EU].,then elephant wants that jump in the water,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(elephant) (elephant) elephant (hur) hurt|hurt[EW:hurts] hisself[EW:himself].,elephant hurt hisself,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(uh) cry[?] [EU].,cry,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,and somebody come|come[EW:came].,and somebody come,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,somebody : (a : uh) another elephant.,somebody another elephant,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(another) another elephant (put) put a bandaid on.,another elephant put a bandaid on,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(another) (another) another elephant[-:] is (re[-:] ) (real mad) (mad uh) real mad at another one.,another elephant is real mad at another one,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(um) : a donkey and a[EW:an] elephant [EU].,a donkey and a elephant,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(elephant) (elephant) elephant (ss) see|see[EW:saw] something donkey *was hold/ing [EU].,elephant see something donkey holding,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,the airplane.,the airplane,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(I grab) (I grab) I grab I (see) see xx and play with it [EU].,I grab I see and play with it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,I (get) *will get in the water [EU].,I get in the water,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,and (donkey) (donkey) donkey get|get[EW:got] real mad.,and donkey get real mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,another elephant come|come[EW:came] along.,another elephant come along,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,and another elephant (and talk) talk|talk[EW:talked] all (about thing[?]) : about they have thing[?] [EU].,and another elephant talk all about they have thing,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(another) another elephant (um um) got (a) a[EW:an] idea.,another elephant got a idea,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(uh which) (which) which airplane [EU].,which airplane,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,and no luck.,and no luck,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,and (uh plane) plane *is in the water [EU].,and plane in the water,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,another elephant came along : and got a net!,another elephant came along and got a net,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(ah another) (another elephant) another elephant (uh uh try) try|try[EW:tried] *to reach[!] that [EU].,another elephant try reach that,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(and) (and) (and) (and) and (sh) she did it.,and she did it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(uh) got the plane back [EU].,got the plane back,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(uh donkey) (donkey) (donkey) (donkey) donkey (we) we sure *are happy [EU].,donkey we sure happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,a rabbit (and) (and) and somebody else : are (saw) (saw) saw each other [EU].,a rabbit and somebody else are saw each other,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,they play in the sandbox.,they play in the sandbox,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(rabbit) (rabbit) rabbit (got) (got) got a (basket) whole bunch of sand.,rabbit got a whole bunch of sand,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(another) (another) another person (build) build a castle [EU].,another person build a castle,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(and) : and (ca) (castle) (castle) (castle) (castle) (castle is uh) he pour/ed a whole bunch of sand in there.,and he poured a whole bunch of sand in there,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(another) (another) another person is sad.,another person is sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,Rabbit (and) and somebody else [EU].,Rabbit and somebody else,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,and (she) : (she) (she) she try/ed it again.,and she tried it again,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,a guy go[EW:went] somewhere picnic [EU].,a guy go somewhere picnic,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,a (rabbit) (rabbit) rabbit (got) got whole bunch of stuff : (and) and (the) (the) (the uh) (um) (in the) (in the) (in the um) in the basket [EU].,a rabbit got whole bunch of stuff and in the basket,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(uh : uh rabbit) (rabbit) (rabbit) rabbit (ate) (eat) (eat) eat|eat[EW:ate] too much : and (get) (get) (get) (get) get|get[EW:got] a tummyache.,rabbit eat too much and get a tummyache,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(and another) and another person (a saw) saw somebody (get) get her (a rabbit) (a) a doctor.,and another person saw somebody get her a doctor,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(another) another person[-:] (get) (get) (get) (get uh) (get uh uh) (get) get|get[EW:got] a doctor.,another person get a doctor,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,and (doctor) (doctor she) (she) (she) (she) another rabbit was sick.,and another rabbit was sick,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(another) (another rabbit) another rabbit (um talk) talk|talk[EW:talked].,another rabbit talk,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(oh) but (I c) (he is um) (he is) (uh doctor) (doctor) doctor (say) say[EW:said] come here.,but doctor say come here,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,I will (walk) walk all[!] back [EU].,I will walk all back,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,a (rabbit) rabbit (and) and somebody else [EU].,a rabbit and somebody else,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,and (she) (she) (she) (she) (she uh) (uh she) (she) (she) (she) she tire/ed[?] again [EU].,and she tired again,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,I (saw an) a (rabbit) rabbit (saw) saw somebody/z balloon [EU].,I a rabbit saw somebody's balloon,0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(rabbit) (rabbit) (ra) (rabbit) (rabbit) rabbit (see) see[-:] balloon (saw) saw knot that there too and (try/ed) (try/ed) try/ed (get) get knot out loose[!] [EU].,rabbit see balloon saw knot that there too and tried get knot out loose,0 0 0 0 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,and (get) get|get[EW:got] more looser and more looser [EU].,and get more looser and more looser,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,and (still) : still more looser[EW:loose].,and still more looser,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,ah ah no not there!,ah ah no not there,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(balloon) (balloon) (balloon) (balloon) balloon (float) float|float[EW:floated] away (up) up to in (the) the sky [EU].,balloon float away up to in the sky,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,another person[-:] (uh sh) (uh we) (we) (we) (we) (we get) (get) get|get[EW:got] real mad : at the rabbit.,another person get real mad at the rabbit,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(rabbit) rabbit (she) she saw body (and) and (talk) (talk) (talk) (talk) (talk) talk somebody [EU].,rabbit she saw body and talk somebody,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(say) (say) (say uh um) (say) say you there (I want) (I want) (I want) (I want two) (two ba) I want one balloon.,say you there I want one balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(a got) got one balloon (cost) cost five dollar/s [EU].,got one balloon cost five dollars,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,I (do not) do not have the money.,I do not have the money,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,and (rabbit) (rabbit) (rabbit) rabbit get|get[EW:got] so mad.,and rabbit get so mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(another) person (come) come along real fast.,person come along real fast,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(she) (she) (she) (sh) another person (say) (say) (say) say[EW:said] (please) (please) (please) please I want *a balloon.,another person say please I want balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,I just talk[EW:talked] about this[?].,I just talk about this,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,I got[EW:have] money.,I got money,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,another person (uh rabbit) rabbit show|show[EW:showed] somebody.,another person rabbit show somebody,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,you a doctor [EU].,you a doctor,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(doctor) (doctor) (doctor rabbit) and doctor (rabbit) (rabbit) rabbit (tell) tell xx somebody [EU].,and doctor rabbit tell somebody,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(I got) [~_whispers] : I got[EW:have] money : the doctor say|say[EW:said].,I got money the doctor say,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,I (got) (got) (got) got (two) two balloon/s.,I got two balloons,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,once Giraffe and Elephant were[aux] play/ing ball.,once Giraffe and Elephant were playing ball,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,Elephant accidentally threw[ip] the ball in the water[!].,Elephant accidentally threw the ball in the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,: Horse went[ip] to get it : [~_I_mean] (Giraffe).,Horse went to get it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,(um) then : Horse (uh) : gave[ip] the ball to : Elephant.,then Horse gave the ball to Elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,(and they both got out) and Giraffe got[ip] out of the water.,and Giraffe got out of the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,: and [+_bch] [+..].,and,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,one[!] day Giraffe and Elephant were[aux] play/ing beside the water[!].,one day Giraffe and Elephant were playing beside the water,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,Elephant[!] : was[aux] go/ing to : go in the water.,Elephant was going to go in the water,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,then she slip/ed : and fell?,then she slipped and fell,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,she had[ip] a big scar.,she had a big scar,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,and it was[aux] (really) really hurt/ing.,and it was really hurting,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,so Giraffe went[ip] to go get some help.,so Giraffe went to go get some help,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,Elephant was[aux] cry/ing.,Elephant was crying,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,so : Giraffe got[ip] the lifeguard.,so Giraffe got the lifeguard,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,she was[aux] cry/ing lot/s.,she was crying lots,0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,and the lifeguard put a bandage on it so it would[modal] feel better.,and the lifeguard put a bandage on it so it would feel better,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,she could[modal] not walk that good.,she could not walk that good,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,so Giraffe and the lifeguard help/ed her home.,so Giraffe and the lifeguard helped her home,0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,the lifeguard point/ed to the sign *that [EMORPH] *said[ip] [EV] no running [EU].,the lifeguard pointed to the sign no running,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,and that taught[ip] her a lesson.,and that taught her a lesson,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,once : Giraffe and Elephant were[aux] play/ing with : Giraffe/z (out) airplane.,once Giraffe and Elephant were playing with Giraffe's airplane,0 0 0 0 0 6 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,Giraffe was[aux] fly/ing it high[-:] : and over : Elephant/z head.,Giraffe was flying it high and over Elephant's head,0 0 6 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,so Elephant took[ip] it from Giraffe.,so Elephant took it from Giraffe,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,she accidentally threw[ip] it in the water[!].,she accidentally threw it in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,Giraffe cwas[cop] (really) really mad at : Elephant.,Giraffe cwas really mad at Elephant,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,the lifeguard came[ip] : and : was[aux] go/ing to get it out.,the lifeguard came and was going to get it out,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,so they explain/ed to him : what happen/ed (and) so he can[modal] get it out.,so they explained to him what happened so he can get it out,0 0 4 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,so : he was[aux] try/ing to reach for it.,so he was trying to reach for it,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,but he could[modal] not reach it.,but he could not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,so : the lady lifeguard came[ip] with a net : and scoop/ed up the airplane : gave[ip] it back to Giraffe.,so the lady lifeguard came with a net and scooped up the airplane gave it back to Giraffe,0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,and Giraffe cwas[cop] happy as can[modal] be.,and Giraffe cwas happy as can be,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,once there cwas[cop] (a) (a rabbit and a) [~_no] a girl rabbit and a : girl dog.,once there cwas a girl rabbit and a girl dog,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,they cwere[cop] really best friend/s.,they cwere really best friends,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,and they were[aux] play/ing in the sandbox together make/ing a : sandcastle.,and they were playing in the sandbox together making a sandcastle,0 0 0 6 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,then : the : girl bunny dump/ed a whole bunch of sand on the sandcastle.,then the girl bunny dumped a whole bunch of sand on the sandcastle,0 0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,then : (she) (she um) : she got[ip] mad at herself because : she accidentally ruin/ed the whole thing[!].,then she got mad at herself because she accidentally ruined the whole thing,0 0 0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,and then Dog start/3s cry/ing.,and then Dog starts crying,0 0 0 3 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,Bunny was[aux] look/ing up and : feel/ing (ba) embarrassed.,Bunny was looking up and feeling embarrassed,0 0 6 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,(as bunny and) as Bunny and Dog walk/ed down the : street with their : basket/s : they walk/ed along and : had[ip] a picnic.,as Bunny and Dog walked down the street with their baskets they walked along and had a picnic,0 0 0 0 4 0 0 0 0 0 1 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,while they were have/ing a picnic : Rabbit ate[ip] (all) most of the food.,while they were having a picnic Rabbit ate most of the food,0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,Rabbit got[ip] full and had swirl/s around his head.,Rabbit got full and had swirls around his head,0 0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,then : Dog went[ip] to go get (h) her mother.,then Dog went to go get her mother,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,she pull/ed[-:] [OTHER] her way[-:] over where Bunny cwas[cop] [EU].,she pulled her way over where Bunny cwas,0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,they[EW:it] [EPRONOUN] happen/ed to be that Bunny cwas[cop] sick [EU].,they happened to be that Bunny cwas sick,0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,so : her mom (took her therm) took[ip] her temperature.,so her mom took her temperature,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,and : she cwas[cop] : sick.,and she cwas sick,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,so they went[ip] home.,so they went home,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,once upon a time there cwas[cop][cnumerr][EW:cwere] [EV] Dog and Rabbit [EU].,once upon a time there cwas Dog and Rabbit,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,(rabbit had a) [~_I_mean] Dog had[ip] a : balloon tie/ed : to the wagon.,Dog had a balloon tied to the wagon,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,Rabbit untie/ed the : balloon off the wagon.,Rabbit untied the balloon off the wagon,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,(it) the balloon went[ip] (up) up and away!,the balloon went up and away,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,Dog got[ip] mad because it cwas[cop] (her balloon) her favourite[!] balloon.,Dog got mad because it cwas her favourite balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,(and she could not) and she would[modal] not : stop get/ing mad at : Bunny.,and she would not stop getting mad at Bunny,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,there cwere[cop] more balloon/s at : Mister Bunny/z : shop.,there cwere more balloons at Mister Bunny's shop,0 0 0 1 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,but she did[aux] not want a new one.,but she did not want a new one,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,so Rabbit[!] got[ip] her one.,so Rabbit got her one,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,Rabbit did[aux] not have enough money[!] to buy : a balloon (so) .,Rabbit did not have enough money to buy a balloon,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,they look/ed up at Mister Rabbit and : walk/ed away.,they looked up at Mister Rabbit and walked away,0 4 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,(rabbit) Little Rabbit point/ed at Mister Rabbit : and said[ip] : yay (our mom) my Mom is[aux] go/ing to give us money for the (ba) balloon/s!,Little Rabbit pointed at Mister Rabbit and said yay my Mom is going to give us money for the balloons,0 0 4 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,thanks Mom!,thanks Mom,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,they both had balloon/s and would[modal] not let them go.,they both had balloons and would not let them go,0 0 0 1 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,there is a[EW:an] [-:] elephant and a giraffe.,there is a elephant and a giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,kid/s.,kids,1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,they are play/ing by the pool.,they are playing by the pool,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,then the ball bounce/3s in the pool.,then the ball bounces in the pool,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and the giraffe go/3s out to swim to get it.,and the giraffe goes out to swim to get it,0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and then he hand/3s it to the : elephant : kid.,and then he hands it to the elephant kid,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,(and then he) and then she is like thank[!] you because it was her ball.,and then she is like thank you because it was her ball,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and he was like [~_hee_hee_yaw][~!_laughing].,and he was like,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,what is that expression ?,what is that expression,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,he is smile/ing[~!_laughs].,he is smiling,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,(there is a girl and) : there is the elephant and a giraffe by the pool.,there is the elephant and a giraffe by the pool,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and then the elephant want/3s to go on the diving[!] board.,and then the elephant wants to go on the diving board,0 0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and then she slip/3s.,and then she slips,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and she hurt/3s herself.,and she hurts herself,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and then she start/3s to cry.,and then she starts to cry,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and the lifeguard come/3s.,and the lifeguard comes,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and then he put/3s a bandage on her.,and then he puts a bandage on her,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and then he take/3s her to the bench.,and then he takes her to the bench,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,then he is kind of mad at her because it says no run/ing on the sign.,then he is kind of mad at her because it says no running on the sign,0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,there is the giraffe and the elephant.,there is the giraffe and the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and the giraffe has an airplane toy.,and the giraffe has an airplane toy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and then he is go/ing to fly it in the xx.,and then he is going to fly it in the,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and the elephant (uh) really want/3s to fly it too.,and the elephant really wants to fly it too,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and then she take/3s it away from him.,and then she takes it away from him,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,then she accidentally drop/3s it in the water.,then she accidentally drops it in the water,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,then the giraffe get/3s really mad at her.,then the giraffe gets really mad at her,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and then she tell/3s the lifeguard : what happen/ed.,and then she tells the lifeguard what happened,0 0 0 3 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and then : he got kind of worry/ed.,and then he got kind of worried,0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and she told him that she accidentally drop/ed it in the water.,and she told him that she accidentally dropped it in the water,0 0 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,(so he try/3s) so the lifeguard try/3s to get it and reach for it.,so the lifeguard tries to get it and reach for it,0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and the giraffe start/3s to cry.,and the giraffe starts to cry,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and : the elephant is kind of : worry/ed.,and the elephant is kind of worried,0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and the lifeguard is like (m) I do not know what to do.,and the lifeguard is like I do not know what to do,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,then the elephant/z mom come/3s with a net.,then the elephant's mom comes with a net,0 0 2 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,then she get/3s the[-:] : airplane out : and give/3s it to the giraffe.,then she gets the airplane out and gives it to the giraffe,0 0 3 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and he is really happy.,and he is really happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and so is the elephant girl.,and so is the elephant girl,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,there is a rabbit and a little mouse try/ing to build a sandcastle in the sandbox.,there is a rabbit and a little mouse trying to build a sandcastle in the sandbox,0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and then the rabbit want/3s to (do s) take some sand out of the bucket too.,and then the rabbit wants to take some sand out of the bucket too,0 0 0 0 3 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and he pour/3s it on the castle accidentally.,and he pours it on the castle accidentally,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and it wreck/3s the castle.,and it wrecks the castle,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and the mouse is really sad.,and the mouse is really sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and the mouse try/3s to build it : again.,and the mouse tries to build it again,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,well there is a mouse and a rabbit (s) go/ing along.,well there is a mouse and a rabbit going along,0 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and they are walk/ing on the road : (for a) go/ing for a picnic.,and they are walking on the road going for a picnic,0 0 0 6 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and then the rabbit is like eat/ing all of his food at once.,and then the rabbit is like eating all of his food at once,0 0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and he got a really bad stomachache.,and he got a really bad stomachache,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and he is feel/ing really weird[~!_laughing].,and he is feeling really weird,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and then the mom get/3s mad at him and say/3s : you go home right now!,and then the mom gets mad at him and says you go home right now,0 0 0 0 3 0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and then she take/3s him home.,and then she takes him home,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and then the mouse say/3s goodbye.,and then the mouse says goodbye,0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,(there) : the : mouse is pull/ing her wagon (with the b) with a balloon hook/ed onto it.,the mouse is pulling her wagon with a balloon hooked onto it,0 0 0 6 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and the rabbit is come/ing along.,and the rabbit is coming along,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and he is say/ing can I hold it?,and he is saying can I hold it,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and the mouse is say/ing okay[~!_laughing].,and the mouse is saying okay,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,so then he take/3s it off.,so then he takes it off,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and she is like [~_makes_exasperated_noise].,and she is like,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and then he accidentally let/3s go of it.,and then he accidentally lets go of it,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and it go/3s away.,and it goes away,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,then she is really[!] mad at him.,then she is really mad at him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and he is kind of sad and worry/ed.,and he is kind of sad and worried,0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,then there is a balloon man there.,then there is a balloon man there,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and they go to see him.,and they go to see him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,then he ask/3s for a balloon [+_bch].,then he asks for a balloon,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,he has what?,he has what,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,then the bunny ask/3s for a balloon from the man.,then the bunny asks for a balloon from the man,0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,(but : he is) : but they are five cent/s.,but they are five cents,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and he do/3s not have any money.,and he does not have any money,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,so then he is just stand/ing there.,so then he is just standing there,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and then they are really sad.,and then they are really sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,so they go back.,so they go back,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and then the bunny/z mom is there.,and then the bunny's mom is there,0 0 0 2 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and then he ask/3s for some money to get a balloon because he lost the mouse/z (money) : [~_I_mean] balloon.,and then he asks for some money to get a balloon because he lost the mouse's balloon,0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,so then (he) the mom bunny give/3s the man some money.,so then the mom bunny gives the man some money,0 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and they get a balloon.,and they get a balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and then they are say/ing thank you!,and then they are saying thank you,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and the mom is like : you are welcome!,and the mom is like you are welcome,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(um) the elephant is play/ing with the ball[-:].,the elephant is playing with the ball,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,he lost his ball[-:] : on the water[-:].,he lost his ball on the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,the giraffe[-:] is get/ing the water[-:] [EU].,the giraffe is getting the water,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,now the giraffe give|give[EW:gave] the ball to the : elephant.,now the giraffe give the ball to the elephant,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,the giraffe is happy and the : elephant too.,the giraffe is happy and the elephant too,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,the giraffe and the : elephant[-:] [EU].,the giraffe and the elephant,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,the elephant want/3s to swim.,the elephant wants to swim,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,the elephant run|run[EW:ran].,the elephant run,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,the elephant slip|slip[EW:slipped].,the elephant slip,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,and the elephant hurt : hisself[EW:himself].,and the elephant hurt hisself,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,and the elephant cry|cry[EW:cried].,and the elephant cry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(the) (the) (the other elephan) the other elephant give|give[EW:gave] (the) : the girl elephant : a bandaid.,the other elephant give the girl elephant a bandaid,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,now[-:] the girl sit|sit[EW:sat] on the bench.,now the girl sit on the bench,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,: (and the other elephant is) : (and the elephant said) and the elephant point say/3s no run/ing [EU].,and the elephant point says no running,0 0 0 0 3 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,the giraffe got his airplane.,the giraffe got his airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(and h) : (and he) and he now : fly|fly[EW:flies] it.,and he now fly it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(now the) (now) now the elephant : take/3s : the giraffe/z : toy back.,now the elephant takes the giraffe's toy back,0 0 0 3 0 2 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(the) (the) : the elephant (throwed|throw[EW:threw] the) throwed|throw[EW:threw] : the airplane on the water[-:] [EU].,the elephant throwed the airplane on the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,the giraffe is mad[-:].,the giraffe is mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(and) (and the man) : and the man : is go/ing *to catch the airplane [EU].,and the man is going catch the airplane,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(the man) : the elephant say/3s please[!] you catch the giraffe/z toy [EU]?,the elephant says please you catch the giraffe's toy,0 0 3 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,and the elephant say|say[EW:says] yes.,and the elephant say yes,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,and he reach and reach and reach it [EU].,and he reach and reach and reach it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,now he can not[-:] : reach it.,now he can not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(I know the) I know the other elephant : got : a great idea a net.,I know the other elephant got a great idea a net,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(an) and he got the net[-:].,and he got the net,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,now he catch|cach[EW:catches] [-:] it.,now he catch it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,and now he give|give[EW:gives] *it to : (uh) the giraffe [EU].,and now he give to the giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(and) and (there is) (: now) : now the giraffe is happy : (because he) because he has his airplane.,and now the giraffe is happy because he has his airplane,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,the bunny[-:] want|want[EW:wants] to make his castle : (while the) while the dog : is (um) : bark/ing : because he took his two sand/s to dig [EU].,the bunny want to make his castle while the dog is barking because he took his two sands to dig,0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(and) (and h) (and) and the bunny is like give me my[-:] : digger please.,and the bunny is like give me my digger please,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,and now they are happy (because) : because : now the dog say/3s okay.,and now they are happy because now the dog says okay,0 0 0 0 0 0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,and (now) : (now) now (he has a) he can : make a sandcastle.,and now he can make a sandcastle,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,and he dump|dump[EW:dumps] it : in.,and he dump it in,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,and now the bunny dump|dump[EW:dumps] it in.,and now the bunny dump it in,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,and now the sandcastle/s[EW:sandcastle] is ruin/ed[-:].,and now the sandcastles is ruined,0 0 0 1 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(a) and the dog is help/ing him : because the dog is cry/ing.,and the dog is helping him because the dog is crying,0 0 0 0 6 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,the dog and the : bunny[-:] : they are walk/ing for the picnic[-:] [EU].,the dog and the bunny they are walking for the picnic,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(now) (now the[-:]) now : the : bunny *is eat/ing the sandwich and a carrot [EU].,now the bunny eating the sandwich and a carrot,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(and now the bunny) and (the) : the bunny (is) : he got *a full tummy[-:] [EU].,and the bunny he got full tummy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(and the) (and) (and) and the bunny : hold|hold[EW:holds] his tummy.,and the bunny hold his tummy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(and) (um an) (an) (and the dog : the dog/z bunny/z father) [~_I_mean] (the dog[-:]) (the) [~_no] (the doctor) : the dog runned|run[EW:ran] for the doctor and said doctor doctor (the rubby tummy is) the bunny/z tummy is full!,the dog runned for the doctor and said doctor doctor the bunny's tummy is full,0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(now) (and now : he) and (now the) now the dog (pull him) pull|pull[EW:pulls] him.,and now the dog pull him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(an) (an) (and he is) and the doctor said okay okay.,and the doctor said okay okay,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(and now he) and now he is go/ing to save him.,and now he is going to save him,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(and now) and now the doctor is go/ing *to take him to the hospital [EU].,and now the doctor is going take him to the hospital,0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,the (dog[-:] got the : uh game) [~_no] (uh) : the dog got the balloon.,the the dog got the balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,and the rabbit say/3s hi I like your balloon!,and the rabbit says hi I like your balloon,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(an) (a) and he show|show[EW:shows] it.,and he show it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,and he is like this.,and he is like this,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(and) (and he made a) oh I want to have it!,oh I want to have it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,and he said oh yes : you can have it.,and he said oh yes you can have it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(and uh) and the dog is (like) like this ah do not take it off[-:]!,and the dog is like this ah do not take it off,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(and) and it flied|fly[EW:flew] [-:] away[-:].,and it flied away,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,and the dog is mad[-:].,and the dog is mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(and he) and the bunny want/3s the balloon.,and the bunny wants the balloon,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,and the dog too.,and the dog too,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,and the dog get|get[EW:got] angry back there.,and the dog get angry back there,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,and the bunny run|run[EW:runs] and say/3s : sir[-:] can I have balloon?,and the bunny run and says sir can I have balloon,0 0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,and the sir said yes you can.,and the sir said yes you can,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,and he said five[-:][!] dollar/s.,and he said five dollars,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(the xx) : (and) and he is like xx say/ing[?] that.,and he is like saying that,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(oh and he) [~_his_teeth_are_right_there] (and) (and he said) (oh : uh) : and the bunny said oopsies I do not have money.,and the bunny said oopsies I do not have money,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(and the dog) (and the) (and the[-:]) : and the[-:] bunny runned|run[EW:ran] for the doctor.,and the bunny runned for the doctor,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(an) and he[?] say/3s doctor doctor I want a balloon!,and he says doctor doctor I want a balloon,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,and the doctor said okay.,and the doctor said okay,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,"he said : here is the money[!][-:] [~_makes_sound_""ch_ch""].",he said here is the money,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,and you can have the balloon : both of them.,and you can have the balloon both of them,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,now they are happy.,now they are happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,(um) there was a cow.,there was a cow,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and there was an elephant.,and there was an elephant,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and they have a ball.,and they have a ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then they had this on those brick/s.,and then they had this on those bricks,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,(and then an ele) (and then) and then it got stuck in the swimming pool.,and then it got stuck in the swimming pool,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,(and then) and then the cow went to go get it.,and then the cow went to go get it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then[-:] : he got the ball : back.,and then he got the ball back,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then they play/ed with it.,and then they played with it,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,(um) there was a cow[-:] : and an elephant.,there was a cow and an elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,(they we) there was the balance beam.,there was the balance beam,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,the what?,the what,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,the balance beam was in the front [+_bch].,the balance beam was in the front,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,(and) and the elephant want/ed to go in the water.,and the elephant wanted to go in the water,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,so did the cow.,so did the cow,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,so they went to the : balance beam.,so they went to the balance beam,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and (then they[-:] ) (then) then the cow was run/ing (after the) to (the) (the) the elephant.,and then the cow was running to the elephant,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then it was run/ing after it again.,and then it was running after it again,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,(and then it was run/ing after it again with the) [~_no] (then the other) then (the other elephant) he was run/ing after the other elephant.,then he was running after the other elephant,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,(and then) and then he squeeze/ed her.,and then he squeezed her,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,: and then they : carry/ed her to the bench.,and then they carried her to the bench,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,: (and then they s) and (they h) (he) her[EW:she] sat[!] there.,and her sat there,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,(the cow and the moose they) [~_oopsie_#_I_forgot_the_moose] the cow and the elephant they want to go in the water.,the cow and the elephant they want to go in the water,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,: then they broke their airplane.,then they broke their airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then the elephant want/ed to see : it.,and then the elephant wanted to see it,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,(and then he throw|throw[EW:threw] it into the) and then he put it in the water.,and then he put it in the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,(and then they) (and then it) and then the cow was so mad at (that) (that) (that) that elephant.,and then the cow was so mad at that elephant,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then the other[!] elephant came.,and then the other elephant came,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,: (and then he said) : and then the other elephant talk/ed to the cow.,and then the other elephant talked to the cow,0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,(and then it) and then it was try/ing to reach (that) (the) the airplane.,and then it was trying to reach the airplane,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,(and then) (then it got soak/ed) then he got soak/ed.,then he got soaked,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then he got a net.,and then he got a net,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,a what ?,a what,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,a net [+_bch].,a net,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,"a net, oh.",a net oh,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then he grab/ed[!] it : out of the water.,and then he grabbed it out of the water,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then he gave it to the cow.,and then he gave it to the cow,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,(and) (and then he) and then he was so proud.,and then he was so proud,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,the rabbit want/ed to play in the sand.,the rabbit wanted to play in the sand,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,: (and then he builded|build[EW:built] so) and then he put sand in the bucket.,and then he put sand in the bucket,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then he[-:] tip/ed it all over his castle.,and then he tipped it all over his castle,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then he (ra) ruin/ed it.,and then he ruined it,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then he build|build[EW:built] a new one.,and then he build a new one,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,(um) the rabbit he brung|bring[EW:brought] his picnic basket.,the rabbit he brung his picnic basket,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and so did the dog.,and so did the dog,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then they ate some lunch.,and then they ate some lunch,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,(and then he) (and then the) and then the rabbit got so stuff/ed.,and then the rabbit got so stuffed,0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,: and he got twirl twirl twirl/ed over his head.,and he got twirl twirl twirled over his head,0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then the doctor came.,and then the doctor came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,doctor!,doctor,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and he help/ed the rabbit.,and he helped the rabbit,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,(and) and the rabbit said [~_creaky_voice] I live on a hundred and eighteenth street.,and the rabbit said I live on a hundred and eighteenth street,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,I live on a hundred and eighteenth?,I live on a hundred and eighteenth,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,the rabbit did [+_bch].,the rabbit did,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then the (rr) rabbit was so happy that he went with (the doc) the doctor rabbit.,and then the rabbit was so happy that he went with the doctor rabbit,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,(um : the) the rabbit and the dog they pull/ed (the) the wagon.,the rabbit and the dog they pulled the wagon,0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and it tow/ed the balloon.,and it towed the balloon,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then it was get/ing shorter : and shorter.,and then it was getting shorter and shorter,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,(and sh) and then they could not reach it.,and then they could not reach it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then it went higher : and higher.,and then it went higher and higher,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then the balloon man gave (it) him a new balloon.,and then the balloon man gave him a new balloon,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then he said thank you.,and then he said thank you,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,(and then) and then they were so sad.,and then they were so sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,(and then they were ha) and then the rabbit/s were happy.,and then the rabbits were happy,0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then the doctor rabbit came to go see the balloon man.,and then the doctor rabbit came to go see the balloon man,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then he gave him (five doll) two dollar/s.,and then he gave him two dollars,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then the doctor paid him a balloon [EU].,and then the doctor paid him a balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,(one) (one) (one) (as) (as um) [~_is_that_a__giraffe_#_probably] (as a) as one day a giraffe was walk/ing to the swimming pool he saw a girl with : a ball bounce/ing it up and down!,as one day a giraffe was walking to the swimming pool he saw a girl with a ball bouncing it up and down,0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the ball fell into the water.,the ball fell into the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the girl : yell/ed yeeks!,the girl yelled yeeks,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the giraffe jump/ed in : to save the ball for her!,the giraffe jumped in to save the ball for her,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,he took it to the girl.,he took it to the girl,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,she said thank you.,she said thank you,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,(they start/ed) : he got out of the pool.,he got out of the pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,(and) and he said you are welcome.,and he said you are welcome,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,she said you are so[!] brave.,she said you are so brave,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,you could do it anytime : when my ball fall/3s in.,you could do it anytime when my ball falls in,0 0 0 0 0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,as the elephant and the giraffe were walk/ing : they saw the big swim/ing pool.,as the elephant and the giraffe were walking they saw the big swimming pool,0 0 0 0 0 0 0 6 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,and they saw a sign say/ing no run/ing.,and they saw a sign saying no running,0 0 0 0 0 6 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,(the dog) the elephant start/ed to run[!].,the elephant started to run,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,(the) (the guy) the giraffe was look/ing at her.,the giraffe was looking at her,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,he was go/ing to say no you should not run!,he was going to say no you should not run,0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,but she went anyway/3s!,but she went anyways,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,and he went too.,and he went too,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,she fell down and hurt her knee on the cement by the pool.,she fell down and hurt her knee on the cement by the pool,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,(the guy) the giraffe start/ed to (chase him) chase her (t) to where she fell.,the giraffe started to chase her to where she fell,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,he call/ed the lifeguard[!].,he called the lifeguard,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,and he came for (h) help.,and he came for help,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,(she p) he put a bandaid on her knee that she scrape/ed.,he put a bandaid on her knee that she scraped,0 0 0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,they took her to a bench.,they took her to a bench,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,and the lifeguard said : no run/ing.,and the lifeguard said no running,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,he show/ed her the sign.,he showed her the sign,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,she made a frown.,she made a frown,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,and that is the end [+_bch].,and that is the end,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the giraffe and the elephant were play/ing together.,the giraffe and the elephant were playing together,0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the giraffe brought a[EW:an] airplane to play with the pool.,the giraffe brought a airplane to play with the pool,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,he was play/ing with the airplane.,he was playing with the airplane,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,(the) the elephant got dizzy.,the elephant got dizzy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,she want/ed to play with it.,she wanted to play with it,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,so she took it away.,so she took it away,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,she (thr) accidentally threw it in the water.,she accidentally threw it in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the giraffe (got) he went yikes!,the giraffe he went yikes,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,and he got mad[!] at her.,and he got mad at her,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the lifeguard saw what happen/ed.,the lifeguard saw what happened,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the elephant start/ed to say to the lifeguard I accidentally (dropped) drop/ed my friend/z : airplane into the water!,the elephant started to say to the lifeguard I accidentally dropped my friend's airplane into the water,0 0 4 0 0 0 0 0 0 0 4 0 2 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,so the lifeguard start/ed : to go after it : on the edge of the pool.,so the lifeguard started to go after it on the edge of the pool,0 0 0 4 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,(he could not) he could not get it.,he could not get it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,(the gir) the giraffe start/ed to cry.,the giraffe started to cry,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,a lady (she) she took a net.,a lady she took a net,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,(sh) she start/ed to smile at them.,she started to smile at them,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,(she) she took the net put it in the water to try to get out the plane.,she took the net put it in the water to try to get out the plane,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,she got the plane.,she got the plane,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,she gave it back to the giraffe.,she gave it back to the giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,he said thank[!] you.,he said thank you,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,he gave it a big hug.,he gave it a big hug,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,and that is the end [+_bch].,and that is the end,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,as : the dog and the rabbit start/ed to play the rabbit ask/ed if he could (help) help the dog : build a sandcastle.,as the dog and the rabbit started to play the rabbit asked if he could help the dog build a sandcastle,0 0 0 0 0 0 4 0 0 0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the dog start/ed help/ing the rabbit.,the dog started helping the rabbit,0 0 4 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the rabbit took a bucket and fill/ed it with sand!,the rabbit took a bucket and filled it with sand,0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the rabbit took the bucket.,the rabbit took the bucket,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,he put (it) all the sand on the sandcastle!,he put all the sand on the sandcastle,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the dog and the rabbit : they went yeek[!] together : all at the same time.,the dog and the rabbit they went yeek together all at the same time,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,(the d) the dog start/ed to cry.,the dog started to cry,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the rabbit felt shy.,the rabbit felt shy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,(rabbit had) rabbit *was start/ing to walking[EW:walk] the dog [EU].,rabbit starting to walking the dog,0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the dog (start/ed) saw the rabbit walk/ing.,the dog saw the rabbit walking,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,he said come along!,he said come along,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,walk with me!,walk with me,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the rabbit took out his picnic.,the rabbit took out his picnic,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the dog only had a sandwich.,the dog only had a sandwich,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the rabbit had almost everything : to eat!,the rabbit had almost everything to eat,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the dog had a : juice : and a sandwich.,the dog had a juice and a sandwich,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,he had not ated|eat[EW:ate] it yet.,he had not ated it yet,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the rabbit ate everything[!].,the rabbit ate everything,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,he did not have a crumb left!,he did not have a crumb left,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the dog still was not eat/ing.,the dog still was not eating,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the rabbit start/ed to get dizzy.,the rabbit started to get dizzy,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the dog ran to the : rabbit/z Mom!,the dog ran to the rabbit's Mom,0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,he said come for : help[!].,he said come for help,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,he started pull/ing her and pull/ing her : to where the rabbit was.,he started pulling her and pulling her to where the rabbit was,0 0 6 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,(the wo) the rabbit/z : Mom said do not eat too much.,the rabbit's Mom said do not eat too much,0 2 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,or else you will get a stomachache!,or else you will get a stomachache,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,so she took him home to his own[!] place.,so she took him home to his own place,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,and that is the end [+_bch].,and that is the end,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,(when a) (when um) when Dog was walk/ing with his balloon (in his wheel) in his : [~_what_was_it_called_what_is_it__called_#_I_(wi)ll_just_say_wheelchair] : a (wagon) wagon Rabbit start/ed to walk along.,when Dog was walking with his balloon in his a wagon Rabbit started to walk along,0 0 0 6 0 0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,he said hello!,he said hello,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,Rabbit said what a nice balloon.,Rabbit said what a nice balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,so he look/ed at it.,so he looked at it,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,he want/ed to untie it.,he wanted to untie it,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,and he did!,and he did,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,(and the) and he let go.,and he let go,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,and the balloon went up and up and up : and more up[!].,and the balloon went up and up and up and more up,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,they could not catch it!,they could not catch it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the dog got so mad.,the dog got so mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,and the rabbit saw a another rabbit carry/ing : some balloon/s?,and the rabbit saw a another rabbit carrying some balloons,0 0 0 0 0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,he said can I have this one please?,he said can I have this one please,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,and the guy said (f) balloon/s five cent/s.,and the guy said balloons five cents,0 0 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,and : the rabbit check/ed his pocket/s.,and the rabbit checked his pockets,0 0 0 4 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,he had nothing.,he had nothing,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,so : the dog and the rabbit they both went up.,so the dog and the rabbit they both went up,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the rabbit with the balloon/s (he) he look/ed at them : down below!,the rabbit with the balloons he looked at them down below,0 0 0 0 1 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the rabbit went to a doctor[!] and ask/ed for help.,the rabbit went to a doctor and asked for help,0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,he ask/ed (for) to the doctor : can you please : get a balloon for my friend?,he asked to the doctor can you please get a balloon for my friend,0 4 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,(so she) so she paid : the rabbit five cent/s for two[!] balloon/s.,so she paid the rabbit five cents for two balloons,0 0 0 0 0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,they both got one.,they both got one,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,and they were happy!,and they were happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,(um) they are (um) play/ing with a ball[-:].,they are playing with a ball,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,: and they are at the pool[-:].,and they are at the pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,: and : it fell in the water.,and it fell in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,: and then : the (um) giraffe (uhm : m go um) swimmed|swim[EW:swam] and got it.,and then the giraffe swimmed and got it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and then he pass/ed it to the elephant.,and then he passed it to the elephant,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,: (and then he) and then she is (um) stand/ing all pretty.,and then she is standing all pretty,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,(um) : they are at the swimming pool.,they are at the swimming pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,(and they are gonna) and they were just get/ing ready to do something.,and they were just getting ready to do something,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and the (um) giraffe is chase/ing the elephant.,and the giraffe is chasing the elephant,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and the elephant slip/3s.,and the elephant slips,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and he get/3s his knee scrape/ed.,and he gets his knee scraped,0 0 3 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and then the (um) lifeguard run/3s : (and come/3s to um : ge) and come/3s to put a bandaid on it.,and then the lifeguard runs and comes to put a bandaid on it,0 0 0 0 3 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and then the bandaid was on.,and then the bandaid was on,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and she felt okay.,and she felt okay,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and she was sit/ing on the bench.,and she was sitting on the bench,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,they were play/ing airplane.,they were playing airplane,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,: and they were (um) zoom/ing it around.,and they were zooming it around,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,(and then the) and then the (um) elephant (um) took it from the giraffe.,and then the elephant took it from the giraffe,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,: (and then she th) and then she accidentally threw it in the water.,and then she accidentally threw it in the water,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and then the giraffe got really mad.,and then the giraffe got really mad,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,: and then the (um : uh) lifeguard came.,and then the lifeguard came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,: and he did not know how to get it out.,and he did not know how to get it out,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,he try/ed to reach it.,he tried to reach it,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,: and[-:] : he did not know what to do still.,and he did not know what to do still,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,: and then the lady lifeguard came.,and then the lady lifeguard came,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and then she took it out with the (um) thing that you catch fish with.,and then she took it out with the thing that you catch fish with,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and then : she gave it back to the giraffe.,and then she gave it back to the giraffe,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and then he hug/ed it.,and then he hugged it,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,(um) they were get/ing ready to build a (um) sandcastle in their sandbox.,they were getting ready to build a sandcastle in their sandbox,0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and they already built one : on the other side.,and they already built one on the other side,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and (um) they were (um) put/ing (um) sand in the shovel.,and they were putting sand in the shovel,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,: and they dump/ed it all over the (um other sand) the (um) sandcastle.,and they dumped it all over the the sandcastle,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and (um) it all came into a pile of sand.,and it all came into a pile of sand,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,: and they were cry/ing.,and they were crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,(um) they went out for a picnic.,they went out for a picnic,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,: and they (um) ate lot/s of food.,and they ate lots of food,0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,: and then (the) they got full.,and then they got full,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,: and then (he did not) the (um) bunny did not eat any more.,and then the bunny did not eat any more,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,: (and then their um teacher came ov) and then the doctor came over.,and then the doctor came over,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,: and (um) the doggy pull/ed her over to where : the bunny is[EW:was].,and the doggy pulled her over to where the bunny is,0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,: and (um) the (um) doctor is try/ing to get (hi) the bunny better.,and the doctor is trying to get the bunny better,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,: and then : he is all better again.,and then he is all better again,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,(um) they have a wagon with a balloon on it.,they have a wagon with a balloon on it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and : they are (um) point/ing at the balloon.,and they are pointing at the balloon,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and then they tie it on better.,and then they tie it on better,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and then it fall/3s off the (um) wagon.,and then it falls off the wagon,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and they try to catch it.,and they try to catch it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and[-:] : one got really mad.,and one got really mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and one got really sad.,and one got really sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and then they saw a guy with balloon/s.,and then they saw a guy with balloons,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and then they (ask/ed for) ask/ed for one.,and then they asked for one,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,(and then : they got) and then they did not get[EW:have] enough money.,and then they did not get enough money,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and then[-:] : they see him again.,and then they see him again,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,: and (the doctor is uh) they see the doctor.,and they see the doctor,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,: and the (um) bunny tell/3s the doctor where the balloon/s are.,and the bunny tells the doctor where the balloons are,0 0 0 3 0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and then the doctor give/3s the man money.,and then the doctor gives the man money,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and then they all get a balloon.,and then they all get a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(one) one day : a[EW:an] elephant was : go/ing to go swimming.,one day a elephant was going to go swimming,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and he was bounce/ing three ball/s at the exact same time.,and he was bouncing three balls at the exact same time,0 0 0 6 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(n then) and then[-:] the elephant : drop/ed : all of them in the pool.,and then the elephant dropped all of them in the pool,0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,then the : guy went swim/ing for all of them.,then the guy went swimming for all of them,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and they[-:] both play/ed ball together.,and they both played ball together,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(and : the elephant) then they stop/ed play/ing.,then they stopped playing,0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and the elephant (tooked|take[EW:took] it) took it.,and the elephant took it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(then) then the next day : the elephant went swim/ing again.,then the next day the elephant went swimming again,0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,then she : ask/ed if she could go in the pool!,then she asked if she could go in the pool,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(I ee) then she start/ed run/ing.,then she started running,0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,but then the other guy start/ed run/ing after her to tell her (to) : not to run.,but then the other guy started running after her to tell her not to run,0 0 0 0 0 4 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and then she fell down and hurt herself.,and then she fell down and hurt herself,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and she start/ed to cry.,and she started to cry,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and then the lifeguard came.,and then the lifeguard came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and : he put a bandaid on her.,and he put a bandaid on her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(and then) and then she had to sit on the : bench.,and then she had to sit on the bench,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(and the li) and the lifeguard ask/ed what she was do/ing.,and the lifeguard asked what she was doing,0 0 0 4 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and she said she was run/ing.,and she said she was running,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and the lifeguard said can not you see the sign [EU]?,and the lifeguard said can not you see the sign,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,there is no[!] run/ing.,there is no running,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,that afternoon : (the) : the elephant/z friend came.,that afternoon the elephant's friend came,0 0 0 2 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and he brought a plane.,and he brought a plane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and : the elephant said can I play with you?,and the elephant said can I play with you,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and[-:] he said no.,and he said no,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and he just kept on fly/ing it.,and he just kept on flying it,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,then the elephant just took it away from him.,then the elephant just took it away from him,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and it fell in the water.,and it fell in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and (then) : then the elephant/z friend got mad.,and then the elephant's friend got mad,0 0 0 2 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(and) and the elephant was guilty.,and the elephant was guilty,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and the lifeguard (s) went in there to go (get) get it.,and the lifeguard went in there to go get it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and the lifeguard ask/ed : (who) who did this?,and the lifeguard asked who did this,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(and the) and : the elephant said I did by accident.,and the elephant said I did by accident,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and : the lifeguard : try/ed to reach for it.,and the lifeguard tried to reach for it,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and (then) then : the elephant/z : friend was cry/ing for the plane.,and then the elephant's friend was crying for the plane,0 0 0 2 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,then the other[!] girl[!] lifeguard (came and got with it) came with : a net : to get it.,then the other girl lifeguard came with a net to get it,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and she got the plane for him.,and she got the plane for him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and (he was so) he was really happy.,and he was really happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and[-:] then they both play/ed together.,and then they both played together,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,once upon a time there was a dog : build/ing a castle.,once upon a time there was a dog building a castle,0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and then (there) there came a rabbit.,and then there came a rabbit,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,he ask/ed (if he could help : the) if he could help the dog.,he asked if he could help the dog,0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(and) and the dog said sure[!].,and the dog said sure,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(and then the) and then the rabbit help/ed him.,and then the rabbit helped him,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and the dog was pat/ing (the s) the sand.,and the dog was patting the sand,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,then the rabbit put sand all over the castle.,then the rabbit put sand all over the castle,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and the castle broke.,and the castle broke,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(and the r) and the dog was happy.,and the dog was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,but the rabbit (was : um) was mad.,but the rabbit was mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and (then) then the : dog start/ed cry/ing.,and then the dog started crying,0 0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(and) : and the rabbit felt (guil) guilty.,and the rabbit felt guilty,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,one day : when the rabbit and the dog were go/ing for a picnic : (they) (they saw) they : end/ed up : see/ing each other.,one day when the rabbit and the dog were going for a picnic they ended up seeing each other,0 0 0 0 0 0 0 0 0 6 0 0 0 0 4 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(then they) then they set out the blanket : and all the food.,then they set out the blanket and all the food,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,the rabbit ate all the food.,the rabbit ate all the food,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and (he w) he was really full.,and he was really full,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and the dog only ate : his sandwich.,and the dog only ate his sandwich,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(and) and he drinked|drink[EW:drank] the juice.,and he drinked the juice,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(and then the) and then the rabbit : was sick.,and then the rabbit was sick,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and he did not feel that good.,and he did not feel that good,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,then the dog went run/ing to a doctor : and said help help!,then the dog went running to a doctor and said help help,0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(there is a) my friend rabbit : is (sick) really sick!,my friend rabbit is really sick,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(then) then the dog is pull/ing on her.,then the dog is pulling on her,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and (then) : then the doctor check/ed on[-:] the rabbit.,and then the doctor checked on the rabbit,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and he was (sick) really sick.,and he was really sick,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and then : the rabbit had to go to the hospital.,and then the rabbit had to go to the hospital,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,that is it [+_bch].,that is it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,he was : take/ing a wagon.,he was taking a wagon,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and he had a balloon in it.,and he had a balloon in it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and the rabbit ask/ed where did you get the balloon from?,and the rabbit asked where did you get the balloon from,0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,he said I got it from : the : clown over there.,he said I got it from the clown over there,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and then (the rabbit just) (he um) the dog said : do you want it?,and then the dog said do you want it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and then : the rabbit just took it.,and then the rabbit just took it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and then (the) the rabbit : let go of it.,and then the rabbit let go of it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and then they both were jump/ing up for it.,and then they both were jumping up for it,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,then the dog got : mad.,then the dog got mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(and then they saw this) and then they saw the clown guy.,and then they saw the clown guy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and then[-:] the rabbit was happy.,and then the rabbit was happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and he went to go get a balloon for the dog.,and he went to go get a balloon for the dog,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(and) and she got : a blue one.,and she got a blue one,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(and it) and it was five cent/s : per balloon.,and it was five cents per balloon,0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(and he) and he did not have any money.,and he did not have any money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(and then) : and then they both were sad.,and then they both were sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and the dog stand|stand[EW:stood] right beside him.,and the dog stand right beside him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and then the rabbit went run/ing for the doctor.,and then the rabbit went running for the doctor,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(and) : and the rabbit call/ed for the doctor.,and the rabbit called for the doctor,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(um) : then he said (that) that guy will not give us a balloon.,then he said that guy will not give us a balloon,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(and I) and can (I) we have five cent/s?,and can we have five cents,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and (then) (then they were) : then the doctor gave : five cent/s.,and then the doctor gave five cents,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and then they got two balloon/s.,and then they got two balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,then they each got their own balloon/s.,then they each got their own balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,once upon a time there was a giraffe and a[EW:an] elephant were play/ing ball together [EU].,once upon a time there was a giraffe and a elephant were playing ball together,0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,: then the ball went in the water.,then the ball went in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,and then nobody could catch it.,and then nobody could catch it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,so[-:] : Jerome just keep go/ing (ca) catch/ing it [EU].,so Jerome just keep going catching it,0 0 0 0 6 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,but he did not caught|catch[EW:catch] it.,but he did not caught it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,(then) then Jerome just gave it to : Adam.,then Jerome just gave it to Adam,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,so Adam took the ball.,so Adam took the ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,: (then) : then Jerome was in love.,then Jerome was in love,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,which one is Jerome and which one is Adam?,which one is Jerome and which one is Adam,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,the elephant is Adam (and the Jerome is) and the Jerome is the giraffe [+_bch].,the elephant is Adam and the Jerome is the giraffe,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,once upon a time there was : Adam and Jerome.,once upon a time there was Adam and Jerome,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,they were try/ing to get in the water.,they were trying to get in the water,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,(but they have) (and then) and then Adam has to tell his dad.,and then Adam has to tell his dad,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,then : he did not tell his dad.,then he did not tell his dad,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,but (he) he forgot to (tell hi) tell his dad.,but he forgot to tell his dad,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,so he just went in the water.,so he just went in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,and he ran.,and he ran,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,and he ran.,and he ran,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,and he (slip/ed) slip/ed.,and he slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,and then : (he just) (just) he (hurt her knee/s) hurt her[EW:his] knee/s.,and then he hurt her knees,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,then : her dad came and see|see[EW:saw] what happen/ed to her.,then her dad came and see what happened to her,0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,(then) : then : Adam just start/ed cry/ing.,then Adam just started crying,0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,"then dad just (put his) put a bandaid [pronounced_""danbaid""] on her.",then dad just put a bandaid on her,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,put a what on her?,put a what on her,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,a danbaid [+_bch].,a danbaid,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,then : it did not hurt any more.,then it did not hurt any more,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,then : dad just put it in the room.,then dad just put it in the room,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,once upon a time there was Adam and Jerome again.,once upon a time there was Adam and Jerome again,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,they were (go/ing) try/ing to play plane [EU].,they were trying to play plane,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,and then : the plane (just : wen) just went way (up to) up in the sky.,and then the plane just went way up in the sky,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,(then) then Adam just took it and then play/ed and play/ed : and then jump/ed it in the water [EU].,then Adam just took it and then played and played and then jumped it in the water,0 0 0 0 0 0 0 4 0 4 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,then nobody can catch it.,then nobody can catch it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,(then) then Jerome was so mad.,then Jerome was so mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,(and then) (and then) and then Adam/z dad came and *was try/ing to reach it [EU].,and then Adam's dad came and trying to reach it,0 0 2 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,but he did not reach it.,but he did not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,then Adam just explain/ed [~_pronounced_esplained] to his dad.,then Adam just explained to his dad,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,spank/ed his dad ?,spanked his dad,4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,esplain/ed [+_bch].,esplained,4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,"oh explain/ed, sorry.",oh explained sorry,0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,splain/ed to his dad [+_bch].,splained to his dad,4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,and then[-:] : dad could not reach it.,and then dad could not reach it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,so : (then) : then Jerome was cry/ing.,so then Jerome was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,(and) and then : Adam/z dad did not know what to do.,and then Adam's dad did not know what to do,0 0 2 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,so : Adam (told hi dad) told his dad to get mom.,so Adam told his dad to get mom,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,mom just got a good idea.,mom just got a good idea,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,then mom just used a[?] rope to catch the plane.,then mom just used a rope to catch the plane,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,and there it was.,and there it was,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,oh one more.,oh one more,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,so then Jerome was so happy.,so then Jerome was so happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,he just got it back.,he just got it back,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,once upon a time (there was a : rabbit and) : [~_what_kind_of__animal_is_that] [~_okay_I_can_call_it_any_kind_of_animal] a cat and a rabbit were build/ing (a castle) a sandcastle.,once upon a time a cat and a rabbit were building a sandcastle,0 0 0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,and then they put some water inside it.,and then they put some water inside it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,(and then) : and then it was so beautiful.,and then it was so beautiful,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,(and then the rabbit) and then : (the c : uh) the cat was so scare/ed of the rabbit[~!_under_breath] break/ing the : thing[?].,and then the cat was so scared of the rabbit breaking the thing,0 0 0 0 0 0 4 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,now : the castle is all broken.,now the castle is all broken,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,once upon a time (there was a : okay) a dog and a rabbit were go/ing picnic [EU].,once upon a time a dog and a rabbit were going picnic,0 0 0 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,: and then the rabbit was so hungry he ate a full sandwich.,and then the rabbit was so hungry he ate a full sandwich,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,and (he ate a cra) and he ate (a) a carrot too : and a cake.,and and he ate a carrot too and a cake,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,and then the dog was so hungry too (he) he just drank : juice.,and then the dog was so hungry too he just drank juice,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,and he ate some candy.,and he ate some candy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,then the rabbit was so full.,then the rabbit was so full,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,(and even the ra) and even the dog was not so full either.,and even the dog was not so full either,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,he was so hungry.,he was so hungry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,then : doctor rabbit came to see : rabbit.,then doctor rabbit came to see rabbit,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,(and then) : and then dog just pull/ed doctor rabbit and see|see[EW:saw] what is[EW:was] go/ing on (with :) with the rabbit [EU].,and then dog just pulled doctor rabbit and see what is going on with the rabbit,0 0 0 0 4 0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,(then doctor rabbit) then (ro) doctor rabbit check/ed his head.,then doctor rabbit checked his head,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,then[!] doctor rabbit just tooked|take[EW:took] him (ho) to the doctor : and see|see[EW:saw] what is go/ing on with him [EU].,then doctor rabbit just tooked him to the doctor and see what is going on with him,0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,once upon a time there was : a[-:] : dog with a balloon.,once upon a time there was a dog with a balloon,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,and then the rabbit said can I have the balloon?,and then the rabbit said can I have the balloon,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,and then the dog said yes you can have it.,and then the dog said yes you can have it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,then the rabbit tooked|take[EW:took] : the balloon.,then the rabbit tooked the balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,and then the rabbit said thank you.,and then the rabbit said thank you,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,and then the dog said you are welcome.,and then the dog said you are welcome,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,then : the rabbit tooked|take[EW:took] it.,then the rabbit tooked it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,and then he took it home to see what is go/ing on with it [EU].,and then he took it home to see what is going on with it,0 0 0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,so he show/ed it to his mom and then his dad and sister and his brother.,so he showed it to his mom and then his dad and sister and his brother,0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,then he show/ed it.,then he showed it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,(and he was com) and then he came back.,and then he came back,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,then he lost his balloon up in the air.,then he lost his balloon up in the air,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,: (then the dog was) (and then the dog was so mad he went in the the) the rabbit she was stare/ing (at the) at the balloon.,the rabbit she was staring at the balloon,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,(and one man wa du) and then : a balloon man was a bunny.,and then a balloon man was a bunny,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,and : the dog and the rabbit just saw so many balloon/s.,and the dog and the rabbit just saw so many balloons,0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,(he) and then (the dog and the) the dog and the rabbit just took them.,and then the dog and the rabbit just took them,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,then the rabbit said can I have one?,then the rabbit said can I have one,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,can I have one?,can I have one,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,so : the rabbit gave the man some money.,so the rabbit gave the man some money,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,and then the man just give|give[EW:gave] him (some) some balloon[EW:balloons].,and then the man just give him some balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,(then : the man) then he gave[!] them the balloon/s.,then he gave them the balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,: then : doctor rabbit came walk/ing by[-:] .,then doctor rabbit came walking by,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,(then : the rabbit just show/ed doctor rabbit) there was a man did not (give us) give us : balloon/s said rabbit [EU].,there was a man did not give us balloons said rabbit,0 0 0 0 0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,then the man just gave[-:][!] the (w) doctor rabbit some balloon/s.,then the man just gave the doctor rabbit some balloons,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,and then doctor rabbit just gave him (some) (some ba) some money.,and then doctor rabbit just gave him some money,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,and then doctor rabbit gave balloon/s to the kids.,and then doctor rabbit gave balloons to the kids,0 0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,then : dog and rabbit got some balloon/s (the) except for doctor rabbit.,then dog and rabbit got some balloons except for doctor rabbit,0 0 0 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,(Um) they meet up together.,they meet up together,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,: the ball fell in the water.,the ball fell in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,he swimmed|swim[EW:swam] to get it.,he swimmed to get it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,he got it : and swam back : and got out.,he got it and swam back and got out,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,They are go/ing swim/ing.,They are going swimming,0 0 6 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,she want/3s to jump.,she wants to jump,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,she run/3s.,she runs,0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,and she slip/3s and hurt/3s her knee and want/3s a doctor.,and she slips and hurts her knee and wants a doctor,0 0 3 0 3 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,and she put a bandaid on it.,and she put a bandaid on it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,then she sat down.,then she sat down,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,and then (she) he said get out.,and then he said get out,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,(Um) she want/ed to try out his airplane.,she wanted to try out his airplane,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,but : (sh) he show/ed her.,but he showed her,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,and she[!] want/ed to try.,and she wanted to try,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,but it : fell in the : water.,but it fell in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,and it sunk.,and it sunk,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,and then the lifeguard said : what is that?,and then the lifeguard said what is that,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,it was his airplane.,it was his airplane,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,(but I) she said I just want/ed to try it.,she said I just wanted to try it,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,but it fell in the water.,but it fell in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,but (sh) he try/ed to get it.,but he tried to get it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,but he could not reach.,but he could not reach,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,and it sunk and sunk and sunk : until : a lady came in (with the) : and swoop/ed it up.,and it sunk and sunk and sunk until a lady came in and swooped it up,0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,and she try/ed to get it.,and she tried to get it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,(but she) and she got it.,and she got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,and then he was happy.,and then he was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,(they) his little sister is make/ing a sandcastle.,his little sister is making a sandcastle,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,he help/3s her.,he helps her,0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,he make/3s it bigger.,he makes it bigger,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,it break/3s.,it breaks,0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,(hers) his sister cry/3s.,his sister cries,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,he met up with his friend.,he met up with his friend,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,they had a picnic.,they had a picnic,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,he was full.,he was full,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,: his tummy hurt.,his tummy hurt,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,he need/ed a doctor : because his tummy hurted|hurt[EW:hurt].,he needed a doctor because his tummy hurted,0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,and : she came and help/ed him.,and she came and helped him,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,then he was feel/ing better.,then he was feeling better,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,he found his friend with a wagon.,he found his friend with a wagon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,he want/ed her balloon.,he wanted her balloon,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,(she) he untie/ed it.,he untied it,0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,and it flew away.,and it flew away,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,and (uh) she was mad at him.,and she was mad at him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,and there was a clown : who had : balloon/s.,and there was a clown who had balloons,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,it cost money.,it cost money,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,but he did not have any money.,but he did not have any money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,then : he saw a doctor who maybe had money.,then he saw a doctor who maybe had money,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,can we have money because my pocket/s are empty?,can we have money because my pockets are empty,0 0 0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,sure.,sure,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,then they got balloon/s.,then they got balloons,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,(then they both) and then they were happy.,and then they were happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,(uh : uh) : these two : animal/s were play/ing ball[-:].,these two animals were playing ball,0 0 1 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,(the) the ball fell into the water.,the ball fell into the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,one of the (ani) animal/s went swim/ing to get the ball.,one of the animals went swimming to get the ball,0 0 0 1 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,the animal/s (got) got the ball and play/ed with it.,the animals got the ball and played with it,0 1 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,(they[-:]) (they ha) they (j) jump/ed.,they jumped,0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,and (the la) the lady : (h) (ha) had the (um) ball[-:].,and the lady had the ball,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,now it is done [+_bch].,now it is done,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,these two animal/s went swim/ing.,these two animals went swimming,0 0 1 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,these[-:] two : animal/s : went to walk to the diving board.,these two animals went to walk to the diving board,0 0 1 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,(one was) both of them were run/ing : down the : aisle.,both of them were running down the aisle,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,(one of a) one of the : (um) animal/s : fell (and) : and cut his knee.,one of the animals fell and cut his knee,0 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,both[-:] the (li) lifeguard came and put a bandage on it.,both the lifeguard came and put a bandage on it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,(he[-:]) she was : happy that she (ha) got (a uh) a bandaid.,she was happy that she got a bandaid,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,she : (hu) (huddig) hug/ed the lifeguard.,she hugged the lifeguard,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,she sat on a bench : scare/ed.,she sat on a bench scared,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,now [+_bch].,now,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,(thee) these two[-:] kid/s : went swim/ing with a[EW:an] airplane.,these two kids went swimming with a airplane,0 0 1 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,they flew it.,they flew it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,they hold|hold[EW:held] it : and then flied|fly[EW:flew] it.,they hold it and then flied it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,and then : they play/ed with it.,and then they played with it,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,then it fell in the (wa) (wa) water.,then it fell in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,and it broke.,and it broke,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,they[-:] both was[EW:were] scare/ed : of : the airplane.,they both was scared of the airplane,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,they tease/ed each other.,they teased each other,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,(bo) the lifeguard said no toy/s in the water.,the lifeguard said no toys in the water,0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,(these) (th) the two kid/s said sorry.,the two kids said sorry,0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,then the (li) (li) lifeguard jump/ed into the water and got it.,then the lifeguard jumped into the water and got it,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,(it) (the) (the airplane) : (wa) (co) the lifeguard could not get the airplane.,the lifeguard could not get the airplane,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,the mom[-:] got a net and then put it in (the) the water.,the mom got a net and then put it in the water,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,she got the : net and put it on the airplane and got the plane.,she got the net and put it on the airplane and got the plane,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,the mom gived|give[EW:gave] it back to (the) the animal fix/ed.,the mom gived it back to the animal fixed,0 0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,he hug/ed it.,he hugged it,0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,now [+_bch].,now,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,"okay, close that you said?",okay close that you said,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,these two kid/s were play/ing in the sandbox.,these two kids were playing in the sandbox,0 0 1 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,these two kid/s made a sandcastle.,these two kids made a sandcastle,0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,these kid/s put sand over top of the castle[?].,these kids put sand over top of the castle,0 1 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,it broke.,it broke,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,they made a dinosaur kind of.,they made a dinosaur kind of,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,and now[?] [+_bch].,and now,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,(these two[-:] : guy) this one guy was wait/ing for one of other of a kid [EU].,this one guy was waiting for one of other of a kid,0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,they play/ed[-:] with food[-:] .,they played with food,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,they had a party : with food.,they had a party with food,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,they drinked|drink[EW:drank] juice.,they drinked juice,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,one of them got full.,one of them got full,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,they ate candy.,they ate candy,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,they threw all[-:] the candy stuff on the ground and never pick/ed it up.,they threw all the candy stuff on the ground and never picked it up,0 0 0 0 0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,they play/ed : with the sandbox.,they played with the sandbox,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,the : dad[-:] went to get one of them.,the dad went to get one of them,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,(he) they pull/ed the teeshirt.,they pulled the teeshirt,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,he said : open your mouth!,he said open your mouth,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,they walk/ed home[-:] (and : w) and walk/ed home in the bush/s.,they walked home and walked home in the bushes,0 4 0 0 4 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,and now [+_bch] [EU].,and now,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,these two[-:] guy/s were : (w) (w) (ride/ing a) : ride/ing a : wagon with a balloon on it.,these two guys were riding a wagon with a balloon on it,0 0 1 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,they : wave/ed at somebody.,they waved at somebody,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,they untie/ed the balloon.,they untied the balloon,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,(it went) it went up in the : air.,it went up in the air,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,it went in the : sky.,it went in the sky,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,(a guy wa) a clown was sell/ing more balloon/s.,a clown was selling more balloons,0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,a guy said can I have that one?,a guy said can I have that one,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,(the) (the) : the : clown said it is (five) : five cent/s.,the clown said it is five cents,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,(they) (they got : ta) (the) : (they) (the) they had both : money.,they had both money,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,and : the clown did not give him (the) the balloon.,and the clown did not give him the balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,(they di) (went) they went to see a doctor after : and said : the clown did not gived|give[EW:give] me a balloon.,they went to see a doctor after and said the clown did not gived me a balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,then : they got : (two) two (m) money[EW:cents].,then they got two money,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,then after they : hold[EW:held] it.,then after they hold it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,and the end [+_bch].,and the end,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,one is doing a ball bounce [EU].,one is doing a ball bounce,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,: one threw the ball in the sand.,one threw the ball in the sand,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,it got stuck.,it got stuck,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,one is dig/ing in : to get the ball.,one is digging in to get the ball,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,(one) the elephant is go/ing to help the giraffe.,the elephant is going to help the giraffe,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,[~_whee_sound] one is cry/ing.,one is crying,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,they are go/ing to jump in the water.,they are going to jump in the water,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,(w) : one is run/ing.,one is running,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,: (one is[-:] slip/ing) : one is slip/ing.,one is slipping,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,(one hurt : the bandy) one hurt her knee.,one hurt her knee,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,one[-:] has to get a bandy [~_bandaid] on.,one has to get a bandy on,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,[~_makes_noises_and_gestures] like that [+_bch].,like that,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,tell me in words.,tell me in words,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,the elephant/z eye is like [~_makes_noise_/s/_and_closes_eye].,the elephant's eye is like,0 2 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,like close/ed?,like closed,0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,uhhuh [+_bch].,uhhuh,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,she is sit/ing on a bench (with a bandy) : [~_EXA:_with_a_what] with a bandy on.,she is sitting on a bench with a bandy on,0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,she/z[EW:her] face is like [~_makes_face].,she's face is like,2 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,like smile/ing?,like smiling,0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,"okay, thank you.",okay thank you,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,(one) the giraffe has a[EW:an] airplane.,the giraffe has a airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,: he is go/ing to fly it.,he is going to fly it,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,: the elephant is go/ing to bite it :.,the elephant is going to bite it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,go/ing what?,going what,6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,to bite it [+_bch].,to bite it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,[~_ooh_sound] it got stuck in the sand.,it got stuck in the sand,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,got stuck in the sand still.,got stuck in the sand still,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,still[!] stuck in the sand.,still stuck in the sand,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,still[!] stuck in the sand.,still stuck in the sand,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,still stuck in the sand.,still stuck in the sand,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,still : stuck in the sand.,still stuck in the sand,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,still stuck in the (haa) [~_oooh_sound] sand [~_laughs].,still stuck in the sand,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,the elephant is go/ing to pull it out.,the elephant is going to pull it out,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,and the elephant got[!] it out.,and the elephant got it out,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,the elephant gave it to the giraffe.,the elephant gave it to the giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,very nice.,very nice,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,very nice!,very nice,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,uhhm [+_bch].,uhhm,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,what was very nice?,what was very nice,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,the elephant gave the airplane back [+_bch].,the elephant gave the airplane back,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,one is dig/ing.,one is digging,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,dig/ing again [EU].,digging again,6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,one : pour/ed sand on : the castle.,one poured sand on the castle,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,one was[-:] : sad.,one was sad,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,one is[-:] kind of [:_kinda] happy.,one is kind of happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,they are walk/ing with food.,they are walking with food,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,eat/ing [EU].,eating,6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,the bunny is [+..] [EU].,the bunny is,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,sometime/s (a little) I am a little shy [+_bch].,sometimes I am a little shy,1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,oh you are a little shy.,oh you are a little shy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,this one is sleepy.,this one is sleepy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,he has a big tummy [~_makes_'eeee'_sound].,he has a big tummy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,a big what?,a big what,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,tummy [+_bch].,tummy,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,just like this [+_bch].,just like this,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,"[~_makes_'ooh'_sound,_makes_sniffing_sounds] :.",, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,tell me so I know what the story is.,tell me so I know what the story is,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,one has a dress on.,one has a dress on,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,: one man has glass/s on.,one man has glasses on,0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,one[-:] sticked|stick[EW:stuck] his tongue out.,one sticked his tongue out,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,[~_makes_'ooooh'_sound] gross.,gross,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,[~_makes_'oooh'_sound] one is walk/ing.,one is walking,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,they have a balloon tie/ed on to the wagon.,they have a balloon tied on to the wagon,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,on to the what?,on to the what,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,wagon tied on [+_bch] [EU].,wagon tied on,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,oh the wagon is that what you said?,oh the wagon is that what you said,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,they still have it tie/ed on.,they still have it tied on,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,: one sticked|stick[EW:stuck] his tongue out.,one sticked his tongue out,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,gross.,gross,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,(one) : the balloon is fly/ing away.,the balloon is flying away,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,: one is cry/ing.,one is crying,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,they found balloon/s.,they found balloons,0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,what is that?,what is that,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,they found balloon/s [+_bch].,they found balloons,0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,and one is go/ing to grab one.,and one is going to grab one,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,:[~!_growly_voice] he got mad[-:].,he got mad,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,what?,what,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,he got mad [+_bch].,he got mad,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,they all pop/ed out [EU].,they all popped out,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,(there[-:]) one got caught.,one got caught,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,: they are leave/ing.,they are leaving,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,: one is smile/ing.,one is smiling,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,: (mm) shy [EU].,shy,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,oh [+_bch].,oh,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,are you talk/ing about yourself or the picture?,are you talking about yourself or the picture,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,talk/ing about the (sh) picture [+_bch].,talking about the picture,6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,one is shy on the picture [+_bch].,one is shy on the picture,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,There is an elephant.,There is an elephant,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,what is that [+_bch]?,what is that,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,what is that?,what is that,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,a horse.,a horse,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,umhm.,umhm,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,What is that [+_bch]?,What is that,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,what is that?,what is that,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,the line.,the line,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,umhm and what is happen/ing?,umhm and what is happening,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,look at the three ball/s.,look at the three balls,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,umhm.,umhm,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,"what do you see, picture?",what do you see picture,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,umhm.,umhm,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,did you see three line/s.,did you see three lines,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,the dot is a line.,the dot is a line,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,umhm and what are they do/ing?,umhm and what are they doing,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,they are go/ing back back.,they are going back back,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,they are back back.,they are back back,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,they are go/ing around the line.,they are going around the line,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,they are go/ing to drop some ball/s [~_whispers].,they are going to drop some balls,0 0 6 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,(fall down) fall down one of the ball/s [EU].,fall down one of the balls,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,oops.,oops,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,he is go/ing to [~_gonna] pick them up.,he is going to pick them up,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,oh dear.,oh dear,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,(I just) : I just go/ing to [~_gonna] throw the ball down [EU].,I just going to throw the ball down,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,that is a great idea.,that is a great idea,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,then : I just (got a) : drew a picture and go home [EU].,then I just drew a picture and go home,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,end [+_bch].,end,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,Do you see the slide and the swimming pool?,Do you see the slide and the swimming pool,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,there is a horse : and an elephant : and the lino.,there is a horse and an elephant and the lino,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,and what is happen/ing?,and what is happening,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,and there is water.,and there is water,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,she is got to [~_gotta] go in first [EU].,she is got to go in first,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,he is got to [~_gotta] go in first [EU].,he is got to go in first,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,then[!] (she) she is[!] got to [~_gotta] run : to the slide [EU].,then she is got to run to the slide,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,she say|say[EW:say/3s] ouch!,she say ouch,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,: her mother say oops[!].,her mother say oops,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,: she say|say[EW:say/3s] (ouch) ouch.,she say ouch,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,(that is not) that is not good.,that is not good,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,look at that.,look at that,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,look at that.,look at that,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,is that her mother?,is that her mother,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,(you just) you just got an owee : said the mother.,you just got an owee said the mother,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,(but mother) : but her mother took her home.,but her mother took her home,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,you[!] : need to go into the swimming pool : said her mother.,you need to go into the swimming pool said her mother,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,she grab/ed her hand.,she grabbed her hand,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,(an) and away they went.,and away they went,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,Horse can be [EU].,Horse can be,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,but : he want|want[EW:wants] to [~_wanna] talk to her father.,but he want to talk to her father,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,time again.,time again,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,there is time is : swimming pool in the lino : and water [EU].,there is time is swimming pool in the lino and water,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,time : elephant/z father gave a special idea [EU].,time elephant's father gave a special idea,0 2 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,how about we jumped|jump[EW:jump] in the swim/ing pool?,how about we jumped in the swimming pool,0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,ohoh.,ohoh,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,(and that is the very and) : he can do something about this the airplane.,he can do something about this the airplane,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,finally : he scare/ed [EU].,finally he scared,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,the horse said[!] [EU].,the horse said,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,you cannot[!] bury it all : said her mother.,you cannot bury it all said her mother,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,you can go into the swimming pool if you want.,you can go into the swimming pool if you want,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,but you can not drop to the airplane.,but you can not drop to the airplane,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,I want to pick it up said the elephant.,I want to pick it up said the elephant,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,Hey I need to do that : said the horse.,Hey I need to do that said the horse,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,but he need/3s to reach it.,but he needs to reach it,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,then : he need/3s to reach.,then he needs to reach,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,but : he can not reach at all.,but he can not reach at all,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,it can not do anything to the swimming pool.,it can not do anything to the swimming pool,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,and : his father grab her hand [EU].,and his father grab her hand,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,and away they went.,and away they went,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,they go home.,they go home,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,(they took) : they took that one : and said : : when[EW:where] are you go/ing?,they took that one and said when are you going,0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,his mother : said : to my grandma[EW:grandma/z] house.,his mother said to my grandma house,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,(but I have) but I have[!] to catch it : she said.,but I have to catch it she said,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,here you go : said elephant/z mother.,here you go said elephant's mother,0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,I will : touch it : said the elephant.,I will touch it said the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,and it could very soon.,and it could very soon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,and live/ed happily ever after [EU].,and lived happily ever after,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,I see a bunny and a sandcastle and a sandbox and a dog.,I see a bunny and a sandcastle and a sandbox and a dog,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,what is happen/ing?,what is happening,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,they are make/ing a sandcastle.,they are making a sandcastle,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,this is a rabbit and a dog.,this is a rabbit and a dog,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,he is make/ing a sandcastle[!].,he is making a sandcastle,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,(he) he is make/ing it easier.,he is making it easier,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,oops[!].,oops,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,look at the rabbit.,look at the rabbit,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,he is scare/ed.,he is scared,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,he is scare/ed.,he is scared,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,the rabbit is all alone.,the rabbit is all alone,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,oops[!].,oops,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,(do all by it) he do it all by hisself[EW:himself] [EU].,he do it all by hisself,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,They are bring/ing basket/s.,They are bringing baskets,0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,it is the rabbit and a dog.,it is the rabbit and a dog,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,they are have/ing a picnic : with the bunny and a dog.,they are having a picnic with the bunny and a dog,0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,the rabbit is all finish/ed.,the rabbit is all finished,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,and so : the dog is eat/ing.,and so the dog is eating,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,"(the dog is really, real) the dog is really really scare/ed.",the dog is really really scared,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,and : the bunny rabbit is tire/ed.,and the bunny rabbit is tired,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,he really[?] need/3s to go home.,he really needs to go home,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,and so does the dog.,and so does the dog,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,because he need/3s to go home with his mother because the rabbit is sleep/ing.,because he needs to go home with his mother because the rabbit is sleeping,0 0 3 0 0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,(he need/3s to buy him an) : this rabbit (i) is : woke up : because he need/3s to go home with his father [EU].,this rabbit is woke up because he needs to go home with his father,0 0 0 0 0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,this is a balloon.,this is a balloon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,what color is it?,what color is it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,maybe yellow I think.,maybe yellow I think,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,and that is the bunny : and a wagon : and[!] a dog.,and that is the bunny and a wagon and a dog,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,can show[?] his balloon in a wagon [EU].,can show his balloon in a wagon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,this is a bunny and a dog.,this is a bunny and a dog,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,he can sit down and sit with the balloon and the wagon.,he can sit down and sit with the balloon and the wagon,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,oops[!] he drop/ed the balloon.,oops he dropped the balloon,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,uhoh it fly|fly[EW:flew] away.,uhoh it fly away,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,he found some more balloon/s.,he found some more balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,he is go/ing to have a balloon.,he is going to have a balloon,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,what do/3s it say [+_bch]?,what does it say,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,what do/3s it say [+_bch]?,what does it say,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,what do you think it say/3s?,what do you think it says,0 0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,is that the five in the word/s?,is that the five in the words,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,umhm what is happen/ing?,umhm what is happening,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,look at the bunny and the dog and the wagon.,look at the bunny and the dog and the wagon,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,because he drop/ed the balloon.,because he dropped the balloon,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,and it fly|fly[EW:flew] away.,and it fly away,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,they are go/ing to get a balloon.,they are going to get a balloon,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,: because he need/3s to run.,because he needs to run,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,he is got to go home.,he is got to go home,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,uhoh he drop/ed the balloon/s.,uhoh he dropped the balloons,0 0 4 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,he is got to hold on to the balloon [EU].,he is got to hold on to the balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,they are go/ing to hold onto balloon/s.,they are going to hold onto balloons,0 0 6 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,end [+_bch].,end,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,a giraffe (um) and an elephant were play/ing : with a ball close to a swimming pool.,a giraffe and an elephant were playing with a ball close to a swimming pool,0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and then : the ball got drop/ed in the water accidentally.,and then the ball got dropped in the water accidentally,0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,the giraffe try/ed to get it.,the giraffe tried to get it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and finally he got it : and pass/ed it on to the elephant.,and finally he got it and passed it on to the elephant,0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and the elephant : look/ed like she had done it all by herself.,and the elephant looked like she had done it all by herself,0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,an elephant : and a giraffe were play/ing by : a nonrun/ing swimming pool.,an elephant and a giraffe were playing by a nonruning swimming pool,0 0 0 0 0 0 6 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,the elephant said that she would : go onto the diving platform.,the elephant said that she would go onto the diving platform,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,she started run/ing to get there.,she started running to get there,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and : the giraffe was start/ing to run too.,and the giraffe was starting to run too,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,then the elephant slip/ed.,then the elephant slipped,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and the giraffe kept on run/ing.,and the giraffe kept on running,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,Giraffe try/ed to see (if he could help the e) if he could help the elephant.,Giraffe tried to see if he could help the elephant,0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,(and the lifeguard came) and the lifeguard came.,and the lifeguard came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and the elephant start/ed cry/ing.,and the elephant started crying,0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,the (let) lifeguard taught the elephant how to walk again.,the lifeguard taught the elephant how to walk again,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and then (he point/ed) the lifeguard point/ed to the : no run/ing sign.,and then the lifeguard pointed to the no running sign,0 0 0 0 4 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,(and the elephant said) and the elephant : try/ed (t) : to hide her face.,and the elephant tried to hide her face,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,or I do not know [+_bch].,or I do not know,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,(um : a) a giraffe (was) and the elephant were playing at a pool : with an airplane.,a giraffe and the elephant were playing at a pool with an airplane,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,the giraffe was play/ing with the airplane.,the giraffe was playing with the airplane,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,the elephant grab/ed the airplane : from the giraffe and start/ed play/ing with it.,the elephant grabbed the airplane from the giraffe and started playing with it,0 0 4 0 0 0 0 0 0 4 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,she drop/ed : it in the water.,she dropped it in the water,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,the giraffe got really mad at the elephant.,the giraffe got really mad at the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,the lifeguard came puzzle/ed.,the lifeguard came puzzled,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,the elephant explaine/ed what happen/ed.,the elephant explaineed what happened,0 0 4 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,the lifeguard try/ed[!] to reach it.,the lifeguard tried to reach it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,lifeguard could not.,lifeguard could not,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,the giraffe start/ed cry/ing.,the giraffe started crying,0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,another elephant came.,another elephant came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,she try/ed scoop/ing up the airplane in her net.,she tried scooping up the airplane in her net,0 4 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,she got it and pass/ed it back to the giraffe.,she got it and passed it back to the giraffe,0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and the giraffe was very happy to have it back.,and the giraffe was very happy to have it back,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and so was the elephant : because she could drop it in the water again.,and so was the elephant because she could drop it in the water again,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,a rabbit and a dog were play/ing : with the sand : in the sandbox.,a rabbit and a dog were playing with the sand in the sandbox,0 0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and the sandcastle was : by there.,and the sandcastle was by there,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,(the) (the um :) the dog start/ed play/ing with the sandcastle as the : rabbit start/ed putt/ing sand in the bucket.,the dog started playing with the sandcastle as the rabbit started putting sand in the bucket,0 0 4 6 0 0 0 0 0 0 4 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,(the dog : put the sand) the (um) dog was surprise/ed when the rabbit : put a bucket of sand over the sandcastle.,the dog was surprised when the rabbit put a bucket of sand over the sandcastle,0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,the dog : look/ed : (happy um) ready to play with it : while the rabbit look/ed surprise/ed.,the dog looked ready to play with it while the rabbit looked surprised,0 0 4 0 0 0 0 0 0 0 0 4 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,then the dog start/ed cry/ing.,then the dog started crying,0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and the rabbit look/ed (like) as if he had done nothing.,and the rabbit looked as if he had done nothing,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,(um) a dog : was have/ing a picnic as a rabbit came along.,a dog was having a picnic as a rabbit came along,0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,the dog start/ed to take out a sandwich while the rabbit took out everything in his bag.,the dog started to take out a sandwich while the rabbit took out everything in his bag,0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,he ate it all just as : the dog was about [~_laughs] to (ss) (do one bite of his sand) have one bite of his sandwich.,he ate it all just as the dog was about to have one bite of his sandwich,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,the rabbit looked dizzy when the dog had only bitten into his : sandwich.,the rabbit looked dizzy when the dog had only bitten into his sandwich,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,the dog ran : to a nurse rabbit : and ask/ed : her if she could help the rabbit.,the dog ran to a nurse rabbit and asked her if she could help the rabbit,0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,(he) (he pull/ed) (she pull/ed him) she pull/ed : him over to the (um) rabbit.,she pulled him over to the rabbit,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,the nurse said you bad : rabbit[~!_yelling] : and then took the rabbit out to eat her lunch.,the nurse said you bad rabbit and then took the rabbit out to eat her lunch,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,a dog : had : a wheelbarrow and a balloon.,a dog had a wheelbarrow and a balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and the rabbit came along.,and the rabbit came along,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,(the r) the rabbit was amaze/ed : by the balloon.,the rabbit was amazed by the balloon,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and the dog look/ed happy.,and the dog looked happy,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,the rabbit start/ed untie/ing the balloon.,the rabbit started untying the balloon,0 0 4 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and the dog was surprise/ed.,and the dog was surprised,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,the rabbit let go of the balloon.,the rabbit let go of the balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and the balloon flew up.,and the balloon flew up,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,the rabbit was amaze/ed by how the balloon float/ed up : so fast.,the rabbit was amazed by how the balloon floated up so fast,0 0 0 4 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and the dog was get/ing really mad at the rabbit.,and the dog was getting really mad at the rabbit,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,(then : a) then they saw (a guy) a dog : with a whole bunch of balloon/s.,then they saw a dog with a whole bunch of balloons,0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and (the) the rabbit ask/ed : if they could have one balloon.,and the rabbit asked if they could have one balloon,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,but the dog answer/ed : five cent/s for a balloon.,but the dog answered five cents for a balloon,0 0 0 4 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,they look/ed : sad.,they looked sad,0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,(and) : and the (um) dog said that will teach you not to : throw away balloon/s[~!_sternly]!,and the dog said that will teach you not to throw away balloons,0 0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,then they saw : the rabbit/z mom.,then they saw the rabbit's mom,0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and (the rabbit ask/ed : if) the rabbit ask/ed his mom (if he could) if he could have : a[-:] balloon.,and the rabbit asked his mom if he could have a balloon,0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,the rabbit paid the dog : (two five uh) two nickel/s.,the rabbit paid the dog two nickels,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and he gave : the rabbit and the dog each a balloon.,and he gave the rabbit and the dog each a balloon,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,: the dog : got a balloon.,the dog got a balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and he look/ed very happy.,and he looked very happy,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and so did the rabbit.,and so did the rabbit,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and so did the mom.,and so did the mom,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,one day there was an elephant and a giraffe.,one day there was an elephant and a giraffe,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the elephant was bounce/ing (uh) a ball.,the elephant was bouncing a ball,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the ball[-:] fell in the water[-:].,the ball fell in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,and the giraffe jump/ed in the water and (got) swam to the ball.,and the giraffe jumped in the water and swam to the ball,0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,he got the ball and gave it to the elephant.,he got the ball and gave it to the elephant,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the elephant[-:] : said thank you.,the elephant said thank you,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the : elephant and the (g) giraffe were look/ing in the water[-:].,the elephant and the giraffe were looking in the water,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the elephant was going to go off : the (um) : board[-:].,the elephant was going to go off the board,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the elephant slip/ed[-:] : and fell.,the elephant slipped and fell,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,she hurt her knee.,she hurt her knee,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the elephant start/ed to cry.,the elephant started to cry,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,so the lifeguard came and put a bandaid on it.,so the lifeguard came and put a bandaid on it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the lifeguard[-:] telled|tell[EW:told] her to sit on the bench.,the lifeguard telled her to sit on the bench,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,(she : t) the lifeguard told the elephant : (to) not to run.,the lifeguard told the elephant not to run,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,one day there was an elephant and a giraffe.,one day there was an elephant and a giraffe,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the giraffe had an airplane.,the giraffe had an airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,he was : play/ing with it[-:].,he was playing with it,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the elephant took it away from him.,the elephant took it away from him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,and the elephant drop/ed it in the water[!].,and the elephant dropped it in the water,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the[-:] giraffe got very mad at the elephant.,the giraffe got very mad at the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,and : the lifeguard came[-:] (to try to get) and look/ed at the airplane.,and the lifeguard came and looked at the airplane,0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the elephant : was tell/ing the lifeguard about the airplane.,the elephant was telling the lifeguard about the airplane,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the lifeguard try/ed to get the airplane.,the lifeguard tried to get the airplane,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,but the lifeguard could not get it.,but the lifeguard could not get it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,so (a uh) a girl other elephant came with a net : and got the airplane out.,so a girl other elephant came with a net and got the airplane out,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,and the giraffe was very happy.,and the giraffe was very happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,(and the elephant and the giraffe) : the giraffe hug/ed the (hair) airplane[-:].,the giraffe hugged the airplane,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,one day there was a bunny : and another bunny.,one day there was a bunny and another bunny,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,they[-:] built a sandcastle.,they built a sandcastle,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,(they) the boy bunny put the big bucket of sand on the sandcastle.,the boy bunny put the big bucket of sand on the sandcastle,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,and the sandcastle broke.,and the sandcastle broke,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,and the girl[-:] : bunny start/ed to cry.,and the girl bunny started to cry,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the : boy[-:] bunny and the girl bunny went for a picnic.,the boy bunny and the girl bunny went for a picnic,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,they[-:] found a spot near the tree/s.,they found a spot near the trees,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the boy bunny ate all the food.,the boy bunny ate all the food,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,and he got sick.,and he got sick,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,so : (uh) the girl bunny went to get a doctor bunny.,so the girl bunny went to get a doctor bunny,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the girl bunny pull/ed the doctor bunny to the boy bunny.,the girl bunny pulled the doctor bunny to the boy bunny,0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the doctor bunny told : the boy bunny : not to eat : lot/s of food.,the doctor bunny told the boy bunny not to eat lots of food,0 0 0 0 0 0 0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the (r uh) doctor bunny took the boy bunny : with her.,the doctor bunny took the boy bunny with her,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,one day there was the girl bunny.,one day there was the girl bunny,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,she had a wagon with a balloon on it.,she had a wagon with a balloon on it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the boy bunny : look/ed at the balloon.,the boy bunny looked at the balloon,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,and (h) the boy bunny took the balloon off.,and the boy bunny took the balloon off,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,and it (f) the balloon flew in the air.,and it the balloon flew in the air,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the girl bunny was mad at the boy bunny.,the girl bunny was mad at the boy bunny,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,there[-:] was a man hold/ing : balloon/s.,there was a man holding balloons,0 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,and the : boy bunny went to buy one.,and the boy bunny went to buy one,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,he ask/ed for a balloon.,he asked for a balloon,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,but he could not buy the balloon/s because they were five cent/s.,but he could not buy the balloons because they were five cents,0 0 0 0 0 0 1 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,and he did not have any money.,and he did not have any money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the girl[-:] : bunny and the boy bunny were very sad.,the girl bunny and the boy bunny were very sad,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,(um) a : other bunny : was walk/ing down the path.,a other bunny was walking down the path,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,and the boy bunny ask|ask[EW:asked] if the girl had any money to buy a balloon.,and the boy bunny ask if the girl had any money to buy a balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,and the girl[-:] (b) : bunny gave : (the um) : the person with the balloon/s : the money (so that tho) so that the bunny/s could have (the) two balloon/s.,and the girl bunny gave the person with the balloons the money so that the bunnies could have two balloons,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the boy[-:] bunny and the girl bunny were very happy.,the boy bunny and the girl bunny were very happy,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,a cow saw (um) : a[EW:an] elephant.,a cow saw a elephant,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: and (um) : they want/ed to go in the pool[-:].,and they wanted to go in the pool,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: and that : (um) : giraffe was try/ing to catch the ball.,and that giraffe was trying to catch the ball,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: and : (um) : the elephant catched|catch[EW:caught] the ball.,and the elephant catched the ball,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: and (um) : the elephant : want/ed to keep it.,and the elephant wanted to keep it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,that is the whole story [+_bch].,that is the whole story,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,(the ele*) the giraffe saw a pool[-:] :.,the giraffe saw a pool,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,they went there[-:] :.,they went there,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,and the elephant ran :.,and the elephant ran,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,and the elephant scrape/ed his knee[-:] :.,and the elephant scraped his knee,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,and he was cry/ing :.,and he was crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,and he need/ed help.,and he needed help,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,so (h*) he put a (bandage on) bandaid on (hi*) her :.,so he put a bandaid on her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,and (um) it was feel/ing better :.,and it was feeling better,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,so she sat on the bench.,so she sat on the bench,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,(um) : (the elephant) the giraffe want/ed to (play hi*) play with his plane.,the giraffe wanted to play with his plane,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: and : the elephant said no[!].,and the elephant said no,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: and the elephant (um) want/ed to play with it.,and the elephant wanted to play with it,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,so : she grab/ed it from the giraffe {makes high pitched sound} [/hU/].,so she grabbed it from the giraffe,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,and the elephant (throw it) threw it (o*) in the water.,and the elephant threw it in the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: and : the : giraffe trieded|try[EW:try/ed] to get it.,and the giraffe trieded to get it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,and *the elephant try/ed to : get it : [EU].,and elephant tried to get it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: and : he help/3s [-:].,and he helps,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: and he : (s*) decide/ed to get it.,and he decided to get it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: and (um) : he try/ed to (get) get it.,and he tried to get it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,and[-:] : the elephant try/ed.,and the elephant tried,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,and the giraffe try/ed.,and the giraffe tried,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,and (the : elephant did not ca* he the elephant) the : different[!] elephant want/ed to get it.,and the different elephant wanted to get it,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: and[-:] (ah) : the different elephant : got it.,and the different elephant got it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: and[-:] the different elephant : got it.,and the different elephant got it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: and the giraffe said thanks elephant.,and the giraffe said thanks elephant,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,(the bunny the) ((who is this)) <> <> the bunny[-:] try/ed to : fix[-:] the : castle.,) the bunny tried to fix the castle,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,.,It is your story,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,.,I can not see the pictures,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: and the bunny made a : castle.,and the bunny made a castle,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: (the bunny) : the sand (w*) was dryed[EW:dry] [?].,the sand was dryed,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,(and the) : and her friend said {sharp intake of breath}.,and her friend said,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: and the bunny said {sharp intake of breath} : let us make another one.,and the bunny said let us make another one,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,(um) : the bunny and her friend went on a picnic.,the bunny and her friend went on a picnic,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,and the bunny ate : food.,and the bunny ate food,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,and the bunny was full.,and the bunny was full,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,and the bunny : hit his head on the grass.,and the bunny hit his head on the grass,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,(and his mother said[-:] : in her) the bunny/z friend : went to his mother.,the bunny's friend went to his mother,0 2 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,(and then : he said she said) he said come here.,he said come here,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,and (sh*) she said : look at that round : thing[?].,and she said look at that round thing,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,what?,what,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,the round thing on his head [+_bch].,the round thing on his head,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,and : the bunny said goodbye to his friend.,and the bunny said goodbye to his friend,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,the[-:] bunny said hi to his friend.,the bunny said hi to his friend,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,he want/ed a balloon.,he wanted a balloon,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: and he took one.,and he took one,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,and he stealed|steal[EW:stole] it.,and he stealed it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: (and he) and the bunny/z friend said {gasping sound}.,and the bunny's friend said,0 0 2 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,and it blowed|blow[EW:blew] away.,and it blowed away,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,and the bunny/z friend said {shrugs shoulders}.,and the bunny's friend said,0 0 2 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,what was that?,what was that,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,he said [+_bch].,he said,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,what did he say?,what did he say,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,he said {shrugs shoulders} [+_bch].,he said,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,oh shoulder/s up.,oh shoulders up,0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,(he s*) he was angry.,he was angry,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: and the bunny/z friend : want/ed a balloon again.,and the bunny's friend wanted a balloon again,0 0 2 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,he want/ed to what?,he wanted to what,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,he want/ed a balloon again [+_bch].,he wanted a balloon again,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,oh balloon oh okay I was not sure what you said.,oh balloon oh okay I was not sure what you said,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,(and the bunny/z frien*) the bunny : (um) show/ed what (one one/s) one it want/ed.,the bunny showed what one it wanted,0 0 4 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,and : it was number five.,and it was number five,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: (and the bunny said) and the bunny said no[!].,and the bunny said no,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,and[-:] the bunny want/ed to have it.,and the bunny wanted to have it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,(but he she) and he change/ed it/z[EW:his] mind.,and he changed it's mind,0 0 4 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: and then (her) his mother came.,and then his mother came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,and they had two balloon/s.,and they had two balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: and then : they got it.,and then they got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,(one) an elephant love/ed to play basketball.,an elephant loved to play basketball,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,and she was near a pool.,and she was near a pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,she accidentally hit it with her nose.,she accidentally hit it with her nose,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,and it went bounce/ing into the water.,and it went bouncing into the water,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,a giraffe came by (and swam into th) and swam into the water to get her ball.,a giraffe came by and swam into the water to get her ball,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,the giraffe (got) got the ball and gave it to the (el) elephant.,the giraffe got the ball and gave it to the elephant,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,the elephant said thank you.,the elephant said thank you,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,(and they) and the giraffe really like/ed the elephant.,and the giraffe really liked the elephant,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,one day the giraffe and (the) the elephant (were watch/ing) (were um) (were look/ing) were laugh/ing at the pool because the pool was splash/ing all over the place.,one day the giraffe and the elephant were laughing at the pool because the pool was splashing all over the place,0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,the elephant (tr) was go/ing to run and jump (on) into the water.,the elephant was going to run and jump into the water,0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,but she slip/ed.,but she slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,and she fell on her knee.,and she fell on her knee,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,and she scrape/ed it.,and she scraped it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,and she start/ed cry/ing.,and she started crying,0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,so the giraffe came over and : help/ed her (with her s scrape/ed) with her scrape/ed knee.,so the giraffe came over and helped her with her scraped knee,0 0 0 0 0 0 4 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,the lifeguard put a bandaid on it.,the lifeguard put a bandaid on it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,and the giraffe held : the elephant/z hand.,and the giraffe held the elephant's hand,0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,(eleph) (elephant) the elephant was okay.,the elephant was okay,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,(and and the giraffe gave her a) and the giraffe save/ed her a seat on a bench.,and the giraffe saved her a seat on a bench,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,(and the elephant) and the lifeguard got really mad at her because on a sign it said no run/ing.,and the lifeguard got really mad at her because on a sign it said no running,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,one day the giraffe got a new airplane.,one day the giraffe got a new airplane,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,the giraffe start/ed break/ing and zoom/ed it all over the place and got the elephant really dizzy.,the giraffe started breaking and zoomed it all over the place and got the elephant really dizzy,0 0 4 6 0 4 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,(the elephant) the elephant got really jealous (and took hi) and took the giraffe/z airplane.,the elephant got really jealous and took the giraffe's airplane,0 0 0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,(the a) the (air) airplane slip/ed out of the elephant/z hand and drop/ed into the pool.,the airplane slipped out of the elephant's hand and dropped into the pool,0 0 4 0 0 0 2 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,the giraffe got really mad at elephant and start/ed make/ing a mad grin at her.,the giraffe got really mad at elephant and started making a mad grin at her,0 0 0 0 0 0 0 0 4 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,the lifeguard (got really) (got :) was really : not too happy with elephant and the giraffe.,the lifeguard was really not too happy with elephant and the giraffe,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,the elephant ask/ed (the) the lifeguard to swim and go get the airplane.,the elephant asked the lifeguard to swim and go get the airplane,0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,but the airplane was really really wet.,but the airplane was really really wet,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,the lifeguard try/ed to reach for it.,the lifeguard tried to reach for it,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,but he just could not reach.,but he just could not reach,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,elephant (got really) got really sad.,elephant got really sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,and giraffe start/ed cry/ing.,and giraffe started crying,0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,(the) the elephant/z mom came over with a net : because she was just fish/ing in : a lake.,the elephant's mom came over with a net because she was just fishing in a lake,0 2 0 0 0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,she pick/ed up the airplane : by the net and (gave it to the elephant) gave it to the giraffe.,she picked up the airplane by the net and gave it to the giraffe,0 4 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,the giraffe was really please/ed and happy : (for um) for that the elephant/z mom gave him the airplane.,the giraffe was really pleased and happy for that the elephant's mom gave him the airplane,0 0 0 0 4 0 0 0 0 0 2 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,and they play/ed with it together.,and they played with it together,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,and they had fun.,and they had fun,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,bunny : (made) (was dig/ing in) was dig/ing in the sand and made a pail : of sand.,bunny was digging in the sand and made a pail of sand,0 0 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,he dump/ed it on his little sister/z castle.,he dumped it on his little sister's castle,0 4 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,and his little sister got really mad.,and his little sister got really mad,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,so she start/ed cry/ing.,so she started crying,0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,one day : (the bunny/z little sister and he) the bunny and I were go/ing on a picnic.,one day the bunny and I were going on a picnic,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,(the) : (I) : (the bunny) (the bunny took a huge pic) the bunny took a huge snack : and was very full after that.,the bunny took a huge snack and was very full after that,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,he had a big bump on his belly (and was ver) and had a really (s) bad stomachache.,he had a big bump on his belly and had a really bad stomachache,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,he start/ed daze/ing off and went to sleep.,he started dazing off and went to sleep,0 4 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,then a doctor ran by.,then a doctor ran by,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,and his little sister : ask/ed the doctor if (sh) you could help my brother.,and his little sister asked the doctor if you could help my brother,0 0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,and then the doctor said yeah.,and then the doctor said yeah,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,so the doctor came and sat beside the bunny and help/ed him.,so the doctor came and sat beside the bunny and helped him,0 0 0 0 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,(the) (the) the bunny was all right.,the bunny was all right,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,and the little sister was happy (that he did something right for) that she did something right for his brother.,and the little sister was happy that she did something right for his brother,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,one day : the bunny/z little sister : brang|bring[EW:brought] a bucket with a balloon on the side.,one day the bunny's little sister brang a bucket with a balloon on the side,0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,(bunny got) bunny thought it was a really nice balloon : and start/ed grab/ing it.,bunny thought it was a really nice balloon and started grabbing it,0 0 0 0 0 0 0 0 0 4 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,he untie/ed it.,he untied it,0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,and it almost flew away.,and it almost flew away,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,but then after awhile : it flew (past their) (the) over their head/s.,but then after awhile it flew over their heads,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,it was very gone.,it was very gone,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,(it) (it was) (it was) it was gone out of sight.,it was gone out of sight,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,(and bu) and bunny/z little sister got really mad at the bunny.,and bunny's little sister got really mad at the bunny,0 2 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,the bunny : ran over to (a balloon) a balloon man (and bought) (and bought the) (and bought s) and bought a balloon (um) that he got for his allowance from his mom and dad.,the bunny ran over to a balloon man and bought a balloon that he got for his allowance from his mom and dad,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,the bunny pick/ed a yellow one because there was a yellow one (uh) beside : bunny/z little sister/z : (um) bucket.,the bunny picked a yellow one because there was a yellow one beside bunny's little sister's bucket,0 0 4 0 0 0 0 0 0 0 0 0 0 2 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,(and) : (and the balloon) (and the balloon) and the balloon was five cent/s.,and the balloon was five cents,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,but he only had three.,but he only had three,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,so then he could not get any balloon.,so then he could not get any balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,so he ran off : with no balloon until (he saw a doc) (um the) : (his) he saw his mom and ask/ed them if I could get a balloon for my little sister.,so he ran off with no balloon until he saw his mom and asked them if I could get a balloon for my little sister,0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,and she said : I might be able to get one.,and she said I might be able to get one,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,(so she gave) so she gave the balloon man (uh) five cent/s.,so she gave the balloon man five cents,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,and they both share/ed a balloon.,and they both shared a balloon,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(fir) first there is an elephant that (um) see/3s a[-:] : giraffe.,first there is an elephant that sees a giraffe,0 0 0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(and then) and the giraffe (ask) ask/3s (if the ele) if : the giraffe can play (with the elephant) (with his) with the elephant/z ball.,and the giraffe asks if the giraffe can play with the elephant's ball,0 0 0 3 0 0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(then they) then they accidentally throw it.,then they accidentally throw it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,and it land/3s (in the) in the[-:] swimming pool.,and it lands in the swimming pool,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(then he dive) then the : (um) : giraffe dive/3s into the : swimming pool to grab the ball.,then the giraffe dives into the swimming pool to grab the ball,0 0 0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(then) (but) (an) and then the giraffe give/3s the ball back (to) : to the elephant.,and then the giraffe gives the ball back to the elephant,0 0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(and then : he say) then he is say/ing you are welcome.,then he is saying you are welcome,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(after they) after : the : giraffe : got out of the pool : the giraffe dry/ed up.,after the giraffe got out of the pool the giraffe dried up,0 0 0 0 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,then they : felt like go/ing for a swim.,then they felt like going for a swim,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,but they did not want to.,but they did not want to,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,then they want/ed to go off the diving board.,then they wanted to go off the diving board,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(so the eleph) so they both ran there.,so they both ran there,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,and the elephant start/ed to slip.,and the elephant started to slip,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,and the elephant slip/ed and scratch/ed : her knee.,and the elephant slipped and scratched her knee,0 0 0 4 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,now the elephant is cry/ing.,now the elephant is crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(and) and the lifeguard[-:] came.,and the lifeguard came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,the lifeguard gave the elephant : a bandaid.,the lifeguard gave the elephant a bandaid,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,then the (ele) lifeguard (s) : put the : elephant on the bench.,then the lifeguard put the elephant on the bench,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,then the lifeguard was talk/ing : (to the) to the little elephant about no run/ing.,then the lifeguard was talking to the little elephant about no running,0 0 0 0 6 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,then the giraffe (bring) : go/3s home quickly and grab/3s an airplane and come/3s back to the swimming pool.,then the giraffe goes home quickly and grabs an airplane and comes back to the swimming pool,0 0 0 3 0 0 0 3 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(then they are play/ing) and : then the giraffe is play/ing with it.,and then the giraffe is playing with it,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,and the elephant is watch/ing.,and the elephant is watching,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,then the elephant take/3s it (from) from the giraffe and start/3s (play) fly/ing it around.,then the elephant takes it from the giraffe and starts flying it around,0 0 0 3 0 0 0 0 0 3 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,then the elephant drop/3s it in the water.,then the elephant drops it in the water,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(then) now : the giraffe : is mad at the elephant : for drop/ing it in the water.,now the giraffe is mad at the elephant for dropping it in the water,0 0 0 0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,now the lifeguard come/3s : and ask/3s (what is wrong) what is wrong.,now the lifeguard comes and asks what is wrong,0 0 0 3 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,then the lifeguard try/3s to reach it out of the water.,then the lifeguard tries to reach it out of the water,0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,but the lifeguard could not get it.,but the lifeguard could not get it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,and the (g) giraffe is cry/ing about his airplane.,and the giraffe is crying about his airplane,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,then (the um[-:]) another elephant come/3s with a net : and (s) (try) is about to scoop it up.,then another elephant comes with a net and is about to scoop it up,0 0 0 3 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(then the : el) then she scoop/3s it up.,then she scoops it up,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(and then : the giraffe) : (pl) (get/3s to play with his air) now the giraffe has his airplane back.,now the giraffe has his airplane back,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(now he) now he is hug/ing his airplane.,now he is hugging his airplane,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,first : (there wa : uh) there was a : rabbit and a dog play/ing in the sand make/ing a sandcastle.,first there was a rabbit and a dog playing in the sand making a sandcastle,0 0 0 0 0 0 0 0 6 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,then the rabbit fill/ed a bucket up with sand : (the) when the dog (was make) had a : really neat : castle.,then the rabbit filled a bucket up with sand when the dog had a really neat castle,0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(then the) : then the rabbit dump/3s all that sand[-:] on the : castle.,then the rabbit dumps all that sand on the castle,0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,now the castle is ruin/ed.,now the castle is ruined,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(now this) : now the rabbit : is[-:] : confuse/ed.,now the rabbit is confused,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,and the dog is cry/ing.,and the dog is crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,first there was a : dog and a rabbit go/ing for a picnic.,first there was a dog and a rabbit going for a picnic,0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(then there uh) and the rabbit has a whole bunch of food set down already.,and the rabbit has a whole bunch of food set down already,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,and the rabbit eat/3s it all up.,and the rabbit eats it all up,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(now he is) now (he is) (s uh) he is sick.,now he is sick,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,then a doctor come/3s by.,then a doctor comes by,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,and the (dog so) dog go/3s run/ing toward/s the doctor to say that the rabbit is sick.,and the dog goes running towards the doctor to say that the rabbit is sick,0 0 0 3 6 1 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(she) : now : the dog is try/ing to pull the doctor over to the rabbit.,now the dog is trying to pull the doctor over to the rabbit,0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,now he is sick.,now he is sick,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,and the doctor give/3s him a pill.,and the doctor gives him a pill,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(then he feel) now they are walk/ing to the hospital for him to rest.,now they are walking to the hospital for him to rest,0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,once there was a dog and a little rabbit.,once there was a dog and a little rabbit,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,and the dog had a balloon tie/ed to his (wheelbarrow : uh) [~_I_mean] wagon.,and the dog had a balloon tied to his wagon,0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,and then : the rabbit untie/3s : the balloon off the : wagon.,and then the rabbit unties the balloon off the wagon,0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,then : (the rabbit) : it slip/3s out of the rabbit/z hand.,then it slips out of the rabbit's hand,0 0 3 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,and it fly/3s away.,and it flies away,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(now the) : now the dog is mad at the rabbit.,now the dog is mad at the rabbit,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,and then they see (a balloon sale) (s) a balloon man sell/ing balloon/s.,and then they see a balloon man selling balloons,0 0 0 0 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,they ran over.,they ran over,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(they ask if th) the rabbit ask/3s if he can have a balloon.,the rabbit asks if he can have a balloon,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(you need five c) the : balloon (sale) saler[EW:seller] say/3s you need five cent/s before you can have a balloon[-:].,the balloon saler says you need five cents before you can have a balloon,0 0 0 3 0 0 0 1 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(then the dog come/3s and ask/3s) and then the dog come/3s.,and then the dog comes,0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,and they are : look/ing at : the balloon saler[EW:seller]: smile/ing.,and they are looking at the balloon saler smiling,0 0 0 6 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,then they see the doctor again.,then they see the doctor again,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(they come run/ing to) the rabbit go/3s run/ing to the doctor.,the rabbit goes running to the doctor,0 0 3 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(the doc) (the) (he) the rabbit ask/3s the (dos) doctor (if he) if the doctor can : (um) buy a balloon for the dog and : the rabbit.,the rabbit asks the doctor if the doctor can buy a balloon for the dog and the rabbit,0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(then) : then the : doctor give/3s the balloon saler[EW:seller]: some money.,then the doctor gives the balloon saler some money,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,and then (they get) they both get (two balloon[EW:balloons]) one balloon.,and then they both get one balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(now they are hug/ing) now they are hang/ing onto their balloon/s so they do not fly away.,now they are hanging onto their balloons so they do not fly away,0 0 0 6 0 0 1 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,(um) elephant and the giraffe want to go in the water[!].,elephant and the giraffe want to go in the water,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and then the balloon went in the water[!].,and then the balloon went in the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and then the giraffe went to swim and get the balloon.,and then the giraffe went to swim and get the balloon,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and : then (the giraffe said : thank you to the uh) the (uh) : elephant said thank you to the giraffe.,and then the elephant said thank you to the giraffe,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and he said I am not go/ing to get (the balloo) (wa um the) the ball in the water.,and he said I am not going to get the ball in the water,0 0 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,(um) the giraffe : and the : elephant were : look/ing at the water.,the giraffe and the elephant were looking at the water,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and she was : start/ing to run.,and she was starting to run,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and then she fall|fall[EW:fell] down : and hurt herself.,and then she fall down and hurt herself,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and (then) then the lifeguard comed|come[EW:came] and : look/ed at her knee.,and then the lifeguard comed and looked at her knee,0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and then : she start|start[EW:started] to cry.,and then she start to cry,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and then she put a bandage on.,and then she put a bandage on,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and then (she said) the lifeguard said look at the sign.,and then the lifeguard said look at the sign,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,(there is) it say/3s no run/ing.,it says no running,0 3 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,(um) the : giraffe has a[EW:an] airplane.,the giraffe has a airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and they want to play with the airplane.,and they want to play with the airplane,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and they play/ed with it.,and they played with it,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,(and she) and the : elephant grab/ed it from the giraffe.,and the elephant grabbed it from the giraffe,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and then it (goed|go[EW:went] into) falled|fall[EW:fell] in the water.,and then it falled in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and then the giraffe was very angry.,and then the giraffe was very angry,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and then a lifeguard camed|come[EW:came] : and : said could you help : me take this (uh) airplane out of the water?,and then a lifeguard camed and said could you help me take this airplane out of the water,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,(and) and the lifeguard could not reach it.,and the lifeguard could not reach it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and (then) : then the : giraffe start/ed to cry.,and then the giraffe started to cry,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and (then) : then the lady went to get the airplane.,and then the lady went to get the airplane,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and she : got it with a net.,and she got it with a net,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and then she said thank you to the lady : the giraffe.,and then she said thank you to the lady the giraffe,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and (then) then the : elephant smile/ed at him.,and then the elephant smiled at him,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,A dog and a rabbit is[EW:are] talk/ing together.,A dog and a rabbit is talking together,0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,they are make/ing a sandcastle together.,they are making a sandcastle together,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and they put sand on top of the sandcastle.,and they put sand on top of the sandcastle,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,(and) and it got smash/ed.,and it got smashed,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and then the : dog was try/ing to get it back together.,and then the dog was trying to get it back together,0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,(um shhh) he is meet/ing *a new friend [EU].,he is meeting new friend,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and they they are go/ing to have a picnic together.,and they they are going to have a picnic together,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and then they got *a tummyache [EU].,and then they got tummyache,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,(one was um) the rabbit was sick.,the rabbit was sick,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and the dog was not sick.,and the dog was not sick,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,(and : there is) and there was a lady.,and there was a lady,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and the dog was try/ing to talk to the lady.,and the dog was trying to talk to the lady,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and she was pull/ing the lady to the rabbit.,and she was pulling the lady to the rabbit,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and they were check/ing her.,and they were checking her,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and then she : went with the doctor.,and then she went with the doctor,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,there is (the) the dog and the rabbit.,there is the dog and the rabbit,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and the dog got a balloon.,and the dog got a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and the rabbit want|want[EW:wanted] a balloon.,and the rabbit want a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and (he was) (she) the rabbit was untie/ing it.,and the rabbit was untying it,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and then it flew in the air.,and then it flew in the air,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and the dog was very angry.,and the dog was very angry,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,(and then they went) (and then I saw) and the rabbit and the dog saw a balloon man.,and the rabbit and the dog saw a balloon man,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and the rabbit want|want[EW:wanted] a balloon.,and the rabbit want a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and he said do you have any money.,and he said do you have any money,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and he said no.,and he said no,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,so they could not get a balloon.,so they could not get a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,(so they were) so they went to the lady and got a balloon.,so they went to the lady and got a balloon,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,(and she said could I) and the rabbit said could I have some money[?].,and the rabbit said could I have some money,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and they gived|give[EW:gave] it to the balloon man.,and they gived it to the balloon man,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and then they got a balloon.,and then they got a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and they were happy then.,and they were happy then,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,the giraffe and the elephant were have/ing fun *and were go/ing to [~__gonna] play tennis [EU].,the giraffe and the elephant were having fun were going to play tennis,0 0 0 0 0 0 6 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and their ball went into the swimming pool.,and their ball went into the swimming pool,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,they did not know they were at a swimming pool.,they did not know they were at a swimming pool,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,they thought they were at a tennis court.,they thought they were at a tennis court,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,then the giraffe try/ed to go in.,then the giraffe tried to go in,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,(and h) and he could not get it.,and he could not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,(and the elephant got) and the giraffe got the ball.,and the giraffe got the ball,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and the elephant : got it from the giraffe : and put it somewhere and help/ed the giraffe out of the pool.,and the elephant got it from the giraffe and put it somewhere and helped the giraffe out of the pool,0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,: and then the : elephant : was hug/ing her ball.,and then the elephant was hugging her ball,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and the giraffe was soak/ing wet.,and the giraffe was soaking wet,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,the giraffe and the elephant were go/ing to the swimming pool.,the giraffe and the elephant were going to the swimming pool,0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,: elephant and the (gg) giraffe were (walk/ing to the pool) walk/ing on the part from the pool.,elephant and the giraffe were walking on the part from the pool,0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and the elephant was (ru) run/ing.,and the elephant was running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,she thought she was run/ing (on the pa) on the part to walk on.,she thought she was running on the part to walk on,0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and she was go/ing to[:_gonna] run into the pool while she was talk/ing.,and she was going to run into the pool while she was talking,0 0 0 6 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and then the elephant slip/ed.,and then the elephant slipped,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and the giraffe try/ed to catch her.,and the giraffe tried to catch her,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and then she scrap/ed her knee.,and then she scraped her knee,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,: and then the pool man came.,and then the pool man came,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,: and he put a bandaid on her knee.,and he put a bandaid on her knee,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and then (she was) she felt better.,and then she felt better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and (then the) [<~_child_sighs]sigh[>~_child_sighs] then the elephant man at the pool said do not run.,and sigh then the elephant man at the pool said do not run,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and he was mad.,and he was mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and she was kind of[:_kindda] scare/ed.,and she was kind of scared,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,the giraffe went to the pool with his friend the elephant.,the giraffe went to the pool with his friend the elephant,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and he brought his plane with him.,and he brought his plane with him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,he try/ed to fly it.,he tried to fly it,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and it fell into the pool.,and it fell into the pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and then : it did not actually fall into the pool.,and then it did not actually fall into the pool,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,they thought it would.,they thought it would,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and then (the giraffe caught it from the) [~_I_mean] the elephant caught it from the giraffe.,and then the elephant caught it from the giraffe,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and then it fell into the pool.,and then it fell into the pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,: and then the giraffe was mad at the elephant.,and then the giraffe was mad at the elephant,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and then the pool man came.,and then the pool man came,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,then : (he) the pool man (wa) was scare/ed.,then the pool man was scared,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,(and the elephant was tal) the girl elephant was talk/ing.,the girl elephant was talking,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and the giraffe was just look/ing at his plane.,and the giraffe was just looking at his plane,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and the pool man try/ed to get it.,and the pool man tried to get it,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,but he could not.,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,: and the giraffe was cry/ing.,and the giraffe was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,: (and then a) and then a lady at the pool had a net : and got it out for them.,and then a lady at the pool had a net and got it out for them,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,then she try/ed.,then she tried,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,: and then she got it out.,and then she got it out,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and the giraffe was happy.,and the giraffe was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and the giraffe : was hug/ing it/z plane.,and the giraffe was hugging it's plane,0 0 0 0 6 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and the elephant was hug/ing [EU].,and the elephant was hugging,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and her hand/s were stuck together.,and her hands were stuck together,0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,the bunny and the dog (went for their) (went to the st) went to play in the sandbox.,the bunny and the dog went to play in the sandbox,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and they build|build[EW:built] a sandcastle.,and they build a sandcastle,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,: and the bunny put more sand on it.,and the bunny put more sand on it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and it fell down.,and it fell down,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and there was only one part of the castle : there.,and there was only one part of the castle there,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,: (then they built) and then the bunny try/ed to build it back.,and then the bunny tried to build it back,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,the bunny and the dog went for a picnic.,the bunny and the dog went for a picnic,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,the dog was go/ing somewhere else.,the dog was going somewhere else,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and the bunny was go/ing somewhere.,and the bunny was going somewhere,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,they both end up at the same place because they both were plan/ing to go somewhere.,they both end up at the same place because they both were planning to go somewhere,0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,the dog thought he was go/ing somewhere else.,the dog thought he was going somewhere else,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,but they did not.,but they did not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,they went to the same place.,they went to the same place,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,oh I do not know this one [+_bch].,oh I do not know this one,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,(um) : and the dog ate the sandwich.,and the dog ate the sandwich,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and the dog had a drink.,and the dog had a drink,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and the bunny was full.,and the bunny was full,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and then (th) there is a doctor.,and then there is a doctor,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and the dog ask/ed the doctor to fix the bunny.,and the dog asked the doctor to fix the bunny,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and : the dog put all the doctor/z stuff on.,and the dog put all the doctor's stuff on,0 0 0 0 0 0 2 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and then the doctor : fix/ed the bunny.,and then the doctor fixed the bunny,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and then they both went home.,and then they both went home,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,the bunny and the dog (went) were go/ing to the park.,the bunny and the dog were going to the park,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and they had a balloon on their wagon : the dog.,and they had a balloon on their wagon the dog,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,the bunny want/ed to bite the string off the balloon.,the bunny wanted to bite the string off the balloon,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and the bunny try/ed to.,and the bunny tried to,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and then the balloon went up in the sky.,and then the balloon went up in the sky,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and they lost it.,and they lost it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and they can only see the string.,and they can only see the string,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and the dog was mad.,and the dog was mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,a bunny had more balloon/s.,a bunny had more balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and they want/ed to get one.,and they wanted to get one,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and the bunny (to) told the man what happen/ed.,and the bunny told the man what happened,0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and it was five cent/s.,and it was five cents,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,: and the bunny said I do not have that much.,and the bunny said I do not have that much,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,: and then they did not get one.,and then they did not get one,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,the doctor came.,the doctor came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,(the doctor gave) the doctor : had fun.,the doctor had fun,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,had what?,had what,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,"[~_whispers] had fun, fun [+_bch].",had fun fun,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,the doctor gave the man : money (so the two) so the bunny and the dog could get some balloon/s.,the doctor gave the man money so the bunny and the dog could get some balloons,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and the doctor was happy.,and the doctor was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and the dog was happy.,and the dog was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and the bunny was happy.,and the bunny was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,the guy was walk/ing.,the guy was walking,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,and : him[EW:he] saw the ball.,and him saw the ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,him[EW:he] fell down in the water.,him fell down in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,him[EW:he] (can not) can not get up.,him can not get up,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,he got up.,he got up,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,(um) him[EW:he] was not come/ing in.,him was not coming in,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,him[EW:he] did not come in.,him did not come in,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,and it was (the k) the elephant jump/ed in [EU].,and it was the elephant jumped in,0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,and the elephant was scare/ed.,and the elephant was scared,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,and the elephant was walk/ing and close[EW:closing] hims[EW:his] eyes.,and the elephant was walking and close hims eyes,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,and (um um) hims[EW:his] feet hurted|hurt[EW:hurt].,and hims feet hurted,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,(um) and (him) him[EW:he] want/ed to go home.,and him wanted to go home,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,him[EW:he] was sitted|sit[EW:sitting] on a : chair.,him was sitted on a chair,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,him[EW:he] stay/ed there.,him stayed there,0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,(um) him[EW:he] was laugh/ing[-:] .,him was laughing,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,him[EW:he] had an airplane.,him had an airplane,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,and him[EW:he] was fly/ing it.,and him was flying it,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,(and him) and him[EW:he] put it in the water.,and him put it in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,and him[EW:he] was float/ing down.,and him was floating down,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,and him[EW:he] was mad.,and him was mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,and : he can not swim in there.,and he can not swim in there,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,him[EW:he] was try/ing to catch it.,him was trying to catch it,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,(him wa) him[EW:he] was sad.,him was sad,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,him[EW:he] was try/ing to catch a fish.,him was trying to catch a fish,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,him[EW:he] was try/ing to get (the uh) (um the) (um the um) helicopter.,him was trying to get helicopter,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,(um) him[EW:he] (uh) got it.,him got it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,(him uh was uh) him[EW:he] was sleep/ing.,him was sleeping,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,end [+_bch].,end,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,him[EW:he] was : make/ing a castle.,him was making a castle,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,him[EW:he] was make/ing : a house.,him was making a house,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,him[EW:he] was go/ing to[:_gonna] make a : castle with a building.,him was going to make a castle with a building,0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,him[EW:he] breaked|break[EW:broke] it.,him breaked it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,him[EW:he] make[EW:made] a different one.,him make a different one,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,the guy was (walk/ing with snow) : make/ing a castle with (ca um) snow.,the guy was making a castle with snow,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,sit/ing [EU].,sitting,6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,make castle/s to put snow [EU].,make castles to put snow,0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,(um) carry/ing it walk/ing [EU].,carrying it walking,6 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,and stay/ing [EU].,and staying,0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,(um) : fell down [EU].,fell down,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,walk/ing [EU].,walking,6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,(the : uh) him[EW:he] was pull/ing the sled[~?_shried].,him was pulling the sled,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,(and) and the balloon *was stay/ing [EU].,and the balloon staying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,and him[EW:he] was hold/ing the balloon.,and him was holding the balloon,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,and the balloon flied|fly[EW:flew] away.,and the balloon flied away,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,and it poppeded|pop[EW:popped].,and it poppeded,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,and the guy made more balloon/s.,and the guy made more balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,him gived|give[EW:gave] it to the : bunny rabbit.,him gived it to the bunny rabbit,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,(and) : and : the guy is : mad.,and the guy is mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,and he had no more balloon/s left.,and he had no more balloons left,0 0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,him[EW:he] was go/ing back home.,him was going back home,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,him[EW:he] was : get/ing more balloon/s.,him was getting more balloons,0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,him[EW:he] got two balloon/s.,him got two balloons,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,him got xxx.,him got,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,and they fly away.,and they fly away,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(one[!] uh) : once upon a time there was : (t) one boy and one girl !,once upon a time there was one boy and one girl,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(w) one was name[EW:named] longneck.,one was name longneck,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(and was) : and one was : name/ed longnose.,and one was named longnose,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(um : well) well longnose (w) drop/ed her balloon in the water.,well longnose dropped her balloon in the water,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(and then) : and then she was cry/ing help somebody help me !,and then she was crying help somebody help me,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,my balloon fell in the water !,my balloon fell in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(so then[-:]) : (then) so then longneck (was) : was[-:] go/ing to get it.,so then longneck was going to get it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and (then[-:]) (when) : so then : longneck got it for : longnose.,and so then longneck got it for longnose,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and (then l) : (long) : then : longnose was very : happy.,and then longnose was very happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(and[-:] long) and[-:] longneck : was very brave.,and longneck was very brave,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,when they was[EW:were](uh) : in the pool : (they[-:]) they want/ed to jump in the water.,when they was in the pool they wanted to jump in the water,0 0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(so[-:]) so[-:] : longnose was run/ing : toward the water.,so longnose was running toward the water,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and she slip/ed.,and she slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and she scrape/ed her knee.,and she scraped her knee,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and then she was : cry/ing.,and then she was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,then the lifeguard came.,then the lifeguard came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and then so he gave longnose a bandaid.,and then so he gave longnose a bandaid,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and then (they wa) : (they) (he wa) she was not cry/ing any more.,and then she was not crying any more,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(and then) : and then the lifeguard said see the sign?,and then the lifeguard said see the sign,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,no run/ing.,no running,0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and (he was very) : (he was very um) : she forgot about that.,and she forgot about that,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,once upon a time there was : (two) one boy and one girl.,once upon a time there was one boy and one girl,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,they were friend/s !,they were friends,0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(and[-:] uh) : (and[-:] : um) : (and l) : and Longneck : (had a) : had a[EW:an] airplane.,and Longneck had a airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,he was fly/ing and fly/ing !,he was flying and flying,0 0 6 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and[-:] : Longnose : want/ed to try it.,and Longnose wanted to try it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,so he grab/ed[!] it out of her hand and was fly/ing it.,so he grabbed it out of her hand and was flying it,0 0 4 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and he said no no no.,and he said no no no,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and then : she accidentally drop/ed it in the water.,and then she accidentally dropped it in the water,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,uhoh.,uhoh,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and so (he wa) (he was) he got so[!] mad that he said : what is wrong with you ?,and so he got so mad that he said what is wrong with you,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,why do you do that ?,why do you do that,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and she was so[!] sad.,and she was so sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(and then) : and then the lifeguard : came and said : do not be xx.,and then the lifeguard came and said do not be,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,what is wrong ?,what is wrong,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and so then (h um) : Longnose was walk/ing toward him : and told him all[-:] about what happen/ed.,and so then Longnose was walking toward him and told him all about what happened,0 0 0 0 0 6 0 0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and so he was try/ing to dive in the water to get it.,and so he was trying to dive in the water to get it,0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,but : it was sink/ing.,but it was sinking,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(and then) : and then Longneck was[-:] (so) : so sad that he was cry/ing.,and then Longneck was so sad that he was crying,0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and then (longnose mom : wa) Longnose mom (was) : got a net : and was try/ing to get[!] it.,and then Longnose mom got a net and was trying to get it,0 0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(and) and she got[!] it !,and she got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(yay[-:] to the) yay to (longnose[-:]) : (long) [~__yeah] Longnose mom.,yay to Longnose mom,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and : Longnose mom[!] : gave it back[!] to : (long) : Longneck.,and Longnose mom gave it back to Longneck,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and they were all[!] friend/s again.,and they were all friends again,0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(once a) : once upon a time there was a rabbit and a dog.,once upon a time there was a rabbit and a dog,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,the rabbit (was play/ing) : was[-:] make/ing : a sandcastle.,the rabbit was making a sandcastle,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and the dog was help/ing.,and the dog was helping,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,but then : (one) : (the) : the rabbit : pour/ed the sand : (in the[-:]) (on the k) on the dog/z castle.,but then the rabbit poured the sand on the dog's castle,0 0 0 0 4 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and then[-:] the rabbit : got very[!] mad because : it broke.,and then the rabbit got very mad because it broke,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and so then : (the) the puppy : name/ed : cereal (um) : was fix/ing it all over again and was cry/ing.,and so then the puppy named cereal was fixing it all over again and was crying,0 0 0 0 0 4 0 0 6 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and[-:] : (miss) miss : stewart (um was very) : (was very : um) : was very[-:] : (uh um) sad.,and miss stewart was very sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,one[!] day there was : a little girl : name/ed : Cookie : and[-:] (a[-:]) : a little boy name/ed : Carrot.,one day there was a little girl named Cookie and a little boy named Carrot,0 0 0 0 0 0 0 4 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,they[-:] were have/ing a picnic.,they were having a picnic,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and[-:] Cookie : took out all[-:][!] her food.,and Cookie took out all her food,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,but then : Rabbit was get/ing so[!] hungry that he ate the carrot/s.,but then Rabbit was getting so hungry that he ate the carrots,0 0 0 0 6 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,but then : (when) when[-:] Cookie was eat/ing her sandwich and drink/ing juice : (th) : Carrot : was : very full (and very[-:]).,but then when Cookie was eating her sandwich and drinking juice Carrot was very full,0 0 0 0 0 6 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and (um hi) his stomach really hurted|hurt[EW:hurt].,and his stomach really hurted,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,but then : Cookie realize/ed that (um she could ge) she should get a doctor because she does not want : Carrot to : get very sick.,but then Cookie realized that she should get a doctor because she does not want Carrot to get very sick,0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,so (when she was) (when) when : she saw a doctor walk down she xx[?].,so when she saw a doctor walk down she,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and she yell/ed doctor doctor : please help my friend : Carrot.,and she yelled doctor doctor please help my friend Carrot,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(he w) he is very sick.,he is very sick,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,so[-:] : (cookie grab/ed hi) Cookie grab/ed : his coat and ran back : to the picnic.,so Cookie grabbed his coat and ran back to the picnic,0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(and h) and[-:] the doctor check/ed.,and the doctor checked,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,he said uhoh you have been eat/ing too much food.,he said uhoh you have been eating too much food,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(we) (we) this is important.,this is important,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,so then : (the) the[-:] doctor (m) (mister : um) : mister : Bookyabye[c] : (um : he took) (he) he[-:] (fix/ed up : um) : fix/ed up Carrot.,so then the doctor mister Bookyabye he fixed up Carrot,0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and : (uh) they were all friend/s.,and they were all friends,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and they walk/ed home.,and they walked home,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,one[!] : interesting day (um : peanut bu) : Peanut : (w) had a balloon on her wagon[!].,one interesting day Peanut had a balloon on her wagon,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(and) : and[-:] (jelly) : Jelly saw it.,and Jelly saw it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,so she *was wander/ing[EW:wonder/ing] : if she could take it off!,so she wandering if she could take it off,0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(but then) : but then : (p) Peanut : said no!,but then Peanut said no,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(so[-:]) : so (h) (h) he got very[!] mad that (h) (h).,so he got very mad that,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,so then he took : off the balloon : on the wagon.,so then he took off the balloon on the wagon,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and[-:] the balloon (f) flew away.,and the balloon flew away,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and they were all try/ing to get it.,and they were all trying to get it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and then : (when : jelly was try/ing to) when Jelly was try/ing to catch it : Peanut got very[!] mad[-:] at her.,and then when Jelly was trying to catch it Peanut got very mad at her,0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,but then they saw a lot of balloon/s.,but then they saw a lot of balloons,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(so[-:] : pean) : so Peanut was try/ing to : buy some.,so Peanut was trying to buy some,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and he said oh look.,and he said oh look,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,this is wonderful!,this is wonderful,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,I think I am go/ing to buy one : for : Peanut!,I think I am going to buy one for Peanut,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,but (it was only f) : the balloon/s : was[EW:were] only five cent/s.,but the balloons was only five cents,0 0 1 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and so : (um) Jelly (was try/ing to) : was look/ing for some (m) : in her[-:] in her pocket.,and so Jelly was looking for some in her in her pocket,0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,but there was no money.,but there was no money,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(but then) : and then they were all stare/ing at the balloon/s.,and then they were all staring at the balloons,0 0 0 0 0 6 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(h) and they saw another[!] doctor (who came) : (who was) who was just stand/ing there[?] still.,and they saw another doctor who was just standing there still,0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and : Peanut was : walk/ing toward him.,and Peanut was walking toward him,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(he ask/ed if he) (if) : (he ask if he could) (he) (he ask if he) [~_sighs] : he ask[EW:asked] if : he could buy : them a balloon.,he ask if he could buy them a balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,so he said okay.,so he said okay,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and then : so he gave them the two last balloon/s.,and then so he gave them the two last balloons,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and they were all[!] friend/s again.,and they were all friends again,0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,One day : a little : elephant : and : giraffe went to see[!] each other.,One day a little elephant and giraffe went to see each other,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and they say good morning.,and they say good morning,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,they saw : a little : pool.,they saw a little pool,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and they (s) decide/ed to go in[!] it.,and they decided to go in it,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,but they[!] did not have their : bathing suit/s to get that little ball out.,but they did not have their bathing suits to get that little ball out,0 0 0 0 0 0 0 1 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,so the giraffe[-:] : jump/ed[!] in.,so the giraffe jumped in,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,splash!,splash,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,then : (he) he swam (i) in the pool.,then he swam in the pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and he almost got it.,and he almost got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and then he got it at last.,and then he got it at last,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,he gave it (to) to the elephant.,he gave it to the elephant,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and the elephant said thank you.,and the elephant said thank you,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,thank you.,thank you,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,this is so[-:] great.,this is so great,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and then : she walk/ed home : to : find her momma.,and then she walked home to find her momma,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,(um this : oh f) One day : the : giraffe and : the : elephant came back to the pool.,One day the giraffe and the elephant came back to the pool,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and then[!] they[!] went swim/ing.,and then they went swimming,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,so they[!] : jump/ed in : and swam.,so they jumped in and swam,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,: (and) and the elephant said come on.,and the elephant said come on,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,come on.,come on,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,let us go over there so we can jump : higher[-:].,let us go over there so we can jump higher,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,so they ran.,so they ran,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and they ran[!] to it.,and they ran to it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,(and it) (it) and the little : elephant : said waa!,and the little elephant said waa,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,it is too slippery!,it is too slippery,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,then she fell right in.,then she fell right in,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and then she hurt[!] : her knee.,and then she hurt her knee,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,she was cry/ing so loud (that) that she (could not) could not even stop cry/ing.,she was crying so loud that she could not even stop crying,0 0 6 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and the doctor came and look/ed at her.,and the doctor came and looked at her,0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,(she was so) (so : um) [~_wait_I_have_to_start_that__again] (she) : she was hurt badly.,she was hurt badly,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,(and sh) : and the doctor : put her on the bench.,and the doctor put her on the bench,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and[!] then (she) she was sit/ing on the bench.,and then she was sitting on the bench,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and then[!] she got a bandaid on.,and then she got a bandaid on,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,(the oof) : and the doctor was so angry with her.,and the doctor was so angry with her,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and then : he point/ed his finger : somewhere (that) (that she) : at the sign.,and then he pointed his finger somewhere at the sign,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,: and the sign said no[!] run/ing.,and the sign said no running,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and that is the end of the story [+_bch].,and that is the end of the story,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,[<~_makes_sound_'ffff']And then[!][>~_makes_sound_'ffff'] (what) what am I think/ing [+_bch] ?,And then what am I thinking,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,one day (the) the little elephant and giraffe came back[!] to the swimming pool.,one day the little elephant and giraffe came back to the swimming pool,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and there was a little cookie on the floor.,and there was a little cookie on the floor,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and there was : a little plane : that was sit/ing on the floor.,and there was a little plane that was sitting on the floor,0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,(he[!]) (the little) : the little airplane : made smoke.,the little airplane made smoke,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,(and) : and (the : ze) (giraffe said) the giraffe did [~_makes_'raspberry'_sound].,and the giraffe did,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and then : the little : elephant : grab/ed it from him.,and then the little elephant grabbed it from him,0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and then she[!] start/ed to fly it : because she thought it was so[-:] funny.,and then she started to fly it because she thought it was so funny,0 0 0 4 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and then[!] : the little airplane went in the swimming pool.,and then the little airplane went in the swimming pool,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,"[~_says_under_breath] ah, my xx is come/ing off [+_bch].",ah my is coming off,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and then the giraffe got so angry at the little : elephant.,and then the giraffe got so angry at the little elephant,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and the doctor[!] came back again.,and the doctor came back again,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,(a) (and the doc) and the doctor elephant : did not know what she did.,and the doctor elephant did not know what she did,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and she said : I did not (throw) throw that in.,and she said I did not throw that in,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,so he try/ed to reach it.,so he tried to reach it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,but he could not reach.,but he could not reach,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,then nobody could reach it.,then nobody could reach it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,maybe I could reach that thing.,maybe I could reach that thing,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and then : a pretty : woman came in the swimming pool.,and then a pretty woman came in the swimming pool,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,(and she) and she[!] could catch everything that was in the swimming pool.,and she could catch everything that was in the swimming pool,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,(a) and then she[!] came.,and then she came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and : she said I could : catch (that) that airplane for you.,and she said I could catch that airplane for you,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,she was go/ing to [~_gonna] give it : to the : little : elephant.,she was going to give it to the little elephant,0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,she try/ed to.,she tried to,0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,but it was not go/ing in.,but it was not going in,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,I am go/ing baseball/ing tomorrow I think so [+_bch].,I am going baseballing tomorrow I think so,0 0 6 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and the : lady : gave it to the giraffe.,and the lady gave it to the giraffe,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and they[!] : were friend/s.,and they were friends,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,One day : two little bunny/s went to the beach and builded|build[EW:built] a (sand) sandcastle.,One day two little bunnies went to the beach and builded a sandcastle,0 0 0 0 1 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and they were : play/ing with the sandcastle a lot.,and they were playing with the sandcastle a lot,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,(and) and : then they were go/ing to go (in the beach) (in the) in the water [~_I_mean].,and then they were going to go in the water,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,sand boom[!].,sand boom,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,they : pour/ed the sand : on top : of[!] the : sandcastle.,they poured the sand on top of the sandcastle,0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,boomerang[!].,boomerang,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,the castle : blew into bit/s.,the castle blew into bits,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and then they could not make it : again.,and then they could not make it again,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,One day (the) the two little : bunny/s went for a walk (to) to find some carrot/s (f) with their little basket/s.,One day the two little bunnies went for a walk to find some carrots with their little baskets,0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and then they had a little bit of picnic.,and then they had a little bit of picnic,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,then (they) they were so[!] hungry that they could not even wait.,then they were so hungry that they could not even wait,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,then[-:] the hungriest[!] one : ate : all : of the : food.,then the hungriest one ate all of the food,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,then he got dizzy[!].,then he got dizzy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and the other bunny was drink/ing and eat/ing.,and the other bunny was drinking and eating,0 0 0 0 0 6 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,then (ma) : mama came.,then mama came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,(and) (and the) and the rabbit : [~_sniffs] ran to mama as fast as he can : and pull/ed[!] : her shirt : to see what have|have[EW:had] (ha) happen/ed.,and the rabbit ran to mama as fast as he can and pulled her shirt to see what have happened,0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and then mama said : we have to take you to the doctor : and get your stomach : feel better.,and then mama said we have to take you to the doctor and get your stomach feel better,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and then[!] little rabbit came with mama.,and then little rabbit came with mama,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,one day : a little rabbit was : going to take (a) a little cart.,one day a little rabbit was going to take a little cart,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and there was a balloon on it.,and there was a balloon on it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and (the li) the other rabbit was (p) pull/ing it.,and the other rabbit was pulling it,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and the other rabbit was : walk/ing by behind him.,and the other rabbit was walking by behind him,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and then[!] : the bunny stop/ed : and said wow look at this : big forest.,and then the bunny stopped and said wow look at this big forest,0 0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,: and then : the balloon almost goed|go[EW:went] off.,and then the balloon almost goed off,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,(and he is) and the rabbit try/ed to fix it.,and the rabbit tried to fix it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,but it was not good.,but it was not good,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,[~_sound_effects_'wam_wa'] there it go/3s : said the bunny/s.,there it goes said the bunnies,0 0 3 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and they could not reach it as long.,and they could not reach it as long,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,then it start/ed to pop.,then it started to pop,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,then[!] the balloon[-:] man : start/ed to come.,then the balloon man started to come,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,(and he is) and he gave one of the bunny/s some of those balloon/s.,and he gave one of the bunnies some of those balloons,0 0 0 0 0 0 1 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and then[!] : the bunny said can I have (one of the) one of those balloon/s?,and then the bunny said can I have one of those balloons,0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,(and the) and the man said sure.,and the man said sure,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and then he was so[!] happy.,and then he was so happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,then he had to give him five[-:] buck/s.,then he had to give him five bucks,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,then (he) they had no[!] : money.,then they had no money,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,so they were so sad.,so they were so sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and (the bunny got to stay) (that[!] bunny got to st) the little bunny got to stay with the balloon man.,and the little bunny got to stay with the balloon man,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and then[!] mama gave him : the right buck : for the two bunny/s.,and then mama gave him the right buck for the two bunnies,0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,then they got : one each (for the b) for the little : (b) boy and girl.,then they got one each for the little boy and girl,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,there was a giraffe and a[EW:an] elephant (that) that was[EW:were] play/ing ball : near the pond.,there was a giraffe and a elephant that was playing ball near the pond,0 0 0 0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,but the ball fell in.,but the ball fell in,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,the giraffe : splash/ed in.,the giraffe splashed in,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,but (it) he could not swim.,but he could not swim,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,but : he got the ball.,but he got the ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,(he help/ed : the) he help/ed : out.,he helped out,0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,(there w :) there : was : a giraffe and a[EW:an] elephant.,there was a giraffe and a elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,(there was) she (went into :) want/ed to go on the diving board.,she wanted to go on the diving board,0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,but she was so run/ing too fast that the giraffe could not catch up [EU].,but she was so running too fast that the giraffe could not catch up,0 0 0 0 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,but she fell and hurt herself.,but she fell and hurt herself,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,and she cry/ed.,and she cried,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,but another elephant came : and put her on the bench : and : was mad at her.,but another elephant came and put her on the bench and was mad at her,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,once upon a time : there was : a giraffe and a[EW:an] elephant.,once upon a time there was a giraffe and a elephant,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,they were play/ing with a[EW:an] airplane.,they were playing with a airplane,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,but : the girl stole it away.,but the girl stole it away,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,but it : drownded|drown[EW:drowned]: into the water.,but it drownded into the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,the giraffe was mad at her.,the giraffe was mad at her,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,the elephant : came.,the elephant came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,(she w) (she s) she said : that it was : drownding[EW:drowning].,she said that it was drownding,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,but : the elephant try/ed to (got) get it.,but the elephant tried to get it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,but (she) he could not.,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,he did not know what to do.,he did not know what to do,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,(so he had to) a girl came : and had a net.,a girl came and had a net,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,she try/ed to get it out.,she tried to get it out,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,but it did not work.,but it did not work,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,then it did.,then it did,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,so : he love/ed that girl.,so he loved that girl,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,there was a bunny and a dog.,there was a bunny and a dog,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,he help/ed make a sandcastle.,he helped make a sandcastle,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,but the bunny pour/ed sand all over it : and broke it.,but the bunny poured sand all over it and broke it,0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,he had to fix it fast.,he had to fix it fast,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,once upon a time : there was a dog and a bunny (that were have/ing).,once upon a time there was a dog and a bunny,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,both of them were have/ing a picnic.,both of them were having a picnic,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,but they were so hungry.,but they were so hungry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,(they) (that) the bunny (all) ate all the stuff : but was too full to eat any more.,the bunny ate all the stuff but was too full to eat any more,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,but a doctor came : and pull/ed and pull/ed on her : and went to see what was happen/ing.,but a doctor came and pulled and pulled on her and went to see what was happening,0 0 0 0 0 4 0 4 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,"oh, you miss/ed one.",oh you missed one,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,(a bunny) the bunny was feel/ing better.,the bunny was feeling better,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,once upon a time there was a dog and a bunny.,once upon a time there was a dog and a bunny,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,(that) the dog had a wagon : that had one white balloon on it.,the dog had a wagon that had one white balloon on it,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,and the bunny want/ed to : take it from : the wagon.,and the bunny wanted to take it from the wagon,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,but the bunny took it off : and let go.,but the bunny took it off and let go,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,it was go/ing up and up and up.,it was going up and up and up,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,there was more over there.,there was more over there,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,can I have a white one : he said?,can I have a white one he said,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,five dollar/s.,five dollars,0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,oh.,oh,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,then you can not have it.,then you can not have it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,he runned|run[EW:ran] off to the doctor.,he runned off to the doctor,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,he did not have any money.,he did not have any money,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,so he gave her (mo) money.,so he gave her money,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,so he got (one) one each a balloon.,so he got one each a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,the guy think/3s he can go in : and juggle them.,the guy thinks he can go in and juggle them,0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,but he end/3s up throw/ing them in the water.,but he ends up throwing them in the water,0 0 3 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,he go/3s in there : and *is try/ing to get it [EU].,he goes in there and trying to get it,0 3 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,the elephant is sad.,the elephant is sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and he might sink.,and he might sink,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,then : he get/3s it for the elephant.,then he gets it for the elephant,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and she is happy[!] : for him.,and she is happy for him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,she is : go/ing to[:_gonna] go try and jump in the water.,she is going to go try and jump in the water,0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,she run/3s to there : to the high dive.,she runs to there to the high dive,0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,she run/3s really fast.,she runs really fast,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and she fall/3s [-:] and hurt/3s her knee.,and she falls and hurts her knee,0 0 3 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,then she cry/3s.,then she cries,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and a man come/3s : to : rescue her.,and a man comes to rescue her,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and then : they put a bandaid on her.,and then they put a bandaid on her,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,(then they) then they sit her on a bench for awhile.,then they sit her on a bench for awhile,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and then : they are happy.,and then they are happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,she think/3s she is happy.,she thinks she is happy,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,but she is not happy.,but she is not happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,(he fly/3s) he is go/ing to [~_gonna] fly the plane.,he is going to fly the plane,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,(he try/3s to s) he is go/ing to throw it.,he is going to throw it,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,then : she take/3s it from him : throw/3s it in the water [EU].,then she takes it from him throws it in the water,0 0 3 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and they can not get it.,and they can not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,he is mad at her.,he is mad at her,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,so they try and get it.,so they try and get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,but they can not[-:].,but they can not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and they try and reach[!] it.,and they try and reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,but they can not reach it.,but they can not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and he start/3s cry/ing.,and he starts crying,0 0 3 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and then they grab a net[-:].,and then they grab a net,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and they get it.,and they get it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and (then x) : then he is happy.,and then he is happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,so he hug/3s : the toy.,so he hugs the toy,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,the : rabbit build/3s a castle.,the rabbit builds a castle,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,then he[!] come/3s along with some sand[-:] : pour/3s the sand on the castle : and break/3s the castle.,then he comes along with some sand pours the sand on the castle and breaks the castle,0 0 3 0 0 0 0 3 0 0 0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and she is sad[-:].,and she is sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,the rabbit come/3s along for a picnic.,the rabbit comes along for a picnic,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,he eat/3s : her food (and all his[-:]) : and all her/z.,he eats her food and all her's,0 3 0 0 0 0 2 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,(then he get/3s) : then he eat/3s it all.,then he eats it all,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,but then he get/3s full.,but then he gets full,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and his tummy hurt/3s : like mine was once.,and his tummy hurts like mine was once,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and (then) : then he get/3s dizzied[EW:dizzy].,and then he gets dizzied,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and then a doctor come/3s.,and then a doctor comes,0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and : the dog ask/3s [~_pronounced_'askis'] for the doctor/z help.,and the dog asks for the doctor's help,0 0 0 3 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and the doctor come/3s : and help/3s : him.,and the doctor comes and helps him,0 0 0 3 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and he is back to normal[?].,and he is back to normal,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,a rabbit come/3s along.,a rabbit comes along,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and he see/3s the balloon[-:].,and he sees the balloon,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and he want/3s the balloon.,and he wants the balloon,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,but it is the dog/z : balloon.,but it is the dog's balloon,0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and then he try/3s and reach/3s it.,and then he tries and reaches it,0 0 0 3 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and the dog is still there watch/ing him.,and the dog is still there watching him,0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and the dog come/3s along (and try/3s to).,and the dog comes along,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,(then the rabbit still) : then the rabbit untie/3s[-:] it.,then the rabbit unties it,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and then it fly/3s away[-:].,and then it flies away,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and then they see it go up.,and then they see it go up,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,(the rabbit is mad at the rabbit) [~_no] the dog is : mad at the rabbit.,the dog is mad at the rabbit,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,they see a : rabbit with balloon/s : a whole bunch of them.,they see a rabbit with balloons a whole bunch of them,0 0 0 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and they ask him for a balloon[-:].,and they ask him for a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,but he tell/3s them one for seven cent/s.,but he tells them one for seven cents,0 0 3 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,(so : he ask/3s) so he : check/3s his pocket/s for money.,so he checks his pockets for money,0 0 3 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,but he do/3s not have any.,but he does not have any,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,so they are sadder[!] still [EU].,so they are sadder still,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and then the doctor is there[~!_laughing] : the big doctor.,and then the doctor is there the big doctor,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,(and then they see) then they tell him that (their rabbit) (there is) balloon/s : were there.,then they tell him that balloons were there,0 0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and they get them.,and they get them,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and they are happy.,and they are happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,a giraffe and an elephant were play/ing ball by a pool.,a giraffe and an elephant were playing ball by a pool,0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,the elephant accidentally drop/ed the ball in the pool.,the elephant accidentally dropped the ball in the pool,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and the giraffe went in and got it : and gave it back to the elephant.,and the giraffe went in and got it and gave it back to the elephant,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and the elephant was really really happy.,and the elephant was really really happy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,the elephant and the giraffe were get/ing ready to swim in the pool.,the elephant and the giraffe were getting ready to swim in the pool,0 0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and the : elephant (starting) start/ed run/ing.,and the elephant started running,0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and she slip/ed.,and she slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and she hurt her knee.,and she hurt her knee,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and then the giraffe went and got the lifeguard.,and then the giraffe went and got the lifeguard,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and the lifeguard came run/ing to help.,and the lifeguard came running to help,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and the lifeguard put a bandage over her cut : and help/ed her to a seat.,and the lifeguard put a bandage over her cut and helped her to a seat,0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and the lifeguard said look at the sign.,and the lifeguard said look at the sign,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and : she look/ed at the sign.,and she looked at the sign,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and it said no run/ing.,and it said no running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,the elephant and the giraffe were play/ing together with an airplane.,the elephant and the giraffe were playing together with an airplane,0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and the elephant took it from the giraffe.,and the elephant took it from the giraffe,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and the giraffe got really mad : and drop/ed it in the water.,and the giraffe got really mad and dropped it in the water,0 0 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and then : the : elephant : said sorry.,and then the elephant said sorry,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and then the giraffe start/ed yell/ing at the elephant.,and then the giraffe started yelling at the elephant,0 0 0 0 4 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and then the lifeguard came and try/ed to get it out of the water.,and then the lifeguard came and tried to get it out of the water,0 0 0 0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,but he could not get it.,but he could not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and he almost fell in the water when he was try/ing to get it.,and he almost fell in the water when he was trying to get it,0 0 0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and the giraffe start/ed to cry.,and the giraffe started to cry,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and : the[-:] elephant had (a fff) a : sad face on her.,and the elephant had a sad face on her,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and (another one came with) another lifeguard came with a net : and try/ed to get it out of the water.,and another lifeguard came with a net and tried to get it out of the water,0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and[-:] she got it.,and she got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and the giraffe was really happy.,and the giraffe was really happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and he was hug/ing his airplane.,and he was hugging his airplane,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and : the elephant was hug/ing herself.,and the elephant was hugging herself,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,a bunny : and his friend were make/ing castle/s in a sand pit.,a bunny and his friend were making castles in a sand pit,0 0 0 0 0 0 6 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and the : bunny took the[-:] : little pail from (the) : his best friend and start/ed make/ing a sandcastle.,and the bunny took the little pail from his best friend and started making a sandcastle,0 0 0 0 0 0 0 0 0 0 0 0 4 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and it got really really big.,and it got really really big,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and then : he pour/ed sand over the sandcastle.,and then he poured sand over the sandcastle,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and it got wreck/ed.,and it got wrecked,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and then his friend start/ed cry/ing.,and then his friend started crying,0 0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and : he had his hand/s behind his back.,and he had his hands behind his back,0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,the rabbit and his best friend went out for a picnic in the afternoon.,the rabbit and his best friend went out for a picnic in the afternoon,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,the[-:] rabbit brang|bring[EW:brought] pickle/s chip/s : cake and sandwich/s.,the rabbit brang pickles chips cake and sandwiches,0 0 0 1 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and he ate it all.,and he ate it all,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and he start/ed to (gr) turn green.,and he started to turn green,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and he did not feel well.,and he did not feel well,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,so then (his friend got) his friend got worry/ed : and ran to the nurse.,so then his friend got worried and ran to the nurse,0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and the nurse came run/ing.,and the nurse came running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and : (he seen) she seen|see[EW:saw] that he was really really green.,and she seen that he was really really green,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,(and he walk/ed him home) and : she walk/ed him home.,and she walked him home,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,there was big race.,there was big race,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and (the :) the rabbit/z best friend was in it.,and the rabbit's best friend was in it,0 0 2 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and he had a balloon on his cart so he would go fast.,and he had a balloon on his cart so he would go fast,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and the rabbit took it off.,and the rabbit took it off,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and it went fly/ing.,and it went flying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and they both try/ed to grab it.,and they both tried to grab it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and then his best friend got really mad at him.,and then his best friend got really mad at him,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and then he seen|see[EW:saw] : a big rabbit with a bunch of balloon/s.,and then he seen a big rabbit with a bunch of balloons,0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and they were five cent/s each.,and they were five cents each,0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and : the rabbit ask/ed for one.,and the rabbit asked for one,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and he seen|see[EW:saw] [-:] that it was five cent/s.,and he seen that it was five cents,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,he ran up : to the nurse.,he ran up to the nurse,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and the nurse bought them one.,and the nurse bought them one,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and the nurse was really happy.,and the nurse was really happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,[~_sighs] and : the dog was happy too because he got a balloon back.,and the dog was happy too because he got a balloon back,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and (the rab) (the girl) the nurse paid the guy for the two balloon/s.,and the nurse paid the guy for the two balloons,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and then they were hug/ing their balloon/s.,and then they were hugging their balloons,0 0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and the nurse was really happy.,and the nurse was really happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,once upon time there was a : giraffe : with two leg/s and[-:] an elephant.,once upon time there was a giraffe with two legs and an elephant,0 0 0 0 0 0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and[-:] : they were both stand/ing on two leg/s which they were suppose/ed to be stand/ing on four.,and they were both standing on two legs which they were supposed to be standing on four,0 0 0 0 6 0 0 1 0 0 0 4 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,the elephant was use/ing : one to balance and : the other one to bounce the ball.,the elephant was using one to balance and the other one to bounce the ball,0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,the giraffe was watch/ing[!] : just as tall as he could like this [~__stands_on_one_leg_with_arms_above_head].,the giraffe was watching just as tall as he could like this,0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and then[!] the ball splash/ed into the water.,and then the ball splashed into the water,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,the : giraffe with two leg/s swam[!] out to get the ball : and then gave (it) the ball to the elephant : with two leg/s.,the giraffe with two legs swam out to get the ball and then gave the ball to the elephant with two legs,0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and the elephant hug/ed it : so[-:] much.,and the elephant hugged it so much,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and then she start/ed bounce/ing it again.,and then she started bouncing it again,0 0 0 4 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,once upon a time there was : an elephant and a giraffe.,once upon a time there was an elephant and a giraffe,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,but : there was another elephant too somewhere.,but there was another elephant too somewhere,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and they saw a diving board in a swimming pool!,and they saw a diving board in a swimming pool,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,they thought how fun it would be to go swim/ing.,they thought how fun it would be to go swimming,0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,but then : the elephant ran so[!] fast in : that she went to the bottom and scrape/ed her knee and swam back up.,but then the elephant ran so fast in that she went to the bottom and scraped her knee and swam back up,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,she was run/ing : around : because she was hurt [~_okay].,she was running around because she was hurt,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and she had scrape/ed her knee.,and she had scraped her knee,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,(two elephant/s : went to help) : [~_I_mean] an elephant and a giraffe went to help.,an elephant and a giraffe went to help,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,(and : one of) and the other elephant gave : her a bandage.,and the other elephant gave her a bandage,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and the other elephant : (was act) was not just a[EW:an] ordinary elephant.,and the other elephant was not just a ordinary elephant,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,know what it was?,know what it was,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,*a lifeguard [EU].,lifeguard,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and then they : try/ed walk/ing.,and then they tried walking,0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and : she was sit/ing on the bench.,and she was sitting on the bench,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and : the lifeguard said no run/ing!,and the lifeguard said no running,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and he was point/ing to the sign : that said no run/ing.,and he was pointing to the sign that said no running,0 0 0 6 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,once upon a time there was a giraffe and an elephant.,once upon a time there was a giraffe and an elephant,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and there was the lifeguard : on the side.,and there was the lifeguard on the side,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,the : giraffe was play/ing with his airplane.,the giraffe was playing with his airplane,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,the : elephant : was : watch/ing in surprise.,the elephant was watching in surprise,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and she ask/ed could I try?,and she asked could I try,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and he said no!,and he said no,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,but the elephant snatch/ed[-:] it.,but the elephant snatched it,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and then she threw[!] it.,and then she threw it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and guess where the airplane land/ed?,and guess where the airplane landed,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,in the water.,in the water,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,they call/ed the lifeguard.,they called the lifeguard,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and : the giraffe was mad[-:].,and the giraffe was mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,the lifeguard came and saw the airplane.,the lifeguard came and saw the airplane,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and : the elephant said I accidentally threw : the giraffe/z airplane inside the water.,and the elephant said I accidentally threw the giraffe's airplane inside the water,0 0 0 0 0 0 0 0 2 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,the lifeguard try/ed to get it with his hand/s.,the lifeguard tried to get it with his hands,0 0 4 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,but nope : he need/ed a net.,but nope he needed a net,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,(so he went) so he went to get a net.,so he went to get a net,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,(and then) : (and then he came back with a n) and there was a woman[!] who came with a net.,and there was a woman who came with a net,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and : then[!] she[!] got the airplane.,and then she got the airplane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,the : lady try/ed to get it out.,the lady tried to get it out,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,but it was too hard.,but it was too hard,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,but then she finally got it out.,but then she finally got it out,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and : the giraffe : like/ed it.,and the giraffe liked it,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and : they live/ed happily ever after.,and they lived happily ever after,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and : the : giraffe : like/ed : his airplane the best.,and the giraffe liked his airplane the best,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and he would never let anyone try it again.,and he would never let anyone try it again,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,once upon a time : there was a dog and a bunny.,once upon a time there was a dog and a bunny,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and they were build/ing a sandcastle.,and they were building a sandcastle,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,then (the) : the[-:] dog was pat/ing it.,then the dog was patting it,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and the : rabbit was build/ing it.,and the rabbit was building it,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,then[-:] the rabbit pour/ed[-:] (re) lot/s of sand onto the sandcastle.,then the rabbit poured lots of sand onto the sandcastle,0 0 0 4 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and he wreck/ed[!] the sandcastle by do/ing that.,and he wrecked the sandcastle by doing that,0 0 4 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and he (s) said oh no!,and he said oh no,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,the dog was cry/ing.,the dog was crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and : the rabbit was like [~_makes_facial_expression] : with his ears down.,and the rabbit was like with his ears down,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,once upon a time there was a dog and a rabbit once again.,once upon a time there was a dog and a rabbit once again,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,(and then the rab) and they are both go/ing : to hunt for easter egg/s : outside!,and they are both going to hunt for easter eggs outside,0 0 0 0 6 0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,they found a picnic.,they found a picnic,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and they wonder/ed who[EW:whose] it was.,and they wondered who it was,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,they never knew.,they never knew,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,(su) so they thought it was for them.,so they thought it was for them,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and they ate so so much : that the rabbit/z[-:] tummy was a big ball like a cannon ball.,and they ate so so much that the rabbit's tummy was a big ball like a cannon ball,0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and the dog was still eat/ing.,and the dog was still eating,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,the rabbit felt dizzy.,the rabbit felt dizzy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and he : did not : look : like he was feel/ing well.,and he did not look like he was feeling well,0 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,the : dog look/ed[!] at him.,the dog looked at him,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and[-:] the : rabbit look/ed at him back.,and the rabbit looked at him back,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,the dog was : run/ing to his mom.,the dog was running to his mom,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and : the mom heard him.,and the mom heard him,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,the mom went to see.,the mom went to see,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and then[!] : he pull/ed her so : much.,and then he pulled her so much,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and then : she was actually a doctor!,and then she was actually a doctor,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and she help/ed : the rabbit.,and she helped the rabbit,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,[~_sighs] the rabbit was feel/ing much better.,the rabbit was feeling much better,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and they live/ed happily ever after.,and they lived happily ever after,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,once upon a time there was a little doggy and a rabbit.,once upon a time there was a little doggy and a rabbit,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and[-:] the : dog was push/ing : a wagon with a balloon[!] in it.,and the dog was pushing a wagon with a balloon in it,0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,the rabbit ran by.,the rabbit ran by,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and : he saw the balloon.,and he saw the balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,he said where did you get that?,he said where did you get that,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,he said : I got it from this man!,he said I got it from this man,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,let us go and get one for me he said.,let us go and get one for me he said,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,okay.,okay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,but you do not know where it is.,but you do not know where it is,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,well can not you show me (he) the rabbit ask/ed [EU]?,well can not you show me the rabbit asked,0 0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,(so) : but the rabbit : just stole his[!].,but the rabbit just stole his,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,so the : dog had to go back to the man and (got) get his[!].,so the dog had to go back to the man and get his,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,but : now they need to get two : because : guess what?,but now they need to get two because guess what,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,the other[!] balloon flew in!,the other balloon flew in,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,the : puppy was mad[-:].,the puppy was mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and the rabbit : was : discourage/ed.,and the rabbit was discouraged,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,then they went : to the bunny rabbit so they could get : new balloon/s[!].,then they went to the bunny rabbit so they could get new balloons,0 0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,then the rabbit saw : which one he[!] want/ed.,then the rabbit saw which one he wanted,0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,(and[-:] he did not) but he did not have any money.,but he did not have any money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,(and : the balloon even said) and it said balloon/s five cent/s.,and it said balloons five cents,0 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and (the puppy/z) : the puppy and the rabbit were sad[-:] .,and the puppy and the rabbit were sad,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,but then : the rabbit went to a doctor.,but then the rabbit went to a doctor,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and she ask/ed : the doctor if : she could give them some money.,and she asked the doctor if she could give them some money,0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and he said to the : doctor : that mean old guy will not let us have a balloon!,and he said to the doctor that mean old guy will not let us have a balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,(they are all eight cent/s) [~_I_mean] they are five cent/s.,they are five cents,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,so the doctor gave : the man : five cent/s each for the puppy and the[-:] : rabbit.,so the doctor gave the man five cents each for the puppy and the rabbit,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and they both had a balloon of their own.,and they both had a balloon of their own,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,a giraffe is talk/ing to an elephant who is bounce/ing a ball.,a giraffe is talking to an elephant who is bouncing a ball,0 0 0 6 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,the ball fly/3s into the pool.,the ball flies into the pool,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,(so) (so the) and the giraffe and the elephant are look/ing at it.,and the giraffe and the elephant are looking at it,0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,the giraffe jump/3s into the water and try/3s to save the ball.,the giraffe jumps into the water and tries to save the ball,0 0 3 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,and the elephant is cover/ing her eye/s.,and the elephant is covering her eyes,0 0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,(the elephant grab/3s the ball) the giraffe give/3s the elephant the ball.,the giraffe gives the elephant the ball,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,and he is smile/ing.,and he is smiling,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,(and the giraffe) and the (um) : elephant is now happy.,and the elephant is now happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,the elephant like/3s the giraffe.,the elephant likes the giraffe,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,The giraffe and the elephant again.,The giraffe and the elephant again,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,(are) the giraffe is hold/ing a cloth.,the giraffe is holding a cloth,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,and they are stare/ing at the pool.,and they are staring at the pool,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,(the) the elephant look/3s like if she is going to jump in.,the elephant looks like if she is going to jump in,0 0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,she slip/3s : and hurt/3s her knee.,she slips and hurts her knee,0 3 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,the giraffe come/3s.,the giraffe comes,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,and the lifeguard is run/ing also to : the elephant.,and the lifeguard is running also to the elephant,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,(they s) (they) the lifeguard put/3s a bandaid on the elephant/z knee : and sit/3s her down on the bench.,the lifeguard puts a bandaid on the elephant's knee and sits her down on the bench,0 0 3 0 0 0 0 2 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,he point/3s at the sign.,he points at the sign,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,(And the) : and then the elephant (feel/3s all) [~_how_do__you_say_it] : feel/3s ashame/ed : you could say.,and then the elephant feels ashameed you could say,0 0 0 0 3 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,that is it [+_bch].,that is it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,The giraffe and the elephant are play/ing with a model : (um) airplane.,The giraffe and the elephant are playing with a model airplane,0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,the giraffe hold/3s it up (and) and make/3s it spin around.,the giraffe holds it up and makes it spin around,0 0 3 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,the elephant take/3s it away from his hand.,the elephant takes it away from his hand,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,and the giraffe is like what !,and the giraffe is like what,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,the elephant drop/3s it into the pool.,the elephant drops it into the pool,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,the giraffe is very angry with the elephant.,the giraffe is very angry with the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,now the lifeguard is just stare/ing at the elephant and the giraffe.,now the lifeguard is just staring at the elephant and the giraffe,0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,then the elephant talk/3s to the lifeguard about what happen/ed.,then the elephant talks to the lifeguard about what happened,0 0 0 3 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,the lifeguard try/3s to save it.,the lifeguard tries to save it,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,but it is too far.,but it is too far,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,(so the ele) so the giraffe start/3s cry/ing.,so the giraffe starts crying,0 0 0 3 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,and the elephant[-:] is ashame/ed of herself.,and the elephant is ashameed of herself,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,then[!] another elephant which is a lady : (um) come/3s with a big net.,then another elephant which is a lady comes with a big net,0 0 0 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,she scoop/3s up the airplane : and (gi) hand/3s it to the giraffe.,she scoops up the airplane and hands it to the giraffe,0 3 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,the giraffe is happy.,the giraffe is happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,(he l) he : is not mad at the elephant.,he is not mad at the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,he is hug/ing his airplane.,he is hugging his airplane,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,the rabbit is smile/ing : same with the dog because they made a big sandcastle.,the rabbit is smiling same with the dog because they made a big sandcastle,0 0 0 6 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,they are add/ing more to it.,they are adding more to it,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,the bunny is scoop/ing up sand.,the bunny is scooping up sand,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,and the doggy is pat/ing down the sand onto the sandcastle.,and the doggy is patting down the sand onto the sandcastle,0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,the rabbit pour/3s all the sand onto the castle.,the rabbit pours all the sand onto the castle,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,and the dog : feel/3s like she do/3s not believe what she is see/ing.,and the dog feels like she does not believe what she is seeing,0 0 0 3 0 0 3 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,the rabbit feel/3s all weird because (he) (it see/3s) he see/3s that it did not break the castle.,the rabbit feels all weird because he sees that it did not break the castle,0 0 3 0 0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,now the dog is cry/ing because all the sand got mush/ed together.,now the dog is crying because all the sand got mushed together,0 0 0 0 6 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,and the rabbit feel/3s all[!] : stupid inside.,and the rabbit feels all stupid inside,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,The dog (is wav) is wave/ing hello to the rabbit (who).,The dog is waving hello to the rabbit,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,and they are both carry/ing basket/s.,and they are both carrying baskets,0 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,they end/ed up being picnic[!] basket/s.,they ended up being picnic baskets,0 4 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,(and the) and the rabbit is just munch/ing away on his lunch while the dog quietly take/3s out her picnic.,and the rabbit is just munching away on his lunch while the dog quietly takes out her picnic,0 0 0 0 0 6 0 0 0 0 0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,the rabbit is full by the time the dog has just start/ed.,the rabbit is full by the time the dog has just started,0 0 0 0 0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,he feel/3s all woozy.,he feels all woozy,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,and the dog (feel/3s all s) (all nice because the rab) feel/3s perfect.,and the dog feels perfect,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,but the rabbit has eaten too fast.,but the rabbit has eaten too fast,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,so he feel/3s sick.,so he feels sick,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,so the dog run/3s to go get a doctor : and pull/3s[!] her over to the bunny.,so the dog runs to go get a doctor and pulls her over to the bunny,0 0 0 3 0 0 0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,the doctor : (um does not um) fix/3s him up with (um) medical tool/s and stuff : and pick/3s him up and takes him away.,the doctor fixes him up with medical tools and stuff and picks him up and takes him away,0 0 3 0 0 0 0 1 0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,the dog is hold/ing a cart with a wagon.,the dog is holding a cart with a wagon,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,and again (the bun) the rabbit is walk/ing down the road and says hello.,and again the rabbit is walking down the road and says hello,0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,the rabbit admire/3s the balloon.,the rabbit admires the balloon,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,he untie/3s it.,he unties it,0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,the dog is surprise/ed.,the dog is surprised,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,he let/3s go.,he lets go,0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,the dog try/3s to catch it.,the dog tries to catch it,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,but it is too late.,but it is too late,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,she is really[!] mad with the rabbit.,she is really mad with the rabbit,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,then she see/3s (a balloo) (a um) a rabbit hold/ing a bunch of balloon/s.,then she sees a rabbit holding a bunch of balloons,0 0 3 0 0 6 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,the rabbit go/3s to buy one.,the rabbit goes to buy one,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,they are five cent/s.,they are five cents,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,but he do/3s not have any money.,but he does not have any money,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,so[-:] the rabbit : and the dog : are sad : because they can not afford another one.,so the rabbit and the dog are sad because they can not afford another one,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,she buy/3s two balloon/s and give/3s one to each of the : young one/s.,she buys two balloons and gives one to each of the young ones,0 3 0 1 0 3 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,they each have a balloon.,they each have a balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,and they are happy.,and they are happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,(um) this one girl is bounce/ing a ball.,this one girl is bouncing a ball,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,can you take your finger/s out of your mouth?,can you take your fingers out of your mouth,0 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and the ball it : went inside the pool thing.,and the ball it went inside the pool thing,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and then (this) (the) the one boy : got it for her.,and then the one boy got it for her,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and then : the one boy gave it to her.,and then the one boy gave it to her,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and then the one boy was soak/ing wet.,and then the one boy was soaking wet,0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,(um) : this one girl : was try/ing to[:_tryna] run in the pool.,this one girl was trying to run in the pool,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,(um : she :) (she was run/ing in the) : (she) the one boy was hold/ing her towel.,the one boy was holding her towel,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and (she s) (she sl) she slip/ed.,and she slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,she has a booboo on her knee.,she has a booboo on her knee,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,one of the guy/s came and ran for her.,one of the guys came and ran for her,0 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and they gave her a bandage.,and they gave her a bandage,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and then she felt better.,and then she felt better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and then : no run/ing.,and then no running,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,this one boy was play/ing with his airplane.,this one boy was playing with his airplane,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,(sh) he was fly/ing it.,he was flying it,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and the one girl took it away.,and the one girl took it away,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and it fell in the pool.,and it fell in the pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,the one boy was mad at her.,the one boy was mad at her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and : the one girl was try/ing to cry.,and the one girl was trying to cry,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and (the) this one guy he was an elephant.,and this one guy he was an elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and (sh sh) the girl : was talk/ing to him.,and the girl was talking to him,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and : that guy was try/ing to get the airplane.,and that guy was trying to get the airplane,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and the one boy was cry/ing.,and the one boy was crying,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and : the girl : got a (net) net.,and the girl got a net,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and she got it.,and she got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,she gave it back to (hi) him.,she gave it back to him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and then : (sh) (he said) he had a smiley face.,and then he had a smiley face,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,(this one) this one : girl was make/ing a sandcastle.,this one girl was making a sandcastle,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,the one : boy : was help/ing her.,the one boy was helping her,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and : the one boy dump/ed the sand on the sandcastle.,and the one boy dumped the sand on the sandcastle,0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,the sandcastle was wreck/ed.,the sandcastle was wrecked,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,the one girl was cry/ing.,the one girl was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,(this) (that guy was carry/ing a bas) this one girl was carry/ing a basket of food.,this one girl was carrying a basket of food,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,(um this one boy ate) this one boy ate food.,this one boy ate food,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and he was full.,and he was full,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,he was dizzy.,he was dizzy,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,(he) (he) the girl found a doctor.,the girl found a doctor,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,the doctor came.,the doctor came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,(the) : (the doctor :) the doctor : took out this stick thing.,the doctor took out this stick thing,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and he felt better.,and he felt better,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,(this one bu had) this one boy had a wagon.,this one boy had a wagon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and he had a balloon tie/ed to the side.,and he had a balloon tied to the side,0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,(this) the one girl : (um) look|look[EW:looked] at the balloon.,the one girl look at the balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,the one boy : untie/ed it.,the one boy untied it,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,(it was) the balloon went up.,the balloon went up,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,it was gone.,it was gone,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,(um) there was a balloon man.,there was a balloon man,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,(the girl) the boy want/ed a balloon.,the boy wanted a balloon,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,: and : the boy did not have no[EW:any] money.,and the boy did not have no money,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,(the man :) the man was : hold/ing the balloon/s.,the man was holding the balloons,0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,the girl was stand/ing beside the man.,the girl was standing beside the man,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,the nurse came : and bought the balloon.,the nurse came and bought the balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,(they both had) the boy and the girl had the balloon.,the boy and the girl had the balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,They are looking at ball/s.,They are looking at balls,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,And now there is this one.,And now there is this one,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,And now it roll/ed off.,And now it rolled off,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,(And it) and the cow is come/ing to get it.,and the cow is coming to get it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,The what is?,The what is,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,The cow [+_bch].,The cow,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,oh yeah.,oh yeah,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,And he caught it.,And he caught it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,And they were happy again.,And they were happy again,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,They are go/ing swim/ing.,They are going swimming,0 0 6 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,And it is a deep pool.,And it is a deep pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,And now they are go/ing to jump right now.,And now they are going to jump right now,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,So they did.,So they did,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,And they got hurt.,And they got hurt,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,They should not have ran.,They should not have ran,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,And now another elephant is there.,And now another elephant is there,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,And it is take/ing it to the bench and put a bandaid on it.,And it is taking it to the bench and put a bandaid on it,0 0 0 6 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,She had to stay there.,She had to stay there,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,Anything else ?,Anything else,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,"Okay, super.",Okay super,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,They are go/ing to fly a[EW:an] airplane over the water.,They are going to fly a airplane over the water,0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,(And he lif) and the cow lift[EW:lift/ed] it up.,and the cow lift it up,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,(and the :) and (the) and the elephant grab/ed it.,and and the elephant grabbed it,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,And it land/ed : kaboom[!] in the water.,And it landed kaboom in the water,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,Now they are angry.,Now they are angry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,And the lifeguard came : and said do not do that.,And the lifeguard came and said do not do that,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,And then he try/ed : go there [EU].,And then he tried go there,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,But he could not.,But he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,And then it was xxx.,And then it was,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,Then : (an) (an) another lifeguard : came with a net : in his hand.,Then another lifeguard came with a net in his hand,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,And he took (the) the net and put it in the water : and got the airplane.,And he took the net and put it in the water and got the airplane,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,And then they were happy.,And then they were happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,And now they had the airplane [EU].,And now they had the airplane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,they are dig/ing : and make/ing a sandbox.,they are digging and making a sandbox,0 0 6 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,they are : mix/ing up sand.,they are mixing up sand,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,now they are dump/ing it on a sandcastle.,now they are dumping it on a sandcastle,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,now the sandcastle is all broken.,now the sandcastle is all broken,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,and now they are fix/ing it up again.,and now they are fixing it up again,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,they are chop/ing.,they are chopping,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,they are have/ing a picnic now.,they are having a picnic now,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,now it is all done.,now it is all done,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,now : they have a stomachache.,now they have a stomachache,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,: now they are : go/ing to the doctor.,now they are going to the doctor,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,and now they are pull/ing the doctor over there[~!_whispers].,and now they are pulling the doctor over there,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,and now the doctor is look/ing.,and now the doctor is looking,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,and now the doctor is take/ing her.,and now the doctor is taking her,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,now they are : pull/ing a wagon.,now they are pulling a wagon,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,now they are not.,now they are not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,there is a balloon on the wagon.,there is a balloon on the wagon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,now : they are untie/ing it.,now they are untying it,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,: and it is fly/ing away.,and it is flying away,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,and now they are angry.,and now they are angry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,but they are go/ing to[:_gonna] buy a new one.,but they are going to buy a new one,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,and they did.,and they did,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,and he was mean.,and he was mean,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,he did not let them have one.,he did not let them have one,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,now they are run/ing off to another [EU].,now they are running off to another,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,to where?,to where,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,(Oh) What are you pointing at?,What are you pointing at,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,can you tell me what it is?,can you tell me what it is,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,a rabbit [+_bch].,a rabbit,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,(Oh) okay.,okay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,(and) and another rabbit : is do/ing that.,and another rabbit is doing that,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,(another rabbit) and there was (a nus) [~_I_mean] a bone.,and there was a bone,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,(and a) (and) and this rabbit [~_pointing] : made him get[!] a balloon[?] [~_pronounced_/babon/].,and this rabbit made him get a balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,they got their own.,they got their own,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,There was a giraffe and a[EW:an] elephant.,There was a giraffe and a elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,the giraffe saw a ball.,the giraffe saw a ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,but then the elephant was scare/ed.,but then the elephant was scared,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,then the giraffe : went swim/ing to get the ball.,then the giraffe went swimming to get the ball,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,but the elephant got the ball.,but the elephant got the ball,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,and she was : nice to the giraffe.,and she was nice to the giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,(Oh) it is the same one.,it is the same one,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,There was a giraffe and an elephant who went to the pool.,There was a giraffe and an elephant who went to the pool,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,the elephant is go/ing to go to the water.,the elephant is going to go to the water,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,but the elephant slip/ed.,but the elephant slipped,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,then she had a[EW:an] owee.,then she had a owee,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,(then she lo) (got) and then the giraffe call/ed the lifeguard.,and then the giraffe called the lifeguard,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,then she put a bandaid.,then she put a bandaid,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,and it is all better now.,and it is all better now,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,and it is feel/ing better and better and better and better.,and it is feeling better and better and better and better,0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,There was a giraffe and a[EW:an] elephant.,There was a giraffe and a elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,(the gi) and the giraffe was have/ing (a um) a plane.,and the giraffe was having a plane,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,and he was fly/ing it.,and he was flying it,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,(ahs) and then (um) the elephant saw some string.,and then the elephant saw some string,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,then the elephant try/ed it.,then the elephant tried it,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,but then it went in the water.,but then it went in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,but then[!] the giraffe got mad.,but then the giraffe got mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,and the elephant was sad.,and the elephant was sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,then the lifeguard : look/ed at the plane.,then the lifeguard looked at the plane,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,then the girl said [~_high_pitched_voice] I did not do that.,then the girl said I did not do that,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,[~_high_pitched_voice] it was just an accident.,it was just an accident,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,so the lifeguard get|get[EW:got] it.,so the lifeguard get it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,"so the elephant did not got|get[EW:get] it, the lifeguard [~_I_guess].",so the elephant did not got it the lifeguard,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,but then : (um) a girl : came : to get the airplane.,but then a girl came to get the airplane,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,then she just got it.,then she just got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,(and there) and then she got it.,and then she got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,(and then sh) (there was a) then he had the plane back.,then he had the plane back,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,there was a bunny.,there was a bunny,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,and a little girl made a sandcastle.,and a little girl made a sandcastle,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,then the bunny and the dog made some (sa uh) sandcastle/s.,then the bunny and the dog made some sandcastles,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,but then the rabbit put some sand on the sandcastle.,but then the rabbit put some sand on the sandcastle,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,but then it got ruin/ed.,but then it got ruined,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,then she built it up again.,then she built it up again,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,there was a bunny : and a dog.,there was a bunny and a dog,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,(but he use/ed) and (he had) the bunny has (a) a basket.,and the bunny has a basket,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,and the dog had the basket.,and the dog had the basket,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,then they had a picnic.,then they had a picnic,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,then the bunny got full.,then the bunny got full,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,and : he had a stomachache.,and he had a stomachache,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,but (then[!] : some um grandmother) (then the : mom) then (the dentist) [~_no_no_ahh_what_was_it_#_yeah] the dentist came.,but then the dentist came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,(and his) and (then he) then the dog pull/ed the dentist.,and then the dog pulled the dentist,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,then it is right there.,then it is right there,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,this look/s like a doctor.,this looks like a doctor,0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,then he got all better.,then he got all better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,there was a dog and bunny.,there was a dog and bunny,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,and the dog had a stroller and a balloon.,and the dog had a stroller and a balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,(then he was go/ing to look at) then he was (gra) almost go/ing to [~_gonna] grab the balloon.,then he was almost going to grab the balloon,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,and then he tie/ed the balloon off.,and then he tied the balloon off,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,but then it flew.,but then it flew,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,then he got angry : the dog.,then he got angry the dog,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,then there was[EW:were] some more[!] balloon/s.,then there was some more balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,(and) and he said can I have one balloon please?,and he said can I have one balloon please,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,and he said sure.,and he said sure,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,and there was (f) balloon/s five cent/s [EU].,and there was balloons five cents,0 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,then : they did not have any balloon/s.,then they did not have any balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,there was a dentist.,there was a dentist,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,said can I have one cent please [EU]?,said can I have one cent please,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,(and she) and sure (I) I can give you some [EU].,and sure I can give you some,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,and there was[EW:were] some balloon/s : for each : other.,and there was some balloons for each other,0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,and they both had balloon/s.,and they both had balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,(um) : he found *an orange [EU].,he found orange,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,he found a[EW:an] orange in the water.,he found a orange in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,he fell in the water.,he fell in the water,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,he pick/ed up a[EW:an] orange.,he picked up a orange,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,he came out of the water.,he came out of the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,start/ed to slide : in the water [EU].,started to slide in the water,4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,(um) : run/ing go in the water [EU].,running go in the water,6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,he[-:] went out of the water.,he went out of the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and he hurt his knee!,and he hurt his knee,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and [~_coughs] he had *an owie [EU].,and he had owie,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and gave him (a) : a bandaid [EU].,and gave him a bandaid,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and[-:] : (um) : he sit|sit[EW:sat] down.,and he sit down,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and : (uh) : he sit|sit[EW:sat] down again.,and he sit down again,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,(um) : he pick/ed up the airplane.,he picked up the airplane,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,(the) he was float/ing the airplane.,he was floating the airplane,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,(um) : now he is[!] : hold/ing the airplane.,now he is holding the airplane,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,now it fell in the water.,now it fell in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,it : went down the water [EU].,it went down the water,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,(um) [-:] : it was not float/ing down the water.,it was not floating down the water,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,(um) : (it) it said uhoh!,it said uhoh,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and then he fell down.,and then he fell down,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,he went to get it.,he went to get it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and he did not get it.,and he did not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,he get|get[EW:got] back in the deep [EU].,he get back in the deep,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,we are go/ing to [~_gonna] go get it.,we are going to go get it,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and he got it!,and he got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and he[!] was happy!,and he was happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,(um) and he[!] : hug/ed it.,and he hugged it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,(uh) the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,(um) [-:] he is go/ing to[:_gonna] make a sandcastle.,he is going to make a sandcastle,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and he made a sandcastle.,and he made a sandcastle,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,he dump/ed water on his sandcastle.,he dumped water on his sandcastle,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,he broke it.,he broke it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and he was go/ing to fix it.,and he was going to fix it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,(um[-:]) : he is go/ing to walk for a picnic.,he is going to walk for a picnic,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,he is already at the picnic.,he is already at the picnic,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,he spill/ed all[!] his food.,he spilled all his food,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and he laugh/ed.,and he laughed,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and : he cry/ed.,and he cried,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and they were done their picnic.,and they were done their picnic,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and[-:] then he laugh/ed.,and then he laughed,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and[-:] then they were still at the picnic.,and then they were still at the picnic,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and then they walk/ed[!] home.,and then they walked home,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,(um[-:]) he has a wagon with a balloon on it.,he has a wagon with a balloon on it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,(um um) : they stopp/ed.,they stopped,0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and they[-:] sit|sit[EW:sat] down.,and they sit down,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and they were go/ing to[:_gonna] get the balloon.,and they were going to get the balloon,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,but the balloon pop/ed.,but the balloon popped,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and : he want/ed to get another balloon.,and he wanted to get another balloon,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and he got another balloon.,and he got another balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and (um) [-:] he look/ed down.,and he looked down,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and[-:] they look/ed up.,and they looked up,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and[-:] he runned|run[EW:ran].,and he runned,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and (um) [-:] they stop/ed.,and they stopped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and : they gave him (a ticket) : a money [EU].,and they gave him a money,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and then they got two balloon/s.,and then they got two balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,they were say/ing hello.,they were saying hello,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,(uh) and the giraffe and the (gir) elephant are bounce/ing some ball/s.,and the giraffe and the elephant are bouncing some balls,0 0 0 0 0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,the ball fell into : a swamp.,the ball fell into a swamp,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,the giraffe went : into the water and got it.,the giraffe went into the water and got it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,(and the gir) and the : elephant : (he said) he said thank you to the giraffe.,and the elephant he said thank you to the giraffe,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,(the um) : the elephant is : keep/ing the ball to hisself[EW:himself].,the elephant is keeping the ball to hisself,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,(he) the elephant and the giraffe are : in their bathing suit/s.,the elephant and the giraffe are in their bathing suits,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and : they are ready to jump in the pool.,and they are ready to jump in the pool,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,the[-:] : elephant is go/ing to jump in the pool.,the elephant is going to jump in the pool,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,then she slip/3s.,then she slips,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,she hurt/3s her knee.,she hurts her knee,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,the lifeguard come/3s and see/3s what is wrong.,the lifeguard comes and sees what is wrong,0 0 3 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,the lifeguard put/3s a bandaid on it.,the lifeguard puts a bandaid on it,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,it is all better.,it is all better,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,she sitted|sit[EW:sat] on the bench.,she sitted on the bench,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,(um) the giraffe and the elephant meets[EW:meet] again.,the giraffe and the elephant meets again,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and the giraffe has a toy.,and the giraffe has a toy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and I think the toy is a[EW:an]: airplane.,and I think the toy is a airplane,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and (the elephant) the elephant is go/ing wow!,and the elephant is going wow,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,the elephant has it now.,the elephant has it now,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and she is drive/ing it around.,and she is driving it around,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,now it is in the pool.,now it is in the pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and they can not get it.,and they can not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,so the giraffe is mad at the (um : uh) : elephant (that he put it) that she threw it in the : pool [EU].,so the giraffe is mad at the elephant that she threw it in the pool,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,now they go and get the lifeguard.,now they go and get the lifeguard,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and : the lifeguard can not do anything about it.,and the lifeguard can not do anything about it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,so[-:] the lifeguard think/3s and think/3s.,so the lifeguard thinks and thinks,0 0 0 3 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,but he can not do anything.,but he can not do anything,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,so the lifeguard (s) (reach) reach/3s out his hand.,so the lifeguard reaches out his hand,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,but he can not still reach it.,but he can not still reach it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,now he say/3s (he can/'t) I can not do anything.,now he says I can not do anything,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,(someone come/3s up with a net : and they) : someone come/3s up with a net.,someone comes up with a net,0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and they go wow !,and they go wow,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and the person with the net they[-:] stretch[EW:stretches] the net out.,and the person with the net they stretch the net out,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and then (uh) : she get/3s it.,and then she gets it,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and she said here you go giraffe.,and she said here you go giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,here is your (pla) airplane.,here is your airplane,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and[-:] the giraffe hug/ed his airplane.,and the giraffe hugged his airplane,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,there is[EW:are] (a bunny and) : two bunny/s.,there is two bunnies,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and (they are) they are play/ing in the sandbox.,and they are playing in the sandbox,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,(the uh) (the bun) the first bunny make/3s : a sandcastle.,the first bunny makes a sandcastle,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and : the second bunny is fill/ing up a bucket.,and the second bunny is filling up a bucket,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and that second bunny is : pour/ing the sand on the sandcastle.,and that second bunny is pouring the sand on the sandcastle,0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,(that) : then the sandcastle was wreck/ed.,then the sandcastle was wrecked,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and : the first bunny : he was cry/ing.,and the first bunny he was crying,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and he try/ed to fix it.,and he tried to fix it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,but he could not.,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,(the bunny meet/3s) (the) the first bunny meet/3s the second bunny.,the first bunny meets the second bunny,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and they are walk/ing with : (a picnic) a picnic basket.,and they are walking with a picnic basket,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and then they sit down.,and then they sit down,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,(and they are uh) the : first bunny is just munch/ing away : on (their f) his food.,the first bunny is just munching away on his food,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,(and) and then he get/3s very very very[!] full.,and then he gets very very very full,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,he start/3s burp/ing (and) and all that.,he starts burping and all that,0 3 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and the other bunny is just : have/ing his juice box and sandwich.,and the other bunny is just having his juice box and sandwich,0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,(then they meet) then they call the doctor.,then they call the doctor,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,the doctor arrive/ed.,the doctor arrived,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,doctor doctor : (he :) my friend ate too much.,doctor doctor my friend ate too much,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,then they pull/ed the doctor over to the picnic.,then they pulled the doctor over to the picnic,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,(and he said) and : the bunny was just lay/ing there.,and the bunny was just laying there,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,then the doctor sat down on the blanket.,then the doctor sat down on the blanket,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and : he said ah.,and he said ah,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,then the second bunny open/ed his mouth.,then the second bunny opened his mouth,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and : the doctor put the stick in his mouth.,and the doctor put the stick in his mouth,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,after the doctor was done he was all better.,after the doctor was done he was all better,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,the first bunny was pull/ing (a basket) (the) the wagon with : a balloon on it.,the first bunny was pulling the wagon with a balloon on it,0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,he meet/3s the second bunny.,he meets the second bunny,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,the second bunny look/3s up.,the second bunny looks up,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,he saw the balloon.,he saw the balloon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,he point/3s at it.,he points at it,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,(the se) the second bunny try/ed to untied[EW:untie] it.,the second bunny tried to untied it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,the second bunny untie/ed it.,the second bunny untied it,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and they runned|run[EW:ran] for the balloon.,and they runned for the balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,now the first bunny is mad mad mad at the : second bunny.,now the first bunny is mad mad mad at the second bunny,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,(the) there is a man sell/ing balloon/s.,there is a man selling balloons,0 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,(they) they think : and think.,they think and think,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,maybe we have enough money to buy one.,maybe we have enough money to buy one,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,they check their pocket/s.,they check their pockets,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,(it) it said five cent/s a balloon.,it said five cents a balloon,0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,they did not have five cent/s.,they did not have five cents,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,so : they : were mad.,so they were mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,there was a man : stand/ing in the middle of the road.,there was a man standing in the middle of the road,0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,he will not give us a balloon.,he will not give us a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,they cost five cent/s.,they cost five cents,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and (we do not) we only have one cent.,and we only have one cent,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,so the man buy/s two balloon/s : for the two : little children.,so the man buys two balloons for the two little children,0 0 0 1 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,the man say/3s there you go.,the man says there you go,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,are you happy?,are you happy,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,once upon a time there was an elephant and a giraffe.,once upon a time there was an elephant and a giraffe,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,the : elephant and the giraffe were play/ing ball.,the elephant and the giraffe were playing ball,0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and then the ball fell in the water.,and then the ball fell in the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and then : the : giraffe went to swim in the water and get it.,and then the giraffe went to swim in the water and get it,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and then : he brung|bring[EW:brought] it back to the elephant.,and then he brung it back to the elephant,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and then (the giraffe like/ed the eleph) [~_I_mean] the elephant like/ed the giraffe.,and then the elephant liked the giraffe,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,that is all [+_bch].,that is all,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,once upon a time the giraffe met the elephant.,once upon a time the giraffe met the elephant,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,(and wanted) and they want/ed to go swim/ing.,and they wanted to go swimming,0 0 4 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,can you talk louder?,can you talk louder,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,(and they) (they) and the elephant ran[-:] : to the swimming pool.,and the elephant ran to the swimming pool,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and then she slip/ed and : hurt her knee.,and then she slipped and hurt her knee,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,(and the giraffe went) [~_I_mean] (the) the elephant that was guard/ing the swimming pool came to (get) see her and then put : a bandage on her.,the elephant that was guarding the swimming pool came to see her and then put a bandage on her,0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and then she felt better.,and then she felt better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,(and then : sh) and then he (sai) told her [~_stern__voice] no run/ing.,and then he told her no running,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,once upon a time : the giraffe had a[EW:an] airplane to show to the elephant.,once upon a time the giraffe had a airplane to show to the elephant,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,(and they) and he play/ed with : it a lot.,and he played with it a lot,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and she like/ed[!] : the airplane.,and she liked the airplane,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,so she took it away from him.,so she took it away from him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and she start/ed play/ing with it too.,and she started playing with it too,0 0 4 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and then it fell into the water.,and then it fell into the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and the giraffe was very mad.,and the giraffe was very mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,so then the lifeguard came.,so then the lifeguard came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and the elephant explain/ed to the lifeguard what happen/ed.,and the elephant explained to the lifeguard what happened,0 0 0 4 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,then[!] he try/ed to reach out and get[!] it.,then he tried to reach out and get it,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,but he could not do that.,but he could not do that,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and he told them he could not do that.,and he told them he could not do that,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and the giraffe start/ed cry/ing.,and the giraffe started crying,0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,so then a lady came with a net.,so then a lady came with a net,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and she : (s um) put the net inside the water and : got it.,and she put the net inside the water and got it,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and she gave it to the giraffe.,and she gave it to the giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and the giraffe was really happy.,and the giraffe was really happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,then he hug/ed it.,then he hugged it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and they play/ed with it again.,and they played with it again,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,once upon a time : a bunny met his bestest[EW:best] friend : a[-:] dog.,once upon a time a bunny met his bestest friend a dog,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,the dog and the bunny want/ed to make a castle.,the dog and the bunny wanted to make a castle,0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and the bunny was put/ing all the sand inside the bucket.,and the bunny was putting all the sand inside the bucket,0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,then [+/]^,then,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,can you talk louder?,can you talk louder,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,then he dump/ed it all on the sandcastle.,then he dumped it all on the sandcastle,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and then : (the) the bunny look/ed at the sandcastle and the dog.,and then the bunny looked at the sandcastle and the dog,0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,(and the dog start/ed to : cr) and the dog start/ed to : cry.,and the dog started to cry,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and the bunny was feel/ing : sad because (he) he accidentally dump/ed it on the sandcastle.,and the bunny was feeling sad because he accidentally dumped it on the sandcastle,0 0 0 0 6 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,once upon a time the bunny met : his friend the dog.,once upon a time the bunny met his friend the dog,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,can you talk louder?,can you talk louder,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and : the bunny : had a picnic with the dog : and ate lot/s of stuff.,and the bunny had a picnic with the dog and ate lots of stuff,0 0 0 0 0 0 0 0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,(and then the) : and the dog : look/ed at the bunny.,and the dog looked at the bunny,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and the bunny was eat/ing.,and the bunny was eating,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,he was messy at eat/ing.,he was messy at eating,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,(then the) then the bunny did not feel very good.,then the bunny did not feel very good,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and then : the dog went to tell his mom that he was not feel/ing good.,and then the dog went to tell his mom that he was not feeling good,0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and he brung|bring[EW:brought] her to (get) see (him) the bunny.,and he brung her to see the bunny,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and then : look/3s like a mom or a doctor [EU].,and then looks like a mom or a doctor,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,(um okay then) I will have to say it is a doctor.,I will have to say it is a doctor,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,the doctor try/ed to : fix the bunny (up) : up.,the doctor tried to fix the bunny up,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and then the mom took the bunny back home.,and then the mom took the bunny back home,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,that is the end [+_bch].,that is the end,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,once upon a time [~_the_same_thing] the bunny met[~!_laughs] the dog.,once upon a time the bunny met the dog,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and the dog had a balloon.,and the dog had a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,the dog show/ed the bunny his balloon.,the dog showed the bunny his balloon,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and he untie/ed it from the wagon.,and he untied it from the wagon,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,then the balloon flew away.,then the balloon flew away,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and then the dog was mad[!] at the bunny.,and then the dog was mad at the bunny,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,then the bunny went to get another balloon[!] for him.,then the bunny went to get another balloon for him,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,but he did not have any money.,but he did not have any money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,so (he) (he) : he look/ed in his pocket/s.,so he looked in his pockets,0 0 4 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and he did not have any money : still[!].,and he did not have any money still,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,then (he) he was sad.,then he was sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and the dog was sad too.,and the dog was sad too,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,but then[!] he went to tell his mom[!] to give him money.,but then he went to tell his mom to give him money,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and then : she went to get him some money.,and then she went to get him some money,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and then they were very happy.,and then they were very happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and they both have a balloon.,and they both have a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,one day : George and his friend : Suzanne were play/ing by the pool with their ball.,one day George and his friend Suzanne were playing by the pool with their ball,0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,but then accidentally : they drop/ed it in the pool.,but then accidentally they dropped it in the pool,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,but then George went in to get it.,but then George went in to get it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and then they were both happy.,and then they were both happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and : then they were play/ing with the ball again.,and then they were playing with the ball again,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,then George was embarrass/ed.,then George was embarrassed,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,George and (sh) Sharon were at the swimming pool.,George and Sharon were at the swimming pool,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,(sh uh um) : then they want/ed to go on the diving board.,then they wanted to go on the diving board,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,but then Sharon was run/ing.,but then Sharon was running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and she was not suppose/ed to.,and she was not supposed to,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and then she fell and hurt herself.,and then she fell and hurt herself,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,George went to go and get a lifeguard.,George went to go and get a lifeguard,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and then the lifeguard help/ed her.,and then the lifeguard helped her,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,then he put a bandage on her : knee.,then he put a bandage on her knee,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and then George was happy.,and then George was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,but Sharon was still surprise/ed.,but Sharon was still surprised,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,but then the lifeguard said no run/ing.,but then the lifeguard said no running,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,one beautiful day : (um) George brought his airplane to play with Sharon.,one beautiful day George brought his airplane to play with Sharon,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,he was play/ing with it twist/ing around in the air.,he was playing with it twisting around in the air,0 0 6 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and then Sharon had a turn.,and then Sharon had a turn,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,but then Sharon accidentally drop/ed it in the water.,but then Sharon accidentally dropped it in the water,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and then they did not know what to do.,and then they did not know what to do,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,they got a lifeguard.,they got a lifeguard,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,the lifeguard did not know what to do.,the lifeguard did not know what to do,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,he try/ed reach/ing over to grab the airplane.,he tried reaching over to grab the airplane,0 4 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,but then they still did not know what to do.,but then they still did not know what to do,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and George was cry/ing still.,and George was crying still,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,then : another lady came with a big net.,then another lady came with a big net,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and she grab/ed the airplane out with the net.,and she grabbed the airplane out with the net,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,she gave it to (the) George.,she gave it to George,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and then George was happy again.,and then George was happy again,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,he love/ed his airplane.,he loved his airplane,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,once upon a time there was one bunny name/ed : Sarah and a dog : name/ed : Aaron.,once upon a time there was one bunny named Sarah and a dog named Aaron,0 0 0 0 0 0 0 0 4 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,they went to the park to play in the sand.,they went to the park to play in the sand,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,they made a sandcastle of wet sand : and then dump/ed sand all over the castle.,they made a sandcastle of wet sand and then dumped sand all over the castle,0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,then they were all : surprise/ed to see the castle was broken.,then they were all surprised to see the castle was broken,0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and then they start/ed to cry.,and then they started to cry,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,one day Bunny and Rabbit : had a picnic.,one day Bunny and Rabbit had a picnic,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and they met each other : on the road.,and they met each other on the road,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,then they sat down.,then they sat down,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and : Bunny ate (most of all of) most of all the food (of) like the candy.,and Bunny ate most of all the food like the candy,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and then : Bunny ate all the treat/s.,and then Bunny ate all the treats,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and then : Dog (was) was healthy.,and then Dog was healthy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,so he ate the sandwich/s.,so he ate the sandwiches,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,then after Bunny felt really sick.,then after Bunny felt really sick,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and then : Dog did not know what to do.,and then Dog did not know what to do,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,then he had an idea.,then he had an idea,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and he ran to (bun) Bunny/z mom which[EW:who] is a doctor.,and he ran to Bunny's mom which is a doctor,0 0 0 0 2 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and (then she pull/ed) then : she pull/ed Bunny/z mom to Bunny.,and then she pulled Bunny's mom to Bunny,0 0 0 4 2 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and then : Bunny/z mom got really mad at him.,and then Bunny's mom got really mad at him,0 0 2 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and then : he sent him home.,and then he sent him home,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,then : they went home together instead.,then they went home together instead,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,one day Bunny and Dog met each other (at) : on the road.,one day Bunny and Dog met each other on the road,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,Bunny saw a balloon stuck to : Dog/z : (uh) wagon.,Bunny saw a balloon stuck to Dog's wagon,0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and (uh) he thought it was neat.,and he thought it was neat,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,he try/ed take/ing it off.,he tried taking it off,0 4 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,but it would not : come off.,but it would not come off,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,but then when it came off : bunny did not know what to do.,but then when it came off bunny did not know what to do,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,so he let go of the string.,so he let go of the string,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,then they watch/ed it go up.,then they watched it go up,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and : Dog was really mad at Bunny.,and Dog was really mad at Bunny,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,(on the way) : on the way home Bunny : saw (balloons) a bunny man sell/ing balloon/s.,on the way home Bunny saw a bunny man selling balloons,0 0 0 0 0 0 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,he want/ed to buy a balloon.,he wanted to buy a balloon,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,the balloon/s were fifty cent/s.,the balloons were fifty cents,0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,but Bunny : had no : money.,but Bunny had no money,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and then they stare/ed at the man.,and then they stared at the man,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,(the) bunny went to (her) his mom.,bunny went to his mom,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,(and then) : and then : Bunny/z mom gave them : money.,and then Bunny's mom gave them money,0 0 2 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,first he explaine/ed it to his mom.,first he explaineed it to his mom,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and then : Bunny/z mom : bought a balloon for each of them.,and then Bunny's mom bought a balloon for each of them,0 0 2 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,they both like/ed their balloon/s.,they both liked their balloons,0 0 4 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and that is the end [+_bch].,and that is the end,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,there was a giraffe and a[EW:an] elephant a friend.,there was a giraffe and a elephant a friend,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and then the ball went in the water.,and then the ball went in the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and then the horse went for swim/ing [EU].,and then the horse went for swimming,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and then : the elephant show/ed the ball to the horse.,and then the elephant showed the ball to the horse,0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and then the horse get|get[EW:got] wet.,and then the horse get wet,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,(there was a ho) there was a horse and a[EW:an] elephant.,there was a horse and a elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and they saw a jump where you jump (in) in the pool and then you dive.,and they saw a jump where you jump in the pool and then you dive,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,(and then they) and the elephant said let us go there.,and the elephant said let us go there,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,(and then) and then the elephant runned|run[EW:ran].,and then the elephant runned,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and then the elephant bang/ed her knee (in the) in the floor [EU].,and then the elephant banged her knee in the floor,0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,: (and then one kinda pers) (and) and he had a whistle.,and he had a whistle,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,(and then) and then put the bandaid.,and then put the bandaid,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and then she stop/ed.,and then she stopped,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and then : she (wa) sit|sit[EW:sat] (in the) in the bench [EU].,and then she sit in the bench,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,(um) there was a giraffe and a[EW:an] elephant.,there was a giraffe and a elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,"(and) and it had a[EW:an] airplane, the horse.",and it had a airplane the horse,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,(and) and the elephant borrow/ed it.,and the elephant borrowed it,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and then it went in the pool.,and then it went in the pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,(an) and then they did not know how to get it.,and then they did not know how to get it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and then : the one with the whistle saw it in the pool.,and then the one with the whistle saw it in the pool,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,there was not allow/ed airplane/s there.,there was not allowed airplanes there,0 0 0 4 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and then (the elephant : has to) : the one with the whistle try/ed to get the airplane.,and then the one with the whistle tried to get the airplane,0 0 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,(and the) and she[-:] try/ed to get it.,and she tried to get it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,but she can[EW:could] not.,but she can not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,(ss) : (and) and (th) the elephant got the idea.,and the elephant got the idea,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,just (got it) got the net.,just got the net,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and she scoop/ed it.,and she scooped it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and she take|take[EW:took] it out.,and she take it out,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and he give|give[EW:gave] it to the horse.,and he give it to the horse,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and the horse get|get[EW:got] it.,and the horse get it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,there was a rabbit (and a) and a[EW:an] elephant.,there was a rabbit and a elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and then they scoop a sand and make a sandcastle : and pour some sand.,and then they scoop a sand and make a sandcastle and pour some sand,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and then it broked|break[EW:broke].,and then it broked,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and they did not know how to fix it.,and they did not know how to fix it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,there was a friend with a[EW:an] elephant and a bunny rabbit.,there was a friend with a elephant and a bunny rabbit,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and (th) they eat|eat[EW:ate].,and they eat,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and what?,and what,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,they eat|eat[EW:ate] [+_bch].,they eat,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and : the elephant eat|eat[EW:ate].,and the elephant eat,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and the rabbit got too full.,and the rabbit got too full,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,(and he saw) and the elephant saw : his mommy.,and the elephant saw his mommy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and then : the (f) elephant pull/ed his mommy/z shirt.,and then the elephant pulled his mommy's shirt,0 0 0 0 4 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and then the (mo) mommy got the popsicle stick.,and then the mommy got the popsicle stick,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,there was a[EW:an] elephant and a bunny rabbit.,there was a elephant and a bunny rabbit,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and (it had the wa) it has a handle and has a balloon in it/z wagon.,and it has a handle and has a balloon in it's wagon,0 0 0 0 0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,(and it) and the bunny rabbit said wow.,and the bunny rabbit said wow,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,(and) and the elephant drop/ed the handle.,and the elephant dropped the handle,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and then the rabbit tie/ed more tighter [EU].,and then the rabbit tied more tighter,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and then it went up.,and then it went up,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,: and then they did not know how to get it.,and then they did not know how to get it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,so they asked one guy that had a lot/s of balloon/s.,so they asked one guy that had a lots of balloons,0 0 0 0 0 0 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and then he said if he could get that.,and then he said if he could get that,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,(but he ss) but he did not have any money.,but he did not have any money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,: (so) so they just look/ed at it.,so they just looked at it,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and (wo) the rabbit went away.,and the rabbit went away,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,(and) and then they point at that guy.,and then they point at that guy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and they ask/ed (if he) if they could get all (the) the balloon/s.,and they asked if they could get all the balloons,0 0 4 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and then they give him money.,and then they give him money,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and then they had one.,and then they had one,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,once there was a horse and a[EW:an] elephant.,once there was a horse and a elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,the elephant was play/ing : (with) : with some balloon/s.,the elephant was playing with some balloons,0 0 0 6 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,(the b) one balloon fell (into the wa) into the pool.,one balloon fell into the pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,the horse jump/ed in to get it.,the horse jumped in to get it,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,the horse got it and hand/ed it (to) to the elephant.,the horse got it and handed it to the elephant,0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,the elephant hug/ed it.,the elephant hugged it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,Once there was (a um) a horse and a[EW:an] elephant.,Once there was a horse and a elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,(let us) the elephant said let us jump into the pool.,the elephant said let us jump into the pool,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,the horse said instead let us have a race.,the horse said instead let us have a race,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,the elephant fell.,the elephant fell,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,the lifeguard came : and put (a band) a bandaid on.,the lifeguard came and put a bandaid on,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,I think it was her right.,I think it was her right,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,(and) and it hurt to sit down.,and it hurt to sit down,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,Once : there was a cow and an elephant.,Once there was a cow and an elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,(the c) the horse : flied|fly[EW:flew] his airplane.,the horse flied his airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,the elephant grab/ed it from him.,the elephant grabbed it from him,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,then he drop/ed it into the swimming pool.,then he dropped it into the swimming pool,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,(the) the horse got mad at the girl.,the horse got mad at the girl,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,the lifeguard came along : (and) : (and tried to get) and talk/ed about : get/ing : the airplane out.,the lifeguard came along and talked about getting the airplane out,0 0 0 0 0 4 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,the lifeguard try/ed to get it.,the lifeguard tried to get it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,but he could not.,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,a lady came with a net : and got the airplane out.,a lady came with a net and got the airplane out,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,(h) she hand/ed it (to the m) to the horse : and hug/ed it very tight.,she handed it to the horse and hugged it very tight,0 4 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,Once there was a bunny and a girl bunny.,Once there was a bunny and a girl bunny,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,they made sandcastle/s.,they made sandcastles,0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,the boy : (um) put sand (in this) in a bucket : and pour/ed it onto the sandcastle.,the boy put sand in a bucket and poured it onto the sandcastle,0 0 0 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,: the girl got mad at him.,the girl got mad at him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,and the girl cry/ed.,and the girl cried,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,(There sh um) the girl (s) saw the same bunny go/ing for a picnic.,the girl saw the same bunny going for a picnic,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,she was too.,she was too,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,they had a picnic together.,they had a picnic together,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,the bunny ate too much junk food : and had a tummyache.,the bunny ate too much junk food and had a tummyache,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,the doctor came.,the doctor came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,the girl pull/ed[!] the doctor.,the girl pulled the doctor,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,(he) he check/ed : the boy.,he checked the boy,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,the boy was all right.,the boy was all right,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,once there was a girl : with a wagon.,once there was a girl with a wagon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,and a balloon was tie/ed to the wagon.,and a balloon was tied to the wagon,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,(the boy) the boy want/ed to touch : the balloon.,the boy wanted to touch the balloon,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,instead he tie/ed it off : and let it go by accident.,instead he tied it off and let it go by accident,0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,the girl got very[!] mad at him.,the girl got very mad at him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,the balloon man was still there.,the balloon man was still there,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,(the) : the boy wanted two[!] balloon/s.,the boy wanted two balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,he (had to pay some cent/s) : had to pay five[!] cent/s.,he had to pay five cents,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,: he had no five cent/s[EW:money].,he had no five cents,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,the doctor was still[!] there.,the doctor was still there,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,and the boy ask/ed for some money.,and the boy asked for some money,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,the doctor gave : the balloon man some money.,the doctor gave the balloon man some money,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,(and they) and they both got a[?] balloon.,and they both got a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,and they hug/ed them.,and they hugged them,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,(uh) : there once was a girl who was at a swimming pool.,there once was a girl who was at a swimming pool,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and she was play/ing with some ball/s.,and she was playing with some balls,0 0 0 6 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,she accidentally threw one of the ball/s in the water.,she accidentally threw one of the balls in the water,0 0 0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,so[-:] this other guy went to go get it for her.,so this other guy went to go get it for her,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and then he got it.,and then he got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,then she was happy.,then she was happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and then (um) : [+_bch].,and then,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,do you have anything to say about that page ?,do you have anything to say about that page,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,then after that she like/ed him.,then after that she liked him,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,(um) : there was a girl at a swimming pool.,there was a girl at a swimming pool,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and she want/ed to : go on the diving board.,and she wanted to go on the diving board,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,so she : : ran over there to the diving board.,so she ran over there to the diving board,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,then she ran all the way there.,then she ran all the way there,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,then she accidentally fell.,then she accidentally fell,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and she scrape/ed her knee.,and she scraped her knee,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,so then the lifeguard came : to her : to help her.,so then the lifeguard came to her to help her,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and the lifeguard put a bandage on her knee.,and the lifeguard put a bandage on her knee,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and : they help/ed her to the bench to sit down.,and they helped her to the bench to sit down,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and the lifeguard point/ed to a sign that said no run/ing.,and the lifeguard pointed to a sign that said no running,0 0 0 4 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,there once was a girl who was[-:] at a swimming pool.,there once was a girl who was at a swimming pool,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and she seen|see[EW:saw] this boy that had an airplane.,and she seen this boy that had an airplane,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,when he was fly/ing it around (she lik/ed it) she start/ed to like it.,when he was flying it around she started to like it,0 0 0 6 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,so then she : start/ed fly/ing it too.,so then she started flying it too,0 0 0 4 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and then she accidentally got it stuck in the water.,and then she accidentally got it stuck in the water,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,so then the other guy got sort of mad at her : because it was in the water.,so then the other guy got sort of mad at her because it was in the water,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,so then the lifeguard came.,so then the lifeguard came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and then the girl told the lifeguard it was an accident.,and then the girl told the lifeguard it was an accident,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,so then the lifeguard try/ed reach/ing for it.,so then the lifeguard tried reaching for it,0 0 0 0 4 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,but they could not.,but they could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and then : that guy was cry/ing because he want/ed his airplane.,and then that guy was crying because he wanted his airplane,0 0 0 0 0 6 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,so then this other lady came with a net thing to[-:] try to get the airplane out.,so then this other lady came with a net thing to try to get the airplane out,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and then she got[!] it.,and then she got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,(she start/ed to) and then she gave it to the little boy.,and then she gave it to the little boy,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,(and then he like/ed) then he was happy because he got his airplane back.,then he was happy because he got his airplane back,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,there once was[-:] a girl play/ing at the park build/ing a sandcastle.,there once was a girl playing at the park building a sandcastle,0 0 0 0 0 6 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and then this other boy came (ch) and start/ed to help her build it.,and then this other boy came and started to help her build it,0 0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and then he start/ed dumping sand all over it.,and then he started dumping sand all over it,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and then the tower broke.,and then the tower broke,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and then she was cry/ing.,and then she was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,so she start/ed to try fix/ing it back.,so she started to try fixing it back,0 0 4 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,there were these two people walk/ing down the trail to go for a picnic.,there were these two people walking down the trail to go for a picnic,0 0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and also they both had a picnic together.,and also they both had a picnic together,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and : the rabbit he ate lot/s and lot/s of food.,and the rabbit he ate lots and lots of food,0 0 0 0 0 1 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and then after he ate all the food he felt sick.,and then after he ate all the food he felt sick,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and then he felt real dizzy.,and then he felt real dizzy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,so then the other friend told this nurse.,so then the other friend told this nurse,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,(and then :) and then she came to help him.,and then she came to help him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and then : she (uh) : ask/ed him how many finger/s she is point/ing.,and then she asked him how many fingers she is pointing,0 0 0 4 0 0 0 1 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and then after that (they went) (she drop/ed) she (wa) walk/ed with him around.,and then after that she walked with him around,0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,there once was a girl who had a wagon.,there once was a girl who had a wagon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and she had a balloon tie/ed to it.,and she had a balloon tied to it,0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,then she met this other boy.,then she met this other boy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and then he like/ed her balloon.,and then he liked her balloon,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,so then he start/ed try/ing to untie the balloon off her wagon.,so then he started trying to untie the balloon off her wagon,0 0 0 4 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and then he : put it up in the air.,and then he put it up in the air,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and it went float/ing in the air.,and it went floating in the air,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and then the other : girl got mad because her balloon was gone.,and then the other girl got mad because her balloon was gone,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,so then she seen|see[EW:saw] this other guy with a whole bunch of balloon/s sell/ing balloon/s.,so then she seen this other guy with a whole bunch of balloons selling balloons,0 0 0 0 0 0 0 0 0 0 0 0 1 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and then the rabbit ask/ed : the man (if he could buy) if he could have a balloon.,and then the rabbit asked the man if he could have a balloon,0 0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and then : he said balloon/s are fifty cent/s.,and then he said balloons are fifty cents,0 0 0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,but he did not have enough money or any money.,but he did not have enough money or any money,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,then (um) : he want/ed a balloon really bad.,then he wanted a balloon really bad,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and then there was this other lady.,and then there was this other lady,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,so : the other guy start/ed walk/ing up to her.,so the other guy started walking up to her,0 0 0 0 4 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and (he ask/ed her) he ask/ed the lady if : she could (um) give five cent/s for a balloon.,and he asked the lady if she could give five cents for a balloon,0 0 4 0 0 0 0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,so then the lady gave the man five cent/s.,so then the lady gave the man five cents,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and they got two[!] balloon/s.,and they got two balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and then they each had one balloon.,and then they each had one balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,: she is bouncing a [+_bch] [+..].,she is bouncing a,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,(and the gym teacher) (and the gym) (and the gym person) [~_no] and the gym guy is walking [+_bch].,and the gym guy is walking,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,then he sees him [+_bch].,then he sees him,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and (he says) and he is think/ing that that girl is good [+__bch].,and and he is thinking that that girl is good,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,so he wants him to be on his team [+_bch].,so he wants him to be on his team,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,or I know another story [+_bch].,or I know another story,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,(or he wants to learn or) this kid want/3s to learn.,this kid wants to learn,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,(and) and he want/3s to play with the ball too.,and he wants to play with the ball too,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,there is[EW:are] two story/s [+_bch].,there is two stories,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,umhm.,umhm,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,: then he take/3s it away from her.,then he takes it away from her,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,then it bounce/3s to the water.,then it bounces to the water,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,(then she) (then she is) then she is sad.,then she is sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and he go/3s in and swim/3s (to get th) [~_sounds_like_mic_drops] to get it.,and he goes in and swims to get it,0 0 3 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and he give/3s her back the ball.,and he gives her back the ball,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,: and she like/3s him.,and she likes him,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,: oh then they want to go swim/ing.,oh then they want to go swimming,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,then she want/3s to be the first one in.,then she wants to be the first one in,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,so she is run/ing.,so she is running,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,but then she slip/3s.,but then she slips,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and he come/3s to help her.,and he comes to help her,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,then she hurt/3s her knee/s and cry/3s.,then she hurts her knees and cries,0 0 3 0 1 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and : the : watcher : came : over to help her too.,and the watcher came over to help her too,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,she is cry/ing.,she is crying,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,she is give/ing (him) her a bandaid.,she is giving her a bandaid,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,(and she sa) and he say/3s to her (sh) you should not run.,and he says to her you should not run,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,she is sit/ing on : the rest : get better [EU].,she is sitting on the rest get better,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,but then he say/3s no run/ing.,but then he says no running,0 0 0 3 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,(he want/3s) she want/3s to play with his airplane.,she wants to play with his airplane,0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,: and (sh) he : will not let him.,and he will not let him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,(and she is try) and he is try/ing to show off.,and he is trying to show off,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,then she take/3s it from her.,then she takes it from her,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and then she get/3s happy and start/3s play/ing with it.,and then she gets happy and starts playing with it,0 0 0 3 0 0 3 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and (he) : she drop/3s it into the water.,and she drops it into the water,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and he get/3s mad at her.,and he gets mad at her,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,: (then) then she is kind of worry/ed because he is mad at : (hi) her.,then she is kind of worried because he is mad at her,0 0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and the lifeguard come/3s to see what is happen/ing.,and the lifeguard comes to see what is happening,0 0 0 3 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and she is say/ing to the lifeguard I did not do it and all that stuff.,and she is saying to the lifeguard I did not do it and all that stuff,0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and he go/3s and try/3s to get it.,and he goes and tries to get it,0 0 3 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and he can not.,and he can not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,so then he is cry/ing.,so then he is crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,"then she[!] come/3s, another lifeguard.",then she comes another lifeguard,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and she is go/ing to[:_gonna] take the thing and get the paper airplane out.,and she is going to take the thing and get the paper airplane out,0 0 0 6 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and she get/3s it out.,and she gets it out,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,(and she has it for) (and he ge) and he gets happy xx.,and he gets happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and he smile/3s at her : and laugh/3s at her.,and he smiles at her and laughs at her,0 0 3 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,a rabbit and a dog [EU].,a rabbit and a dog,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and the dog is : play/ing in the sandbox make/ing a castle.,and the dog is playing in the sandbox making a castle,0 0 0 0 6 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and the rabbit : see/3s him and : say/3s can I play?,and the rabbit sees him and says can I play,0 0 0 3 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and they start play/ing.,and they start playing,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and they make the castle.,and they make the castle,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,(and) (and he ma) and he pour/3s a whole bunch of dirt on and ruin/3s it.,and he pours a whole bunch of dirt on and ruins it,0 0 3 0 0 0 0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,: then she is a little [+//]>,then she is a little,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,: why is she happy [+_bch]?,why is she happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,"why is she happy, what is happen/ing?",why is she happy what is happening,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,[~_oh_-:] because now it look/3s like (a castle) a[EW:an] underground castle.,because now it looks like a underground castle,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,: [~_oh] now she is go/ing to[:_gonna] try to make it again.,now she is going to try to make it again,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,they are go/ing for a picnic.,they are going for a picnic,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and he meet/3s his friend.,and he meets his friend,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,: and : (he only get/3s a little bit of s) he only get/3s a sandwich.,and he only gets a sandwich,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,he get/3s (all) all yummy stuff.,he gets all yummy stuff,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,(and he is) (and he is) and he want/3s some.,and he wants some,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,but he eat/3s it all.,but he eats it all,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,so (he is try/ing to eat it : to see) (to show[-:] him) [~_no] he is happy because he got a stomachache from that.,so he is happy because he got a stomachache from that,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,: (he) : (he) he got knock/ed out.,he got knocked out,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and he go/3s and tell/3s the lady that is walk/ing : by that (ee) guy.,and he goes and tells the lady that is walking by that guy,0 0 3 0 3 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and it is a doctor.,and it is a doctor,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,: she see/3s him knock/ed out.,she sees him knocked out,0 3 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,then the doctor get/3s worry/ed.,then the doctor gets worried,0 0 0 3 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and he is carry/ing : her over (to).,and he is carrying her over,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,now she is see/ing what is the problem.,now she is seeing what is the problem,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and (then) then she fix/3s his problem.,and then she fixes his problem,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and he is all right.,and he is all right,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and he go/3s back home.,and he goes back home,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,[~_hey] a dog is in there : and a rabbit.,a dog is in there and a rabbit,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,Okay C go ahead and start now.,Okay C go ahead and start now,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,: she is (um) take/ing (a ca um) a cart : to (pl) (play[-:] something) to play.,she is taking a cart to to play,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,she is roll/ing the cart.,she is rolling the cart,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,then he has a balloon.,then he has a balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,(and) and : he show/3s it.,and he shows it,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,then he get/3s : (um) : happy [EU].,then he gets happy,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and he want/3s to (take) grab the balloon off.,and he wants to grab the balloon off,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,he try/3s (to) : it.,he tries it,0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,but he scream/3s : no.,but he screams no,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,: and it fly/3s away.,and it flies away,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and (then) then she get/3s angry.,and then she gets angry,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,(then) (then there is a balloon man) then there is a balloon man (sel) sell/ing balloon/s.,then there is a balloon man selling balloons,0 0 0 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and he is run/ing to get some for her.,and he is running to get some for her,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,(then) : then he is ask/ing the balloon man if he can have some.,then he is asking the balloon man if he can have some,0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,: (and) : and he has no change.,and he has no change,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,: then he get/3s sad.,then he gets sad,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and they look xx.,and they look,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,: then he go/3s : to see : a doctor.,then he goes to see a doctor,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,: and he say/3s to the doctor (bo) this girl she is really sad : because (she can not : finish) she do/3s not have any money.,and he says to the doctor this girl she is really sad because she does not have any money,0 0 3 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,so he ask/3s [~_pronounced_'askes'] him if he could have some money.,so he asks him if he could have some money,0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and he give/3s them [EU].,and he gives them,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,then they both get balloon/s.,then they both get balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,: then they are all happy.,then they are all happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,"there is (a piggy and a elephant) : [~_EXA:_whoops,_sorry] a giraffe and a[EW:an] elephant.",there is a giraffe and a elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,: What are they do/ing ?,What are they doing,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,they are play/ing ball.,they are playing ball,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and the ball : go|go[EW:goes] in the water[-:] .,and the ball go in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,(And the) and the giraffe : swim|swim[EW:swims] and swim|swim[EW:swims].,and the giraffe swim and swim,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and the (gi) giraffe is go/ing to sink.,and the giraffe is going to sink,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and he did not.,and he did not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,he got up.,he got up,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,The end [+_bch].,The end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,there is a thing xx in the water.,there is a thing in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,(and the) and the elephant and the giraffe were go/ing to go in the water.,and the elephant and the giraffe were going to go in the water,0 0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and then the elephant is go/ing to go.,and then the elephant is going to go,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and he slip/ed.,and he slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and he hurt her[EW:his] knee.,and he hurt her knee,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,(and then) (and the) and the elephant came.,and the elephant came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and the elephant cry|cry[EW:cried].,and the elephant cry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and she had a rest.,and she had a rest,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and the elephant is mad.,and the elephant is mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,(and) (an uh) and she run|run[EW:ran] and run|run[EW:ran] and run|run[EW:ran] because she hurt her knee.,and she run and run and run because she hurt her knee,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,there is an elephant and a giraffe.,there is an elephant and a giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and the giraffe has a[EW:an] airplane.,and the giraffe has a airplane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and the airplane go|go[EW:went].,and the airplane go,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and it have|have[EW:has] a string.,and it have a string,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,(and it) and it flie/3s.,and it flies,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and the airplane go|go[EW:went] to the water.,and the airplane go to the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and it is go/ing to [~_gonna] go down and down and down and down and down.,and it is going to go down and down and down and down and down,0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,(And the kid/s) and the kid/s look/ed at the swim/ing elephant.,and the kids looked at the swimming elephant,0 0 1 4 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and (the elephant) (elephant) the airplane is go/ing to [~_gonna] fall.,and the airplane is going to fall,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and he can get[!] it.,and he can get it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,he could because he can.,he could because he can,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,I think someone need/3s to get that airplane.,I think someone needs to get that airplane,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and the elephant girl : [~_high_pitched_voice] I[!] will get it.,and the elephant girl I will get it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,she could.,she could,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and she could get it.,and she could get it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,[~_whispers] and she could get it.,and she could get it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,she got it.,she got it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and she is go/ing to get it.,and she is going to get it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and she got it.,and she got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and the elephant girl kid smile|smile[EW:smiled].,and the elephant girl kid smile,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,The end [+_bch].,The end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,(a dog) : (a mouse) (a dog) a dog and (a mo) a bunny [EU].,a dog and a bunny,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,: and they are at the beach.,and they are at the beach,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and the rabbit and the dog : are[-:] build/ing the something else.,and the rabbit and the dog are building the something else,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,the bunny is go/ing to[:_gonna] put something (on the) on the castle.,the bunny is going to put something on the castle,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,(and the cas) : and the bunny said oh dear.,and the bunny said oh dear,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,(and) and the girl : made another one because they have got a melt[?] [EU].,and the girl made another one because they have got a melt,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,they are go/ing for a picnic.,they are going for a picnic,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,(the) they are eat/ing[-:] .,they are eating,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and the bunny is full.,and the bunny is full,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,the bunny has a big tummy[-:] .,the bunny has a big tummy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,(and mister bunny) : and mister bunny has a bag.,and mister bunny has a bag,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,(then the doctor said) then the puppy said : doctor : the bunny is full[-:] .,then the puppy said doctor the bunny is full,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,(and) and he tongue stick out [EU].,and he tongue stick out,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,he *is happy [EU].,he happy,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,he *is go/ing to[:_gonna] go home and see he[EW:his] mama [EU].,he going to go home and see he mama,0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,The end [+_bch].,The end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,the doggy has a wagon[-:] .,the doggy has a wagon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and there is a balloon[-:] .,and there is a balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and it is go/ing to go away.,and it is going to go away,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and it is gone.,and it is gone,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and it pop/3s!,and it pops,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and there is a more balloon [EU].,and there is a more balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and the balloon is one right here [EU].,and the balloon is one right here,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,the balloon is what?,the balloon is what,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,right here [+_bch].,right here,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,then : there is a balloon right here beside the man [~_pronounced__/men/].,then there is a balloon right here beside the man,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and : he have|have[EW:has] lot/s of balloon[EW:balloon/s].,and he have lots of balloon,0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,(and) and (mister) mister nurse : is here.,and mister nurse is here,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,(mister) : mister nurse doctor : is go/ing somewhere else.,mister nurse doctor is going somewhere else,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and mister doctor go (to the) to the balloon man [EU].,and mister doctor go to the balloon man,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,(and the bun) and the (s) nurse doctor (s) smile|smile[EW:smile/ed].,and the nurse doctor smile,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,(um) an elephant is play/ing with a giraffe.,an elephant is playing with a giraffe,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and she is bounce/ing the ball with her trunk.,and she is bouncing the ball with her trunk,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,but then (the ball) (they see a) the ball go/3s into the water.,but then the ball goes into the water,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and the : giraffe go/3s and try/3s to catch it.,and the giraffe goes and tries to catch it,0 0 0 3 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,but the elephant look/3s really worry/ed.,but the elephant looks really worried,0 0 0 3 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and then they catch the ball.,and then they catch the ball,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and they are both really happy.,and they are both really happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and then she hug/3s[!] the ball.,and then she hugs the ball,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,(and the) and (the um) the giraffe look/3s really really happy[!].,and the giraffe looks really really happy,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and so do/3s the girl.,and so does the girl,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,(um) the elephant and the giraffe again [EU].,the elephant and the giraffe again,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,(they) they see a sign that say/3s no run/ing.,they see a sign that says no running,0 0 0 0 0 3 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,[~_well] it say/3s no run/ing.,it says no running,0 3 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,but I do not think they see it.,but I do not think they see it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and they are look/ing into the water.,and they are looking into the water,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,but then : the[-:] elephant[!] start/3s run/ing.,but then the elephant starts running,0 0 0 0 3 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and : she do/3s not see the sign.,and she does not see the sign,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,but then it is really slippery.,but then it is really slippery,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and she fall/3s.,and she falls,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,(and she) : and her friend : ran right past her.,and her friend ran right past her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and he did not see her.,and he did not see her,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and : then : he saw her.,and then he saw her,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and she scrape/ed her knee.,and she scraped her knee,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,so he went and got the lifeguard.,so he went and got the lifeguard,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and : now she is cry/ing hold/ing her knee.,and now she is crying holding her knee,0 0 0 0 6 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,so : he put cream [EU].,so he put cream,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and then he put a bandaid on it.,and then he put a bandaid on it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and then (th) she try/ed to walk over to the bench.,and then she tried to walk over to the bench,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,but she could not.,but she could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,so they had to kind of [~_kinda] help her.,so they had to kind of help her,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and then she sat down look/ing kind of [~_kinda] : embarrass/ed because : then the lifeguard just point/ed out : the sign[~!__laughing] that said no run/ing to her.,and then she sat down looking kind of embarrassed because then the lifeguard just pointed out the sign that said no running to her,0 0 0 0 0 6 0 0 4 0 0 0 0 0 4 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,the giraffe (he) he has (a[EW:an] airplane and) like a toy airplane.,the giraffe he has like a toy airplane,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and the elephant see/3s it.,and the elephant sees it,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and she is like oh cool(*2) (can you) can you fly it!,and she is like oh cool can you fly it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,so he is like well l will try it.,so he is like well l will try it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and so he twirl/3s it and twirl/3s it.,and so he twirls it and twirls it,0 0 0 3 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and he is try/ing to make it fly.,and he is trying to make it fly,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and the elephant is like [~_sharp_intake_of_breath] that is cool!,and the elephant is like that is cool,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and then (she) instead of ask/ing she just snatch/3s from him [EU].,and then instead of asking she just snatches from him,0 0 0 0 6 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and then he look/3s really mad[!] at her.,and then he looks really mad at her,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,but she look/3s happy.,but she looks happy,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and then (she) she is try/ing to fly it.,and then she is trying to fly it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,but she drop/3s it in the water.,but she drops it in the water,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,so he get|get[EW:gets] super[-:][!] mad.,so he get super mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and she look/3s really scare/ed.,and she looks really scared,0 0 3 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and he go/3s [~_makes_angry_sound]!,and he goes,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and then : the lifeguard come/3s and look/3s.,and then the lifeguard comes and looks,0 0 0 0 3 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and they are both really scare/ed.,and they are both really scared,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,they are on the other side of the pool.,they are on the other side of the pool,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and then (the) the : elephant look/3s and look/3s.,and then the elephant looks and looks,0 0 0 0 3 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,(the elephant) the girl elephant say/3s oh I am really really sorry.,the girl elephant says oh I am really really sorry,0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,I just accidentally did this blah [blahblah]!,I just accidentally did this blah,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and the lifeguard say/3s well that is okay I guess.,and the lifeguard says well that is okay I guess,0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,so then he try/3s to reach it.,so then he tries to reach it,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,"(and) but he can not reach yet, not yet.",but he can not reach yet not yet,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,so it is stuck in there now.,so it is stuck in there now,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and the : giraffe start/3s cry/ing.,and the giraffe starts crying,0 0 0 3 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,but then a girl elephant like I think it is the little girl elephant/z mom : she come/3s.,but then a girl elephant like I think it is the little girl elephant's mom she comes,0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and she has a net.,and she has a net,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,so : then she (s) grab/3s the plane and[-:] (um) : scoop/3s it up in the net and give/3s it back to him.,so then she grabs the plane and scoops it up in the net and gives it back to him,0 0 0 3 0 0 0 3 0 0 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and then : he is really happy.,and then he is really happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and so is the girl.,and so is the girl,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,[~_(o)kay] there is[EW:are] two rabbit/s.,there is two rabbits,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,(one) the girl (is name/ed) is Amanda.,the girl is Amanda,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and the boy/z name is Mark.,and the boy's name is Mark,0 0 2 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and they[-:] are at the beach.,and they are at the beach,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and they decide to build a sandcastle!,and they decide to build a sandcastle,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,but then (Mark he) they build it.,but then they build it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and then Mark he take/3s it.,and then Mark he takes it,0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and he just dump/3s all[!] the sand over top of it.,and he just dumps all the sand over top of it,0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,so now all they have is just a big clump of (snow) [~_I_mean] sand.,so now all they have is just a big clump of sand,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and then Amanda start/3s cry/ing!,and then Amanda starts crying,0 0 0 3 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,the end : I think [+_bch].,the end I think,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,there is (um) an elephant and a rabbit.,there is an elephant and a rabbit,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and they are each carry/ing picnic basket/s.,and they are each carrying picnic baskets,0 0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and they meet each other out in the wood/s.,and they meet each other out in the woods,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,(and so they de) and they decide to have a picnic!,and they decide to have a picnic,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,but then the rabbit he is like ah this stuff is so[-:] good!,but then the rabbit he is like ah this stuff is so good,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,(and the mon) and (the monkey) [~_well_actually] the rabbit (he just) he just bring/3s : junk[!] food.,and the rabbit he just brings junk food,0 0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,like there is like a big[!] really big cake.,like there is like a big really big cake,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and he is like ah I love junk food!,and he is like ah I love junk food,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,while [<~_well]the other[>~_well] the elephant is like [~_well] he is just looking at him you should eat some healthy food too[!].,while the other the elephant is like he is just looking at him you should eat some healthy food too,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,so then : the elephant is eat/ing a nice sandwich and drink/ing some juice.,so then the elephant is eating a nice sandwich and drinking some juice,0 0 0 0 0 6 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,but the rabbit he just : shove/3s all this stuff and just leave/3s it a mess!,but the rabbit he just shoves all this stuff and just leaves it a mess,0 0 0 0 0 3 0 0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and then : he is pat/ing his big fat tummy because he ate too much.,and then he is patting his big fat tummy because he ate too much,0 0 0 0 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,but then he feel/3s really dizzy.,but then he feels really dizzy,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and it look/3s like he is go/ing to[:_gonna] get sick.,and it looks like he is going to get sick,0 0 3 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,but then he faint/3s.,but then he faints,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,so : just out of the blue come/3s a doctor.,so just out of the blue comes a doctor,0 0 0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and the : elephant say/3s doctor doctor my friend over there ate too much junk food and faint/ed!,and the elephant says doctor doctor my friend over there ate too much junk food and fainted,0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,so she just pull/3s[!] him right over there.,so she just pulls him right over there,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and the : guy is still (fainted) like really dizzy.,and the guy is still like really dizzy,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and there is still a mess.,and there is still a mess,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,(so he is like) so the doctor : check/3s it/z throat and everything.,so the doctor checks it's throat and everything,0 0 0 3 2 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and he finally wake/3s up.,and he finally wakes up,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and the doctor is like oh[-:] you should not eat so much junk food!,and the doctor is like oh you should not eat so much junk food,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,but then : they take a little walk just to make sure he is okay while : the : (um) elephant (clean/3s it up) clean/3s the mess up.,but then they take a little walk just to make sure he is okay while the elephant cleans the mess up,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and there is a rabbit : the same one who ate too much junk food.,and there is a rabbit the same one who ate too much junk food,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,(named) : let us call him John.,let us call him John,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and[-:] the[-:] girl named Jennifer (has a little balloon) has a wagon.,and the girl named Jennifer has a wagon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and there is a balloon tie/ed to it!,and there is a balloon tied to it,0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and (the) John is like well what is that balloon for?,and John is like well what is that balloon for,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and Jennifer explain/3s well I am not sure yet [~_laughs].,and Jennifer explains well I am not sure yet,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,so then he is like well why do not we rip it off and : throw it up in the air?,so then he is like well why do not we rip it off and throw it up in the air,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and it can like drift up to heaven and stuff.,and it can like drift up to heaven and stuff,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and the bird/s can you know eat it.,and the birds can you know eat it,0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and (she is like) no no no said Jennifer!,and no no no said Jennifer,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,he is like well I will try and undo it still.,he is like well I will try and undo it still,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,while she went away he try/ed to undo it.,while she went away he tried to undo it,0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and then : he let it go on purpose!,and then he let it go on purpose,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and he is like oh Jennifer Jennifer!,and he is like oh Jennifer Jennifer,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,he lie/ed to Jennifer.,he lay to Jennifer,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,he is like Jennifer Jennifer (the) (um the) the balloon it drift/ed away!,he is like Jennifer Jennifer the balloon it drifted away,0 0 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and Jennifer is like oh man it drift/ed away!,and Jennifer is like oh man it drifted away,0 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,that was my favourite balloon!,that was my favourite balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,so then (she is gets) she is like (you did that) you did that!,so then she is like you did that,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and she get/3s all[-:] mad[!].,and she gets all mad,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,like oh I am just go/ing to[:_gonna] hurt you!,like oh I am just going to hurt you,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,so then : a guy come/3s along with some more[!] balloon/s.,so then a guy comes along with some more balloons,0 0 0 0 3 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and they get an idea.,and they get an idea,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,[~_well] John get/3s an idea.,John gets an idea,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,but : Jennifer is too mad to even notice[!].,but Jennifer is too mad to even notice,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,John is like : hi mister can I have some balloon/s!,John is like hi mister can I have some balloons,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and Jennifer is like huh what the heck is he do/ing?,and Jennifer is like huh what the heck is he doing,0 0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,so then : he get/3s out (um) : ten cent/s.,so then he gets out ten cents,0 0 0 3 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,(um) and (the) : (the um) : (the) [~__whatyoumacallit] the balloon person say/3s sorry they are for five cent/s only!,and the balloon person says sorry they are for five cents only,0 0 0 0 3 0 0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,if you do not have five cent/s you can not have a balloon.,if you do not have five cents you can not have a balloon,0 0 0 0 0 0 1 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,(so the guy is like) so then the guy is like hm you can not have a balloon.,so then the guy is like hm you can not have a balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and the both of the people are like please please please said John and Jennifer!,and the both of the people are like please please please said John and Jennifer,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,so then : (um) : the doctor[!] came along.,so then the doctor came along,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,(and he is like) and then John run/3s up to him and : say/3s he will not give us no[EW:any] balloon/s (h) (cuz) just because I have ten cent/s.,and then John runs up to him and says he will not give us no balloons just because I have ten cents,0 0 0 3 0 0 0 0 3 0 0 0 0 0 0 1 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and the balloons are only for five.,and the balloons are only for five,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,he will not give us no[EW:any] balloon/s.,he will not give us no balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,so : then the doctor has two five centses [EU].,so then the doctor has two five centses,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,so she give/3s it to them.,so she gives it to them,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and they get two balloon/s.,and they get two balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and then they hug them and squeeze them and everything.,and then they hug them and squeeze them and everything,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,but they do not pop yet.,but they do not pop yet,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,it look/3s like (the elephant and the giraffe are) [~_no] the elephant is (um) dribble/ing the ball.,it looks like the elephant is dribbling the ball,0 3 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and the giraffe is watch/ing.,and the giraffe is watching,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and the ball fell into the swimming pool.,and the ball fell into the swimming pool,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and the giraffe is (in um) in the swimming pool go/ing to get it.,and the giraffe is in the swimming pool going to get it,0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and now (that) (sh) the giraffe gave the ball to (um) the elephant.,and now the giraffe gave the ball to the elephant,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and he is happy.,and he is happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and now (um) : they are both happy.,and now they are both happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,(um) the giraffe and the elephant are (um) beside the pool wait/ing to jump in I think.,the giraffe and the elephant are beside the pool waiting to jump in I think,0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,(um) now the elephant is run/ing to the diving board.,now the elephant is running to the diving board,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and the giraffe is hold/ing the towel.,and the giraffe is holding the towel,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and now (the) it look/3s like the elephant is start/ing to slip.,and now it looks like the elephant is starting to slip,0 0 0 3 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and now she bang/ed her knee.,and now she banged her knee,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and she is cry/ing.,and she is crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,(um uh) and (the giraffe told) : now I think the giraffe told the lifeguard.,and now I think the giraffe told the lifeguard,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and the lifeguard is come/ing.,and the lifeguard is coming,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and the lifeguard put a bandaid on her knee.,and the lifeguard put a bandaid on her knee,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,now (um) the lifeguard : is help/ing the elephant to a bench.,now the lifeguard is helping the elephant to a bench,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and now the lifeguard is make/ing her sit on the bench.,and now the lifeguard is making her sit on the bench,0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,(um the gira) [~_I_mean_yeah] the giraffe has a plane.,the giraffe has a plane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and the elephant is look/ing at it.,and the elephant is looking at it,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,(um) the giraffe is play/ing with the plane.,the giraffe is playing with the plane,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and now the elephant has (um) grab/ed the plane out of the giraffe/z hand.,and now the elephant has grabbed the plane out of the giraffe's hand,0 0 0 0 0 4 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and now it fell into the : water.,and now it fell into the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,now the giraffe is mad at the elephant.,now the giraffe is mad at the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,now : (uh) the lifeguard come/3s.,now the lifeguard comes,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and : the lifeguard is talk/ing to the elephant.,and the lifeguard is talking to the elephant,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,now the lifeguard is try/ing to get it.,now the lifeguard is trying to get it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,but he can not.,but he can not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and now the giraffe is cry/ing.,and now the giraffe is crying,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and now : (the uh) a : lady elephant gets a net.,and now a lady elephant gets a net,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and she get/3s the plane out.,and she gets the plane out,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and she give/3s it to the giraffe.,and she gives it to the giraffe,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and : the giraffe is happy.,and the giraffe is happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and : now he is really happy.,and now he is really happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and the elephant is : look/ing at him again too.,and the elephant is looking at him again too,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,it look/3s like (um uh) a girl is play/ing in the sand.,it looks like a girl is playing in the sand,0 3 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and a boy come/3s.,and a boy comes,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and now the : girl is make/ing the sandcastle.,and now the girl is making the sandcastle,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and the boy is (hel) help/ing.,and the boy is helping,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and now the boy dump|dump[EW:dumped] a pail of sand (on the) on the castle : that she built.,and now the boy dump a pail of sand on the castle that she built,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and now (it) it fell down.,and now it fell down,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and they are all look/ing at it.,and they are all looking at it,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and now the : girl is cry/ing and try/ing to make it up.,and now the girl is crying and trying to make it up,0 0 0 0 0 6 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,it look/3s like a rabbit is come/ing up the lane.,it looks like a rabbit is coming up the lane,0 3 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and his friend is wave/ing.,and his friend is waving,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,(and) and now the rabbit is eat/ing all the food.,and now the rabbit is eating all the food,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and the friend is take/ing out a sandwich.,and the friend is taking out a sandwich,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,now the rabbit is full.,now the rabbit is full,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and he can not eat any more.,and he can not eat any more,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and his friend is still eat/ing.,and his friend is still eating,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and now it look/3s like the rabbit is[EW:has] got a tummyache.,and now it looks like the rabbit is got a tummyache,0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,now (um) : the : girl come/3s to : a doctor.,now the girl comes to a doctor,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and I think she tell/3s her : what happen/ed.,and I think she tells her what happened,0 0 0 0 3 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,now she is take/ing the doctor to : the rabbit.,now she is taking the doctor to the rabbit,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and : the doctor is (try/ing) : tell/ing the rabbit something.,and the doctor is telling the rabbit something,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and now the doctor is take/ing the rabbit : that ate too much.,and now the doctor is taking the rabbit that ate too much,0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,(i uh uh) it look/3s like a rabbit is come/ing down the lane.,it looks like a rabbit is coming down the lane,0 3 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and another girl : has a wagon.,and another girl has a wagon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and a balloon is tie/ed to it.,and a balloon is tied to it,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,now (the rabbit is try) (I think she) I think the rabbit is try/ing to get the balloon.,now I think the rabbit is trying to get the balloon,0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and the rabbit is untie/ing the balloon.,and the rabbit is untying the balloon,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and the balloon float/ed away.,and the balloon floated away,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and they are try/ing to grab it.,and they are trying to grab it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,but it : float/3s away.,but it floats away,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and now the : girl is very mad.,and now the girl is very mad,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and they see a balloon man.,and they see a balloon man,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and so : the rabbit go/3s to him.,and so the rabbit goes to him,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,(and) (and) and the balloon/s are five cent/s.,and the balloons are five cents,0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,(so) and he do/3s not have five cent/s.,and he does not have five cents,0 0 3 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,(now he g) and so they are both (um) at (the rab um um) the man who is sell/ing the balloon/s.,and so they are both at the man who is selling the balloons,0 0 0 0 0 0 0 0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and now they see a : lady[-:].,and now they see a lady,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and the rabbit go/3s up to her.,and the rabbit goes up to her,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,(and she ask/3s) and he ask/3s if : she has any money.,and he asks if she has any money,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,(and um) and the : lady give/3s (the um) the balloon man five cent/s.,and the lady gives the balloon man five cents,0 0 0 3 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,(and they get) and (uh) I think she[?] give/3s them the balloon.,and I think she gives them the balloon,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and now they both got a balloon.,and now they both got a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,There is an elephant and a : horse.,There is an elephant and a horse,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,And they see a big bubble : in the swimming pool.,And they see a big bubble in the swimming pool,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,"(um) he is go/ing to pop it, the horse.",he is going to pop it the horse,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,(it was a ball I think) it was a ball.,it was a ball,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,He what?,He what,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,It was a ball [+_bch].,It was a ball,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,Okay.,Okay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,(um :) elephant was happy.,elephant was happy,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,A horse is (um) go/ing to jump into the pool.,A horse is going to jump into the pool,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,But the elephant was go/ing to jump off the edge.,But the elephant was going to jump off the edge,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,But he slip/ed.,But he slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,He got an owie.,He got an owie,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,(uh) the [~_?] horse came.,the horse came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,And the other (um) elephant came.,And the other elephant came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,And : they sit[EW:sat] on a bench.,And they sit on a bench,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,And (they) : (and the ele) (um elephant) no run/ing on the sign.,And no running on the sign,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,There is a sign [~_whispers].,There is a sign,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,The horse (um : uhh : is) has a[EW:an] airplane in his hand.,The horse has a airplane in his hand,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,And he is fly/ing it.,And he is flying it,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,And elephant took it from his hand.,And elephant took it from his hand,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,And it fell in the water.,And it fell in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,And the horse was mad.,And the horse was mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,And (it was floa) (it was come/ing) it was float/ing.,And it was floating,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,and[-:] (uhh) : it was sink/ing.,and it was sinking,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,The boy was try/ing to reach it.,The boy was trying to reach it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,But he could not.,But he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,(And he) and then the girl (um) got (a) a net.,and then the girl got a net,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,(And he) (and she uhm : got it) : and she got it.,and she got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,And she gave it back.,And she gave it back,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,and then he was happy.,and then he was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,(um) they are build/ing (a sandcastle) a sandcastle.,they are building a sandcastle,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,the bunny and[!] the dog are still build/ing it.,the bunny and the dog are still building it,0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,they are go/ing to[:_gonna] (um) put a pail on it.,they are going to put a pail on it,0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,and it broke.,and it broke,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,and : the dog was cry/ing.,and the dog was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,that is short [+_bch].,that is short,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,(um) they are go/ing to pick some : [~_I_don't_know].,they are going to pick some,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,Pardon me?,Pardon me,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,I don't know what they are go/ing to pick [+_bch].,I don't know what they are going to pick,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,okay.,okay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,should I turn?,should I turn,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,(they picked) they pick/ed (um) a sandwich and all kinds of stuff.,they picked a sandwich and all kinds of stuff,0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,(and they) (and the boy) and the bunny was full.,and the bunny was full,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,and[-:] he[-:] : was dizzy.,and he was dizzy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,(And) : (and the bunny um was um : um) and (his mom) the doctor was come/ing.,and the doctor was coming,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,and[-:] the dog was pull/ing her.,and the dog was pulling her,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,and : she was go/ing to[:_gonna] (check her) : check him : the bunny.,and she was going to check him the bunny,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,and they were go/ing back home.,and they were going back home,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,(um) they are (pull/ing a balloon onto a) (a little) [~_interruption_of_someone_coming_in_room] [~_EXA_oh_go_ahead] pull/ing a balloon on (a) : a little thingy.,they are pulling a balloon on a little thingy,0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,on what?,on what,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,a little thingy [+_bch].,a little thingy,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,okay a little thingy.,okay a little thingy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,and : it is get/ing smaller.,and it is getting smaller,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,(um) actually it was (um) get/ing undone [EU].,actually it was getting undone,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,but it (um) float/ed up to the sky.,but it floated up to the sky,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,and the dog was very mad.,and the dog was very mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,and : a guy was bring/ing lots of balloon/s.,and a guy was bringing lots of balloons,0 0 0 0 6 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,and they pick/ed one.,and they picked one,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,and they : got number five.,and they got number five,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,and : it float/ed up again.,and it floated up again,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,and : then it just came again [EU].,and then it just came again,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,and then (um) the bunny said (to the) just wugwug[c] [EU].,and then the bunny said just wugwug,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,this guy has a lot of balloon/s.,this guy has a lot of balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,and she got one.,and she got one,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,(and she) and they (got one) both got one each.,and they both got one each,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,I am play/ing with you giraffe said.,I am playing with you giraffe said,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,no[!] said a[EW:an] elephant.,no said a elephant,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,a ball is : oopsy daisy said : a zebra.,a ball is oopsy daisy said a zebra,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,I *will get it [EU].,I get it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,I *will spray (m) your[EW:my] trunk : at you[!] giraffe [EU].,I spray your trunk at you giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,and he did.,and he did,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,and (he) he fall|fall[EW:fell] in the water.,and he fall in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,(and) and the hippo is sad.,and the hippo is sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,(and then : he) : grab[!] it grab|grab[EW:grabbed][!] it : said the elephant.,grab it grab it said the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,thank you giraffe said.,thank you giraffe said,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,where *is my hat [EU]?,where my hat,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,www.,www,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,what is that giraffe said.,what is that giraffe said,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,(um) a pull said the hippo.,a pull said the hippo,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,And then (ha a ha) we get the ball.,And then we get the ball,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,next[!] we get the towel.,next we get the towel,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,and (look) look over there.,and look over there,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,look said the giraffe.,look said the giraffe,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,and the elephant *is run/ing [EU].,and the elephant running,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,please slip those [~_coughs][EU].,please slip those,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,do not run said the giraffe wag/ing them[EW:their] tail[tails] around.,do not run said the giraffe wagging them tail around,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,elephant be (quick) quick like the giraffe.,elephant be quick like the giraffe,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,(and he) ow* (I bruise/ed my) call the doctor he said.,ow call the doctor he said,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,supervisor said are you all right girl : hippo?,supervisor said are you all right girl hippo,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,and he said (ah) [~_argh].,and he said,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,(that) the supervisor telled|tell[EW:told] the giraffe come quickly.,the supervisor telled the giraffe come quickly,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,you (do not) do not run : he said.,you do not run he said,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,I play a[EW:an] airplane [EU].,I play a airplane,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,no hippo said.,no hippo said,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,I am play/ing with it.,I am playing with it,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,no fair said the elephant.,no fair said the elephant,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,turn the page [+_bch].,turn the page,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,[~_high_pitched_voice] I am fly/ing.,I am flying,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,[~_deep_voice] he zoom|zoom[EW:zooms] it : said the elephant.,he zoom it said the elephant,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,hm [~_makes_sound] I : xx [EU].,hm I,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,[~_high_pitched_voice] your turn.,your turn,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,[~_deep_voice] you have it.,you have it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,xxx xxx for.,for,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,[~_high_pitched_voice] give it back said the giraffe.,give it back said the giraffe,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,and then [~_makes_crying_sound_'waah'].,and then,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,you *are sorry said elephant [EU].,you sorry said elephant,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,you apologize to me[!] said elephant.,you apologize to me said elephant,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,sorry said elephant : ground/ing his face at : him [EU].,sorry said elephant grounding his face at him,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,you ruin/ed my airplane.,you ruined my airplane,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,and I want xx to play with it : any more [EU].,and I want to play with it any more,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,and (uh) : an airplane and hippo (sl) : slide : on the mat.,and an airplane and hippo slide on the mat,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,(and) and [~_high_pitched_voice] help.,and help,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,and suddenly [+//]>,and suddenly,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,www.,www,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,thank you.,thank you,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,[~_high_pitched_voice] (I p) I put it in the (s) pool.,I put it in the pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,[~_high_pitched_voice] and (he give it) I grab/ed it to him[!] [EU].,and I grabbed it to him,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,[~_makes_sounds] said the supervisor.,said the supervisor,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,turn the page [+_bch].,turn the page,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,and he *did not get it [EU].,and he not get it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,and : he *was wet and wet and wet and wet [EU].,and he wet and wet and wet and wet,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,he said : I *will give it [~_makes_sound] [EU].,he said I give it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,then xx [~_?_elly] said [~_makes_growling_sound].,then said,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,: [~_high_pitched_voice] thank you said : mommy : happily.,thank you said mommy happily,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,[~_high_pitched_voice] my new airplane.,my new airplane,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,said : yeah[!] [EU].,said yeah,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,(um xx) (you : do not : said) do not[!] said the rabbit [EU].,do not said the rabbit,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,do not break my castle.,do not break my castle,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,I have built it.,I have built it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,I *will pat it down [EU].,I pat it down,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,(do not) do not hurt it.,do not hurt it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,(I) my mother said no.,my mother said no,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,too much sand (said) said the dog.,too much sand said the dog,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,no rabbit.,no rabbit,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,you broken|broke[EW:broke] my : sandcastle : said the dog.,you broken my sandcastle said the dog,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,that mine : idea [EU].,that mine idea,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,"we *will buy : another one [~_coughs,_EXA_gives_him_tissue;__continues_on_track_62] [EU].",we buy another one,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,: what is happen/ing?,what is happening,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,(um : so many) you ruin/ed mine : said the cow.,you ruined mine said the cow,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,we are go/ing : *on a picnic said : dog [EU].,we are going a picnic said dog,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,we *are pack/ing : pine cone/s [EU].,we packing pine cones,0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,my mother!,my mother,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,ayeaye Captain : Hook said the dog.,ayeaye Captain Hook said the dog,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,you have a snack.,you have a snack,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,then we *will go said : the rabbit [EU].,then we go said the rabbit,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,(uh) said rabbit : munch/ing him[EW:his] whole food up [EU].,said rabbit munching him whole food up,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,I have a : full tummyache.,I have a full tummyache,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,you tell my mom please [EU].,you tell my mom please,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,[~_makes_various_noises].,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,then : wake up!,then wake up,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,xxx.,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,a what?,a what,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,(doctor) (doctor) (doctor rabbit) doctor rabbit.,doctor rabbit,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,help me.,help me,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,help me.,help me,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,turn the page [+_bch].,turn the page,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,(help me) (help) help him.,help him,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,help him.,help him,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,[~_heavy_breathing] (I your m) I *am your[!] mother [EU].,I your mother,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,I *will get my mother [EU].,I get my mother,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,xxx.,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,he mess him [EU].,he mess him,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,snack[?] up and : went home [EU].,snack up and went home,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,hello said : a girl dog.,hello said a girl dog,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,hello : you come and pick [EU].,hello you come and pick,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,go with *the circus : said rabbit?,go with circus said rabbit,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,no thank you.,no thank you,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,(wo) a cool balloon [EU].,a cool balloon,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,we buy them on (sale) saleman[!] [EU].,we buy them on saleman,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,what is a saleman?,what is a saleman,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,what is a saleman?,what is a saleman,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,and then the dog (uh) play/ing : a rabbit [EU].,and then the dog playing a rabbit,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,where is that balloon : go said rabbit : jump/ing high [EU].,where is that balloon go said rabbit jumping high,0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,[~_makes_'grrr'_sound] (said) said dog : walk/ing away [EU].,said dog walking away,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,rabbit : tell him : up here.,rabbit tell him up here,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,hello (I have) I have : got : xx xx.,hello I have got,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,dog : wagon : him hide [EU].,dog wagon him hide,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,and then : (he is) suddenly a man come|come[EW:came] up.,and then suddenly a man come up,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,and : aha *can I have those balloon/s please [EU].,and aha I have those balloons please,0 0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,one and you [EU].,one and you,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,okay.,okay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,write : a number : a five on it okay?,write a number a five on it okay,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,good.,good,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,and he went and went and went and went and went.,and he went and went and went and went and went,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,and him[EW:his] wagon *was full[!] of : balloon/s [EU].,and him wagon full of balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,he [~_makes_crying_sounds] dad [EU]!,he dad,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,mom!,mom,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,dad!,dad,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,mom!,mom,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,dad : said doctor.,dad said doctor,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,one *is not there : said doctor [EU].,one not there said doctor,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,(xx) they needed cent/s : (said) [EU].,they needed cents,0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,yay(*4)!,yay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,we have balloon/s!,we have balloons,0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,we have balloon/s!,we have balloons,0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,(um) cost [EU].,cost,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,Is playing bubbles [EU].,Is playing bubbles,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,it big bubble/s come/ing [EU].,it big bubbles coming,0 0 1 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is throw[EW:throwing] them down [EU].,is throw them down,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is : say[EW:saying] thank you [EU].,is say thank you,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,happy [EU].,happy,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,Is go/ing swim/ing [EU].,Is going swimming,0 6 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is swim/ing [EU].,is swimming,0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is go/ing down [EU].,is going down,0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is slippery [EU].,is slippery,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is ow owie [EU].,is ow owie,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is hurt [EU].,is hurt,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is cry/ing [EU].,is crying,0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,there the ask her[EU].,there the ask her,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,what did you say ?,what did you say,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,(um) because he was cry/ing because sad [EU].,because he was crying because sad,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,(now is) now is not hurt [EU].,now is not hurt,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is mad [EU].,is mad,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,go away.,go away,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,Is happy [EU].,Is happy,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is play/ing [EU].,is playing,0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is like it [EU].,is like it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,(it bro[-:]) it is under the water.,it is under the water,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,say : [~_makes_growling_sound] I : mad [EU].,say I mad,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,because : hmm [EU].,because hmm,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,what did it (um) you [EU].,what did it you,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is : scream/ing [EU].,is screaming,0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is[-:] do[EW:doing] it [EU].,is do it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,can not do it [EU].,can not do it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,I : got it.,I got it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,[~_makes_growling_sound] I got it.,I got it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,thank you.,thank you,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,so happy [EU].,so happy,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,(Is) is like[EW:liking] her [EU].,is like her,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,that *is his friend [EU].,that his friend,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is play/ing [EU].,is playing,0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is all done [EU].,is all done,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,it is full.,it is full,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is cry/ing [EU].,is crying,0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is go/ing [EU].,is going,0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,(is eat/ing) is eat/ing [EU].,is eating,0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,: what is happen/ing?,what is happening,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is eat/ing *a sandwich [EU].,is eating sandwich,0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is (drink/ing) drink/ing juice [EU].,is drinking juice,0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is xx her.,is her,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is : move/ing [EU].,is moving,0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is : (hur) hurt ear/s [EU].,is hurt ears,0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,say goodbye.,say goodbye,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,Is have balloon [EU].,Is have balloon,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,: anything else?,anything else,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,balloon : that : a big[-:] [EU].,balloon that a big,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,it is fun.,it is fun,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is[-:] (um) take[EW:taking] it [EU].,is take it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,can not do it [EU].,can not do it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,it is (g) go/ing up to *the sky[-:] [EU].,it is going up to sky,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,(is) is go[EW:going](*3) high [EU].,is go high,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,hopper[?] lost the balloon.,hopper lost the balloon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is mad [EU].,is mad,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,he (s) want|want[EW:wants] the balloon.,he want the balloon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,it is five dollar/s.,it is five dollars,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,(is) (is) : balloon is hold[EW:holding] it [EU].,balloon is hold it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is here that doctor [~_pronounced_'dotger'] [EU].,is here that doctor,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,here balloon [EU].,here balloon,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is say[EW:saying] thank you [EU].,is say thank you,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,balloon is happy [EU].,balloon is happy,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,(um) there is a[EW:an][-:] elephant in a pool.,there is a elephant in a pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and she is bounce/ing a ball.,and she is bouncing a ball,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and it go/3s in the water.,and it goes in the water,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and (the security guard) [~_I_mean] the guy that watch/3s if somebody drown/3s come/3s and : (um) try/3s to get the ball.,and the guy that watches if somebody drowns comes and tries to get the ball,0 0 0 0 3 0 0 3 3 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,he go/3s swim/ing.,he goes swimming,0 3 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and she is like almost cry/ing.,and she is like almost crying,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and then he get/3s it.,and then he gets it,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and then she is really happy.,and then she is really happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,she walk/3s away.,she walks away,0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and that is the end [+_bch].,and that is the end,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,the two[-:] people again.,the two people again,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and (um) they are look/ing at the water.,and they are looking at the water,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,(um) she is run/ing : the elephant.,she is running the elephant,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and she is still run/ing.,and she is still running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,(and the other) and the (s) security guy is run/ing after her.,and the security guy is running after her,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,she hurt/3s her knee.,she hurts her knee,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,(um) another security guard come/3s.,another security guard comes,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,she is cry/ing.,she is crying,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and (they are try/ing to fig) and he put/3s a bandaid on her knee.,and and he puts a bandaid on her knee,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,(and sh) (then sh) and she is walk/ing now.,and she is walking now,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and the security guard is mad now.,and the security guard is mad now,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and that is the end [+_bch].,and that is the end,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,(um the two) the security guard and the elephant are there.,the security guard and the elephant are there,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and (um) she (s) look/3s surprise/ed.,and she looks surprised,0 0 3 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,(he got a pl) the security guy got a plane.,the security guy got a plane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and she is almost fall/ing.,and she is almost falling,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and she grab/3s it from him.,and she grabs it from him,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,she drop/3s it in the water.,she drops it in the water,0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and now the security guard is really mad.,and now the security guard is really mad,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and it is sink/ing.,and it is sinking,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,(um) the other security guard come/3s.,the other security guard comes,0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,they all look at it.,they all look at it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and she explain/3s to the other security guard (and um) what happen/ed.,and she explains to the other security guard what happened,0 0 3 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and (he tri) and the security guard try/3s to get it.,and and the security guard tries to get it,0 0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,but he can not reach.,but he can not reach,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and now the other security guard is cry/ing.,and now the other security guard is crying,0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and they can not get it.,and they can not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and then another lady come/3s and has a net.,and then another lady comes and has a net,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and she try/s to catch it.,and she tries to catch it,0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and she got it.,and she got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and the (se) other security guard is happy now.,and the other security guard is happy now,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and that is the end [+_bch].,and that is the end,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,(um) a rabbit make/ing a sandcastle [EU].,a rabbit making a sandcastle,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and then there is (a) a girl and a boy like a girl rabbit and a boy rabbit.,and then there is a girl and a boy like a girl rabbit and a boy rabbit,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and the boy rabbit : has a weird look/ing face.,and the boy rabbit has a weird looking face,0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and they start make/ing the sandcastle.,and they start making the sandcastle,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,(um) (the) the boy rabbit pour/3s (um) more sand on the castle.,the boy rabbit pours more sand on the castle,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and it break/3s.,and it breaks,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and the girl rabbit cry/3s.,and the girl rabbit cries,0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and that is the end [+_bch].,and that is the end,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,the two rabbit/s again.,the two rabbits again,0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,but (um) the girl rabbit is come/ing walk/ing.,but the girl rabbit is coming walking,0 0 0 0 0 6 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and they (say hello) : wave hello.,and they wave hello,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,(um) then they start eat/ing because they are on a picnic.,then they start eating because they are on a picnic,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,(um) the boy rabbit is really full.,the boy rabbit is really full,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and[-:] all the food is gone.,and all the food is gone,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and the girl rabbit is still eat/ing.,and the girl rabbit is still eating,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and the boy rabbit is (um : uh) dizzy.,and the boy rabbit is dizzy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and then they see a doctor.,and then they see a doctor,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,(and he go) and the : girl rabbit go/3s run/ing to her.,and the girl rabbit goes running to her,0 0 0 0 3 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,pull/3s on her arm.,pulls on her arm,3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,the doctor check/3s him.,the doctor checks him,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and then he is better.,and then he is better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and that is the end [+_bch].,and that is the end,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,(um) the two rabbit/s again except the girl one has a balloon on her wagon.,the two rabbits again except the girl one has a balloon on her wagon,0 0 1 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and she is pull/ing it.,and she is pulling it,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and the boy rabbit run/3s to her.,and the boy rabbit runs to her,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and then they both go on a walk (with).,and then they both go on a walk,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and he say/3s : (um) I like your balloon.,and he says I like your balloon,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,(and she pull) and he tie/3s it off.,and he ties it off,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and (she has a) she is scare/ed that it will go up up and away.,and she is scared that it will go up up and away,0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and it do/3s.,and it does,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and then she is really mad at him.,and then she is really mad at him,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and they are sell/ing more balloon/s.,and they are selling more balloons,0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,(and) and they are go/ing to walk to him.,and they are going to walk to him,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,but she is still mad.,but she is still mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,(she buy/3s one) [~_I_mean] he buy/3s one.,he buys one,0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,they cost five cent/s.,they cost five cents,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,he do/3s not have five cent/s.,he does not have five cents,0 3 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,he can not buy one.,he can not buy one,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,so (he) he see/3s the doctor.,so he sees the doctor,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,(and he s) and he point/3s at (the) the guy with the balloon/s.,and he points at the guy with the balloons,0 0 3 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and she buy/3s them one.,and she buys them one,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and they both happy now.,and they both happy now,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and that is the end [+_bch].,and that is the end,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,there was a little : (um :) [~_what_is_that] [~_EXA:_what_do__you_think] (hmm) : a[EW:an] elephant bounce/ing three ball/s[-:].,there was a little a elephant bouncing three balls,0 0 0 0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,now they falled|fall[EW:fell] in the dirt or water.,now they falled in the dirt or water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then the : other animal falled|fall[EW:fell] in the dirt.,then the other animal falled in the dirt,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,[~_actually_uh_no] and the elephant help/ed him up : with the ball.,and the elephant helped him up with the ball,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,: and[-:] (um) : they are happy.,and they are happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,(now : he) now the elephant want/ed to go jump/ing in the water[-:].,now the elephant wanted to go jumping in the water,0 0 0 4 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then he was run/ing[!] in the water.,then he was running in the water,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then he was try/ing to run.,then he was trying to run,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then he slip/ed[-:].,then he slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then he hurt hisself[EW:himself][-:].,then he hurt hisself,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then the guard[!] comed|come[EW:came].,then the guard comed,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then : (h) hurted|hurt[EW:hurt] real[!] bad [EU].,then hurted real bad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then he sitted|sit[EW:sat] on the bench.,then he sitted on the bench,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,and he got a bandaid.,and he got a bandaid,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,(and he) and he got mad.,and he got mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,and he [~_points] [+/]^,and he,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,: you are point/ing.,you are pointing,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,mhm they got mad and : he is point/ing!,mhm they got mad and he is pointing,0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,he is point/ing that way.,he is pointing that way,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,the end [+_bch]!,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,(now they are say/ing) now the little sheep (um) said do not play with my airplane !,now the little sheep said do not play with my airplane,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,now it flied|fly[EW:flew] [-:][!] around.,now it flied around,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then he[!] try/ed it out : the (um) elephant did.,then he tried it out the elephant did,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then it went in the water[-:] !,then it went in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then : he got mad !,then he got mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then the guard said [~_puts_hands_on_hips] [+..] [EU].,then the guard said,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,hmm he is stand/ing with his hand/s on his hip/s.,hmm he is standing with his hands on his hips,0 0 0 6 0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,yeah [+_bch].,yeah,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then : nobody could not get it out [EU].,then nobody could not get it out,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then : (he[!] could not) : guard could not.,then guard could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then[-:] : they are think/ing of let/ing [+//]>,then they are thinking of letting,0 0 0 6 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,do/3s this (um) : get my voice [+_bch].,does this get my voice,3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,yeah it do/3s.,yeah it does,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,oh [+_bch].,oh,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,everything XX.,everything,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,"is that that page, okay.",is that that page okay,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,now there is a different elephant that had a shape/ed thing [~__gestures_to_indicate_shape].,now there is a different elephant that had a shaped thing,0 0 0 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then he got[!] it with[-:] his shape/ed thing [~_gestures_to_indicate__shape].,then he got it with his shaped thing,0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,yeah and both time/s you have shown me that with your hand/s.,yeah and both times you have shown me that with your hands,0 0 0 1 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then he said thank you !,then he said thank you,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,: then they[-:] did not play with it ever again.,then they did not play with it ever again,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,and they are : build/ing[!] a sandcastle there.,and they are building a sandcastle there,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,and he[-:] carefully touch/ed it[-:].,and he carefully touched it,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then he pour/ed some more dirt[-:].,then he poured some more dirt,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then it broke[-:][!] down[-:][!] : half of it.,then it broke down half of it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then he was sad[-:].,then he was sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,they are walk/ing around and have/ing a picnic.,they are walking around and having a picnic,0 0 6 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then they got carrot/s and all (s) kind[EW:kinds] of stuff.,then they got carrots and all kind of stuff,0 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,and they *are all full [EU].,and they all full,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,and the bunny rabbit was full.,and the bunny rabbit was full,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then he was[-:] : really super full.,then he was really super full,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,he was really what?,he was really what,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,(his[-:] stomach) his stomach was fat.,his stomach was fat,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,oh okay I did not understand what you said.,oh okay I did not understand what you said,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,speak a little bit louder okay?,speak a little bit louder okay,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,okay [+_bch].,okay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,he was run/ing.,he was running,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,and when he left the bunny [EU].,and when he left the bunny,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,and : there was a different[!] bunny that had glass/s.,and there was a different bunny that had glasses,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,and he was have/ing a picnic too.,and he was having a picnic too,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,and you show/ed me the glass/s too.,and you showed me the glasses too,0 0 4 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then : he drag/ed him over here.,then he dragged him over here,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then he check/ed out him[-:] [EU].,then he checked out him,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then he live/ed happy[EW:happily] ever after.,then he lived happy ever after,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,the end [+_bch]!,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,(they are ha) and (the bunny rabbit uh) the little[-:] girl bunny rabbit had a balloon.,and the little girl bunny rabbit had a balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then : the boy[-:][!] one : want/ed to try it.,then the boy one wanted to try it,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then she said no!,then she said no,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then it flied|fly[EW:flew] [-:] away!,then it flied away,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,I think the balloon pop/ed (or it) or it flied|fly[EW:flew] off the[-:] (um) : string.,I think the balloon popped or it flied off the string,0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,mhm is that it for that page?,mhm is that it for that page,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,now they saw a balloon[!] man.,now they saw a balloon man,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,they ask/ed for one.,they asked for one,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,and he said only if a (one[-:] dollar) : (one doll) five[-:] cent/s actually [EU].,and he said only if a five cents actually,0 0 0 0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,(then) : then they saw a guy.,then they saw a guy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,and they runned|run[EW:ran]!,and they runned,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,and[-:] is that my bell [+_bch]?,and is that my bell,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,no.,no,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,: okay [+_bch].,okay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,nothing on this page?,nothing on this page,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,and he said [~_high_pitched_voice] I want a balloon the little baby me [EU]!,and he said I want a balloon the little baby me,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,(and he said) and he gived|give[EW:gave] him two[!] buck/s.,and he gived him two bucks,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then they : live/ed happy[EW:happily] ever after.,then they lived happy ever after,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,(she) : she is[-:] by the pool.,she is by the pool,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and she see/3s her friend.,and she sees her friend,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and she get/3s scare/ed because there is a ball in the water.,and she gets scared because there is a ball in the water,0 0 3 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,then : her friend : go/3s into the water and get/3s it : because she drop/ed it.,then her friend goes into the water and gets it because she dropped it,0 0 0 3 0 0 0 0 3 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and then she got it back.,and then she got it back,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,(and then) and then she is happy.,and then she is happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,she is by the : pool.,she is by the pool,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,(um) she want/3s to go in it.,she wants to go in it,0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and she is[-:] run/ing.,and she is running,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and she get/3s a ball.,and she gets a ball,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and then she fall/3s[-:].,and then she falls,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and then she get/3s a bandaid.,and then she gets a bandaid,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and then she sit/3s on a bench.,and then she sits on a bench,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and the guy is say/ing no run/ing.,and the guy is saying no running,0 0 0 0 6 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,her friend is hold/ing an airplane.,her friend is holding an airplane,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and : he is show/ing her what it can do.,and he is showing her what it can do,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and she want/3s to try it.,and she wants to try it,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,but then it fall/3s in the water.,but then it falls in the water,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and then he get/3s angry.,and then he gets angry,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,(and) and then the guy get/3s mad because there is a toy in the (rw) water.,and then the guy gets mad because there is a toy in the water,0 0 0 0 3 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and then : she is tell/ing : him : what she was try/ing to do.,and then she is telling him what she was trying to do,0 0 0 0 6 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and then he try/3s to get it.,and then he tries to get it,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,but he do/3s not get it.,but he does not get it,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and[-:] a girl (with a net) has a net.,and a girl has a net,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and she is like I[!] could probably get it.,and she is like I could probably get it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and then she get/3s it.,and then she gets it,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and she give/3s it to : the girl/z friend.,and she gives it to the girl's friend,0 0 3 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and (he) he is hug/ing it.,and he is hugging it,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,(they) : they are play/ing in the sand.,they are playing in the sand,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and the bunny has a shovel.,and the bunny has a shovel,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and they make a castle.,and they make a castle,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and he dump/3s sand[-:] on it.,and he dumps sand on it,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and then it fall/3s[-:].,and then it falls,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and then they have to build it again.,and then they have to build it again,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,they[-:] both have basket/s.,they both have baskets,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and they are walk/ing.,and they are walking,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and they are go/ing to[:_gonna] have a picnic together.,and they are going to have a picnic together,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and then : they get full.,and then they get full,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and he get/3s dizzy too[~!_laughing].,and he gets dizzy too,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and then the doctor was walk/ing by.,and then the doctor was walking by,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and (the) (the) his friend : call/3s the doctor because the guy is (on the carpet) on the blanket.,and his friend calls the doctor because the guy is on the blanket,0 0 0 3 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and then the doctor (go/3s t) go/3s to check him.,and then the doctor goes to check him,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,then he make/3s him better.,then he makes him better,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,(um) : the guy is pull/ing a wagon.,the guy is pulling a wagon,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and his friend see/3s him : with a balloon [~_laughs].,and his friend sees him with a balloon,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and then he like/3s the balloon.,and then he likes the balloon,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and he is untie/ing it[-:].,and he is untying it,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,(and then) and (it) then it go/3s away.,and then it goes away,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and then : he get/3s : mad.,and then he gets mad,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and then they see the guy with more balloon/s left.,and then they see the guy with more balloons left,0 0 0 0 0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and he give/3s one to him.,and he gives one to him,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and it says five cent/s on it : (cause).,and it says five cents on it,0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and then he doe/3s not want to[:_wanna] get it.,and then he does not want to get it,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,(um) : and then they go away.,and then they go away,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and then he ask/3s the doctor if he can get one with five cent/s.,and then he asks the doctor if he can get one with five cents,0 0 0 3 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and[-:] then he get/3s five cent/s to get two balloon/s for both of them.,and then he gets five cents to get two balloons for both of them,0 0 0 3 0 1 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and then[-:] they are both happy.,and then they are both happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,he is (pl) playing *with that ball with his bathing suit on [EU].,he is playing that ball with his bathing suit on,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,[~_clears_throat] but the ball *is in the water [EU].,but the ball in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,he is swim/ing in it.,he is swimming in it,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,and he got it.,and he got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,and he is all wet.,and he is all wet,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,that is all [+_bch].,that is all,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,(he is) he is look/ing at the water.,he is looking at the water,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,he is run/ing to the diving board.,he is running to the diving board,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,slip/ed [EU].,slipped,4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,hurt the knee [EU].,hurt the knee,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,he is run/ing.,he is running,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,and her[EW:she] *is sit/ing there [EU].,and her sitting there,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,and they put a bandaid on it.,and they put a bandaid on it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,and he is get/ing cranky.,and he is getting cranky,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,that is all [+_bch].,that is all,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,play/ing a plane (with) near the pool [EU].,playing a plane near the pool,6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,(it is) it is start/ing to fly.,it is starting to fly,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,and she is hold/ing on to it.,and she is holding on to it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,and it fell in the pool.,and it fell in the pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,and it is start/ing to drowned [EU].,and it is starting to drowned,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,and it is float/ing.,and it is floating,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,and it is still float/ing.,and it is still floating,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,and (he) she is try/ing to reach it.,and she is trying to reach it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,can not get it [EU].,can not get it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,and he is lose/ing the net.,and he is losing the net,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,and they got it.,and they got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,and then he took it out.,and then he took it out,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,and they are happy.,and they are happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,that is all [+_bch].,that is all,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,make/ing a sandcastle [EU].,making a sandcastle,6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,fill/ing it up [EU].,filling it up,6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,(um) spill/ing it on the castle [EU].,spilling it on the castle,6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,it is wreck/ed.,it is wrecked,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,cry/ing [EU].,crying,6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,that is all [+_bch].,that is all,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,have/ing a picnic [EU].,having a picnic,6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,eat/ing [EU].,eating,6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,(f) nice and full [EU].,nice and full,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,what was that?,what was that,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,full [+_bch].,full,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,(um) he *is dizzy [EU].,he dizzy,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,(um he is try) (um) he is run/ing.,he is running,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,he is try/ing to talk.,he is trying to talk,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,he is : get/ing dizzy again.,he is getting dizzy again,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,walk/ing with[?] each other [EU].,walking with each other,6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,that is all [+_bch].,that is all,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,balloon on a wagon [EU].,balloon on a wagon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,he is stand/ing there watch/ing the balloon.,he is standing there watching the balloon,0 0 6 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,he is (on) take/ing it off.,he is taking it off,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,it is blow/ing away.,it is blowing away,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,(it is) it is go/ing up higher.,it is going up higher,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,got lot/s of balloon/s [EU].,got lots of balloons,0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,he is point/ing at the lots of balloon/s [EU].,he is pointing at the lots of balloons,0 0 6 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,he is look/ing at the ground.,he is looking at the ground,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,(um) he is sad.,he is sad,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,(um) he is walk/ing away.,he is walking away,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,he is : point/ing (where) what he is not suppose/ed to do [EU].,he is pointing what he is not supposed to do,0 0 6 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,(um) he has (t) two balloon/s.,he has two balloons,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,(um) they both have balloon/s.,they both have balloons,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,that is all [+_bch].,that is all,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,(he was : talk/ing) : he was talk/ing to (the) : the girl elephant.,he was talking to the girl elephant,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and he was : look/ing at something.,and he was looking at something,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and then he was : crash/ing.,and then he was crashing,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and then (he was get/ing out) : he was : get/ing out.,and then he was getting out,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,(he was) : he was ask/ing[!].,he was asking,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,(um) he was : talk/ing.,he was talking,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,(um) he was : look/ing.,he was looking,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,look/ing?,looking,6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,(he) she was : point/ing.,she was pointing,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and she was crash/ing!,and she was crashing,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,she breaked|break[EW:broke] his knee.,she breaked his knee,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,(he wa) she was cry/ing!,she was crying,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and[-:] she[-:] was[-:] : look/ing at him.,and she was looking at him,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and he was : all better.,and he was all better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and he was : put/ing on something.,and he was putting on something,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,he was : ask/ing.,he was asking,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,he was : fly/ing an airplane.,he was flying an airplane,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,(he was : hold/ing an airplane) [EXA:_he_was_what] (he was) he was hold/ing an airplane.,he was holding an airplane,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,(but he could not) : but he could not let[!] her.,but he could not let her,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and he put it into the water.,and he put it into the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,he was mad[!] at him.,he was mad at him,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and then (he was : um) he was[-:] : ask/ing.,and then he was asking,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and he was : ask/ing again.,and he was asking again,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,he was : get/ing his airplane.,he was getting his airplane,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and then he was : cry/ing.,and then he was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,(he) : she was : hold/ing a shovel.,she was holding a shovel,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,he was : pick/ing up an airplane.,he was picking up an airplane,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,(he was) : he was : give/ing it.,he was giving it,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,(um : she was) : he was let/ing her have an airplane.,he was letting her have an airplane,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,he is [-:] dig/ing.,he is digging,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,(he is) he is finish/ed.,he is finished,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,he is dump/ing it out.,he is dumping it out,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,he is?,he is,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,dump/ing it out [+_bch].,dumping it out,6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and[-:] it break|break[EW:broke].,and it break,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,it break|break[EW:broke]?,it break,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and he was cry/ing.,and he was crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,(he is walk/ing along) he is walk/ing along.,he is walking along,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and (he is) : (he is eat/ing) he is go/ing to eat.,and he is going to eat,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and he is full.,and he is full,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,he had a big tummyache.,he had a big tummyache,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and he was whistle/ing.,and he was whistling,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and he was hold/ing [EU].,and he was holding,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,(uh) he was fall/ing.,he was falling,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,fall/ing [+_bch].,falling,6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and he was all right.,and he was all right,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,he is[-:] talk/ing.,he is talking,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,he is[-:] look/ing.,he is looking,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,look/ing?,looking,6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,he is[-:] : pop/ing.,he is popping,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,[~_or] he is take/ing it out.,he is taking it out,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,he is take/ing it out?,he is taking it out,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,[~_yeah] and he is go/ing to pop it.,and he is going to pop it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,it is float/ing up.,it is floating up,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and he popp/ed it.,and he popped it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and he get|get[EW:got] some more balloon/s.,and he get some more balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,he is : bring/ing them.,he is bringing them,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and[-:] pop/ing [EU].,and popping,0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and he got some more balloon/s.,and he got some more balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and they pop/ed.,and they popped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and he got some more balloon/s.,and he got some more balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,but they pop/ed.,but they popped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,but what?,but what,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,but they pop/ed [+_bch].,but they popped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,he bring|bring[EW:brought] some more balloon/s.,he bring some more balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,they got two of them.,they got two of them,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,they got two of them.,they got two of them,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,he is hold/ing it.,he is holding it,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,they are all hold/ing it.,they are all holding it,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,(um) : a : giraffe is : play/ing (uh) ball[-:] with : (a girl by a p) : a[EW:an] elephant (by a) : by a pool[-:].,a giraffe is playing ball with a elephant by a pool,0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,then the ball go/3s in the water.,then the ball goes in the water,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and they are kind of[~!_laughing] frighten/ed.,and they are kind of frightened,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and (they s) he swim/3s out to the ball to get it.,and he swims out to the ball to get it,0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,(um) : the giraffe give/3s the ball to the : elephant.,the giraffe gives the ball to the elephant,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then[-:] (she is : happy with the eleph : um) the elephant is happy with the giraffe (t) for get/ing (h) : her ball (for him) : from[?] him.,and then the elephant is happy with the giraffe for getting her ball from him,0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,they are[-:] go/ing to [~_gonna] : go in the water.,they are going to go in the water,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and (the) there is a sign.,and there is a sign,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and it say/3s no run/ing.,and it says no running,0 0 3 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,she start/3s to run to go in the water : the elephant.,she starts to run to go in the water the elephant,0 3 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then the elephant slip/3s.,and then the elephant slips,0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and[-:] then she is hold/ing her knee.,and then she is holding her knee,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then the giraffe come/3s and see|see[EW:sees] what is : wrong with her.,and then the giraffe comes and see what is wrong with her,0 0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,then the lifeguard come/3s.,then the lifeguard comes,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and : he come/3s.,and he comes,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and (um) : he : see/3s the elephant down on the ground.,and he sees the elephant down on the ground,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and he put/3s [EW:a] bandaid on her knee.,and he puts bandaid on her knee,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and she is close/ing her eye/s.,and she is closing her eyes,0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then when she open/ed her eye/s : (um) she saw a bandaid on her knee.,and then when she opened her eyes she saw a bandaid on her knee,0 0 0 0 4 0 1 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,(th[-:]) : then she kind of look/3s[~!_laughing] embarass/ed because the lifeguard is tell/ing her that the sign say/3s no run/ing.,then she kind of looks embarassed because the lifeguard is telling her that the sign says no running,0 0 0 0 3 4 0 0 0 0 6 0 0 0 0 3 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and she was run/ing.,and she was running,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,the : elephant see/3s that the giraffe has an : airplane.,the elephant sees that the giraffe has an airplane,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and (he) : (he) (they are) I think she is ask/ing if : (um) : she could play with it with him.,and I think she is asking if she could play with it with him,0 0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and I think he say/3s no.,and I think he says no,0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,then he start/3s play/ing (with) with : it[?].,then he starts playing with it,0 0 3 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,(uh) and : the elephant is watch/ing him.,and the elephant is watching him,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then she (snap/3s) : (um sna um) take/3s the : airplane out of the giraffe/z hand[-:].,and then she takes the airplane out of the giraffe's hand,0 0 0 3 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then it go/3s into the : pool.,and then it goes into the pool,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then the : giraffe get/3s kind of mad at her because I think that might be his favorite (um) : airplane.,and then the giraffe gets kind of mad at her because I think that might be his favorite airplane,0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then the lifeguard (come/3s and seen) : come/3s to see[-:] what was go/ing on.,and then the lifeguard comes to see what was going on,0 0 0 0 3 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and[-:] (then : she um) : then the lifeguard talk/3s with the elephant.,and then the lifeguard talks with the elephant,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and[-:] the giraffe kind of look/3s like he is a bit worry/ed.,and the giraffe kind of looks like he is a bit worried,0 0 0 0 0 3 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and[-:] the lifeguard is try/ing to get the airplane.,and the lifeguard is trying to get the airplane,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,but (I do not) he can not.,but he can not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,(then the) : (then uh).,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,(did I) did I turn it too soon?,did I turn it too soon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,no [+_bch].,no,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then the giraffe start/3s to cry.,and then the giraffe starts to cry,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and[-:] : then : I think the elephant : really look/3s kind of like she is sorry for the : (um g) giraffe.,and then I think the elephant really looks kind of like she is sorry for the giraffe,0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,but then a girl come/3s with a (net) net.,but then a girl comes with a net,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and they are all like what the!,and they are all like what the,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then : (she scoop/3s out the air) she is scoop/ing out the airplane.,and then she is scooping out the airplane,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then she gots|get[EW:gets] the airplane out.,and then she gots the airplane out,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and she give/3s it to the giraffe.,and she gives it to the giraffe,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and the giraffe is happy.,and the giraffe is happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and he is hug/ing[~!_laughing] the airplane.,and he is hugging the airplane,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,(um[-:]) : I think it is a dog (um) : and a rabbit.,I think it is a dog and a rabbit,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,the character/s are the dog and the rabbit.,the characters are the dog and the rabbit,0 1 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and[-:] the dog is (s) : build/ing a sandcastle.,and the dog is building a sandcastle,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and : (he is fillding um) he is (um : uh) kind of (uh) : fill/ing a bucket with sand.,and he is kind of filling a bucket with sand,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,(and sh) : the dog is : (um) try/ing to like make sure it does not fall down the sandcastle.,the dog is trying to like make sure it does not fall down the sandcastle,0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then the : bunny put/3s sand on top of the : castle.,and then the bunny puts sand on top of the castle,0 0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then it knock/3s down the castle.,and then it knockes down the castle,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,the dog is kind of : look/ing like he did not want that to happen.,the dog is kind of looking like he did not want that to happen,0 0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and : the bunny felt really (s um) sad.,and the bunny felt really sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and (they) he try/ed : the dog try/ed to : put it back up.,and he tried the dog tried to put it back up,0 0 4 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,but (h) : he could not.,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and that is the end [+_bch].,and that is the end,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,(um) : the rabbit and the dog are have/ing a picnic together.,the rabbit and the dog are having a picnic together,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and[-:] : (the) : the rabbit pack/ed too much : lunch.,and the rabbit packed too much lunch,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and[~!_laughing] the : dog pack/ed like only a bit because he did not : want to [~_wanna] get a stomachache[~!_laughing].,and the dog packed like only a bit because he did not want to get a stomachache,0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then (he um) the rabbit ate all he had.,and then the rabbit ate all he had,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then : he kind of [~_kinda] look/3s a bit fat[~!_laughing].,and then he kind of looks a bit fat,0 0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then he start/3s getting dizzy because he ate too much food.,and then he starts getting dizzy because he ate too much food,0 0 0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then (um) : the dog see/3s a : doctor on the road come/ing by.,and then the dog sees a doctor on the road coming by,0 0 0 0 3 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then he (told him) : told her that (there um) the character that is (um) lay/ing down is kind of dizzy.,and then he told her that the character that is laying down is kind of dizzy,0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,(so : um he).,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,you tell me to turn when I need to.,you tell me to turn when I need to,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,(um) : but : she (um) : need/3s : to : kind of [~_kinda] help him.,but she needs to kind of help him,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,you can turn now [+_bch].,you can turn now,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,(um) then : he is : show/ing : the doctor (where h) : where he is lay/ing down and tell/ing her : (how) what happen/ed.,then he is showing the doctor where he is laying down and telling her what happened,0 0 0 6 0 0 0 0 0 6 0 0 6 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then he : (te) tell/3s : the bunny to stick his tongue out.,and then he tells the bunny to stick his tongue out,0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and he stick/3s his tongue out[~!_laughing].,and he stickes his tongue out,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then (h) : he is walk/ing home with (um) : the doctor.,and then he is walking home with the doctor,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and that is the end [+_bch].,and that is the end,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,(um[-:]) the dog (is ha) is pull/ing a balloon.,the dog is pulling a balloon,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and he has a balloon (um) tie/ed on to : his wheel of the wagon.,and he has a balloon tied on to his wheel of the wagon,0 0 0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,(and he um) : and then the rabbit come/3s.,and then the rabbit comes,0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then he want/3s the balloon.,and then he wants the balloon,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and so he is like grab/ing out to take it.,and so he is like grabbing out to take it,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then he untie/3s it from the wheel.,and then he unties it from the wheel,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and (then : the) : then it go/3s off of the : wagon.,and then it goes off of the wagon,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,(and then they) and[-:] then the : bunny is kind of [~__kinda] taller.,and then the bunny is kind of taller,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and so (he a) : he is try/ed to : (um) : reach it.,and so he is tried to reach it,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,but he can not reach it.,but he can not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then : the dog is kind of : angry at (the : um) the rabbit : for lose/ing his balloon by go/ing : up in the air.,and then the dog is kind of angry at the rabbit for losing his balloon by going up in the air,0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then : a : bunny that is hold/ing balloon/s come/3s by.,and then a bunny that is holding balloons comes by,0 0 0 0 0 0 6 1 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and he is just walk/ing.,and he is just walking,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then the : bunny kind of [~_kinda] has a[EW:an] idea that he could buy a new balloon for him.,and then the bunny kind of has a idea that he could buy a new balloon for him,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then he : (um) : said how much (um) do those balloon/s cost?,and then he said how much do those balloons cost,0 0 0 0 0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,(um) : and then he take/3s down a balloon.,and then he takes down a balloon,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and it say/3s : balloon/s (f[-:]) : five cent/s.,and it says balloons five cents,0 0 3 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and (he) he do/3s not have any five cent/s.,and he does not have any five cents,0 0 3 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,so he could not buy : a balloon.,so he could not buy a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,but then he see/3s the doctor.,but then he sees the doctor,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then (she) he is run/ing to ask if she has five cent/s.,and then he is running to ask if she has five cents,0 0 0 0 6 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and[-:] (um : he) she is kind of [~_kinda] look/ing : (this) this way.,and she is kind of looking this way,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and[-:] (sh) she just probably look/ing at the scene/s of the park.,and she just probably looking at the scenes of the park,0 0 0 0 6 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then he is talk/ing to her about what happen/ed.,and then he is talking to her about what happened,0 0 0 0 6 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,(and : he) : (sh) (she um : want) and the : dog want/3s a balloon.,and the dog wants a balloon,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,except he does not have enough money to buy one for the dog.,except he does not have enough money to buy one for the dog,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then (he give/3s him) : she give/3s him two five cent/s for the : bunny and the dog.,and then she gives him two five cents for the bunny and the dog,0 0 0 3 0 0 0 1 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and they : got the : two balloon/s.,and they got the two balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and they both were : play/ing with their balloon/s.,and they both were playing with their balloons,0 0 0 0 6 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and they : had a lot of fun with them.,and they had a lot of fun with them,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,the : doctor is smile/ing[~!_laughing].,the doctor is smiling,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,that is the end [+_bch].,that is the end,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(um) there is one giraffe and a[EW:an] elephant.,there is one giraffe and a elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(the) (the) (the) the elephant is bounce/ing a ball.,the elephant is bouncing a ball,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and then : (the) the ball fell in the water[-:].,and then the ball fell in the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and the giraffe swimmed|swim[EW:swam] *to get it [EU].,and the giraffe swimmed get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and then the giraffe got it.,and then the giraffe got it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and elephant was surprise/ed.,and elephant was surprised,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and then that is the end [+_bch].,and then that is the end,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,one (elepha) elephant (was) was look/ing at the water[-:] : and was go/ing to go in it : with the jump/ing board.,one elephant was looking at the water and was going to go in it with the jumping board,0 0 0 6 0 0 0 0 0 6 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and then[-:] she said I will go to the jump/ing board.,and then she said I will go to the jumping board,0 0 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and then (she will) she was run/ing.,and then she was running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(and then) and then the giraffe said stop.,and then the giraffe said stop,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and then she bang/ed her : leg[-:].,and then she banged her leg,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(and) : and she was cry/ing.,and she was crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(and) and the (other) other elephant gave her a bandage.,and the other elephant gave her a bandage,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(that is the) (and the) (and then she did not) and the lifeguard whack/ed her.,and the lifeguard whacked her,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and that is the end [+_bch].,and that is the end,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,there is one elephant and the giraffe.,there is one elephant and the giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(ha) and the giraffe (has a) : had a[EW:an] airplane.,and the giraffe had a airplane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and then the giraffe : (um um) : flied|fly[EW:flew] it with his hand/s[-:].,and then the giraffe flied it with his hands,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and the elephant : said I want to [~_wanna] have a try.,and the elephant said I want to have a try,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(and do not) and do not aim it at the water (the) (the gir) (the) the giraffe said.,and do not aim it at the water the giraffe said,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and then she aim/ed it at the water.,and then she aimed it at the water,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(and then) and it almost sunk.,and it almost sunk,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(and then the) and then the giraffe was angry.,and then the giraffe was angry,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(and) : and the elephant (was) : was so impress/ed.,and the elephant was so impressed,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and then the lifeguard : look/ed at it.,and then the lifeguard looked at it,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and it was float/ing along[-:].,and it was floating along,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(and) and then : what : would : we do : (said) said the elephant.,and then what would we do said the elephant,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and the lifeguard (will) (will) (is) is go/ing to[:_gonna] reach it.,and the lifeguard is going to reach it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and then he could not reach it.,and then he could not reach it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(and then) (and then) : (and then) : (and then : uh) and the giraffe was cry/ing.,and the giraffe was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and the elephant was impress/ed.,and the elephant was impressed,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and : then everyone was impress/ed.,and then everyone was impressed,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(and then : a lady got um) and then a lady got : (uh a ke) a net to catch it.,and then a lady got a net to catch it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and then (she) she got it[-:].,and then she got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and then she gave it back[-:].,and then she gave it back,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and that was the end [+_bch].,and that was the end,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(one) : one little doggy make/3s : (a p) a sandcastle.,one little doggy makes a sandcastle,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and : then he say/3s let us make some more.,and then he says let us make some more,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and then : she make/3s[-:] it.,and then she makes it,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and then she pour/3s it on : the sandcastle.,and then she pours it on the sandcastle,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,then (it is : uh) her sandcastle is ruin/ed.,then her sandcastle is ruined,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and : the boy did not want his sandcastle ruin/ed[!].,and the boy did not want his sandcastle ruined,0 0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(um) : one doggy and one rabbit : *are go/ing for a picnic [EU].,one doggy and one rabbit going for a picnic,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and[-:] the rabbit : (is) is go/ing to[:_gonna] eat : a sandwich and carrot/s.,and the rabbit is going to eat a sandwich and carrots,0 0 0 0 6 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(and) : and the doggy : (drink/3s) *is eat/ing some sandwich/s and juice [EU].,and the doggy eating some sandwiches and juice,0 0 0 6 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(and) (and) and then the bunny has a tummyache.,and then the bunny has a tummyache,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and then (it is) the bunny is get/ing (a little) a little wiggly.,and then the bunny is getting a little wiggly,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(and[-:]) and the puppy (do) dog is is just : drink/ing juice still.,and the puppy dog is is just drinking juice still,0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and : (the) : the puppy dog ask/3s his grandma to come.,and the puppy dog asks his grandma to come,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and : (she) she did not want to come[-:].,and she did not want to come,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(and : the) : and then : she tell|tell[EW:tells] them : about eating too much food[!].,and then she tell them about eating too much food,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and that is the end [+_bch].,and that is the end,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(um) : one little boy has a wagon with a balloon[-:].,one little boy has a wagon with a balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and one bunny cames|come[EW:came] over.,and one bunny cames over,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and he say/3s that : balloon is great.,and he says that balloon is great,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and now : the bunny was go/ing to take it off.,and now the bunny was going to take it off,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and the doggy said no[!].,and the doggy said no,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and it float/ed away[-:].,and it floated away,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and the puppy was angry.,and the puppy was angry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(and) and the rabbit watch/ed (it fly) : fly up.,and the rabbit watched fly up,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and (they went) they went to get : a balloon from that balloon man.,and they went to get a balloon from that balloon man,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(and) and the bunny said : can I have one balloon please?,and the bunny said can I have one balloon please,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and then : he said that one is five dollar/s.,and then he said that one is five dollars,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(and then he) and then (he got) : (the) the big guy with the balloon/s got encouraged.,and then the big guy with the balloons got encouraged,0 0 0 0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and then (they went away t) they went to their mother : (and) : and ask/ed her if we can have a balloon[-:] [EU].,and then they went to their mother and asked her if we can have a balloon,0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(and) and she got a little : couraged too [EU].,and she got a little couraged too,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and then she gave him : a dollar and gave : them a balloon[!].,and then she gave him a dollar and gave them a balloon,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and that is the end[!] [+_bch].,and that is the end,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,here[-:] is a (s) real[EW:really] [-:] bouncy ball[-:].,here is a real bouncy ball,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,: and then it went[-:] in the (water[-:]) : swimming pool.,and then it went in the swimming pool,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then (he is gr) : he is get/ing[-:] it.,and then he is getting it,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and he got it[-:].,and he got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,(and they are) : and he : give|give[EW:gave] it to a girl.,and he give it to a girl,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and the guy is too (s) messedy[EW:mess/ed] up.,and the guy is too messedy up,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,(still) : (he still) his shirt is wet.,his shirt is wet,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,(and his sh) (and his t) and his shoe/s are wet.,and his shoes are wet,0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and his shirt and (his) his pant/s[-:] wet.,and his shirt and his pants wet,0 0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and his hair is wet.,and his hair is wet,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,then[-:] : he is ready go in the swimming pool[-:].,then he is ready go in the swimming pool,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,: ready to turn?,ready to turn,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and (her say) her[EW:she] *is step/ing[-:] : in[-:] : the swimming pool [EU].,and her stepping in the swimming pool,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then (her w) her[EW:she] runned|run[EW:ran][-:].,and then her runned,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then her[EW:she] have|have[EW:has] a[EW:an] owie.,and then her have a owie,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then (her) : her[EW:she] is cry/ing.,and then her is crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and a boy[-:] : say[EW:say/3s] it hurt/3s.,and a boy say it hurts,0 0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,got a bandage.,got a bandage,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then it is : not allow/ed[-:] to go in the swimming pool with the bandaid.,and then it is not allowed to go in the swimming pool with the bandaid,0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,(uh I got) : no more run/ing[-:].,no more running,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then (he) : he got (a real[-:][!]) : (um : maybe) : maybe (a real[-:]) : (a real) : a real airplane[-:].,and then he got maybe a real airplane,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,(and he) and he say[EW:say/3s] : vroom[-:] vroom[-:]!,and he say vroom vroom,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,(and he) : and[-:] then[-:] the girl grab|grab[EW:grab/3s] at the boy[-:].,and then the girl grab at the boy,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,then : it go/3s in the : water[-:].,then it goes in the water,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then : he be[EW:is] mad[-:][!].,and then he be mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then his airplane stuck.,and then his airplane stuck,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then here ask.,and then here ask,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then what ?,and then what,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,(he) he have|have[EW:has] to get it.,he have to get it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and he can not.,and he can not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then[-:][!] : the good (gir) : girl (wanna pass[-:] it) : want/3s to give it.,and then the good girl wants to give it,0 0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,(her) (him) he cry/ed.,he cried,0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and they give it to (the) the boy[-:].,and they give it to the boy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then he : love/ed it : ever after.,and then he loved it ever after,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,(and : then : he) and then : he built a (sss) (castle[-:]) sandcastle.,and then he built a sandcastle,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,can you use your loud voice?,can you use your loud voice,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,sandcastle [+_bch].,sandcastle,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,yeah I heard that yeah tell me about this page.,yeah I heard that yeah tell me about this page,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,then[-:] : he put some sand in a sand bucket.,then he put some sand in a sand bucket,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,(and he dump/ed it) : and (uh) he dump/ed it.,and he dumped it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then (he) : (he[-:]) (he broked|broke[EW:broke]) : (he broked|broke[EW:broke] the girl/z) (girl/z) (he br) he broke (s) the rabbit/z castle he made.,and then he broke the rabbit's castle he made,0 0 0 0 0 2 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then (he) (her br) he broke the (girl/z) girl/z sandcastle (he) her[EW:she] made[-:].,and then he broke the girl's sandcastle her made,0 0 0 0 0 2 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,(and) and the rabbit walk/ed.,and the rabbit walked,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,(and he) and he : pack/ed[-:] lunch[-:].,and he packed lunch,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,(and) and he ate all[-:] : his sandwich.,and he ate all his sandwich,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,xxx.,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then : (he) he ate all[-:] the food.,and then he ate all the food,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and he get|get[EW:got] a stomachache.,and he get a stomachache,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,(and) (and then the) : (and the rabbit/z mom[-:]) : and the rabbit/z mommy.,and the rabbit's mommy,0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,(and then) (the here[?]) the (girl/z) (girl) girl/z mommy[-:] use salt [EU].,the girl's mommy use salt,0 2 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and now he is a little rabbit.,and now he is a little rabbit,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and (he is) a new rabbit walk/ed[-:].,and a new rabbit walked,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then (he) the girl got a new wagon and a balloon[-:].,and then the girl got a new wagon and a balloon,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then he saw the balloon[-:].,and then he saw the balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,(her s) he saw it.,he saw it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then[-:] : her[EW:she] yell/ed.,and then her yelled,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then : the boy : (is p) (pull) is tie/ing it off.,and then the boy is tying it off,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then it tie/ed[-:] off.,and then it tied off,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then : her[EW:she] had none.,and then her had none,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,maybe her[EW:she] be|be[EW:is] (ma) mad[-:].,maybe her be mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,they all *are mad [EU].,they all mad,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,okay louder voice.,okay louder voice,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then (her s) : he saw the balloon man.,and then he saw the balloon man,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then : he want/3s to have a balloon.,and then he wants to have a balloon,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,then : you see in his (pocket/s) : pocket/s.,then you see in his pockets,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then they are line up [EU].,and then they are line up,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then [~_EXA:_loud_voice] (he saw) : he saw his mother[-:] and (his) her mother : and (a balloon[-:]) : a balloon.,and then he saw his mother and her mother and a balloon,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then her[EW:she] give|give[EW:gave] (her) him a[EW:the] money.,and then her give him a money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then : they are have a balloon[-:] [EU].,and then they are have a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,(um the) : a pig : and a girl pig *are : look/ing at the : (three) : three pie[EW:pies] [EU].,a pig and a girl pig looking at the three pie,0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,: the boy saw one big egg[?].,the boy saw one big egg,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,then the boy swim|swim[EW:swam].,then the boy swim,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,then he got it.,then he got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,then he give|give[EW:gave] it to the girl.,then he give it to the girl,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,the boy : he saw the diving board.,the boy he saw the diving board,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,no run/ing.,no running,0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,: the girl runned|run[EW:ran].,the girl runned,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,: then a girl (ss) slip|slip[EW:slipped].,then a girl slip,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,then a girl hurt her knee.,then a girl hurt her knee,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,then (a swimming : is) : the swimming (pe) man is taking a bandaid [EU].,then the swimming man is taking a bandaid,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,then it all came [EU].,then it all came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,: then he read the sign no run/ing.,then he read the sign no running,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,the boy : is stand/ing with the girl.,the boy is standing with the girl,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,: the boy got a[EW:an] airplane.,the boy got a airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,and the girl (t) take|take[EW:took] a[EW:an] airplane off his hand [EU].,and the girl take a airplane off his hand,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,(then a g) then he fell in the water.,then he fell in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,then a boy is angry.,then a boy is angry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,then a swimming man is [<~?_washing]watching[>~?_washing].,then a swimming man is watching,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,then swimming man is : talk/ing with the girl.,then swimming man is talking with the girl,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,the swimming man is : try/ing to get it.,the swimming man is trying to get it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,then[-:] is go/ing it down [EU].,then is going it down,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,then a swimming girl try/ed to get it.,then a swimming girl tried to get it,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,and the swimming girl did get it.,and the swimming girl did get it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,and the swimming girl gave it to the boy.,and the swimming girl gave it to the boy,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,(then a swimming girl) and (then) then the boy (is) is happy.,and then the boy is happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,there is a : boy and a girl : build/ing the (castle) sandcastle.,there is a boy and a girl building the sandcastle,0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,the boy is dig|dig[EW:digging] more sand.,the boy is dig more sand,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,and the girl build|build[EW:builds] it.,and the girl build it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,then a boy put all the sand on top of the sandcastle.,then a boy put all the sand on top of the sandcastle,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,then the sandcastle is broke[EW:broken] all (day) down.,then the sandcastle is broke all down,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,and one is still up.,and one is still up,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,then he build|build[EW:builds] it back.,then he build it back,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,the boy and the girl *are walk/ing down to buy stuff [EU].,the boy and the girl walking down to buy stuff,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,they *are going to [~_gonna] *a picnic [EU].,they going to picnic,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,the boy got a carrot and the : (uh : uh sss) sandwich : and a juice.,the boy got a carrot and the sandwich and a juice,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,and he *was hungry [EU].,and he hungry,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,: then he *was fat [EU].,then he fat,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,: then (he stand) (he s) he try/ed to stand up.,then he tried to stand up,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,except he (not) is about[?] to stand up.,except he is about to stand up,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,: (then he da) then a doctor (he) a girl ran to him.,then a doctor a girl ran to him,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,hey : like this.,hey like this,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,(then) : (then) then he pull/ed the doctor (where) where the boy is fat.,then he pulled the doctor where the boy is fat,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,: then a doctor try/ed to fix him.,then a doctor tried to fix him,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,: then (he) a boy walk|walk[EW:walked] : (to hi) to : him.,then a boy walk to him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,the girl (get : go) go with his store[?] [EU].,the girl go with his store,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,and a boy ran there.,and a boy ran there,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,then (the girl ff) a boy try/ed to get a balloon.,then a boy tried to get a balloon,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,then a girl *was stand/ing [EU].,then a girl standing,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,then a boy go [<~_no]under the[>~_no] (ss) beside it : and try/ed to put *it up [EU].,then a boy go under the beside it and tried to put up,0 0 0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,the balloon went up.,the balloon went up,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,and the girl is bad.,and the girl is bad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,there is[EW:are] more balloon[EW:balloons].,there is more balloon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,: and a boy ran.,and a boy ran,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,and he (ff) got it.,and he got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,then he tell|tell[EW:told] the man I have one balloon?,then he tell the man I have one balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,: if I (ff) (balla) bill five dollar [EU].,if I bill five dollar,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,: and : (uh) then the xx is boy next time [EU].,and then the is boy next time,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,(then the) then there is a doctor for the story.,then there is a doctor for the story,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,"(ask/ed) (he ask/ed) he ask/ed the doctor (dd) do you (take the) take him and xx [~_sounds_like_""top_so""] [EU].",he asked the doctor do you take him and,0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,and what?,and what,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,and : he did.,and he did,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,then he get[EW:gave] him (five) : five dollar/s.,then he get him five dollars,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,: then he got two balloon[EW:balloons].,then he got two balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,a giraffe met the elephant.,a giraffe met the elephant,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the elephant drop/ed (a) the ball in a : pool.,the elephant dropped the ball in a pool,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the giraffe went to get the ball.,the giraffe went to get the ball,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the giraffe got the ball.,the giraffe got the ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the elephant was happy.,the elephant was happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the giraffe and the elephant want/ed to go swim/ing.,the giraffe and the elephant wanted to go swimming,0 0 0 0 0 4 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the elephant point/ed over there.,the elephant pointed over there,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,she ran.,she ran,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,she fell and hurt her knee.,she fell and hurt her knee,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the lifeguard came run/ing.,the lifeguard came running,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,he put a bandaid on the (s) scar.,he put a bandaid on the scar,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,he put her down on a bench.,he put her down on a bench,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,he said you should not have been run/ing.,he said you should not have been running,0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the giraffe met the elephant.,the giraffe met the elephant,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,he was play/ing with an airplane.,he was playing with an airplane,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the elephant snatch/ed the airplane.,the elephant snatched the airplane,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,she threw it.,she threw it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,and it land/ed in the pool.,and it landed in the pool,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the giraffe got very mad.,the giraffe got very mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the lifeguard came.,the lifeguard came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the elephant told him what happen/ed.,the elephant told him what happened,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,he could not reach.,he could not reach,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,he shrug/ed his shoulder/s.,he shrugged his shoulders,0 4 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,(then another l) then a woman came by and (got a) has a net.,then a woman came by and has a net,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,she grab/ed : the airplane with (a) the net.,she grabbed the airplane with the net,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,she gave it back to the giraffe.,she gave it back to the giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the giraffe was happy.,the giraffe was happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,a bunny met the dog and want/ed to play in the sandbox.,a bunny met the dog and wanted to play in the sandbox,0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,they start/ed build/ing a sandcastle together.,they started building a sandcastle together,0 4 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the bunny pour/ed sand on : the sandcastle : which broke the sandcastle.,the bunny poured sand on the sandcastle which broke the sandcastle,0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,(the pup) the dog was very sad.,the dog was very sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,and the rabbit felt bad too.,and the rabbit felt bad too,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the rabbit and the dog met each other again.,the rabbit and the dog met each other again,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,they start/ed to have a picnic.,they started to have a picnic,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,that rabbit ate too much.,that rabbit ate too much,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,then the rabbit got sick.,then the rabbit got sick,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the dog went to : (the um) a doctor nearby.,the dog went to a doctor nearby,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,he pull/ed the doctor to the rabbit.,he pulled the doctor to the rabbit,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the doctor help/ed the rabbit.,the doctor helped the rabbit,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,she took the rabbit back home.,she took the rabbit back home,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,and the rabbit felt a lot better.,and the rabbit felt a lot better,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the rabbit met the dog again.,the rabbit met the dog again,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the dog was pull/ing a wagon with a balloon attach/ed to it.,the dog was pulling a wagon with a balloon attached to it,0 0 0 6 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the rabbit untie/ed the balloon.,the rabbit untied the balloon,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the balloon float/ed away.,the balloon floated away,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the dog got very angry.,the dog got very angry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,(they saw a man) the rabbit saw a man sell/ing balloon/s.,the rabbit saw a man selling balloons,0 0 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,he ask|ask[EW:asked] if he could have one of the balloon/s.,he ask if he could have one of the balloons,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the man said no they cost five cent/s.,the man said no they cost five cents,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,and the rabbit did not have any money.,and the rabbit did not have any money,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,(he went up) (and they both were) the rabbit was very sad.,the rabbit was very sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,he went up to : the doctor.,he went up to the doctor,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,he asked if he could have (um se) five cent/s.,he asked if he could have five cents,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,she gave him five cent/s.,she gave him five cents,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,and they got (the) some balloon/s.,and they got some balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,there was this elephant bounce/ing a balloon.,there was this elephant bouncing a balloon,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,and then : there was a giraffe (com) come/ing by.,and then there was a giraffe coming by,0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,and then : (he wan) he want/ed to see (the) (the) the rubber ball for a minute.,and then he wanted to see the rubber ball for a minute,0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,: and then : it fell (into the water) (into this) (into) into a pool.,and then it fell into a pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,: and the giraffe was swim/ing for it.,and the giraffe was swimming for it,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,and then : he got it.,and then he got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,: and (then her) : (the) the elephant said thank you.,and the elephant said thank you,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,and her[EW:she] got back : the ball.,and her got back the ball,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(um) there was a giraffe and a[EW:an] elephant : want/ing to run.,there was a giraffe and a elephant wanting to run,0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(and then : he) and then they were start/ing to run.,and then they were starting to run,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,and then they what?,and then they what,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,and then they start/ed to run [+_bch].,and then they started to run,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(and then) : and they runned|run[EW:ran] [-:].,and they runned,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,: (and) and then (th) : the elephant that want/ed to go : for the run (got a b) he got a booboo [~_laughs].,and then the elephant that wanted to go for the run he got a booboo,0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(an) and then : there was a guy : what came at it [EU].,and then there was a guy what came at it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(and then) and she was cry/ing.,and she was crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,and the guy was put/ing on the bandage.,and the guy was putting on the bandage,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,: and then : they put on the bandage.,and then they put on the bandage,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,: (and) and then : they got in trouble (because it) because there was a sign that said do not run.,and then they got in trouble because there was a sign that said do not run,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(th) there was this giraffe that had a[EW:an] airplane.,there was this giraffe that had a airplane,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(and) and there was a[EW:an] elephant that want/ed it.,and there was a elephant that wanted it,0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,and he was (sort of : and) pretend/ing he was throw[EW:throwing] it in the sky.,and he was pretending he was throw it in the sky,0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(and then) and then the elephant took it.,and then the elephant took it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,: (and then) and then it fell into the water.,and then it fell into the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,: (and then) : and then the giraffe got mad at the elephant.,and then the giraffe got mad at the elephant,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(and then) (and then) : and the elephant (got) : (try/ed) try/ed to : get it.,and the elephant tried to get it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(an) : (and he was) : and then the (elephant : yuar) yardgirl elephant told the boy elephant (tha) that it went into the water.,and then the yardgirl elephant told the boy elephant that it went into the water,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,and he was try/ing to get it.,and he was trying to get it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,: (and then the eleph) and (then gira) (the gir) the giraffe was cry/ing[-:].,and the giraffe was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,and then : a lady come/3s along.,and then a lady comes along,0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(and try/ed to ge) she was try/ing to get it.,she was trying to get it,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,: and her[EW:she] got it.,and her got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,and (gave it to) and : (her) her[EW:she] gave it to : the giraffe again.,and and her gave it to the giraffe again,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(and then) and then he hug/ed the airplane.,and then he hugged the airplane,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,once upon a time there was this dog make/ing a castle.,once upon a time there was this dog making a castle,0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,: and the dog was hold/ing it still[!].,and the dog was holding it still,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,: (and) and the bunny pour/ed some sand on it.,and the bunny poured some sand on it,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,: and then (it) it wreck/ed (his) his castle.,and then it wrecked his castle,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,and then : (he wa) he was cry/ing.,and then he was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,there was this bunny go/ing for a picnic.,there was this bunny going for a picnic,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,and (there was : a) there was a doggy that said hi to him.,and there was a doggy that said hi to him,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,and (he want/ed to go for a pic) he want/ed (to) : to go with him.,and he wanted to go with him,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(and then the) (and then got to his) and he[?] had a picnic.,and he had a picnic,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(and then) : and then (th) the bunny ate all the food : (and) and kind of got dizzy or something.,and then the bunny ate all the food and kind of got dizzy or something,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,: and then (there was this guy come/ing along) there was a doctor come/ing along.,and then there was a doctor coming along,0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(and the) (and) and the doggy was pull/ing him.,and the doggy was pulling him,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,: (and then) (and he gots :) : and he got to the bunny.,and he got to the bunny,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(and) : and (he) he got (him better) that bunny better.,and he got that bunny better,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(um) there was this dog pull/ing : a wagon with a balloon on it.,there was this dog pulling a wagon with a balloon on it,0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(and the bunny) and there was a bunny come/ing along.,and there was a bunny coming along,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,and (he wan) he want/ed to have the balloon.,and he wanted to have the balloon,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,and then (he was) (he) he (untie/ed it) was untie/ing it.,and then he was untying it,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,and then it went away.,and then it went away,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(and) and the dog got mad at the bunny.,and the dog got mad at the bunny,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,and then they went back to the balloon stand : (where) where the balloon was taken from.,and then they went back to the balloon stand where the balloon was taken from,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(and) (and the bunny) : (and the bun) and then the bunny said (I want) I want a balloon.,and then the bunny said I want a balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,and : then he (pul) pull/ed down and said five cent/s or something.,and then he pulled down and said five cents or something,0 0 0 4 0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(and then) (and then) : (and) and then the bunny did not have five cent/s.,and then the bunny did not have five cents,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(and then the) and then the doctor come/3s along.,and then the doctor comes along,0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(and) (and) (and) and the bunny said : I want one of those balloon/s [~_laughing].,and the bunny said I want one of those balloons,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,the bunny said what?,the bunny said what,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,I want one of those balloon/s [+_bch].,I want one of those balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(and) and then the doctor paid for the balloon/s.,and then the doctor paid for the balloons,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,and then (they got the) (they got one of the balloon) he got two balloon/s both of them.,and then he got two balloons both of them,0 0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,(one day) : [~_I_do_n(o)t_know_if_that_(i)s_a_coach_or_what] : one day : two friend/s met each other at the pool.,one day two friends met each other at the pool,0 0 0 1 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and then a ball went in the pool[-:].,and then a ball went in the pool,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,(and they) and then they look/ed surprise/ed after it fell in.,and then they looked surprised after it fell in,0 0 0 4 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,so one of them jump/ed in and went to : catch the ball.,so one of them jumped in and went to catch the ball,0 0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and one of them were[EW:was] cry/ing.,and one of them were crying,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,(and then the) and then the person that swam in : got the ball.,and then the person that swam in got the ball,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,(and sh) and then when : she got it back the girl : (she) she was really happy.,and then when she got it back the girl she was really happy,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,so (then) : then the boy climb/ed out of the pool : and start/ed smile/ing too.,so then the boy climbed out of the pool and started smiling too,0 0 0 0 4 0 0 0 0 0 4 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,one day : some people were look/ing at the pool.,one day some people were looking at the pool,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and they want/ed to jump (in um) in the pool on the : springboard.,and they wanted to jump in the pool on the springboard,0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,so the girl ran over to it.,so the girl ran over to it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and the boy was run/ing after her.,and the boy was running after her,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,but then she fell and hurt her knee and start/ed cry/ing.,but then she fell and hurt her knee and started crying,0 0 0 0 0 0 0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and : the lifeguard heard : her cry/ing.,and the lifeguard heard her crying,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,(so she) : so the lifeguard (came and) : came look/ing at it : and : put a bandaid on it.,so the lifeguard came looking at it and put a bandaid on it,0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and (then put her) and : then they put her on the bench.,and and then they put her on the bench,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and then the lifeguard : point/ed at the no run/ing sign.,and then the lifeguard pointed at the no running sign,0 0 0 0 4 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and she look/ed embarrasse/ed.,and she looked embarrasseed,0 0 4 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,one day : the friend/s met each other.,one day the friends met each other,0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,(and : the) and (the friend) : the giraffe said : I got an airplane.,and the giraffe said I got an airplane,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,do you want to fly it with me ?,do you want to fly it with me,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and the girl said yes.,and the girl said yes,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,(and then she) and then she start/ed look/ing at it when the boy flied|fly[EW:flew] it.,and then she started looking at it when the boy flied it,0 0 0 4 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and then the girl (lo) : took it away from him.,and then the girl took it away from him,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and : the boy start/ed get/ing freak/ed.,and the boy started getting freaked,0 0 0 4 6 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and then the girl drop/ed it in the pool[-:].,and then the girl dropped it in the pool,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and the boy look/ed a little sad.,and the boy looked a little sad,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and then the boy start/ed get/ing mad at the girl.,and then the boy started getting mad at the girl,0 0 0 0 4 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and the girl was : start/ing to get a little sad.,and the girl was starting to get a little sad,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,so the lifeguard came[-:] and : look/ed at : it.,so the lifeguard came and looked at it,0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and : both of them were : a little bit cry/ing.,and both of them were a little bit crying,0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and then (the gir) the elephant told (the other elephant) the life (gald) guard : that (the) (the) she was fly/ing the airplane.,and then the elephant told the life guard that she was flying the airplane,0 0 0 0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and the airplane flew in the : pool[-:].,and the airplane flew in the pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,so the lifeguard (tri) try/ed to catch it.,so the lifeguard tried to catch it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and he did.,and he did,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,but then (he) it went a little farther : after he touch/ed it.,but then it went a little farther after he touched it,0 0 0 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and then : another person came : and had a net to catch it.,and then another person came and had a net to catch it,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,so the other : person that came [~_yawns] put the net in and caught it : and then gave it back to the person that it belong/ed[!] to.,so the other person that came put the net in and caught it and then gave it back to the person that it belonged to,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,so then : he was really happy.,so then he was really happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and the girl was too.,and the girl was too,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,one day two friend/s : the : dog and the rabbit met each other at the park.,one day two friends the dog and the rabbit met each other at the park,0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,(and they) and the dog ask/ed (the) : the rabbit do you want to [~_wanna] make a : [~_I_do_n(o)t_know_what_they_(a)re_gonna] sandcastle with me?,and the dog asked the rabbit do you want to make a sandcastle with me,0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,so they made a sandcastle : with a bucket (and the) and[-:] : a spoon.,so they made a sandcastle with a bucket and a spoon,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and the (dog wa) dog was pat/ing it down.,and the dog was patting it down,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and then the rabbit put sand all over it.,and then the rabbit put sand all over it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and the rabbit broke it when she did that.,and the rabbit broke it when she did that,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and then the : dog start/ed cry/ing.,and then the dog started crying,0 0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and the : bunny look/ed embarrasse/ed.,and the bunny looked embarrasseed,0 0 0 4 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,one[-:] day[-:] the dog and the rabbit met each other.,one day the dog and the rabbit met each other,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and they were both go/ing on a picnic.,and they were both going on a picnic,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,so they had their picnic together.,so they had their picnic together,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and the dog did not have that much.,and the dog did not have that much,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,but the rabbit did.,but the rabbit did,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,the rabbit got too full.,the rabbit got too full,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,the dog did not.,the dog did not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,the rabbit had cake and all that.,the rabbit had cake and all that,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and then he start/ed get/ing a stomachache.,and then he started getting a stomachache,0 0 0 4 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,(the rabbit) and the dog was still sit/ing there eat/ing his sandwich and : drink/ing his drink.,and the dog was still sitting there eating his sandwich and drinking his drink,0 0 0 0 0 6 0 6 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and then[-:] the dog (ra) saw a doctor and ran to the doctor and told : him that (the[-:]) the rabbit was feel/ing sick.,and then the dog saw a doctor and ran to the doctor and told him that the rabbit was feeling sick,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and the doctor was a rabbit : too.,and the doctor was a rabbit too,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,so the dog start/ed pull/ing the rabbit over to her.,so the dog started pulling the rabbit over to her,0 0 0 4 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and the : rabbit check/ed the rabbit.,and the rabbit checked the rabbit,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and : it did not look like[~!_yawning] (he) she was feel/ing very well.,and it did not look like she was feeling very well,0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,so : the doctor took (the) the rabbit : to home or the doctor place.,so the doctor took the rabbit to home or the doctor place,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,one day (the) a rabbit and a dog : met each other.,one day a rabbit and a dog met each other,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and the : dog had a balloon on his wagon.,and the dog had a balloon on his wagon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and[-:] the rabbit ask/ed what is that?,and the rabbit asked what is that,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and then the dog told : him it is a balloon.,and then the dog told him it is a balloon,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and then the rabbit want/ed to untie it to put it on him.,and then the rabbit wanted to untie it to put it on him,0 0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,the dog was get/ing freak/ed.,the dog was getting freaked,0 0 0 6 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and then it went up.,and then it went up,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and they both start/ed try/ing to get it.,and they both started trying to get it,0 0 0 4 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and then the dog got really[!] really mad.,and then the dog got really really mad,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and the rabbit was still look/ing at it [~_yawns].,and the rabbit was still looking at it,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,but there was other balloon/s because the guy was hold/ing them.,but there was other balloons because the guy was holding them,0 0 0 0 1 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and the dog was still back : there mad at the rabbit.,and the dog was still back there mad at the rabbit,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,but the rabbit was look/ing at the balloon/s.,but the rabbit was looking at the balloons,0 0 0 0 6 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,so the rabbit went over there and ask/ed if they could have (a) two balloon/s.,so the rabbit went over there and asked if they could have two balloons,0 0 0 0 0 0 0 4 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and then : (he) he said you can not have one unless you pay me : ten cent/s because you are get/ing two balloon/s.,and then he said you can not have one unless you pay me ten cents because you are getting two balloons,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,so (th) they both felt sad because they (weren) could not get one.,so they both felt sad because they could not get one,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and the person was really (hapn) happy that was (get/ing) give/ing the balloon/s away.,and the person was really happy that was giving the balloons away,0 0 0 0 0 0 0 0 6 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and then the doctor[!] was there.,and then the doctor was there,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and the rabbit start/ed run/ing to the doctor.,and the rabbit started running to the doctor,0 0 0 4 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and the rabbit ask/ed the doctor can you buy us a : balloon[~!__yawning]?,and the rabbit asked the doctor can you buy us a balloon,0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and the doctor said okay.,and the doctor said okay,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and then they were both really really really happy.,and then they were both really really really happy,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and they like/ed their balloon/s so much.,and they liked their balloons so much,0 0 4 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and the doctor was really happy.,and the doctor was really happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,he is play/ing ball with her.,he is playing ball with her,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,the ball fall/3s down[-:].,the ball falls down,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,he is go/ing to jump in.,he is going to jump in,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,(he) he jump/ed in.,he jumped in,0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,and he got the ball.,and he got the ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,he gave the ball to her : the elephant.,he gave the ball to her the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,then the elephant : was in love with him.,then the elephant was in love with him,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,they are go/ing to the diving board.,they are going to the diving board,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,she want/3s to run to the diving board?,she wants to run to the diving board,0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,she trip/3s : and fell[-:] [EU].,she trips and fell,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,and she got hurt.,and she got hurt,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,and she got a bruise[-:].,and she got a bruise,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,and the lifeguard gave her a bandage.,and the lifeguard gave her a bandage,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,and she sat down.,and she sat down,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,and the lifeguard was mad.,and the lifeguard was mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,[~_(o)kay] he is go/ing to play with his airplane with her.,he is going to play with his airplane with her,0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,he is play/ing with it.,he is playing with it,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,she take/3s it.,she takes it,0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,and she play/3s with it.,and she plays with it,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,then she : throwed|throw[EW:threw] it.,then she throwed it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,and it fell in the water.,and it fell in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,then he got mad.,then he got mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,then the lifeguard came.,then the lifeguard came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,then she told him : the matter [EU].,then she told him the matter,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,and he try/ed to reach it.,and he tried to reach it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,but he could not.,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,and there was no way how[-:] : to [EU].,and there was no way how to,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,but she[-:] got the : stick that : bring/3s thing/s out.,but she got the stick that brings things out,0 0 0 0 0 0 3 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,and she brought it out.,and she brought it out,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,she brought it out.,she brought it out,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,and he want|want[EW:wants] [-:] to play with it again.,and he want to play with it again,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,and he play/ed with it.,and he played with it,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,the rabbit and the dog want to make a sandcastle.,the rabbit and the dog want to make a sandcastle,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,and he start/ed shovel/ing.,and he started shoveling,0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,and he start/ed build/ing.,and he started building,0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,and he dump/ed [EU].,and he dumped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,and it mess/ed up.,and it messed up,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,then he try/ed to rebuild it.,then he tried to rebuild it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,but : (i) he could not.,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,they were go/ing to have a picnic.,they were going to have a picnic,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,and the : rabbit brought lot/s of stuff instead of the dog [EU].,and the rabbit brought lots of stuff instead of the dog,0 0 0 0 1 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,but then he got a stomachache.,but then he got a stomachache,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,then : he got dizzy.,then he got dizzy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,(then he call) then he brought the nurse to[-:] help him.,then he brought the nurse to help him,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,then the nurse was go/ing to help him.,then the nurse was going to help him,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,then she help/ed him.,then she helped him,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,then he walk/ed with him back.,then he walked with him back,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,he was go/ing to have a balloon sale.,he was going to have a balloon sale,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,and the dog want/ed one.,and the dog wanted one,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,and the rabbit took it off.,and the rabbit took it off,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,but then he try/ed to reach it the dog [EU].,but then he tried to reach it the dog,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,then he got mad[-:].,then he got mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,then he was go/ing to get a balloon [-].,then he was going to get a balloon,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,then he want/ed the twenty five cent one [EU]?,then he wanted the twenty five cent one,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,(um) but he could not get it.,but he could not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,then he ran : off[-:].,then he ran off,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,(then he was go/ing to get another) then he was go/ing get the nurse.,then he was going get the nurse,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,then he told[-:] her.,then he told her,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,then he gave her it.,then he gave her it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,then they got balloon/s.,then they got balloons,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,I see an elephant : stand/ing by a giraffe bounce/ing a ball : by a swimming pool.,I see an elephant standing by a giraffe bouncing a ball by a swimming pool,0 0 0 0 6 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then[-:] the ball (go) fall/3s into the water.,then the ball falls into the water,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then the giraffe hop/3s in and try/3s to swim for it.,then the giraffe hops in and tries to swim for it,0 0 0 3 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then the giraffe give/3s the elephant the ball.,then the giraffe gives the elephant the ball,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then : the : giraffe get/3s out.,then the giraffe gets out,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and the elephant is happy.,and the elephant is happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,(They are) the giraffe and elephant is[EW:are] stand/ing by the pool.,the giraffe and elephant is standing by the pool,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and : there is a no run/ing sign.,and there is a no running sign,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then : the : elephant : start/3s : to run : and (sh) (g) go/3s faster and[-:] start/3s to slip.,then the elephant starts to run and goes faster and starts to slip,0 0 0 3 0 0 0 3 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,(then she) then the elephant fall/3s.,then the elephant falls,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and she hurt her : knee.,and she hurt her knee,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and then : the giraffe come/3s run/ing.,and then the giraffe comes running,0 0 0 0 3 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then : the lifeguard come/3s.,then the lifeguard comes,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and the (gi) : giraffe and elephant are sit/ing down.,and the giraffe and elephant are sitting down,0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,the lifeguard put/3s a bandage : on : the elephant/z knee.,the lifeguard puts a bandage on the elephant's knee,0 0 3 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then the lifeguard : pull/3s her up to a bench so she can rest.,then the lifeguard pulls her up to a bench so she can rest,0 0 0 3 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then the lifeguard point/3s to the no run/ing sign.,then the lifeguard points to the no running sign,0 0 0 3 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and the elephant : look/3s kind of embarrasse/ed.,and the elephant looks kind of embarrasseed,0 0 0 3 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,The elephant is stand/ing by the pool with : her friend the giraffe.,The elephant is standing by the pool with her friend the giraffe,0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and he is hold/ing a[-:] toy airplane.,and he is holding a toy airplane,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then the giraffe start/3s move/ing the airplane : around.,then the giraffe starts moving the airplane around,0 0 0 3 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and the elephant look/3s surprise/ed.,and the elephant looks surprised,0 0 0 3 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then the elephant grab/3s the[-:] airplane out of : the[-:] giraffe/z hand/s.,then the elephant grabs the airplane out of the giraffe's hands,0 0 0 3 0 0 0 0 0 2 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then she drop/3s it in the water.,then she drops it in the water,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and[-:] the giraffe look/3s kind of : upset : and surprise/ed.,and the giraffe looks kind of upset and surprised,0 0 0 3 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then it start/3s to sink.,then it starts to sink,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and the giraffe look/3s really upset.,and the giraffe looks really upset,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and : the[-:] elephant would kind of be like : (um) embarrasse/ed and :[-:] kind of[-:] mad at herself.,and the elephant would kind of be like embarrasseed and kind of mad at herself,0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then the lifeguard come/3s.,then the lifeguard comes,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and he see/3s[-:] the airplane sink/ing.,and he sees the airplane sinking,0 0 3 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then : the : elephant start/3s talk/ing : to the lifeguard.,then the elephant starts talking to the lifeguard,0 0 0 3 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,the lifeguard try/3s to reach it.,the lifeguard tries to reach it,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,but he can not.,but he can not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,so[-:] : then : the giraffe start/3s cry/ing because : it was : a toy of his.,so then the giraffe starts crying because it was a toy of his,0 0 0 0 3 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and : he really like/ed it.,and he really liked it,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then : another elephant come/3s by with (a) : a net : that has a long pole attach/ed to it.,then another elephant comes by with a net that has a long pole attached to it,0 0 0 3 0 0 0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then she (s) : try/3s to scoop the airplane up in it.,then she tries to scoop the airplane up in it,0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,she get/3s the airplane out of the water.,she gets the airplane out of the water,0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and : the giraffe look/3s very happy.,and the giraffe looks very happy,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,now he is hold/ing his airplane.,now he is holding his airplane,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and[-:] he : look/3s very happy.,and he looks very happy,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,there is a : dog sit/ing in a sandbox that is build[EW:building] a : sandcastle.,there is a dog sitting in a sandbox that is build a sandcastle,0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and then a rabbit come/3s.,and then a rabbit comes,0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then the rabbit start/3s build/ing : his own sandcastle : as the dog work/3s on her/z.,then the rabbit starts building his own sandcastle as the dog works on her's,0 0 0 3 6 0 0 0 0 0 0 3 0 2 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then the rabbit take/3s a bucket of sand and pour/3s it over : the dog/z castle.,then the rabbit takes a bucket of sand and pours it over the dog's castle,0 0 0 3 0 0 0 0 0 3 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,now the castle is ruin/ed.,now the castle is ruined,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and they both look upset.,and they both look upset,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,the dog is cry/ing because : it is ruin/ed.,the dog is crying because it is ruined,0 0 0 6 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and : the rabbit look/3s : like she[-:] : did not mean to do it on purpose.,and the rabbit looks like she did not mean to do it on purpose,0 0 0 3 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,but : she is kind of embarrasse/ed and sad.,but she is kind of embarrasseed and sad,0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,there is[-:] a rabbit and a dog : look/ing for a picnic site.,there is a rabbit and a dog looking for a picnic site,0 0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and they have picnic basket/s in their hand.,and they have picnic baskets in their hand,0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then they : sit down.,then they sit down,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and the rabbit is eat/ing all this stuff and has all this stuff.,and the rabbit is eating all this stuff and has all this stuff,0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and the dog just got out a sandwich.,and the dog just got out a sandwich,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,now the rabbit is finish/ed eat/ing and look/3s very stuff/ed.,now the rabbit is finished eating and looks very stuffed,0 0 0 0 4 6 0 3 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and the dog just start/3s eat/ing.,and the dog just starts eating,0 0 0 0 3 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,the rabbit is not feel/ing too well now : and : do/3s not look too good.,the rabbit is not feeling too well now and does not look too good,0 0 0 0 6 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then[-:] a nurse come/3s along.,then a nurse comes along,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and the dog : tell/3s her that : his friend need/3s help.,and the dog tells her that his friend needs help,0 0 0 3 0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and : then she start/3s pull/ing the nurse over to their picnic basket lunch place.,and then she starts pulling the nurse over to their picnic basket lunch place,0 0 0 3 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then the nurse start/3s : take/ing his temperature as he lie/3s down.,then the nurse starts taking his temperature as he lies down,0 0 0 3 6 0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,now the rabbit is better.,now the rabbit is better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and : they are go/ing back home.,and they are going back home,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,there is[-:] a : dog pull/ing a : wagon : with a balloon tie/ed onto it.,there is a dog pulling a wagon with a balloon tied onto it,0 0 0 0 6 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and : a rabbit is come/ing.,and a rabbit is coming,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,he look/3s at the balloon.,he looks at the balloon,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,: and : the : dog look/3s curious.,and the dog looks curious,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then the : rabbit start/3s untie/ing the balloon from the wagon.,then the rabbit starts untying the balloon from the wagon,0 0 0 3 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then the balloon float/3s away as they try to reach it.,then the balloon floats away as they try to reach it,0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,now the : dog is very mad at the rabbit.,now the dog is very mad at the rabbit,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,(then the ss) then the rabbit see/3s : a : man sell/ing more balloon/s.,then the rabbit sees a man selling more balloons,0 0 0 3 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then : the : rabbit : want/3s to buy one from him.,then the rabbit wants to buy one from him,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and then he see/3s that they are five cent/s.,and then he sees that they are five cents,0 0 0 3 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and : the rabbit do/3s not have any money.,and the rabbit does not have any money,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,so : they can not buy any balloon/s.,so they can not buy any balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and : (the) they both look sad.,and they both look sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then the rabbit : go/3s to see the nurse.,then the rabbit goes to see the nurse,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and the dog stand/3s by the man sell/ing balloon/s.,and the dog stands by the man selling balloons,0 0 0 3 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,: the rabbit point/3s to the man sell/ing balloon/s and : tell/3s the nurse : that they do not have any money and they can not buy one.,the rabbit points to the man selling balloons and tells the nurse that they do not have any money and they can not buy one,0 0 3 0 0 0 6 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and then the nurse pay/3s : for : the balloon/s.,and then the nurse pays for the balloons,0 0 0 0 3 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and : she bought one for both of them.,and she bought one for both of them,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,now they both have their own balloon/s.,now they both have their own balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and they are happy.,and they are happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,I do not know [+_bch]!,I do not know,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,I do not know that one [+_bch].,I do not know that one,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,What happen/3s in this story ?,What happens in this story,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,I do not know [+_bch].,I do not know,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,I do not know [+_bch].,I do not know,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,"I guess there is no story in this book at all then, eh.",I guess there is no story in this book at all then eh,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,Empty page/s?,Empty pages,0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,I do not know this [~_pages_are_being_turned] [+_bch].,I do not know this,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,I guess that the end of that one.,I guess that the end of that one,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,He is : go/ing to the diving board.,He is going to the diving board,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,and (they star) she is walk/ing.,and she is walking,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,(and she sl) (sh) (its) and it is slippery!,and it is slippery,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,and she fell and hurt her knee.,and she fell and hurt her knee,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,(and he xxxx) (and : she) it was a bandaid/s [EU].,it was a bandaids,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,(sh) (the) (there is a bandaid) and there is : a (ta) bandaid on her foot.,and there is a bandaid on her foot,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,and (she is) she is sit/ing on the bench.,and she is sitting on the bench,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,(he) he gots[EW:has] a[EW:an] airplane.,he gots a airplane,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,and he is go/ing to[:_gonna] throw it at the water.,and he is going to throw it at the water,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,(and he) (and he is) and (he is) she is[!] go/ing to[:__gonna] throw.,and she is going to throw,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,and it is at the water!,and it is at the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,and it is wet !,and it is wet,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,and he[!] was : in it.,and he was in it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,and his airplane : was : not.,and his airplane was not,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,it was snow/ing!,it was snowing,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,(and) and his boat was in the water.,and his boat was in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,and he can not reach[!] it.,and he can not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,and how they reach : with the net [EU].,and how they reach with the net,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,the net will help.,the net will help,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,(he gots) (he gots his airplane) (and he) and he gots|got[EW:got] his airplane back.,and he gots his airplane back,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,One time (wh) when they : >,One time when they,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,I can not see the picture/s : one day [+..].,I can not see the pictures one day,0 0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,do not know [~_!] [+_bch].,do not know,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,okay let us try the next page.,okay let us try the next page,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,: What happen/3s in the story?,What happens in the story,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,I do not know[!] [+_bch].,I do not know,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,: do you want me to turn the page again?,do you want me to turn the page again,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,yeah [+_bch].,yeah,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,: I do not know [+_bch].,I do not know,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,: I do not [+_bch].,I do not,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,Look at the picture/s and tell me what you think is happen/ing in the story.,Look at the pictures and tell me what you think is happening in the story,0 0 0 1 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,sit/ing there in[?] to the castle [EU].,sitting there in to the castle,6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,it come|come[EW:came] down.,it come down,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,he is fix/ing the castle.,he is fixing the castle,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,and then : no picture/s [+_bch].,and then no pictures,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,"[~_child_not_responsive,_continually_repeated_I_don't_know,_the_examiner_is_on_the_second_page_at_this_point].",, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,"it is your story, you get to decide what is in there.",it is your story you get to decide what is in there,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,They are eat/ing.,They are eating,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,The other one has a tummyache.,The other one has a tummyache,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,he got sick[?] (sh).,he got sick,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,he got tire/ed and sick.,he got tired and sick,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,I do not know.,I do not know,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,I do not know[!] [+_bch].,I do not know,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,I do not know [+_bch].,I do not know,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,I do not know [+_bch].,I do not know,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,I do not know [+_bch].,I do not know,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,what happen/3s in the story?,what happens in the story,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,I do not know [+_bch].,I do not know,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,(he is pulli) (he is pu) she is pull/ing the wagon.,she is pulling the wagon,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,there is a balloon on the wagon.,there is a balloon on the wagon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,and it is tie/ed up.,and it is tied up,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,and that balloon got up to the sky.,and that balloon got up to the sky,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,he is look/ing up to the sky.,he is looking up to the sky,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,and there is[EW:are] more[!] balloon/s.,and there is more balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,and there is a balloon/s[EW:balloon].,and there is a balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,but there ibe[EW:are] two.,but there ibe two,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,and he just : pocket/s [EU].,and he just pockets,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,and went : that number five [~_!] [EU].,and went that number five,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,the balloon/s that blow it up to the sky [EU].,the balloons that blow it up to the sky,0 1 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,(and the) (and the) he xx work/ed with that.,he wrought with that,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,(ah : uh).,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,anything on this page?,anything on this page,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,(ah uh) I do not know [+_bch].,I do not know,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,there was[EW:were] two balloon/s left [~_!].,there was two balloons left,0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,(there is a) they got a balloon.,they got a balloon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,There was a giraffe and an elephant play/ing.,There was a giraffe and an elephant playing,0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,(and the) and the elephant : was bounce/ing a ball.,and the elephant was bouncing a ball,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and the ball fell in the pool.,and the ball fell in the pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and the zebra try/ed to catch the ball.,and the zebra tried to catch the ball,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,so zebra gave it to the elephant.,so zebra gave it to the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and the elephant was happy at the zebra.,and the elephant was happy at the zebra,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,The giraffe and elephant left was seen the pool [EU].,The giraffe and elephant left was seen the pool,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and (he is) elephant was sad.,and elephant was sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and he want/3s to go on the jump thing.,and he wants to go on the jump thing,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and he like ran.,and he like ran,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and he hurt hisself[EW:himself].,and he hurt hisself,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,but the sign say/3s no run/ing.,but the sign says no running,0 0 0 3 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,so (he) (the) the lifeguard came.,so the lifeguard came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and then the zebra fell in the xx.,and then the zebra fell in the,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and the elephant was start/ing to cry.,and the elephant was starting to cry,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,then he said youch.,then he said youch,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,"then he put *on a bandaid, the lifeguard [EU].",then he put a bandaid the lifeguard,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and he felt much better.,and he felt much better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,(and he) and he look/ed at the sign no run/ing.,and he looked at the sign no running,0 0 4 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,The zebra and elephant (were have/ing) were start/ing to have fun.,The zebra and elephant were starting to have fun,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,then (they use/ed) [~_I_mean] (giraffe) : (they use/ed) he found a[EW:an] airplane.,then he found a airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,so he play/ed with it.,so he played with it,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and then elephant took it (from el um) from zebra.,and then elephant took it from zebra,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and it fell in the water and start/ed to sink.,and it fell in the water and started to sink,0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and it sinked|sink[EW:sunk] more.,and it sinked more,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and zebra was get/ing mad.,and zebra was getting mad,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and the lifeguard came and said (theys no) there is[EW:are] no toy/s in this pool allow/ed.,and the lifeguard came and said there is no toys in this pool allowed,0 0 0 0 0 0 0 0 0 1 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and then they said (uh) : it is not as if we did it by accident.,and then they said it is not as if we did it by accident,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,so the lifeguard start/ed to get it.,so the lifeguard started to get it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,he still did not get it.,he still did not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,then they[?] used a net : [~_no] the elephant.,then they used a net the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and (it) (it) it almost got it.,and it almost got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and it did got[EW:get] it.,and it did got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,so (he) (he gave it) he gave it to the giraffe.,so he gave it to the giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,then he start/ed to play with it again.,then he started to play with it again,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,Bunny and : giraffe were build/ing a sandcastle.,Bunny and giraffe were building a sandcastle,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,(bunny and) (and his) and bunny and rabbit were build/ing it more.,and bunny and rabbit were building it more,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and rabbit put more about the whole sand on it.,and rabbit put more about the whole sand on it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,then it brokes|broke[EW:broke].,then it brokes,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,the bunny made a mistake.,the bunny made a mistake,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,he said oops.,he said oops,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and then bunny said I am sorry.,and then bunny said I am sorry,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,there was,there was,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,they are look/ing for berry/s.,they are looking for berries,0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,(and) but they did not look for berry/s.,but they did not look for berries,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,they look/ed for food.,they looked for food,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,then they got full.,then they got full,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,then rabbit ate more.,then rabbit ate more,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,so he got dizzy.,so he got dizzy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and then there was a other rabbit.,and then there was a other rabbit,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,(he said) he said (uh) can you help my other rabbit?,he said can you help my other rabbit,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and she pull/ed him.,and she pulled him,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and : she said that he ate too much.,and she said that he ate too much,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,rabbit and bunny live/ed together.,rabbit and bunny lived together,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,but the other rabbit did not.,but the other rabbit did not,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,there is,there is,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,they are (pu) put/ing a balloon on their wagon.,they are putting a balloon on their wagon,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,(the) the (bunny) bunny love/ed the balloon.,the bunny loved the balloon,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,then he start/ed to took|take[EW:take] it off.,then he started to took it off,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,then it flew up in the sky.,then it flew up in the sky,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,then (bunny) (rabbit got) rabbit got mad.,then rabbit got mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,then a balloon man came.,then a balloon man came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and he said (do you) (can I) do you want some?,and he said do you want some,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,then (bunny) rabbit said yes.,then rabbit said yes,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,it is five dollar/s.,it is five dollars,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,so he : did not have money.,so he did not have money,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,but he only had (um) only five[!] cent/s.,but he only had only five cents,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and he did not get a balloon.,and he did not get a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and then he start/ed to ask the other : person (if he) if he has money.,and then he started to ask the other person if he has money,0 0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and he said : I want to [~_wanna] buy those balloon/s.,and he said I want to buy those balloons,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,then he gave them change.,then he gave them change,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,then he (st) (they) : rabbit and bunny start/ed to play with them.,then he rabbit and bunny started to play with them,0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,these[-:] two people : a giraffe and a[EW:an] elephant : were go/ing : into the swimming pool and play/ed ball [EU].,these two people a giraffe and a elephant were going into the swimming pool and played ball,0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,then[-:] they cry/ed : because the ball went : down in the river.,then they cried because the ball went down in the river,0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,then : the giraffe : went to swim and got[!] it [EU].,then the giraffe went to swim and got it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,then : they were : play/ing ball again.,then they were playing ball again,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and then they : were : happy as : a[EW:an] elephant can be.,and then they were happy as a elephant can be,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,(they[-:]) these people want to : go swim/ing : in the lake.,these people want to go swimming in the lake,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,then they found a : jump/ing board.,then they found a jumping board,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and they jump/ed in.,and they jumped in,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,then : the elephant went swim/ing.,then the elephant went swimming,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and then : (he) : he : run|run[EW:ran].,and then he run,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and then he fell down and made a scrape [EU].,and then he fell down and made a scrape,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,then : he : found a (lifedo) (life) lifeguard.,then he found a lifeguard,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and he put a bandaid/s on it [EU].,and he put a bandaids on it,0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and the elephant cry/ed.,and the elephant cried,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and : it was over.,and it was over,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,then : he : walk/ed[-:].,then he walked,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,then[-:] : he : said : to sit down.,then he said to sit down,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,that is it [+_bch].,that is it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,these[-:] people went : to swim with : a : toy.,these people went to swim with a toy,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,they were fly/ing it.,they were flying it,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and : they : flied|fly[EW:flew] it.,and they flied it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and then it fell in the lake.,and then it fell in the lake,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and (then it was ss) : then it was (swinking) sink/ing.,and then it was sinking,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and the lifeguard : was try/ing to get it.,and the lifeguard was trying to get it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,then : he : got it.,then he got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,then he try/ed[-:] to get it.,then he tried to get it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,then : the : giraffe was cry/ing.,then the giraffe was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,then : the : lifeguard : got a net and catched|catch[EW:cought] it.,then the lifeguard got a net and catched it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,then they were happy.,then they were happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,then they got it out.,then they got it out,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,then[-:] (they) (he) the giraffe was hug/ing it.,then the giraffe was hugging it,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,two little baby/s were : play/ing in the : sandbox.,two little babies were playing in the sandbox,0 0 1 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and : the other baby was make/ing (a : sun) a sandcastle.,and the other baby was making a sandcastle,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and the : other bunny : spill/ed : little bit : of : sand on the sandcastle.,and the other bunny spilled little bit of sand on the sandcastle,0 0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and it broke : in piece/s.,and it broke in pieces,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,then : the : little baby : was try/ing to fix it and see[?].,then the little baby was trying to fix it and see,0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,then it can not [EU].,then it can not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,two[-:] little : mans[EW:men] went walk/ing with : basket/s.,two little mans went walking with baskets,0 0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and : they (ea) ate : food : from the basket.,and they ate food from the basket,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,(then they were) : then they were full[-:].,then they were full,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and then they were dizzy.,and then they were dizzy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,they met : a : doctor.,they met a doctor,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and : the : man : was : pull/ing : on the doctor/z jacket.,and the man was pulling on the doctor's jacket,0 0 0 0 6 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and : the doctor said ah.,and the doctor said ah,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,(then[-:]) : then they went walk/ing : home.,then they went walking home,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,two[-:] little : people went : to the parade : and with a wagon.,two little people went to the parade and with a wagon,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,they[-:] : walk/ed and walk/ed : with the wagon.,they walked and walked with the wagon,0 4 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and they got tire/ed.,and they got tired,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,the other one stop/ed to tie a balloon onto the : wagon.,the other one stopped to tie a balloon onto the wagon,0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,but the balloon flew away.,but the balloon flew away,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and : then the string was only left : til[-:][?] : they found : another : balloon : and : ask/ed [~_pronounced_'axed'] the mans[EW:man] if (h) he can have another : balloon.,and then the string was only left til they found another balloon and asked the mans if he can have another balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,balloon[-:] : five cents[-:] [EU].,balloon five cents,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and : he did not have five cent/s.,and he did not have five cents,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and[-:] they were sad.,and they were sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and[-:] : they went home.,and they went home,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,then[-:] : they stop|stop[EW:stopped] at (another) : another : balloon person.,then they stop at another balloon person,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and they want/ed to buy a : balloon.,and they wanted to buy a balloon,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and then the doctor bought two balloon/s for five cent/s.,and then the doctor bought two balloons for five cents,0 0 0 0 0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and they had their own balloon.,and they had their own balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,once upon a time an elephant and his friend the giraffe were playing with : the elephant/z purple bouncy ball.,once upon a time an elephant and his friend the giraffe were playing with the elephant's purple bouncy ball,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,(she accidentally drop/ed) when she was bounce/ing the ball she drop/ed it into the swimming pool.,when she was bouncing the ball she dropped it into the swimming pool,0 0 0 6 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,the giraffe was a very good swimmer.,the giraffe was a very good swimmer,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,so he swam up : out and grab/ed the ball.,so he swam up out and grabbed the ball,0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,he swam over to the elephant : and : gave it (to the) to her.,he swam over to the elephant and gave it to her,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,and then they decide/ed to play some more.,and then they decided to play some more,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,one day the elephant and her friend the giraffe decide/ed to go swim/ing.,one day the elephant and her friend the giraffe decided to go swimming,0 0 0 0 0 0 0 0 0 4 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,the elephant ran to the diving board.,the elephant ran to the diving board,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,and the giraffe just decide/ed to walk (cause she) because he saw the sign that said no run/ing.,and the giraffe just decided to walk because he saw the sign that said no running,0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,the elephant continue/ed run/ing.,the elephant continued running,0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,then he start/ed run/ing after her.,then he started running after her,0 0 4 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,when he[EW:she] was run/ing the elephant slip/ed and scrape/ed her knee.,when he was running the elephant slipped and scraped her knee,0 0 0 6 0 0 4 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,(uh) the giraffe call/ed the lifeguard.,the giraffe called the lifeguard,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,and : he ran over.,and he ran over,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,he put a bandage on the mark.,he put a bandage on the mark,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,(and) and then he left (to k) to solve another problem.,and then he left to solve another problem,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,the lifeguard sat her on the bench.,the lifeguard sat her on the bench,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,and : the giraffe sat down beside her.,and the giraffe sat down beside her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,(the other) the other lifeguard (dec) : decide/ed to kick her out because she has a bandage on.,the other lifeguard decided to kick her out because she has a bandage on,0 0 0 4 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,one day the elephant met : (her) : her friend the giraffe at the swimming pool.,one day the elephant met her friend the giraffe at the swimming pool,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,he was play/ing with his airplane.,he was playing with his airplane,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,and the elephant : got hypnotize/ed.,and the elephant got hypnotized,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,she grab/ed it from his hand : and : drop/ed it in the[-:] pool.,she grabbed it from his hand and dropped it in the pool,0 4 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,(uh) the giraffe got mad at her.,the giraffe got mad at her,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,(and she :) and she froze solid.,and she froze solid,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,the giraffe : got so mad : that he push/ed her.,the giraffe got so mad that he pushed her,0 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,the lifeguard try/ed to reach the : airplane.,the lifeguard tried to reach the airplane,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,but : it was too far out.,but it was too far out,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,the elephant told the lifeguard (that it was a) that it was an accident and (sh) that (she would nev) she will not do it again.,the elephant told the lifeguard that it was an accident and that she will not do it again,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,the lifeguard try/ed again.,the lifeguard tried again,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,but it got : farther and farther out.,but it got farther and farther out,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,then the other lifeguard came (with the) with a pool scooper (and deci) and try/ed to reach it.,then the other lifeguard came with a pool scooper and tried to reach it,0 0 0 0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,the first time (she tri) she try/ed she did not (re) reach it.,the first time she tried she did not reach it,0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,(and she) and then she was talk/ing to the kid/s.,and then she was talking to the kids,0 0 0 0 6 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,and then she (um) was talk/ing to the other lifeguard.,and then she was talking to the other lifeguard,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,she try/ed a second time.,she tried a second time,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,she got the airplane and gave it back to the giraffe.,she got the airplane and gave it back to the giraffe,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,the giraffe : smile/ed very firmly : (and decide/ed) (and) (and um) and never went swim/ing with his airplane again.,the giraffe smiled very firmly and never went swimming with his airplane again,0 0 4 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,when they were done they decide/ed to play in the playpen with the airplane instead of near the pool.,when they were done they decided to play in the playpen with the airplane instead of near the pool,0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,one day : a bunny and his friend the dragon decide/ed to go to the : sandbox and (b) build a sandcastle.,one day a bunny and his friend the dragon decided to go to the sandbox and build a sandcastle,0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,(when they were still mold/ing) when they were (s) add/ing on to the : castle (the) (the rab) the rabbit : was hog/ing the sand in the pail.,when they were adding on to the castle the rabbit was hogging the sand in the pail,0 0 0 6 0 0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,(when) when he was done : he pour/ed : all the sand on the sandcastle.,when he was done he poured all the sand on the sandcastle,0 0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,and then the sandcastle was ruin/ed.,and then the sandcastle was ruined,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,when : the dragon : was try/ing to mold it again (she did) she (s) was still cry/ing.,when the dragon was trying to mold it again she was still crying,0 0 0 0 6 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,one day : the rabbit and the : dragon : were walk/ing down the street.,one day the rabbit and the dragon were walking down the street,0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,and they saw each other with picnic basket/s.,and they saw each other with picnic baskets,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,(since the rab) since the rabbit had : cake : sub/s and sandwich/s : (they decided to have) and chip/s they decide/ed to have (um) a picnic together.,since the rabbit had cake subs and sandwiches and chips they decided to have a picnic together,0 0 0 0 0 1 0 1 0 1 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,when they were done the rabbit was sick.,when they were done the rabbit was sick,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,and he look/ed like he was go/ing to[:_gonna] throw up.,and he looked like he was going to throw up,0 0 4 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,(he got) he was get/ing dizzy.,he was getting dizzy,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,and (onl) the dragon only had a juice box and two sandwich/s.,and the dragon only had a juice box and two sandwiches,0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,(the) when the doctor was walk/ing by : (he um) the dragon ran over to her and said that her friend : was : sick.,when the doctor was walking by the dragon ran over to her and said that her friend was sick,0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,the dragon decide/ed to drag her : to her friend the rabbit : because he was (v) very sick.,the dragon decided to drag her to her friend the rabbit because he was very sick,0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,the doctor : tap/ed his head.,the doctor tapped his head,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,and he faint/ed.,and he fainted,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,(then : the) : then (the) the doctor took him home.,then the doctor took him home,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,(and) and he had (uh um some) lot/s of carrot/s and vitamin/s.,and he had lots of carrots and vitamins,0 0 0 1 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,one day : (uh the) (the) the rabbit/z friend the dragon : was walk/ing with her wagon : with a balloon tie/ed to the wheel.,one day the rabbit's friend the dragon was walking with her wagon with a balloon tied to the wheel,0 0 0 2 0 0 0 0 6 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,(the) her friend the rabbit ask/ed where did you get that balloon?,her friend the rabbit asked where did you get that balloon,0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,and she said from the big old clown over there.,and she said from the big old clown over there,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,the rabbit was try/ing to untie it from the wheel.,the rabbit was trying to untie it from the wheel,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,and the dragon got mad at him.,and the dragon got mad at him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,the balloon flew away.,the balloon flew away,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,and : they were both jump/ing for it.,and they were both jumping for it,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,the dragon got so mad (at the) at the rabbit : that she burst off (in a r) (in a fla) into a big red flame.,the dragon got so mad at the rabbit that she burst off into a big red flame,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,then : the rabbit (saw the b) saw the (cl) clown and decide/ed to run over and get a balloon.,then the rabbit saw the clown and decided to run over and get a balloon,0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,he pick/ed an orange balloon.,he picked an orange balloon,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,and : (uh the) the clown said : five cent/s please.,and the clown said five cents please,0 0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,and the bunny/z pocket/s were empty.,and the bunny's pockets were empty,0 0 2 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,(uh he) the rabbit got sad.,the rabbit got sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,and the dragon ran over.,and the dragon ran over,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,(and he) and she had no money either.,and she had no money either,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,the doctor came by.,the doctor came by,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,(and the) but the rabbit ran over : to her : (and said) and said : do you have any money?,but the rabbit ran over to her and said do you have any money,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,I will pay you back.,I will pay you back,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,and she paid : the clown (t) : ten cent/s for two balloon/s.,and she paid the clown ten cents for two balloons,0 0 0 0 0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,and when : they got the balloon/s : they were happy once again.,and when they got the balloons they were happy once again,0 0 0 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,one day (the elephant/s) (when me) I was the elephant.,one day I was the elephant,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and I was so surprise/ed because I got some candy.,and I was so surprised because I got some candy,0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then : my brother : (he got) he found a balloon in the water.,and then my brother he found a balloon in the water,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then : (I said) the elephant said that hey that is my balloon!,and then the elephant said that hey that is my balloon,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,then my brother gave the balloon to me.,then my brother gave the balloon to me,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then : the elephant said thank you to my brother.,and then the elephant said thank you to my brother,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,The end [+_bch].,The end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,one day they[EW:we] were go/ing for a swim : me and my brother.,one day they were going for a swim me and my brother,0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then (I was so scare/ed of) [~_I_mean] my brother told me that (um) it is very deep.,and then my brother told me that it is very deep,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,so you have to be with me : because I am bigger than you.,so you have to be with me because I am bigger than you,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then : when she dip/ed : her feet in the water and (uh) she thought it was too cold and she was walk/ing for her : towel (she slip/ed) I slip/ed.,and then when she dipped her feet in the water and she thought it was too cold and she was walking for her towel I slipped,0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then she hurt her knee.,and then she hurt her knee,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then she need/ed a bandaid.,and then she needed a bandaid,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then she got one.,and then she got one,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then : she rest/ed.,and then she rested,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then she was okay.,and then she was okay,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,so she went back in the pool.,so she went back in the pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,The end [+_bch].,The end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,one day : me and my brother went swim/ing.,one day me and my brother went swimming,0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and it was okay.,and it was okay,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,so the elephant : was surprise/ed.,so the elephant was surprised,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then (she brou) my brother brought an airplane in the water.,and then my brother brought an airplane in the water,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then (sh uh) the elephant took the airplane away.,and then the elephant took the airplane away,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,that is when I was two : and he was nine.,that is when I was two and he was nine,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then (she) the elephant drop/ed it in the water.,and then the elephant dropped it in the water,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then : (my um) the brother was so mad.,and then the brother was so mad,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and he could not go in the water because it is only for two year old/s.,and he could not go in the water because it is only for two year olds,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then : (um) : one of the elephant/s : (um) came and get|get[EW:got] the plane.,and then one of the elephants came and get the plane,0 0 0 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then (he) (the) the elephant try/ed it.,and then the elephant tried it,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,but : the plane was float/ing away.,but the plane was floating away,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then : (um) it went down and down.,and then it went down and down,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then my brother was cry/ing.,and then my brother was crying,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then he (tr) try/ed it with (um) a butterfly thing.,and then he tried it with a butterfly thing,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then he got it.,and then he got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then (he was) : he was get/ing happy[EW:happier] and happier.,and then he was getting happy and happier,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then they gave it back.,and then they gave it back,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and he was so happy.,and he was so happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,(and then he[-:] was so) and then my brother was so happy.,and then my brother was so happy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and the end [+_bch].,and the end,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,(Um) me and my brother : were play/ing in the sandbox.,me and my brother were playing in the sandbox,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then I[!] took (the sa) all the sand because that was when I was a little baby.,and then I took all the sand because that was when I was a little baby,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then I took all the sand too.,and then I took all the sand too,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,we share/ed : the sand.,we shared the sand,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then we made a sandcastle.,and then we made a sandcastle,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,then : (we) we made it high.,then we made it high,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then it fell down.,and then it fell down,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,so we got sad.,so we got sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,And then : we (um) came out of the sandbox.,And then we came out of the sandbox,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then we went back in our house.,and then we went back in our house,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,we went for a picnic.,we went for a picnic,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then we ate.,and then we ate,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,then we went out to play.,then we went out to play,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then (my broth) me and my brother.,and then me and my brother,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,"(my) me, I was not finish/ed my juice and my sandwich.",me I was not finished my juice and my sandwich,0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then my brother was.,and then my brother was,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and he was fat [~_laughs].,and he was fat,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then he got loose[?] and looser[?] [~_laughs] [EU].,and then he got loose and looser,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,pardon?,pardon,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,he was (es) go/ing to get hungry[EW:hungrier] and hungrier.,he was going to get hungry and hungrier,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then he said hey what are you do/ing?,and then he said hey what are you doing,0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,that was my dad.,that was my dad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then : (um : I said that) to my dad I said that if we could go swim/ing.,and then to my dad I said that if we could go swimming,0 0 0 0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,[~!_laughing] I had a nice bathing suit on.,I had a nice bathing suit on,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,(and then we said) My dad said no[!] tomorrow.,My dad said no tomorrow,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,let us go because it is the next day.,let us go because it is the next day,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,The end [+_bch].,The end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,(w) when we were done our : party we went for (a) : another party.,when we were done our party we went for another party,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and we got (from) a balloon from our : first party.,and we got a balloon from our first party,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then : it was get/ing smaller and smaller.,and then it was getting smaller and smaller,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then (um it was get/ing) it was go/ing to pop because it was not on there well : the wagon.,and then it was going to pop because it was not on there well the wagon,0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then it flied|fly[EW:flew] away.,and then it flied away,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then it pop/ed.,and then it popped,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then the man gave us (new) lot/s of new : balloon/s.,and then the man gave us lots of new balloons,0 0 0 0 0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then he gave it to us right now.,and then he gave it to us right now,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then (they) it pop/ed.,and then it popped,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and (i) they were sad again.,and they were sad again,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then : the man said that : he is go/ing to get us brand new balloon/s[~!_laughing].,and then the man said that he is going to get us brand new balloons,0 0 0 0 0 0 0 0 6 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then (um) : he got : new balloon/s.,and then he got new balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and : one of them pop/ed already.,and one of them popped already,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then : he got one more that is brand new.,and then he got one more that is brand new,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and (uh) if it pop/3s (then I ca) the man said that (I) he could not get any more because he is hungry.,and if it pops the man said that he could not get any more because he is hungry,0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then (um : he) : he ask/ed the man if he could have one of : the dad/z cookie/s.,and then he asked the man if he could have one of the dad's cookies,0 0 0 4 0 0 0 0 0 0 0 0 0 2 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then : he did not have any more.,and then he did not have any more,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and (the man was) [~_I_mean] the man gave (um the bun) me and my brother new balloon/s.,and the man gave me and my brother new balloons,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,The elephant (s) see|see[EW:saw] a garden.,The elephant see a garden,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,see what?,see what,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,see[EW:saw] a garden [+_bch].,see a garden,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,(see a) see a water [EU].,see a water,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and (s) the elephant see|see[EW:saw] a ball.,and the elephant see a ball,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,that is not the ball.,that is not the ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,that is a balloon/s[EW:balloon]!,that is a balloons,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,he get|get[EW:got] the balloon/s.,he get the balloons,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,(and) : and he is all wet.,and he is all wet,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,The elephant jump/ed this [EU].,The elephant jumped this,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and : the elephant walk|walk[EW:walked] there.,and the elephant walk there,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,(and) : and the : elephant run|run[EW:ran].,and the elephant run,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and : elephant (s) stomp/ed the : ex [EU].,and elephant stomped the ex,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and what happen/ed?,and what happened,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,(he) (he is) he can not run.,he can not run,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,he is hurt.,he is hurt,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,oh[-:].,oh,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,he is hurt.,he is hurt,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,he has the bandage on.,he has the bandage on,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and she is much better!,and she is much better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and : he is mad!,and he is mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,mad : Amber [EU].,mad Amber,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,And (he) he *is go/ing to fly the airplane [EU].,And he going to fly the airplane,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and she is fly/ing!,and she is flying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,do you see us fly/ing?,do you see us flying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and : uhoh.,and uhoh,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,the airplane fall|fall[EW:fell] in the water.,the airplane fall in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and : the elephant : get/3s the airplane.,and the elephant gets the airplane,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,the mommy dad : get|get[EW:got] the airplane [EU].,the mommy dad get the airplane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,(and) : and (the mm) the daddy mommy get|get[EW:got] the airplane [EU].,and the daddy mommy get the airplane,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and[-:] : the mommy dad get/3s the airplane [EU].,and the mommy dad gets the airplane,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,(and) and the mommy dad/s get/3s the airplane [EU].,and the mommy dads gets the airplane,0 0 0 1 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and (the mo) he *is go/ing *to catch : the : airplane [EU]!,and he going catch the airplane,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,the mommy take|take[EW:took] it the airplane.,the mommy take it the airplane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,(and) and : mommy got the airplane[-:]!,and mommy got the airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and we did[!] find the airplane[-:]!,and we did find the airplane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,Once upon a time : the puppy and the kitty *were go/ing in the sandbox [EU].,Once upon a time the puppy and the kitty going in the sandbox,0 0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,the puppy and kitty : builded|build[EW:built] the castle[!].,the puppy and kitty builded the castle,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and[-:] the puppy and the kitty to build a house [EU].,and the puppy and the kitty to build a house,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,the : kitty and the puppy : drop/ed the castle.,the kitty and the puppy dropped the castle,0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,the puppy to sad the : (uh) castle [EU].,the puppy to sad the castle,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,The dog and the kitty go shop/ing.,The dog and the kitty go shopping,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,the kitty and the dog go to eat their lunch.,the kitty and the dog go to eat their lunch,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,the puppy and the kitty go have : stomachache [EU].,the puppy and the kitty go have stomachache,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and (the puppy is) (the) the rabbit : get/3s sick.,and the rabbit gets sick,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,the puppy and the kitty goes|go[EW:go] to work.,the puppy and the kitty goes to work,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,the puppy and the kitty (k) untie/ed the hand/s.,the puppy and the kitty untied the hands,0 0 0 0 0 4 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and the puppy and the (ki) kitty (and the) is[EW:are] sick.,and the puppy and the kitty is sick,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,(and the : rabbit) and the rabbit and the puppy say goodbye.,and the rabbit and the puppy say goodbye,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,"(The) (the) (the rabbit s) the dog tie/ed [~_""tiedy""] up the balloon/s.",the dog tied up the balloons,0 0 4 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and the : balloon/s (s) *are : small [EU].,and the balloons small,0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and the balloon/s *are small too [EU].,and the balloons small too,0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and the balloon/s (f f) *are up in the sky [EU].,and the balloons up in the sky,0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,look he is fall/ing.,look he is falling,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,he can not reach.,he can not reach,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,(and the string) and the puppy and the rabbit : can not : get the balloon/s.,and the puppy and the rabbit can not get the balloons,0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and [~_sharp_intake_of_breath] the rabbit and the dog see lot/s[!] of balloon/s and lot/s.,and the rabbit and the dog see lots of balloons and lots,0 0 0 0 0 0 0 1 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and we will try and like[?] it.,and we will try and like it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,(the rabbit) the grandma to get the balloon/s [EU].,the grandma to get the balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and[-:] he take|take[EW:took] one balloon/s[EW:balloon] xx.,and he take one balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and the balloon/s : are not tie/ed to hand/s [EU].,and the balloons are not tied to hands,0 0 1 0 0 4 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and : (the) he is go away [EU].,and he is go away,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and the xx balloon/s.,and the balloons,0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and she see|see[EW:saw] two balloon/s.,and she see two balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and he (take) : untie/ed the balloon/s.,and he untied the balloons,0 0 4 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,there was a cow and a[EW:an] elephant.,there was a cow and a elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,but : the elephant drop/ed the ball to the water [EU].,but the elephant dropped the ball to the water,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and then the cow had to [~_hadda] come to swim to get it.,and then the cow had to come to swim to get it,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and the cow got it.,and the cow got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and then the cow was soak/ing wet.,and then the cow was soaking wet,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,(th[-:]) the cow and the elephant were look/ing at the : swimming pool.,the cow and the elephant were looking at the swimming pool,0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,the elephant was not watch/ing where he was : go/ing.,the elephant was not watching where he was going,0 0 0 0 6 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and : she slip/ed : and hurted|hurt[EW:hurt] : her : knee.,and she slipped and hurted her knee,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,then the lifeguard come|come[EW:came] over.,then the lifeguard come over,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,then the lifeguard put a bandaid on there : and then[-:] let her to rest for a little while.,then the lifeguard put a bandaid on there and then let her to rest for a little while,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and the lifeguard show|show[EW:showed] her the sign no run/ing.,and the lifeguard show her the sign no running,0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,(uh) the elephant saw the cow had a[EW:an] airplane.,the elephant saw the cow had a airplane,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,: and : the elephant was surprise/ed.,and the elephant was surprised,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,so she grab/ed it.,so she grabbed it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and then she throwed|throw[EW:threw] it in the water by accident.,and then she throwed it in the water by accident,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and then the cow was mad at her.,and then the cow was mad at her,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,the lifeguard come|come[EW:came] over.,the lifeguard come over,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,(and splaining to) and the elephant was explain/ing to the : lifeguard what happen/ed.,and the elephant was explaining to the lifeguard what happened,0 0 0 0 6 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and[-:] lifeguard was try/ing to reach it.,and lifeguard was trying to reach it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,but : the lifeguard could not reach it.,but the lifeguard could not reach it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and then : another : lifeguard came over : and got it.,and then another lifeguard came over and got it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and then he was happy.,and then he was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and he was : glad that he got his airplane back.,and he was glad that he got his airplane back,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,(a) : there was[EW:were] : (b) bunny/s.,there was bunnies,0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and one made a sandcastle.,and one made a sandcastle,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,so one animal want/ed to join her.,so one animal wanted to join her,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and[-:] he was make/ing a sandcastle (wi) : like her [EU].,and he was making a sandcastle like her,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,but (it) he drop/ed it on the girl with : a sandcastle.,but he dropped it on the girl with a sandcastle,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and then it was a pile[-:].,and then it was a pile,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and then she had to [~_hadda] start all over again.,and then she had to start all over again,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,(uh) : two of (th) the bunny rabbit/s were go/ing on a picnic.,two of the bunny rabbits were going on a picnic,0 0 0 0 1 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,but one : was eat/ing faster than the other one : that[EW:then] he got full.,but one was eating faster than the other one that he got full,0 0 0 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and then he got sick.,and then he got sick,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and then the doctor came over.,and then the doctor came over,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and then the girl was : (hold/ing) : push/ing him over : and check/ing him[-:].,and then the girl was pushing him over and checking him,0 0 0 0 0 6 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and he was : better.,and he was better,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,she[-:] had a balloon tie/ed onto her wagon.,she had a balloon tied onto her wagon,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and : the other bunny rabbit was look/ing at it : and untie/ing it : and let/ing it go up into the air.,and the other bunny rabbit was looking at it and untying it and letting it go up into the air,0 0 0 0 0 0 6 0 0 0 6 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and then the girl was mad at him.,and then the girl was mad at him,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and then there was[EW:were] lot/s of [~_lotsa] balloon/s.,and then there was lots of balloons,0 0 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and then[-:] : the boy (ra) rabbit : (wa) want/ed one for the girl.,and then the boy rabbit wanted one for the girl,0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and : he had to [~_hadda] pay five buck/s.,and he had to pay five bucks,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and then they were sad.,and then they were sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,: but then : this boy rabbit : was go/ing to the doctor : and tell/ing : about something : to : give him five buck/s.,but then this boy rabbit was going to the doctor and telling about something to give him five bucks,0 0 0 0 0 0 6 0 0 0 0 6 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and then they were happy.,and then they were happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,[~_yeah_but_I_love_telling_stories_to_big_womans] one time the elephant was bounce/ing a ball.,one time the elephant was bouncing a ball,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(um) the elephant bounce/ed it in the water.,the elephant bounced it in the water,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(the giraffe : ran) the giraffe swam to get the ball.,the giraffe swam to get the ball,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then the giraffe : got it.,and then the giraffe got it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then he gave it to the balloon[EW:elephant].,and then he gave it to the balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(and its and the and the) and the[-:] elephant said you are so kind!,and the elephant said you are so kind,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then the giraffe was like [~_facial_expression] : that is so incredible.,and then the giraffe was like that is so incredible,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then the (uh) elephant was like [~_facial_expression].,and then the elephant was like,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,one day : (the) the giraffe was go/ing to[:_gonna] take a swim in the pool.,one day the giraffe was going to take a swim in the pool,0 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,then the elephant went first.,then the elephant went first,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then he was like : whoa!,and then he was like whoa,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and (he just) : he just : hurt his knee.,and he just hurt his knee,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,then he was sad.,then he was sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then the brother (el) elephant : (was) was run/ing.,and then the brother elephant was running,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then : he gave the sister a bandage.,and then he gave the sister a bandage,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then the brother help/ed her walk.,and then the brother helped her walk,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(and then he made) (and then he) and then he stood her up.,and then he stood her up,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(and then) : and then he let her see her bandage.,and then he let her see her bandage,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(and then) : and then the elephant said : no girl/s allow/ed.,and then the elephant said no girls allowed,0 0 0 0 0 0 1 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,only girl [EU].,only girl,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(one day the uh) (the) : one day the giraffe (was) was go/ing to play : (with his p) with his airplane.,one day the giraffe was going to play with his airplane,0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,he was go/ing to fly with it.,he was going to fly with it,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,but then the elephant took it away.,but then the elephant took it away,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and he was like [~_puzzled_expression].,and he was like,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(and they) and the giraffe was like [~_facial_expression] (what the) what are you take/ing it for?,and the giraffe was like what are you taking it for,0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then the elephant drop/ed[!] it in the pool.,and then the elephant dropped it in the pool,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then the giraffe was mad at her.,and then the giraffe was mad at her,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,she was like oh[-:] [~_standing_up_with_arms_above_head_and_mad__expression_on_her_face].,she was like oh,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,I am sorry.,I am sorry,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,then the giraffe told the brother.,then the giraffe told the brother,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(and he did not) and he was think/ing hmm.,and he was thinking hmm,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,how do I get that airplane out of the pool?,how do I get that airplane out of the pool,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,I have never seen an airplane in the pool.,I have never seen an airplane in the pool,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(and then) : and then the sister told the brother that : she did not even do it.,and then the sister told the brother that she did not even do it,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then the brother try/ed to reach/ed[EW:reach](it) the airplane.,and then the brother tried to reached the airplane,0 0 0 0 4 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then : the airplane : start/ed to sink.,and then the airplane started to sink,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then the girl (was) : was put/ing on a swimming suit.,and then the girl was putting on a swimming suit,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then she got (a) : a net to catch (the) : the airplane.,and then she got a net to catch the airplane,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,then she got it (with) with the net.,then she got it with the net,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then (the eleph) (the[-:] ) the girl elephant (gave it) gave the airplane to the giraffe.,and then the girl elephant gave the airplane to the giraffe,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then : the giraffe : was hold/ing the airplane to : his cheek.,and then the giraffe was holding the airplane to his cheek,0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(um uh) once the girl dog was make/ing a (sa) sandcastle.,once the girl dog was making a sandcastle,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,then the rabbit start/ed : to make a big big big : pile : of sand : in a bucket.,then the rabbit started to make a big big big pile of sand in a bucket,0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then he pour/ed it all over the sandcastle.,and then he poured it all over the sandcastle,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(and then he) (and then he went) and then he was scare/ed.,and then he was scared,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(and then the) and then the dog was like [~_makes_a_face__with_big_open_eyes].,and then the dog was like,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,once the rabbit (was) was run/ing along with a basket in his hand.,once the rabbit was running along with a basket in his hand,0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(and then he) and then : the dog had a sandwich.,and then the dog had a sandwich,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and a rabbit had (a salad) a salad bun and (a sss) and a carrot : and another salad bun : (and) : (and) [~_uh_hm_I__do-n't_know_what_it_is_called].,and a rabbit had a salad bun and and a carrot and another salad bun,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and he ate it all.,and he ate it all,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and he felt full.,and he felt full,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and he laid down.,and he laid down,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,then he bonk/ed his head.,then he bonked his head,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(and went) and he went [~_motioning_with_his_head_as_if_it_were__spinning_around].,and he went,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,that is so hilarious.,that is so hilarious,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then his father come/3s along.,and then his father comes along,0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then the baby rabbit go/3s (hey where is) hey where is : big rabbit?,and then the baby rabbit goes hey where is big rabbit,0 0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(and then the mother) and then the baby (just gro) just pull/ed the mother/z jacket.,and then the baby just pulled the mother's jacket,0 0 0 0 0 4 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(and then : he) and then the mother (just) just : check/ed his throat (with um) with a tube thingy.,and then the mother just checked his throat with a tube thingy,0 0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then he felt better.,and then he felt better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then he walk/ed with his mom.,and then he walked with his mom,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and the baby stay/ed there.,and the baby stayed there,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,once the : rabbit was run/ing along.,once the rabbit was running along,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and he saw his baby pull/ing a wagon : with a balloon on it.,and he saw his baby pulling a wagon with a balloon on it,0 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and he said that is just the kind of balloon I want!,and he said that is just the kind of balloon I want,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and the baby was like : you are go/ing to take the balloon off my wagon?,and the baby was like you are going to take the balloon off my wagon,0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then he was like [~_look_of_surprise].,and then he was like,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then (he just) he just (um) let go of the balloon.,and then he just let go of the balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and the balloon float/ed up into the air.,and the balloon floated up into the air,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and the baby and the brother could not : touch it.,and the baby and the brother could not touch it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and (then) (then the bab) then the balloon : pop/ed.,and then the balloon popped,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then the baby got mad at the brother.,and then the baby got mad at the brother,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then the big balloon maker guy : this guy [~_pointing_at__picture_on_page].,and then the big balloon maker guy this guy,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,those two guy/s (uh uh) a full made of balloon/s.,those two guys a full made of balloons,0 0 1 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(and he said) (and he) and the brother said those are balloon/s that I need.,and the brother said those are balloons that I need,0 0 0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and he said uhuh (because you have a).,and he said uhuh,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,[~_what_the] he has a hole in his pant/s.,he has a hole in his pants,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,that silly rabbit.,that silly rabbit,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(and then) and then the baby came over.,and then the baby came over,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,then he was like [~_facial_expression].,then he was like,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,then the man was like [~_facial_expression].,then the man was like,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,[~_what_the] and then the mother came over again.,and then the mother came over again,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and the baby was like [~_facial_expression].,and the baby was like,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and the brother was run/ing over to the mother.,and the brother was running over to the mother,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(then the moth) and (then the brother told the) (the) and then the brother told the mother what had happen/ed : what the man (who may who) who make/3s homemade balloon/s.,and and then the brother told the mother what had happened what the man who makes homemade balloons,0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 3 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,: (he told the) the brother told the mom : what the man had said to him.,the brother told the mom what the man had said to him,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,oh that book keep/3s fall/ing down [+_bch].,oh that book keeps falling down,0 0 0 3 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,number number twenty number twenty one [~_reading_number_off_back__of_previous_page] [+_bch].,number number twenty number twenty one,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(and then uh) and then the guy went.,and then the guy went,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and the mother gave the guy : (ffff um) (ffff) two (buck/s) buck/s for the balloon/s so that the children could have them.,and the mother gave the guy two bucks for the balloons so that the children could have them,0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(and then) : and then the children were play/ing with them.,and then the children were playing with them,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then I do not know how.,and then I do not know how,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then nothing else [+_bch].,and then nothing else,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,: One really hot July : a boy name/ed : Jordan and a girl name/ed : Keesha went to a swimming pool.,One really hot July a boy named Jordan and a girl named Keesha went to a swimming pool,0 0 0 0 0 0 4 0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Keesha drop/ed : a ball that she was bounce/ing at the swimming pool into the water.,Keesha dropped a ball that she was bouncing at the swimming pool into the water,0 4 0 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Jordan dove in to go get it.,Jordan dove in to go get it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Jordan came back with the ball.,Jordan came back with the ball,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Keesha was happy.,Keesha was happy,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Jordan was proud.,Jordan was proud,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,and : Keesha thought he was cool.,and Keesha thought he was cool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Then after Jordan and Keesha got their ball back : Jordan[-:] saw the diving board : same with Keesha.,Then after Jordan and Keesha got their ball back Jordan saw the diving board same with Keesha,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Keesha want/ed to go onto the diving board.,Keesha wanted to go onto the diving board,0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Keesha and Jordan were run/ing.,Keesha and Jordan were running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,and a sign[-:] said no run/ing.,and a sign said no running,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Keisha slip/ed and scrape/ed[-:] her knee.,Keisha slipped and scraped her knee,0 4 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Jordan call/ed the lifeguard.,Jordan called the lifeguard,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,the lifeguard : patch/ed up (um) Keesha/z knee.,the lifeguard patched up Keesha's knee,0 0 4 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,the lifeguard sat Keesha down.,the lifeguard sat Keesha down,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Jordan comfort|comfort[EW:comforted] her.,Jordan comfort her,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,the lifeguard told her to be more careful : around the pool.,the lifeguard told her to be more careful around the pool,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Jordan and Keesha are here again : in the pool.,Jordan and Keesha are here again in the pool,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Jordan has a : airplane.,Jordan has a airplane,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,he is pretend/ing to fly.,he is pretending to fly,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Keesha is[-:] stare/ing at him.,Keesha is staring at him,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Keesha took the plane from Jordan without ask/ing : and drop/ed it in the water by accident.,Keesha took the plane from Jordan without asking and dropped it in the water by accident,0 0 0 0 0 0 0 6 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Jordan was a little bit mad.,Jordan was a little bit mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,then[-:] Jordan got really[!] mad : at Keesha for drop/ing his toy plane into the water.,then Jordan got really mad at Keesha for dropping his toy plane into the water,0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,the lifeguard came over.,the lifeguard came over,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,and[-:] : Keesha kind of (s[-:]) : ran away.,and Keesha kind of ran away,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,then[!] Keesha told the lifeguard it was an accident.,then Keesha told the lifeguard it was an accident,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,the lifeguard try/ed to get it.,the lifeguard tried to get it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,he could not reach it.,he could not reach it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Jordan was really[-:] upset.,Jordan was really upset,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,then[!] a lady with a net came.,then a lady with a net came,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Jordan was happy that the net is go/ing to get it out.,Jordan was happy that the net is going to get it out,0 0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,the lady got the plane.,the lady got the plane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,but it would not fit into the net.,but it would not fit into the net,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,"[~_oh] : then[-:] : on her second try, she did get it in.",then on her second try she did get it in,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Jordan was really happy.,Jordan was really happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Keesha said she would be more careful with friend/z toy/s and would ask before use/ing : Jordan/z toy.,Keesha said she would be more careful with friend's toys and would ask before using Jordan's toy,0 0 0 0 0 0 0 0 2 1 0 0 0 0 6 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,one bright sunny afternoon : a boy named Joe came over to his friend/z : Arlene/z house.,one bright sunny afternoon a boy named Joe came over to his friend's Arlene's house,0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Arlene had built a sandcastle in her sandbox.,Arlene had built a sandcastle in her sandbox,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Joe want/ed to go in : to the sandbox.,Joe wanted to go in to the sandbox,0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Joe dump/ed the sand on Arlene/z sandcastle.,Joe dumped the sand on Arlene's sandcastle,0 4 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Arlene look/ed at it strangely.,Arlene looked at it strangely,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,then Joe : got all scare/ed.,then Joe got all scared,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Joe felt : innocent.,Joe felt innocent,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,well that is what he thought he was.,well that is what he thought he was,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,then[-:] Arlene and Joe : went for a walk in the forest.,then Arlene and Joe went for a walk in the forest,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Joe had a brought a picnic basket and same with Arlene.,Joe had a brought a picnic basket and same with Arlene,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Joe took out all[!] of his food/s and : got really[!] ready to gobble it up.,Joe took out all of his foods and got really ready to gobble it up,0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Arlene just sat and watch/ed him.,Arlene just sat and watched him,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Arlene slowly bit into her sandwich.,Arlene slowly bit into her sandwich,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Joe stuff/ed himself with his food.,Joe stuffed himself with his food,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,: quickly Joe/z : stomach start/ed to rumble.,quickly Joe's stomach started to rumble,0 2 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Arlene look/ed at Joe.,Arlene looked at Joe,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Arlene found a doctor.,Arlene found a doctor,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,: Joe was still sit/ing at the picnic table.,Joe was still sitting at the picnic table,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Arlene said (there) Joe was still at the picnic.,Arlene said Joe was still at the picnic,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,and he was really[!] sick.,and he was really sick,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,so Arlene pull/ed[-:] the doctor over : so he could : make Joe a little bit better.,so Arlene pulled the doctor over so he could make Joe a little bit better,0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,the doctor took a stick out of his bag : and[-:] said : to Joe you should not eat so fast.,the doctor took a stick out of his bag and said to Joe you should not eat so fast,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,the doctor was : go/ing to bring Joe : to his emergency room to get him : all[-:] better.,the doctor was going to bring Joe to his emergency room to get him all better,0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,after Joe got better : (he went) he : went back to Arlene/z place.,after Joe got better he went back to Arlene's place,0 0 0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Arlene was pull/ing a wagon around : with a balloon attach/ed to it.,Arlene was pulling a wagon around with a balloon attached to it,0 0 6 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Joe thought the balloon look/ed cool.,Joe thought the balloon looked cool,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Arlene said no do not untie it.,Arlene said no do not untie it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,but it (wa) was too late.,but it was too late,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Joe had untie/ed it.,Joe had untied it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,and it flew up.,and it flew up,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Arlene try/ed to catch it.,Arlene tried to catch it,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Arlene got really[-:] mad.,Arlene got really mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Joe just stare/ed at the balloon think/ing he was innocent.,Joe just stared at the balloon thinking he was innocent,0 0 4 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,then : a man came walk/ing down the path : with a couple of balloon/s.,then a man came walking down the path with a couple of balloons,0 0 0 0 6 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Joe start/ed to run towards him.,Joe started to run towards him,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Joe ask/ed for a balloon.,Joe asked for a balloon,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,the man said the balloon/s were five cent/s.,the man said the balloons were five cents,0 0 0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,and Joe was flat broke.,and Joe was flat broke,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,so Arlene came.,so Arlene came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,and Joe was still look/ing at the man with the balloon/s.,and Joe was still looking at the man with the balloons,0 0 0 0 6 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Joe had said he did not have five cent/s.,Joe had said he did not have five cents,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,so he went back to the doctor that had help/ed him.,so he went back to the doctor that had helped him,0 0 0 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Joe ask/ed for five cent/s : for the balloon.,Joe asked for five cents for the balloon,0 4 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,the doctor stare/ed at Joe : and said yes.,the doctor stared at Joe and said yes,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Arlene was happy same with Joe because he got a balloon too.,Arlene was happy same with Joe because he got a balloon too,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Joe said he should be more careful with his friend/z toy/s.,Joe said he should be more careful with his friend's toys,0 0 0 0 0 0 0 0 0 2 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,A giraffe is play/ing with an elephant.,A giraffe is playing with an elephant,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the ball that they were play/ing with went into (s) a pool of water.,the ball that they were playing with went into a pool of water,0 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the giraffe dove down (and[-:]) swim/ing towards the ball.,the giraffe dove down swimming towards the ball,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,he grab/ed the ball and gave it to the elephant.,he grabbed the ball and gave it to the elephant,0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the elephant is happy with the giraffe.,the elephant is happy with the giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,(um) The giraffe and the elephant[-:] are[-:] go/ing to swim in a pool.,The giraffe and the elephant are going to swim in a pool,0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the elephant start/3s run/ing towards the pool.,the elephant starts running towards the pool,0 0 3 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,she slip/3s : because she was run/ing.,she slips because she was running,0 3 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,she fell and hurt her knee.,she fell and hurt her knee,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the giraffe and lifeguard come to see if she is okay.,the giraffe and lifeguard come to see if she is okay,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,(the) the[-:] elephant[-:] lifeguard put a bandage on her knee.,the elephant lifeguard put a bandage on her knee,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,she is okay.,she is okay,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,and she is sit/ing on a bench.,and she is sitting on a bench,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the lifeguard is mad at her because she was run/ing.,the lifeguard is mad at her because she was running,0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,(The ele) [~_or] the giraffe has : (a t plane) a toy plane.,the giraffe has a toy plane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,and the elephant : is happy.,and the elephant is happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the giraffe is show/ing the elephant what it can do.,the giraffe is showing the elephant what it can do,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the elephant is surprise/ed.,the elephant is surprised,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the elephant grab/ed the plane away from the giraffe.,the elephant grabbed the plane away from the giraffe,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the giraffe is : unhappy.,the giraffe is unhappy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the elephant (um f) drop/ed the plane into the pool.,the elephant dropped the plane into the pool,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the giraffe got mad at the elephant.,the giraffe got mad at the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the lifeguard see/3s that the plane is sink/ing into the pool.,the lifeguard sees that the plane is sinking into the pool,0 0 3 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,and[-:] he is upset with them.,and he is upset with them,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the elephant explain/3s to the lifeguard what happen/ed.,the elephant explains to the lifeguard what happened,0 0 3 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the lifeguard try/3s to reach the plane before it sink/3s.,the lifeguard tries to reach the plane before it sinks,0 0 3 0 0 0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the lifeguard can not get it.,the lifeguard can not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,and the giraffe is cry/ing.,and the giraffe is crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,a[-:] lady elephant come/3s with the net and[-:] is go/ing to grab the plane.,a lady elephant comes with the net and is going to grab the plane,0 0 0 3 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,she try/3s.,she tries,0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,and she almost got it.,and she almost got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,and the : giraffe stop/3s cry/ing.,and the giraffe stops crying,0 0 0 3 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,she get/3s the plane and give/3s it to the giraffe.,she gets the plane and gives it to the giraffe,0 3 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,(the giraffe is n) the giraffe is now happy.,the giraffe is now happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the giraffe[-:] : is happy because he got his plane back.,the giraffe is happy because he got his plane back,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,[<~_or_#_yeah]um a little[-:] kangaroo[>~_or_#_yeah] : a kangaroo is : play/ing in the sand.,um a little kangaroo a kangaroo is playing in the sand,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,and a rabbit come/3s.,and a rabbit comes,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the kangaroo and rabbit are make/ing a sandcastle.,the kangaroo and rabbit are making a sandcastle,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the rabbit dump/ed sand on top of the sandcastle.,the rabbit dumped sand on top of the sandcastle,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,and the kangaroo is not so happy.,and the kangaroo is not so happy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the[-:] sandcastle fall/3s down.,the sandcastle falls down,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,and it fell down on the kangaroo.,and it fell down on the kangaroo,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the kangaroo is try/ing to push : back up the sandcastle while : the[-:] rabbit is stand/ing there[-:] like he did not do anything.,the kangaroo is trying to push back up the sandcastle while the rabbit is standing there like he did not do anything,0 0 0 6 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the rabbit met the kangaroo (while he) with a basket.,the rabbit met the kangaroo with a basket,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,and the kangaroo has a basket as well.,and the kangaroo has a basket as well,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,they are have/ing a picnic.,they are having a picnic,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,(um) and the rabbit is eat/ing[-:] lot/s.,and the rabbit is eating lots,0 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,and he is full while the kangaroo is still eat/ing.,and he is full while the kangaroo is still eating,0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the[-:] rabbit now is dizzy and has a stomachache.,the rabbit now is dizzy and has a stomachache,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,and the kangaroo is worry/ing.,and the kangaroo is worrying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the kangaroo go/3s to a older rabbit : which is a doctor.,the kangaroo goes to a older rabbit which is a doctor,0 0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,(and she is say/3s) : and she ask/3s for help.,and she asks for help,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,(she come/3) she pull/3s the doctor towards (the) her friend rabbit because he is all sick.,she pulls the doctor towards her friend rabbit because he is all sick,0 3 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the doctor is : give/ing[-:] the rabbit a checkup.,the doctor is giving the rabbit a checkup,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the : little rabbit is now better.,the little rabbit is now better,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the kangaroo has a wagon with (a balloon on it) a balloon on it.,the kangaroo has a wagon with a balloon on it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,and the rabbit is[-:] come/ing : and say/ing hi to the kangaroo.,and the rabbit is coming and saying hi to the kangaroo,0 0 0 0 6 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the rabbit see/3s the balloon and start/3s grab/ing for it.,the rabbit sees the balloon and starts grabbing for it,0 0 3 0 0 0 3 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the rabbit is try/ing to take the balloon off the wagon : while the[-:] kangaroo : do/3s not want him to.,the rabbit is trying to take the balloon off the wagon while the kangaroo does not want him to,0 0 0 6 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the rabbit let/3s go of the balloon.,the rabbit lets go of the balloon,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,and the kangaroo and the rabbit start reach/ing for it.,and the kangaroo and the rabbit start reaching for it,0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the kangaroo is mad at the rabbit because he could not get the balloon back.,the kangaroo is mad at the rabbit because he could not get the balloon back,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the rabbit see/3s a man sell/ing some balloon/s.,the rabbit sees a man selling some balloons,0 0 3 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,and then he start/3s walk/ing (towards it) towards him.,and then he starts walking towards him,0 0 0 3 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,he ask/3s to buy a balloon for his friend.,he asks to buy a balloon for his friend,0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,(um) the salesman : is not go/ing to sell a balloon to the : rabbit for his friend.,the salesman is not going to sell a balloon to the rabbit for his friend,0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,he ask/3s the doctor rabbit to come[-:] talk to the salesman.,he asks the doctor rabbit to come talk to the salesman,0 3 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,now both the rabbit and the kangaroo have a balloon.,now both the rabbit and the kangaroo have a balloon,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,once upon a time the elephant was play/ing with a ball.,once upon a time the elephant was playing with a ball,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the (gi) giraffe came by.,and the giraffe came by,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,(the giraffe wa) [~_no] the : elephant pass/ed the : giraffe the ball.,the elephant passed the giraffe the ball,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the ball fell in the water.,and the ball fell in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,the giraffe was swim/ing in the water to get the ball.,the giraffe was swimming in the water to get the ball,0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the : elephant was happy.,and the elephant was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,(and the) : (um : there was) : and the : elephant was happy.,and the elephant was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,(the kay) the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,one day (the) : the elephant and the : giraffe : was[EW:were] : go/ing to have a swim in the pool[!].,one day the elephant and the giraffe was going to have a swim in the pool,0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,the elephant run|run[EW:ran] to the : trampoline : for the water [EU].,the elephant run to the trampoline for the water,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the elephant slip|slip[EW:slipped][!].,and the elephant slip,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,the elephant hurt : (his leg) : her leg.,the elephant hurt her leg,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the zebra was run/ing : behind him.,and the zebra was running behind him,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,(the gi) [~_I_mean] (the gi) the giraffe : was take/ing care of the elephant.,the giraffe was taking care of the elephant,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the[EW:a] different elephant : come|come[EW:came] to help her!,and the different elephant come to help her,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,the elephant put a bandaid [EU].,the elephant put a bandaid,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,it hurt/3s.,it hurts,0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,the elephant : was okay.,the elephant was okay,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and (the) they : was[EW:were] happy.,and they was happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and : (the lifeguard) : the lifeguard said : no run/ing.,and the lifeguard said no running,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the end [+_bch].,and the end,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,once upon a time the giraffe have|have[EW:had] a[EW:an] airplane.,once upon a time the giraffe have a airplane,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the elephant was happy.,and the elephant was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,one day (the el) : the : giraffe was play/ing with : the airplane.,one day the giraffe was playing with the airplane,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the : elephant look/ed.,and the elephant looked,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the elephant took it away from (gi) : giraffe.,and the elephant took it away from giraffe,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and she accident[EW:accidentally] drop|drop[EW:dropped] it [~_whispers_something_to_self].,and she accident drop it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and (the) : the giraffe was mad.,and the giraffe was mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,the lifeguard saw the airplane in the water.,the lifeguard saw the airplane in the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and he[-:] : was talk/ing to the elephant.,and he was talking to the elephant,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and (he is try/ing to) he try/ed to reach it.,and he tried to reach it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and he did not.,and he did not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the : giraffe was cry/ing.,and the giraffe was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and : [<~_no]the elephant don not know how[>~_no] the elephant do|do[EW:does] not know how you take it out.,and the elephant don not know how the elephant do not know how you take it out,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,a girl elephant : got a net (and take it awa) and[-:] : go|go[EW:went] (to ge) to get it.,a girl elephant got a net and go to get it,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,(and) : and she is[-:] [~_no] she is try/ing to get it.,and she is she is trying to get it,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and she got it.,and she got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and she was so happy.,and she was so happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,she give[EW:gave] it to the giraffe.,she give it to the giraffe,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the giraffe was so happy.,and the giraffe was so happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,(and) : and (the giraffe was : so) (the giraffe was so) (is ha) : the giraffe is happy.,and the giraffe is happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,once upon a time : a rabbit : and a dog : was[EW:were] make/ing a sandcastle.,once upon a time a rabbit and a dog was making a sandcastle,0 0 0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,the dog : made a (ca) castle.,the dog made a castle,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the rabbit : made : a different sandcastle.,and the rabbit made a different sandcastle,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,(the) : (the) : the rabbit : put : the : sand over the castle.,the rabbit put the sand over the castle,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the castle broke because the rabbit : throw|throw[EW:threw] the sand in the : castle [EU].,and the castle broke because the rabbit throw the sand in the castle,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,(and[-:]) : and the : dog cry/ed.,and the dog cried,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the : rabbit do|do[EW:did] nothing.,and the rabbit do nothing,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the end [+_bch].,and the end,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,once upon a time : (her frien) (her) her friend dog : *was walk/ing : on the sidewalk [EU].,once upon a time her friend dog walking on the sidewalk,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and : the rabbit came along.,and the rabbit came along,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,(the rabbit) : [~_no] the dog : went on the grass and eat|eat[EW:ate] thing/s.,the dog went on the grass and eat things,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the rabbit : eat|eat[EW:ate] a lot.,and the rabbit eat a lot,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and : the : rabbit got a stomachache.,and the rabbit got a stomachache,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the rabbit (feel) : feel|feel[EW:felt] dizzy.,and the rabbit feel dizzy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and (the girl) : [~_no] the dog was scare/ed.,and the dog was scared,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and : the dog ran to a doctor (and) : to get some help.,and the dog ran to a doctor to get some help,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,(the dog) [~_I_mean_yeah] (the) (the) the dog took the doctor to : (where) where is the rabbit was lay/ing down.,the dog took the doctor to where is the rabbit was laying down,0 0 0 0 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,the doctor took : a stick and put it (his) : in his mouth.,the doctor took a stick and put it in his mouth,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,(the ra) (the rabbit) : the doctor help/ed the rabbit.,the doctor helped the rabbit,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the rabbit feel|feel[EW:felt] good.,and the rabbit feel good,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the end [+_bch].,and the end,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,once upon a time : the girl dog : was carry/ing a balloon.,once upon a time the girl dog was carrying a balloon,0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the (radit) rabbit (come) came by.,and the rabbit came by,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,the rabbit saw the balloon.,the rabbit saw the balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the dog saw the balloon.,and the dog saw the balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the : rabbit *was go/ing to hold the balloon [EU].,and the rabbit going to hold the balloon,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and : he is try/ing to get the knot : undone.,and he is trying to get the knot undone,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,(and the r) and the : balloon : was fly/ing in the air[-:].,and the balloon was flying in the air,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,(the) the girl dog : was mad because : the bunny : let it go.,the girl dog was mad because the bunny let it go,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,the rabbit was run/ing to the : balloon guy.,the rabbit was running to the balloon guy,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and : the : rabbit ask|ask[EW:asked] : he allow/ed to have one [EU].,and the rabbit ask he allowed to have one,0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and : it cost five (s) : cent/s.,and it cost five cents,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,(they was so) : (sc) they was[EW:were] sad.,they was sad,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,(they) the rabbit came : to the doctor : and ask/3s for some money [EU].,the rabbit came to the doctor and asks for some money,0 0 0 0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,(and they) : and : the rabbit took the doctor to get : a balloon.,and the rabbit took the doctor to get a balloon,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and : the : doctor give|give[EW:gave] them : (uh two uh) five cent/s : for : two balloon/s.,and the doctor give them five cents for two balloons,0 0 0 0 0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and they was[EW:were] happy.,and they was happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,(um) the giraffe[-:] is say/ing hi.,the giraffe is saying hi,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then she is bounce/ing the ball.,and then she is bouncing the ball,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and she is go/ing hi too.,and she is going hi too,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,hi.,hi,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,she is what ?,she is what,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,she is say/ing hi [+_bch].,she is saying hi,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then : she is bounce/ing the ball.,and then she is bouncing the ball,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and she say/3s hi again.,and she says hi again,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then : the ball go/3s into the water.,and then the ball goes into the water,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and they are go/ing oh no[!].,and they are going oh no,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then the giraffe swim/3s to it : and get/3s the ball.,and then the giraffe swims to it and gets the ball,0 0 0 0 3 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,: and then : (sh) the giraffe give/3s it to the elephant.,and then the giraffe gives it to the elephant,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,: and they smile back at each other.,and they smile back at each other,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then she[-:] : say/3s thank you.,and then she says thank you,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and : she has the : love in her eye/s[~!_softly_laughing].,and she has the love in her eyes,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,(um) she want/3s to[-:] go over on the diving board.,she wants to go over on the diving board,0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,: and she[-:] is run/ing to the diving board now.,and she is running to the diving board now,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,: and (she[-:] is) she slip/ed on the water.,and she slipped on the water,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,: and now she is cry/ing.,and now she is crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,now she has a : booboo on her (uhm) kneecap.,now she has a booboo on her kneecap,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,: and now the lifeguard is come/ing : to help her.,and now the lifeguard is coming to help her,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and now the lifeguard put/3s on a bandage.,and now the lifeguard puts on a bandage,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,: and : they are put/ing her on the bench.,and they are putting her on the bench,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,: and she has a smile.,and she has a smile,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and he has a hm [~_child_making_a_face] like that.,and he has a hm like that,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,[~_okay] she is say/ing[-:] hi to the giraffe.,she is saying hi to the giraffe,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and he is say/ing hi back.,and he is saying hi back,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and the giraffe is play/ing with his airplane.,and the giraffe is playing with his airplane,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and the elephant is look/ing at the airplane.,and the elephant is looking at the airplane,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then the elephant take/3s it away from the giraffe.,and then the elephant takes it away from the giraffe,0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and he is go/ing hey[!].,and he is going hey,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then the elephant drop/3s it into the water.,and then the elephant drops it into the water,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and now they are all : worry/ed.,and now they are all worried,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then the giraffe get/3s all mad at the elephant.,and then the giraffe gets all mad at the elephant,0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and she is go/ing : ooh (I) am I bad ?,and she is going ooh am I bad,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then the lifeguard (s) come/3s again.,and then the lifeguard comes again,0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then she is kind of like : walk/ing away.,and then she is kind of like walking away,0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then he is just stand/ing there : with a smile on the side of the face.,and then he is just standing there with a smile on the side of the face,0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,(and then the lifeguard ask/3s) : (I think the guard) (lifeguard he) she is go/ing [~_high_pitched_voice] well I[!] did not do it.,she is going well I did not do it,0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,(and she is go/ing) and the giraffe is go/ing like that [~_child__raises_her_eyebrows].,and the giraffe is going like that,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,"oh, raise/ing his eyebrow/s, uhhm.",oh raising his eyebrows uhhm,0 6 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then the lifeguard is try/ing to get the airplane.,and then the lifeguard is trying to get the airplane,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,but he can not.,but he can not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and the giraffe and the elephant are just stand/ing back go/ing (I hope I get my) I hope I get my airplane back.,and the giraffe and the elephant are just standing back going I hope I get my airplane back,0 0 0 0 0 0 0 0 6 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then the giraffe is cry/ing.,and then the giraffe is crying,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and (like) she is upset.,and she is upset,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,(and the elephant is go/ing) the lifeguard is say/ing well I[!] could not get it.,the lifeguard is saying well I could not get it,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,: (and then : I think that[-:]) well I think it is another lifeguard or something or a friend or something.,well I think it is another lifeguard or something or a friend or something,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,(that) she has a net to get the airplane.,she has a net to get the airplane,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and (sh) in this picture she is get/ing it.,and in this picture she is getting it,0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and they have a smile on their face/*s.,and they have a smile on their face,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and now : he[!] has a big[!] smile on his face.,and now he has a big smile on his face,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and she is[-:] give/ing it to him.,and she is giving it to him,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,now : they are both : happy.,now they are both happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,(um) the rabbit is saying hi.,the rabbit is saying hi,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and it look/3s like a dog.,and it looks like a dog,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and she or he is say/ing hi.,and she or he is saying hi,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,: and then : those two are play/ing.,and then those two are playing,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,the rabbit has a bucket.,the rabbit has a bucket,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and he is fill/ing it up with the sand.,and he is filling it up with the sand,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and she is or he is make/ing a (castle) sandcastle.,and she is or he is making a sandcastle,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then : the rabbit is put/ing the sand that he has in the bucket onto the sandcastle.,and then the rabbit is putting the sand that he has in the bucket onto the sandcastle,0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and (she is worry/ing) she is worry/ed that the first sandcastle is go/ing to [~_gonna] break.,and she is worried that the first sandcastle is going to break,0 0 0 4 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,: and : the sandcastle break/3s.,and the sandcastle breaks,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and he is go/ing [~_sharp_intake_of_breath] oh no did I wreck it?,and he is going oh no did I wreck it,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,(and then he) (she is cry/ing) and she is sadly cry/ing and (put/ing) try/ing to put it back together while he is go/ing : uhoh what did I do?,and she is sadly crying and trying to put it back together while he is going uhoh what did I do,0 0 0 0 6 0 6 0 0 0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,(sh) the[-:] : dog : is say/ing hi to the rabbit.,the dog is saying hi to the rabbit,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then the rabbit is : eat/ing.,and then the rabbit is eating,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,but he has all his food.,but he has all his food,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and : his tongue is just (ta) stick/ing out.,and his tongue is just sticking out,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and the rabbit ate all his food really really fast.,and the rabbit ate all his food really really fast,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,then the : dog : still is eat/ing her sandwich and juice box.,then the dog still is eating her sandwich and juice box,0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and : he has a sick feel/ing in his stomach.,and he has a sick feeling in his stomach,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and she is worry/ing.,and she is worrying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and the doctor come/3s by.,and the doctor comes by,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and the dog go get/3s the doctor.,and the dog go gets the doctor,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then (she is say/ing) (she is pull/ing the) the dog is pull/ing the (doc) doctor or nurse to see the rabbit.,and then the dog is pulling the doctor or nurse to see the rabbit,0 0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,then the nurse : check/3s the : rabbit : and *is say/ing that you have a bad cold.,then the nurse checks the rabbit and saying that you have a bad cold,0 0 0 3 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,: (and she) (and the rab) both the rabbit/s are walk/ing by while the dog is stay/ing there.,both the rabbits are walking by while the dog is staying there,0 0 1 0 6 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,(um) the dog has the balloon on : (her) his wagon.,the dog has the balloon on his wagon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and the rabbit is come/ing by again.,and the rabbit is coming by again,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,(and say/ing) they are both say/ing hi.,they are both saying hi,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and the rabbit is go/ing to go touch the balloon.,and the rabbit is going to go touch the balloon,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then he is untie/ing it.,and then he is untying it,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and she is go/ing oh no please do not do that.,and she is going oh no please do not do that,0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then the rabbit let/3s go of it.,and then the rabbit lets go of it,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and : they are try/ing to catch it.,and they are trying to catch it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,but they can not catch it.,but they can not catch it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,then the dog is really really really[!] mad at the rabbit : while he is look/ing up.,then the dog is really really really mad at the rabbit while he is looking up,0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then : all of a sudden they see : a : balloon person.,and then all of a sudden they see a balloon person,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,well I think that the rabbit see/3s a balloon person while the girl dog is still mad at him.,well I think that the rabbit sees a balloon person while the girl dog is still mad at him,0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then he is say/ing how much for one of those please?,and then he is saying how much for one of those please,0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,(five) and it has five dollar/s [EU].,and it has five dollars,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,(but they do not have) but he do/3s not have five dollar/s.,but he does not have five dollars,0 0 3 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and they are all worry/ing : while he is stand/ing up : still hold/ing the balloon/s.,and they are all worrying while he is standing up still holding the balloons,0 0 0 0 6 0 0 0 6 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then they see (the doc) the nurse again.,and then they see the nurse again,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,(and the rabbit is gonna) and the rabbit is run/ing over there.,and the rabbit is running over there,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and (he is ask/ing her : do you have any) (uh) he is probably say/ing I am broke.,and he is probably saying I am broke,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,so I was wonder/ing if you can buy me and her a balloon please.,so I was wondering if you can buy me and her a balloon please,0 0 0 6 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and (then she give/3s) then she buy/3s : the balloon/s for them.,and then she buys the balloons for them,0 0 0 3 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then they both are happy.,and then they both are happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and so is she.,and so is she,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,once there was an elephant and a giraffe : at a swimming pool.,once there was an elephant and a giraffe at a swimming pool,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then the giraffe (saw) saw a ball in the water and want/ed to go in.,then the giraffe saw a ball in the water and wanted to go in,0 0 0 0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then the giraffe ran in and try/ed to swim.,then the giraffe ran in and tried to swim,0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,the elephant was worry/ed.,the elephant was worried,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then : the elephant gave the giraffe another balloon so he would get out of the water.,then the elephant gave the giraffe another balloon so he would get out of the water,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then : the elephant when he was just about to (take it) give it to the giraffe he took it back.,then the elephant when he was just about to give it to the giraffe he took it back,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,once there was : a giraffe and a[EW:an] : elephant.,once there was a giraffe and a elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,they walk/ed past a balloon.,they walked past a balloon,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,and then the elephant saw a diving board that look/ed like fun.,and then the elephant saw a diving board that looked like fun,0 0 0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then he start/ed run/ing to it.,then he started running to it,0 0 4 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,and the giraffe follow/ed behind.,and the giraffe followed behind,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then (the) the elephant trip/ed and fell and hurt herself.,then the elephant tripped and fell and hurt herself,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then the lifeguard came : and stitch/ed up (the ban) the wound.,then the lifeguard came and stitched up the wound,0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then the lifeguard help/ed her get back up.,then the lifeguard helped her get back up,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,and then she was sit/ing down (at this) by the sign that said no run/ing.,and then she was sitting down by the sign that said no running,0 0 0 0 6 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,once there was an elephant and a giraffe.,once there was an elephant and a giraffe,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,the giraffe was play/ing with : a toy airplane.,the giraffe was playing with a toy airplane,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then the elephant snatch/ed it out of the giraffe/z hand/s.,then the elephant snatched it out of the giraffe's hands,0 0 0 4 0 0 0 0 2 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then the giraffe drop/ed it in the pool.,then the giraffe dropped it in the pool,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,and the (ele) giraffe was mad : very mad.,and the giraffe was mad very mad,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,and then the lifeguard saw : the giraffe and the elephant and the toy airplane in the water.,and then the lifeguard saw the giraffe and the elephant and the toy airplane in the water,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,the elephant try/ed to explain to the lifeguard.,the elephant tried to explain to the lifeguard,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,but he could not.,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,(he) he (was) was not understand/ing what she was say/ing.,he was not understanding what she was saying,0 0 0 6 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then (she finally) he finally understood what she was say/ing.,then he finally understood what she was saying,0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,and he try/ed to get it out of the water.,and he tried to get it out of the water,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then he could not make it.,then he could not make it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,and the giraffe was cry/ing.,and the giraffe was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then an elephant : came with : a little catcher thing to get the toy airplane out of the water.,then an elephant came with a little catcher thing to get the toy airplane out of the water,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then (she) she was try/ing to get it out.,then she was trying to get it out,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then she got it out.,then she got it out,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,and the giraffe was happy.,and the giraffe was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,and then the giraffe : held it in her hand/s close.,and then the giraffe held it in her hands close,0 0 0 0 0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,once there was : a bunny and a : dog.,once there was a bunny and a dog,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,one day when the dog was make/ing a sandcastle : the bunny was play/ing beside him.,one day when the dog was making a sandcastle the bunny was playing beside him,0 0 0 0 0 0 6 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,she was scoop/ing sand out of a bucket.,she was scooping sand out of a bucket,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then : when she thought she was done (she) she took the sand that was left in the bucket and : pour/ed it on the dog/z : sandcastle.,then when she thought she was done she took the sand that was left in the bucket and poured it on the dog's sandcastle,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,that made the dog : mad and the bunny : funny.,that made the dog mad and the bunny funny,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then the dog start/ed cry/ing.,then the dog started crying,0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,once there was : just (a) : a bunny and a dog.,once there was just a bunny and a dog,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,(they were) they were go/ing out on a picnic.,they were going out on a picnic,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,when the dog had barely taken out anything just his sandwich : he saw the bunny pig/ing out on treat/s.,when the dog had barely taken out anything just his sandwich he saw the bunny pigging out on treats,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,after (the) the dog finish/ed his sandwich and drink/3s some juice : the bunny had already finish/ed all his lunch with an upset stomach.,after the dog finished his sandwich and drinks some juice the bunny had already finished all his lunch with an upset stomach,0 0 0 4 0 0 0 3 0 0 0 0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,when the dog was still eat/ing : it look/ed like the bunny ate more.,when the dog was still eating it looked like the bunny ate more,0 0 0 0 0 6 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,and (now he had) : now he had star/s go/ing around his head.,and now he had stars going around his head,0 0 0 0 1 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then the dog went to the doctor bunny.,then the dog went to the doctor bunny,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,and : he ask/ed her to come to (the) : the other bunny.,and he asked her to come to the other bunny,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then he made her come closer.,then he made her come closer,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then : (the bun) the doctor bunny gave : the bunny : medicine.,then the doctor bunny gave the bunny medicine,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then the bunny took him home.,then the bunny took him home,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,once there was : a dog pull/ing a wagon when a bunny came along.,once there was a dog pulling a wagon when a bunny came along,0 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,the bunny told him to look : away.,the bunny told him to look away,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then : the bunny took the balloon off the dog/z wagon.,then the bunny took the balloon off the dog's wagon,0 0 0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,and : when he got it up he let go.,and when he got it up he let go,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,and then it went float/ing away.,and then it went floating away,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then the dog was really mad at the bunny.,then the dog was really mad at the bunny,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then : a sale/s (ba) balloon bunny was sell/ing (boo) balloon/s over by where the dog and the bunny were.,then a sales balloon bunny was selling balloons over by where the dog and the bunny were,0 0 1 0 0 0 6 1 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then : the bunny ask/ed the : sale/s person balloon bunny for a balloon.,then the bunny asked the sales person balloon bunny for a balloon,0 0 0 4 0 1 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,(but) but then he found out (that) that they were five cent/s.,but then he found out that they were five cents,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,and he had no money.,and he had no money,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,so then (the) the dog : and (the ba) the : bunny were mad.,so then the dog and the bunny were mad,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then : the bunny found his mom : and ask/ed for five cents for the balloon.,then the bunny found his mom and asked for five cents for the balloon,0 0 0 0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,he gave : him five cent/s.,he gave him five cents,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,and they each got a balloon.,and they each got a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,Once there was a giraffe named George and an elephant named Martha.,Once there was a giraffe named George and an elephant named Martha,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,and they were best friend/s.,and they were best friends,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,one day they were play/ing ball.,one day they were playing ball,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,and the ball fell into a swimming pool.,and the ball fell into a swimming pool,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,George went to the swimming pool and swimmed|swim[EW:swam] and got the ball.,George went to the swimming pool and swimmed and got the ball,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,Martha was very happy : to get her ball back.,Martha was very happy to get her ball back,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,(and then the next) and then they play/ed for the rest of the day and talk/ed.,and then they played for the rest of the day and talked,0 0 0 4 0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,One day George and Martha saw a swimming pool.,One day George and Martha saw a swimming pool,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,and they want/ed to go swim/ing.,and they wanted to go swimming,0 0 4 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,: then Martha ask/ed : George if he want/ed to go swim/ing with her.,then Martha asked George if he wanted to go swimming with her,0 0 4 0 0 0 4 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,then she was run/ing.,then she was running,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,and she slip/ed.,and she slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,she : got a big scratch on her knee.,she got a big scratch on her knee,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,and then she was cry/ing.,and then she was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,the lifeguard came and try/ed to help.,the lifeguard came and tried to help,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,the lifeguard put a bandaid on Martha/z knee.,the lifeguard put a bandaid on Martha's knee,0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,(then Marth) but Martha was still cry/ing.,but Martha was still crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,after a little while she felt better.,after a little while she felt better,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,then the lifeguard told her to not run ever again.,then the lifeguard told her to not run ever again,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,One day George and Martha was[EW:were] : play/ing : with George/z : airplane toy.,One day George and Martha was playing with George's airplane toy,0 0 0 0 0 0 6 0 2 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,: Martha really like/ed : the toy.,Martha really liked the toy,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,and Martha grab/ed it away from George and start/ed play/ing with it.,and Martha grabbed it away from George and started playing with it,0 0 4 0 0 0 0 0 4 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,then she drop/ed it into the swimming pool.,then she dropped it into the swimming pool,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,George was very mad at Martha.,George was very mad at Martha,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,suddenly the lifeguard came.,suddenly the lifeguard came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,: Martha said she drop/ed the (air) toy airplane in the pool.,Martha said she dropped the toy airplane in the pool,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,and she was really sorry.,and she was really sorry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,then the lifeguard try/ed to reach it.,then the lifeguard tried to reach it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,but he could not.,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,then : George became really sad.,then George became really sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,and then another lifeguard came : and had a net.,and then another lifeguard came and had a net,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,she used the net : and : got the airplane out of the water.,she used the net and got the airplane out of the water,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,George became happy again.,George became happy again,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,then George and Martha share/ed the airplane.,then George and Martha shared the airplane,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,once there was : a puppy : and a bunny.,once there was a puppy and a bunny,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,they like/ed to go the park and build sandcastle/s together.,they liked to go the park and build sandcastles together,0 4 0 0 0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,one day they were build/ing a sandcastle.,one day they were building a sandcastle,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,and they were happy.,and they were happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,and suddenly : by accident : all : the sand that bunny had in his bucket accidentally pour/ed on the sandcastle they were make/ing.,and suddenly by accident all the sand that bunny had in his bucket accidentally poured on the sandcastle they were making,0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,they were both very surprise/ed.,they were both very surprised,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,puppy was cry/ing.,puppy was crying,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,One day puppy and bunny were go/ing : for a picnic.,One day puppy and bunny were going for a picnic,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,: bunny was make/ing a pig of himself.,bunny was making a pig of himself,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,and puppy was star/ing at him.,and puppy was staring at him,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,: after a little while puppy start/ed eat/ing her lunch.,after a little while puppy started eating her lunch,0 0 0 0 0 4 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,then bunny got a very very bad stomachache.,then bunny got a very very bad stomachache,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,then puppy saw a doctor and call/ed her to come over : to where their picnic spot was.,then puppy saw a doctor and called her to come over to where their picnic spot was,0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,puppy kept on grab/ing the doctor to come : over.,puppy kept on grabbing the doctor to come over,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,then the doctor saw : bunny.,then the doctor saw bunny,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,and : (sh) she was look/ing at him : and try/ing to figure out what was (a) the matter with him.,and she was looking at him and trying to figure out what was the matter with him,0 0 0 6 0 0 0 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,the doctor thought he had a stomachache.,the doctor thought he had a stomachache,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,so she took him : home and put him to bed.,so she took him home and put him to bed,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,one day puppy : had a balloon in her wagon.,one day puppy had a balloon in her wagon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,and suddenly bunny came.,and suddenly bunny came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,bunny want/ed to take the balloon and touch it.,bunny wanted to take the balloon and touch it,0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,then he (untie/ed the) : untie/ed the balloon from the wagon.,then he untied the balloon from the wagon,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,(and) : and the balloon float/ed away.,and the balloon floated away,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,they were all try/ing to catch it.,they were all trying to catch it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,then puppy got really really angry at bunny.,then puppy got really really angry at bunny,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,then : they saw a : man hold/ing lot/s of balloon/s.,then they saw a man holding lots of balloons,0 0 0 0 0 6 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,(the bunny) bunny ask/ed the man if he could have : some : of the balloon/s.,bunny asked the man if he could have some of the balloons,0 4 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,but he did not have any money.,but he did not have any money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,puppy and bunny were really disappoint/ed.,puppy and bunny were really disappointed,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,then they saw the doctor.,then they saw the doctor,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,and bunny went run/ing to : her.,and bunny went running to her,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,he asked her if : she could get them some : balloon/s.,he asked her if she could get them some balloons,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,then the doctor paid for : two balloon/s.,then the doctor paid for two balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,then puppy and bunny were happy again.,then puppy and bunny were happy again,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,A cow[!] and the elephant want to [~_wanna] play baseball.,A cow and the elephant want to play baseball,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and (the cow jus um) the cow just throwed|throw[EW:threw] it in the water xx his hand[?].,and the cow just throwed it in the water his hand,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and I do not know what else [+_bch].,and I do not know what else,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,then he[!] just start/ed [EU].,then he just started,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,he just want/ed to get that ball !,he just wanted to get that ball,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,[~_well_#_well] she[!] got[!] it.,she got it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,the cow just got it.,the cow just got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and she just threw it to her.,and she just threw it to her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,now she was do/ing everything to the boy.,now she was doing everything to the boy,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,She just want/ed to bounce on here and swim.,She just wanted to bounce on here and swim,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,she wanted?,she wanted,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,can you say that again?,can you say that again,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,she just want/ed to bounce on there and swim [+_bch].,she just wanted to bounce on there and swim,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,then she run|run[EW:ran].,then she run,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and she just run|run[EW:ran] and running [EU].,and she just run and running,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,then (she was) she want|want[EW:wanted] too many tricks through this one and this one [EU].,then she want too many tricks through this one and this one,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,she hurt herself.,she hurt herself,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,now she was cry/ing [EU].,now she was crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,then he just put a bandaid on her.,then he just put a bandaid on her,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,now she can not swim.,now she can not swim,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,I mean the cow and the elephant [EU].,I mean the cow and the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,now he *is mad at her [EU].,now he mad at her,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and then the end [+_bch].,and then the end,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,A cow : was have/ing a[EW:an] airplane : for flying here [EU].,A cow was having a airplane for flying here,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and then he : just want/ed to fly.,and then he just wanted to fly,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,then she[!] got it.,then she got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,then it went in there.,then it went in there,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,he just want/ed to eat the xx bit.,he just wanted to eat the bit,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,he was mad at her because (sh) her[EW:she] just throwed|throw[EW:threw] it in there.,he was mad at her because her just throwed it in there,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and then : she was so : sad because : he was sad too because her[EW:she] was sad too because it was slip/ed in.,and then she was so sad because he was sad too because her was sad too because it was slipped in,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,xxx.,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,then (it) I would[!] get (it) : it : [~_EXA:_what_(i)s_in__the_story] because it was sink/ing into the ground.,then I would get it because it was sinking into the ground,0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,she is so[!] mad.,she is so mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and then?,and then,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and then : he was so sad and cry/ing from that airplane [EU].,and then he was so sad and crying from that airplane,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,"okay L, what happened next L?",okay L what happened next L,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,then he got back.,then he got back,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and then she pick|pick[EW:picked] it up and give|give[EW:gave] it to him.,and then she pick it up and give it to him,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,: and then?,and then,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and then she was try/ing to get it.,and then she was trying to get it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,: and then?,and then,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and then she got it !,and then she got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,: and then?,and then,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and then : he was so happy and her too.,and then he was so happy and her too,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and then [+/]^,and then,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and then the end [+_bch].,and then the end,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,He just want/ed to play with her.,He just wanted to play with her,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,the castle [EU].,the castle,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,(duh) he just play/ed with the bunny.,he just played with the bunny,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and it was go/ing to[:_gonna] break.,and it was going to break,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,he just put lot/s of sand in there.,he just put lots of sand in there,0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and it is go/ing to[:_gonna] break.,and it is going to break,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and : that is the day it broked|broke[EW:broke].,and that is the day it broked,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and now how are they go/ing to[:_gonna][?] fix it?,and now how are they going to fix it,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,how?,how,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,(ah) they was[EW:were] walk/ing.,they was walking,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,they were go/ing to have a beach.,they were going to have a beach,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,they were go/ing to[:_gonna] have a party.,they were going to have a party,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,oh they already had a party.,oh they already had a party,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and the bunny just want/ed to eat a carrot.,and the bunny just wanted to eat a carrot,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,now he is fat[!] [~_giggles].,now he is fat,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and (he is sad like :) he is sad.,and he is sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and (she) he is happy now.,and he is happy now,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,now he happy.,now he happy,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,(he) she want|want[EW:wanted] to go there.,she want to go there,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,(toin da) what does she want?,what does she want,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,he was try/ing to licking[EW:lick] his tongue [EU].,he was trying to licking his tongue,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,he was what?,he was what,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,she want/ed to lick on her tongue [+_bch].,she wanted to lick on her tongue,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,(hmm but then he is) and then : she was take/ing her walk/ing.,and then she was taking her walking,0 0 0 0 6 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,they were going for a walk.,they were going for a walk,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and the end [+_bch].,and the end,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,Now they was[EW:were] go/ing for *a walk again [EU].,Now they was going for walk again,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,they got a balloon.,they got a balloon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and they was[EW:were] walk/ing.,and they was walking,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,then they just want/ed to float away.,then they just wanted to float away,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and it jump/ed right off the air [EU].,and it jumped right off the air,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and they just want/ed it.,and they just wanted it,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,(they got so) he was so mad.,he was so mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,there was a moo.,there was a moo,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and he was hold/ing some more balloon/s : for them!,and he was holding some more balloons for them,0 0 0 6 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and he just jump/ed right up there.,and he just jumped right up there,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and the man want/ed to give him a balloon for the wagon.,and the man wanted to give him a balloon for the wagon,0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,(five :) five number on the balloon [EU].,five number on the balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and the guy there was so mad and happy.,and the guy there was so mad and happy,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and (he was so) those two was[EW:were] happy.,and those two was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and they decid/ed to do everything.,and they decided to do everything,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,now he is happy.,now he is happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and then he just want/ed to give them a balloon right now.,and then he just wanted to give them a balloon right now,0 0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,then (he) he was so sick.,then he was so sick,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,then (the doctor was the) : the hospital guy was just wanted[EW:wanting] to check him with the doctor.,then the hospital guy was just wanted to check him with the doctor,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,he just want/ed a balloon right now.,he just wanted a balloon right now,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,I can take this off and put it on [+_bch].,I can take this off and put it on,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,I can put it back on [+_bch].,I can put it back on,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,be careful.,be careful,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and then what?,and then what,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,then (he) he just give|give[EW:gave] him a (quarter) (quarter) quarter.,then he just give him a quarter,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,then they was[EW:were] so happy because they got a balloon.,then they was so happy because they got a balloon,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and then the end [+_bch].,and then the end,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,(okay um) : the giraffe and the elephant are[-:] at : a beach party.,the giraffe and the elephant are at a beach party,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and[-:] they are play/ing with a ball.,and they are playing with a ball,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,suddenly (the ball) : the[-:] elephant drop/3s the ball into the pool.,suddenly the elephant drops the ball into the pool,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,so the giraffe : go/3s to get it[?] [~_disk_skips].,so the giraffe goes to get it,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,the elephant look/3s worry/ed because the pool is very deep.,the elephant looks worried because the pool is very deep,0 0 3 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and the[-:] giraffe might drowned|drown[EW:drown].,and the giraffe might drowned,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and[-:] : the giraffe does not drowned|drown[EW:drown] : because (he is very long) his neck is very long and : give/3s the ball : to the elephant [EU].,and the giraffe does not drowned because his neck is very long and gives the ball to the elephant,0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and[-:] (um) : then the : giraffe feel/3s very proud of himself.,and then the giraffe feels very proud of himself,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and the elephant think/3s he (is) look/3s[-:] cute that way.,and the elephant thinks he looks cute that way,0 0 0 3 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,(um) : the giraffe and : the[-:] (uh) : elephant are at the pool again : because they are have/ing swimming lessons.,the giraffe and the elephant are at the pool again because they are having swimming lessons,0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and : the elephant : is run/ing : into the pool.,and the elephant is running into the pool,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,suddenly she slip/3s : and[-:] fall/3s.,suddenly she slips and falls,0 0 3 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,then the giraffe see/3s her cry/ing : because she has : an owie on her knee.,then the giraffe sees her crying because she has an owie on her knee,0 0 0 3 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,he call/3s the lifeguard.,he calls the lifeguard,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and the lifeguard come/3s run/ing.,and the lifeguard comes running,0 0 0 3 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,he put/3s a bandage on : the : elephant.,he puts a bandage on the elephant,0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and : she think/3s it is go/ing to hurt.,and she thinks it is going to hurt,0 0 3 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,but it : do/3s not.,but it does not,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and then he put/3s the elephant onto the bench for her to sit for awhile.,and then he puts the elephant onto the bench for her to sit for awhile,0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,the lifeguard point/3s to a sign say/ing no run/ing.,the lifeguard points to a sign saying no running,0 0 3 0 0 0 6 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and she (is) [-:] : will not do it ever again.,and she will not do it ever again,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,the giraffe brought a new toy to : the swimming pool.,the giraffe brought a new toy to the swimming pool,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and the elephant really like/3s it.,and the elephant really likes it,0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,he play/3s with the airplane.,he plays with the airplane,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and : has a really cool string at the end.,and has a really cool string at the end,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,the elephant[!] snatch/3s it away from the giraffe : and think/3s it is really : cool!,the elephant snatches it away from the giraffe and thinks it is really cool,0 0 3 0 0 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and she is fly/ing it around.,and she is flying it around,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,but then it : drop/3s into the pool.,but then it drops into the pool,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and it/z : flinger thing break/3s.,and it's flinger thing breaks,0 2 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and what?,and what,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and the[-:] (um) propeller thing : break/3s off [+_bch].,and the propeller thing breaks off,0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,oh okay.,oh okay,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and it go/3s deeper deeper into the water.,and it goes deeper deeper into the water,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and the giraffe is really mad at the elephant.,and the giraffe is really mad at the elephant,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,but : she[-:] make/3s an (in) innocent face on her : face.,but she makes an innocent face on her face,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,(the life) (she) the (um) : giraffe call/3s the lifeguard.,the giraffe calls the lifeguard,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and : he : come/3s to[-:] the pool and find/3s : the : airplane in the pool.,and he comes to the pool and finds the airplane in the pool,0 0 3 0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,the elephant is explain/ing[!] to the lifeguard what happen/ed.,the elephant is explaining to the lifeguard what happened,0 0 0 6 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and she[-:] feel/3s really sorry.,and she feels really sorry,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,so the lifeguard try/3s to : get : the : airplane : and give|give[EW:gives] it back to the : giraffe.,so the lifeguard tries to get the airplane and give it back to the giraffe,0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,the giraffe : is cry/ing : because it goes deeper deeper into the water.,the giraffe is crying because it goes deeper deeper into the water,0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and : (the : lifeguard) the other lifeguard with the net come/3s and : (give/3s it) (um) : get/3s the : plane.,and the other lifeguard with the net comes and gets the plane,0 0 0 0 0 0 0 3 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and the giraffe : has one more tear.,and the giraffe has one more tear,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,but then it go/3s.,but then it goes,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and[-:] everyone feel/3s happy.,and everyone feels happy,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,the giraffe has no more tear/s and : is smile/ing.,the giraffe has no more tears and is smiling,0 0 0 0 0 1 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,the lifeguard[!] is smile/ing too : and give/3s the plane back : to the : giraffe.,the lifeguard is smiling too and gives the plane back to the giraffe,0 0 0 6 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,the giraffe hug/3s : the plane.,the giraffe hugs the plane,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and (um) : the (el) elephant is happy again.,and the elephant is happy again,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,the kangaroo : was build/ing a sandcastle.,the kangaroo was building a sandcastle,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and then : her friend rabbit[!] came along.,and then her friend rabbit came along,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,he put : some sand into : a big bucket : and : start/ed to build something.,he put some sand into a big bucket and started to build something,0 0 0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,(then the dog realize/ed) then (the um) : the kangaroo realize/ed that : the bunny was make/ing a sandcastle : right : in front of it.,then the kangaroo realized that the bunny was making a sandcastle right in front of it,0 0 0 4 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,but it spill/ed all over the castle.,but it spilled all over the castle,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,the[-:] mountain of sand : cover/ed half of the castle.,the mountain of sand covered half of the castle,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and only a little bit was left.,and only a little bit was left,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,the : kangaroo start/ed cry/ing.,the kangaroo started crying,0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and the bunny (felt) : made an innocent face on his face.,and the bunny made an innocent face on his face,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,bunny was go/ing down to the forest (to) for a picnic.,bunny was going down to the forest for a picnic,0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and : he saw : (uh um) kangaroo there too.,and he saw kangaroo there too,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,they said hi and : found a place for their picnic.,they said hi and found a place for their picnic,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,(bunny) [~_I_mean] (um) : kangaroo never (really li) realiz/ed (what is) : how big of a[EW:an] eater bunny was.,kangaroo never realized how big of a eater bunny was,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and : he pack/ed : no food but just junk food.,and he packed no food but just junk food,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,after he was done : he look/ed like an enormous pig : because his belly was : big.,after he was done he looked like an enormous pig because his belly was big,0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and : (dog was : drink) (um bun uh) kangaroo was drink/ing : her juice and eat/ing her sandwich.,and kangaroo was drinking her juice and eating her sandwich,0 0 0 6 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,then (s) : bunny start/ed hicup/ing : and : burp/ing (ca) : and had a (s) tummyache.,then bunny started hicuping and burping and had a tummyache,0 0 4 6 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and : kangaroo just realize/ed that!,and kangaroo just realized that,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,she start/ed run/ing : (to[-:] bunny/z) (to the doctor) : to doctor bunny : and : said my friend look/3s like he is very sick.,she started running to doctor bunny and said my friend looks like he is very sick,0 4 6 0 0 0 0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,(she) (sh) (she) (she drag/ed) : she pull/ed (miss) doctor bunny there.,she pulled doctor bunny there,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and : (um : she) : doctor bunny start/ed look/ing at : bunny.,and doctor bunny started looking at bunny,0 0 0 4 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,she said you have been eat/ing too much[EW:many] sweet/s (candy) : and candy : and not enough healthy (nutrent) : nutritious stuff.,she said you have been eating too much sweets and candy and not enough healthy nutritious stuff,0 0 0 0 0 6 0 0 1 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,you should : eat your dessert after but only a little[!] bit of dessert.,you should eat your dessert after but only a little bit of dessert,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,or else you will feel very sick.,or else you will feel very sick,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,so doctor bunny (took : bunny home to) : took bunny home (to her) : to his mother.,so doctor bunny took bunny home to his mother,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and : he told her all[!] about the thing/s : that he ate and did : today.,and he told her all about the things that he ate and did today,0 0 0 0 0 0 0 1 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,one day : (kangaroo was in) : Joey the kangaroo was in the forest.,one day Joey the kangaroo was in the forest,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and bunny : saw her with her balloon : tuck/ed : onto (her) : the wheel of her : wagon.,and bunny saw her with her balloon tucked onto the wheel of her wagon,0 0 0 0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,he said : hey I really like that!,he said hey I really like that,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,is there any more around?,is there any more around,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,kangaroo said I do not know.,kangaroo said I do not know,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,the balloon man might be : somewhere far from here.,the balloon man might be somewhere far from here,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,(um) and[-:] bunny try/ed to take it off : for[-:] him[!].,and bunny tried to take it off for him,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,but : kangaroo said hey that is mine.,but kangaroo said hey that is mine,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and I really like it.,and I really like it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,it is my favorite color.,it is my favorite color,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and : then : bunny : realize/ed that he was not alone.,and then bunny realized that he was not alone,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,he look/ed very[!] nervous.,he looked very nervous,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,suddenly he let go of the balloon!,suddenly he let go of the balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,bunny : realize/ed that the : balloon was : high up in the sky.,bunny realized that the balloon was high up in the sky,0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and no one could catch it because it was go/ing high : too fast!,and no one could catch it because it was going high too fast,0 0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,kangaroo look/ed very[!] mad at bunny.,kangaroo looked very mad at bunny,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,then[!] they saw the balloon man : with (all) : more (of bunny) of kangaroo/z favorite color/s[!] and bunny/z too : purple and blue.,then they saw the balloon man with more of kangaroo's favorite colors and bunny's too purple and blue,0 0 0 0 0 0 0 0 0 2 0 1 0 2 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,bunny ask/ed for a blue : balloon.,bunny asked for a blue balloon,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,the man said : that would be (ten[-:]) [~_I_mean] : one dollar please.,the man said that would be one dollar please,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,bunny look/ed in his pocket/s.,bunny looked in his pockets,0 4 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,(but) : [~_oh_no] that is five cent/s for a balloon.,that is five cents for a balloon,0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,[~_oh] (um uh) bunny look/ed in his pocket/s!,bunny looked in his pockets,0 4 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and he only kept his money at home.,and he only kept his money at home,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,then : mister bunny : said well I guess you can not buy a : balloon if you do not have five cent/s.,then mister bunny said well I guess you can not buy a balloon if you do not have five cents,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,then they saw a doctor[-:] bunny there : and[-:] said : miss bunny : (can we) can me and my friend please have five cent/s each?,then they saw a doctor bunny there and said miss bunny can me and my friend please have five cents each,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,we really want a purple and blue : balloon.,we really want a purple and blue balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,bunny point/ed it out and : lift/ed up his pocket/s.,bunny pointed it out and lifted up his pockets,0 4 0 0 0 4 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,oh[!] you have no money said : miss : bunny.,oh you have no money said miss bunny,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,I guess I will have to give you five cent/s each.,I guess I will have to give you five cents each,0 0 0 0 0 0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,so she gave the man five cent/s.,so she gave the man five cents,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and (they both got) : bunny got a blue balloon.,and bunny got a blue balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and : kangaroo got : a purple one.,and kangaroo got a purple one,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,thank[!] you said the man for the coin/s.,thank you said the man for the coins,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and they : both play/ed with their : balloon/s.,and they both played with their balloons,0 0 0 4 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and : miss bunny said make sure you tie it somewhere safe : (a) so it do/3s not get loose and float : away.,and miss bunny said make sure you tie it somewhere safe so it does not get loose and float away,0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,an elephant and a giraffe [EU].,an elephant and a giraffe,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and the elephant is : bounce/ing the ball[-:].,and the elephant is bouncing the ball,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,then the ball go/3s in the water[-:].,then the ball goes in the water,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,then the : giraffe jump/3s in the water and (start/3s swimming[-:]) : start/3s (sw) swimming.,then the giraffe jumps in the water and starts swimming,0 0 0 3 0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and the elephant is : like this [~_pointing_to_the_pictures_on__page].,and the elephant is like this,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,remember I can not see the picture/s.,remember I can not see the pictures,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,then the : giraffe got the ball and pass/ed it back to the elephant.,then the giraffe got the ball and passed it back to the elephant,0 0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,then she is so happy.,then she is so happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,I see the : elephant and the giraffe.,I see the elephant and the giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and the (giras) : giraffe is all dry[-:].,and the giraffe is all dry,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,then the[-:] elephant start/3s run/ing : look/ing at the giraffe.,then the elephant starts running looking at the giraffe,0 0 0 3 6 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,then she slip/3s on some water[-:].,then she slips on some water,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and then she fall/3s on her knee and get/3s hurt[-:].,and then she falls on her knee and gets hurt,0 0 0 3 0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and then : one of (the : thing/s that) the guard/3s come|come[EW:comes] with a bandage[-:].,and then one of the guards come with a bandage,0 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and then he put/3s it on.,and then he puts it on,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and she gots[EW:has] her eye/s close/ed[-:].,and she gots her eyes closed,0 0 0 0 1 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,she is sit/ing on a bench[-:].,she is sitting on a bench,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and : he told her : to look at that sign.,and he told her to look at that sign,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,(and sawed) and she sawed|see[EW:saw] no run/ing.,and she sawed no running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,he has a plane[-:].,he has a plane,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,(and) and she is talk/ing to him.,and she is talking to him,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and then he make/3s it fly.,and then he makes it fly,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and then she is : look/ing at it.,and then she is looking at it,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,(and) : (and) and she never sawed|see[EW:saw] one before.,and she never sawed one before,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,then she grab/3s it from him.,then she grabs it from him,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,(and he is) and he say/3s hey[-:].,and he says hey,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,then she accident[EW:accidentally] drop/ed it.,then she accident dropped it,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and it land/3s in the water[-:].,and it lands in the water,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,then he get/3s mad at the elephant.,then he gets mad at the elephant,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,then the : guard : come/3s.,then the guard comes,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,(and she) and he see/3s the plane in the water[-:].,and he sees the plane in the water,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and the elephant is walk/ing.,and the elephant is walking,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,then she tell/3s (the) : the (s) guard[-:] (that) : what happen/ed.,then she tells the guard what happened,0 0 3 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,(and) and the giraffe is like just stand/ing look/ing at his airplane.,and the giraffe is like just standing looking at his airplane,0 0 0 0 0 0 6 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,then the : guard try/3s to get it.,then the guard tries to get it,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,but he can not[-:].,but he can not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and (then he) then the giraffe start/3s cry/ing.,and then the giraffe starts crying,0 0 0 0 3 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and he is on his knees[-:].,and he is on his knees,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,then a girl elephant come/3s with a net and : try/3s to get it out.,then a girl elephant comes with a net and tries to get it out,0 0 0 0 3 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and she gots|get[EW:gets] it.,and she gots it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and she is : pull/ing[-:].,and she is pulling,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,(and) and he is : start/ing to stop cry/ing [EU].,and he is starting to stop crying,0 0 0 6 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and then he stop/ed.,and then he stopped,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and he is so happy.,and he is so happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,then he is hug/ing it.,then he is hugging it,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and the elephant is : like this [~_wraps_arms_around_self].,and the elephant is like this,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,I see a rabbit[-:] and a dog[-:].,I see a rabbit and a dog,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,(and) : (and the) and (he) (she) the dog : made a sandcastle.,and the dog made a sandcastle,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and the rabbit want/3s to help too[-:].,and the rabbit wants to help too,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,(then he puts) : then he get/3s the bucket and fill/3s it up with sand.,then he gets the bucket and fills it up with sand,0 0 3 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,(then he says) and then he is go/ing to dump it on the sandcastle.,and then he is going to dump it on the sandcastle,0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,(then) (then the sandcas) (then all the sand is : on) (and all the san) (and all) and the sandcastle is burry/ed.,and the sandcastle is burryed,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,(and the dog is) : (and the) : and the : rabbit is like : with his mouth open : look/ing at the sandcastle.,and the rabbit is like with his mouth open looking at the sandcastle,0 0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,the dog is : look/ing at the sandcastle on his knees[-:].,the dog is looking at the sandcastle on his knees,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,then the dog has to make the sandcastle again.,then the dog has to make the sandcastle again,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and the rabbit is stand/ing look/ing : up.,and the rabbit is standing looking up,0 0 0 0 6 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and the dog is cry/ing.,and the dog is crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,I see a dog in the forest with a picnic basket.,I see a dog in the forest with a picnic basket,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and the same with the rabbit.,and the same with the rabbit,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and the dog is like : look/ing to see how far.,and the dog is like looking to see how far,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and (then) : then when the dog get/3s there : the rabbit is there[-:].,and then when the dog gets there the rabbit is there,0 0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,(then the dog) : then the : rabbit finish/ed eat/ing.,then the rabbit finished eating,0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and he is : pat/ing his tummy : with his mouth open.,and he is patting his tummy with his mouth open,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and the dog : is just eat/ing a sandwich.,and the dog is just eating a sandwich,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,(then he) then the rabbit get/3s sick.,then the rabbit gets sick,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,(and) and then the dog stop/3s drink/ing and stop/3s eat/ing.,and then the dog stops drinking and stops eating,0 0 0 0 3 6 0 3 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,then he run/3s to a nurse[-:] : and tell/3s the nurse[-:].,then he runs to a nurse and tells the nurse,0 0 3 0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,(then) (then sh) (sh) then the dog (pull/ed[-:]) pull/ed the nurse over.,then the dog pulled the nurse over,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,(and he che) and the nurse check/ed : at the rabbit [EU].,and the nurse checked at the rabbit,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and then he feel/3s better.,and then he feels better,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and the dog is stand/ing.,and the dog is standing,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,I see a dog.,I see a dog,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and : the dog (w) *is hold/ing a wagon [EU].,and the dog holding a wagon,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and a balloon is tie/ed to the wagon.,and a balloon is tied to the wagon,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and the rabbit is : wave/ing.,and the rabbit is waving,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and the dog is look/ing at the rabbit.,and the dog is looking at the rabbit,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,then the : rabbit say/3s what a nice balloon.,then the rabbit says what a nice balloon,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and he is : get/ing his (con) hand close to it.,and he is getting his hand close to it,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and (then the) (then) then the dog is look/ing at the balloon/s smile/ing.,and then the dog is looking at the balloons smiling,0 0 0 0 0 6 0 0 1 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,then the rabbit untie/3s it.,then the rabbit unties it,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and the dog stop/3s smile/ing.,and the dog stops smiling,0 0 0 3 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and he go/3s [~_gasps].,and he goes,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,then the balloon go/3s up up in the sky[-:].,then the balloon goes up up in the sky,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and (then it is get/ing clo) then it : disappear/ed in the sky.,and then it disappeared in the sky,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and the : dog is so mad at the rabbit.,and the dog is so mad at the rabbit,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,(then they went to buy an) then the rabbit went to buy a new[!] balloon.,then the rabbit went to buy a new balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and he said : can I have one of those balloon/s?,and he said can I have one of those balloons,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and he said five cent/s.,and he said five cents,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and he did not have no[EW:any] money.,and he did not have no money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and then the rabbit had an idea.,and then the rabbit had an idea,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,but he was sad.,but he was sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,(and) : and then he : (l) turn/ed around and went walk/ing.,and then he turned around and went walking,0 0 0 4 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and then he got the nurse[-:].,and then he got the nurse,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and (then the) : then (it th) (he was) (he got it) (he) : he was still walk/ing.,and then he was still walking,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and then he got the nurse[-:].,and then he got the nurse,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and then he said : (I letted go of t) (of her) I untie/ed her : balloon!,and then he said I untied her balloon,0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and then it went up up in the sky.,and then it went up up in the sky,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and then I can not buy a new one because I have no money.,and then I can not buy a new one because I have no money,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,(then) : (then she) (then) : then she buyed|buy[EW:bought] two[!] balloon/s one for each.,then she buyed two balloons one for each,0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,(and[-:] the do) one for the dog and one for the rabbit.,one for the dog and one for the rabbit,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,then they are so happy now.,then they are so happy now,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,the boy said ooh cool!,the boy said ooh cool,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and (the elephant) the elephant play|play[EW:played] with *a soccer ball (umhm)[EU].,and the elephant play with soccer ball,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see the giraffe is sorry to take the elephant [EU].,and see the giraffe is sorry to take the elephant,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and (that is : and the) see and he catch|catch[EW:caught] it all the way he can long [EU].,and see and he catch it all the way he can long,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,he (went) got[!] long [EU].,he got long,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,long can not[?] [EU].,long can not,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,he got little arm [EU].,he got little arm,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and he swim|swim[EW:swam].,and he swim,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,he can not swim.,he can not swim,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and he catch|catch[EW:caught] the[?] ball.,and he catch the ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,he give|give[EW:gave] it to : (the um) the elephant.,he give it to the elephant,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and give|give[EW:gave] it back[?].,and give it back,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see?,and see,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,(he is ha) he gived|give[EW:gave] : the ball to giraffe.,he gived the ball to giraffe,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see : and this is done [+_bch].,and see and this is done,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see him.,and see him,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and (he) he is happy!,and he is happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,a long time ago he is go/ing swimming pool [EU].,a long time ago he is going swimming pool,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and (he) the sign said no run/ing : because it is slippery[!].,and the sign said no running because it is slippery,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,a long time he is go/ing in the pool[!] : and splash/ing in the pool [EU].,a long time he is going in the pool and splashing in the pool,0 0 0 0 0 6 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and he slip|slip[EW:slipped].,and he slip,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,"(and he hurt heself[EW:himself] and uh) and he hurt himself [~_pronounced_""heself""].",and he hurt himself,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and he got[EW:had] no blood.,and he got no blood,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,he got a little owie on [EU].,he got a little owie on,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,he got a bandaid.,he got a bandaid,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and : see this girl gave a bandaid on there [EU].,and see this girl gave a bandaid on there,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and (the mom) the elephant *is sad[!] oh dear yeah [EU].,and the elephant sad oh dear yeah,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and he said ow(*3).,and he said ow,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and this [EU].,and this,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,(and hes) and the elephant *is get/ing up [EU].,and the elephant getting up,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and : the strong[?] man : get|get[EW:got] the leg up (umhm).,and the strong man get the leg up,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and (he said) : he said the man is : too bad [EU].,and he said the man is too bad,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,(the man he) the man got a plane : (umhm).,the man got a plane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and (the) the elephant said wow.,and the elephant said wow,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see?,and see,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,(the giraffe said : to the) : and see the giraffe want/3s the plane back : because the giraffe is this[!] plane : because the elephant that[!] is yours (umhm) [EU].,and see the giraffe wants the plane back because the giraffe is this plane because the elephant that is yours,0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and (he is) the elephant threw it in the pool!,and the elephant threw it in the pool,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,: oh.,oh,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,"can you uncover your hands so I can hear you better, thank you.",can you uncover your hands so I can hear you better thank you,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see a long time : the elephant said sorry [EU]!,and see a long time the elephant said sorry,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see the giraffe is too mad.,and see the giraffe is too mad,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see?,and see,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see this man can not catch us (uhuh).,and see this man can not catch us,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,a long time : elephant can not do it [EU].,a long time elephant can not do it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,the big[!] elephant *is strong [EU].,the big elephant strong,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,oh no he can not reach it.,oh no he can not reach it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,nope!,nope,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,yeah.,yeah,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and a long time : (the giraffe is) the giraffe is too sad [EU].,and a long time the giraffe is too sad,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see him?,and see him,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,a catcher man : know|know[EW:knows] to do it [EU].,a catcher man know to do it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and he catch|catch[EW:caught] it.,and he catch it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and he knew.,and he knew,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and the long time he catch it : far away [EU].,and the long time he catch it far away,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,he give|give[EW:gave] it back there the giraffe.,he give it back there the giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and he said : thank you.,and he said thank you,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see the elephant too happy [EU].,and see the elephant too happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,(the dog) the dog make|make[EW:made] a castle.,the dog make a castle,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,(and he) (the rabbit say/3s) the rabbit shovel|shovel[EW:shovels].,the rabbit shovel,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and the rabbit : share/ed the dog [EU].,and the rabbit shared the dog,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and the rabbit is shovel[EW:shovelling].,and the rabbit is shovel,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,(and the see) and see him?,and see him,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,the dog is not happy : because the rabbit (do) (pour/ed um) pour/ed (the) the sand on the castle.,the dog is not happy because the rabbit poured the sand on the castle,0 0 0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,(and) (and the dog) and the dog is not happy.,and the dog is not happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,(and the dog is) and the rabbit is not happy too[EW:either].,and the rabbit is not happy too,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and : see is one castle [EU].,and see is one castle,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,then xx the way there (umhm).,then the way there,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,(and : there) and see?,and see,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and the dog fix|fix[EW:fixed] it all week.,and the dog fix it all week,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and the dog is sad.,and the dog is sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and the rabbit said : (um) not sorry [EU].,and the rabbit said not sorry,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and he do|do[EW:did] this.,and he do this,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,(and do) (and the) (he) the dog just keep do/ing it [EU].,the dog just keep doing it,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,it is almost done (umhm).,it is almost done,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,the rabbit is have/ing a picnic.,the rabbit is having a picnic,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,then the dog is have/ing a picnic.,then the dog is having a picnic,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and : see the dog.,and see the dog,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,the dog is (se) hungry.,the dog is hungry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see the rabbit is hungry.,and see the rabbit is hungry,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,(and the do) the rabbit said : (uh) too full.,the rabbit said too full,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and the dog is not too full.,and the dog is not too full,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,no.,no,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and (the) the rabbit is too full.,and the rabbit is too full,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,the dog (is) is[!] drink/ing.,the dog is drinking,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see the rabbit is (got) eat/ing a lots[EW:lot] of food.,and see the rabbit is eating a lots of food,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and the doctor said [~_high_pitched_voice] help help doctor.,and the doctor said help help doctor,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,[~_high_pitched_voice] (see uh) see the rabbit has got too full.,see the rabbit has got too full,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,[~_high_pitched_voice] (come come the um come come come come s come and) come to see what (the do) the rabbit done : (umhm)[EU].,come to see what the rabbit done,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see?,and see,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,the lady do|do[EW:did] fix (the dog um) the rabbit (umhm).,the lady do fix the rabbit,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see?,and see,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,(the ra) it is suppose/ed to xx the rabbit.,it is supposed to the rabbit,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,(mhm) and see him?,and see him,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,the rabbit : *is take/ing (the doctor from) the doctor from be[?] : (umhm) [EU].,the rabbit taking the doctor from be,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,see?,see,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,along time the rabbit come|come[EW:came] and said hi [EU].,along time the rabbit come and said hi,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see.,and see,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,the dog said hi.,the dog said hi,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,(and the dog) and the rabbit wrap/ed his balloon (umhm).,and the rabbit wrapped his balloon,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and (see he said) (he) (the dog) see the rabbit push/ed the dog.,and see the rabbit pushed the dog,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and : the rabbit (doing t) : *is pop/ing the balloon (umhm) [EU].,and the rabbit popping the balloon,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see?,and see,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and[-:] the dog is come/ing all day.,and the dog is coming all day,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see?,and see,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,the rabbit *is take/ing this : thing off [EU].,the rabbit taking this thing off,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see the dog is (not) not happy.,and see the dog is not happy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see?,and see,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and the long time the rabbit catch|catch[EW:caught] it [EU].,and the long time the rabbit catch it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and the dog : will catch it (umhm).,and the dog will catch it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see?,and see,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,the dog is too mad.,the dog is too mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see the rabbit is not too (mad) mad because he chew/ed gently (umhm).,and see the rabbit is not too mad because he chewed gently,0 0 0 0 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and he get[EW:got] another balloon : (uhhm yeah).,and he get another balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and he said [~_high_pitched_voice] we have a balloon (yeah umhm)?,and he said we have a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and he said [~_low_pitched_voice] (um) no you have no money change : now [EU].,and he said no you have no money change now,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and he said : oh dear.,and he said oh dear,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and he said [~_low_pitched_voice] no.,and he said no,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,no change[?] (umhm).,no change,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,(and the doctor : thought) (the rabbit said hm) (the doctor said) : (the) the doctor said [~_high_pitched_voice] hurry get the doctor.,the doctor said hurry get the doctor,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and the doctor got the change.,and the doctor got the change,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,[~_high_pitched_voice] (we have) you give[?] balloon to us [EU]?,you give balloon to us,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,yes : and he said he got change (yep umhm).,yes and he said he got change,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,he is happy and change [EU].,he is happy and change,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and a long time ago : the rabbit give|give[EW:gave] change to the rabbit (umhm).,and a long time ago the rabbit give change to the rabbit,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and he is happy he get|get[EW:got] *a balloon[-:] (umhm) [EU].,and he is happy he get balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,the elephant was bounce/ing the ball.,the elephant was bouncing the ball,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the zebra was watch/ing.,and the zebra was watching,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,(the ele) the elephant : got the ball : into the water[-:].,the elephant got the ball into the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then the (z) elephant was so sad.,and then the elephant was so sad,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the zebra : was try/ing to get the ball.,and the zebra was trying to get the ball,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,the[-:] zebra got her ball.,the zebra got her ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,then : the zebra : gave her her ball.,then the zebra gave her her ball,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then : the elephant was so happy.,and then the elephant was so happy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the : zebra was happy.,and the zebra was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,the[-:] elephant : want/ed to : go into the water.,the elephant wanted to go into the water,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,but it was so[!] deep.,but it was so deep,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then she ran[-:].,and then she ran,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then she slip/ed.,and then she slipped,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then she got a cut.,and then she got a cut,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the : zebra was so[!] : sad.,and the zebra was so sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the : elephant was really[!] sad.,and the elephant was really sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then the elephant cry/ed.,and then the elephant cried,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then the lifeguard : went : to her.,and then the lifeguard went to her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then : the lifeguard put a bandaid on : the elephant.,and then the lifeguard put a bandaid on the elephant,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then she just sit|sit[EW:sat] down on the bench.,and then she just sit down on the bench,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then it was start/ing to hurt.,and then it was starting to hurt,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,she was so[-:] : silly.,she was so silly,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,the zebra[-:] : was happy with his airplane in his hand/s.,the zebra was happy with his airplane in his hands,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the elephant was happy too.,and the elephant was happy too,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then the[-:] : elephant (was) : was : (um) : kind of : sad.,and then the elephant was kind of sad,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and[-:] the zebra was play/ing with his airplane.,and the zebra was playing with his airplane,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then the zebra was sad because the : elephant took : his airplane away.,and then the zebra was sad because the elephant took his airplane away,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and she was happy.,and she was happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then it (f) : went into the water.,and then it went into the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,it was go/ing to sink.,it was going to sink,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the zebra : was so mad.,and the zebra was so mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the lifeguard : was : sad.,and the lifeguard was sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the : elephant was sad.,and the elephant was sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the zebra was sad because it was sink/ing.,and the zebra was sad because it was sinking,0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then he could not get his : airplane.,and then he could not get his airplane,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,the lifeguard was try/ing to get : (it/z airplane) his airplane.,the lifeguard was trying to get his airplane,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,but she was so sad.,but she was so sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the zebra was cry/ing.,and the zebra was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then : someone got a net.,and then someone got a net,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,(and got) (and) : and she : put it in the water and got it.,and she put it in the water and got it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then : she gave : the airplane to the zebra.,and then she gave the airplane to the zebra,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then he was so[!] happy again.,and then he was so happy again,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the : elephant was so happy again too.,and the elephant was so happy again too,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,(um) : the : both kid/s[-:] are make/ing a sandcastle : with sand.,the both kids are making a sandcastle with sand,0 0 1 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then[-:] : the rabbit : and the dog [EU].,and then the rabbit and the dog,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,the dog was make/ing the sandcastle.,the dog was making the sandcastle,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the rabbit was put/ing sand into a bucket[!].,and the rabbit was putting sand into a bucket,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then[-:] : the rabbit[-:] pour/ed it onto the sandcastle.,and then the rabbit poured it onto the sandcastle,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the dog (fel) felt (um) : cross/ed[EW:cross] : with the dog.,and the dog felt crossed with the dog,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then[-:] : the dog : almost smile|smile[EW:smiled].,and then the dog almost smile,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the : rabbit was scare/ed.,and the rabbit was scared,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then the dog cry/ed.,and then the dog cried,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then : the dog said (um) : sorry!,and then the dog said sorry,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,you have to build it : again!,you have to build it again,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,the dog and rabbit : saw each other : on a[-:] path.,the dog and rabbit saw each other on a path,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,(and they s) (and the) and they want to have a picnic.,and they want to have a picnic,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and so[-:] the rabbit want|want[EW:wants] to eat : everything in : (it) his basket [~_pronounced_/baesIk/].,and so the rabbit want to eat everything in his basket,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,(and) and the dog did not.,and the dog did not,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and he took one thing at a time.,and he took one thing at a time,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then the rabbit was full.,and then the rabbit was full,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then : he did not want to eat nothing[EW:anything] else : because he was full.,and then he did not want to eat nothing else because he was full,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then the dog[-:] : ran to the : doctor : (and) : and grab/ed her (to the little) : (to) : (to) to the : blanket.,and then the dog ran to the doctor and grabbed her to the blanket,0 0 0 0 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then the doctor was : check/ing the rabbit.,and then the doctor was checking the rabbit,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then[-:] the doctor took him home : without the basket.,and then the doctor took him home without the basket,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,the dog[-:] had a wagon with a balloon on it.,the dog had a wagon with a balloon on it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,the rabbit want|want[EW:wanted] to have it.,the rabbit want to have it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the dog : (um) : did not hold (onto the) : (on the) : on[-:] it.,and the dog did not hold on it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the rabbit took it off.,and the rabbit took it off,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and : he was so happy.,and he was so happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then he[-:] : tie/ed off of it.,and then he tied off of it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and he let goed[EW:go] of it.,and he let goed of it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the dog was sad.,and the dog was sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then[-:] : the rabbit was : sad.,and then the rabbit was sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the dog was mad[-:][!].,and the dog was mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then the dog[-:] was (re) so mad of the rabbit [EU].,and then the dog was so mad of the rabbit,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,(and : he wa) and the rabbit was happy (to) (saw) he saw : balloon/s.,and the rabbit was happy he saw balloons,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the rabbit want/ed a balloon (from the : rabbit) from the big rabbit.,and the rabbit wanted a balloon from the big rabbit,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then : the rabbit did not have any money.,and then the rabbit did not have any money,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then : (he could not get any of ba) (not a balloon) he can not get a balloon.,and then he can not get a balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then they were both sad.,and then they were both sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,(and then : he were) (and he was) and the rabbit was happy.,and the rabbit was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then the dog stay/ed by the rabbit.,and then the dog stayed by the rabbit,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the rabbit went over to the doctor.,and the rabbit went over to the doctor,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the rabbit said to the doctor : (um) : he want/ed a balloon.,and the rabbit said to the doctor he wanted a balloon,0 0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and[-:] : the doctor gave some money : to the : rabbit.,and the doctor gave some money to the rabbit,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then the : rabbit : (um) : give|give[EW:gave] the balloon/s to the : rabbit and the dog.,and then the rabbit give the balloons to the rabbit and the dog,0 0 0 0 0 0 1 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then they both each got a balloon from the : rabbit because the : doctor : had some money[-:].,and then they both each got a balloon from the rabbit because the doctor had some money,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,once upon a time (there was a little : uh :) a little : elephant came along : and saw (a g) : (uh a girl with um) : a boy with lot/s of ball/s.,once upon a time a little elephant came along and saw a boy with lots of balls,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then : one went in!,and then one went in,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and[-:] : she accidentally : push/ed him in.,and she accidentally pushed him in,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,so : (um) : he dived|dive[EW:dove] under the water and got the ball and give|give[EW:gave] it back to her.,so he dived under the water and got the ball and give it back to her,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,(and then he) (and then he : um) and then she like/ed him a lot.,and then she liked him a lot,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,once upon a time there was : a little boy and a girl want/ing to go swim/ing.,once upon a time there was a little boy and a girl wanting to go swimming,0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then : (um um) she point/ed to the pool.,and then she pointed to the pool,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then : she dived|dive[EW:dove] in.,and then she dived in,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and she hurt herself : bad.,and she hurt herself bad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then : she jump/ed up.,and then she jumped up,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and she was cry/ing.,and she was crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then the life (gua) guard came along : and then put a bandaid on.,and then the life guard came along and then put a bandaid on,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,(and then) : and then : he made her (: um) sit on a bench for awhile : until it did not stop : to sting.,and then he made her sit on a bench for awhile until it did not stop to sting,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then : the lifeguard : came along and : said : nobody sit/3s in the middle.,and then the lifeguard came along and said nobody sits in the middle,0 0 0 0 0 0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,once upon a time (um : um) : a boy came up from the pool with his toy airplane : that he can play in the pool.,once upon a time a boy came up from the pool with his toy airplane that he can play in the pool,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,(and then) and then : (um) he : just pop/ed up and scare/ed the elephant girl.,and then he just popped up and scared the elephant girl,0 0 0 0 4 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then he : flewed|flew[EW:flew] around and stuck his tongue out.,and then he flewed around and stuck his tongue out,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,(and she) and she went : like that [~_sticks_out_tongue].,and she went like that,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,(and then : she) and then she got a little embarrass/ed[!].,and then she got a little embarrassed,0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then she just grab/ed the airplane from him and took off with it.,and then she just grabbed the airplane from him and took off with it,0 0 0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then : she (um : um) accidentally put it in : (um) the water : by accident.,and then she accidentally put it in the water by accident,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then : it accidentally sinked|sink[EW:sunk].,and then it accidentally sinked,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then : the cow got very angry with her.,and then the cow got very angry with her,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then the lifeguard came along.,and then the lifeguard came along,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and : she said it look/3s like (she) I am in trouble!,and she said it looks like I am in trouble,0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,so he try/3s to go in and reach it.,so he tries to go in and reach it,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,: [~_well] : then (: um) : he start/ed to cry because he like/ed that airplane.,then he started to cry because he liked that airplane,0 0 4 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then : the girl[!] lifeguard came along : and said here is something that : you can try to get it with.,and then the girl lifeguard came along and said here is something that you can try to get it with,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then : she got it for him.,and then she got it for him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then she said there is your toy airplane back.,and then she said there is your toy airplane back,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,but do not put it back in.,but do not put it back in,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and make sure that girl do/3s not : dive it back in again.,and make sure that girl does not dive it back in again,0 0 0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,so : (um) he was so happy to see his airplane again.,so he was so happy to see his airplane again,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,once upon a time : there was a little[!] : bunny.,once upon a time there was a little bunny,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,he came along : and said : hey we have the same one.,he came along and said hey we have the same one,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,but : mine is bigger!,but mine is bigger,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,can I play with you!,can I play with you,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,so : and then they start/ed to play.,so and then they started to play,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then : he : pour/ed that on to make (an) a different one that could look (bret) better.,and then he poured that on to make a different one that could look better,0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then he wreck/ed the castle.,and then he wrecked the castle,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and he feeled|feel[EW:felt] bad.,and he feeled bad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then : she was start/ing to cry.,and then she was starting to cry,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,well he was embarrass/ed.,well he was embarrassed,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,once upon a time : (a little) a little girl dog (came : um um) came along while a bunny came along.,once upon a time a little girl dog came along while a bunny came along,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,they both had basket/s.,they both had baskets,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,but (they were um) : one was go/ing this way.,but one was going this way,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and one was go/ing that way.,and one was going that way,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then : they start/ed to have a snack.,and then they started to have a snack,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,but (he) he was suppose/ed to leave that for his grandma : out in the wood/s.,but he was supposed to leave that for his grandma out in the woods,0 0 0 4 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then : he drank it.,and then he drank it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and he was get/ing with (a) : a big fat tummy : from eat/ing all that junk.,and he was getting with a big fat tummy from eating all that junk,0 0 0 6 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then he : was not feel/ing very good.,and then he was not feeling very good,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then (sh) she call/ed for her dad.,and then she called for her dad,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then : the dad came and fix/ed him : and : point/ed that way.,and then the dad came and fixed him and pointed that way,0 0 0 0 0 0 4 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then he felt better again.,and then he felt better again,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,once upon a time : a little girl came : along with her wagon and tie/ed a balloon to : the wheel to it.,once upon a time a little girl came along with her wagon and tied a balloon to the wheel to it,0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then a boy : bunny rabbit came along : and said hey can I have that balloon.,and then a boy bunny rabbit came along and said hey can I have that balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and she said of course you can!,and she said of course you can,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then he took it.,and then he took it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then he hurt himself : because he got a little tire/ed.,and then he hurt himself because he got a little tired,0 0 0 0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then : he got it.,and then he got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and (he did not know) they did not know it was go/ing to [~__gonna] float up in the air.,and they did not know it was going to float up in the air,0 0 0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,but (the) at least the girl did.,but at least the girl did,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,(um) but he did not know that very good[EW:well].,but he did not know that very good,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,so he try/ed to get it back.,so he tried to get it back,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,but he could not reach.,but he could not reach,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then all that was left of it : was half a string.,and then all that was left of it was half a string,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then they went : to go and get another one from the balloon man.,and then they went to go and get another one from the balloon man,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,but that cost : five dollar/s.,but that cost five dollars,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and he[!] said could we get another two[!] balloon/s please?,and he said could we get another two balloons please,0 0 0 0 0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,: five buck/s kid!,five bucks kid,0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and he said but : sir I do not have five buck/s.,and he said but sir I do not have five bucks,0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,could we just get them for free please?,could we just get them for free please,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then they went to go and ask the dad : of those kid/s.,and then they went to go and ask the dad of those kids,0 0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and he[?] said do you have five dollar/s : to get another balloon for us dad?,and he said do you have five dollars to get another balloon for us dad,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,so he did.,so he did,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then : they both got a balloon.,and then they both got a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then he paid.,and then he paid,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then : he smile/ed at the kid/s : and said you are welcome.,and then he smiled at the kids and said you are welcome,0 0 0 4 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,Two kid/s *are meet/ing each other [EU].,Two kids meeting each other,0 1 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,two kid/s had a ball.,two kids had a ball,0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,and it fell in the water.,and it fell in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,one of the kid/s went to go get the ball in the water.,one of the kids went to go get the ball in the water,0 0 0 1 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,he gave the ball to the other kid.,he gave the ball to the other kid,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,"and when the (kid) other kid was wet, the other kid did not want to [~_wanna] go close.",and when the other kid was wet the other kid did not want to go close,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,Two kid/s[-:] are about to jump in the diving pool.,Two kids are about to jump in the diving pool,0 1 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,one kid : say/3s no : because she do/3s not want to[:_wanna] get wet.,one kid says no because she does not want to get wet,0 0 3 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,the other one run/3s away : when the sign say/3s no run/ing.,the other one runs away when the sign says no running,0 0 0 3 0 0 0 0 3 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,she fell down because she did not see the sign.,she fell down because she did not see the sign,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,she had this big scratch on her knee.,she had this big scratch on her knee,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,then her head start/ed to hurt.,then her head started to hurt,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,then : they put her on a bench : to let her knee heal.,then they put her on a bench to let her knee heal,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,the lifeguard point/ed : to the sign no run/ing.,the lifeguard pointed to the sign no running,0 0 4 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,One girl *is scream/ing [EU].,One girl screaming,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,and the other kid *is laugh/ing [EU].,and the other kid laughing,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,one kid *is play/ing with the airplane [EU].,one kid playing with the airplane,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,and the other kid *is just : stare/ing at him [EU].,and the other kid just staring at him,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,then the other kid steal/3s the airplane away from : the boy.,then the other kid steals the airplane away from the boy,0 0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,then : the airplane fell in the water.,then the airplane fell in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,then it start/ed to sink.,then it started to sink,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,then the lifeguard came.,then the lifeguard came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,and the lifeguard talk/ed to them what happen/ed [EU].,and the lifeguard talked to them what happened,0 0 0 4 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,the lifeguard try/ed to reach the airplane in the water.,the lifeguard tried to reach the airplane in the water,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,but he could not reach it.,but he could not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,so he got a fish/ing net.,so he got a fishing net,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,he use/ed the fish/ing net : to get : the airplane out of the water.,he used the fishing net to get the airplane out of the water,0 4 0 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,(he) she got the airplane out.,she got the airplane out,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,now they were both happy.,now they were both happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,two kid/s *are play/ing in the sandbox [EU].,two kids playing in the sandbox,0 1 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,two of the kid/s *are try/ing to build a sandcastle [EU].,two of the kids trying to build a sandcastle,0 0 0 1 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,the other kid dump/3s sand on the sandcastle to ruin it.,the other kid dumps sand on the sandcastle to ruin it,0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,then the sandcastle break/3s.,then the sandcastle breaks,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,the kid is sad now.,the kid is sad now,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,two kid/s : *are take/ing a jog to : have picnic [EU].,two kids taking a jog to have picnic,0 1 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,the one kid is eat/ing like a pig.,the one kid is eating like a pig,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,and the other is just take/ing out a sandwich.,and the other is just taking out a sandwich,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,the other one is full while the other one is still eat/ing.,the other one is full while the other one is still eating,0 0 0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,the other one : is still full.,the other one is still full,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,and the other one (is) start/3s to worry about the : other kid.,and the other one starts to worry about the other kid,0 0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,then : the other kid (start/3s to ask a lad) start/3s to ask a nurse : to help him.,then the other kid starts to ask a nurse to help him,0 0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,the nurse help/3s (the) the kid (um) : with his full stomach.,the nurse helps the kid with his full stomach,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,she tell/3s the kid to open his mouth.,she tells the kid to open his mouth,0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,the kid is okay now.,the kid is okay now,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,one kid *is walk/ing with a wagon [EU].,one kid walking with a wagon,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,and the other one *is try/ing to catch up [EU].,and the other one trying to catch up,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,the other one *is try/ing to grab the balloon [EU].,the other one trying to grab the balloon,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,the other kid try/3s to untie the balloon from the wagon.,the other kid tries to untie the balloon from the wagon,0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,the balloon fly/3s away.,the balloon flies away,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,the kid get/3s mad.,the kid gets mad,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,and the other one just stare/3s at the balloon fly/ing in the air.,and the other one just stares at the balloon flying in the air,0 0 0 0 0 3 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,(a) another person is hold/ing a bunch of balloon/s for sale.,another person is holding a bunch of balloons for sale,0 0 0 6 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,he is ask/ing (to go) : to give one of the balloon/s to the kid because the other kid lost his balloon.,he is asking to give one of the balloons to the kid because the other kid lost his balloon,0 0 6 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,the man show/ed (the balloon) that the balloon/s are five cent/s.,the man showed that the balloons are five cents,0 0 4 0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,they did not get a balloon because they did not have any money.,they did not get a balloon because they did not have any money,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,then : a doctor came.,then a doctor came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,they ran to the doctor (to get) and ask/ed the doctor to buy them a balloon.,they ran to the doctor and asked the doctor to buy them a balloon,0 0 0 0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,the doctor bought them a balloon.,the doctor bought them a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,they were both happy.,they were both happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,: (um) the elephant was play/ing ball.,the elephant was playing ball,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,(the gira) (an) (a) and then it fell into the swimming pool.,and then it fell into the swimming pool,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,(and) (and then) the giraffe (an) (an) and then he was swim/ing.,the giraffe and then he was swimming,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,and then he got the ball.,and then he got the ball,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,: (an) (an) (and) and then the elephant love/ed it.,and then the elephant loved it,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,(um) this say/3s : no run/ing allow/ed in this town.,this says no running allowed in this town,0 3 0 6 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,(an) and then (the) the elephant want/ed to jump in the swimming pool.,and then the elephant wanted to jump in the swimming pool,0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,(a) and then she was run/ing.,and then she was running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,(a) and then she hurted|hurt[EW:hurt] herself.,and then she hurted herself,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,and then she need/ed a bandaid.,and then she needed a bandaid,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,then she cry/ed.,then she cried,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,(and) (and) and then she stop/ed.,and then she stopped,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,(and) : and then she was do/ing this [~_child_making_some_kind_of__unknown_gesture].,and then she was doing this,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,done [+_bch].,done,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,(um) her owie feeled|feel[EW:felt] better.,her owie feeled better,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,(an) : and then : there was a[EW:an] airplane.,and then there was a airplane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,: (an) and that was her airplane : to fly it.,and that was her airplane to fly it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,then it felled|fell[EW:fell] in the pool.,then it felled in the pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,: and then[-:] it was start/ing to sink.,and then it was starting to sink,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,(um) and then the airplane almost sinked|sink[EW:sank] down.,and then the airplane almost sinked down,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,then it was sink/ing more.,then it was sinking more,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,and then the man was try/ing to get it.,and then the man was trying to get it,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,: then it would be stuck there.,then it would be stuck there,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,and she[!] will get it.,and she will get it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,: she got[!] it.,she got it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,: she even (ga) gave it to the boy.,she even gave it to the boy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,: and then (that was) that was the giraffe/z.,and then that was the giraffe's,0 0 0 0 0 2 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,(um) they are build/ing a sandcastle.,they are building a sandcastle,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,and : maybe they like to do it.,and maybe they like to do it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,: (a) and the bunny is (pu) put/ing the sand in the bucket.,and the bunny is putting the sand in the bucket,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,then pour all this sand on the castle.,then pour all this sand on the castle,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,then it fell down.,then it fell down,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,: (and then there is al) : and then she need/ed to build it again.,and then she needed to build it again,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,they are go/ing to a picnic.,they are going to a picnic,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,(and) and the bunny rabbit is have/ing a carrot and a hot dog.,and the bunny rabbit is having a carrot and a hot dog,0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,(an he) and the bunny rabbit was full.,and the bunny rabbit was full,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,(and) and the doggy was not disappoint/ed.,and the doggy was not disappointed,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,and : (th) the bunny rabbit : (he) (he) he was lay/ing down : on the picnic.,and the bunny rabbit he was laying down on the picnic,0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,then : (he[-:] ) the doggy was pull/ing the doctor.,then the doggy was pulling the doctor,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,and the little bunny rabbit was sick.,and the little bunny rabbit was sick,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,and he feeled|feel[EW:felt] better.,and he feeled better,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,(um) the doggy was pull/ing the wagon.,the doggy was pulling the wagon,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,(an) : and the bunny rabbit saw a balloon[-:] (on) on the wagon.,and the bunny rabbit saw a balloon on the wagon,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,and : the bunny was try/ing to get it off.,and the bunny was trying to get it off,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,then it float/ed away.,then it floated away,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,then it was gone.,then it was gone,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,and then there was another guy with more balloon/s.,and then there was another guy with more balloons,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,(and) and then the little bunny rabbit ask/ed for a balloon.,and then the little bunny rabbit asked for a balloon,0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,: (he) and then the bunny rabbit did not have any money.,and then the bunny rabbit did not have any money,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,they did not get any balloon/s.,they did not get any balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,(th) and then they need/ed (to) (to) (to wait) to wait for another man[-:] : with balloon/s.,and then they needed to wait for another man with balloons,0 0 0 4 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,(and) (and) (and it) and (then) (the) then they would get a balloon.,and then they would get a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,and then : the guy would give them balloon/s[-:].,and then the guy would give them balloons,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,: (um) and then they got them.,and then they got them,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,(um) a[EW:an] elephant (s) (was) was play/ing ball/s [EU].,a elephant was playing balls,0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And a giraffe is there too.,And a giraffe is there too,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And then one of the ball/s (are) is in the water.,And then one of the balls is in the water,0 0 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And they want to get it.,And they want to get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And then the horse jump/ed in the water and swam to it.,And then the horse jumped in the water and swam to it,0 0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And then (what um) (the hor) the (gir) horse got it and gave it to (um) the elephant.,And then the horse got it and gave it to the elephant,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And then (um) the elephant look/3s like a girlfriend.,And then the elephant looks like a girlfriend,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And the horse (r) (r) look/3s like a boyfriend to me.,And the horse looks like a boyfriend to me,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And that is the end [+_bch].,And that is the end,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,(um) there is a sign that said no run/ing.,there is a sign that said no running,0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and the elephant : want/ed to go on the jumping board.,and the elephant wanted to go on the jumping board,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and : he start/ed to run.,and he started to run,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then (he s) he said let us go there.,and then he said let us go there,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then giraffe said : (um) there is a sign that say/3s no run/ing.,and then giraffe said there is a sign that says no running,0 0 0 0 0 0 0 0 0 3 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,(co) oh come on.,oh come on,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then she runned|run[EW:ran].,and then she runned,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and she was afraid that she will hurt herself [EU].,and she was afraid that she will hurt herself,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,but the (gira) the horse was try/ing to catch up to her : and help.,but the the horse was trying to catch up to her and help,0 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then she start/ed to cry.,and then she started to cry,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and : the guard came and put a bandaids[EW:bandaid] on her.,and the guard came and put a bandaids on her,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then : it hurt a little bit.,and then it hurt a little bit,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and he said : that will fix it up a little.,and he said that will fix it up a little,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and (then she) then he said see that said no run/ing.,and then he said see that said no running,0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and the giraffe was right.,and the giraffe was right,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,(um) The giraffe : that had a[EW:an] airplane [EU].,The giraffe that had a airplane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And (he) that elephant said can I play with it in the water.,And that elephant said can I play with it in the water,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,(And he said :) he was think/ing about it.,he was thinking about it,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,Then he said yes.,Then he said yes,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And he thought it will not sink.,And he thought it will not sink,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,But it did[!] sink.,But it did sink,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And then (the uh) the (gira) giraffe play/ed with it : right there : in his spot.,And then the giraffe played with it right there in his spot,0 0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And then (um the) the elephant was crazy.,And then the elephant was crazy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,Turn the page [+_bch].,Turn the page,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,Okay.,Okay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And then (the el) the elephant had it.,And then the elephant had it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And (he put) the elephant put it in : the water.,And the elephant put it in the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And it sinked|sink[EW:sunk].,And it sinked,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And : giraffe : did not know what he can do because the giraffe did not like go/ing in that water.,And giraffe did not know what he can do because the giraffe did not like going in that water,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And then he was (ang :) mad at the : elephant.,And then he was mad at the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And then the guard came.,And then the guard came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And : the guard was try/ing to reach it.,And the guard was trying to reach it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,Then he said : what is wrong with this?,Then he said what is wrong with this,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And then the elephant told him (um) like : giraffe gave me that.,And then the elephant told him like giraffe gave me that,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And then (: um) I put it in the water she said.,And then I put it in the water she said,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And then the guard try/ed to reach it.,And then the guard tried to reach it,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And then : (the) the giraffe was sad.,And then the giraffe was sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And then : (um) another elephant came and hadded|has[EW:had] a net.,And then another elephant came and hadded a net,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And (he) she caught it.,And she caught it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And : the giraffe was not sad any more.,And the giraffe was not sad any more,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And : they were happy : now.,And they were happy now,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,(and then the) and then the elephant say/3s good job (to) to that big elephant.,and then the elephant says good job to that big elephant,0 0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And then giraffe was happy : again.,And then giraffe was happy again,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,Once there was a rabbit and a dog.,Once there was a rabbit and a dog,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And the dog was build/ing a sandcastle : with the bunny.,And the dog was building a sandcastle with the bunny,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And the bunny said hmm maybe that is a little too big for us.,And the bunny said hmm maybe that is a little too big for us,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And then (the) the dog said no way!,And then the dog said no way,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And then : they made it a little bit bigger than that : and then : a little bit bigger.,And then they made it a little bit bigger than that and then a little bit bigger,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,(And this) (the dog was a little bit : too) and it was a little bit too[!] big.,and it was a little bit too big,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,The bunny said is this all right?,The bunny said is this all right,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,(um) okay : I think it is okay : the dog said.,okay I think it is okay the dog said,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And then the castle was broked|broke[EW:broken].,And then the castle was broked,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And : the dog hadded|has[EW:had] to built[EW:build] it all over again.,And the dog hadded to built it all over again,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And the dog was sad.,And the dog was sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And that is the end [+_bch].,And that is the end,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,once there was a dog : look/ing for some berry/s.,once there was a dog looking for some berries,0 0 0 0 0 6 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and the bunny was look/ing for some carrot/s.,and the bunny was looking for some carrots,0 0 0 0 6 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and he hop/ed along by beautiful butterfly/s.,and he hopped along by beautiful butterflies,0 0 4 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,because brother : I saw the butterfly was jump/ing on his back one time at the summer [+_bch].,because brother I saw the butterfly was jumping on his back one time at the summer,0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,then they hadded|has[EW:had] a picnic with the food they found.,then they hadded a picnic with the food they found,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then they were almost all done.,and then they were almost all done,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then they were already done.,and then they were already done,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then the bunny was sick.,and then the bunny was sick,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and the dog look/ed at him.,and the dog looked at him,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and he thinked|think[EW:thought] he was[!] sick.,and he thinked he was sick,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then : he bump/ed his head (on the) (on the ta) on the picnic table at the forest [EU].,and then he bumped his head on the picnic table at the forest,0 0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and (da) then (the) a doctor was come/ing by.,and then a doctor was coming by,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,"and he said doctor, doctor : that guy ate too much food.",and he said doctor doctor that guy ate too much food,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then the doctor said hmm maybe I should go over there.,and then the doctor said hmm maybe I should go over there,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then he went over there.,and then he went over there,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and he said see?,and he said see,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,not (do) too bad the doctor said.,not too bad the doctor said,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then he feeled|feel[EW:felt] his head.,and then he feeled his head,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and he tap/ed it.,and he tapped it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then : (his) (he) he tap/ed it.,and then he tapped it,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and he said aw.,and he said aw,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and the doctor said : say aw.,and the doctor said say aw,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then bunny (this) (put) bump/ed his head on the picnic table again.,and then bunny bumped his head on the picnic table again,0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then he was better.,and then he was better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,that is the end [+_bch].,that is the end,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,(um) the dog was carry/ing a balloon.,the dog was carrying a balloon,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and the bunny said : can I : see it.,and the bunny said can I see it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,(And then he was h) and then the dog said yes.,and then the dog said yes,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and he (talked) walk/ed toward/3s it.,and he walked towards it,0 0 4 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and he accidentally pop/ed it.,and he accidentally popped it,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then (he) he cry/ed.,and then he cried,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then (the) : (the) they hadded|has[EW:had] to get a new balloon : at their home.,and then they hadded to get a new balloon at their home,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,but they did not know which way was their home.,but they did not know which way was their home,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and it float/ed up in the sky when they got the other balloon.,and it floated up in the sky when they got the other balloon,0 0 4 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then : the dog was angry at the bunny.,and then the dog was angry at the bunny,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then there is a balloon seller : guy.,and then there is a balloon seller guy,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then they went towards him.,and then they went towards him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and he choosed|choose[EW:chose] another balloon.,and he choosed another balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then he said : it is five dollar/s.,and then he said it is five dollars,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then the bunny : open/ed up his pocket.,and then the bunny opened up his pocket,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and : he had no money.,and he had no money,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and : that guy said : do you have money?,and that guy said do you have money,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,(dog said) and the dog said (um) only (a um) a quarter.,and the dog said only a quarter,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,good then you can have a balloon.,good then you can have a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and your friend can.,and your friend can,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,so they both had a balloon.,so they both had a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then the doctor came along.,and then the doctor came along,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,(and he said : um can we) and then the doctor said which beautiful color/s balloon/s [EU]?,and then the doctor said which beautiful colors balloons,0 0 0 0 0 0 0 1 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then he took (um) all of the balloon/s.,and then he took all of the balloons,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and the kid/s were sad.,and the kids were sad,0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then : he buyed|buy[EW:bought] some for the kid/s.,and then he buyed some for the kids,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and he buyed|buy[EW:bought] some for the other kid/s at the doctor [EU].,and he buyed some for the other kids at the doctor,0 0 0 0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then they both play/ed with them.,and then they both played with them,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,that is the end [+_bch].,that is the end,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,once there was a dog and a[EW:an] elephant who were friend/s.,once there was a dog and a elephant who were friends,0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,and they want/ed to go swim/ing.,and they wanted to go swimming,0 0 4 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,they found a ball.,they found a ball,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,and giraffe want/ed to get it.,and giraffe wanted to get it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,so he jump/ed into the pool.,so he jumped into the pool,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,(eleph) elephant grab/ed the ball and : said yay[~!_laughing] : (um) : and then help/ed giraffe out.,elephant grabbed the ball and said yay and then helped giraffe out,0 4 0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,and giraffe was very proud of himself.,and giraffe was very proud of himself,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,giraffe and elephant want/ed to go for a swim.,giraffe and elephant wanted to go for a swim,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,elephant want/ed to jump off the diving board.,elephant wanted to jump off the diving board,0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,so she ran really fast : and (slip/ed on) : her knee got scrape/ed.,so she ran really fast and her knee got scraped,0 0 0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,the lifeguard came run/ing : and help/ed : and put a bandage on : elephant/z[~!_laughing] knee.,the lifeguard came running and helped and put a bandage on elephant's knee,0 0 0 6 0 4 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,elephant was feel/ing much better.,elephant was feeling much better,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,and then she had a time out for no run/ing.,and then she had a time out for no running,0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,giraffe and elephant were back[~!_laughing] at the swimming pool.,giraffe and elephant were back at the swimming pool,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,and they were fly/ing an airplane.,and they were flying an airplane,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,elephant grab/ed the airplane : and : accidentally drop/ed it in the pool.,elephant grabbed the airplane and accidentally dropped it in the pool,0 4 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,giraffe was very mad at elephant.,giraffe was very mad at elephant,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,and then the lifeguard came (and look/ed at) and look/ed at the airplane.,and then the lifeguard came and looked at the airplane,0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,elephant explain/ed what happen/ed.,elephant explained what happened,0 4 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,the lifeguard try/ed to grab it.,the lifeguard tried to grab it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,but his hand was : too small.,but his hand was too small,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,and he said I do not know what[~!_laughing] to do.,and he said I do not know what to do,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,(a la) and then a lady came with a net : and try/ed grab/ing the airplane.,and then a lady came with a net and tried grabbing the airplane,0 0 0 0 0 0 0 0 0 4 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,and she gave the airplane back to giraffe.,and she gave the airplane back to giraffe,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,giraffe was very please/ed and said thank you.,giraffe was very pleased and said thank you,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,once there was[EW:were] two friend/s.,once there was two friends,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,and they decide/ed to build a sandcastle together.,and they decided to build a sandcastle together,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,a bunny was (small) smaller than that dog [~_I_think_he_(i)s_a__dog].,a bunny was smaller than that dog,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,and he spill/ed the sand on top.,and he spilled the sand on top,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,and it was all crash/ed.,and it was all crashed,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,bunny was very : (um s) scare/ed.,bunny was very scared,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,(um) : dog : try/ed to build it back.,dog tried to build it back,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,rabbit and dog were go/ing on a picnic together.,rabbit and dog were going on a picnic together,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,rabbit was very hungry.,rabbit was very hungry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,so they start/ed to eat.,so they started to eat,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,rabbit ate (all) practically all[~!_laughing] (hi) the food : and got sick.,rabbit ate practically all the food and got sick,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,and dog ran up to (a lady) : [~_oh] that is a doctor : and said to come here.,and dog ran up to that is a doctor and said to come here,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,the doctor saw rabbit and was very scare/ed : and took rabbit : (to) to his mom.,the doctor saw rabbit and was very scared and took rabbit to his mom,0 0 0 0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,(ra) rabbit and : dog were : go/ing to [~_gonna] have a ride in the wagon.,rabbit and dog were going to have a ride in the wagon,0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,rabbit show/ed dog his nice balloon tie/ed[!] to the wagon.,rabbit showed dog his nice balloon tied to the wagon,0 4 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,rabbit try/ed to get it off to let : dog hold it.,rabbit tried to get it off to let dog hold it,0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,but then it slip/ed out of rabbit/z hand/s.,but then it slipped out of rabbit's hands,0 0 0 4 0 0 2 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,(um) : rabbit was very sad.,rabbit was very sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,and : dog was very mad.,and dog was very mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,so they went to a (n) guy sell/ing balloon/s and ask/ed.,so they went to a guy selling balloons and asked,0 0 0 0 0 0 6 1 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,can we have one of your balloon/s said rabbit.,can we have one of your balloons said rabbit,0 0 0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,[~_sighs] the : guy who was sell/ing balloon/s say/3s you need five cent/s.,the guy who was selling balloons says you need five cents,0 0 0 0 6 1 3 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,rabbit did not have any.,rabbit did not have any,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,so then : rabbit went up to ask again but act as if he was different.,so then rabbit went up to ask again but act as if he was different,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,and then rabbit ran to : a : doctor : and said : (um) : to come here.,and then rabbit ran to a doctor and said to come here,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,the : doctor paid the : balloon guy money for the balloon.,the doctor paid the balloon guy money for the balloon,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,and they each got their own balloon.,and they each got their own balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,there is an : elephant and a : giraffe.,there is an elephant and a giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and the elephant was bounce/ing her ball.,and the elephant was bouncing her ball,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and it fell in the river.,and it fell in the river,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and she was sad.,and she was sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and the giraffe went : towards it : and got it out for her.,and the giraffe went towards it and got it out for her,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and she was happy.,and she was happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,there was an elephant and : (the) a zebra.,there was an elephant and a zebra,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and : the elephant want/ed to go in the pool and was run/ing.,and the elephant wanted to go in the pool and was running,0 0 0 4 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and she slip/ed.,and she slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and she fell and bruise/ed her knee.,and she fell and bruised her knee,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,the lifeguard ran towards her : and put a bandaid on it.,the lifeguard ran towards her and put a bandaid on it,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and (she) he was not feel/ing okay.,and he was not feeling okay,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,: and : the lifeguard was mad.,and the lifeguard was mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,there is an elephant and a zebra.,there is an elephant and a zebra,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and : the zebra was play/ing with his : toy plane.,and the zebra was playing with his toy plane,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and the elephant grab/ed it from him.,and the elephant grabbed it from him,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and it drop/ed in the water.,and it dropped in the water,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and he was very angry at her.,and he was very angry at her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and the lifeguard look/ed at them.,and the lifeguard looked at them,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and : she (s) : was talk/ing to the lifeguard.,and she was talking to the lifeguard,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and the lifeguard try/ed to grab it.,and the lifeguard tried to grab it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,but he could not.,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and the giraffe was cry/ing.,and the giraffe was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and then (an uh) a lady elephant came with a net : and took it out (with it) with the fish net : and gave it back.,and then a lady elephant came with a net and took it out with the fish net and gave it back,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and he was happy.,and he was happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,there is (a rabbit and a) a rabbit and it/z friend.,there is a rabbit and it's friend,0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,they made a castle.,they made a castle,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and the bunny pour/ed : sand over top of it.,and the bunny poured sand over top of it,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,the dog was sad.,the dog was sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and the bunny was sad.,and the bunny was sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,the dog was cry/ing : try/ing to fix his castle.,the dog was crying trying to fix his castle,0 0 0 6 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,the bunny and the dog were take/ing picnic basket/s somewhere.,the bunny and the dog were taking picnic baskets somewhere,0 0 0 0 0 0 6 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,they found a nice place to eat.,they found a nice place to eat,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and they start/ed eat/ing.,and they started eating,0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,the bunny got full and fell.,the bunny got full and fell,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,(the dog went) the dog was sad.,the dog was sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,he ran : to (a) a doctor bunny : and pull/ed : her.,he ran to a doctor bunny and pulled her,0 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and (she :) she look/ed at the boy bunny lay/ing on the ground : and took him to the hospital.,and she looked at the boy bunny laying on the ground and took him to the hospital,0 0 4 0 0 0 0 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,the dog and the rabbit were run/ing.,the dog and the rabbit were running,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and the bunny : said look I have got a balloon.,and the bunny said look I have got a balloon,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,(the) the dog want/ed one.,the dog wanted one,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and the bunny was try/ing to untie his balloon.,and the bunny was trying to untie his balloon,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,xxx [~_says_something_under_breath].,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and it : went up into the sky.,and it went up into the sky,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and they could not reach it.,and they could not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and the dog was angry.,and the dog was angry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,then they : both saw : a bunny rabbit with balloon/s.,then they both saw a bunny rabbit with balloons,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and the bunny said I want that one.,and the bunny said I want that one,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,it is fifty cent/s.,it is fifty cents,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,they both did not have any money.,they both did not have any money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and they both want/ed one.,and they both wanted one,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,then they saw the doctor again.,then they saw the doctor again,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,they ran : to her and said they do not have any money.,they ran to her and said they do not have any money,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,but they want a balloon.,but they want a balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and (she gave : each : of) (sh) she gave the bunny (he) : ten cent/s.,and she gave the bunny ten cents,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and they each got a balloon.,and they each got a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and they were happy.,and they were happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,yay[-:] this is my new ball/s[EW:ball] : giraffe!,yay this is my new balls giraffe,0 0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,yay we can play with it!,yay we can play with it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,uhoh it went in the : swimming pool!,uhoh it went in the swimming pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,oh no we should have play/ing with it outside [EU]!,oh no we should have playing with it outside,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,I can get it!,I can get it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,I can swim [~_makes_sound_like_jumping_into_water]!,I can swim,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,oh no[~!_laughing].,oh no,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,: here is your ball.,here is your ball,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,thank you !,thank you,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,"[~_laughs_""hee_hee_hee_hee""] oh my lovely ball!",oh my lovely ball,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,oh[-:] let us[!] play in the swimming pool.,oh let us play in the swimming pool,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,goodie goodie gosh.,goodie goodie gosh,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,: come on let us go to the diving board.,come on let us go to the diving board,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,yipee.,yipee,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,oh(*3)[-:] [~_oomf] : take it easy.,oh take it easy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,: ow[-:]!,ow,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,oh no there is a no run/ing sign!,oh no there is a no running sign,0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,"[~_makes_sounds_""mmm_-:_pup_pup_pup""].",, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,you remember I can not see the picture/s.,you remember I can not see the pictures,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,"[~_makes_sounds_""eee__maaa] it is okay.",it is okay,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,now I am go/ing to put on the bench [EU].,now I am going to put on the bench,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,remember it is slippery.,remember it is slippery,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,so walk.,so walk,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,now I will tell you the rule/s.,now I will tell you the rules,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,[~_laughs] (ah) now look there is a no run/ing sign.,now look there is a no running sign,0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,so no run/ing.,so no running,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,oops [~_laughs].,oops,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,(t) hi want to [~_wanna] play with my new plane?,hi want to play with my new plane,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,[~_high_pitched_voice] of course[-:]!,of course,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,[~_growly_voice] (hm my) now[!] let us see[-:].,now let us see,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,"[~_makes_sound_effects_""pphh_ooo_-:""] : [~_high_pitched_voice] hey gimme!",hey gimme,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,I want to[:_wanna] try [~_inhales_sharply]!,I want to try,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,"[~_makes_sounds_""ooo""] oops!",oops,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,oh[-:].,oh,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,: now I can never play with it.,now I can never play with it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,"[~_makes_sounds_""errr__ooo_-:""].",, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,okay.,okay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,"[~_makes_sound_""errr""] [~_growly_voice] give me back my plane!",give me back my plane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,"[~_makes_sounds_""hm_hmmm_-:""] oh[-:] boy.",oh boy,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,okay what is happen/ing in the story?,okay what is happening in the story,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,I can not see the picture/s remember.,I can not see the pictures remember,0 0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,[~_high_pitched_voice] (uh I was play/ing) we were play/ing with the toy plane!,we were playing with the toy plane,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,[~_high_pitched_voice] and I accidentally drop/ed it in the water!,and I accidentally dropped it in the water,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,"[~_makes_sound_""errr""] [~_growly_voice] I can not reach it!",I can not reach it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,[~_makes_crying_sounds].,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,[~_growly_voice] oh well[-:] let us see.,oh well let us see,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,: sink(*3) [EU].,sink,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,hm I have got the handy dandy thing a[-:] net.,hm I have got the handy dandy thing a net,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,[~_growly_voice] (uh[-:]) is she go/ing to fish it out of there?,is she going to fish it out of there,0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,[~_makes_sound_effects] [~_growly_voice] yay she got it!,yay she got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,[~_inhales_sharply] [~_high_pitched_voice] my plane.,my plane,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,there you go.,there you go,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,: oh[-:] [~_laughs] yay[-:]!,oh yay,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,Doggy said[-:] : come and play with me in the sand box : to Rabbit.,Doggy said come and play with me in the sand box to Rabbit,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,Rabbit said okay.,Rabbit said okay,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,they made[-:] a sand castle.,they made a sand castle,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,Rabbit fill/ed the bucket with a shovel.,Rabbit filled the bucket with a shovel,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,he dump/ed the bucket onto Doggy/z[-:] sandcastle.,he dumped the bucket onto Doggy's sandcastle,0 4 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,Rabbit (wa) said oh no I broke your castle!,Rabbit said oh no I broke your castle,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,Doggy said it is okay.,Doggy said it is okay,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,but then he got sad.,but then he got sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,and he try/ed to make it : again.,and he tried to make it again,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,Rabbit sigh/ed.,Rabbit sighed,0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,Doggy said hi[!].,Doggy said hi,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,let us have a picnic in the wood/s.,let us have a picnic in the woods,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,Rabbit was so[-:] hungry.,Rabbit was so hungry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,he took out all the food in his picnic (bak) basket and start/ing *to eat it [EU].,he took out all the food in his picnic basket and starting eat it,0 0 0 0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,Doggy ate a few!,Doggy ate a few,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,and Rabbit ate all[-:] of his thing/s.,and Rabbit ate all of his things,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,when he was done he got a big tummyache.,when he was done he got a big tummyache,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,(ra) Dog said you should not eat so much Rabbit.,Dog said you should not eat so much Rabbit,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,save some for your dinner!,save some for your dinner,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,"[~_makes_moaning_sound,_laughs] said rabbit.",said rabbit,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,Doggy (g) ran[-:] to the nurse rabbit.,Doggy ran to the nurse rabbit,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,he said quick : my friend Rabbit has a big tummyache from eat/ing too much!,he said quick my friend Rabbit has a big tummyache from eating too much,0 0 0 0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,she drag/ed the nurse to the picnic basket.,she dragged the nurse to the picnic basket,0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,she said now now.,she said now now,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,(you need) I need to take your temperature!,I need to take your temperature,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,and then : we will see : how you feel!,and then we will see how you feel,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,Rabbit felt all better when the nurse had[EW:was] done.,Rabbit felt all better when the nurse had done,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,Dog was so happy he told [EU].,Dog was so happy he told,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,it is so funny[~!_whispering].,it is so funny,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,hi Rabbit!,hi Rabbit,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,let us play!,let us play,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,I have a new balloon!,I have a new balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,ooh it is pretty!,ooh it is pretty,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,I want to[:_wanna] play with it!,I want to play with it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,uhoh.,uhoh,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,"[~_makes_noise_'aaaah',_grunts] now we just have to untie this knot.",now we just have to untie this knot,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,and then we can play with it!,and then we can play with it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,huh oh no I should not have untie/ed the knot!,huh oh no I should not have untied the knot,0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,[~_makes_sound_'aaah'] my balloon!,my balloon,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,"[~_makes_noise_""errr""][-:] oops.",oops,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,: (mmm) oh I know.,oh I know,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,I will get some more balloon/s from the balloon man.,I will get some more balloons from the balloon man,0 0 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,"[~_makes_noise_""err"",_waves_and_gestures_with_arm].",, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,remember I can not see the picture/s.,remember I can not see the pictures,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,you have to tell me.,you have to tell me,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,I know [+_bch].,I know,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,balloon man can I have a balloon!,balloon man can I have a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,hm [~_laughs]?,hm,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,(um) : [~_creaky_voice] do we have any five cent/s[EW:money]!,do we have any five cents,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,[~_creaky_voice] they are five cent/s!,they are five cents,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,oh[-:] boy[!].,oh boy,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,(hm : hmmm) if he can not buy it who can?,if he can not buy it who can,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,"[~_makes_noises_""ooo_doo_doo_hm""] [~_high_pitched_voice] missus nurse : can you help : us get a balloon?",missus nurse can you help us get a balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,[~_high_pitched_voice] the balloon doggy got float/ed away [EU]!,the balloon doggy got floated away,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,[~_high_pitched_voice] please[-:] .,please,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,[~_high_pitched_voice] (the) the balloon man is right there.,the balloon man is right there,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,okay.,okay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,[~_creaky_voice] here you go!,here you go,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,thank you[-:]!,thank you,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,[~_high_pitched_voice] yay[-:] our balloon/s [~_laughs]!,yay our balloons,0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,A girl elephant was play/ing with a ball.,A girl elephant was playing with a ball,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,the ball went in a pool.,the ball went in a pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,(a gira) a baby giraffe (ca) came to get it.,a baby giraffe came to get it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,he got it and gave it to the : girl.,he got it and gave it to the girl,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,the girl like/ed the[-:] giraffe.,the girl liked the giraffe,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,They look/ed at the pool.,They looked at the pool,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,the elephant was run/ing in the pool.,the elephant was running in the pool,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,the elephant slip/ed : and hurt her knee.,the elephant slipped and hurt her knee,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,a lifeguard came.,a lifeguard came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,the lifeguard gave her a bandaid.,the lifeguard gave her a bandaid,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,they sat on the chair.,they sat on the chair,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,the lifeguard (poi) point/ed at the sign.,the lifeguard pointed at the sign,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,A girl was happy.,A girl was happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,a plane hit her.,a plane hit her,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,the girl got the plane.,the girl got the plane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,and she put it on the water.,and she put it on the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,(the water sank) [~_no] the plane sank.,the plane sank,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,the lifeguard came.,the lifeguard came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,: the lifeguard saw the plane : and try/ed to get it.,the lifeguard saw the plane and tried to get it,0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,it sank.,it sank,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,a girl lifeguard had a net.,a girl lifeguard had a net,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,the girl lifeguard got the : plane.,the girl lifeguard got the plane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,the girl lifeguard gave it to the boy.,the girl lifeguard gave it to the boy,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,the boy hug/ed the plane.,the boy hugged the plane,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,a girl play/ed in the sandbox.,a girl played in the sandbox,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,a rabbit came to play.,a rabbit came to play,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,the rabbit broke : the girl/z sandcastle.,the rabbit broke the girl's sandcastle,0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,(the rabb) the girl was mad at the rabbit.,the girl was mad at the rabbit,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,the girl was cry/ing.,the girl was crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,a girl was go/ing to[-:] a picnic.,a girl was going to a picnic,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,a[-:] boy came : (to) with her.,a boy came with her,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,the boy was (ff) so full.,the boy was so full,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,he got the[EW:a] stomachache.,he got the stomachache,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,a doctor came.,a doctor came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,the girl pull/ed the doctor.,the girl pulled the doctor,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,"the doctor look/ed [~_pronounced_""look-ed""] at the boy.",the doctor looked at the boy,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,he felt okay and came with the doctor.,he felt okay and came with the doctor,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,a girl had a wagon with a balloon on it.,a girl had a wagon with a balloon on it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,the boy : try/ed to get the balloon.,the boy tried to get the balloon,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,the boy untie/ed the balloon.,the boy untied the balloon,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,it went up into the air.,it went up into the air,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,the girl was mad at the rabbit.,the girl was mad at the rabbit,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,: a guy had lot/s of balloon/s.,a guy had lots of balloons,0 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,the rabbit asked the man if he could get : a balloon.,the rabbit asked the man if he could get a balloon,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,the balloon cost five cent/s.,the balloon cost five cents,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,he did not have five cent/s.,he did not have five cents,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,a doctor came.,a doctor came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,(and) and the (rab) boy rabbit ask/ed the doctor (if) : to come to the balloon/s.,and the boy rabbit asked the doctor to come to the balloons,0 0 0 0 4 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,(the doctor bi) buyed|buy[EW:bought] balloon/s.,buyed balloons,0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,(for) the doctor gave balloon/s to both of them.,the doctor gave balloons to both of them,0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,(uh) : it is a giraffe look/ing and play/ing with a[EW:an] : elephant.,it is a giraffe looking and playing with a elephant,0 0 0 0 6 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,(they lo) they lost the ball (in the) in a boat.,they lost the ball in a boat,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,now the giraffe dived|dive[EW:dove] in and get[EW:got] it.,now the giraffe dived in and get it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,then he got the ball.,then he got the ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,then they play/ed.,then they played,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,(They were aas) : (going to uh) cow is go/ing to run.,cow is going to run,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,cow is go/ing to run into the pool.,cow is going to run into the pool,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,then they slip/ed.,then they slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,and then they fall in and hurt her knee [EU].,and then they fall in and hurt her knee,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,: it was hurt.,it was hurt,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,put a bandaid on.,put a bandaid on,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,okay.,okay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,no[!] run/ing.,no running,0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,They was[EW:were] go/ing to [~_gonna] play with a[EW:an] airplane.,They was going to play with a airplane,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,(they try/ed) (they n tr) (they try/ed to um) they[-:] try/ed to play with it.,they tried to play with it,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,(and then they) : (and then they) and then they was[EW:were] try/ing to fly it.,and then they was trying to fly it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,then it land/ed in the water.,then it landed in the water,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,then he got mad.,then he got mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,(and then they) and then (the) (the) : (the : um) : they was[EW:were] scare/ed.,and then they was scared,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,(and then they[-:] help pu) and then they got some help.,and then they got some help,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,(the) then (they) (they try) the guy got to try got it [EU].,then the guy got to try got it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,(and then they) and then they could not get it out.,and then they could not get it out,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,then the girl came and got it.,then the girl came and got it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,: and then she caught it.,and then she caught it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,: and then she got it.,and then she got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,and that is the end [+_bch].,and that is the end,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,a dog and a[-:] : bunny were go/ing to play together.,a dog and a bunny were going to play together,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,and then (he) (the) : the bunny was go/ing to[:_gonna] : make one.,and then the bunny was going to make one,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,and then the bunny (was) pour/ed the sand on the castle.,and then the bunny poured the sand on the castle,0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,and then it fall/3s apart.,and then it falls apart,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,and then the dog got some : cry [EU].,and then the dog got some cry,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,The dog and the bunny (met) met.,The dog and the bunny met,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,(hm) the bunny start/ed to eat.,the bunny started to eat,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,(and then he b) (and) and then he was finish/ed.,and then he was finished,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,he was (ti) poop/ed out.,he was pooped out,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,(and[-:] his) : and she ask/ed [~_pronounced_'axed'] the doctor to help : the fever.,and she asked the doctor to help the fever,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,he ate too much candy.,he ate too much candy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,and then he[-:] was all better.,and then he was all better,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,the dog and the rabbit met.,the dog and the rabbit met,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,(and then he) and then he try/ed to get a balloon.,and then he tried to get a balloon,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,and then he try/ed to tie it : off.,and then he tried to tie it off,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,and then it went way up into the air.,and then it went way up into the air,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,and then it pop/ed[!].,and then it popped,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,then she got mad.,then she got mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,and then it was some more[!] balloon/s [EU].,and then it was some more balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,(: and then sh) and the bunny ask/ed him if he could give him a bunny.,and the bunny asked him if he could give him a bunny,0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,(uh) : and five dollar/s [EU].,and five dollars,0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,so they could not get a balloon.,so they could not get a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,so they ask/ed [~_pronounced_'axed'] their mom.,so they asked their mom,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,and he said could you give me a[-:] : balloon for five dollar/s?,and he said could you give me a balloon for five dollars,0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,and then she gave the money to the man.,and then she gave the money to the man,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,(and then she) and then they both got a balloon.,and then they both got a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,what do you see?,what do you see,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,you could start the story with once upon a time.,you could start the story with once upon a time,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,can you see the pictures what do you see?,can you see the pictures what do you see,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,you know what my tape recorder can not see point/ing remember my tape recorder has to hear words.,you know what my tape recorder can not see pointing remember my tape recorder has to hear words,0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,what is that?,what is that,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,apple.,apple,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,then what happened?,then what happened,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,apple falled|fall[EW:fell].,apple falled,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,got a[EW:an] apple.,got a apple,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,got a[EW:an] apple [~_new_page].,got a apple,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,what is the last thing you say?,what is the last thing you say,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,: start with once upon a time.,start with once upon a time,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,: should I turn the page?,should I turn the page,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,: tell me this.,tell me this,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,got a shot.,got a shot,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,"that is right, okay : tell so my tape recorder can hear what happened.",that is right okay tell so my tape recorder can hear what happened,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,"use words : remember my tape recorder can not see, you use words.",use words remember my tape recorder can not see you use words,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,got a[EW:an] owie [EU].,got a owie,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,got a[EW:an] owie [EU].,got a owie,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,got a : bandaid [EU].,got a bandaid,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,got a bandaid on her knee [EU].,got a bandaid on her knee,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,and sit/ing on a bench [EU].,and sitting on a bench,0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,(um) got an airplane [EU].,got an airplane,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,: got a[EW:an] airplane [EU].,got a airplane,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,got a[EW:an] airplane [EU].,got a airplane,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,: plane falled|fall[EW:fell] [EU].,plane falled,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,a plane sanked|sank[EW:sunk].,a plane sanked,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,a plane sanked|sank[EW:sunk].,a plane sanked,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,a plane sanked|sank[EW:sunk].,a plane sanked,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,a plane : sanked|sank[EW:sunk].,a plane sanked,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,a plane sank.,a plane sank,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,a plane sank.,a plane sank,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,a plane is go/ing to [~_gonna] pick up a[EW:an] airplane.,a plane is going to pick up a airplane,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,pardon me?,pardon me,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,pick up a[EW:an] airplane [+_bch].,pick up a airplane,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,(um) got a[EW:an] airplane [EU].,got a airplane,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,got a[EW:an] airplane [EU].,got a airplane,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,and the end [+_bch].,and the end,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,make/ing a castle [EU].,making a castle,6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,make/ing a castle [EU].,making a castle,6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,make/ing a castle [EU].,making a castle,6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,the castle fall/3s.,the castle falls,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,make/ing a castle up.,making a castle up,6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,walk/ing [EU].,walking,6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,got a : carrot.,got a carrot,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,: go/ing to [~_gonna] put all of them back in the packsack [EU].,going to put all of them back in the packsack,6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,it falled|fall[EW:fell].,it falled,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,and it walk|walk[EW:walked] away.,and it walk away,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,going to [~_gonna] grab his (sh) coat.,going to grab his coat,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,and gonna xxx [~_said_very_quietly].,and gonna,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,xxx.,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,them[EW:they] pick up [EW:the]dish.,them pick up dish,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,the end [+_BCH].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,(um) go/ing to [~_gonna] put that on the : wagon.,going to put that on the wagon,6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,look at that on the wagon.,look at that on the wagon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,look at that on the wagon.,look at that on the wagon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,xxx.,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,it flied|fly[EW:flew] away.,it flied away,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,it is[EW:has] pop/ed.,it is popped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,it has got five balloon/s.,it has got five balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,I am go/ing to [~_gonna] get one.,I am going to get one,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,I am go/ing to [~_gonna] get one.,I am going to get one,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,I am go/ing to [~_gonna] pop the xx.,I am going to pop the,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,it is go/ing to [~_gonna] get more balloon/s.,it is going to get more balloons,0 0 6 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,I am go/ing to [~_gonna] get : more balloon/s.,I am going to get more balloons,0 0 6 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,I am go/ing to [~_gonna] get more balloon/s.,I am going to get more balloons,0 0 6 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,I am get/ing more balloon/s.,I am getting more balloons,0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,(um) [-:] an elephant is bounce/ing a ball[-:].,an elephant is bouncing a ball,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,the ball get/3s in the water.,the ball gets in the water,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,the horse swim/3s : to try to get it : and got it.,the horse swims to try to get it and got it,0 0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,(uh : the other) the elephant is thankful.,the elephant is thankful,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,(uh) the horse and elephant want to[:_wanna] go swim/ing[-:] on the diving board[-:] [EU] .,the horse and elephant want to go swimming on the diving board,0 0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,(uh) the elephant run/3s[-:].,the elephant runs,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,and she slip/3s[-:] : and get/3s a sore knee[-:].,and she slips and gets a sore knee,0 0 3 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,(uh) the lifeguard (s) come/3s[-:] : and give/3s her a bandaid.,the lifeguard comes and gives her a bandaid,0 0 3 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,(uh l sh) she is sit/ing on a bench.,she is sitting on a bench,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,lifeguard told : her[-:] no run/ing.,lifeguard told her no running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,elephant and a horse meet[-:].,elephant and a horse meet,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,and they[-:] : want to[:_wanna] play.,and they want to play,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,(s) : the horse is play/ing with his : airplane.,the horse is playing with his airplane,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,the elephant play/3s with it too[-:].,the elephant plays with it too,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,it go/3s into the water.,it goes into the water,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,the horse get/3s angry.,the horse gets angry,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,(uh) the lifeguard see/3s it.,the lifeguard sees it,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,the elephant : told the lifeguard.,the elephant told the lifeguard,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,lifeguard try/3s to reach it.,lifeguard tries to reach it,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,he could not reach it.,he could not reach it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,(he) : someone got a net : and fish/ed it out : and got the plane and gave it to the horse.,someone got a net and fished it out and got the plane and gave it to the horse,0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,: and a horse[-:] : hugg/ed it.,and a horse hugged it,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,(uh) the rabbit and the dog meet each other to play with the castle.,the rabbit and the dog meet each other to play with the castle,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,the dog : fix/3s the castle.,the dog fixes the castle,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,and the rabbit put/3s sand in a bucket.,and the rabbit puts sand in a bucket,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,the rabbit dump/3s the sand on the castle.,the rabbit dumps the sand on the castle,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,the castle got wreck/ed[-:].,the castle got wrecked,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,and dog try/ed to[-:] build it back.,and dog tried to build it back,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,the dog and[-:] rabbit meet each other.,the dog and rabbit meet each other,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,they both have a picnic.,they both have a picnic,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,the rabbit : ate too much[-:].,the rabbit ate too much,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,the rabbit got dizzy.,the rabbit got dizzy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,the dog got the doctor.,the dog got the doctor,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,the doctor came[-:] : and help/ed the rabbit.,the doctor came and helped the rabbit,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,and now the rabbit is more better [EU].,and now the rabbit is more better,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,the rabbit and dog (meech) : meet each other.,the rabbit and dog meet each other,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,and the dog has a wagon and a balloon.,and the dog has a wagon and a balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,(uh) : the rabbit : (thought) told him that (he could pl) he could play with it.,the rabbit told him that he could play with it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,the rabbit untie/ed it.,the rabbit untied it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,the balloon flew up in the air.,the balloon flew up in the air,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,dog got angry.,dog got angry,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,they saw a : person who is sell/ing balloon/s [EU].,they saw a person who is selling balloons,0 0 0 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,the : rabbit told if he can buy one [EU].,the rabbit told if he can buy one,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,he said that they are five cent/s each[-:].,he said that they are five cents each,0 0 0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,they did not have any money[-:].,they did not have any money,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,(they went an) they went to someone.,they went to someone,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,and they told if : she could (get) pay them money [EU].,and they told if she could pay them money,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,and[-:] : she did[-:].,and she did,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,now they are happy with the balloon/s.,now they are happy with the balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,One[-:] day[-:] a giraffe : saw an elephant play/ing with a basketball.,One day a giraffe saw an elephant playing with a basketball,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,: but then[-:] : the ball bounce/ed into : the water.,but then the ball bounced into the water,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,the giraffe : (swim) swam (and try/ed) and try/ed to get it.,the giraffe swam and tried to get it,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and he got the ball back.,and he got the ball back,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and the elephant was happy.,and the elephant was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,One day (the zebra) [~_I_mean] the giraffe and the elephant decide/ed to go swimming.,One day the giraffe and the elephant decided to go swimming,0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,the elephant want/ed to go on the diving board.,the elephant wanted to go on the diving board,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,: she was run/ing over there.,she was running over there,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and she slip/ed.,and she slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,then she fell and bonk/ed her knee.,then she fell and bonked her knee,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,the lifeguard came run/ing over.,the lifeguard came running over,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,(he ask/ed her) he put on a bandaid for it.,he put on a bandaid for it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,then he sat her down on the bench.,then he sat her down on the bench,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,(then he) then he told her to look at the sign/s.,then he told her to look at the signs,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,One day Elephant and Zebra[-:] (met) met at the swimming pool.,One day Elephant and Zebra met at the swimming pool,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,: (um) Zebra had an airplane.,Zebra had an airplane,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,Elephant grab/ed the airplane away from Zebra.,Elephant grabbed the airplane away from Zebra,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,(and she) and she accidentally drop/ed it in the water.,and she accidentally dropped it in the water,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,then Zebra got mad at Elephant.,then Zebra got mad at Elephant,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,then the lifeguard came.,then the lifeguard came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and (uh) the elephant said : I accidentally drop/ed : Zebra/z airplane in the water.,and the elephant said I accidentally dropped Zebra's airplane in the water,0 0 0 0 0 0 4 2 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,the lifeguard try/ed to reach the airplane.,the lifeguard tried to reach the airplane,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,but he could not.,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,then another lifeguard came with a net.,then another lifeguard came with a net,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,(and she h) and she pick/ed up the airplane.,and she picked up the airplane,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and Zebra had it back.,and Zebra had it back,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and they could play with it again.,and they could play with it again,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,(These) these two little animal/s are play/ing in a sandbox.,these two little animals are playing in a sandbox,0 0 0 1 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and they are build/ing a sandcastle.,and they are building a sandcastle,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and then : the rabbit pour/3s some sand on the sandcastle.,and then the rabbit pours some sand on the sandcastle,0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and the sandcastle break|break[EW:breaks] and fall/3s down.,and the sandcastle break and falls down,0 0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and they have to build it up again.,and they have to build it up again,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,one day the rabbit and the dog (ment) went for a picnic together.,one day the rabbit and the dog went for a picnic together,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and the rabbit was eat/ing everything like messy [EU].,and the rabbit was eating everything like messy,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,(and when he was f) and when he was finish/ed : he was all full.,and when he was finished he was all full,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and then he got a headache.,and then he got a headache,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and then the dog had to call the doctor.,and then the dog had to call the doctor,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and the doctor came over.,and the doctor came over,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and the doctor : said stay still.,and the doctor said stay still,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and then he was all better again.,and then he was all better again,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,one day the dog was : pull/ing a wagon with a balloon on it.,one day the dog was pulling a wagon with a balloon on it,0 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and Rabbit want/ed it.,and Rabbit wanted it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and Rabbit (tied) try/ed to untie the balloon from the wagon.,and Rabbit tried to untie the balloon from the wagon,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and the balloon float/ed away.,and the balloon floated away,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and the dog got really mad at the rabbit.,and the dog got really mad at the rabbit,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,then they saw a balloon man.,then they saw a balloon man,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,then the rabbit ask/ed for a balloon.,then the rabbit asked for a balloon,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and then the man said balloons five dollar/s.,and then the man said balloons five dollars,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,but they did not have enough money.,but they did not have enough money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,(s) so they ask/ed[~!_laughs] the doctor.,so they asked the doctor,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,(and the doctor said) and the bunny said we do not have enough money to buy a balloon.,and the bunny said we do not have enough money to buy a balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,so the doctor paid the balloon man for two balloon/s.,so the doctor paid the balloon man for two balloons,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and then they each had a balloon.,and then they each had a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,one day there were two friend/s : mister giraffe and missus elephant.,one day there were two friends mister giraffe and missus elephant,0 0 0 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,they were at the beach.,they were at the beach,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and (mi) missus elephant was play/ing with a ball when mister giraffe ask/ed if he could play too.,and missus elephant was playing with a ball when mister giraffe asked if he could play too,0 0 0 0 6 0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,but then he bounce/ed it and bounce/ed it.,but then he bounced it and bounced it,0 0 0 4 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and then it went into the water.,and then it went into the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,so mister giraffe went into the water to get it.,so mister giraffe went into the water to get it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and then he gave it to missus elephant.,and then he gave it to missus elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and : they both smile/ed [~_laughs].,and they both smiled,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and then she really really really like/ed him[?].,and then she really really really liked him,0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,one day mister giraffe and missus elephant : want/ed to go for a swim.,one day mister giraffe and missus elephant wanted to go for a swim,0 0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and there was a sign that said no[!] run/ing.,and there was a sign that said no running,0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,so (she) she was run/ing to the dive/ing board : so she could dive into the water.,so she was running to the diving board so she could dive into the water,0 0 0 6 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,but then she was run/ing and run/ing.,but then she was running and running,0 0 0 0 6 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and then she all of a sudden slip/ed.,and then she all of a sudden slipped,0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and she really hurt her (near) knee when mister giraffe went to get a lifeguard.,and she really hurt her knee when mister giraffe went to get a lifeguard,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,the lifeguard came run/ing to see what was go/ing on.,the lifeguard came running to see what was going on,0 0 0 6 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,he put a bandaid on missus elephant/z knee.,he put a bandaid on missus elephant's knee,0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and then she sat on the bench : when mister giraffe was say/ing all[!] better.,and then she sat on the bench when mister giraffe was saying all better,0 0 0 0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and then the lifeguard point/ed to the sign that said no run/ing.,and then the lifeguard pointed to the sign that said no running,0 0 0 0 4 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,once mister giraffe and missus elephant (s met) met at the pool again.,once mister giraffe and missus elephant met at the pool again,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,(he) mister giraffe show/ed missus elephant his new airplane.,mister giraffe showed missus elephant his new airplane,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,he was show/ing her how high it could fly when she was just stare/ing at it.,he was showing her how high it could fly when she was just staring at it,0 0 6 0 0 0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,[~_said_under_breath] how high it could fly.,how high it could fly,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,so then she just : took it from him.,so then she just took it from him,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and mister giraffe was like hey!,and mister giraffe was like hey,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and then she accidentally : threw it to see if it could go higher.,and then she accidentally threw it to see if it could go higher,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and it land/ed right into the water.,and it landed right into the water,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and he was really really really mad at her.,and he was really really really mad at her,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,(and she s) and she said whoops.,and she said whoops,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,then the lifeguard (was) was not really happy.,then the lifeguard was not really happy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,but he still try/ed to get the plane.,but he still tried to get the plane,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,she was tell/ing (him all about it) (all about) the lifeguard all about the plane.,she was telling the lifeguard all about the plane,0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and then the lifeguard (s) said that is okay.,and then the lifeguard said that is okay,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,I will try and get it.,I will try and get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,so he try/ed and try/ed and try/ed.,so he tried and tried and tried,0 0 4 0 4 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,but he could not reach it.,but he could not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,so then mister giraffe was start/ing to cry.,so then mister giraffe was starting to cry,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,missus elephant was : think/ing.,missus elephant was thinking,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and the lifeguard (was) said he do/3s not know how they can get it.,and the lifeguard said he does not know how they can get it,0 0 0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,but then another : lifeguard came with a net to get the plane.,but then another lifeguard came with a net to get the plane,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,(she) she stretch/ed the net (to get) into the water to get the plane.,she stretched the net into the water to get the plane,0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and then she got the plane and gave it back to mister giraffe.,and then she got the plane and gave it back to mister giraffe,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,mister giraffe (was very) [+/]^,mister giraffe,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,am I suppose/ed to turn ?,am I supposed to turn,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,"[+,] was very very very happy to have the plane back.",was very very very happy to have the plane back,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,once upon a time there was a little dog : who built a really good (castle) sandcastle.,once upon a time there was a little dog who built a really good sandcastle,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and the bunny said : he could make one.,and the bunny said he could make one,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,but he said : why do not you make one in the other sandbox?,but he said why do not you make one in the other sandbox,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,but he said he want/3s to make it right beside his.,but he said he wants to make it right beside his,0 0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,he filled the bucket to build a tower : (while the) while the little dog was : build/ing : the rest of his castle.,he filled the bucket to build a tower while the little dog was building the rest of his castle,0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,but then he pour/ed (the) all the sand in the bucket onto : the dog/z castle.,but then he poured all the sand in the bucket onto the dog's castle,0 0 0 4 0 0 0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and the dog got really : mad at the bunny.,and the dog got really mad at the bunny,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and the bunny : was say/ing : he never meant to.,and the bunny was saying he never meant to,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,but then the little dog had to do it all[!] over again.,but then the little dog had to do it all over again,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,once upon a time (the little) a little dog : saw his friend rabbit come/ing down the road.,once upon a time a little dog saw his friend rabbit coming down the road,0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,she ask/ed him if he want/ed a (s) picnic with[!] him.,she asked him if he wanted a picnic with him,0 4 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,so they decide/ed to have a picnic.,so they decided to have a picnic,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,the bunny had a cake sandwich/s : pickle/s : carrot/s : chip/s.,the bunny had a cake sandwiches pickles carrots chips,0 0 0 0 0 1 1 1 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and he was all eat/ing it as fast as he could.,and he was all eating it as fast as he could,0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and when he had everything out : the little dog only had a sandwich out.,and when he had everything out the little dog only had a sandwich out,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,so then (he start) he start/ed eat/ing it and eat/ing it and eat/ing it : when the dog : was still eat/ing her sandwich take/ing her first bite.,so then he started eating it and eating it and eating it when the dog was still eating her sandwich taking her first bite,0 0 0 4 6 0 0 6 0 0 6 0 0 0 0 0 0 6 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,then he felt not very good.,then he felt not very good,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,he had a big stomachache.,he had a big stomachache,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,so she decide/ed to go (get) find someone : to help him.,so she decided to go find someone to help him,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,try not to play with that.,try not to play with that,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,he found (a girl) a woman : (with) kind of[:_kinda] like a doctor with a case : and the thing/3s that go (on your) on the doctor/z ear/s and listen to [EU].,he found a woman kind of like a doctor with a case and the things that go on the doctor's ears and listen to,0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 2 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,so the little dog ran up to her (to tell her) to tell her.,so the little dog ran up to her to tell her,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,so he started pull/ing the doctor : to the rabbit.,so he started pulling the doctor to the rabbit,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,so she help/ed the rabbit.,so she helped the rabbit,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and she said that he had ate too much too fast.,and she said that he had ate too much too fast,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and then he felt better.,and then he felt better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,once there was a little dog and a rabbit.,once there was a little dog and a rabbit,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,the little dog was happily play/ing with a wagon with a balloon tie/ed to it.,the little dog was happily playing with a wagon with a balloon tied to it,0 0 0 0 0 6 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,then the rabbit said hi and went up to it.,then the rabbit said hi and went up to it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,the rabbit : was talk/ing about the balloon and say/ing how much he want/ed it : when the dog was just listen/ing.,the rabbit was talking about the balloon and saying how much he wanted it when the dog was just listening,0 0 0 6 0 0 0 0 6 0 0 0 4 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,then he untie/ed the balloon.,then he untied the balloon,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and the dog was : amaze/ed that he would do that.,and the dog was amazed that he would do that,0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,then they : both try/ed to catch the balloon when it was go/ing into the air.,then they both tried to catch the balloon when it was going into the air,0 0 0 4 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,she was so mad at him.,she was so mad at him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,she was shake/ing all around.,she was shaking all around,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,then : the rabbit saw a balloon man who was sell/ing balloon/s.,then the rabbit saw a balloon man who was selling balloons,0 0 0 0 0 0 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,he walk/ed up to him and ask/ed for the same colour balloon.,he walked up to him and asked for the same colour balloon,0 4 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,but (h) he said they are five cent/s.,but he said they are five cents,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,but he said he did not have any money.,but he said he did not have any money,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,so he could not get one.,so he could not get one,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and the little dog was come/ing.,and the little dog was coming,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and what?,and what,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,the little dog was come/ing [+_bch].,the little dog was coming,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,then they both ask/ed for a free one because (his we) her/z went up in the air by him [EU].,then they both asked for a free one because her's went up in the air by him,0 0 0 4 0 0 0 0 0 2 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,they ask/ed for a free one.,they asked for a free one,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,they what?,they what,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,they asked for a free balloon [+_bch].,they asked for a free balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and then (the) the rabbit saw (the doctor) a doctor that help/ed him[!].,and then the rabbit saw a doctor that helped him,0 0 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,so he decide/ed to ask her : if she had any money to get another balloon.,so he decided to ask her if she had any money to get another balloon,0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,he told her.,he told her,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,she said okay.,she said okay,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,she paid him : ten cent/s.,she paid him ten cents,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and they each got their own balloon.,and they each got their own balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and they both play/ed with them for a long time.,and they both played with them for a long time,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,it look/3s like (um) two : (people or) animal/s : play/ing with (a r kw uh) a ball : by the : pool.,it looks like two animals playing with a ball by the pool,0 3 0 0 1 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,(um) it look/3s like : the girl : has (um) accidentally : not caught the ball : when she had bounce/ed it.,it looks like the girl has accidentally not caught the ball when she had bounced it,0 3 0 0 0 0 0 0 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and it bounce/ed into the pool.,and it bounced into the pool,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,it look/3s like the boy : was swim/ing : out to go and get the ball for her.,it looks like the boy was swimming out to go and get the ball for her,0 3 0 0 0 0 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the boy is give/ing the ball to the girl.,the boy is giving the ball to the girl,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and the girl is really happy.,and the girl is really happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the boy (is like) think/3s he is quite charm/ing.,the boy thinks he is quite charming,0 0 3 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and the girl : think/3s he is cute.,and the girl thinks he is cute,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,it look/3s like a boy and girl (want) *are look/ing at the water like ooh I really want to dive in here [EU].,it looks like a boy and girl looking at the water like ooh I really want to dive in here,0 3 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the girl is like come on.,the girl is like come on,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,let us run over to the diving board and get in : the water.,let us run over to the diving board and get in the water,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,she is run/ing over.,she is running over,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,she is slip/ing on some : water : that has came up.,she is slipping on some water that has came up,0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,she fell and scrape/ed her knee : (while) after she : was run/ing.,she fell and scraped her knee after she was running,0 0 0 4 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the lifeguard is come/ing over : to give her a bandaid : (while : sh) while (um) the boy is try/ing to comfort her.,the lifeguard is coming over to give her a bandaid while the boy is trying to comfort her,0 0 0 6 0 0 0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the lifeguard is put/ing on a bandaid.,the lifeguard is putting on a bandaid,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and she is feel/ing a lot of pain : while the boy is try/ing to comfort her.,and she is feeling a lot of pain while the boy is trying to comfort her,0 0 0 6 0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the lifeguard is : (help) help/ing her get down.,the lifeguard is helping her get down,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,same with the boy onto a bench.,same with the boy onto a bench,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the lifeguard is (um) : discipline/ing the girl : (look) it look/3s like.,the lifeguard is disciplining the girl it looks like,0 0 0 6 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,it look/3s like a boy and girl (play/ing with a) and a model airplane.,it looks like a boy and girl and a model airplane,0 3 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the boy is (fling) go/ing zoom zoom (with) with his tongue and make/ing it (sw) swiff[c] and swirl all around.,the boy is going zoom zoom with his tongue and making it swiff and swirl all around,0 0 0 6 0 0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and the girl is : amaze/ed by it.,and the girl is amazed by it,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the (b) girl take/3s it away and play/3s with it.,the girl takes it away and plays with it,0 0 3 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and the boy is like [~_high_pitched_voice] what ?,and the boy is like what,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,[~_high_pitched_voice] what are you do/ing ?,what are you doing,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,[~_high_pitched_voice] that is my toy !,that is my toy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,[~_high_pitched_voice] I am go/ing to go crazy !,I am going to go crazy,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and she drop/3s it down into the pool.,and she drops it down into the pool,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the boy is like : [~_high_pitched_voice] now look what you have done.,the boy is like now look what you have done,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,[~_high_pitched_voice] my plane is gone forever !,my plane is gone forever,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,then the lifeguard come/3s over.,then the lifeguard comes over,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and he is like what is happen/ing : or something like that.,and he is like what is happening or something like that,0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the girl explain/3s to the lifeguard that she took it away from him.,the girl explains to the lifeguard that she took it away from him,0 0 3 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and : it drop/ed into the water.,and it dropped into the water,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the lifeguard try/3s to reach out for it.,the lifeguard tries to reach out for it,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,(but it sail/3s) but it sail/3s away (because of the wind) because of the : (um) wind is make/ing little wave/s that push it away.,but it sails away because of the wind is making little waves that push it away,0 0 3 0 0 0 0 0 0 6 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the boy is really really sad.,the boy is really really sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and the girl is like well I did not do anything.,and the girl is like well I did not do anything,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and the lifeguard is like : I am sorry.,and the lifeguard is like I am sorry,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,but I can not get at it.,but I can not get at it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,a girl with : a scoop is : go/ing to (um) : get it out.,a girl with a scoop is going to get it out,0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,"and the boy, the girl, and the : lifeguard are all amaze/ed by what they are see/ing.",and the boy the girl and the lifeguard are all amazed by what they are seeing,0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,she is reach/ing out with the scoop : get/ing it.,she is reaching out with the scoop getting it,0 0 6 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the lifeguard is quite surprise/ed.,the lifeguard is quite surprised,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and : the little boy is (um) still a bit sad about it.,and the little boy is still a bit sad about it,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and now the : lady is : give/ing : the airplane to him.,and now the lady is giving the airplane to him,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and the boy is quite happy.,and the boy is quite happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,he is : hold/ing the airplane really tight in his arm/s.,he is holding the airplane really tight in his arms,0 0 6 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,(and the girl) : and (it) the girl : supposedly is (a a) ask/ing to play with it.,and the girl supposedly is asking to play with it,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,it is a boy and a girl that have just finish/ed create/ing[?] a nice sandcastle.,it is a boy and a girl that have just finished creating a nice sandcastle,0 0 0 0 0 0 0 0 0 0 4 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the boy is take/ing out sand : because he want/3s to help the girl out with the sandcastle.,the boy is taking out sand because he wants to help the girl out with the sandcastle,0 0 0 6 0 0 0 0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the boy is dump/ing the sand.,the boy is dumping the sand,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the girl is like oh no you are go/ing to ruin it.,the girl is like oh no you are going to ruin it,0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and the boy is like oopsies!,and the boy is like oopsies,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and the girl is like what did you do?,and the girl is like what did you do,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,then the girl is cry/ing.,then the girl is crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and the boy is like I did not do anything.,and the boy is like I did not do anything,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,a boy and a girl are go/ing off for a picnic with two picnic basket/s.,a boy and a girl are going off for a picnic with two picnic baskets,0 0 0 0 0 0 6 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the girl and the boy have unload/ed all their : stuff.,the girl and the boy have unloaded all their stuff,0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,well the boy has.,well the boy has,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and it is (all) mostly junk food.,and it is mostly junk food,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,he has eaten it all by himself : quite fast.,he has eaten it all by himself quite fast,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,he is get/ing drowsy dizzy : get/ing a stomachache : (get/ing) probably get/ing pain/s in his side/s.,he is getting drowsy dizzy getting a stomachache probably getting pains in his sides,0 0 6 0 0 6 0 0 0 6 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the girl is run/ing over to a paramedic : (who) (whose um) who has came over for what look/3s like : an outdoor lunch.,the girl is running over to a paramedic who has came over for what looks like an outdoor lunch,0 0 0 6 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the girl is drag/ing her to the : boy.,the girl is dragging her to the boy,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the paramedic is open/ing up her bag and : take/ing one of those thing/s that (they) you put in their mouth and check/ing (all the) (all of his) all the temperature and stuff.,the paramedic is opening up her bag and taking one of those things that you put in their mouth and checking all the temperature and stuff,0 0 0 6 0 0 0 0 6 0 0 0 1 0 0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and she is take/ing him home.,and she is taking him home,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and the girl feel/3s happy that : she has help/ed him.,and the girl feels happy that she has helped him,0 0 0 3 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,it look/3s like a girl with a balloon on her wagon that is like oh I love this balloon.,it looks like a girl with a balloon on her wagon that is like oh I love this balloon,0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and she is see/ing (her boy) her (um) friend.,and she is seeing her friend,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,(they are both) the boy is look/ing up at the balloon : and say/ing : I want this balloon.,the boy is looking up at the balloon and saying I want this balloon,0 0 0 6 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the boy is (unt) try/ing to untie it.,the boy is trying to untie it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and the girl is like what are you do/ing?,and the girl is like what are you doing,0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,(um) the boy and the girl are reach/ing up for the balloon while it is soar/ing off into the air.,the boy and the girl are reaching up for the balloon while it is soaring off into the air,0 0 0 0 0 0 6 0 0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the boy is like oopsies.,the boy is like oopsies,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and the girl is like now look what you have done you little pee hole or something like that.,and the girl is like now look what you have done you little pee hole or something like that,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,"you little what, I do not know that word.",you little what I do not know that word,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,butt hole [+_bch].,butt hole,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,"oh you said bee hole, okay.",oh you said bee hole okay,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and then the boy see/3s (um) someone : with a whole bunch of balloon/s.,and then the boy sees someone with a whole bunch of balloons,0 0 0 0 3 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and he is walk/ing over.,and he is walking over,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the girl is still really angry.,the girl is still really angry,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and then (um) : the boy is like can I have that balloon?,and then the boy is like can I have that balloon,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and the girl is like huh?,and the girl is like huh,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,what is he do/ing?,what is he doing,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and then he show/3s balloon/s five cent/s each.,and then he shows balloons five cents each,0 0 0 3 1 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and then (he) the boy do/3s not have any money.,and then the boy does not have any money,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and then they are both : like oh dang we do not have any money.,and then they are both like oh dang we do not have any money,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and (um) they are run/ing over to the doctor.,and they are running over to the doctor,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,they are ask/ing the doctor (if) or maybe their mother if they can have : (um five cent/s) five or ten cent/s for some balloon/s.,they are asking the doctor or maybe their mother if they can have five or ten cents for some balloons,0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and the doctor is give/ing : the : balloon man some money : while the kid/s are get/ing their balloon/s.,and the doctor is giving the balloon man some money while the kids are getting their balloons,0 0 0 0 6 0 0 0 0 0 0 0 1 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and the : doctor or their mom is really happy.,and the doctor or their mom is really happy,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and the two kid/s are : happy too.,and the two kids are happy too,0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,there was[EW:were] : two friends (that) : (that).,there was two friends,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and the elephant had a ball.,and the elephant had a ball,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and they want/ed to go swim/ing.,and they wanted to go swimming,0 0 4 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then the ball fell into the water.,and then the ball fell into the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then (he) : the : horse swimmed|swim[EW:swam] after it.,and then the horse swimmed after it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then they got it back.,and then they got it back,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then : (sh) she thank/ed her.,and then she thanked her,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,she what?,she what,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then : (he) she (thank/ed her) : thank/ed him [+_bch].,and then she thanked him,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,(there was) : they were look/ing into the pool[-:].,they were looking into the pool,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and there was a diving board in there.,and there was a diving board in there,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,(and sh) and the girl jump/ed in.,and the girl jumped in,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,then she slip/ed.,then she slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then she hurt her knee.,and then she hurt her knee,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then the lifeguard came.,and then the lifeguard came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,(and then she p) and then he put a bandaid on it.,and then he put a bandaid on it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then they went to the bench.,and then they went to the bench,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then they made her feel better.,and then they made her feel better,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and (th) : the lifeguard point/ed[~!_laughing] at her to go somewhere.,and the lifeguard pointed at her to go somewhere,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,they were play/ing with a[EW:an] airplane by the pool.,they were playing with a airplane by the pool,0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,(the) and he was drive/ing it.,and he was driving it,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and (go/ing) : (go/ing with his hands) he was go/ing [EU].,and he was going,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and (uh) the girl was look/ing.,and the girl was looking,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,(and then : they) : and then : the girl took it from him and then try/ed it.,and then the girl took it from him and then tried it,0 0 0 0 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then it fell into the pool.,and then it fell into the pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then it sank.,and then it sank,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then he was mad at her.,and then he was mad at her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then a lifeguard came.,and then a lifeguard came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then : they explain/ed what happen/ed.,and then they explained what happened,0 0 0 4 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then : he reach|reach[EW:reached] for it.,and then he reach for it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,but he could not get it.,but he could not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,(and then somebody) : and then they were sad.,and then they were sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then somebody came with a net : and got it.,and then somebody came with a net and got it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,(and then they) and then she gave it back to him.,and then she gave it back to him,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,(and then) (and then he like) : and then he hug/ed it.,and then he hugged it,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,(they) they want/ed to build a sandcastle.,they wanted to build a sandcastle,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and they builded|build[EW:built] one.,and they builded one,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,(and then) : (and then they were) : and then they put some sand into a bucket.,and then they put some sand into a bucket,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,(and then they) and then he pour/ed it on.,and then he poured it on,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then it broke.,and then it broke,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then : (he) : he stand|stand[EW:stood] there like he did not do anything.,and then he stand there like he did not do anything,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and he try/ed to fix it.,and he tried to fix it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,they want/ed to go for lunch[-:].,they wanted to go for lunch,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,(they) : they had a lunch.,they had a lunch,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,they were so full.,they were so full,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and he felt sick.,and he felt sick,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then : he went to a lady.,and then he went to a lady,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then (he) : he want/ed : something.,and then he wanted something,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,some what?,some what,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,(some) something : or some help [+_bch].,something or some help,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then she help/ed.,and then she helped,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,(and then) : and then she took her with him.,and then she took her with him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,they were : play/ing a wagon with a balloon on it [EU].,they were playing a wagon with a balloon on it,0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,(it) (then) : and then he want/ed to hold the balloon.,and then he wanted to hold the balloon,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then he untie/ed it.,and then he untied it,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then it float/ed away.,and then it floated away,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,(and then he wa) : and then she was angry at him.,and then she was angry at him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then they went to another balloon stand : where there is[EW:were] (another[EW:other] balloon/s) : more balloon/s.,and then they went to another balloon stand where there is more balloons,0 0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,then they said can : we have one.,then they said can we have one,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,(and) but they are (fifty cent/s) five cent/s.,but they are five cents,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then they want it.,and then they want it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,but she would not let them.,but she would not let them,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then they went to a girl and see if (they) they would give (him) : them five cent/s.,and then they went to a girl and see if they would give them five cents,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,(and she) : and they said (wo) can you give me five cent/s for a balloon?,and they said can you give me five cents for a balloon,0 0 0 0 0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,my balloon float/ed away.,my balloon floated away,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,(and sh) and she did.,and she did,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,then they had their own balloon/s.,then they had their own balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,(um : two um) : two animal/s are play/ing (with a) with a (bla) ball.,two animals are playing with a ball,0 1 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,then it go/3s into a pool.,then it goes into a pool,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,(then the guy is) then he jump/3s.,then he jumps,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,and he start/3s to get it.,and he starts to get it,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,she[?] get|get[EW:got] it.,she get it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,then he pass/3s it back up.,then he passes it back up,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,and then (um) he get/3s out of the water.,and then he gets out of the water,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,(um) : two animal/s see : a diving board.,two animals see a diving board,0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,they (um) want to go over there.,they want to go over there,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,they start to run.,they start to run,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,and one slip/3s : fall/3s down and hurt/3s herself.,and one slips falls down and hurts herself,0 0 3 3 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,and then a lifeguard come/3s over and see/3s that she is cry/ing.,and then a lifeguard comes over and sees that she is crying,0 0 0 0 3 0 0 3 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,(then she put/3s) then he put/3s a[-:] : bandaid on.,then he puts a bandaid on,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,then she sit/3s down on the (bens) bench.,then she sits down on the bench,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,then (um : he) one of the (uh) guy/s point|point[EW:points] to (um) the no run/ing sign.,then one of the guys point to the no running sign,0 0 0 0 1 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,(um) : one animal has a plane.,one animal has a plane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,he (um) throw/3s it up and down.,he throws it up and down,0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,then the other one grab/3s it from him : and (s) drop/3s it in a pool.,then the other one grabs it from him and drops it in a pool,0 0 0 0 3 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,then it start/3s to sink.,then it starts to sink,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,and he is mad at her.,and he is mad at her,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,and then a lifeguard come/3s over : and see/3s that it is in the water.,and then a lifeguard comes over and sees that it is in the water,0 0 0 0 3 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,so he try/3s to get it.,so he tries to get it,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,and (he) he can not get it.,and he can not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,and the other one start/3s to cry.,and the other one starts to cry,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,and then : another lifeguard come/3s over with a net : and[-:] pick/3s it up : and give/3s it back to him.,and then another lifeguard comes over with a net and picks it up and gives it back to him,0 0 0 0 3 0 0 0 0 0 3 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,and he is all happy.,and he is all happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,(um) : they are build/ing[!] a sandcastle two dog/s.,they are building a sandcastle two dogs,0 0 6 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,(and[-:] the) : (th) and one is : take/ing a shovel and put/ing some on.,and one is taking a shovel and putting some on,0 0 0 6 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,and[-:] he put/3s a lot on.,and he puts a lot on,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,and then he ruin/3s the castle.,and then he ruins the castle,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,then one start/3s to cry.,then one starts to cry,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,(um) : a dog and a rabbit are run/ing over to each other.,a dog and a rabbit are running over to each other,0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,then they have a picnic : one with eat and everything [EU].,then they have a picnic one with eat and everything,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,(then he gets) then one get/3s full : really really full[~!__laughing].,then one gets full really really full,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,and then[-:] (um) (wha) the other one go/3s over to a doctor : and bring/3s her over to him.,and then the other one goes over to a doctor and brings her over to him,0 0 0 0 0 3 0 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,then she (um) : try/3s to fix him.,then she tries to fix him,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,and then she do/3s.,and then she does,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,(um) : (one[-:]) the dog has (um) : a wagon with a balloon on it.,the dog has a wagon with a balloon on it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,and a rabbit come/3s over to see it.,and a rabbit comes over to see it,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,and then he untie/3s it.,and then he unties it,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,and it go/3s up in the air.,and it goes up in the air,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,(then) (then the o) then the other one get/3s mad at him.,then the other one gets mad at him,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,and then he sees[-:] a guy with all kind/s of balloon/s.,and then he sees a guy with all kinds of balloons,0 0 0 0 0 0 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,he go/3s over and want/3s to get one.,he goes over and wants to get one,0 3 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,but he do/3s not have any money.,but he does not have any money,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,the balloon/s cost five cent/s.,the balloons cost five cents,0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,so then the other one come/3s over.,so then the other one comes over,0 0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,then they go to (the) a lady : and ask if they can get a balloon.,then they go to a lady and ask if they can get a balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,and she give/3s them five cent/s.,and she gives them five cents,0 0 3 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,and they get : a balloon.,and they get a balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,once there was a[EW:an] elephant : play/ing with : a ball.,once there was a elephant playing with a ball,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and she was bounce/ing it.,and she was bouncing it,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and a giraffe come/3s along and say/3s can I play?,and a giraffe comes along and says can I play,0 0 0 3 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,then they both start bounce/ing the ball.,then they both start bouncing the ball,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and the ball fall/3s inside a pool.,and the ball falls inside a pool,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,the giraffe go/3s into the pool to get (the) : the ball.,the giraffe goes into the pool to get the ball,0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and the elephant is very worry/ed.,and the elephant is very worried,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,then the giraffe get/3s the ball out from the water and give/3s it to the elephant.,then the giraffe gets the ball out from the water and gives it to the elephant,0 0 0 3 0 0 0 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,then the elephant : say/3s thank you.,then the elephant says thank you,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,(and start).,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,(there is a little um) two friend/s are at the pool.,two friends are at the pool,0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and they see : a diving board.,and they see a diving board,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and they want to jump on it.,and they want to jump on it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and then they start.,and then they start,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and then the elephant tell/3s the giraffe let us go on the diving board.,and then the elephant tells the giraffe let us go on the diving board,0 0 0 0 3 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,so they start run/ing.,so they start running,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and the little elephant slip/3s!,and the little elephant slips,0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and she hurt/3s her knee really bad.,and she hurts her knee really bad,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,then the lifeguard come/3s along : and see/3s what is the matter.,then the lifeguard comes along and sees what is the matter,0 0 0 3 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and he put/3s a bandaid on the little elephant/z knee.,and he puts a bandaid on the little elephant's knee,0 0 3 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and then the elephant is : feel/ing better.,and then the elephant is feeling better,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and then the life (guad) guard remind/3s her no run/ing.,and then the life guard reminds her no running,0 0 0 0 0 3 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and then the lifeguard : show/3s her the sign on the wall.,and then the lifeguard shows her the sign on the wall,0 0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and it says no run/ing.,and it says no running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,(there is) two friend/s are at the swimming pool.,two friends are at the swimming pool,0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and one of them has a : new toy.,and one of them has a new toy,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and they like it very much.,and they like it very much,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and he start/3s : pretend/ing he is inside the : airplane and start/3s move/ing it around and make/ing noise/s.,and he starts pretending he is inside the airplane and starts moving it around and making noises,0 0 3 6 0 0 0 0 0 0 3 6 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,then the little elephant grab/3s the plane and try/s to play with it.,then the little elephant grabs the plane and tries to play with it,0 0 0 0 3 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and then she accidentally drop/3s it in the water.,and then she accidentally drops it in the water,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,(and the life) and then the little : giraffe get/3s angry at her because (she) : she drop/ed the : airplane in the water.,and then the little giraffe gets angry at her because she dropped the airplane in the water,0 0 0 0 0 3 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,then the lifeguard come/3s over.,then the lifeguard comes over,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,the little elephant tell/3s the lifeguard what happen/ed.,the little elephant tells the lifeguard what happened,0 0 0 3 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,the lifeguard try/3s to : get the airplane out of the water.,the lifeguard tries to get the airplane out of the water,0 0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,(but he is) but it is too far to reach.,but it is too far to reach,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,then the giraffe get/3s upset.,then the giraffe gets upset,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and so do/3s the little elephant.,and so does the little elephant,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and the : lifeguard do/3s not know what to do.,and the lifeguard does not know what to do,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,but then another lifeguard come/3s over with a net.,but then another lifeguard comes over with a net,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and she said she can get it out.,and she said she can get it out,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and she get/3s it out with the net.,and she gets it out with the net,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and then : the little elephant say/3s thank you to the lifeguard.,and then the little elephant says thank you to the lifeguard,0 0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and then : the little elephant : (um say/3s you are welcome because) say/3s can I play with your little : airplane ?,and then the little elephant says can I play with your little airplane,0 0 0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,once there was a little puppy.,once there was a little puppy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and a little rabbit come/3s to play with him.,and a little rabbit comes to play with him,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,the little puppy tell/3s the rabbit that he is make/ing a sandcastle.,the little puppy tells the rabbit that he is making a sandcastle,0 0 0 3 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and the rabbit ask/3s if he can : make one too.,and the rabbit asks if he can make one too,0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,so the rabbit fill/3s a big : pail of sand and pour/3s it onto the sandcastle.,so the rabbit fills a big pail of sand and pours it onto the sandcastle,0 0 0 3 0 0 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and the puppy get|get[Ew:gets] very worry/ed.,and the puppy get very worried,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and so does the rabbit.,and so does the rabbit,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and then the little puppy start/3s get/ing upset because : the rabbit ruin/ed his sandcastle.,and then the little puppy starts getting upset because the rabbit ruined his sandcastle,0 0 0 0 0 3 6 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,once there was a little puppy.,once there was a little puppy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and he was go/ing to (take) : make a picnic.,and he was going to make a picnic,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and then a rabbit come/3s along and ask/3s if he can join[!] him.,and then a rabbit comes along and asks if he can join him,0 0 0 0 3 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and the little puppy start/3s unload/ing.,and the little puppy starts unloading,0 0 0 0 3 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and the rabbit start/s to eat lot/s and lot/s of food/s[EW:food].,and the rabbit starts to eat lots and lots of foods,0 0 0 1 0 0 1 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,then the : puppy get/3s very worry/ed.,then the puppy gets very worried,0 0 0 3 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and the : rabbit get/3s very full.,and the rabbit gets very full,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and his stomach is very big.,and his stomach is very big,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,then : the[-:] rabbit (s) get/3s a headache.,then the rabbit gets a headache,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,(and start/3s to) and his stomach start/3s to growl.,and his stomach starts to growl,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,then the puppy find/3s a doctor and ask/3s him : if she can : help him because his friend is very sick.,then the puppy finds a doctor and asks him if she can help him because his friend is very sick,0 0 0 3 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,(so the) (so he) so the doctor come/3s (o) over to see what was[EW:is] wrong.,so the doctor comes over to see what was wrong,0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and the doctor find/3s out that : the : little rabbit has a stomachache.,and the doctor finds out that the little rabbit has a stomachache,0 0 0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and he has eaten too much.,and he has eaten too much,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and then the doctor take/3s him to the (ho) hospital to make him feel better.,and then the doctor takes him to the hospital to make him feel better,0 0 0 0 3 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,there was a little puppy : who had a : balloon on his wagon.,there was a little puppy who had a balloon on his wagon,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and a rabbit come/3s by to say hello.,and a rabbit comes by to say hello,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and then : the : bunny see/3s the balloon and want/3s : to keep it.,and then the bunny sees the balloon and wants to keep it,0 0 0 0 3 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and then : the bunny start/3s to untie the : balloon from the wagon.,and then the bunny starts to untie the balloon from the wagon,0 0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and the : little doggy is very surprise/ed.,and the little doggy is very surprised,0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and then the balloon fly/3s away.,and then the balloon flies away,0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and they are both very mad because : they do not have a balloon.,and they are both very mad because they do not have a balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,then (the little : um) : the little dog get/3s angry at the rabbit because he lost his balloon.,then the little dog gets angry at the rabbit because he lost his balloon,0 0 0 0 3 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,then they all see : a man with lot/s of balloon/s and think they can get one.,then they all see a man with lots of balloons and think they can get one,0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and then the little rabbit ask/3s for a balloon.,and then the little rabbit asks for a balloon,0 0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and the : man say/3s (there) you need to : pay for one.,and the man says you need to pay for one,0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,(and the little : man) and the little bunny (does not have) try/3s to check his pocket/s.,and the little bunny tries to check his pockets,0 0 0 0 3 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and there is nothing in them.,and there is nothing in them,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,then they are both upset because they do not have anything to buy a balloon with.,then they are both upset because they do not have anything to buy a balloon with,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,then the little rabbit see/3s (a) a : lady.,then the little rabbit sees a lady,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and he go/3s to ask him for some money.,and he goes to ask him for some money,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and he tell/3s the lady why he want/3s a : balloon.,and he tells the lady why he wants a balloon,0 0 3 0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,but he do/3s not have any : money.,but he does not have any money,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,then (the l) the lady give/3s : the man five cent/s so that they can buy a balloon.,then the lady gives the man five cents so that they can buy a balloon,0 0 0 3 0 0 0 1 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,then they are both happy because they have a balloon to play with.,then they are both happy because they have a balloon to play with,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,[~_all_right] : there was an elephant and a cow.,there was an elephant and a cow,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,they were not : very nice to each other.,they were not very nice to each other,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,they were yell/ing : at each other.,they were yelling at each other,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,they : saw : something.,they saw something,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,but they did not know what it was!,but they did not know what it was,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,(so) : so : the cow : swimmed|swim[EW:swam] to it.,so the cow swimmed to it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and he grab/ed it.,and he grabbed it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,(but it) : (it) but he : let go of it.,but he let go of it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and he squeez/ed it.,and he squeezed it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and it was : a ball.,and it was a ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,he came out[!] of the water.,he came out of the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,(now) and[-:] : (it do/3s) : they : went : all[-:] the way[-:] together[!].,and they went all the way together,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,they were go/ing swim/ing.,they were going swimming,0 0 6 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,but they did not know what to do[!].,but they did not know what to do,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,so : they : went off and jump/ed into the water quickly[!].,so they went off and jumped into the water quickly,0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,they were mad.,they were mad,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,they were not do/ing what they were suppose/ed to do.,they were not doing what they were supposed to do,0 0 0 6 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,they chase/ed[!] each other.,they chased each other,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and they hit[!] each other.,and they hit each other,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,(and he) and the elephant : fell : on his knee.,and the elephant fell on his knee,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and it hurt.,and it hurt,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,it was : hurt/ing.,it was hurting,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,it was : hurt/ing a lot.,it was hurting a lot,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,he did not like that.,he did not like that,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and his friend came and help/ed him.,and his friend came and helped him,0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,it was a[EW:an] elephant.,it was a elephant,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and he put a bandage on him.,and he put a bandage on him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and it start/ed : to[-:] go.,and it started to go,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and they sit|sit[EW:sat] down.,and they sit down,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,happily ever after.,happily ever after,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,[~_sighs] : they were jump/ing in the water : (with the ball) with : the airplane.,they were jumping in the water with the airplane,0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and they : did something wrong.,and they did something wrong,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,they broke the airplane.,they broke the airplane,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,so they fix/ed[!] it : all up.,so they fixed it all up,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,then : it flyed|fly[EW:flew][-:].,then it flyed,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and it was by itself.,and it was by itself,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,did not got[EW:have] a control [EU].,did not got a control,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,it had a mouth.,it had a mouth,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,(and it) : (and he) and it did not do it anymore.,and it did not do it anymore,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,(but) : but the elephant : grab/ed the airplane from : the cow.,but the elephant grabbed the airplane from the cow,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,(he) they drop/ed it.,they dropped it,0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and it swimmed|swim[EW:swam] away.,and it swimmed away,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,it sunk !,it sunk,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and they were mad[-:].,and they were mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,they said help help!,they said help help,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,: we do not know what to do!,we do not know what to do,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,it sunk very long [EU].,it sunk very long,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and it was almost down[!].,and it was almost down,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,it flew.,it flew,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,it floated : up in the sky.,it floated up in the sky,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,(they did[?]) it was almost down to the bottom.,it was almost down to the bottom,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,it swimmed|swim[EW:swam][!] : away.,it swimmed away,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,it was not very cold.,it was not very cold,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,they got a thing.,they got a thing,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,(but it) but they were go/ing to get it.,but they were going to get it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,(th) and they got it[!] : almost.,and they got it almost,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,but they did not want to get it.,but they did not want to get it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,it was gone[-:].,it was gone,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and they got it!,and they got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and they gaved|give[EW:gave] it back.,and they gaved it back,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,so he hug/ed[!] it.,so he hugged it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,the end [+__bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,once they were : play/ing in the sandbox.,once they were playing in the sandbox,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and she (made) : made *a sandcastle [EU].,and she made sandcastle,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and she was make/ing[!] it.,and she was making it,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,the little boy start/ed : to touch it.,the little boy started to touch it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,she put some more sand on[-:].,she put some more sand on,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and it fell[-:].,and it fell,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,(and he was) and she was very mad at him.,and she was very mad at him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,(then she) : then he touch/ed it.,then he touched it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,then : he made a hand print.,then he made a hand print,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,they met each other with picnic/s[-:].,they met each other with picnics,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and they were have/ing a picnic together.,and they were having a picnic together,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,once they were eat/ing and drink/ing.,once they were eating and drinking,0 0 0 6 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,he[-:] was fat.,he was fat,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,he got a really good : think [EU].,he got a really good think,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and they were[-:] pack/ing up for the beach.,and they were packing up for the beach,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,they were go/ing to the beach.,they were going to the beach,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,but they : forgot about : their friend/s.,but they forgot about their friends,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,they forgot about them because he was sick[-:].,they forgot about them because he was sick,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,maybe he was[!] go/ing to[:_gonna] come out.,maybe he was going to come out,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,but he did!,but he did,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,he was : bring/ing his wagon.,he was bringing his wagon,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and he went into the snow with a balloon.,and he went into the snow with a balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,he ran.,he ran,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and he : met his friend.,and he met his friend,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and he said : do you like this balloon[!].,and he said do you like this balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and he said yes.,and he said yes,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,but he untie/ed[!] it.,but he untied it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and it flew away.,and it flew away,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and it was gone[!].,and it was gone,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,he was go/ing to[:_gonna] find another[!] balloon.,he was going to find another balloon,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,he found a guy with some balloon/s.,he found a guy with some balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,he (w) : ask/ed if we can have them [EU].,he asked if we can have them,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,then : he can : have : balloon [EU].,then he can have balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,he ask/ed[!] it [EU].,he asked it,0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,so : he : point/ed at : (the) : the one that has the cloth on.,so he pointed at the one that has the cloth on,0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,not the x[l] with the banana.,not the x with the banana,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,he : punched down : the five.,he punched down the five,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and he want/ed that[!] one.,and he wanted that one,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,(he gave it to hi) he did not give[!] it to him.,he did not give it to him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,so : he ran away.,so he ran away,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and from now on : they did not : went together again [EU].,and from now on they did not went together again,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and they : ran together again : with them.,and they ran together again with them,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and they were happy!,and they were happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,he chase/ed them.,he chased them,0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,(and they gave) and he gave them : all the balloon/s.,and he gave them all the balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and : the story went : more[-:] out [EU]!,and the story went more out,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,so they start/ed : it all[-:] day [EU].,so they started it all day,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,[~_okay] the giraffe and the elephant are bounce/ing a ball.,the giraffe and the elephant are bouncing a ball,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,it go/3s into the pool.,it goes into the pool,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,(the) the (uh) [~_giggles] [+..] [EU].,the,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,[~_prompt] it'is your story.,it'is your story,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,the (uh) cowlike thing go/3s in the pool and get/3s the ball.,the cowlike thing goes in the pool and gets the ball,0 0 0 3 0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and then he bring/3s it out to the elephant.,and then he brings it out to the elephant,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and then (the) (they) they are play/ing with it again.,and then they are playing with it again,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,okay (the) the elephant and the giraffe_like thing is[EW:are] go/ing to[:__gonna] go for a swim.,okay the elephant and the giraffe like thing is going to go for a swim,0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,the elephant want/3s to go off the diving board.,the elephant wants to go off the diving board,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,(she slips : and :) she slip/3s.,she slips,0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,she fell.,she fell,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and she : hurt her knee.,and she hurt her knee,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and now the lifeguard come/3s rush/ing over.,and now the lifeguard comes rushing over,0 0 0 0 3 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and the lifeguard put/3s a bandaid on it.,and the lifeguard puts a bandaid on it,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and then the elephant walk/3s over to the bench.,and then the elephant walks over to the bench,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and then the lifeguard point/3s to the no run/ing sign.,and then the lifeguard points to the no running sign,0 0 0 0 3 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,[~_okay] the giraffe thing has the airplane.,the giraffe thing has the airplane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and they are play/ing with it.,and they are playing with it,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and the giraffe guy is pretend/ing that it is do/ing loopdeloop/s and stuff.,and the giraffe guy is pretending that it is doing loopdeloops and stuff,0 0 0 0 0 6 0 0 0 6 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and the elephant snatch/3s it from him and want/3s to play with it.,and the elephant snatches it from him and wants to play with it,0 0 0 3 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and then the elephant drop/3s it in the pool.,and then the elephant drops it in the pool,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,then the giraffe is mad.,then the giraffe is mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and the lifeguard : see/3s the plane in the water.,and the lifeguard sees the plane in the water,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and the elephant explain/3s what happened.,and the elephant explains what happened,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and the lifeguard try/3s to stretch out and get it.,and the lifeguard tries to stretch out and get it,0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,but then[-:] he could not reach it.,but then he could not reach it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and the giraffe is cry/ing.,and the giraffe is crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,And then : this woman (come/3s along with a net and) she come/3s along with a net.,And then this woman she comes along with a net,0 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and she grab/3s the plane out with the net.,and she grabs the plane out with the net,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and then she give/3s it back to the giraffe.,and then she gives it back to the giraffe,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and then the giraffe hug/3s it.,and then the giraffe hugs it,0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,the bunny and the[-:] : (uh) animal [~_giggles] (uh) want to be together.,the bunny and the animal want to be together,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,(uh) they (uh) start/ed (uh) build/ing this (cas) sandcastle.,they started building this sandcastle,0 4 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,the bunny pour/3s sand all over the sandcastle.,the bunny pours sand all over the sandcastle,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and then the sandcastle (is) : it collapse/ed.,and then the sandcastle it collapsed,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and now the other animal is cry/ing.,and now the other animal is crying,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,(uh) : the animal see/3s the rabbit.,the animal sees the rabbit,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and he is wave/ing.,and he is waving,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,they decide to have a picnic together.,they decide to have a picnic together,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and (the) the rabbit eat/3s too much.,and the rabbit eats too much,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,so now he has a tummyache.,so now he has a tummyache,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and : now the rabbit feel/3s really bad.,and now the rabbit feels really bad,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and now the doctor come/3s.,and now the doctor comes,0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and : the animal is pull/ing the doctor to the rabbit.,and the animal is pulling the doctor to the rabbit,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and the doctor is take/ing the rabbit/z temperature.,and the doctor is taking the rabbit's temperature,0 0 0 0 6 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and then he is all better.,and then he is all better,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,(uh) the rabbit see/3s the animal with a balloon.,the rabbit sees the animal with a balloon,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and he wave/3s.,and he waves,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,the rabbit is (gett/ing) grab/ing the balloon.,the rabbit is grabbing the balloon,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and now the rabbit is play/ing with the balloon.,and now the rabbit is playing with the balloon,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and[-:] by accident he let go of it.,and by accident he let go of it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and now it is way up in the sky.,and now it is way up in the sky,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and then they see a man with balloon/s.,and then they see a man with balloons,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and the bunny[-:] ask/3s if he can get one.,and the bunny asks if he can get one,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,(and then ther f) and then the (g) guy say/3s (the) they are five cent/s.,and then the guy says they are five cents,0 0 0 0 3 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and then he frown/3s because he do/3s not have any money.,and then he frowns because he does not have any money,0 0 0 3 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and then he run/3s to his : dad or his mom or whatever.,and then he runs to his dad or his mom or whatever,0 0 0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and he ask/3s her to buy him a balloon.,and he asks her to buy him a balloon,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and she buy/3s both of them a balloon.,and she buys both of them a balloon,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and then (they) they are play/ing with the balloon/s.,and then they are playing with the balloons,0 0 0 0 6 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,the (gir) the giraffe and a[EW:an] elephant [EU].,the the giraffe and a elephant,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the elephant is grab/ing a ball (from his ba) from this tube.,and the elephant is grabbing a ball from this tube,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,(the : elephant[-:] uh) the giraffe put it in the water.,the giraffe put it in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the elephant is : sad.,and the elephant is sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,the[-:] giraffe jump/ed in the water.,the giraffe jumped in the water,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the elephant is go/ing like [~_hands_on_his_cheeks].,and the elephant is going like,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and he was try/ing to get the ball.,and he was trying to get the ball,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,he is swim/ing.,he is swimming,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,the (um) giraffe[-:] got (the : uh) the ball.,the giraffe got the ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and he gave it to the elephant.,and he gave it to the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,(the eleph) the giraffe is like stand/ing like this [~_hands__on_his_hips].,the giraffe is like standing like this,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the : (um) elephant is go/ing like [~_imitates_hugging_the__ball] with the ball.,and the elephant is going like with the ball,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,they are look/ing in the pool.,they are looking in the pool,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,the elephant is point/ing to the diving board.,the elephant is pointing to the diving board,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the[-:] giraffe has a towel.,and the giraffe has a towel,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,the elephant slip/ed.,the elephant slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the giraffe is run/ing.,and the giraffe is running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,(the giraffe fell[-:] in the) [~_no] the elephant fell in.,the elephant fell in,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the giraffe is run/ing still.,and the giraffe is running still,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and it is (the) the lifeguard is run/ing to her [EU].,and it is the lifeguard is running to her,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,(and) and it say/3s no run/ing.,and it says no running,0 0 3 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,the[-:] lifeguard put a bandaid on.,the lifeguard put a bandaid on,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the (um) elephant was like [~_look_of_pain_on_his_face].,and the elephant was like,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,(and the) (uh) and the lifeguard put (um) : her on the bench.,and the lifeguard put her on the bench,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the lifeguard point/ed to the (um) no run/ing sign.,and the lifeguard pointed to the no running sign,0 0 0 4 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the elephant is like [~_funny_look_on_face].,and the elephant is like,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,"(the giraffe gots[EW:has]) [~_no,_yeah] the giraffe gots[EW:has] a plane.",the giraffe gots a plane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and he was go/ing like this [~_frowns].,and he was going like this,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the[-:] elephant is go/ing like [~_funny_look_on_face].,and the elephant is going like,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the giraffe : *is swing/ing it around [EU].,and the giraffe swinging it around,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,(and the gir) and the (um) elephant is like [~_facial__expression].,and the elephant is like,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,(and the elephant is) and the elephant grab/ed it away from him.,and the elephant grabbed it away from him,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and (um she got) (she) the elephant gots[EW:has] the airplane.,and the elephant gots the airplane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and she is hold/ing it.,and she is holding it,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the giraffe is like [~_facial_expression].,and the giraffe is like,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,(and : the gir) and the elephant drop/ed it in the[-:] pool.,and the elephant dropped it in the pool,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the : giraffe is like [~_mad_face].,and the giraffe is like,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the elephant is like [~_scared_look].,and the elephant is like,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the giraffe is like [~_mad_look].,and the giraffe is like,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the elephant is like [~_scared_look].,and the elephant is like,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,remember I can not see the pictures so you have to tell me the story.,remember I can not see the pictures so you have to tell me the story,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,"(he is) : (uh the lifeguard) [~_no,_yeah] the lifeguard (he is um) : he is like at the edge?",the lifeguard he is like at the edge,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,he is go/ing like this [~_facial_expression].,he is going like this,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and (um the gir) the elephant is like [~_facial_expression].,and the elephant is like,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and then the : giraffe is[-:] just stand/ing there.,and then the giraffe is just standing there,0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and then the (um) lifeguard is (like) go/ing like [~_facial_expression].,and then the lifeguard is going like,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the elephant is like [~_facial_expression].,and the elephant is like,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the lifeguard is try/ing to get it.,and the lifeguard is trying to get it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,(and the : giraffe is) : and the : giraffe : is like (cry) on his knees.,and the giraffe is like on his knees,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and he is like cry/ing.,and he is like crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the elephant is like [~_facial_expression].,and the elephant is like,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the lifeguard is like [~_facial_expression].,and the lifeguard is like,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,(and) and this other elephant she gots[EW:has] this thing?,and this other elephant she gots this thing,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and she is go/ing like this [~_reaching_with_arms]?,and she is going like this,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and she is go/ing to [:_gonna] get it.,and she is going to get it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and she got it.,and she got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and then (the) (she) (he) the[-:] (um) elephant gave it to the giraffe.,and then the elephant gave it to the giraffe,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and then the giraffe is like [~_happy_expression].,and then the giraffe is like,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the elephant is like [~_happy_expression].,and the elephant is like,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,the[-:] bunny is play/ing.,the bunny is playing,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,(with a) he see/3s another bunny.,he sees another bunny,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,now they are start/ing to play together.,now they are starting to play together,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,now (they are) like (um p) (the other bunny) the (b) other bunny is put/ing sand somewhere.,now like the other bunny is putting sand somewhere,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,(the other bunny is um) the : sand fell on the castle : I think.,the sand fell on the castle I think,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the other bunny is try/ing to fix the castle.,and the other bunny is trying to fix the castle,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,(th) (the um) : the bunny see/3s another bunny with a basket.,the bunny sees another bunny with a basket,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,they are eat/ing (at) at a picnic place.,they are eating at a picnic place,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,the[-:] bunny is full.,the bunny is full,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and he is like [~_blows_up_cheeks].,and he is like,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and he is tap/ing his tummy because like : his tummy hurt/3s.,and he is tapping his tummy because like his tummy hurts,0 0 0 6 0 0 0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and then[-:] these swirl/s come (on) (out of his head) : on top of his head actually.,and then these swirls come on top of his head actually,0 0 0 1 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and then the other bunny (um) : see/3s the doctor and run/3s to him : there.,and then the other bunny sees the doctor and runs to him there,0 0 0 0 0 3 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and (the other bunny) (n) the same bunny (um) : not the sick one (uh) : drived|drive[EW:drove] (the um) : the[-:] doctor to the (b) other bunny.,and the same bunny not the sick one drived the doctor to the other bunny,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and then the doctor was like : point/ing.,and then the doctor was like pointing,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and : the other bunny was like [~_points_to_picture_in_book].,and the other bunny was like,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,remember I can not see the picture.,remember I can not see the picture,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,I know [+_bch].,I know,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,yeah he was like that[!].,yeah he was like that,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,the (b um) bunny see/3s the other bunny with the wagon and a balloon.,the bunny sees the other bunny with the wagon and a balloon,0 0 3 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,the other bunny (i) is go/ing like this [~_motions_with_arm_in__the_air] to the string.,the other bunny is going like this to the string,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,he is try/ing to get it.,he is trying to get it,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,he is try/ing to untie it.,he is trying to untie it,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,(the[-:]) (there) : he (uh um) let it go.,he let it go,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and it is float/ing up.,and it is floating up,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the other bunny (with) : (that one) (that) that is like : try/ing to get it [EU].,and the other bunny that is like trying to get it,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the other bunny is (w) like that [~_points_to_the_picture__in_storybook].,and the other bunny is like that,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,(the) the bunny is like this.,the bunny is like this,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the other bunny is like [~_pointing_to_pictures_and_making__faces].,and the other bunny is like,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,remember I can not see the pictures.,remember I can not see the pictures,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,I know [+_bch].,I know,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,so you have to tell me the story.,so you have to tell me the story,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,I know that is what I am [+_bch].,I know that is what I am,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and there is this guy with (um) balloon/s.,and there is this guy with balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and : the[-:] bunny is look/ing at him.,and the bunny is looking at him,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,but the other bunny is mad with the wagon [EU].,but the other bunny is mad with the wagon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,(and the w) and now the bunny without the wagon is (try) go/ing to[:_gonna] buy a balloon.,and now the bunny without the wagon is going to buy a balloon,0 0 0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,(an) but (the other) the one with the wagon : is : like behind him right there.,but the one with the wagon is like behind him right there,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,(na) (and he do/3s not) the (one) one that he pick/ed (ha) is five cent/s.,the one that he picked is five cents,0 0 0 0 4 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and he do/3s not have any money.,and he does not have any money,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,(so like) and both of them came to the man.,and both of them came to the man,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the man was stand/ing.,and the man was standing,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,(and the rab) and the bunny saw (the) the doctor.,and the bunny saw the doctor,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,the : bunny (ask/ed the doctor to) : he was check/ing his pocket/s.,the bunny he was checking his pockets,0 0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and he was show/ing the pockets to : the doctor.,and he was showing the pockets to the doctor,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and (um) : he point/ed to the : man and (um) : to the doctor.,and he pointed to the man and to the doctor,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the doctor is like [~_puts_head_to_the_side__trying_to_look_uninterested].,and the doctor is like,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the doctor pay/3s money.,and the doctor pays money,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and now the both of the bunny/s got[EW:have] : balloon/s [EU].,and now the both of the bunnies got balloons,0 0 0 0 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,There is a[EW:an] elephant dress/ed like a girl.,There is a elephant dressed like a girl,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,a[EW:an] elephant *is swim/ing barenaked [EU].,a elephant swimming barenaked,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,elephant *is play/ing with a ball [EU].,elephant playing with a ball,0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,horse *is in the water [EU].,horse in the water,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,the (horse) horse *is steal/ing : the ball from the elephant [EU].,the horse stealing the ball from the elephant,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,(horse) the horse is dress/ed like a girl.,the horse is dressed like a girl,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,(horse is) a[?] horse is push/ing a[EW:an][?] elephant into the water.,a horse is pushing a elephant into the water,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,elephant is run/ing.,elephant is running,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,: (s) fell and scrape/ed her knee [EU].,fell and scraped her knee,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,: cry/ed [EU].,cried,4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,: (um) : go/ing home [EU].,going home,6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,went swim/ing again [EU].,went swimming again,0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,: his dad got mad at him.,his dad got mad at him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,(uh : Elephant) elephant is push/ing the horse.,elephant is pushing the horse,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,dive/ing off the diving board [EU].,diving off the diving board,6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,(the horse is) : the horse is : hit/ing him.,the horse is hitting him,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,hit/ing : yeah [+_bch].,hitting yeah,6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,(horse) horse : put his airplane into the water.,horse put his airplane into the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,horse *is play/ing a game [EU].,horse playing a game,0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,(uh ) : elephant *is go/ing to get (the) the (um) plane in the water [EU].,elephant going to get the plane in the water,0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,he got it.,he got it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,got mad at it.,got mad at it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,: horse cry/ed.,horse cried,0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,: elephant got it.,elephant got it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,: (got it) got it with his : fishing rod.,got it with his fishing rod,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,got his airplane back.,got his airplane back,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,hug/ed it.,hugged it,4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,a rabbit is play/ing with a mouse in a sandbox.,a rabbit is playing with a mouse in a sandbox,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,the mouse is play/ing with the rabbit build/ing the sandcastle.,the mouse is playing with the rabbit building the sandcastle,0 0 0 6 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,(the rabbit) : the rabbit : breaked|break[EW:broke] it.,the rabbit breaked it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,: the mouse got mad.,the mouse got mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,he built it again.,he built it again,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,(The mouse is) the rabbit is follow/ing the mouse : to a picnic.,the rabbit is following the mouse to a picnic,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,he is eat/ing a sandwich.,he is eating a sandwich,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,he got dizzy.,he got dizzy,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,look/3s like a doctor [EU].,looks like a doctor,3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,push/ed him [EU].,pushed him,4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,(g) and : he : eat|eat[EW:ate] all the lunch.,and he eat all the lunch,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,: walk/ing with the doctor [EU].,walking with the doctor,6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,the mouse is push/ing : a cart with a balloon on it.,the mouse is pushing a cart with a balloon on it,0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,and the rabbit is follow/ing (him) him.,and the rabbit is following him,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,now : the rabbit is push/ing.,now the rabbit is pushing,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,(and then) and (the) the mouse[!] is follow/ing him.,and the mouse is following him,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,(took) he took the balloon off.,he took the balloon off,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,let it go.,let it go,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,it pop/ed.,it popped,0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,: he saw some more.,he saw some more,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,got another one.,got another one,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,: was not allow/ed to get one.,was not allowed to get one,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,he got mad.,he got mad,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,(stole) stole all of them [EU].,stole all of them,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,said look there is[EW:are] those balloon/s.,said look there is those balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,talk/ed : to a doctor [EU].,talked to a doctor,4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,(he got a) he got one balloon.,he got one balloon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,once upon a time there was a[EW:an] elephant and a giraffe.,once upon a time there was a elephant and a giraffe,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,: the elephant had a ball.,the elephant had a ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,: it fell in the water.,it fell in the water,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,: (th) the[-:] giraffe went (uh) in and swam to it : and gave it back to the elephant.,the giraffe went in and swam to it and gave it back to the elephant,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,and the elephant took it away (from the cow) from the[-:] : giraffe.,and the elephant took it away from the giraffe,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,once upon a time there was : an elephant and a giraffe.,once upon a time there was an elephant and a giraffe,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,they were : at : a pool.,they were at a pool,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,: the elephant (ra) (ran) : ran.,the elephant ran,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,: and she slip/ed.,and she slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,she stub/ed her knee.,she stubbed her knee,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,and the giraffe came run/ing.,and the giraffe came running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,: (the) and the giraffe call/ed the lifeguard.,and the giraffe called the lifeguard,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the lifeguard put a bandaid on the elephant/z knee.,the lifeguard put a bandaid on the elephant's knee,0 0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,and she felt all better.,and she felt all better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,then the lifeguard show/ed her the sign : that said no run/ing.,then the lifeguard showed her the sign that said no running,0 0 0 4 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,once there was a[EW:an] elephant and a giraffe.,once there was a elephant and a giraffe,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the giraffe had a plane.,the giraffe had a plane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,: the elephant took it away from him.,the elephant took it away from him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,and it fell in the water.,and it fell in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the giraffe got mad at the elephant.,the giraffe got mad at the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the lifeguard came.,the lifeguard came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the elephant told the lifeguard something.,the elephant told the lifeguard something,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the lifeguard try/ed to reach (in it) : (i) in to get it.,the lifeguard tried to reach in to get it,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,: the lifeguard could not get it.,the lifeguard could not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,and the giraffe start/ed cry/ing.,and the giraffe started crying,0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,a lady came with a net.,a lady came with a net,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,she got it out.,she got it out,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,and : she gave it back to the giraffe.,and she gave it back to the giraffe,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the giraffe : like/ed have/ing it back.,the giraffe liked having it back,0 0 4 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,once there was a rabbit and a : puppy.,once there was a rabbit and a puppy,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,: the : rabbit and the puppy were make/ing a sandcastle.,the rabbit and the puppy were making a sandcastle,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the rabbit put water on it.,the rabbit put water on it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,: it melt/ed.,it melted,0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,: the puppy start/ed cry/ing.,the puppy started crying,0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,one day : there was a : puppy and a rabbit.,one day there was a puppy and a rabbit,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the rabbit had a big lunch.,the rabbit had a big lunch,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,and the puppy had a small one.,and the puppy had a small one,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the rabbit : ate quickly : with it/z lunch.,the rabbit ate quickly with it's lunch,0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,and the puppy : ate slowly.,and the puppy ate slowly,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the rabbit got dizzy.,the rabbit got dizzy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,: the puppy ran to get a doctor.,the puppy ran to get a doctor,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the doctor went with the puppy.,the doctor went with the puppy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the[-:] doctor (uh) : took care of the rabbit.,the doctor took care of the rabbit,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,: the : doctor got the rabbit to feel better.,the doctor got the rabbit to feel better,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,one day : a puppy had a balloon.,one day a puppy had a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the rabbit saw the balloon.,the rabbit saw the balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the rabbit untie/ed it (from hi) from the puppy/z (wago) wagon.,the rabbit untied it from the puppy's wagon,0 0 4 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the balloon float/ed in the air.,the balloon floated in the air,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the puppy got mad at the rabbit.,the puppy got mad at the rabbit,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,a rabbit : came around with a whole bunch of balloon/s.,a rabbit came around with a whole bunch of balloons,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,: (a little) the little rabbit : ask/ed if he could have a balloon.,the little rabbit asked if he could have a balloon,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the guy said no because he has no money.,the guy said no because he has no money,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the puppy and the rabbit (wer) were sad.,the puppy and the rabbit were sad,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the rabbit saw a doctor.,the rabbit saw a doctor,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the (d) rabbit ask/ed the doctor if she has any money.,the rabbit asked the doctor if she has any money,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the doctor said yes : (she s) and said that she will pay for it.,the doctor said yes and said that she will pay for it,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,and the puppy and rabbit had their own balloon/s.,and the puppy and rabbit had their own balloons,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,I saw a giraffe and a[EW:an] elephant.,I saw a giraffe and a elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(that) : that is it [+_bch].,that is it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,I saw an elephant go swim/ing.,I saw an elephant go swimming,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(I saw eleph) I saw the (g) giraffe and the elephant (s) drop *the ball in the pool [EU].,I saw the giraffe and the elephant drop ball in the pool,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,I saw giraffe swim/ing in the pool to get that ball.,I saw giraffe swimming in the pool to get that ball,0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,the giraffe got[EW:has] to get out of that pool.,the giraffe got to get out of that pool,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,the[?] giraffe always get|get[EW:gets] wet.,the giraffe always get wet,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,that is the end [+_bch].,that is the end,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(The) (the giraffe) : the boy is gone.,the boy is gone,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,"(the) the elephant *is go/ing to jump in the pool, *and make it splash [EU].",the elephant going to jump in the pool make it splash,0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(then the) and that giraffe is work/ing get/ing the (uh) xx.,and that giraffe is working getting the,0 0 0 0 6 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,elephant hurt his leg.,elephant hurt his leg,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,elephant cry|cry[EW:cried]!,elephant cry,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,elephant lose|lose[EW:lost] his eye[?].,elephant lose his eye,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,elephant sit|sit[EW:sat] down : and get|get[EW:got] *a bandaid [EU].,elephant sit down and get bandaid,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(eh elephant lo look) the elephant : sit|sit[EW:sat] down.,the elephant sit down,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,that is the end [+_bch].,that is the end,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,The giraffe talk|talk[EW:talks] with xx giraffe.,The giraffe talk with giraffe,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,the giraffe play|play[EW:plays] with a plane.,the giraffe play with a plane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,elephant (l) get|get[EW:gets] the plane.,elephant get the plane,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,and : he get|get[EW:gets] it.,and he get it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(he) (he) he hold|hold[EW:holds] it.,he hold it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,the elephant drop/ed the plane in the water.,the elephant dropped the plane in the water,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(the p) (the) (the) ( the) that giraffe xx the elephant.,that giraffe the elephant,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(that) (hm m) (that) (uh uh) that giraffe look|look[EW:looks] at that plane and (look) swim/3s in the pool.,that giraffe look at that plane and swims in the pool,0 0 0 0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(uh : uh) that elephant look|look[EW:looks] at that : elephant.,that elephant look at that elephant,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(that eleph) that elephant look|look[EW:looks] at that plane in the water.,that elephant look at that plane in the water,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(and) (and that) and that giraffe cry|cry[EW:cries] !,and that giraffe cry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(and tha) and there is[EW:are] three elephant/s.,and there is three elephants,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,what is happen/ing ?,what is happening,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(uh) that elephant *is go/ing to pick the plane out of the pool [EU].,that elephant going to pick the plane out of the pool,0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,he get|get[EW:got] it out.,he get it out,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,he got it.,he got it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,he got it (for) for (the) the giraffe.,he got it for the giraffe,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,that is the end [+_bch].,that is the end,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(The) (th this) (the) (the) (the) (the) (the) the guy : *is make/ing a sandcastle [EU].,the guy making a sandcastle,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,and that rabbit *is make/ing a sandcastle too [EU].,and that rabbit making a sandcastle too,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,he spill/ed on : that guy/z castle.,he spilled on that guy's castle,0 4 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,it is all broken.,it is all broken,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(th) (that) that[!] guy cry|cry[EW:cries].,that guy cry,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,that is the end [+_bch].,that is the end,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(Ah) this guy and this rabbit are go/ing *to eat : outside [EU].,this guy and this rabbit are going eat outside,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,they *are eat/ing some food [EU].,they eating some food,0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(the) that guy *is hav/ing a drink [EU].,that guy having a drink,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,that rabbit is full.,that rabbit is full,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,that rabbit : is done that.,that rabbit is done that,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,this guy hold|hold[EW:holds] rabbit/z jacket.,this guy hold rabbit's jacket,0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(an) and this guy : is sick.,and this guy is sick,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,that rabbit *is go/ing *to take him to the hospital [EU].,that rabbit going take him to the hospital,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,that is the end [+_bch].,that is the end,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(uh) that guy get[EW:gets] *a balloon for a rabbit [EU].,that guy get balloon for a rabbit,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,that rabbit *is go/ing *to get the balloon [EU].,that rabbit going get the balloon,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(the) then (that) (that) that rabbit *is go/ing *to tie the balloon off [EU].,then that rabbit going tie the balloon off,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(an) and the rabbit *is go/ing *to hold it [EU].,and the rabbit going hold it,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,and it flew up to the sky.,and it flew up to the sky,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,it flewed|fly[EW:flew] up.,it flewed up,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,and that guy is mad because she is let it up to the sky [EU].,and that guy is mad because she is let it up to the sky,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(an) (and this) and this guy have|have[EW:has] lot/s of balloon/s.,and this guy have lots of balloons,0 0 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,and that rabbit want[EW:wants] this[!] one.,and that rabbit want this one,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(he want) he want [EU].,he want,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,look at his pant/s.,look at his pants,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,xxx.,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,then rabbit do|do[EW:does] not want a balloon.,then rabbit do not want a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(uh) not going to [:_gonna] xx xx that rabbit.,not going to that rabbit,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(that guy c) (that w) that rabbit want|want[EW:wants] a balloon.,that rabbit want a balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,and (he is) he is go/ing *to (get) get some money and get a balloon [EU]!,and he is going get some money and get a balloon,0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(he) (he get) he hold|hold[EW:holds] it.,he hold it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,that is the end [+_bch].,that is the end,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(uh) there is an elephant .,there is an elephant,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(And there is a) and there is a giraffe .,and there is a giraffe,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,the elephant and the giraffe look/ed at a (sss) stone .,the elephant and the giraffe looked at a stone,0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,but (they) they thought it was a balloon .,but they thought it was a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(Then they were) (and) (and) and they were swim/ing for it .,and they were swimming for it,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(And) (and then he got) and then the elephant got it .,and then the elephant got it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,and they are play/ing soccer with it .,and they are playing soccer with it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,The end [+_bch] .,The end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(They are go/ing) they are go/ing to swim in there.,they are going to swim in there,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,But they have to jump from the diving board.,But they have to jump from the diving board,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(She go/3s first) the elephant go/3s first.,the elephant goes first,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,And (then) then they were xxx whos[EW:who] go/3s first [EU].,And then they were whos goes first,0 0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,And (they) the giraffe was go/ing to go first.,And the giraffe was going to go first,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,And then the elephant goed|go[EW:went] ahead of him .,And then the elephant goed ahead of him,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(Then he) then he was race/ing : to get the elephant (to go) to jump in the dive/ing board [EU].,then he was racing to get the elephant to jump in the diving board,0 0 0 6 0 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(then) Then she hurt her knee.,Then she hurt her knee,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,Then give/ing her a bandaid : [EU].,Then giving her a bandaid,0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,[~_LONG_PAUSE] Then what happen/ed ?,Then what happened,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(uh uh) She was cry/ing.,She was crying,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,She bringed|bring[EW:brought] her : to : the giraffe.,She bringed her to the giraffe,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,he was go/ing to hug her.,he was going to hug her,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,And (then) (then) then she had a time out.,And then she had a time out,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,And she was run/ing on the deck.,And she was running on the deck,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,that is not allow/ed.,that is not allowed,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,And she was go/ing to go on a time out [EU].,And she was going to go on a time out,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,The end [+_bch].,The end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(uh) they told[EW:asked] question/s.,they told questions,0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(They found a elephant in his pock uh) they found (a) a plane in his pocket.,they found a plane in his pocket,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,And then the elephant grab/ed it : without say/ing please.,And then the elephant grabbed it without saying please,0 0 0 0 4 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(and then she was go/ing throw) (She throwed|throw[EW:threw] the) (i) (she) it slip/ed out of her hand.,it slipped out of her hand,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,And it goed|go[EW:went] in the water.,And it goed in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,And it was sink/ing.,And it was sinking,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(then) (then the) then the man it[EW:he] was go/ing to swim.,then the man it was going to swim,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,He said why is that airplane in the pool?,He said why is that airplane in the pool,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(she said) (i) and it slip/ed out of his hand she said [EU].,and it slipped out of his hand she said,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(then sh) (and then) (and then she thought) : she was try/ing to get it .,she was trying to get it,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,But he was go/ing to fall in the water .,But he was going to fall in the water,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,Then he was (too scare/ed) too[?] scare/ed.,Then he was too scared,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,Then he was go/ing to catch it.,Then he was going to catch it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,The girl : and mommy : [EU].,The girl and mommy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,What do you see ?,What do you see,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(uh) She caught it.,She caught it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,: And then what happen/ed ?,And then what happened,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,She gave it to him .,She gave it to him,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,Then they were happy.,Then they were happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,They were happy ?,They were happy,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,The end [+_BCH].,The end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(uh) the bunny rabbit/s are dig/ing.,the bunny rabbits are digging,0 0 1 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(the) (the bunny) the bunny/s are make/ing a sandcastle.,the bunnies are making a sandcastle,0 1 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,they are dump/ing it on.,they are dumping it on,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,and he : no no [EU]!,and he no no,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(hm) they are make/ing a new castle.,they are making a new castle,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,The end [+_bch].,The end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,they are go/ing on a walk.,they are going on a walk,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,they are eat/ing too much[EW:many] thing/s.,they are eating too much things,0 0 6 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,he has a stomachache.,he has a stomachache,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(hmm) his eye/s are flutter/ing.,his eyes are fluttering,0 1 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,they are have/ing to work.,they are having to work,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,he is hold/ing his hand.,he is holding his hand,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(he) (he) now he[!] has a stomachache.,now he has a stomachache,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(uh) the little boy is go/ing home.,the little boy is going home,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,The end [+_bch].,The end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(they are) (they are) (they are pull/ing this) they are pull/ing the wagon.,they are pulling the wagon,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,they are pull/ing the wagon?,they are pulling the wagon,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(They were) they found a balloon.,they found a balloon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,they tie/ed it on the wagon.,they tied it on the wagon,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,it flied|fly[EW:flew] away.,it flied away,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,and they were really mad.,and they were really mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(then) then the man comed|come[EW:came] : with balloon/s.,then the man comed with balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,he point/ed which one he want/ed [EU].,he pointed which one he wanted,0 4 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,but he had a stomachache.,but he had a stomachache,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,here come/3s another one.,here comes another one,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,and he said do you[!] want a balloon?,and he said do you want a balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(he) and he runned|run[EW:ran] back.,and he runned back,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(um) he telled|tell[EW:told] him what was wrong.,he telled him what was wrong,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(then) (and then) and then : they said we want a balloon.,and then they said we want a balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(and he) and then they had a balloon.,and then they had a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,The end [+_bch].,The end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,A giraffe and a[EW:an] elephant : are play/ing : basketball [~_/baesIkbal/].,A giraffe and a elephant are playing basketball,0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and the basketball fell in the water.,and the basketball fell in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and the giraffe swimmed|swim[EW:swam] to it : to get the basketball.,and the giraffe swimmed to it to get the basketball,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and (the elephant) the giraffe[-:] : (hand it) hand|hand[EW:handed] it : to the elephant.,and the giraffe hand it to the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and the elephant was surprise/ed.,and the elephant was surprised,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,The giraffe and the elephant want/ed to jump in the water.,The giraffe and the elephant wanted to jump in the water,0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and (gir) elephant went first.,and elephant went first,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,then elephant was dance/ing.,then elephant was dancing,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and the elephant got hurt.,and the elephant got hurt,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,"and the giraffe help/ed her, the elephant.",and the giraffe helped her the elephant,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and the elephant cry/ed.,and the elephant cried,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and (the) the other elephant got a bandaid and put it on his owee.,and the other elephant got a bandaid and put it on his owee,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,the other elephant said no run/ing.,the other elephant said no running,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,(The giraffe and the) the : giraffe and the elephant was[EW:were] happy.,the giraffe and the elephant was happy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,the giraffe was play/ing with a[EW:an] airplane.,the giraffe was playing with a airplane,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and the elephant took the plane and play/*ed with it [EU].,and the elephant took the plane and play with it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and : elephant drop/ed it in the water.,and elephant dropped it in the water,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and giraffe was mad : (uh) at the elephant.,and giraffe was mad at the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,(and the other elephant is).,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,what [+_bch]?,what,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,what is he do/ing [+_bch]?,what is he doing,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,what is he doing?,what is he doing,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,(he was do/ing) : (like[-:] he was).,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,what is happen/ing?,what is happening,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,elephant and giraffe was[EW:were] look/ing at the elephant.,elephant and giraffe was looking at the elephant,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,(the ele) (the first ele) the girl elephant : look|look[EW:looked] at the airplane.,the girl elephant look at the airplane,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and the other elephant try/ed to get it.,and the other elephant tried to get it,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and the (uh) giraffe : elephant and the other elephant was sad.,and the giraffe elephant and the other elephant was sad,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,the : third elephant : can get the airplane.,the third elephant can get the airplane,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and (the elep) the other elephant get|get[EW:got] out the airplane.,and the other elephant get out the airplane,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and the other third (ele) elephant give|give[EW:gave] it to the giraffe.,and the other third elephant give it to the giraffe,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and the giraffe said thank you.,and the giraffe said thank you,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and giraffe was so happy.,and giraffe was so happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,bunny and a dog was[EW:were] make/ing a sandcastle.,bunny and a dog was making a sandcastle,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and[-:] the bunny and the dog was[EW:were] make/ing a big (s) sandcastle.,and the bunny and the dog was making a big sandcastle,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and : rabbit : (w) was not : do/ing the right thing.,and rabbit was not doing the right thing,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and[-:] rabbit broke the sandcastle.,and rabbit broke the sandcastle,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and one part left.,and one part left,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and the dog was so[-:] : sad.,and the dog was so sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,the dog and the bunny was[EW:were] go/ing for a snack.,the dog and the bunny was going for a snack,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and the rabbit got a cake : cookie/s mustard : carrot/s : and a hot dog.,and the rabbit got a cake cookies mustard carrots and a hot dog,0 0 0 0 0 0 1 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and the bunny was too full.,and the bunny was too full,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and the bunny was too[-:] stuff/ed.,and the bunny was too stuffed,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and the dog said : are you a nurse?,and the dog said are you a nurse,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,please help : my friend.,please help my friend,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,(here is) : here she is.,here she is,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,the nurse said : you are get/ing sick.,the nurse said you are getting sick,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and (a nurse said to go) the nurse said you have to go home and go to your bed and : sleep awhile.,and the nurse said you have to go home and go to your bed and sleep awhile,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,(The dog w) (and the bunny were going to have[-:]) (to go for) (go) (want/ed) the dog want/ed to go to the park.,the dog wanted to go to the park,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,the bunny said how you got|get[EW:get] that balloon [EU]?,the bunny said how you got that balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,what is that [~_noises] [+_bch]?,what is that,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,just somebody next door.,just somebody next door,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,(the bunny : put) (the bunny) the bunny (inti) untie/ed the balloon.,the bunny untied the balloon,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and the balloon went away.,and the balloon went away,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and : the dog : was too mad.,and the dog was too mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,the[-:] balloon man had (lo) : (fi) nine balloon/s.,the balloon man had nine balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,the balloon man said do you want a balloon?,the balloon man said do you want a balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,yes please.,yes please,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,balloon (five) : five cent/s please.,balloon five cents please,0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and the bunny did not have any money : to buy a balloon.,and the bunny did not have any money to buy a balloon,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and[-:] the nurse bunny said *do you have any money [EU]?,and the nurse bunny said you have any money,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,I want to have a balloon.,I want to have a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,it is okay.,it is okay,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,you can have a balloon.,you can have a balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,yes.,yes,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,thank you nursey.,thank you nursey,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,There was this giraffe and this elephant : who want/ed to swim.,There was this giraffe and this elephant who wanted to swim,0 0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,but the elephant : was[-:] play/ing ball.,but the elephant was playing ball,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and : the ball went into the water.,and the ball went into the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and the elephant did not want[!] to go swim/ing.,and the elephant did not want to go swimming,0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the giraffe : went to get the ball.,the giraffe went to get the ball,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and the elephant was scare/ed.,and the elephant was scared,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the elephant : help/3s the giraffe out (with the balloon) with the ball .,the elephant helps the giraffe out with the ball,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and : the elephant was glad.,and the elephant was glad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and : the elephant : start/ed to play with the giraffe : with the ball .,and the elephant started to play with the giraffe with the ball,0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,The[-:] giraffe want/ed to (tea) teach the elephant how to swim.,The giraffe wanted to teach the elephant how to swim,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,but then the elephant just want/ed to jump in.,but then the elephant just wanted to jump in,0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the giraffe : said okay.,the giraffe said okay,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,but then the elephant start/ed to run.,but then the elephant started to run,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and the giraffe : said you can not run.,and the giraffe said you can not run,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the elephant slip/ed and : hit her knee : on the : side : of the pool .,the elephant slipped and hit her knee on the side of the pool,0 0 4 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the giraffe saw a lifeguard and call/ed him over.,the giraffe saw a lifeguard and called him over,0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the lifeguard start/ed to heal : her.,the lifeguard started to heal her,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,(it h) he put a bandaid on her knee.,he put a bandaid on her knee,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and : it hurt her.,and it hurt her,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,then when she : got up : it did not hurt any more .,then when she got up it did not hurt any more,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,then the lifeguard got mad and said can not you read the sign [EU]?,then the lifeguard got mad and said can not you read the sign,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,The elephant : said to the giraffe I want to play with the : airplane too!,The elephant said to the giraffe I want to play with the airplane too,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the giraffe said no I want : to play by myself.,the giraffe said no I want to play by myself,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the elephant just snatch/ed (the) : the airplane away.,the elephant just snatched the airplane away,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and the : giraffe got mad.,and the giraffe got mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the[-:] elephant accidentally drop/ed the : airplane in the pool.,the elephant accidentally dropped the airplane in the pool,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the giraffe got really mad.,the giraffe got really mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and : she : did not mean it.,and she did not mean it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the elephant saw a lifeguard : and : ask/ed him to get it out.,the elephant saw a lifeguard and asked him to get it out,0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and then he said okay.,and then he said okay,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,he start/ed to reach for it.,he started to reach for it,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,but he could not reach it.,but he could not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the giraffe start/ed to cry.,the giraffe started to cry,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,there was this other[!] elephant.,there was this other elephant,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,she said I will[!] get it for you guy/s.,she said I will get it for you guys,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,(she) she went to get a net and start/ed to get the : airplane.,she went to get a net and started to get the airplane,0 0 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,she got the airplane and gave it to the giraffe.,she got the airplane and gave it to the giraffe,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the giraffe was happy .,the giraffe was happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and : he was sorry for yell/ing at the elephant .,and he was sorry for yelling at the elephant,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,There were these two animal/s : a bunny and : a[-:] dog : who decide/ed to play in the sandbox.,There were these two animals a bunny and a dog who decided to play in the sandbox,0 0 0 0 1 0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,they start/ed to make a sandcastle.,they started to make a sandcastle,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the rabbit : pour/ed sand on : the sandcastle.,the rabbit poured sand on the sandcastle,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and the dog got : disappoint/ed.,and the dog got disappointed,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and then : the dog : made a pile.,and then the dog made a pile,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and the rabbit got mad.,and the rabbit got mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and then the dog : cry/ed.,and then the dog cried,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and then : the bunny : was : just mind/ing his own business.,and then the bunny was just minding his own business,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,there was this dog and this bunny : that decide/ed to go on a picnic.,there was this dog and this bunny that decided to go on a picnic,0 0 0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the rabbit start/ed to eat : lot/s.,the rabbit started to eat lots,0 0 4 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and : the : dog : just look/ed at him.,and the dog just looked at him,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,then the rabbit laid down.,then the rabbit laid down,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and : he burp/ed while the dog : was eat/ing.,and he burped while the dog was eating,0 0 4 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and then the bunny : start/ed to get sick.,and then the bunny started to get sick,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and the dog did not know what to do.,and the dog did not know what to do,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,(he ran) : (the) then they saw : a nurse.,then they saw a nurse,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and the dog ran : to call the nurse.,and the dog ran to call the nurse,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,he pull/ed the nurse to the bunny : and said : to the nurse that : the bunny was sick.,he pulled the nurse to the bunny and said to the nurse that the bunny was sick,0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the doctor : check/ed the bunny : (an) to see what is wrong with him.,the doctor checked the bunny to see what is wrong with him,0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,she gave him some medicine.,she gave him some medicine,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and the bunny was better.,and the bunny was better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and the dog was glad.,and the dog was glad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,There : was a dog and a bunny.,There was a dog and a bunny,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and the dog had a wagon : with a balloon.,and the dog had a wagon with a balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and the bunny came and said what : are you do/ing?,and the bunny came and said what are you doing,0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the dog said : I am go/ing to : go in the wagon and : go down the hill : and see what would happen.,the dog said I am going to go in the wagon and go down the hill and see what would happen,0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the : bunny start/ed to untie the : balloon.,the bunny started to untie the balloon,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and the dog got mad.,and the dog got mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the bunny : let go of the balloon.,the bunny let go of the balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and then they all scream/ed and try/ed to chase it.,and then they all screamed and tried to chase it,0 0 0 0 4 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,(the) : the bunny just look/ed up (and) to see the balloon go[EW:going] away.,the bunny just looked up to see the balloon go away,0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and the dog got really mad.,and the dog got really mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the bunny saw a man : with lot/s of balloon/s.,the bunny saw a man with lots of balloons,0 0 0 0 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and he : want/ed to get one for the dog.,and he wanted to get one for the dog,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,he ask/ed the man for one balloon : and brought it to the dog.,he asked the man for one balloon and brought it to the dog,0 4 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the man said the balloon/s were for five cent/s.,the man said the balloons were for five cents,0 0 0 0 1 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and (he) the bunny said that he had no money left.,and the bunny said that he had no money left,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,then the dog came : and ask/ed what he was do/ing.,then the dog came and asked what he was doing,0 0 0 0 0 4 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the bunny : said that he want/ed to get another balloon.,the bunny said that he wanted to get another balloon,0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and then he saw : this[-:] : other : bunny : that look/ed : like : (a) : (a) : a banker.,and then he saw this other bunny that looked like a banker,0 0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,(he) (she) (he) the bunny told the other bunny that : he had no money to buy a balloon for his friend.,the bunny told the other bunny that he had no money to buy a balloon for his friend,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the woman gave : ten cent/s to the man to buy two balloon/s for each of them.,the woman gave ten cents to the man to buy two balloons for each of them,0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and then : the bunny said sorry to the dog.,and then the bunny said sorry to the dog,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,(um) one day I went over to my friend.,one day I went over to my friend,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,(um) she was play/ing with her ball : (ll) [~_continuation_of__final_word].,she was playing with her ball,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,the ball fell into the pool beside the place where she was play/ing.,the ball fell into the pool beside the place where she was playing,0 0 0 0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,so I swam over (er) [~_continuation_of_over] and got the ball.,so I swam over and got the ball,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,I swam back to her and gave her the ball : (ll) [~_continuation__of_final_word].,I swam back to her and gave her the ball,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,she was happy.,she was happy,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,(hmm) : one day me and my friend were by the pool.,one day me and my friend were by the pool,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,: she want/ed to jump off the diving board.,she wanted to jump off the diving board,0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,so she ran over to it.,so she ran over to it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,while she was run/ing (she fff) she slip/ed and hurt her knee : (ee) [~_continuation_of_final_word].,while she was running she slipped and hurt her knee,0 0 0 6 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,(yu) I call/ed the lifeguard.,I called the lifeguard,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,he put a bandaid on it (iii) [~_continuation_of_final_word].,he put a bandaid on it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,then she felt much better.,then she felt much better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,he told her not to run : because it says no run/ing.,he told her not to run because it says no running,0 0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,there is a sign right there.,there is a sign right there,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,one day I was play/ing with my airplane with my friend by the pool : (ll) [~_continuation_of_last_word].,one day I was playing with my airplane with my friend by the pool,0 0 0 0 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,she saw the airplane.,she saw the airplane,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,and then she took it from me.,and then she took it from me,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,(an) and she drop/ed it in the pool.,and she dropped it in the pool,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,I was angry with her.,I was angry with her,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,(she) he call/ed the lifeguard (rd rd) [~_continuation_of__last_word].,he called the lifeguard,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,she show/ed him the plane that was in the pool.,she showed him the plane that was in the pool,0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,he could not reach it.,he could not reach it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,: then I start/ed cry/ing.,then I started crying,0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,(nn) then a lady came over with a net.,then a lady came over with a net,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,she got the airplane.,she got the airplane,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,she gave it back to me.,she gave it back to me,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,then I was happy.,then I was happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,(um um) once I was play/ing in the sandbox with my friend.,once I was playing in the sandbox with my friend,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,and we were play/ing with our shovel/s : (ulz).,and we were playing with our shovels,0 0 0 6 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,we dug up lot/s of sand (nd) and put them in pail/s and made a sandcastle (ll).,we dug up lots of sand and put them in pails and made a sandcastle,0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,(we) we dump/ed sand over : the sandcastle.,we dumped sand over the sandcastle,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,the sandcastle : broke.,the sandcastle broke,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,and we had a heap of sand : (nd).,and we had a heap of sand,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,and then my friend start/ed : cry/ing because I dump/ed the sand on it : because he want/ed to keep the sandcastle.,and then my friend started crying because I dumped the sand on it because he wanted to keep the sandcastle,0 0 0 0 4 6 0 0 4 0 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,I went on a picnic with my friend one day.,I went on a picnic with my friend one day,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,and[-:] we had lot/s to eat.,and we had lots to eat,0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,(um) : I had a lot in my basket.,I had a lot in my basket,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,my friend had a little bit.,my friend had a little bit,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,I ate so much that I got a tummyache.,I ate so much that I got a tummyache,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,(it) : it hurted|hurt[EW:hurt] so bad.,it hurted so bad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,and : my friend told the doctor (er).,and my friend told the doctor,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,(and) (and) and the doctor made me feel much better.,and the doctor made me feel much better,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,(wer) : and then she took me home.,and then she took me home,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,and my friend : ate the rest of her part of the picnic.,and my friend ate the rest of her part of the picnic,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,one day I saw my friend.,one day I saw my friend,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,she had a wagon with a balloon tie/ed to it.,she had a wagon with a balloon tied to it,0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,I came over.,I came over,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,and (she) he show/ed me the balloon.,and he showed me the balloon,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,(um) but then I untie/ed it.,but then I untied it,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,and it float/ed away.,and it floated away,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,my friend was mad.,my friend was mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,(uh) but then I saw the balloon seller.,but then I saw the balloon seller,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,(uh) and I ask/ed for one balloon.,and I asked for one balloon,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,(um) and : he (ssa) told me that the balloon/s were five cent/s : (ss).,and he told me that the balloons were five cents,0 0 0 0 0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,then[-:] my friend came over.,then my friend came over,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,and[-:] [~_let_me_see] she had five cent/s.,and she had five cents,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,then we saw[-:] : the doctor.,then we saw the doctor,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,: and then she[!] came over.,and then she came over,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,and she gave us five cent/s.,and she gave us five cents,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,and then she bought us each a balloon.,and then she bought us each a balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,One day : a : giraffe saw : a[Ew:an] elephant : play/ing : with some ball/s.,One day a giraffe saw a elephant playing with some balls,0 0 0 0 0 0 0 6 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,the giraffe : was play/ing with one.,the giraffe was playing with one,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,but (the) (it f) (while) the ball fell down.,but the ball fell down,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and : (the) : Missus Elephant (felt : ve) felt sad.,and Missus Elephant felt sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and : then : Mister Giraffe : went into the swimming pool : and was get/ing : the ball [EU].,and then Mister Giraffe went into the swimming pool and was getting the ball,0 0 0 0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,the giraffe gave the ball to : Missus Elephant.,the giraffe gave the ball to Missus Elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,Missus Elephant likeded|like[EW:liked] Mister Giraffe.,Missus Elephant likeded Mister Giraffe,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,One day Mister Giraffe want/ed to go on the swimming pool [EU].,One day Mister Giraffe wanted to go on the swimming pool,0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,also : Missus Elephant [EU].,also Missus Elephant,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,Missus Elephant said let us go in the swimming pool.,Missus Elephant said let us go in the swimming pool,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,Mister Elephant said okay.,Mister Elephant said okay,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,Missus Elephant said yay[!].,Missus Elephant said yay,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and Mister : Giraffe said yay too.,and Mister Giraffe said yay too,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,(m) Missus Giraffe fell down and hurt her knee.,Missus Giraffe fell down and hurt her knee,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and : Mister Giraffe told the lifeguard.,and Mister Giraffe told the lifeguard,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and : then the lifeguard put : a bandaid on Missus : Giraffe/z knee[!].,and then the lifeguard put a bandaid on Missus Giraffe's knee,0 0 0 0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,"Missus Giraffe was happy, also the lifeguard (and Mister) and Mister : Giraffe.",Missus Giraffe was happy also the lifeguard and Mister Giraffe,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,the lifeguard was very mad : about no run/ing.,the lifeguard was very mad about no running,0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,One day (Mister Giraffe) (Missus Elephant) Missus Elephant want/ed to play with Mister Giraffe.,One day Missus Elephant wanted to play with Mister Giraffe,0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,then : Mister Giraffe play/ed with his airplane.,then Mister Giraffe played with his airplane,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and he pretend/ed it was fly/ing.,and he pretended it was flying,0 0 4 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and then : Giraffe was : play/ing with it.,and then Giraffe was playing with it,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and then : Missus Elephant took it away : and was[!] play/ing with it.,and then Missus Elephant took it away and was playing with it,0 0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and then : (she) they xxx xxx.,and then they,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,it fell down in the swimming pool.,it fell down in the swimming pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and Mister Giraffe was really mad.,and Mister Giraffe was really mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,also Missus : Elephant said oops [~_!].,also Missus Elephant said oops,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,the lifeguard was very angry.,the lifeguard was very angry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,(Missus) Missus Elephant said : he brought a toy.,Missus Elephant said he brought a toy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and then Mister Elephant was try/ing to get it.,and then Mister Elephant was trying to get it,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,(then he) then : Mister Giraffe was cry/ing.,then Mister Giraffe was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and then Missus[-:] Lifeguard (had a) was hold/ing a capture : and caught the airplane.,and then Missus Lifeguard was holding a capture and caught the airplane,0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and then : Missus Elephant gave the airplane to : Mister Giraffe.,and then Missus Elephant gave the airplane to Mister Giraffe,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and then : Mister Giraffe was really happy.,and then Mister Giraffe was really happy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,One day Mister Rabbit : want/ed to play with Missus : Rabbit.,One day Mister Rabbit wanted to play with Missus Rabbit,0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,Missus Rabbit was (in the sand) (the sand) in the sand.,Missus Rabbit was in the sand,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,Mister Rabbit and Missus : Rabbit (was[EW:were] play/ing) was[EW:were] make/ing a sandcastle.,Mister Rabbit and Missus Rabbit was making a sandcastle,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,Mister (s) Rabbit was put/ing lot/s of sand on the sandcastle.,Mister Rabbit was putting lots of sand on the sandcastle,0 0 0 6 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and : Missus Rabbit was very : embarrass/ed.,and Missus Rabbit was very embarrassed,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and then it fell down.,and then it fell down,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,(then) (wu) then Mister : Rabbit : was very (s) : upset about he did that [EU].,then Mister Rabbit was very upset about he did that,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and Missus Rabbit found another piece.,and Missus Rabbit found another piece,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,Missus Rabbit was : cry/ing (because it) (because Mister Rabbit) : because Mister Rabbit put (sand : uh) lot/s of sand in the sandcastle.,Missus Rabbit was crying because Mister Rabbit put lots of sand in the sandcastle,0 0 0 6 0 0 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,The end [+_bch].,The end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,One day Missus Rabbit (s) (was in ha) was look/ing for strawberrie/s.,One day Missus Rabbit was looking for strawberries,0 0 0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,also Mister Rabbit [EU].,also Mister Rabbit,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,(Missus Ra) Mister Rabbit (ate : a) (ate a[-:]) ate a carrot.,Mister Rabbit ate a carrot,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and then : he[-:] : (w) was sweat/ing.,and then he was sweating,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,then Mister Rabbit was very full because he ate all of his : food.,then Mister Rabbit was very full because he ate all of his food,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,(Missus Rabbit :) [~_I_mean] Mister Rabbit (was very very) had a tummyache.,Mister Rabbit had a tummyache,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,(Mis) : Doctor Rabbit came over.,Doctor Rabbit came over,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and Missus Rabbit said my brother has a tummyache.,and Missus Rabbit said my brother has a tummyache,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and then : Missus Rabbit was pull/ing : the doctor.,and then Missus Rabbit was pulling the doctor,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,the doctor said : you better not eat more food.,the doctor said you better not eat more food,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and then Mister Doctor took Mister Rabbit : to the doctor/z.,and then Mister Doctor took Mister Rabbit to the doctor's,0 0 0 0 0 0 0 0 0 2 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,One day : Mister Rabbit (sa) said hi.,One day Mister Rabbit said hi,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,Missus Rabbit said hi too.,Missus Rabbit said hi too,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,Mister Rabbit want/ed to have the balloon.,Mister Rabbit wanted to have the balloon,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,Missus Rabbit : did not want him to : pop[!] it.,Missus Rabbit did not want him to pop it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,then : Missus Rabbit said do not do that.,then Missus Rabbit said do not do that,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and then[!] Mister Rabbit was hold/ing it.,and then Mister Rabbit was holding it,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and then he let go.,and then he let go,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and then the balloon (fell : up) : went up.,and then the balloon went up,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,then Missus Rabbit was so angry.,then Missus Rabbit was so angry,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,then (the) the balloon man had (another) (another) : lot/s of balloon/s.,then the balloon man had lots of balloons,0 0 0 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and then Missus Rabbit was happy.,and then Missus Rabbit was happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and then : Missus[-:] Rabbit was get/ing one.,and then Missus Rabbit was getting one,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,then (this) (the mis) : the rabbit said you can not have one.,then the rabbit said you can not have one,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and then (he gave the one) he did not gave the one to (the) : Mister Rabbit or Missus Rabbit [EU].,and then he did not gave the one to Mister Rabbit or Missus Rabbit,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,(doctor ra) doctor Rabbit : (was uh) was walk/ing.,doctor Rabbit was walking,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and then Mister Rabbit (was : s) was (get/ing a) (a) get/ing : her (because) to let her to get the balloon [EU].,and then Mister Rabbit was getting her to let her to get the balloon,0 0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and then : she said (uh : sh) Mister Rabbit said (the s) the balloon : rabbit [EU].,and then she said Mister Rabbit said the balloon rabbit,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and then : Missus Rabbit : gave[!] the balloon to two of the (ki) kid/s.,and then Missus Rabbit gave the balloon to two of the kids,0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and then : Mister[-:] Rabbit and Missus : Rabbit got a balloon.,and then Mister Rabbit and Missus Rabbit got a balloon,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,giraffe sawed|see[EW:saw] elephant (with) with her ball!,giraffe sawed elephant with her ball,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,hey that is cool.,hey that is cool,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,can I try it?,can I try it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,sure!,sure,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,but do not get in the water.,but do not get in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,all right.,all right,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,I throwed|throw[EW:threw] it in the water said elephant.,I throwed it in the water said elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,oh my gosh I will get it : for you elephant said giraffe.,oh my gosh I will get it for you elephant said giraffe,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,: (I) I almost got it.,I almost got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,( I am) I can not watch.,I can not watch,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,I got it.,I got it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,I got it [~_said_twice_for_emphasis]!,I got it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,and he was keep/ing on go/ing [EU].,and he was keeping on going,0 0 0 6 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,I got it!,I got it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,here.,here,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,there elephant I got it for you.,there elephant I got it for you,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,thank/s.,thanks,1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,thank you.,thank you,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,thank you giraffe.,thank you giraffe,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,[~_hee] I am wet[?] okay?,I am wet okay,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,all right.,all right,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,byebye.,byebye,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,see you.,see you,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,giraffe and elephant were go/ing swim/ing.,giraffe and elephant were going swimming,0 0 0 0 6 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,(and they saw the pool) and they saw a pool [~_I_mean].,and they saw a pool,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,: (I will go jump in the p) I will go on the[-:] : jump/ing board.,I will go on the jumping board,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,and I will go[-:] in the water[-:] and splash okay?,and I will go in the water and splash okay,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,all right : said giraffe.,all right said giraffe,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,: do not run!,do not run,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,walk!,walk,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,(all right I[-:]) okay I will walk.,okay I will walk,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,: ow I run.,ow I run,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,now I : hurt my : knee!,now I hurt my knee,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,ouch.,ouch,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,ow!,ow,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,I am come/ing!,I am coming,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,do not worry!,do not worry,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,: the lifeguard is come/ing now.,the lifeguard is coming now,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,: she get/3s (hur[-:]) (hurt uh) : *a bruise there on her knee [EU].,she gets bruise there on her knee,0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,and : lifeguard [+..] [EU].,and lifeguard,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,: there you go child.,there you go child,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,now you can walk.,now you can walk,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,you have to walk safe.,you have to walk safe,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,do not run.,do not run,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,or you might slip : and hurt you[EW:yourself].,or you might slip and hurt you,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,so go play along.,so go play along,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,: no run/ing allow/ed!,no running allowed,0 6 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,see the sign?,see the sign,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,yeah.,yeah,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,go[?].,go,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,okay.,okay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,let us go swim/ing okay?,let us go swimming okay,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,all right let us go!,all right let us go,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,grab a[EW:an] (b) airplane.,grab a airplane,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,let us go!,let us go,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,: because I do not want to go in the pool with my airplane.,because I do not want to go in the pool with my airplane,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,so let us go!,so let us go,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,[~_child_makes_airplane_noises] that is a good toy airplane.,that is a good toy airplane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,thank/s.,thanks,1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,I got it from yesterday [~_child_makes_airplane_noises].,I got it from yesterday,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,hey can I try?,hey can I try,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,sure!,sure,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,be careful!,be careful,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,[~_child_makes_airplane_noises] cool!,cool,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,[~_child_makes_airplane_noises] : (whuh) whoopsadaisy I drop/ed it in the water.,whoopsadaisy I dropped it in the water,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,so you have to get it.,so you have to get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,all right.,all right,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,here I go.,here I go,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,: I can not!,I can not,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,you did that [~_makes_grrr_sound]!,you did that,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,I am mad at you!,I am mad at you,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,whoopsadaisy I am sorry.,whoopsadaisy I am sorry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,: (hmm) a toy huh *is in that pool [EU].,a toy huh in that pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,whose is it said the lifeguard?,whose is it said the lifeguard,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,: it was mine!,it was mine,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,and she drop/ed it in!,and she dropped it in,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,(I) you was[EW:were] just play/ing with it first.,you was just playing with it first,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,(and I) (I) then (I just uhm) : (may) (I just) I was try/ing to make it fly.,then I was trying to make it fly,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,but it falled|fall[EW:fell] in the water (sai) said elephant talk/ing to the lifeguard.,but it falled in the water said elephant talking to the lifeguard,0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,: the lifeguard was get/ing it.,the lifeguard was getting it,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,(and he is) and he is go/ing to [~_gonna] get it.,and he is going to get it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,: oh I can not get it.,oh I can not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,oh my gosh I am sad now.,oh my gosh I am sad now,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,I am sorry : giraffe.,I am sorry giraffe,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,: [~_makes_a_sound] (then a woman go) and then a woman was here.,and then a woman was here,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,and she got a net to catch it.,and she got a net to catch it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,(huh) the three of them said huh?,the three of them said huh,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,I got it!,I got it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,[~_child_pretends_to_cry] I am cry/ing.,I am crying,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,now it is go/ing to [~_gonna] be broken said giraffe.,now it is going to be broken said giraffe,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,here.,here,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,(have) thank you : said giraffe.,thank you said giraffe,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,(hm[-:] ) I want you to be back.,I want you to be back,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,( I am s) I am happy too.,I am happy too,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,[~_makes_sound_effects_'ooh_ahh'] that is okay.,that is okay,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,I will keep *an eye on it forever ever and ever [EU].,I will keep eye on it forever ever and ever,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,one rabbit and (uh[-:]) one[-:] : mouse (: were b) [EU].,one rabbit and one mouse,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,(he) the rabbit want/ed to help the mouse.,the rabbit wanted to help the mouse,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,she made : a : sandcastle[!] in her backyard : in her sandbox.,she made a sandcastle in her backyard in her sandbox,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,and he help/ed the : mouse build it.,and he helped the mouse build it,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,and he put sand on it.,and he put sand on it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,and she was gee [EU].,and she was gee,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,and then she said [~_makes_gasping_sound]!,and then she said,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,: and he said uhoh I am in big trouble.,and he said uhoh I am in big trouble,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,and she was sad.,and she was sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,she cry/ed.,she cried,0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,and she was do/ing it all by herself.,and she was doing it all by herself,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,(and he) and the rabbit (was watch) was look/ing at hisself[EW:himself].,and the rabbit was looking at hisself,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,(uh) the puppy : was go/ing for a picnic.,the puppy was going for a picnic,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,and the rabbit was go/ing for the picnic too.,and the rabbit was going for the picnic too,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,and they said hi.,and they said hi,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,and they eat|eat[EW:ate] and ate and ate : and ate (and he) and[-:] ate.,and they eat and ate and ate and ate and ate,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,(and they a) and the rabbit was full.,and the rabbit was full,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,but : the dog was keep/ing on eat/ing [EU].,but the dog was keeping on eating,0 0 0 0 6 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,he was worry/ed and sick : but not the dog.,he was worried and sick but not the dog,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,she was not sick.,she was not sick,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,she call/ed for the nurse : who was come/ing by.,she called for the nurse who was coming by,0 4 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,and she said (doc) nurse nurse (um) my friend bunny is sick.,and she said nurse nurse my friend bunny is sick,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,and he ate too much food.,and he ate too much food,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,come come come [~_repeated_for_emphasis] : right now!,come come come right now,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,he is feel/ing sick!,he is feeling sick,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,all right I will come.,all right I will come,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,[~_child_making__sounds_'aaahh'] and he woked|woke[EW:woke] up.,and he woked up,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,now : you should never eat too much food!,now you should never eat too much food,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,thank/s : because I like that.,thanks because I like that,1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,I am not sick any more.,I am not sick any more,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,(she had a ga) (a : hm hm) : she had a[-:] wheel (barre) barrel with a balloon on it.,she had a wheel barrel with a balloon on it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,she was walk/ing.,she was walking,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,then she sawed|saw[EW:saw] (um) : bunny : again.,then she sawed bunny again,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,he said cool!,he said cool,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,cool : puppy.,cool puppy,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,that is cool.,that is cool,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,where do you get it?,where do you get it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,(sh) she said no do not take it off please!,she said no do not take it off please,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,(oka) why : said (ra) bunny?,why said bunny,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,he tie/ed it out [EU].,he tied it out,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,then it flied|fly[EW:flew] up into the sky.,then it flied up into the sky,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,and she was worry/ed.,and she was worried,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,and he was try/ing to get it.,and he was trying to get it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,and they were try/ing to get it.,and they were trying to get it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,and she got mad at the bunny.,and she got mad at the bunny,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,[~_angry_voice] you tie/ed it out!,you tied it out,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,[~_angry_voice] and now I am angry at you!,and now I am angry at you,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,I am go/ing to [~_gonna] beat you up.,I am going to beat you up,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,: ah there is one.,ah there is one,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,hey I can get one for you.,hey I can get one for you,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,let me get one : okay?,let me get one okay,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,and (I will tie it back) I will tie one back on that.,and I will tie one back on that,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,okay?,okay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,[~_makes_sound_'hhrr'] she was still mad.,she was still mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,: hey can I have that for my friend please?,hey can I have that for my friend please,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,sure said the man.,sure said the man,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,it is : twenty buck/s.,it is twenty bucks,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,all right.,all right,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,I have twenty buck/s.,I have twenty bucks,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,bye.,bye,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,five cent/s.,five cents,0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,I do not have five cent/s.,I do not have five cents,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,so long my rabbit[?] friend.,so long my rabbit friend,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,: I got[EW:have] to [~_gotta] ask the nurse.,I got to ask the nurse,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,I got[EW:have] to [~_gotta] ask her (so she can) does she have (one) : five cent/s.,I got to ask her does she have five cents,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,do you have five cent/s nurse?,do you have five cents nurse,0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,I think so : said the nurse.,I think so said the nurse,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,five cent/s.,five cents,0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,thank you madam.,thank you madam,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,yay!,yay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,[~_child_makes_a_sound_'whee'] and they were happy : at last.,and they were happy at last,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,(um) an elephant is dribble/ing a ball.,an elephant is dribbling a ball,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and a (hh) giraffe or horse is watch/ing.,and a giraffe or horse is watching,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and[-:] : the ball[-:] go/3s into the water.,and the ball goes into the water,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and the horse [~_laughing] or (g) giraffe (um) swim/3s to get it.,and the horse or giraffe swims to get it,0 0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and he (hands it) hand/3s it back to the : elephant.,and he hands it back to the elephant,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and[-:] the elephant is happy [~_laughs].,and the elephant is happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,(um) the elephant and I guess the giraffe are look/ing into the : pool.,the elephant and I guess the giraffe are looking into the pool,0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and the elephant start/3s run/ing : on the dock.,and the elephant starts running on the dock,0 0 0 3 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and the elephant slip/3s : and hit/3s her knee.,and the elephant slips and hits her knee,0 0 0 3 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and the lifeguard come/3s run/ing over [~_laughs].,and the lifeguard comes running over,0 0 0 3 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and he put/3s a bandaid on it.,and he puts a bandaid on it,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and then they go to a bench.,and then they go to a bench,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and then the lifeguard point/3s her off [~_laughs] [EU].,and then the lifeguard points her off,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,an elephant and (giraffe) the giraffe (um) are talk/ing.,an elephant and the giraffe are talking,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and giraffe pick/3s up a plane and start/3s play/ing with it.,and giraffe picks up a plane and starts playing with it,0 0 3 0 0 0 0 3 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and[-:] the elephant take/3s it away.,and the elephant takes it away,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,(and it gets) : (and it) and the elephant drop/ed it into the water by accident.,and the elephant dropped it into the water by accident,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and the giraffe is mad at the elephant.,and the giraffe is mad at the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and the lifeguard come/3s.,and the lifeguard comes,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and (the li) (lifegua) the lifeguard and the elephant talk.,and the lifeguard and the elephant talk,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,he try/3s to reach for it.,he tries to reach for it,0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,but he can not reach it.,but he can not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and then the giraffe cry/3s.,and then the giraffe cries,0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and then : (um) another lifeguard come/3s with a net.,and then another lifeguard comes with a net,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and : she[-:] scoop/3s (it) up (with) the airplane with the net.,and she scoops up the airplane with the net,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and she hand/3s it (pac) back to the : giraffe.,and she hands it back to the giraffe,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,(um[-:]) : a rabbit and a dog are play/ing in the sand.,a rabbit and a dog are playing in the sand,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,(uh) : and rabbit is help/ing the dog make a sandcastle.,and rabbit is helping the dog make a sandcastle,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and then the rabbit : by accident pour/3s all the sand over the castle.,and then the rabbit by accident pours all the sand over the castle,0 0 0 0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and then the rabbit (uh : lo) [~_laughs] look/3s sorry.,and then the rabbit looks sorry,0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,(uh) : the rabbit and the dog are have/ing a picnic.,the rabbit and the dog are having a picnic,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and the rabbit start/3s stuff/ing his[-:] face [~_laughs].,and the rabbit starts stuffing his face,0 0 0 3 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and[-:] : the rabbit burp/3s [~_laughs].,and the rabbit burps,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and he get/3s sick.,and he gets sick,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and there is a doctor run/ing by.,and there is a doctor running by,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and the dog : go/3s to get him.,and the dog goes to get him,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and the dog pull/3s him towards the sick rabbit.,and the dog pulls him towards the sick rabbit,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and the doctor[-:] give|give[EW:gave] the rabbit medicine.,and the doctor give the rabbit medicine,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,(um) the dog is push/ing (a c) a[-:] cart with a balloon on it.,the dog is pushing a cart with a balloon on it,0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and the rabbit come/3s run/ing up to her.,and the rabbit comes running up to her,0 0 0 3 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and the rabbit look/3s at : the balloon.,and the rabbit looks at the balloon,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and he start/3s to untie it.,and he starts to untie it,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and by accident he let it go.,and by accident he let it go,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and then the dog is really mad at him.,and then the dog is really mad at him,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and then he sees a (uh) person sell/ing balloon/s.,and then he sees a person selling balloons,0 0 0 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,he run/3s up and point/3s to a balloon.,he runs up and points to a balloon,0 3 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,but he do/3s not have five cent/s.,but he does not have five cents,0 0 3 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and then they[-:] look sad.,and then they look sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and then they run up to a person : and ask : if he could buy her a balloon.,and then they run up to a person and ask if he could buy her a balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and she go/3s up to the guy : and buy/3s two balloon/s.,and she goes up to the guy and buys two balloons,0 0 3 0 0 0 0 0 3 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and they both have their own balloon/s now.,and they both have their own balloons now,0 0 0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,[~_kay] (once upon a time) [~_no] long long ago (in) in a deep deep forest there live/ed : a giraffe and (a) an elephant.,long long ago in a deep deep forest there lived a giraffe and an elephant,0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,they were : very[!] good friend/s.,they were very good friends,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and so then one day they want/ed to go swim/ing.,and so then one day they wanted to go swimming,0 0 0 0 0 0 4 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,the giraffe/z name was Timmy.,the giraffe's name was Timmy,0 2 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,the elephant/z name was : Veronica.,the elephant's name was Veronica,0 2 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and so then : Timmy went *to trying[EW:try] to swimming[EW:swim] in a pool [EU].,and so then Timmy went trying to swimming in a pool,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,but (he) he was try/ing so hard to get the ball that they were go/ing to play [EU].,but he was trying so hard to get the ball that they were going to play,0 0 0 6 0 0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and Veronica was shut/ing her eye/s.,and Veronica was shutting her eyes,0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,then Timmy got the ball.,then Timmy got the ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and she gave it to Veronica.,and she gave it to Veronica,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and then they were both very[!] better[EW:good][!] friends.,and then they were both very better friends,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and Timmy was soak/ing wet.,and Timmy was soaking wet,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(once upon a) okay (then) okay (it is on) (it is) [~_like_let_(u)s_say] it is a tap broke [~_okay] [EU].,okay okay it is a tap broke,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and then the next day they went there again.,and then the next day they went there again,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(and[-:] : then) : and then : Veronica want/ed to go swim/ing.,and then Veronica wanted to go swimming,0 0 0 4 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,so she (jump/ed) hop/ed in.,so she hopped in,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,but she slip/ed.,but she slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and she is like whoa[-:]!,and she is like whoa,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and Timmy is like run/ing after her.,and Timmy is like running after her,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,then she fell and hit her knee and got a big big owie.,then she fell and hit her knee and got a big big owie,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,then she start/ed to cry because it really hurt.,then she started to cry because it really hurt,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,she got a huge scratch.,she got a huge scratch,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and then : the lifeguard came.,and then the lifeguard came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and the lifeguard was an elephant.,and the lifeguard was an elephant,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(his name was) : (um) his name was : Kyle.,his name was Kyle,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and he want/ed to help her.,and he wanted to help her,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,so he got out his safety[-:] box.,so he got out his safety box,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,so then he (g) took out the bandage and got it out.,so then he took out the bandage and got it out,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and then : Veronica was sit/ing on the bench.,and then Veronica was sitting on the bench,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and then it was heal/ing.,and then it was healing,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(so then : she) and then : the lifeguard said : (something really : like) no run/ing.,and then the lifeguard said no running,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and she was run/ing again.,and she was running again,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(then) : and then (on the third chapter they are) Timmy and Veronica[-:] on the third day came to the swimming pool again.,and then Timmy and Veronica on the third day came to the swimming pool again,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,this time Timmy brought a little (um) : toy plane.,this time Timmy brought a little toy plane,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(and it) and it could not go in the water.,and it could not go in the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and then : Veronica was so happy.,and then Veronica was so happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(and so she) and then Timmy letted|let[EW:let] her borrow it to play with for a little while.,and then Timmy letted her borrow it to play with for a little while,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(but) : and then she want/ed to see it first : fly.,and then she wanted to see it first fly,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(and then he made it) (and then he) and then he like went [~_makes_sound_'nerrrooo']!,and then he like went,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(and then) : (and then he : accidentally) : and then he accidentally : like : threw it over to Monica.,and then he accidentally like threw it over to Monica,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and then (mo) Veronica want/ed to : see it.,and then Veronica wanted to see it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(so he let) and he is like what !,and he is like what,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,so then Veronica want/ed to try.,so then Veronica wanted to try,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,but she accidentally threw it into the water.,but she accidentally threw it into the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,then Timmy got very[!] mad.,then Timmy got very mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,he was so mad that he want/ed to : like : break up with her.,he was so mad that he wanted to like break up with her,0 0 0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and she was like oh[-:] !,and she was like oh,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,but then the lifeguard (s) : look/ed.,but then the lifeguard looked,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(and he is like) : and Timmy is look/ing down.,and Timmy is looking down,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(and) and Veronica is (like) like go/ing back from the lifeguard because he was on the other side of Timmy.,and Veronica is like going back from the lifeguard because he was on the other side of Timmy,0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and she was : (beside) in the middle of both of them.,and she was in the middle of both of them,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and he is like what is go/ing on here ?,and he is like what is going on here,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and Timmy is like sad.,and Timmy is like sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,but (then he) : then Veronica explaine/ed [~_high_pitched_voice] I was just go/ing to see !,but then Veronica explaineed I was just going to see,0 0 0 4 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,[~_high_pitched_voice] and Timmy let me!,and Timmy let me,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,[~_high_pitched_voice] but : I accidentally threw it into the water!,but I accidentally threw it into the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,[~_high_pitched_voice] and it is not suppose/ed to!,and it is not supposed to,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,then the : lifeguard try/ed to reach it.,then the lifeguard tried to reach it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(and he) (and then) : (and then he finally) and then he finally : try/ed[-:].,and then he finally tried,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and he almost fell in.,and he almost fell in,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and so : he almost gave up.,and so he almost gave up,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,but then Timmy start/ed to go on his knee/s and cry.,but then Timmy started to go on his knees and cry,0 0 0 4 0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,but then : (uh : Veronica/z mom) [~_or_no] the lifeguard/z : wife came.,but then the lifeguard's wife came,0 0 0 2 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and she had a net with her.,and she had a net with her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(she) and then : she scoop/ed : out the plane.,and then she scooped out the plane,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and then she gave it back to Timmy.,and then she gave it back to Timmy,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and he was so happy (that he would not) that he still would be Veronica/z friend.,and he was so happy that he still would be Veronica's friend,0 0 0 0 0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and then he hug/ed her.,and then he hugged her,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and Veronica did not want to catch it any more.,and Veronica did not want to catch it any more,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,one day[-:] there was a : little rabbit and a little dog.,one day there was a little rabbit and a little dog,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,they were good friend/s.,they were good friends,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,the dog was a girl.,the dog was a girl,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and her name was Jennifer.,and her name was Jennifer,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,the boy rabbit was Tim.,the boy rabbit was Tim,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and : he was : a boy.,and he was a boy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and so then one day they want/ed to go in (Jen) Jennifer/z : (play : um) : sand place.,and so then one day they wanted to go in Jennifer's sand place,0 0 0 0 0 0 4 0 0 0 2 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,they made a castle.,they made a castle,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,they made (uh) : lot/s of stuff.,they made lots of stuff,0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(they dug) (they made) like probably soup[-:] they made out of a barrel [EU].,like probably soup they made out of a barrel,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and they made lots of stuff like a castle.,and they made lots of stuff like a castle,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and they probably even made little : people.,and they probably even made little people,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and so then one day : Tim got a little excite/ed because they were so happy.,and so then one day Tim got a little excited because they were so happy,0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and so then he pour/ed (his) his (bottle of) : bottle of sand onto (Veronic) [~_I_mean] Jennifer/z : castle.,and so then he poured his bottle of sand onto Jennifer's castle,0 0 0 0 4 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(uh) and then : all that was left was a pile : and then a little steeple (with) (with um) : with a little bit of sand on it.,and then all that was left was a pile and then a little steeple with a little bit of sand on it,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and it look/ed like a (poin) finger point/ing out of the : thing.,and it looked like a finger pointing out of the thing,0 0 4 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(and) : and Timmy was so sorry.,and Timmy was so sorry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and he is like almost cry/ing.,and he is like almost crying,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and Veronica/z like oh[-:] !,and Veronica's like oh,0 2 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and then Veronica went cry/ing again.,and then Veronica went crying again,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and then : Timmy is like huh[-:]!,and then Timmy is like huh,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and he never did that again.,and he never did that again,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(one day) and then the next day they went to pick berry/s[!].,and then the next day they went to pick berries,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and so then they went along a nice good summer path.,and so then they went along a nice good summer path,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(and then : one day they) and then they had also a picnic : in one basket and : like other kind of food in a other.,and then they had also a picnic in one basket and like other kind of food in a other,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and so they also found[!] some berry/s and food.,and so they also found some berries and food,0 0 0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,so they made a picnic!,so they made a picnic,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(and) : and (like) : the dog was like just take/ing stuff out.,and the dog was like just taking stuff out,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(and) : (and) : and the rabbit was just like gobble/ing up the carrot/s and all.,and the rabbit was just like gobbling up the carrots and all,0 0 0 0 0 0 6 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,so then the rabbit soon ate all the stuff except for like a piece of bread.,so then the rabbit soon ate all the stuff except for like a piece of bread,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and the poor dog only got a little piece (of bread) of a sandwich.,and the poor dog only got a little piece of a sandwich,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,but then : the rabbit Jennifer she got a very[!] bad tummyache.,but then the rabbit Jennifer she got a very bad tummyache,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,so she is like [~_makes_moaning_sounds].,so she is like,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(but then) : but then Tim race/ed[!] up to Jennifer/z Mom and said your daughter has got a cold!,but then Tim raced up to Jennifer's Mom and said your daughter has got a cold,0 0 0 4 0 0 2 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,your daughter has got a cold!,your daughter has got a cold,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and she is like oh dear!,and she is like oh dear,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and then : he pull/ed[-:] her until she went : to (Jenn) Jennifer.,and then he pulled her until she went to Jennifer,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and then she check/ed : Jennifer.,and then she checked Jennifer,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and she said you have got a stomachache.,and she said you have got a stomachache,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,you have got to go home and sleep.,you have got to go home and sleep,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and so then : Jennifer was walk/ing home.,and so then Jennifer was walking home,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and she became happy : to get a rest.,and she became happy to get a rest,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and same with Timmy.,and same with Timmy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,then (the next day) on the third day they went along a nice snowy path.,then on the third day they went along a nice snowy path,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and they were go/ing to (give) like go and like just travel.,and they were going to like go and like just travel,0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and if they saw some (like) like something they would like hook it onto to the wheel/s.,and if they saw some like something they would like hook it onto to the wheels,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,or if it was something that you could not hook on (you would) they would just put it (on : to) into the barrel.,or if it was something that you could not hook on they would just put it into the barrel,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and they had a balloon.,and they had a balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(and then : Tim want/ed) [~_I_mean] and then (um) : Tim [~_yeah] he want/ed to see it!,and then Tim he wanted to see it,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,so then (he) he grab/ed the balloon.,so then he grabbed the balloon,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and : (Veroni) [~_I_mean] Jennifer would let him.,and Jennifer would let him,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,so then : (he[-:]) (he let) she let him grab it.,so then she let him grab it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and then : (Veronica) Jennifer (she) : she let Tim : like : go and : (t) like see it and : hold it.,and then Jennifer she let Tim like go and like see it and hold it,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,but then Tim (he) he try/ed to untie it.,but then Tim he tried to untie it,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and she is like what[!].,and she is like what,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and then Tim accidentally untie/ed it and forgot to hold onto it.,and then Tim accidentally untied it and forgot to hold onto it,0 0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and then (it went) : it went (um) : a little up.,and then it went a little up,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and then Jennifer got (a li) really mad.,and then Jennifer got really mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and then Timmy is like oh look there is a balloon man!,and then Timmy is like oh look there is a balloon man,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,we can get (balloon/s) balloon/s!,we can get balloons,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,but then (h) they : went and ask/ed.,but then they went and asked,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and Jennifer is like what is he do/ing?,and Jennifer is like what is he doing,0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and Tim is like could we have one?,and Tim is like could we have one,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and then : the guy is like where is your money?,and then the guy is like where is your money,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,it cost five cent/s!,it cost five cents,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(but) : but he did not have any money.,but he did not have any money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,he check/ed in his pocket/s.,he checked in his pockets,0 4 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,but he did not have any[!] money.,but he did not have any money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(and then he is like) and then he is like well : you kid/s go run along then.,and then he is like well you kids go run along then,0 0 0 0 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and so then : they were sad walk/ing away.,and so then they were sad walking away,0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,but then : (Timmy) [~_I_mean_yeah] Tim : (he) he saw his mother.,but then Tim he saw his mother,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and his mother was : a rabbit like him.,and his mother was a rabbit like him,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and so then (they) : (he got them to) he try/ed to like (get them to pay) : get her to pay for both of them.,and so then he tried to like get her to pay for both of them,0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and so then (she is like) he is like mommy get us a balloon!,and so then he is like mommy get us a balloon,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,mommy get us a balloon!,mommy get us a balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,so then she paid him ten cent/s for them each to have one balloon.,so then she paid him ten cents for them each to have one balloon,0 0 0 0 0 0 1 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(and then they both were happily) and then they all were very happily with their balloon/s.,and then they all were very happily with their balloons,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and same with the mother.,and same with the mother,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,an elephant was play/ing with the ball at the swimming pool.,an elephant was playing with the ball at the swimming pool,0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and then : she drop/ed the ball into the pool.,and then she dropped the ball into the pool,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and then the horse went to get it.,and then the horse went to get it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and he got it for her.,and he got it for her,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and she was very happy.,and she was very happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,[~_oh_this_one_(i)s_a_little_hard] (hmmm) : elephant and : horse went to the swimming pool.,elephant and horse went to the swimming pool,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and elephant want/ed to go on the diving board.,and elephant wanted to go on the diving board,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,so she ran there.,so she ran there,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and she slip/ed.,and she slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and she hurt her knee.,and she hurt her knee,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and : (uh) horse went to get the lifeguard.,and horse went to get the lifeguard,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,the lifeguard came : to see it she was all right [EU].,the lifeguard came to see it she was all right,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and the lifeguard put a bandaid on her knee.,and the lifeguard put a bandaid on her knee,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,then she sat down for a little bit.,then she sat down for a little bit,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and the lifeguard said : no run/ing in the swimming pool.,and the lifeguard said no running in the swimming pool,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,elephant and : horse were at the swimming pool.,elephant and horse were at the swimming pool,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,(eleph) [~_I_mean] horse show/ed elephant : his airplane : that he brought.,horse showed elephant his airplane that he brought,0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and then elephant just grab/ed it out of his hand/s.,and then elephant just grabbed it out of his hands,0 0 0 0 4 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and then it fell in the water.,and then it fell in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and then horse was very mad.,and then horse was very mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,then the lifeguard came.,then the lifeguard came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and then : elephant said : the airplane fell in the water by accident.,and then elephant said the airplane fell in the water by accident,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,she drop/ed it by accident.,she dropped it by accident,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and the lifeguard try/ed to reach it.,and the lifeguard tried to reach it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,but (his) his arm/s were too short.,but his arms were too short,0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and then horse was cry/ing.,and then horse was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and then this : other girl came with a net.,and then this other girl came with a net,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and : she try/ed to get it out.,and she tried to get it out,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and she got the airplane out.,and she got the airplane out,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and then horse was very happy.,and then horse was very happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and (he) he was glad he had his airplane.,and he was glad he had his airplane,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,rabbit : and dog were play/ing in the sandbox.,rabbit and dog were playing in the sandbox,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and rabbit made a very nice castle.,and rabbit made a very nice castle,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and then rabbit dug up some sand and put it in his bucket : and dump/ed it all over the castle.,and then rabbit dug up some sand and put it in his bucket and dumped it all over the castle,0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and then : he was : (um : he) he did not mean to put the : sand on the : castle.,and then he was he did not mean to put the sand on the castle,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and then dog was cry/ing.,and then dog was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,one day dog and rabbit went to have a picnic.,one day dog and rabbit went to have a picnic,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,rabbit was very[!] hungry.,rabbit was very hungry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and he ate (all of : the stuff) all of the food.,and he ate all of the food,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,then he got a tummyache.,then he got a tummyache,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and then : a doctor[!] came (and) down the road.,and then a doctor came down the road,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and then dog came to get her.,and then dog came to get her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and dog pull/ed her and pull/ed her to come see rabbit.,and dog pulled her and pulled her to come see rabbit,0 0 4 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and the rabbit check/ed her and said that she had a tummyache.,and the rabbit checked her and said that she had a tummyache,0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and then (she said) the doctor said : to rabbit go home and have a nice nap.,and then the doctor said to rabbit go home and have a nice nap,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,one day dog had a balloon.,one day dog had a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and rabbit came : to see him.,and rabbit came to see him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and then : rabbit show/ed : dog the balloon.,and then rabbit showed dog the balloon,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and then the rabbit untie/ed it.,and then the rabbit untied it,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,then the balloon flew away.,then the balloon flew away,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and then : dog was angry.,and then dog was angry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and then they saw a man with balloon/s.,and then they saw a man with balloons,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and rabbit ask/ed could I have one of those balloon/s please?,and rabbit asked could I have one of those balloons please,0 0 4 0 0 0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and the man said balloon/s are five cent/s.,and the man said balloons are five cents,0 0 0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and rabbit said I do not have any money.,and rabbit said I do not have any money,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and then (sh) rabbit saw the doctor : and ask/ed can you get me one of those balloon/s please?,and then rabbit saw the doctor and asked can you get me one of those balloons please,0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,so[-:] she got some money out and : gave the man the money.,so she got some money out and gave the man the money,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and then : dog and[!] rabbit had a balloon [EU].,and then dog and rabbit had a balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,once there was : a little giraffe and an elephant who was bounce/ing a ball.,once there was a little giraffe and an elephant who was bouncing a ball,0 0 0 0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the giraffe drop/ed : the ball into a pool.,the giraffe dropped the ball into a pool,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,he jump/ed in and swam to get the ball.,he jumped in and swam to get the ball,0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,he gave the ball back to the little elephant.,he gave the ball back to the little elephant,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,she said thank/s.,she said thanks,0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the giraffe smile/ed.,the giraffe smiled,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,once there was a giraffe and an elephant who want/ed to go swim/ing.,once there was a giraffe and an elephant who wanted to go swimming,0 0 0 0 0 0 0 0 0 4 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the elephant walk/ed over to the pool.,the elephant walked over to the pool,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,but she slip/ed.,but she slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,she got a cut on her knee.,she got a cut on her knee,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the giraffe ran to get a lifeguard.,the giraffe ran to get a lifeguard,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the lifeguard came over to help the little elephant.,the lifeguard came over to help the little elephant,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,she cry/ed while the lifeguard put a bandaid on her knee.,she cried while the lifeguard put a bandaid on her knee,0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the lifeguard and the little giraffe : help/ed her walk : out to a bench.,the lifeguard and the little giraffe helped her walk out to a bench,0 0 0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the lifeguard said no more run/ing while you are in the pool.,the lifeguard said no more running while you are in the pool,0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,once there was : a giraffe and a[EW:an] elephant play/ing with a toy plane by a pool.,once there was a giraffe and a elephant playing with a toy plane by a pool,0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the giraffe : pretend/ed the plane could really fly and try/ed to get it as high : up in the air as he could.,the giraffe pretended the plane could really fly and tried to get it as high up in the air as he could,0 0 4 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the elephant want/ed to see : the airplane.,the elephant wanted to see the airplane,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,so she grab/ed it from the giraffe : and start/ed to play with it.,so she grabbed it from the giraffe and started to play with it,0 0 4 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,but she accidentally threw the plane in the water.,but she accidentally threw the plane in the water,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the giraffe got mad at her.,the giraffe got mad at her,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the lifeguard came : over to see what was the matter.,the lifeguard came over to see what was the matter,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the little elephant told the lifeguard what had happen/ed.,the little elephant told the lifeguard what had happened,0 0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,so he try/ed to get the plane.,so he tried to get the plane,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,but he could not reach.,but he could not reach,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,so the little giraffe start/ed to cry.,so the little giraffe started to cry,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,he want/ed his plane back.,he wanted his plane back,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,so : the little elephant/z mom got a fishing net and : scoop/ed up the plane.,so the little elephant's mom got a fishing net and scooped up the plane,0 0 0 2 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,she gave it back to the little giraffe.,she gave it back to the little giraffe,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the little giraffe was so[!] happy he gave : the little elephant/z mom a big hug.,the little giraffe was so happy he gave the little elephant's mom a big hug,0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,once upon a time there was : a bunny : and a puppy.,once upon a time there was a bunny and a puppy,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,and one day they went to the beach and made a sandcastle.,and one day they went to the beach and made a sandcastle,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,but then the bunny dump/ed a huge bucket of sand all over the sandcastle.,but then the bunny dumped a huge bucket of sand all over the sandcastle,0 0 0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the sandcastle was ruin/ed.,the sandcastle was ruined,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the little puppy cry/ed because he like/ed the sandcastle a lot.,the little puppy cried because he liked the sandcastle a lot,0 0 0 4 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,but the bunny pretend/ed he did not do it.,but the bunny pretended he did not do it,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,one day (the) : there was a puppy : and : a bunny.,one day there was a puppy and a bunny,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,and they decide/ed to go for : a walk.,and they decided to go for a walk,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,they walk/ed through a park and : sat down and had a picnic.,they walked through a park and sat down and had a picnic,0 4 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the bunny ate lot/s and lot/s and lot/s and lot/s.,the bunny ate lots and lots and lots and lots,0 0 0 1 0 1 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,but the puppy only ate a little bit.,but the puppy only ate a little bit,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the bunny got sick because he ate way too much.,the bunny got sick because he ate way too much,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,and the puppy look/ed at him in a weird way.,and the puppy looked at him in a weird way,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,then the puppy went over to : a lady who was walk/ing down the path.,then the puppy went over to a lady who was walking down the path,0 0 0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,he beg/ed her to come over to help his friend.,he begged her to come over to help his friend,0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,she : help/ed him.,she helped him,0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,and he got better.,and he got better,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,then they went home.,then they went home,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,once upon a time there was a puppy and : a bunny who had a wagon with a balloon tie/ed on it.,once upon a time there was a puppy and a bunny who had a wagon with a balloon tied on it,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the bunny want/ed the balloon.,the bunny wanted the balloon,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,he try/ed to untie the balloon off the wagon.,he tried to untie the balloon off the wagon,0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the puppy smile/ed.,the puppy smiled,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,but the bunny let go of the balloon.,but the bunny let go of the balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,it float/ed way way up.,it floated way way up,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the puppy got mad at the bunny.,the puppy got mad at the bunny,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,so the : bunny ran over to buy a balloon.,so the bunny ran over to buy a balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,he : bought a red one.,he bought a red one,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the balloon was five cent/s.,the balloon was five cents,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the bunny did not have any money.,the bunny did not have any money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the : puppy came over to see what was happen/ing.,the puppy came over to see what was happening,0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the bunny look/ed at the salesman with his hand in his pocket/s.,the bunny looked at the salesman with his hand in his pockets,0 0 4 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,so he ran over to a lady.,so he ran over to a lady,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,he said that there was : a man with a balloon.,he said that there was a man with a balloon,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,and his puppy friend want/ed : a balloon for his wagon.,and his puppy friend wanted a balloon for his wagon,0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the : lady : paid the man.,the lady paid the man,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,and the puppy and the bunny both got a balloon.,and the puppy and the bunny both got a balloon,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,they play/ed with the balloon/s.,they played with the balloons,0 4 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,(um) they are have/ing basketball player/s [EU].,they are having basketball players,0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and it fall|fall[EW:fell] : into the : water.,and it fall into the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and he swimmed|swim[EW:swam].,and he swimmed,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and he swimmed|swim[EW:swam].,and he swimmed,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and he swimmed|swim[EW:swam].,and he swimmed,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and he catch|catch[EW:caught] the ball!,and he catch the ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and he[!] is his best[!] friend.,and he is his best friend,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,(um) they want to : go on the swimming pool [EU].,they want to go on the swimming pool,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and he[!] want/3s to go on the swimming pool [EU].,and he wants to go on the swimming pool,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and she : runned|run[EW:ran]!,and she runned,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and she bonk/ed her knee.,and she bonked her knee,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,she bonk/ed her knee!,she bonked her knee,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and the teacher said you have a swim.,and the teacher said you have a swim,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,you have to sit there.,you have to sit there,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,he : said : go.,he said go,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,that is the end [+_bch]!,that is the end,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,he has a[EW:an] airplane.,he has a airplane,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and look!,and look,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and it go/3s [~_makes_raspberry_sound].,and it goes,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and she got it too!,and she got it too,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and it falled|fall[EW:fell] into the water.,and it falled into the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and he said [~_makes_growling_sound].,and he said,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and : the teacher is try/ing to get it.,and the teacher is trying to get it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,uhoh but she did it on purpose with my airplane.,uhoh but she did it on purpose with my airplane,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and the teacher is try/ing to get it.,and the teacher is trying to get it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,I do not know how.,I do not know how,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,it is go/ing : (uh) down.,it is going down,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,(da) well go[!] there.,well go there,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and he said : mommy can you get the airplane?,and he said mommy can you get the airplane,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and she get|get[EW:got] it [~_repeats_4_times_without_sentence_final__intonation].,and she get it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,she got it!,she got it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,oops sorry [+_bch].,oops sorry,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,(and : do/3s : the) : (he) the mom found his airplane.,the mom found his airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,that is the end [+_bch].,that is the end,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,(um) there is[!] a castle.,there is a castle,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,but he made the castle.,but he made the castle,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,(and he : put) and the bunny : pick/3s up some sand.,and the bunny picks up some sand,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and he throwed|throw[EW:threw] it into the sandbox.,and he throwed it into the sandbox,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and it say/3s pour*2.,and it says pour pour,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and that mean/3s pour!,and that means pour,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,that mean/3s pour.,that means pour,0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,: anything more on this page?,anything more on this page,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,(um) they : broke the castle!,they broke the castle,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,he made another one.,he made another one,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and he take|take[EW:took] all the sand off.,and he take all the sand off,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,that is the end [+_bch].,that is the end,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,they want to : go to a picnic.,they want to go to a picnic,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and he ate a lot of food.,and he ate a lot of food,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and he still : has a tummyache!,and he still has a tummyache,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and he is still growl/ing.,and he is still growling,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and he : like to see the doctor [EU].,and he like to see the doctor,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and he [~_high_pitched_voice] quick quick [EU]!,and he quick quick,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,he said come here.,he said come here,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,come here.,come here,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,he said he has a fever.,he said he has a fever,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,(he) he is go/ing to take care[!] of him.,he is going to take care of him,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,that is the end [+_bch].,that is the end,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,(um he) he said : he has a balloon.,he said he has a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,(and it fa) and he has a balloon.,and he has a balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and he : try/ed to get it off.,and he tried to get it off,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and it flew up to the air!,and it flew up to the air,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and he saw : two balloon/s.,and he saw two balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and here is[EW:are] some more[!] balloon/s.,and here is some more balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,some more balloon/s.,some more balloons,0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,he get/3s : more balloon/s!,he gets more balloons,0 3 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,he get/3s balloon/s.,he gets balloons,0 3 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,he get/3s the balloon/s.,he gets the balloons,0 3 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and he walk/ed.,and he walked,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and he walk/ed.,and he walked,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,(and).,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,do you hear me on this [~_talking_about_mic] [+_bch]?,do you hear me on this,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,"yeah, we have it on.",yeah we have it on,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,(um : um) I do not know this one [+_bch].,I do not know this one,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and they say they need a balloon.,and they say they need a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and he has a balloon.,and he has a balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,the end [+_bch]!,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,One day an elephant was bounce/ing : a ball.,One day an elephant was bouncing a ball,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then a giraffe came : over and said want to [~_wanna] play basketball?,and then a giraffe came over and said want to play basketball,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then the elephant said sure.,and then the elephant said sure,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,let us do it over there.,let us do it over there,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,okay said the giraffe.,okay said the giraffe,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then they hit the ball into the pool : where it was.,and then they hit the ball into the pool where it was,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and the giraffe went swim/ing for it.,and the giraffe went swimming for it,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and he got it and return/ed it back to the elephant.,and he got it and returned it back to the elephant,0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then they start/ed to play again.,and then they started to play again,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,One day the elephant and the giraffe want/ed to go swim/ing.,One day the elephant and the giraffe wanted to go swimming,0 0 0 0 0 0 0 4 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,so then the elephant start/ed to run to the diving board.,so then the elephant started to run to the diving board,0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and the giraffe start/ed walk/ing.,and the giraffe started walking,0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,then all of the sudden the elephant slip/ed.,then all of the sudden the elephant slipped,0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and the giraffe hurry/ed to get her.,and the giraffe hurried to get her,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then the elephant start/ed cry/ing because she had big booboo.,and then the elephant started crying because she had big booboo,0 0 0 0 4 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,so then the giraffe went to get the lifeguard.,so then the giraffe went to get the lifeguard,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and the lifeguard gave the elephant a bandaid.,and the lifeguard gave the elephant a bandaid,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then they went to sit down on a bench.,and then they went to sit down on a bench,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then the lifeguard show/ed her the sign that said no[!] run/ing.,and then the lifeguard showed her the sign that said no running,0 0 0 0 4 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,One day the elephant and the giraffe were : go/ing to fly the giraffe/z plane.,One day the elephant and the giraffe were going to fly the giraffe's plane,0 0 0 0 0 0 0 0 6 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then when the giraffe let the plane go : it : flew off.,and then when the giraffe let the plane go it flew off,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then the elephant caught it.,and then the elephant caught it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then the elephant drop/ed it into the water.,and then the elephant dropped it into the water,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then the giraffe got so angry at the elephant.,and then the giraffe got so angry at the elephant,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and the lifeguard came over and ask/ed what was[EW:had] happen/ed.,and the lifeguard came over and asked what was happened,0 0 0 0 0 0 4 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and the giraffe said that she : drop/ed his plane into the water.,and the giraffe said that she dropped his plane into the water,0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,so then the : elephant and the : lifeguard start/ed to have an argument.,so then the elephant and the lifeguard started to have an argument,0 0 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and it never end/ed.,and it never ended,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,(so then the) so when it was finish/ed the : lifeguard try/ed to go and : get it.,so when it was finished the lifeguard tried to go and get it,0 0 0 0 4 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,but then he did not.,but then he did not,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then another elephant came over.,and then another elephant came over,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and she had a net with her.,and she had a net with her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then she scoop/ed it up.,and then she scooped it up,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then she gave it back to the giraffe.,and then she gave it back to the giraffe,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,then giraffe start/ed to hug it.,then giraffe started to hug it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,one day there was : (um) : a small dragon and a rabbit.,one day there was a small dragon and a rabbit,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and they were play/ing in their sandbox.,and they were playing in their sandbox,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,"and then the rabbit start/ed to : make a sandcastle [~_pronounced__""candsassle""].",and then the rabbit started to make a sandcastle,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then the dragon broke it.,and then the dragon broke it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then : the rabbit built it again.,and then the rabbit built it again,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then he : put some sand all over.,and then he put some sand all over,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then he put water in it.,and then he put water in it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then : the : dragon smash/ed it again[!].,and then the dragon smashed it again,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then (he is) the dragon start/ed build/ing it.,and then the dragon started building it,0 0 0 0 4 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and he was cry/ing because it was so much work.,and he was crying because it was so much work,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,one day a rabbit came : hunt/ing for egg/s.,one day a rabbit came hunting for eggs,0 0 0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and (a) a bear came with him.,and a bear came with him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then they decide/ed that they would go buy some food and eat it for a picnic.,and then they decided that they would go buy some food and eat it for a picnic,0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then the : rabbit ate so fast that he : ate lot/s and lot/s.,and then the rabbit ate so fast that he ate lots and lots,0 0 0 0 0 0 0 0 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then he start/ed to get fat.,and then he started to get fat,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then he got so dizzy : while the : bear was drink/ing his lemonade.,and then he got so dizzy while the bear was drinking his lemonade,0 0 0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,so then a doctor came by.,so then a doctor came by,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and : the bear went to get him.,and the bear went to get him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then : the bear drag/ed him all the way there.,and then the bear dragged him all the way there,0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then : the doctor saw him : asleep.,and then the doctor saw him asleep,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,so then he gave : him some medicine.,so then he gave him some medicine,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,then he felt so better he could walk home.,then he felt so better he could walk home,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,one day the bear : was walk/ing down with his wagon.,one day the bear was walking down with his wagon,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and there is a balloon on it.,and there is a balloon on it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then all of a sudden rabbit came jog/ing by.,and then all of a sudden rabbit came jogging by,0 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,so then the rabbit said hey nice balloon.,so then the rabbit said hey nice balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,would you trade it for something?,would you trade it for something,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then the bear said sure what you got?,and then the bear said sure what you got,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,then the rabbit untie/ed the balloon : and then gave him : three dollar/s.,then the rabbit untied the balloon and then gave him three dollars,0 0 0 4 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,but then all of a sudden the rabbit let go of the balloon.,but then all of a sudden the rabbit let go of the balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and it went up into the sky.,and it went up into the sky,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,then the bear got so angry he start/ed to charge at him.,then the bear got so angry he started to charge at him,0 0 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then on the other side of the street : (some) a rabbit was sell/ing some more balloon/s.,and then on the other side of the street a rabbit was selling some more balloons,0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,so then the rabbit went over and bought some.,so then the rabbit went over and bought some,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and he got about : six because the balloon/s were about fifty cent/s per one.,and he got about six because the balloons were about fifty cents per one,0 0 0 0 0 0 0 1 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then : the bear came over and : bought one.,and then the bear came over and bought one,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then : they both went home nice and quietly : with a balloon.,and then they both went home nice and quietly with a balloon,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,then when they got[!] home : they[-:] took their balloon/s and start/ed dance/ing.,then when they got home they took their balloons and started dancing,0 0 0 0 0 0 0 0 1 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then all of a sudden they pop/ed.,and then all of a sudden they popped,0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,so then they had to go get new one/s.,so then they had to go get new ones,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then when they got the new one/s they put them in their shirt/s.,and then when they got the new ones they put them in their shirts,0 0 0 0 0 0 0 1 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(there w) I saw a[EW:an] elephant (down) on the sidewalk.,I saw a elephant on the sidewalk,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,: we saw a ball in the water.,we saw a ball in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(and) and : I went (uh) swim/ing in the water.,and I went swimming in the water,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and they got the ball.,and they got the ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and I was all wet.,and I was all wet,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(uh) I was look/ing at the water.,I was looking at the water,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,: (and) : and the elephant (wa) was go/ing to[:_gonna] jump inside the water.,and the elephant was going to jump inside the water,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and she was run/ing.,and she was running,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and she hurted|hurt[EW:hurt] her knee.,and she hurted her knee,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,: and she start|start[EW:started] cry/ing.,and she start crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(and : she is i) and we gived|give[EW:gave] her a bandaid.,and we gived her a bandaid,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(and then her) and then (she) she was happy[-:].,and then she was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(and zhen) and then : her dad was mad.,and then her dad was mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(uh) the elephant (an) and I was[EW:were] happy.,the elephant and I was happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and we were fly/ing my plane.,and we were flying my plane,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and : the elephant took it away : from me.,and the elephant took it away from me,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and : she throwed|throw[EW:threw] it in the water.,and she throwed it in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(and) and I was mad at her.,and I was mad at her,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and then there is[EW:are] : two : elephant/s.,and then there is two elephants,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(and) and her brother was talk/ing to her.,and her brother was talking to her,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(and she) and he try/ed to : get it.,and he tried to get it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and he did not.,and he did not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and he try/ed to get it so hard : that he did not get it.,and he tried to get it so hard that he did not get it,0 0 4 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(but h) but : the mom had : a net in her hand to go get it.,but the mom had a net in her hand to go get it,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and she got it.,and she got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(and h) (and) and I was happy.,and I was happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and I was hug/ing it.,and I was hugging it,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,we were play/ing in the sand.,we were playing in the sand,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,: and we made a castle.,and we made a castle,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and we pour/ed sand on it.,and we poured sand on it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and it broke.,and it broke,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(and) (and it w) and I was sad.,and I was sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(we) I bringed|bring[EW:brought] a snack.,I bringed a snack,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(an) and we eated|eat[EW:ate] it.,and we eated it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(and we) and I was drink/ing.,and I was drinking,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(and I got a) (and) and the rabbit got a[EW:an] owie.,and the rabbit got a owie,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and then it was : the rabbit/z mom.,and then it was the rabbit's mom,0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(and) and I was grab/ing her coat.,and I was grabbing her coat,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(and) : and : she was talk/ing to her : son.,and she was talking to her son,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(and) (and they were) and they (were) went home.,and they went home,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,I was bring/ing a balloon.,I was bringing a balloon,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,: (and) (and) and the rabbit was happy.,and the rabbit was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and he was : take/ing it off.,and he was taking it off,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(and) (and they we) and he let go.,and he let go,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and it flied|fly[EW:flew] (in) : up in the sky.,and it flied up in the sky,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and then we could not get it.,and then we could not get it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and then there was (a) a balloon guy.,and then there was a balloon guy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and we went to go get one.,and we went to go get one,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and : we got a number five.,and we got a number five,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and we did not get any balloon/s.,and we did not get any balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(and her mo) and then the rabbit/z mom was here.,and then the rabbit's mom was here,0 0 0 2 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(and) and he was (ll kk) ask/ing for his mom for money.,and he was asking for his mom for money,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(and) and the mom give|give[EW:gave] : him some money.,and the mom give him some money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and then they both had (s) balloon/s.,and then they both had balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,(w) once upon a time there was : a donkey and elephant.,once upon a time there was a donkey and elephant,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and elephant was bounce/ing : a ball.,and elephant was bouncing a ball,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,but then : the ball accidentally fell in (the) the water.,but then the ball accidentally fell in the water,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the donkey and the : elephant stare/ed at the : ball.,the donkey and the elephant stared at the ball,0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,(the) the donkey (sw) jump/ed into the pool and swam[-:][!] to the ball.,the donkey jumped into the pool and swam to the ball,0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the elephant look/ed at him.,the elephant looked at him,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and then the donkey got : the ball[-:] to the elephant.,and then the donkey got the ball to the elephant,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the elephant was happy.,the elephant was happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and then : (the) : the elephant : probably (look/ed) [~__no] : (uh) told the : donkey (that) : thank/s for : (take/ing) (get) get/ing my ball back.,and then the elephant probably told the donkey thanks for getting my ball back,0 0 0 0 0 0 0 0 1 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,(there) (there) (the donkey and the elephant) [~_okay] once upon a time there was a donkey and the elephant.,once upon a time there was a donkey and the elephant,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,they went to the swimming pool.,they went to the swimming pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,but then : the elephant was : tell/ing the donkey something.,but then the elephant was telling the donkey something,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,but then (he s) the elephant start/ed run/ing.,but then the elephant started running,0 0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,(he) : she slip/ed and fell and hurt her knee.,she slipped and fell and hurt her knee,0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,(the don) the donkey came run/ing after her.,the donkey came running after her,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and then the lifeguard came.,and then the lifeguard came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the : elephant was hurt.,the elephant was hurt,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,she was cry/ing[!].,she was crying,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the donkey was at her side.,the donkey was at her side,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,then the (li) lifeguard gave her a bandaid to (s) make sure (it felt better) her : knee felt better.,then the lifeguard gave her a bandaid to make sure her knee felt better,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the donkey was just stare/ing at her.,the donkey was just staring at her,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,then the lifeguard : made[-:] the : elephant (s) sit on (the : uh) a chair so : she can feel better.,then the lifeguard made the elephant sit on a chair so she can feel better,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,(the) the donkey was (r) at her side.,the donkey was at her side,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,then the lifeguard (told) : (l) look/ed at the sign and (point/ed at it) point/ed at it.,then the lifeguard looked at the sign and pointed at it,0 0 0 4 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and elephant looked at it too.,and elephant looked at it too,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,then she (knew) : knew a new thing.,then she knew a new thing,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,do not run on : deck/s.,do not run on decks,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,once upon a time there was : an elephant and the donkey.,once upon a time there was an elephant and the donkey,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the donkey had an airplane.,the donkey had an airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the donkey was fly/ing[!] the airplane.,the donkey was flying the airplane,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the elephant want/ed the airplane (w) because it was cool[!].,the elephant wanted the airplane because it was cool,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,(the) : but the elephant took : the plane away from the donkey : and start/ed play/ing with it.,but the elephant took the plane away from the donkey and started playing with it,0 0 0 0 0 0 0 0 0 0 0 4 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the donkey was upset.,the donkey was upset,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,but then it fell in the water[-:].,but then it fell in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and the donkey and the elephant just : stare/ed at it.,and the donkey and the elephant just stared at it,0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the donkey got so[!] mad because it : fell[!] in the water.,the donkey got so mad because it fell in the water,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the : elephant said uhoh.,the elephant said uhoh,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and then the lifeguard stare/ed at both of them.,and then the lifeguard stared at both of them,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and they both stare/ed back.,and they both stared back,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,then the elephant told the lifeguard there is a plane[!] in the water.,then the elephant told the lifeguard there is a plane in the water,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,(I accidentally) it accidentally went into the (wa) : water.,it accidentally went into the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and (the) the donkey is sad !,and the donkey is sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,then the : lifeguard try/ed to get the : plane.,then the lifeguard tried to get the plane,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,but it was too hard to reach.,but it was too hard to reach,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,then the donkey start/ed cry/ing.,then the donkey started crying,0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,(the elephant just stare/ed at the ba) : the elephant and the lifeguard just stare/ed at (the) the[-:] : plane.,the elephant and the lifeguard just stared at the plane,0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,then (a) (ano) an elephant girl[!] came[-:] with a net[!].,then an elephant girl came with a net,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,(the) the three of them stare/ed at her.,the three of them stared at her,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,(the) the elephant : put the net in the water.,the elephant put the net in the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,(it) and (it touch/ed the) : (it went in t) the plane went into the net.,and the plane went into the net,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the elephant gave : the plane to : the donkey.,the elephant gave the plane to the donkey,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the donkey was happy[!].,the donkey was happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,now both of them are happy because he : got : his plane back.,now both of them are happy because he got his plane back,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,once upon a time[-:] there was : a dog and a rabbit.,once upon a time there was a dog and a rabbit,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,(they were) they were go/ing to play in the sandbox.,they were going to play in the sandbox,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,(they[-:]) : the rabbit (um) : he got a pail of sand.,the rabbit he got a pail of sand,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and he put a shovel in it to try I think to mix : the : sand.,and he put a shovel in it to try I think to mix the sand,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and the dog was : pat/ing (it) : the sand.,and the dog was patting the sand,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and then the rabbit : dump/ed the bucket on the sand.,and then the rabbit dumped the bucket on the sand,0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and then : he got upset because he wreck/ed the sandcastle.,and then he got upset because he wrecked the sandcastle,0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,but : (that) the dog did not look that upset.,but the dog did not look that upset,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and then he start/ed cry/ing and try/ing to put it back together.,and then he started crying and trying to put it back together,0 0 0 4 6 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,but the : rabbit (he just) : he look/ed like he was lazy.,but the rabbit he looked like he was lazy,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and he did not want to [~_wanna] help fix it.,and he did not want to help fix it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,once upon a time there was : a dog and a rabbit.,once upon a time there was a dog and a rabbit,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,they were go/ing on a picnic in the wood/s.,they were going on a picnic in the woods,0 0 6 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,(they[-:]) : they found a : perfect spot in the shade.,they found a perfect spot in the shade,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and : they start/ed to take out : all their food.,and they started to take out all their food,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,start/ed to what?,started to what,4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,take out all their food [+_bch].,take out all their food,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and but the rabbit ate up all the food.,and but the rabbit ate up all the food,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,but the dog only (ha) had some[!] of it.,but the dog only had some of it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,(and) but then the dog look/ed at the rabbit.,but then the dog looked at the rabbit,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,he look/ed sick[!].,he looked sick,0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,so he went : to find : a doctor.,so he went to find a doctor,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and : he found a doctor.,and he found a doctor,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,so he told him to come here.,so he told him to come here,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the doctor look at the rabbit.,the doctor look at the rabbit,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and : he look/ed really sick.,and he looked really sick,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and then the doctor : was try/ing to (m) make the rabbit feel[!] better.,and then the doctor was trying to make the rabbit feel better,0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,but then (h) (na) (he made him) the doctor made him feel[!] better.,but then the doctor made him feel better,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and the dog is happy too.,and the dog is happy too,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,(um there) once upon a time there was : a rabbit and a dog.,once upon a time there was a rabbit and a dog,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,they had (a) a balloon : tape/ed onto a wagon.,they had a balloon taped onto a wagon,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the rabbit[!] want/ed to take a look at the balloon.,the rabbit wanted to take a look at the balloon,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the rabbit (untie) : took the tape off the : balloon.,the rabbit took the tape off the balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and (he w) (he w) he : (got) (took on) holded|hold[EW:held] onto it.,and he holded onto it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,but then he let go of it.,but then he let go of it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and : the : balloon (took off) : took off.,and the balloon took off,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and then the dog was so[!] upset because (he) (thi) that was his[!] balloon.,and then the dog was so upset because that was his balloon,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,but the rabbit was just (look/ing up) stare/ing up at the balloon.,but the rabbit was just staring up at the balloon,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,they saw a balloon guy sell/ing balloon/s[!].,they saw a balloon guy selling balloons,0 0 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the rabbit : look/ed at the balloon guy.,the rabbit looked at the balloon guy,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and the dog was still mad.,and the dog was still mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the (r) : rabbit ask/ed the balloon guy can I have a balloon?,the rabbit asked the balloon guy can I have a balloon,0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,but the balloon/s were five cent/s.,but the balloons were five cents,0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,he did not have any money[!].,he did not have any money,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,so : he was just stand/ing there.,so he was just standing there,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and both of them came and : look/ed at him.,and both of them came and looked at him,0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,but then he saw the same doctor[!] in the[~!_laughing] other story.,but then he saw the same doctor in the other story,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the rabbit went to the doctor.,the rabbit went to the doctor,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and the rabbit ask : the doctor : that : he want/ed a balloon because his other one took off[-:].,and the rabbit ask the doctor that he wanted a balloon because his other one took off,0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,(so h) but he did not have any money.,but he did not have any money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,so : he want/ed the doctor to : (buy) buy a balloon for him.,so he wanted the doctor to buy a balloon for him,0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the doctor bought a : (b) balloon for both[!] of them.,the doctor bought a balloon for both of them,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and they were happy[!].,and they were happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,they both have a balloon now.,they both have a balloon now,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,now they are really[!] happy.,now they are really happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the end[~!_whispering] [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,there was : an elephant : who had a ball.,there was an elephant who had a ball,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,: and then it fell in the water.,and then it fell in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,so : change change [~_asking_examiner_to_turn_the_page] [+_bch].,so change change,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,so : (what is that animal : is call/ed) what kind of animal is that [+_bch]?,so what kind of animal is that,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,oh it is your story you can make it up.,oh it is your story you can make it up,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,[~_well] : a horse (wen) grab/ed the ball : and gave it back to the elephant.,a horse grabbed the ball and gave it back to the elephant,0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,and she was so proud : she got her ball back.,and she was so proud she got her ball back,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,there was an elephant : who want/ed to jump off : a jumping board.,there was an elephant who wanted to jump off a jumping board,0 0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,so she ran over there.,so she ran over there,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,change the page [+_bch].,change the page,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,and she ran and she ran until she fell and (got her) got a booboo.,and she ran and she ran until she fell and got a booboo,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,so another elephant came and ran to her (and gave[-:]) and gave her a bandage.,so another elephant came and ran to her and gave her a bandage,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,and she wipe/ed her tears.,and she wiped her tears,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,: (and she felt a little be) [~_well] : it kind of stinged|sting[EW:stung] her a little bit.,it kind of stinged her a little bit,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,what?,what,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,stinged|sting[EW:stung] her [+_bch].,stinged her,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,and she felt better.,and she felt better,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,there was a horse : who had a plane.,there was a horse who had a plane,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,: he flew it around.,he flew it around,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,: but then the elephant grab/ed it.,but then the elephant grabbed it,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,: but then the elephant drop/ed it in the water.,but then the elephant dropped it in the water,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,and then : the horse got mad at the elephant.,and then the horse got mad at the elephant,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,so the other elephant came and see|see[EW:saw] what the problem was.,so the other elephant came and see what the problem was,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,and so (sh) the other elephant said : I accidentally drop/ed it in the water.,and so the other elephant said I accidentally dropped it in the water,0 0 0 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,so (he) the elephant try/ed to reach it.,so the elephant tried to reach it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,but[!] he could not reach it.,but he could not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,so the horse cry/ed.,so the horse cried,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,: but then there is another[!] elephant (who gra) who : had a stick to grab it.,but then there is another elephant who had a stick to grab it,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,"a stick to grab it, uhhm.",a stick to grab it uhhm,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,and then she put her stick in there.,and then she put her stick in there,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,and she grab/ed it.,and she grabbed it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,then (h) he (ho) grab/ed his plane.,then he grabbed his plane,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,: and : (h) he holded|hold[EW:held] it tight to his : (t) : tummy.,and he holded it tight to his tummy,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,there was[-:] a dog who[-:] was[-:] go/ing to[:_gonna] make a sandcastle.,there was a dog who was going to make a sandcastle,0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,made a sandcastle [EU].,made a sandcastle,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,so they put more sand to make it bigger.,so they put more sand to make it bigger,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,but when he put more sand on it : it broke!,but when he put more sand on it it broke,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,: and he accidentally broke it.,and he accidentally broke it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,and the dog was (cr) cry/ing sad [EU].,and the dog was crying sad,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,there[-:] was a rabbit and a dog.,there was a rabbit and a dog,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,: so (they ate) they had a picnic and ate their food.,so they had a picnic and ate their food,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,: later the rabbit got really full : from : eat/ing.,later the rabbit got really full from eating,0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,(ss) well he kind of[:_kinda] fell asleep.,well he kind of fell asleep,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,: and then the dog : ran for help.,and then the dog ran for help,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,and so she came over.,and so she came over,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,: and (she said) : (sh) : (he) so she open/ed his mouth.,and so she opened his mouth,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,: and then : (h) : she took him home.,and then she took him home,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,and then he felt more better [EU].,and then he felt more better,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,there was a dog and : a rabbit.,there was a dog and a rabbit,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,: the dog had a balloon.,the dog had a balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,but the rabbit want/ed to hold it.,but the rabbit wanted to hold it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,the rabbit what?,the rabbit what,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,want/ed to hold it [+_bch].,wanted to hold it,4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,(the) the rabbit : untie/ed it from[-:] : a little cart.,the rabbit untied it from a little cart,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,but then when he letted|let[EW:let] it go.,but then when he letted it go,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,it flew up in the air.,it flew up in the air,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,and the dog got mad.,and the dog got mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,but there was[EW:were] other balloon/s[-:].,but there was other balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,so[-:] the[-:] rabbit ask/ed the man if he could have a balloon.,so the rabbit asked the man if he could have a balloon,0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,but he need/ed five[-:] dollar/s : to pay for the balloon.,but he needed five dollars to pay for the balloon,0 0 4 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,but : (he had) he had no money.,but he had no money,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,so : there was a lady (who stand over) who was stand/ing on a corner.,so there was a lady who was standing on a corner,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,so the rabbit ran to her : and said I can not (buy a) buy a balloon.,so the rabbit ran to her and said I can not buy a balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,so the lady came over : and said to the man : I will (bu) buy two balloon/s (and) for five[-:] buck/s.,so the lady came over and said to the man I will buy two balloons for five bucks,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,then they each got a balloon.,then they each got a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,an elephant ask/ed (if) : if the giraffe want/3s to play with her and her ball.,an elephant asked if the giraffe wants to play with her and her ball,0 0 4 0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and[-:] it bounce/3s into a pool.,and it bounces into a pool,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and the giraffe go/3s to get it.,and the giraffe goes to get it,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and then[-:] he give/3s it back to her.,and then he gives it back to her,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and she is happy.,and she is happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and then the giraffe : and the elephant want to play again.,and then the giraffe and the elephant want to play again,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and then she say/3s do you : want to go on the diving board?,and then she says do you want to go on the diving board,0 0 0 3 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and she slip/3s[-:] : and hurt/3s her knee.,and she slips and hurts her knee,0 0 3 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,the giraffe go/3s and get/3s a lifeguard.,the giraffe goes and gets a lifeguard,0 0 3 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and[-:] (the) (the uh) : the lifeguard put/3s a bandage on it.,and the lifeguard puts a bandage on it,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and (uh) she feel/3s (uh) : better.,and she feels better,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and (uh uh[-:]) : the lifeguard say/3s[-:] to her no run/ing.,and the lifeguard says to her no running,0 0 0 3 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,the elephant want/3s to play with the giraffe and the plane.,the elephant wants to play with the giraffe and the plane,0 0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and[-:] (uh) he swing/3s the (pl) plane.,and he swings the plane,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and then[-:] (the) : the elephant take/3s it from him.,and then the elephant takes it from him,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and then she accidentally drop/3s it in the water.,and then she accidentally drops it in the water,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and the giraffe get/3s mad at her[-:].,and the giraffe gets mad at her,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and the lifeguard (is) : come/3s.,and the lifeguard comes,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and[-:] (uh) she tell/3s him what happen/ed.,and she tells him what happened,0 0 3 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and[-:] he try/3s to get it.,and he tries to get it,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,but he can not.,but he can not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,(uh) and then the giraffe is cry/ing.,and then the giraffe is crying,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and then[-:] (uh) : another elephant come/3s : with a net : and (uh get uh) scoop/3s it out and give/3s it back to the giraffe.,and then another elephant comes with a net and scoops it out and gives it back to the giraffe,0 0 0 0 3 0 0 0 0 3 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and the giraffe is happy.,and the giraffe is happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,(nuh) : a[-:] rabbit ask/3s[-:] someone if he could build a castle with him.,a rabbit asks someone if he could build a castle with him,0 0 3 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,(and they) and he say/3s yes.,and he says yes,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and they start build/ing it.,and they start building it,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,he put/3s sand on top of the castle.,he puts sand on top of the castle,0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and it break/3s.,and it breaks,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and the guy is try/ing to make it again.,and the guy is trying to make it again,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,the[-:] guy again[-:] ask/3s if he can have a picnic with him.,the guy again asks if he can have a picnic with him,0 0 0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and they start to eat.,and they start to eat,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and[-:] : the rabbit eat/3s a lot.,and the rabbit eats a lot,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and he get/3s full.,and he gets full,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and then he get/3s sick.,and then he gets sick,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and then[-:] the other guy come/3s and get/3s a doctor : and tell/3s her that (uh) he is sick.,and then the other guy comes and gets a doctor and tells her that he is sick,0 0 0 0 0 3 0 3 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and she[-:] (uh) help/3s him.,and she helps him,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,(and he) : and she take/3s him to her office.,and she takes him to her office,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,the rabbit again come/3s to play with him.,the rabbit again comes to play with him,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and then he see/3s the balloon.,and then he sees the balloon,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and he untie/3s it because he want/3s to [~_wantsa] hold it.,and he unties it because he wants to hold it,0 0 3 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and it fly/3s away.,and it flies away,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and then[-:] (the[-:]) watch/ing the other guy get/3s mad at him [EU].,and then watching the other guy gets mad at him,0 0 6 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and then (the[-:]) he see/3s a balloon guy.,and then he sees a balloon guy,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and (he go/3s ask/3s) : he[-:] (uh) go/3s to see him.,and he goes to see him,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,(uh) and he ask/3s for a balloon.,and he asks for a balloon,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and then (nn) they need five cent/s to buy one.,and then they need five cents to buy one,0 0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,(andb the) and then the other guy come/3s.,and then the other guy comes,0 0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and then they go to see the doctor again : and ask if (they) she can get them a balloon.,and then they go to see the doctor again and ask if she can get them a balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and then she (pay/3s and) : paid for : two.,and then she paid for two,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and then they both (uh) are happy.,and then they both are happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,the giraffe went : close talk to (the um) : the[-:] : elephant [EU].,the giraffe went close talk to the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and do you want to play with me?,and do you want to play with me,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and (he) the giraffe say/3s yes.,and the giraffe says yes,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,you want : to play with the ball?,you want to play with the ball,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,he say|say[EW:says] yes.,he say yes,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and the ball : went go over there : and went to the water.,and the ball went go over there and went to the water,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : the giraffe and the elephant yell/ed.,and the giraffe and the elephant yelled,0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and (the um) the giraffe (um f) : (got the um) : got the ball : close.,and the giraffe got the ball close,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : the giraffe : got the ball and give|give[EW:gave] *it to (um : the) : the elephant [EU].,and the giraffe got the ball and give to the elephant,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and (the) the elephant (t) say|say[EW:said] thank you.,and the elephant say thank you,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and the giraffe say|say[EW:said] you are welcome.,and the giraffe say you are welcome,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(um) : thank you[-:] giraffe!,thank you giraffe,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(and he) and he said you are welcome.,and he said you are welcome,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(um : the) : the elephant and the : giraffe : (I) : is (no uh ju) no run/ing : in the : water [EU].,the elephant and the giraffe is no running in the water,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and[-:] : I like to go swim/ing.,and I like to go swimming,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(you want) that is it [+_bch].,that is it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and the giraffe (and the um) : and the : elephant said : do you want to go to the diving board.,and the giraffe and the elephant said do you want to go to the diving board,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(said um) : yes please said the giraffe : and no run/ing : in the (um) : xx.,yes please said the giraffe and no running in the,0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(and he[-:]) and the : giraffe saw the : elephant.,and the giraffe saw the elephant,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,no run/ing.,no running,0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(he slip) she slip/ed : down and : (um) got blade[?] in her (um) : leg [EU].,she slipped down and got blade in her leg,0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(and the) : and giraffe saw the : elephant.,and giraffe saw the elephant,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,no run/ing.,no running,0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(and) : and : she[-:] bump/ed there [EU].,and she bumped there,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,down is bleed/ing [EU].,down is bleeding,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and (she) : she yell/ed and hurt/ing [EU].,and she yelled and hurting,0 0 4 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : (she is try/ing) (the) : (the elephant is try/ing) : she is cry/ing.,and she is crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and the : giraffe said : (um) you are okay.,and the giraffe said you are okay,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(and the) : and the (e) elephant said no.,and the elephant said no,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and (the um elephant) the diving man : went : by him to : (get) : get a bandaid.,and the diving man went by him to get a bandaid,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(and the) : and the : elephant : it be[EW:was] hurt and : put a bandaid on her [EU].,and the elephant it be hurt and put a bandaid on her,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and (s) see it never hurt.,and see it never hurt,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(and it) and giraffe said : and that is okay.,and giraffe said and that is okay,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(is nn) is no run/ing in there [EU].,is no running in there,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and[-:] I am sorry about that.,and I am sorry about that,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(um) : (the gira) the giraffe say|say[EW:said] hello (to the um) : to the elephant.,the giraffe say hello to the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(I got) : I got a new : airplane.,I got a new airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,I want to [~_wanna] play with it.,I want to play with it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : (gi) giraffe say|say[EW:said] yes.,and giraffe say yes,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(and[-:] the) : and giraffe say|say[EW:said] : (um) I want to play[-:] on (my) : my airplane [EU].,and giraffe say I want to play on my airplane,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and he start[EW:started] to (s um) spit : and say brr[?].,and he start to spit and say brr,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(and) : and the elephant say|say[EW:said] : that is cool.,and the elephant say that is cool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and the giraffe : [~_high_pitched_voice] hey (do not) (do not st) : do not grab from me [EU]!,and the giraffe hey do not grab from me,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,I want to play with it too[!] : said the (um) : elephant.,I want to play with it too said the elephant,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : ( I am) : ( I am sorry) (I) (the) : the : elephant said I am sorry I am : drop/ed to : the (um) nother[?] (air) airplane giraffe said [EU].,and the elephant said I am sorry I am dropped to the nother airplane giraffe said,0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and[-:] the giraffe is very angry.,and the giraffe is very angry,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : (you) : (you) : you drop/ed my (um) airplane in the water.,and you dropped my airplane in the water,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,I am sorry about that : said the[-:] : elephant.,I am sorry about that said the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and (the diving man said : air) : why is the toy over there said the (um) diving man.,and why is the toy over there said the diving man,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : (is my[-:]) that is mine[EW:my] [-:] : airplane said the : little giraffe.,and that is mine airplane said the little giraffe,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,( I am) and the : elephant said : (um) : I did it by accident and drop/ed giraffe/z airplane.,and the elephant said I did it by accident and dropped giraffe's airplane,0 0 0 0 0 0 0 0 0 0 4 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : it is right there.,and it is right there,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and I drop/ed it.,and I dropped it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,I drop/ed (the um : airplane) : (his) giraffe/z : airplane.,I dropped giraffe's airplane,0 4 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and[-:] : I am sorry[?] disappoint[?] you [EU].,and I am sorry disappoint you,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(I can not) I can not : go to the water in there.,I can not go to the water in there,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : he try/ed to (um) : grabbed|grab[EW:grab] it.,and he tried to grabbed it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(and) : and I can not reach it very far [EU].,and I can not reach it very far,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,I am not allow/ed to go (to) in the water : said the (um) diving man.,I am not allowed to go in the water said the diving man,0 0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(and the[-:] : giraffe said : where[-:]) (I) (I) [~__gulps] : and the giraffe said : well you can not reach it!,and the giraffe said well you can not reach it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(and the) : and (the : elephant) oopsie said the elephant[?].,and oopsie said the elephant,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and the giraffe (s) : he is cry/ing to lost (his) : his airplane [EU].,and the giraffe he is crying to lost his airplane,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(and[-:] the) : and the elephant girl : (she) : she say/3s sorry (I) (for) : (I) : for : (the) : dropped[EW:dropping] the airplane (s) said the : elephant.,and the elephant girl she says sorry for dropped the airplane said the elephant,0 0 0 0 0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and the diving man can not reach it.,and the diving man can not reach it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(it is) : it is too far from me.,it is too far from me,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and (the lady) : the lady : grab/ed (that) the airplane right there in the water.,and the lady grabbed the airplane right there in the water,0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(and try/ing) (I) : I got : that : airplane.,I got that airplane,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and (he) she got that : airplane right there.,and she got that airplane right there,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : the giraffe (s) is cry/ing for (that) his airplane.,and the giraffe is crying for his airplane,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(and the lady) : and : (the : air) : the : giraffe : said : thank you for (my) : got[EW:getting] my airplane.,and the giraffe said thank you for got my airplane,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and the lady say[EW:said] : you are welcome.,and the lady say you are welcome,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and[-:] the giraffe : is happy get (my) (his) : his airplane [EU].,and the giraffe is happy get his airplane,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : the (el) elephant (he is happy) she is happy : for : it.,and the elephant she is happy for it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,I am sorry about that drop : (the) : your airplane : (said) : said the : [~_sighs] elephant [EU].,I am sorry about that drop your airplane said the elephant,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(um) : a rabbit [EU].,a rabbit,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,some help (with the) (um) with the[-:] : dog [EU].,some help with the dog,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : he want/3s some help (to) with me : to know how to make a sandcastle.,and he wants some help with me to know how to make a sandcastle,0 0 3 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(and he um) the rabbit make|make[EW:made] a sandcastle.,the rabbit make a sandcastle,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : the rabbit dump|dump[EW:dumped] all the sand to (the) : the sandcastle [EU].,and the rabbit dump all the sand to the sandcastle,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : (he is) (he) that accidentally[?] [~__pronounced_'sadently'] (um) : broke (his) (the dog/z) : the dog[EW:dog/z] : sandcastle.,and that accidentally broke the dog sandcastle,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : (he) : the dog never[-:] (um) make|make[EW:made] a sandcastle.,and the dog never make a sandcastle,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and he cry/ed.,and he cried,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and there[EW:the] bunny rabbit : (um) : be[EW:was] sorry (that he).,and there bunny rabbit be sorry,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,one day (um) : a dog : say|say[EW:said] (um) hello to the rabbit.,one day a dog say hello to the rabbit,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(an) and : he : you want to[:_wanna] come with me [EU]?,and he you want to come with me,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,he said yes.,he said yes,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and the rabbit *was so hungry to eat [EU].,and the rabbit so hungry to eat,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and (the um) the dog : saw him eat/ing : very good.,and the dog saw him eating very good,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and[-:] the rabbit is very full.,and the rabbit is very full,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : the : dog is : (very) eat/ing his sandwich and : his[-:] apple juice.,and the dog is eating his sandwich and his apple juice,0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : the dog eat|eat[EW:ate] his : sandwich and (his) : his apple juice.,and the dog eat his sandwich and his apple juice,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : the rabbit : is very full.,and the rabbit is very full,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and one day (um the) : the dog (um) went by with : the (um) rabbit.,and one day the dog went by with the rabbit,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : the rabbit is lay/ing down and : saw the doctor.,and the rabbit is laying down and saw the doctor,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and one day (um) : the doctor (went) : went close to the rabbit.,and one day the doctor went close to the rabbit,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(and) : and : the dog pull/ed the (um) lady : to the rabbit.,and the dog pulled the lady to the rabbit,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and (one) : the rabbit said : you are very sick.,and the rabbit said you are very sick,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : you are full[-:].,and you are full,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and that is it [+_bch].,and that is it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and the (um) rabbit (went to the um) : went to the doctor (w) and get[EW:got] something.,and the rabbit went to the doctor and get something,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and the dog : said (um) : come back too soon [EU].,and the dog said come back too soon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(um) : one day (um) the dog : seed|see[EW:saw] the rabbit and went to closer : and seed|see[EW:saw] the balloon [EU].,one day the dog seed the rabbit and went to closer and seed the balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : he said : I want that balloon.,and he said I want that balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : (he said um) the dog said : (um) : yes if you (want to) want to[:_wanna] see it.,and the dog said yes if you want to see it,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and the : dog (said) he yell/3s.,and the dog he yells,0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and the rabbit (um : um) take[EW:took] the balloon : off and see|see[EW:saw] the balloon.,and the rabbit take the balloon off and see the balloon,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : that is it [+_bch].,and that is it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and the (um) dog said (um) : my balloon is (um) : flied[EW:flying].,and the dog said my balloon is flied,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : the rabbit can not (reas) reach it.,and the rabbit can not reach it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and one day (the) : (the) : the dog is very angry.,and one day the dog is very angry,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and (the um) : the rabbit is so : sorry to get the balloon up there.,and the rabbit is so sorry to get the balloon up there,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and the dog said he is very angry.,and the dog said he is very angry,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and (the) : (um : the) : the rabbit went : closer (get the) buy (uh) : a balloon [EU].,and the rabbit went closer buy a balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and (he said) (the) (the rab) [~_no] the dog is wait/ing for (the balloon) his balloon.,and the dog is waiting for his balloon,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and the : rabbit said I want that balloon.,and the rabbit said I want that balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,then you have to buy it.,then you have to buy it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : (I do not have) (I do not have) it is : five cent/s.,and it is five cents,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and I no have money [EU].,and I no have money,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : sorry (you have) you do not have money.,and sorry you do not have money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and the dog went (do um) close.,and the dog went close,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : that is no[EW:not] fair.,and that is no fair,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and (the um) : (the lady doctor) (she) (she went) the rabbit went : closer (with the) (talk) talk to the : lady [EU].,and the rabbit went closer talk to the lady,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(you) (you) *will you buy a : balloon for me and[-:] the dog too [EU]?,you buy a balloon for me and the dog too,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : I want a balloon.,and I want a balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(an) and I do not have money.,and I do not have money,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,it is five cent/s.,it is five cents,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and (the) : that is it [+_bch].,and that is it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and (the) : the : lady : give|give[EW:gave] two : five cent/s for the man.,and the lady give two five cents for the man,0 0 0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(the) : and : (the) the dog and the rabbit want (two[-:]) : two balloon/s.,and the dog and the rabbit want two balloons,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and (I) I like my balloon.,and I like my balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and me too!,and me too,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : (I) : thank you for buy/ing the balloon[EW:balloons] for us.,and thank you for buying the balloon for us,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,I see : (a) a camel.,I see a camel,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,And I see an elephant bounce/ing a ball really fast.,And I see an elephant bouncing a ball really fast,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,[~_!_Coughs] That hurt/3s my voice when I do that [+_bch].,That hurts my voice when I do that,0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,And the ball got stuck in the beach.,And the ball got stuck in the beach,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,And the camel was swim/ing for it.,And the camel was swimming for it,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,That is pretty silly.,That is pretty silly,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,And the camel got the ball.,And the camel got the ball,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,(And she) and the elephant was so happy to have her ball back.,and the elephant was so happy to have her ball back,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,I did it [+_bch].,I did it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,they are go/ing in the water.,they are going in the water,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and she want/3s to just dive in.,and she wants to just dive in,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,she slip/ed[!] : and hurt her knee.,she slipped and hurt her knee,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,(and) and the camel got another elephant.,and the camel got another elephant,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and (the other) the boy elephant put a bandaid on.,and the boy elephant put a bandaid on,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,then the girl elephant was better.,then the girl elephant was better,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and the boy elephant said do not slip again.,and the boy elephant said do not slip again,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,The boy camel had a[EW:an] airplane.,The boy camel had a airplane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,He made funny noise/s with it though.,He made funny noises with it though,0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,And then the girl elephant took it away from him.,And then the girl elephant took it away from him,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,And then she drop/ed it in the water.,And then she dropped it in the water,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,And then the : camel was mad !,And then the camel was mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,And then : the boy camel got this elephant to get it.,And then the boy camel got this elephant to get it,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,[~_coughs] (And the) and the girl elephant explain/ed what happen/ed.,and the girl elephant explained what happened,0 0 0 0 4 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and then he dived|dive[EW:dove] in to get it.,and then he dived in to get it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,but he did not get it.,but he did not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and then the boy camel got another girl camel to fetch it with something.,and then the boy camel got another girl camel to fetch it with something,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and she got[!] it.,and she got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and there was his plane.,and there was his plane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,he was happy again !,he was happy again,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and then he : like/ed it so much.,and then he liked it so much,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,The end [+_bch].,The end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,I see a rabbit and a dog build/ing a sandcastle.,I see a rabbit and a dog building a sandcastle,0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and the rabbit is build/ing a sand block[!] castle.,and the rabbit is building a sand block castle,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and the rabbit dump/ed[!] it on the sandcastle.,and the rabbit dumped it on the sandcastle,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and then the sandcastle did not look like one no[EW:any] more.,and then the sandcastle did not look like one no more,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and then the : dog try/ed to build it all over again.,and then the dog tried to build it all over again,0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,they are fetch/ing some food and basket/s.,they are fetching some food and baskets,0 0 6 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and the rabbit caught : (a) : a carrot and : a big long thing.,and the rabbit caught a carrot and a big long thing,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and the rabbit was too full from all that.,and the rabbit was too full from all that,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and then all that food made him so dizzy.,and then all that food made him so dizzy,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and then the dog[-:] went to get : the mother rabbit.,and then the dog went to get the mother rabbit,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and the dog was pull/ing the mother rabbit.,and the dog was pulling the mother rabbit,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,[~!_laughs] that is so silly.,that is so silly,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and then the mother rabbit saw that : (his) her son was so dizzy.,and then the mother rabbit saw that her son was so dizzy,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and then (sh) the : mother rabbit bring|bring[EW:brought] him with her.,and then the mother rabbit bring him with her,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,the boy[-:] dog[-:] was push/ing (the) this with a balloon on it.,the boy dog was pushing this with a balloon on it,0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and the rabbit was try/ing to get it off.,and the rabbit was trying to get it off,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,but no way.,but no way,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,the dog did not let him.,the dog did not let him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,(and he) and the rabbit was tie/ing it off.,and the rabbit was tying it off,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and the : dog was so scare/ed (that) (that it would just).,and the dog was so scared,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,I will rope it off.,I will rope it off,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and it float/ed away.,and it floated away,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and then the dog was mad[-:][!].,and then the dog was mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and the rabbit was hold/ing a whole[-:] bunch of them.,and the rabbit was holding a whole bunch of them,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and he point/ed right[!] at the same one he had.,and he pointed right at the same one he had,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,: (it) but it was too much money.,but it was too much money,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,but he want/ed to pick one what was the same : money as the other[!] one was.,but he wanted to pick one what was the same money as the other one was,0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,(and he) and he did not get one.,and he did not get one,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and the rabbit was say/ing his mother to : buy him : the same one [EU].,and the rabbit was saying his mother to buy him the same one,0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and the : son rabbit was point/ing right[-:] at this balloon.,and the son rabbit was pointing right at this balloon,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,(and) and she had enough money to buy[!] him one.,and she had enough money to buy him one,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and then they both[!] got one.,and then they both got one,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the alligator and : the elephant (has) : have some ball/s.,the alligator and the elephant have some balls,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,one ball went in the swimming pool.,one ball went in the swimming pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and they are look/ing at it.,and they are looking at it,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,(th) the : alligator is try/ing to get the ball.,the alligator is trying to get the ball,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the elephant is[-:] close/ing her eye/s.,and the elephant is closing her eyes,0 0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the elephant got her ball.,the elephant got her ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the (al) alligator is climb/ing back up.,and the alligator is climbing back up,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,is what ?,is what,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,I did not hear the word.,I did not hear the word,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,is climb/ing back up [+_bch].,is climbing back up,0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,(the alligator : and the elephant : w) the alligator was smile/ing.,the alligator was smiling,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the elephant was not.,and the elephant was not,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the elephant gots|get[EW:got] the ball.,and the elephant gots the ball,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,(uh) : the sign say/3s no : run/ing.,the sign says no running,0 0 3 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the elephant (i) and the alligator are happy.,and the elephant and the alligator are happy,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the elephant is tell/ing the alligator look over there.,the elephant is telling the alligator look over there,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,there is a jump/ing : thing.,there is a jumping thing,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,(and they are) : and they are walk/ing towards it.,and they are walking towards it,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the elephant is run/ing.,the elephant is running,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the alligator is walk/ing.,and the alligator is walking,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the elephant got an[EW:a]: bruise.,the elephant got an bruise,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the alligator is sad.,and the alligator is sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,(the alligator) : the elephant (um : and to) and the grownup elephant came and : help/ed the baby elephant.,the elephant and the grownup elephant came and helped the baby elephant,0 0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and : the alligator is look/ing.,and the alligator is looking,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the big elephant putted|put[EW:put] a bandage on.,the big elephant putted a bandage on,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the other elephant is cry/ing.,and the other elephant is crying,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the alligator is sad.,and the alligator is sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the (um e) elephant is sit/ing on a bench : because (she got) she can not walk because she gots[EW:has] an owie.,the elephant is sitting on a bench because she can not walk because she gots an owie,0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and (um) : the elephant is[-:] : carry/ing her.,and the elephant is carrying her,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the : alligator is help/ing.,and the alligator is helping,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the elephant : is talk|talk[EW:talking] to the girl.,the elephant is talk to the girl,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,(um) the alligator and the elephant are smile/ing.,the alligator and the elephant are smiling,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the alligator (i) has (a : pape) : (a paper) a toy airplane.,the alligator has a toy airplane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the elephant is look/ing at it.,and the elephant is looking at it,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the elephant took it away from the alligator.,the elephant took it away from the alligator,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the alligator say/3s hey!,and the alligator says hey,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and then : (she) : she is play/ing with it.,and then she is playing with it,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and then the alligator is mad because she drop/ed it in the swimming pool.,and then the alligator is mad because she dropped it in the swimming pool,0 0 0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the elephant said : I do|do[EW:did] not mean to.,and the elephant said I do not mean to,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and then the alligator got really mad.,and then the alligator got really mad,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,then the grownup elephant said what are you kid/s still do/ing here?,then the grownup elephant said what are you kids still doing here,0 0 0 0 0 0 0 0 1 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and then the alligator and the : elephant is[EW:are] [-:] : mad.,and then the alligator and the elephant is mad,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the elephant is talk/ing loud to the big elephant.,the elephant is talking loud to the big elephant,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the alligator is watch/ing.,and the alligator is watching,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the big elephant is try/ing to get it.,the big elephant is trying to get it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,(and) but he can not.,but he can not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,so : they are mad.,so they are mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the big elephant is : mad[-:] also because he can not reach it.,the big elephant is mad also because he can not reach it,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and : the alligator is : cry/ing.,and the alligator is crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and : the elephant is : sad.,and the elephant is sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,(the ele) (the ele um) the : little elephant is : take/ing a rod to : pull it in.,the little elephant is taking a rod to pull it in,0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and : the alligator : and the (two : um) : two : elephant/s are : watch/ing with the alligator.,and the alligator and the two elephants are watching with the alligator,0 0 0 0 0 0 1 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,she pull/ed it in.,she pulled it in,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the alligator was happy with the other/s.,and the alligator was happy with the others,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and when she gaved|give[EW:gave] it back to the alligator (sh) the alligator was happy.,and when she gaved it back to the alligator the alligator was happy,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the alligator : and the : elephant live/ed happily ever after.,and the alligator and the elephant lived happily ever after,0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,there is[-:] the bunny and a dog make/ing a castle.,there is the bunny and a dog making a castle,0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,there is : the dog and bunny : (make/ing) (make/ing) : make/ing it bigger.,there is the dog and bunny making it bigger,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,there is the bunny and : the dog (um) : dump/ing sand on it.,there is the bunny and the dog dumping sand on it,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the bunny is mad because the dog broke the castle.,the bunny is mad because the dog broke the castle,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the dog is try/ing to help build it.,the dog is trying to help build it,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,there is : the dog and bunny go/ing on a (picnit) picnic.,there is the dog and bunny going on a picnic,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the bunny is eat/ing a sandwich and carrot.,the bunny is eating a sandwich and carrot,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the dog (s) : has[-:] a sandwich.,and the dog has a sandwich,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the dog is eat/ing a sandwich and have/ing some juice.,the dog is eating a sandwich and having some juice,0 0 0 6 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and[-:] the bunny is lay/ing down.,and the bunny is laying down,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the bunny : (i) has a tummyache.,the bunny has a tummyache,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the dog is look/ing at him.,and the dog is looking at him,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,(the) : (the) the dog is run/ing after the bunny.,the dog is running after the bunny,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the dog got the bunny.,the dog got the bunny,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the dog gots[EW:has] [-:] a tummyache.,the dog gots a tummyache,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the dog and bunny : is[EW:are] walk/ing.,and the dog and bunny is walking,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,(um the) the dog is pull/ing : (um) : a wagon with a balloon.,the dog is pulling a wagon with a balloon,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the bunny is walk/ing : towards him.,and the bunny is walking towards him,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,(the) : (the dog : and the ra) the rabbit is : try/ing to get the balloon.,the rabbit is trying to get the balloon,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the dog is look/ing.,and the dog is looking,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the bunny untie/ed : the balloon.,the bunny untied the balloon,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and : the dog is happy.,and the dog is happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the balloon went up in the air.,the balloon went up in the air,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,(and the dog is) : and the dog is not happy.,and the dog is not happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the bunny is try/ing to get it.,and the bunny is trying to get it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the dog is angry and left with his : (um) wagon.,the dog is angry and left with his wagon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the (bunny is) : bunny is sad.,and the bunny is sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,(the) (some) (a guy i) a bunny is sell/ing balloon/s.,a bunny is selling balloons,0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the dog and : the bunny are go/ing towards him.,and the dog and the bunny are going towards him,0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the[-:] bunny is buy/ing : some balloon/s.,the bunny is buying some balloons,0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the dog is wait/ing.,and the dog is waiting,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,(the bunny : is) : the big bunny is say/ing : it cost five cent/s.,the big bunny is saying it cost five cents,0 0 0 0 6 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and : the : bunny (s) : do/3s not have any money.,and the bunny does not have any money,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and[-:] the : dog is come/ing.,and the dog is coming,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,(the bunny) : the dog and bunny are not happy.,the dog and bunny are not happy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the : big bunny is : hold/ing the balloon/s.,and the big bunny is holding the balloons,0 0 0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the puppy and (big um) : big (uh) : guy is : hold/ing the balloon/s.,the puppy and big guy is holding the balloons,0 0 0 0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,one balloon is going up in the air.,one balloon is going up in the air,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the bunny is walk/ing toward/3s a grownup.,and the bunny is walking towards a grownup,0 0 0 0 6 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the : bunny is tell/ing the grownup look over there.,the bunny is telling the grownup look over there,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the dog and : the (b) other bunny is : wait/ing.,and the dog and the other bunny is waiting,0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,(the : big) the : dog and bunny are happy because they got two balloon/s.,the dog and bunny are happy because they got two balloons,0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and : the grownup is pay/ing.,and the grownup is paying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the grownup (s) : is mad because they just : want/ed him to buy a balloon.,the grownup is mad because they just wanted him to buy a balloon,0 0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,once : there was an : elephant : play/ing with a ball.,once there was an elephant playing with a ball,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,the ball fell into the pool.,the ball fell into the pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,horse (went and) went and get|get[EW:got] it : for : elephant.,horse went and get it for elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,she said thank you.,she said thank you,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,my hero.,my hero,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,once there was an elephant who want/ed to go swim/ing.,once there was an elephant who wanted to go swimming,0 0 0 0 0 0 4 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,and she : said I was go/ing to [~_gonna] go to the diving board.,and she said I was going to go to the diving board,0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,she was run/ing.,she was running,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,and she slip/ed.,and she slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,and she : had an owee[-:].,and she had an owee,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,the coach came : and gave her a[-:] : bandaid.,the coach came and gave her a bandaid,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,so[-:] he put it on.,so he put it on,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,and she was scare/ed it was go/ing to [~_gonna] be hurt/ing a lot.,and she was scared it was going to be hurting a lot,0 0 0 4 0 0 6 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,see : it does not hurt.,see it does not hurt,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,can not you see the sign no run/ing.,can not you see the sign no running,0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,once there was a[-:] : (um) : a giraffe play/ing with : his plane.,once there was a a giraffe playing with his plane,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,there was an elephant.,there was an elephant,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,can I see your plane?,can I see your plane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,he said okay hold on.,he said okay hold on,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,(I) I want to : test flied|fly[EW:fly] it.,I want to test flied it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,she just snatch/ed[!] it away.,she just snatched it away,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,(it fl) it went into the pool.,it went into the pool,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,giraffe was very angry[!] with her.,giraffe was very angry with her,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,coach (came) : came : and see|see[EW:saw] : what happen/ed.,coach came and see what happened,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,(he) : he said : (uh) : giraffe was play/ing with (her boat) (um) : his[-:] plane.,he said giraffe was playing with his plane,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,and : I snatch/ed it.,and I snatched it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,and then it flew into the : pool.,and then it flew into the pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,coach try/ed to get it.,coach tried to get it,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,but he was too short.,but he was too short,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,he could not (g) get it.,he could not get it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,giraffe start/ed to cry.,giraffe started to cry,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,[~_sighs] there was a girl : who got a fish/ing net.,there was a girl who got a fishing net,0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,and : she took it out.,and she took it out,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,she got the plane : and then give|give[EW:gave] it to giraffe.,she got the plane and then give it to giraffe,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,and : (h) he : hug/ed the plane.,and he hugged the plane,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,one time there was : a dog and a rabbit : play/ing together.,one time there was a dog and a rabbit playing together,0 0 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,they were build/ing a sandcastle.,they were building a sandcastle,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,and the rabbit : put sand : on the castle.,and the rabbit put sand on the castle,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,and : turn the page [+_bch].,and turn the page,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,and then it broke.,and then it broke,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,and then the dog try/ed to : fix it.,and then the dog tried to fix it,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,and the : bunny was just : (s) (s) stand/ing.,and the bunny was just standing,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,one time there was : a dog and a bunny.,one time there was a dog and a bunny,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,they were have/ing a picnic.,they were having a picnic,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,the bunny ate all[-:] the food.,the bunny ate all the food,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,and (he) : (he) he got full.,and he got full,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,he got a stomachache : by eat/ing all the food.,he got a stomachache by eating all the food,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,he feeled|feel[EW:felt] dizzy[!].,he feeled dizzy,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,and the dog : call/ed : (a den) a doctor.,and the dog called a doctor,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,and the doctor : came!,and the doctor came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,the dog was pull/ing : (her) : the shirt of the doctor/z [EU].,the dog was pulling the shirt of the doctor's,0 0 0 6 0 0 0 0 2 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,the doctor say/3s : go look if : there is something.,the doctor says go look if there is something,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,get me that : (um) stick.,get me that stick,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,he was all better.,he was all better,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,one time : a bunny said hi dog.,one time a bunny said hi dog,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,and : dog had a wagon : and (a) : a balloon attach/ed to it.,and dog had a wagon and a balloon attached to it,0 0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,hey : do you have a balloon : (s) said rabbit?,hey do you have a balloon said rabbit,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,yes.,yes,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,rabbit (uh) want/ed to took[EW:take] it off : by : (um) : tie/ing : off the knot.,rabbit wanted to took it off by tying off the knot,0 4 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,it flew up and up and up.,it flew up and up and up,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,dog got : very very angry[!].,dog got very very angry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,and rabbit saw more balloon/s.,and rabbit saw more balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,and : rabbit want/ed to buy her one.,and rabbit wanted to buy her one,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,he said can I have one of those balloon/s?,he said can I have one of those balloons,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,five dollar/s please.,five dollars please,0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,he did not have : money.,he did not have money,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,so : (he is) : the balloon keeper said to go find money.,so the balloon keeper said to go find money,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,(and go : buy um) : then you can buy a balloon.,then you can buy a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,(he) : rabbit : came to a doctor.,rabbit came to a doctor,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,and he said : I want a balloon.,and he said I want a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,I need five dollar/s.,I need five dollars,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,so : the doctor gave the : balloon keeper some money[!].,so the doctor gave the balloon keeper some money,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,and then they both[!] got balloon/s.,and then they both got balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,It is a[EW:an] elephant play/ing ball.,It is a elephant playing ball,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,: she threw the ball in the water.,she threw the ball in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,: the giraffe : try/3s to get it.,the giraffe tries to get it,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the giraffe got the ball for the elephant.,the giraffe got the ball for the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,(the) the elephant say/3s thank you.,the elephant says thank you,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,They are look/ing at the water.,They are looking at the water,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the elephant want/3s to go in.,the elephant wants to go in,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,she walk/3s away.,she walks away,0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,and the giraffe follow/3s her.,and the giraffe follows her,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,she was run/ing.,she was running,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,and she slip/ed on her knee.,and she slipped on her knee,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,she got hurt.,she got hurt,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,another elephant came and put a bandaid on her.,another elephant came and put a bandaid on her,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,and then the elephant said do not run any more.,and then the elephant said do not run any more,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,you should not run.,you should not run,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,or else you will slip and fall and hurt your knee again.,or else you will slip and fall and hurt your knee again,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,(They) : the giraffe brought a helicopter to the pool.,the giraffe brought a helicopter to the pool,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,he want/3s to fly it.,he wants to fly it,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the elephant take/3s it away from the giraffe.,the elephant takes it away from the giraffe,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the elephant drop/3s it in the water.,the elephant drops it in the water,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the giraffe get/3s mad at the elephant.,the giraffe gets mad at the elephant,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the lifeguard come/3s.,the lifeguard comes,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the elephant say/3s I accidentally drop/ed the : plane in the water.,the elephant says I accidentally dropped the plane in the water,0 0 3 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the lifeguard try/3s to get it.,the lifeguard tries to get it,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,but he can not reach.,but he can not reach,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the giraffe start/3s to cry.,the giraffe starts to cry,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,another girl elephant come/3s.,another girl elephant comes,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,and she has a net.,and she has a net,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,she will try to catch the plane.,she will try to catch the plane,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,she got the plane.,she got the plane,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,she gave it to the giraffe.,she gave it to the giraffe,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the giraffe said thank you.,the giraffe said thank you,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,and : then the giraffe said (do not throw it) do not throw it in the water again.,and then the giraffe said do not throw it in the water again,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,and do not grab it from me again.,and do not grab it from me again,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,a dog is play/ing in a sandbox.,a dog is playing in a sandbox,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,a rabbit come/3s.,a rabbit comes,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the rabbit want/3s to help.,the rabbit wants to help,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the rabbit throw/3s sand in the castle.,the rabbit throws sand in the castle,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the rabbit say/3s uhoh.,the rabbit says uhoh,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,and then the dog start/3s to cry.,and then the dog starts to cry,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,The rabbit come/3s walk/ing with a picnic basket.,The rabbit comes walking with a picnic basket,0 0 3 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,and the dog : (s) saw him and said hi.,and the dog saw him and said hi,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,they have[EW:had] : a picnic together.,they have a picnic together,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the rabbit is fat.,the rabbit is fat,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,and the dog is : not fat [~_laughs].,and the dog is not fat,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the rabbit start/3s to get a stomachache.,the rabbit starts to get a stomachache,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the dog run/3s to (a rabbit) another rabbit : and say/3s : my friend rabbit (is) has a big stomachache [~_pronounced_'stomyache'].,the dog runs to another rabbit and says my friend rabbit has a big stomachache,0 0 3 0 0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,so she pull/3s (the rabb) the girl rabbit : and say/3s come.,so she pulls the girl rabbit and says come,0 0 3 0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,(the rabbit) : the girl rabbit said (the boy) the little boy rabbit ate too much.,the girl rabbit said the little boy rabbit ate too much,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,after she help/ed it the rabbit felt all better.,after she helped it the rabbit felt all better,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,The dog is : pull/ing a wagon with a balloon on it.,The dog is pulling a wagon with a balloon on it,0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the rabbit come/3s run/ing.,the rabbit comes running,0 0 3 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the rabbit say/3s that is a nice balloon.,the rabbit says that is a nice balloon,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the rabbit take/3s it off.,the rabbit takes it off,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,and the dog say/3s do not!,and the dog says do not,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the balloon fly/3s up into the air.,the balloon flies up into the air,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the dog get/3s really mad at the rabbit.,the dog gets really mad at the rabbit,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,a big bunny come/3s.,a big bunny comes,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,and : the rabbit see/3s him.,and the rabbit sees him,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,and the little bunny say/3s : can I have a balloon?,and the little bunny says can I have a balloon,0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the man said : sorry.,the man said sorry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,but the balloon/s cost five cent/s.,but the balloons cost five cents,0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,and then the dog come/3s.,and then the dog comes,0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,then (a lady) a lady : bunny : is stand/ing near them.,then a lady bunny is standing near them,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the rabbit say/3s there is[EW:are] balloon/s.,the rabbit says there is balloons,0 0 3 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,they cost five cent/s.,they cost five cents,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,could you buy one?,could you buy one,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the lady bought two of them.,the lady bought two of them,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,they both had two balloon/s.,they both had two balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,One day a : guy was bounce/ing : a bouncy ball : with his friend.,One day a guy was bouncing a bouncy ball with his friend,0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,they were by[-:] a pool.,they were by a pool,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,and it fell in the pool.,and it fell in the pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,one guy went to swim for it.,one guy went to swim for it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,he got the ball.,he got the ball,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,and they were very happy.,and they were very happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,(um : then : ah :) then : she[-:] : let her friend try her[?].,then she let her friend try her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,One[-:] day two friend/s went swim/ing.,One day two friends went swimming,0 0 0 1 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,they jump/ed in the pool.,they jumped in the pool,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,but before they jump/ed (they slip/ed) one slip/ed : and hurt her knee.,but before they jumped one slipped and hurt her knee,0 0 0 4 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,the other friend went got a lifeguard.,the other friend went got a lifeguard,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,and the lifeguard came and help/ed.,and the lifeguard came and helped,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,the lifeguard put a bandaid on it.,the lifeguard put a bandaid on it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,and (she) (she) : she was better.,and she was better,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,then the lifeguard said (no) : no run/ing.,then the lifeguard said no running,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,One day a friend had[-:] his[-:] remote control airplane.,One day a friend had his remote control airplane,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,he turn/ed it on.,he turned it on,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,(and it) : and it went : all over the place.,and it went all over the place,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,his friend caught it.,his friend caught it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,and then it slip/ed and fell in the pool.,and then it slipped and fell in the pool,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,the guy was very mad : because it was new.,the guy was very mad because it was new,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,the (l) : lifeguard (um) got mad kind of too.,the lifeguard got mad kind of too,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,she told the story.,she told the story,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,"and then[-:] (he) : he[-:] (ah) [~_sighs,_says_oops] thought it was okay.",and then he thought it was okay,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,he : try/ed to grab the : airplane out of the water.,he tried to grab the airplane out of the water,0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,they could not get it.,they could not get it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,: a lady had a net.,a lady had a net,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,and she was go/ing to : get it with the net.,and she was going to get it with the net,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,she got it.,she got it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,she gave the (ai) : remote control airplane to : the owner.,she gave the remote control airplane to the owner,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,the owner was happy that : he had his airplane back.,the owner was happy that he had his airplane back,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,(um) one[-:] day two friend/s (went : and) : (w) went to play in their sandbox.,one day two friends went to play in their sandbox,0 0 0 1 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,they built a sandcastle.,they built a sandcastle,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,(um : the um : th) they pour/ed sand on it.,they poured sand on it,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,it fell down.,it fell down,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,and[-:] : they were sad.,and they were sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,(they try/ed) one of them try/ed to build another : sandcastle.,one of them tried to build another sandcastle,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,one day two friend/s : went on a picnic.,one day two friends went on a picnic,0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,they had : lot/s of yummy : food/s.,they had lots of yummy foods,0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,when they were finish/ed they were (s) really full.,when they were finished they were really full,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,and[-:] : they could not eat any more.,and they could not eat any more,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,(and then : he f) (the) they were too full.,they were too full,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,they fell down.,they fell down,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,and then[-:] they found a doctor.,and then they found a doctor,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,they ask/ed the doctor to help.,they asked the doctor to help,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,the doctor help/ed : them : get better.,the doctor helped them get better,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,and they were all better [+_bch].,and they were all better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,one day : (um) : a guy[-:] was walk/ing.,one day a guy was walking,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,and he saw his friend.,and he saw his friend,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,(he) he had a balloon.,he had a balloon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,so (he sh) he show/ed it to his friend.,so he showed it to his friend,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,his friend like/ed it.,his friend liked it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,and then he untie/ed it.,and then he untied it,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,and it flew : away.,and it flew away,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,(they) (he) the : guy who had the balloon was mad : because his balloon flew away.,the guy who had the balloon was mad because his balloon flew away,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,but then he saw : a[-:] person sell/ing balloon/s.,but then he saw a person selling balloons,0 0 0 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,he ask/ed if he could (had) have a balloon.,he asked if he could have a balloon,0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,he paid (the doll) : the money and took the balloon.,he paid the money and took the balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,: (hm : um) : it flew away.,it flew away,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,so : they had to go back.,so they had to go back,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,they got another balloon and : saw[-:] another person.,they got another balloon and saw another person,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,: (uh) : they[-:] : show/ed the person the balloon/s.,they showed the person the balloons,0 4 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,she bought a balloon too.,she bought a balloon too,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,and she bought them for those people.,and she bought them for those people,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,and : they were happy.,and they were happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,(uh) an elephant has a bathing suit on.,an elephant has a bathing suit on,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and : she is bounce/ing a ball.,and she is bouncing a ball,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and there is a giraffe too.,and there is a giraffe too,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,: and[-:] (uh) the elephant/z : ball fall/3s in the : pool.,and the elephant's ball falls in the pool,0 0 2 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and they (uh) have (like) a (like) go/ing like : thing [~_child_opens_mouth] [EU].,and they have a going like thing,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,"like open/ing their mouth, [~_CHI:_yeah] oh.",like opening their mouth oh,0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and (uh) the giraffe is swim/ing to get the ball.,and the giraffe is swimming to get the ball,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and he get/3s it for (um) the elephant in the bathing suit.,and he gets it for the elephant in the bathing suit,0 0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and (uh) she is happy.,and she is happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,(um) it is the elephant and the giraffe again.,it is the elephant and the giraffe again,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and they are stand/ing by the pool.,and they are standing by the pool,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,(uh) and it say/3s (no[-:]) no run/ing.,and it says no running,0 0 3 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,: but (uh she) (she) she was run/ing.,but she was running,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,: then she slip/ed.,then she slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and she get/3s away with it.,and she gets away with it,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and then the giraffe is run/ing after her.,and then the giraffe is running after her,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and then she got (hu) a hurt on her knee.,and then she got a hurt on her knee,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and the giraffe keep/3s on run/ing : to see her.,and the giraffe keeps on running to see her,0 0 0 3 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,"and a lifeguard come/3s, an elephant one [~_an_elephant_lifeguard].",and a lifeguard comes an elephant one,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and on it/z teeshirt it say/3s lifeguard.,and on it's teeshirt it says lifeguard,0 0 2 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and he put/3s a bandage on it.,and he puts a bandage on it,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,: and they carry her to a bench.,and they carry her to a bench,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,: and the lifeguard is show/ing her the sign that says no run/ing.,and the lifeguard is showing her the sign that says no running,0 0 0 0 6 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,the[-:] elephant is talk/ing to[-:] the giraffe friend.,the elephant is talking to the giraffe friend,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and : he has a[EW:an] airplane.,and he has a airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and I think that the elephant want/3s to play with it.,and I think that the elephant wants to play with it,0 0 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,(um : the gir) the giraffe is make/ing (it uh) (his thing uh) his airplane fly around.,the giraffe is making his airplane fly around,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,: and (uh) the elephant girl just grab/3s it.,and the elephant girl just grabs it,0 0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,: and she drop/3s it in the water.,and she drops it in the water,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and[-:] the giraffe is mad : and angry.,and the giraffe is mad and angry,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,the lifeguard come/3s in the other story.,the lifeguard comes in the other story,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,he try/3s to catches[EW:catch] it.,he tries to catches it,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,but he can not : (um) because it is too far away.,but he can not because it is too far away,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,: and the giraffe is cry/ing.,and the giraffe is crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and then (ca) here come/3s another lifeguard : except she is a girl with hair.,and then here comes another lifeguard except she is a girl with hair,0 0 0 3 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,: and she use/3s her net to get it.,and she uses her net to get it,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and she give/3s it to the giraffe.,and she gives it to the giraffe,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and he is happy.,and he is happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,: and the girl elephant is happy too.,and the girl elephant is happy too,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,(um there is) I think it is a dog and a rabbit.,I think it is a dog and a rabbit,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and the dog is build/ing a sandcastle.,and the dog is building a sandcastle,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and[-:] the rabbit is go/ing to help her.,and the rabbit is going to help her,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,(he) : (he um) his bucket is full of sand.,his bucket is full of sand,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and he throw/3s it on top.,and he throws it on top,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and : the dog look/3s worry/ed.,and the dog looks worried,0 0 0 3 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and it break/3s.,and it breaks,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and[-:] she is cry/ing.,and she is crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and she is try/ing to build it again.,and she is trying to build it again,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,(um) the dog and the rabbit are go/ing for a picnic.,the dog and the rabbit are going for a picnic,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and the rabbit eat/s too much food.,and the rabbit eats too much food,0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,he has a tummyache.,he has a tummyache,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,: (uh) he do/3s not feel really good.,he does not feel really good,0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,(uh) the dog is go/ing to : get the doctor that is walk/ing on the road.,the dog is going to get the doctor that is walking on the road,0 0 0 6 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and she is a rabbit.,and she is a rabbit,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and she (um) quickly pull/3s her : over to the other rabbit.,and she quickly pulls her over to the other rabbit,0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and she check/3s him.,and she checks him,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and then I think (uh) she is go/ing to [~_gonna] take him to the hospital.,and then I think she is going to take him to the hospital,0 0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,(um the girl) the dog : she (s um) has a wagon.,the dog she has a wagon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and there is a balloon tie/ed to it.,and there is a balloon tied to it,0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and (the bu) the bunny come/3s along.,and the bunny comes along,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,he want/3s to hold the balloon.,he wants to hold the balloon,0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and[-:] : he take/3s it off.,and he takes it off,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and it fly/3s[-:] away.,and it flies away,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and the dog is really mad.,and the dog is really mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,(um he is) the rabbit see/3s a (um) rabbit with balloon/s for sale.,the rabbit sees a rabbit with balloons for sale,0 0 3 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,(but they are) he ask/s for some.,he asks for some,0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,but they are (five[-:] ) : five cent/s each.,but they are five cents each,0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and he do/3s not have any money.,and he does not have any money,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,he run/3s to see the doctor that help/ed him before.,he runs to see the doctor that helped him before,0 3 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,she pay/3s.,she pays,0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and (they ge) (she pay/3s sh um) the rabbit (uh) ask/3s her.,and the rabbit asks her,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and she pay/3s for one each.,and she pays for one each,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and[-:] the kid/3s are really happy.,and the kids are really happy,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and so is the doctor.,and so is the doctor,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,once upon a time there was a[EW:an] elephant and a giraffe.,once upon a time there was a elephant and a giraffe,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,they were bounce/ing ball/s.,they were bouncing balls,0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,the ball got in the mud.,the ball got in the mud,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,a[?] horse swam in the mud to get it.,a horse swam in the mud to get it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,thank you cry/ed the elephant.,thank you cried the elephant,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,I love you.,I love you,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,once upon a time they saw a diving_board.,once upon a time they saw a diving board,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,they decid/ed if they want/ed to go on.,they decided if they wanted to go on,0 4 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,lookit there is a diving_board.,lookit there is a diving board,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,ooh and she almost fell in.,ooh and she almost fell in,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,ouch she stub/ed her knee.,ouch she stubbed her knee,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,(the) (the) the teacher that own/ed that place came to help.,the teacher that owned that place came to help,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,owie owie.,owie owie,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,are you okay?,are you okay,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,let me help.,let me help,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,and (you are) I am angry at you.,and I am angry at you,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,once upon a time there was a[EW:an] elephant and a giraffe.,once upon a time there was a elephant and a giraffe,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,you want to [~_wanna] go swim cry/ed the giraffe?,you want to go swim cried the giraffe,0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,lookit I got a[EW:an] airplane.,lookit I got a airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,[~_high_pitched_voice] oh no the airplane is going blast off!,oh no the airplane is going blast off,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,oh no it got wreck/ed.,oh no it got wrecked,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,[~_growl_sound].,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,[~_deep_voice] what did I tell you?,what did I tell you,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,[~_high_pitched_voice] but it was not my : do[?] [EU].,but it was not my do,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,[~_high_pitched_voice] it just flew off by itself.,it just flew off by itself,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,[~_sound_effects] he is try/ing to get it.,he is trying to get it,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,[~_high_pitched_voice] it is sink/ing!,it is sinking,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,[~_high_pitched_voice] it is sink/ing!,it is sinking,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,[~_crying_sounds] well I can go get it.,well I can go get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,(that is him mama) that is his mama.,that is his mama,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,do some kid/s (leave) (left) leave their sticker/s [+_bch]?,do some kids leave their stickers,0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,no they all take them.,no they all take them,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,I got it.,I got it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,[~_high_pitched_voice] thank you.,thank you,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,you are welcome.,you are welcome,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,[~_high_pitched_voice] (hm) I love you.,I love you,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,that is the end [+_bch].,that is the end,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,once upon a time there was a dog and a rabbit.,once upon a time there was a dog and a rabbit,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,they were play/ing in the sand.,they were playing in the sand,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,maybe you can speak up a little louder.,maybe you can speak up a little louder,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,they put sand (in the) into : a bucket.,they put sand into a bucket,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,and they made (a sa) a sandcastle.,and they made a sandcastle,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,they put the window on and the flag on.,they put the window on and the flag on,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,the castle got wreck/ed.,the castle got wrecked,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,the dog had to fix it.,the dog had to fix it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,but it was too late.,but it was too late,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,(it did not) it did not get fix/ed.,it did not get fixed,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,that is the end [+_bch].,that is the end,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,once[EW:one] time : there was : a puppy and a rabbit.,once time there was a puppy and a rabbit,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,they were go/ing for a picnic.,they were going for a picnic,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,they met each other.,they met each other,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,he had : ice cream/s bread : sandwich/s : and all that kind of stuff.,he had ice creams bread sandwiches and all that kind of stuff,0 0 0 1 0 1 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,(he) rabbit ate too much.,rabbit ate too much,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,he was get/ing a stomachache.,he was getting a stomachache,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,but the dog was not.,but the dog was not,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,he did not eat so much.,he did not eat so much,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,the rabbit got bonk/ed on the head with : a ball.,the rabbit got bonked on the head with a ball,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,(he) the rabbit pretend/ed (he was : a) he was a girl.,the rabbit pretended he was a girl,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,come on rabbit shout/ed the dog.,come on rabbit shouted the dog,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,(I should) I should fix you up rabbit.,I should fix you up rabbit,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,let us go home now.,let us go home now,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,and that is the end [+_bch].,and that is the end,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,this one/z the rabbit and the dog too [+_bch]?,this one's the rabbit and the dog too,0 2 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,umhm.,umhm,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,one time there was a rabbit : and a dog.,one time there was a rabbit and a dog,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,the dog was (p) carry/ing his wagon.,the dog was carrying his wagon,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,he met the rabbit : come/ing along.,he met the rabbit coming along,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,lookit there is a balloon!,lookit there is a balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,do not tie it off [EU]!,do not tie it off,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,and it flew away.,and it flew away,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,the dog was get/ing mad.,the dog was getting mad,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,the balloon man he had lot/s of balloon/s.,the balloon man he had lots of balloons,0 0 0 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,so he decide/ed to give him another one.,so he decided to give him another one,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,I would like a blue one.,I would like a blue one,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,[~_deep_voice] do you have any money?,do you have any money,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,[~_high_voice] no I do not.,no I do not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,[~_deep_voice] you are naughty.,you are naughty,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,(they) [~_high_voice] goodbye.,goodbye,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,(hm) [~_high_voice] mama mama do you have any money?,mama mama do you have any money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,[~_high_voice] I want (a new) another balloon : from that balloon man.,I want another balloon from that balloon man,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,[~_deep_voice] do you think so[?]?,do you think so,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,[~_high_voice] yes.,yes,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,: and they both got one.,and they both got one,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,there is a giraffe and a[EW:an] elephant.,there is a giraffe and a elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,the giraffe jump/3s into the water.,the giraffe jumps into the water,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,and he try/3s to get the ball.,and he tries to get the ball,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,then : the : giraffe swim/3s over to the elephant.,then the giraffe swims over to the elephant,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,and the elephant : give/3s the giraffe another ball.,and the elephant gives the giraffe another ball,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,then[!] : the elephant get/3s her own ball.,then the elephant gets her own ball,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,there is the giraffe and the elephant.,there is the giraffe and the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,the elephant point/3s to the dive/ing board.,the elephant points to the diving board,0 0 3 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,the elephant run/3s to it.,the elephant runs to it,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,the elephant hurt her knee.,the elephant hurt her knee,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,another elephant come/3s along.,another elephant comes along,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,the lifeguard put/3s a bandaid on the elephant.,the lifeguard puts a bandaid on the elephant,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,and then the elephant look/3s at it.,and then the elephant looks at it,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,and then the lifeguard say/3s do not run.,and then the lifeguard says do not run,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,the giraffe has a[EW:an] : airplane.,the giraffe has a airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,the elephant look/3s at it.,the elephant looks at it,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,and then the elephant fly/3s it.,and then the elephant flies it,0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,then : she drop/3s it in the pool.,then she drops it in the pool,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,then : she says uhoh.,then she says uhoh,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,and the giraffe is very mad.,and the giraffe is very mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,the lifeguard say/3s : uhoh.,the lifeguard says uhoh,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,the elephant say/3s : could you get it out?,the elephant says could you get it out,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,the lifeguard try/3s to reach it.,the lifeguard tries to reach it,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,: but he could not.,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,: then : the giraffe is very sad.,then the giraffe is very sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,and then another elephant come/3s along : with a net.,and then another elephant comes along with a net,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,then she get/3s it.,then she gets it,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,then she give/3s it to the giraffe.,then she gives it to the giraffe,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,and the giraffe stop/ed cry/ing.,and the giraffe stopped crying,0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,then (the) the giraffe hug/3s it : because he miss/ed it if it was in the water all the time [EU].,then the giraffe hugs it because he missed it if it was in the water all the time,0 0 0 3 0 0 0 4 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,there is a rabbit look/ing at a dog.,there is a rabbit looking at a dog,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,there is a dog : build/ing a sandcastle.,there is a dog building a sandcastle,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,a rabbit is pour/ing the sand onto the sandcastle.,a rabbit is pouring the sand onto the sandcastle,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,and it fall/3s down into a big pile.,and it falls down into a big pile,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,the dog is very sad.,the dog is very sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,there is a dog that see/3s a rabbit.,there is a dog that sees a rabbit,0 0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,the dog : share/3s his : lunch with the rabbit.,the dog shares his lunch with the rabbit,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,they have a delightful picnic.,they have a delightful picnic,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,then the rabbit is very full.,then the rabbit is very full,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,: the dog : call/3s the doctor.,the dog calls the doctor,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,and then the doctor : (um) come/3s to the rabbit.,and then the doctor comes to the rabbit,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,and then : the dog pull/3s the doctor really close to the picnic basket.,and then the dog pulls the doctor really close to the picnic basket,0 0 0 0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,and she : look/3s at him.,and she looks at him,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,and she say/3s : you ate too much food.,and she says you ate too much food,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,then : he is all better again.,then he is all better again,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,the dog has a balloon (on) on it/z wagon.,the dog has a balloon on it's wagon,0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,the rabbit : grab/3s it.,the rabbit grabs it,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,then the rabbit untie/3s it.,then the rabbit unties it,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,then the rabbit (let/3s uh) let/3s go of it.,then the rabbit lets go of it,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,then the dog is very mad.,then the dog is very mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,then a : rabbit with a moustache come/3s along.,then a rabbit with a moustache comes along,0 0 0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,then : he give/3s the rabbit a very new balloon.,then he gives the rabbit a very new balloon,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,then he take/3s it : and put/3s it in the rabbit/z hand.,then he takes it and puts it in the rabbit's hand,0 0 3 0 0 3 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,and then : the : (um) dog is very happy.,and then the dog is very happy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,: then there is a doctor.,then there is a doctor,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,(um) the rabbit say/3s could you get a balloon?,the rabbit says could you get a balloon,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,then she get/3s one.,then she gets one,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,then : she give/3s it to the rabbit : and then another one to the dog.,then she gives it to the rabbit and then another one to the dog,0 0 3 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,it look/3s like (um) the elephant want/3s a ball.,it looks like the elephant wants a ball,0 3 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,they got a ball.,they got a ball,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,but they got it in the mud.,but they got it in the mud,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,then the giraffe got in the mud.,then the giraffe got in the mud,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,and now (the : um) they got the ball.,and now they got the ball,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,and now the giraffe got out of the mud.,and now the giraffe got out of the mud,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,(um) they see (um) a pool.,they see a pool,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,they see a pool with a little : place where you jump off : into the pool.,they see a pool with a little place where you jump off into the pool,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,she is run/ing.,she is running,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,then she skin/ed her knee.,then she skinned her knee,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,then : (um) somebody came : and put a bandaid on it : and sitted|sit[EW:sat] on the bench with her.,then somebody came and put a bandaid on it and sitted on the bench with her,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,and then she feeled|feel[EW:felt] a little[!] bit better.,and then she feeled a little bit better,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,it looks like they have a little airplane.,it looks like they have a little airplane,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,and the elephant is happy.,and the elephant is happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,(um) the giraffe : have|have[EW:has] it in his hand/s.,the giraffe have it in his hands,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,then the elephant took it from him.,then the elephant took it from him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,she had it.,she had it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,but then she drop/ed it in the water.,but then she dropped it in the water,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,then (he) they can not reach it.,then they can not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,so they are call/ing in their friend.,so they are calling in their friend,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,their friend can not reach it either.,their friend can not reach it either,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,so they are a little bit disappoint/ed.,so they are a little bit disappointed,0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,so (their fri) the lifeguard can not reach it.,so the lifeguard can not reach it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,and (they jus) it is a little bit sink/ing.,and it is a little bit sinking,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,and the lifeguard can not reach it.,and the lifeguard can not reach it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,all of them can not reach it.,all of them can not reach it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,so then (the girl) the elephant got (um) : a net.,so then the elephant got a net,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,then she : was try/ing to get it.,then she was trying to get it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,then she got it out of the water.,then she got it out of the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,and then the (um) giraffe was happy.,and then the giraffe was happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,it look/3s like they are make/ing a castle in the sandbox.,it looks like they are making a castle in the sandbox,0 3 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,now : the bunny is get/ing a scoop of sand and the : shovel : and is pour/ing it so the castle will break.,now the bunny is getting a scoop of sand and the shovel and is pouring it so the castle will break,0 0 0 0 6 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,and the (um) bunny was a little bit angry.,and the bunny was a little bit angry,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,so then they start/ed to build it up.,so then they started to build it up,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,and : they : did not : do it up well.,and they did not do it up well,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,look/3s like they are walk/ing : to find a good spot for their picnic.,looks like they are walking to find a good spot for their picnic,3 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,now they are eat/ing their picnic.,now they are eating their picnic,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,then the bunny is a little bit too full.,then the bunny is a little bit too full,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,and he feel/3s a little bit sick.,and he feels a little bit sick,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,he got the doctor.,he got the doctor,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,he is pull/ing his coat.,he is pulling his coat,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,now : the : (um) doctor is give/ing him some medicine.,now the doctor is giving him some medicine,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,and now he feel/3s better.,and now he feels better,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,look/3s like they are pull/ing a wagon with a balloon.,looks like they are pulling a wagon with a balloon,3 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,now the bunny is a little bit happy.,now the bunny is a little bit happy,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,now the dog is not that happy.,now the dog is not that happy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,the balloon came off.,the balloon came off,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,now the dog has : a bow on his tail.,now the dog has a bow on his tail,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,now (the person) there is a person with a hat that has some balloon/s.,now there is a person with a hat that has some balloons,0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,(and) : and the bunny is say/ing can we please have a balloon?,and the bunny is saying can we please have a balloon,0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,and : say/3s no.,and says no,0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,and they are a little bit angry.,and they are a little bit angry,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,and they got the doctor.,and they got the doctor,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,(and the doctor) they said (um) doctor he will not let us have any balloon/s.,they said doctor he will not let us have any balloons,0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,so he gave us (oo) some of his money for a balloon.,so he gave us some of his money for a balloon,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,and they got a balloon for their wagon.,and they got a balloon for their wagon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,Once (there) (there w) there was an elephant who was play/ing with a ball.,Once there was an elephant who was playing with a ball,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then the (ba) ball fell : into a pool.,then the ball fell into a pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then the elephant/z : friend (tr) try/ed to catch the ball.,then the elephant's friend tried to catch the ball,0 0 2 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,his friend then got it.,his friend then got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then the elephant : thank/ed : his friend for get/ing his ball.,then the elephant thanked his friend for getting his ball,0 0 0 4 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,Once there was an elephant.,Once there was an elephant,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,(and) (and) and then (he) he was run/ing.,and then he was running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then the elephant accidentally slip/ed.,then the elephant accidentally slipped,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then (he) he start/ed cry/ing because (he) he fell down and bump/ed his knee.,then he started crying because he fell down and bumped his knee,0 0 4 6 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then his friend (try) try/ed (to) to help him.,then his friend tried to help him,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then the lifeguard put a bandaid on.,then the lifeguard put a bandaid on,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then he felt much better.,then he felt much better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then the lifeguard (sa) told him that there is no run/ing allow/ed.,then the lifeguard told him that there is no running allowed,0 0 0 0 0 0 0 0 0 6 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,another elephant story [+_bch].,another elephant story,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,another elephant story ?,another elephant story,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,"okay, go ahead and begin.",okay go ahead and begin,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,Once there was an elephant.,Once there was an elephant,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,the elephant had a (fr) friend that had an airplane that : he like/ed to play with.,the elephant had a friend that had an airplane that he liked to play with,0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then the elephant just : grab/ed the plane : from : his friend/z hand.,then the elephant just grabbed the plane from his friend's hand,0 0 0 0 4 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then the elephant accidentally drop/ed the plane into the water.,then the elephant accidentally dropped the plane into the water,0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,and then his friend got (ve) : very angry at him.,and then his friend got very angry at him,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then the lifeguard : came : and saw that there was : a toy (p) plane (in) in the pool.,then the lifeguard came and saw that there was a toy plane in the pool,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,(then the l) then the little elephant told the lifeguard what he accidentally did.,then the little elephant told the lifeguard what he accidentally did,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then the lifeguard try/ed to get it by (rea) reach/ing (ou) out his hand.,then the lifeguard tried to get it by reaching out his hand,0 0 0 4 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then his friend start/ed cry/ing.,then his friend started crying,0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then another elephant came.,then another elephant came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,(a) : and she had : something (that) : (that) that had a handle that was very long.,and she had something that had a handle that was very long,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,and it had : something : like a hooped[EW:hoop] to get the plane.,and it had something like a hooped to get the plane,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then the elephant got it.,then the elephant got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then his friend : was very happy that : he had his plane.,then his friend was very happy that he had his plane,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then the elephant/z (fr) : friend : start/ed to play (with) (with) with his : plane again.,then the elephant's friend started to play with his plane again,0 0 2 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,once there was a bunny.,once there was a bunny,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,: the bunny was help/ing his friend : make a castle in the sand.,the bunny was helping his friend make a castle in the sand,0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then his friend got very worry/ed (be) because the bunny (ha) had been throw/ing sand on his castle.,then his friend got very worried because the bunny had been throwing sand on his castle,0 0 0 0 0 4 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then his friend was very sad because the bunny had wreck/ed his castle.,then his friend was very sad because the bunny had wrecked his castle,0 0 0 0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then his friend start/ed cry/ing.,then his friend started crying,0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,once there was a bunny.,once there was a bunny,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,(with) and he had a friend.,and he had a friend,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,(the) the bunny had (so) so much food that he was so hungry that he start/ed eat/ing already.,the bunny had so much food that he was so hungry that he started eating already,0 0 0 0 0 0 0 0 0 0 0 0 0 4 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then the bunny was very full.,then the bunny was very full,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then the bunny start/ed (f) feel/ing : (a b) a bit dizzy.,then the bunny started feeling a bit dizzy,0 0 0 4 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,(then) : then his friend (found) saw a doctor.,then his friend saw a doctor,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,and his friend (called the) rush/ed to the doctor : and told the doctor what had happen/ed to the bunny.,and his friend rushed to the doctor and told the doctor what had happened to the bunny,0 0 0 4 0 0 0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,his friend : was pull/ing : the doctor/z : coat : (to try) to try and get him (to) to come and see what had happen/ed to the bunny.,his friend was pulling the doctor's coat to try and get him to come and see what had happened to the bunny,0 0 0 6 0 2 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,and then the doctor found out : what had happen/ed (to) to the bunny.,and then the doctor found out what had happened to the bunny,0 0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then the bunny (fel) felt much better.,then the bunny felt much better,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,once there (wa) was a bunny that had a friend (who was) who was pull/ing a wagon (that) (that) that had a balloon on it.,once there was a bunny that had a friend who was pulling a wagon that had a balloon on it,0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,and the bunny love/ed balloon/s.,and the bunny loved balloons,0 0 0 4 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,so he try/ed to get the balloon.,so he tried to get the balloon,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,(then) then the bunny/z : friend (was very) was very (s) worry/ed about (hi) his balloon.,then the bunny's friend was very worried about his balloon,0 0 2 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,the bunny try/ed to get the balloon because it had slip/ed out of his finger/s (and) and float/ed (in) into the air.,the bunny tried to get the balloon because it had slipped out of his fingers and floated into the air,0 0 4 0 0 0 0 0 0 0 4 0 0 0 1 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then his friend got very angry (a) : at the bunny.,then his friend got very angry at the bunny,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then the bunny saw : a man that had (a) lot/s of balloon/s in his hand.,then the bunny saw a man that had lots of balloons in his hand,0 0 0 0 0 0 0 0 1 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then the bunny told the man which balloon he want/ed.,then the bunny told the man which balloon he wanted,0 0 0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,: (the) the man : said that (ea) each balloon is five cent/s.,the man said that each balloon is five cents,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then the man just standed|stand[EW:stood] there.,then the man just standed there,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,and the bunny/z friend and himself : just look/ed at the balloon/s.,and the bunny's friend and himself just looked at the balloons,0 0 2 0 0 0 0 4 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then the bunny saw a doctor.,then the bunny saw a doctor,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,the bunny said to the (do) doctor that his friend want/ed a balloon (that) that he could not get.,the bunny said to the doctor that his friend wanted a balloon that he could not get,0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then (a) the doctor (pay/3s) paid for (the) the balloon/s.,then the doctor paid for the balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,(then) then both of them each had one balloon.,then both of them each had one balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,Me and my friend were play/ing : ball.,Me and my friend were playing ball,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,[~_laughs] then the ball fell into (the lake or) a swimming pool.,then the ball fell into a swimming pool,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,so I jump/ed in to go and get it.,so I jumped in to go and get it,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and I brang|bring[EW:brought] it back to my friend.,and I brang it back to my friend,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,(hm) (um) : and then she thought I was brave or something [~_laughs].,and then she thought I was brave or something,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,Me and my friend were go/ing to : swim.,Me and my friend were going to swim,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,my friend told me she was go/ing to go on the dive/ing board.,my friend told me she was going to go on the diving board,0 0 0 0 0 0 6 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,but she start/ed run/ing and slip/ed : and hurt her knee.,but she started running and slipped and hurt her knee,0 0 4 6 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,then I went over to see if she was okay.,then I went over to see if she was okay,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and the lifeguard came.,and the lifeguard came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,then the lifeguard put a bandaid on it.,then the lifeguard put a bandaid on it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and then she took a break.,and then she took a break,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and then the lifeguard got mad at her for run/ing.,and then the lifeguard got mad at her for running,0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,Me and my friend were go/ing to play with my new airplane.,Me and my friend were going to play with my new airplane,0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and I was : fly/ing it around and make/ing funny noise/s [~_laughs].,and I was flying it around and making funny noises,0 0 0 6 0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and then she took it away and start/ed play/ing with it.,and then she took it away and started playing with it,0 0 0 0 0 0 0 4 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and then it fell into the pool.,and then it fell into the pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and I got really mad at her.,and I got really mad at her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and the lifeguard came.,and the lifeguard came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,then my friend ask/ed : if the lifeguard could get the plane out.,then my friend asked if the lifeguard could get the plane out,0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,he was try/ing to reach it.,he was trying to reach it,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,but the water was push/ing it away.,but the water was pushing it away,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and the lifeguard said I can not get it.,and the lifeguard said I can not get it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and then : her mom came with a net : and took the airplane out.,and then her mom came with a net and took the airplane out,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and I said a big thank you [~_laughs].,and I said a big thank you,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and I was really really happy [~_laughs].,and I was really really happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,my friend and I were play/ing at the park : make/ing a sandcastle.,my friend and I were playing at the park making a sandcastle,0 0 0 0 0 6 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,we were just make/ing just a few little minor[-:] touch/s [~_laughs].,we were just making just a few little minor touches,0 0 0 6 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,then I dump/ed *a huge pail of sand on it [EU].,then I dumped huge pail of sand on it,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and I broke it [~_laughs].,and I broke it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and I was feel/ing really bad : while my friend was make/ing a huge other one.,and I was feeling really bad while my friend was making a huge other one,0 0 0 6 0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,(Me and my friend) my friend and I : were go/ing : on a picnic.,my friend and I were going on a picnic,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,we were eat/ing and eat/ing.,we were eating and eating,0 0 6 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,or I was eat/ing and eat/ing [~_laughs].,or I was eating and eating,0 0 0 6 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,until I got really really stuff/ed.,until I got really really stuffed,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and then she start/ed eat/ing just really slow.,and then she started eating just really slow,0 0 0 4 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and I got dizzy and sick.,and I got dizzy and sick,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,then my friend went to go get a doctor.,then my friend went to go get a doctor,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and she was pull/ing and pull/ing over to the (puh) picnic : thing.,and she was pulling and pulling over to the picnic thing,0 0 0 6 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,the doctor was check/ing me out.,the doctor was checking me out,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and then : I think she was take/ing : me over : to walk slowly and : take out some of my lunch.,and then I think she was taking me over to walk slowly and take out some of my lunch,0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,(um) my friend was : (um) (carry/ing) pull/ing a : wagon with a balloon on it.,my friend was pulling a wagon with a balloon on it,0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and I came.,and I came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and I said nice balloon [~_laughs].,and I said nice balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and I was try/ing to take it off.,and I was trying to take it off,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,then it float/ed up into the air.,then it floated up into the air,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and we could not reach it.,and we could not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,my friend got really really mad at me.,my friend got really really mad at me,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,then we saw a guy with (a) lot/s of balloon/s.,then we saw a guy with lots of balloons,0 0 0 0 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,(so I) and I went over to see if I could get a balloon.,and I went over to see if I could get a balloon,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and I did not have any money [~_laughs].,and I did not have any money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,(um[-:]) then I think we were just beg/ing for one.,then I think we were just begging for one,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,then the doctor came back.,then the doctor came back,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and we ask/ed if : we could borrow five dollar/s.,and we asked if we could borrow five dollars,0 0 4 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and he said okay.,and he said okay,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and we got : a balloon each.,and we got a balloon each,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and we said thank you.,and we said thank you,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,(the) the elephant was bounce/ing some ball/s.,the elephant was bouncing some balls,0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and the giraffe want/ed to too.,and the giraffe wanted to too,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then : he (um) falled|fall[EW:fell] over.,and then he falled over,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and he fell in the water.,and he fell in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then : the elephant gave him a ball in the water.,and then the elephant gave him a ball in the water,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,then he got out.,then he got out,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,(the) the elephant : (was) was : look/ing at the water.,the elephant was looking at the water,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and so was the giraffe.,and so was the giraffe,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and : then the elephant was go/ing to dive : off the board.,and then the elephant was going to dive off the board,0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,but then she trip/ed.,but then she tripped,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and she falled|fall[EW:fell].,and she falled,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and she get|get[EW:got] a[EW:an] owie on her knee.,and she get a owie on her knee,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then : her : dad come|come[EW:came] run/ing.,and then her dad come running,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,(and she got) and she look/ed at it.,and she looked at it,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and she put a bandaid on it.,and she put a bandaid on it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and[-:] then : they are sit/ing on a bench.,and then they are sitting on a bench,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and : then the : dad got mad at the : little kid because she : could bend her leg.,and then the dad got mad at the little kid because she could bend her leg,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and she said she could not.,and she said she could not,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,the giraffe had a[EW:an] airplane.,the giraffe had a airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,(and then he fli) and then he was fly/ing it.,and then he was flying it,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then the elephant grab/ed it away from him : and throwed|throw[EW:threw] it in the water.,and then the elephant grabbed it away from him and throwed it in the water,0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then : the giraffe got mad at her.,and then the giraffe got mad at her,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then : (um) his dad got mad at her.,and then his dad got mad at her,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then he try/ed to get it out : with his hand/s.,and then he tried to get it out with his hands,0 0 0 4 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,then he try/ed to get it out with a net.,then he tried to get it out with a net,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and he got it out.,and he got it out,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,(and : he) and then they went back in the water.,and then they went back in the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then he got it out again.,and then he got it out again,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then he gave it to the giraffe.,and then he gave it to the giraffe,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then he hug/ed it.,and then he hugged it,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,(the kid) the little kid was make/ing a sandcastle.,the little kid was making a sandcastle,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then the other kid broke it.,and then the other kid broke it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and he pour/ed sand on it.,and he poured sand on it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,then there was a big pile of sand.,then there was a big pile of sand,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then he cry/ed.,and then he cried,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,(the) the kid was walk/ing.,the kid was walking,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,then he find|find[EW:found] (des hin) his friend.,then he find his friend,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then they have picnic.,and then they have picnic,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then : the bunny was too full.,and then the bunny was too full,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,(and) and (he : go/3s) he was put/ing his hand/s on his tummy.,and he was putting his hands on his tummy,0 0 0 6 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then he seed|see[EW:saw] his mom.,and then he seed his mom,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,so (he get her) he get|get[EW:got] her.,so he get her,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,(and h) and then she help/ed his kid.,and then she helped his kid,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,(and) : (and) and they had to take him to doctor/z.,and they had to take him to doctor's,0 0 0 0 0 0 0 2 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and : then they walk/ed home.,and then they walked home,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,the little kid was push/ing his stroller.,the little kid was pushing his stroller,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,then (sh) he seed|see[EW:saw] the bunny.,then he seed the bunny,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and the bunny he try/ed to grab the balloon from the stroller.,and the bunny he tried to grab the balloon from the stroller,0 0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then he tie/ed it off.,and then he tied it off,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then it went up to the sky.,and then it went up to the sky,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,then she got mad at him.,then she got mad at him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then the guy had more balloon/s.,and then the guy had more balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then : he gave it to the bunny.,and then he gave it to the bunny,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and : he got some money.,and he got some money,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then : they did not give him any balloon/s : because he did not want to.,and then they did not give him any balloons because he did not want to,0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,then they seed|see[EW:saw] : their mom.,then they seed their mom,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then he point/ed at a girl.,and then he pointed at a girl,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and : then the guy did not give him any balloon/s.,and then the guy did not give him any balloons,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and he only had two.,and he only had two,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then they got them.,and then they got them,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,(um) : a giraffe and a[EW:an] elephant [EU].,a giraffe and a elephant,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,another giraffe and a[EW:an] elephant [EU].,another giraffe and a elephant,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,elephant [EU].,elephant,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,elephant with a ball hold/ing it [EU].,elephant with a ball holding it,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,a[EW:an] elephant : and a giraffe [EU].,a elephant and a giraffe,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,a[EW:an] elephant and a giraffe [EU].,a elephant and a giraffe,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,a[EW:an] elephant and a giraffe again [EU].,a elephant and a giraffe again,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,elephant and giraffe again [EU].,elephant and giraffe again,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,a[EW:an] elephant and a giraffe : again [EU].,a elephant and a giraffe again,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,a[EW:an] elephant (uh) again [EU].,a elephant again,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,two elephant/s and (a) one giraffe [EU].,two elephants and one giraffe,0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,a[EW:an] elephant [EU].,a elephant,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,two elephant/s and one giraffe [EU].,two elephants and one giraffe,0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,two elephant/s and one giraffe [EU].,two elephants and one giraffe,0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,two only (e) elephant/s [EU].,two only elephants,0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,a[EW:an] elephant and a giraffe.,a elephant and a giraffe,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,a[EW:an] elephant and a giraffe.,a elephant and a giraffe,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,elephant and a giraffe [EU].,elephant and a giraffe,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,a[EW:an] elephant and a giraffe with a[EW:an] airplane in the water [EU].,a elephant and a giraffe with a airplane in the water,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,a[EW:an] : elephant and a giraffe with a[EW:an] airplane in the water [EU].,a elephant and a giraffe with a airplane in the water,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,two elephant/s and one giraffe [EU].,two elephants and one giraffe,0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,two elephant/s and one giraffe [EU].,two elephants and one giraffe,0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,two elephant/s : one giraffe [EU].,two elephants one giraffe,0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,two elephant/s and one giraffe [EU].,two elephants and one giraffe,0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,(two elephant/s) : three elephant/s one : giraffe [EU].,three elephants one giraffe,0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,three elephant/s : and one giraffe [EU].,three elephants and one giraffe,0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,only (one) : (one) : one giraffe and one elephant [EU].,only one giraffe and one elephant,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,(um) a bunny : and (a : um :) another bunny : and a sandcastle [EU].,a bunny and another bunny and a sandcastle,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,two bunny/s are hold/ing some xx.,two bunnies are holding some,0 1 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,a bunny *is make/ing a sandcastle [EU].,a bunny making a sandcastle,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,the bunny dump/ed it on the sandcastle.,the bunny dumped it on the sandcastle,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,broke the sandcastle [EU].,broke the sandcastle,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,fix/ed the sandcastle [EU].,fixed the sandcastle,4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,(um) a basket [EU].,a basket,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,and the bunny is hold/ing the basket.,and the bunny is holding the basket,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,the carrot/s[-:] [EU].,the carrots,0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,: the food[-:] [EU].,the food,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,more food [EU].,more food,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,more food [EU].,more food,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,more food [EU].,more food,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,more food [EU].,more food,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,more [EU].,more,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,more [EU].,more,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,a bunny and a balloon[-:] [EU].,a bunny and a balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,a scooter and a bunny *are come/ing [EU].,a scooter and a bunny coming,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,and a bunny [EU].,and a bunny,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,and a balloon *is on the scooter [EU].,and a balloon on the scooter,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,a balloon *is on the scooter [EU].,a balloon on the scooter,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,the balloon fell off and flew away.,the balloon fell off and flew away,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,the balloon broked|break[EW:broke] [~_pronounced_'broke-ed'].,the balloon broked,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,and : more balloon/s [EU].,and more balloons,0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,more balloon/s [EU].,more balloons,0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,more balloon/s [EU].,more balloons,0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,more balloon/s [EU].,more balloons,0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,more balloon/s [EU].,more balloons,0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,more [EU].,more,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,more [EU].,more,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,only two[-:] [EU].,only two,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,(um) : two balloon/s [EU].,two balloons,0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,The elephant and the giraffe (are go/ing) are play/ing basketball.,The elephant and the giraffe are playing basketball,0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,the ball went into the pool.,the ball went into the pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,the giraffe swim/3s to get[!] the ball.,the giraffe swims to get the ball,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,: I can not really explain that one [~_laughing] [+_bch].,I can not really explain that one,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,(ah : oh) the giraffe is give/ing the ball to the elephant.,the giraffe is giving the ball to the elephant,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,the elephant love/3s the giraffe.,the elephant loves the giraffe,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,The elephant and the giraffe are go/ing to go swim/ing.,The elephant and the giraffe are going to go swimming,0 0 0 0 0 0 6 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,the elephant (got) and the giraffe : are go/ing to[:_gonna] jump in.,the elephant and the giraffe are going to jump in,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,the elephant and : the giraffe are run/ing.,the elephant and the giraffe are running,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,and the elephant slip/ed.,and the elephant slipped,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,and she stab/ed her knee on the side.,and she stabbed her knee on the side,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,okay is this an outdoor pool [+_bch]?,okay is this an outdoor pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,"it does not matter, it is up to you.",it does not matter it is up to you,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,[~_okay] (she s) she hurt her knee on the sidewalk.,she hurt her knee on the sidewalk,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,she is cry/ing.,she is crying,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,: (and) and the lifeguard gave her a bandage.,and the lifeguard gave her a bandage,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,he[EW:she] is all better now.,he is all better now,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,and now he[EW:she] should not run.,and now he should not run,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,The elephant (uh) and the giraffe are go/ing to go[-:] play : in the swimming pool.,The elephant and the giraffe are going to go play in the swimming pool,0 0 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,(the elephant and gir) (and the giraffe : is play/ing with) and the giraffe is play/ing with his airplane.,and the giraffe is playing with his airplane,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,the elephant grab/3s[!] it from him.,the elephant grabs it from him,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,: and the airplane go/3s in the water.,and the airplane goes in the water,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,now the giraffe is mad.,now the giraffe is mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,and the lifeguard (s) come/3s along and try/3s to get it out of there.,and the lifeguard comes along and tries to get it out of there,0 0 0 3 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,(and) and the elephant explain/3s it.,and the elephant explains it,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,and now the lifeguard is try/ing to get it.,and now the lifeguard is trying to get it,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,but the elephant and giraffe : and the lifeguard can not[!] get it.,but the elephant and giraffe and the lifeguard can not get it,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,but (an) (an) a girl[!] lifeguard come/3s with a net and get/3s it.,but a girl lifeguard comes with a net and gets it,0 0 0 0 3 0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,: and now the airplane is safe.,and now the airplane is safe,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,and the (e) giraffe is happy now.,and the giraffe is happy now,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,and the elephant and giraffe are all happy.,and the elephant and giraffe are all happy,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,The rabbit and the kangaroo[-:] are build/ing a sandcastle.,The rabbit and the kangaroo are building a sandcastle,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,the rabbit : (put/3s some sand to make the sa) get/3s some sand to make the sandcastle.,the rabbit gets some sand to make the sandcastle,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,the rabbit : crush/3s the sandcastle.,the rabbit crushes the sandcastle,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,"the rabbit (and) [~_asks_what's_that_other_thing,_E_asks_him__what_he_thinks,_C_says_'just_call_them_as_bunnies'] and the bunny is[EW:are] mad.",the rabbit and the bunny is mad,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,and now the bunny can not build it up again.,and now the bunny can not build it up again,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,The rabbit and the kangaroo : are go/ing for a picnic.,The rabbit and the kangaroo are going for a picnic,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,the rabbit : has[-:] more stuff than the kangaroo.,the rabbit has more stuff than the kangaroo,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,: the kangaroo think/3s the rabbit is silly.,the kangaroo thinks the rabbit is silly,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,he has a tummyache.,he has a tummyache,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,: the kangaroo is run/ing to the bunny/z : mom.,the kangaroo is running to the bunny's mom,0 0 0 6 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,and : (she) she is say/ing he is too full.,and she is saying he is too full,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,and[-:] she try/3s to help.,and she tries to help,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,and it did.,and it did,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,The rabbit meet/3s the kangaroo one day.,The rabbit meets the kangaroo one day,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,and[-:] the kangaroo has : (a) : a wagon.,and the kangaroo has a wagon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,(and : the rabbit tie/3s a balloo) and the rabbit see/3s a balloon on the wagon.,and the rabbit sees a balloon on the wagon,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,and he take/3s it off.,and he takes it off,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,and the balloon fly/3s away.,and the balloon flies away,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,and now the rabbit is mad : [~_I_mean] the kangaroo.,and now the rabbit is mad the kangaroo,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,and a balloon man come/3s (and get/3s some mo) and has some more balloon/s.,and a balloon man comes and has some more balloons,0 0 0 0 3 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,(and the balloon) and the rabbit ask/3s for a balloon.,and the rabbit asks for a balloon,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,and he pay/3s[!] the man.,and he pays the man,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,(and) (and) but he could not pay him because he did not have (a m) that much money.,but he could not pay him because he did not have that much money,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,so he did not get the balloon back.,so he did not get the balloon back,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,(and) (and the rabbit/z mom[-:] : come/3s by and buy/3s) (and) and the rabbit/z mom come/3s by : and buy/3s : a balloon.,and the rabbit's mom comes by and buys a balloon,0 0 2 0 3 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,and the balloon and the rabbit and the kangaroo are happy.,and the balloon and the rabbit and the kangaroo are happy,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,and now they both[!] have a balloon.,and now they both have a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,a[EW:an] elephant was bounce/ing *a ball by a pool [EU].,a elephant was bouncing ball by a pool,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and the ball fall/3s in the water.,and the ball falls in the water,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,(and) and a giraffe swim/3s and get/3s it.,and a giraffe swims and gets it,0 0 0 3 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and the elephant get/3s the ball.,and the elephant gets the ball,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and the elephant thank/3s the[-:] giraffe.,and the elephant thanks the giraffe,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,the elephant saw : a diving board.,the elephant saw a diving board,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and she ran to it.,and she ran to it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and she slip/ed.,and she slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and she : scrape/ed her knee.,and she scraped her knee,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and she start/3s cry/ing.,and she starts crying,0 0 3 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and they put a bandaid on : then sit her on a bench : and show/ed the sign.,and they put a bandaid on then sit her on a bench and showed the sign,0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,the giraffe has a[-:] plane.,the giraffe has a plane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and (she) he show/3s it to the elephant.,and he shows it to the elephant,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and the elephant grab/3s it : and drop/3s it in the water.,and the elephant grabs it and drops it in the water,0 0 0 3 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and the giraffe is mad at the elephant.,and the giraffe is mad at the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,(and) and them[EW:they] can not get it.,and them can not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and she try/s to : tell them : that it was a[EW:an] accident.,and she tries to tell them that it was a accident,0 0 1 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and them[EW:they] try to reach it.,and them try to reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,but them[EW:they] can not.,but them can not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and then : (the) : the giraffe start/3s to cry.,and then the giraffe starts to cry,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and then : another elephant come/3s in : get/3s it : with a net.,and then another elephant comes in gets it with a net,0 0 0 0 3 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and the giraffe is happy (and :) and do/3s not let the elephant touch it.,and the giraffe is happy and does not let the elephant touch it,0 0 0 0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,a rabbit was play/ing in the sandbox.,a rabbit was playing in the sandbox,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and then a different rabbit come/3s : and dump/3s some sand on top.,and then a different rabbit comes and dumps some sand on top,0 0 0 0 0 3 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,then the sandcastle is broken.,then the sandcastle is broken,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and the other rabbit start/3s to cry.,and the other rabbit starts to cry,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,two rabbit/s go for a picnic.,two rabbits go for a picnic,0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,(and) (and a ra) and the rabbit eat/3s all the food.,and the rabbit eats all the food,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and he get/3s dizzy.,and he gets dizzy,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,: [~_EXA:_anything_for_this_page] and he is very dizzy.,and he is very dizzy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,then the other rabbit get/3s the doctor : and pull/3s the doctor over there.,then the other rabbit gets the doctor and pulls the doctor over there,0 0 0 0 3 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and the doctor check/3s the rabbit.,and the doctor checks the rabbit,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and then : the doctor and the rabbit go home.,and then the doctor and the rabbit go home,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,a rabbit was push/ing a wagon with a balloon.,a rabbit was pushing a wagon with a balloon,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and a other rabbit came : and took the balloon.,and a other rabbit came and took the balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and it flew away.,and it flew away,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,the rabbit is mad at the other rabbit.,the rabbit is mad at the other rabbit,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,then the rabbit see/3s (the) the guy who sell/3s balloon/s.,then the rabbit sees the guy who sells balloons,0 0 0 3 0 0 0 3 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and the rabbit is buy/ing one.,and the rabbit is buying one,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,but he gots[EW:has] no money.,but he gots no money,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,so them[EW:they] can not get one.,so them can not get one,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and them[EW:they] find (a) a doctor.,and them find a doctor,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,"and them[EW:they] ask/ed [~_pronounced_""axt""] the doctor.",and them asked the doctor,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and the doctor buy/3s them one.,and the doctor buys them one,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,then them[EW:they] both have a balloon.,then them both have a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,one day (there is :) (there um) there was[EW:were] two friend/s : Polka Dot/s and : (Long) Long Neck.,one day there was two friends Polka Dots and Long Neck,0 0 0 0 0 1 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,they want/ed to go swim/ing together.,they wanted to go swimming together,0 4 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,they found a ball.,they found a ball,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,but then before even Polka Dot jump/ed in : Long Neck jump/ed in first and grab/ed it.,but then before even Polka Dot jumped in Long Neck jumped in first and grabbed it,0 0 0 0 0 0 4 0 0 0 4 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,then : Long Neck (swa) swam back : to the shore and got it for Polka Dot.,then Long Neck swam back to the shore and got it for Polka Dot,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and she smile/ed.,and she smiled,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and : Long Neck smile/ed back.,and Long Neck smiled back,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,one day : (there) (there) Long Neck and : Polka Dot : want/ed to go on the diving board.,one day Long Neck and Polka Dot wanted to go on the diving board,0 0 0 0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,so Polka Dot said let us go on the diving board.,so Polka Dot said let us go on the diving board,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and (she) she went.,and she went,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,she ran : very fast : and fell.,she ran very fast and fell,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,she was cry/ing.,she was crying,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,so the : lifeguard : quickly came over.,so the lifeguard quickly came over,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and so he gave her a bandaid : and : put her on : a bench.,and so he gave her a bandaid and put her on a bench,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,(and said now n) and the lifeguard said no run/ing allow/ed.,and the lifeguard said no running allowed,0 0 0 0 0 6 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,one day : Polka Dot and Long Neck : were talk/ing together.,one day Polka Dot and Long Neck were talking together,0 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,Long Neck brang along his plane.,Long Neck brang along his plane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and Polka Dot : was really surprise/ed.,and Polka Dot was really surprised,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and then Polka Dot grab/ed it out of Long Neck/z : hand.,and then Polka Dot grabbed it out of Long Neck's hand,0 0 0 0 4 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and she start/ed play/ing with it.,and she started playing with it,0 0 4 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,but then it fell into the water.,but then it fell into the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,Polka Dot was really sorry.,Polka Dot was really sorry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and then Long Neck : got really mad.,and then Long Neck got really mad,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and (sh) she felt really : sad.,and she felt really sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,so the lifeguard came over : and saw what they were do/ing.,so the lifeguard came over and saw what they were doing,0 0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,(he) and so Polka Dot told the story to the lifeguard.,and so Polka Dot told the story to the lifeguard,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and the lifeguard reach/ed over to get it.,and the lifeguard reached over to get it,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and (he) he could not get it.,and he could not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and then Polka Dot/z mother came and had : a net.,and then Polka Dot's mother came and had a net,0 0 0 2 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,she : took the net put it in the water and try/ed to get it.,she took the net put it in the water and tried to get it,0 0 0 0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,then (mom um) Polka Dot/z mom got it : for Long Neck.,then Polka Dot's mom got it for Long Neck,0 0 2 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and Polka Dot and Long Neck were happy.,and Polka Dot and Long Neck were happy,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,(once) one day : Rabbit and : Puppy went outside play/ing in the sandbox.,one day Rabbit and Puppy went outside playing in the sandbox,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,Puppy (made) made (um) a : sandcastle.,Puppy made a sandcastle,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and Bunny (um) started put/ing sand into a bucket.,and Bunny started putting sand into a bucket,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,Bunny pour/ed a big full : (sand) (sand um : box) sandbox : on top of the (sand) sandcastle.,Bunny poured a big full sandbox on top of the sandcastle,0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and it ruin/ed puppy/z sandcastle.,and it ruined puppy's sandcastle,0 0 4 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and bunny : was really sorry.,and bunny was really sorry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and then puppy start/ed to cry.,and then puppy started to cry,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,one day : Puppy and Bunny went walk/ing down : (the) (the) : the sidewalk : to find a place for a picnic.,one day Puppy and Bunny went walking down the sidewalk to find a place for a picnic,0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,they laid their blanket down and took out the food.,they laid their blanket down and took out the food,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,Bunny (mo) ate most of it really fast.,Bunny ate most of it really fast,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and Puppy ate slow.,and Puppy ate slow,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,Bunny was really really full.,Bunny was really really full,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,Puppy saw : (a b) a nurse.,Puppy saw a nurse,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,(he) Puppy grab/ed the nurse brang|bring[EW:brought] it over to Bunny [EU].,Puppy grabbed the nurse brang it over to Bunny,0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and the nurse : said lay down so I can check you.,and the nurse said lay down so I can check you,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and the nurse : said let us go home.,and the nurse said let us go home,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,the end [~_whispered] [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,one day Puppy and Bunny went walk/ing down : the sidewalk.,one day Puppy and Bunny went walking down the sidewalk,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,Puppy was : take/ing : behind : (um) a wagon with (um) with a balloon on it.,Puppy was taking behind a wagon with with a balloon on it,0 0 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,(Bu) Bunny saw the balloon and said could I hold it?,Bunny saw the balloon and said could I hold it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,Puppy said no when Bunny (ju) just about took it off.,Puppy said no when Bunny just about took it off,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,then bunny let go.,then bunny let go,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and it flew up into the air.,and it flew up into the air,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,Puppy got really mad.,Puppy got really mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and Bunny felt sorry.,and Bunny felt sorry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,(then puppy saw) then Bunny saw : more balloon/s : while Puppy was mad.,then Bunny saw more balloons while Puppy was mad,0 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,so he ran over.,so he ran over,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,he gave some money to the : balloon man and got a balloon.,he gave some money to the balloon man and got a balloon,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and so the balloon man : (told him : here : to) gave him a balloon.,and so the balloon man gave him a balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,(and sa) and then : the balloon man (sai) said : you could give her this.,and then the balloon man said you could give her this,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and then the bunny saw the nurse again.,and then the bunny saw the nurse again,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,the bunny told the nurse (th) (could I) could I have some money?,the bunny told the nurse could I have some money,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and so the : nurse gave (h) him some money.,and so the nurse gave him some money,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and Bunny and Puppy had their own.,and Bunny and Puppy had their own,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,(um the giraffe and the elephant) the elephant is (playing) (juggling) (jug um) [-:] : dribble/ing (on[-:] the sss) on the sidewalk.,the elephant is dribbling on the sidewalk,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and the giraffe see/3s her.,and the giraffe sees her,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and : then I think it got out of control and fall|fall[EW:fell] into the water.,and then I think it got out of control and fall into the water,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and the giraffe had to swim for it.,and the giraffe had to swim for it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and giraffe got it.,and giraffe got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and : then the elephant was happy play/ing with it.,and then the elephant was happy playing with it,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,(um) : the giraffe and the elephant want to go swim.,the giraffe and the elephant want to go swim,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and : oh that is it [+_bch].,and oh that is it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and (giraffe) the elephant went to run.,and the elephant went to run,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and : the giraffe just wait/ed there : smile/ing?,and the giraffe just waited there smiling,0 0 0 0 4 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and then the giraffe walk/ed.,and then the giraffe walked,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and the elephant ran.,and the elephant ran,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and she slip/ed : and hurt her knee.,and she slipped and hurt her knee,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,there is[-:] no run/ing.,there is no running,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and the lifeguard came : (with) when the elephant was cry/ing.,and the lifeguard came when the elephant was crying,0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,(um) the lifeguard see|see[EW:saw] if she was okay and (gave) put on her (a) a bandaid.,the lifeguard see if she was okay and put on her a bandaid,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and then she was all[-:] good.,and then she was all good,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and the lifeguard show/ed : her no run/ing.,and the lifeguard showed her no running,0 0 0 4 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,(um) the giraffe brought a[EW:an] airplane : and met the elephant at the water.,the giraffe brought a airplane and met the elephant at the water,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and then giraffe was fly/ing with it.,and then giraffe was flying with it,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and then the elephant took it : and flied|fly[EW:flew] it into the water.,and then the elephant took it and flied it into the water,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and then the giraffe got real mad at her.,and then the giraffe got real mad at her,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and the : (um) : lifeguard saw.,and the lifeguard saw,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and the elephant : told him : something.,and the elephant told him something,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and the lifeguard reach/ed over the pool and try/ed to get it.,and the lifeguard reached over the pool and tried to get it,0 0 0 4 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and then the lifeguard did not know what to do.,and then the lifeguard did not know what to do,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,a lady lifeguard got a net : and pull/ed it in with that net.,a lady lifeguard got a net and pulled it in with that net,0 0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and (then giraffe) then the giraffe was really happy.,and then the giraffe was really happy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and he hug|hug[EW:hugged] the airplane.,and he hug the airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,(um) : this rabbit is : go/ing to : play in the sand with (this dog) the girl dog.,this rabbit is going to play in the sand with the girl dog,0 0 0 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,(um) and they made a : castle.,and they made a castle,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and[-:] (uh) : the rabbit is play/ing (with sand) (in) (uh hi) this bucket and : his shovel : with sand in it.,and the rabbit is playing this bucket and his shovel with sand in it,0 0 0 0 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and then the rabbit pour/ed the sand : on the dog/z castle.,and then the rabbit poured the sand on the dog's castle,0 0 0 0 4 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and it : broke.,and it broke,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and they (tr) try/ed to make : it : again.,and they tried to make it again,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,(um the) this dog[-:] and the rabbit : see each other.,this dog and the rabbit see each other,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and they both have a picnic basket.,and they both have a picnic basket,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and I think they are go/ing to : a picnic.,and I think they are going to a picnic,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,(um) and the dog is (sorta um) (I think ready) the rabbit [~_I_mean] is ready to eat.,and the dog is the rabbit is ready to eat,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and : when he is done he is[-:] : full.,and when he is done he is full,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,(um) [-:] and he is dizzy I think?,and he is dizzy I think,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and then the : dog ran (to) I think (um) to this girl rabbit I think : the doctor.,and then the dog ran I think to this girl rabbit I think the doctor,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and the dog pull/ed : on : her jacket.,and the dog pulled on her jacket,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and then (f) when she got there : she bent down to help (the dog) the[-:] rabbit.,and then when she got there she bent down to help the rabbit,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and then she went : with[-:] the rabbit home I think.,and then she went with the rabbit home I think,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,(um) the[-:] : dog : see/3s the rabbit.,the dog sees the rabbit,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and : the dog has a[-:] wagon with a balloon.,and the dog has a wagon with a balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,the rabbit see/3s the balloon.,the rabbit sees the balloon,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,he (uns) he is try/ing to untie it.,he he is trying to untie it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and he untie/3s it.,and he unties it,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,it float/3s away.,it floats away,0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,then the : dog get/3s real mad at him.,then the dog gets real mad at him,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and then (the dog : see/3s : more balloon/s) [~_no_I_mean] the rabbit see/3s more balloon/s.,and then the rabbit sees more balloons,0 0 0 0 3 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and then the rabbit ask/3s : can I have a[-:] : balloon?,and then the rabbit asks can I have a balloon,0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and : he does not have five cent/s.,and he does not have five cents,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,(and) : and[-:] then[-:] they are : disappoint/ed I think.,and then they are disappointed I think,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and the rabbit went to see[-:] a girl rabbit.,and the rabbit went to see a girl rabbit,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and : the rabbit is try/ing to get the girl rabbit to go with him : to pay the[-:] balloon man.,and the rabbit is trying to get the girl rabbit to go with him to pay the balloon man,0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and (when she paid : he got) when she paid[-:] ten cent/s for : two (um) she got two[-:] balloon/s for each.,and when she paid ten cents for two she got two balloons for each,0 0 0 0 0 1 0 0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,(Um) (two : people) (two) an elephant and (a zebra) [~_no] (a) : a giraffe are talk/ing.,an elephant and a giraffe are talking,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and (they look) (they are go/ing) it look/3s like they are (go/ing) : go/ing swim/ing.,and it looks like they are going swimming,0 0 3 0 0 0 6 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the elephant : is talk/ing to the : giraffe.,and the elephant is talking to the giraffe,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the elephant : (sort of) probably[?] throw/3s the ball into the : water.,and the elephant probably throws the ball into the water,0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and she is shock/ed.,and she is shocked,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,(and he is) and the giraffe is just : calm.,and the giraffe is just calm,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,(he is) (he is) (he is) look/3s like he is go/ing to dive in and go get it.,looks like he is going to dive in and go get it,3 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and he start/3s to swim toward/3s the ball.,and he starts to swim towards the ball,0 0 3 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,he is swim/ing toward/3s the ball.,he is swimming towards the ball,0 0 6 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and then the elephant : (um) do/3s not want to watch because he think/3s he is probably pretty scare/ed.,and then the elephant does not want to watch because he thinks he is probably pretty scared,0 0 0 0 3 0 0 0 0 0 0 3 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,he get/3s it.,he gets it,0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and he swim/3s back.,and he swims back,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the elephant is pretty happy.,and the elephant is pretty happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and now she is hug/ing the ball.,and now she is hugging the ball,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and (the gir um) the giraffe is just smile/ing.,and the giraffe is just smiling,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,(um) the elephant and the giraffe[-:] [EU].,the elephant and the giraffe,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,(um) the giraffe is (uh) hold/ing (a) this towel.,the giraffe is holding this towel,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,(and the) and the elephant is hold/ing her hand/s like that.,and the elephant is holding her hands like that,0 0 0 0 6 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,(she is) and the elephant is point/ing to the water.,and the elephant is pointing to the water,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,she is point/ing to the water.,she is pointing to the water,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and she is take/ing a step toward/3s the water.,and she is taking a step towards the water,0 0 0 6 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,(she is look/3s like) she look/3s like she start/3s to run.,she looks like she starts to run,0 3 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and she slip/3s.,and she slips,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and then the giraffe start/3s run/ing after.,and then the giraffe starts running after,0 0 0 0 3 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and she get/3s hurt.,and she gets hurt,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and then she start/3s to run to get help it look/3s like.,and then she starts to run to get help it looks like,0 0 0 3 0 0 0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,she start/3s to cry.,she starts to cry,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and then the (uh) giraffe is try/ing to comfort her.,and then the giraffe is trying to comfort her,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the lifeguard (um her) start/3s to come.,and the lifeguard starts to come,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,(the) now the lifeguard start/3s to comfort her.,now the lifeguard starts to comfort her,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and she stop/3s cry/ing.,and she stops crying,0 0 3 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,the lifeguard bring/3s a bandaid and put/3s it on the knee.,the lifeguard brings a bandaid and puts it on the knee,0 0 3 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,(and she is start/3s) and she open/3s her eye/s.,and she opens her eyes,0 0 3 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and she sit/3s down on the bench.,and she sits down on the bench,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the lifeguard is point/ing to no run/ing.,and the lifeguard is pointing to no running,0 0 0 0 6 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,The elephant is talk/ing to (zebra) [~_no] the giraffe.,The elephant is talking to the giraffe,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the giraffe is hold/ing this plane.,and the giraffe is holding this plane,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,he is pretend/ing that it is fly/ing.,he is pretending that it is flying,0 0 6 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the elephant is watch/ing.,and the elephant is watching,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,now[-:] : (um) the elephant take/3s the plane.,now the elephant takes the plane,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the (ze) giraffe is not that happy.,and the giraffe is not that happy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,the plane fall/3s in the water.,the plane falls in the water,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and (every) they are both look/ing at it.,and they are both looking at it,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,the giraffe (s) is pretty mad at the elephant.,the giraffe is pretty mad at the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,the lifeguard : (um) come/3s.,the lifeguard comes,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and (he say/3s what is the) he is probably say/ing what is the matter or something.,and he is probably saying what is the matter or something,0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the plane start/3s to sink.,and the plane starts to sink,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the elephant is explain/ing what happpen/ed.,and the elephant is explaining what happpened,0 0 0 0 6 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,the lifeguard is try/ing to reach the plane.,the lifeguard is trying to reach the plane,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,it is too far.,it is too far,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,it is too far in the water.,it is too far in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,so he can not get it.,so he can not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,(and so) and someone go/3s to fetch a net so they can just scoop the plane up.,and someone goes to fetch a net so they can just scoop the plane up,0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,(she get/3s) she[-:] get/3s the plane in the net.,she gets the plane in the net,0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and then : the giraffe is happy again.,and then the giraffe is happy again,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,he is hug/ing the plane.,he is hugging the plane,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the elephant smile/3s.,and the elephant smiles,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,the bunny is talk/ing to the dog.,the bunny is talking to the dog,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and (the dog/z um) the dog has made a sandcastle.,and the dog has made a sandcastle,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the bunny is (pre um) pretty amaze/ed that it look/3s pretty good.,and the bunny is pretty amazed that it looks pretty good,0 0 0 0 0 4 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the bunny ask/3s if (she) he can help him.,and the bunny asks if he can help him,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,(the) the dog say/3s sure.,the dog says sure,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,(um) the bunny pour/3s sand on the : castle.,the bunny pours sand on the castle,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the dog (do/3s not sound that) do/3s not look that happy.,and the dog does not look that happy,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,it turn/3s into a big pile.,it turns into a big pile,0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the bunny is shock/ed.,and the bunny is shocked,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,the dog start/3s to cry.,the dog starts to cry,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the bunny is just : say/ing it was an accident.,and the bunny is just saying it was an accident,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,the (bu) (um they are both) the bunny is walk/ing down the road.,the the bunny is walking down the road,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and then the dog meet/3s (um) the bunny.,and then the dog meets the bunny,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,they stop for a picnic down on the lawn.,they stop for a picnic down on the lawn,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,the bunny is eat/ing a lot.,the bunny is eating a lot,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the dog has not ate[EW:eaten] that much yet.,and the dog has not ate that much yet,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,the bunny is stuff/ed.,the bunny is stuffed,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the dog is[EW:has] just start/ed to eat.,and the dog is just started to eat,0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,it look/3s like he is pretty dizzy.,it looks like he is pretty dizzy,0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and : (um) the dog call/3s the doctor.,and the dog calls the doctor,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the doctor come/3s to see what is the problem with the bunny.,and the doctor comes to see what is the problem with the bunny,0 0 0 3 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,(and the dog) (and she is tug/ing it i) and she is (tug/ing the doc) pull/ing the doctor as hard as she : can : to him to see what is the matter.,and she is pulling the doctor as hard as she can to him to see what is the matter,0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and she is look/ing at the bunny and point/ing.,and she is looking at the bunny and pointing,0 0 0 6 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the doctor walk/3s away with the bunny.,and the doctor walks away with the bunny,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,the dog is pull/ing the wagon : (and the bunny/z) with a balloon tie/ed to it.,the dog is pulling the wagon with a balloon tied to it,0 0 0 6 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the bunny is walk/ing down the road.,and the bunny is walking down the road,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,the bunny is point/ing to the balloon.,the bunny is pointing to the balloon,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and it look/3s like he is go/ing to [~_gonna] grab it.,and it looks like he is going to grab it,0 0 3 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,(he un) he is untie/ing it.,he is untying it,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,(and he release/3s it) and he release/3s it.,and he releases it,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and (it go/3s) it start/3s to rise.,and it starts to rise,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,it is too high for them to reach.,it is too high for them to reach,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the dog is pretty mad.,and the dog is pretty mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and there is (: um) a bunny sell/ing balloon/s.,and there is a bunny selling balloons,0 0 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,(um) and the bunny look/s like he is go/ing to [~_gonna] buy some.,and the bunny looks like he is going to buy some,0 0 0 1 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,but he has no money.,but he has no money,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,so he can not buy : any balloon/s.,so he can not buy any balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and[-:] it look/3s like : he is talk/ing to them.,and it looks like he is talking to them,0 0 3 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and (the) they look/ed (that) pretty puzzle/ed and stuff.,and they looked pretty puzzled and stuff,0 0 4 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and (there is a) the bunny start/3s run/ing toward/3s a doctor.,and the bunny starts running towards a doctor,0 0 0 3 6 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and (she uh) [~_no] (his mom and the) (mom) (the mom : um) the bunny ask/3s his mom if she can buy some balloon/s.,and the bunny asks his mom if she can buy some balloons,0 0 0 3 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,she : says sure.,she says sure,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and she buy/3s (t) him two[!] balloon/3s.,and she buys him two balloons,0 0 3 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and they are hug/ing the balloon/s.,and they are hugging the balloons,0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,: (Deena and Nathan bought some) : Deena and Nathan : met (at) at each other on the road.,Deena and Nathan met at each other on the road,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,and Deena had a ball.,and Deena had a ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,but Deena/z ball fell in the water.,but Deena's ball fell in the water,0 2 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,so[-:] Nathan went to get the ball for her because he was an excellent swimmer.,so Nathan went to get the ball for her because he was an excellent swimmer,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,"and when he came back to give the ball to : Deena, : Deena was really happy.",and when he came back to give the ball to Deena Deena was really happy,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,and she thank/ed Nathan for get/ing her ball.,and she thanked Nathan for getting her ball,0 0 4 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,Deena and Nathan : went to the pool.,Deena and Nathan went to the pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,Deena spot/ed a diving board.,Deena spotted a diving board,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,so they ran to go on the diving board.,so they ran to go on the diving board,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,(but) : but Deena fell and hurt her knee.,but Deena fell and hurt her knee,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,and she start/ed cry/ing.,and she started crying,0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,and the lifeguard came.,and the lifeguard came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,the lifeguard start/ed to put a bandaid on her.,the lifeguard started to put a bandaid on her,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,and then her knee was all better.,and then her knee was all better,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,: but the lifeguard was kind of mad at her because : she broke a rule.,but the lifeguard was kind of mad at her because she broke a rule,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,and that was no run/ing.,and that was no running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,Deena and Nathan went to the pool.,Deena and Nathan went to the pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,and this time Nathan brought a toy airplane.,and this time Nathan brought a toy airplane,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,Nathan : zoom/ed the plane around.,Nathan zoomed the plane around,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,and it got Deena kind of dizzy.,and it got Deena kind of dizzy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,then Deena : like/ed the airplane.,then Deena liked the airplane,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,and she took it right away from Nathan.,and she took it right away from Nathan,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,but then Deena drop/ed the airplane in the pool.,but then Deena dropped the airplane in the pool,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,Nathan was really mad at Deena because (he did that :) she did that.,Nathan was really mad at Deena because she did that,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,the lifeguard came.,the lifeguard came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,Deena told the lifeguard that she drop/ed (his) Nathan/z : airplane in the pool.,Deena told the lifeguard that she dropped Nathan's airplane in the pool,0 0 0 0 0 0 4 2 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,so the lifeguard try/ed to reach it.,so the lifeguard tried to reach it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,but the lifeguard could not get it.,but the lifeguard could not get it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,and Nathan start/ed cry/ing.,and Nathan started crying,0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,then this lady came by with a net.,then this lady came by with a net,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,she try/ed to scoop the airplane out of the pool.,she tried to scoop the airplane out of the pool,0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,(and she got it) and she got it for Nathan.,and she got it for Nathan,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,Nathan was so[-:] happy that he got his airplane back.,Nathan was so happy that he got his airplane back,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,: Bill and Sally (want/ed) were go/ing to play in the sand pit.,Bill and Sally were going to play in the sand pit,0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,and they want/ed to build a sandcastle.,and they wanted to build a sandcastle,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,so : Bill start/ed : put/ing lot/s of sand in the bucket : for make/ing a sandcastle.,so Bill started putting lots of sand in the bucket for making a sandcastle,0 0 4 6 1 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,then he dump/ed the : bucket of sand on (the) the sandcastle.,then he dumped the bucket of sand on the sandcastle,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,but he wreck/ed the whole sandcastle : because he put the bucket too early.,but he wrecked the whole sandcastle because he put the bucket too early,0 0 4 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,then Sally start/ed to cry because it was her best sandcastle that she ever made.,then Sally started to cry because it was her best sandcastle that she ever made,0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,: John and Megan want/ed to go for a walk to pick : flower/s.,John and Megan wanted to go for a walk to pick flowers,0 0 0 4 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,but they decide/ed to not pick flower/s and have a picnic instead.,but they decided to not pick flowers and have a picnic instead,0 0 4 0 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,(when) : when : Megan took out some food : John already ate his food.,when Megan took out some food John already ate his food,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,and he felt really sick.,and he felt really sick,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,he felt really dizzy after he ate all that : food.,he felt really dizzy after he ate all that food,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,then Megan ran to go get some help.,then Megan ran to go get some help,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,Megan : ask/ed the woman (if) : if she could : help : John.,Megan asked the woman if she could help John,0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,John was lucky because the woman : was a doctor.,John was lucky because the woman was a doctor,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,so she help/ed him.,so she helped him,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,and John felt better after the woman help/ed him.,and John felt better after the woman helped him,0 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,: Kate and Kerrick were go/ing on a walk.,Kate and Kerrick were going on a walk,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,and Kate had a nice balloon on her wagon.,and Kate had a nice balloon on her wagon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,Kerrick want/ed the balloon.,Kerrick wanted the balloon,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,so he start/ed (to) (to) to pick it up.,so he started to pick it up,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,he was try/ing to pick it up.,he was trying to pick it up,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,and : Kate start/ed scream/ing.,and Kate started screaming,0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,then Kerrick unloose/ed[EW:untied] it.,then Kerrick unloosed it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,(and) and the balloon start/ed fly/ing away.,and the balloon started flying away,0 0 0 4 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,Kate was really mad at : Kerrick because : she really like/ed that balloon.,Kate was really mad at Kerrick because she really liked that balloon,0 0 0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,and it was her favorite color.,and it was her favorite color,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,and : Kerrick saw a balloon : seller.,and Kerrick saw a balloon seller,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,and he had a great idea.,and he had a great idea,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,he went and bought Kate : her favorite color.,he went and bought Kate her favorite color,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,(and) and : (he) : he got Kate : her favorite color.,and he got Kate her favorite color,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,but he had no money.,but he had no money,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,(then Kerrick) then Kerrick was sad because he could not buy : Kate the balloon.,then Kerrick was sad because he could not buy Kate the balloon,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,then Kerrick went to Kate/z mom for some money.,then Kerrick went to Kate's mom for some money,0 0 0 0 2 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,and : he told : Kate/z mom the whole story about how he lost Kate/z (balloo) balloon.,and he told Kate's mom the whole story about how he lost Kate's balloon,0 0 0 2 0 0 0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,so : Kate/z mom bought : them both a balloon.,so Kate's mom bought them both a balloon,0 2 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,(and) and it was their favorite color.,and it was their favorite color,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,There is a cow say/ing can I have one of those balloon/s?,There is a cow saying can I have one of those balloons,0 0 0 0 6 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then one of them fall|fall[EW:fell] into the river.,And then one of them fall into the river,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then the cow go/3s in.,And then the cow goes in,0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,: (and : take/3s) (and try/3s to get the balloon) (and try/3s to get the balloon) [~_interruption_of__someone_coming_into_the_room] and then the cow try/3s to get the balloon.,and then the cow tries to get the balloon,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,(and then he) and then she say/3s thank/s[!].,and then she says thanks,0 0 0 3 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And how is the cow go/ing to get out?,And how is the cow going to get out,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,and then he got out.,and then he got out,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,No more page/s [+_bch].,No more pages,0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And there is a pool and only walk/ing allow/ed.,And there is a pool and only walking allowed,0 0 0 0 0 0 0 6 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,no run/ing.,no running,0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then he say/3s I am go/ing go.,And then he says I am going go,0 0 0 3 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,and then the elephant say/3s I am go/ing to go in[!] there.,and then the elephant says I am going to go in there,0 0 0 0 3 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,and then I do not know what he is do/ing [+_bch].,and then I do not know what he is doing,0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,what do/3s it look like he is do/ing?,what does it look like he is doing,0 3 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,he is run/ing[!].,he is running,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,okay.,okay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,No run/ing allow/ed on[EW:in] the pool.,No running allowed on the pool,0 6 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then she fall/3s and hurt/3s herself.,And then she falls and hurts herself,0 0 0 3 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then the coach come/3s and get/3s her.,And then the coach comes and gets her,0 0 0 0 3 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And cow come/3s.,And cow comes,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then she go/3s eek.,And then she goes eek,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then she get/3s a bandaid on her knee of a hole [EU].,And then she gets a bandaid on her knee of a hole,0 0 0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,and then she is all better.,and then she is all better,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And the coach is mad.,And the coach is mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,He say/3s [~_makes_angry_face].,He says,0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,No more page/s [+_bch].,No more pages,0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,(um : he) (he is ga um) the cow is go/ing to put (um the) the (uh) airplane into the water : pool.,the cow is going to put the airplane into the water pool,0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,and then he go/3s [~_makes_airplane_sounds].,and then he goes,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,and then (um uh) the elephant grab/3s it out of the cow/z hand.,and then the elephant grabs it out of the cow's hand,0 0 0 0 3 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then it sank into the pool.,And then it sank into the pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then the cow said [~_makes_frustrated_sound].,And then the cow said,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then the coach : say/3s hmm ?,And then the coach says hmm,0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,He look/3s into the pool.,He looks into the pool,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,(And then) and then the elephant say/3s [~_high_pitched_voice] I am sorry.,and then the elephant says I am sorry,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then the coach try/3s : to get it : with his hand/s and his trunk.,And then the coach tries to get it with his hands and his trunk,0 0 0 0 3 0 0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,and then the cow is cry/ing on his knee/s.,and then the cow is crying on his knees,0 0 0 0 0 6 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And he go/3s [~_makes_giggling_sounds].,And he goes,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,(And then) (and then :) (and then she) (and then the elephant come/3s) : and then another elephant come/3s.,and then another elephant comes,0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,(and um) and they say hmmm?,and they say hmmm,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then : she try/3s to get it out.,And then she tries to get it out,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,He is try/ing to get it out.,He is trying to get it out,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And the : cow (st) try/3s to stop cry/ing.,And the cow tries to stop crying,0 0 0 3 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And the elephant/s are happy.,And the elephants are happy,0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,But one is sad.,But one is sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then she got it.,And then she got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,She is come/ing out of the pool.,She is coming out of the pool,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then : he is glad to have it back.,And then he is glad to have it back,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,two bunny/s on the picture : and a sandcastle.,two bunnies on the picture and a sandcastle,0 1 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,and : one bunny is dig/ing.,and one bunny is digging,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,and one bunny is break/ing the sandcastle.,and one bunny is breaking the sandcastle,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,and that is mean.,and that is mean,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,then the next[!] bunny destroy/3s his[!] sandcastle.,then the next bunny destroys his sandcastle,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,and he was go/ing not destroy his.,and he was going not destroy his,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,but he pour/ed (a) a sandcastle on top of it.,but he poured a sandcastle on top of it,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,but then : one of the bunny/s said Oh[!] our sandcastle is wreck/ed.,but then one of the bunnies said Oh our sandcastle is wrecked,0 0 0 0 0 1 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,and then the other dog laugh/3s : has a smile on it.,and then the other dog laughs has a smile on it,0 0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,the what?,the what,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,a smile on it [+_bch].,a smile on it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,and : then one doggy is cry/ing.,and then one doggy is crying,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,and the bunny (is) is just stand/ing there think/ing.,and the bunny is just standing there thinking,0 0 0 0 0 6 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,that is the last page [+_bch].,that is the last page,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,(um) they are have/ing a picnic.,they are having a picnic,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,(um) one bunny is have/ing a carrot.,one bunny is having a carrot,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,and the doggy is watch/ing.,and the doggy is watching,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,his eyeball/s are look/ing : together.,his eyeballs are looking together,0 1 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then the bunny : is so full (that he) that this [~_pointing__to_her_tummy_bulging_out] [~_laughs].,And then the bunny is so full that this,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,Then the bunny/z : head is spin/ing.,Then the bunny's head is spinning,0 0 2 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And the other doggy is drink/ing something.,And the other doggy is drinking something,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And he xxx.,And he,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,He what sorry?,He what sorry,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,(he) he is drink/ing something.,he is drinking something,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then he : find/3s another rabbit that is a doctor.,And then he finds another rabbit that is a doctor,0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,The doggy come/3s to him.,The doggy comes to him,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,(And the xxx) (and xxx) and then : he pull/3s him.,and then he pulls him,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then they are try/ing to walk/ing[EW:walk].,And then they are trying to walking,0 0 0 0 6 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then the doctor say/3s oh man.,And then the doctor says oh man,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then : he take/3s him to the hospital.,And then he takes him to the hospital,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,Exactly the same.,Exactly the same,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,But now (the) the doggy that went to the hospital (he is) the balloon is under his tray.,But now the doggy that went to the hospital the balloon is under his tray,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And the bunny (sai) wave/3s.,And the bunny waves,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,(um) : (here is m) here is my balloon say/3s the bunny.,here is my balloon says the bunny,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then : he tie/3s it off and say/3s you can have it.,And then he ties it off and says you can have it,0 0 0 3 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,That is nice.,That is nice,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,: And then they let go.,And then they let go,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And they scream [~_aaah].,And they scream,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then there is just a line.,And then there is just a line,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,and they can not see the balloon.,and they can not see the balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then : they see more[!] balloon/s.,And then they see more balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And they want to take it.,And they want to take it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And that is the end of that one [+_bch].,And that is the end of that one,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,(they) They ask/ed : for one more.,They asked for one more,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,But I do not know what he say/3s.,But I do not know what he says,0 0 0 0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,You do not know?,You do not know,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,not talk/ing [+_bch].,not talking,0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,and then : one : hundred balloon[EW:balloon/s] they give : I think [EU].,and then one hundred balloon they give I think,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then : (he is) the bunny say/3s I do not have any.,And then the bunny says I do not have any,0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,could we still give it away?,could we still give it away,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,and he says hmm : no.,and he says hmm no,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,But then he find/3s (another doctor) the doctor.,But then he finds the doctor,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And he has no balloon/s.,And he has no balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,but maybe he can make one.,but maybe he can make one,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,and then the bunny say/3s : (um) I do not have no[EW:any] money.,and then the bunny says I do not have no money,0 0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,and he is still not give/ing me a balloon[!].,and he is still not giving me a balloon,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,and then : they gave one cent/s[EW:cent] (to the bun) for the balloon.,and then they gave one cents for the balloon,0 0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,(and then : when he) [~_turn_the_page] and then they got their own balloon/s.,and then they got their own balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,No more page/s [+_bch].,No more pages,0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,(um) there was a girl name/ed Melanie who was an elephant : and a boy named Chris who was a giraffe.,there was a girl named Melanie who was an elephant and a boy named Chris who was a giraffe,0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,they like/ed to go swim/ing [~_laughs].,they liked to go swimming,0 4 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,(the) Chris the giraffe : drop/ed the ball into the water.,Chris the giraffe dropped the ball into the water,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,he went and swam for the ball.,he went and swam for the ball,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,he got it and gave it to Melanie.,he got it and gave it to Melanie,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,they live happily ever after.,they live happily ever after,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,there was a girl name/ed Melanie and Chris.,there was a girl named Melanie and Chris,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,and they were at the swimming pool.,and they were at the swimming pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,they want/ed to go dive/ing.,they wanted to go diving,0 4 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,and they were run/ing to the board.,and they were running to the board,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,Melanie slip/ed and fell.,Melanie slipped and fell,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,she scrape/ed her knee : and was cry/ing.,she scraped her knee and was crying,0 4 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,Chris went to see her.,Chris went to see her,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,and the lifeguard went too.,and the lifeguard went too,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,(she s) the lifeguard put a bandaid on her knee.,the lifeguard put a bandaid on her knee,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,Melanie was walk/ing again.,Melanie was walking again,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,(and this) and then she got in trouble because the sign said no run/ing.,and then she got in trouble because the sign said no running,0 0 0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,Melanie : was an elephant.,Melanie was an elephant,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,and Chris was a giraffe.,and Chris was a giraffe,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,they : were swim/ing.,they were swimming,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,(with) and they had a plane.,and they had a plane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,Melanie was play/ing with the plane.,Melanie was playing with the plane,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,she accidentally drop/ed it into the water.,she accidentally dropped it into the water,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,Melanie could not reach it.,Melanie could not reach it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,and Chris is get/ing mad at her.,and Chris is getting mad at her,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,the lifeguard saw the : plane in the water.,the lifeguard saw the plane in the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,(the) the lifeguard : was stare/ing at Melanie.,the lifeguard was staring at Melanie,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,and Melanie was tell/ing what happen/ed.,and Melanie was telling what happened,0 0 0 6 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,the lifeguard could not reach it either.,the lifeguard could not reach it either,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,Chris was cry/ing.,Chris was crying,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,(ma) (a swi) a lady that was swim/ing there got a net.,a lady that was swimming there got a net,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,and she got the plane out of the water : and gave it to Chris.,and she got the plane out of the water and gave it to Chris,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,Chris was happy.,Chris was happy,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,Chris really love/3s his plane.,Chris really loves his plane,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,there was (a ra) a rabbit : and a dog.,there was a rabbit and a dog,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,they like/ed to build lot/s of sandcastle/s.,they liked to build lots of sandcastles,0 4 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,the rabbit accidentally pour/ed some sand on the sandcastle.,the rabbit accidentally poured some sand on the sandcastle,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,and : the : dog was surprise/ed.,and the dog was surprised,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,dog start/ed to cry.,dog started to cry,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,there was a rabbit and a dog.,there was a rabbit and a dog,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,they were go/ing on a picnic.,they were going on a picnic,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,(the d) the rabbit had to eat lot/s because he was hungry.,the rabbit had to eat lots because he was hungry,0 0 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,(the dog) [~_I_mean] the rabbit got really really full.,the rabbit got really really full,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,his stomach start/ed to ache.,his stomach started to ache,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,the dog went and got : a : doctor rabbit.,the dog went and got a doctor rabbit,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,the doctor came to see the boy.,the doctor came to see the boy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,she said that he had a fever.,she said that he had a fever,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,(um) and the rabbit/s walk/ed away happily.,and the rabbits walked away happily,0 0 1 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,there was a dog and a rabbit.,there was a dog and a rabbit,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,the dog had a balloon.,the dog had a balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,the rabbit want/ed to see[!] the balloon.,the rabbit wanted to see the balloon,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,the rabbit (un) accidentally untie/ed their balloon.,the rabbit accidentally untied their balloon,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,the balloon flew into the sky.,the balloon flew into the sky,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,the dog was really mad at the rabbit.,the dog was really mad at the rabbit,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,then they saw (another sta) (another) : another guy with balloon/s.,then they saw another guy with balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,the rabbit want/ed some.,the rabbit wanted some,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,the balloon/s are five cent/s.,the balloons are five cents,0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,but the rabbit did not have any money.,but the rabbit did not have any money,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,so the man would not let them have any balloon/s.,so the man would not let them have any balloons,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,(the rabb) the rabbit ran over to the doctor rabbit and ask/ed for some money.,the rabbit ran over to the doctor rabbit and asked for some money,0 0 0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,so she gave him money.,so she gave him money,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,and they bought two balloon/s.,and they bought two balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,and they both like/ed their balloon/s.,and they both liked their balloons,0 0 0 4 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,now he is go/ing to say aah no(*7).,now he is going to say aah no,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,I am not go/ing *to take those balls : home : to his raygie[c] [~_/regi/] [EU].,I am not going take those balls home to his raygie,0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,what ?,what,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,raygie[c] [~_/regi/] [+_bch].,raygie,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,that day that[EW:the] balls got stuck.,that day that balls got stuck,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,and he said oh(*2).,and he said oh,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,and the lady call/ed away and said ah I am going to get that ball.,and the lady called away and said ah I am going to get that ball,0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,(um) and they said uhoh the choochoo train is coming.,and they said uhoh the choochoo train is coming,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,: that way he swimmed|swim[EW:swam] to the ball.,that way he swimmed to the ball,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,and now (he said) : oh he cry/ed and cry/ed and cry/ed.,and now oh he cried and cried and cried,0 0 0 0 4 0 4 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,(um) : now he help/ed him to get that ball.,now he helped him to get that ball,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,and then now he help/ed to get him up.,and then now he helped to get him up,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,and he could not get up : now.,and he could not get up now,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,now he get[EW:got] the ball.,now he get the ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,and he was so excited.,and he was so excited,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,but : he was always day long [EU].,but he was always day long,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,he was what what ?,he was what what,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,always day long [+_bch].,always day long,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,once upon a time there was a little girl : walk/ing down the street.,once upon a time there was a little girl walking down the street,0 0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,and there was[EW:were] bridge/s all[-:] over the (p) car.,and there was bridges all over the car,0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,now he said go in there.,now he said go in there,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,go in there.,go in there,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,he said [~_aaah_sound] no(*3) I am not go/ing in there.,he said no I am not going in there,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,so he ran to the room and got dress/ed (and goed) and got[EW:went] there again.,so he ran to the room and got dressed and got there again,0 0 0 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,: said ow(*15) [EU].,said ow,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,he said I will get you a bandaid.,he said I will get you a bandaid,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,said what?,said what,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,I will get you a bandaid [+_bch].,I will get you a bandaid,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,so (that day) (that day was always) he put a bandaid on him.,so he put a bandaid on him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,and now : he said ow that still hurt/3s.,and now he said ow that still hurts,0 0 0 0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,that still hurt/3s.,that still hurts,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,now he said : you have to go and sit down.,now he said you have to go and sit down,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,: (now they are go/ing to) : (now you get there) and I will get you there (all) all the time [EU].,and I will get you there all the time,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,that day that one he said aah that one die/ed.,that day that one he said aah that one died,0 0 0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,I am go/ing to : that one.,I am going to that one,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,I got the airplane now.,I got the airplane now,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,it is not go/ing far away now.,it is not going far away now,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,so please*3 I will get the airplane.,so please please please I will get the airplane,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,no I will fight with the airplane.,no I will fight with the airplane,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,: so all the day (his long) it always day [EU].,so all the day it always day,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,so[-:] he was start/ed to be (eh) always day or long [EU].,so he was started to be always day or long,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,so that day he paint/ed his nails.,so that day he painted his nails,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,and he : threw him back to the car and : got his car[-:] .,and he threw him back to the car and got his car,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,so he : said uhoh there is[EW:are] two elephant/s and one giraffe.,so he said uhoh there is two elephants and one giraffe,0 0 0 0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,now I am go/ing to be no(*3) [EU].,now I am going to be no,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,I am go/ing to be this uhoh oh [EU].,I am going to be this uhoh oh,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,(so no I think) so not go/ing to do it anymore because it is my page [EU].,so not going to do it anymore because it is my page,0 0 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,I am not go/ing to.,I am not going to,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,so he stand[EW:stood] (to tay) to say goodbye.,so he stand to say goodbye,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,and he was always there for awhile.,and he was always there for awhile,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,so (he was start to be) he was start/ing get/ing that [EU].,so he was starting getting that,0 0 0 6 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,and he saw it and get[EW:got] it.,and he saw it and get it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,and he was done xx.,and he was done,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,so he put the airplane in there.,so he put the airplane in there,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,and he got him : all the day [EU].,and he got him all the day,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,: so please : I will not help you.,so please I will not help you,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,please(*2) I will not.,please I will not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,that little day he[-:][!] was always inside it [EU].,that little day he was always inside it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,please do not do that.,please do not do that,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,always[-:] do everything what I want to[:_wanna] do [EU].,always do everything what I want to do,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,so I want to do please please [~_repeated_for_emphasis] all my xx [EU].,so I want to do please please all my,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,please I do not want you.,please I do not want you,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,ah yes I want [EU].,ah yes I want,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,okay I will be that.,okay I will be that,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,that way he was always do/ing those [EU].,that way he was always doing those,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,so he was always do/ing the second page second page and second page [EU].,so he was always doing the second page second page and second page,0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,that day he was : try/ing to go to the picnic.,that day he was trying to go to the picnic,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,that day he was go/ing to ride a picnic [EU].,that day he was going to ride a picnic,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,that day he will have in a mess [EU].,that day he will have in a mess,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,that day he clean/ed it all up.,that day he cleaned it all up,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,that day he droom back to the car [EU].,that day he droom back to the car,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,that day he help/ed him up.,that day he helped him up,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,that day he slam/ed right down again.,that day he slammed right down again,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,that day : he got[EW:has] a mess again.,that day he got a mess again,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,he did what?,he did what,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,got a mess now [+_bch].,got a mess now,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,that day he was : get/ing the wagon.,that day he was getting the wagon,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,get/ing the what?,getting the what,6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,get/ing the wagon [+_bch].,getting the wagon,6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,that day he zoom/ed back.,that day he zoomed back,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,did what?,did what,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,get zoom back [+_bch].,get zoom back,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,that day he got dress/ed.,that day he got dressed,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,that day he reach/ed for the balloon (but).,that day he reached for the balloon,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,reach/ed for what?,reached for what,4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,he reach/ed for the balloon [+_bch].,he reached for the balloon,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,that day he broke off the string.,that day he broke off the string,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,that day he zoom/ed back : to this thing.,that day he zoomed back to this thing,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,that day he (gr) gived|give[EW:gave] them more balloon/s.,that day he gived them more balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,now he pop/ed all the balloon/s.,now he popped all the balloons,0 0 4 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,(now he got his) now he got his (um) balloon back.,now he got his balloon back,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,now he did not want him any more.,now he did not want him any more,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,and he said I want them please.,and he said I want them please,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,and he give[EW:gave] them back.,and he give them back,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,(and that is) : and that day (he) (he got) they all got excit/ed.,and that day they all got excited,0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,so they had them [EU].,so they had them,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,the elephant : and giraffe are play/ing ball.,the elephant and giraffe are playing ball,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,the ball went in the water.,the ball went in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,the giraffe went and get it [EU].,the giraffe went and get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,the giraffe gave the ball to the elephant.,the giraffe gave the ball to the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,the elephant said thank you.,the elephant said thank you,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,(um) : they were look/ing in the water.,they were looking in the water,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,they saw the diving board.,they saw the diving board,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,she was run/ing.,she was running,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,then she hurt her knee.,then she hurt her knee,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,there was : a lifeguard : (h) help/ing.,there was a lifeguard helping,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,(she gave) the lifeguard gave him a bandaid.,the lifeguard gave him a bandaid,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,(he) the[-:] lifeguard : elephant : were[EW:was] sit/ing in the bench [EU].,the lifeguard elephant were sitting in the bench,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,and[-:] the lifeguard say/3s no run/ing.,and the lifeguard says no running,0 0 0 3 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,the giraffe had a[EW:an] airplane[-:].,the giraffe had a airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,the giraffe was try/ing to fly it.,the giraffe was trying to fly it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,the elephant want/ed to fly it too.,the elephant wanted to fly it too,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,(the el) (the[-:]) : the airplane went in the water.,the airplane went in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,(they didnt) they do not know how to get it out.,they do not know how to get it out,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,(they) : they call/ed the lifeguard to get it.,they called the lifeguard to get it,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,the lifeguard : did not took|take[EW:take] it.,the lifeguard did not took it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,the lifeguard try/ed to get it.,the lifeguard tried to get it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,but : it was (f) too far.,but it was too far,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,the lifeguard did not know how to get it back.,the lifeguard did not know how to get it back,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,(the) (there come) the girl had a net to get the airplane.,the girl had a net to get the airplane,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,she got the airplane.,she got the airplane,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,she gave it back to the giraffe.,she gave it back to the giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,the giraffe was happy that he had his airplane back.,the giraffe was happy that he had his airplane back,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,the dog and the rabbit were make/ing a (k) sandcastle.,the dog and the rabbit were making a sandcastle,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,the[-:] : rabbit was put/ing some more sand [EU].,the rabbit was putting some more sand,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,(he put) he dump/ed the sand on the sandcastle.,he dumped the sand on the sandcastle,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,and the sandcastle broke down.,and the sandcastle broke down,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,(then the rabbit) : then : the dog was sad.,then the dog was sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,the dog and the rabbit went for a picnic.,the dog and the rabbit went for a picnic,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,the rabbit ate too much.,the rabbit ate too much,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,he got[EW:was] full.,he got full,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,he got a tummyache.,he got a tummyache,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,"the dog : ask/ed [~_pronounced_""axed""] the doctor : to help the rabbit.",the dog asked the doctor to help the rabbit,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,and the rabbit say/3s do not eat too much food.,and the rabbit says do not eat too much food,0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,and then the doctor took the : rabbit home.,and then the doctor took the rabbit home,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,the dog had a wagon : with a balloon.,the dog had a wagon with a balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,the rabbit like/ed the balloon.,the rabbit liked the balloon,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,he untie/ed the balloon.,he untied the balloon,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,it flewed|fly[EW:flew] away.,it flewed away,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,the dog got angry.,the dog got angry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,"they[-:] ask/ed [~_pronounced_""axed""] the balloon man.",they asked the balloon man,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,"the rabbit ask/ed [~_pronounced_""axed""] for another balloon.",the rabbit asked for another balloon,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,it was five cent/s.,it was five cents,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,but he did not have any five cent/s [EU].,but he did not have any five cents,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,(they) : they were sad that they do not have a balloon.,they were sad that they do not have a balloon,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,"they ask/ed [~_pronounced_""axed""] the doctor : to (have) : give some five cent/s [EU].",they asked the doctor to give some five cents,0 4 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,"the rabbit ask/ed [~_pronounced_""axed""] (the ra) the : doctor : can we have a balloon?",the rabbit asked the doctor can we have a balloon,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,(she) the doctor gave (the[-:]) : the balloon man five cent/s.,the doctor gave the balloon man five cents,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,they were happy.,they were happy,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,(Once upon a time there was an elephant and a goat) [~_asks_to__start_again] Once upon a time there was : a giraffe and a[EW:an] elephant.,Once upon a time there was a giraffe and a elephant,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and the giraffe : was play/ing basketball.,and the giraffe was playing basketball,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,(then) then the basketball : (went) it went into the water.,then the basketball it went into the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,(and) and the giraffe jump/ed into the water and swam after the ball.,and the giraffe jumped into the water and swam after the ball,0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,(but then the) but then the giraffe (got it) got it for the elephant.,but then the giraffe got it for the elephant,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,then the elephant : made fun (of) of the giraffe.,then the elephant made fun of the giraffe,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,And then that is the end [+_bch].,And then that is the end,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,Once upon a time (it was call/ed) a giraffe and the elephant (were) were almost go/ing to go dive/ing.,Once upon a time a giraffe and the elephant were almost going to go diving,0 0 0 0 0 0 0 0 0 0 0 6 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,Then the elephant said (giraffe/s) giraffe do you want to go to the diving board.,Then the elephant said giraffe do you want to go to the diving board,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,(and the elephant) and the giraffe said yes[!].,and the giraffe said yes,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,And then the elephant ran off (to) (to the) to the diving board.,And then the elephant ran off to the diving board,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,Then she (hurt) hurt her knee.,Then she hurt her knee,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,Then the elephant start/ed to cry.,Then the elephant started to cry,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,And the giraffe try/ed to help her.,And the giraffe tried to help her,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,(then) (then) then the parent (gave) gave the elephant a bandaid/s[EW:bandaid].,then the parent gave the elephant a bandaids,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,And then the giraffe said see?,And then the giraffe said see,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,Cut/s are not that bad.,Cuts are not that bad,1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,"And then the chief said yes, they are not that bad.",And then the chief said yes they are not that bad,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,And then the chief said no run/ing.,And then the chief said no running,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,And that is the end [+_bch].,And that is the end,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,Once upon a time an elephant and a giraffe were play/ing airplane.,Once upon a time an elephant and a giraffe were playing airplane,0 0 0 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and the giraffe : went boom : right when the airplane was fly/ing.,and the giraffe went boom right when the airplane was flying,0 0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and then the elephant took it away from the giraffe.,and then the elephant took it away from the giraffe,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and then she flew it through the air.,and then she flew it through the air,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and then it fell in the pool.,and then it fell in the pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and (then) (then) then the giraffe got mad at the elephant.,and then the giraffe got mad at the elephant,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and (then) (then the) (then) then the chief saw it.,and then the chief saw it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,(Then the el) then the elephant saw it.,then the elephant saw it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,(then) then the giraffe saw it.,then the giraffe saw it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,"(Then they try/ed) then the elephant said please chief, please chief : can you get that airplane out of the water?",then the elephant said please chief please chief can you get that airplane out of the water,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,Then the : chief try/ed to reach it.,Then the chief tried to reach it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,But he could not.,But he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,"Until he said no, I can not get it.",Until he said no I can not get it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,Until the girl (uh) chief came along with a net.,Until the girl chief came along with a net,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,Then she got it out.,Then she got it out,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,Then she gave it (to) to the giraffe.,Then she gave it to the giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,Then elephant (was) was happy.,Then elephant was happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,And the giraffe was happy.,And the giraffe was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,That is the end [+_bch].,That is the end,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,once upon a time : a bunny and a rat were play/ing together.,once upon a time a bunny and a rat were playing together,0 0 0 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and they made a sandcastle.,and they made a sandcastle,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,the bunny had digged|dig[EW:dug] up some sand and put it in his bucket.,the bunny had digged up some sand and put it in his bucket,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,then he dump/ed it onto the castle.,then he dumped it onto the castle,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,(then the bunny) then the bunny was not that happy.,then the bunny was not that happy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and (then) then the rat was cry/ing.,and then the rat was crying,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,that is the end [+_bch].,that is the end,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,once a [+//]>,once a,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,this is the same story [+_bch].,this is the same story,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,are you sure?,are you sure,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,(it has) it has the same character/s [+_bch].,it has the same characters,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,same character/s?,same characters,0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,that other red book [+_bch].,that other red book,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,okay.,okay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,once upon a time (there) a rat was go/ing picnic/ing.,once upon a time a rat was going picnicking,0 0 0 0 0 0 0 6 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and a bunny was go/ing picnic/ing.,and a bunny was going picnicking,0 0 0 0 6 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,they had a nice meal.,they had a nice meal,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and the bunny got so stuff/ed.,and the bunny got so stuffed,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,they could not eat any more.,they could not eat any more,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,then he got very : very sick.,then he got very very sick,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and (then) : then the bunny was asleep.,and then the bunny was asleep,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and rat went to the doctor.,and rat went to the doctor,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,(and) (and) (and) and the rat pull/ed the doctor closer and closer.,and the rat pulled the doctor closer and closer,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and (the) (the bunny said) (the) (the) the doctor said open wide.,and the doctor said open wide,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and : then the bunny open/ed his mouth wide.,and then the bunny opened his mouth wide,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and (then) : then the doctor went (with the bunny) with the bunny rabbit.,and then the doctor went with the bunny rabbit,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,that is the end [+_bch].,that is the end,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,once upon a time there were[EW:was] a bunny and a rat.,once upon a time there were a bunny and a rat,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,a bunny was (run) run/ing along the path.,a bunny was running along the path,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,the rat was carry/ing her carriage with some balloon[EW:balloon/s](and a win) (an) and a window.,the rat was carrying her carriage with some balloon and a window,0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,then the bunny said : can I have that balloon?,then the bunny said can I have that balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and then the rat said no.,and then the rat said no,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and then : the rabbit untie/ed it from the carriage.,and then the rabbit untied it from the carriage,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and (then) (then a) then the balloon flew off.,and then the balloon flew off,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and the rat got very mad.,and the rat got very mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,(Then) (then) then the balloon storekeeper : (come) come/ing along the path [EU].,then the balloon storekeeper coming along the path,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and then the storekeeper might[!] give : him one.,and then the storekeeper might give him one,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,he did not.,he did not,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,(but) but the storekeeper said it is five dollar/s.,but the storekeeper said it is five dollars,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and then the bunny check/ed his pocket/s.,and then the bunny checked his pockets,0 0 0 0 4 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,he did not have any money.,he did not have any money,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and then they were sad that they (did not give any) did not get any.,and then they were sad that they did not get any,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,then they walk/ed away.,then they walked away,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and then the bunny came to the doctor : again.,and then the bunny came to the doctor again,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,(and) : and he said doctor can you help me get a balloon?,and he said doctor can you help me get a balloon,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,the doctor said maybe.,the doctor said maybe,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,: and then (um) they got a balloon.,and then they got a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,(the) the doctor had some money.,the doctor had some money,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,(and it gave) and it gave him the money.,and it gave him the money,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and (then) then they both got a balloon.,and then they both got a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and the end [+_bch].,and the end,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,once upon a time : there was (a giraffe and uh um :) (and a uh :) a giraffe and an elephant.,once upon a time there was a giraffe and an elephant,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and the elephant was bounce/ing a ball[-:].,and the elephant was bouncing a ball,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then it went into the water[-:].,and then it went into the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then the giraffe was try/ed[EW:try/ing] to get it.,and then the giraffe was tried to get it,0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and he caught it for her.,and he caught it for her,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and : he was happy.,and he was happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then : (the) (the um) : the elephant was happy because : the giraffe got her ball back.,and then the elephant was happy because the giraffe got her ball back,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,once upon a time : the giraffe was : go/ing to[:_gonna] (s) go in the water.,once upon a time the giraffe was going to go in the water,0 0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then she said hey do you want to [~_wanna] go in there?,and then she said hey do you want to go in there,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,(and she said) and the giraffe said okay.,and the giraffe said okay,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then they went[-:].,and then they went,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,but then she hurted|hurt[EW:hurt] her knee.,but then she hurted her knee,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then : another elephant came.,and then another elephant came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then : it put a bandage on.,and then it put a bandage on,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then it was okay.,and then it was okay,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then [~_no] (he) the other guy came.,and then the other guy came,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,no run/ing.,no running,0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,once upon a time : the giraffe was play/ing with his airplane.,once upon a time the giraffe was playing with his airplane,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and he was play/ing it for a long time[-:].,and he was playing it for a long time,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then the girl play/ed with it.,and then the girl played with it,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then the giraffe said ah!,and then the giraffe said ah,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,then it went into the water and almost sank[-:].,then it went into the water and almost sank,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and the giraffe was mad at the elephant[-:].,and the giraffe was mad at the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then : the other elephant came and saw the airplane[-:].,and then the other elephant came and saw the airplane,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then he went ooh!,and then he went ooh,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then : he try/ed to get it.,and then he tried to get it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and he could not[-:].,and he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then they were wait/ing.,and then they were waiting,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and they were hot[-:].,and they were hot,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then a girl came[-:] : and caught the airplane[-:].,and then a girl came and caught the airplane,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then : she brought it to (the uh) the giraffe.,and then she brought it to the giraffe,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and he said thank/s.,and he said thanks,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then he play/ed with it again[-:].,and then he played with it again,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,once upon a time the bunny made a castle in his sandbox with the dog.,once upon a time the bunny made a castle in his sandbox with the dog,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then they want/ed to make a bigger one.,and then they wanted to make a bigger one,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,so they (go) add/ed more sand.,so they added more sand,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then : they put sand on top of the castle.,and then they put sand on top of the castle,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then it : broke.,and then it broke,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and the bunny said aw[-:]!,and the bunny said aw,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then they were go/ing to [~_gonna] make it again.,and then they were going to make it again,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,once upon a time the bunny was get/ing some raspberry/s.,once upon a time the bunny was getting some raspberries,0 0 0 0 0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and the dog was get/ing raspberry/s.,and the dog was getting raspberries,0 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,they walk/ed : until they had a party.,they walked until they had a party,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and (they could not) (he) the bunny could not eat all of his : stuff.,and the bunny could not eat all of his stuff,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,he was too[-:] full.,he was too full,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then : his tummy got big[!].,and then his tummy got big,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,then : he got big like a[EW:an] old man.,then he got big like a old man,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then : the dog holded|hold[EW:held] on to the : big man : (um) the doctor.,and then the dog holded on to the big man the doctor,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then he help/ed the bunny.,and then he helped the bunny,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then : he said come home with me [~_laughs].,and then he said come home with me,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,once upon a time : there was a guy with a balloon : with a little wagon.,once upon a time there was a guy with a balloon with a little wagon,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and (he uh) the bunny said hey where did you get that balloon from?,and the bunny said hey where did you get that balloon from,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then he was (go/ing to) : start/ing on it.,and then he was starting on it,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,start/ing a [+..].,starting a,6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,(fa) : and then : (the) the bunny was try/ing to untie it.,and then the bunny was trying to untie it,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and the dog was like hey do not!,and the dog was like hey do not,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then it flew away.,and then it flew away,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then the dog was really mad at the bunny.,and then the dog was really mad at the bunny,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and the bunny was look/ing at the balloon.,and the bunny was looking at the balloon,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then they saw a clown.,and then they saw a clown,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,they took a balloon.,they took a balloon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then : (they) he had money.,and then he had money,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then they were sad because they could not take a balloon.,and then they were sad because they could not take a balloon,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then they saw a doctor.,and then they saw a doctor,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and they said he is not let/ing us have a balloon.,and they said he is not letting us have a balloon,0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,: and then (sh) the doctor gave it to : the clown.,and then the doctor gave it to the clown,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then they got to have a balloon.,and then they got to have a balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,this one look/3s a little harder [+_bch].,this one looks a little harder,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,[~_okay_oop_there] look/3s like a giraffe (and a) and an elephant are : go/ing to[:_gonna] go for a swim in the pool.,looks like a giraffe and an elephant are going to go for a swim in the pool,3 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and it look/3s like they are friend/s.,and it looks like they are friends,0 0 3 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and they see a ball[!] in there.,and they see a ball in there,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and I think they want to[:_wanna] play.,and I think they want to play,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,they : jump into the water.,they jump into the water,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,(and the) and the : (uh) giraffe start/3s swim/ing for it.,and the giraffe starts swimming for it,0 0 0 3 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and : then he give/3s it (to) to his friend (the e) the elephant.,and then he gives it to his friend the elephant,0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and[-:] then it look/3s : like they are really good friend/s now.,and then it looks like they are really good friends now,0 0 0 3 0 0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,look/3s like the giraffe and the elephant (are) see the diving board.,looks like the giraffe and the elephant see the diving board,3 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and they want to[:_wanna] go off it.,and they want to go off it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,so the elephant : (ru) rush/3s to the : diving board.,so the elephant rushes to the diving board,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,(and[-:] she run) and she run/3s really really fast.,and she runs really really fast,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and she (f) slip/3s and : cut/3s her knee.,and she slips and cuts her knee,0 0 3 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and so the lifeguard come/3s to help.,and so the lifeguard comes to help,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,so (he) he put/3s a bandaid on her knee.,so he puts a bandaid on her knee,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,(and[-:]) : and it look/3s like she is confuse/ed.,and it looks like she is confused,0 0 3 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,it look/3s like she has never seen a bandaid before.,it looks like she has never seen a bandaid before,0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and then it look/3s like the lifeguard is mad at her : for run/ing : break/ing one of the rule/s.,and then it looks like the lifeguard is mad at her for running breaking one of the rules,0 0 0 3 0 0 0 0 0 0 0 0 6 6 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and there is a sign there that says no run/ing.,and there is a sign there that says no running,0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,[~_okay] there is the elephant : and the giraffe again.,there is the elephant and the giraffe again,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and it look/3s like she is : look/ing at the giraffe/z new toy plane.,and it looks like she is looking at the giraffe's new toy plane,0 0 3 0 0 0 6 0 0 2 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and he start/3s play/ing with it.,and he starts playing with it,0 0 3 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,then she snatch/3s[!] it away from him.,then she snatches it away from him,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and then she accidentally drop/3s it in the pool.,and then she accidentally drops it in the pool,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and it start/3s drownding[EW:drowning].,and it starts drownding,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,(and) and the : giraffe is really mad at her.,and the giraffe is really mad at her,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,then the lifeguard see/3s.,then the lifeguard sees,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and : he look/3s like he is going to[:_gonna] try and help.,and he looks like he is going to try and help,0 0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and the elephant is explain/ing what happen/ed.,and the elephant is explaining what happened,0 0 0 0 6 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and (he) the lifeguard try/3s and reach/3s for the plane.,and the lifeguard tries and reaches for the plane,0 0 0 3 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and : the giraffe is sad because he could not grab it.,and the giraffe is sad because he could not grab it,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,so it : look/3s like (the li) the : elephant/z mom come/3s and has a net.,so it looks like the elephant's mom comes and has a net,0 0 3 0 0 2 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,so she get/3s it.,so she gets it,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and : the giraffe stop/3s cry/ing.,and the giraffe stops crying,0 0 0 3 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and he is really happy now.,and he is really happy now,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and[-:] he is happy that he has his toy back.,and he is happy that he has his toy back,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,(there is : uh) (there is) look/3s like it is a little dog that is play/ing in the sandbox.,looks like it is a little dog that is playing in the sandbox,3 0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and it made a really cool sandcastle.,and it made a really cool sandcastle,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and a rabbit come/3s along and want/3s to help.,and a rabbit comes along and wants to help,0 0 0 3 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,so : they : start work/ing together.,so they start working together,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,(and the) : and the bunny (scoop) scoop/3s up a lot of sand.,and the bunny scoops up a lot of sand,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and : he dump/3s it all : onto the sandcastle.,and he dumps it all onto the sandcastle,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and it bury/3s[!] it.,and it buries it,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,(and) : and he is (r) really mad : because : (he a) he accidentally : put (the) : the sand on.,and he is really mad because he accidentally put the sand on,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,he thought it would help.,he thought it would help,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and : then the : little dog start/3s cry/ing.,and then the little dog starts crying,0 0 0 0 0 3 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,there is the dog and the bunny again.,there is the dog and the bunny again,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,they are go/ing to [~_gonna] go on a picnic together.,they are going to go on a picnic together,0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and[-:] the bunny : bring/3s a lot of : food.,and the bunny brings a lot of food,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,(and he) and he : eat/3s like a pig.,and he eats like a pig,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and he get/3s (r) really big and fat.,and he gets really big and fat,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and he is : sick : because he ate too much.,and he is sick because he ate too much,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,(and the do) and the dog is worry/ed.,and the dog is worried,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,(and) : and the bunny is (ro) look/ing really sick.,and the bunny is looking really sick,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,he has got circle/s around his head.,he has got circles around his head,0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and then the dog spot/3s (a n) a nurse.,and then the dog spots a nurse,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and she come/3s to help.,and she comes to help,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,so she do/3s[!] help.,so she does help,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,so she look/3s (wha) what is[-:] wrong.,so she looks what is wrong,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and she find/3s out what it is.,and she finds out what it is,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and then she make/3s him all better.,and then she makes him all better,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and he : walk/3s home happily.,and he walks home happily,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,(uh) the dog and the bunny : (co) comes|come[EW:came] along again.,the dog and the bunny comes along again,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,(and) : and the : dog is pull/ing a wagon around.,and the dog is pulling a wagon around,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,(and[-:] the) and the bunny is (s um) see/3s : a balloon on there.,and the bunny is sees a balloon on there,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and he is really amaze/ed.,and he is really amazed,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,so he want/3s to touch[!] it.,so he wants to touch it,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,so he accidentally untie/3s[!] it : because he think|think[EW:thinks] (it) something will happen.,so he accidentally unties it because he think something will happen,0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and it is really cool!,and it is really cool,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,but he accidentally : let/3s it away.,but he accidentally lets it away,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and they rush for it.,and they rush for it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,but they can not get it.,but they can not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,(the uh) the dog is really steam/ed[!] (an) : and is show/ing her teeth.,the dog is really steamed and is showing her teeth,0 0 0 0 4 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,(and) : and the bunny is look/ing up.,and the bunny is looking up,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,(an) : and he is like uhoh.,and he is like uhoh,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,then they spot a balloon[!] man who is sell/ing balloon/s[!].,then they spot a balloon man who is selling balloons,0 0 0 0 0 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and then he think/3s (he) he can buy[!] a balloon.,and then he thinks he can buy a balloon,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,so he go/3s over there.,so he goes over there,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,so he : ask/3s for a balloon.,so he asks for a balloon,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,(and the) [~_okay] : (and then : the) and then (um) the bunny (think/3s) say/3s that he do/3s not have any money.,and then the bunny says that he does not have any money,0 0 0 0 3 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,but he can not have one : because they are five cent/s.,but he can not have one because they are five cents,0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,so he is get/ing sad.,so he is getting sad,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,(um : there is a) both of them are : disappoint/ed that they can not get one : because they do not have any money.,both of them are disappointed that they can not get one because they do not have any money,0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and then the bunny spot/3s his mom[!].,and then the bunny spots his mom,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,(an he) and he ask/3s for (f) five cent/s.,and he asks for five cents,0 0 3 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and she give/3s it to him.,and she gives it to him,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,she pay/3s the : man.,she pays the man,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and they get two[!] balloon/s.,and they get two balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and they are really happy because they got two of them.,and they are really happy because they got two of them,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,(um) an elephant *was bounce/ing a ball [EU].,an elephant bouncing a ball,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,and a giraffe *was watch/ing [EU].,and a giraffe watching,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the ball *was in the water [EU].,the ball in the water,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,and they are both stare/ing.,and they are both staring,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,and it look/3s like they are scream/ing.,and it looks like they are screaming,0 0 3 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,(uh) the giraffe : *is in the pool[-:] get/ing the ball [EU].,the giraffe in the pool getting the ball,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the elephant *is surprise/ed.,the elephant surprised,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the giraffe *is give/ing the ball to the elephant.,the giraffe giving the ball to the elephant,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the elephant like/3s what he do/3s.,the elephant likes what he does,0 0 3 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,and : he smile/3s.,and he smiles,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the[-:] elephant and giraffe : *are look/ing at the water [EU].,the elephant and giraffe looking at the water,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,(uh) they go to the jumping board.,they go to the jumping board,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the elephant run/3s.,the elephant runs,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,and the giraffe walk/3s.,and the giraffe walks,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the elephant get/3s hurt.,the elephant gets hurt,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,and the giraffe do/3s not.,and the giraffe does not,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the giraffe wonder/3s if the elephant is okay.,the giraffe wonders if the elephant is okay,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the : in charged[EW:charge] elephant[?] : wonder/3s what is wrong.,the in charged elephant wonders what is wrong,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,: put/3s a bandaid on [EU].,puts a bandaid on,3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,: (uh) : take/3s her to a bench [EU].,takes her to a bench,3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,: show/3s her the sign [EU].,shows her the sign,3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,then she is surprise/ed[~!_laughing].,then she is surprised,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,no run/ing[-:] the sign say/3s.,no running the sign says,0 6 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,[~_sighs] the[-:] elephant[-:] decide/3s : that : they should play with the toy airplane.,the elephant decides that they should play with the toy airplane,0 0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the[-:] : (um[-:]) giraffe : got it first.,the giraffe got it first,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,and the elephant[~!_laughing] wonder/3s if she could do it.,and the elephant wonders if she could do it,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,and she do/3s it way too fast : drop/s it in the water accidentally [EU].,and she does it way too fast drops it in the water accidentally,0 0 3 0 0 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the[-:] giraffe get/3s mad at her.,the giraffe gets mad at her,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the[-:] in charged[EW:charge] elephant come/3s.,the in charged elephant comes,0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the[-:] : other elephant : tell/3s him what : happen/ed.,the other elephant tells him what happened,0 0 0 3 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,he try/3s and get/3s it.,he tries and gets it,0 3 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,he do/3s not know how.,he does not know how,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,then[-:] his wife come/3s : get/3s it with the (s) fishing[-:] net sort of : and give/3s it back to the giraffe.,then his wife comes gets it with the fishing net sort of and gives it back to the giraffe,0 0 0 3 3 0 0 0 0 0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,giraffe like/3s the airplane[~!_laughing].,giraffe likes the airplane,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the[-:] rabbit ask/3s if he can play with the dog[-:].,the rabbit asks if he can play with the dog,0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the : dog is make/ing something.,the dog is making something,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the rabbit is dig/ing a big bucket of sand : dump/s it right where the castle is suppose/ed to be : and[-:] : mean/3s it to make : a[-:] sort of (a) : a thing like this [EU].,the rabbit is digging a big bucket of sand dumps it right where the castle is supposed to be and means it to make a sort of a thing like this,0 0 0 6 0 0 0 0 0 1 0 0 0 0 0 0 4 0 0 0 3 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,and[-:] : it wreck/3s the castle.,and it wrecks the castle,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,remember I can not see the picture.,remember I can not see the picture,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,I know [+_bch].,I know,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,and he try/3s to fix it.,and he tries to fix it,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,[~_I_mean] the dog try/3s to [EU].,the dog tries to,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the[-:] : rabbit come/3s for a picnic with the dog.,the rabbit comes for a picnic with the dog,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the[-:] (ra) rabbit eat/3s too much[EW:many] carrot/s and[-:] : bun/s.,the rabbit eats too much carrots and buns,0 0 3 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,and the dog do/3s not.,and the dog does not,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,he get/3s[-:] sort of sick : I think.,he gets sort of sick I think,0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,he get/3s a real (stomach) : headache.,he gets a real headache,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the[-:] dog run/3s to gets[EW:get] his mother.,the dog runs to gets his mother,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,: pull/3s her over [EU].,pulls her over,3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the[-:] mother rabbit : talk/3s : to her son to leave now [EU].,the mother rabbit talks to her son to leave now,0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,and[-:] the[-:] rabbit do/3s with his mother [EU].,and the rabbit does with his mother,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the dog is happy.,the dog is happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the dog is play/ing with the wagon with a balloon on it.,the dog is playing with the wagon with a balloon on it,0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,and the rabbit come/3s again.,and the rabbit comes again,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,he want/3s the balloon.,he wants the balloon,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,he[-:] untie/3s it.,he unties it,0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the balloon float/3s away.,the balloon floats away,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,: go/3s higher [EU].,goes higher,3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the dog is mad.,the dog is mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,then they see a balloon seller.,then they see a balloon seller,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,(they ask) they tell him : that[-:] one of the balloon/s goes|go[EW:went] : into the[-:] sky.,they tell him that one of the balloons goes into the sky,0 0 0 0 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,and[-:] (they ask) : he[-:] tell/3s them that (it is : fi) five cent/s [EU].,and he tells them that five cents,0 0 3 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,hmm I could get one of those [~_CHI_talking_about_self].,hmm I could get one of those,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,here I have more than five cent/s [~_CHI_talking_about_self].,here I have more than five cents,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,[~_laughs] and the rabbit do/3s not have any : money.,and the rabbit does not have any money,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the rabbit go/3s to get : his mother.,the rabbit goes to get his mother,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,: says that he want/3s a balloon [EU].,says that he wants a balloon,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,and he has no money.,and he has no money,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,gives him five cent/s [EU].,gives him five cents,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,: and give/3s them both a balloon.,and gives them both a balloon,0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,one day a brother and a sister were : play/ing outside in their back yard : by their pool.,one day a brother and a sister were playing outside in their back yard by their pool,0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and (the[-:]) : the sister was bounce/ing the ball.,and the sister was bouncing the ball,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,but then it fell in the water.,but then it fell in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,(and then he went) and then the brother went to go swim : for the ball.,and then the brother went to go swim for the ball,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and then he gave it back.,and then he gave it back,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and then she was happy.,and then she was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,one day (a) a brother and a sister were[-:] : by their swimming pool.,one day a brother and a sister were by their swimming pool,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,the sister want/ed to go swimming!,the sister wanted to go swimming,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,she ran : really fast.,she ran really fast,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and she slip/ed.,and she slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,(and she br) and she hurt her knee.,and she hurt her knee,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and then the brother came.,and then the brother came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and then the lifeguard came.,and then the lifeguard came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and they (um : gave um) gave them a bandage.,and they gave them a bandage,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,[~_I_mean] (they um) they clean/ed it.,they cleaned it,0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and (then gave them a bandage) then they gave the sister a bandage.,and then they gave the sister a bandage,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,(and then they help/ed them walk to the be) and then they help/ed her walk to the bench.,and then they helped her walk to the bench,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and then the lifeguard said go[!].,and then the lifeguard said go,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,one day there was a brother and a sister.,one day there was a brother and a sister,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,(and they) and the brother said : do you want to play with my plane?,and the brother said do you want to play with my plane,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and the sister said okay.,and the sister said okay,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,(then h) then he show/ed her how to : (um) use it.,then he showed her how to use it,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and then she went ah.,and then she went ah,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and then she took it.,and then she took it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and she try/ed.,and she tried,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,(and it) and when she[!] threw (it) it fell in the water!,and when she threw it fell in the water,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and then he got really[!] mad.,and then he got really mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and she was cry/ing.,and she was crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and the lifeguard : look/3s puzzle/ed[-:].,and the lifeguard looks puzzled,0 0 0 3 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and : (the d) the sister said : I threw the plane.,and the sister said I threw the plane,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and it fell in the water.,and it fell in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and then the lifeguard (try/ed to get it) try/ed to get it.,and then the lifeguard tried to get it,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and he could not get it.,and he could not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and then (the br) the brother was cry/ing.,and then the brother was crying,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and then the mom came.,and then the mom came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and she had a net.,and she had a net,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and she scoop/ed the plane up with the net.,and she scooped the plane up with the net,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,(and he s) (he was) and (the boy) the brother was happy again.,and the brother was happy again,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,(the) the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,there was a bunny and a dog : I guess.,there was a bunny and a dog I guess,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,dog was build/ing a sandcastle.,dog was building a sandcastle,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and the : rabbit was (goin) was try/ing to help.,and the rabbit was was trying to help,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,but when he pour/ed the pail of sand on it it broke the sandcastle.,but when he poured the pail of sand on it it broke the sandcastle,0 0 0 4 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and then : the dog : was (um) : puzzle/ed : I guess.,and then the dog was puzzled I guess,0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and then he start/ed to cry.,and then he started to cry,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and the rabbit felt sorry.,and the rabbit felt sorry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,one fine day there was : a dog and a rabbit.,one fine day there was a dog and a rabbit,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and they were go/ing for a picnic!,and they were going for a picnic,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,the rabbit had lot/3s of food.,the rabbit had lots of food,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and the (um) dog had a sandwich : and a juice box.,and the dog had a sandwich and a juice box,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and the rabbit : was full[-:].,and the rabbit was full,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and the dog was still eat/ing.,and the dog was still eating,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,(uh) : and : the dog just finish/ed eat/ing.,and the dog just finished eating,0 0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and the rabbit had a (tum) stomachache.,and the rabbit had a stomachache,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,the dog went to go get a doctor.,the dog went to go get a doctor,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,the doctor came.,the doctor came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,the doctor (um check/ed) check/ed the rabbit.,the doctor checked the rabbit,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,(the) (the rabbit) [~_okay] the doctor : took the rabbit.,the doctor took the rabbit,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,once[-:] (the) there was a dog.,once there was a dog,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,(and he was using) and he was : use/ing his wheelbarrel.,and he was using his wheelbarrel,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,(and it was) and there was a balloon tie/ed to his wheelbarrel.,and there was a balloon tied to his wheelbarrel,0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,(and then the ra) and then a rabbit saw the balloon.,and then a rabbit saw the balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and he[!] want/ed it.,and he wanted it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,so he untie/ed the balloon.,so he untied the balloon,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and it sail/ed up.,and it sailed up,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and it sail/ed up.,and it sailed up,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and then[-:] they saw a balloon man.,and then they saw a balloon man,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,but (he said can I have) the rabbit said can I have one?,but the rabbit said can I have one,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,(the) (the r) the balloon man said five[!] cent/s.,the balloon man said five cents,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,(so they s) (so they wen) so they left.,so they left,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and then they found a doctor.,and then they found a doctor,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,(and he) and they said can I have (fi) five cent/s?,and they said can I have five cents,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and then : (he gave) the doctor gave him ten cent/s so they both[!] could have a balloon.,and then the doctor gave him ten cents so they both could have a balloon,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and they both had balloon/s.,and they both had balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,(the elephant) one morning the elephant went to the pool and bounce/ed the ball.,one morning the elephant went to the pool and bounced the ball,0 0 0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,(and want) and the giraffe saw : the elephant bounce/ing the ball.,and the giraffe saw the elephant bouncing the ball,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then : the elephant/z ball went in the pool.,then the elephant's ball went in the pool,0 0 2 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then the giraffe : was get/ing it.,then the giraffe was getting it,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then the giraffe gave it to : the elephant.,then the giraffe gave it to the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then : the : [+..] [EU].,then the,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,nothing for that page?,nothing for that page,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,yeah [+_bch].,yeah,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,the[-:] elephant (wa) was stand/ing by the pool.,the elephant was standing by the pool,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then she want/3s to go : on the diving board.,then she wants to go on the diving board,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then (she) she ran and slip/ed : and hurt her : knee.,then she ran and slipped and hurt her knee,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then the lifeguard : went[-:] to[-:] (the rescue) the rescue.,then the lifeguard went to the rescue,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then the lifeguard put a bandaids[EW:bandaid] on the elephant/z knee.,then the lifeguard put a bandaids on the elephant's knee,0 0 0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then she sat on the (bench) bench.,then she sat on the bench,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,: then the lifeguard (so) show/ed : her the sign : say/3s no run/ing.,then the lifeguard showed her the sign says no running,0 0 0 4 0 0 0 3 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,The giraffe got his airplane and : got it from his house.,The giraffe got his airplane and got it from his house,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then bring|bring[EW:brought] it to the pool [EU].,then bring it to the pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then he : flewed|fly[EW:flew] it.,then he flewed it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then she[-:] : (um) : let go.,then she let go,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,and then the airplane went : into the pool.,and then the airplane went into the pool,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then the giraffe got mad to the elephant [EU].,then the giraffe got mad to the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then the lifeguard came.,then the lifeguard came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,(and) (and the elephant was ask/ing how) : the lifeguard : said how did that get in there?,the lifeguard said how did that get in there,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then the lifeguard : was try/ing to reach the airplane : for the kid/s.,then the lifeguard was trying to reach the airplane for the kids,0 0 0 0 6 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then the giraffe is : cry/ing.,then the giraffe is crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then[-:] : the catcher elephant : is get/ing the airplane.,then the catcher elephant is getting the airplane,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,there is nothing [+_bch].,there is nothing,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,anything for this one?,anything for this one,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,no [+_bch].,no,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then she gave it (to the toy) to the giraffe.,then she gave it to the giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then the giraffe was happy again.,then the giraffe was happy again,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,the : dog was play/ing in the sandbox.,the dog was playing in the sandbox,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,and the rabbit came.,and the rabbit came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,and then the rabbit (wa) got out a pail : and put sand in the pail.,and then the rabbit got out a pail and put sand in the pail,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then she put the sand on the sandcastle.,then she put the sand on the sandcastle,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then[-:] : the rabbit broke the sandcastle.,then the rabbit broke the sandcastle,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then the dog cry/ed.,then the dog cried,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,the dog was wait/ing for the rabbit : for a picnic.,the dog was waiting for the rabbit for a picnic,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then the rabbit start/ed to eat.,then the rabbit started to eat,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then he ate a lot.,then he ate a lot,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,(and the) and : the rabbit got a stomachache.,and the rabbit got a stomachache,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then the dog : went to : a doctor.,then the dog went to a doctor,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,(then : the do) then the dog pull/ed (the rabbit to the : rabbit) the doctor to the rabbit.,then the dog pulled the doctor to the rabbit,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then : the doctor is check/ing on the : rabbit.,then the doctor is checking on the rabbit,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,the dog (is) : is pull/ing the wagon.,the dog is pulling the wagon,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,and the rabbit came.,and the rabbit came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then the rabbit (w) want|want[EW:wanted] to touch the balloon.,then the rabbit want to touch the balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then the rabbit (wa) is (inty) untie/ing the balloon.,then the rabbit is untying the balloon,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then the balloon flewed|float[EW:flew] away.,then the balloon flewed away,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then the dog : got mad.,then the dog got mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then they want the balloon.,then they want the balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then they saw : a rabbit carry/ing the balloon/s.,then they saw a rabbit carrying the balloons,0 0 0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then the rabbit : ask/ing for two balloon/s [EU].,then the rabbit asking for two balloons,0 0 0 6 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,and it cost/3s five cent/s.,and it costs five cents,0 0 3 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,and : the rabbit do/3s not have : any : money.,and the rabbit does not have any money,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then : that is it [+_bch].,then that is it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then the rabbit saw the doctor again.,then the rabbit saw the doctor again,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,(then) : then the rabbit ask/ed for a balloon.,then the rabbit asked for a balloon,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then : the doctor : gave them money to the : balloon carrier [EU].,then the doctor gave them money to the balloon carrier,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,once upon a time there were two friend/s a : giraffe (and a zeb a) (and) and an elephant.,once upon a time there were two friends a giraffe and an elephant,0 0 0 0 0 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,the elephant was play/ing ball : by the pool.,the elephant was playing ball by the pool,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and then by accident she drop/ed it in the pool.,and then by accident she dropped it in the pool,0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,the ball bounce/ed into the pool.,the ball bounced into the pool,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and : (they) : they did not know what to do.,and they did not know what to do,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,but then the (gira) giraffe : thought of an idea and jump/ed into the pool : and swam to get the ball.,but then the giraffe thought of an idea and jumped into the pool and swam to get the ball,0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and he did.,and he did,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and the elephant and : giraffe were very happy.,and the elephant and giraffe were very happy,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and the elephant : (was very very very) like/ed the : giraffe for get/ing her ball.,and the elephant liked the giraffe for getting her ball,0 0 0 4 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,once[-:] (there) : there were two friend/s.,once there were two friends,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and : they : were (by the swimming) by a swimming pool.,and they were by a swimming pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and : the elephant want/ed to go : to the diving board.,and the elephant wanted to go to the diving board,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and she was start/ing to run there.,and she was starting to run there,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and then she slip/ed[!] : and fell and scratch/ed herself.,and then she slipped and fell and scratched herself,0 0 0 4 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and then the : lifeguard came over : and gave her a bandaid : and told her to (sit) (take a) sit down on the bench (and said) : (and show/ed her) and point/ed to the sign : that said no run/ing.,and then the lifeguard came over and gave her a bandaid and told her to sit down on the bench and pointed to the sign that said no running,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,once[-:] there were two friend/s.,once there were two friends,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,: and they were by the swimming pool.,and they were by the swimming pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and : the giraffe[-:] (um) had a (air) toy airplane.,and the giraffe had a toy airplane,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and (he want/ed) he said do you want to play with me?,and he said do you want to play with me,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and : he was play/ing with his airplane : and made it go loop[!] and then up.,and he was playing with his airplane and made it go loop and then up,0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and then the elephant : got really dizzy : and grab/ed it away from him.,and then the elephant got really dizzy and grabbed it away from him,0 0 0 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and : (he) the giraffe was (ver) very nervous.,and the giraffe was very nervous,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and then by accident : the elephant drop/ed it into the : pool.,and then by accident the elephant dropped it into the pool,0 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and (the) the (um) giraffe got very mad at her.,and the giraffe got very mad at her,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and the lifeguard : seen|see[EW:saw] that : (the) : [~_says_under_breath] (the thing) the airplane was in the water.,and the lifeguard seen that the airplane was in the water,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and the elephant told (her) him that : she need/ed his help : to get the airplane.,and the elephant told him that she needed his help to get the airplane,0 0 0 0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,but it was too far for him.,but it was too far for him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,so he could not get it.,so he could not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and he did not know what to do.,and he did not know what to do,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,so : he told them : to find somebody else.,so he told them to find somebody else,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and then : (the) a woman with a net : came over : and said she would get it.,and then a woman with a net came over and said she would get it,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and : she put the net in the water.,and she put the net in the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and she got the airplane.,and she got the airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,(and he was) and[-:] the : (zebra um) giraffe was very happy.,and the giraffe was very happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,the endbch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,once upon a time (there was : a rabbit) there were two friend/s : a rabbit and a dog.,once upon a time there were two friends a rabbit and a dog,0 0 0 0 0 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,the dog want/ed to make a sandcastle (but the) with (the) her friend.,the dog wanted to make a sandcastle with her friend,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,(and : so) and so they did.,and so they did,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,but : when the rabbit got his shovel and pail : then : he start/ed help/ing[!] : the dog[!] : (her) his friend.,but when the rabbit got his shovel and pail then he started helping the dog his friend,0 0 0 0 0 0 0 0 0 0 0 4 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and : he (um) : put the sand in his pail and : (ss um) : was (flatn) (flatteni) flatten/ing the sand down.,and he put the sand in his pail and was flattening the sand down,0 0 0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and then : he pour/ed it over (the sandca) the castle.,and then he poured it over the castle,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and the dog : look/ed terrify/ed because (it did) (it) that was not how it was suppose/ed to go.,and the dog looked terrified because that was not how it was supposed to go,0 0 0 4 4 0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and then : the rabbit : (look) seen|see[EW:saw] that he broke the sandcastle and : said it was an accident.,and then the rabbit seen that he broke the sandcastle and said it was an accident,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and I did not mean to.,and I did not mean to,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and the dog (try/ed to m) made the sandcastle again.,and the dog made the sandcastle again,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,(the) : [~_let_(u)s_think] (the) (the) (the two frie) there were two friend/s : the rabbit and a dog.,there were two friends the rabbit and a dog,0 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,they went for a picnic lunch.,they went for a picnic lunch,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and : they went in the forest.,and they went in the forest,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,then : the rabbit : had a whole picnic.,then the rabbit had a whole picnic,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,(and : he) : and it was a little too much.,and it was a little too much,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,so : he look/ed (little) a little dizzy.,so he looked a little dizzy,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and : he fell down because he ate (all) (all) (all of the food) almost all the food.,and he fell down because he ate almost all the food,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and : he : was full.,and he was full,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and he decide/ed to get dizzy : and then : look|look[EW:looked] really sick.,and he decided to get dizzy and then look really sick,0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and then : (the rabbit/z mother came) a doctor came.,and then a doctor came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and (the) the dog : ran up to her and : told her that her friend : (fel) was really dizzy and got knock/ed out.,and the dog ran up to her and told her that her friend was really dizzy and got knocked out,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and : the dog pull/ed her all the way over : to the rabbit.,and the dog pulled her all the way over to the rabbit,0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and (the) : she : help/ed him.,and she helped him,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,(she) : and then : the doctor : (um) brung|bring[EW:brought] him over to the : (um) [~_what_is_it] (uh) : the center.,and then the doctor brung him over to the the center,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,there was[EW:were] two friend/s a rabbit and a dog.,there was two friends a rabbit and a dog,0 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,the dog had a balloon.,the dog had a balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and (the rabbit was) the dog went for a walk with : her balloon.,and the dog went for a walk with her balloon,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,the rabbit came : along.,the rabbit came along,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and (the) the (f) rabbit : seen|see[EW:saw] the balloon.,and the rabbit seen the balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and : he want/ed to take it off.,and he wanted to take it off,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and[-:] so[-:] : he untie/ed it.,and so he untied it,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and : the balloon flew away.,and the balloon flew away,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and : they were very (uh) scare/ed.,and they were very scared,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and the dog was very mad at the rabbit.,and the dog was very mad at the rabbit,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and : the rabbit : seen|see[EW:saw] [-:] : a balloon man and : went over : and : said can I have one of those balloon/s!,and the rabbit seen a balloon man and went over and said can I have one of those balloons,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,but : the balloon man show/ed him (wa) how much (i) they were.,but the balloon man showed him how much they were,0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,but : he did not have any money.,but he did not have any money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,(so the balloon man uh) : so the balloon man did not give (hi) them one.,so the balloon man did not give them one,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and : the rabbit seen|see[EW:saw] the doctor : and told her that : he need/ed some money : (for) : for a balloon.,and the rabbit seen the doctor and told her that he needed some money for a balloon,0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and : the : doctor (um) : got two balloon/s (and) : instead of one.,and the doctor got two balloons instead of one,0 0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and she paid him ten cent/s.,and she paid him ten cents,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and they were all very happy.,and they were all very happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,An elephant and a : horse are play/ing.,An elephant and a horse are playing,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,(the ball) (the ball went into) (the ball went in) [~_E:_go_ahead] the ball went into : the swimming pool.,the ball went into the swimming pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,and (the) the horse jump/3s in to go get the ball.,and the horse jumps in to go get the ball,0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,the horse : give/3s the ball to the elephant.,the horse gives the ball to the elephant,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,the horse is give/ing : the elephant a happy face.,the horse is giving the elephant a happy face,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,and the elephant is do/ing the exact same.,and the elephant is doing the exact same,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,They are go/ing to have a race.,They are going to have a race,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,then they change/ed their mind/s.,then they changed their minds,0 0 4 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,and they are go/ing to go on the jumping board.,and they are going to go on the jumping board,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,they were run/ing.,they were running,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,and elephant slip/ed.,and elephant slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,elephant hurt (her) her knee.,elephant hurt her knee,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,the lifeguard come/3s.,the lifeguard comes,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,the lifeguard put/3s a bandaid on.,the lifeguard puts a bandaid on,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,now elephant is happy.,now elephant is happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,lifeguard is point/ing to the sign no run/ing.,lifeguard is pointing to the sign no running,0 0 6 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,They are talk/ing together.,They are talking together,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,and one of them has a[EW:an] (pa) airplane.,and one of them has a airplane,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,the airplane (brea) break/3s.,the airplane breaks,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,and he throw/3s it in the swimming pool.,and he throws it in the swimming pool,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,then they fix it.,then they fix it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,then it fall/3s into the swimming pool.,then it falls into the swimming pool,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,then it go/3s : into the swimming pool (s) : into down(*3) [EU].,then it goes into the swimming pool into down,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,now the lifeguard is mad at Elephant and Horse.,now the lifeguard is mad at Elephant and Horse,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,(lifeguard) Elephant told the lifeguard : that we were play/ing with it : airplane.,Elephant told the lifeguard that we were playing with it airplane,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,Lifeguard can not reach it.,Lifeguard can not reach it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,Horse cry/3s.,Horse cries,0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,elephant : lifeguard come/3s : to get the paper airplane.,elephant lifeguard comes to get the paper airplane,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,she gets it and pick/3s it out of the water.,she gets it and picks it out of the water,0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,and she give/3s it to Horse.,and she gives it to Horse,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,Horse is happy and Elephant [EU].,Horse is happy and Elephant,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,(they are build/ing a castle) dog is build/ing a castle.,dog is building a castle,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,and bunny rabbit want/3s to help.,and bunny rabbit wants to help,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,and dog say/3s bunny rabbit can help.,and dog says bunny rabbit can help,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,bunny rabbit : dig/3s some sand up.,bunny rabbit digs some sand up,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,and dog : (tri) prepare/3s the castle.,and dog prepares the castle,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,dog is mad because bunny rabbit dump/ed the sand on (ca) (castle) : on the castle.,dog is mad because bunny rabbit dumped the sand on on the castle,0 0 0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,the castle is broken.,the castle is broken,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,dog and bunny rabbit are sad.,dog and bunny rabbit are sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,dog is cry/ing.,dog is crying,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,(bunny rabbit) : dog is try/ing to make a new (wa) castle.,dog is trying to make a new castle,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,bunny rabbit is stand/ing up : go/ing like this [~_makes_a__face].,bunny rabbit is standing up going like this,0 0 0 6 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,dog is go/ing for a (pic) picnic.,dog is going for a picnic,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,bunny rabbit is come/ing : with dog : with a picnic basket.,bunny rabbit is coming with dog with a picnic basket,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,: dog unpack/3s the picnic.,dog unpacks the picnic,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,bunny rabbit : go/3s likes[EW:like] this : stare/ing at a carrot.,bunny rabbit goes likes this staring at a carrot,0 0 3 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,dog is : eat/ing and drink/ing.,dog is eating and drinking,0 0 6 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,bunny rabbit is full.,bunny rabbit is full,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,he ate too much.,he ate too much,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,bunny rabbit is get/ing a tummyache.,bunny rabbit is getting a tummyache,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,dog is go/ing to get a doctor.,dog is going to get a doctor,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,dog pull/3s the doctor to picnic.,dog pulls the doctor to picnic,0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,doctor help/3s bunny rabbit.,doctor helps bunny rabbit,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,doctor : walk/3s with bunny rabbit.,doctor walks with bunny rabbit,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,and dog stay/3s and pick/3s up the picnic.,and dog stays and picks up the picnic,0 0 3 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,dog is push/ing : (um) : a coat.,dog is pushing a coat,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,and bunny rabbit is go/ing to get into the trailer.,and bunny rabbit is going to get into the trailer,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,and dog [+//]>,and dog,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,oh no [+_bch].,oh no,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,nothing [+_bch].,nothing,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,and bunny rabbit try/3s to get the balloon off : (of tra) of the trailer.,and bunny rabbit tries to get the balloon off of the trailer,0 0 0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,(dog go/3s) : dog (go/3s) : shout/3s.,dog shouts,0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,and bunny rabbit : try/3s to untie the balloon.,and bunny rabbit tries to untie the balloon,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,(dog and bunny : are try/ing) : bunny untie/ed the balloon.,bunny untied the balloon,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,and it went up in the air.,and it went up in the air,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,dog and bunny are try/ing to get the balloon.,dog and bunny are trying to get the balloon,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,dog (go) got very very mad at bunny rabbit.,dog got very very mad at bunny rabbit,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,a store man with a whole bunch of balloon/s.,a store man with a whole bunch of balloons,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,bunny come/3s and get/3s one and tie/3s it (to : trailer/s) (trailer) to the trailer.,bunny comes and gets one and ties it to the trailer,0 3 0 3 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,bunny : ask/3s : for : a balloon.,bunny asks for a balloon,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,: this is five bill/s.,this is five bills,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,and bunny has no money.,and bunny has no money,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,: then dog come/3s.,then dog comes,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,and (ask) they both ask : for : a balloon.,and they both ask for a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,then bunny rabbit run/3s off to doctor.,then bunny rabbit runs off to doctor,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,(doctor) : bunny rabbit ask/3s doctor : if he can have some money to buy a balloon.,bunny rabbit asks doctor if he can have some money to buy a balloon,0 0 3 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,doctor buy/3s a balloon for bunny rabbit (do) and dog.,doctor buys a balloon for bunny rabbit and dog,0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,now (bun) dog and bunny rabbit are happy at doctor [EU].,now dog and bunny rabbit are happy at doctor,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,there is a[EW:an] elephant talk/ing to a horse and play/ing basketball.,there is a elephant talking to a horse and playing basketball,0 0 0 0 6 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then he drop/ed it in a pile in the mud.,then he dropped it in a pile in the mud,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then he falled|fall[EW:fell] in the mud.,then he falled in the mud,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then he help/ed him.,then he helped him,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then he (um) : went to the[-:] park and play|play[EW:played].,then he went to the park and play,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,he (um) jump/ed in the water.,he jumped in the water,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then he (um) push/ed him in.,then he pushed him in,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then he falled|fall[EW:fell] in the water.,then he falled in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then he laugh/ed.,then he laughed,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then he (um) : runned|run[EW:ran] to the race.,then he runned to the race,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then he smile/ed.,then he smiled,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then he : sit|sit[EW:sat] on the chair.,then he sit on the chair,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then (um) he[-:] (um) was cold.,then he was cold,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,(one the) once upon a time (then) (um) there was (um) a lion.,once upon a time there was a lion,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then he flied|fly[EW:flew] the airplane.,then he flied the airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then he fight|fight[EW:fought].,then he fight,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then he[-:] (um) drop/ed his airplane in the water.,then he dropped his airplane in the water,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then (he um) it was gone in.,then it was gone in,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then (um he) they can not find it.,then they can not find it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then[-:] they were so mad.,then they were so mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then (they k) they are try/ing to reach the airplane.,then they are trying to reach the airplane,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then (they) (they) they can not reach it.,then they can not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then (they catched|catch[EW:caught]) they are go/ing to catch it with a (um) : refire[c].,then they are going to catch it with a refire,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then they catched|catch[EW:caught] it.,then they catched it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then they (k um) catched|catch[EW:caught] : it.,then they catched it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then : he could fly it again.,then he could fly it again,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,(um they) they maked|make[EW:made] a castle.,they maked a castle,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then the rabbit : (um) help/ed him.,then the rabbit helped him,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then he put/3s on lots of sand.,then he puts on lots of sand,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then it broke.,then it broke,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then they have to make it again.,then they have to make it again,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,(um) once upon a time they had a picnic.,once upon a time they had a picnic,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then they (um) eat everything.,then they eat everything,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,(then they) then their [~_coughs] tummy[EW:tummy/s] was[EW:were] big.,then their tummy was big,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,(then) [~_coughs] then (um) they were all full.,then they were all full,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then : they help/ed him.,then they helped him,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then they pull/ed his shirt : because (um) they were eat/ing lots of jam.,then they pulled his shirt because they were eating lots of jam,0 0 4 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then (they) he got better.,then he got better,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,once upon a time he pull/ed a wagon with a balloon.,once upon a time he pulled a wagon with a balloon,0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then (he) (um some) someone stole the balloon.,then someone stole the balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then it (um) : fly|fly[EW:flew] at the sky.,then it fly at the sky,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then (um) they can not reach it.,then they can not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then (um they) : they pop/ed it.,then they popped it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then they had lots of balloons.,then they had lots of balloons,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then they gived|give[EW:gave] lots of balloon/s.,then they gived lots of balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then : (um) they drop/ed it again[!].,then they dropped it again,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then he flied|fly[EW:flew] it.,then he flied it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,(then he almost) : then he give|give[EW:gave] it to them.,then he give it to them,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then (um[-:]) he[-:] give|give[EW:gave] it to them.,then he give it to them,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then : they had another balloon from him and him.,then they had another balloon from him and him,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,There is (a b) : a[EW:an] elephant and a giraffe.,There is a elephant and a giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,the elephant is play/ing with a ball.,the elephant is playing with a ball,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,but then : the ball is in the water.,but then the ball is in the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,so then (hor) giraffe : get/3s the ball.,so then giraffe gets the ball,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,look/3s like a cow *is get/ing the ball [EU].,looks like a cow getting the ball,3 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then the giraffe give/3s him the ball.,then the giraffe gives him the ball,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,They are swim/ing.,They are swimming,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,they are go/ing swim/ing.,they are going swimming,0 0 6 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,"but then[!] she say/3s [~_makes_noises_""mm_mm'].",but then she says,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,and this one : [~_makes_noises_'mm_mm'].,and this one,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,he get/3s a towel for her.,he gets a towel for her,0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then : she slip/3s on : something.,then she slips on something,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then she hurt her knee.,then she hurt her knee,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then : one man came.,then one man came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then she was cry/ing.,then she was crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then : (she[EW:he] help/ed her) he[!] help/ed her put on a bandage.,then he helped her put on a bandage,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then : she was okay.,then she was okay,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then she sit|sit[EW:sat] on the couch.,then she sit on the couch,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,Then he[!] has a[EW:an] airplane in his hand.,Then he has a airplane in his hand,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,she want/3s to play with the airplane.,she wants to play with the airplane,0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,but then she[!] play/3s with the airplane.,but then she plays with the airplane,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then it go/3s in the water.,then it goes in the water,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then : he get/3s[!] angry.,then he gets angry,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then the manager get/3s impossible [EU].,then the manager gets impossible,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then she[!] talk/3s to him[!] : and try/3s to get it.,then she talks to him and tries to get it,0 0 3 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,but he could not get it.,but he could not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then she was responsible for it.,then she was responsible for it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,I think : another girl can catch it.,I think another girl can catch it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,so she catched|catch[EW:caught] it.,so she catched it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,and she[!] catched|catch[EW:caught] it.,and she catched it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,and she catched|catch[EW:caught] it.,and she catched it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,and she catched|catch[EW:caught] it for him.,and she catched it for him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,and then he play/ed with it.,and then he played with it,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,there is a bunny : and a : hopperoo.,there is a bunny and a hopperoo,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,looks like a hopperoo.,looks like a hopperoo,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then they all[-:] make a castle.,then they all make a castle,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then : bunny : ruin/ed the castle.,then bunny ruined the castle,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,(now) : now : she is very sad.,now she is very sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then she cry/ed because (him) : (he[!] did it) : the bunny did it.,then she cried because the bunny did it,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,I see bunny and kangaroo : have/ing a good dinner.,I see bunny and kangaroo having a good dinner,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,but then : bunny get/3s full because he ate too much.,but then bunny gets full because he ate too much,0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then he get/3s a stomachache.,then he gets a stomachache,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then (hm) : doctor came.,then doctor came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,and then : she said some of these days [~_mutters_inaudibly] [EU].,and then she said some of these days,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,so he look/3s.,so he looks,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,she look/3s.,she looks,0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then xxx.,then,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,can you say that again?,can you say that again,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then he look/3s at the bubble/s.,then he looks at the bubbles,0 0 3 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then he make/3s him better.,then he makes him better,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,she has a puzzle.,she has a puzzle,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,and he come/3s back.,and he comes back,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then he look/3s.,then he looks,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,(he) she has a (bubble) balloon.,she has a balloon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then : he take/3s off the balloon.,then he takes off the balloon,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then it fly/3s away.,then it flies away,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then she is angry.,then she is angry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then there is[EW:are] no : more balloon/s.,then there is no more balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,so he pick|pick[EW:picked] a balloon first.,so he pick a balloon first,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,: then he has no money.,then he has no money,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,: then they look at the balloon/s : and take : one balloon.,then they look at the balloons and take one balloon,0 0 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then he ask/3s [~_pronounced_'askis'] (the doctor) the doctor [~__whispers].,then he asks the doctor,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,why is it do/ing that [+_bch]?,why is it doing that,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then he show/ed him.,then he showed him,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then : he gave him a dollar.,then he gave him a dollar,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,they got two balloon/s.,they got two balloons,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,(um) there was a horse and an elephant.,there was a horse and an elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,: and they saw a ball in the water.,and they saw a ball in the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,[~_no] (um) : and the horse (ran) swam to it.,and the horse swam to it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and he gave it to the elephant.,and he gave it to the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and the elephant was : happy.,and the elephant was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and : (the horse) [~_I_think_that_(i)s_a_bull_#_no] the horse : [~_I_(wi)ll_just_call_it_a_horse] was smile/ing.,and the horse was smiling,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,there was a horse and an elephant.,there was a horse and an elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and they saw water.,and they saw water,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and they were : there[?].,and they were there,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and they ran (fo) to the water.,and they ran to the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and the elephant ran fast.,and the elephant ran fast,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and the horse was right behind it.,and the horse was right behind it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and the elephant trip/ed and hurted|hurt[EW:hurt] herself.,and the elephant tripped and hurted herself,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and the : lifeguard elephant ran[-:] toward/s them.,and the lifeguard elephant ran towards them,0 0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and : he check/ed if she was okay.,and he checked if she was okay,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and : he put a bandaid on[-:] her cut and sat her down on a bench.,and he put a bandaid on her cut and sat her down on a bench,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and she was on the bench smile/ing.,and she was on the bench smiling,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,there was a : horse with a plane and an elephant that was : happy.,there was a horse with a plane and an elephant that was happy,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and the : horse (was : try/ing to mm) he was play/ing with the : plane.,and the horse he was playing with the plane,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and the elephant was watch/ing.,and the elephant was watching,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and the elephant grab/ed the plane and (sh) try/ed to play with it.,and the elephant grabbed the plane and tried to play with it,0 0 0 4 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and the elephant threw it.,and the elephant threw it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and it went in the water.,and it went in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and the horse was mad at the elephant.,and the horse was mad at the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and a lifeguard came.,and a lifeguard came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and : (uh) he saw the plane in the water.,and he saw the plane in the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and he try/ed to reach it.,and he tried to reach it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and : the horse start/ed to cry.,and the horse started to cry,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and (the) : (a lady) a lady elephant came with a fish/ing net.,and a lady elephant came with a fishing net,0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and she : got it out for him.,and she got it out for him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and she[-:] gave it to him.,and she gave it to him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and he was happy.,and he was happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,(um) : there was[EW:were] two bunny/s in a sandbox.,there was two bunnies in a sandbox,0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and they built a sandcastle.,and they built a sandcastle,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and the one[!] : put lot/s of sand in a[-:] : pail.,and the one put lots of sand in a pail,0 0 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and he dump/ed it over the sandcastle.,and he dumped it over the sandcastle,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and he : scream/ed when the sandcastle broke.,and he screamed when the sandcastle broke,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,(and the other o) and : the other bunny was cry/ing.,and the other bunny was crying,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and the : other bunny was stand/ing up : (l) look/ing up.,and the other bunny was standing up looking up,0 0 0 0 0 6 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and they stop/ed for a picnic.,and they stopped for a picnic,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and one was : hungry.,and one was hungry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and then he got full : and : then : dizzy.,and then he got full and then dizzy,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and the other one ran for help.,and the other one ran for help,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and she pull/ed the lady[-:] : toward/s him.,and she pulled the lady towards him,0 0 4 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,[~_oh] : that was a doctor.,that was a doctor,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,(uh) : and : she said he is dizzy I think.,and she said he is dizzy I think,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,I do not know [+_bch].,I do not know,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and[-:] he was okay.,and he was okay,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,he was[!] okay.,he was okay,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,(um) there was[EW:were] two bunny/s pull/ing a wagon.,there was two bunnies pulling a wagon,0 0 0 1 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,(and the : uh) and that is all [+_bch].,and that is all,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and : the boy bunny was go/ing to [~_gonna] to grab the balloon.,and the boy bunny was going to to grab the balloon,0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and he untie/ed it.,and he untied it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and the other : girl bunny was yell/ing.,and the other girl bunny was yelling,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and he let it go.,and he let it go,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and he was try/ing to grab it.,and he was trying to grab it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,then the : other one was mad.,then the other one was mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and they saw : (another) a guy hold/ing balloon/s.,and they saw a guy holding balloons,0 0 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and : the boy (bun) rabbit (ra) ran up to him and : told[EW:ask/ed] him if he could have a balloon.,and the boy rabbit ran up to him and told him if he could have a balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,(and he had no) and : he had no money.,and he had no money,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and : they were sad.,and they were sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and : the other bunny saw : a lady stand/ing there.,and the other bunny saw a lady standing there,0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and he ask/ed her if she has|have[EW:had] enough to buy a : balloon.,and he asked her if she has enough to buy a balloon,0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and : she did.,and she did,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and : they were happy.,and they were happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,a giraffe and the elephant (want) were play/ing : ball.,a giraffe and the elephant were playing ball,0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and (um) : the ball fell into the water.,and the ball fell into the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and the (um) giraffe : went in to get the ball.,and the giraffe went in to get the ball,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and then the giraffe gave it to the elephant.,and then the giraffe gave it to the elephant,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and (then um) : then they play/ed (um) : ball.,and then they played ball,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,(um) : the elephant and the giraffe want/ed to go in the pool[-:].,the elephant and the giraffe wanted to go in the pool,0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and the elephant was run/ing.,and the elephant was running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and she (um) : was run/ing too fast.,and she was running too fast,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and then she fell and (hur) (hur) hurt her knee.,and then she fell and hurt her knee,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and then the coach came.,and then the coach came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and then (um) a lifeguard put a bandaid on.,and then a lifeguard put a bandaid on,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and the coach (um) : help/ed her go on the bench.,and the coach helped her go on the bench,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and then the coach was mad because the sign said no run/ing.,and then the coach was mad because the sign said no running,0 0 0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,(um) : the giraffe[-:] want/ed to fly his airplane.,the giraffe wanted to fly his airplane,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and he did.,and he did,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and then the elephant took it from him.,and then the elephant took it from him,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and she threw it in the water.,and she threw it in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and : the giraffe was mad at her.,and the giraffe was mad at her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and[-:] the coach : came.,and the coach came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and the coach look/ed at it.,and the coach looked at it,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and the lifeguard try/ed to get it.,and the lifeguard tried to get it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and the (um) : lifeguard (tr) could not get it.,and the lifeguard could not get it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and then (um) this other : elephant : got (um) : a net.,and then this other elephant got a net,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and : she got it.,and she got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and : she gave it to the (um) : giraffe.,and she gave it to the giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and then : the giraffe was happy again.,and then the giraffe was happy again,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,there was a dog make/ing (um) a sandcastle (and : a) and a bunny.,there was a dog making a sandcastle and a bunny,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,(mmm) the bunny was (um) : take/ing the (s) sand[-:].,the bunny was taking the sand,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,then he dump/ed it on the sandcastle.,then he dumped it on the sandcastle,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and[-:] the bunny : was (um) : surprise/ed.,and the bunny was surprised,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and : the dog was cry/ing.,and the dog was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,a dog and a bunny were go/ing to make a picnic.,a dog and a bunny were going to make a picnic,0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and the bunny : (um) was eat/ing.,and the bunny was eating,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and the bunny was full.,and the bunny was full,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and he was dizzy.,and he was dizzy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,(his mo) : (the) : the bunny/z mom came.,the bunny's mom came,0 2 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and : the dog was pull/ing the mom.,and the dog was pulling the mom,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and (the bunny[-:] : uh) : the mom : saw : the bunny.,and the mom saw the bunny,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and then she point/ed to her head.,and then she pointed to her head,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and then the bunny and the mom went home.,and then the bunny and the mom went home,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,the dog and the bunny[-:] were go/ing (to) : to get (a) balloon/s.,the dog and the bunny were going to get balloons,0 0 0 0 0 0 6 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,the bunny : was go/ing to get the balloon.,the bunny was going to get the balloon,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,the bunny was take/ing it off.,the bunny was taking it off,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and then : they were try/ing to get the balloon.,and then they were trying to get the balloon,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and then : the dog was mad.,and then the dog was mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and (um) : there is a man with balloon/s.,and there is a man with balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and then (the bunny) the bunny bought one.,and then the bunny bought one,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and : he was get/ing out the money.,and he was getting out the money,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and he did not have any money.,and he did not have any money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and his mom came.,and his mom came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and then (um : the) the bunny said to his mom : could you buy me a balloon?,and then the bunny said to his mom could you buy me a balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and then the mom did.,and then the mom did,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and then the dog and the bunny had a balloon.,and then the dog and the bunny had a balloon,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,(Um : um : okay) the elephant and the giraffe they want to play ball.,the elephant and the giraffe they want to play ball,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and (he) maybe he say/3s yes : or no.,and maybe he says yes or no,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,oh no [EX]!,oh no,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and it fall[*ip] down in the pool.,and it fall down in the pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and the giraffe was go/ing to (get it and swim it) get it and swim : and give it to elephant.,and the giraffe was going to get it and swim and give it to elephant,0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and he said[ip] [~_high_pitched_voice] thank you[!].,and he said thank you,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and he said[ip] [~_high_pitched_voice] I love[!] you.,and he said I love you,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,That again [+_bch] [EX].,That again,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,(okay) *the elephant and the giraffe are all done to [EU].,elephant and the giraffe are all done to,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,they see the porch and (not to do in the) (no) (no running in the swim/ing)[EARG] no running [EU].,they see the porch and no running,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and[-:] he want/*3s to go on the (be) bouncy thing and go down *in the water [EU].,and he want to go on the bouncy thing and go down the water,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and maybe the giraffe say[*i3] yes.,and maybe the giraffe say yes,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,(and the) and elephant slip/ed.,and elephant slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,(and) and the giraffe is[aux] go/ing to get her not to fall down [EU].,and the giraffe is going to get her not to fall down,0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,the elephant cis[cop] hurt.,the elephant cis hurt,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and the elephant he is[aux] cry/ing.,and the elephant he is crying,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,(and the giraffe) and the giraffe is[aux] help/ing (her) her.,and the giraffe is helping her,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,daddy is[aux] come/ing to her.,daddy is coming to her,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,(he is hurt) he cis[cop] a little hurt.,he cis a little hurt,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,(and) and he come[*ip] to him.,and he come to him,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,it hurt/3s.,it hurts,0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and it hold/*3s still.,and it hold still,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,it will[modal] not hurt.,it will not hurt,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and (it) who cis[cop] (this) this giraffe Mikey.,and who cis this giraffe Mikey,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and he came[ip].,and he came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and he look/ed at it.,and he looked at it,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and it was[aux] bleed/ing.,and it was bleeding,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,: and (the giraffe) (elephant) (giraffe) (elephant) (the giraffe is his) Mikey he cwas[cop] the Mikey giraffe [EU].,and Mikey he cwas the Mikey giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,he was[aux] (helping) help/ing get the elephant home.,he was helping get the elephant home,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and that said[ip] no run/ing in the sliping [EU].,and that said no running in the sliping,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,do not slip up.,do not slip up,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,do not run no.,do not run no,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,(And : the elephant was try/ing to di) (he wen) : and Mikey said[ip] : you want to [~_wanna] play airplane ?,and Mikey said you want to play airplane,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and the elephant said[ip] yes.,and the elephant said yes,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,: and it fly/3s up(*3) the air [EU].,and it flies up the air,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,: and Mikey said[ip] no(*3) (you are gonna grab) you grab it!,and Mikey said no you grab it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,I am[aux] tell/ing my dad on you!,I am telling my dad on you,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,[~_childish_voice] whoops : now you put it (on the) on the water.,whoops now you put it on the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,[~_childish_voice] I am[aux] go/ing to[:_gonna] get it.,I am going to get it,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,you get it.,you get it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and he got[ip] mad.,and he got mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,he cis[cop] not happy.,he cis not happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and he said[ip] I cam[cop] not be[ninfl] your best friend ever : (and) LaLa [EU].,and he said I cam not be your best friend ever LaLa,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and the guy said[ip] : [~_deep_voice] (wh) why *did[aux] [EV] you drop that (el) : LaLa [EU]?,and the guy said why you drop that LaLa,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,[~_childish_voice] (um) I was[aux] grab/ing it and : make/*ing him mad.,I was grabbing it and make him mad,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,[~_childish_voice] he will[modal] not be my best friend : Mikey.,he will not be my best friend Mikey,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,[~_childish_voice] and I drop|drop/*ed it on the water.,and I drop it on the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,[~_deep_voice] and that cis[cop] not very nice.,and that cis not very nice,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,[~_childish_voice] and because I just drop/*ed it will go down under water [EU].,and because I just drop it will go down under water,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,[~_childish_voice] and : what happen/ed.,and what happened,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,[~_childish_voice] I did[aux] not do it.,I did not do it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,[~_childish_voice] Mikey cis[cop] not my best friend no[EW:any] more : okay?,Mikey cis not my best friend no more okay,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,[~_deep_voice] I can[modal] not reach it.,I can not reach it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and Mikey is[aux] cry/ing.,and Mikey is crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and (ul) LaLa put it on the water.,and LaLa put it on the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and now we can[modal] not reach it.,and now we can not reach it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and : elephant mother came/ed[*ip] : to get (the elephant) : (uh) Mikey/z plane.,and elephant mother cameed to get Mikey's plane,0 0 0 4 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and her[EW:she] (gr) came[ip] [EARG] grab it and give[*ip] it to Mikey [EU].,and her came grab it and give it to Mikey,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and [~_adult_voice] give[*ip] to Mikey [EU].,and give to Mikey,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,[~_childish_voice] it cis[cop] already : on your hand.,it cis already on your hand,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and Mikey said[ip] : do[aux] not grab my toy.,and Mikey said do not grab my toy,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,ask first.,ask first,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and : the elephant said[ip] [~_childish_voice] : *can[modal] I play *with your plane please [EU]?,and the elephant said I play your plane please,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,No [~_!] and (you dr) you drop/*ed my plane.,No and you drop my plane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,oh : okay : you can[modal] play awhile.,oh okay you can play awhile,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and you give it back.,and you give it back,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,a kangaroo and a bunny rabbit : they want to play sandcastle/s.,a kangaroo and a bunny rabbit they want to play sandcastles,0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and the bunny rabbit is[aux] build/ing his own castle.,and the bunny rabbit is building his own castle,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and maybe (the :) (the) (mi um) his name cis[cop] : (s) Dina.,and maybe his name cis Dina,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,that cis[cop] a boy name.,that cis a boy name,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and her name cis[cop] (Di) Darling.,and her name cis Darling,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,okay [EX].,okay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and : Darling maybe he is[aux] go/ing to[:_gonna] knock [+//]>,and Darling maybe he is going to knock,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,but : what do[aux] you call the bunny/z name [+_bch]?,but what do you call the bunny's name,0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,I think you call/ed it Darling.,I think you called it Darling,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,No I call/ed that[!] Darling [+_bch].,No I called that Darling,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,Darwin [EX].,Darwin,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,yeah [+_bch] [EX].,yeah,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,Darwin [EX].,Darwin,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,Darwin : (maybe Da) maybe her[EW:she] is[aux] go/ing to[:_gonna] knock (bunny) (Darwin) bunny/z castle down.,Darwin maybe her is going to knock bunny's castle down,0 0 0 0 6 0 0 2 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and (Darling : who is get/ing) and bunny rabbit *is[aux] just put/ing the sand on Darling/z castle [EU].,and and bunny rabbit just putting the sand on Darling's castle,0 0 0 0 0 6 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,: (and) : and I said[ip] sorry[!].,and I said sorry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and Darling was[aux] cry/ing.,and Darling was crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,(and her sai) and maybe I said[ip] sorry.,and maybe I said sorry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,(i) maybe we *can build another one [EU].,maybe we build another one,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,(Um) Darling cis[cop] : *a six year old kid [EU].,Darling cis six year old kid,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and the bunny rabbit cis[cop] : eight.,and the bunny rabbit cis eight,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,(um no) bunny rabbit cis[cop] nine.,bunny rabbit cis nine,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,I forgot[ip] : I made[ip] an accident [+_bch].,I forgot I made an accident,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,that cis[cop] okay.,that cis okay,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,you can[modal] turn the page [+_bch].,you can turn the page,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and Darling :*is[aux] put/ing the picnic in her own space [EU].,and Darling putting the picnic in her own space,0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and bunnyrabbit silly want/*3s to eat a lot [EU].,and bunnyrabbit silly want to eat a lot,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and (he) bunny rabbit has[aux] got a (big) big tummyache.,and bunny rabbit has got a big tummyache,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and the bunny rabbit is[aux] go/ing to be throw/ing up.,and the bunny rabbit is going to be throwing up,0 0 0 0 0 6 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and Darling is[aux] call/ing the doctor.,and Darling is calling the doctor,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,bunny rabbit cis[cop] in danger.,bunny rabbit cis in danger,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,he do[*i3] not feel good.,he do not feel good,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and the bunnyrabbit is[aux] so feel/ing not good [EU].,and the bunnyrabbit is so feeling not good,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and he is[aux] feel/ing sick.,and he is feeling sick,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and the bunnyrabbit is[aux] feel/ing not sick (he) because he has[aux] got sick about : now cis[cop] his birthday now [EU].,and the bunnyrabbit is feeling not sick because he has got sick about now cis his birthday now,0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and bunny rabbit : he say[*i3] hi.,and bunny rabbit he say hi,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,( I am not) I cam[cop] [~_counts_from_one_to_nine].,I cam,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,(nine) I cam[cop] nine : ( I am) because I had[ip] my birthday.,I cam nine because I had my birthday,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,"(and) and Darling, her[EW:she] cis[cop] : eight now.",and Darling her cis eight now,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,(wow) nice big balloon.,nice big balloon,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,(almost is) the balloon is (gonna) almost[!] go/ing to[:__gonna] pop!,the balloon is almost going to pop,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and tick(*10).,and tick,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,no(*3) Darling said.,no Darling said,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,do not take that out.,do not take that out,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,that will fly away again.,that will fly away again,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,no[-:]!,no,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,[~_makes_'grrr'sound] (and her got) and Darling has got mad.,and Darling has got mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,: get your own balloon.,get your own balloon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,I am get/ing my balloon.,I am getting my balloon,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and I am get/ing my balloon.,and I am getting my balloon,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,I have two balloon[EW:balloons].,I have two balloon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,okay.,okay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,your wish.,your wish,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,go.,go,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,: you five cent/s [EU].,you five cents,0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,: well you can have one.,well you can have one,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,you do not have one.,you do not have one,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,you do not get money.,you do not get money,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,you do not get one.,you do not get one,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,: and the bunny rabbit said doctor you have money?,and the bunny rabbit said doctor you have money,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,five cent/s [EU].,five cents,0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,I am go/ing to[:_gonna] get (a balloon) two balloon/s.,I am going to get two balloons,0 0 6 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and he give|give[EW:gave] him one.,and he give him one,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,now (hi) all balloon/s are gone.,now all balloons are gone,0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,it fly/3s away.,it flies away,0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,(ye) and they have : two of them.,and they have two of them,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,they have one.,they have one,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,One day there was a girl.,One day there was a girl,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and (she boun) she was bounce/ing her ball on the street.,and she was bouncing her ball on the street,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and she met her friend.,and she met her friend,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,(then the) then her ball tumble/ed into the pool.,then her ball tumbled into the pool,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,so her friend jump/ed into the pool and start/ed swim/ing after it.,so her friend jumped into the pool and started swimming after it,0 0 0 4 0 0 0 0 4 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and he brought it back to the girl.,and he brought it back to the girl,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,(then he said) then the girl said thank you very much.,then the girl said thank you very much,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,One day the two friend/s were at the pool.,One day the two friends were at the pool,0 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and they decide/ed to go swim/ing.,and they decided to go swimming,0 0 4 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,then the girl said let us go on the diving board : and start/ed run/ing towards it.,then the girl said let us go on the diving board and started running towards it,0 0 0 0 0 0 0 0 0 0 0 0 4 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,she fell and hurt her knee.,she fell and hurt her knee,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,then the lifeguard came.,then the lifeguard came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and he put on a bandaid.,and he put on a bandaid,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,then he sat her down on the bench.,then he sat her down on the bench,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and he point/ed to the sign that said no run/ing.,and he pointed to the sign that said no running,0 0 4 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,One day[-:] the two friend/s were at the pool.,One day the two friends were at the pool,0 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and (one) the boy had (an ai) an airplane with him.,and the boy had an airplane with him,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and he start/ed to make it fly with sound effect/s.,and he started to make it fly with sound effects,0 0 4 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,the girl was so dazzle/ed that she grab/ed it away from him and start/ed play/ing with it.,the girl was so dazzled that she grabbed it away from him and started playing with it,0 0 0 0 4 0 0 4 0 0 0 0 0 4 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and then she drop/ed it into the pool.,and then she dropped it into the pool,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,the boy got very mad at her.,the boy got very mad at her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,then the lifeguard came.,then the lifeguard came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and they explain/ed what happen/ed.,and they explained what happened,0 0 4 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,the lifeguard try/ed to reach for the plane.,the lifeguard tried to reach for the plane,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,but it was too far (out in the wa) (of the wa) in the water for him to reach.,but it was too far in the water for him to reach,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and (the : life) (the) the lifeguard did not know what to do.,and the lifeguard did not know what to do,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and neither did anyone else.,and neither did anyone else,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,the giraffe start/ed to cry.,the giraffe started to cry,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,then[!] a lady came by with a net[!].,then a lady came by with a net,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and she reach/ed in and got the airplane out.,and she reached in and got the airplane out,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,the boy was happy again.,the boy was happy again,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,(he hug/ed) he hug/ed the airplane.,he hugged the airplane,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,once upon a time there were two bunny/s play/ing at the beach.,once upon a time there were two bunnies playing at the beach,0 0 0 0 0 0 0 1 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and they built a sandcastle.,and they built a sandcastle,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,the other bunny start/ed add/ing a lot.,the other bunny started adding a lot,0 0 0 4 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,they add/ed a lot onto their sandcastle.,they added a lot onto their sandcastle,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and they were enjoy/ing their time.,and they were enjoying their time,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,(then) then (the bunny) one of the bunny/s (accidentally) [~_no] dump/3s a pile of sand onto the sandcastle : which made it fall down.,then one of the bunnies dumps a pile of sand onto the sandcastle which made it fall down,0 0 0 0 1 3 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,(the) (the bunny) the girl bunny was really upset.,the girl bunny was really upset,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and she start/ed to cry.,and she started to cry,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,one morning two bunny/s were walk/ing in the wood/s with two picnic basket/s.,one morning two bunnies were walking in the woods with two picnic baskets,0 0 0 1 0 6 0 0 1 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,(one) once they found a nice spot they start/ed to unpack their lunch/s.,once they found a nice spot they started to unpack their lunches,0 0 0 0 0 0 0 4 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,(the s) (the) one of the bunny/s ate his lunch very very quickly.,one of the bunnies ate his lunch very very quickly,0 0 0 1 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and he had a terrible stomachache.,and he had a terrible stomachache,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,(then he) and the girl bunny ran to the doctor : and pull/ed her over towards : her friend.,and the girl bunny ran to the doctor and pulled her over towards her friend,0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,(the doctor said) the doctor point/ed : towards his head and said he must have a terrible headache or a stomachache.,the doctor pointed towards his head and said he must have a terrible headache or a stomachache,0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,but when the boy felt better the doctor (took her) took him with her.,but when the boy felt better the doctor took him with her,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,once upon a time : (there was a girl bu) there was a girl walk/ing : a pull/ing a wagon with a balloon tie/ed to one of the wheel/s.,once upon a time there was a girl walking a pulling a wagon with a balloon tied to one of the wheels,0 0 0 0 0 0 0 0 6 0 6 0 0 0 0 0 4 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and then she met her friend come/ing by.,and then she met her friend coming by,0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,he saw the balloon.,he saw the balloon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and (he re) he got really excite/ed.,and he got really excited,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,then he try/ed to untie the balloon.,then he tried to untie the balloon,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and the balloon flew up high because they could not hang onto it.,and the balloon flew up high because they could not hang onto it,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,then the girl got very very mad at her friend.,then the girl got very very mad at her friend,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and they saw a balloon salesman : come/ing by.,and they saw a balloon salesman coming by,0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,so the boy stroll/ed up to him : and ask/ed for a balloon.,so the boy strolled up to him and asked for a balloon,0 0 0 4 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,(then the) (then the balloon) then the balloon man said that the balloon/s were five cent/s each.,then the balloon man said that the balloons were five cents each,0 0 0 0 0 0 0 1 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,they both came (up to) up to him and look/ed at the balloon/s (with wide) with wide open eye/s.,they both came up to him and looked at the balloons with wide open eyes,0 0 0 0 0 0 0 4 0 0 1 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,(then they saw uh) then they saw the doctor.,then they saw the doctor,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and the boy went up to her.,and the boy went up to her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and he said can we get some balloon/s?,and he said can we get some balloons,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and the doctor gave the man ten cent/s so they could each get one balloon.,and the doctor gave the man ten cents so they could each get one balloon,0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and then they were both happy.,and then they were both happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,(uh) a giraffe and a[EW:an] elephant are : (uh) go/ing swim/ing.,a giraffe and a elephant are going swimming,0 0 0 0 0 0 6 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,but the : elephant is play/ing with her ball.,but the elephant is playing with her ball,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,then the elephant by accident drop/3s it into the water.,then the elephant by accident drops it into the water,0 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and[-:] (uh : the : uh) there is no dive/ing allow/ed in the water[-:].,and there is no diving allowed in the water,0 0 0 0 6 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and then the[-:] : (uh) : giraffe swim/3s in the water and grab/3s the ball.,and then the giraffe swims in the water and grabs the ball,0 0 0 0 3 0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and then : the giraffe give/3s the ball back to the elephant.,and then the giraffe gives the ball back to the elephant,0 0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and[-:] (um) : the giraffe is all wet.,and the giraffe is all wet,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and (sh) the[-:] elephant is happy.,and the elephant is happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,(um) the elephant and the giraffe : finds|find[EW:find](uh) a diving board.,the elephant and the giraffe finds a diving board,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,the elephant want/3s to go on the diving board.,the elephant wants to go on the diving board,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,so do/3s the giraffe.,so does the giraffe,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,(um) the elephant slip/3s.,the elephant slips,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,but the giraffe do/3s not.,but the giraffe does not,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,the elephant (hurt/3s) : hurt/3s itself.,the elephant hurts itself,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and : the giraffe is (um : um) : nervous.,and the giraffe is nervous,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,the giraffe : (and) : is with the elephant.,the giraffe is with the elephant,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and the lifeguard elephant came to see what was the matter with the girl elephant.,and the lifeguard elephant came to see what was the matter with the girl elephant,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,the : lifeguard put a bandaid on the elephant/z knee.,the lifeguard put a bandaid on the elephant's knee,0 0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and : the lifeguard take/3s (um) the elephant to a bench.,and the lifeguard takes the elephant to a bench,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and the : lifeguard show/3s : (um) the girl elephant : the[-:] no run/ing sign.,and the lifeguard shows the girl elephant the no running sign,0 0 0 3 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,done [+_bch].,done,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,(um) the giraffe : brang|bring[EW:brought] a[EW:an]: airplane to play with.,the giraffe brang a airplane to play with,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and the elephant : is happy to see the giraffe.,and the elephant is happy to see the giraffe,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,the giraffe is play/ing with his (uh) plane.,the giraffe is playing with his plane,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and : the elephant is just stand/ing there : stare/ing at the plane.,and the elephant is just standing there staring at the plane,0 0 0 0 0 6 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,then the elephant scoop/3s the[-:] plane out of the giraffe/z hand : and[-:] (uh) : start/3s play/ing with it.,then the elephant scoops the plane out of the giraffe's hand and starts playing with it,0 0 0 3 0 0 0 0 0 2 0 0 3 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,the elephant : and the giraffe is[EW:are] worry/ed that the plane would sink at the bottom : of the pool.,the elephant and the giraffe is worried that the plane would sink at the bottom of the pool,0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,(um) the giraffe is : (uh) angry at the elephant.,the giraffe is angry at the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,the lifeguard come/3s : and[-:] see/3s what is[-:] the matter.,the lifeguard comes and sees what is the matter,0 0 3 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,the[-:] : girl elephant tell/3s (h) : the lifeguard everything.,the girl elephant tells the lifeguard everything,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and the lifeguard is like hmm ?,and the lifeguard is like hmm,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and then the lifeguard try/3s to get the airplane[-:].,and then the lifeguard tries to get the airplane,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and the giraffe and[-:] : the[-:] : elephant are : worry/ed he would not sink.,and the giraffe and the elephant are worried he would not sink,0 0 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and then the : giraffe is cry/ing for his airplane back.,and then the giraffe is crying for his airplane back,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and then this : (gi) other : elephant : with (um) a fishing net : come/3s and give/3s them a hand.,and then this other elephant with a fishing net comes and gives them a hand,0 0 0 0 0 0 0 0 0 3 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and (the girl uh) the[-:] : big girl elephant scoop/3s the airplane up.,and the big girl elephant scoops the airplane up,0 0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and[-:] the giraffe is still cry/ing.,and the giraffe is still crying,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,then the giraffe is happy : that (the : girl eleph) the big girl elephant : got the plane back for him.,then the giraffe is happy that the big girl elephant got the plane back for him,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and : then (um) : the : giraffe was love/ing his (pl) airplane again.,and then the giraffe was loving his airplane again,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,(um) there is a rabbit.,there is a rabbit,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and[-:] there is something [~_I_do_n(o)t_know_what_it_is] : has a funny nose.,and there is something has a funny nose,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,but the rabbit and that : little guy are dig/ing[!].,but the rabbit and that little guy are digging,0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and : the little guy (is make/ing a san) made a sandcastle.,and the little guy made a sandcastle,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,then the : bunny : had a pail (with) : and dig (um) : sand into the pail [EU].,then the bunny had a pail and dig sand into the pail,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and (the[-:]) : it look/3s like the dog : (um are) is (make/ing a) (still make/3s) try/ing to make a sandcastle.,and it looks like the dog is trying to make a sandcastle,0 0 3 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,now the bunny was pour/ing (um) : the[-:] (uh) sand onto the dog/z sandcastle.,now the bunny was pouring the sand onto the dog's sandcastle,0 0 0 0 6 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and the dog is : wonder/ing what he is : do/ing.,and the dog is wondering what he is doing,0 0 0 0 6 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,then : (um : uh) the bunny is like (um) : worry/ed.,then the bunny is like worried,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,he thought that (um) the whole entire sandcastle would be destroy/ed.,he thought that the whole entire sandcastle would be destroyed,0 0 0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,but the : dog is like [~_makes_sound_'huh_ya']!,but the dog is like,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,(um) the dog is cry/ing.,the dog is crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and the bunny is like : [~_hums] : try/ing to ignore it.,and the bunny is like trying to ignore it,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,finish/ed [+_bch].,finished,4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,(um) once upon a time there is (uh) : the dog and the rabbit go/ing for a picnic.,once upon a time there is the dog and the rabbit going for a picnic,0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,the[-:] : rabbit brang|bring[EW:brought] a whole bunch of junk food.,the rabbit brang a whole bunch of junk food,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,the dog[-:] (um) brang|bring[EW:brought] (s) (norm) : healthy food.,the dog brang healthy food,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,(um) : the rabbit got stuff/ed.,the rabbit got stuffed,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and the dog is still eat/ing.,and the dog is still eating,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and the : rabbit do/3s not feel so good.,and the rabbit does not feel so good,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and the dog is worry/ed what happen/ed to him.,and the dog is worried what happened to him,0 0 0 0 4 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and then : the dog find/3s a doctor : because the rabbit ain't[EW:is][EW:not] feel/ing so good.,and then the dog finds a doctor because the rabbit ain't feeling so good,0 0 0 0 3 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and the dog pull/3s the doctor to the rabbit.,and the dog pulls the doctor to the rabbit,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and (the rabbit) : the[-:] doctor check/3s what is wrong with the rabbit.,and the doctor checks what is wrong with the rabbit,0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and : the rabbit get/3s tooken|take[EW:taken] to the hospital.,and the rabbit gets tooken to the hospital,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,(um) the dog : is pull/ing his wagon : with the balloon tie/ed to it.,the dog is pulling his wagon with the balloon tied to it,0 0 0 6 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and[-:] the dog seen|see[EW:saw] the rabbit.,and the dog seen the rabbit,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,the dog still had (his wagon) : [~_I_mean] her wagon.,the dog still had her wagon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and the balloon was was still on there.,and the balloon was was still on there,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and then the : dog is like yell/ing at the rabbit for try/ing to take off : the[-:] dog/z balloon.,and then the dog is like yelling at the rabbit for trying to take off the dog's balloon,0 0 0 0 0 0 6 0 0 0 0 6 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and the balloon float/s away.,and the balloon floats away,0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and the : dog and the rabbit are try/ing to get the balloon.,and the dog and the rabbit are trying to get the balloon,0 0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,(um) the dog is angry[-:] at the rabbit : and very mad.,the dog is angry at the rabbit and very mad,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and then the rabbit see/3s (um) : a[-:] bigger rabbit with balloon/s.,and then the rabbit sees a bigger rabbit with balloons,0 0 0 0 3 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,the rabbit ask/3s if he can have a balloon.,the rabbit asks if he can have a balloon,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,but : he could not buy one for the dog.,but he could not buy one for the dog,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,the balloon/s were five cent/s.,the balloons were five cents,0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and the rabbit did not have any money on him.,and the rabbit did not have any money on him,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,the (r) dog and the rabbit were worry/ed they would not get a balloon.,the dog and the rabbit were worried they would not get a balloon,0 0 0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,then the rabbit saw that (doc) : doctor rabbit again : and[-:] (um) [-:] ask/ed : the doctor rabbit if she can buy : the dog and the rabbit a balloon.,then the rabbit saw that doctor rabbit again and asked the doctor rabbit if she can buy the dog and the rabbit a balloon,0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,(and) : and she : bought (uh) the dog and the rabbit (uh) : a balloon for both of them.,and she bought the dog and the rabbit a balloon for both of them,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and then the rabbit and the dog were happy.,and then the rabbit and the dog were happy,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,so was the[-:] doctor.,so was the doctor,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,the elephant is : play/ing[-:] basketball.,the elephant is playing basketball,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,the : ball go|go[EW:go/3s] [?] in the water.,the ball go in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,and : (uh) : (catched|catch[EW:catch]) : catch the : ball in the water.,and catch the ball in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,and (the : uh) he give|give[EW:gave] it *to the elephant [EU].,and he give it the elephant,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,and[-:] he get up : in the water [EU].,and he get up in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,(um : jump/ed uh) : jump in the water.,jump in the water,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,sorry what did you say?,sorry what did you say,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,jump in the water [+_bch].,jump in the water,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,oh okay can you use your loud voice?,oh okay can you use your loud voice,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,yeah [+_bch].,yeah,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,fall[-:][?] off.,fall off,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,run.,run,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,and the : elephant : [EU].,and the elephant,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,anything more or shall I turn?,anything more or shall I turn,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,turn [+_bch].,turn,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,okay.,okay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,fall off.,fall off,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,her[EW:she] cry|cry[EW:cry/3s].,her cry,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,put *on a bandaid [EU].,put a bandaid,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,sit on the : bench.,sit on the bench,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,and the elephant : is mad.,and the elephant is mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,he got a toy.,he got a toy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,"did you want to turn them yourself, okay [~_referring_to_pages].",did you want to turn them yourself okay,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,(uh) : he is fly/ing with the : airplane.,he is flying with the airplane,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,(and the w) and the elephant take|take[EW:took] away the airplane.,and the elephant take away the airplane,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,and it go|go[EW:went] in the water[-:].,and it go in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,it is go/ing : in the side the water [EU].,it is going in the side the water,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,it is inside the water.,it is inside the water,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,(what)[~!_whispering] : *the plane is go/ing down [EU].,plane is going down,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,(this) the elephant is try/ing to get it.,the elephant is trying to get it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,(the) : he is cry/ing.,he is crying,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,catch with a net [EU].,catch with a net,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,it is : got it [EU].,it is got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,and : the elephant give|give[EW:gave] it [EU].,and the elephant give it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,him[EW:he] *was happy [EU].,him happy,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,they are make/ing a sandcastle[-:].,they are making a sandcastle,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,do you want to turn?,do you want to turn,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,and he put some more sand.,and he put some more sand,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,and[-:] : more sand : the window [EU].,and more sand the window,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,and it fall|fall[EW:fell] down.,and it fall down,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,and try/ing make it again [EU].,and trying make it again,0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,end [+_bch].,end,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,they are have/ing food.,they are having food,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,they are eat/ing : *a sandwich [EU].,they are eating sandwich,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,they are : is full [EU].,they are is full,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,(his belly is get/ing) : [~_EXA:_what_(i)s_that] his belly is get/ing : bigger.,his belly is getting bigger,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,oh can you use your loud voice?,oh can you use your loud voice,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,(uh) he is the doctor.,he is the doctor,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,and (the) : it is not help/ing.,and it is not helping,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,hm?,hm,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,help/ing [+_bch].,helping,6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,: help.,help,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,: (she) he is eat/ing lot/s of food.,he is eating lots of food,0 0 6 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,and he go|go[EW:go/3S] with the doctor.,and he go with the doctor,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,they are[-:] : got a balloon [EU].,they are got a balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,and they are : want to [~_wanna] fly it with the balloon [EU].,and they are want to fly it with the balloon,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,they let it go : in the sky.,they let it go in the sky,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,and one is try/ing get it [EU].,and one is trying get it,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,well : pop.,well pop,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,and so get a other one [EU].,and so get a other one,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,and : he was said no [EU].,and he was said no,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,what is that.,what is that,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,said no [+_bch].,said no,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,and : get dollar [EU].,and get dollar,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,one more.,one more,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,and that is : it.,and that is it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,and : go with the doctor.,and go with the doctor,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,and (get) the doctor will[?] get other[EW:another] balloon[?].,and the doctor will get other balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,more money [EU].,more money,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,the (uh) : one : got two : balloon/s[-:].,the one got two balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,a giraffe *is play/ing with a[EW:an] elephant [EU].,a giraffe playing with a elephant,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,like they are play/ing with the ball.,like they are playing with the ball,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and it fell into the pool.,and it fell into the pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,(and) and then (the g) (the) the zebra (uh s) swam to get it.,and then the zebra swam to get it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,(and the) (the) (and the gira) (and) and the giraffe got it and gave it to the elephant.,and the giraffe got it and gave it to the elephant,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and (um) the elephant was okay.,and the elephant was okay,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,but the giraffe was all wet.,but the giraffe was all wet,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,the zebra and the elephant went to the pool again.,the zebra and the elephant went to the pool again,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,(and they wanted to s) and the elephant want/ed to swim : til : it kick/ed it/z face.,and the elephant wanted to swim til it kicked it's face,0 0 0 4 0 0 0 0 4 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and the : giraffe ran after it.,and the giraffe ran after it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,(and at last) and the giraffe just ran somewhere.,and the giraffe just ran somewhere,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,(uh) but the elephant hurt it/z knee.,but the elephant hurt it's knee,0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and she was cry/ing so much that the elephant stop/ed run/ing (when an elephant) when another[!] elephant came : and said what is wrong?,and she was crying so much that the elephant stopped running when another elephant came and said what is wrong,0 0 0 6 0 0 0 0 0 4 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,she scratch/ed me.,she scratched me,0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,ow.,ow,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,so : I could get a bandaid.,so I could get a bandaid,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and : (you should not know that) (you should not) no[!] run/ing.,and no running,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,the elephant and the giraffe went to the pool again.,the elephant and the giraffe went to the pool again,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and then : (they) they play/ed with a little plane.,and then they played with a little plane,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,but the elephant took it from the giraffe!,but the elephant took it from the giraffe,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,(and they) and they drop/ed into the pool [EU].,and they dropped into the pool,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and the giraffe was so mad to[EW:at] the elephant that : the elephant was too scare/ed to get it.,and the giraffe was so mad to the elephant that the elephant was too scared to get it,0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,when : (the) the other elephant came and said what is go/ing on around here[!].,when the other elephant came and said what is going on around here,0 0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and the (f) other elephant answer/ed we are play/ing with the plane.,and the other elephant answered we are playing with the plane,0 0 0 0 4 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,(but it) but it drop/ed into the pool.,but it dropped into the pool,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,I could get it[!] the other elephant said.,I could get it the other elephant said,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,it is no use.,it is no use,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,I could not (the) the elephant said.,I could not the elephant said,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,then another elephant came over and said what is the problem?,then another elephant came over and said what is the problem,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,(the net) the plane : drop/ed into the pool [~_different__speaking_voice].,the plane dropped into the pool,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,well I got a net to catch it [~_different_speaking_voice]!,well I got a net to catch it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,(and she did) and (she) she did (ju) just that.,and she did just that,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,I got : the plane for you.,I got the plane for you,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,oh thank you the giraffe said.,oh thank you the giraffe said,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,giraffe : hug/ed it.,giraffe hugged it,0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and the elephant was a little happy again.,and the elephant was a little happy again,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,a rabbit and a dog were : play/ing in the sand and build/ing a sandcastle.,a rabbit and a dog were playing in the sand and building a sandcastle,0 0 0 0 0 0 6 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and the dog like/ed to : make the (sand) sandcastle.,and the dog liked to make the sandcastle,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and the bunny : like/ed to help.,and the bunny liked to help,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and he put some on.,and he put some on,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and the dog was too frighten/ed to talk.,and the dog was too frightened to talk,0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,[~_right] (and it was) and it was ruin/ed (the) the bunny said after he did it.,and it was ruined the bunny said after he did it,0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and : the : rabbit did not say another : word.,and the rabbit did not say another word,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and the dog : cried a little.,and the dog cried a little,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,the dog and the bunny were have/ing a picnic today.,the dog and the bunny were having a picnic today,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and they start/ed to eat.,and they started to eat,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and the bunny *was sweated|sweat[EW:sweating] : and fell to : the ground [EU].,and the bunny sweated and fell to the ground,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,(but) but the dog was still eat/ing.,but the dog was still eating,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,ah I can not take it any more the bunny said.,ah I can not take it any more the bunny said,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and then the mother bunny came : and said what is the matter little one?,and then the mother bunny came and said what is the matter little one,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and the dog said : he *was sweated|sweat[EW:sweating] and fell to the ground [EU].,and the dog said he sweated and fell to the ground,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,oh my goodness [~_high_pitched_voice].,oh my goodness,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,are you all right little one [~_high_pitched_voice]?,are you all right little one,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,I am okay [~_high_pitched_voice].,I am okay,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,let us go home okay [~_high_pitched_voice]?,let us go home okay,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,goodbye [~_high_pitched_voice].,goodbye,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,the bunny and the dog had a wagon that had (uh uh uh a big bunny's uh) a big bunny/z balloon.,the bunny and the dog had a wagon that had a big bunny's balloon,0 0 0 0 0 0 0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and : they like/ed it so much that (they) he play/ed with it.,and they liked it so much that he played with it,0 0 4 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,but then : they try/ed to pull[?] it easily.,but then they tried to pull it easily,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and the dog almost : *was sweated|sweat[EW:sweating] all the time [EU].,and the dog almost sweated all the time,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and the balloon flew away.,and the balloon flew away,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and they both try/ed to get it.,and they both tried to get it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,but they could not.,but they could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,(and they are so) and the dog was so angry.,and the dog was so angry,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,when they saw the big bunny (with) hold/ing some balloon/s.,when they saw the big bunny holding some balloons,0 0 0 0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,[~_high_voice] hey big one.,hey big one,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,(have you) (we) we just had a wagon that had one of your balloon/s.,we just had a wagon that had one of your balloons,0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,[~_deep_voice] oh?,oh,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,"[~_deep_voice,_menacing_tone] (you y y you) and where did you put it?",and where did you put it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,[~_high_voice] well it flew away.,well it flew away,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,[~_makes_growling_sound_'errrr'].,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,[~_high_voice] it is okay.,it is okay,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,[~_high_voice] how come : there is[EW:are] two?,how come there is two,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,[~_high_voice] oh that is just my friend.,oh that is just my friend,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and then the mother came again and : said what is up now [~__different_speaking_voice]?,and then the mother came again and said what is up now,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,oh we just found a balloon man.,oh we just found a balloon man,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and we had one of his balloon/s.,and we had one of his balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,oh [~_different_speaking_voice].,oh,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,(and and) and (uh) he had a balloon that said : five balloon/s.,and he had a balloon that said five balloons,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,(but he) (he) but he just had four because we had one of them.,but he just had four because we had one of them,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,but it is okay he said.,but it is okay he said,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,: (because) and he gave both of them a balloon.,and he gave both of them a balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the elephant is play/ing ball.,the elephant is playing ball,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the ball fall/3s in the water.,the ball falls in the water,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the cow fall/3s in the water.,the cow falls in the water,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the elephant (grab/3s) grab/3s the ball.,the elephant grabs the ball,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the elephant hug/3s the ball.,the elephant hugs the ball,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the elephant is : look/ing at the water.,the elephant is looking at the water,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the elephant is : run/ing in the water.,the elephant is running in the water,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the elephant is : slip/ing.,the elephant is slipping,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the elephant : hurt her knee.,the elephant hurt her knee,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the elephant is cry/ing.,the elephant is crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the[-:] lifeguard is try/ing to help her.,the lifeguard is trying to help her,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the lifeguard tell/3s her to stay right there.,the lifeguard tells her to stay right there,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the lifeguard tell/3s her not to run.,the lifeguard tells her not to run,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the cow has the airplane.,the cow has the airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the cow[-:] buzz/3s the airplane.,the cow buzzes the airplane,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the elephant grab/3s the airplane.,the elephant grabs the airplane,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the elephant drop/3s the airplane.,the elephant drops the airplane,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the cow is mad at the elephant.,the cow is mad at the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the (life) the guard see/3s the : airplane.,the the guard sees the airplane,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the : elephant : tell/3s her all about it.,the elephant tells her all about it,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the lifeguard try/3s to reach it.,the lifeguard tries to reach it,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,it is no use.,it is no use,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,(the[-:]) : a lady elephant (c) try/3s to catch it.,a lady elephant tries to catch it,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,she catch/3s it.,she catches it,0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,she give/3s it to the cow.,she gives it to the cow,0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the cow grab/3s it.,the cow grabs it,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the dog is make/ing a sandcastle.,the dog is making a sandcastle,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the rabbit want/3s to make it too.,the rabbit wants to make it too,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the rabbit put/3s more sand on it.,the rabbit puts more sand on it,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the rabbit wreck/3s the sandcastle.,the rabbit wrecks the sandcastle,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the rabbit what?,the rabbit what,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the rabbit wreck/3s the sandcastle [+_bch].,the rabbit wrecks the sandcastle,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,oh wreck/3s.,oh wrecks,0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,(uh) the dog is sad.,the dog is sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the rabbit and the dog have : bug catcher/s.,the rabbit and the dog have bug catchers,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the rabbit : eat/3s : all the food.,the rabbit eats all the food,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the rabbit (get/3s f) (have a) get/3s a tummyache.,the rabbit gets a tummyache,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the rabbit : do/3s not feel well.,the rabbit does not feel well,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,(the rabbit) [~_I_mean] the dog go/3s (tell) to tell the : mommy rabbit.,the dog goes to tell the mommy rabbit,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the mommy rabbit come/3s.,the mommy rabbit comes,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,she tell/3s her to not eat too many[EW:much] food.,she tells her to not eat too many food,0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,she tell/3s her to go home.,she tells her to go home,0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the dog is pull/ing a wagon with a balloon tie/ed to it.,the dog is pulling a wagon with a balloon tied to it,0 0 0 6 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the rabbit (s) see/3s the balloon.,the rabbit sees the balloon,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,she try/3s to untie it.,she tries to untie it,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,it fly/3s away.,it flies away,0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the string is the only thing left.,the string is the only thing left,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,string/s do not even?,strings do not even,1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,thing left [+_bch].,thing left,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,can you use your loud voice?,can you use your loud voice,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the balloon man come/3s by.,the balloon man comes by,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,(he ask/ed) the bunny ask/ed if they could have another balloon.,the bunny asked if they could have another balloon,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,(the) (the) the balloon man give/3s them another balloon.,the balloon man gives them another balloon,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,and (he) he tell/3s them not to untie them.,and he tells them not to untie them,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,he give/3s : them no balloon/s.,he gives them no balloons,0 3 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,they go walk/ing home sad.,they go walking home sad,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,they ask/ed if they can have a balloon.,they asked if they can have a balloon,0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,she (pa) pay/3s for one.,she pays for one,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,(sh) they both get one.,they both get one,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,(um a) : an elephant and : a (l) zebra [EU].,an elephant and a zebra,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,a[EW:an] elephant and a zebra xxx a balloon.,a elephant and a zebra a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then he throwed|throw[EW:threw] it in the water and try/ed to get it.,and then he throwed it in the water and tried to get it,0 0 0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then the elephant was get/ing it.,and then the elephant was getting it,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,: and then the elephant got it : gave it to him.,and then the elephant got it gave it to him,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,: and then he say|say[EW:said] please.,and then he say please,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then : (he) he gave it to him.,and then he gave it to him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then they want/ed to go swim[EW:swimming] together.,and then they wanted to go swim together,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then come on let us go swim/ing.,and then come on let us go swimming,0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,that might be a good idea.,that might be a good idea,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then : they were run/ing.,and then they were running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then they were go/ing to get through to (um) eat : to have a picnic.,and then they were going to get through to eat to have a picnic,0 0 0 0 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then she hurt her leg [~_sad_voice].,and then she hurt her leg,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,: (and then : the brother camed) (and then) [~_EXA:_and__what] and then (the b) (the other b) the boy elephant (ca) came.,and then the boy elephant came,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then : he cry/ed okay I will get a bandaid.,and then he cried okay I will get a bandaid,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then she had a bandaid.,and then she had a bandaid,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,that/z a little bit better now.,that's a little bit better now,2 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then : you *have got to[:_gotta] sit [EU].,and then you got to sit,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then : if it feel/3s better you can walk.,and then if it feels better you can walk,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then both of them (um um) fly the airplane.,and then both of them fly the airplane,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,I hope it does not fall in the water[-:] .,I hope it does not fall in the water,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,(if it falls in) and then he was go/ing to[:_gonna] do it :.,and then he was going to do it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then : she taked|take[EW:took] it away from his hand (to her) for her to fly it.,and then she taked it away from his hand for her to fly it,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then : it cross/ed : in : the : water [EU].,and then it crossed in the water,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then : it is your fault [~_said_with_emphasis]!,and then it is your fault,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,you did it!,you did it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,(xxx) what is the matter with : you guy/s?,what is the matter with you guys,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then (um) he (um um) xx them the airplane in the water [EU].,and then he them the airplane in the water,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,I will try to get it.,I will try to get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,: and then he was try/ing to get it.,and then he was trying to get it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then he could not reach.,and then he could not reach,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then : (he) they were very cry/ing [EU].,and then they were very crying,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then : I[!] will try to catch it with that[!].,and then I will try to catch it with that,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,how ?,how,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and she caught it.,and she caught it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,: there you go.,there you go,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,thank you.,thank you,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,: and then : thank you very much.,and then thank you very much,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,I want you to undo that xx again.,I want you to undo that again,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,which one of you build|build[EW:built] a castle?,which one of you build a castle,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,to put in sand in there : people [EU].,to put in sand in there people,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and to put in some more sand on there [EU].,and to put in some more sand on there,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then it *was wreck/ed [EU].,and then it wrecked,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then he is go/ing to[:_gonna] put it back up.,and then he is going to put it back up,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then he was : sad.,and then he was sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,they are go/ing to have a picnic.,they are going to have a picnic,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,: (they are go) they are eat/ing lunch.,they are eating lunch,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,: and then he is full.,and then he is full,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then he what?,and then he what,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then the rabbit is full [+_bch].,and then the rabbit is full,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,: and then he has a stomyache[c].,and then he has a stomyache,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then : the mailman was bunny rabbit [EU].,and then the mailman was bunny rabbit,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then (could we) you *have got to[:_gotta] come with me [EU].,and then you got to come with me,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then : cry/ing [EU].,and then crying,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then : you had a picnic.,and then you had a picnic,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and you had a stomyache[c].,and you had a stomyache,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,a balloon [EU].,a balloon,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,: and : it is go/ing away.,and it is going away,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,: and then he is put/ing it back on.,and then he is putting it back on,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then : the balloon is up the sky.,and then the balloon is up the sky,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then : the puppy is (ba uhm) mad.,and then the puppy is mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,(the bunny rabbit) [~_EXA:_What] the puppy is mad because (um) he did not (um) have his balloon back.,the puppy is mad because he did not have his balloon back,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then he had the other balloon.,and then he had the other balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then : can we have one?,and then can we have one,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,just one.,just one,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and one for you and one for him.,and one for you and one for him,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then : : if you fight no more balloons.,and then if you fight no more balloons,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then he is happy.,and then he is happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then : there is every (bau) balloon [EU].,and then there is every balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,there is what?,there is what,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,there is every balloon[-:] [+_bch] [EU].,there is every balloon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then : there is[EW:are] two left.,and then there is two left,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then : they both had their own[!] balloon.,and then they both had their own balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,the giraffe saw a pool.,the giraffe saw a pool,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,it : had a ball.,it had a ball,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,he want/ed to play in there and catch it.,he wanted to play in there and catch it,0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,he could not.,he could not,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,and the elephant : gave him a new ball.,and the elephant gave him a new ball,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,the : giraffe went to the pool.,the giraffe went to the pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,(he s) the elephant said to the giraffe come in the pool.,the elephant said to the giraffe come in the pool,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,so the elephant kick/ed the ball.,so the elephant kicked the ball,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,and the elephant got : hurt.,and the elephant got hurt,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,so the other elephant came : and put a bandaid for her [EU].,so the other elephant came and put a bandaid for her,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,then the giraffe said come here.,then the giraffe said come here,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,so : the elephant sit|sit[EW:sat] : on the bench.,so the elephant sit on the bench,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,the giraffe got a[EW:an] airplane.,the giraffe got a airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,he want/ed to play with it in the pool.,he wanted to play with it in the pool,0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,he : drop/ed it in the pool.,he dropped it in the pool,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,and it got wet.,and it got wet,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,and : he tri/ed to took|take[EW:take] it out.,and he tried to took it out,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,and it flew to : the other side.,and it flew to the other side,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,the giraffe try/ed to took|take[EW:take] it (because the ele).,the giraffe tried to took it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,and the man elephant was try/ing to took|take[EW:take] it.,and the man elephant was trying to took it,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,but it was too far away.,but it was too far away,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,so the mama elephant (got) use it with a net [EU].,so the mama elephant use it with a net,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,(and she got) and she did not got|get[EW:get] it still.,and she did not got it still,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,and she got it.,and she got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,and the giraffe took the airplane.,and the giraffe took the airplane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,the rabbit want|want[EW:wanted] to play with the dog.,the rabbit want to play with the dog,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,he took some sand in a bucket.,he took some sand in a bucket,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,then he pour/ed on the sandcastle [EU].,then he poured on the sandcastle,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,and it fell down.,and it fell down,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,and he want|want[EW:wanted] to make it again.,and he want to make it again,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,the rabbit saw the dog.,the rabbit saw the dog,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,the rabbit said I am hungry.,the rabbit said I am hungry,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,the rabbit ate the carrot.,the rabbit ate the carrot,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,and he got bonk/ed.,and he got bonked,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,and the : dog said go away rabbit.,and the dog said go away rabbit,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,and the dog hold|hold[EW:held] the rabbit.,and the dog hold the rabbit,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,(the) (the rabbit) the mother rabbit said (to the rab um) to the : baby rabbit (: go home) : go home.,the mother rabbit said to the baby rabbit go home,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,the rabbit saw the dog.,the rabbit saw the dog,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,he got one balloon.,he got one balloon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,the rabbit (try) try|try[EW:tried] to took|take[EW:take] it off.,the rabbit try to took it off,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,and it flew up.,and it flew up,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,the rabbit said : to the dog sorry.,the rabbit said to the dog sorry,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,then the dog saw a : man that was sell/ing lots of balloon/s.,then the dog saw a man that was selling lots of balloons,0 0 0 0 0 0 0 0 6 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,then the rabbit want/ed one balloon.,then the rabbit wanted one balloon,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,and the : rabbit took one.,and the rabbit took one,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,and he drop/ed it in the air [EU].,and he dropped it in the air,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,and he got[EW:has] no more money : to buy the balloon.,and he got no more money to buy the balloon,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,then he went home with his mommy.,then he went home with his mommy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,then his mom gave him more coin[EW:coins].,then his mom gave him more coin,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,and they : buy one more balloon.,and they buy one more balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,once upon a time : there was a giraffe : and an elephant.,once upon a time there was a giraffe and an elephant,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,(they were play/ing : with) and they were (pl) play/ing with a ball.,and they were playing with a ball,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,but the elephant bounce/ed the ball too hard.,but the elephant bounced the ball too hard,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and it fell into (the wa) the pool.,and it fell into the pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,so the giraffe dove in and : went to get the ball.,so the giraffe dove in and went to get the ball,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,but the elephant was scare/ed that he would drown.,but the elephant was scared that he would drown,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,but then the giraffe came back with the ball.,but then the giraffe came back with the ball,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and the elephant was happy.,and the elephant was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,(and : then : the elephant w) : (the zebra was drip/ing) and the (gir) giraffe was drip/ing wet.,and the giraffe was dripping wet,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,but the elephant (was still ha) was happy that he brought the ball back.,but the elephant was happy that he brought the ball back,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,one day an elephant and a giraffe want/ed : to : go on the diving board.,one day an elephant and a giraffe wanted to go on the diving board,0 0 0 0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,(the :) the elephant said : (let us go) let us go quick before anybody else : get/3s on it.,the elephant said let us go quick before anybody else gets on it,0 0 0 0 0 0 0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,(but) and the elephant start/ed to run over to the diving board.,and the elephant started to run over to the diving board,0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,but she[-:] slip/ed and fell and hurt her knee.,but she slipped and fell and hurt her knee,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and[-:] so the giraffe went to get the lifeguard.,and so the giraffe went to get the lifeguard,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,the elephant was scare/ed because[-:] : she thought (she would) it would hurt when the lifeguard was help/ing her.,the elephant was scared because she thought it would hurt when the lifeguard was helping her,0 0 0 4 0 0 0 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,but the lifeguard did not hurt her.,but the lifeguard did not hurt her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,(and) and then she was : surprise/ed.,and then she was surprised,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,then[-:] she was embarrass/ed because the lifeguard told her : not to run.,then she was embarrassed because the lifeguard told her not to run,0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,one day an elephant and a giraffe (: were) were play/ing together.,one day an elephant and a giraffe were playing together,0 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,the giraffe (pl) : brought out his airplane.,the giraffe brought out his airplane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,the giraffe[-:] was fly/ing the plane.,the giraffe was flying the plane,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and the elephant want/ed : to play with it too.,and the elephant wanted to play with it too,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,so she grab/ed it from him.,so she grabbed it from him,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and she was play/ing with it.,and she was playing with it,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,then she drop/ed it in the water.,then she dropped it in the water,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and they could not get it back.,and they could not get it back,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,(so the) and the giraffe got angry at the elephant.,and the giraffe got angry at the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,(but the) and the elephant (phant) was scare/ed.,and the elephant was scared,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,but then the lifeguard came : (and help/ed them) and try/ed to help them to get the[-:] plane back.,but then the lifeguard came and tried to help them to get the plane back,0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,(but he could not) but he could not.,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,xxx.,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,turn?,turn,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,so the elephant explain/ed it to him.,so the elephant explained it to him,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and the lifeguard try/ed to help.,and the lifeguard tried to help,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,but he could not reach the airplane.,but he could not reach the airplane,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,it was too far in the pool.,it was too far in the pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,so[-:] the giraffe start/ed to cry.,so the giraffe started to cry,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,the elephant (was sad for him) was sad for him.,the elephant was sad for him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and the : lifeguard did not know what to do.,and the lifeguard did not know what to do,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,but then someone with a net came along.,but then someone with a net came along,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and then : she[!] : help/ed them get the airplane back.,and then she helped them get the airplane back,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,she try/ed.,she tried,0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and she try/ed.,and she tried,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and she got the plane.,and she got the plane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and then the giraffe was happy again.,and then the giraffe was happy again,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and so was the elephant.,and so was the elephant,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,so they got to play with the plane again.,so they got to play with the plane again,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,one day a rabbit (and a) and a dog were play/ing in a sandbox.,one day a rabbit and a dog were playing in a sandbox,0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,the dog had built : a sandcastle.,the dog had built a sandcastle,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,the rabbit want/ed to help the dog.,the rabbit wanted to help the dog,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,so : he came in : and help/ed her.,so he came in and helped her,0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,but he dump/ed too much sand on the sandcastle.,but he dumped too much sand on the sandcastle,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and[!] : he bury/ed the sandcastle.,and he buried the sandcastle,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and the : dog was : sad.,and the dog was sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and the rabbit was surprise/ed.,and the rabbit was surprised,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and the dog : was build/ing the : sandcastle again.,and the dog was building the sandcastle again,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,(and) and (the) the dog built the sandcastle again.,and the dog built the sandcastle again,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,(and the) but the rabbit did not help this time.,but the rabbit did not help this time,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,one day a dog and a rabbit : were walk/ing through the wood/s.,one day a dog and a rabbit were walking through the woods,0 0 0 0 0 0 0 0 6 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,they were go/ing on a picnic.,they were going on a picnic,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,the rabbit was very hungry.,the rabbit was very hungry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,(and :) and the dog was still unpack/ing the food.,and the dog was still unpacking the food,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,(so) (and he ate all the food and all the rab) (all) so the rabbit ate all the food.,so the rabbit ate all the food,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and (all the dog) all that the dog had left : was a juice box and a sandwich.,and all that the dog had left was a juice box and a sandwich,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,then the rabbit felt sick.,then the rabbit felt sick,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and the dog did not know what to do.,and the dog did not know what to do,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,then the dog saw a doctor and ran over to the doctor and : told her the story.,then the dog saw a doctor and ran over to the doctor and told her the story,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,after the dog told the doctor the story : she brought her over to the rabbit.,after the dog told the doctor the story she brought her over to the rabbit,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,the doctor look/ed at : the rabbit.,the doctor looked at the rabbit,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and[-:] he was still sick : though.,and he was still sick though,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,but then the rabbit felt better because : the doctor made him feel better.,but then the rabbit felt better because the doctor made him feel better,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,one day a dog and a rabbit (were walk/ing) (were) were walk/ing together.,one day a dog and a rabbit were walking together,0 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,they met.,they met,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and : the dog had a balloon attach/ed to her wagon.,and the dog had a balloon attached to her wagon,0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,the rabbit want/ed to hold the balloon.,the rabbit wanted to hold the balloon,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and the dog said it was okay.,and the dog said it was okay,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,but then he was go/ing to untie the balloon.,but then he was going to untie the balloon,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and she did not : want him to do that.,and she did not want him to do that,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,(but the) and the rabbit held it.,and the rabbit held it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,but he let go of it by accident.,but he let go of it by accident,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and it was too high for them to reach.,and it was too high for them to reach,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,it (f) : slowly float/ed away.,it slowly floated away,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and the : dog was angry at the rabbit.,and the dog was angry at the rabbit,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and the rabbit : was still watch/ing the balloon float.,and the rabbit was still watching the balloon float,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,then they saw a balloon man.,then they saw a balloon man,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and they went over to buy a balloon.,and they went over to buy a balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,the rabbit point/ed to a shiny green one : and want/ed it.,the rabbit pointed to a shiny green one and wanted it,0 0 4 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,(but) and (it) (they) the balloon/s were five cent/s.,and the balloons were five cents,0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,but the rabbit did not have any money.,but the rabbit did not have any money,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,the dog and the rabbit were sad.,the dog and the rabbit were sad,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,then they saw someone : (across) not too far from them.,then they saw someone not too far from them,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,they went over to her and ask/ed (for them) for her to buy them a balloon.,they went over to her and asked for her to buy them a balloon,0 0 0 0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,so after (they said they) they ask/ed her : she said okay.,so after they asked her she said okay,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,she bought a balloon for both of them.,she bought a balloon for both of them,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and then they both were happy because both of them had a balloon.,and then they both were happy because both of them had a balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,once upon a time[-:] there was a[EW:an] elephant and a zebra : play/ing ball[-:] : until it fell (t) into the sand[-:] and into the water.,once upon a time there was a elephant and a zebra playing ball until it fell into the sand and into the water,0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then she felled|fall[EW:fell] in the water too[-:].,and then she felled in the water too,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,(and they) (and she c) : and she gave him the ball[-:].,and she gave him the ball,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,(and then after that : she) (she) (she) (she) because she wanted the ball[-:] [+..] [EU].,because she wanted the ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,(and[-:] then[-:] ) [~_what_happened_next_oh_yeah] and then they went home.,and then they went home,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,once upon a time[-:] : there is a[EW:an] elephant : and[-:] a giraffe : scare/ed to go on the water [EU].,once upon a time there is a elephant and a giraffe scared to go on the water,0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and : she was walk/ing[-:] to the water.,and she was walking to the water,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,(and : then[-:] ) [~_and_I_do_n(o)t] and then they went in the water.,and then they went in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then she slip/ed.,and then she slipped,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and[-:] then she felled|fall[EW:fell] in the water[-:] .,and then she felled in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and she hurt shes[EW:her] knee.,and she hurt shes knee,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then they heard a watched[-:][?] [EU].,and then they heard a watched,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then she put a bandage on it[-:].,and then she put a bandage on it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then it feeled|feel[EW:felt] better[-:] .,and then it feeled better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,(and then : shes) (and then) and then the lifeguard said : (no) (no : s stay) (no[-:]) no accident/s ever again on you [EU].,and then the lifeguard said no accidents ever again on you,0 0 0 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,that is the end [+_bch].,that is the end,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,once upon a time[-:] : they want to fly[-:] the airplane over the water[-:].,once upon a time they want to fly the airplane over the water,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then : she put[!] it out in the air[-:].,and then she put it out in the air,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then : she grab/ed it from him[-:].,and then she grabbed it from him,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then it felled|fall[EW:fell] in the water[-:].,and then it felled in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,(till[-:]) : (till the zebra) until the giraffe was angry [EU].,until the giraffe was angry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,until they got to get that airplane[-:].,until they got to get that airplane,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,until : (she[-:] ) (she got it) (the) the zebra[!] got it [EU].,until the zebra got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,I had it first.,I had it first,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,so she[!] must get it.,so she must get it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then : she try/ed[!] to.,and then she tried to,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,but she just can not reach[!] it.,but she just can not reach it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,till[-:] she got a net and go/ing to [~_gonna] get : the airplane.,till she got a net and going to get the airplane,0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,(until she) (she tr) and she got[!] it.,and she got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then they were save/ed.,and then they were saved,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then[-:] : that is the end [+_bch].,and then that is the end,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,once upon a time[-:] : there was : a bunny and[-:] a mouse : play/ing in the sandbox.,once upon a time there was a bunny and a mouse playing in the sandbox,0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and[-:] they were build/ing a sandcastle[-:].,and they were building a sandcastle,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and after that : he put some sand on the sandcastle[-:].,and after that he put some sand on the sandcastle,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then it broked|broke[EW:broke].,and then it broked,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then they build|build[EW:built] it up again.,and then they build it up again,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then that is the end of the story [+_bch].,and then that is the end of the story,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,once upon a time[-:] there was a cheetah and[-:] a[EW:an] elephant : walk/ing.,once upon a time there was a cheetah and a elephant walking,0 0 0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then[-:] : (uh) [~_I_do_n(o)t_know_what_the_next_page_is] well[-:] : they went to the dinosaur country[-:] : for a picnic.,and then well they went to the dinosaur country for a picnic,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then : they heard a sound of a tyrannosaur rex : coming beheads[c] them [EU].,and then they heard a sound of a tyrannosaur rex coming beheads them,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and they[-:] : runned|run[EW:ran] away : all away[-:] (to s) to their mommy[-:].,and they runned away all away to their mommy,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then (they) (they) they soon[-:] : got to home[-:] [EU].,and then they soon got to home,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then[-:] : [~_oh] so they lost their way to home[-:] [EU].,and then so they lost their way to home,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,so they *are lost at the dinosaur country [EU].,so they lost at the dinosaur country,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then : (they) (they) (they) they had a nap.,and then they had a nap,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then they got home.,and then they got home,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,once upon a time[-:] (they were) they were two baby velociraptor/s[-:].,once upon a time they were two baby velociraptors,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and[-:] they start/ed to go down the hill[-:].,and they started to go down the hill,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and[-:] : they were scare/ed on the hill[-:].,and they were scared on the hill,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,so then : (the b) the balloon went up.,so then the balloon went up,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,(and) and the velociraptor/s try/ed to get it.,and the velociraptors tried to get it,0 0 1 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then : a terrible [~_makes_explosion_noise_'bth'] : boom.,and then a terrible boom,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and the balloon pop/ed.,and the balloon popped,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,(and then : they gots[EW:have]) (and then) : and then the tyrannosaurus rex gave them more[!] balloon/s.,and then the tyrannosaurus rex gave them more balloons,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then : they want/ed[-:] a balloon[-:].,and then they wanted a balloon,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,so then they pick/ed one[-:].,so then they picked one,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and[-:] : then they want/ed it.,and then they wanted it,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,(sss) so then : the Teerex said (they) they can not have a balloon.,so then the Teerex said they can not have a balloon,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and[-:] then[-:] she ask/ed (if she c) if they have place they could have a balloon [EU].,and then she asked if they have place they could have a balloon,0 0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,(and then they) and then the other velociraptor : was run/ing to his mommy.,and then the other velociraptor was running to his mommy,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then she said (she) she will not give us any balloon/s.,and then she said she will not give us any balloons,0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then : she give/3s him some dollar/s.,and then she gives him some dollars,0 0 0 3 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then she give|give[EW:gave] him (some) some balloon/s[-:].,and then she give him some balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and[-:] then : they had balloon/s[-:].,and then they had balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then that is the end [+_bch].,and then that is the end,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,(um) : the elephant : is bounce/ing : (bl) ball/s.,the elephant is bouncing balls,0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the elephant : say|say[EW:says] : the ball (in) is in the : (um) swimming pool.,the elephant say the ball is in the swimming pool,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the : moose : was swim/ing in the water so he can get the (bee) ball.,the moose was swimming in the water so he can get the ball,0 0 0 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the elephant : say|say[EW:says] thank you moose.,the elephant say thank you moose,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the elephant : look/ed at him.,the elephant looked at him,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,(um) : the elephant : *is watch/ing the wave/s [EU].,the elephant watching the waves,0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the elephant : run/ing : on the thing and : almost fall in [EU].,the elephant running on the thing and almost fall in,0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the elephant : soup : her feet/s [EU].,the elephant soup her feets,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the elephant : close|close[EW:closes] her eye/s.,the elephant close her eyes,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the elephant : fall|fall[EW:fell] down and got a scrape.,the elephant fall down and got a scrape,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the security[?] guard : help|help[EW:helped] her and put a bandaid on.,the security guard help her and put a bandaid on,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,and then the elephant (slll) : sit|sit[EW:sat] on the bench.,and then the elephant sit on the bench,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the elephant was okay.,the elephant was okay,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the elephant : was fine.,the elephant was fine,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,and : she took the bandaid off.,and she took the bandaid off,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,(the) the moose was (finly) find/ing the plane.,the moose was finding the plane,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the elephant : took the plane away from the moose.,the elephant took the plane away from the moose,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the (moo) the plane went in the water.,the the plane went in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,moose was mad at the elephant.,moose was mad at the elephant,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,(the security guard) the lifeguard came to check : on the elephant and the moose.,the lifeguard came to check on the elephant and the moose,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,(the security guard) the lifeguard was mad.,the lifeguard was mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,he try/ed to catch (the plee) the plane.,he tried to catch the plane,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,but he could not.,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the plane was : go/ing deeper and deeper.,the plane was going deeper and deeper,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the plane was : go/ing deeper and deeper.,the plane was going deeper and deeper,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,(the plane) (the) then (the eleph) the lifeguard came and pick|pick[EW:picked] the plane up.,then the lifeguard came and pick the plane up,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,(then the moose : put the pla) then the elephant gave : the moose his plane back.,then the elephant gave the moose his plane back,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the moose say/3s thank you.,the moose says thank you,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,(the elephant) the kangaroo was : build/ing a sandcastle.,the kangaroo was building a sandcastle,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the bunny and the : kangaroo was[EW:were] make/ing a sandcastle.,the bunny and the kangaroo was making a sandcastle,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the bunny put some (s) more sand on the castle.,the bunny put some more sand on the castle,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the bunny : look/ed : at the sandcastle.,the bunny looked at the sandcastle,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,(it) it was broken.,it was broken,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,(then) : then : the : kangaroo was sad.,then the kangaroo was sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,there is (two bunny/s : go/ing to) : one kangaroo and one bunny go/ing for : a picnic.,there is one kangaroo and one bunny going for a picnic,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the bunny and the kangaroo went : to eat.,the bunny and the kangaroo went to eat,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the bunny is full : now.,the bunny is full now,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the bunny[EW:bunny/z] : tummy was big.,the bunny tummy was big,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the (um) doctor bunny came.,the doctor bunny came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the doctor bunny : moose : came to see the rabbit.,the doctor bunny moose came to see the rabbit,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the rabbit look/ed at the : moose rabbit.,the rabbit looked at the moose rabbit,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the doctor bringed|bring[EW:brought] the rabbit : to (the) : the : hospital.,the doctor bringed the rabbit to the hospital,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the kangaroo had a balloon on the : wagon.,the kangaroo had a balloon on the wagon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,and the bunny was run/ing.,and the bunny was running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,(the kang) the bunny try/ed to reach the balloon.,the bunny tried to reach the balloon,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,(the) the bunny go/ing get the balloon [EU].,the bunny going get the balloon,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the balloon go away [EU].,the balloon go away,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the balloon fly|fly[EW:flies] : in the sky.,the balloon fly in the sky,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,then : (the) the balloon guy came back : and give/3s them a balloon.,then the balloon guy came back and gives them a balloon,0 0 0 0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the bunny/s : say one please.,the bunnies say one please,0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the : balloon say five cent/s [EU].,the balloon say five cents,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,(the bunny s) (the) the [~_whispers:_what's_his_name] guard said : you can not have a : balloon.,the guard said you can not have a balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,(so) : so the : kangaroo : goed|go[EW:went] : with the balloon.,so the kangaroo goed with the balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,(the rabbit) the doctor said : could I have a balloon?,the doctor said could I have a balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,(the doctor : gived|give[EW:gave] some) his mom gived|give[EW:gave] some money.,his mom gived some money,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,then : he got a balloon.,then he got a balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,once there was an elephant and a horse.,once there was an elephant and a horse,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,and they went to a beach.,and they went to a beach,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the elephant had a brand[!] new ball.,the elephant had a brand new ball,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,(when the) once the elephant said do you want to[:_wanna] see my biggest bounce?,once the elephant said do you want to see my biggest bounce,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,sure said the horse.,sure said the horse,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the elephant bounce/ed it much too high.,the elephant bounced it much too high,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,and it land/ed in the water.,and it landed in the water,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the horse : want/ed to try it too.,the horse wanted to try it too,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,so he went in the water to save elephant/z brand new ball.,so he went in the water to save elephant's brand new ball,0 0 0 0 0 0 0 0 2 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,when (uh) horse got the ball she gave it to the elephant.,when horse got the ball she gave it to the elephant,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,"the elephant said oh thank you, thank you!",the elephant said oh thank you thank you,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,(when the elephant was sa) the elephant was so happy she decide/ed to give the : horse a try of her new ball.,the elephant was so happy she decided to give the horse a try of her new ball,0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,(wo) once there was a horse and an elephant.,once there was a horse and an elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,(there was a) they went to the beach.,they went to the beach,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,and there was a sign that said no run/ing.,and there was a sign that said no running,0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the elephant want/ed to go and swim and dive off the diving board.,the elephant wanted to go and swim and dive off the diving board,0 0 4 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,and she was run/ing.,and she was running,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,(the elephant was) while (sh) the elephant was run/ing she slip/ed and fell.,while the elephant was running she slipped and fell,0 0 0 0 6 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,she scrape/ed her knee.,she scraped her knee,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,(and) but the horse came run/ing after her (and) : and took care of her.,but the horse came running after her and took care of her,0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the lifeguard came and : was very proud of the horse.,the lifeguard came and was very proud of the horse,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the lifeguard put a bandaid on it.,the lifeguard put a bandaid on it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,(the) : the horse : said : (I) are you all right?,the horse said are you all right,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the elephant said : I am okay.,the elephant said I am okay,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the lifeguard was mad.,the lifeguard was mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the elephant was sad.,the elephant was sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,once there was an elephant and a horse.,once there was an elephant and a horse,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,and the horse had a brand new airplane.,and the horse had a brand new airplane,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the brand new red airplane was red.,the brand new red airplane was red,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,and the horse (l) like/ed it a lot.,and the horse liked it a lot,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the elephant was surprise/ed.,the elephant was surprised,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,she want/ed it too.,she wanted it too,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,so the elephant grab/ed it from the horse.,so the elephant grabbed it from the horse,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,and the horse said please give me it back.,and the horse said please give me it back,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,when the elephant try/ed it out it land/ed in the water.,when the elephant tried it out it landed in the water,0 0 0 4 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the horse was very mad.,the horse was very mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,and the elephant was scare/ed.,and the elephant was scared,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,they call/ed the lifeguard.,they called the lifeguard,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,and the lifeguard said what is the matter now?,and the lifeguard said what is the matter now,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,my plane went in the water said the horse.,my plane went in the water said the horse,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the elephant said : I threw it in the water.,the elephant said I threw it in the water,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,(I) I am really sorry.,I am really sorry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the lifeguard try/ed to get it.,the lifeguard tried to get it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,but he could not.,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the lifeguard said I can not get it.,the lifeguard said I can not get it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the horse was very very sad.,the horse was very very sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,(the) (the) (an) a lady who had a net (caught it with) got it with a[?] net.,a lady who had a net got it with a net,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,and the horse stop/ed cry/ing a little.,and the horse stopped crying a little,0 0 0 4 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,when the : lady got it out : the horse was very happy.,when the lady got it out the horse was very happy,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,and : the elephant was happy that the horse got it back.,and the elephant was happy that the horse got it back,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,there was : (um) a dog play/ing in the sandbox.,there was a dog playing in the sandbox,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,(in) (and a bun) and a bunny rabbit came along.,and a bunny rabbit came along,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the dog said I am build/ing a sandcastle.,the dog said I am building a sandcastle,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,do you want to[:_wanna] help me?,do you want to help me,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the bunny said sure.,the bunny said sure,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,so when the bunny : put a lot of sand on the sandcastle : it fell.,so when the bunny put a lot of sand on the sandcastle it fell,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the dog was sad.,the dog was sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,and the bunny : apologize/ed.,and the bunny apologized,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,a dog (uh) and a bunny went for a picnic one beautiful day.,a dog and a bunny went for a picnic one beautiful day,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the bunny pack/ed a lot and a lot of food.,the bunny packed a lot and a lot of food,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the bunny ate[!] too much and ate too quick.,the bunny ate too much and ate too quick,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the dog did not eat too much and not too quick.,the dog did not eat too much and not too quick,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,and the bunny got very very sick.,and the bunny got very very sick,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,there was a nurse come/ing down the road : past them.,there was a nurse coming down the road past them,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,and the dog went for help.,and the dog went for help,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,she (pull) pull/ed her over to the bunny.,she pulled her over to the bunny,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the doctor said : you should not eat too much any more.,the doctor said you should not eat too much any more,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,soon the bunny was : not feel/ing so sick.,soon the bunny was not feeling so sick,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,and the dog was very happy.,and the dog was very happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,once there was a bunny and a dog.,once there was a bunny and a dog,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,and the dog had a wagon with a balloon on it.,and the dog had a wagon with a balloon on it,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the bunny really like/ed the dog/z balloon.,the bunny really liked the dog's balloon,0 0 0 4 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,she want/ed to take it off.,she wanted to take it off,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,when the dog said no : the bunny did not listen.,when the dog said no the bunny did not listen,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the bunny accidentally let go.,the bunny accidentally let go,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,and the dog : (was very very) was try/ing to catch it.,and the dog was trying to catch it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the dog was very very mad.,the dog was very very mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,and the bunny : was very scare/ed.,and the bunny was very scared,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,then they saw : (ball) a balloon person carry/ing a bunch of balloon/s.,then they saw a balloon person carrying a bunch of balloons,0 0 0 0 0 0 6 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the bunny went up to him and ask/ed could I have a balloon?,the bunny went up to him and asked could I have a balloon,0 0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the : balloon said five dollar/s.,the balloon said five dollars,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,and the bunny did not have any.,and the bunny did not have any,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the bunny and the dog were very sad.,the bunny and the dog were very sad,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,and they saw (a lady :) a grown up lady : stand/ing on the street.,and they saw a grown up lady standing on the street,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the bunny : (uh) went up to her.,the bunny went up to her,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,and (she) he ask/ed her : could we have five dollar/s to get a balloon?,and he asked her could we have five dollars to get a balloon,0 0 4 0 0 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the : lady gave : him : ten dollar/s for the bunny and the : rabbit.,the lady gave him ten dollars for the bunny and the rabbit,0 0 0 0 0 1 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,(the) and then the bunny and the dog were happy.,and then the bunny and the dog were happy,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,he is take/ing a ball[-:] .,he is taking a ball,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and then it went in the water[-:] .,and then it went in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,then : the cow went in the water and *was try/ing to get it [EU].,then the cow went in the water and trying to get it,0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,(and he went) and he is try/ing to get up : with the ball.,and he is trying to get up with the ball,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and then : he got out.,and then he got out,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and they were happy.,and they were happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and that is all [+_bch].,and that is all,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,he[-:] want/3s to go in the : water.,he wants to go in the water,0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,then : he is go/ing into the water[-:] .,then he is going into the water,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and he slip/ed[-:] .,and he slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and he bonk/ed her : knee.,and he bonked her knee,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and he got hurt.,and he got hurt,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and then he said are you okay?,and then he said are you okay,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,then her[EW:she] put a : bandage on.,then her put a bandage on,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and then : (um it did) : (i i) he said is it okay now?,and then he said is it okay now,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,then he was mad.,then he was mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,so he : push/ed [?] go that way [EU].,so he pushed go that way,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,that is all [+_bch].,that is all,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,he was play/ing with a[EW:an] : airplane.,he was playing with a airplane,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and he was play/ing it go/ing up : and a twist [EU].,and he was playing it going up and a twist,0 0 0 6 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,then[-:] : (um um) the elephant got it.,then the elephant got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,then her[EW:she] put it in the water[-:].,then her put it in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,then (the) (the thing) the guy was mad[-:] again.,then the guy was mad again,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and the thing was mad[-:].,and the thing was mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,(and the) (and the guy wa) and another guy was mad too[-:].,and another guy was mad too,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,(and then) and then (he) he was still happy.,and then he was still happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and he was try/ing to get it.,and he was trying to get it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,but he was cry/ing[-:] .,but he was crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and then the elephant (did) had : the head catcher.,and then the elephant had the head catcher,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,then he got it[-:] : for him.,then he got it for him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and then : her[EW:she] gived|give[EW:gave] it back (to) : to (thing) the guy.,and then her gived it back to the guy,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and he love/ed it again.,and he loved it again,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,that is all [+_bch].,that is all,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,[~_no_it_(i)s_not_the_same_picture_story] it is the rabbit (and) and [~_what_(i)s_that_-_oh] a dog.,it is the rabbit and a dog,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,(and) : and they are play/ing in the sand[-:] .,and they are playing in the sand,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,then they (ma) made a (ca) sandcastle.,then they made a sandcastle,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and the other guy was try/ing to.,and the other guy was trying to,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,(and) [~_turn_the_page] (he is) (and then) and then the bunny put : more (on) on the sandcastle.,and then the bunny put more on the sandcastle,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,then it breaked|break[EW:broke][-:].,then it breaked,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and then he is try/ing to fix it again.,and then he is trying to fix it again,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,then that is all [+_bch].,then that is all,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,he is come/ing : to a picnic.,he is coming to a picnic,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,then he : brought lots of : stuff.,then he brought lots of stuff,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and then he could not eat all of it.,and then he could not eat all of it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and then he had a tummyache.,and then he had a tummyache,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,then he was dizzy *and had a tummyache [EU].,then he was dizzy had a tummyache,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,then : her bunny comed|come[EW:came].,then her bunny comed,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,(and then) (and then) : (then that is) (and) (and) and (uh : ul) the guy (fou um : um) had it.,and the guy had it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,(and her) and (her[EW:she] pull/ed) : her[EW:she] pull/ed only.,and her pulled only,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,(and then) then : (he was) : he was : fix/ing him.,then he was fixing him,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,but he is done already.,but he is done already,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,that is all [+_bch].,that is all,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,the guy had (a um) a wagon.,the guy had a wagon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and he had a balloon[-:].,and he had a balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and then : he said wow[-:].,and then he said wow,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and he want/ed to take it off[-:].,and he wanted to take it off,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,then it let go[-:].,then it let go,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and up in the sky[-:] [EU].,and up in the sky,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and then : he was mad at him.,and then he was mad at him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,then he got lots of balloon/s[-:].,then he got lots of balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,then (he take/3s) (taked|take[EW:took] one) he saw some and taked|take[EW:took] one.,then he saw some and taked one,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and then he : had (none) : none[EW:no] (um) : money.,and then he had none money,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,but : he is check/ing his pocket/s.,but he is checking his pockets,0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and then he saw the doctor again.,and then he saw the doctor again,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,(can) and then he said can I have some money because I do not have any.,and then he said can I have some money because I do not have any,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and then he : had five dollar/s.,and then he had five dollars,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,so : he can have (some) : a balloon.,so he can have a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and then he got two[-:].,and then he got two,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and then that is all [+_bch].,and then that is all,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,(um) he is play/ing basketball.,he is playing basketball,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,(he[-:]) he put/3s it in the water.,he puts it in the water,0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,(he[-:] um) he was try/ing to [~_tryna] swim.,he was trying to swim,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,(um) : he gotted|got[EW:got] the ball.,he gotted the ball,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,(um) [-:] now they are all go/ing to play : basketball.,now they are all going to play basketball,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,(um) : he had a backpack.,he had a backpack,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,he was try/ing to get the backpack.,he was trying to get the backpack,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,he was run/ing.,he was running,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,he[-:] was silly.,he was silly,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,he[-:] cry/ed.,he cried,0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and : he was angry.,and he was angry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,(and[-:]) and then[-:] he got a bandaid.,and then he got a bandaid,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and then[-:] it was better.,and then it was better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,(um) he had a tail.,he had a tail,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and[-:] he was fly/ing a[EW:an] airplane.,and he was flying a airplane,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and[-:] he was jump/ing.,and he was jumping,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,(um) he was float/ing[-:] the plane[-:] [~_pronounced_/fleIn/].,he was floating the plane,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and[-:] he was angry.,and he was angry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and he was happy.,and he was happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,(and[-:]) : and he had a nose right.,and he had a nose right,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and he was try/ing to get it.,and he was trying to get it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and he was sad.,and he was sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and he was cry/ing.,and he was crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and : he was try/ing to get (the p) : the plane.,and he was trying to get the plane,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and he was : try/ing to : get it and go in the swim/ing pool.,and he was trying to get it and go in the swimming pool,0 0 0 6 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and[-:] he gotted|got[EW:got] it.,and he gotted it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and he was happy.,and he was happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,a rabbit [EU].,a rabbit,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,he[-:] was make/ing a castle.,he was making a castle,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,he[-:] was[-:] (um) build/ing it by heself[EW:himself].,he was building it by heself,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,(and[-:]) and his friend : (um) breaked|break[EW:broke] it.,and his friend breaked it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and he was not happy : because he was sad[-:].,and he was not happy because he was sad,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,there is one rabbit.,there is one rabbit,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,he (wa) had a basket [~_pronounced_/baesIk/].,he had a basket,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and he eated|eat[EW:ate] all he[EW:his] stuff.,and he eated all he stuff,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and[-:] : he had a tummyache.,and he had a tummyache,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and[-:] he[-:] was not happy.,and he was not happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and (he) : (the) the rabbit was [~_makes_vocalizations]!,and the rabbit was,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and[-:] the rabbit was pull/ing the rabbit.,and the rabbit was pulling the rabbit,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and the rabbit was not happy because : he was angry : and because : he was sad[-:].,and the rabbit was not happy because he was angry and because he was sad,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,the end [~_laughs] [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and[-:] he had (uh : um) a stroller (xx) : and a window and his balloon.,and he had a stroller and a window and his balloon,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and he was happy : again.,and he was happy again,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and so he want/ed another one.,and so he wanted another one,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and he could not because his (um) balloon was fly/ing[-:].,and he could not because his balloon was flying,0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and[-:] : it was gone.,and it was gone,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and he pick/ed another balloon.,and he picked another balloon,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and : he said I want another balloon.,and he said I want another balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and his pant/3s were rip/ing [~_laughs].,and his pants were ripping,0 0 3 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and[-:] he was happy again.,and he was happy again,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and he want/ed another balloon.,and he wanted another balloon,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and[-:] the mother rabbit was sad[-:].,and the mother rabbit was sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and then he get[EW:got] it back again.,and then he get it back again,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,(um[-:] he) they both had another balloon.,they both had another balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,(it) this look/3s like a love[!] story because she is bounce/ing[!] her ball.,this looks like a love story because she is bouncing her ball,0 3 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and she say/3s hey do you want to play.,and she says hey do you want to play,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and (she) she pass/3s[!] it to the giraffe.,and she passes it to the giraffe,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and the giraffe : can not[!] catch it because she pass/3s it really fast.,and the giraffe can not catch it because she passes it really fast,0 0 0 0 0 0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and it go/3s into the pool.,and it goes into the pool,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and the giraffe say/3s do not[!] worry.,and the giraffe says do not worry,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,I will get it.,I will get it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,so : the giraffe swim/3s[!] into the pool.,so the giraffe swims into the pool,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and : he grab/3s[!] the ball and give/3s it : to[-:] the[-:] elephant.,and he grabs the ball and gives it to the elephant,0 0 3 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and the elephant : is in love with the giraffe now.,and the elephant is in love with the giraffe now,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,(she) they say they are go/ing to[:_gonna] go : take a : dive on the diving board.,they say they are going to go take a dive on the diving board,0 0 0 0 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and she say/3s hey let us go over to the diving board really fast!,and she says hey let us go over to the diving board really fast,0 0 3 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,come on!,come on,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and[-:] so : she run/3s.,and so she runs,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and she slip/3s!,and she slips,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and she bang/3s her knee.,and she bangs her knee,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and she hurt/3s it really bad.,and she hurts it really bad,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and the lifeguard[!] come/3s over.,and the lifeguard comes over,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and she is all[-:] : cry/ing.,and she is all crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and give/3s her a[-:] bandaid[!] : and then put/3s her on the bench : and[-:] : say/3s you will be okay.,and gives her a bandaid and then puts her on the bench and says you will be okay,0 3 0 0 0 0 0 3 0 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,then : (sh) he point/3s to the no run/ing sign.,then he points to the no running sign,0 0 3 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and she say/3s okay I will not run next time.,and she says okay I will not run next time,0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,(the giraffe say/3s) : (the) the elephant say/3s hey[!] nice plane.,the elephant says hey nice plane,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and the giraffe say/3s cool you want to[:_wanna] : play with me ?,and the giraffe says cool you want to play with me,0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,(so[-:]) so the giraffe go/3s [~_makes_sound_effects_'prrfff'].,so the giraffe goes,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,(and) and she go/3s wow !,and she goes wow,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,so she take/3s it.,so she takes it,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,she go/3s [~_makes_sound_effects_'prrfff'].,she goes,0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and the giraffe go/3s cool[-:].,and the giraffe goes cool,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and then she accidentally : get/3s it in the water.,and then she accidentally gets it in the water,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and he go/3s oh[-:] that was my favourite plane !,and he goes oh that was my favourite plane,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,why did you do that !,why did you do that,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and : she go/3s to tell the lifeguard if she can get it out[!].,and she goes to tell the lifeguard if she can get it out,0 0 3 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,(and the life) and : she go/3s to tell[~!_laughing] the lifeguard if[~!_laughing] he can get it out.,and she goes to tell the lifeguard if he can get it out,0 0 3 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and the lifeguard try/3s[!] to reach.,and the lifeguard tries to reach,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,but he can not.,but he can not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,so : the giraffe[!] start/3s to cry.,so the giraffe starts to cry,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and the girl is like that.,and the girl is like that,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,(and the gi) and the lifeguard say/3s I[-:] do not know what we can do about it.,and the lifeguard says I do not know what we can do about it,0 0 0 3 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and a lady[!] come/3s by with a big net.,and a lady comes by with a big net,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and then she say/3s hey do you want me get it out ?,and then she says hey do you want me get it out,0 0 0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,they say sure.,they say sure,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,so she : take/3s the net[!] put/3s[!] it in the water and grab/3s the plane : give/3s[!] the plane back : to[-:] the giraffe.,so she takes the net puts it in the water and grabs the plane gives the plane back to the giraffe,0 0 3 0 0 3 0 0 0 0 0 3 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and the giraffe say/3s ooh I got my favourite plane back.,and the giraffe says ooh I got my favourite plane back,0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and now all the people are happy.,and now all the people are happy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,the bunny[!] meet/3s up with the[-:] : dog I guess and say/3s hey do you want to build sandcastle/s?,the bunny meets up with the dog I guess and says hey do you want to build sandcastles,0 0 3 0 0 0 0 0 0 0 3 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and[-:] so they are build/ing[!] the sandcastle/s.,and so they are building the sandcastles,0 0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and the bunny has got a big bucket (and[-:]) full of sand.,and the bunny has got a big bucket full of sand,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and he is scoop/ing it up.,and he is scooping it up,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and he take/3s[!] the big bucket[!] of sand.,and he takes the big bucket of sand,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and he dump/3s it over her sandcastle.,and he dumps it over her sandcastle,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and now[!] (the) (the whole sandcastle) the whole castle is now bury/ed[!] in a bunch of sand and broken[!].,and now the whole castle is now buried in a bunch of sand and broken,0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,so she start/3s to cry.,so she starts to cry,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and the bunny just mind/3s his own business.,and the bunny just minds his own business,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,the[-:] : dog and the bunny are on a picnic.,the dog and the bunny are on a picnic,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,they are go/ing on a picnic.,they are going on a picnic,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,so[-:] they meet up in the park.,so they meet up in the park,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and they set up all their stuff.,and they set up all their stuff,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and the bunny bring/3s a bunch of carrot/s and sub/s and[-:] all this stuff that is not good[!] for you.,and the bunny brings a bunch of carrots and subs and all this stuff that is not good for you,0 0 0 3 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and he start/s eat/ing it all.,and he starts eating it all,0 0 1 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and he go/3s aw[-:] I am full.,and he goes aw I am full,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and then he feel/3s queasy and woozy and he [~_makes_sound_'ooo'].,and then he feels queasy and woozy and he,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,(so the) : so the : dog : run/3s over to a bunny doctor that is just across the[-:] street : and bring/3s him over to the queasy : bunny.,so the dog runs over to a bunny doctor that is just across the street and brings him over to the queasy bunny,0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and she say/3s you should not have (s) eat that.,and she says you should not have eat that,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and he say/3s you should eat what is good for you.,and he says you should eat what is good for you,0 0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,one[!] day the bunny and the dog met up in the park.,one day the bunny and the dog met up in the park,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and : the dog had brought her wagon and her favourite balloon.,and the dog had brought her wagon and her favourite balloon,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and the bunny said hi[!] (can) can I see your balloon?,and the bunny said hi can I see your balloon,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and the dog said sure.,and the dog said sure,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,so the bunny take/3s the balloon and untie/3s it.,so the bunny takes the balloon and unties it,0 0 0 3 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and the dog say/3s : hey what are you do/ing?,and the dog says hey what are you doing,0 0 0 3 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,(and) (and he) and : the dog distract/3s the bunny and accidentally let/3s go of the balloon.,and the dog distracts the bunny and accidentally lets go of the balloon,0 0 0 3 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and : now the dog[!] is really mad at the bunny[!].,and now the dog is really mad at the bunny,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,(and he s) and then the bunny see/3s (a) : a balloon[-:] : stand guy with a bunch of balloon/s.,and then the bunny sees a balloon stand guy with a bunch of balloons,0 0 0 0 3 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and he say/3s can I have one of those balloon/s?,and he says can I have one of those balloons,0 0 3 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and the guy say/s balloon/s five cent/s.,and the guy saies balloons five cents,0 0 0 1 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,(and then) and then he is all aw[-:] : okay.,and then he is all aw okay,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and then they see the bunny[!] doctor.,and then they see the bunny doctor,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and the bunny doctor say/3s : she need/3s a balloon because her favourite balloon (w) is gone.,and the bunny doctor says she needs a balloon because her favourite balloon is gone,0 0 0 0 3 0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,so the : bunny doctor take/3s out her change purse and give/3s her five cent/s.,so the bunny doctor takes out her change purse and gives her five cents,0 0 0 0 3 0 0 0 0 0 3 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,(and they both[!] get : g) and they both get balloon/s.,and they both get balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,(um) once upon a time there were two animal/s (play/ing) bounce/ing a ball.,once upon a time there were two animals bouncing a ball,0 0 0 0 0 0 0 1 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,then the ball fell in the water.,then the ball fell in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,then (um) one of the animal/s went to go get the ball.,then one of the animals went to go get the ball,0 0 0 0 1 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,they got it back for : them.,they got it back for them,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,and then she was thrill/ed.,and then she was thrilled,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,(um) one time two animal/s were play/ing.,one time two animals were playing,0 0 0 1 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,and then one of them were[EW:was] run/ing.,and then one of them were running,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,then : she was run/ing some more.,then she was running some more,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,and she almost fell over.,and she almost fell over,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,then she fell over and scrape/ed her knee.,then she fell over and scraped her knee,0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,then the lifeguard came to come and help.,then the lifeguard came to come and help,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,they put a bandage over the : scrape.,they put a bandage over the scrape,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,she was all better.,she was all better,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,the lifeguard : said no run/ing.,the lifeguard said no running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,(um) one time (a girl) a[EW:an]: elephant girl want/ed to play : with an airplane.,one time a elephant girl wanted to play with an airplane,0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,then there was another animal that (um) was play/ing with it.,then there was another animal that was playing with it,0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,and the other (um) one like/ed it.,and the other one liked it,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,then (um) the girl grab/ed it.,then the girl grabbed it,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,and now she was play/ing it.,and now she was playing it,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,then she drop/ed it in the water.,then she dropped it in the water,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,then the guy got mad.,then the guy got mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,then the lifeguard came.,then the lifeguard came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,(um) the girl told the lifeguard what happen/ed.,the girl told the lifeguard what happened,0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,the lifeguard could not reach.,the lifeguard could not reach,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,the lifeguard did not know what to do.,the lifeguard did not know what to do,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,then (um) someone got a scoop : and got it out.,then someone got a scoop and got it out,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,and then (um) she gave it back to the boy.,and then she gave it back to the boy,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,the boy was happy.,the boy was happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,one time a little girl was make/ing a sandcastle.,one time a little girl was making a sandcastle,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,then (um ) a[EW:an] other person came to come and help.,then a other person came to come and help,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,(she) he dump/ed (a) a bucket of sand on the sandcastle.,he dumped a bucket of sand on the sandcastle,0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,and the sandcastle broke.,and the sandcastle broke,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,she try/ed to fix it.,she tried to fix it,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,one time two : people were go/ing to [~_gonna] have a picnic.,one time two people were going to have a picnic,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,the rabbit want/ed to eat lot/s.,the rabbit wanted to eat lots,0 0 4 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,and he did[!] eat lot/s.,and he did eat lots,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,he was stuff/ed.,he was stuffed,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,then he : went to sleep.,then he went to sleep,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,and (um) : I think the other person thought he was dead.,and I think the other person thought he was dead,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,so he went to go get a : grownup.,so he went to go get a grownup,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,(she) (he) she pull/ed her towards the : rabbit : and made her wake up.,she pulled her towards the rabbit and made her wake up,0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,then they were happy again.,then they were happy again,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,(uh w) one day a boy had a : balloon.,one day a boy had a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,then another person came.,then another person came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,(he) (he was tie) (tying) he was untie/ing the balloon.,he was untying the balloon,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,and then it went up fly/ing high.,and then it went up flying high,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,the girl got angry.,the girl got angry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,and then : the other (b) guy (got ano) (got a) found a balloon : person.,and then the other guy found a balloon person,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,and he want/ed one balloon.,and he wanted one balloon,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,and he had (to pay) to pay five cent/s.,and he had to pay five cents,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,but he did not have the money.,but he did not have the money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,then they : beg/ed the guy.,then they begged the guy,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,(then : he) then : [~_clears_throat] the rabbit went to go get their mom.,then the rabbit went to go get their mom,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,and he ask/ed for five cent/s.,and he asked for five cents,0 0 4 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,and he got five cent/s.,and he got five cents,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,and he got a balloon.,and he got a balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,(Okay) one day an elephant was walk/ing down the street bounce/ing a ball.,one day an elephant was walking down the street bouncing a ball,0 0 0 0 0 6 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and he ran into his friend.,and he ran into his friend,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,(but) and they went to the swimming pool together.,and they went to the swimming pool together,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,but[!] : all of a sudden : their ball fell into the pool.,but all of a sudden their ball fell into the pool,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and so they had to go swim/ing to get it.,and so they had to go swimming to get it,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and so : the friend hand/ed the elephant the ball.,and so the friend handed the elephant the ball,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and she said thank you.,and she said thank you,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,(and then they decide/ed to go s) and they decide/ed to go and : bounce the ball again.,and they decided to go and bounce the ball again,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,(Okay) so one day two friend[EW:friends] decide/ed to go to the pool.,so one day two friend decided to go to the pool,0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and one said whoa look at that diving board.,and one said whoa look at that diving board,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,that would be lot/s of fun.,that would be lots of fun,0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and so they start run/ing towards the diving board.,and so they start running towards the diving board,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,but the elephant slip/3s.,but the elephant slips,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and she really hurt/3s her (nu) knee.,and she really hurts her knee,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,owie she say/3s I have got a cut on my knee.,owie she says I have got a cut on my knee,0 0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,it hurt/3s.,it hurts,0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and the lifeguard come/3s run/ing.,and the lifeguard comes running,0 0 0 3 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and the lifeguard put/3s a bandaid on it.,and the lifeguard puts a bandaid on it,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and she walk/3s back to (the) a bench.,and she walks back to a bench,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and the lifeguard tell/3s her not to run : at the pool.,and the lifeguard tells her not to run at the pool,0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and he point/3s to a sign that says no run/ing.,and he points to a sign that says no running,0 0 3 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,so one day these two friend/s decide/ed to go to a pool.,so one day these two friends decided to go to a pool,0 0 0 0 0 1 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and one of them was carry/ing a toy airplane.,and one of them was carrying a toy airplane,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and : she decide/ed to play with her toy airplane.,and she decided to play with her toy airplane,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and : (this) (there fr) her friend grab/ed it : and said wow[!] I like this airplane.,and her friend grabbed it and said wow I like this airplane,0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,but she drop/ed it.,but she dropped it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and it fell into the pool.,and it fell into the pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and : the friend got mad (at her fr) at their friend.,and the friend got mad at their friend,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and they ask/ed the lifeguard if (sh) he[!] could get the : airplane out.,and they asked the lifeguard if he could get the airplane out,0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and she said [~_high_pitched_voice] please please our airplane is in the water !,and she said please please our airplane is in the water,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,[~_high_pitched_voice] it might not float!,it might not float,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and so he go/3s.,and so he goes,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and he try/3s to get it.,and he tries to get it,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,but he can not reach it.,but he can not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,it is a little bit too far away.,it is a little bit too far away,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and this guy start/3s cry/ing because he can not get his airplane back.,and this guy starts crying because he can not get his airplane back,0 0 0 3 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,but then[!] (this) this other[!] person comes along with a net.,but then this other person comes along with a net,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,(and she fish/3s) and she try/3s to fish the airplane out of the water.,and she tries to fish the airplane out of the water,0 0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and she get/3s it for him.,and she gets it for him,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and he say/3s thank you!,and he says thank you,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and he say/3s oh my airplane.,and he says oh my airplane,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,I am so glad it is back to me!,I am so glad it is back to me,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,One time two friend/s were play/ing in a sandbox.,One time two friends were playing in a sandbox,0 0 0 1 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and they decide/ed to make some sandcastle/s.,and they decided to make some sandcastles,0 0 4 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and (the) then (this) (the other) this friend said why do not we put some sand on it to make it even bigger?,and then this friend said why do not we put some sand on it to make it even bigger,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,but[!] : it burry/ed the castle.,but it burryed the castle,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and it fell over.,and it fell over,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and the friend who made it was like oh my poor castle.,and the friend who made it was like oh my poor castle,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,I want it back.,I want it back,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,one time two friend/s met on the road.,one time two friends met on the road,0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and they are plan/ing to have a picnic.,and they are planning to have a picnic,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and so they get to where they are have/ing the picnic.,and so they get to where they are having the picnic,0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and it turn/ed out that one of the friend/s was a rabbit.,and it turned out that one of the friends was a rabbit,0 0 4 0 0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,but he was really hungry.,but he was really hungry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and he got a really fat stomach after eat/ing all that.,and he got a really fat stomach after eating all that,0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and he said oh I do not feel very good.,and he said oh I do not feel very good,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,I think I ate too much.,I think I ate too much,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and then : the friend said oh dear.,and then the friend said oh dear,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,I will quickly fetch the doctor.,I will quickly fetch the doctor,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and so he went to get the doctor.,and so he went to get the doctor,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and he pull/ed the doctor and said [~_high_pitched_voice] please come quick.,and he pulled the doctor and said please come quick,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,[~_high_pitched_voice] I think he do/3s not feel well.,I think he does not feel well,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and the doctor come/3s and say/3s : well[!] : you better not eat that much food.,and the doctor comes and says well you better not eat that much food,0 0 0 3 0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,it make/3s you sick.,it makes you sick,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and so they go home.,and so they go home,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,One time two friend/s met.,One time two friends met,0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and : one was pull/ing a wagon with a balloon.,and one was pulling a wagon with a balloon,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and he said wow look at that balloon.,and he said wow look at that balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,(I think) : look how (f) high it float/3s.,look how high it floats,0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and he try/3s to untie the balloon.,and he tries to untie the balloon,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,but it float/3s away!,but it floats away,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and they want to get it back.,and they want to get it back,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and the friend get/3s really mad at the other friend because he want/3s his balloon back.,and the friend gets really mad at the other friend because he wants his balloon back,0 0 0 3 0 0 0 0 0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,but[!] they see a balloon man down the road sell/ing balloon/s.,but they see a balloon man down the road selling balloons,0 0 0 0 0 0 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and they say oh we want another balloon.,and they say oh we want another balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and : the man say/3s well : the balloon/s are five cent/s.,and the man says well the balloons are five cents,0 0 0 3 0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and they say well we do not have any money.,and they say well we do not have any money,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,(and) but they see : someone down the road.,but they see someone down the road,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and they think maybe (they) she would lend them money.,and they think maybe she would lend them money,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and they say we want to [~_wanna] buy a balloon.,and they say we want to buy a balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,can you please (ha) give us some money?,can you please give us some money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and so she give/3s them some money.,and so she gives them some money,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and they get a balloon.,and they get a balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and they both[!] get a balloon.,and they both get a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and they said well is not this nice.,and they said well is not this nice,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,now we both get a balloon.,now we both get a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(um) : take/ing a ball out [EU].,taking a ball out,6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,the ball got dirty.,the ball got dirty,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,and : the boy (got) : falled|fall[EW:fell] in the water.,and the boy falled in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(um) : the girl help/ed him get up.,the girl helped him get up,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,and they play/ed basketball.,and they played basketball,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,and that is the end again [+_bch].,and that is the end again,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(um : they) (they s) they did not jump in the water.,they did not jump in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,and the girl is go/ing to [~_gonna] jump in the water.,and the girl is going to jump in the water,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(um a) : a girl was (um) : run/ing.,a girl was running,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,girl hurt herself [EU].,girl hurt herself,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,she start/ed to cry.,she started to cry,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(s um : that) the boy is give/ing her a bandaid.,the boy is giving her a bandaid,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(uh : well) she had to sit down so it could feel[!] better.,she had to sit down so it could feel better,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,and the boy said are you fine.,and the boy said are you fine,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,that is the end [+_bch].,that is the end,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(uh) the little girl is make/ing a funny face.,the little girl is making a funny face,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(um) the boy was (um) fly/ing the airplane.,the boy was flying the airplane,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,and now the girl try/ed to fly the airplane.,and now the girl tried to fly the airplane,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,and (now) now the girl (um) drop/ed it in the water.,and now the girl dropped it in the water,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(now) now the boy got mad.,now the boy got mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(now) (now the) (now the) now the girl got scare/ed of (the) the boy.,now the girl got scared of the boy,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(uh now) (now) now the girl got scare/ed again.,now the girl got scared again,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,now (the) the coach was try/ing to get it.,now the coach was trying to get it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,now the coach (tri um) try/ed to get it.,now the coach tried to get it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(and it um) and then the coach did not get it.,and then the coach did not get it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,now the girl : try/ed to get it with the net.,now the girl tried to get it with the net,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(um) the girl almost got it.,the girl almost got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(now) now the girl gived|give[EW:gave] it to the boy.,now the girl gived it to the boy,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(now) now the boy was happy.,now the boy was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,and that is the end [+_bch].,and that is the end,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,mouse is dig/ing.,mouse is digging,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,put/ing it in the bucket [EU].,putting it in the bucket,6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(um) dump/ing it on the castle [EU].,dumping it on the castle,6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,it : broke.,it broke,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,make/ing it [EU].,making it,6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(um) : mouse is go/ing on a field[!] trip.,mouse is going on a field trip,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,mouse is have/ing a picnic.,mouse is having a picnic,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(um) : they (s) spill/ed all the juice.,they spilled all the juice,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(um) : they : broke their juice.,they broke their juice,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,mommy comed|come[EW:came].,mommy comed,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(um : um uh : um) mommy took the : baby away.,mommy took the baby away,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(um : um) the mommy took the[-:] : baby away again.,the mommy took the baby away again,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,and : they went back home.,and they went back home,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(um) that is the end [+_bch].,that is the end,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,take/ing the balloon for a ride [EU].,taking the balloon for a ride,6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,and the : boy is take/ing the balloon away.,and the boy is taking the balloon away,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(um) : he is (um) pull/ing the balloon off.,he is pulling the balloon off,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,the balloon is fly/ing away.,the balloon is flying away,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(um) the boy got mad[!].,the boy got mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(um) : daddy : gived|give[EW:gave] them some more (um) balloon/s.,daddy gived them some more balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,and then : daddy gived|give[EW:gave] (um) the boy some balloon/s.,and then daddy gived the boy some balloons,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(and) : and (then) then the boy got one.,and then the boy got one,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(then) : and the baby[!] got one too.,and the baby got one too,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,and mommy was (uh) : look/ing that way.,and mommy was looking that way,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,and : (that) (that) the boy got : the : balloon/s.,and the boy got the balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,and (um the) the daddy give|give[EW:gave] the : mommy some money.,and the daddy give the mommy some money,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,and then : (that um) the baby has got some balloon/s.,and then the baby has got some balloons,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(that) that is the end [+_bch].,that is the end,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,once upon a time there was a giraffe and a[EW:an] elephant.,once upon a time there was a giraffe and a elephant,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,and they were play/ing basketball.,and they were playing basketball,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,: but then the basketball went into the water.,but then the basketball went into the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,and the elephant had a swimming suit on.,and the elephant had a swimming suit on,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,so I think she went to go get it.,so I think she went to go get it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,: instead the giraffe went to go get it.,instead the giraffe went to go get it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,: and then the giraffe gave the ball back to the elephant.,and then the giraffe gave the ball back to the elephant,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,: but then the giraffe was : wet.,but then the giraffe was wet,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,once upon a time there was : a : giraffe and a[EW:an] elephant who want/ed to go swim.,once upon a time there was a giraffe and a elephant who wanted to go swim,0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,: then the elephant runned|run[EW:ran].,then the elephant runned,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,: then the elephant slip/ed.,then the elephant slipped,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,and : then the giraffe run/3s to help her.,and then the giraffe runs to help her,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,and then : she fall/3s down.,and then she falls down,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,and she scrape/3s her knee.,and she scrapes her knee,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,: then the lifeguard run/3s to her.,then the lifeguard runs to her,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,: then the lifeguard had some bandage/s.,then the lifeguard had some bandages,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,and : the lifeguard putted|put[EW:put] a bandage on her knee.,and the lifeguard putted a bandage on her knee,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,(then : her) then she could not walk very well because her knee was really hurt.,then she could not walk very well because her knee was really hurt,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,then the lifeguard told her : to : not run and stay there.,then the lifeguard told her to not run and stay there,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,once upon a time there was : a[EW:an] elephant and a giraffe.,once upon a time there was a elephant and a giraffe,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,and the giraffe had a[EW:an] airplane.,and the giraffe had a airplane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,the giraffe was play/ing with the airplane.,the giraffe was playing with the airplane,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,and he made the : airplane make a sound.,and he made the airplane make a sound,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,then the elephant grab/ed it from him.,then the elephant grabbed it from him,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,and the giraffe said hey[!].,and the giraffe said hey,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,then : the elephant accidentally drop/ed the : airplane into the water.,then the elephant accidentally dropped the airplane into the water,0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,then the giraffe was so mad at her.,then the giraffe was so mad at her,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,: then the lifeguard maked|make[EW:made] a really funny face.,then the lifeguard maked a really funny face,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,: then the lifeguard made a really strange face that look/ed like oh I do not know.,then the lifeguard made a really strange face that looked like oh I do not know,0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,then the lifeguard try/ed to get it.,then the lifeguard tried to get it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,: the giraffe was really sad.,the giraffe was really sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,then a lady[-:] came with : a : [~_C_asks_what_'that'_is;_E_tells__C_to_describe_it] a net (that um) to get the airplane.,then a lady came with a a net to get the airplane,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,the lady got it.,the lady got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,then the giraffe was happy.,then the giraffe was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,then (the) the giraffe was really really happy.,then the giraffe was really really happy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,once upon a time there was : a bunny rabbit and another animal.,once upon a time there was a bunny rabbit and another animal,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,(they are going) and they were go/ing to make a sandcastle.,and they were going to make a sandcastle,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,and then they made the sandcastle.,and then they made the sandcastle,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,but then : it rain/ed.,but then it rained,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,and then the sandcastle broke.,and then the sandcastle broke,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,and then : the : other animal was sad.,and then the other animal was sad,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,once upon a time there was a bunny and a : different kind of animal.,once upon a time there was a bunny and a different kind of animal,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,and they are go/ing for a picnic.,and they are going for a picnic,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,then they went to a picnic.,then they went to a picnic,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,and : the bunny had lot/s of : yummy stuff to eat.,and the bunny had lots of yummy stuff to eat,0 0 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,and some of it was not good food.,and some of it was not good food,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,then : when the bunny was done eat/ing he was fat.,then when the bunny was done eating he was fat,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,then he had a stomachache.,then he had a stomachache,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,and then another bunny came.,and then another bunny came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,and : the : (weird um) weird animal : came and got the : bunny and told him something about the kid bunny.,and the weird animal came and got the bunny and told him something about the kid bunny,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,and then : the big bunny was happy.,and then the big bunny was happy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,: and then : he had a fever.,and then he had a fever,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,then the big bunny took him to the doctor.,then the big bunny took him to the doctor,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,once upon a time there was a little girl who had a balloon.,once upon a time there was a little girl who had a balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,and a bunny came.,and a bunny came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,: then the bunny saw the balloon[-:].,then the bunny saw the balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,and then the bunny try/ed to take it off the wagon.,and then the bunny tried to take it off the wagon,0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,then it went up into the air by accident.,then it went up into the air by accident,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,then he could not reach it.,then he could not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,so the girl was really mad.,so the girl was really mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,but then they saw (a man) : a bunny man who : had balloon/s.,but then they saw a bunny man who had balloons,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,: then : the bunny : try/ed to tell him (what it) what kind of balloon he want/ed.,then the bunny tried to tell him what kind of balloon he wanted,0 0 0 4 0 0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,: but then the balloon/s cost five cent/s.,but then the balloons cost five cents,0 0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,and he did not have five cent/s.,and he did not have five cents,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,: then : the kids were sad.,then the kids were sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,then (he) : (these) the bunny saw : a doctor : who had money.,then the bunny saw a doctor who had money,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,what was that?,what was that,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,who had money [+_bch].,who had money,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,: and then : the boy ask/ed : the doctor : for : some money.,and then the boy asked the doctor for some money,0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,then the doctor gave : some money to the man for (a) two balloon/s.,then the doctor gave some money to the man for two balloons,0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,then they each got a balloon.,then they each got a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,the giraffe see/3s an elephant.,the giraffe sees an elephant,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the elephant is : bounce/ing a ball.,and the elephant is bouncing a ball,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the ball fell in the water.,and the ball fell in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the giraffe see/3s it.,and the giraffe sees it,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the giraffe go/3s in the water (and : tr) and try/3s to get (it) the ball.,and the giraffe goes in the water and tries to get the ball,0 0 0 3 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and then the giraffe got to the ball and give/3s it to the elephant.,and then the giraffe got to the ball and gives it to the elephant,0 0 0 0 0 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the elephant thank/ed him.,and the elephant thanked him,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,the elephant want/3s[?] to see the water.,the elephant wants to see the water,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and she want/3s to go (on) in it.,and she wants to go in it,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and she would not.,and she would not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and she ask/ed the diving coach (if he) if she could go.,and she asked the diving coach if she could go,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and he said yes.,and he said yes,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,then she (runned|run[EW:ran]) ran.,then she ran,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and she is not supposed to.,and she is not supposed to,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,so she just ran.,so she just ran,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and then she slip/ed.,and then she slipped,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,(then she) then the giraffe saw her.,then the giraffe saw her,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,he[EW:she] cut her knee.,he cut her knee,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,(then there is another) then the giraffe coach and the elephant coach came.,then the giraffe coach and the elephant coach came,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,(and) and there is a sign say/ing no run/ing.,and there is a sign saying no running,0 0 0 0 0 6 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and then the elephant put/3s a bandaid on her knee.,and then the elephant puts a bandaid on her knee,0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,(and then he) then that is all [+_bch].,then that is all,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and then she sit/3s on the bench.,and then she sits on the bench,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and her knee do/3s not hurt that much any more.,and her knee does not hurt that much any more,0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and (the :) the elephant coach point/ed to the sign.,and the elephant coach pointed to the sign,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and it said no run/ing.,and it said no running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and she was like [~_makes_a_face].,and she was like,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,she make/3s a face.,she makes a face,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,(um) the girl see/3s the giraffe with a toy airplane.,the girl sees the giraffe with a toy airplane,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,(and the) : (and the) and the giraffe : is play/ing with the toy airplane.,and the giraffe is playing with the toy airplane,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the girl see/3s the airplane.,and the girl sees the airplane,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the girl snatch/ed *it from (the) the giraffe [EU].,and the girl snatched from the giraffe,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the giraffe said hey!,and the giraffe said hey,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,then the girl accidentally splash/ed it in the water [EU].,then the girl accidentally splashed it in the water,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and now : and that is all [+_bch].,and now and that is all,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and then the giraffe was mad at the elephant.,and then the giraffe was mad at the elephant,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and (the) the elephant coach came over.,and the elephant coach came over,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the giraffe was sad.,and the giraffe was sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the little elephant explain/ed : how it happen/ed.,and the little elephant explained how it happened,0 0 0 0 4 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and then the coach elephant try/ed to get it.,and then the coach elephant tried to get it,0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,but he could not reach it.,but he could not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and then the giraffe start/ed cry/ing.,and then the giraffe started crying,0 0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,then a coach girl elephant came over.,then a coach girl elephant came over,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and (ha) she had a net to get the airplane.,and she had a net to get the airplane,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and (then she got the air) then she put it in.,and then she put it in,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,(got) and she got the airplane.,and she got the airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and she gave it back to the giraffe.,and she gave it back to the giraffe,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the giraffe was very happy.,and the giraffe was very happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,(and the giraffe) : and the elephant was very happy that he got it back.,and the elephant was very happy that he got it back,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,a puppy and a rabbit [EU].,a puppy and a rabbit,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,(are) the rabbit see/3s a puppy and say/3s can I play with you?,the rabbit sees a puppy and says can I play with you,0 0 3 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the puppy say/3s yes.,and the puppy says yes,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and so they build a sandcastle.,and so they build a sandcastle,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and they start build/ing a sandcastle.,and they start building a sandcastle,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the rabbit has a : bucket with sand in it and a shovel.,and the rabbit has a bucket with sand in it and a shovel,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and he is scoop/ing sand out of it.,and he is scooping sand out of it,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,(and then he pour/3s it) and then the rabbit pour/3s it on the sandcastle.,and then the rabbit pours it on the sandcastle,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the dog/z : eyes are twist/ed [~_laughs].,and the dog's eyes are twisted,0 0 2 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and (then) then the rabbit (was like) (he he) he saw the sandcastle *was broken [EU].,and then the rabbit he saw the sandcastle broken,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,(and the dog) and the rabbit was like [~_makes_a_face].,and the rabbit was like,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,"you are make/ing a face, mmhm.",you are making a face mmhm,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the dog was cry/ing.,and the dog was crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the rabbit (um) was embarrass/ed.,and the rabbit was embarrassed,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,(the dog) the rabbit was walk/ing down the path.,the rabbit was walking down the path,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the rabbit see/3s the dog.,and the rabbit sees the dog,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the dog say/3s hi.,and the dog says hi,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and then they go sit down on the grass.,and then they go sit down on the grass,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the rabbit start/3s eat/ing.,and the rabbit starts eating,0 0 0 3 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and his tongue is stick/ing out [~_laughs].,and his tongue is sticking out,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,(the dog um) the rabbit is get/ing full and full : and fuller.,the rabbit is getting full and full and fuller,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the dog is just drink/ing it/z juice.,and the dog is just drinking it's juice,0 0 0 0 0 6 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and then the dog see/3s a doctor and say/3s help.,and then the dog sees a doctor and says help,0 0 0 0 3 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,my friend is hurt.,my friend is hurt,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and then the dog pull/3s her over (to) so she can see the : little rabbit.,and then the dog pulls her over so she can see the little rabbit,0 0 0 0 3 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and then the : (uh) doctor rabbit look/3s at him.,and then the doctor rabbit looks at him,0 0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and (he is) (she is p) she is point/ing to something.,and she is pointing to something,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and (the) then the doctor take/3s the rabbit with (hi) her.,and then the doctor takes the rabbit with her,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,the rabbit see/3s the dog with : a wagon with a balloon tie/ed on it.,the rabbit sees the dog with a wagon with a balloon tied on it,0 0 3 0 0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the dog see/3s the rabbit.,and the dog sees the rabbit,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and then the rabbit say/3s hey : (can I) can I look at your balloon?,and then the rabbit says hey can I look at your balloon,0 0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,the dog say/3s yes.,the dog says yes,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,(then the b) then the rabbit take/3s the balloon off.,then the rabbit takes the balloon off,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the dog is like [~_makes_a_face].,and the dog is like,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,you made a face again.,you made a face again,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,(and then the balloo) and then the rabbit let go of (it) the balloon.,and then the rabbit let go of the balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the balloon fly/3s away.,and the balloon flies away,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the balloon go/3s up and up.,and the balloon goes up and up,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the dog is mad.,and the dog is mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,(then they see um) then the dog is mad at the rabbit.,then the dog is mad at the rabbit,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and then the rabbit (go/3s) see/3s (um) a rabbit with : balloon/s.,and then the rabbit sees a rabbit with balloons,0 0 0 0 3 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and then he go/3s over to him : and say/3s hey can I have that balloon?,and then he goes over to him and says hey can I have that balloon,0 0 0 3 0 0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and then : the man say/3s : do you have five dollar/s?,and then the man says do you have five dollars,0 0 0 0 3 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the rabbit check/3s his pocket.,and the rabbit checks his pocket,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,no [~_shaking_his_head].,no,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,then the man stand/3s up there.,then the man stands up there,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and those two are sad.,and those two are sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and they pull the same (doc) girl over to (the) the balloon stand.,and they pull the same girl over to the balloon stand,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and so : the rabbit say/3s (can) can you get us a balloon?,and so the rabbit says can you get us a balloon,0 0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the rabbit say/3s yes.,and the rabbit says yes,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and (then) (then the guy) then the rabbit (sa) (put) put money in his hand.,and then the rabbit put money in his hand,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and then they got two balloon/s.,and then they got two balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,they were so happy.,they were so happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,(uh) once upon a times[EW:time][-:] a[EW:an] elephant was get/ing : a[EW:an][-:] octopus.,once upon a times a elephant was getting a octopus,0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,and then (they t) : (they always) : they splash[-:][!] the ball in the water.,and then they splash the ball in the water,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,and (that) : he swimmed|swim[EW:swam] and swimmed|swim[EW:swam].,and he swimmed and swimmed,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,and he could not breathe.,and he could not breathe,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,and then (he) (he) he got the ball to him!,and then he got the ball to him,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,and then they got all[-:] wet.,and then they got all wet,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,the end [+_bch] !,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,once upon a time[-:] : they[-:] did it again!,once upon a time they did it again,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,(tomorrow) tomorrow we will get the ball.,tomorrow we will get the ball,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,(today) today we can not get the ball.,today we can not get the ball,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,goodbye(*3).,goodbye,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,goodbye(*3).,goodbye,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,ow(*3).,ow,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,bounce(*3)!,bounce,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,[~_makes_sound_effect_'doing'_3_times].,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,ow(*3).,ow,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,thank you(*3)!,thank you,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,no more [+_bch].,no more,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,(um) [-:] : he bounce/ed on his nose [EU].,he bounced on his nose,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,he cut his nose.,he cut his nose,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,he saw the airplane!,he saw the airplane,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,he drop/ed it on the floor!,he dropped it on the floor,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,he almost drop/ed it in the water.,he almost dropped it in the water,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,but he did[~!_laughing].,but he did,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,uhoh you should : get it tomorrow[-:]!,uhoh you should get it tomorrow,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,and I am mad at you now !,and I am mad at you now,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,[~_makes_sound_effect_'doing'].,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,splash(*3).,splash,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,goodbye(*7)!,goodbye,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,thank you(*4).,thank you,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,you are welcome(*2).,you are welcome,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,catch it catch it for a tide or two [~_singsong_voice] [EU].,catch it catch it for a tide or two,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,catch it [EU].,catch it,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,I love you forever[!].,I love you forever,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,next time[-:] come back[!] [EU].,next time come back,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,love you forever again[~!_laughing] [EU].,love you forever again,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,I love you (f) xxx.,I love you,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,a bunny : was mad at the nother[EW:other] dog[-:].,a bunny was mad at the nother dog,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,a bunny[~!_laughing] was happy[!] at the dog now [EU].,a bunny was happy at the dog now,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,the bunny was sad[-:].,the bunny was sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,the bunny was happy!,the bunny was happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,the bunny was angry!,the bunny was angry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,the end[-:] [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,(um) : that guy is go/ing to[:_gonna] get that guy.,that guy is going to get that guy,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,and they are go/ing to bump[~!_laughing] into each other.,and they are going to bump into each other,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,and this one is sillier.,and this one is sillier,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,then (he) he took his nail off.,then he took his nail off,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,ooh[-:] he took his carrot.,ooh he took his carrot,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,(he) (he) he chokeded|choke[EW:choked].,he chokeded,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,he is sad.,he is sad,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,he is happy!,he is happy,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,he is : long.,he is long,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,he is long to walk [EU]!,he is long to walk,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,he is long to : get up because the mom was so sad.,he is long to get up because the mom was so sad,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,oh[-:][!] (then she went with the mom) then he went with the mom.,oh then he went with the mom,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,and there[-:] go/3s : the friend[!].,and there goes the friend,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,and the end [+_bch].,and the end,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,[~_I_I_I_do_n(o)t_say_once_upon_a_time_but_but_I_say_um] once upon a time[-:] there is[-:] (a : uh um) a bunny who *is running[~!__laughing] into a bunny [EU].,once upon a time there is a bunny who running into a bunny,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,(um one crashed) they crash/ed into each other.,they crashed into each other,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,and they bonk/ed their head/s.,and they bonked their heads,0 0 4 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,and they falled|fall[EW:fell] down upside down!,and they falled down upside down,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,and then[!] the balloon was broken.,and then the balloon was broken,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,then they got more[!] balloon/s.,then they got more balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,then they were happy.,then they were happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,he said goodbye[!].,he said goodbye,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,let us have a good time!,let us have a good time,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,someday/s you will come to me.,somedays you will come to me,1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,sometime/s you will not.,sometimes you will not,1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,sometime/s you will come to my house and be Santa!,sometimes you will come to my house and be Santa,1 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,sometime/s you *will be happy[!] to come to my house [EU].,sometimes you be happy to come to my house,1 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,then their mother/s came.,then their mothers came,0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,(the end) the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,they are at the swimming pool.,they are at the swimming pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,: (bu) but : (they do not know) : they do not know : how to swim.,but they do not know how to swim,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,zebra try/3s : to.,zebra tries to,0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,(but) and he (gets a : s) (tr) try/3s to.,and he tries to,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,(but) : and he got the ball.,and he got the ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,he is wet.,he is wet,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,they meet again.,they meet again,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,: but this time (she is) she is go/ing into the pool.,but this time she is going into the pool,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,but she slip/3s : and[-:] : fall/3s : and is cry/ing.,but she slips and falls and is crying,0 0 3 0 3 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,: the lifeguard come/3s : and (sh) : help/3s : the : scrape on her knee get better.,the lifeguard comes and helps the scrape on her knee get better,0 0 3 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,: (she can : s) he say/3s she has to sit down.,he says she has to sit down,0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,: he point/3s to the sign and say/3s (n) that say/3s no run/ing.,he points to the sign and says that says no running,0 3 0 0 0 0 3 0 3 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,her knee is better.,her knee is better,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,: he has a plane.,he has a plane,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,she snatch/3s it from him.,she snatches it from him,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,she drop/3s it in the water.,she drops it in the water,0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,it sink/3s.,it sinks,0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,: the lifeguard : tell/3s her to get it.,the lifeguard tells her to get it,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,: she tell/3s the truth.,she tells the truth,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,he try/3s to get it.,he tries to get it,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,but he can not.,but he can not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,he is sad.,he is sad,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,but someone else come/3s with a net : and scoop/3s it up : (but) : and give/3s it back to (her) him.,but someone else comes with a net and scoops it up and gives it back to him,0 0 0 3 0 0 0 0 3 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,he is happy.,he is happy,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,one of the : animal/s spill/ed his sandcastle.,one of the animals spilled his sandcastle,0 0 0 1 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,bunny want/3s to help.,bunny wants to help,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,he spill/3s it on.,he spills it on,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,: (zz) this woman (is) she is sad.,this woman she is sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,and then she cry/3s.,and then she cries,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,they are there : again.,they are there again,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,he is eat/ing a carrot.,he is eating a carrot,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,and (she) (he has all) he is eat/ing all the yummy stuff.,and he is eating all the yummy stuff,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,and all she has is a sandwich.,and all she has is a sandwich,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,and then he is full.,and then he is full,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,: (d) dizzy.,dizzy,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,then : she run/3s : (back) : back up : to get the doctor.,then she runs back up to get the doctor,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,: and : the doctor (sa um) : tell/3s the bunny (tha) do not eat too much.,and the doctor tells the bunny do not eat too much,0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,and then : the doctor take/3s the bunny : to the : doctor/z office.,and then the doctor takes the bunny to the doctor's office,0 0 0 0 3 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,(she) she has a balloon and wagon.,she has a balloon and wagon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,(she is point/ing at it) he is point/ing at it.,he is pointing at it,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,(he w) he want/3s : to untie it.,he wants to untie it,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,it fly/3s away.,it flies away,0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,and then she get/3s mad.,and then she gets mad,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,(ss[-:]) : someone is sell/ing balloon/s.,someone is selling balloons,0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,: and he ask/3s for another one for her.,and he asks for another one for her,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,: he do/3s not have any money.,he does not have any money,0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,: he tell/3s (the bu) : her.,he tells her,0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,so : she might have money.,so she might have money,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,they ask someone else for five (ss) penny/s : for a balloon.,they ask someone else for five pence for a balloon,0 0 0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,: there is[EW:are] two left.,there is two left,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,: he want/3s his to pop : and fly away maybe.,he wants his to pop and fly away maybe,0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,There is a giraffe that is play/ing with the elephant.,There is a giraffe that is playing with the elephant,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then (one) (one balloon was um) something fell in the water.,and then something fell in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,the giraffe was try/ing to catch it.,the giraffe was trying to catch it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and (he's) he was almost there.,and he was almost there,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then (he k) the elephant already gots[EW:has] one.,and then the elephant already gots one,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then the elephant was happy that he got it.,and then the elephant was happy that he got it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,(Um) there : the giraffe and the elephant is[EW:are] together.,there the giraffe and the elephant is together,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and : the elephant is run/ing to go to the big thing that you : jump on?,and the elephant is running to go to the big thing that you jump on,0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,(and then the) : and then the elephant is run/ing : and the giraffe too.,and then the elephant is running and the giraffe too,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then the elephant slip/ed : and then : (break um) had an owie on her knee.,and then the elephant slipped and then had an owie on her knee,0 0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then the lifeguard came.,and then the lifeguard came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then : the giraffe told everything what happen/ed.,and then the giraffe told everything what happened,0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then : the elephant is (mak) cheer/ing the other elephant up.,and then the elephant is cheering the other elephant up,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then : he put a (bla) bandaid on it.,and then he put a bandaid on it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,"and then : the (: um) lifeguard show/ed no running, the sign.",and then the lifeguard showed no running the sign,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,The elephant is talk/ing to the giraffe about something.,The elephant is talking to the giraffe about something,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,(the : gira) the giraffe is (um) play/ing with his plane in the (um ss um) waterpark.,the giraffe is playing with his plane in the waterpark,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then he gave it to the elephant to see.,and then he gave it to the elephant to see,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then : the elephant accidentally (put) sinked|sink[EW:sunk] it in the water [EU].,and then the elephant accidentally sinked it in the water,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then it was sink/ing.,and then it was sinking,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then the : giraffe was get/ing mad at the elephant.,and then the giraffe was getting mad at the elephant,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,(and) and the lifeguard came.,and the lifeguard came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then : he is say/ing what is happen/ing.,and then he is saying what is happening,0 0 0 0 6 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then (the little) the giraffe told *him everything [EU].,and then the giraffe told everything,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then (the) : the elephant is try/ing to say (um that) what happen/ed after the giraffe.,and then the elephant is trying to say what happened after the giraffe,0 0 0 0 0 6 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and the lifeguard is try/ing to get the airplane.,and the lifeguard is trying to get the airplane,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then : the little : giraffe is cry/ing because it is sink/ing.,and then the little giraffe is crying because it is sinking,0 0 0 0 0 0 6 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then there was this lady who gots[EW:has] a net.,and then there was this lady who gots a net,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then : she is go/ing to catch the plane.,and then she is going to catch the plane,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then she is try/ing to catch it.,and then she is trying to catch it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then she caught it.,and then she caught it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then : they were both happy.,and then they were both happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,There is (um) a kangaroo : that is play/ing and build/ing a castle in the sand.,There is a kangaroo that is playing and building a castle in the sand,0 0 0 0 0 0 6 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and (there's) there is a bunny rabbit who : is ask/ing if she can play too.,and there is a bunny rabbit who is asking if she can play too,0 0 0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,the bunny rabbit is try/ing to make a castle (like) just like the kangaroo/z.,the bunny rabbit is trying to make a castle just like the kangaroo's,0 0 0 0 6 0 0 0 0 0 0 0 2 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,the rabbit is start/ing to pour it on the castle.,the rabbit is starting to pour it on the castle,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then the : bunny : rabbit is cry/ing.,and then the bunny rabbit is crying,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then : now (it is gone) the castle is gone : because of the rabbit.,and then now the castle is gone because of the rabbit,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then the little : (um) puppy is cry/ing.,and then the little puppy is crying,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,There is a little puppy.,There is a little puppy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and there is a rabbit carry/ing some food.,and there is a rabbit carrying some food,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,(and there) and then the little : bunny (is) had a lot of food than the puppy [EU].,and then the little bunny had a lot of food than the puppy,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then the bunny rabbit is dizzy because he ate all those[EW:that] stuff.,and then the bunny rabbit is dizzy because he ate all those stuff,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then the little puppy : is drink/ing juice.,and then the little puppy is drinking juice,0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then the little bunny rabbit is dizzy.,and then the little bunny rabbit is dizzy,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then (there is) the (pu) little puppy is call/ing for the doctor.,and then the little puppy is calling for the doctor,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then : (the doctor is) the puppy is pull/ing the doctor to see : to help.,and then the puppy is pulling the doctor to see to help,0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,the bunny rabbit : (i) is dizzy.,the bunny rabbit is dizzy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then the doctor is clear/ing him [EU].,and then the doctor is clearing him,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then : the doctor is take/ing him to (is) his office.,and then the doctor is taking him to his office,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,There is this little puppy who is carry/ing : a wagon.,There is this little puppy who is carrying a wagon,0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then it has a balloon on it.,and then it has a balloon on it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and the bunny rabbit : is say/ing hello.,and the bunny rabbit is saying hello,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then the puppy (is try/ing) : is say/ing that he has a balloon on his wagon.,and then the puppy is saying that he has a balloon on his wagon,0 0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then : the bunny rabbit is look/ing at it.,and then the bunny rabbit is looking at it,0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then : the bunny rabbit is take/ing off the balloon on the wagon.,and then the bunny rabbit is taking off the balloon on the wagon,0 0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,(and) and then : the puppy (is) is almost go/ing to cry : if it is go/ing to blow up in the sky.,and then the puppy is almost going to cry if it is going to blow up in the sky,0 0 0 0 0 0 6 0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then the bunny rabbit is try/ing to catch it.,and then the bunny rabbit is trying to catch it,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,(and the puppy) and then he could not reach it.,and then he could not reach it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then it was all the way up to the sky.,and then it was all the way up to the sky,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then the little puppy was gett/ing mad.,and then the little puppy was getting mad,0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and there was this bunny rabbit clown : who : was carry/ing lots of balloon/s.,and there was this bunny rabbit clown who was carrying lots of balloons,0 0 0 0 0 0 0 0 0 6 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then : (the bun) the little bunny rabbit was go/ing to him.,and then the little bunny rabbit was going to him,0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then : the little puppy is still mad.,and then the little puppy is still mad,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then (he's) the little rabbit is ask/ing for a balloon.,and then the little rabbit is asking for a balloon,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then it : says five cent/s.,and then it says five cents,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,but the little bunny rabbit does not have any (um : mm) five cent/s [EU].,but the little bunny rabbit does not have any five cents,0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then : the little puppy and the little rabbit : is[EW:are] try/ing : to tell him that (he) they want a balloon.,and then the little puppy and the little rabbit is trying to tell him that they want a balloon,0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and there was (this doctor who was try/ing) (thi) this doctor.,and there was this doctor,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then the little rabbit is try/ing to : go to the doctor.,and then the little rabbit is trying to go to the doctor,0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then the doctor was stand/ing.,and then the doctor was standing,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then the doctor said what (s) is it?,and then the doctor said what is it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then the little rabbit point/ed to what is the problem [EU].,and then the little rabbit pointed to what is the problem,0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then (the little balloon) (the rabb) the doctor is pay/ing the : man.,and then the doctor is paying the man,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then they each got one.,and then they each got one,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then they were happy.,and then they were happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,Once an elephant met a [~_I_forget_what_that_animal_is] [~_EXA:_what__do_you_think_it_is] giraffe [+_bch].,Once an elephant met a giraffe,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,Once an elephant met with a giraffe.,Once an elephant met with a giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,(the) the elephant was play/ing with his ballie.,the elephant was playing with his ballie,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and then the elephant accidentally threw the ball into the water.,and then the elephant accidentally threw the ball into the water,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and then the giraffe had to go swim in the water to get it.,and then the giraffe had to go swim in the water to get it,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and then the elephant thank/ed (the um) : the : giraffe for get/ing it.,and then the elephant thanked the giraffe for getting it,0 0 0 0 4 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and then : the elephant was very happy.,and then the elephant was very happy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,Once upon a time (there a) there was an elephant and a giraffe.,Once upon a time there was an elephant and a giraffe,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,they were very happy to be together : at a swimming pool.,they were very happy to be together at a swimming pool,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,the elephant want/ed to go swimming on the dive/ing board.,the elephant wanted to go swimming on the diving board,0 0 4 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,but she trip/ed.,but she tripped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,(and) and the giraffe came run/ing after (her) her.,and the giraffe came running after her,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,(she) she had a scab on her knee.,she had a scab on her knee,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and she was cry/ing.,and she was crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,the lifeguard came and saw it was just a bruise.,the lifeguard came and saw it was just a bruise,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,(and) and her friend had to take her home.,and her friend had to take her home,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and she cry/ed mostly[EW:most] of the afternoon.,and she cried mostly of the afternoon,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,the lifeguard put a bandaid on her.,the lifeguard put a bandaid on her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,now she was all better.,now she was all better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and she sat on a bench.,and she sat on a bench,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and the lifeguard got mad at her.,and the lifeguard got mad at her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,Once a giraffe met a[EW:an] : elephant.,Once a giraffe met a elephant,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,but : the giraffe like/ed : fly/ing stuff.,but the giraffe liked flying stuff,0 0 0 4 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and the : elephant did not like it.,and the elephant did not like it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,it made her dizzy.,it made her dizzy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and then she just grab/ed it and try/ed (and) : make/ing it fly.,and then she just grabbed it and tried making it fly,0 0 0 0 4 0 0 4 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,but it fell into the pool.,but it fell into the pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,then the giraffe got mad at the elephant.,then the giraffe got mad at the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and : they told the lifeguard.,and they told the lifeguard,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and the elephant told the lifeguard what have|have[EW:had] happen/ed.,and the elephant told the lifeguard what have happened,0 0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and then the lifeguard lean/ed : over the water and try/ed to get it.,and then the lifeguard leaned over the water and tried to get it,0 0 0 0 4 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,but he could not get it because he was too (b) far.,but he could not get it because he was too far,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,but then a lady with a net (had) had : almost got it.,but then a lady with a net had almost got it,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and she probably said she would.,and she probably said she would,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,(she p) she almost got it.,she almost got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,(but) : but I think she did not.,but I think she did not,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and she did[!] get it and gave it back to the : giraffe.,and she did get it and gave it back to the giraffe,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,the giraffe was happy at[EW:with] the elephant.,the giraffe was happy at the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,Once a bunny (ma) met a baby dog.,Once a bunny met a baby dog,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,he want/ed to make a sandcastle just like the dog.,he wanted to make a sandcastle just like the dog,0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and then he almost broke it by pour/ing the whole box of (ss) sand on the sandcastle.,and then he almost broke it by pouring the whole box of sand on the sandcastle,0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and then it was broken.,and then it was broken,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and then the : dog start/ed cry/ing.,and then the dog started crying,0 0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and the bunny was : feel/ing really weird.,and the bunny was feeling really weird,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,once a bunny met the dog.,once a bunny met the dog,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,they want/ed to have a picnic.,they wanted to have a picnic,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,but the bunny ate all the stuff : and had (a f) a tummyache.,but the bunny ate all the stuff and had a tummyache,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,(but) and he fell down and hurt his tummy again.,and he fell down and hurt his tummy again,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,(and) and the dog ran and got : a doctor.,and the dog ran and got a doctor,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,the doctor try/ed help/ing the [+_bch] [+/]^,the doctor tried helping the,0 0 4 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,www.,www,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,(um) (he tr) the doctor try/ed[!] help/ing.,the doctor tried helping,0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,but it did not quite work.,but it did not quite work,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,but it did[!] work.,but it did work,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and the bunny had to go home with the doctor.,and the bunny had to go home with the doctor,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,once : a bunny met a dog with a wagon with a (red um) red balloon.,once a bunny met a dog with a wagon with a red balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,the bunny want/ed the red balloon.,the bunny wanted the red balloon,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,but the dog did not want to give it to him.,but the dog did not want to give it to him,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,he try/ed screw/ing it off : and try/ed cut/ing it off.,he tried screwing it off and tried cutting it off,0 4 6 0 0 0 4 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,but it still (stuck : to the red) sticked|stick[EW:stuck] to the red wagon.,but it still sticked to the red wagon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and then it flew away because he got it.,and then it flew away because he got it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and then the dog got really mad at the bunny.,and then the dog got really mad at the bunny,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,but the balloon man (with lot/s of balloon/s) with lot/s of red balloon/s (came) was there.,but the balloon man with lots of red balloons was there,0 0 0 0 0 1 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,(so) so he ask/ed for one balloon.,so he asked for one balloon,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and it was five cent/s.,and it was five cents,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,but he did not have any.,but he did not have any,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,so : they got really sad and wait/ed until (ah) their mommy came.,so they got really sad and waited until their mommy came,0 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and then their mommy : came.,and then their mommy came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,(and asked) and then they ask/ed him for (ten cent/s) [~_or] five cent/s.,and then they asked him for five cents,0 0 0 4 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,(and so) (and they) and the bunny told the whole story.,and the bunny told the whole story,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,(and) (and they) and she help/ed them : and gave them : some cents[EW:money].,and she helped them and gave them some cents,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,www.,www,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and then they both got a balloon : from : their mommy.,and then they both got a balloon from their mommy,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and they said thank you.,and they said thank you,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,one day (there was a pe sh) a girl was bounce/ing a ball by the pool.,one day a girl was bouncing a ball by the pool,0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and she was have/ing lot/s of fun with it.,and she was having lots of fun with it,0 0 0 6 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,her friend came by and : look/ed like he like/ed it too.,her friend came by and looked like he liked it too,0 0 0 0 0 4 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,then it land/ed in the pool right beside them.,then it landed in the pool right beside them,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,the (um) boy that (met her) met the girl with the ball : went into pool and swam and got the ball : gave it back to the girl.,the boy that met the girl with the ball went into pool and swam and got the ball gave it back to the girl,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and the girl was very happy that : he did.,and the girl was very happy that he did,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and then : (they :) she was very thankful and : said : would you like to : play with the ball too ?,and then she was very thankful and said would you like to play with the ball too,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,there was once (two boys) one girl and one : boy that were in swim suit/s.,there was once one girl and one boy that were in swim suits,0 0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and they were go/ing : swim/ing.,and they were going swimming,0 0 0 6 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,then the girl thought it would be a good idea to go off the diving board.,then the girl thought it would be a good idea to go off the diving board,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and she start/ed run/ing to it.,and she started running to it,0 0 4 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,she slip/ed : when she was run/ing.,she slipped when she was running,0 4 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,she hurt her knee.,she hurt her knee,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,the other boy had to go get : the lifeguard to help her.,the other boy had to go get the lifeguard to help her,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,he put a bandage on it.,he put a bandage on it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and it help/ed.,and it helped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,then the : lifeguard told her do not run in the swimming pool.,then the lifeguard told her do not run in the swimming pool,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,it is slippery.,it is slippery,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and you can fall.,and you can fall,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,: and show/ed her the no run/ing sign.,and showed her the no running sign,0 4 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,one day there was a boy and girl.,one day there was a boy and girl,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and they were both by the pool in swim suit/s.,and they were both by the pool in swim suits,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,(w) one of them had an airplane that he was play/ing with.,one of them had an airplane that he was playing with,0 0 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,he was have/ing lot/s of fun with it.,he was having lots of fun with it,0 0 6 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and the girl thought it look/ed fun too.,and the girl thought it looked fun too,0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,she grab/ed it away from him and start/ed play/ing with it.,she grabbed it away from him and started playing with it,0 4 0 0 0 0 0 4 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,it land/ed in the pool by accident.,it landed in the pool by accident,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,the boy was really mad at the girl.,the boy was really mad at the girl,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,(then the life) then they call/ed the lifeguard over.,then they called the lifeguard over,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,they told him what happen/ed.,they told him what happened,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and (he) he thought he might be able to get it out.,and he thought he might be able to get it out,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,he reach/ed.,he reached,0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,but he could not get it.,but he could not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,the lifeguard thought it was impossible to get.,the lifeguard thought it was impossible to get,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,then a lady with a net came by.,then a lady with a net came by,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,(she) they told her what happen/ed.,they told her what happened,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and she fish/ed it out of the pool with her net (: gave it) and gave it back to the boy.,and she fished it out of the pool with her net and gave it back to the boy,0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,the boy love/ed his plane so much.,the boy loved his plane so much,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and he thank/ed the woman.,and he thanked the woman,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,there was[EW:were] two boy/s one day.,there was two boys one day,0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,(they) one of them thought to build a sandcastle in the sandbox.,one of them thought to build a sandcastle in the sandbox,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,so he did.,so he did,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,the other one fill/ed a pail with the sand just as : the other boy was finish/ed.,the other one filled a pail with the sand just as the other boy was finished,0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,but then he pour/ed it (o) all over the boy/z sandcastle.,but then he poured it all over the boy's sandcastle,0 0 0 4 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,(the) he was not : too happy about it.,he was not too happy about it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,but : he could (um) : understand it I guess.,but he could understand it I guess,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,but the other boy start/ed to cry (because).,but the other boy started to cry,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and then the other boy knew that he had done something wrong after that.,and then the other boy knew that he had done something wrong after that,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,one day two boy/s were go/ing on a picnic.,one day two boys were going on a picnic,0 0 0 1 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,they both thought it was go/ing to be the best idea of the day.,they both thought it was going to be the best idea of the day,0 0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,one pack/ed : so big of a lunch.,one packed so big of a lunch,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,he thought he was really hungry.,he thought he was really hungry,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,the other one only pack/ed a little lunch.,the other one only packed a little lunch,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,but the one that pack/ed the big lunch : had (um) : a very big stomachache after he ate all he had.,but the one that packed the big lunch had a very big stomachache after he ate all he had,0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,then the one with the littler lunch : thought that he was (si) really sick.,then the one with the littler lunch thought that he was really sick,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and he was.,and he was,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,so she (call/ed) went for help (to um) on the side of the road where a woman was walk/ing.,so she went for help on the side of the road where a woman was walking,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and she took her because she was a doctor.,and she took her because she was a doctor,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and : (he went) (she went) the doctor went to : help the boy that ate too much.,and the doctor went to help the boy that ate too much,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and she told him do not eat too much any more : and took him away so (he) she could fix him up a little better.,and she told him do not eat too much any more and took him away so she could fix him up a little better,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,one day a boy went with a wagon with a balloon tie/ed to the : wheel of it.,one day a boy went with a wagon with a balloon tied to the wheel of it,0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and he met his best friend on the path.,and he met his best friend on the path,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and : his friend thought it was a really neat balloon : and reach/ed for it.,and his friend thought it was a really neat balloon and reached for it,0 0 0 0 0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,he trie/ed untie/ing it.,he tried untying it,0 4 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and the boy was surprise/ed that he did.,and the boy was surprised that he did,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,then the boy that try/ed to untie it let go of the other boy/z balloon.,then the boy that tried to untie it let go of the other boy's balloon,0 0 0 0 4 0 0 0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and it flew up into the air.,and it flew up into the air,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,the boy that the balloon was : was very angry at his friend [EU].,the boy that the balloon was was very angry at his friend,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,then : the boy that : let it up in the air saw : a balloon man hold/ing : lot/s of : more balloon/s.,then the boy that let it up in the air saw a balloon man holding lots of more balloons,0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,he ask/ed for one from the man.,he asked for one from the man,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,he check/ed in his pocket because they were five cent/s.,he checked in his pocket because they were five cents,0 4 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and he did not have any money.,and he did not have any money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,so they both look/ed very sad because : they both knew that : they had no five cent/s and that the balloon was gone.,so they both looked very sad because they both knew that they had no five cents and that the balloon was gone,0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,then they ask/ed : (um) a doctor on the side of the road.,then they asked a doctor on the side of the road,0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,(sh um) : she look/ed surprise/ed when the boy ask/ed her.,she looked surprised when the boy asked her,0 4 4 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,but the lady gave (h) him five cent/s (and the boys got) ten cent/s.,but the lady gave him five cents ten cents,0 0 0 0 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and both boy/s got balloon/s.,and both boys got balloons,0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and they were (very) very thankful to the woman on the side of the road.,and they were very thankful to the woman on the side of the road,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,once there was a little elephant : who was practice/ing : to (um) blow up (three[-:]) : three[-:] nut/s : at a time.,once there was a little elephant who was practicing to blow up three nuts at a time,0 0 0 0 0 0 0 0 6 0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,: but then : (the) one sunk.,but then one sunk,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,and then : she had a big bump in her nose.,and then she had a big bump in her nose,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,[~_high_pitched_voice] : oh no what are you do/ing?,oh no what are you doing,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,[~_high_pitched_voice] I can not eat that.,I can not eat that,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,[~_high_pitched_voice] there is poison in the water!,there is poison in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,oh I am so wet.,oh I am so wet,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,thank/s for the ball anyway/s.,thanks for the ball anyways,1 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,[~_low_pitched_voice] : I will have it now.,I will have it now,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,[~_low_pitched_voice] let us play pass : over there[-:].,let us play pass over there,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,one day : (eleph) little elephant : and little giraffe said look.,one day little elephant and little giraffe said look,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,there is water!,there is water,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,there is a diving : board!,there is a diving board,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,let us go jump off of it [~_high_voice]!,let us go jump off of it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,: I will go first [~_low_voice].,I will go first,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,hold my towel [~_low_voice].,hold my towel,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,: aaaah : I am trip/ing [~_high_voice].,aaaah I am tripping,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,I will help you [~_high_voice].,I will help you,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,splash.,splash,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,(with some) (wit) the towel went in the water.,the towel went in the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,oh no look what you did [~_high_voice]!,oh no look what you did,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,(and look what you) and look what I (d) : have [~_high__voice]!,and look what I have,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,I have : an owie [~_high_voice].,I have an owie,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,and my towel is in the water [~_high_voice].,and my towel is in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,how will that dry me off [~_high_voice]?,how will that dry me off,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,: owie [~_whiny_voice].,owie,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,then (um : his) her dad came along.,then her dad came along,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,and little giraffe told : little elephant/z dad all about it.,and little giraffe told little elephant's dad all about it,0 0 0 0 0 2 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,and little elephant went home.,and little elephant went home,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,: now let us put a little[-:] bandaid on it.,now let us put a little bandaid on it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,: now just sit here and rest.,now just sit here and rest,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,: now do not run next time.,now do not run next time,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,then she said : today my owie is all better.,then she said today my owie is all better,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,: how about we play : pass with your nose?,how about we play pass with your nose,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,you can be the bat.,you can be the bat,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,and I will[-:] be the ball[-:].,and I will be the ball,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,well I will throw the ball.,well I will throw the ball,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,: oops : I think the ball sunk.,oops I think the ball sunk,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,: what did you : do to my ball ?,what did you do to my ball,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,: [~_deep_voice] (you) I told you not to play by the swimming pool unless you are in[!] the swimming pool.,I told you not to play by the swimming pool unless you are in the swimming pool,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,[~_high_pitched_voice] I am sorry daddy.,I am sorry daddy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,[~_high_pitched_voice] we just were : play/ing pass over there.,we just were playing pass over there,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,[~_high_pitched_voice] but it hit so far.,but it hit so far,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,": [~_makes_sound_of_exasperation,_speaks_in_deep_voice] I guess[!] I can get it.",I guess I can get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,: well : I think that your ball : is[EW:has] drown/ed.,well I think that your ball is drowned,0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,[~_high_pitched_voice] aah.,aah,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,: then her mother came along and said here is something you could use.,then her mother came along and said here is something you could use,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,: and she fish/ed it out.,and she fished it out,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,: and then : she gave it back.,and then she gave it back,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,: then he hug/ed it so much.,then he hugged it so much,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,and he hug/ed : her.,and he hugged her,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,and he hug/ed (um) : little elephant too to have her cell phone and call her mother and bye.,and he hugged little elephant too to have her cell phone and call her mother and bye,0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,once there was a little : baby kangaroo.,once there was a little baby kangaroo,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,(and he was) : and she was (um) build/ing a sandcastle of a castle.,and she was building a sandcastle of a castle,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,: and then (a ll) a bunny came along and said can I help?,and then a bunny came along and said can I help,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,sure!,sure,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,what are you do/ing?,what are you doing,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,you are pour/ing all this sand over the sandcastle?,you are pouring all this sand over the sandcastle,0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,that is not help/ing.,that is not helping,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,that is wreck/ing it.,that is wrecking it,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,: ah : I am sorry [~_very_high_voice].,ah I am sorry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,it is gone [~_very_high_voice].,it is gone,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,: well goodbye.,well goodbye,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,once there was[EW:were]: two bunny/s.,once there was two bunnies,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,and (they were) they were not just[!] bunny/s.,and they were not just bunnies,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,(they were) they do not just hop.,they do not just hop,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,they were the kind that walk and have picnic/s.,they were the kind that walk and have picnics,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,and it was the bunny/s/z picnic today.,and it was the bunnies picnic today,0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,I think I will take all this food.,I think I will take all this food,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,and you can just have the basket.,and you can just have the basket,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,hey where is all the food go?,hey where is all the food go,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,I am suppose/ed to have some too.,I am supposed to have some too,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,sorry : I ate it all.,sorry I ate it all,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,that is why I am call/ed Munchy.,that is why I am called Munchy,0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,then : came rabbit/z : mother.,then came rabbit's mother,0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,and then : rabbit ran over to rabbit/z mother.,and then rabbit ran over to rabbit's mother,0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,rabbit/z mother rabbit/z mother rabbit ate all of my food that I brought for the picnic.,rabbit's mother rabbit's mother rabbit ate all of my food that I brought for the picnic,2 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,and he did not save anything but the basket.,and he did not save anything but the basket,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,well let us go see.,well let us go see,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,come on come on come on.,come on come on come on,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,hurry up hurry up.,hurry up hurry up,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,now do not you do that again.,now do not you do that again,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,let us go home.,let us go home,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,ha that is over.,ha that is over,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,I guess you (le) leaved|leave[EW:left] some crumb/s for me.,I guess you leaved some crumbs for me,0 0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,once there was (um) a little kangaroo : with a wagon and a balloon tie/ed on the wheel.,once there was a little kangaroo with a wagon and a balloon tied on the wheel,0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,and then her friend came along.,and then her friend came along,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,hey do you think you could hop in?,hey do you think you could hop in,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,(and I will) and I will (pu) pull you.,and I will pull you,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,sure!,sure,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,oh (maybe I will) (I will) maybe we will just walk.,oh maybe we will just walk,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,and we will both push it.,and we will both push it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,ah what are you do/ing to the balloon?,ah what are you doing to the balloon,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,why are you screw/ing it off?,why are you screwing it off,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,that is not how you do it.,that is not how you do it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,you keep it on.,you keep it on,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,ah[-:] hey look what you did now!,ah hey look what you did now,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,you made it (fall) fly away.,you made it fly away,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,[~_growling_sound] why did you make my balloon fly away?,why did you make my balloon fly away,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,: hey look.,hey look,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,there is the balloon man.,there is the balloon man,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,let us go get one.,let us go get one,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,so : they pick/ed : two.,so they picked two,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,but the judge said only one.,but the judge said only one,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,one dollar.,one dollar,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,I am sorry.,I am sorry,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,but I can not give (all) (all) all these balloon/s to you.,but I can not give all these balloons to you,0 0 0 0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,you will (fly) float away.,you will float away,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,you are too little to hold them.,you are too little to hold them,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,you will float away.,you will float away,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,but not me because I am big[-:][!].,but not me because I am big,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,(maybe that) maybe I said the wrong thing.,maybe I said the wrong thing,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,mommy*5 : you know what?,mommy mommy mommy mommy mommy you know what,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,the balloon man will not let me have any balloon/s at all.,the balloon man will not let me have any balloons at all,0 0 0 0 0 0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,: oh my*3!,oh my my my,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,and you know what?,and you know what,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,I pop/ed her balloon.,I popped her balloon,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,two balloon/s!,two balloons,0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,two penny/s please.,two pence please,0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,there you go you guy/s.,there you go you guys,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,but do not put your teeth on them bunny.,but do not put your teeth on them bunny,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,they are : bounce/ing a ball : on the sidewalk.,they are bouncing a ball on the sidewalk,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,: (and) : and the ball fall|fall[EW:fell] in the water.,and the ball fall in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,(and the mo) (and the moose) : (then) then the moose cross/ed the lake to get it.,then the moose crossed the lake to get it,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,(and) (and um) and (um) moose get|get[EW:got] it.,and moose get it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,(and a) and it feel|feel[EW:felt] happy.,and it feel happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and then everyone (be s) be[EW:is] shy.,and then everyone be shy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,: they are : stand/ing on the (sw um) [~_I_mean] the swimming pool.,they are standing on the the swimming pool,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,[~_sneezes_loudly] and the elephant went and (jump on the um) : (in the) jump[EW:jumped] in the swimming pool.,and the elephant went and jump in the swimming pool,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,(then[-:]) then the elephant : climb|climb[EW:climbed] up here and dance|dance[EW:danced].,then the elephant climb up here and dance,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,: (then) (then him fa) then him[EW:he] fall|fall[EW:fell] and hurt himself.,then him fall and hurt himself,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,(and then) and the moose : come|come[EW:came] back (and) with the elephant.,and the moose come back with the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and the elephant : (um) fix|fix[EW:fixed] [~?_pronounced_fit] her knee.,and the elephant fix her knee,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,"can you say that again, the elephant [+..].",can you say that again the elephant,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,fit her knee [+_bch].,fit her knee,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and then her[EW:she] can not swim.,and then her can not swim,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,: and no run/ing across : the swimming pool.,and no running across the swimming pool,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and (they) : they feel happy.,and they feel happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and (then) (then) then the (um) happy couple tee[EW:take] [~__maybe_means_take] off.,and then the happy couple tee off,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,(then) and then the elephant (um) catch|catch[EW:caught] it.,and then the elephant catch it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,(and the) and the elephant : plop|plop[EW:plopped] him in the water.,and the elephant plop him in the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,then (it sinked|sink[EW:sank]) (th) : the (um) airplane sinked|sink[EW:sank] into the water.,then the airplane sinked into the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and then the diver : saw.,and then the diver saw,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,(and) : (and then) : [+_bch].,, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,do you want me to turn?,do you want me to turn,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and then they feel mad.,and then they feel mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and the diver (um) reach|reach[EW:reached] : up to see.,and the diver reach up to see,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and then he can not do it.,and then he can not do it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,(and then) (and then) (and) and then the elephant : got (um) a fish thing to catch fish.,and then the elephant got a fish thing to catch fish,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and (then) then he pull|pull[EW:pulled] up [EU].,and then he pull up,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,(and the a) and the : airplane : lift|lift[EW:lifted] up.,and the airplane lift up,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,(and then) and (then) then the elephant fix|fix[EW:fixed] [~?_fit] him back [EU].,and then the elephant fix him back,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,then him[EW:he] feel|feel[EW:feels] happy.,then him feel happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,they are make/ing a sandcastle.,they are making a sandcastle,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and the baby (um) : mussed her castle [EU].,and the baby mussed her castle,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,(and then) and then him[EW:he] : put more sand on it.,and then him put more sand on it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and then : the castle fall|fall[EW:fell] down.,and then the castle fall down,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and he feel|feel[EW:felt] sad.,and he feel sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,they are : walk/ing in the : forest.,they are walking in the forest,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and they make/ing (um) : a picnic [EU].,and they making a picnic,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and the bunny feel|feel[EW:felt] : sick.,and the bunny feel sick,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and then : he feel|feel[EW:felt] really really dizzy.,and then he feel really really dizzy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and then the doctor : run|run[EW:ran] : to him.,and then the doctor run to him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,help help!,help help,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,everybody : (f um) : full [EU].,everybody full,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,(and the) : and the doctor : fix|fix[EW:fixed] him.,and the doctor fix him,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and he feel|feel[EW:felt] better.,and he feel better,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,they are pull/ing (a) : a wagon.,they are pulling a wagon,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and the bunny : (he wa) he want|want[EW:wanted] some help.,and the bunny he want some help,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,look look [~_said_twice_for_effect] a balloon.,look look a balloon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,well take it.,well take it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and (him) (him) him[EW:he] untie|untie[EW:untied] it.,and him untie it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,(and) : and the bunny : tie[EW:untied] him [EU].,and the bunny tie him,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and the balloon take|take[EW:took] off.,and the balloon take off,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and the dog feel|feel[EW:felt] mad [~_makes_growling_sound].,and the dog feel mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and the clown : got[EW:has] a lot of balloon/s.,and the clown got a lot of balloons,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,can I have one please?,can I have one please,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and he did [EU].,and he did,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,[<~?_I_got]it cost[>~?_I_got] five dollar/s.,it cost five dollars,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,please please can we have one for free?,please please can we have one for free,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,nope.,nope,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and a train come|come[EW:came] to : him [EU].,and a train come to him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,can you buy me one of these : please?,can you buy me one of these please,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,: then he did.,then he did,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,then he feel|feel[EW:felt] happy.,then he feel happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,(Hmm) I do not know this story [+_bch].,I do not know this story,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,well tell me what is happen/ing.,well tell me what is happening,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the elephant is grab/ing a ball.,the elephant is grabbing a ball,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the : elephant threw[-:] the ball in the pool.,the elephant threw the ball in the pool,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the giraffe went in[!] to get the ball.,the giraffe went in to get the ball,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,(the) the giraffe got it.,the giraffe got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,and : he swam back.,and he swam back,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,and the elephant got it.,and the elephant got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the giraffe is all wet now.,the giraffe is all wet now,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,The giraffe is all dry now.,The giraffe is all dry now,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the elephant is happy.,the elephant is happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the elephant is go/ing to the diving board.,the elephant is going to the diving board,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the elephant is go/ing to slip.,the elephant is going to slip,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the elephant hurt her knee.,the elephant hurt her knee,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the coach came.,the coach came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the coach put on a bandaid.,the coach put on a bandaid,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,she *is feel/ing better now [EU].,she feeling better now,0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the coach is mad at her now.,the coach is mad at her now,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,The giraffe has an airplane.,The giraffe has an airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the giraffe is go/ing to [~_gonna] : fly it.,the giraffe is going to fly it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the elephant got his : airplane.,the elephant got his airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the elephant threw it in the water.,the elephant threw it in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,now : the giraffe is mad at her.,now the giraffe is mad at her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,(now : the coa) now the (el) elephant is sad.,now the elephant is sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the coach is : a little[!] mad.,the coach is a little mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,and : the : elephant is apologize/ing.,and the elephant is apologizing,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the coach is try/ing to get : the airplane.,the coach is trying to get the airplane,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the giraffe is cry/ing now.,the giraffe is crying now,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,(um) : what is that girl [+_bch]?,what is that girl,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,what do you think she is?,what do you think she is,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,(Hm) : I do not know [+_bch].,I do not know,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,well you tell me what is happen/ing.,well you tell me what is happening,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,(hm) the airplane is sink/ing now.,the airplane is sinking now,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the girl elephant (nt) is try/ing to get it out now.,the girl elephant is trying to get it out now,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the girl elephant got it out now.,the girl elephant got it out now,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,she (ga) gave it back to the giraffe now.,she gave it back to the giraffe now,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the giraffe is happy.,the giraffe is happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,he got his : airplane back.,he got his airplane back,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the dog : is in the sandbox.,the dog is in the sandbox,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the rabbit is not in the sandbox.,the rabbit is not in the sandbox,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the rabbit is dig/ing : in the bucket.,the rabbit is digging in the bucket,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the rabbit pour/ed the sand : on the sandcastle.,the rabbit poured the sand on the sandcastle,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the : rabbit is : kind of (s) mad now.,the rabbit is kind of mad now,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,and the dog is happy.,and the dog is happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the dog is sad now.,the dog is sad now,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,(he is cry/ing) she is cry/ing.,she is crying,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,The dog and the rabbit are go/ing on a picnic in the wood/s.,The dog and the rabbit are going on a picnic in the woods,0 0 0 0 0 0 6 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the : rabbit : like/3s the carrot.,the rabbit likes the carrot,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the rabbit is full now.,the rabbit is full now,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the dog is : not[!] full.,the dog is not full,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,(he is) she is still hungry.,she is still hungry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,her : mom came : into the wood/s.,her mom came into the woods,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,(th) the dog is drag/ing her mom : to the picnic blanket.,the dog is dragging her mom to the picnic blanket,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,[~_no] it is the doctor!,it is the doctor,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,silly me [+_bch].,silly me,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the doctor look/ed at : the rabbit.,the doctor looked at the rabbit,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,(now the doctor is feel/ing better) now the : bunny is feel/ing better [~_not_the_doctor].,now the bunny is feeling better,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the dog has a balloon.,the dog has a balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the rabbit has nothing.,the rabbit has nothing,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the rabbit : like/3s the balloon.,the rabbit likes the balloon,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,he want/3s it.,he wants it,0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the rabbit is take/ing it off : the wagon.,the rabbit is taking it off the wagon,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the balloon went up into the sky.,the balloon went up into the sky,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the balloon is gone now.,the balloon is gone now,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the dog is mad at the rabbit now.,the dog is mad at the rabbit now,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the rabbit : is : not : mad because there is[EW:are] more balloon/s.,the rabbit is not mad because there is more balloons,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the rabbit want/3s a balloon.,the rabbit wants a balloon,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,here this : balloon : belong/3s to you.,here this balloon belongs to you,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,now the dog want/3s a balloon.,now the dog wants a balloon,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,(they) : but rabbit did not get a balloon.,but rabbit did not get a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,rabbit ask/ed his mom : can I please have a balloon mom?,rabbit asked his mom can I please have a balloon mom,0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the (r) mommy rabbit gave the money to the : store man.,the mommy rabbit gave the money to the store man,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,now they both got[EW:have] a balloon.,now they both got a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,The piggy (and) and the brother and the sister was[EW:were] try/ing to play : a circus.,The piggy and the brother and the sister was trying to play a circus,0 0 0 0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,And they got mad.,And they got mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,I went to a circus [+_bch].,I went to a circus,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,Did you ?,Did you,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,"You can tell me after the story all about it, okay ?",You can tell me after the story all about it okay,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,okay [+_bch].,okay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,And (then : they) then he just want/ed (to) : to do something funner [EU].,And then he just wanted to do something funner,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,They went to : (a) a beach without the mommy.,They went to a beach without the mommy,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,And that is bad because the mommy died and all their family.,And that is bad because the mommy died and all their family,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,So they : have to do everything.,So they have to do everything,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,They had to.,They had to,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,And then : he : swimmed|swim[EW:swam] in the water to get his balloon.,And then he swimmed in the water to get his balloon,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,And then he got (his) (his) her ball.,And then he got her ball,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,And she said thank you[!].,And she said thank you,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,All done [+_bch].,All done,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,we read this one [+_bch].,we read this one,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,Is it the same?,Is it the same,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,It will be different.,It will be different,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,You tell me what you see happen/ing.,You tell me what you see happening,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and then they had to do something else.,and then they had to do something else,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(her) (her purse) her purse drop/ed into (the) the lake.,her purse dropped into the lake,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,it was way down on the bottom.,it was way down on the bottom,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(And then they) and then they rush/ed into the water : and jump/ed right into the water.,and then they rushed into the water and jumped right into the water,0 0 0 4 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and then she bonk/ed her knee (on the) on the side wall.,and then she bonked her knee on the side wall,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and then she cry/ed for (her) her daddy.,and then she cried for her daddy,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and then her daddy come/3s along (and) and put[EW:puts] a bandaids[EW:bandaid] on it.,and then her daddy comes along and put a bandaids on it,0 0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(and then) and then that was pretty xx.,and then that was pretty,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,but (they had) she had to got[EW:go] to the hospital.,but she had to got to the hospital,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and then (she) (she) her daddy said no more play/ing at the park.,and then her daddy said no more playing at the park,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(They) her knee almost bump/ed [EU].,her knee almost bumped,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,but she got up.,but she got up,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,"and she did not have a owee, only on her nose[?].",and she did not have a owee only on her nose,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and : the daddy did not come because : he was angry last time.,and the daddy did not come because he was angry last time,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(and then) : and then : she found the airplane that was : her little brother/z.,and then she found the airplane that was her little brother's,0 0 0 0 0 0 0 0 0 0 2 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,she took it out of his hand.,she took it out of his hand,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,the brother said (look) look what you just did.,the brother said look what you just did,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,he was angry at his sister.,he was angry at his sister,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and then : it sinked|sink[EW:sunk] into the water.,and then it sinked into the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,down below it comed [EU].,down below it comed,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and then they could not get it because it was too deep.,and then they could not get it because it was too deep,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,the daddy could not get it because it was too deep too.,the daddy could not get it because it was too deep too,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,Daddy try/ed to reach it.,Daddy tried to reach it,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,but : he could not.,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(the daddy : said : why) (why : does) (the) (the sist) the daddy said why did you do that sister?,the daddy said why did you do that sister,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(h) why did you do that to your little brother?,why did you do that to your little brother,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and then (he[!] tried) she[!] try/ed to catch it with the net.,and then she tried to catch it with the net,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and then she almost got it.,and then she almost got it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,but : she did got[EW:get] it almost.,but she did got it almost,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,but : that is okay because : (one of : her other) one of his other sister/s comed|come[EW:came] and : got it.,but that is okay because one of his other sisters comed and got it,0 0 0 0 0 0 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and that was : the end of : their story [+_bch].,and that was the end of their story,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and then : tomorrow she got it.,and then tomorrow she got it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,that was the end of the story [+_bch].,that was the end of the story,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,they are play/ing in a sand box.,they are playing in a sand box,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(and) and (they) they are try/ing to make a castle.,and they are trying to make a castle,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(and the) and they are try/ing to.,and they are trying to,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and they make one castle.,and they make one castle,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,but then the : castle broke down.,but then the castle broke down,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(and they are) and they were mad at each other.,and they were mad at each other,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(and) (the) and then the castle broke only one side.,and then the castle broke only one side,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and then (he) they got mad at each other again.,and then they got mad at each other again,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and then they made another castle.,and then they made another castle,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,end?,end,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,That is the end [+_bch].,That is the end,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(uh) : they are walk/ing around to have a picnic.,they are walking around to have a picnic,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and they : got[EW:have] lot/s of stuff.,and they got lots of stuff,0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and they are eat/ing : (their) their lunch first.,and they are eating their lunch first,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,the bunny had a stomachache.,the bunny had a stomachache,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(He had a) : and then : they had to go home.,and then they had to go home,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,"and he had to rest, the bunny.",and he had to rest the bunny,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and then the mother come[EW:came] to : get them.,and then the mother come to get them,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(and then the money) and then the kid pull/ed her shirt (an) [~_coughs] and said come here.,and then the kid pulled her shirt and said come here,0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(and then : they) (this) and then the mother took : (his) (her t) his teeth[?].,and then the mother took his teeth,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(And then) and then the mother brought him home.,and then the mother brought him home,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,they are play/ing along with (their) their (brothers) sisters.,they are playing along with their sisters,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(And their) and their sister is push/ing the wagon around.,and their sister is pushing the wagon around,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,he was try/ing to catch up.,he was trying to catch up,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and he want/ed to go in the wagon.,and he wanted to go in the wagon,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,but (it is too sm) he is too big.,but he is too big,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and then (he) he found a balloon.,and then he found a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and it almost blowed|blow[EW:blew] away off the : wagon.,and it almost blowed away off the wagon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,that (s) xxx that.,that that,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and then : (they) (he tie/ed off the) (he tie/ed off) he tie/ed the balloon off of the wagon.,and then he tied the balloon off of the wagon,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and (then : he) (he just) (then he he just) they were try/ing to catch the balloon.,and they were trying to catch the balloon,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,why did he do that I do not know.,why did he do that I do not know,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(and then the) and then the sister got mad.,and then the sister got mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and then the guy broughts[EW:brought] more balloon/s for them : to put (on the) on the wagon.,and then the guy broughts more balloons for them to put on the wagon,0 0 0 0 0 0 1 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(and then : the guy) (and then the bunny) the bunny rabbit of : (the) : the brother was ask/ing if : he could have another balloon for the wagon.,the bunny rabbit of the brother was asking if he could have another balloon for the wagon,0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and then : he said no.,and then he said no,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,no for the wagon.,no for the wagon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and he said probably tomorrow.,and he said probably tomorrow,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and then : he did say tomorrow.,and then he did say tomorrow,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,he said yes.,he said yes,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(And then he) and then : the (bunny rabbit said) brother said : we want a balloon.,and then the brother said we want a balloon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and he did not give us a balloon.,and he did not give us a balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,the mother said probably tomorrow he will give you some.,the mother said probably tomorrow he will give you some,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(they give them) (they) he give[EW:gave] them two to each one.,he give them two to each one,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(and then) and then they both got a balloon.,and then they both got a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,There is a girl : (um) elephant go/3s swim/ing [EU].,There is a girl elephant goes swimming,0 0 0 0 0 3 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,the ball fall/3s into the water.,the ball falls into the water,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,(the guy) the : horse swim/3s after it.,the horse swims after it,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,he pass/3s the ball up : to the girl elephant.,he passes the ball up to the girl elephant,0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,the : horse : is all wet!,the horse is all wet,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,The elephant and the horse are look/ing at the water.,The elephant and the horse are looking at the water,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,the girl : elephant start/3s to walk toward/s it.,the girl elephant starts to walk towards it,0 0 0 3 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,she : run/3s away.,she runs away,0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,she (bou) fell down and hurts|hurt[EW:hurt] her knee.,she fell down and hurts her knee,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,(ssh) (sh) : the horse and another[!] elephant came along.,the horse and another elephant came along,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,and they put a bandaid : on her knee.,and they put a bandaid on her knee,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,and : they help her : walk.,and they help her walk,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then : she sit/3s on the bench.,then she sits on the bench,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,The girl is look/ing : at : the horse and the water.,The girl is looking at the horse and the water,0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,the horse (is f) (f) is fly/ing a plane.,the horse is flying a plane,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,the girl : take/3s it : and : start/3s fly/ing it.,the girl takes it and starts flying it,0 0 3 0 0 3 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,and then it fall/3s into the water.,and then it falls into the water,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,it sink/3s down to[EW:into] *the water [EU].,it sinks down to water,0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,and the horse get/3s mad.,and the horse gets mad,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,and then[!] it sink/3s deeper and deeper into the water.,and then it sinks deeper and deeper into the water,0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then she say/3s sorry : to the : elephant.,then she says sorry to the elephant,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,(then they) then he jump/3s in and get/3s it.,then he jumps in and gets it,0 0 3 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,and then : the horse : is cry/ing.,and then the horse is crying,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then : a girl came along and had a net with her.,then a girl came along and had a net with her,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,and : she holded|hold[EW:held] it by the water.,and she holded it by the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,she took[!] it out.,she took it out,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then : the horse was happy again.,then the horse was happy again,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then he said thank you.,then he said thank you,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,The rabbit is play/ing in the sandbox.,The rabbit is playing in the sandbox,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,and then a boy come/3s along.,and then a boy comes along,0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,they play together : and have fun.,they play together and have fun,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then the rabbit pour/3s sand all over her castle.,then the rabbit pours sand all over her castle,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then it break/3s.,then it breaks,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,and he[!] say/3s sorry.,and he says sorry,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then the girl start/3s cry/ing.,then the girl starts crying,0 0 0 3 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,The girl meet/3s a boy.,The girl meets a boy,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,they are both go/ing to [~_gonna] have a picnic.,they are both going to have a picnic,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,they have a picnic together.,they have a picnic together,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then : (when the) when they are both done eat/ing (th) (th) the boy bunny : gets : full.,then when they are both done eating the boy bunny gets full,0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then : he say/3s he has a stomachache.,then he says he has a stomachache,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then a doctor come/3s along.,then a doctor comes along,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then : the girl pull/3s him (t be) toward/s the boy bunny.,then the girl pulls him towards the boy bunny,0 0 0 3 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then the doctor talk/3s to him.,then the doctor talks to him,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then he is all better.,then he is all better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,(the) the girl come/3s (sa) along with her wagon with a balloon.,the girl comes along with her wagon with a balloon,0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,and (the) : the boy rabbit come/3s along.,and the boy rabbit comes along,0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then[!] he say/3s I want that balloon.,then he says I want that balloon,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then he hold/3s it.,then he holds it,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then[!] he let/3s it go[!].,then he lets it go,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,and (the g) they start run/ing after it.,and they start running after it,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then the girl come/3s back.,then the girl comes back,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,and then[!] : a guy came along with more balloon/s.,and then a guy came along with more balloons,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then the boy say/3s can I have one of those balloon/s.,then the boy says can I have one of those balloons,0 0 0 3 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,and *he let him have one.,and let him have one,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,but he did not have no[EW:any] money.,but he did not have no money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,so then the girl : was sad.,so then the girl was sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then the boy rabbit : (um) walk/ed away.,then the boy rabbit walked away,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,so did the girl.,so did the girl,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,she ran.,she ran,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,(then : the doctor said) (and then) and then the boy rabbit told[!] the doctor that she was sad.,and then the boy rabbit told the doctor that she was sad,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then the doctor pay/3s[!] for the balloon/s.,then the doctor pays for the balloons,0 0 0 3 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then they both[!] have a balloon.,then they both have a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,and then they are happy.,and then they are happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,once there was an elephant (and a donk) and a giraffe.,once there was an elephant and a giraffe,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,they had a : bubble.,they had a bubble,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and : then : she said can you watch over my bubble/s?,and then she said can you watch over my bubbles,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,but then the bubble hop/ed into the pool.,but then the bubble hopped into the pool,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and then the elephant was scare/ed of the balloon.,and then the elephant was scared of the balloon,0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,she thought it might pop.,she thought it might pop,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and so then she said to the giraffe please can you go get my (bub) (bu) bubble?,and so then she said to the giraffe please can you go get my bubble,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,(then the : ver) then the giraffe went into the pool and start/ed swim/ing.,then the giraffe went into the pool and started swimming,0 0 0 0 0 0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,he got really tire/ed.,he got really tired,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and he did not think he could (sw) swim (that) that more.,and he did not think he could swim that more,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,but then he got : the (um) bubble : then hand/ed it to the elephant.,but then he got the bubble then handed it to the elephant,0 0 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and (he) she was really proud.,and she was really proud,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,then : she was really happy.,then she was really happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and then (the) (the) the giraffe was really happy too.,and then the giraffe was really happy too,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,once : a giraffe and a[EW:an] elephant was[EW:were] at a pool.,once a giraffe and a elephant was at a pool,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and she said come on.,and she said come on,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,let us race (to the) (the) to the diving board.,let us race to the diving board,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,she slip/ed : and fell.,she slipped and fell,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,she hurt her knee.,she hurt her knee,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and then the guard came.,and then the guard came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,(sh) he got a bandaid for her.,he got a bandaid for her,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and then (she) (she p) (sh) he put her on the bench.,and then he put her on the bench,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and she could not swim in the pool any more.,and she could not swim in the pool any more,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and then the : (um) lifeguard : said : should not you look at the sign before you start run/ing?,and then the lifeguard said should not you look at the sign before you start running,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,once there was a giraffe and a[EW:an] elephant.,once there was a giraffe and a elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and they : (w) was[EW:were] at the pool.,and they was at the pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and the giraffe had his favorite toy plane.,and the giraffe had his favorite toy plane,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,the giraffe (f) (f) flied|fly[EW:flew] it.,the giraffe flied it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and the (um) elephant wish/ed that she could fly it too.,and the elephant wished that she could fly it too,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and so she ask/ed if she could : (um) try and fly the plane too.,and so she asked if she could try and fly the plane too,0 0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,but then (she) she took it : and threw it off.,but then she took it and threw it off,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and she did not know it would fall in the pool.,and she did not know it would fall in the pool,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and it fell in the pool.,and it fell in the pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and then : she (was) felt really bad.,and then she felt really bad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and then the giraffe was really really angry.,and then the giraffe was really really angry,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and then the lifeguard came.,and then the lifeguard came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,(and then they said) but : then the elephant said : (I) I just want/ed to try fly/ing the plane.,but then the elephant said I just wanted to try flying the plane,0 0 0 0 0 0 0 4 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,but : then : it accidentally went in the pool.,but then it accidentally went in the pool,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and then my friend got angry at me.,and then my friend got angry at me,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and the lifeguard said well do you know what would be a good idea?,and the lifeguard said well do you know what would be a good idea,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,if you could maybe scoop it up with a net.,if you could maybe scoop it up with a net,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,then the lifeguard try/ed to reach for it.,then the lifeguard tried to reach for it,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,but : (she could not) he could not because it was too far away.,but he could not because it was too far away,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,then she felt really bad.,then she felt really bad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,then : the : lady had (a um) (a catch) a net.,then the lady had a net,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and so she try/ed to catch it.,and so she tried to catch it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and it was really heavy.,and it was really heavy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,but she got it : and gave it to him.,but she got it and gave it to him,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and then : (she was) the giraffe was really happy.,and then the giraffe was really happy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,there was a little : (um) : doggy who is make/ing a sandcastle.,there was a little doggy who is making a sandcastle,0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and then (th) (the) the bunny dig/3s in : the bucket.,and then the bunny digs in the bucket,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and then he start/ed pour/ing on the little : doggy/z sandcastle.,and then he started pouring on the little doggy's sandcastle,0 0 0 4 6 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and the doggy felt really sad.,and the doggy felt really sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and then the bunny saw what he (s) has done to his friend/z sandcastle.,and then the bunny saw what he has done to his friend's sandcastle,0 0 0 0 0 0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,he felt really bad.,he felt really bad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and then he try/ed to keep it (um) that he was sorry.,and then he tried to keep it that he was sorry,0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,but he did not really mean it.,but he did not really mean it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,once a doggy and a bunny was[EW:were] go/ing on a picnic.,once a doggy and a bunny was going on a picnic,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,bunny was really hungry.,bunny was really hungry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,so he ate all the food.,so he ate all the food,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and he got a stomachache.,and he got a stomachache,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,then : puppy saw that he look/ed pretty sick.,then puppy saw that he looked pretty sick,0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,then he[?] call/ed the : doctor.,then he called the doctor,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and the puppy said doctor doctor come quick.,and the puppy said doctor doctor come quick,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,(co) and the doctor came quick.,and the doctor came quick,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and he saw that he had a really bad stomachache.,and he saw that he had a really bad stomachache,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and then he said you know what?,and then he said you know what,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,you should have no more food for quite awhile.,you should have no more food for quite awhile,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and then took him to the doctor.,and then took him to the doctor,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and the puppy felt good that (s um) he took care of the bunny.,and the puppy felt good that he took care of the bunny,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,(once upon uh) once : (um) a little doggy and a bunny : had a balloon and a wagon.,once a little doggy and a bunny had a balloon and a wagon,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,(the dog uh) the balloon was the dog/z balloon.,the balloon was the dog's balloon,0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and (um) rabbit (ll) like/ed to get in a lot of trouble.,and rabbit liked to get in a lot of trouble,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,so : he decide/ed he want/ed the balloon too.,so he decided he wanted the balloon too,0 0 4 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and so (th) then : (they) he start/ed to reach out for it : and untie/ed the balloon.,and so then he started to reach out for it and untied the balloon,0 0 0 0 4 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and it went away.,and it went away,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and then the doggy was really really mad at him.,and then the doggy was really really mad at him,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,then they saw another balloon : person.,then they saw another balloon person,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,can I have one of your balloon/s please said the bunny.,can I have one of your balloons please said the bunny,0 0 0 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,you have to have some money.,you have to have some money,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,but I do not have any money said the rabbit.,but I do not have any money said the rabbit,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,that is the rule/s (of) (of the um) of the rabbit/z : balloon (um) money maker rule/s.,that is the rules of the rabbit's balloon money maker rules,0 0 0 1 0 0 2 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,then the doctor (said) : came (by) pass/ing by.,then the doctor came passing by,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and then they race/ed to the doctor.,and then they raced to the doctor,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,that : man that is sell/ing balloon/s will not give me a balloon.,that man that is selling balloons will not give me a balloon,0 0 0 0 6 1 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and I have no money.,and I have no money,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,well that is the rule/s.,well that is the rules,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,you have[!] to have money.,you have to have money,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,well : I will pay for the money[EW:balloons].,well I will pay for the money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,so (the : man got) (gave him two quar) the doctor gave two quarter/s.,so the doctor gave two quarters,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and (the) they each got a balloon.,and they each got a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,then they each[!] had a balloon.,then they each had a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and they were very happy with them.,and they were very happy with them,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,There once was a boy and a girl.,There once was a boy and a girl,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and the girl is bounce/ing her favoritest[EW:favorite] ball.,and the girl is bouncing her favoritest ball,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,she drop/ed it in the water.,she dropped it in the water,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,she did not want to go in.,she did not want to go in,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,so something happen/ed.,so something happened,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,so the : boy swam to the ball and got it for her.,so the boy swam to the ball and got it for her,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and she was so happy : that (sh) she did not go by the pool no[EW:any] more and bouncing[EW:bounce] it.,and she was so happy that she did not go by the pool no more and bouncing it,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,(and) : and she smile/ed at the boy and said thank you for get/ing my lovely ball.,and she smiled at the boy and said thank you for getting my lovely ball,0 0 4 0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,(um) there once was a boy and a girl again.,there once was a boy and a girl again,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and : they were go/ing : to jump into the pool.,and they were going to jump into the pool,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,So they both ran to the jumper.,So they both ran to the jumper,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and (they would have) they would have seen the sign that said no (ru) run/ing.,and they would have seen the sign that said no running,0 0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,but they did not.,but they did not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and she scrape/ed her knee.,and she scraped her knee,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and he came run/ing after.,and he came running after,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and then the manager he came : and saw her : (on the) on the floor.,and then the manager he came and saw her on the floor,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and he took a bandaid and put it on her : knee.,and he took a bandaid and put it on her knee,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and then (he s) he said no more run/ing.,and then he said no more running,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,you can hurt yourself again.,you can hurt yourself again,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,because there is such a sign say/ing no run/ing.,because there is such a sign saying no running,0 0 0 0 0 0 6 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,so you should listen to the sign/s.,so you should listen to the signs,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,or else you would[EW:could] hurt yourself.,or else you would hurt yourself,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,There once was a boy and a girl.,There once was a boy and a girl,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,(with a) and the boy had an airplane : which he want/ed to play : with.,and the boy had an airplane which he wanted to play with,0 0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,so he play/ed with it.,so he played with it,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and then : she[!] : said ooh[!].,and then she said ooh,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and then[!] he gaved|give[EW:gave] it to her.,and then he gaved it to her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,she play/ed with it.,she played with it,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and he was not that happy.,and he was not that happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,she threw it.,she threw it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and : it land/ed in the : pool.,and it landed in the pool,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and he was very very mad : at her.,and he was very very mad at her,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and he went you drop/ed (my) (my favorite) favoritest[EW:favorite] toy.,and he went you dropped favoritest toy,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and I am angry[!] at you.,and I am angry at you,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,so (the) : the manager came again : saw the two fight/ing.,so the manager came again saw the two fighting,0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and he[!] said what is (m) the problem?,and he said what is the problem,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,(and he) and then the boy[!] said : she drop/ed my airplane in the water.,and then the boy said she dropped my airplane in the water,0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and I can not get it.,and I can not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and she explain/ed that it was an accident.,and she explained that it was an accident,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and he is like I[!] can get that.,and he is like I can get that,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and he try/ed.,and he tried,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and he try/ed.,and he tried,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,but he could not.,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,he reach/ed it as far as he could.,he reached it as far as he could,0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,but he was about to fall in.,but he was about to fall in,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,then (he cry/ed) the boy cry/ed to bit/s [EU].,then the boy cried to bits,0 0 0 4 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,Then what?,Then what,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,Then the little boy cry/ed to bit/s [+_bch] [EU].,Then the little boy cried to bits,0 0 0 0 4 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,then the girl[!] manager came.,then the girl manager came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and she ask/ed what was the problem [~_?] [EU].,and she asked what was the problem,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,she had a net.,she had a net,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,so she could get it.,so she could get it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,she reach/ed as far as she can with it [EU].,she reached as far as she can with it,0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and she got it : in the net.,and she got it in the net,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and (he) she[!] said never play around with toy/s : (wu) at the side of the : pool.,and she said never play around with toys at the side of the pool,0 0 0 0 0 0 0 1 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,or else the toy/s will get stuck again.,or else the toys will get stuck again,0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and (he : would not) he would not play with his toy (at) at the side of the pool any more.,and he would not play with his toy at the side of the pool any more,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,so (they both learnt a p) (ay) they both learn/ed something for (um) drop/ing toy/s into the water : and get/ing hurt [EU].,so they both learned something for dropping toys into the water and getting hurt,0 0 0 4 0 0 6 1 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,there once was a boy and a girl.,there once was a boy and a girl,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,they were make/ing a (sandcastle) (sa) sandcastle in the sand.,they were making a sandcastle in the sand,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,so they both help/ed.,so they both helped,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and[-:][!] something bad happen/ed.,and something bad happened,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,that the boy dump/ed all[!] the sand on top.,that the boy dumped all the sand on top,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and something happen/ed again.,and something happened again,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,the (s) (the sand wa) the sandcastle only had one thing stick/ing up.,the the sandcastle only had one thing sticking up,0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and : the rest of the sand was on top of everything else.,and the rest of the sand was on top of everything else,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and he put it back up.,and he put it back up,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and she was just[!] wait/ing and wait/ing.,and she was just waiting and waiting,0 0 0 0 6 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,there was a boy and a girl again.,there was a boy and a girl again,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and they were go/ing to have a picnic.,and they were going to have a picnic,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,so they set off to play : someplace.,so they set off to play someplace,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and he ate lot/s and lot/s of stuff.,and he ate lots and lots of stuff,0 0 0 1 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and then[!] something terrible[!] happen/ed to him.,and then something terrible happened to him,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,he got stuff/ed : dizzy : and he need|need[EW:needed] a doctor.,he got stuffed dizzy and he need a doctor,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,he went wibbly[c] wobbly.,he went wibbly wobbly,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and his stomach was growl/ing.,and his stomach was growling,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and his stomach was really big too.,and his stomach was really big too,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,so she got a doctor.,so she got a doctor,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and then she pull/ed (him) her all of the way to him.,and then she pulled her all of the way to him,0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and she said doctor doctor I need you really badly.,and she said doctor doctor I need you really badly,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,there is someone who need/3s your help.,there is someone who needs your help,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,so she said : say ah : and never knew it again when she was done [EU].,so she said say ah and never knew it again when she was done,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,so she brought him to : the nurse : at the nurse/z place : so : he can lay down and (ha) have a rest.,so she brought him to the nurse at the nurse's place so he can lay down and have a rest,0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,there once was a boy and a girl again.,there once was a boy and a girl again,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,(who had a balloon) the girl had a balloon.,the girl had a balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,(and : sh) and the boy said can I see your lovely balloon?,and the boy said can I see your lovely balloon,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and he try/ed to get the balloon.,and he tried to get the balloon,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,but : he untie/ed it.,but he untied it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and she said do not(*3) do that.,and she said do not do that,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,or else : it would float away.,or else it would float away,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and she was very mad at him.,and she was very mad at him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,so she got steam/ed up.,so she got steamed up,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and he was still look/ing.,and he was still looking,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and she was very very angry.,and she was very very angry,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,(and they saw) : and he[!] saw a balloon : saler[EW:seller].,and he saw a balloon saler,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,she was still steam/ing mad : at him.,she was still steaming mad at him,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,He was still run/ing.,He was still running,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and : she was hold/ing on to her wagon.,and she was holding on to her wagon,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,he was (g) say/ing : to get that : balloon.,he was saying to get that balloon,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,but[!] : it was : [EW:a]balloon for five cent/s.,but it was balloon for five cents,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and he only had : five buck/s.,and he only had five bucks,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,so[!] he said if you do not have enough (you sh) you can not get a balloon.,so he said if you do not have enough you can not get a balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and they saw the doctor.,and they saw the doctor,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,so they ran to her[!] and ask/ed if (we can have some) if they can have five cent/s : because they want/ed a balloon for her because : she lost one.,so they ran to her and asked if if they can have five cents because they wanted a balloon for her because she lost one,0 0 0 0 0 0 4 0 0 0 0 0 0 1 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,because he want/ed to pay her back.,because he wanted to pay her back,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,so[!] : (she) (he paid her) (he) she[!] paid him[!].,so she paid him,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and they got the (two bal) two balloon/s.,and they got the two balloons,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and they hug/ed it and did not let it float away.,and they hugged it and did not let it float away,0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,The end [+_bch].,The end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the elephant has a ball.,the elephant has a ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,and : (uh) the elephant is bounce/ing it fast.,and the elephant is bouncing it fast,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,and the zebra want/3s to play.,and the zebra wants to play,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the ball bounce/3s into the water.,the ball bounces into the water,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the zebra is go/ing to get (it) the ball.,the zebra is going to get the ball,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the zebra (got) get/3s the ball.,the zebra gets the ball,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,and : he give/3s it to the elephant.,and he gives it to the elephant,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the elephant is so happy : because of : the giraffe.,the elephant is so happy because of the giraffe,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,(uh) the elephant and the zebra are at the swimming pool.,the elephant and the zebra are at the swimming pool,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,(the s) : (the z) the elephant want/3s to jump off the diving board.,the elephant wants to jump off the diving board,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the elephant is run/ing.,the elephant is running,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,and so is the zebra.,and so is the zebra,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the sign says no run/ing.,the sign says no running,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,and : the elephant hurt her knee.,and the elephant hurt her knee,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,and : the zebra is come/ing to help her.,and the zebra is coming to help her,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,(uh) : the lifeguard is come/ing : to give her a bandaid.,the lifeguard is coming to give her a bandaid,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,(the z) the lifeguard is put/ing on the bandaid.,the lifeguard is putting on the bandaid,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the sign say/3s no run/ing.,the sign says no running,0 0 3 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,and : she is go/ing to sit on the bench.,and she is going to sit on the bench,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,he is say/ing look at the sign.,he is saying look at the sign,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,it says no run/ing said the lifeguard.,it says no running said the lifeguard,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,and the elephant said sorry[!].,and the elephant said sorry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the elephant and the zebra are at : the swimming pool.,the elephant and the zebra are at the swimming pool,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,and the zebra has an airplane.,and the zebra has an airplane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,(the z) the zebra is make/ing airplane sound/s and fly/ing the airplane.,the zebra is making airplane sounds and flying the airplane,0 0 0 6 0 1 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the elephant grab/3s the airplane.,the elephant grabs the airplane,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,she drop/3s it in the water.,she drops it in the water,0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the zebra get/3s mad.,the zebra gets mad,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the lifeguard come/3s to help.,the lifeguard comes to help,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,(uh he is ask/ing : the li) she is ask/ing the lifeguard if : he can get the : airplane.,she is asking the lifeguard if he can get the airplane,0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,(uh) he can not get the airplane.,he can not get the airplane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the zebra start/3s to cry.,the zebra starts to cry,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,this lady come/3s with a net to get the airplane.,this lady comes with a net to get the airplane,0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,she is go/ing to get the airplane.,she is going to get the airplane,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,she get/3s the airplane and give/3s it back : to the zebra.,she gets the airplane and gives it back to the zebra,0 3 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the zebra is happy : that he got his airplane back.,the zebra is happy that he got his airplane back,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,and so is the elephant for him get/ing his airplane back.,and so is the elephant for him getting his airplane back,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,(uh) the dog meet/3s the rabbit who want/3s to help the dog build (the cas) a sandcastle.,the dog meets the rabbit who wants to help the dog build a sandcastle,0 0 3 0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the rabbit : got sand in the pail.,the rabbit got sand in the pail,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,he is go/ing to take some out.,he is going to take some out,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the rabbit dump/3s the pail on the castle.,the rabbit dumps the pail on the castle,0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,(the) the dog is : get/ing sad.,the dog is getting sad,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the dog is cry/ing.,the dog is crying,0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the dog meet/3s the rabbit that is go/ing on a picnic.,the dog meets the rabbit that is going on a picnic,0 0 3 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the rabbit : brought too much stuff.,the rabbit brought too much stuff,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,then (the dog) : [~_page_is_turned] the rabbit ate it all.,then the rabbit ate it all,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,and he had a stomachache.,and he had a stomachache,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,he felt weary.,he felt weary,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the dog went to get a doctor.,the dog went to get a doctor,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the doctor came over to see what was the matter.,the doctor came over to see what was the matter,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the rabbit : was sick.,the rabbit was sick,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the doctor was : go/ing : to help the rabbit.,the doctor was going to help the rabbit,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the doctor brought the rabbit home.,the doctor brought the rabbit home,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the dog had a balloon tie/ed on it/z wagon.,the dog had a balloon tied on it's wagon,0 0 0 0 0 4 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the rabbit is go/ing to take it off.,the rabbit is going to take it off,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the rabbit (took) take/3s it off.,the rabbit takes it off,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the balloon float/3s away[-:].,the balloon floats away,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the rabbit is look/ing at the balloon.,the rabbit is looking at the balloon,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,and the dog is really angry.,and the dog is really angry,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,(the dog is :) the rabbit see/3s a man sell/ing balloon/s that are (ow) okay.,the rabbit sees a man selling balloons that are okay,0 0 3 0 0 6 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the rabbit say/3s can we have two balloon/s please?,the rabbit says can we have two balloons please,0 0 3 0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the balloon salesman say/3s (for a balloons[EW:balloon]) balloon/s five cent/s each.,the balloon salesman says balloons five cents each,0 0 0 3 1 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,but (the) they did not have any money.,but they did not have any money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,so they could not buy it.,so they could not buy it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the rabbit ask/3s his mom for : ten cent/s.,the rabbit asks his mom for ten cents,0 0 3 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,(uh) he want/3s to buy two balloon/s[-:].,he wants to buy two balloons,0 3 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,his mom pay/3s for the balloon/s[-:].,his mom pays for the balloons,0 0 3 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,(they both have the s) they both have a balloon.,they both have a balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,once there was a girl elephant : and[-:] a : giraffe who was[EW:were] play/ing with a bouncy ball : by a swimming pool.,once there was a girl elephant and a giraffe who was playing with a bouncy ball by a swimming pool,0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,the ball[-:] : was in the pool.,the ball was in the pool,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and : they were : disappoint/ed.,and they were disappointed,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,the giraffe : was swim/ing : to the ball : (and) : as fast as he could.,the giraffe was swimming to the ball as fast as he could,0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,(a elephant was uh) that girl elephant was very : happy : to see the ball.,that girl elephant was very happy to see the ball,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the giraffe : was very happy too.,and the giraffe was very happy too,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the girl : elephant : was : surprise/ed that she got : the ball.,and the girl elephant was surprised that she got the ball,0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the elephant was surprise/ed too.,and the elephant was surprised too,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,once : there was a[EW:an] elephant : (who : was run/ing) (who was w) who want/ed to go on the jumping board.,once there was a elephant who wanted to go on the jumping board,0 0 0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,she was (wa) run/ing to the jumping board[-:].,she was running to the jumping board,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and suddenly she slip/ed!,and suddenly she slipped,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and then she start/ed cry/ing.,and then she started crying,0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the giraffe : came run/ing to her.,and the giraffe came running to her,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and : the lifeguard : was : (k) come/ing : and : said what is all (thi) the fuss.,and the lifeguard was coming and said what is all the fuss,0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,the (bi) girl elephant : was : cry/ing : so hard that : it hurted|hurt[EW:hurt].,the girl elephant was crying so hard that it hurted,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and then : she : had to : sit on the bench.,and then she had to sit on the bench,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the lifeguard said no run/ing in the hall/s.,and the lifeguard said no running in the halls,0 0 0 0 0 6 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,once : the elephant : was watch/ing the giraffe : fly/ing (a) his airplane.,once the elephant was watching the giraffe flying his airplane,0 0 0 0 6 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,the : elephant was look/ing : sad because : the giraffe was have/ing fun with his airplane.,the elephant was looking sad because the giraffe was having fun with his airplane,0 0 0 6 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the elephant : (took) grab/ed the : airplane from the giraffe.,and the elephant grabbed the airplane from the giraffe,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and she start/ed to play with it.,and she started to play with it,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and (the) the elephant (acci) accidentally : put : threw the : airplane in the pool.,and the elephant accidentally put threw the airplane in the pool,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,the giraffe got very : angry at the elephant.,the giraffe got very angry at the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the lifeguard came and said what is all this fuss ?,and the lifeguard came and said what is all this fuss,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and : the elephant said : I accidentally[-:] put : (the gi) : (his) : (the giraffe/z) : his airplane in the pool.,and the elephant said I accidentally put his airplane in the pool,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,I can not reach it.,I can not reach it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,then the : giraffe start/ed to cry : for his airplane.,then the giraffe started to cry for his airplane,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the : girl elephant : got a net : and : start/ed to get (it) the airplane.,and the girl elephant got a net and started to get the airplane,0 0 0 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and she pull/ed as hard[?] [EU].,and she pulled as hard,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and she got it !,and she got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the : giraffe was very happy to see it.,and the giraffe was very happy to see it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,once there was a dog who build|build[EW:built] : a castle.,once there was a dog who build a castle,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and a bunny rabbit ask|ask[EW:asked] dog if : (he) she can help.,and a bunny rabbit ask dog if she can help,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the dog said sure[!].,and the dog said sure,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,the rabbit : took a (bi) bucket and put (lot/s) some sand in it.,the rabbit took a bucket and put some sand in it,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the dog was fix/ing the castle.,and the dog was fixing the castle,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the rabbit : put the sand on the castle.,and the rabbit put the sand on the castle,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the rabbit was : disappoint/ed that he did that.,and the rabbit was disappointed that he did that,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and he said sorry : dog.,and he said sorry dog,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the dog : was : very sad because (the) : the castle was broken.,and the dog was very sad because the castle was broken,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,once[-:] upon a time : the rabbit : came to see the dog for a picnic.,once upon a time the rabbit came to see the dog for a picnic,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,(they both) they both : brought basket/s.,they both brought baskets,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,the[-:] : bunny took lot/s of stuff like chip/s pickle/s large[?] sandwich/s carrot/s cake/s : cheese : cookie/s.,the bunny took lots of stuff like chips pickles large sandwiches carrots cakes cheese cookies,0 0 0 1 0 0 0 1 1 0 1 1 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,the dog[!] just took (uh) : a sandwich and more stuff : juice[-:] and[-:] : cookie/s.,the dog just took a sandwich and more stuff juice and cookies,0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,the rabbit : ate all of it.,the rabbit ate all of it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and he (got) start/ed to get sick.,and he started to get sick,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,the dog : ate his sandwich and : cookie/s and : drank his juice.,the dog ate his sandwich and cookies and drank his juice,0 0 0 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the rabbit start/ed to get dizzy.,and the rabbit started to get dizzy,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the rabbit said : oh no!,and the rabbit said oh no,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the dog : came : to get the doctor.,and the dog came to get the doctor,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the doctor said hmm.,and the doctor said hmm,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,(a) (an) and the dog (carry/ed the) : took the doctor and pull/ed and pull/ed : and said (the r) the rabbit is sick because he ate too much.,and the dog took the doctor and pulled and pulled and said the rabbit is sick because he ate too much,0 0 0 0 0 0 0 4 0 4 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the doctor took (his) her stuff and : took out a (s) popsicle stick and said the rabbit say ah.,and the doctor took her stuff and took out a popsicle stick and said the rabbit say ah,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and (the : rabbit) : the doctor : (she) she took the : rabbit : to the hospital.,and the doctor she took the rabbit to the hospital,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the : dog (said) was very happy.,and the dog was very happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,once : the dog (was) had a balloon.,once the dog had a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the rabbit came along and said oh[-:][!] you have a : nice red : shiny balloon!,and the rabbit came along and said oh you have a nice red shiny balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,(he) : (he want/ed) the rabbit want/ed to see the : bright nice : shiny (balloo) : balloon.,the rabbit wanted to see the bright nice shiny balloon,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and[-:] : the dog (was) said no!,and the dog said no,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,but the rabbit said I am just go/ing to [~_gonna] see it!,but the rabbit said I am just going to see it,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and : the rabbit : lost the string.,and the rabbit lost the string,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the : dog was very mad.,and the dog was very mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the rabbit was disappoint/ed (that).,and the rabbit was disappointed,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,the rabbit saw : a balloon : person.,the rabbit saw a balloon person,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and : he went over to the balloon person.,and he went over to the balloon person,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and he said : mister : can I have one of these balloon/s please?,and he said mister can I have one of these balloons please,0 0 0 0 0 0 0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,(it) (do not y) can not you read [EU]?,can not you read,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,it cost/3s : balloon/s : for five cent/s [EU].,it costs balloons for five cents,0 3 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and : the : rabbit was very sad.,and the rabbit was very sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,(and the) : and he saw the doctor : again.,and he saw the doctor again,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and he said : (m) doctor (can) (we : want two) we want balloon/s.,and he said doctor we want balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the doctor : gave them : (t) : two five cent/s.,and the doctor gave them two five cents,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the balloon man gave them (two balloon/s) : two blue balloon/s.,and the balloon man gave them two blue balloons,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,they were very happy because the doctor gave them two balloon/s.,they were very happy because the doctor gave them two balloons,0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,A giraffe and a[EW:an]: elephant : meet at a swimming pool.,A giraffe and a elephant meet at a swimming pool,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and the elephant is scare/ed.,and the elephant is scared,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,it is because the[-:] egg *is fall/ing [EU]?,it is because the egg falling,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and the giraffe dived|dive[EW:dove] in the water and try/ed to get the egg.,and the giraffe dived in the water and tried to get the egg,0 0 0 0 0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then the giraffe : gave the egg to the elephant.,and then the giraffe gave the egg to the elephant,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then the elephant like/ed (the) the giraffe.,and then the elephant liked the giraffe,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,It is the same as the other one [+_bch].,It is the same as the other one,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,(mmm) I do not know what like this [+_bch].,I do not know what like this,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,I do not know xxx [+_bch].,I do not know,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,just start it any way you want.,just start it any way you want,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,the elephant and the giraffe are[-:] [+//]>,the elephant and the giraffe are,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,I do not know [+_bch].,I do not know,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,I do not get this page [+_bch].,I do not get this page,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,can you tell me what happen/ing?,can you tell me what happening,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,they are happy.,they are happy,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,then the elephant (went in the water) [~_no] *is go/ing to the jump/ing thing [~_what_it_(i)s_called] and slip/3s [EU].,then the elephant going to the jumping thing and slips,0 0 0 6 0 0 6 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then the giraffe is run/ing to help her.,and then the giraffe is running to help her,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,then she slip/ed on the ground.,then she slipped on the ground,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and she hurt her knee.,and she hurt her knee,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then the giraffe help/ed her try/ed to.,and then the giraffe helped her tried to,0 0 0 0 4 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then[-:] xxx what is his name is call/ed [+//]>,and then what is his name is called,0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,I do not know what the name is call/ed [+_bch].,I do not know what the name is called,0 0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,Are you done?,Are you done,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then (he put) he put a bandaid on[-:] the cut.,and then he put a bandaid on the cut,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then the giraffe help/ed her up.,and then the giraffe helped her up,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then the elephant is happy.,and then the elephant is happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and the other elephant was mad.,and the other elephant was mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,The giraffe and the elephant [EU].,The giraffe and the elephant,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and the giraffe got a toy airplane.,and the giraffe got a toy airplane,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and[-:] the elephant is happy.,and the elephant is happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,the : giraffe is fly/ing it in his hand.,the giraffe is flying it in his hand,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and the elephant is [+//]>,and the elephant is,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,I do not know what it is call/ed [+_bch].,I do not know what it is called,0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,then the elephant took the plane away from the : giraffe.,then the elephant took the plane away from the giraffe,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then the elephant (ac) accidentally[?] drop/ed the plane in the water.,and then the elephant accidentally dropped the plane in the water,0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and now the (gilaf) giraffe is mad at the elephant.,and now the giraffe is mad at the elephant,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then[-:] : the other elephant : is look/ing at the plane in the water.,and then the other elephant is looking at the plane in the water,0 0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and I do not know whatever it is call/ed [+_bch].,and I do not know whatever it is called,0 0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then the elephant is explain/ing to the other elephant.,and then the elephant is explaining to the other elephant,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and the giraffe did not know what : she was say/ing.,and the giraffe did not know what she was saying,0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then : the (ele) other elephant was try/ing to reach the plane.,and then the other elephant was trying to reach the plane,0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and (then then) : then the giraffe was sad.,and then the giraffe was sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,then (uh) the other elephant got a net and took it out.,then the other elephant got a net and took it out,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,she reach/ed to get the plane.,she reached to get the plane,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and (gira) the giraffe was happy.,and the giraffe was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then giraffe : never gave it to the elephant.,and then giraffe never gave it to the elephant,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,The bunny and the : dog : met each other.,The bunny and the dog met each other,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then (there were) they were build/ing a castle together.,and then they were building a castle together,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,then[-:] the bunny drop/ed all the sand in the bucket on the castle.,then the bunny dropped all the sand in the bucket on the castle,0 0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and[-:] the dog was nervous.,and the dog was nervous,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and the bunny was[-:] scare/ed.,and the bunny was scared,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then the dog was sad.,and then the dog was sad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,a dog and a bunny were go/ing on a picnic.,a dog and a bunny were going on a picnic,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and[-:] the bunny took all his food out and[-:] was hungry.,and the bunny took all his food out and was hungry,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and the bunny ate : all : of his food.,and the bunny ate all of his food,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then[-:] whatever it is call/ed (ahh) ate too much.,and then whatever it is called ate too much,0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and he was sick.,and he was sick,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then the dog went to the bunny/z mom : and[-:] telled|tell[EW:told] *her that (his) her baby is sick [EU].,and then the dog went to the bunny's mom and telled that her baby is sick,0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and the dog was pull/ing her to (the baby) [~_I_mean] boy.,and the dog was pulling her to boy,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then[-:] the mom : look/ed at the boy.,and then the mom looked at the boy,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and[-:] the mom walk/ed the boy back home.,and the mom walked the boy back home,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,guy has a wagon and the balloon.,guy has a wagon and the balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and the bunny is come/ing.,and the bunny is coming,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and the bunny try/ed to get the balloon.,and the bunny tried to get the balloon,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and the bunny took it off of the : wagon.,and the bunny took it off of the wagon,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then the dog try/ed to get the balloon back in the bunny [EU].,and then the dog tried to get the balloon back in the bunny,0 0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then the dog was (ma) mad at the bunny.,and then the dog was mad at the bunny,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then[-:] a guy with lot/s of balloon/s : (uh[-:]) the bunny saw it.,and then a guy with lots of balloons the bunny saw it,0 0 0 0 0 1 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then the bunny : said can I have one of those balloon/s?,and then the bunny said can I have one of those balloons,0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and he gave one.,and he gave one,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,he has five cent/s [~_laughs].,he has five cents,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,(he did not have) he did not have any change.,he did not have any change,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,so he was nervous.,so he was nervous,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and[-:] the bunny went to[-:] the doctor and ask/ed [~_pronounced__'axed'] if he had any five cent/s.,and the bunny went to the doctor and asked if he had any five cents,0 0 0 0 0 0 0 0 4 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then the bunny ask/ed the doctor (if he could get one) if he could have five cent/s for the balloon for my[-:] friend.,and then the bunny asked the doctor if he could have five cents for the balloon for my friend,0 0 0 0 4 0 0 0 0 0 0 0 1 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and : the[-:] doctor gave two dollar/s.,and the doctor gave two dollars,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and he got lot/s of balloon/s.,and he got lots of balloons,0 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then the bunny and the dog were happy.,and then the bunny and the dog were happy,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,(um[-:] : me uh) some : little girl and : a friend : are play/ing with a ball around (the) : a little lake : that you can swim in.,some little girl and a friend are playing with a ball around a little lake that you can swim in,0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and[-:] they accidentally drop the ball into the water.,and they accidentally drop the ball into the water,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and (the[-:]) (her friend) : the girl/z friend go/3s in and get/3s it : and pass/3s it to her.,and the girl's friend goes in and gets it and passes it to her,0 0 2 0 3 0 0 3 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and he is all wet.,and he is all wet,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and she is all happy.,and she is all happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and she is all smiley[-:].,and she is all smiley,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and : he is all wet.,and he is all wet,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,(um) : it is the same girl with her friend.,it is the same girl with her friend,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and they want to[:_wanna] go swim/ing.,and they want to go swimming,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,(i) : and[-:] : it say/3s no run/ing.,and it says no running,0 0 3 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and they just want to go (swim/ing[-:]) swim/ing.,and they just want to go swimming,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and the girl want/3s to run and jump in.,and the girl wants to run and jump in,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,but she is not suppose/ed to run.,but she is not supposed to run,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and she run/3s.,and she runs,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and she slip/3s and fall/3s[-:].,and she slips and falls,0 0 3 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,she hurt/3s her knee.,she hurts her knee,0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and she start/3s cry/ing.,and she starts crying,0 0 3 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and her friend come/3s run/ing for her.,and her friend comes running for her,0 0 0 3 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and then : a lifeguard come/3s : (after him c) : (after) when she fall/3s because : (she hear/3s) he hear/3s it.,and then a lifeguard comes when she falls because he hears it,0 0 0 0 3 0 0 3 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and then he : put/3s some : stuff on.,and then he puts some stuff on,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and then he put/3s a bandaid on.,and then he puts a bandaid on,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and there is still a sign that says no run/ing.,and there is still a sign that says no running,0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,she has to sit out on the bench.,she has to sit out on the bench,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and her friend is[-:] : kind of smiley.,and her friend is kind of smiley,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and so[-:] she is[-:] kind of[:_kinda] : in trouble because (she i) there is a sign that says no run/ing.,and so she is kind of in trouble because there is a sign that says no running,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and the lifeguard point/3s to the sign.,and the lifeguard points to the sign,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and she is[-:] kind of : worry/ed.,and she is kind of worried,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,(um : um) : there is[EW:are] [-:] : the two friend/s again.,there is the two friends again,0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,(and[-:]) : (um and one of) and her friend : has a toy[-:].,and her friend has a toy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and she is[-:] all surprise/ed and stuff.,and she is all surprised and stuff,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and he is play/ing with it.,and he is playing with it,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and she is just look/ing at it : get/ing dizzy : sort of.,and she is just looking at it getting dizzy sort of,0 0 0 0 6 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and then she grab/3s the toy : away from him : (and she want/3s) because she want/3s to play with it.,and then she grabs the toy away from him because she wants to play with it,0 0 0 3 0 0 0 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,she accidentally drop/3s it in the water.,she accidentally drops it in the water,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and it start/ing to kind of[:_kinda] sink.,and it starting to kind of sink,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and (the) her friend is get/ing mad at her.,and her friend is getting mad at her,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,(that) she (s) go/3s to get the lifeguard.,she goes to get the lifeguard,0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and the lifeguard look/3s at the toy.,and the lifeguard looks at the toy,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and she is : say/ing[-:] can you get that please : it look/3s like.,and she is saying can you get that please it looks like,0 0 0 6 0 0 0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and the lifeguard try/3s to (rea) reach.,and the lifeguard tries to reach,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,but it is too far.,but it is too far,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and now he is cry/ing[-:] : because the lifeguard could not get it.,and now he is crying because the lifeguard could not get it,0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and then : a[-:] person bring/3s a net so she can try to get it.,and then a person brings a net so she can try to get it,0 0 0 0 3 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and she get/3s it for him.,and she gets it for him,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and now he is happy : that he got his toy back.,and now he is happy that he got his toy back,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and now : she is happy that he is happy.,and now she is happy that he is happy,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and he is all : snuggle/ed up to his toy.,and he is all snuggled up to his toy,0 0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,me and my friend Alana : (um) go/ing to the park to play : in the sandbox.,me and my friend Alana going to the park to play in the sandbox,0 0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,(us make/ing a s) me and my friend Alana make/ing (a sandbox) a sandcastle [~_I_mean].,me and my friend Alana making a sandcastle,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,(um) pour/ing a whole bunch of sand on it.,pouring a whole bunch of sand on it,6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and Alana get/ing a little mad.,and Alana getting a little mad,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and[-:] the sandcastle break/3s (cause I pour : s) because we pour/ed sand on it.,and the sandcastle breaks because we poured sand on it,0 0 0 3 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and[-:] : us try/ing to build it again [EU].,and us trying to build it again,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,me : and my friend *are go/ing on a picnic [EU].,me and my friend going on a picnic,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,my friend *is eat/ing : all the food [EU].,my friend eating all the food,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,my friend *is get/ing kind of sick[!] (and[-:]) because he ate all the food [EU].,my friend getting kind of sick because he ate all the food,0 0 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,he is get/ing even sicker.,he is getting even sicker,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,he see/3s a nurse walk/ing down the road.,he sees a nurse walking down the road,0 3 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and (he run/3s to go get the nurse) : [~_well] I run to go get the nurse.,and I run to go get the nurse,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and I pull him to (the[-:] uh) my friend who is kind of sick from eat/ing all the food.,and I pull him to my friend who is kind of sick from eating all the food,0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and then she is[-:] (give/ing[-:] hi[-:]) take/ing his temperature and give/ing him some medicine.,and then she is taking his temperature and giving him some medicine,0 0 0 0 6 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and her[EW:she] *is make/ing him feel a little bit better [EU].,and her making him feel a little bit better,0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,(um : m) me and my friend *are walk/ing down the street with a wagon [EU].,me and my friend walking down the street with a wagon,0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and I have : a balloon tie/ed to my wagon.,and I have a balloon tied to my wagon,0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,my friend is look/ing at it and say/ing how wonderful the balloon is.,my friend is looking at it and saying how wonderful the balloon is,0 0 0 6 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,my friend want/3s to hold it.,my friend wants to hold it,0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and he untie/3s it.,and he unties it,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and he let/3s it go.,and he lets it go,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and it fly/3s away.,and it flies away,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and I get all mad at him because my balloon is gone.,and I get all mad at him because my balloon is gone,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and it was my favourite balloon.,and it was my favourite balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and (we see a balloon man) [~_well] he see/3s a balloon man down the : other side of the street.,and he sees a balloon man down the other side of the street,0 0 3 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and he ask/3s if he can get one of the balloon/s.,and he asks if he can get one of the balloons,0 0 3 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,but his pocket/s are empty.,but his pockets are empty,0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and he has no money.,and he has no money,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and : (he um) : we are just stand/ing there and look/ing at the balloon/s.,and we are just standing there and looking at the balloons,0 0 0 0 6 0 0 6 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and then (we see the nurse) [~_well] he see/3s the nurse down the road.,and then he sees the nurse down the road,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and he show/3s her where the balloon man is.,and he shows her where the balloon man is,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and : he give/3s : the man : ten cent/s because the balloon/s are five cent/s so they could each get a balloon.,and he gives the man ten cents because the balloons are five cents so they could each get a balloon,0 0 3 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and now they each got their own balloon.,and now they each got their own balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and now : I am[-:] smile/ing.,and now I am smiling,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and I am happy with my friend.,and I am happy with my friend,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,once upon a time there was a giraffe.,once upon a time there was a giraffe,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,he saw (a) : a[EW:an] elephant bounce/ing a ball.,he saw a elephant bouncing a ball,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,(i) (i) the elephant lost control.,the elephant lost control,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,and it went into the water.,and it went into the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,the zebra (ran in to get) swam in to get it.,the zebra swam in to get it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,the zebra gave it back to the elephant.,the zebra gave it back to the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,the elephant look/ed at him and smile/ed.,the elephant looked at him and smiled,0 0 4 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,that was easy [+_bch].,that was easy,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,(um) once upon a time there was a giraffe and an elephant.,once upon a time there was a giraffe and an elephant,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,(she saw) : she want/ed to go (on) off the diving board.,she wanted to go off the diving board,0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,so she ran over (it) to it.,so she ran over to it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,the giraffe said (no run/ing) the sign say/3s no run/ing.,the giraffe said the sign says no running,0 0 0 0 0 3 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,she fell and hurt her knee.,she fell and hurt her knee,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,see I told[!] you.,see I told you,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,the lifeguard came to help her.,the lifeguard came to help her,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,he put a bandaid on : and help/ed her up.,he put a bandaid on and helped her up,0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,they went to : sit down.,they went to sit down,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,the lifeguard said : the sign say/3s no run/ing : just for next time so you know.,the lifeguard said the sign says no running just for next time so you know,0 0 0 0 0 3 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,(there) there was an elephant and a giraffe.,there was an elephant and a giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,the elephant saw : what a nice airplane you have.,the elephant saw what a nice airplane you have,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,he said look it even fly/3s too.,he said look it even flies too,0 0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,(the giraffe stole it) [~_no_#_no] the elephant stole it from the giraffe.,the elephant stole it from the giraffe,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,(she) it slip/ed out of her hand and went into the water.,it slipped out of her hand and went into the water,0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,the giraffe was very very mad at the elephant.,the giraffe was very very mad at the elephant,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,the lifeguard came to see and said well I will go get the thing.,the lifeguard came to see and said well I will go get the thing,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,the page just pull/ed out [~_page_came_loose_from_the_binder] [+__bch].,the page just pulled out,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,(she s) he said well why would you do that ?,he said well why would you do that,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,and she said : it slip/ed out of my hand/s.,and she said it slipped out of my hands,0 0 0 0 4 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,the lifeguard try/ed to get it.,the lifeguard tried to get it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,but he could not.,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,he said well : I do not know how you get it.,he said well I do not know how you get it,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,a lady came along with a big : (fi) fishing net.,a lady came along with a big fishing net,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,and she got it out.,and she got it out,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,it was very hard.,it was very hard,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,but : she got it.,but she got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,she gave it back to the zebra.,she gave it back to the zebra,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,the zebra was very very happy.,the zebra was very very happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,after that (the) the elephant was happy that (gira) the giraffe got it.,after that the elephant was happy that the giraffe got it,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,and the giraffe was very happy.,and the giraffe was very happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,once there was a bunny name/ed : Peter and a dog name/ed : Rosie.,once there was a bunny named Peter and a dog named Rosie,0 0 0 0 0 4 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,and Rosie was build/ing : a castle.,and Rosie was building a castle,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,and : Peter came along and said can I help you?,and Peter came along and said can I help you,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,(um) Peter help/ed : her make the castle.,Peter helped her make the castle,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,but (uh) Peter decide/ed to dump the sand all over the castle.,but Peter decided to dump the sand all over the castle,0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,and he broke it.,and he broke it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,(um) Rosie got mad at Peter.,Rosie got mad at Peter,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,and : Peter said sorry.,and Peter said sorry,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,Rosie try/ed to build it again.,Rosie tried to build it again,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,once upon a time (there was a bunny name/ed[-:]) : there was a bunny.,once upon a time there was a bunny,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,and he was walk/ing along.,and he was walking along,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,and he saw a dog and said can I walk with you?,and he saw a dog and said can I walk with you,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,they decide/ed to have a picnic together.,they decided to have a picnic together,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,at the end the rabbit was : so full that he got very fat.,at the end the rabbit was so full that he got very fat,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,(um) : he got : so fat that he could not walk home.,he got so fat that he could not walk home,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,(um) the dog found a doctor and said come over.,the dog found a doctor and said come over,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,come over.,come over,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,my friend is hurt.,my friend is hurt,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,so she : pull/ed him over.,so she pulled him over,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,and : the doctor start/ed to look.,and the doctor started to look,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,the doctor said you should not have ate so much food.,the doctor said you should not have ate so much food,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,and you would not have got sick.,and you would not have got sick,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,the doctor help/ed (um) the bunny back (uh) home.,the doctor helped the bunny back home,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,once upon a time there was a dog.,once upon a time there was a dog,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,and (she) she was pull/ing a wagon.,and she was pulling a wagon,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,behind her she saw a bunny.,behind her she saw a bunny,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,the bunny said what a nice balloon.,the bunny said what a nice balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,can I hold it for you?,can I hold it for you,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,he tie/ed it to his arm.,he tied it to his arm,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,and they start/ed off on their way.,and they started off on their way,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,(it) (it ca) it unloosen/ed and went off the bunny/z hand.,it unloosened and went off the bunny's hand,0 4 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,and it float/ed into the sky.,and it floated into the sky,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,the dog was very mad : at the bunny.,the dog was very mad at the bunny,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,(uh) down the road the bunny saw : a balloon man.,down the road the bunny saw a balloon man,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,and he said what a nice surprise.,and he said what a nice surprise,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,I will just buy one and give it back to her.,I will just buy one and give it back to her,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,he said how much do they cost?,he said how much do they cost,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,(the) the guy said twenty five cent/s.,the guy said twenty five cents,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,(um) so he bought one.,so he bought one,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,(and) : (and um) : and he gave it to : the dog.,and he gave it to the dog,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,(um) : the dog saw the : rabbit : buy/ing one.,the dog saw the rabbit buying one,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,he saw the : doctor and ran to him.,he saw the doctor and ran to him,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,the : doctor said you do not have enough to buy one of those.,the doctor said you do not have enough to buy one of those,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,how much money do you need?,how much money do you need,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,he gave : the guy enough money to buy two balloon/s so that they could each have one.,he gave the guy enough money to buy two balloons so that they could each have one,0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,the dog was very happy.,the dog was very happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,so was the bunny.,so was the bunny,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,and they thank/ed : the doctor and went off.,and they thanked the doctor and went off,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,one day there was an elephant and a giraffe.,one day there was an elephant and a giraffe,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,they were go/ing to go swim/ing.,they were going to go swimming,0 0 6 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,they threw a ball into the water.,they threw a ball into the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,the giraffe went and got it.,the giraffe went and got it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,: [~_sighs] (and instead the) and then the giraffe got it and gave it to the elephant.,and then the giraffe got it and gave it to the elephant,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,the elephant was so happy that she squeeze/ed the ball.,the elephant was so happy that she squeezed the ball,0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,it almost pop/ed.,it almost popped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,one : day there was an elephant and the giraffe.,one day there was an elephant and the giraffe,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,they were go/ing swim/ing.,they were going swimming,0 0 6 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,the elephant[!] saw a diving[!] board.,the elephant saw a diving board,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,(she wan) she ran to the diving board.,she ran to the diving board,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,she almost slip/ed.,she almost slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,she hurt her knee very[!] badly.,she hurt her knee very badly,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,(the lifeguar) the lifeguard saw her : cry/ing.,the lifeguard saw her crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,(he) she got a big[-:] bandaid.,she got a big bandaid,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,and then she could not swim.,and then she could not swim,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,so she had to sit on the bench.,so she had to sit on the bench,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,(the) : the lifeguard : said (she) you did not see the sign that says no[-:] run/ing.,the lifeguard said you did not see the sign that says no running,0 0 0 0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,one day there was an elephant and the giraffe.,one day there was an elephant and the giraffe,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,they were go/ing to go swim/ing with their airplane.,they were going to go swimming with their airplane,0 0 6 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,the giraffe : flew his airplane.,the giraffe flew his airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,and it was : come/ing : almost (uh uh) : out of his hands.,and it was coming almost out of his hands,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,the elephant[!] caught it though.,the elephant caught it though,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,the elephant accidentally threw it into the water.,the elephant accidentally threw it into the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,(the life) the giraffe was very[!] angry at her.,the giraffe was very angry at her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,the lifeguard saw it in the water.,the lifeguard saw it in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,the elephant said : [~_high_pitched_voice] he said I threw it in the water.,the elephant said he said I threw it in the water,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,[~_high_pitched_voice] and I did not really!,and I did not really,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,(the) the lifeguard could not[!] catch it.,the lifeguard could not catch it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,he shrug/ed his shoulders and said I do not know a way to get it!,he shrugged his shoulders and said I do not know a way to get it,0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,and then : a lady came with a big[-:] net.,and then a lady came with a big net,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,she try/ed to fetch the airplane out of the water.,she tried to fetch the airplane out of the water,0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,she caught it!,she caught it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,the giraffe thank/ed her very[!] much.,the giraffe thanked her very much,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,the giraffe was so[-:] happy he squeez/ed it.,the giraffe was so happy he squeezed it,0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,and it almost slip/ed out of his hand/s.,and it almost slipped out of his hands,0 0 0 4 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,and (th) the elephant was so happy that : they got it out of the water.,and the elephant was so happy that they got it out of the water,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,she squeeze/ed her hands.,she squeezed her hands,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,and they were almost pitch red.,and they were almost pitch red,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,one day there was a rabbit and a doggy[!].,one day there was a rabbit and a doggy,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,the doggy was make/ing a sandcastle.,the doggy was making a sandcastle,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,the rabbit : got (a big[!]) some big scoop/s : from his shovel into the pail : of sand.,the rabbit got some big scoops from his shovel into the pail of sand,0 0 0 0 0 1 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,he got[!] the sand : and : dump/ed it all[-:] over his castle.,he got the sand and dumped it all over his castle,0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,the castle[!] (went) : fell over.,the castle fell over,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,the dog was very[!] sad.,the dog was very sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,the bunny was surprise/ed.,the bunny was surprised,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,one day there were[EW:was] a puppy and a rabbit.,one day there were a puppy and a rabbit,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,they were go/ing to go on a picnic.,they were going to go on a picnic,0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,the rabbit and the puppy got all the food out.,the rabbit and the puppy got all the food out,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,(the rab) (the dog) the doggy was very[!] surprise/ed how much food[!] the rabbit brought.,the doggy was very surprised how much food the rabbit brought,0 0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,he said are you sure you are go/ing to eat all that!,he said are you sure you are going to eat all that,0 0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,the rabbit said yes[-:] I am.,the rabbit said yes I am,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,the rabbit ate every single bite!,the rabbit ate every single bite,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,he was very[!] fat after that.,he was very fat after that,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,he almost faint/ed!,he almost fainted,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,he was very very fat.,he was very very fat,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,and then he did[!] faint.,and then he did faint,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,and the puppy ran : (and) (the) into a doctor.,and the puppy ran into a doctor,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,he said doctor doctor my friend the rabbit ate too much junk[!] food!,he said doctor doctor my friend the rabbit ate too much junk food,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,he try/ed[!] to pull the doctor over to his friend the rabbit.,he tried to pull the doctor over to his friend the rabbit,0 4 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,then (sh) she came over.,then she came over,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,and she lift/ed up his head.,and she lifted up his head,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,and she said you ate too much junk food!,and she said you ate too much junk food,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,then the doctor carefully[!] : put her hand on the back of his back : and walk/ed him home.,then the doctor carefully put her hand on the back of his back and walked him home,0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,one day there was a puppy and a rabbit.,one day there was a puppy and a rabbit,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,the puppy had a balloon attach/ed to his wagon.,the puppy had a balloon attached to his wagon,0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,the rabbit was very interest/ed in the balloon.,the rabbit was very interested in the balloon,0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,he try/ed to untie it.,he tried to untie it,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,but it was just too[!] tight on [EU].,but it was just too tight on,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,and then he got it.,and then he got it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,(an) except he did not hold onto to very (tight) tight.,except he did not hold onto to very tight,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,his hand/s slip/ed off the string.,his hands slipped off the string,0 1 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,and it (float) float/ed up in the sky.,and it floated up in the sky,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,the puppy was very[!] mad.,the puppy was very mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,all that was left that they could see is a little bit of the string!,all that was left that they could see is a little bit of the string,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,then they saw a big : rabbit with lot/s[!] of balloon/s.,then they saw a big rabbit with lots of balloons,0 0 0 0 0 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,(they were very[!] uh) little rabbit was very interest/ed in them.,little rabbit was very interested in them,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,he said I would like that big yellow[!] one please.,he said I would like that big yellow one please,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,he did not have any money though.,he did not have any money though,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,(he s) the balloon keeper said : you have to have some money to buy the balloon.,the balloon keeper said you have to have some money to buy the balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,(the ver) the puppy was very[!] surprise/ed.,the puppy was very surprised,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,and so was the rabbit.,and so was the rabbit,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,then they saw the doctor again!,then they saw the doctor again,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,(they said) bunny said doctor doctor we need some of your money to buy a balloon[-:]!,bunny said doctor doctor we need some of your money to buy a balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,we need some of your money!,we need some of your money,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,I lost my balloon because : he untie/ed it : off my wagon said the puppy.,I lost my balloon because he untied it off my wagon said the puppy,0 0 0 0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,(and then : he) : (and then she gave the man two) and then she gave the man : ten cent/s.,and then she gave the man ten cents,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,: and the balloon/s : all float/ed away[-:].,and the balloons all floated away,0 0 1 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,except there was[EW:were] only two[!] left one for the puppy and one for the rabbit.,except there was only two left one for the puppy and one for the rabbit,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,they were both very[!] happy.,they were both very happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,they thank/ed the doctor very[!] much.,they thanked the doctor very much,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,once upon a time there was a girl.,once upon a time there was a girl,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,(and the moose) : and the giraffe came : (and s) and saw[!] the thing.,and the giraffe came and saw the thing,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,(and she) and he said what are you doing ?,and he said what are you doing,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,(and) and the other one said oh I am bounce/ing a ball.,and the other one said oh I am bouncing a ball,0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,: (and then the ball) and then the ball went into the : water.,and then the ball went into the water,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and then no one could : get it.,and then no one could get it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,but then (the) (the cam) the giraffe (dropped uh) swimmed|swim[EW:swam] in and almost got the ball.,but then the giraffe swimmed in and almost got the ball,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,: (and then) and then he said thank you.,and then he said thank you,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,: (and then) and then the other one said : [~_sighs] no problem.,and then the other one said no problem,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,once (huh) an (ah) [+//]>,once an,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,what does this say I can not understand that [+_bch].,what does this say I can not understand that,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,what do you think ?,what do you think,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,(what) (what is this) what is this on the picture [+_bch]?,what is this on the picture,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,I will let you decide.,I will let you decide,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,no run/ing in the pool?,no running in the pool,0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,(and then) and then the : want/ed to go for a swim [EU].,and then the wanted to go for a swim,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and he said watch out.,and he said watch out,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and she actually slip/ed into the water.,and she actually slipped into the water,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,: and then she got a scrape.,and then she got a scrape,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,: (and then) and then he call/ed the teacher (to see) to see how the scrape was go/ing.,and then he called the teacher to see how the scrape was going,0 0 0 4 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,: and then it really hurt so bad that he had to put a bandage on.,and then it really hurt so bad that he had to put a bandage on,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and it was go/ing to be okay.,and it was going to be okay,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,: (and then the rest of) and then the sign said no run/ing.,and then the sign said no running,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,that/z what happen/ed [+_bch].,that's what happened,2 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,once upon a time (there was) (there was) : [~_I_I_keep__forgetting_the_boy's_name] : there was a giraffe and a[EW:an] elephant.,once upon a time there was a giraffe and a elephant,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,said can I hold your airplane please [EU]?,said can I hold your airplane please,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,(and then) (and then he s) and then he said sure.,and then he said sure,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,but (just) just let me show you what it does.,but just let me show you what it does,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and it zoom/ed around.,and it zoomed around,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,: and then she took it from him.,and then she took it from him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and then she zoom/ed it.,and then she zoomed it,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,(and then she almost) and (the) then she drop/ed it in the water.,and then she dropped it in the water,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,(and then the cam)(and then the oh) and then the giraffe got very angry at the elephant because[~_xxx;_EXA_asks_cause_what] she went like this[~_makes_sound_effect_agh].,and then the giraffe got very angry at the elephant because she went like this,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,(xx and then) and then no one can do about it [EU].,and then no one can do about it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and then she said you have[!] to because (the) the airplane is his.,and then she said you have to because the airplane is his,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,so what are we go/ing to[:_gonna] do about it ?,so what are we going to do about it,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,we can not just swim in there.,we can not just swim in there,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,: he try/ed to reach it.,he tried to reach it,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,but he could not.,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,(so he got a nn) and then she cry/ed because noth/ing can we doed|do[EW:do] about it [EU].,and then she cried because nothing can we doed about it,0 0 0 4 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,: (and then the) and then the catcher came (and) and catched|catch[EW:caught] the thing.,and then the catcher came and catched the thing,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,: (and then) and then he put his tear/s away.,and then he put his tears away,0 0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,put his what away ?,put his what away,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,tear/s cause his tears go/ing [+_bch].,tears cause his tears going,1 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and then he said thank you.,and then he said thank you,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and then he said no problem.,and then he said no problem,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and that was the end of the story [+_bch].,and that was the end of the story,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,one day they were build/ing a sandcastle.,one day they were building a sandcastle,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,(and the bunny) and the other bunny : was go/ing to[:_gonna] play with [~_I_forget_that_part] [+//]>,and the other bunny was going to play with,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and then he[!] want/ed to build a sandcastle.,and then he wanted to build a sandcastle,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,: (and then he went) (the tower) : (and then) and then he got mad.,and then he got mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and then she got[EW:was] sad.,and then she got sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,(and) : and the other person cry/ed.,and the other person cried,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,once upon a time : (uh) (the bunny met) the bunny met (um) his friend (at the) with the picnic basket.,once upon a time the bunny met his friend with the picnic basket,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,: and then (they all had a pi) they all had the picnic.,and then they all had the picnic,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and then he was so full that he can[EW:could] barely eat anything else.,and then he was so full that he can barely eat anything else,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,: and then he got a stomyache[c].,and then he got a stomyache,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,but he has bubble/s.,but he has bubbles,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,I do not know what that is [~_child's_comment_about__picture] [+_bch].,I do not know what that is,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,(so then he wen) (he went) then the friend went to : his mother/z house (and) : (and um) and said (uhh) your son is not feel/ing well.,then the friend went to his mother's house and said your son is not feeling well,0 0 0 0 0 0 2 0 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and then : she pull/ed her (to where) to where the friend was lie/ing down.,and then she pulled her to where the friend was lying down,0 0 0 4 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,(and then he w) (and then the doctor) and then his mother (um) quickly was go/ing to[:_gonna] check him.,and then his mother quickly was going to check him,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and then they went happily ever after at home [EU].,and then they went happily ever after at home,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,one day when he walk/ed to his friend : (she) (he wa) she was : hold/ing : a cart [~_oh_I_do_n(o)t_know_how_to_say_that] : with a balloon on top.,one day when he walked to his friend she was holding a cart with a balloon on top,0 0 0 0 4 0 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,: (and then he s) (and then the friend) and then the other[!] friend said : your thing is amazing.,and then the other friend said your thing is amazing,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,: (and then) : (and then um) : (and then most) (and then) and then she (twun) (twun) tie/ed the balloon off.,and then she tied the balloon off,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and then the balloon : fell out of the[EW:his] hand.,and then the balloon fell out of the hand,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,(and then) and then it flew away.,and then it flew away,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,: and then the girl got so[!] angry : that she never[?] will get the cart.,and then the girl got so angry that she never will get the cart,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and then there was[EW:were] some new[!] balloon/s.,and then there was some new balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,(andthen ) and he want|want[EW:wants] to buy one for the cart.,and he want to buy one for the cart,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and then : can I have a red balloon?,and then can I have a red balloon,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,: and then he said : this red balloon?,and then he said this red balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and then he said : all (this costs) this cost/s (um) [+//]>,and then he said all this costs,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,can you say this one word : nine nine xxx [+_bch].,can you say this one word nine nine,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,okay I can not read that balloon [+_bch].,okay I can not read that balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,that's okay.,that's okay,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,(and) and then : would you like to buy another balloon : he said?,and then would you like to buy another balloon he said,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and then he ran and said doctor(*2) I need some money (and then) : to buy a red balloon (he).,and then he ran and said doctor I need some money to buy a red balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and then the mother said : oh no you can not buy one of those : (because xx).,and then the mother said oh no you can not buy one of those,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and then each of them got (t two) two red balloon/s.,and then each of them got two red balloons,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and then they were so happy.,and then they were so happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,then the other one : can have one (for his) (for his um) for his cart.,then the other one can have one for his cart,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,once there was a giraffe and an elephant.,once there was a giraffe and an elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,(th) they are play/ing bouncy ball or something.,they are playing bouncy ball or something,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: they accidentally drop/ed the ball into the water.,they accidentally dropped the ball into the water,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: and so the giraffe went and swam in to get it.,and so the giraffe went and swam in to get it,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: and (he got it out) he got it out : gave it to the elephant [EU].,and he got it out gave it to the elephant,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,(and : um) and elephant was happy to get her ball back.,and elephant was happy to get her ball back,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,(okay) elephant and the giraffe were by a pool.,elephant and the giraffe were by a pool,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: and they did not see [EW:the]no run/ing sign : the elephant did not [~__okay] [~_child_clarifying_that_the_elephant_didn't_see_the_sign].,and they did not see no running sign the elephant did not,0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,and then so (she ran) she start/ed run/ing.,and then so she started running,0 0 0 0 4 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: (then) and then she slip/ed.,and then she slipped,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,she fell : and hurt her knee.,she fell and hurt her knee,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: and the giraffe came to help her.,and the giraffe came to help her,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,she was cry/ing.,she was crying,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,and a : lifeguard came : to : put a bandaid on it.,and a lifeguard came to put a bandaid on it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,and then : lifeguard told her it is go/ing to[:_gonna] be okay.,and then lifeguard told her it is going to be okay,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,and then lifeguard got mad and show/ed her the no run/ing sign.,and then lifeguard got mad and showed her the no running sign,0 0 0 0 0 0 4 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,the giraffe and the elephant : were play/ing with a plane.,the giraffe and the elephant were playing with a plane,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: and they were have/ing a lot of fun[-:] .,and they were having a lot of fun,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: and then the elephant took it away from the giraffe.,and then the elephant took it away from the giraffe,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: he got mad.,he got mad,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,(and um) and then it fell into the pool.,and then it fell into the pool,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: and the giraffe got mad at the elephant.,and the giraffe got mad at the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: and the lifeguard came : and ask/ed what was wrong.,and the lifeguard came and asked what was wrong,0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,and then the elephant told him : that they were play/ing with the : plane and it fell into the pool.,and then the elephant told him that they were playing with the plane and it fell into the pool,0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: and lifeguard try/ed to get it.,and lifeguard tried to get it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,but he could not reach it.,but he could not reach it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: so then the giraffe was cry/ing (cause he) because no one could get it.,so then the giraffe was crying because no one could get it,0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: and a lady came and : got : a net.,and a lady came and got a net,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: and then (she got it out) : she was try/ing to get it.,and then she was trying to get it,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,she got it.,she got it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,she gave it to the giraffe.,she gave it to the giraffe,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,the giraffe was (ha) happy.,the giraffe was happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,(he was) he was like laugh/ing in joy : sort of.,he was like laughing in joy sort of,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,and : (um) he hug/ed his plane.,and he hugged his plane,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,and the elephant was happy too.,and the elephant was happy too,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,there was (an) an elephant and a dog.,there was an elephant and a dog,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,(were play/ing) (er pla) (make/ing a sandcastle) they made a sandcastle.,they made a sandcastle,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,(and then : they start/ed) and then the bunny came and help/ed (the) because he was not really do/ing anything.,and then the bunny came and helped because he was not really doing anything,0 0 0 0 0 0 4 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,he (came to help and um) : came to help too.,he came to help too,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,and then he dump/ed the whole bucket on.,and then he dumped the whole bucket on,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,(and it) (oh I mean he made a pile) (um thought) [~_I__mean] he made a pile.,he made a pile,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,(cause) : I thought he was dump/ing it on the castle.,I thought he was dumping it on the castle,0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: [~_oh] she wreck/ed it.,she wrecked it,0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,yeah I just could not see it [+_bch].,yeah I just could not see it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,[~_okay] he dump/ed it on[-:] .,he dumped it on,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,she got mad[-:] .,she got mad,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,and (she is r) now she is cry/ing.,and now she is crying,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,(okay) rabbit and dog (were go/ing) were walk/ing down the road to have a picnic.,rabbit and dog were walking down the road to have a picnic,0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: rabbit (um go) was hot and : was really hungry.,rabbit was hot and was really hungry,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,so (he ate) he ate all his food really fast.,so he ate all his food really fast,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,he got sick.,he got sick,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,and then (dog went : because) dog saw a doctor and (went) (went to her) ask/ed for help.,and then dog saw a doctor and asked for help,0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,and then (um) dog (grab/ed) (like) brang|bring[EW:brought] (the rabbit) [~_I_mean] doctor over.,and then dog brang doctor over,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: and then she help/ed him.,and then she helped him,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: (and then she) and the doctor had a talk with him.,and the doctor had a talk with him,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,and the end [+_bch].,and the end,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,(um) : dog and rabbit were : (um) : walk/ing down the road.,dog and rabbit were walking down the road,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: they found a balloon.,they found a balloon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,and then rabbit try/ed to take it away.,and then rabbit tried to take it away,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,(then it flew) then it (um) flew into the air.,then it flew into the air,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,dog got really mad.,dog got really mad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: and she was still mad.,and she was still mad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,but then : rabbit saw : (um) a man hold/ing a whole bunch of balloon/s.,but then rabbit saw a man holding a whole bunch of balloons,0 0 0 0 0 0 6 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: and then he ask/ed for a balloon.,and then he asked for a balloon,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: (um) but he did not have enough money.,but he did not have enough money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: (it was) so then : they were sit/ing there wonder/ing what they could do.,so then they were sitting there wondering what they could do,0 0 0 0 6 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,and then rabbit saw the angel.,and then rabbit saw the angel,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: and he told her what was wrong.,and he told her what was wrong,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: she bought (them a balloon) : them both a balloon.,she bought them both a balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,and they were happy.,and they were happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,(uhm) there is a giraffe and an elephant (that) (that have) that have three ball/s[-:].,there is a giraffe and an elephant that have three balls,0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and (then the giraffe and the elephant see another ball) they see (their) one of their ball/s in the water.,and they see one of their balls in the water,0 0 0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,: so the giraffe swim/3s to get it.,so the giraffe swims to get it,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,: and then he bring/3s it back to the elephant.,and then he brings it back to the elephant,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,: and then the[-:] elephant hug/3s it and everything.,and then the elephant hugs it and everything,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,(um well : um) there is the giraffe and the elephant again.,there is the giraffe and the elephant again,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and it has a sign that says no run/ing.,and it has a sign that says no running,0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,: and then : the elephant start/3s run/ing : or something.,and then the elephant starts running or something,0 0 0 0 3 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,: and then he slip/3s.,and then he slips,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,: and then he hurt/3s (hi) herself[EW:himself].,and then he hurts herself,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,: so a lifeguard come/3s : (and put) and put/3s on a bandaid.,so a lifeguard comes and puts on a bandaid,0 0 0 3 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and the elephant : look/3s like (he) she is about to cry.,and the elephant looks like she is about to cry,0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,: but she notice/3s that it do/3s not hurt at all.,but she notices that it does not hurt at all,0 0 3 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,: and then the lifeguard point/3s to the sign.,and then the lifeguard points to the sign,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and the elephant see/3s (it and) the sign that say/3s no run/ing.,and the elephant sees the sign that says no running,0 0 0 3 0 0 0 3 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,(um) this giraffe has an airplane in his hand.,this giraffe has an airplane in his hand,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,then he is try/ing to fly everywhere.,then he is trying to fly everywhere,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,: (but) and the elephant grab/3s it.,and the elephant grabs it,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and then she drop/3s it in the water accidentally.,and then she drops it in the water accidentally,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and (um) the giraffe get/3s really mad at the elephant.,and the giraffe gets really mad at the elephant,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and then a lifeguard come/3s and see/3s the airplane.,and then a lifeguard comes and sees the airplane,0 0 0 0 3 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,: and then (the) : the elephant try/3s to explain why it is in the water.,and then the elephant tries to explain why it is in the water,0 0 0 0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,so the lifeguard try/3s to get it out.,so the lifeguard tries to get it out,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and then : the giraffe start/3s to cry.,and then the giraffe starts to cry,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,so a lady come/3s along with a net.,so a lady comes along with a net,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and she try/3s to grab it out of the water with the net.,and she tries to grab it out of the water with the net,0 0 3 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and then she give/3s it back to the giraffe.,and then she gives it back to the giraffe,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and then he start/3s hug/ing it.,and then he starts hugging it,0 0 0 3 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,there is a bunny and a puppy (who are) who are make/ing a sandcastle.,there is a bunny and a puppy who are making a sandcastle,0 0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,[~_no_wait] the puppy already made the sandcastle.,the puppy already made the sandcastle,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,: and then he is try/ing to fix it up kind of to make it look a little better.,and then he is trying to fix it up kind of to make it look a little better,0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and then the bunny start/3s pour/ing sand : (on) on the sandcastle.,and then the bunny starts pouring sand on the sandcastle,0 0 0 0 3 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and the sand is all over it.,and the sand is all over it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and the puppy start/3s wipe/ing off the : sand.,and the puppy starts wiping off the sand,0 0 0 3 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,there is a puppy and a bunny that is[EW:are] go/ing for a (picic) picnic.,there is a puppy and a bunny that is going for a picnic,0 0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and then they are eat/ing.,and then they are eating,0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and the bunny is eat/ing a lot.,and the bunny is eating a lot,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and then she is really really full[-:].,and then she is really really full,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and then (um) the puppy notice/3s that she is really really full.,and then the puppy notices that she is really really full,0 0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,so the puppy go/3s and get/3s this doctor that he[-:] found on the path.,so the puppy goes and gets this doctor that he found on the path,0 0 0 3 0 3 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and he bring/3s : the doctor over to the bunny.,and he brings the doctor over to the bunny,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and then the doctor : try/3s to help the bunny.,and then the doctor tries to help the bunny,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and then the bunny feel/3s a little better.,and then the bunny feels a little better,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,there is a puppy and a bunny : who have a wagon with a balloon tie/ed to it.,there is a puppy and a bunny who have a wagon with a balloon tied to it,0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and the bunny : see/3s the balloon.,and the bunny sees the balloon,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and then she try/3s to take it off.,and then she tries to take it off,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and then she took it off.,and then she took it off,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and it is float/ing away.,and it is floating away,0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and then the puppy get/3s really mad at the bunny.,and then the puppy gets really mad at the bunny,0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and then there is (an) (a) (a : bu) another bunny that has : balloon/s in (they) in his hand.,and then there is another bunny that has balloons in in his hand,0 0 0 0 0 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and the bunny see/3s : the other bunny.,and the bunny sees the other bunny,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and then the bunny say/3s that he want/ed one of the balloon/s.,and then the bunny says that he wanted one of the balloons,0 0 0 0 3 0 0 4 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and then the balloon/s are suppose/ed to be fifty cent/s.,and then the balloons are supposed to be fifty cents,0 0 0 1 0 4 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,but the bunny has no money.,but the bunny has no money,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,so (then) : then they feel all sad and everything.,so then they feel all sad and everything,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and then they see : (um) a doctor.,and then they see a doctor,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and the bunny ask/3s : (if) if the doctor could pay for them for one of the balloon/s.,and the bunny asks if the doctor could pay for them for one of the balloons,0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,so the doctor do/3s.,so the doctor does,0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and then : they each have a balloon.,and then they each have a balloon,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,A long time ago there was a little elephant name/ed Ella.,A long time ago there was a little elephant named Ella,0 0 0 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and she was play/ing (with) with her best friend Gerome the giraffe.,and she was playing with her best friend Gerome the giraffe,0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,they were play/ing along the swimming pool.,they were playing along the swimming pool,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,"and as they were play/ing pass with the ball, the ball went inside the pool.",and as they were playing pass with the ball the ball went inside the pool,0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(and they were shock/ed) (and they were) (and they were) and they were very shock/ed.,and they were very shocked,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,Ella the elephant did not know how to swim.,Ella the elephant did not know how to swim,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,so Gerome the giraffe had to go in and try to get the ball.,so Gerome the giraffe had to go in and try to get the ball,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,when he got the ball he gave it to Ella the elephant.,when he got the ball he gave it to Ella the elephant,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(Ella wa) (E) Ella was very happy.,Ella was very happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,Gerome was also very happy because he like/ed Ella.,Gerome was also very happy because he liked Ella,0 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and Ella now really like/ed him.,and Ella now really liked him,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,A long time ago there were two friend/s.,A long time ago there were two friends,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,there was Rachelle the elephant and Bob the giraffe.,there was Rachelle the elephant and Bob the giraffe,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(and they) and they were go/ing to have a swim in the swimming pool.,and they were going to have a swim in the swimming pool,0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,but then they saw a sign that said no run/ing.,but then they saw a sign that said no running,0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,but (um) Rachelle the elephant did not recognize it.,but Rachelle the elephant did not recognize it,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,so she start/ed run/ing along the swimming pool then.,so she started running along the swimming pool then,0 0 4 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(she) then when she was run/ing she slip/ed and fell.,then when she was running she slipped and fell,0 0 0 0 6 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and she skin/ed her knee.,and she skinned her knee,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and she start/ed to cry.,and she started to cry,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,Gerome came run/ing to see what had happen/ed.,Gerome came running to see what had happened,0 0 6 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(a) after he start/ed to care for her the lifeguard came (and check/ed) and check/ed (what was) what was wrong.,after he started to care for her the lifeguard came and checked what was wrong,0 0 4 0 0 0 0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and he saw (that) that (Rachelle) Rachelle the elephant was run/ing and she slip/ed and that she did not see the sign and that she hurt herself.,and he saw that Rachelle the elephant was running and she slipped and that she did not see the sign and that she hurt herself,0 0 0 0 0 0 0 0 6 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,the lifeguard put a big bandage on where she skin/ed her knee.,the lifeguard put a big bandage on where she skinned her knee,0 0 0 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and Rachelle felt much better.,and Rachelle felt much better,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,"(as Rachelle was) as the lifeguard carry/ed Rachelle back to the bench, (Gerome) Gerome comfort/ed her.",as the lifeguard carried Rachelle back to the bench Gerome comforted her,0 0 0 4 0 0 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and then the lifeguard spot/ed the sign.,and then the lifeguard spotted the sign,0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and he told her Rachelle that the sign was there and she miss/ed the sign and that she should never run again.,and he told her Rachelle that the sign was there and she missed the sign and that she should never run again,0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,Here we are again with Rachelle the elephant and Bob the giraffe.,Here we are again with Rachelle the elephant and Bob the giraffe,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(Bob) (Bob) Bob was show/ing off his new airplane that he got from his grandma for his birthday.,Bob was showing off his new airplane that he got from his grandma for his birthday,0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(ra) Rachelle was very happy.,Rachelle was very happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(she thought) she thought that it was very interesting.,she thought that it was very interesting,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,so when they start/ed to play with it Gerome show/ed her a trick (that he found) that he found out with the airplane.,so when they started to play with it Gerome showed her a trick that he found out with the airplane,0 0 0 4 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,Rachelle was very shock/ed and surprise/ed.,Rachelle was very shocked and surprised,0 0 0 4 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,Rachelle like/ed it so much that she stole it out of Bob/z hand/s and start/ed to play with it herself.,Rachelle liked it so much that she stole it out of Bob's hands and started to play with it herself,0 4 0 0 0 0 0 0 0 0 0 2 1 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(Bob) Bob did not know what was happen/ing.,Bob did not know what was happening,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,"but when she play/ed with it, it fell inside the swimming pool.",but when she played with it it fell inside the swimming pool,0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,Bob got kind of sad.,Bob got kind of sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(but then he) (not) not only did he get sad : but he got really mad at Rachelle.,not only did he get sad but he got really mad at Rachelle,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and he said Rachelle now you have to go get it.,and he said Rachelle now you have to go get it,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,but Rachelle did not know how to swim.,but Rachelle did not know how to swim,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,so they called (ov) over the lifeguard to go get it because Rachelle did not know how to swim [<~_I_mean]and Gerome thought[>~_I_mean] and Bob thought that it was only fair that she had to get it because she threw it into the pool.,so they called over the lifeguard to go get it because Rachelle did not know how to swim and Gerome thought and Bob thought that it was only fair that she had to get it because she threw it into the pool,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 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(the lifeguard) the lifeguard said (well you are not) why did you throw it into the pool ?,the lifeguard said why did you throw it into the pool,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and Rachelle said it is just an accident.,and Rachelle said it is just an accident,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and the lifeguard said (well why) (why did you) why did you take it out of Bob/z hand anyway ?,and the lifeguard said why did you take it out of Bob's hand anyway,0 0 0 0 0 0 0 0 0 0 0 2 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,she said well it was really interesting.,she said well it was really interesting,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,I just want to see it.,I just want to see it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,the next time you should ask.,the next time you should ask,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(and) and Rachelle said can you please please[!] get it ?,and Rachelle said can you please please get it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,so he try/ed to get it.,so he tried to get it,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and he try/ed and try/ed.,and he tried and tried,0 0 4 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,but he could not get it.,but he could not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,Gerome start/ed to feel sad that he would never get it again.,Gerome started to feel sad that he would never get it again,0 4 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,so finally : (um) Rachelle/z mother came and had a big long net.,so finally Rachelle's mother came and had a big long net,0 0 2 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(and she) and she was about to get it.,and she was about to get it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and she got[!] it : with the big net.,and she got it with the big net,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,she got the airplane all safe and sound no broken piece/s.,she got the airplane all safe and sound no broken pieces,0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,so then she gave it to Bob.,so then she gave it to Bob,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and Bob start/ed to get very happy and very excite/ed that he could play with it again.,and Bob started to get very happy and very excited that he could play with it again,0 0 4 0 0 0 0 0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,he hug/ed and hug/ed it so much.,he hugged and hugged it so much,0 4 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and now Rachelle was happy that he had it back.,and now Rachelle was happy that he had it back,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(a couple of da) last week (there were) there was a bunny name/ed (um) Babs and a dog name/ed : Michelle.,last week there was a bunny named Babs and a dog named Michelle,0 0 0 0 0 0 4 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(they) (they were) (Babs) Babs was walk/ing (on her way to) just on a walk.,Babs was walking just on a walk,0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and she saw Michelle (play) play/ing in a sandbox and build/ing a sandcastle.,and she saw Michelle playing in a sandbox and building a sandcastle,0 0 0 0 6 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,she thought it would be fun.,she thought it would be fun,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and she want/ed to play too.,and she wanted to play too,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,so Michelle let her play with it.,so Michelle let her play with it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(and they) and they were make/ing sandcastle/s and : all different kind/s of animal/s.,and they were making sandcastles and all different kinds of animals,0 0 0 6 1 0 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,so then when Babs pour/ed her bucket of sand all over the top of the castle : it broke it.,so then when Babs poured her bucket of sand all over the top of the castle it broke it,0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,Michelle was so sad.,Michelle was so sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,so was Babs.,so was Babs,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(she thought) she thought it would make it better.,she thought it would make it better,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,but instead it made it worse.,but instead it made it worse,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,Michelle start/ed to cry.,Michelle started to cry,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and she start/ed to fine her sandcastle again [EU].,and she started to fine her sandcastle again,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,but (it was all) it was all coat/ed with sand (but) by the big bucket of sand.,but it was all coated with sand by the big bucket of sand,0 0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(Babs look/ed) (Babs look/ed) Babs look/ed embarrasse/ed because (it) she broke it.,Babs looked embarrasseed because she broke it,0 4 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and now her friend was cry/ing.,and now her friend was crying,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,here we are again with Babs and Michelle.,here we are again with Babs and Michelle,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(Bab) Babs was walk/ing along in the forest (when) when she caught up with Michelle.,Babs was walking along in the forest when she caught up with Michelle,0 0 6 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,they were go/ing on a walk to a picnic.,they were going on a walk to a picnic,0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,Michelle said oh look at the perfect view.,Michelle said oh look at the perfect view,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(and) and (um Mich) Babs said it is so beautiful.,and Babs said it is so beautiful,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(why do not) (why don't we) why do not we have a picnic here?,why do not we have a picnic here,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,so they did.,so they did,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and (Bab) (Babs ate) (Babs) Babs brought a lot.,and Babs brought a lot,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,he brought a cake submarine sandwich pickle/s cheese chip/s : and almost anything you could think of.,he brought a cake submarine sandwich pickles cheese chips and almost anything you could think of,0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and : Michelle only brought a couple thing/s only thing/s she need/ed.,and Michelle only brought a couple things only things she needed,0 0 0 0 0 0 1 0 1 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,Babs was eat/ing everything.,Babs was eating everything,0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(after Babs) after Michelle was finish/ing her juice and her sandwich : Babs was done everything.,after Michelle was finishing her juice and her sandwich Babs was done everything,0 0 0 6 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,he had a gigantic stomach (and start/ed) (and) and start/ed to burp the ABC/s.,he had a gigantic stomach and started to burp the ABCs,0 0 0 0 0 0 4 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,Babs got really dizzy (and) and felt sleepy.,Babs got really dizzy and felt sleepy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(when) when Michelle was just[!] about to finish her juice and sandwich : (Babs) Babs fell asleep.,when Michelle was just about to finish her juice and sandwich Babs fell asleep,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,so when he was sleep/ing : (Michelle) (Michelle saw) Michelle phone/ed the doctor because he was really dizzy.,so when he was sleeping Michelle phoned the doctor because he was really dizzy,0 0 0 0 6 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(and he) (and he did not) and he did not look very good.,and he did not look very good,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,so when the doctor came she hurry/ed over (and told) and told the doctor to come and see what was wrong.,so when the doctor came she hurried over and told the doctor to come and see what was wrong,0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(she) : Michelle kept drag/ing her over.,Michelle kept dragging her over,0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,but : when they were just a few feet away the doctor said he just sleep/ing.,but when they were just a few feet away the doctor said he just sleeping,0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(and he ate) and he ate too much.,and he ate too much,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(do not) do not worry.,do not worry,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,he will just be a couple minute/s (when he) when he will get better.,he will just be a couple minutes when he will get better,0 0 0 0 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,but she said but he do/3s not look very good.,but she said but he does not look very good,0 0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,you should come and see.,you should come and see,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,but she did not want to come and see.,but she did not want to come and see,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,so she did.,so she did,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and when she tap/ed him on the head (he start/ed) (he start/ed to bark) he start/ed to bark even though he was a rabbit.,and when she tapped him on the head he started to bark even though he was a rabbit,0 0 0 4 0 0 0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,the doctor thought something was wrong.,the doctor thought something was wrong,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,but then : when she check/ed him : he was just right.,but then when she checked him he was just right,0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,all he did was eat a little too many : chip/s.,all he did was eat a little too many chips,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(last) last year (about) in the middle of the spring time (there was) there was a dog name/ed : Sarah (and a) and a rabbit name/ed Christopher.,last year in the middle of the spring time there was a dog named Sarah and a rabbit named Christopher,0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(as they were) as (um) Sarah was walk/ing with her new wagon : (she) (that she got from a parade) that she won from a parade with a balloon that she also got from the parade : (she was walk/ing) she was walk/ing and play/ing with it.,as Sarah was walking with her new wagon that she won from a parade with a balloon that she also got from the parade she was walking and playing with it,0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,when Christopher saw it he want/ed to play too.,when Christopher saw it he wanted to play too,0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,he love/ed the balloon.,he loved the balloon,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,he thought it was the best part of everything.,he thought it was the best part of everything,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,he want/ed to see it even closer because (it was) it was high in the sky.,he wanted to see it even closer because it was high in the sky,0 4 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,so when he want/ed to untie it just so he see a (leettle) little more (um Sarah) Sarah thought he should not do it.,so when he wanted to untie it just so he see a little more Sarah thought he should not do it,0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,but then she thought maybe I will get to see it closer too.,but then she thought maybe I will get to see it closer too,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,but when he let go : the balloon start/ed to sail way up high in the sky.,but when he let go the balloon started to sail way up high in the sky,0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(Sarah) Sarah start/ed to feel sad and that she would never see it again.,Sarah started to feel sad and that she would never see it again,0 4 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(and that) and Christopher (was) was very sad because he[!] want/ed to see it even closer.,and Christopher was very sad because he wanted to see it even closer,0 0 0 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,but : he did not get it because he let it off.,but he did not get it because he let it off,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,but then Sarah got really[!] mad at Christopher because he let her favorite balloon off.,but then Sarah got really mad at Christopher because he let her favorite balloon off,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and she started to throw a fit.,and she started to throw a fit,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,then[!] (a guy from) a guy was walk/ing down the street with billion/s of balloon/s.,then a guy was walking down the street with billions of balloons,0 0 0 0 6 0 0 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(while) while Sarah was still be/ing mad at Christopher Christopher spot/ed him.,while Sarah was still being mad at Christopher Christopher spotted him,0 0 0 0 6 0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(and he w) and he thought maybe he should buy a balloon for her.,and he thought maybe he should buy a balloon for her,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,so he said can I have (one balloo) one of those balloon/s?,so he said can I have one of those balloons,0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and can I have a purple one?,and can I have a purple one,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,he said sure.,he said sure,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and the purple one was the biggest one.,and the purple one was the biggest one,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and he gave it to her.,and he gave it to her,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(and as) (and as he) (and when) (and as) and as he was walk/ing Sarah start/ed to feel a little happier because he bought a balloon for her.,and as he was walking Sarah started to feel a little happier because he bought a balloon for her,0 0 0 0 6 0 4 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,at least she thought so.,at least she thought so,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(but when) (but when he) but when he look/ed in his pocket to buy[!] a balloon he did not have any money.,but when he looked in his pocket to buy a balloon he did not have any money,0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,so then the guy that own/ed the balloons said you can not have it because you have no money.,so then the guy that owned the balloons said you can not have it because you have no money,0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,so Sarah start/ed to walk towards him.,so Sarah started to walk towards him,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(so) so : (um) Christopher put his hand/s in his pocket still try/ing to find something.,so Christopher put his hands in his pocket still trying to find something,0 0 0 0 1 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and the guy said well you know what?,and the guy said well you know what,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,just because you let her balloon off (and) and since you are my grandson[!] : I will let you have a balloon for free.,just because you let her balloon off and since you are my grandson I will let you have a balloon for free,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,but then he change/ed his mind again because he thought well even though he let it off he should still buy it for her.,but then he changed his mind again because he thought well even though he let it off he should still buy it for her,0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,so then[!] they saw : his mom walk/ing down the street.,so then they saw his mom walking down the street,0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and she said mom can I have five cent/s?,and she said mom can I have five cents,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(and she) and she did not hear him.,and she did not hear him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and so she said it again.,and so she said it again,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,he said I need five cent/s.,he said I need five cents,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,but I have none because I let Sarah/z balloon go.,but I have none because I let Sarah's balloon go,0 0 0 0 0 0 0 2 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and she really want/3s another one.,and she really wants another one,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,so the lady pay/ed the man (five cent/s) ten cent/s actually so that they could both have a balloon.,so the lady paid the man ten cents actually so that they could both have a balloon,0 0 0 4 0 0 0 1 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,they were really happy.,they were really happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and (they hug/ed them and) they hug/ed the balloon/s a lot.,and they hugged the balloons a lot,0 0 4 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(and then they said) and they said thank you to Christopher/z mom.,and they said thank you to Christopher's mom,0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and then they went off to play again.,and then they went off to play again,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,two friend/s met again.,two friends met again,0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,they had a ball.,they had a ball,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,the ball drop/ed in the river.,the ball dropped in the river,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,and then the (friend) friend (s : uh) swam into the river to get the ball.,and then the friend swam into the river to get the ball,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,he gave back the ball.,he gave back the ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,(and then he look/ed very) : and then she look/ed very happy.,and then she looked very happy,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,two friend/s met[!] again.,two friends met again,0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,(uh) one friend want/ed to (go) go off the diving board.,one friend wanted to go off the diving board,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,(she ran down the hallway and sli) and : she ran down the hallway.,and she ran down the hallway,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,(she ran to) : and she slip/ed.,and she slipped,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,the lifeguard came : and gave her a (um) : bandaid.,the lifeguard came and gave her a bandaid,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,then she (sat) : sat on the bench.,then she sat on the bench,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,and then the lifeguard (real) got really mad because there was a sign that said no run/ing.,and then the lifeguard got really mad because there was a sign that said no running,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,the two friend/s met again.,the two friends met again,0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,he (had) was play/ing with a[EW:an] airplane.,he was playing with a airplane,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,the other friend took the airplane away.,the other friend took the airplane away,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,and it fell into the water[!].,and it fell into the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,the one friend got really[!] mad.,the one friend got really mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,the lifeguard saw it.,the lifeguard saw it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,and (they all look/ed) they all look/ed unhappy.,and they all looked unhappy,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,and then (the uh) the friend explain/ed what happen/ed.,and then the friend explained what happened,0 0 0 0 4 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,and the lifeguard look/ed : kind of surprise/ed.,and the lifeguard looked kind of surprised,0 0 0 4 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,so the lifeguard reach/ed out to get it.,so the lifeguard reached out to get it,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,but : he could not.,but he could not,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,so the friend cry/ed.,so the friend cried,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,a lady with a pole : came over.,a lady with a pole came over,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,and she fish/ed out the airplane : and gave it back.,and she fished out the airplane and gave it back,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,and (he) they both look/ed very[!] happy.,and they both looked very happy,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,two kid/s met (at uh) in the sand box.,two kids met in the sand box,0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,they built a castle.,they built a castle,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,(uh) : one of the friend/s pour/ed (um) sand onto the castle.,one of the friends poured sand onto the castle,0 0 0 1 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,the castle broke (ss).,the castle broke,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,one of the friend/s got really sad.,one of the friends got really sad,0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,(two f) the two friend/s met again.,the two friends met again,0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,(they) : (they) : they ate a picnic.,they ate a picnic,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,one of the friend/s ate too much and got a stomachache.,one of the friends ate too much and got a stomachache,0 0 0 1 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,[~_whispers:_let_(u)s_see] : (it got even) : it got even worse.,it got even worse,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,(then the) : then there was (a lady on the road) a doctor on the road.,then there was a doctor on the road,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,and (the) : one of the friend/s went to get the doctor.,and one of the friends went to get the doctor,0 0 0 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,(the : girl) : (the) one of friend/s pull/ed the doctor (to the) : to the other friend.,one of friends pulled the doctor to the other friend,0 0 1 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,the doctor look/ed at him.,the doctor looked at him,0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,and after that he felt really happy.,and after that he felt really happy,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,the two friend/s met again.,the two friends met again,0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,(uh) the one friend (ask/ed) ask/ed her what : (if he could have the) if he could take off the balloon.,the one friend asked her what if he could take off the balloon,0 0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,so he : was untie/ing the balloon.,so he was untying the balloon,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,and the balloon flew away[!].,and the balloon flew away,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,(the) : the friend got really[!] mad at him.,the friend got really mad at him,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,then he saw (some) a man with balloon/s.,then he saw a man with balloons,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,he ask/ed for one.,he asked for one,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,five cent/s each.,five cents each,0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,and they both look/ed very sad.,and they both looked very sad,0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,(then came) : then came a lady.,then came a lady,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,and they ask/ed her for some money.,and they asked her for some money,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,so she paid him five cent/s.,so she paid him five cents,0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,and they got each one balloon!,and they got each one balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,Today we meet Ella elephant and George giraffe.,Today we meet Ella elephant and George giraffe,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,Ella was play/ing : with a ball.,Ella was playing with a ball,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,and : she threw it in the pool that George and Ella were at.,and she threw it in the pool that George and Ella were at,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,while Ella was stand/ing there George : swam in (and got) and try/ed to get Ella/z ball.,while Ella was standing there George swam in and tried to get Ella's ball,0 0 0 6 0 0 0 0 0 4 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,George got Ella/z ball and swam : back to her.,George got Ella's ball and swam back to her,0 0 2 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,Ella was very (ha) happy with George.,Ella was very happy with George,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,George was very proud of himself.,George was very proud of himself,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,(Percy and Bob are) [~_I_mean] (um) Ella and George are still at the pool.,Ella and George are still at the pool,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,(um) and they are look/ing into the water.,and they are looking into the water,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,Ella want/3s to go off the diving board.,Ella wants to go off the diving board,0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,George and Ella (run) try to run to the diving board.,George and Ella try to run to the diving board,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,but Ella slip/3s.,but Ella slips,0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,Ella hurt/3s her knee and start/3s to cry.,Ella hurts her knee and starts to cry,0 3 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,George help/3s her.,George helps her,0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,and (the life elephant) the lifeguard elephant (came) come/3s to help.,and the lifeguard elephant comes to help,0 0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,the lifeguard elephant put/3s a bandage on Ella/z knee.,the lifeguard elephant puts a bandage on Ella's knee,0 0 0 3 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,the lifeguard elephant also help/3s Ella up on a bench.,the lifeguard elephant also helps Ella up on a bench,0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,George try/3s to help/3s[EW:help] too.,George tries to helps too,0 3 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,Ella did not see the no run/ing sign at the first page of this story.,Ella did not see the no running sign at the first page of this story,0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,and the lifeguard elephant get/3s angry.,and the lifeguard elephant gets angry,0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,George and Ella are still[!] at the pool.,George and Ella are still at the pool,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,George has a[EW:an] : airplane with him.,George has a airplane with him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,George is make/ing the airplane do trick/s in front of Ella.,George is making the airplane do tricks in front of Ella,0 0 6 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,and Ella is look/ing a little bit strange.,and Ella is looking a little bit strange,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,then Ella grab/3s the airplane from George and look/3s at it constantly.,then Ella grabs the airplane from George and looks at it constantly,0 0 3 0 0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,then Ella : accidentally drop/3s (the : pap) the plane in the pool.,then Ella accidentally drops the plane in the pool,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,and George do/3s not look very happy.,and George does not look very happy,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,George get/3s very very angry at Ella for drop/ing the plane in the pool.,George gets very very angry at Ella for dropping the plane in the pool,0 3 0 0 0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,the lifeguard elephant (look/3s at Ella) (look/3s) [~_I__mean] look/3s at the airplane.,the lifeguard elephant looks at the airplane,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,and so do/3s George while Ella try/3s to sneak away.,and so does George while Ella tries to sneak away,0 0 3 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,(George) : but (the life elephant) : the lifeguard elephant stop/3s her and want/3s : Ella to explain what happen/ed to the airplane.,but the lifeguard elephant stops her and wants Ella to explain what happened to the airplane,0 0 0 0 3 0 0 3 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,the lifeguard elephant try/3s (to get) to reach over the pool and get the airplane for George.,the lifeguard elephant tries to reach over the pool and get the airplane for George,0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,when he cannot reach it (Geo) George get/3s on his knee/s and start/3s to cry.,when he cannot reach it George gets on his knees and starts to cry,0 0 0 0 0 0 3 0 0 1 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,: Ella/z : mother come/3s (to) with a pool : net.,Ella's mother comes with a pool net,2 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,and I think she is try/ing to get the : airplane.,and I think she is trying to get the airplane,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,Ella/z mom is really really close to get/ing it.,Ella's mom is really really close to getting it,2 0 0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,and (George is) (Ella) the lifeguard elephant is look/ing happy.,and the lifeguard elephant is looking happy,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,and George (is) still has a few tear/s in his eye/s.,and George still has a few tears in his eyes,0 0 0 0 0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,when Ella/z mom get/3s George/z airplane for him : George is really happy.,when Ella's mom gets George's airplane for him George is really happy,0 2 0 3 2 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,now George : has his airplane back.,now George has his airplane back,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,and they are : look/ing more playful.,and they are looking more playful,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,once upon a time (there was a little : um) (there were a) there was a little dog and a little rabbit.,once upon a time there was a little dog and a little rabbit,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,the little dog/z name was Percy.,the little dog's name was Percy,0 0 2 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,and the rabbit/z name was Bob.,and the rabbit's name was Bob,0 0 2 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,Bob and Percy were make/ing a sandcastle near a lake or an ocean.,Bob and Percy were making a sandcastle near a lake or an ocean,0 0 0 0 6 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,Bob dump/ed (sa) sand all over : Percy/z sandcastle.,Bob dumped sand all over Percy's sandcastle,0 4 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,(um) Bob and Percy were both shock/ed about the sandcastle.,Bob and Percy were both shocked about the sandcastle,0 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,Percy start/ed cry/ing and try/ed to rebuild it while : Bob was think/ing about what he did.,Percy started crying and tried to rebuild it while Bob was thinking about what he did,0 4 6 0 4 0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,once upon a time : there was Bob and Percy got back together for a picnic.,once upon a time there was Bob and Percy got back together for a picnic,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,Bob had pack/ed lot/s of food that he thought : was very good.,Bob had packed lots of food that he thought was very good,0 0 4 1 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,but Percy only had a very simple picnic (like sandwich) like a sandwich and juice.,but Percy only had a very simple picnic like a sandwich and juice,0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,while Percy was eat/ing Bob start/ed to feel sick.,while Percy was eating Bob started to feel sick,0 0 0 6 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,Bob pass/ed out.,Bob passed out,0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,and Percy went to get : (doctor[-:]) : Doctor Peter.,and Percy went to get Doctor Peter,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,Percy pull/ed Doctor Peter toward/3s Bob.,Percy pulled Doctor Peter towards Bob,0 4 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,Doctor Peter check/ed out the way Bob was feel/ing.,Doctor Peter checked out the way Bob was feeling,0 0 4 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,and Bob got back up.,and Bob got back up,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,Doctor Peter made Bob feel : (a lot better) : a lot better.,Doctor Peter made Bob feel a lot better,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,once upon a time Percy and Bob got together again.,once upon a time Percy and Bob got together again,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,Percy was pull/ing (a w) a : blue wagon with a balloon tie/ed to it.,Percy was pulling a blue wagon with a balloon tied to it,0 0 6 0 0 0 0 0 0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,Bob want/ed to see the balloon.,Bob wanted to see the balloon,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,(Bob untie) (try/ed t) (is try) Bob (tr) try/ed to untie the balloon from Percy/z wagon.,Bob tried to untie the balloon from Percy's wagon,0 4 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,Bob succeed/ed on do/ing it.,Bob succeeded on doing it,0 4 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,and the balloon float/ed away.,and the balloon floated away,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,while Bob was look/ing up Percy got really mad at him.,while Bob was looking up Percy got really mad at him,0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,while Percy was be/ing angry (and) : Bob (walk/ed) saw that a balloon bunny was stand/ing : on the sidewalk.,while Percy was being angry Bob saw that a balloon bunny was standing on the sidewalk,0 0 0 6 0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,and he walk/ed over to him.,and he walked over to him,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,Percy start/ed look/ing at Bob while he pick/ed out another balloon for Percy.,Percy started looking at Bob while he picked out another balloon for Percy,0 4 6 0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,(but he) but now he notice/ed that the balloon/s were five cent/s.,but now he noticed that the balloons were five cents,0 0 0 4 0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,and he did not have any money.,and he did not have any money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,"while Percy came up behind him and start/ed look/ing at the balloon/s [~_note:_seems_to_be_separate_sentence,_not_connected_to__previous_or_next_utterance_judging_from_intonation_or_meaning].",while Percy came up behind him and started looking at the balloons,0 0 0 0 0 0 0 4 6 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,: Bob (ra) saw that Doctor Peter was : (he) on the sidewalk and ran over to her.,Bob saw that Doctor Peter was on the sidewalk and ran over to her,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,Bob (point/ed to the balloon bunny) point/ed to Doctor Peter (at) to the balloon bunny and Percy.,Bob pointed to Doctor Peter to the balloon bunny and Percy,0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,: Doctor Peter paid for two balloon/s one for Percy and one for Bob.,Doctor Peter paid for two balloons one for Percy and one for Bob,0 0 0 0 0 1 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,: now Percy : and Bob are happy.,now Percy and Bob are happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,once upon a time there was (a) an elephant that was play/ing with her ball.,once upon a time there was an elephant that was playing with her ball,0 0 0 0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and : it went into the water.,and it went into the water,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and : so the : giraffe : said I will get it for you.,and so the giraffe said I will get it for you,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,so he swam and swam to get the ball.,so he swam and swam to get the ball,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and then he got it for the elephant.,and then he got it for the elephant,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and the elephant was happy.,and the elephant was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and she was (happy that) so happy that (she was) she was blush/ing.,and she was so happy that she was blushing,0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,one day (an) the same elephant and the same zebra came to the pool again.,one day the same elephant and the same zebra came to the pool again,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and : the elephant want/ed to go in the pool.,and the elephant wanted to go in the pool,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,so she ran to the diving board.,so she ran to the diving board,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and she slip/ed : and fell : and got a scrape.,and she slipped and fell and got a scrape,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,so the zebra went to get a lifeguard.,so the zebra went to get a lifeguard,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and the lifeguard gave her a bandage.,and the lifeguard gave her a bandage,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and she was cry/ing and cry/ing.,and she was crying and crying,0 0 0 6 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,(so she) so as soon as the lifeguard put a bandaid on it : she felt better.,so as soon as the lifeguard put a bandaid on it she felt better,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and then she could not go in the water because : it will come off.,and then she could not go in the water because it will come off,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and it will hurt again.,and it will hurt again,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,so she just stay/ed.,so she just stayed,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and she just wait/ed on : the bench.,and she just waited on the bench,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and the lifeguard said no run/ing.,and the lifeguard said no running,0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,one day (the zebra) and the elephant came to the pool [~_I__mean] the giraffe.,one day and the elephant came to the pool the giraffe,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and then the giraffe flew the airplane.,and then the giraffe flew the airplane,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and : he try/ed to toward/s it : away from the pool [EU].,and he tried to towards it away from the pool,0 0 4 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,try/ed to what?,tried to what,4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,towards it [+_bch].,towards it,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,make it not go onto the side where the pool was.,make it not go onto the side where the pool was,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and the elephant just grab/ed it out of (the) his hand.,and the elephant just grabbed it out of his hand,0 0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and : he was sad.,and he was sad,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and the elephant was happy.,and the elephant was happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and the elephant by accidentally: threw it into the water.,and the elephant by accidentally threw it into the water,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and the : giraffe was mad because she by accidentally threw it in the water.,and the giraffe was mad because she by accidentally threw it in the water,0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,but the lifeguard said it is okay.,but the lifeguard said it is okay,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,it will not get wreck/ed.,it will not get wrecked,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,(I) someone could get it.,someone could get it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,so : the elephant ask/ed the (i) lifeguard how to get it.,so the elephant asked the lifeguard how to get it,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and the lifeguard told her.,and the lifeguard told her,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and the lifeguard try/ed to get it.,and the lifeguard tried to get it,0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,but he could not get it.,but he could not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,it was too far.,it was too far,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,then (the) the giraffe was : sad.,then the giraffe was sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and the elephant was embarrass/ed.,and the elephant was embarrassed,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,so : an elephant came along : and got something that would get : that toy out of the water.,so an elephant came along and got something that would get that toy out of the water,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and then : it would come out.,and then it would come out,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and she got it.,and she got it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and : she try/ed : to keep it in the net.,and she tried to keep it in the net,0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,but it went into the net.,but it went into the net,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and she got it out.,and she got it out,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,"and the giraffe was happy, so happy (he was) his face went red.",and the giraffe was happy so happy his face went red,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and : the elephant was happy too.,and the elephant was happy too,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,one day : a little doggie : found a friend that was a rabbit.,one day a little doggie found a friend that was a rabbit,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and he built a castle.,and he built a castle,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and : the rabbit said could I help?,and the rabbit said could I help,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and the doggie said yes.,and the doggie said yes,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,(and the) and the rabbit built a castle.,and the rabbit built a castle,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and it turn/ed out to be bigger.,and it turned out to be bigger,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,(and) : and the doggie was so happy that : he : was almost go/ing to [~_gonna] cry.,and the doggie was so happy that he was almost going to cry,0 0 0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,but then it fell over.,but then it fell over,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and then the doggie cry/ed.,and then the doggie cried,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,one day the doggie and the rabbit met up together.,one day the doggie and the rabbit met up together,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and they were go/ing to [~_gonna] have a picnic.,and they were going to have a picnic,0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and then rabbit took : a lot/s of thing/s.,and then rabbit took a lots of things,0 0 0 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and the doggie did not.,and the doggie did not,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,so the doggie just ate a sandwich and a juice.,so the doggie just ate a sandwich and a juice,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and then the rabbit was too full to play.,and then the rabbit was too full to play,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and then (the doggie was) [~_I_mean] the rabbit was so full he felt like he was go/ing to [~_gonna] puke.,and then the rabbit was so full he felt like he was going to puke,0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,so then he ran to the doctor.,so then he ran to the doctor,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and : the doctor said let me see him.,and the doctor said let me see him,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and : the doggie pull/ed the doctor so quick that the doctor could not even walk.,and the doggie pulled the doctor so quick that the doctor could not even walk,0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and the doctor was : look/ing at the rabbit.,and the doctor was looking at the rabbit,0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and the rabbit was sick.,and the rabbit was sick,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and it had a high fever.,and it had a high fever,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and then (the) : she made him feel all better.,and then she made him feel all better,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and the doggie was still at the picnic.,and the doggie was still at the picnic,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,(once) one day the doggie was go/ing for a birthday party.,one day the doggie was going for a birthday party,0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and the rabbit came and said hey could I come?,and the rabbit came and said hey could I come,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and (the ra) the rabbit grab/ed the balloon so (he) he could go in the wagon.,and the rabbit grabbed the balloon so he could go in the wagon,0 0 0 4 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,but : it came off.,but it came off,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,so he tie/ed it back on.,so he tied it back on,0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,but then the knot was too loose.,but then the knot was too loose,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,it flew away.,it flew away,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,(but) and the doggie was really really mad and did not even go to the party.,and the doggie was really really mad and did not even go to the party,0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,but a rabbit sold lot/s of balloon/s that were the exact same.,but a rabbit sold lots of balloons that were the exact same,0 0 0 0 1 0 1 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and the rabbit was really happy.,and the rabbit was really happy,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and it got one for the doggie.,and it got one for the doggie,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and (the) the (um) rabbit said yes you could have one.,and the rabbit said yes you could have one,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and : he said thank you.,and he said thank you,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,but it costed|cost[EW:cost] five dollar/s.,but it costed five dollars,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and the rabbit did not have any money at all.,and the rabbit did not have any money at all,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,so : he did not give (an) neither one of them any balloon[EW:balloons].,so he did not give neither one of them any balloon,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,but there was (um : um) a doctor.,but there was a doctor,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,(and :) and the rabbit went to the doctor.,and the rabbit went to the doctor,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and the doctor was just look/ing at something else.,and the doctor was just looking at something else,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and it did not even know that there was[EW:were] balloon/s over there.,and it did not even know that there was balloons over there,0 0 0 0 0 0 0 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and then the rabbit told the rabbit that : the doctor could : ask for five dollar/s to get a balloon.,and then the rabbit told the rabbit that the doctor could ask for five dollars to get a balloon,0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and : the rabbit said yes you could have five dollar/s for the balloon.,and the rabbit said yes you could have five dollars for the balloon,0 0 0 0 0 0 0 0 0 1 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and the rabbit was happy to give each of them one.,and the rabbit was happy to give each of them one,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,so they both got one.,so they both got one,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and they were really happy.,and they were really happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,they went swim/ing.,they went swimming,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,they drop/ed the ball in the pool!,they dropped the ball in the pool,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,he swam to get it.,he swam to get it,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,then she got the ball[-:].,then she got the ball,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,then she was happy.,then she was happy,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,they went swim/ing.,they went swimming,0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,she runned|run[EW:ran].,she runned,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,she slip/ed.,she slipped,0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,she got a[EW:an] owie.,she got a owie,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,then she (got a bit) got help.,then she got help,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,she got a bandaid.,she got a bandaid,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,she sat on the bench.,she sat on the bench,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,then he had to talk : about the sign no run/ing.,then he had to talk about the sign no running,0 0 0 0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,they went swim/ing with a[EW:an] airplane.,they went swimming with a airplane,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,then they flew it.,then they flew it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,then she[!] want/ed to try the airplane.,then she wanted to try the airplane,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,then she threw it in the water.,then she threw it in the water,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,he got angry.,he got angry,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,then he[!] came.,then he came,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,he said what happen/ed?,he said what happened,0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,he try/ed to get it.,he tried to get it,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,he could not get (ca) (ca) catch it.,he could not get catch it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,he start/ed to cry.,he started to cry,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,(she) she had a net.,she had a net,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,she want/ed to catch it for him.,she wanted to catch it for him,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,she got[!] it.,she got it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,thank you.,thank you,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,she is my hero!,she is my hero,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,thank you.,thank you,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,they build a sandcastle.,they build a sandcastle,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,(they made a) and they got sand in the sand bucket.,and they got sand in the sand bucket,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,they poured it on the sandcastle.,they poured it on the sandcastle,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,it : broke.,it broke,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,he cry/ed.,he cried,0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,they went for a picnic.,they went for a picnic,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,they ate and ate.,they ate and ate,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,he got (filled) sick.,he got sick,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,then he got sicker.,then he got sicker,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,he went to the doctor.,he went to the doctor,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,he told[-:] what was a[EW:the] matter to him [EU].,he told what was a matter to him,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,(he) : (he) she look/ed at him.,she looked at him,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,then he was kind of[:_kinda] feel/ing better.,then he was kind of feeling better,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,they went for a walk with their wedding and balloon[!].,they went for a walk with their wedding and balloon,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,he want/ed to touch the balloon.,he wanted to touch the balloon,0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,he pull/ed[-:] the balloon.,he pulled the balloon,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,the balloon went in the air.,the balloon went in the air,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,they got sad.,they got sad,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,then he got very angry.,then he got very angry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,then they saw another : balloon.,then they saw another balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,they want/ed to get[!] one.,they wanted to get one,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,he got one for his wedding!,he got one for his wedding,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,then : he[-:] said where is your money?,then he said where is your money,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,but he had no[-:] money.,but he had no money,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,they got sad : together[!].,they got sad together,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,then they went to their mommy doctor : to ask for a balloon.,then they went to their mommy doctor to ask for a balloon,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,she gave them (mon) money.,she gave them money,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,and : then she got a balloon for both[!].,and then she got a balloon for both,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,then they play/ed.,then they played,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,one[-:][!] day[-:] (uh) a girl elephant name/ed[-:] : (uh) Sally was bounce/ing (uh) : a ball[-:] near a swimming pool.,one day a girl elephant named Sally was bouncing a ball near a swimming pool,0 0 0 0 0 4 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(uh the) I was not done on that second page [+_bch].,I was not done on that second page,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,you were not done okay.,you were not done okay,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and then (be) a zebra came.,and then a zebra came,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and : he was so surprise/ed[!].,and he was so surprised,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(he) he like/ed : the ball.,he liked the ball,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and he want/ed to play with it.,and he wanted to play with it,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(uh) (and it) and when he was play/ing with it : it actually got stuck in the swimming pool.,and when he was playing with it it actually got stuck in the swimming pool,0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and the elephant said oh[-:][!] no[-:][!] said Sally.,and the elephant said oh no said Sally,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,do not worry I can probably : try to get it said : (ja) Joan.,do not worry I can probably try to get it said Joan,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,what is his name ?,what is his name,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(j) April [+_bch].,April,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,oh okay.,oh okay,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(he swam and swam) April swam and swam.,April swam and swam,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,he swam hard as he can [EU].,he swam hard as he can,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and he : just[-:] reach/ed it.,and he just reached it,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(when) when he[?] came back and gave her the ball Sally[!] : was so surprise/ed.,when he came back and gave her the ball Sally was so surprised,0 0 0 0 0 0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and : they became friend/s.,and they became friends,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,Sally said thank you for get/ing my ball !,Sally said thank you for getting my ball,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and then : she gave him a kiss.,and then she gave him a kiss,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,one[-:][!] day[-:] : Sally and April : were come/ing to swim at the same swimming pool : before (w uh) the ball problem.,one day Sally and April were coming to swim at the same swimming pool before the ball problem,0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(there) (they s) they want/ed to swim!,they wanted to swim,0 4 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and sally was so surprise/ed.,and sally was so surprised,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(he) : he look/ed : at the water.,he looked at the water,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and he said look a diving board!,and he said look a diving board,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,we can use that!,we can use that,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,but a sign said : no (run/ing) : run/ing on : the : rink.,but a sign said no running on the rink,0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,he slip/ed!,he slipped,0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and she did the split/s when he came down.,and she did the splits when he came down,0 0 0 0 1 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(and he) : and April came to help.,and April came to help,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,Sally cry/ed[-:] because she : hurt her leg.,Sally cried because she hurt her leg,0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(and) : and April said are you okay?,and April said are you okay,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,are you okay!,are you okay,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,then the lifeguard came : and said Sally : are you hurt?,then the lifeguard came and said Sally are you hurt,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and she said yes[-:][!] I am!,and she said yes I am,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(so she) : so the lifeguard went back : (and) to get some bandaid/s.,so the lifeguard went back to get some bandaids,0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,when : he came back he put the bandaid on.,when he came back he put the bandaid on,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and he said : (and : uh) there we go.,and he said there we go,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,oh : see that sign over there?,oh see that sign over there,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,no run/ing on a rack[?].,no running on a rack,0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,make sure you do not do that again.,make sure you do not do that again,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(well I try again) (just make sure to) then the lifeguard said : want to[:_wanna] try again?,then the lifeguard said want to try again,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(you could) (you could) (do not put) (no run/ing) no run/ing though.,no running though,0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,or you will be kick/ed out.,or you will be kicked out,0 0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(uh : but I am) : you[-:] should have seen that sign[-:][!] before.,you should have seen that sign before,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(uh) : and Sally said I am sorry.,and Sally said I am sorry,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,one[-:][!] day[-:] when April came : April the zebra : actually the[-:] : (uh) zebra actually [EU].,one day when April came April the zebra actually the zebra actually,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and : (he) (she) he had a[EW:an] airplane.,and he had a airplane,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,Sally was surprise/ed.,Sally was surprised,0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,this toy[!] : is call/ed the airplane (said) : said April.,this toy is called the airplane said April,0 0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(it) (uh) (I) April[-:] : the giraffe : was (play) : show/ing her (how) what it do/3s !,April the giraffe was showing her what it does,0 0 0 0 6 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(it was like) and Sally was like [~_makes_sound_'woo_-:'] can I play with it ?,and Sally was like can I play with it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and : she grab|grab[EW:grabbed] [!] it away.,and she grab it away,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(and) : and she began to play with it.,and she began to play with it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and he said hey[-:] that is mine !,and he said hey that is mine,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,he was like you got to[:_gotta] get me.,he was like you got to get me,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(you[!]) : and Sally drop/ed it.,and Sally dropped it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(and he said) and he felt[?] so sad.,and he felt so sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,he said : you[-:][!] drop/ed it in the swimming pool.,he said you dropped it in the swimming pool,0 0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,oops : said Sally.,oops said Sally,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,[~_makes_sound_'rrr'] April was like so mad : (when) : at Sally.,April was like so mad at Sally,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,he say/3s I am really sorry.,he says I am really sorry,0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,I I I am !,I I I am,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,lifeguard : (said) : said (I) what is the matter : with you ?,lifeguard said what is the matter with you,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(a) April said : (sa) Sally drop/ed my airplane in the swimming pool !,April said Sally dropped my airplane in the swimming pool,0 0 0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,I was really sorry said Sally !,I was really sorry said Sally,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,I was !,I was,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(well) : well April said he did on purpose though.,well April said he did on purpose though,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,all right we *will try to get it the lifeguard said.,all right we try to get it the lifeguard said,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,when he try/ed[-:] : he could not get it.,when he tried he could not get it,0 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and April said oh rat/s I : cannot get my toy again.,and April said oh rats I cannot get my toy again,0 0 0 0 1 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and[-:] Sally said : (uh uh) I will look so sorry.,and Sally said I will look so sorry,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(the zebra) : the zebra was so[-:] sad.,the zebra was so sad,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,he cry/ed.,he cried,0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and : Sally said I am really really really really really really sorry.,and Sally said I am really really really really really really sorry,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and[-:] I could probably give you a kiss.,and I could probably give you a kiss,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,no[-:] you did that really on purpose now.,no you did that really on purpose now,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,lifeguard (di) could not do anything.,lifeguard could not do anything,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,: then[-:] : the lady who work/ed for : the build/ing : came and : had a net.,then the lady who wrought for the building came and had a net,0 0 0 0 4 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,yay[-:][!] hip hip hooray (all) they all : said.,yay hip hip hooray they all said,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and : he try/ed it.,and he tried it,0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,she got[!] it.,she got it,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and then he scoop/ed it.,and then he scooped it,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(and they all) (and they all[-:]) and the (airplane barely) toy airplane (land) came out of the swimming pool.,and the toy airplane came out of the swimming pool,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and April had it back.,and April had it back,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,he was really (s) happy now.,he was really happy now,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(he s) : when the lady : who work/ed for the building name/ed : (uh) (sa uh) : (sal) (Sally) actually Sally/z (mo) mother : who work/ed for the building : (ap) (he) she gave : April (her) her airplane.,when the lady who wrought for the building named actually Sally's mother who wrought for the building she gave April her airplane,0 0 0 0 4 0 0 0 4 0 2 0 0 4 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and April was so[-:] happy.,and April was so happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and Sally said that is okay.,and Sally said that is okay,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,I do not want to play with it no[EW:any] more !,I do not want to play with it no more,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,giraffe (uh lo) (hug/ed it) love/ed it the rest : of the day.,giraffe loved it the rest of the day,0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,one[!] day (a rabbit) : a dog (was take)[?] was build/ing a sandcastle.,one day a dog was building a sandcastle,0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(name/ed) and he was name/ed : (ra) (uh ra) Billy.,and he was named Billy,0 0 0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and a rabbit came.,and a rabbit came,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(he) his : name was Easter.,his name was Easter,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,Easter want/ed to : play in the sandbox too.,Easter wanted to play in the sandbox too,0 4 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(uh) what was : the dog/z name [+_bch]?,what was the dog's name,0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,your story you make it up.,your story you make it up,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,john [+_bch].,john,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and : he[-:] let him play in[-:] the sandbox.,and he let him play in the sandbox,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,Easter (wan) (was) was : put/ing sand in the bucket : (and) and[-:] (sh) when : John : (was : make/ing) was still build/ing a sandcastle.,Easter was putting sand in the bucket and when John was still building a sandcastle,0 0 6 0 0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and Easter dump/ed : the : bucket of sand on top (of) : of John/z sandcastle.,and Easter dumped the bucket of sand on top of John's sandcastle,0 0 4 0 0 0 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,she was very angry[-:] at him.,she was very angry at him,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,he was very sad[-:] actually.,he was very sad actually,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and she cry/ed my sandcastle my sandcastle is all gone!,and she cried my sandcastle my sandcastle is all gone,0 0 4 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and he just said sorry[-:].,and he just said sorry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,one[!] day : easter rabbit was (come/ing) walk/ing down the road when (he seed[EW:saw] johnny) (he see) he saw John.,one day easter rabbit was walking down the road when he saw John,0 0 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(hey) hi John!,hi John,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,hi Easter!,hi Easter,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,want to have a picnic today?,want to have a picnic today,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,all right!,all right,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(pic) Easter had a lot of stuff.,Easter had a lot of stuff,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,he had : carrot/s : cake chocolate : (um) jam : cookie/s : and chip/s.,he had carrots cake chocolate jam cookies and chips,0 0 1 0 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,oh sure that is a lot of stuff said john.,oh sure that is a lot of stuff said john,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,I have a sandwich and some juice.,I have a sandwich and some juice,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,that is all.,that is all,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,well (you) you should eat a lot : said easter.,well you should eat a lot said easter,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,so : I will : eat all this stuff in one minute (sa) he said.,so I will eat all this stuff in one minute he said,0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(I) : and he eat|eat[EW:ate] it.,and he eat it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and he got a tummyache.,and he got a tummyache,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,I got a big[?] tummyache [~_sneezes].,I got a big tummyache,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,I feel sick.,I feel sick,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,I feel real[!][-:] sick.,I feel real sick,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,I think I *am go/ing to [~_gonna] eat for a week.,I think I going to eat for a week,0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and then a doctor was walk/ing (uh) by the way : along : [~__sneezes] the path [~_sneezes].,and then a doctor was walking by the way along the path,0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and (he) : (uh) : John went up to the doctor.,and John went up to the doctor,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,doctor doctor : can you help a friend (of mi) of mine [~__sneezes]!,doctor doctor can you help a friend of mine,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,sure said the doctor.,sure said the doctor,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(so he went) : so he went.,so he went,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,it is (o) over here over here : (said the) (said) said John.,it is over here over here said John,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,someone gots[EW:has] a tummyache : said the doctor.,someone gots a tummyache said the doctor,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,let us see.,let us see,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(he sh) I should take his temperature.,I should take his temperature,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(sh) he is really hot.,he is really hot,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(ne) (then the doctor) I think (I need/3s) he need/3s an appointment.,I think he needs an appointment,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,come on!,come on,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,oh come on.,oh come on,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(you) (we got to have a br) (you uh got have) (you got) (you can have a) you have brain surgery too.,you have brain surgery too,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,make sure you do not eat next time okay?,make sure you do not eat next time okay,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,or you will get sick.,or you will get sick,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,okay!,okay,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,hello[!] Easter said to John.,hello Easter said to John,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,I got a wagon : with a balloon[!][-:] on it!,I got a wagon with a balloon on it,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,hey can I have the balloon!,hey can I have the balloon,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,sure you can.,sure you can,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(I cut[?] off) : (l) [~_no] (s) look at that[-:].,look at that,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,it is got a balloon[-:] !,it is got a balloon,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,that is the balloon!,that is the balloon,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,oh!,oh,0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,I never seen|see[EW:saw] one of these in age/s.,I never seen one of these in ages,0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,can I have it?,can I have it,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,oh sure you can.,oh sure you can,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(it is really) so he try/ed to tie it off.,so he tried to tie it off,0 0 4 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and he did.,and he did,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,but it fell away[-:] !,but it fell away,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,it float/ed away.,it floated away,0 4 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and : they both could not get it.,and they both could not get it,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,now what *am I go/ing to [~_gonna] do.,now what I going to do,0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,it float|float[EW:floated] away.,it float away,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and : John was so[!] angry.,and John was so angry,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,he want/ed his balloon back.,he wanted his balloon back,0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,do not worry.,do not worry,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,do not worry.,do not worry,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,I will try to get it.,I will try to get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,look : over there!,look over there,0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,there is a (b) balloon man : (said) : said John.,there is a balloon man said John,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,I *am go/ing to [~_gonna] get (one o) (t) probably two over there.,I going to get probably two over there,0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,can I have one of those balloon/s please?,can I have one of those balloons please,0 0 0 0 0 0 1 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,oh sure you can.,oh sure you can,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(but you got) : (k) and he said (k uh) but you got[EW:have] to pay (fi) : five cent/s for the balloon/s.,and he said but you got to pay five cents for the balloons,0 0 0 0 0 0 0 0 0 1 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(uh) and he is check/ing his pocket/s.,and he is checking his pockets,0 0 0 6 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,he gots[EW:has] no money left.,he gots no money left,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,oh man.,oh man,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(and what are w) then : (april : and) [~_actually] John and Easter : did not know what to do.,then John and Easter did not know what to do,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,so there was a doctor stand/ing by.,so there was a doctor standing by,0 0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and (uh) he said I will go ask her : for some money.,and he said I will go ask her for some money,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(co) and he went there.,and he went there,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and he said can I have some money please for two of those balloon/s!,and he said can I have some money please for two of those balloons,0 0 0 0 0 0 0 0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and he is like oh sure you can!,and he is like oh sure you can,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and he paid for them : five cent/s.,and he paid for them five cents,0 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and they said hip hip hooray[-:] : (they all shout/ed) (k) (the) April and Easter shout/ed.,and they said hip hip hooray April and Easter shouted,0 0 0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and they (both had their balloon/s) both had balloon/s.,and they both had balloons,0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(all) [-:] and they play/ed with their balloon/s all[-:] day.,and they played with their balloons all day,0 0 4 0 0 1 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,the end [+_bch].,the end,0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,(Um) there is an elephant and a giraffe play/ing with (a balloon) : [~_or] a ball.,there is an elephant and a giraffe playing with a ball,0 0 0 0 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and then the ball fall/3s into : the water.,and then the ball falls into the water,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,so the giraffe try/3s to : swim out and get it.,so the giraffe tries to swim out and get it,0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and the elephant is worry/ed.,and the elephant is worried,0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,then the giraffe give/3s the elephant back her ball.,then the giraffe gives the elephant back her ball,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and the elephant is happy.,and the elephant is happy,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,(ah) then (a) the giraffe get/3s out of the water.,then the giraffe gets out of the water,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and the elephant : will not let him have the ball.,and the elephant will not let him have the ball,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,(Um) they are stand/ing by the pool.,they are standing by the pool,0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and it look/3s like they are ready to swim.,and it looks like they are ready to swim,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and (a) the elephant look/3s really excite/ed to go in the water.,and the elephant looks really excited to go in the water,0 0 0 3 0 4 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,so she run/3s across the edge of the pool.,so she runs across the edge of the pool,0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and then she slip/3s and fall/3s.,and then she slips and falls,0 0 0 3 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and the giraffe is really scare/ed.,and the giraffe is really scared,0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,then the lifeguard come/3s to help the elephant and the giraffe.,then the lifeguard comes to help the elephant and the giraffe,0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and then he put/3s a bandaid on the elephant/z knee.,and then he puts a bandaid on the elephant's knee,0 0 0 3 0 0 0 0 2 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,(um) the elephant has to sit down on a bench.,the elephant has to sit down on a bench,0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and it look/3s like she is being told that she should not run on (the) the side of the pool.,and it looks like she is being told that she should not run on the side of the pool,0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and then she feel/3s really ashame/ed of herself for run/ing.,and then she feels really ashameed of herself for running,0 0 0 3 0 4 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,(ah) the elephant and the giraffe : are stand/ing by the pool again.,the elephant and the giraffe are standing by the pool again,0 0 0 0 0 0 6 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and the giraffe has an airplane.,and the giraffe has an airplane,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and he is play/ing around with it.,and he is playing around with it,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and the elephant look/3s really surprise/ed.,and the elephant looks really surprised,0 0 0 3 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,so the elephant grab/3s it away from the giraffe.,so the elephant grabs it away from the giraffe,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and she start/3s to play with it.,and she starts to play with it,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and then it fall/3s in the water.,and then it falls in the water,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and the elephant : look/3s like she is kind of scare/ed : because she do/3s not want the giraffe to get angry at her.,and the elephant looks like she is kind of scared because she does not want the giraffe to get angry at her,0 0 0 3 0 0 0 0 0 4 0 0 3 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and then the giraffe start/3s to get really mad.,and then the giraffe starts to get really mad,0 0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and the elephant is start/ing to get (um) : a little scare/ed.,and the elephant is starting to get a little scared,0 0 0 0 6 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and then the lifeguard come/3s.,and then the lifeguard comes,0 0 0 0 3 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and the elephant and the giraffe : (uh looks) look like surprise/ed.,and the elephant and the giraffe look like surprised,0 0 0 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and then the elephant is explain/ing to the lifeguard what happen/ed : with the plane.,and then the elephant is explaining to the lifeguard what happened with the plane,0 0 0 0 0 6 0 0 0 0 4 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,so the lifeguard try/3s to grab the plane : away.,so the lifeguard tries to grab the plane away,0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and he can not get it.,and he can not get it,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,so the giraffe start/3s to cry.,so the giraffe starts to cry,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and the : elephant (um) : look/3s really : ashame/ed.,and the elephant looks really ashameed,0 0 0 3 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and she is[EW:has] got a little net.,and she is got a little net,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and (then she scoop/3s out the) then she scoop/3s out the plane with her net.,and then she scoops out the plane with her net,0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and it look/3s like : they are a little relieve/ed.,and it looks like they are a little relieved,0 0 3 0 0 0 0 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and then she give/3s the plane back to : the giraffe.,and then she gives the plane back to the giraffe,0 0 0 3 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and then the giraffe is really happy again.,and then the giraffe is really happy again,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and so is the elephant.,and so is the elephant,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,there is[EW:are]: two rabbit/s.,there is two rabbits,0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and they are play/ing in the sandbox.,and they are playing in the sandbox,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and they made a sandcastle.,and they made a sandcastle,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,(oh) [~_I_mean] a rabbit and a dog.,a rabbit and a dog,0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and (uh) the dog is : finish/ing make/ing the sandcastle.,and the dog is finishing making the sandcastle,0 0 0 0 6 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and the rabbit is : play/ing with sand in a bucket.,and the rabbit is playing with sand in a bucket,0 0 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,then he dump/3s the sand on top of (the castle) the sandcastle.,then he dumps the sand on top of the sandcastle,0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and (a) the rabbit it look/3s like oh no [EU].,and the rabbit it looks like oh no,0 0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and the dog is sit/ing there.,and the dog is sitting there,0 0 0 0 6 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and he look/3s really surprise/ed.,and he looks really surprised,0 0 3 0 4 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,then the dog start/3s to cry.,then the dog starts to cry,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and the rabbit : look/3s like he is try/ing to say that (oh) I am really sorry.,and the rabbit looks like he is trying to say that I am really sorry,0 0 0 3 0 0 0 6 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,I did not mean to do that.,I did not mean to do that,0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,the : dog and the rabbit (are) it look/3s like they are go/ing to a picnic.,the dog and the rabbit it looks like they are going to a picnic,0 0 0 0 0 0 3 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and they sit down.,and they sit down,0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and : the dog is eat/ing his food.,and the dog is eating his food,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and the rabbit has all this : food out.,and the rabbit has all this food out,0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and he is just : eat/ing it all.,and he is just eating it all,0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,(and the dog just) and the dog continue/3s eat/ing.,and the dog continues eating,0 0 0 3 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and then the rabbit is really full : like he is go/ing to : burst.,and then the rabbit is really full like he is going to burst,0 0 0 0 0 0 0 0 0 0 6 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,then the rabbit start/3s to get really sick.,then the rabbit starts to get really sick,0 0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and the dog is just still eat/ing.,and the dog is just still eating,0 0 0 0 0 0 6 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,then (um) the dog rush/3s for help.,then the dog rushes for help,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and she find/3s another rabbit.,and she finds another rabbit,0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and then she pull/3s the other rabbit towards (the ah) (the) rabbit that ate too much.,and then she pulls the other rabbit towards rabbit that ate too much,0 0 0 3 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and then she (help/3s) help/3s (the) the rabbit that ate too much because she is a doctor.,and then she helps the rabbit that ate too much because she is a doctor,0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and then she take/3s the : rabbit home.,and then she takes the rabbit home,0 0 0 3 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,[~_like] : she just take/3s him.,she just takes him,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,the rabbit is walk/ing down the road.,the rabbit is walking down the road,0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and the dog has : (a cart and) (a w) a wagon with a balloon on it.,and the dog has a wagon with a balloon on it,0 0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and then the rabbit is : point/ing to the balloon like he really want/3s it.,and then the rabbit is pointing to the balloon like he really wants it,0 0 0 0 0 6 0 0 0 0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and then he try/3s to untie it off of the wagon.,and then he tries to untie it off of the wagon,0 0 0 3 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and then the dog look/3s like she is try/ing to say no.,and then the dog looks like she is trying to say no,0 0 0 0 3 0 0 0 6 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,no do not take it off.,no do not take it off,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,then the rabbit take/3s it off.,then the rabbit takes it off,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and it fly/3s away.,and it flies away,0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and the dog and the rabbit try to grab it.,and the dog and the rabbit try to grab it,0 0 0 0 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and then the dog get/3s really angry at the rabbit.,and then the dog gets really angry at the rabbit,0 0 0 0 3 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and (um) the dog is still mad.,and the dog is still mad,0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and the rabbit see/3s : someone who is sell/ing balloon/s.,and the rabbit sees someone who is selling balloons,0 0 0 3 0 0 0 6 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,so he ask/3s the : person who is sell/ing balloon/s if he could have a balloon.,so he asks the person who is selling balloons if he could have a balloon,0 0 3 0 0 0 0 6 1 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,but he do/3s not have any money.,but he does not have any money,0 0 3 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and : the guy say/3s that it is five cent/s for balloon/s.,and the guy says that it is five cents for balloons,0 0 0 3 0 0 0 0 1 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,so the dog come/3s up.,so the dog comes up,0 0 0 3 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and he see/3s the rabbit sit/ing there by the balloon : seller.,and he sees the rabbit sitting there by the balloon seller,0 0 3 0 0 6 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and the doctor rabbit is stand/ing in the middle of the road.,and the doctor rabbit is standing in the middle of the road,0 0 0 0 0 6 0 0 0 0 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and the rabbit come/3s to see.,and the rabbit comes to see,0 0 0 3 0 0 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,then he tell/3s the doctor that (um) there is[EW:are] balloon/s.,then he tells the doctor that there is balloons,0 0 3 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and she give/3s the balloon man money for balloon/s.,and she gives the balloon man money for balloons,0 0 3 0 0 0 0 0 1 +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,then the dog and the rabbit are really happy because they both have balloon/s.,then the dog and the rabbit are really happy because they both have balloons,0 0 0 0 0 0 0 0 0 0 0 0 0 1 diff --git a/data/enni_salt_for_segmentation/test.csv b/data/enni_salt_for_segmentation/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..95ae3cd1114def813f1886a3724660448d98cf45 --- /dev/null +++ b/data/enni_salt_for_segmentation/test.csv @@ -0,0 +1,6236 @@ +file_name,slt_transcription,cleaned_transcription +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Once a horse met *an elephant [EU].,Once a horse met elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And then they saw a ball in a pool.,And then they saw a ball in a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And then the horse try/ed to swim and get the ball.,And then the horse tried to swim and get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And (the) then the elephant gave him the ball.,And the then the elephant gave him the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And then the horse was wet.,And then the horse was wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And the elephant was hold/ing the ball.,And the elephant was holding the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,The end [+_bch].,The end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,They might be the same [+_bch].,They might be the same +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Oh well you start it off any way you want.,Oh well you start it off any way you want +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Okay [+_bch].,Okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Once (a horse : and) (this) this was a horse (and saw) (saw that) that I just talk/ed about.,Once a horse and this this was a horse and saw saw that that I just talked about +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,but the ball was not in[!] there.,but the ball was not in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Okay.,Okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And then the elephant want/ed to go in.,And then the elephant wanted to go in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,(I mean not) : and then (he :) his feet went like this [~__points_to_legs_lifting_up].,I mean not and then he his feet went like this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Then he hurt : his knee cap.,Then he hurt his knee cap +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,and then the horse help/ed him.,and then the horse helped him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Then there was another : elephant.,Then there was another elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And he was a lifeguard.,And he was a lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And then I do not know what they did.,And then I do not know what they did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,But they are do/ing something :.,But they are doing something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,What do you think they are do/ing?,What do you think they are doing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Well how you look at the picture cause I do not know [+_bch].,Well how you look at the picture cause I do not know +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,oh it does not matter.,oh it does not matter +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,What do you think is happen/ing ?,What do you think is happening +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,I : think they are battle/ing [~_?].,I think they are battling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,okay.,okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And then they sat on the bench.,And then they sat on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And then : the lifeguard was mad.,And then the lifeguard was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Okay.,Okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And : [+/]^,And +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Are you point/ing at something ?,Are you pointing at something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,I am I am just I am just xxx [+_bch].,I am I am just I am just x +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,"Okay, are you all done ?",Okay are you all done +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Yes [+_bch].,Yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Okay.,Okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,The end [+_bch].,The end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Once : that horse : and elephant was[EW:were] happy near the swimming pool.,Once that horse and elephant was happy near the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,(Oh) and then the horse had an airplane to play with : (a) which : had (ss : ah) something come/ing down : the bottom.,Oh and then the horse had an airplane to play with a which had ss ah something coming down the bottom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Okay.,Okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And the elephant went like this [~_gestures_with_arm].,And the elephant went like this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Then he[!] try/ed it.,Then he tried it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And the horse went like this [~_gestures_with_arm_again].,And the horse went like this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Then they put it : in the water.,Then they put it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And then the elephant went like this [~_gestures_with_arm_again].,And then the elephant went like this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And then the horse was mad.,And then the horse was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And then the lifeguard went like this [~_pointing_angry_finger].,And then the lifeguard went like this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Then the elephant talk/ed to him a little bit.,Then the elephant talked to him a little bit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And then : the lifeguard try/ed to : get it.,And then the lifeguard tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,But he could not.,But he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And the horse cry/ed.,And the horse cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,(an :) and then a[EW:an] elephant with a net came.,an and then a elephant with a net came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And she caught[!] it.,And she caught it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And then she gave it back to the horse.,And then she gave it back to the horse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And : then the horse went like this [~_displays_action_with_arms_and__shoulders].,And then the horse went like this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,What do/3s that mean?,What does that mean +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,They love it [+_bch].,They love it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,"oh, good.",oh good +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,and the end [+_bch].,and the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Once : two rabbit/s : made a sandcastle.,Once two rabbits made a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And it was a great one.,And it was a great one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And then : one : did this with a xx .,And then one did this with a +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,(and one took some s) and the other one took some sand from : (a) a : pail : because they were down at the beach.,and one took some s and the other one took some sand from a a pail because they were down at the beach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,and then : he dump/ed it on the castle.,and then he dumped it on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,and then : (it tur) part of it : stay/ed the way it was.,and then it tur part of it stayed the way it was +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,but the rest turn/ed : into : just a lump.,but the rest turned into just a lump +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,and then they try/ed to do it.,and then they tried to do it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,but it was not very good that : time.,but it was not very good that time +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,The end [+_bch].,The end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,We saw two : rabbit/s had basket/s and were in : part of the forest.,We saw two rabbits had baskets and were in part of the forest +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Or we can call it the wood/s.,Or we can call it the woods +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Yeah we can.,Yeah we can +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Then they had a picnic.,Then they had a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,then one of them belly got this big [~_pantomimes_his_stomach__sticking_out] [EU].,then one of them belly got this big +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,How big?,How big +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,About this big [~_repeats_gesture] [+_bch].,About this big +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Wow.,Wow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And then in the picture there is a twirl around on his head.,And then in the picture there is a twirl around on his head +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,and then : a bigger : bunny came up.,and then a bigger bunny came up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,and they run to that bunny.,and they run to that bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,and then he falled|fall[EW:fell] asleep [~_laughs].,and then he falled asleep +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And then : he did this [~_gestures_with_arms].,And then he did this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Why did he do that?,Why did he do that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,I do not know [+_bch].,I do not know +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Okay.,Okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And then : he was happy.,And then he was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,He was happy?,He was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Yes [+_bch].,Yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Okay.,Okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,The end [+_bch].,The end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Once : that little bunny was pull/ing a wagon.,Once that little bunny was pulling a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,and that other : fat bunny came up.,and that other fat bunny came up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,and then he : like/ed the balloon [EU].,and then he liked the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,and then he try/ed to get off.,and then he tried to get off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,and then : he got it off.,and then he got it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,but they lost the grip.,but they lost the grip +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And it was helium.,And it was helium +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And then another man came with : a bunch of balloon/s.,And then another man came with a bunch of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,(but x) But then[!] : (they) he went : to them.,but x But then they he went to them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,and : he : said that (it) the balloon/s were five : cent/s.,and he said that it the balloons were five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,and he could not find[!] five cent/s.,and he could not find five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,and then they were sad[!].,and then they were sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,then they : went back to (that) out by (the) we found that other story [EU].,then they went back to that out by the we found that other story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,and he said : I want one of those balloon/s.,and he said I want one of those balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,he gave him five : cent/s.,he gave him five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And then they gave : him a balloon.,And then they gave him a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And they gave : him to them [EU].,And they gave him to them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,To who?,To who +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,To them [+_bch].,To them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,Oh.,Oh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,And then : they both[!] have one[!].,And then they both have one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/405.slt,The end [+_bch].,The end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,(The el) (the um) the little elephant is play/ing with her bouncy ball.,The el the um the little elephant is playing with her bouncy ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,(and the gi) and the giraffe come/3s to meet her.,and the gi and the giraffe comes to meet her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,suddenly the ball fall/3s : in : a (f) pool beside them.,suddenly the ball falls in a f pool beside them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,(the) the giraffe go/3s and swim/3s for it.,the the giraffe goes and swims for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,and the giraffe is so kind and bring/3s back the ball.,and the giraffe is so kind and brings back the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,the elephant is so[!] happy.,the elephant is so happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,The elephant and the giraffe meet at the pool and look at the[-:] diving board.,The elephant and the giraffe meet at the pool and look at the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,(the) the elephant go/3s to run for it.,the the elephant goes to run for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,but there is a sign above her head that says no run/ing.,but there is a sign above her head that says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,she slip/3s and fall/3s.,she slips and falls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,(she) she scrape/3s her knee (and) and can not swim.,she she scrapes her knee and and can not swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,a lifeguard come/3s to see what happen/ed to her knee.,a lifeguard comes to see what happened to her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,(the) and he put a bandaid on it.,the and he put a bandaid on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,he set/3s her down on a bench so (it will) (it will) it will heal.,he sets her down on a bench so it will it will it will heal +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,and the lifeguard point/3s to the sign that says no run/ing.,and the lifeguard points to the sign that says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,(The ele) The elephant and giraffe are swim/ing together.,The ele The elephant and giraffe are swimming together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,the giraffe find/3s a plane and start/3s to show it to the : elephant.,the giraffe finds a plane and starts to show it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,(the giraffe) (um) the elephant (grab/3s from) it from the giraffe and : swim/3s away.,the giraffe um the elephant grabs from it from the giraffe and swims away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,suddenly she drop/ed it.,suddenly she dropped it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,: the giraffe get/3s very mad : and can not hold in his anger.,the giraffe gets very mad and can not hold in his anger +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,the (lifeg) lifeguard come/3s and see/3s what has happen/ed.,the lifeg lifeguard comes and sees what has happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,the : elephant start/3s to complain (that) that it was not her fault.,the elephant starts to complain that that it was not her fault +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,and the : lifeguard try/3s to get the plane.,and the lifeguard tries to get the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,but no one can reach it.,but no one can reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,so a lady with : a net come/3s and : pull/3s it out.,so a lady with a net comes and pulls it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,she is very kind think/3s everyone.,she is very kind thinks everyone +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,and the giraffe get/3s his plane back.,and the giraffe gets his plane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,everyone is very happy.,everyone is very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,(um) a bunny : and a dog (were mak) were make/ing sandcastle/s in the (sand uh) : sand bin.,um a bunny and a dog were mak were making sandcastles in the sand uh sand bin +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,(um : the bu) the bunny (um : he) he got a bucket and start/ed to build a better castle.,um the bu the bunny um he he got a bucket and started to build a better castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,suddenly he dump/ed all the sand (on the uh) (the bi) the other castle.,suddenly he dumped all the sand on the uh the bi the other castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,and everyone was disappoint/ed.,and everyone was disappointed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,(the o) the dog (was) was so sad she start/ed to cry.,the o the dog was was so sad she started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,the dog (mee) meet/3s the bunny (um) for a picnic.,the dog mee meets the bunny um for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,(they) they have a picnic together except the bunny is kind of piggish.,they they have a picnic together except the bunny is kind of piggish +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,he eat/3s all the food : really fast while the other one eat/3s very slow and : politely.,he eats all the food really fast while the other one eats very slow and politely +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,the rabbit feel/3s very sick after his big meal.,the rabbit feels very sick after his big meal +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,the doctor has to come : and : help|help[EW:helps] (the) the (s) sick rabbit.,the doctor has to come and help the the s sick rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,the dog pull/3s (her) her over (to the um) to see if he is conscious.,the dog pulls her her over to the um to see if he is conscious +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,the doctor say/3s (she ha) he has a fever.,the doctor says she ha he has a fever +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,and he ate too much.,and he ate too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,soon he feel/3s better again.,soon he feels better again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,(the) (the) the dog (is) has a balloon on her wagon.,the the the dog is has a balloon on her wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,and the bunny come/3s to meet her.,and the bunny comes to meet her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,the bunny notice/3s the nice (um) shiny balloon.,the bunny notices the nice um shiny balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,(he) the bunny try/3s to untie the balloon.,he the bunny tries to untie the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,but (the dog : um) the dog get/3s nervous.,but the dog um the dog gets nervous +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,and it float/3s away.,and it floats away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,the dog get/3s very very mad at the bunny.,the dog gets very very mad at the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,but : when they turn around they see another man with : twenty more balloon/s.,but when they turn around they see another man with twenty more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,the rabbit buy/3s one : (to make) [~_yeah].,the rabbit buys one to make +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,(um) : but he do/3s not have enough money for one balloon.,um but he does not have enough money for one balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,the man tell/3s them (they could ha) they could get a free one.,the man tells them they could ha they could get a free one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,and : the nurse say/3s no actually I will[!] buy you one.,and the nurse says no actually I will buy you one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,and she go/3s and buy/3s one.,and she goes and buys one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,this make/3s both the bunny and the dog very happy.,this makes both the bunny and the dog very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/907.slt,now they both have one balloon.,now they both have one balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,They *are go/ing at the swimming pool [EU].,They going at the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,they *are put/ing (it) the ball in the swimming pool [EU].,they putting it the ball in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,and he is try/ing to get it.,and he is trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,he got it.,he got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,she is happy.,she is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,(They were dr) they (dry themselves) dry themselves.,They were dr they dry themselves dry themselves +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,and the girl is go/ing into the swimming pool.,and the girl is going into the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,she is dance/ing.,she is dancing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,she is : cry/ing.,she is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,: she gots|get[EW:got] a help from her friend [EU].,she gots a help from her friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,put a bandage on it [EU].,put a bandage on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,now (sh) : she can go on the[-:] swimming pool [EU].,now sh she can go on the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,she is sit/ing.,she is sitting +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,She is talk/ing.,She is talking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,the boy is play/ing with his airplane.,the boy is playing with his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,she xx grab|grab[EW:grabs] it away from him.,she grab it away from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,the : airplane is in the[-:] swimming pool.,the airplane is in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,and the boy got angry.,and the boy got angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,and (the k) the man come/3s by them.,and the k the man comes by them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,what did you say ?,what did you say +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,the man come/3s side them [+_bch].,the man comes side them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,and the girl is talk/ing.,and the girl is talking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,the man was try/ing to : get it.,the man was trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,the man can not get it.,the man can not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,*the woman : try/ed to get it [EU].,woman tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,she gots|get[EW:got] it.,she gots it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,the boy is happy now.,the boy is happy now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,the boy and the girl is[EW:are] happy now.,the boy and the girl is happy now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,The boy is talk/ing to the[-:] : dog.,The boy is talking to the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,and they are make/ing a castle.,and they are making a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,and the boy *is put/ing the sandcastle [EU].,and the boy putting the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,and the girl is so happy[~!_laughs].,and the girl is so happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,not the boy.,not the boy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,he is sorry for it.,he is sorry for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,he is what?,he is what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,sorry [+_bch].,sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,and the end [+_bch].,and the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,They are look/ing for easter egg/s.,They are looking for easter eggs +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,and they are eat/ing.,and they are eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,he eat|eat[EW:ate] the whole thing.,he eat the whole thing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,he got hiccup/s.,he got hiccups +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,there is his father.,there is his father +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,and[-:] he have|have[Ew:has] to help him.,and he have to help him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,and he gots|get[EW:got] a headache.,and he gots a headache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,he is go/ing.,he is going +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,and the end [+_bch].,and the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,The boy is run/ing.,The boy is running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,and the boy is talk/ing.,and the boy is talking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,and the boy is take/ing off the balloon.,and the boy is taking off the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,the balloon is float/ing away.,the balloon is floating away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,and the girl went angry [EU].,and the girl went angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,and there is lot/s of[:_lotsa] ball [EU].,and there is lots of ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,(sh) the girl is push/ing.,sh the girl is pushing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,the boy gots[EW:has] no money.,the boy gots no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,the man is happy.,the man is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,the dad is here again.,the dad is here again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,and : the man is not give/ing (thm) them balloon[EW:balloons].,and the man is not giving thm them balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,the man give[EW:gave][-:] the[-:] : (rat : balloon) rabbit a (ba) balloon.,the man give the rat balloon rabbit a ba balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,and they can have one.,and they can have one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/613.slt,and the end [+_bch].,and the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,[~_I_like_looking] she is play/ing with a ball.,she is playing with a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,then it drop/3s in the water.,then it drops in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,the cow (s) want/3s to get it.,the cow s wants to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and then : the : cow : give/3s it back to the elephant.,and then the cow gives it back to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and she like/3s it.,and she likes it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and the end [+_bch].,and the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,(um : something is sink/ing) something is sink/ing.,um something is sinking something is sinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and : the elephant is go/ing to[:_gonna] get it.,and the elephant is going to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and she trip/3s.,and she trips +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and she fall/3s and hurt/3s her knee[-:].,and she falls and hurts her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and the lifeguard come/3s.,and the lifeguard comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and she get/3s a bandaid on it.,and she gets a bandaid on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,[~!_laughs] and (she) she sit/3s on a bench.,and she she sits on a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,the lifeguard tell/3s her not : to do it again.,the lifeguard tells her not to do it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,Elephant is excited to see what the giraffe has.,Elephant is excited to see what the giraffe has +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and then : he[-:] try/3s to throw it up into the air.,and then he tries to throw it up into the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and then : the elephant grab/3s it away.,and then the elephant grabs it away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and then it sink/3s into the water.,and then it sinks into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,then the giraffe get/3s mad at her.,then the giraffe gets mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and the lifeguard get/3s mad (at the gir) at the elephant.,and the lifeguard gets mad at the gir at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and (he explai) he try/3s to explain : what happen/ed.,and he explai he tries to explain what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and the lifeguard : (um) try/3s to get it.,and the lifeguard um tries to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,then : they can not get it.,then they can not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and : then : a woman come/3s up with a net.,and then a woman comes up with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and she get/3s it out.,and she gets it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and she give/3s it back to the giraffe.,and she gives it back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and then he hug/3s it.,and then he hugs it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,(um) : the bunny and : the baby elephant are : build/ing a sandcastle.,um the bunny and the baby elephant are building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and then : the bunny is fill/ing up a pail with sand.,and then the bunny is filling up a pail with sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,(um) then : he is stuff/ing it on the : sandcastle.,um then he is stuffing it on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and then : it is ruin/ed.,and then it is ruined +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,then : one of them is sad.,then one of them is sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,that is it [+_bch].,that is it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,they are go/ing on a picnic.,they are going on a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,(they are) the bunny is eat/ing lots of stuff.,they are the bunny is eating lots of stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,he is get/ing full.,he is getting full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and : he has a stomachache.,and he has a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and then : one of them see/3s (his mom) rabbit/z mom.,and then one of them sees his mom rabbit's mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and : he try/3s to get her (to get) (to get) to get rabbit.,and he tries to get her to get to get to get rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and : she wake/3s him up.,and she wakes him up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and they go home.,and they go home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,ah that was a good one.,ah that was a good one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,he is take/ing a balloon somewhere.,he is taking a balloon somewhere +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,his friend is come/ing up to him.,his friend is coming up to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,(and : he) and his friend like/3s the balloon.,and he and his friend likes the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and then his friend try/3s to untwist it.,and then his friend tries to untwist it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,then it go/3s away.,then it goes away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and he is sad.,and he is sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and then : she is angry with rabbit.,and then she is angry with rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and then there is a new (ba) balloon sale.,and then there is a new ba balloon sale +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and : he want/3s one.,and he wants one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and : he give/3s it to him.,and he gives it to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and then : he want/3s another one [~_laughs].,and then he wants another one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and then : mother is here.,and then mother is here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,he come/3s up to her.,he comes up to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and : he tell/3s her that there is[EW:are] balloon/s.,and he tells her that there is balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,(and : she will) and she is give/ing him money.,and she will and she is giving him money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,and then : they both have (one) a balloon.,and then they both have one a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,that is it [+_bch].,that is it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/469.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,there were two animal/s an elephant and a giraffe : who want/ed to play in a pool.,there were two animals an elephant and a giraffe who wanted to play in a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and (the w) (there) they were play/ing with a ball.,and the w there they were playing with a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and it fell into the pool.,and it fell into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and they want/ed to : (sw) swim and get it.,and they wanted to sw swim and get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and they thought it was fun.,and they thought it was fun +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,one of them (he fell) he went into the water and try/ed to swim to the ball.,one of them he fell he went into the water and tried to swim to the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,but the ball was float/ing away from him.,but the ball was floating away from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,(and then the elephant) and (uh) then the giraffe : got the ball for the elephant.,and then the elephant and uh then the giraffe got the ball for the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and then : the elephant (was) start/ed play/ing with the ball again.,and then the elephant was started playing with the ball again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,(and they uh) : and they still want/ed to play with it.,and they uh and they still wanted to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,so [~_coughs] they still play/ed together.,so they still played together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,there was a no run/ing sign.,there was a no running sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and they still want/ed to play in the pool.,and they still wanted to play in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and (th) they were run/ing : away.,and th they were running away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,(and then) and then : (sh) the giraffe start/ed chase/ing the elephant.,and then and then sh the giraffe started chasing the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the elephant slip/ed.,and the elephant slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and then it hurt : itself.,and then it hurt itself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the elephant was cry/ing.,and the elephant was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the giraffe : said are you okay?,and the giraffe said are you okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and then the : lifeguard came : and said are you all right?,and then the lifeguard came and said are you all right +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,: and the elephant : got a bandaid and sat on the chair.,and the elephant got a bandaid and sat on the chair +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,(and he) and (the lifeguard was try/ing) [~_I_mean] the elephant was try/ing to get off : the bandaid.,and he and the lifeguard was trying the elephant was trying to get off the bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the lifeguard (wa) said keep it on.,and the lifeguard wa said keep it on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,the giraffe and the elephant came back to the pool with the airplane.,the giraffe and the elephant came back to the pool with the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,the giraffe was play/ing with it and try/ed[-:] not to drop it into the pool.,the giraffe was playing with it and tried not to drop it into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the elephant was : so into it.,and the elephant was so into it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,(he) the elephant (w) (was) kept stare/ing at it.,he the elephant w was kept staring at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,(the) the giraffe said hey[!] when the elephant took the plane away.,the the giraffe said hey when the elephant took the plane away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the elephant start/ed play/ing with it.,and the elephant started playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the elephant accidentally drop/ed it into the pool.,and the elephant accidentally dropped it into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the giraffe was kind of : mad.,and the giraffe was kind of mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and then : he was so[!] mad that he growl/ed at the elephant.,and then he was so mad that he growled at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the elephant was : (scared) scare/ed.,and the elephant was scared scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,(and the li) and the elephant call/ed the lifeguard to come and try to get the airplane.,and the li and the elephant called the lifeguard to come and try to get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and they look/ed like they try/ed.,and they looked like they tried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,(and : after that) (and af) and then : after that (he) he was try/ing to get the plane.,and after that and af and then after that he he was trying to get the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,but he did not.,but he did not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,(so the ele) so[-:] the elephant did not know what to do.,so the ele so the elephant did not know what to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the giraffe was cry/ing.,and the giraffe was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the elephant decide/ed I will have an idea.,and the elephant decided I will have an idea +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the elephant went to get a net.,and the elephant went to get a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and then : he use/ed it to get the plane : and got the plane for the giraffe.,and then he used it to get the plane and got the plane for the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,[~_oops] : and the giraffe was really happy.,and the giraffe was really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,there was a rabbit and a dog.,there was a rabbit and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,they were : make/ing a sandcastle.,they were making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and then the dog and the rabbit made the sandcastle.,and then the dog and the rabbit made the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the dog was sit/ing into[EW:in] the sandbox and[-:] said hey rabbit we made it!,and the dog was sitting into the sandbox and said hey rabbit we made it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,we made it!,we made it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,(and the) and the : rabbit was help/ing the dog make it more bigger.,and the and the rabbit was helping the dog make it more bigger +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,(and it) and he put too much on : and made it fall right down on it.,and it and he put too much on and made it fall right down on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,(and then it al almost) [~_I_mean] then it broke.,and then it al almost then it broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and then it was totally broken (at the end of it) by the end.,and then it was totally broken at the end of it by the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,(um) : there once was a dog and a rabbit.,um there once was a dog and a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,they want/ed to go on a (picnich) picnic instead of make/ing a sandcastle in the park.,they wanted to go on a picnich picnic instead of making a sandcastle in the park +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,rabbit want/ed to have the most stuff.,rabbit wanted to have the most stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,so he took out (h) all of his stuff and : start/ed his stuff [EU].,so he took out h all of his stuff and started his stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the dog : want/ed to eat just this couple of stuff [EU].,and the dog wanted to eat just this couple of stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the rabbit was totally full.,and the rabbit was totally full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and (he) he was almost : have/ing a tummyache.,and he he was almost having a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and then he fell down.,and then he fell down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and he had a big tummyache.,and he had a big tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the dog ran to get his mom (and) to help.,and the dog ran to get his mom and to help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and then : the dog beg/ed his mom to : do it.,and then the dog begged his mom to do it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,so the mom came : and help/ed.,so the mom came and helped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and he was okay.,and he was okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,instead of go/ing (to) for a picnic (and) and go/ing into the park and make/ing a sandcastle : they got a balloon.,instead of going to for a picnic and and going into the park and making a sandcastle they got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and they were play/ing with : a balloon.,and they were playing with a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and they tie/ed it onto their : wagon.,and they tied it onto their wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,they were drive/ing it around.,they were driving it around +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the rabbit want/ed to take it off.,and the rabbit wanted to take it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the rabbit was try/ing to take it off.,and the rabbit was trying to take it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and then he made it fly away.,and then he made it fly away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the rabbit did not know what to do.,and the rabbit did not know what to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the dog was very mad.,and the dog was very mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and then (they saw more balloon/s and want/ed to get) [~_or] (uh) the dog was still mad.,and then they saw more balloons and wanted to get uh the dog was still mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the rabbit was go/ing to [~_gonna] get another one for : the : dog.,and the rabbit was going to get another one for the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the balloon/s were five cent/s.,and the balloons were five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and he could not get it because he did not have any money.,and he could not get it because he did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and the dog (was) want/ed to get one too.,and the dog was wanted to get one too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and he try/ed to get : one.,and he tried to get one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and : the dog was wait/ing for the rabbit to get some money from it/z mom.,and the dog was waiting for the rabbit to get some money from it's mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and it asked the mom : if he could have some money to buy the balloon.,and it asked the mom if he could have some money to buy the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and he got five cent/s and got a balloon : for the kid/s.,and he got five cents and got a balloon for the kids +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,and they got to play all they want with the balloon/s.,and they got to play all they want with the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/762.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,There was a giraffe : (and) : and (a) a girl elephant.,There was a giraffe and and a a girl elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,they were play/ing ball : (by the street) (on the sidewalk) : by the swimming pool [~_I_mean].,they were playing ball by the street on the sidewalk by the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and then[!] they drop/ed the ball[!] into the pool!,and then they dropped the ball into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,they (could not ge) could not get it.,they could not ge could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,but[!] giraffe dived|dive[EW:dove] in : and (k) (was) : was swim/ing.,but giraffe dived in and k was was swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,but elephant was cover/ing her eye/s.,but elephant was covering her eyes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,then he got it and gave it to her.,then he got it and gave it to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,she was amaze/ed.,she was amazed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,then he was soak/ing wet.,then he was soaking wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and she hug/ed the ball.,and she hugged the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and he look/ed like a genius.,and he looked like a genius +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,There they were again : by the pool.,There they were again by the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and there was a sign : by : (uh) the diving board.,and there was a sign by uh the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and it said no run/ing [~_takes_a_deep_breath].,and it said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,so : they look/ed at the pool amaze/ed for some reason.,so they looked at the pool amazed for some reason +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,then : elephant said I want to go on the diving board!,then elephant said I want to go on the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and she ran to it.,and she ran to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,she ran[!] to it.,she ran to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and she slip/ed.,and she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and giraffe did too.,and giraffe did too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and she scrape/ed her knee.,and she scraped her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,[~_high_pitched_voice] ouch!,ouch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,she had (X's in her eyes) [~_something_like_that] star/s in her eye/s.,she had X's in her eyes stars in her eyes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,she was cry/ing.,she was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,the lifeguard came.,the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and it was an elephant.,and it was an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,(no run/ing in the f) (in : the) no run/ing : by the side : of the pool (he) said the lifeguard.,no running in the f in the no running by the side of the pool he said the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and he put a bandaid on it.,and he put a bandaid on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,she still had star/s in her eye/s.,she still had stars in her eyes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and then at least giraffe did not fall.,and then at least giraffe did not fall +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and then it felt much better.,and then it felt much better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,"see, no run/ing in the pool (he) said the lifeguard.",see no running in the pool he said the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,did not you see that sign [EU]?,did not you see that sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,no run/ing!,no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,he was mad.,he was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,There was Elephant : with Giraffe again : by the pool again.,There was Elephant with Giraffe again by the pool again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,they found a plane : with string at the back.,they found a plane with string at the back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,"and : she had swirl/s in her eye/s, the elephant.",and she had swirls in her eyes the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and : the giraffe was spit/ing out spit.,and the giraffe was spitting out spit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,then[!] : she caught it.,then she caught it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,(he was really) he was like huh?,he was really he was like huh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,splash it land/ed in the pool.,splash it landed in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,oh no they said.,oh no they said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and then Giraffe was very[!] mad.,and then Giraffe was very mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,it was just about to sink.,it was just about to sink +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and elephant was go/ing [~_makes_gulping_sound].,and elephant was going +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,then the lifeguard[-:] came again.,then the lifeguard came again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and he had his hand/s on his hip/s.,and he had his hands on his hips +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,(and) : and : the airplane was still there.,and and the airplane was still there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,but it was not sink/ing.,but it was not sinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,then it was almost go/ing down.,then it was almost going down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,they explain/ed to Mister Elephant.,they explained to Mister Elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,Mister Elephant you see I grab/ed it.,Mister Elephant you see I grabbed it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and I drop/ed it by accident : in the water : when giraffe was play/ing with it.,and I dropped it by accident in the water when giraffe was playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,he bendednd[EW:bent] over.,he bendednd over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and (he try/ed to) (he was) he was (um) : growl/ing.,and he tried to he was he was um growling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,he could not even get it.,he could not even get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,he[!] could not even get it.,he could not even get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and then giraffe (just uh start/ed) just : start/ed : to cry[-:].,and then giraffe just uh started just started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and then Miss[!] Elephant came along.,and then Miss Elephant came along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,she had a net.,she had a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and (she got) she : had a net.,and she got she had a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and she look/ed surprise/ed.,and she looked surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,she fish/ed it out with the net.,she fished it out with the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,(and the) and then Giraffe (start/ed) : stop/ed cry/ing.,and the and then Giraffe started stopped crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,the lifeguard stop/ed (um : um) worry/ing.,the lifeguard stopped um um worrying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,so did the elephant.,so did the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,(and gave) and then : with amazement she gave it : to : Giraffe.,and gave and then with amazement she gave it to Giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,he hug/ed his airplane.,he hugged his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,he was happy.,he was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and the elephant was happy too.,and the elephant was happy too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,There is : a[-:] bunny : and a dog [~_I_think] : were play/ing in the sandbox and make/ing a sandcastle [EU].,There is a bunny and a dog were playing in the sandbox and making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,(the bu) the bunny : was get/ing the sand from the bucket.,the bu the bunny was getting the sand from the bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and the dog was make/ing the sandcastle.,and the dog was making the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,but (he) the rabbit pour/ed all the sand on it.,but he the rabbit poured all the sand on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and the dog look/ed (um : fri um) surprise/ed.,and the dog looked um fri um surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,the sandcastle was broke[EW:broken].,the sandcastle was broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,the bunny had his mouth open.,the bunny had his mouth open +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,but the dog did not.,but the dog did not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,the dog was cry/ing.,the dog was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,but the bunny : was just nervous.,but the bunny was just nervous +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,Here is the doggy : and the rabbit : again.,Here is the doggy and the rabbit again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,(um) they are go/ing for a picnic with their (basks) basket/s : in the wood/s.,um they are going for a picnic with their basks baskets in the woods +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,the bunny : was really thirsty.,the bunny was really thirsty +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,but the dog was not.,but the dog was not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,he looked at him surprise/ed.,he looked at him surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,there was a cake : cheese : (and a basket and) and the basket pour/ed and a carrot [~_laughs] [EU].,there was a cake cheese and a basket and and the basket poured and a carrot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,(the dog) : [~_no] the bunny ate all[!] his stuff.,the dog the bunny ate all his stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,there was an apple.,there was an apple +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,it was all done.,it was all done +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,there was a cheese *that was all eaten [~_pronounced_/etEn/] [EU].,there was a cheese was all eaten +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,the carrot was all eaten.,the carrot was all eaten +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,but the dog was still eat/ing her sandwich and (her juice) [~_well] drink/ing her juice.,but the dog was still eating her sandwich and her juice drinking her juice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,then[!] (the) the bunny had a tummyache.,then the the bunny had a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,but the dog was look/ing at : the bunny surprise/ed.,but the dog was looking at the bunny surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,Missus Bunny came.,Missus Bunny came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,(and : wa) and she was walk/ing along.,and wa and she was walking along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and then the dog ran : (to her) : to doctor.,and then the dog ran to her to doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,: (he was still ha) he still had a tummyache.,he was still ha he still had a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and the dog was pull/ing (her) her sleeve.,and the dog was pulling her her sleeve +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and she look/ed surprise/ed the doctor.,and she looked surprised the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,the doctor (was) : said he has a tummyache from eat/ing too much.,the doctor was said he has a tummyache from eating too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and he had to look (uh) with his tongue with a stick [EU].,and he had to look uh with his tongue with a stick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,then she : walk/ed along with rabbit.,then she walked along with rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,(he) and they went : together.,he and they went together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and the dog was only left with the picnic.,and the dog was only left with the picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,Well : the dog was : going with a balloon on her (um) wagon wheel.,Well the dog was going with a balloon on her um wagon wheel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and the bunny ran[!] to her.,and the bunny ran to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,it looked like he was jog/ing.,it looked like he was jogging +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,the bunny : was surprise/ed she had a balloon.,the bunny was surprised she had a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and (there was) : there was the doggy.,and there was there was the doggy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,she did not look so happy.,she did not look so happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,but then she scream/ed : because the bunny was take/ing : the balloon away from her.,but then she screamed because the bunny was taking the balloon away from her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and then[!] he let go of the balloon.,and then he let go of the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,it flew up.,it flew up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and (he) they both yell/ed come back.,and he they both yelled come back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,then the balloon drift/ed away.,then the balloon drifted away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,the bunny had his ear/s down.,the bunny had his ears down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,but the dog was very (mean) (bad) [~_I_mean] (mean) : [~_laughs] mad.,but the dog was very mean bad mean mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,there was Mister Rabbit : carry/ing : some balloon/s.,there was Mister Rabbit carrying some balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,they found him again (with) (and a b) by a bench and a garbage can.,they found him again with and a b by a bench and a garbage can +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,the rabbit ran up to him and said may I please have a blue : balloon (s) he said?,the rabbit ran up to him and said may I please have a blue balloon s he said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,five[-:] dollar/s first.,five dollars first +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,(he) he pull/ed out his pocket/s.,he he pulled out his pockets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,but there was no money.,but there was no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,the dog was rush/ing to the bunny.,the dog was rushing to the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,then they look/ed at : the Mister Bunny with a grin.,then they looked at the Mister Bunny with a grin +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,(h) they could not buy another balloon.,h they could not buy another balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,then Missus Rabbit the doctor rabbit : (and then) was stand/ing there.,then Missus Rabbit the doctor rabbit and then was standing there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and then : little rabbit went to go ask her something.,and then little rabbit went to go ask her something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,can you (bo) please buy us a balloon said rabbit.,can you bo please buy us a balloon said rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and then she look/ed at him amaze/ed : because it is for five buck/s only said (f) the : (Mis) Mister Bunny.,and then she looked at him amazed because it is for five bucks only said f the Mis Mister Bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,then she paid five buck/s.,then she paid five bucks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and they got two balloon/s.,and they got two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,[~_I_mean] ten buck/s.,ten bucks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and they both had their balloon/s.,and they both had their balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/743.slt,and they live/ed happily ever after.,and they lived happily ever after +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,first there is a lady who is bounce[EW:bouncing] a ball under the giraffe.,first there is a lady who is bounce a ball under the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,(it went right beside) they are work/ing at a centre[?].,it went right beside they are working at a centre +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,she bounce/ed it into the wall.,she bounced it into the wall +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,the giraffe and the : elephant are look/ing at it.,the giraffe and the elephant are looking at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,the giraffe go/3s and swim/3s (and get the) and get/3s the ball.,the giraffe goes and swims and get the and gets the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,then the elephant take/3s it.,then the elephant takes it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,(he :) then the giraffe get/3s out of : the water.,he then the giraffe gets out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,[~_okay] first the elephant and the giraffe : see the diving board.,first the elephant and the giraffe see the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,then the elephant see/3s it.,then the elephant sees it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,then she : go/3s to go on it.,then she goes to go on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,she went : run/ing too fast.,she went running too fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,and she fell.,and she fell +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,and she bruise/ed her knee.,and she bruised her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,the giraffe went down and comed|come[EW:came] to see her.,the giraffe went down and comed to see her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,(then) and then the elephant that was a lifeguard comed|come[EW:came] to see it too.,then and then the elephant that was a lifeguard comed to see it too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,(the eleph) (the) the lifeguard : put a bandaid on the bruise.,the eleph the the lifeguard put a bandaid on the bruise +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,they had to sit on the bench for awhile.,they had to sit on the bench for awhile +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,(and they talk/ed not allow/ed to) they talk/ed about they are not allow/ed to run [EU].,and they talked not allowed to they talked about they are not allowed to run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,okay.,okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,now she know/3s it [+/]^,now she knows it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,is that it?,is that it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,"[+,] (because he saw the sign) (because he show/ed him the sign) because he show/ed her the sign now.",because he saw the sign because he showed him the sign because he showed her the sign now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,no run/ing.,no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,the giraffe and the elephant got together[?].,the giraffe and the elephant got together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,and the giraffe got a[EW:an] airplane.,and the giraffe got a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,the giraffe : is put/ing it up high and pretend/ing it is go/ing.,the giraffe is putting it up high and pretending it is going +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,then the elephant take/3s it.,then the elephant takes it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,and she try/3s to do it too.,and she tries to do it too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,but the elephant throwed|throw[EW:threw] it in the water.,but the elephant throwed it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,the giraffe get/3s angry.,the giraffe gets angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,then there is a lifeguard come/ing along.,then there is a lifeguard coming along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,the elephant is explain/ing what happen/ed.,the elephant is explaining what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,the lifeguard try/3s to get it.,the lifeguard tries to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,but she can not get it.,but she can not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,(so :) so the giraffe start/3s cry/ing.,so so the giraffe starts crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,(then comes) and then come/3s a lady with a net.,then comes and then comes a lady with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,then she get/3s it out of the water.,then she gets it out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,then she give/3s it to the giraffe.,then she gives it to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,now : the giraffe is hug/ing : the airplane.,now the giraffe is hugging the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,(first the rabbit see/3s the puppy play/ing in the sand he want/3s) [~_I_mean] the rabbit see/3s the puppy play/ing in the sand.,first the rabbit sees the puppy playing in the sand he wants the rabbit sees the puppy playing in the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,and he want/3s to play.,and he wants to play +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,they builded|build[EW:built] a sandcastle.,they builded a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,the rabbit fill/ed up a bucket of sand.,the rabbit filled up a bucket of sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,the rabbit dump/ed it on the castle.,the rabbit dumped it on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,then the rabbit said oh no.,then the rabbit said oh no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,then the puppy was try/ing to get it off.,then the puppy was trying to get it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,one time : the puppy saw the rabbit come/ing with a basket.,one time the puppy saw the rabbit coming with a basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,and : the girl had a basket.,and the girl had a basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,the rabbit : had pile/s of food.,the rabbit had piles of food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,the lady did not.,the lady did not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,she saw the rabbit eat/ing so much.,she saw the rabbit eating so much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,the rabbit : got really fat.,the rabbit got really fat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,(she was) he was start/ing to feel dizzy.,she was he was starting to feel dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,he call/ed the doctor.,he called the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,"(and he got the lady ) [~_I_mean,_turn_it_back] the lady told the doctor to : help him.",and he got the lady the lady told the doctor to help him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,the doctor said you are eat/ing too much food : too fast.,the doctor said you are eating too much food too fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,so : he take/3s the bunny.,so he takes the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,(the :) the dog see/3s the bunny come/ing along.,the the dog sees the bunny coming along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,and the girl : has a wagon with the balloon hook/ed on it.,and the girl has a wagon with the balloon hooked on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,(the bunny) the bunny look/3s at it.,the bunny the bunny looks at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,then the bunny take/3s it off.,then the bunny takes it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,then : the bunny accidentally let it go.,then the bunny accidentally let it go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,and it *is go/ing too high [EU].,and it going too high +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,and they can not reach it.,and they can not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,(the) the dog is get/ing mad at the bunny.,the the dog is getting mad at the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,they see another balloon holder.,they see another balloon holder +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,so the bunny say/3s can we have one of those balloon/s?,so the bunny says can we have one of those balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,but none[EW:no] cash [EU].,but none cash +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,and it cost/3s five dollar/s.,and it costs five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,(uh :) they explain/ed what happen/ed to the balloon.,uh they explained what happened to the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,then they go run/ing to go : get somebody.,then they go running to go get somebody +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,can you say that louder?,can you say that louder +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,they went to go get somebody [+_bch].,they went to go get somebody +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,he is explain/ing[?] about the balloon man.,he is explaining about the balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,(and) and we do not have enough money.,and and we do not have enough money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,so she buyed|buy[EW:bought] : two balloon/s.,so she buyed two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/626.slt,and now they both got[EW:have] a balloon.,and now they both got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,once upon a time they were play/ing basketball.,once upon a time they were playing basketball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,(then) : then the boy came named giraffe.,then then the boy came named giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,the ball got stuck in the pond.,the ball got stuck in the pond +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then he went back home.,then he went back home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then it fell back in the water.,then it fell back in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and he gave the cow a : (nnn) new[?] [EU].,and he gave the cow a nnn new +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then he went : out of the water.,then he went out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,there was a : girl name/ed : elephant.,there was a girl named elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and the giraffe went swim[EW:swimming] again[?] xx the lake.,and the giraffe went swim again the lake +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and then they just ran ahead.,and then they just ran ahead +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then they jump/ed into the water.,then they jumped into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and then they[EW:she] hurt her knee[-:].,and then they hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then they could not : give a bandage [EU].,then they could not give a bandage +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and he just put on a bandage for her.,and he just put on a bandage for her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,(then it feel) then they went swim/ing for a[?] next time [EU].,then it feel then they went swimming for a next time +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then he got mad.,then he got mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,once upon a time (a) : a boy (me) met a girl.,once upon a time a a boy me met a girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and he was go/ing to [~_gonna] fly his airplane.,and he was going to fly his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then he flew it.,then he flew it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and (then) then he let go of it.,and then then he let go of it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and then she grab/ed it from him.,and then she grabbed it from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and it was her/z.,and it was her's +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and he throwed|throw[EW:threw] it in the water[-:] .,and he throwed it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and then he got mad at her.,and then he got mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then he got mad.,then he got mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and he need|need[EW:needed] to do something.,and he need to do something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and they could not reach it.,and they could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,so (they) they got a net.,so they they got a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and it was there for a long time.,and it was there for a long time +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and he got a net.,and he got a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then he got it.,then he got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then he just : try/ed to get it.,then he just tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then he just got it.,then he just got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then he just : give|give[EW:gave] it to the boy who had it.,then he just give it to the boy who had it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and xxx.,and x +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,he went.,he went +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and : he met a girl : go/ing to (the) : the playground.,and he met a girl going to the the playground +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and she made a (ca) sandcastle.,and she made a ca sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,try/ing make/ing one like hers [EU].,trying making one like hers +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,[<~?_where]then[>~?_where] it broke.,then it broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then they : got very angry.,then they got very angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,but they need/ed to make it all over again.,but they needed to make it all over again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,there was a boy name/ed : bunnyhead.,there was a boy named bunnyhead +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then he went (to) to have a picnic and met another guy with a picnic basket.,then he went to to have a picnic and met another guy with a picnic basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and they had a picnic before (it) (it) it got night time [EU].,and they had a picnic before it it it got night time +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then they had two box/s of sandwich/s.,then they had two boxes of sandwiches +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and then they got full.,and then they got full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,(then they went) (then they) : then they went full [EU].,then they went then they then they went full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and : they get|got[EW:got] more and more.,and they get more and more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then came the mommmy.,then came the mommmy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,(then the) : then : the doctor.,then the then the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then they ran up to her.,then they ran up to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then they bump/ed[!] into her.,then they bumped into her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and she took a temperature.,and she took a temperature +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and she was sick.,and she was sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and she need/ed to take her to a hospital.,and she needed to take her to a hospital +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,once : upon a time there was a boy (and went) (um uh what um) give/ing him[EW:his] wagon a walk.,once upon a time there was a boy and went um uh what um giving him wagon a walk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,(then they) then they (got) put it on a balloon.,then they then they got put it on a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and that was good.,and that was good +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then he tighten|tighten[EW:tightened] it on[-:] very good.,then he tighten it on very good +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and he gave it to the girl.,and he gave it to the girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,(then) then it flew away.,then then it flew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then there was no way [EU].,then there was no way +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then he was (ba) angry.,then he was ba angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then he met a : balloon guy.,then he met a balloon guy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and he bought her one : and buyed|buy[EW:bought] a new balloon (so) (so they c) so there could be one on the wagon.,and he bought her one and buyed a new balloon so so they c so there could be one on the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,then he gave us one before he flew away.,then he gave us one before he flew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and thank you!,and thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and (then it went) she sawed|see[EW:saw] the : doctor again.,and then it went she sawed the doctor again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and (a little girl) can you buy us a balloon?,and a little girl can you buy us a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,and they gave him money.,and they gave him money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,(then) then he gave them balloon/s.,then then he gave them balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,(then they) then they both had one.,then they then they both had one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,good.,good +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/448.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,once : a[EW:an] elephant was walk/ing over to a giraffe : with a backpack full of three ball/s.,once a elephant was walking over to a giraffe with a backpack full of three balls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,then : the ball/s sank into the water and float/ed away.,then the balls sank into the water and floated away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,they try/ed to catch it.,they tried to catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,but they nearly fell into the water.,but they nearly fell into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,they fell into the water.,they fell into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,(and try/ed to float) he try/ed to float to (the balloon) the ball.,and tried to float he tried to float to the balloon the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,(but it wa) : (but it) but the ball was too[!] fast.,but it wa but it but the ball was too fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,then the elephant caught the ball and pull/ed giraffe out of the water.,then the elephant caught the ball and pulled giraffe out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,then[!] he was soak/ing wet.,then he was soaking wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,then they walk/ed home.,then they walked home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,once : (gira) giraffe and elephant were so excited.,once gira giraffe and elephant were so excited +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,they want/ed to go into the pool.,they wanted to go into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,they walk/ed over to the stair/s.,they walked over to the stairs +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then : they walk/ed over to the board.,and then they walked over to the board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then : they jump/ed in.,and then they jumped in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,then elephant jump/ed in.,then elephant jumped in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then elephant slip/ed and slide|slide[EW:slid].,and then elephant slipped and slide +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and : then he fell into the water head first.,and then he fell into the water head first +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,he did not realize (that) that : he had no bandaid on his owie.,he did not realize that that he had no bandaid on his owie +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and it hurted|hurt[EW:hurt] and hurted|hurt[EW:hurt] and hurted|hurt[EW:hurt] and hurted|hurt[EW:hurt].,and it hurted and hurted and hurted and hurted +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,(uh : momma bear) poppa bear walk/ed over to him.,uh momma bear poppa bear walked over to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,are you okay?,are you okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,no reply/ed sister bear.,no replied sister bear +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,(then : they were so excited : they are) : (they v) (poppa bear gave him) poppa elephant gave : sister elephant : a bandaid.,then they were so excited they are they v poppa bear gave him poppa elephant gave sister elephant a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,then it felt much better.,then it felt much better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,now they were ready to play in the water.,now they were ready to play in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,but then : suddenly : the poppa bear said you stay there.,but then suddenly the poppa bear said you stay there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,do not go with the giraffe.,do not go with the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,once : Elephant and Giraffe : were walk/ing to the pool again[!].,once Elephant and Giraffe were walking to the pool again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,: Giraffe brought an airplane.,Giraffe brought an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then (he) elephant flied|fly[EW:flew] it.,and then he elephant flied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,but then it sank into the water.,but then it sank into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,you said [~_deep_voice] elephant : you get that airplane out of the water.,you said elephant you get that airplane out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,but I can not cry/ed elephant.,but I can not cried elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,now (it sank into the pool) it sank into the pool nearly all the way.,now it sank into the pool it sank into the pool nearly all the way +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,poppa bear said get that airplane.,poppa bear said get that airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,[~_deep_voice] I[!] can not (said) poppa bear : said to the giraffe.,I can not said poppa bear said to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,poppa bear try/ed to reach it.,poppa bear tried to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,but it was too far.,but it was too far +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,oh now we will never get it : cry/ed poppa bear and sister bear.,oh now we will never get it cried poppa bear and sister bear +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,(hold it said) hold it said giraffe.,hold it said hold it said giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,I[!] got something.,I got something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,I[!] have an idea.,I have an idea +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,(he) (he got his) momma bear got the net.,he he got his momma bear got the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then (he try/ed) he got it.,and then he tried he got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,then he try/ed to get it.,then he tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and at last : he got it.,and at last he got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then it was soak/ing wet : that he had to waited|wait[EW:wait] till it was dry.,and then it was soaking wet that he had to waited till it was dry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,now it was dry.,now it was dry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and he could fly it but not into the water any more.,and he could fly it but not into the water any more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,once : two bunny/s were play/ing in the sandbox.,once two bunnies were playing in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,one bunny build|build[EW:built] a sandcastle.,one bunny build a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and one digged|dig[EW:dug] sand to put in his bucket.,and one digged sand to put in his bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,he pour/ed it onto the castle.,he poured it onto the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then it all broke.,and then it all broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then it all fell.,and then it all fell +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then : (the uh) the bunny had to build it again.,and then the uh the bunny had to build it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,once : two bunny/s were go/ing out for a picnic.,once two bunnies were going out for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,(ss) one : ate : a carrot and some hot dog/s.,ss one ate a carrot and some hot dogs +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,then he was all full.,then he was all full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then the second bunny drank : juice : and ate his sandwich.,and then the second bunny drank juice and ate his sandwich +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then : the sandwich : taste|taste[EW:tasted] yucky.,and then the sandwich taste yucky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then : they went home to their mom.,and then they went home to their mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,(the mom said) the mom said : please take care of your little brother.,the mom said the mom said please take care of your little brother +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and they took care of each other.,and they took care of each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,then : (the) the sister bunny and the momma baby (all) they walk/ed home together.,then the the sister bunny and the momma baby all they walked home together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,once (a ba) a bunny was bring/ing (uh) : a wagon with a balloon : attached to a wheel.,once a ba a bunny was bringing uh a wagon with a balloon attached to a wheel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then : (the) the bunny was so excit/ed that he look/ed at the balloon.,and then the the bunny was so excited that he looked at the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then : he try/ed to put the balloon off the wheel [EU].,and then he tried to put the balloon off the wheel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,but it was stuck.,but it was stuck +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then it flew up.,and then it flew up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,they try/ed to catch it.,they tried to catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,but it was float/ing away up into the air.,but it was floating away up into the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then : it nearly disappear/ed.,and then it nearly disappeared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then they got so mad (they had to get a different one) they had to get a new one.,and then they got so mad they had to get a different one they had to get a new one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,so they walk/ed over to mister balloon.,so they walked over to mister balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,(and said) can I have (one) a new balloon the bunny ask/ed?,and said can I have one a new balloon the bunny asked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then he gave him the nice five : balloon.,and then he gave him the nice five balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then : he did not (gi) give (him) them one.,and then he did not gi give him them one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then : all of sudden (brother bear) brother bunny and sister bunny saw their mom.,and then all of sudden brother bear brother bunny and sister bunny saw their mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and (they w) then they (walk/ed over the river) skate/ed over to the river.,and they w then they walked over the river skated over to the river +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and out at the river she saw their mom.,and out at the river she saw their mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then [~_change_in_voice_quality] mommy : mister balloon will not (give us) give us a balloon.,and then mommy mister balloon will not give us give us a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and (then : then h) then momma bunny walk/ed over to mister balloon.,and then then h then momma bunny walked over to mister balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,(and said) can you please give them a balloon she ask/ed.,and said can you please give them a balloon she asked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,certainly reply/ed mister balloon.,certainly replied mister balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/451.slt,and then they had two balloon/s : for themselves.,and then they had two balloons for themselves +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,two friend/s were play/ing with a ball.,two friends were playing with a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,the ball went in the water.,the ball went in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,the guy try/ed to get the ball.,the guy tried to get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,then (she uh) the boy pass/ed (the) the ball to the elephant.,then she uh the boy passed the the ball to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,and then (they) the boy was in love with her.,and then they the boy was in love with her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,two friend/s : were go/ing for a swim.,two friends were going for a swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,and the elephant want/ed to dive.,and the elephant wanted to dive +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,she trip/ed (and) : and hurt her knee.,she tripped and and hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,the lifeguard came : and put a bandaid on : her.,the lifeguard came and put a bandaid on her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,and : she was : curious.,and she was curious +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,and the lifeguard show/ed her the sign of no run/ing [~_haha].,and the lifeguard showed her the sign of no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,the giraffe brought a[EW:an] airplane.,the giraffe brought a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,he was play/ing with it.,he was playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,and the elephant was : get/ing bore/ed.,and the elephant was getting bored +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,then the elephant took it away from the giraffe and start/ed to play with it.,then the elephant took it away from the giraffe and started to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,she accidentally drop/ed it in the water.,she accidentally dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,the : person was very mad at her.,the person was very mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,the lifeguard came.,the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,and the elephant explain/ed to the lifeguard.,and the elephant explained to the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,he try/ed to reach it.,he tried to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,but he could not.,but he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,(the life) (the) the boy was cry/ing.,the life the the boy was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,then : somebody came in with a net : and reach/ed it and got it out : and pass/ed it to the giraffe.,then somebody came in with a net and reached it and got it out and passed it to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,and he was happy.,and he was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,and so was the elephant.,and so was the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,one day (uh) a bunny went to the park with his friend.,one day uh a bunny went to the park with his friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,she was make/ing his sandcastle with her.,she was making his sandcastle with her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,he dump/ed it all over her sandcastle.,he dumped it all over her sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,(and it : uh) : and it blew up [~_laughs].,and it uh and it blew up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,and she was cry/ing[?].,and she was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,(and he did not) and he did not even say anything [~_laughs].,and he did not and he did not even say anything +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,(uh) two friend/s went : for a picnic.,uh two friends went for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,(uh) the one friend ate everything [~_laughs].,uh the one friend ate everything +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,he was very full.,he was very full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,he got a stomachache.,he got a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,the little girl ran to the nurse : and pull/ed her over to the : boy.,the little girl ran to the nurse and pulled her over to the boy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,and she said Merry Christmas.,and she said Merry Christmas +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,and they live/ed happily ever after [~_laughs].,and they lived happily ever after +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,two friend/s went to the park.,two friends went to the park +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,and the girl had a balloon.,and the girl had a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,(uh) : the boy want/ed to : hold the balloon.,uh the boy wanted to hold the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,he untie/ed it.,he untied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,and it flew up.,and it flew up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,and then the girl was very mad at him.,and then the girl was very mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,then they saw a balloon person.,then they saw a balloon person +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,and he ask/ed if he could have a balloon of hubbadubba[?].,and he asked if he could have a balloon of hubbadubba +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,(uh bl) and the guy said balloons five cent/s.,uh bl and the guy said balloons five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,and they were very sad.,and they were very sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,then they seen|see[EW:saw] a doctor.,then they seen a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,(and ask/ed :) and the boy ask/ed if : she can buy two balloon/s with five cent/s.,and asked and the boy asked if she can buy two balloons with five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,and : they got the balloon/s.,and they got the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,and she paid [~_laughs].,and she paid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/967.slt,and they love/ed the balloon/s.,and they loved the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,a[EW:an] elephant met (a) a giraffe.,a elephant met a a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,(and the) and the elephant/z ball went into the water.,and the and the elephant's ball went into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,then the giraffe would get it.,then the giraffe would get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and (then she w) then she was happy.,and then she w then she was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and then : (hmmm) she like/ed her.,and then hmmm she liked her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and then [+..].,and then +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,Okay.,Okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,(um) the elephant (and) and (the) the giraffe was[EW:were] go/ing to run.,um the elephant and and the the giraffe was going to run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and he was go/ing.,and he was going +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and the elephant was go/ing to run over to the jump/ing thing.,and the elephant was going to run over to the jumping thing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and then she slip/ed.,and then she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and then she fell.,and then she fell +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and then the lifeguard came.,and then the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and then he putted|put[EW:put] a bandaid on.,and then he putted a bandaid on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and (then) then she knowed|know[EW:knew] that there was no run/ing.,and then then she knowed that there was no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and then she look/ed at the sign.,and then she looked at the sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and it said no run/ing.,and it said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and then the end.,and then the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,the giraffe (had) had a[EW:an] airplane.,the giraffe had had a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and he was go/ing to throw it.,and he was going to throw it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,(and) (and the) and the : elephant want/ed to try too.,and and the and the elephant wanted to try too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and then (he s) (he was tr) he want/ed to throw it.,and then he s he was tr he wanted to throw it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,: and then the elephant was go/ing to throw it.,and then the elephant was going to throw it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and then it sank.,and then it sank +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and (then) then the giraffe was mad.,and then then the giraffe was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,: (and :) and then the lifeguard came.,and and then the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,(and then) and then the lifeguard was go/ing to get it.,and then and then the lifeguard was going to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,: (and then he) and then he was almost about to get it.,and then he and then he was almost about to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,: (and then) and then the giraffe was sad.,and then and then the giraffe was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,[~_long_pause] what happened next ?,what happened next +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and (then) then the girl lifeguard came : to get the airplane with (a th) a net.,and then then the girl lifeguard came to get the airplane with a th a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and then : she got it.,and then she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,: (and then) and then she got it.,and then and then she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and then he was happy.,and then he was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,a bunny and a bunny : were play/ing in a sandbox.,a bunny and a bunny were playing in a sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and then they builded|build[EW:built] a snowcastle.,and then they builded a snowcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and then (the) the other rabbit pour/ed some sand in it.,and then the the other rabbit poured some sand in it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,(and) and one part was still fix/ed.,and and one part was still fixed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,: then what happen/ed?,then what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and then : the other one was sad.,and then the other one was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,The end [+_bch].,The end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,(um : um) two rabbit/s had basket/s.,um um two rabbits had baskets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and it[EW:they] had a picnic.,and it had a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,(and then) and then the other rabbit was full.,and then and then the other rabbit was full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,: then he was hurt.,then he was hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,: what happen/ed?,what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,he found a doctor.,he found a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,(and) and he thoughted|thought[EW:thought] that guy was hurt.,and and he thoughted that guy was hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,: and then the doctor came.,and then the doctor came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and (then) then the boy was better.,and then then the boy was better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,(um) the girl had a wagon with a balloon on it.,um the girl had a wagon with a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,(and the) and the other rabbit : was run/ing.,and the and the other rabbit was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and then the boy rabbit was go/ing to[:_gonna] take the balloon.,and then the boy rabbit was going to take the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,(and then he) and then he was try/ing to take it off.,and then he and then he was trying to take it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,: then what happen/ed?,then what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,then it flew up in the air.,then it flew up in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and (then) then it pop/ed.,and then then it popped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,: and then he was go/ing to the balloon man.,and then he was going to the balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and (then) : then the girl was sad.,and then then the girl was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,: what happen/ed then?,what happened then +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and (then) then he was mad.,and then then he was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,: (um) then the girl came.,um then the girl came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,(then sh) : (then she) (then) then she want/ed a balloon.,then sh then she then then she wanted a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,and then he ask/ed : the doctor (that could) could he have some of your money?,and then he asked the doctor that could could he have some of your money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,: what happen/ed then?,what happened then +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,(then) then the boy and the girl : was[EW:were] go/ing to[:_gonna] have a balloon.,then then the boy and the girl was going to have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,: and then they both had a balloon.,and then they both had a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/505.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,once[-:] an elephant and a giraffe were play/ing ball : when suddenly the ball drop/ed into[-:] the sand that[-:] was water.,once an elephant and a giraffe were playing ball when suddenly the ball dropped into the sand that was water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,out they sunk [EU].,out they sunk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,the ball pick/ed them out [EU].,the ball picked them out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,but it was just the elephant.,but it was just the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,and they play/ed ball again.,and they played ball again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,Once (an) an elephant and a : horse [~_I_keep_getting__mixed_up] : [~_EXA:_once_an_elephant_and_a_horse] [~_Well_this__one_(i)s_a_horse_and_this_one_(i)s_a_elephant] : were play/ing in the sand.,Once an an elephant and a horse were playing in the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,Suddenly it was not sand they realize/ed.,Suddenly it was not sand they realized +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,They fell : and sunk.,They fell and sunk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,They came out again.,They came out again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,: They got hurt : because that is how it look/3s.,They got hurt because that is how it looks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,"they had to put a bandaid (on a different[!] eleph) on that elephant, a doctor elephant.",they had to put a bandaid on a different eleph on that elephant a doctor elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,and : they sat down.,and they sat down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,: the doctor elephant got angry!,the doctor elephant got angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,once an elephant and a : giraffe : (w) were shoot/ing airplane/s : (when it look/ed) : when suddenly the airplane got broken.,once an elephant and a giraffe w were shooting airplanes when it looked when suddenly the airplane got broken +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,and it shooted|shoot[EW:shot] (into that water :) into the water.,and it shooted into that water into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,oh no said the little giraffe.,oh no said the little giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,like : he yell/ed.,like he yelled +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,Mister FixIt came and said what is all this yell/ing : about?,Mister FixIt came and said what is all this yelling about +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,(a) (a) a plane got stuck in the water.,a a a plane got stuck in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,can you take it out?,can you take it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,of course I will.,of course I will +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,and (he s) he got angry too.,and he s he got angry too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,did not know how [EU].,did not know how +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,so he took his net out of his : truck and scoop/ed it up.,so he took his net out of his truck and scooped it up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,and that did the job [~_laughs].,and that did the job +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,and they play/ed airplane[!] again.,and they played airplane again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,and they were happy.,and they were happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,they like/ed (the) the airplane.,they liked the the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,it was all fix/ed up.,it was all fixed up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,Once a dog and a rabbit : [~_I_have_a_dog] were play/ing in the sand.,Once a dog and a rabbit were playing in the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,They made a sandcastle.,They made a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,(And when) by the time it was finish/ed they pour/ed some more sand.,And when by the time it was finished they poured some more sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,And it fell down : and did [~_makes_sound_effect_'glop'][!].,And it fell down and did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,They built the sandcastle again.,They built the sandcastle again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,It was up.,It was up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,Once a dog and a rabbit : were walk/ing down.,Once a dog and a rabbit were walking down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,They had a picnic[!].,They had a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,Soon the rabbit was so tire/ed and full : that he had to go to sleep.,Soon the rabbit was so tired and full that he had to go to sleep +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,Out they pack/ed [EU].,Out they packed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,His leg/s got tired.,His legs got tired +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,Dog had to pull him.,Dog had to pull him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,Doctor came along and fix/ed up the rabbit : and took them home.,Doctor came along and fixed up the rabbit and took them home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,once (a) : a dog and a rabbit : were wait/ing down with a balloon : when the balloon pop/ed.,once a a dog and a rabbit were waiting down with a balloon when the balloon popped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,on that hot day they all sat.,on that hot day they all sat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,up went the balloon.,up went the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,it pop/ed.,it popped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,out came : the balloon man with lot/s of balloon/s.,out came the balloon man with lots of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,and they gave one to each.,and they gave one to each +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,and they had lot/s of balloon/s.,and they had lots of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,only one pop/ed.,only one popped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,and they like/ed their balloon/s.,and they liked their balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,off they went.,off they went +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,out came Doctor Rabbit.,out came Doctor Rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,he said what (are) these balloon/s[!] are for [EU]?,he said what are these balloons are for +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,the balloon man gave it to us because we love balloon/s.,the balloon man gave it to us because we love balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/555.slt,and ours pop/ed away.,and ours popped away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,"Once there was[EW:were] : (uh) two[-:] friend/s, one Tally and one (hm) : Snout.",Once there was uh two friends one Tally and one hm Snout +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and Snout had a beautiful : green ball.,and Snout had a beautiful green ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,but[!] it fell in a pool.,but it fell in a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,so Tally : swam to get the ball.,so Tally swam to get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and : he got it back.,and he got it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,(um) : Tally was blush/ing.,um Tally was blushing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,his whole face went red.,his whole face went red +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,This is another story about (Snuff ) Snout and Tally.,This is another story about Snuff Snout and Tally +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,once there the pool in the last story with the beautiful green ball fell in the pool.,once there the pool in the last story with the beautiful green ball fell in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and Tally got it back.,and Tally got it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,there was a diving board.,there was a diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and Snout said I am go/ing to go on that diving board.,and Snout said I am going to go on that diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and I will show you a nice dive.,and I will show you a nice dive +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,well Tally said stop do not run.,well Tally said stop do not run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and unfortunately Snout slip/ed and fell : and really really hurt her knee.,and unfortunately Snout slipped and fell and really really hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and then Tally warn/ed her because Tally saw a sign that said no run/ing.,and then Tally warned her because Tally saw a sign that said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,Snout (started) start/ed to cry.,Snout started started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,but the lifeguard luckily saw and came to the rescue.,but the lifeguard luckily saw and came to the rescue +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and the lifeguard gave Snout a bandaid.,and the lifeguard gave Snout a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,"once Snout stop/ed cry/ing, the lifeguard gave her a sticker for be/ing such a good help not move/ing her knee around and stuff.",once Snout stopped crying the lifeguard gave her a sticker for being such a good help not moving her knee around and stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and then (um) the lifeguard point/ed to the sign that said no run/ing.,and then um the lifeguard pointed to the sign that said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and Snout look/ed and said sorry.,and Snout looked and said sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,This is a story about Snout and Tally.,This is a story about Snout and Tally +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and Tally had this nice model airplane that he was play/ing with by the pool.,and Tally had this nice model airplane that he was playing with by the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,he was fly/ing it around.,he was flying it around +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and Snout was like ooh.,and Snout was like ooh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,she really want/ed to play with it.,she really wanted to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,so : she snatch/ed[!] it away.,so she snatched it away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and then Tally was like [~_high_pitched_voice] hey give it back!,and then Tally was like hey give it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,[~_high_pitched_voice] it is mine!,it is mine +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and[-:] Snout : drop/ed it in the pool.,and Snout dropped it in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and then Tally (s) said now look what you have done.,and then Tally s said now look what you have done +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,you should not grab.,you should not grab +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and : Tally got really really really mad at : Snout.,and Tally got really really really mad at Snout +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and then the lifeguard : ask/ed what is the problem here kid/s?,and then the lifeguard asked what is the problem here kids +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and : Snout said : well (um Ta) Tally here was play/ing with this model airplane.,and Snout said well um Ta Tally here was playing with this model airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and : (I) I really want/ed to play (wis) with it.,and I I really wanted to play wis with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,so I grab/ed it away.,so I grabbed it away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,but I accidentally drop/ed it in the pool.,but I accidentally dropped it in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,so the lifeguard had to : get down : and stretch out for the plane.,so the lifeguard had to get down and stretch out for the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,but : it was (too) too far out.,but it was too too far out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,the lifeguard could not get it.,the lifeguard could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and then : (the) the : girl luckily had a net.,and then the the girl luckily had a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,so : she dip/ed it in the pool.,so she dipped it in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and[-:] : luckily : or : not [EU].,and luckily or not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,but : he was lucky.,but he was lucky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,she did[!] get it out.,she did get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and then : Snout said sorry I drop/ed it in the pool.,and then Snout said sorry I dropped it in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,Once there was[EW:were] two[-:] : animal/s a wolf and a bunny.,Once there was two animals a wolf and a bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and they were (at the beach : or) in a sandbox.,and they were at the beach or in a sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and they built a big big sandcastle.,and they built a big big sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,the wolf was work/ing on the tower.,the wolf was working on the tower +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and the bunny was : (um) collect/ing the sand.,and the bunny was um collecting the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,but then the bunny pour/ed (the who) the whole bucket of sand : onto the sandcastle.,but then the bunny poured the who the whole bucket of sand onto the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and it ruin/ed one tower.,and it ruined one tower +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,but then[!] the sand that was on the tower start/ed come/ing down and wreck/ing the whole sandcastle.,but then the sand that was on the tower started coming down and wrecking the whole sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,so when that[!] was all finished the only thing left was one tower.,so when that was all finished the only thing left was one tower +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and then the wolf start/ed to cry.,and then the wolf started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and the bunny : *was feel/ing bad [EU].,and the bunny feeling bad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,once there was[EW:were] two animal/s : (a ra) a hare and a : wolf.,once there was two animals a ra a hare and a wolf +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,(and the wo) and the bunny thought that he was so[-:] good so he could have all the food he want/ed.,and the wo and the bunny thought that he was so good so he could have all the food he wanted +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,so then (once) once they were finish/ed : the wolf had just : a sandwich and a juice.,so then once once they were finished the wolf had just a sandwich and a juice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and then the rabbit was : feel/ing kind of queasy.,and then the rabbit was feeling kind of queasy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,so (um the) the wolf told him he would walk him home.,so um the the wolf told him he would walk him home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,but luckily a doctor was walk/ing by.,but luckily a doctor was walking by +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,so the wolf (a) asked the doctor if he could (um) help the (uh) wolf.,so the wolf a asked the doctor if he could um help the uh wolf +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and then : (the) : the wolf : (um) brang|bring[EW:brought] the doctor over to the bunny.,and then the the wolf um brang the doctor over to the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and : (the) the wolf said he has faint/ed.,and the the wolf said he has fainted +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,he need/3s your help.,he needs your help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,so (the) (the) the hare[!] doctor : said : well I will give him this medicine.,so the the the hare doctor said well I will give him this medicine +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,so she did.,so she did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and he woke up.,and he woke up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,but still he was feel/ing kind of[:_kinda] queasy.,but still he was feeling kind of queasy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and then (he) he just took a run around the tree/s.,and then he he just took a run around the trees +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,that is what (the) the doctor told him to do.,that is what the the doctor told him to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and then he was feel/ing fine.,and then he was feeling fine +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,two best friend/s name/ed : Fluffball and Fluffy : were once play/ing : at the park.,two best friends named Fluffball and Fluffy were once playing at the park +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,(and) (and the) and Fluffball : which was *a hare : kept go/ing on about this balloon he got for be/ing the best student in his class [EU].,and and the and Fluffball which was hare kept going on about this balloon he got for being the best student in his class +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,but then : (the) the hare : said : I am go/ing to take it off and show it around.,but then the the hare said I am going to take it off and show it around +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,but the wolf said no do not!,but the wolf said no do not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,(it) what if you let it go?,it what if you let it go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,it will fly up into the air!,it will fly up into the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,but the hare did not listen.,but the hare did not listen +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,so : (um) the balloon : he accidentally let it go.,so um the balloon he accidentally let it go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and it went up into the air.,and it went up into the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,: (the) (the um) the wolf got so mad at him : that (he) (he) (he) he said I am not your friend any more.,the the um the wolf got so mad at him that he he he he said I am not your friend any more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,but then the hare saw : (some) : some balloon/s.,but then the hare saw some some balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,so he went over : to the balloon guy : said I want (um) that red one right there.,so he went over to the balloon guy said I want um that red one right there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,but it was five cent/s.,but it was five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,but he did not have any[!][-:] money.,but he did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,so : the guy that was sell/ing the balloon/s said sorry but you can not have this nice red balloon.,so the guy that was selling the balloons said sorry but you can not have this nice red balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and then : (um) doctor Fluffball : which was Fluffball/z mom : (um : ask/ed him um) Fluffball ask/ed his mom if he could have five cent/s : because (the) : the red balloon was five cent/s.,and then um doctor Fluffball which was Fluffball's mom um asked him um Fluffball asked his mom if he could have five cents because the the red balloon was five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,so Doctor Fluffball : gave : the man five cent/s.,so Doctor Fluffball gave the man five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and he got : two[!] balloon/s : for both of them.,and he got two balloons for both of them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,and that was that.,and that was that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/811.slt,they both got a blue and red balloon.,they both got a blue and red balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,play/ing baseball [EU].,playing baseball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,bounce/ing the three ball/s in the : fall[-:] [EU].,bouncing the three balls in the fall +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,look/ing at a : ball in the fall[-:] [EU].,looking at a ball in the fall +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,lay/ing down in the fall try/ing to get the ball [EU].,laying down in the fall trying to get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,try :*to give someone the ball in the water : in the spring [EU].,try give someone the ball in the water in the spring +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,play/ing : run/ing around in the spring[-:] [EU].,playing running around in the spring +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,look/ing in the water in the (f) : summer [EU].,looking in the water in the f summer +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,(lookin) run/ing through the water in the summer [EU].,lookin running through the water in the summer +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,run/ing (in the) in the summer : on the sidewalk [EU].,running in the in the summer on the sidewalk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,get/ing hurt on the sidewalk in the : summer [EU].,getting hurt on the sidewalk in the summer +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,get hurt in the summer cry/ing [EU].,get hurt in the summer crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,play/ing in the summer [EU].,playing in the summer +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,sit/ing down on the bench in the summer [EU].,sitting down on the bench in the summer +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,sit/ing down on the bench in the : summer [EU].,sitting down on the bench in the summer +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,(get) someone *is get/ing mad [EU].,get someone getting mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,be/ing happy : in the fall[-:] [EU].,being happy in the fall +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,play/ing in the fall with a little toy : airplane [EU].,playing in the fall with a little toy airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,play/ing with a little toy in the : fall[-:] [EU].,playing with a little toy in the fall +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,put his airplane in the water in the fall[-:] [EU].,put his airplane in the water in the fall +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,put the water (in the) in the water in fall [EU].,put the water in the in the water in fall +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,put the water in *the fall [EU].,put the water in fall +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,put the water in *the fall [EU].,put the water in fall +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,and they *are happy [EU].,and they happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,try and get it in the water in the fall [EU].,try and get it in the water in the fall +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,sad it *is in the water in the fall [EU].,sad it in the water in the fall +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,get/ing : a net to try to get [EW:it] in the water in the fall [EU].,getting a net to try to get in the water in the fall +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,try to get it in the fall[-:] [EU].,try to get it in the fall +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,then kind of got it [EU].,then kind of got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,give/ing the airplane to somebody in the (f) fall [EU].,giving the airplane to somebody in the f fall +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,(givin) hold/ing the airplane in the fall [EU].,givin holding the airplane in the fall +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,play/ing [EU].,playing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,play/ing in the sand [EU].,playing in the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,make/ing a sandcastle : with sand [EU].,making a sandcastle with sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,play/ing with sand : with sand [EU].,playing with sand with sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,play/ing with sand with sand [EU].,playing with sand with sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,[~_sighs] play/ing with sand with sand [EU].,playing with sand with sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,(uh) bring/ing food : somewhere [EU].,uh bringing food somewhere +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,have/ing a picnic somewhere [EU].,having a picnic somewhere +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,lay/ing down and eat/ing somewhere [EU].,laying down and eating somewhere +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,(la) lay/ing down and eat/ing somewhere [EU].,la laying down and eating somewhere +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,play/ing somewhere [EU].,playing somewhere +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,pull/ing somewhere [EU].,pulling somewhere +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,play/ing somewhere [EU].,playing somewhere +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,play/ing somewhere [EU].,playing somewhere +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,bring/ing a cart : on the sidewalk in the spring [EU].,bringing a cart on the sidewalk in the spring +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,take/ing a cart : somewhere in the spring [EU].,taking a cart somewhere in the spring +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,take/ing a cart somewhere in the spring [EU].,taking a cart somewhere in the spring +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,try/ing to get the balloon[-:] [EU].,trying to get the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,no handle/ing [EU].,no handling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,and they would all go somewhere in the spring.,and they would all go somewhere in the spring +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,look/ing up (s) in the sidewalk in the spring [EU].,looking up s in the sidewalk in the spring +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,saying could I have a : balloon in the spring [EU].,saying could I have a balloon in the spring +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,see/ing what?,seeing what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,(ss) get/ing a balloon in the spring [EU].,ss getting a balloon in the spring +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,look/ing at a : balloon [EU].,looking at a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,(ss) look/ing they were (at a tr) at a balloon in the spring [EU].,ss looking they were at a tr at a balloon in the spring +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,but they were all gone.,but they were all gone +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,walk/ing in the spring [EU].,walking in the spring +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,(um) : look/ing at the balloon/s [EU].,um looking at the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,pull/ing someone to that[EW:those] balloon/s in the spring [EU].,pulling someone to that balloons in the spring +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,(uh) : get/ing a balloon in the spring [EU].,uh getting a balloon in the spring +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/565.slt,walk/ing [EU].,walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,once upon a time the elephant had a ball.,once upon a time the elephant had a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and the giraffe like/ed it.,and the giraffe liked it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and he decide/ed to play with it by the pool.,and he decided to play with it by the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and then : he made a mistake.,and then he made a mistake +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and it falled|fall[EW:fell] in the water.,and it falled in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,(and) (and) and the elephant thought that he could not get it.,and and and the elephant thought that he could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,but (he) he just try/ed and try/ed.,but he he just tried and tried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and he got it.,and he got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and he gave it back to the elephant.,and he gave it back to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,so the elephant was very happy.,so the elephant was very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,once upon a time there is[EW:was] a[EW:an] elephant and a giraffe by the diving pool.,once upon a time there is a elephant and a giraffe by the diving pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and the elephant ran[-:] and slip/ed.,and the elephant ran and slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,I think I think that is next page [+_bch].,I think I think that is next page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and he slip/ed[!] and got hurt.,and he slipped and got hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,so the giraffe came run/ing.,so the giraffe came running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and then one of the elephant/s came to help with a bandage.,and then one of the elephants came to help with a bandage +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,(and the band) and he put the bandage on.,and the band and he put the bandage on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and he hurt and hurt.,and he hurt and hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and she had to keep her leg out like straight in front (so) so it would not hurt when she walk/3s.,and she had to keep her leg out like straight in front so so it would not hurt when she walks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,but she had to sit there xxx.,but she had to sit there x +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,what was that last bit?,what was that last bit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,she has|have[EW:had] to sit there at the diving pool all day until it feeled|feel[EW:felt] better.,she has to sit there at the diving pool all day until it feeled better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,: (so) : and then the big elephant said no run/ing.,so and then the big elephant said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and she went [~_humming_sound].,and she went +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,that is why he got hurt.,that is why he got hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,(and he said) : so she had to sit there for time out.,and he said so she had to sit there for time out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,that is why.,that is why +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,once upon a time there is[EW:was] a[EW:an] elephant and a giraffe.,once upon a time there is a elephant and a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,the giraffe had a[EW:an] airplane.,the giraffe had a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and they were at the diving pool.,and they were at the diving pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,the elephant play/ed with the airplane and watch/ed it zoom around.,the elephant played with the airplane and watched it zoom around +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,"and he did like [~_motor_sounds,_laughing].",and he did like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and the elephant took it away and start/ed play/ing with it.,and the elephant took it away and started playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and then it fell in the water.,and then it fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and the giraffe stare/ed at it.,and the giraffe stared at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,what ?,what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and the giraffe stare/ed at it [+_BCH].,and the giraffe stared at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and then the giraffe was very mad at the elephant that the elephant was so scare/ed [EU].,and then the giraffe was very mad at the elephant that the elephant was so scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,so (the beach) (the suh) (the) (the) [~_what__do_you_call_it_the_yeah] the lifeguard (he) he decide/ed to take it out.,so the beach the suh the the the lifeguard he he decided to take it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and he try/ed to get it because the elephant said[!] so.,and he tried to get it because the elephant said so +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,small elephant xx as tall as me[!] [EU].,small elephant as tall as me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and then he try/ed[-:] and try/ed[-:] [+_bch].,and then he tried and tried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and then I should not [~_?] [+_bch].,and then I should not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,what is that last part ?,what is that last part +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,then he try/ed and try/ed.,then he tried and tried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,but he could not get it.,but he could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,so he just try/ed still.,so he just tried still +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,so he could not get it.,so he could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and the zebra was sad[-:] so sad.,and the zebra was sad so sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and then there is somebody that (ha) was even a bigger elephant and try/ed to get it with her net.,and then there is somebody that ha was even a bigger elephant and tried to get it with her net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,(and she got it) : and she got it out for : their giraffe.,and she got it and she got it out for their giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,"and the giraffe was happy, very very happy.",and the giraffe was happy very very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,so the elephant and the giraffe became[-:] friend/s again.,so the elephant and the giraffe became friends again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,there is so much one/s about them at the diving pool [~_laughs] [+_bch].,there is so much ones about them at the diving pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,once upon a time there was a little dog : and a little rabbit.,once upon a time there was a little dog and a little rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,they were play/ing in the sandbox.,they were playing in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and they builded|build[EW:built] a castle.,and they builded a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and : the bunny took some : sand and put it in the bucket.,and the bunny took some sand and put it in the bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and he start/ed shovel/ing it.,and he started shoveling it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and then the bunny pour/ed all the sand over the sandcastle : that the dog made.,and then the bunny poured all the sand over the sandcastle that the dog made +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and then : the bunny said oh I am sorry.,and then the bunny said oh I am sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,I will not do that again.,I will not do that again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,oh : the dog was very sad.,oh the dog was very sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,he cry/ed (h) because the bunny was not very smart.,he cried h because the bunny was not very smart +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,(and then : f) and then the bunny just : would not play with him.,and then f and then the bunny just would not play with him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and he standed|stand[EW:stood] still with his ear/s down like this.,and he standed still with his ears down like this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,once upon a time there was a bunny and a dog.,once upon a time there was a bunny and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,they were : go/ing to have a picnic with each other.,they were going to have a picnic with each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and they met each other in the wood/s.,and they met each other in the woods +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,they met a what?,they met a what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,they met a each other in the wood/s [+_bch].,they met a each other in the woods +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,the bunny brought lot/s and lot/s of junk [~_!_laughing].,the bunny brought lots and lots of junk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,that is like all food that is bad for you : junk.,that is like all food that is bad for you junk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,like what?,like what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,like junk I call it when it is food that is bad for you I call it junk [+_bch].,like junk I call it when it is food that is bad for you I call it junk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and the bunny ate so much of his junk he got sick.,and the bunny ate so much of his junk he got sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and he falled|fall[EW:fell] down.,and he falled down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and he got dizzy.,and he got dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and then the doggy ran to the doctor bunny : to help.,and then the doggy ran to the doctor bunny to help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and : the doggy pull/ed him over.,and the doggy pulled him over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and then : he start/ed work/ing on fix/ing him in case he was okay.,and then he started working on fixing him in case he was okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,well : then : he threw a thing at his head : and try/ed to (s) make him look over there.,well then he threw a thing at his head and tried to s make him look over there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and he fix/ed him up.,and he fixed him up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,he had to go home.,he had to go home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,so (he) the doctor brought him to his home.,so he the doctor brought him to his home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and the doggy was very happy.,and the doggy was very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,once upon a time : there were[EW:was] : a dog and a bunny.,once upon a time there were a dog and a bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and they met each other in the wood/s.,and they met each other in the woods +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and the dog (had) : had a balloon.,and the dog had had a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and the bunny came run/ing.,and the bunny came running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and a bunny (ca) took the balloon : out : of the : [~__what_do_you_call_it] the wagon [~_yeah_that_(i)s_it].,and a bunny ca took the balloon out of the the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and : try/ed to untie it.,and tried to untie it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,but the dog said no.,but the dog said no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and he would not listen.,and he would not listen +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and then the dog try/ed to catch it.,and then the dog tried to catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and the bunny try/ed to catch it too.,and the bunny tried to catch it too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,but : they just could not catch it.,but they just could not catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,oh and then the bunny/z dog friend got mad and made his teeth like this [~_aargh_sound].,oh and then the bunny's dog friend got mad and made his teeth like this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and made what?,and made what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and made (ade) him mad [+_bch].,and made ade him mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,so he would be so mad : that he would just be like this stand/ing there [~_makes_angry_sound].,so he would be so mad that he would just be like this standing there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,then he went off to get a balloon from a balloon seller that sell/3s balloon/s.,then he went off to get a balloon from a balloon seller that sells balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,he decide/ed (to) to get one.,he decided to to get one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,[~_what]?, +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,(he decide/ed to get one) the bunny decide/ed to get : a balloon [+__bch].,he decided to get one the bunny decided to get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,but he did not have any money for five cent/s.,but he did not have any money for five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,well they were sad.,well they were sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and he did not have any balloon/s for each other because (they want/ed) then the bunny want/ed one too.,and he did not have any balloons for each other because they wanted then the bunny wanted one too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,so they went off to someone that had money.,so they went off to someone that had money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,(and then the) (and then he) and then he bought some for them.,and then the and then he and then he bought some for them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and they got (two) the two last one/s left.,and they got two the two last ones left +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and they were so happy.,and they were so happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,and (they) they have been friend/s with each other all[!] day.,and they they have been friends with each other all day +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/504.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,the elephant and the cow : [EU].,the elephant and the cow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,umhm [~_long_pause] so you have told me what is in the picture can you tell me a story about it ?,umhm so you have told me what is in the picture can you tell me a story about it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,(cow) : (elephant) cow and a[EW:an] elephant [EU].,cow elephant cow and a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,umhm [~_long_pause] what is happen/ing ?,umhm what is happening +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,they are try/ing to find each other.,they are trying to find each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,the elephant and the cow had a[EW:an] accident with the ball[-:] .,the elephant and the cow had a accident with the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and (the eleph) the cow got in there.,and the eleph the cow got in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,the cow got what ?,the cow got what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,(he got in there) he got in[!] there [+_bch].,he got in there he got in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and the elephant got it.,and the elephant got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and the cow is still in there.,and the cow is still in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,(and : the cow) and (the) the cow is drip/ing.,and the cow and the the cow is dripping +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and she : has the ball.,and she has the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,there is (a slide cow and a[EW:an] elephant) : a cow and a[EW:an] elephant and a slide and a pool.,there is a slide cow and a elephant a cow and a elephant and a slide and a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and the elephant is run/ing and slip/ing.,and the elephant is running and slipping +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and the sand and the cow [EU].,and the sand and the cow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and she got hurt.,and she got hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,: she got hurt on her knee.,she got hurt on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,: and it hurted|hurt[EW:hurt].,and it hurted +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,: and she can not go in the pool[-:] .,and she can not go in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and she hurt herself.,and she hurt herself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,(uh the bo) the cow and the elephant [EU].,uh the bo the cow and the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,(the cow) the elephant has a ribbon and a dress.,the cow the elephant has a ribbon and a dress +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and[-:] the cow gots[EW:has] a[EW:an] airplane.,and the cow gots a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,(and) : and (uh) she got it.,and and uh she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and it got[EW:went] in the water.,and it got in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and the cow was mad[-:] .,and the cow was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and she is mad too.,and she is mad too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,both of them are all mad.,both of them are all mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and the elephant is get/ing it.,and the elephant is getting it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,: he try/ed and try/ed to get it.,he tried and tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,: she gots[EW:has] a net to catch it.,she gots a net to catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and she is go/ing to get it with the net.,and she is going to get it with the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and they got it back.,and they got it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and they are happy.,and they are happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,the rabbit (and the d) (the d) (he) she made (a) a sandcastle.,the rabbit and the d the d he she made a a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and the rabbit gots[EW:has] a shovel.,and the rabbit gots a shovel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and the rabbit want/3s to play[-:] .,and the rabbit wants to play +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,(and the s) (and he s g) something is go/ing to happen to the sandcastle.,and the s and he s g something is going to happen to the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and : it brokeded|broke[EW:broke].,and it brokeded +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and then (the) she is cry/ing.,and then the she is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,they got[EW:have] picnic basket/s [~_pronounced_/baeksIts/].,they got picnic baskets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and they are have/ing lunch.,and they are having lunch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,(and they are havi) and the rabbit is full.,and they are havi and the rabbit is full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and the rabbit is what?,and the rabbit is what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,full[-:] [+_bch].,full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,(and they are) (and) and (the) : she is hungry.,and they are and and the she is hungry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,(and the[-:]) (de[-:] ) and she go/3s to another lady.,and the de and she goes to another lady +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,: and : (sh) (she) she is go/ing to say hi.,and sh she she is going to say hi +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and[-:] there is the rabbit/z mom.,and there is the rabbit's mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,(the[-:]) there is a balloon and a wagon.,the there is a balloon and a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and she is carry/ing [EU].,and she is carrying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and the rabbit is not.,and the rabbit is not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,the rabbit is what?,the rabbit is what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,he is not carry/ing and the girl is just carry/ing it [+_bch].,he is not carrying and the girl is just carrying it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,what did you say the rabbit was carrying?,what did you say the rabbit was carrying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,nothing [+_bch].,nothing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and (there) the balloon is go/ing to[:_gon(na)] be poppeded|pop[EW:popped].,and there the balloon is going to be poppeded +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,: and the (rab) the rabbit is go/ing to take it off.,and the rab the rabbit is going to take it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,: and it is go/ing away.,and it is going away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,: and it got away.,and it got away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,: and they were go and get another one from the man [EU].,and they were go and get another one from the man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,can you take your fingers out of your mouth then I can hear your words better?,can you take your fingers out of your mouth then I can hear your words better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,they are pick/ing one.,they are picking one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,: and they are go/ing to[:_gonna] give one.,and they are going to give one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,(and : they are gon to go) the man said no.,and they are gon to go the man said no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,: (and) and (there is) there is the bunny/z mom.,and and there is there is the bunny's mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and : (he is) (the b) the rabbit said [~_high_pitched__voice] he will not give me a balloon.,and he is the b the rabbit said he will not give me a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,and : now (it xx) he is get/ing one.,and now it he is getting one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/410.slt,: and he got both : balloon/s.,and he got both balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,once upon a time.,once upon a time +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he is look/ing : apple/s [EU].,and he is looking apples +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and the apple/s fall into a pool.,and the apples fall into a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and (uh a buddy) (a) a guy (f) is catch/ing it.,and uh a buddy a a guy f is catching it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he get|get[EW:got] it.,and he get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he put it back.,and he put it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he be happy [EU].,and he be happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,once upon a time : are walk/ing in a pool [EU].,once upon a time are walking in a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he is look/ing backwards.,and he is looking backwards +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and a girl *is walk/ing [EU].,and a girl walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,(and a) and he stopp/ed.,and a and he stopped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he be worry/ed [EU].,and he be worried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he be scared [EU].,and he be scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he sit|sit[EW:sat] on a bench.,and he sit on a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he sit|sit[EW:sat] on a bench [~_new_page].,and he sit on a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,once upon a time : out walk/ing [EU].,once upon a time out walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he is fly/ing a plane.,and he is flying a plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,(and he) and he[!] is play/ing a plane.,and he and he is playing a plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,then he drop/ed it.,then he dropped it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,gone is sink/ing [EU].,gone is sinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and sink/ing [EU].,and sinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and sink/ing [EU].,and sinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and sink/ing [EU].,and sinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and sink/ing [EU].,and sinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and sink/ing [EU].,and sinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and sink/ing [EU].,and sinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he catch|catch[EW:caught] it.,and he catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he put it right back on his hand/s.,and he put it right back on his hands +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he be happy [EU].,and he be happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,: you can start once upon a time.,you can start once upon a time +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,once upon a time [+_bch].,once upon a time +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,: what do you see?,what do you see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,use words so I can hear you so my tape recorder can hear you.,use words so I can hear you so my tape recorder can hear you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,(hm) .,hm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,what has happen/ed?,what has happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,them[EW:they] *are build/ing [EU].,them building +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he *is throw/ing sand [EU].,and he throwing sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and : mess/ed all (d) up [EU].,and messed all d up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he be sad [EU].,and he be sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,: how do/3s it start?,how does it start +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,: once upon a time.,once upon a time +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,try again.,try again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,(hm) : and he is eat/ing.,hm and he is eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he is tired.,and he is tired +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he is go/ing *to sleep [EU].,and he is going sleep +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he is run/ing.,and he is running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he is hold/ing : his dress.,and he is holding his dress +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he : fall|fall[EW:fell] down.,and he fall down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he walk/3s.,and he walks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,once upon a time : [~_tells_EXA_to_turn_page].,once upon a time +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,[~_easy_xx_hm_##_hm_##_hm] : a tree.,a tree +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he *is catch/ing a balloon [EU].,and he catching a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and it pop/3s.,and it pops +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and xx want/3s the balloon/s.,and wants the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and she want/3s the balloon/s again.,and she wants the balloons again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and they pop/ed.,and they popped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and they pop/ed : again.,and they popped again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he is look/ing.,and he is looking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he get xx.,and he get +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he be happy [EU].,and he be happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,and he be happy again [EU].,and he be happy again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/477.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,There is an elephant and a giraffe (that).,There is an elephant and a giraffe that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,but the elephant is bounce/ing a ball so fast that the giraffe want/3s to try.,but the elephant is bouncing a ball so fast that the giraffe wants to try +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(and the elephant um) (and well the elephant and the giraffe) but the giraffe is try/ing to get the ball in the water.,and the elephant um and well the elephant and the giraffe but the giraffe is trying to get the ball in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,so he swam.,so he swam +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(and) (and the elephant was cover/ing eyes) (his eyes) and (um) the elephant was cover/ing his eyes.,and and the elephant was covering eyes his eyes and um the elephant was covering his eyes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and his trunk was full of stuff.,and his trunk was full of stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and then (h) he was happy.,and then h he was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and then the giraffe was happy.,and then the giraffe was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,then the : elephant start/ed to grab it from (the) the : giraffe/z hand/s.,then the elephant started to grab it from the the giraffe's hands +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and he said thank you.,and he said thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the (: um) elephant had the ball.,and the um elephant had the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the : giraffe was soak/ed.,and the giraffe was soaked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,so the giraffe ask/ed him if he could bounce it.,so the giraffe asked him if he could bounce it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(but he said) but the elephant laugh/ed.,but he said but the elephant laughed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and he said no.,and he said no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,There is the giraffe and the elephant.,There is the giraffe and the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the giraffe has a kleenex.,and the giraffe has a kleenex +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and they were go/ing to go in the water.,and they were going to go in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and : (um) the elephant was go/ing to go in the water.,and um the elephant was going to go in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,but the giraffe push/ed the elephant.,but the giraffe pushed the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and : so the elephant fell in the water.,and so the elephant fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the elephant slip/ed (when) when the giraffe was : run/ing after him so he would not slip.,and the elephant slipped when when the giraffe was running after him so he would not slip +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,but then the elephant : he got hurt [~_?].,but then the elephant he got hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and (the giraffe) [~_well] the elephant got hurt because (um) he slip/ed.,and the giraffe the elephant got hurt because um he slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the giraffe was run/ing : to see (what was ran) what was wrong.,and the giraffe was running to see what was ran what was wrong +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the elephant was cry/ing.,and the elephant was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the coach came to see.,and the coach came to see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the giraffe was just look/ing at the elephant.,and the giraffe was just looking at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and (then the) : then the coach start/ed to put a bandaid [EU].,and then the then the coach started to put a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the : elephant was cover/ing (ey) his eyes and (um) : do/ing kind of a mad [~_laughs] face.,and the elephant was covering ey his eyes and um doing kind of a mad face +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the : giraffe was just look/ing.,and the giraffe was just looking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,but : then the coach sat : the elephant down on a bench.,but then the coach sat the elephant down on a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the (uh : um) giraffe was just : (um) hold/ing his hands like this [~_gestures].,and the uh um giraffe was just um holding his hands like this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the coach was point/ing his finger.,and the coach was pointing his finger +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(and he is) and the elephant : was hold/ing : his hands right between his legs.,and he is and the elephant was holding his hands right between his legs +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(and then : he) and then the elephant (: um) had a kind of a mad face again.,and then he and then the elephant um had a kind of a mad face again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,The giraffe and the elephant [EU].,The giraffe and the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and (the elephant was) [~_well] the giraffe was hold/ing the (airplane) toy airplane.,and the elephant was the giraffe was holding the airplane toy airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(and then the) and the : elephant want/ed to play with him.,and then the and the elephant wanted to play with him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(but the) (but : he was still play/ing with it : but) [~_I__mean] the giraffe was still play/ing with it.,but the but he was still playing with it but the giraffe was still playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and he : was : make/ing the elephant not catch it.,and he was making the elephant not catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,but the : elephant finally caught it.,but the elephant finally caught it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and then he start/ed play/ing with it.,and then he started playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the giraffe was start/ing to get mad.,and the giraffe was starting to get mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(but the : po) but the toy plane went in the water.,but the po but the toy plane went in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(so the two guy) but the : giraffe and the elephant : (um) put their mouth like this [~_makes_facial_gesture].,so the two guy but the giraffe and the elephant um put their mouth like this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,but then the : giraffe was really mad.,but then the giraffe was really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the : elephant was ( still ga) still look/ing at the airplane.,and the elephant was still ga still looking at the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the coach came.,and the coach came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(and the) and (he) he was look/ing at the giraffe.,and the and he he was looking at the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,so : (um) the elephant was tell/ing him what happen/ed.,so um the elephant was telling him what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and then (the um) the : plane start/ed to sink even more.,and then the um the plane started to sink even more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(and the : the elephant) but (the elep) [~_I_mean] the coach went over to the : elephant.,and the the elephant but the elep the coach went over to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the giraffe was (um) look/ing at (the) the two : elephant/s.,and the giraffe was um looking at the the two elephants +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the elephant was : scream/ing his head off.,and the elephant was screaming his head off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and he was tell/ing the coach what happen/ed.,and he was telling the coach what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,but the coach had to grab it before it sank all to the bottom.,but the coach had to grab it before it sank all to the bottom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,but he could not reach it.,but he could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the : giraffe was start/ing to cry.,and the giraffe was starting to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,but this other elephant : came with a net and try/ed to get it.,but this other elephant came with a net and tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the (um) plane was started[EW:starting] to sinking[EW:sink] more.,and the um plane was started to sinking more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,but he still could not reach it.,but he still could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,but he finally got it.,but he finally got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and he gave it back to the giraffe.,and he gave it back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(now : the) now the giraffe and the elephant (were happily) were happy.,now the now the giraffe and the elephant were happily were happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,There is a bunny rabbit and a dog : make/ing a sandcastle.,There is a bunny rabbit and a dog making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(there is the bunny and the dog that : um : are :) (um : well) the bunny rabbit is dig/ing the sand up.,there is the bunny and the dog that um are um well the bunny rabbit is digging the sand up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the : dog is : (um) make/ing the sandcastle smoother.,and the dog is um making the sandcastle smoother +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the bunny rabbit was pour/ing sand all over the sandcastle.,and the bunny rabbit was pouring sand all over the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,so the dog was : (um) : start/ing to (s um) (uh) get sad.,so the dog was um starting to s um uh get sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(but the) but half of the : sandcastle was left.,but the but half of the sandcastle was left +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,then the : dog (is) was start/ing to cry.,then the dog is was starting to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and he was start/ing to make it all over again.,and he was starting to make it all over again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,There is a : bunny rabbit and a dog that : are go/ing to[:_gonna] have lunch together.,There is a bunny rabbit and a dog that are going to have lunch together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,there is a bunny and a dog that are : have/ing[!] lunch.,there is a bunny and a dog that are having lunch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,there is the bunny and the dog.,there is the bunny and the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(but the bunny) (but) but the (bu) dog is eat/ing.,but the bunny but but the bu dog is eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(and the bunny is) (and the bunny is chew) and the bunny is sick.,and the bunny is and the bunny is chew and the bunny is sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,the bunny : (um is) : does not feel good.,the bunny um is does not feel good +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the : dog does feel good.,and the dog does feel good +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,there is a : bunny and a dog.,there is a bunny and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,but the (bu) bunny is a mess.,but the bu bunny is a mess +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(and the bunny is go/ing to : well) the dog is go/ing to tell the other bunny that : (um) he has to : fix him.,and the bunny is going to well the dog is going to tell the other bunny that um he has to fix him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,but he pull/ed him because he will not [EU].,but he pulled him because he will not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and he made him worse.,and he made him worse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and then the bunny felt good.,and then the bunny felt good +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the : dog was just : by the sandbox.,and the dog was just by the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,There is a bunny and a dog.,There is a bunny and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(and) but the dog (s) has a balloon on his wagon.,and but the dog s has a balloon on his wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and he is pull/ing the wagon.,and he is pulling the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the bunny : rabbit : seen|see[EW:saw] the balloon.,and the bunny rabbit seen the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and (he) he was go/ing to[:_gonna] not : try to take the balloon off [EU].,and he he was going to not try to take the balloon off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,but the dog did not want him to.,but the dog did not want him to +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the balloon (fl) flew away.,and the balloon fl flew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and both of them were try/ing to catch it.,and both of them were trying to catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(the bunny rabbit : the dog) but the dog was (rea) really mad at him.,the bunny rabbit the dog but the dog was rea really mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(the : rabbit was) [~_well] there is a big rabbit that : had a lot of balloon/s.,the rabbit was there is a big rabbit that had a lot of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(and the bunny rabbit) (but) (and the dog) but the dog was still mad.,and the bunny rabbit but and the dog but the dog was still mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the (w) bunny rabbit went to get another one.,and the w bunny rabbit went to get another one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and he asked the man that has all the balloon/s : could I have one?,and he asked the man that has all the balloons could I have one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,but they were only five cent/s.,but they were only five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and he did not have five cent/s.,and he did not have five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,"and then he said : if you do not have five cent/s, you can not (um) take a balloon.",and then he said if you do not have five cents you can not um take a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,then the : dog and the bunny (ra) rabbit seen|see[EW:saw] the doctor.,then the dog and the bunny ra rabbit seen the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the bunny rabbit ran.,and the bunny rabbit ran +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,but the : dog stay/ed.,but the dog stayed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and the : bunny rabbit said I want one of those balloon/s.,and the bunny rabbit said I want one of those balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and he will not give me it.,and he will not give me it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(then he : um) and the doctor had a lot of money.,then he um and the doctor had a lot of money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,so he gave him most of his money.,so he gave him most of his money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and : there is[Ew:are] only two left because (the bunny rab) the dog took most of them.,and there is only two left because the bunny rab the dog took most of them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,and (the bunny and the wa) (the bunny and the wa) [~_I__mean] the bunny and the dog had (the two balloo) the balloon/s.,and the bunny and the wa the bunny and the wa the bunny and the dog had the two balloo the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/603.slt,(and the) (then they went) and both of them were really happy.,and the then they went and both of them were really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,[~_Well] (a giraffe and a) a giraffe is watch/ing (a) an elephant : juggle : a ball.,a giraffe and a a giraffe is watching a an elephant juggle a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and : the ball get/3s stuck in (some wa) (cement or) a pool.,and the ball gets stuck in some wa cement or a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the horse is swim/ing in to get it.,and the horse is swimming in to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and : he give/3s : the elephant (the balloon) the : ball.,and he gives the elephant the balloon the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and then he step/3s : out.,and then he steps out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and he is wet.,and he is wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the : elephant is happy.,and the elephant is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,(Well an ele) an elephant and giraffe are look/ing at the pool.,Well an ele an elephant and giraffe are looking at the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,(and there is) and there is something behind a rock or something else.,and there is and there is something behind a rock or something else +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and it look/3s like bunny ear/s.,and it looks like bunny ears +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the elephant is talk/ing about the bunny ear/s.,and the elephant is talking about the bunny ears +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,(and they run) and they run to see him.,and they run and they run to see him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and then the elephant do/3s a stretch.,and then the elephant does a stretch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,(and) and then there is a swipe and hurt/3s her knee [EU].,and and then there is a swipe and hurts her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and then xx her knee.,and then her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the giraffe is come/ing after [EU].,and the giraffe is coming after +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and a lifeguard come/3s over to them.,and a lifeguard comes over to them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and he is put/ing a bandaid on the knee.,and he is putting a bandaid on the knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and then they sit in a bench.,and then they sit in a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the lifeguard is point/ing to a sign that says no run/ing.,and the lifeguard is pointing to a sign that says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,[~_Well] there is a giraffe : and a[EW:an] elephant by a pool.,there is a giraffe and a elephant by a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the : (gir) giraffe has an airplane.,and the gir giraffe has an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and he is fly/ing it around in his hand.,and he is flying it around in his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and suddenly the elephant grab/3s (the) the airplane : and drop/3s it in the pool.,and suddenly the elephant grabs the the airplane and drops it in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and it is sink/ing.,and it is sinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the giraffe is mad at the elephant.,and the giraffe is mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the lifeguard is look/ing at them both and the airplane.,and the lifeguard is looking at them both and the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the elephant is tell/ing the : lifeguard about (what) what happen/ed.,and the elephant is telling the lifeguard about what what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the lifeguard is : reach/ing to get the airplane.,and the lifeguard is reaching to get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,but he can not (reach it) quite reach it.,but he can not reach it quite reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the : giraffe is : (like) pant/ing.,and the giraffe is like panting +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and : the elephant is (um : kind) kind of nervous or : sad.,and the elephant is um kind kind of nervous or sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,the lifeguard kind of has a smell.,the lifeguard kind of has a smell +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and his ear/s are go/ing up.,and his ears are going up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and then (a) (an ele) a girl elephant come/3s along with a net.,and then a an ele a girl elephant comes along with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and she net/3s the airplane out.,and she nets the airplane out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and she give/3s (it) it to the giraffe.,and she gives it it to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and then (the gir) the giraffe hug/3s the airplane.,and then the gir the giraffe hugs the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,a rabbit and a mouse are play/ing in the sand.,a rabbit and a mouse are playing in the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and they are build/ing a sandcastle.,and they are building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,(with) and the rabbit is fill/ing : a bucket.,with and the rabbit is filling a bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the mouse is flatten/ing the castle.,and the mouse is flattening the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and then the rabbit he pour/3s the : sand on the castle.,and then the rabbit he pours the sand on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the mouse has a kind of a whiny face because : he is surprise/ed he is do/ing that.,and the mouse has a kind of a whiny face because he is surprised he is doing that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and he wreck/3s the sandcastle [~_laughs].,and he wrecks the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,(and then they) and now they are build/ing it again.,and then they and now they are building it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,[~_well] : (um) a mouse and rabbit are go/ing for a picnic.,um a mouse and rabbit are going for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and : they are at their picnic eat/ing the food.,and they are at their picnic eating the food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the rabbit is very hot because he look/3s hot.,and the rabbit is very hot because he looks hot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,(and) and the rabbit is full.,and and the rabbit is full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the mouse is : drink/ing juice.,and the mouse is drinking juice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the rabbit is like : really full.,and the rabbit is like really full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and then there is a doctor rabbit.,and then there is a doctor rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the mouse is : run/ing over to him.,and the mouse is running over to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the mouse is pull/ing him over.,and the mouse is pulling him over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and he see/3s the rabbit.,and he sees the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and (his) (his) his stomach is really full.,and his his his stomach is really full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and then he take/3s him off to the doctor/z [~_laughs].,and then he takes him off to the doctor's +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,[~_Well] a mouse : went to a party : (he) because it look/3s pretty.,a mouse went to a party he because it looks pretty +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,(much like) there is a party balloon.,much like there is a party balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the rabbit is look/ing at the balloon.,and the rabbit is looking at the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the rabbit is try/ing to untie it.,and the rabbit is trying to untie it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and : he untie/3s it and accidentally let/3s go.,and he unties it and accidentally lets go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the balloon is float/ing away.,and the balloon is floating away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and then they are in a big : fit.,and then they are in a big fit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,[~_well] : the mouse is really mad.,the mouse is really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the rabbit is like terrifyed because the balloon (fel) float/ed away.,and the rabbit is like terrifyed because the balloon fel floated away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and then they see : a rabbit sell/ing balloon/s.,and then they see a rabbit selling balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and : the rabbit is point/ing to the balloon up in the sky.,and the rabbit is pointing to the balloon up in the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,(and) : and : the : (um) rabbit show/3s him a balloon.,and and the um rabbit shows him a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and it say/3s balloon/s five cent/s.,and it says balloons five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the rabbit is look/ing in his pocket/s for five cent/s.,and the rabbit is looking in his pockets for five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and (the) (the man) the rabbit is hold/ing the balloon/s.,and the the man the rabbit is holding the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and the mouse and : rabbit are look/ing at him.,and the mouse and rabbit are looking at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,(and then th) and the mouse (is) stay/s (behind) (aside) beside the balloon man.,and then th and the mouse is stays behind aside beside the balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,the rabbit go/3s to get the doctor : (uh) rabbit again.,the rabbit goes to get the doctor uh rabbit again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and he say/3s there is a balloon man.,and he says there is a balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and : we do not have any money.,and we do not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,(and the um : doctor) and the doctor rabbit is give/ing (the) (the b) : the balloon man some money : so they can have the balloon.,and the um doctor and the doctor rabbit is giving the the b the balloon man some money so they can have the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and then they get the balloon/s.,and then they get the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/655.slt,and everybody is smile/ing.,and everybody is smiling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,one[-:] day[-:] : some kid/s were[-:] at a swimming pool.,one day some kids were at a swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,one of the kid/s had a[-:] big bouncy ball.,one of the kids had a big bouncy ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,the other kid want/ed to try it.,the other kid wanted to try it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,he accidentally drop/ed it into the water.,he accidentally dropped it into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,the other kid was scare/ed that it would go to the bottom.,the other kid was scared that it would go to the bottom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,so[-:] the kid that drop/ed it went into the pool and got it.,so the kid that dropped it went into the pool and got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,the other friend : said thank you.,the other friend said thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,: and the other friend gave the[-:] : other kid : her ball back.,and the other friend gave the other kid her ball back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,one day some kid/s went to a swimming pool.,one day some kids went to a swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,one of the kid/s said let us jump in!,one of the kids said let us jump in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,the kid : want/ed to jump in.,the kid wanted to jump in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,but she[-:] slip/ed.,but she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,and she fell on the ground and scrape/ed her knee.,and she fell on the ground and scraped her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,then the lifeguard came to help her.,then the lifeguard came to help her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,he put a bandaid on.,he put a bandaid on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,they sat her down on the bench : to rest for a while.,they sat her down on the bench to rest for a while +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,then the lifeguard point/ed to a sign that says no run/ing.,then the lifeguard pointed to a sign that says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,one day two kid/s were play/ing by a swimming pool.,one day two kids were playing by a swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,one of the kid/s had brought an airplane to play with.,one of the kids had brought an airplane to play with +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,they were play/ing with it.,they were playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,and the other kid snatch/ed it from their hand/s.,and the other kid snatched it from their hands +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,and she accidentally drop/ed it in the water.,and she accidentally dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,the other friend got really mad at her.,the other friend got really mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,the airplane was sink/ing : more : into the water.,the airplane was sinking more into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,(then the k) then the kid who put it in the water by accident : said : to the lifeguard the airplane got drop/ed in the water!,then the k then the kid who put it in the water by accident said to the lifeguard the airplane got dropped in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,the lifeguard try/ed to reach it with his hand/s.,the lifeguard tried to reach it with his hands +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,but his arm/s were too short.,but his arms were too short +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,the other kid who had brought the airplane start/ed cry/ing.,the other kid who had brought the airplane started crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,then : one of the people who were[EW:was] swim/ing saw the airplane : and got out of the pool got a : fish/ing net and : told them that : they would get the airplane for them.,then one of the people who were swimming saw the airplane and got out of the pool got a fishing net and told them that they would get the airplane for them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,(they) they reach/ed into the water.,they they reached into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,and[-:] (sh) she got the airplane caught in the net.,and sh she got the airplane caught in the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,and she gave the airplane to the kid who brought it.,and she gave the airplane to the kid who brought it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,and that kid kept it : and did not let other kid/s play with it by the pool.,and that kid kept it and did not let other kids play with it by the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,one day two friend/s were in a sandbox play/ing together.,one day two friends were in a sandbox playing together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,they were build/ing a sandcastle.,they were building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,one of the[-:] kid/s : dump/ed a bucket of sand on one end of the castle.,one of the kids dumped a bucket of sand on one end of the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,and that end collapse/ed.,and that end collapsed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,and the other friend : start/ed cry/ing.,and the other friend started crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,one day two friend/s were go/ing for a picnic.,one day two friends were going for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,one of the[-:] : friend/s ate[-:] : too much.,one of the friends ate too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,when they were done they had a big tummyache.,when they were done they had a big tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,: and they really want/ed to go home.,and they really wanted to go home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,so one of the friend/s : went : to see a doctor.,so one of the friends went to see a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,they pull/ed the doctor by his sleeve to bring him over to the other friend.,they pulled the doctor by his sleeve to bring him over to the other friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,the doctor said do not eat so much next time you have a picnic.,the doctor said do not eat so much next time you have a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,and the doctor took : the other friend to his house.,and the doctor took the other friend to his house +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,one day in the forest two friend/s : were walk/ing.,one day in the forest two friends were walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,one of the[-:] friend/s had a wagon with a balloon tie/ed to it.,one of the friends had a wagon with a balloon tied to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,one of the friend/s want/ed : to touch it.,one of the friends wanted to touch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,(so they a) so they took it off the wagon.,so they a so they took it off the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,pretty soon it : almost touch/ed the sky.,pretty soon it almost touched the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,and the other friend was mad at him.,and the other friend was mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,and the string was only left.,and the string was only left +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,so : the other : friend : got really really really mad at him.,so the other friend got really really really mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,so they both went to a balloon guy.,so they both went to a balloon guy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,the balloon guy said do you want to buy a balloon?,the balloon guy said do you want to buy a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,and then he also said five cent/s a balloon.,and then he also said five cents a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,and the rabbit : reach/ed into his pocket/s.,and the rabbit reached into his pockets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,but they were empty.,but they were empty +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,so[-:] the friend/s : just look/ed at him.,so the friends just looked at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,then one of the friend/s went to a doctor : and said : that guy is not let/ing us have a balloon!,then one of the friends went to a doctor and said that guy is not letting us have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,and then the doctor gave him five cent/s.,and then the doctor gave him five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,and they[-:] : got a balloon.,and they got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,and (the) then the doctor paid another five cent/s for the other friend.,and the then the doctor paid another five cents for the other friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,and he got a balloon too.,and he got a balloon too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/748.slt,and[-:] then : they both play/ed with their balloon/s all day.,and then they both played with their balloons all day +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,elephant [EU].,elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,zebra [EU].,zebra +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,what happen/3s in the story?,what happens in the story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,(ze) zebra [EU].,ze zebra +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,ball [EU].,ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,zebra and elephant [EU].,zebra and elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,(ze : um) elephant and zebra and ball [EU].,ze um elephant and zebra and ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,zebra and the[?] ball (an) : and the[?] elephant [EU].,zebra and the ball an and the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,zebra and the elephant and the ball [EU].,zebra and the elephant and the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,[~_um_why_I_need_this] (um) elephant and zebra [EU].,um elephant and zebra +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,elephant and zebra [EU].,elephant and zebra +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,elephant and zebra [EU].,elephant and zebra +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,(owie and uh) (owie) elephant has a[EW:an] owie.,owie and uh owie elephant has a owie +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,and the zebra do|do[EW:does] not has|have[EW:have] a[EW:an] owie.,and the zebra do not has a owie +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,there is[EW:are] two elephant/s.,there is two elephants +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,zebra [EU].,zebra +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,two elephant[EW:elephants] [EU].,two elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,two elephant/s and zebra [EU].,two elephants and zebra +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,two elephant/s and zebra [EU].,two elephants and zebra +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,two (ele) elephant/s (st) [EU].,two ele elephants st +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,no zebra [EU].,no zebra +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,elephant and zebra [EU].,elephant and zebra +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,(uh) : elephant and zebra [EU].,uh elephant and zebra +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,airplane [EU].,airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,(uh) elephant and zebra : airplane [EU].,uh elephant and zebra airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,elephant and zebra airplane [EU].,elephant and zebra airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,(uh) it is on [+_bch].,uh it is on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,what is that sound [+_bch]?,what is that sound +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,what is that sound in there [+_bch]?,what is that sound in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,(um) elephant and zebra and : airplane [EU].,um elephant and zebra and airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,elephant and zebra [EU].,elephant and zebra +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,elephant and zebra [EU].,elephant and zebra +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,two : elephant/s and zebra [EU].,two elephants and zebra +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,elephant and zebra and airplane [EU].,elephant and zebra and airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,elephant and zebra [EU].,elephant and zebra +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,elephant and zebra [EU].,elephant and zebra +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,elephant and zebra [EU].,elephant and zebra +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,elephant and zebra [EU].,elephant and zebra +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,elephant and zebra [EU].,elephant and zebra +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,elephant and zebra [EU].,elephant and zebra +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,bunny [EU].,bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,what happen/3s in the story?,what happens in the story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,(um) sandcastle [EU].,um sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,sandcastle [EU].,sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,sandcastle and puppy and bunny [EU].,sandcastle and puppy and bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,(sandcastle and bun) (uh : san) sandcastle and : (dog) doggy and rabbit [EU].,sandcastle and bun uh san sandcastle and dog doggy and rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,bunny [EU].,bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,*the sandcastle breaked|break[EW:broke] [EU].,sandcastle breaked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,a sandcastle breaked|break[EW:broke].,a sandcastle breaked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,they are make/ing it again.,they are making it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,(um) basket [EU].,um basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,puppy and : rabbit [EU].,puppy and rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,carrot [EU].,carrot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,I said a carrot that is it [+_bch].,I said a carrot that is it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,drink [EU].,drink +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,(pa) basket [EU].,pa basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,sandwich [EU].,sandwich +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,juice [EU].,juice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,I said juice [+_bch].,I said juice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,: what happen/3s in the story?,what happens in the story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,(um) tree [EU].,um tree +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,tree [EU].,tree +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,(tr) : tree [EU].,tr tree +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,tree [EU].,tree +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,tree [EU].,tree +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,(uh) balloon [EU].,uh balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,balloon [EU].,balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,balloon [EU].,balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,what happen/3s in the story?,what happens in the story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,balloon [EU].,balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,balloon [EU].,balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,fly away balloon.,fly away balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,(t) pop/ed the balloon [EU].,t popped the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,lot/s of balloon/s [EU].,lots of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,lot/s of balloon/s [EU].,lots of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,lot/s of balloon/s [EU].,lots of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,five balloon[EW:balloons] [EU].,five balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,lot/s of balloon/s [EU].,lots of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,I said lot/s of balloon/s [+_bch].,I said lots of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,lot/s of balloon/s [EU].,lots of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,yeah (uh) : lot/s of balloon/s [EU].,yeah uh lots of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,let us count the balloon/s (in here) in this picture.,let us count the balloons in here in this picture +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,[~_counts_balloons:_1_2_3_4_6_7_8_9]., +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,there is[EW:are] nine.,there is nine +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,two : balloon/s [EU].,two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,there is[EW:are] two balloon/s.,there is two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,none[EW:no] balloon[EW:balloons] [EU].,none balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,one balloon [EU].,one balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/444.slt,(two ba) the end [+_bch].,two ba the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,(um) the : (uh[-:]) : giraffe (s come/3s : to see uh) come/3s (on) : to swim in the water.,um the uh giraffe s comes to see uh comes on to swim in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then there is an elephant.,and then there is an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then (um) she is bounce/ing a ball.,and then um she is bouncing a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and (he um) he is ask/ing to play[-:] with her.,and he um he is asking to play with her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,they play volleyball.,they play volleyball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and : (um) it actually falled|fall[EW:fell] in the water by accident.,and um it actually falled in the water by accident +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,(he was go/ing to go in the sw) he was go/ing to swim to get it.,he was going to go in the sw he was going to swim to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then he (swan[-:]) swam in.,and then he swan swam in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then : the[-:] elephant had (um) her hand/s over her eye/s.,and then the elephant had um her hands over her eyes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and he had a mad face : cause he knew he could get it.,and he had a mad face cause he knew he could get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and : (um : the[-:]) : he got it.,and um the he got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,he gave it back to the elephant.,he gave it back to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then the elephant : (um) was go/ing to fall in love with the giraffe.,and then the elephant um was going to fall in love with the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,(um) they want/ed to go for a swim.,um they wanted to go for a swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and : she want/ed to try the diving board.,and she wanted to try the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,she did not see (um[-:]) no run/ing.,she did not see um no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,(she was gon) she was run/ing.,she was gon she was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and the[-:] (um[-:]) (ele) giraffe said (um) you : better not run it because he saw the sign.,and the um ele giraffe said um you better not run it because he saw the sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,but he did not tell the elephant.,but he did not tell the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and (she did not) she did not hear him.,and she did not she did not hear him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then she slip/ed[-:].,and then she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,she was run/ing to get her.,she was running to get her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,then she got a big owie.,then she got a big owie +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,she was cry/ing.,she was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then the lifeguard came over : and gave her a bandage.,and then the lifeguard came over and gave her a bandage +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,she was scare/ed[-:].,she was scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and now he said there (um) you have a bandaid now.,and now he said there um you have a bandaid now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and (he was m) the lifeguard was mad.,and he was m the lifeguard was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,don not run.,don not run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,did not you see the sign[-:] [EU].,did not you see the sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,(uh um the[-:]) : (a gir) the giraffe was walk/ing.,uh um the a gir the giraffe was walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then (um[-:]) a elephant came.,and then um a elephant came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and she want/ed to play with his (um) airplane.,and she wanted to play with his um airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,they were take/ing turn/s.,they were taking turns +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,(the um) : he was play/ing with it.,the um he was playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and : (um[-:]) the[-:] elephant was curious that it would go in the water [EU].,and um the elephant was curious that it would go in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then she took it away.,and then she took it away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then it land/ed in the water.,and then it landed in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and (th) he was mad at her.,and th he was mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,(she wa) she was curious what she could (um) do about it [EU].,she wa she was curious what she could um do about it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,then the lifeguard came.,then the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,(a) and : he saw that it was in the water.,a and he saw that it was in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,the giraffe told him that (um th) the elephant was (took) take/ing it away and threw it in the water [EU].,the giraffe told him that um th the elephant was took taking it away and threw it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then she said : I did not do it.,and then she said I did not do it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and (he did it by ac) he did it on purpose.,and he did it by ac he did it on purpose +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then (he was) the lifeguard was curious.,and then he was the lifeguard was curious +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and he was try/ing to reach it.,and he was trying to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,they were both curious that he could get it [EU].,they were both curious that he could get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then it was start/ing to sink more.,and then it was starting to sink more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then a girl[-:] came with a net.,and then a girl came with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then she scoop/ed it out : and gave it back to (um) the : (uh) giraffe.,and then she scooped it out and gave it back to um the uh giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then she said here have your airplane back.,and then she said here have your airplane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and he said thank/3s for get/ing it.,and he said thanks for getting it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and[-:] : they fell in love again [~_laughs].,and they fell in love again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,(um) a girl was build/ing a sandcastle.,um a girl was building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,the[-:] (um) bunny want/ed to play with her.,the um bunny wanted to play with her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and (he) : they dump/ed some sand.,and he they dumped some sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,she was pat/ing it down.,she was patting it down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then he put some sand on it.,and then he put some sand on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and (um) it broke.,and um it broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then (um) he said oh no.,and then um he said oh no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and she : (um) said it is okay.,and she um said it is okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and (he was) : she : was cry/ing.,and he was she was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,she was try/ing to make it again.,she was trying to make it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,(um) a boy and a girl was[EW:were] walk/ing along.,um a boy and a girl was walking along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and they were go/ing for a picnic with each other.,and they were going for a picnic with each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,he was eat/ing a lot of his [EU].,he was eating a lot of his +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and he had a lot of junk.,and he had a lot of junk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,he got so full.,he got so full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and he was get/ing sick[-:].,and he was getting sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and he said I need a (docor he) doctor.,and he said I need a docor he doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,(he) he felt dizzy.,he he felt dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,she was go/ing to[:_gonna] phone a doctor.,she was going to phone a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then : (um she) : there is a doctor walk/ing along.,and then um she there is a doctor walking along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then (um) she ran up to him.,and then um she ran up to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,she said (um) : my friend : he : has a stomachache.,she said um my friend he has a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,he is dizzy.,he is dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,he ate too much of junk [EU].,he ate too much of junk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and[-:] he said no.,and he said no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and she said come on come on.,and she said come on come on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,please help me.,please help me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then she said yes.,and then she said yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and : (um : he) he said you are dizzy.,and um he he said you are dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,your temperature is five[-:].,your temperature is five +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,now he is okay.,now he is okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and he went with the doctor home.,and he went with the doctor home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,(um : she) a girl was walk/ing along.,um she a girl was walking along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and a boy was walk/ing just for : a jog.,and a boy was walking just for a jog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and : then she *is just walk/ing[-:] with a balloon tie/ed to her wagon [EU].,and then she just walking with a balloon tied to her wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and : he want/ed to play with it.,and he wanted to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and she said no.,and she said no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and he was tie/ing it off the wheel.,and he was tying it off the wheel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then it float/ed up in the air.,and then it floated up in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then she was really mad at him.,and then she was really mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,he was scare/ed.,he was scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,he look/ed at the balloon.,he looked at the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and then : (they both s) : she was still angry at him.,and then they both s she was still angry at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and he saw a balloon[-:] guy.,and he saw a balloon guy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and he said can I have one of those balloon/s?,and he said can I have one of those balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and : you have to pay five cent/s.,and you have to pay five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and[-:] they both want/ed one.,and they both wanted one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,(she) he was curious that : (um) she was go/ing to[:__gonna] be really mad at him again [EU].,she he was curious that um she was going to be really mad at him again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and : (um) he went to (hi) : his mom.,and um he went to hi his mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and he was go/ing to (ask him) : ask her if he could have five cent/s.,and he was going to ask him ask her if he could have five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and[-:] : (uh) : she said yes.,and uh she said yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and (she le) (he letted|let[EW:let]) : (he) she gave (um) five cent/s to him.,and she le he letted he she gave um five cents to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and[-:] they both were happy that they (got a) both got a balloon.,and they both were happy that they got a both got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and they would not share theirs again.,and they would not share theirs again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/660.slt,and the mom (wa ha) was happy too.,and the mom wa ha was happy too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,(um) once upon a time there was a[EW:an] elephant.,um once upon a time there was a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and she was bounce/ing three ball/s.,and she was bouncing three balls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and giraffe came.,and giraffe came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,(and she try) and he want/ed to try.,and she try and he wanted to try +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and the elephant said okay.,and the elephant said okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then : the giraffe said I can not do it.,and then the giraffe said I can not do it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and (then one ball wen) then all three ball/s went into the : water.,and then one ball wen then all three balls went into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then the elephant and the giraffe said oh no.,and then the elephant and the giraffe said oh no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then the giraffe went : splash/ing in the water to get all three ball/s.,and then the giraffe went splashing in the water to get all three balls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then : the elephant got one ball.,and then the elephant got one ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,(and then he wa happ) and then she was happy.,and then he wa happ and then she was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,(um) once upon a time there was a little : giraffe.,um once upon a time there was a little giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and he want/ed to go swim/ing.,and he wanted to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,[~_well] he was try/ing to go in the diving board [EU].,he was trying to go in the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and he was scare/ed.,and he was scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then the elephant said I will try it out.,and then the elephant said I will try it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then : she was run/ing.,and then she was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then the giraffe was slow/ing down.,and then the giraffe was slowing down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then (n the) the elephant (stub/ed her) hurt her knee.,and then n the the elephant stubbed her hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,then : the lifeguard came.,then the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then : the lifeguard put a bandaid on her knee.,and then the lifeguard put a bandaid on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then : she was on a bench.,and then she was on a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then : [~_stern_voice] he put her on a timeout.,and then he put her on a timeout +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,that is it [+_bch].,that is it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,(um) once upon a time there was a little giraffe : and a little elephant.,um once upon a time there was a little giraffe and a little elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,(and) and the little giraffe was go/ing to throw his plane.,and and the little giraffe was going to throw his plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,[~_well] he thought it was go/ing to go in the water.,he thought it was going to go in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,then he try/ed.,then he tried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then he try/ed.,and then he tried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,[~_well] he did not let go.,he did not let go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then the elephant took it away.,and then the elephant took it away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then she threw it in the water.,and then she threw it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,then the giraffe was mad.,then the giraffe was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,then the lifeguard came.,then the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then he said you were on another timeout : for the elephant.,and then he said you were on another timeout for the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then the lifeguard said : I do not know if you should have a timeout.,and then the lifeguard said I do not know if you should have a timeout +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then the lifeguard was go/ing to : try to reach it.,and then the lifeguard was going to try to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,[~_well] he did not reach it.,he did not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,: then he did not know.,then he did not know +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then the giraffe was start/ing to cry.,and then the giraffe was starting to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,then this lady : elephant : came.,then this lady elephant came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and she got a net.,and she got a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and she was go/ing : to get it with the net.,and she was going to get it with the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then the lady : almost got it.,and then the lady almost got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then she got[!] it.,and then she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then : the giraffe was happy.,and then the giraffe was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,once upon a (tame) time there was a little rabbit and a little dog.,once upon a tame time there was a little rabbit and a little dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and the little dog (that was mak) it was make/ing : a sandcastle.,and the little dog that was mak it was making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and the rabbit join/ed in.,and the rabbit joined in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then (h) the rabbit try/ed to do it.,and then h the rabbit tried to do it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,well he did not get it right.,well he did not get it right +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then he dump/ed it on top.,and then he dumped it on top +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,(and then it did not) and the dog/z eye/s went crazy.,and then it did not and the dog's eyes went crazy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then the dog : his mouth (was) (he was kind of) it was kind of : crazy.,and then the dog his mouth was he was kind of it was kind of crazy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then it was try/ing to make it back.,and then it was trying to make it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,well it did not.,well it did not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,once upon a (tame) time there was a little rabbit and a little : (um) dog.,once upon a tame time there was a little rabbit and a little um dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then (they wer) they were go/ing for a picnic.,and then they wer they were going for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and the rabbit said hello.,and the rabbit said hello +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,would you like to : join my picnic?,would you like to join my picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,well the dog said no thank you.,well the dog said no thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,I will enjoy my picnic.,I will enjoy my picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then the rabbit was eat/ing all it/z stuff that it brought.,and then the rabbit was eating all it's stuff that it brought +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then he was get/ing so hot (that he) (that it : was get) that it was burn/ing.,and then he was getting so hot that he that it was get that it was burning +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then he was very fat.,and then he was very fat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then he was go/ing crazy.,and then he was going crazy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,(and then he saw) and (then she[!] saw) then the puppy saw a doctor.,and then he saw and then she saw then the puppy saw a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,(and then) and then she was bring/ing the : doctor to the rabbit.,and then and then she was bringing the doctor to the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then (sh) that rabbit saw the other rabbit.,and then sh that rabbit saw the other rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then : it took (it) that little rabbit to the doctor/z.,and then it took it that little rabbit to the doctor's +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,that is the end [+_bch].,that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,once upon a time there was a little rabbit and a little dog.,once upon a time there was a little rabbit and a little dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then the little : rabbit want/ed to have the balloon.,and then the little rabbit wanted to have the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then : it almost took it.,and then it almost took it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then he did not notice.,and then he did not notice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then he untie/ed it.,and then he untied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then he did not know : what was there.,and then he did not know what was there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,(and then it) and then the balloon went up up up.,and then it and then the balloon went up up up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then that : dog was mad at that rabbit.,and then that dog was mad at that rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then another rabbit came by with some more[!] balloon/s.,and then another rabbit came by with some more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then that (d um) rabbit want/ed a balloon.,and then that d um rabbit wanted a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then : he : saw he did not have any money.,and then he saw he did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then he did not get any balloon/s.,and then he did not get any balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and (then : one : rabbit) then that rabbit saw a nurse doctor.,and then one rabbit then that rabbit saw a nurse doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and (then that doctor) then that little : rabbit said can I have some money for one of those balloon/s?,and then that doctor then that little rabbit said can I have some money for one of those balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,and then he got one.,and then he got one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,: (and then he had) and then they had two for each.,and then he had and then they had two for each +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/549.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,Giraffe and : Elephant were : in the pool.,Giraffe and Elephant were in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,(and I wonder what were) (were) they were bounce/ing the ball.,and I wonder what were were they were bouncing the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,I wonder what will happen?,I wonder what will happen +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,the ball felled|fall[EW:fell] in the water.,the ball felled in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,Giraffe was swim/ing to get it.,Giraffe was swimming to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,(and) : and Giraffe got it.,and and Giraffe got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and Elephant said thank you.,and Elephant said thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and you are my hero.,and you are my hero +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,"Giraffe said oh, my pleasure.",Giraffe said oh my pleasure +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,(and) (and) and Elephant was engage/ed with him [EU].,and and and Elephant was engaged with him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,Elephant and Giraffe were : by the pool.,Elephant and Giraffe were by the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,(they) I wonder what will happen?,they I wonder what will happen +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,: Elephant was run/ing.,Elephant was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,(and) : and I wonder what will happen?,and and I wonder what will happen +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,she slip/ed.,she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,: and she got a[EW:an] owie.,and she got a owie +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and : she[-:] was cry/ing.,and she was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and : Giraffe (wa) is go/ing to help her.,and Giraffe wa is going to help her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and the lifeguard came : (and ss) and gave her a bandaid.,and the lifeguard came and ss and gave her a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,she was so sad that (sh) he had to put a big[!] bandaid on.,she was so sad that sh he had to put a big bandaid on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,then the lifeguard let her sit down for awhile.,then the lifeguard let her sit down for awhile +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,the lifeguard was so mad.,the lifeguard was so mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and it said no run/ing.,and it said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and (ii) she was so sad.,and ii she was so sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,Giraffe and Elephant were at the pool.,Giraffe and Elephant were at the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,: Giraffe had a[EW:an] airplane.,Giraffe had a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,Elephant took it away from him.,Elephant took it away from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,he was so upset.,he was so upset +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,it felled|fall[EW:fell] in the pool[-:]!,it felled in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,(ele) and Giraffe got so mad that he (wanted) said that he want/ed a new one.,ele and Giraffe got so mad that he wanted said that he wanted a new one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and she took (toward) to the lifeguard and said can you get that?,and she took toward to the lifeguard and said can you get that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and he said : did you do this ?,and he said did you do this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,(and he will) and she will say no.,and he will and she will say no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,(she wa) she was cry/ing and said that : all right : I[!] did it.,she wa she was crying and said that all right I did it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,this is the truth.,this is the truth +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,I throwed|throw[EW:threw] it in the pool.,I throwed it in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,the lifeguard crawl|crawl[EW:crawled] and try|try[EW:tried] to get it.,the lifeguard crawl and try to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,I wonder what will happen?,I wonder what will happen +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,he could not get it.,he could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and : Giraffe start/ed to cry.,and Giraffe started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and a girl lifeguard had a net.,and a girl lifeguard had a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,(and try) and she got it.,and try and she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and : she did.,and she did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,Giraffe was so happy that he did not have to have a new one.,Giraffe was so happy that he did not have to have a new one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and then he love/ed it.,and then he loved it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and he never ever : ever[!] let : Elephant played|play[EW:play] with it ever again.,and he never ever ever let Elephant played with it ever again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,this[!] rabbit is go/ing to : make a sandcastle with this[!] dog.,this rabbit is going to make a sandcastle with this dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,the rabbit is : put/ing sand in the pail when the dog was make/ing : a sandcastle.,the rabbit is putting sand in the pail when the dog was making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,: the rabbit pour/ed the sand onto the : sandcastle.,the rabbit poured the sand onto the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,the dog was sad.,the dog was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,the dog work/ed so hard.,the dog wrought so hard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,(she start/ed) (she was go/ing) (she wa) the rabbit was : upset : because he was go/ing to make another[!] one.,she started she was going she wa the rabbit was upset because he was going to make another one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,the dog was cry/ing.,the dog was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,the rabbit was disappoint/ed.,the rabbit was disappointed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,(rabbit : and) : Rabbit saw the dog.,rabbit and Rabbit saw the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,(dog) the dog wave/ed at Rabbit.,dog the dog waved at Rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,they were walk/ing to a picnic.,they were walking to a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,: the : rabbit was so hungry that he had too many junks [EU].,the rabbit was so hungry that he had too many junks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,(the ra) (the) : the dog had a sandwich : first.,the ra the the dog had a sandwich first +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,soon : the rabbit was fat : and full.,soon the rabbit was fat and full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,the dog was still hungry.,the dog was still hungry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,then the : rabbit got dizzy.,then the rabbit got dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,(the ra) and : the dog look/ed at him.,the ra and the dog looked at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,the dog saw his mother.,the dog saw his mother +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,: and he said that : Rabbit is hurt.,and he said that Rabbit is hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,he do/3s not feel well.,he does not feel well +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,then (he pu) the dog pull/ed : (his) (his mother) [~_no] the rabbit/z mother : to see him.,then he pu the dog pulled his his mother the rabbit's mother to see him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and he was very ill.,and he was very ill +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,: (the r) the rabbit ate too much junk.,the r the rabbit ate too much junk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,(and) : and his mother was : a doctor.,and and his mother was a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,so : she took care of him.,so she took care of him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and she took him to his house.,and she took him to his house +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and (he) she said to the dog : he will be okay.,and he she said to the dog he will be okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,the dog was : (going) : go/ing for a walk with [<~?_the]a[>~?_the] wagon.,the dog was going going for a walk with a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,then Rabbit show/ed up.,then Rabbit showed up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,he said hi.,he said hi +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and I wonder what will happen?,and I wonder what will happen +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,Rabbit saw the balloon.,Rabbit saw the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and : the dog said : be careful.,and the dog said be careful +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,: the rabbit untie/ed the balloon.,the rabbit untied the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,(the) : the dog was disappoint/ed.,the the dog was disappointed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,then Rabbit let go.,then Rabbit let go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,(and dog) and Dog was worry/ed.,and dog and Dog was worried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and (he want/ed) she want/ed her balloon back.,and he wanted she wanted her balloon back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and : she got very mad at Rabbit.,and she got very mad at Rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,(he al) he always bug/3s her.,he al he always bugs her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,then : (the) : the balloon man : was carry/ing some balloon/s.,then the the balloon man was carrying some balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and the dog was still mad.,and the dog was still mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,he said (that) may I have a (ye) white one?,he said that may I have a ye white one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,(and the) and the balloon man said sure.,and the and the balloon man said sure +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,(when) (when he got to) when got : to : his pocket : and pull/ed down the balloon : it was : five cent/s.,when when he got to when got to his pocket and pulled down the balloon it was five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and he did not have no five cent/s [EU].,and he did not have no five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and (he was) he was sad.,and he was he was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,then the balloon man : put the balloon up again : and did not listen to him.,then the balloon man put the balloon up again and did not listen to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,then the rabbit went to the doctor again.,then the rabbit went to the doctor again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,she had : money.,she had money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and he want/ed five cent/s.,and he wanted five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,he ask/ed [~_pronounced_'askeded'] if you can buy me a balloon : two of us because I do not have no[EW:any] more money [EU].,he asked if you can buy me a balloon two of us because I do not have no more money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and she said yes.,and she said yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,(and) : (and she[-:]) and he took two balloon/s to them (and ga) and one of the money [EU].,and and she and he took two balloons to them and ga and one of the money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,they were happy.,they were happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/827.slt,and the doctor was happy too that : they have balloon/s.,and the doctor was happy too that they have balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,first they have (balling) bowling balls.,first they have balling bowling balls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,: (secon) second they drop|drop[EW:dropped] one.,secon second they drop one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,third : he try/ed to swim and got|get[EW:get] it.,third he tried to swim and got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,after : she got the ball.,after she got the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,: after he try/ed to jump with the bowling ball.,after he tried to jump with the bowling ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,that is a silly idea.,that is a silly idea +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,you will fall down and hurt yourself.,you will fall down and hurt yourself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,first : they saw the thing.,first they saw the thing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and they want/ed to jump.,and they wanted to jump +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and then they ran.,and then they ran +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,: (and) and then she ran too fast.,and and then she ran too fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,then she fell down and hurt shes[EW:her] knee.,then she fell down and hurt shes knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,: and she cried.,and she cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and the coach help/ed her up : and put a bandage and put her on the bench.,and the coach helped her up and put a bandage and put her on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,: after (she) the coach said do not run because it is wet and slippery.,after she the coach said do not run because it is wet and slippery +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,should not run like that.,should not run like that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,(first they) first the elephant saw the giraffe/z airplane.,first they first the elephant saw the giraffe's airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,: and then he flied|fly[EW:flew] it.,and then he flied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and (the) the elephant want|want[EW:wanted] to tried[EW:try] it.,and the the elephant want to tried it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,then she try/ed it.,then she tried it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and then it accidentally drop/ed on the water.,and then it accidentally dropped on the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and (the) the giraffe was angry.,and the the giraffe was angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and then (the coach) (the um) the coach said what is happen/ing?,and then the coach the um the coach said what is happening +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and she said I accidentally flied|fly[EW:flew] it.,and she said I accidentally flied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,it *is gone on the river [EU].,it gone on the river +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,(the coa) the coach (trie um) (s s) try/ed to help.,the coa the coach trie um s s tried to help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,the coach could not help.,the coach could not help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,(this) after the giraffe has tear/s because he want/3s his airplane.,this after the giraffe has tears because he wants his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,after (the) the woman (in the net i got : um : um) had a net (and tried) and (um want) help/ed him to get it out.,after the the woman in the net i got um um had a net and tried and um want helped him to get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and then the woman try/ed.,and then the woman tried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and she got it.,and she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,: and then : the giraffe was happy.,and then the giraffe was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,after he hug/ed his airplane.,after he hugged his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,"they was[EW:were] make/ing a (ss) sandcastle, (the um) (the um) the dog.",they was making a ss sandcastle the um the um the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and then the rabbit came and help/ed it.,and then the rabbit came and helped it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,": and then : he got some sand, the rabbit.",and then he got some sand the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,he pour/ed it : on the sandcastle.,he poured it on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,he felled it down [EU].,he felled it down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,: and then the dog try/ed to make another one.,and then the dog tried to make another one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,but he could not.,but he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,they went for a picnic.,they went for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,they ate their food.,they ate their food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,they were full.,they were full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,: and then the rabbit had a stomachache.,and then the rabbit had a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and then he went to a doctor.,and then he went to a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and then he ask/ed the doctor to help his friend.,and then he asked the doctor to help his friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and then the doctor help/ed.,and then the doctor helped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,: (and then the doc) and then he was back to normal.,and then the doc and then he was back to normal +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,first they were (um) pull/ing (the) the balloon on a wagon.,first they were um pulling the the balloon on a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and then he show/ed it to his [~_pronounced_'hes'] friend.,and then he showed it to his friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and then the rabbit untie/ed it.,and then the rabbit untied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and then it flew away.,and then it flew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and then the dog is angry.,and then the dog is angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and then : (they) they saw : a man (buy/ing) (havin) have some balloon/s [EU].,and then they they saw a man buying havin have some balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and they want to[:_wanna] get one.,and they want to get one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and then he ask/ed for one.,and then he asked for one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and then (h) he show/ed how much it was for.,and then h he showed how much it was for +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and then (she) she said (not) not to take it.,and then she she said not not to take it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and then he ask/ed the doctor to pay.,and then he asked the doctor to pay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and then (he) he ask/ed (like) (like) doctor (um) I tooked|take[EW:took] a balloon off my friend/z wagon [EU].,and then he he asked like like doctor um I tooked a balloon off my friend's wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and it flew away.,and it flew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,and then he paid.,and then he paid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,after they both have balloon/s.,after they both have balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,(the f) (the) only the : dog has a balloon.,the f the only the dog has a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,both of them have a balloon.,both of them have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,"oh, now at the end they do.",oh now at the end they do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/604.slt,yeah [+_bch].,yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,(um) it look/3s like the giraffe and the[-:] elephant are play/ing basketball [~_that_(i)s_all].,um it looks like the giraffe and the elephant are playing basketball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,and the ball go/3s into the pool.,and the ball goes into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,the giraffe try/3s and jump/3s in and get|get[EW:gets] it.,the giraffe tries and jumps in and get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,(um) but the[-:] elephant get/3s it.,um but the elephant gets it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,and[-:] : the giraffe look/3s embarrass/ed.,and the giraffe looks embarrassed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,(um it um) the giraffe and the elephant want to[:_wanna] go swim/ing.,um it um the giraffe and the elephant want to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,(um the) [~_okay] : (the giraffe [~_I_mean]) the elephant want/3s to go : off the diving board.,um the the giraffe the elephant wants to go off the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,and she start/3s run/ing.,and she starts running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,and the sign say/3s no run/ing.,and the sign says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,and she slip/3s and fall/3s and : scrape/3s her knee.,and she slips and falls and scrapes her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,the lifeguard come/3s run/ing up to her : put/3s a bandaid on it.,the lifeguard comes running up to her puts a bandaid on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,and she is all better.,and she is all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,and then the lifeguard point/3s out the sign.,and then the lifeguard points out the sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,and she look/3s really really embarrass/ed : and guilty.,and she looks really really embarrassed and guilty +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,(um) the giraffe has an airplane in his hand.,um the giraffe has an airplane in his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,and the elephant : (um) really like/3s it.,and the elephant um really likes it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,(um) the giraffe : pretend/3s to fly it.,um the giraffe pretends to fly it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,and he is make/ing airplane noise/s.,and he is making airplane noises +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,the elephant get/3s jealous.,the elephant gets jealous +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,(the elephant) the elephant steal/s the : plane away from him.,the elephant the elephant steals the plane away from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,and[-:] I guess she try/3s to fly it.,and I guess she tries to fly it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,but it go/3s into the water.,but it goes into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,(uh the ele) and the giraffe get/3s mad.,uh the ele and the giraffe gets mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,the lifeguard come/3s up.,the lifeguard comes up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,the lifeguard say/3s what happen/ed ?,the lifeguard says what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,(the : oh) and the elephant explain/ed it to him.,the oh and the elephant explained it to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,so now the lifeguard is try/ing to get (the) the : plane back.,so now the lifeguard is trying to get the the plane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,and the lifeguard can not do nothing[EW:anything].,and the lifeguard can not do nothing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,the giraffe start/s cry/ing.,the giraffe starts crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,then (s a woman come/3s) another elephant come/3s up : with a net : scoop/3s the airplane out : and give/3s it back to the giraffe.,then s a woman comes another elephant comes up with a net scoops the airplane out and gives it back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,(the giraffe) and the giraffe is really really happy now.,the giraffe and the giraffe is really really happy now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,(the bunny and uh the dog uh) [~_oh] the dog has built (uh) a sandcastle.,the bunny and uh the dog uh the dog has built uh a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,and the bunny want/3s to help.,and the bunny wants to help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,(the bunny scoop/3s up uh uh a shovel) (uh a pi) : the bunny take/3s a shovel and scoop/3s up some sand.,the bunny scoops up uh uh a shovel uh a pi the bunny takes a shovel and scoops up some sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,and[-:] then she pour/3s it on the sandcastle.,and then she pours it on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,she bury/3s the sandcastle.,she buries the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,and the dog start/3s to cry.,and the dog starts to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,the dog and the bunny are have/ing a picnic.,the dog and the bunny are having a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,the bunny start/3s to eat.,the bunny starts to eat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,and she has a lot of junk food.,and she has a lot of junk food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,the bunny (uh) get/3s a really really big tummyache.,the bunny uh gets a really really big tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,(um) the dog do/3s not know what is happen/ing.,um the dog does not know what is happening +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,(the) the dog run/3s up to (the bunny/z mom) : [~_or] a doctor or something (and the) and pull/3s the doctor over : to see the bunny.,the the dog runs up to the bunny's mom a doctor or something and the and pulls the doctor over to see the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,the doctor : (um) : brang|bring[EW:brought] her back [~_I_I_I_do_n(o)t_know] : like maybe : gave her a painkiller or something.,the doctor um brang her back like maybe gave her a painkiller or something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,(but : but) but then the bunny feel/3s better.,but but but then the bunny feels better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,and then they walk away.,and then they walk away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,the dog has a balloon.,the dog has a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,the bunny want/3s to see the balloon.,the bunny wants to see the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,so the bunny untie/3s it from his wagon[!].,so the bunny unties it from his wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,the balloon float/3s up in the air.,the balloon floats up in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,(um) the dog get/3s mad.,um the dog gets mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,there is a balloon salesman on the other side of the park.,there is a balloon salesman on the other side of the park +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,(he wants) the bunny go/3s up to buy one.,he wants the bunny goes up to buy one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,but each balloon is five cent/s.,but each balloon is five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,and the bunny and the dog have no money.,and the bunny and the dog have no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,so the bunny run/3s up (to uh) to the doctor : and ask/3s (if she) if (she um) the doctor can (buy : uh) buy a balloon for a friend.,so the bunny runs up to uh to the doctor and asks if she if she um the doctor can buy uh buy a balloon for a friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,the doctor go/3s up (pays us) and pay/3s the balloon man.,the doctor goes up pays us and pays the balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/958.slt,(and now each) and now the dog and the bunny have a balloon.,and now each and now the dog and the bunny have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,there are two kid/s who find ball/s (on the si) on the sidewalk.,there are two kids who find balls on the si on the sidewalk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and (then they f) then (they) it fall/3s into the water.,and then they f then they it falls into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,(and they) and they do not want to[:_wanna] get wet.,and they and they do not want to get wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,but (the um) the moose (got it) (want/3s) get/3s the ball.,but the um the moose got it wants gets the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and he give/3s it back (to the li) to the elephant.,and he gives it back to the li to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and then he get/3s out of the water.,and then he gets out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and he is soak/ing.,and he is soaking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,they want to go swim/ing.,they want to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,but there is no run/ing allow/ed.,but there is no running allowed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,(ss) but they want (to run) to run and jump into the pool.,ss but they want to run to run and jump into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and (w) when the elephant is run/ing she slip/3s : and hurt/3s her knee.,and w when the elephant is running she slips and hurts her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and then : the giraffe get/3s the lifeguard.,and then the giraffe gets the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and he put/3s a bandaid on the knee.,and he puts a bandaid on the knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and then she is all better.,and then she is all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and then he (s) point/3s to the sign : and say/3s no[!] run/ing allow/ed.,and then he s points to the sign and says no running allowed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,(um : the uh) the giraffe and the elephant want to[:__wanna] throw the airplane and see if it (s) fall/3s into the water.,um the uh the giraffe and the elephant want to throw the airplane and see if it s falls into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,(and when) (and when) and he is go/ing to[:_gonna] start to throw [EU].,and when and when and he is going to start to throw +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,(and then) and then the elephant grab/3s it away : (and thr) and drop/3s it in the water.,and then and then the elephant grabs it away and thr and drops it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and then the giraffe get/3s really mad.,and then the giraffe gets really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,(and) : and (now) now (um) : now they have to go and get it : because the lifeguard is there.,and and now now um now they have to go and get it because the lifeguard is there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and now the elephant is say/ing : I drop/ed it in by accident.,and now the elephant is saying I dropped it in by accident +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,(and the el) and the lifeguard is go/ing to[:_gonna] get it.,and the el and the lifeguard is going to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,but he can not reach.,but he can not reach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,(and then its) and then there is someone who (swims ga) (ge) get/3s a net and : get/3s it (the end) : and give/3s it back.,and then its and then there is someone who swims ga ge gets a net and gets it the end and gives it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and now he is go/ing to[:_gonna] play with it.,and now he is going to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,(theres an) there is an elephant and a dog try/ing to build a sandcastle.,theres an there is an elephant and a dog trying to build a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and the dog want/3s (um) to break it sort of.,and the dog wants um to break it sort of +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and then when the rabbit pour/3s the sand on : (it gonna) it might break.,and then when the rabbit pours the sand on it gonna it might break +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and it break/3s down.,and it breaks down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,so now the dog try/3s to help him (buil) build it back.,so now the dog tries to help him buil build it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,The dog : and the rabbit [<~_no]want to go swim/ing[>~_no] are go/ing to have a picnic [EU].,The dog and the rabbit want to go swimming are going to have a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and the rabbit bring/3s carrot stuff.,and the rabbit brings carrot stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and the dog bring/3s : stuff with cheese and stuff.,and the dog brings stuff with cheese and stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and the rabbit is so full that the dog try/3s to eat the rest.,and the rabbit is so full that the dog tries to eat the rest +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,(and the dog) and then the rabbit get/3s sick.,and the dog and then the rabbit gets sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,(so) so the dog get/3s a doctor.,so so the dog gets a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and he pull/3s : him over : because someone got sick.,and he pulls him over because someone got sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and the doctor say/3s open your mouth.,and the doctor says open your mouth +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and say ah.,and say ah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and then the rabbit felt[!] better.,and then the rabbit felt better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,One day the rabbit and the dog : meet because the dog and the rabbit are walk/ing somewhere.,One day the rabbit and the dog meet because the dog and the rabbit are walking somewhere +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and then : they meet.,and then they meet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and the dog has a little balloon on his wagon.,and the dog has a little balloon on his wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and the rabbit sort of want/3s to pop it.,and the rabbit sort of wants to pop it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,(so) (and then he want/3s the) now he want/3s to undo (it) the balloon : and make it fly away.,so and then he wants the now he wants to undo it the balloon and make it fly away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and now the dog is sad because his balloon is gone.,and now the dog is sad because his balloon is gone +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,so now the dog get/3s really mad[!] at the rabbit.,so now the dog gets really mad at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and now the balloon is for sale.,and now the balloon is for sale +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,so the rabbit get/3s : one for his friend.,so the rabbit gets one for his friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,(five cent/s) but he do/3s not have five cent/s.,five cents but he does not have five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,so they can not get one.,so they can not get one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,but then there is a doctor.,but then there is a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,so they might ask him for five cent/s.,so they might ask him for five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,so they ask for five cent/s to get a balloon.,so they ask for five cents to get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,(and he give/3s them five ce) so he give/3s the guy five cent/s.,and he gives them five ce so he gives the guy five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,and they each get a balloon.,and they each get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/765.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,they were play/ing[-:].,they were playing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,they smile/ed.,they smiled +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and : a ball was (in the) : in the pool.,and a ball was in the in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,the boy he want/ed to catch : the ball.,the boy he wanted to catch the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,so he went in.,so he went in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and the elephant : girl : put her hand/s in front of her nose.,and the elephant girl put her hands in front of her nose +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and then he caught the ball for her.,and then he caught the ball for her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and she was smile/ing.,and she was smiling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and he was all wet.,and he was all wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and he was what?,and he was what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,he was all wet [+_bch].,he was all wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,is that the end ?,is that the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,yeah [+_bch].,yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,they found a pool[-:].,they found a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and then she was talk/ing to him.,and then she was talking to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and they runned|run[EW:ran] [-:].,and they runned +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and she got hurt.,and she got hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and somebody came and ran to her.,and somebody came and ran to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,she was cry/ing.,she was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,she was cry/ing so[-:][!] much : (that) : that the boy that ran to her gave her a bandaid.,she was crying so much that that the boy that ran to her gave her a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,she was sit/ing on a bench.,she was sitting on a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and : he got very greedy.,and he got very greedy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,he found (a airplane) : a toy airplane.,he found a airplane a toy airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,then he was play/ing with it.,then he was playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,she grab/ed it away from him.,she grabbed it away from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,then it fell in the water[-:].,then it fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and then he was mad at her.,and then he was mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,then a boy came walk/ing by[-:].,then a boy came walking by +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,then she told him something.,then she told him something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,then he was try/ing to catch it.,then he was trying to catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and then (they) he could not.,and then they he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,so he cry/ed[-:].,so he cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and then a girl[!] came down : with a fetcher.,and then a girl came down with a fetcher +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,with a what?,with a what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,with a fetcher to [+_bch].,with a fetcher to +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,oh a fetcher okay.,oh a fetcher okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and then she[!] try/ed and grab/ed it.,and then she tried and grabbed it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and she got it for him.,and she got it for him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and he was so[!] happy.,and he was so happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,they : made a sandcastle.,they made a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,(they sc) : they scoop/ed (some) some : sand.,they sc they scooped some some sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and (she dump/ed) the rabbit dump/ed : it (on) right on the sandcastle.,and she dumped the rabbit dumped it on right on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and it broke.,and it broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,then he was cry/ing (when i) when he was fix/ing it.,then he was crying when i when he was fixing it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and it is the end of the story [+_bch].,and it is the end of the story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,they went for a picnic.,they went for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,they ate[-:].,they ate +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and the rabbit got a tummyache.,and the rabbit got a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,she was so[-:] full : that she : was growl/ing.,she was so full that she was growling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,then the boy call/ed[!] someone.,then the boy called someone +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,then he grab/ed her to : the bunny.,then he grabbed her to the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,she check/ed her if she was well [EU].,she checked her if she was well +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,if she was what?,if she was what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,if she was well[!] [+_bch].,if she was well +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,then she was good.,then she was good +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and she did not have a tummyache any more.,and she did not have a tummyache any more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and (sh) they had a walk.,and sh they had a walk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,they had a stroller with a balloon in the front.,they had a stroller with a balloon in the front +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,they watch/ed the balloon if it was come/ing off.,they watched the balloon if it was coming off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and (he tie/ed it right on s) : (ti) she tie/ed it on so tight as she can.,and he tied it right on s ti she tied it on so tight as she can +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,then after it came up in the air.,then after it came up in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and after : the dog was so[!] greedy at her.,and after the dog was so greedy at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and then a balloon : man came.,and then a balloon man came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,(and h) and the rabbit said can we borrow a balloon?,and h and the rabbit said can we borrow a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and he said would you like this one?,and he said would you like this one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and he said yes[-:].,and he said yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,it is five[-:] dollar/s.,it is five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,(and he) and he check/ed if he had : much [EU].,and he and he checked if he had much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and then they did not get a balloon.,and then they did not get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and then : they ran[-:] to someone.,and then they ran to someone +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,they ask/ed her : (th) we want a balloon.,they asked her th we want a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and she did not know why.,and she did not know why +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,so she paid five dollar/s : to him.,so she paid five dollars to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and they gave : both of them a balloon.,and they gave both of them a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/530.slt,and they like/ed to play with it.,and they liked to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,once upon a time : they had three (ba) ball/s.,once upon a time they had three ba balls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,and one went in the river.,and one went in the river +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,: (and him immediately went to get it :) [~_no] (he falled|fall[EW:fell] in : and then) (and he got) [~_no_actually] (um) he went in *to swim to give it to (the : pi um) the elephant again [EU].,and him immediately went to get it he falled in and then and he got um he went in swim to give it to the pi um the elephant again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,(uh : an then) (an then um) and then (hir) it look/3s like they are in love.,uh an then an then um and then hir it looks like they are in love +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,once upon a time : the elephant went to run.,once upon a time the elephant went to run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,: (an then) and then they start run/ing.,an then and then they start running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,: (an her) (her) and her[EW:she] got a booboo.,an her her and her got a booboo +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,: and then his mom comed|come[EW:came] : put a bandaid on her.,and then his mom comed put a bandaid on her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,: and then her[EW:she] went back to her friend/s.,and then her went back to her friends +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,: and then he got mad at her.,and then he got mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,once upon a time : (he s) he show/ed the elephant his airplane.,once upon a time he s he showed the elephant his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,and then her[EW:she] grab/ed it (out of the) : out of his hand/s.,and then her grabbed it out of the out of his hands +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,and then her[EW:she] drop/ed it into the water by mistake [~_pronounced__astake].,and then her dropped it into the water by mistake +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,and then he got very [~_pronounced_wery] angry at her.,and then he got very angry at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,and then : the elephant comed|come[EW:came] and got wery angry (at the pi) (the um) at the elephant too [EU].,and then the elephant comed and got wery angry at the pi the um at the elephant too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,(uh) then he had (a) a talk.,uh then he had a a talk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,: and then he try and reach it [EU].,and then he try and reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,(an) and then : he start try/ing [EU].,an and then he start trying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,(an then) and then the girl come with the net : (got it for) *and got it for him [EU].,an then and then the girl come with the net got it for got it for him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,: (an then he) (and then he was happy) and he was happy.,an then he and then he was happy and he was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,and he hug/ed his airplane.,and he hugged his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,once upon a time : a dog was play/ing a castle.,once upon a time a dog was playing a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,and a bunny comed|come[EW:came] over to play with him.,and a bunny comed over to play with him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,(and th) (and when he) and he was hold/ing the castle.,and th and when he and he was holding the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,and he was (um) have/ing a shovel to (um) pick up the sand.,and he was um having a shovel to um pick up the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,and he was dump/ing on the castle.,and he was dumping on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,and then he broke the castle.,and then he broke the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,(and then) and then he start cry/ing.,and then and then he start crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,once upon a time they went on a picnic.,once upon a time they went on a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,(and) (and he) (and) (and som) [~_I_do_n(o)t__know_how_to_do_that_one] his tongue is out like this [~_CHI_sticks__tongue_out].,and and he and and som his tongue is out like this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,okay you are stick/ing your tongue out that is what it look/3s like.,okay you are sticking your tongue out that is what it looks like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,and I do not know how to do that part [+_bch].,and I do not know how to do that part +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,can you tell me in word/s?,can you tell me in words +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,(uh) : it look/3s like he is do/ing [~_child_sticking_tongue_out].,uh it looks like he is doing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,oh tongue out okay.,oh tongue out okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,and once upon a time when they was[EW:were] eat/ing : something (um) (it wa um) (it wa um) : he start to have a headache.,and once upon a time when they was eating something um it wa um it wa um he start to have a headache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,: and then the dog went to his mother : and try/ed : pull her (to the) to her kid bunny [EU].,and then the dog went to his mother and tried pull her to the to her kid bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,(and) and it start give/ing him medicine [EU].,and and it start giving him medicine +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,(and then he) and then they went on.,and then he and then they went on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,when he was go/ing to play at the park : the bunny went and touch/ed the balloon.,when he was going to play at the park the bunny went and touched the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,he did what with the balloon?,he did what with the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,touch/ed it [+_bch].,touched it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,and he try/ed to pull it off.,and he tried to pull it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,: and then it got go [EU].,and then it got go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,(an they was) (an) and the dog was angry.,an they was an and the dog was angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,no maybe the angry was not at that part the angry was this one [~__+_bch].,no maybe the angry was not at that part the angry was this one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,and he was angry.,and he was angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,and then he went on with balloon/s.,and then he went on with balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,and he gave the kid another balloon.,and he gave the kid another balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,and he said he want another balloon.,and he said he want another balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,and he said no (cause he got) because he need/ed to get five balloon/s because he want/3s five balloon/s.,and he said no cause he got because he needed to get five balloons because he wants five balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,xxx.,x +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,(an he ask/ed) (an the dog said can I have another) [~_no] the bunny said can I have another bunny for the dog?,an he asked an the dog said can I have another the bunny said can I have another bunny for the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,: and then the bunny went back to his mom.,and then the bunny went back to his mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,and he said : (he wo) (he will not give me another ba) he will not give me another balloon.,and he said he wo he will not give me another ba he will not give me another balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,: (so he did ge) so he give the kid/s two balloon/s [~_child__holds_up_two_fingers] [EU].,so he did ge so he give the kids two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/524.slt,: (and) (an they) and then they went off home.,and an they and then they went off home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,the elephant is play/ing with a ball.,the elephant is playing with a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the giraffe want|want[Ew:wanted] to play with it : with the elephant in the water.,and the giraffe want to play with it with the elephant in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and they drop/ed it in the water.,and they dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and then the giraffe was : go/ing to[:_gonna] swim and get it for the elephant.,and then the giraffe was going to swim and get it for the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the giraffe got it for the elephant.,and the giraffe got it for the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and she was happy.,and she was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and : she said : thank you to the giraffe.,and she said thank you to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,the elephant and the giraffe were go/ing swim/ing.,the elephant and the giraffe were going swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the elephant : was go/ing to [~_gonna] go in the water.,and the elephant was going to go in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and she slip/ed.,and she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and she hold|hold[EW:held] her knee.,and she hold her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and she was cry/ing.,and she was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and (the) her dad went to go see her : and put a bandaid on her owie.,and the her dad went to go see her and put a bandaid on her owie +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and then she have|have[EW:had] to sit on the bench.,and then she have to sit on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,(and she) and her dad said no run/ing.,and she and her dad said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,the elephant and the giraffe were play/ing with a[EW:an] airplane.,the elephant and the giraffe were playing with a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the giraffe was : make/ing it fly and made the elephant dizzy.,and the giraffe was making it fly and made the elephant dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the elephant took : the : airplane.,and the elephant took the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the giraffe was mad.,and the giraffe was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the elephant : drop/ed the airplane in the water.,and the elephant dropped the airplane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,the giraffe was mad at her.,the giraffe was mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,so : they have to get the airplane.,so they have to get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and her dad said to her : why did you drop the airplane in the water?,and her dad said to her why did you drop the airplane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,so her mother try/ed to get it.,so her mother tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the giraffe was cry/ing.,and the giraffe was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the mum got it with a net.,and the mum got it with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,she pick/ed it out of the water and gave it back to the giraffe.,she picked it out of the water and gave it back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the giraffe was happy.,and the giraffe was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the giraffe : hug/ed his airplane.,and the giraffe hugged his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,the bunny : and the dog were make/ing a sandcastle.,the bunny and the dog were making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the bunny was fill/ing up the bucket.,and the bunny was filling up the bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the : dog was : break/ing the sandcastle.,and the dog was breaking the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the bunny (was : break/ing) broke some of it.,and the bunny was breaking broke some of it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and then the puppy was : a little bit : sad.,and then the puppy was a little bit sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the puppy was cry/ing.,and the puppy was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,the bunny and the dog was[EW:were] go/ing on a picnic.,the bunny and the dog was going on a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and : the bunny took all of the food out : and want/ed : the puppy/z food.,and the bunny took all of the food out and wanted the puppy's food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and : the bunny was full.,and the bunny was full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the bunny was get/ing dizzy : and full.,and the bunny was getting dizzy and full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the puppy went to get the doctor.,and the puppy went to get the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and puppy said that (the) : the bunny ate too much food.,and puppy said that the the bunny ate too much food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the bunny was : feel/ing sick.,and the bunny was feeling sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and then the bunny was not feel/ing sick because the doctor made : him all better.,and then the bunny was not feeling sick because the doctor made him all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,the dog had a balloon : and a wagon.,the dog had a balloon and a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,the bunny said can I come with you?,the bunny said can I come with you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,so : he : did.,so he did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,the bunny was go/ing to[:_gonna] take off the balloon.,the bunny was going to take off the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,the (pu) dog said : do not take off : the balloon.,the pu dog said do not take off the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,or it will fly away.,or it will fly away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the bunny did.,and the bunny did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the balloon flied|fly[EW:flew] away.,and the balloon flied away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the dog was mad at the bunny.,and the dog was mad at the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,so : he went to go see the circus bunny again : to get a[EW:an] other balloon.,so he went to go see the circus bunny again to get a other balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,so : the bunny got a[EW:an] other balloon for the : dog.,so the bunny got a other balloon for the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and : he did not have no[EW:any] money : so he can buy a balloon [EU].,and he did not have no money so he can buy a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,then they were go/ing to[:_gonna] get some money : from the doctor.,then they were going to get some money from the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the doctor said (uh) yes.,and the doctor said uh yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,and the doctor gave (the) : both of them some money : to buy a balloon.,and the doctor gave the both of them some money to buy a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,they both get their own balloon.,they both get their own balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/821.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,(um) an elephant and a giraffe went swim/ing.,um an elephant and a giraffe went swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,(the uh um s a wa) they were play/ing with water balloon/s it look/ed like.,the uh um s a wa they were playing with water balloons it looked like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and they : drop/ed a water balloon in the pool or the balloon.,and they dropped a water balloon in the pool or the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,(um) the giraffe try/3s to swim after it.,um the giraffe tries to swim after it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,(um) : he catch/3s it.,um he catches it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and the elephant get/3s it.,and the elephant gets it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and : now she love/3s him.,and now she loves him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,(um) an elephant and a giraffe are swim/ing.,um an elephant and a giraffe are swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,the elephant run/3s to the pool.,the elephant runs to the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,he slip/3s : and hurt/3s her knee.,he slips and hurts her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and the lifeguard come/3s.,and the lifeguard comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and the giraffe help/3s her.,and the giraffe helps her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,(um) the elephant cry/3s.,um the elephant cries +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and the lifeguard put/3s a bandaid on it.,and the lifeguard puts a bandaid on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and : he sat down on a bench.,and he sat down on a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and the lifeguard (p) point/3s to a no run/ing sign.,and the lifeguard p points to a no running sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,(um) : the elephant and the giraffe are at the swimming pool.,um the elephant and the giraffe are at the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,the giraffe bring/3s a toy airplane.,the giraffe brings a toy airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,(um he) the giraffe play/3s with it.,um he the giraffe plays with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and the elephant stare/3s at it.,and the elephant stares at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,then (he) the elephant grab/3s it from him : and drop/3s it in the pool.,then he the elephant grabs it from him and drops it in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,the giraffe is mad at the elephant.,the giraffe is mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and the lifeguard see/3s it.,and the lifeguard sees it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and it is start/ing to sink.,and it is starting to sink +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,the lifeguard look/3s sort of angry at the (ele) other elephant.,the lifeguard looks sort of angry at the ele other elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,xxx [~_whispered_an_aside] and (um) he try/3s to get it.,x and um he tries to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,but he can not reach it.,but he can not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,the giraffe start/3s to cry.,the giraffe starts to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,(um) and then : another : elephant (um) get/3s a net : (and um) : and pick/3s up the plane : and give/3s it to the giraffe.,um and then another elephant um gets a net and um and picks up the plane and gives it to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and the giraffe is happy.,and the giraffe is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,(um) : a dog is play/ing in the sand.,um a dog is playing in the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and a rabbit come/3s and want/3s to play with her.,and a rabbit comes and wants to play with her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,(he start/3s make/ing a little bit of the castle while the rabb) (while um) the dog start/3s make/ing a little bit of the castle while the rabbit fill/3s : a pail up with sand.,he starts making a little bit of the castle while the rabb while um the dog starts making a little bit of the castle while the rabbit fills a pail up with sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and the bunny dump/3s it on the castle.,and the bunny dumps it on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and the castle break/3s.,and the castle breaks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and the bunny scream/3s.,and the bunny screams +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,(um) : and the bunny pretend/3s he did not do it.,um and the bunny pretends he did not do it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,but he really did.,but he really did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and : the dog is feel/ing sad because (it is broke) it broke.,and the dog is feeling sad because it is broke it broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,(um) the : bunny and the dog are go/ing for a picnic.,um the bunny and the dog are going for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,(um) : the dog bring/3s sandwich/s.,um the dog brings sandwiches +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and the bunny bring/3s carrot/s and sandwich/3s and pickle/s and : chip/s : and sandwich/s and carrot/s.,and the bunny brings carrots and sandwiches and pickles and chips and sandwiches and carrots +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and : (he get/3s fu) the bunny get/3s full : while the dog is still eat/ing.,and he gets fu the bunny gets full while the dog is still eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,the bunny is feel/ing sick.,the bunny is feeling sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,(um) : the dog run/3s and get/3s : (um) the doctor.,um the dog runs and gets um the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and (he pull/3s) the dog pull/3s the doctor over.,and he pulls the dog pulls the doctor over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,(um) : the doctor look/3s : and tell/3s him to open his mouth.,um the doctor looks and tells him to open his mouth +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and then he is all done.,and then he is all done +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,(um) the dog is pull/ing a wagon with a balloon.,um the dog is pulling a wagon with a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,(and) and the bunny see/3s her.,and and the bunny sees her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,the bunny try/3s to get it.,the bunny tries to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,(um) he get/3s it.,um he gets it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and the dog open/3s his mouth and start/3s to scream sort of.,and the dog opens his mouth and starts to scream sort of +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,the bunny (let/3s it g) let/3s go of the balloon.,the bunny lets it g lets go of the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and the dog is really mad at the bunny.,and the dog is really mad at the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and he is just star/ing at the balloon.,and he is just staring at the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and : (um) he see/3s : (um) : another rabbit sell/ing : balloon/s.,and um he sees um another rabbit selling balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,he ask/3s for some.,he asks for some +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and they are five cent/s.,and they are five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and he said you can not have them if : you can not pay five cent/s.,and he said you can not have them if you can not pay five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and : then they are really sad.,and then they are really sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and then there is : (a bunny) : another bunny up there.,and then there is a bunny another bunny up there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,I think it is his mom.,I think it is his mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and : he want/3s to buy a balloon.,and he wants to buy a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and (they) he give/3s five cent/s to him.,and they he gives five cents to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and they each get a balloon.,and they each get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/845.slt,and they are play/ing with them.,and they are playing with them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,[~_well][-:] there is an elephant and a giraffe.,there is an elephant and a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,the elephant : is[-:] bounce/ing a ball.,the elephant is bouncing a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and[-:] : there is the giraffe guy : I think is talk/ing to her.,and there is the giraffe guy I think is talking to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and they are watch/ing.,and they are watching +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and[-:] all of a sudden the ball that the elephant was bounce/ing fell into the water.,and all of a sudden the ball that the elephant was bouncing fell into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and[-:] they are both look/ing kind of sad and : (um) excite/ed.,and they are both looking kind of sad and um excited +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now the giraffe (uh) : jump/ed into the water and now is swim/ing : to catch the ball.,and now the giraffe uh jumped into the water and now is swimming to catch the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and the giraffe is back at the end of the pool and : gave the ball back to : the elephant.,and the giraffe is back at the end of the pool and gave the ball back to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now the elephant is happy and[-:] : look/3s : happy [~_laughs].,and now the elephant is happy and looks happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,(uh um : the) there is the giraffe and the elephant again.,uh um the there is the giraffe and the elephant again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and the[-:] : elephant is look/ing at the water with the giraffe.,and the elephant is looking at the water with the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now the elephant (is) look/3s like (uh) she is go/ing to jump into the pool.,and now the elephant is looks like uh she is going to jump into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and[-:] right when she start/ed jump/ing (uh) the elephant slip/ed : and hurt herself.,and right when she started jumping uh the elephant slipped and hurt herself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now she has a : cut on her leg.,and now she has a cut on her leg +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now the giraffe is[-:] (stand) sit/ing by her and call/ed the lifeguard to come.,and now the giraffe is stand sitting by her and called the lifeguard to come +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and[-:] now the elephant is[-:] : kind of[:_kinda] scare/ed that it is go/ing to hurt when they put on the bandaid [~_laughs].,and now the elephant is kind of scared that it is going to hurt when they put on the bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now she is walk/ing with the lifeguard with the bandaid on herself.,and now she is walking with the lifeguard with the bandaid on herself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and she is kind of [~_laughs] happy and kind of sad[~!_laughing].,and she is kind of happy and kind of sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now : she is sit/ing the bench.,and now she is sitting the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and the lifeguard is point/ing to no run/ing because she was run/ing.,and the lifeguard is pointing to no running because she was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,(uh the elephant and the giraffe) [~_well] the elephant is look/ing at the giraffe/z : airplane that he has in his hand/s.,uh the elephant and the giraffe the elephant is looking at the giraffe's airplane that he has in his hands +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and she is happy.,and she is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,now the giraffe is[-:] kind of play/ing with the[-:] airplane and pretend/ing that it is fly/ing.,now the giraffe is kind of playing with the airplane and pretending that it is flying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and[-:] (the[-:]) the elephant is try/ing it now.,and the the elephant is trying it now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and she is pretend/ing.,and she is pretending +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and : the giraffe is think/ing : (she is) he is scare/ed that she is go/ing to wreck it.,and the giraffe is thinking she is he is scared that she is going to wreck it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now (the) : the[-:] : airplane fell into the water.,and now the the airplane fell into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now the : giraffe is mad.,and now the giraffe is mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now the lifeguard is stand/ing there and : watch/ing them[-:] (uh) : be mad : at each other[~!_laughing].,and now the lifeguard is standing there and watching them uh be mad at each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and (now) so[-:] the elephant is[-:] say/ing what happen/ed.,and now so the elephant is saying what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and : the lifeguard : is (wa) look/ing at her.,and the lifeguard is wa looking at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,now the lifeguard is try/ing to[-:] : get the[-:] airplane.,now the lifeguard is trying to get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and[-:] (the) now the giraffe is cry/ing because the lifeguard can not get the airplane out of the water.,and the now the giraffe is crying because the lifeguard can not get the airplane out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now there is another : (uh) elephant.,and now there is another uh elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and she has a fish net.,and she has a fish net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now she is try/ing to catch it with the fish net.,and now she is trying to catch it with the fish net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and she got it with the fish net and gave it to : giraffe.,and she got it with the fish net and gave it to giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,now giraffe is happy.,now giraffe is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and[-:] : (um) elephant is happy too.,and um elephant is happy too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,[~_well] there is a bunny.,there is a bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and[-:] I think there is a dog.,and I think there is a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and the dog has made a[-:] : sandcastle in the sandbox.,and the dog has made a sandcastle in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and[-:] the[-:] bunny (looks) has a shovel.,and the bunny looks has a shovel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and he look/3s happy [~_laughs].,and he looks happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now the[-:] bunny was help/ing : the dog : to make : the rest of the sandcastle.,and now the bunny was helping the dog to make the rest of the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and (then the) then the bunny : pour/3s all[!] of the sand over onto the : sandcastle.,and then the then the bunny pours all of the sand over onto the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now (the b) the bunny wreck/ed the whole sandcastle.,and now the b the bunny wrecked the whole sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,the dog do/3s not seem that : (uh) mad.,the dog does not seem that uh mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and then now : he look/3s at it now again.,and then now he looks at it now again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and : (uh) he is really mad.,and uh he is really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and the bunny : is just stand/ing there look/ing : kind of sad and mad too.,and the bunny is just standing there looking kind of sad and mad too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,(uh) there is the bunny and the dog again.,uh there is the bunny and the dog again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and the bunny and the dog are go/ing for a picnic.,and the bunny and the dog are going for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,the bunny is sit/ing by[-:] the dog.,the bunny is sitting by the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and they are eat/ing.,and they are eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and the bunny has lot/s of food around him [~_laughs].,and the bunny has lots of food around him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now the bunny is really[!] stuff/ed.,and now the bunny is really stuffed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and : the dog is still eat/ing nicely [~_laughs].,and the dog is still eating nicely +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and the dog is[-:] eat/ing.,and the dog is eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and the bunny look/3s kind of : (uh) really : (um) : full [~__laughs].,and the bunny looks kind of uh really um full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,so now the dog is run/ing to[-:] a parent that is walk/ing down : the road : and[-:] brought (the[-:]) the other bunny to[-:] : (uh) the little bunny that ate too much [~_laughs].,so now the dog is running to a parent that is walking down the road and brought the the other bunny to uh the little bunny that ate too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and[-:] now (the[-:] bunny) the big bunny is look/ing at the little bunny.,and now the bunny the big bunny is looking at the little bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now the little bunny is all better now.,and now the little bunny is all better now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,[~_okay] there is the dog and the bunny again.,there is the dog and the bunny again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and the bunny (is ru) are[EW:is] run/ing down (the roa) the (s) sidewalk.,and the bunny is ru are running down the roa the s sidewalk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and the dog has (a) : a little cart : with a balloon : tie/ed to it.,and the dog has a a little cart with a balloon tied to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,now the bunny is look/ing at the balloon that is tie/ed to[-:] the cart.,now the bunny is looking at the balloon that is tied to the cart +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now (the) the dog is look/ing at the bunny.,and now the the dog is looking at the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and the bunny is try/ing to take off the balloon.,and the bunny is trying to take off the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and the : bunny took off the balloon.,and the bunny took off the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now the balloon is sail/ing up in the sky.,and now the balloon is sailing up in the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now the dog is really[!] mad.,and now the dog is really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and the bunny : is look/ing (at) at the balloon at the sky [~__laughs].,and the bunny is looking at at the balloon at the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now the[-:] bunny is walk/ing down (the s) the sidewalk.,and now the bunny is walking down the s the sidewalk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and : the dog is look/ing at : the bunny walk/ing down.,and the dog is looking at the bunny walking down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and the bunny see/3s : some balloon/s.,and the bunny sees some balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and the bunny[-:] see/3s the balloon/s with the man hold/ing them and ask/3s if[-:] she can buy one.,and the bunny sees the balloons with the man holding them and asks if she can buy one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and[-:] (they are) they are five cent/s.,and they are they are five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and : the bunny is look/ing in his pocket/s because he do/3s not have (uh) : any money.,and the bunny is looking in his pockets because he does not have uh any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now (the) both the dog and the bunny are look/ing at the balloon/s see/ing if he will give them one [~_laughs].,and now the both the dog and the bunny are looking at the balloons seeing if he will give them one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now : (the : big bunny uh) the little bunny is go/ing to ask the big bunny and see if[-:] she has any money.,and now the big bunny uh the little bunny is going to ask the big bunny and see if she has any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,now[-:] (they are ask/ing) the (bunny) little bunny is ask/ing the big bunny if (he can) she can have a five cent/s : to buy a balloon.,now they are asking the bunny little bunny is asking the big bunny if he can she can have a five cents to buy a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and so the big bunny gave : the man (five cent/s so that they can ha or) ten cent/s so they can have two balloon/s.,and so the big bunny gave the man five cents so that they can ha or ten cents so they can have two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/852.slt,and now each of them (have two) has a balloon.,and now each of them have two has a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,[~_okay] the giraffe and the elephant are : play/ing in the water.,the giraffe and the elephant are playing in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and they are bounce/ing a ball[-:] : [~_well] the elephant is.,and they are bouncing a ball the elephant is +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and[-:] the : elephant is out of the water.,and the elephant is out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and so is the giraffe.,and so is the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,but she bounce/3s it too hard.,but she bounces it too hard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and it land|land[EW:lands] in the water.,and it land in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and the giraffe try/3s (to get it) [~_like] to jump in and get it.,and the giraffe tries to get it to jump in and get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,but it : look/3s like it is hard for him to : get it.,but it looks like it is hard for him to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,but then he got it.,but then he got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then he swam to the elephant.,and then he swam to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and the elephant got it.,and the elephant got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then[-:] : the : giraffe : got out of the : water.,and then the giraffe got out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and the elephant : took it from him.,and the elephant took it from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,[~_okay] the elephant and the giraffe : are stare/ing into the water.,the elephant and the giraffe are staring into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and the elephant : (try/3s to : run[-:] in the water[-:]) (try/3s) (she) (like she is on : where) [~_like] she is on the ground.,and the elephant tries to run in the water tries she like she is on where she is on the ground +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then she try/3s to run in the water.,and then she tries to run in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,but then she slip/3s.,but then she slips +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then she got : a[EW:an] owie on her knee.,and then she got a owie on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and she start/ed to cry.,and she started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then the giraffe call/ed the lifeguard.,and then the giraffe called the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and the lifeguard (help) try/ed to help her : was run/ing over to her [EU].,and the lifeguard help tried to help her was running over to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and the lifeguard got a bandaid and put it on her knee.,and the lifeguard got a bandaid and put it on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then the lifeguard (told her) told her to bend her leg.,and then the lifeguard told her told her to bend her leg +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then it felt better.,and then it felt better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,but then the lifeguard : (um) show/ed the elephant : that there was a sign that said no run/ing.,but then the lifeguard um showed the elephant that there was a sign that said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then she had to sit on the bench.,and then she had to sit on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,the elephant and the giraffe : are[-:] (um) : laugh/ing together.,the elephant and the giraffe are um laughing together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and the giraffe has a toy airplane in the swimming pool.,and the giraffe has a toy airplane in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then the giraffe : play/3s with it and fly/3s it in the air.,and then the giraffe plays with it and flies it in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,but then the elephant grab/ed it away from him : and start/ed to playing[EW:play] with it.,but then the elephant grabbed it away from him and started to playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,but then she drop/ed it.,but then she dropped it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and it fell in the water.,and it fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then the giraffe got really mad[-:].,and then the giraffe got really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and[-:] the[-:] lifeguard came over and look/ed at the airplane : and was shock/ed.,and the lifeguard came over and looked at the airplane and was shocked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and the elephant said it was an accident.,and the elephant said it was an accident +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,(but then the) so the lifeguard bent down and try/ed to get it.,but then the so the lifeguard bent down and tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,but he was too short.,but he was too short +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then the giraffe start/ed cry/ing.,and then the giraffe started crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then the[-:] elephant look/ed shy[-:] (like) : kind of[-:] like she is sorry.,and then the elephant looked shy like kind of like she is sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and the lifeguard did not know what to say.,and the lifeguard did not know what to say +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,but then (a girl walk/ed over) [~_well] one of the lifeguard/s walk/ed over : and grab/ed the net and : grab/ed the airplane with the net.,but then a girl walked over one of the lifeguards walked over and grabbed the net and grabbed the airplane with the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then the giraffe (start/ed) stop/ed cry/ing.,and then the giraffe started stopped crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then the lifeguard was happy.,and then the lifeguard was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then the elephant did not know what to say.,and then the elephant did not know what to say +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,(and then the) and then the lifeguard : pick/ed up the airplane and gave it to the giraffe.,and then the and then the lifeguard picked up the airplane and gave it to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,(and the gir) and the elephant was happy.,and the gir and the elephant was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and the giraffe was very happy.,and the giraffe was very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,(a[-:] : dog and a) [~_no_yeah] a dog and a bunny [EU].,a dog and a a dog and a bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,(uh well) first the dog is play/ing in the sand with a shovel.,uh well first the dog is playing in the sand with a shovel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then the bunny come/3s along with his[!] shovel.,and then the bunny comes along with his shovel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and[-:] the[-:] dog is just done[EW:finished] his castle.,and the dog is just done his castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and the bunny is put/ing some sand in his : sand bucket.,and the bunny is putting some sand in his sand bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then the bunny pour/3s all of the sand on the castle.,and then the bunny pours all of the sand on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,(and) : and then : (the bunny) instead of the dog get/ing mad the bunny get/3s mad.,and and then the bunny instead of the dog getting mad the bunny gets mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then the dog start/3s to cry.,and then the dog starts to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,(a bunny is w) : the bunny is (w) walk/ing : down the road : with his : basket.,a bunny is w the bunny is w walking down the road with his basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and a dog : wave/3s at the bunny : with his basket.,and a dog waves at the bunny with his basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and : the dog take/3s out his sandwich.,and the dog takes out his sandwich +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and the bunny take/3s out : her big meal that she has : in her basket.,and the bunny takes out her big meal that she has in her basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then the : bunny[~!_laughing] eat/3s it all.,and then the bunny eats it all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then : you can see garbage all over the mat[-:] .,and then you can see garbage all over the mat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then the dog is just eat/ing a sandwich.,and then the dog is just eating a sandwich +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then the bunny feel/3s a bit sick.,and then the bunny feels a bit sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and the dog is shock/ed.,and the dog is shocked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,so the dog[-:] run/3s down the road : to the bunny is granny and tell/3s her [EU].,so the dog runs down the road to the bunny is granny and tells her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then (the granny) : (um well) the dog is pull/ing the granny toward/3s the bunny.,and then the granny um well the dog is pulling the granny towards the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and : (the) : the granny[-:] (fix) like help/3s the bunny.,and the the granny fix like helps the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then they walk home happily together.,and then they walk home happily together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,(the bun) [~_oh] first the dog has a wagon[-:] with a balloon tie/ed on it.,the bun first the dog has a wagon with a balloon tied on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and the bunny is walk/ing down the road wave/ing at the dog.,and the bunny is walking down the road waving at the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then the[-:] bunny : say/3s[-:] that is a nice balloon that you have.,and then the bunny says that is a nice balloon that you have +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then the bunny try/3s to tie it off the wagon.,and then the bunny tries to tie it off the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,but then : he did[!] tie it off.,but then he did tie it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then it float/ed up in the air.,and then it floated up in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,(the dog) and the dog got really mad[-:] .,the dog and the dog got really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,(and[-:] he got so) but : he did not have to be mad for long because he saw : a[-:] : balloon carrier.,and he got so but he did not have to be mad for long because he saw a balloon carrier +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and : the bunny was walk/ing towards him.,and the bunny was walking towards him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and the bunny[-:] : ask/ed (how many) how much : are those balloon/s?,and the bunny asked how many how much are those balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and (um) : the salesman : said they are five cent/s each.,and um the salesman said they are five cents each +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,but the bunny did not have enough money.,but the bunny did not have enough money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,he did not have any money.,he did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then the bunny and the dog just standed|stand[EW:stood] there (and went) gave a sad face.,and then the bunny and the dog just standed there and went gave a sad face +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then[-:] the bunny : walk/ed toward[-:] : this[-:] girl on the street : and ask/ed if I can get a balloon.,and then the bunny walked toward this girl on the street and asked if I can get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and then the girl (gave her fi) gave him (five cent) [~_I__mean] ten cent/s for two balloon/s.,and then the girl gave her fi gave him five cent ten cents for two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/850.slt,and they both had the balloon and were very happy.,and they both had the balloon and were very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,there is a : giraffe and an elephant.,there is a giraffe and an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,: shall I turn the page?,shall I turn the page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,okay [+_bch].,okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,(then) : then there was a : ball in the water.,then then there was a ball in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,then the giraffe : went to get it.,then the giraffe went to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,then the giraffe got the ball for the elephant.,then the giraffe got the ball for the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,: and : he was play/ing with it.,and he was playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,they want/ed to go (on : the) : on the jumping : thing.,they wanted to go on the on the jumping thing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,and the : elephant one want|want[EW:wanted] to go on it.,and the elephant one want to go on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,then the elephant trip/ed.,then the elephant tripped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,then he got a[EW:an] : owie.,then he got a owie +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,then the lifeguard came.,then the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,he put a bandaid on it.,he put a bandaid on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,(and they) and he (took it) took him to the bench.,and they and he took it took him to the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,: I do not know it [~_whispered] [+_bch].,I do not know it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,there is a giraffe and an elephant.,there is a giraffe and an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,the giraffe has an airplane.,the giraffe has an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,then : the : elephant took it.,then the elephant took it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,then it fell in the water.,then it fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,: then the giraffe was mad at the elephant.,then the giraffe was mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,"[~_page_6] : do not know [~_whispered,_page_turned] [+_bch].",do not know +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,it look/ed like it was sink/ing.,it looked like it was sinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,but the lifeguard was try/ing to get it.,but the lifeguard was trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,[~_page_9] i do not know [~_page_turned] [+_bch].,i do not know +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,and the lifeguard got a net.,and the lifeguard got a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,and he fish/ed it out.,and he fished it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,and he gave it back to the : giraffe.,and he gave it back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,[~_page_13] : do not know [+_bch].,do not know +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,There is[EW:are] two rabbit/s that are go/ing to make a castle.,There is two rabbits that are going to make a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,: they are make/ing one.,they are making one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,he dump/ed : (ah) sand on it.,he dumped ah sand on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,then it broke.,then it broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,(and) : and : they were go/ing to[:_gonna] build it again.,and and they were going to build it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,There are two rabbit/s that are go/ing picnick/ing.,There are two rabbits that are going picnicking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,they brought food to eat.,they brought food to eat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,they ate all the food.,they ate all the food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,: one of the rabbit/s are[EW:is] really fat.,one of the rabbits are really fat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,then (t) a doctor came.,then t a doctor came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,then one of the rabbit/s are[EW:is] pull/ing him.,then one of the rabbits are pulling him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,(and) : then he was : check/ing his temperature.,and then he was checking his temperature +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,then : the doctor took one of the (r) rabbit/s.,then the doctor took one of the r rabbits +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,there are two rabbit/s that have one balloon.,there are two rabbits that have one balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,okay : anything on this page?,okay anything on this page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,no [~_page_turned]?,no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,then they took it off.,then they took it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,then it went up : in the sky.,then it went up in the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,then : it was up : high.,then it was up high +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,there was a rabbit : had : lot/s of balloon/s [EU].,there was a rabbit had lots of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,and one of the rabbit/s ask/ed him if he can have one.,and one of the rabbits asked him if he can have one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,it cost/3s five cent/s.,it costs five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,": nothing here, okay [~_page_turned].",nothing here okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,and there was a rabbit come/ing.,and there was a rabbit coming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,then he ask/ed : the rabbit if he can have money : for a balloon.,then he asked the rabbit if he can have money for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,(then he) : (then he gave) the bunny gave him the money.,then he then he gave the bunny gave him the money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,then they each got one.,then they each got one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/877.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,a donkey thing and an elephant are play/ing with their ball : play/ing basketball.,a donkey thing and an elephant are playing with their ball playing basketball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,(um : the) they shoot it.,um the they shoot it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and the ball fall/3s into the pool that they were stand/ing by.,and the ball falls into the pool that they were standing by +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,the donkey go/3s in and get/3s it out of the water.,the donkey goes in and gets it out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,he bring/3s it back to the elephant.,he brings it back to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and the elephant is happy.,and the elephant is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,the elephant fall/3s in love with him.,the elephant falls in love with him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,they are go/ing to [~_gonna] go swim/ing.,they are going to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,the elephant go/3s to run to the diving board.,the elephant goes to run to the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,she slip/3s and fall/3s and hurt/3s herself.,she slips and falls and hurts herself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,she is bleed/ing because she has a cut on her knee.,she is bleeding because she has a cut on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,(um) : the donkey thing go/3s to get the lifeguard.,um the donkey thing goes to get the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,they put a bandaid on.,they put a bandaid on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,she is okay.,she is okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,he point/3s to the sign that says no run/ing.,he points to the sign that says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and she get/3s (um) embarrass/ed.,and she gets um embarrassed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,(um) they are going to [~_gonna] play with this plane near the swimming pool.,um they are going to play with this plane near the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,he is fly/ing around with it.,he is flying around with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and she want/3s a turn.,and she wants a turn +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,(she) so she grab/3s it from him and start/3s play/ing with it.,she so she grabs it from him and starts playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,it fall/3s into the water.,it falls into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and they can not get it out.,and they can not get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,he get/3s mad at the elephant.,he gets mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,then they call the lifeguard.,then they call the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and then the lifeguard : is look/ing at it.,and then the lifeguard is looking at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,the lifeguard can not reach it.,the lifeguard can not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,he still try/3s to reach.,he still tries to reach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,but he still can not reach it.,but he still can not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,it is sink/ing.,it is sinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and the (ele) donkey thing is cry/ing.,and the ele donkey thing is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and the elephant feel/3s sorry.,and the elephant feels sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and the lifeguard say/3s he can not do anything.,and the lifeguard says he can not do anything +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,then the other lifeguard come/3s with a net.,then the other lifeguard comes with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and she fish/3s it out with the net.,and she fishes it out with the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and then she give/3s it back to him.,and then she gives it back to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and he is happy.,and he is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and then they are both happy the two little kid/s.,and then they are both happy the two little kids +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and then they play with the airplane again.,and then they play with the airplane again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,the rabbit and the dog are play/ing in the sand.,the rabbit and the dog are playing in the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,they are build/ing a sandcastle.,they are building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,he pour/3s too much sand on the sandcastle.,he pours too much sand on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,he wreck/3s it.,he wrecks it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,(um) : the bunny and the dog are go/ing to [~_gonna] go and have a picnic.,um the bunny and the dog are going to go and have a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,they are have/ing a picnic.,they are having a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and he is eat/ing everything.,and he is eating everything +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,he ate all unhealthy stuff and only like a few carrot/s and stuff that is healthy.,he ate all unhealthy stuff and only like a few carrots and stuff that is healthy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,he get/3s sick.,he gets sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,the dog go/3s to get a medic.,the dog goes to get a medic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,(the me) the medic (um) help/3s him.,the me the medic um helps him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and he is sick.,and he is sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,so she is go/ing to [~_gonna] cure him.,so she is going to cure him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and then : (he take) she take/3s her like to the doctor/z office place.,and then he take she takes her like to the doctor's office place +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and then she is go/ing to [~_gonna] : (um) : make him better.,and then she is going to um make him better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,(um : the) the dog and the bunny are go/ing to [~_gonna] go and play with their balloon.,um the the dog and the bunny are going to go and play with their balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,(th) the bunny take/3s the balloon off the wagon.,th the bunny takes the balloon off the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,he tie/3s it off.,he ties it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and then the dog do/3s not want (it) him to.,and then the dog does not want it him to +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,it go/3s up in the air.,it goes up in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and they can not get it.,and they can not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,the dog get/3s mad at him.,the dog gets mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,(uh) they go to buy another balloon.,uh they go to buy another balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,they pick one.,they pick one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,but it is five cent/s.,but it is five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,(and they do not have any money : sss) and they both do not have any money.,and they do not have any money sss and they both do not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,so they are think/ing what to do.,so they are thinking what to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,(um they so) so they go to their mom.,um they so so they go to their mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and she is go/ing to [~_gonna] give them money.,and she is going to give them money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,(um : she is gonna gi) she is get/ing her money out of her pocket/s to give to them.,um she is gonna gi she is getting her money out of her pockets to give to them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,she give/3s it to them.,she gives it to them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,and they can buy two balloon/s.,and they can buy two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/966.slt,then they are both happy.,then they are both happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,there is a guy (gi uh) have candy [EU].,there is a guy gi uh have candy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and he is sell/ing it.,and he is selling it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,(and he give|give[EW:gave]) and (it) one drop/ed into the water.,and he give and it one dropped into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and he swim/3s for it.,and he swims for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and (he pull/3s um um) (he gots|get[EW:got] it) the other guy gots|get[EW:got] it.,and he pulls um um he gots it the other guy gots it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,(and he get um) and (he get) (and do/3s not) he do/3s not give it to him.,and he get um and he get and does not he does not give it to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,The guy is go/ing to jump into the water.,The guy is going to jump into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,the guy (um) run/3s and run/3s.,the guy um runs and runs +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and (the guy) the other guy he slip/3s.,and the guy the other guy he slips +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and he fall/3s down.,and he falls down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and he cry/3s.,and he cries +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,(and he) and he has a booboo.,and he and he has a booboo +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and he put/3s a bandaid on it.,and he puts a bandaid on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and he carry/3s him.,and he carries him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,puts him on the bench [EU].,puts him on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,The guy is look/ing at him.,The guy is looking at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and he has a[EW:an] airplane.,and he has a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and then the other guy take/3s the airplane and play/3s with it.,and then the other guy takes the airplane and plays with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and then (it fall/3s o) it fall/3s into the water.,and then it falls o it falls into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and then the other guy get/3s mad at him.,and then the other guy gets mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and (the other guy get/3s m) (um the other guy) there is[EW:are] two guy/s stand/ing : get/ing mad.,and the other guy gets m um the other guy there is two guys standing getting mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and the other guy (ge um um) get/3s scare/ed.,and the other guy ge um um gets scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and the other guy chase/3s it : into the water.,and the other guy chases it into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,(an) and the other guy cry/3s.,an and the other guy cries +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and the other guy has a net.,and the other guy has a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and the other guy : take/3s it out of the pool.,and the other guy takes it out of the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and then he give/3s it back.,and then he gives it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and then (he) he like/3s him.,and then he he likes him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,(There is a) (there is a bunny rabbit um um gonna make a) there is a bunny rabbit who made a sandcastle.,There is a there is a bunny rabbit um um gonna make a there is a bunny rabbit who made a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and (they are) both of them are make/ing a sandcastle.,and they are both of them are making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and (they are) (they are pour) (they are pour/ing it on) (on) (the guy) somebody is pour/ing it on.,and they are they are pour they are pouring it on on the guy somebody is pouring it on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and he is break/ing it.,and he is breaking it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and the other one get/3s : mad.,and the other one gets mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,no not mad I forgot [+_bch].,no not mad I forgot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,it break/3s.,it breaks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and they make another one.,and they make another one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,they have both basket/s.,they have both baskets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,the bunny rabbits has|have[EW:have] basket/s.,the bunny rabbits has baskets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and (they gr) they are have/ing a picnic.,and they gr they are having a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and then the other one eat/3s all of his.,and then the other one eats all of his +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and then the other one (du um) has (uh) juice.,and then the other one du um has uh juice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and then (the other one is wa um) somebody is walk/ing.,and then the other one is wa um somebody is walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and somebody is pull/ing somebody/z shirt.,and somebody is pulling somebody's shirt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and somebody gets mad.,and somebody gets mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,somebody bring/3s somebody home.,somebody brings somebody home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,there is a guy have/ing a balloon in his : wagon [EU].,there is a guy having a balloon in his wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and the other one is walk/ing.,and the other one is walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,(and he w) and he is try/ing to take it off.,and he w and he is trying to take it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and then he (en) unwrap/3s it a little bit off.,and then he en unwraps it a little bit off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and then it fly/3s away.,and then it flies away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and then (it float|float[EW:floats]) (he wrap um) (the um) the string fall/3s down.,and then it float he wrap um the um the string falls down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,(why does your boss) do/3s your boss let you look at these page/s [+_bch]?,why does your boss does your boss let you look at these pages +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,"she says while your do/ing them I am not suppose/ed to so I am not so you can see them, go ahead.",she says while your doing them I am not supposed to so I am not so you can see them go ahead +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,the guy has balloon/s in his hand.,the guy has balloons in his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,(and the) and the other one buy/3s one.,and the and the other one buys one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,(and then he) and (then he sh) then he : check/3s in his pocket for money.,and then he and then he sh then he checks in his pocket for money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and he does not have money.,and he does not have money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,he check/3s it for money.,he checks it for money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and he can not get one.,and he can not get one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,(and) and (he was allow/ed to ah) (the other one : is) (the uh) there was a man : (heh uh) sell/ing balloon/s.,and and he was allowed to ah the other one is the uh there was a man heh uh selling balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and then he give/3s one to him.,and then he gives one to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and the other one has a balloon.,and the other one has a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,and the other[!] one has a balloon.,and the other one has a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/611.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,A[EW:an] elephant is go/ing to his friend.,A elephant is going to his friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,he is say/ing (what is there) what is in there ?,he is saying what is there what is in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,orange.,orange +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,: he said (the) the orange fall[EW:fell] down in the water.,he said the the orange fall down in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,"and then (the) his friend, (he) he falled|fell[EW:fell] in the water.",and then the his friend he he falled in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,he was try/ing to get the orange.,he was trying to get the orange +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then) (and then the elephant got the thing out) : and then : the elephant got the orange out.,and then and then the elephant got the thing out and then the elephant got the orange out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then he walk/ed) (and then he walk/ed his) and then he walk/ed to his home.,and then he walked and then he walked his and then he walked to his home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,The end[!] [+_bch].,The end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(Um the) the elephant and the friend he was go/ing to the pool [EU].,Um the the elephant and the friend he was going to the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,they were go/ing to jump into the pool really fast.,they were going to jump into the pool really fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and they are go/ing to jump into where the side/s are.,and they are going to jump into where the sides are +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and they) and (the) his friend hurt his leg.,and they and the his friend hurt his leg +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,he hurt his leg.,he hurt his leg +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and that hurt/3s really bad.,and that hurts really bad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(um his f) his (um) his brother came.,um his f his um his brother came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and he) (and so he) and he seed|see[EW:saw] what happen/ed.,and he and so he and he seed what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and he gave him a bandaid.,and he gave him a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then it hur) and then he went home.,and then it hur and then he went home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,They were go/ing to play pool again.,They were going to play pool again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then there) and then he was drive/ing *an airplane [EU].,and then there and then he was driving airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and then (the) his friend was (drive/ing a) (drive/ing) drive/ing a[EW:an] airplane.,and then the his friend was driving a driving driving a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and play/ing again) they are play/ing again.,and playing again they are playing again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(they were going to jump i) and the airplane got in the water.,they were going to jump i and the airplane got in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,okay.,okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then he was try/ing to) and then he was very mad.,and then he was trying to and then he was very mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then his friend) and then (his sister went over to that girl t : um) the sister went over to the brother.,and then his friend and then his sister went over to that girl t um the sister went over to the brother +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then he) and then the brother came over her [EU].,and then he and then the brother came over her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then) and then he sawed|see[EW:saw] what happened.,and then and then he sawed what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and then he is try/ing to get it.,and then he is trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and then (he) he did not know how to get it.,and then he he did not know how to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,he try/ed.,he tried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,he pick/ed that.,he picked that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and then he try/ed to get it.,and then he tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,hey (look) look behind here [+_bch]!,hey look look behind here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(um) the boy has girl hair.,um the boy has girl hair +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(the) the girl : was pretty.,the the girl was pretty +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,then he try/ed to get it.,then he tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and she *was try/ing to get that (um) airplane [EU].,and she trying to get that um airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then he tr) and then he got it.,and then he tr and then he got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and he was very happy.,and he was very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then : h) and then the elephant was very happy too.,and then h and then the elephant was very happy too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,The end [+_bch].,The end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(I see a bunny that is in the s um) I see a dog that is in the sandbox and help/ing the bunny.,I see a bunny that is in the s um I see a dog that is in the sandbox and helping the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and the bunny) and the bunny is make/ing a sandcastle.,and the bunny and the bunny is making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,they are try/ing to make a sandcastle.,they are trying to make a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and he is help/ing) and he is help/ing the dog.,and he is helping and he is helping the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and (uh um) the rabbit broke the doggy/z castle.,and uh um the rabbit broke the doggy's castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and then he was make/ing it all over again.,and then he was making it all over again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,The end[!] [+_bch].,The end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(Um) the bunny was go/ing for a picnic.,Um the bunny was going for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,he was follow/ing the dog.,he was following the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and : then they were there already.,and then they were there already +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,they were play/ing in the sandbox with a picnic.,they were playing in the sandbox with a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then he burped) and then he burp/ed.,and then he burped and then he burped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then he was eating all th) and then the dog was eat/ing all the other thing[EW:things].,and then he was eating all th and then the dog was eating all the other thing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,he was eat/ing one at a time.,he was eating one at a time +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then : he was) and (then he sawed|see[EW:saw]) then the dog : he was lay/ing down.,and then he was and then he sawed then the dog he was laying down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and then he was sleep/ing.,and then he was sleeping +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,he was kind of asleep.,he was kind of asleep +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,but he did not.,but he did not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then :) and (then he was turn/ed into a doctor) then he was turn/ed into a doctor.,and then and then he was turned into a doctor then he was turned into a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and he had) and he had doctor thing/s.,and he had and he had doctor things +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and :) and a doctor came.,and and a doctor came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and then : he went with the doctor.,and then he went with the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and then he tooked|take[EW:took] him to the doctor : where the doctor thing is [~__laughs].,and then he tooked him to the doctor where the doctor thing is +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and then : he laid down with a blankie.,and then he laid down with a blankie +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,went to sleep [EU].,went to sleep +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then) : and then the doctor came (to a different) to a different man.,and then and then the doctor came to a different to a different man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,but it was not that man.,but it was not that man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(he was so) he was so tall.,he was so he was so tall +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and he was try/ing to help the man.,and he was trying to help the man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then he w) and then the doctor came (with this) with : the bunny.,and then he w and then the doctor came with this with the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,he was go/ing to the doctor.,he was going to the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,the end[!] [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,they are go/ing to the (um) : circus.,they are going to the um circus +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and then (the bunny was c) the bunny came with him.,and then the bunny was c the bunny came with him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and he had) and he had a balloon.,and he had and he had a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then he w) and then he was try/ing to get the balloon.,and then he w and then he was trying to get the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and he was follow/ing him.,and he was following him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and then he took it off.,and then he took it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then it po) and then it was gone.,and then it po and then it was gone +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and they were try/ing to (get it) : (get) (get) get it back.,and they were trying to get it get get get it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and then he was very mad.,and then he was very mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and then he said I am sorry.,and then he said I am sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and then he had a whole bunch : of balloon/s.,and then he had a whole bunch of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then he want/ed) (and then he want/ed m) and then he was go/ing to get one.,and then he wanted and then he wanted m and then he was going to get one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and then he want/ed one.,and then he wanted one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and then he had some dollars[EW:money].,and then he had some dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and he was) then he was go/ing to[:_gonna] buy one.,and he was then he was going to buy one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,: and then : he gots[EW:has] no money.,and then he gots no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and then he could not buy one.,and then he could not buy one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then he was) and then the doctor (help him) help|help[EW:helps] him.,and then he was and then the doctor help him help him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and then he gave him some money.,and then he gave him some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then) and then he want/ed the balloon.,and then and then he wanted the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and then (um) : he got a balloon for him.,and then um he got a balloon for him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,he gave him some money.,he gave him some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,and then : he got a balloon.,and then he got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and they wan) (and they like/ed) and they like/ed it.,and they wan and they liked and they liked it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,(and then they said) and then they said : thank you.,and then they said and then they said thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/425.slt,The end [+_bch].,The end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,An elephant meet/3s a[-:] horse.,An elephant meets a horse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,then the elephant/z ball[-:] bounce/3s in the water.,then the elephant's ball bounces in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,the horse : swim/3s to get it.,the horse swims to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,the horse got the ball.,the horse got the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,the elephant was happy.,the elephant was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,An elephant and a horse want/ed to go on a diving board.,An elephant and a horse wanted to go on a diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,the elephant say/3s let us go on the diving board.,the elephant says let us go on the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,the elephant slip/3s : and scrape/3s her knee.,the elephant slips and scrapes her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,then[-:] the elephant/z : father come/3s : and put/3s a bandaid on it.,then the elephant's father comes and puts a bandaid on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,and the father said that bandaid will make sure it does not hurt.,and the father said that bandaid will make sure it does not hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,the father say/3s no run/ing.,the father says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,an elephant : met a horse who has a toy plane.,an elephant met a horse who has a toy plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,(the plane f) (he) the horse (pretend it) pretend|pretend[EW:pretend/3s] it fly/3s.,the plane f he the horse pretend it pretend it flies +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,then the elephant want/3s to try.,then the elephant wants to try +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,then : the elephant threw it into the water.,then the elephant threw it into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,it : was sink/ing.,it was sinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,and the horse was mad.,and the horse was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,: and : the elephant/z father came.,and the elephant's father came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,and the elephant said I threw that plane into the water by an accident.,and the elephant said I threw that plane into the water by an accident +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,and it is the horse/z.,and it is the horse's +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,the : elephant/z dad could not reach it because it was too far.,the elephant's dad could not reach it because it was too far +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,and the horse was : cry/ing.,and the horse was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,then a[-:] lady came and : had a net : (and caught it with) and : almost caught it with the net.,then a lady came and had a net and caught it with and almost caught it with the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,and she got it with the net and gave it to the horse.,and she got it with the net and gave it to the horse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,the[-:] horse was happy.,the horse was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,a dog and a bunny are make/ing a sandcastle.,a dog and a bunny are making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,they need/ed : thick sand.,they needed thick sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,but the : sand was too light.,but the sand was too light +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,so it fell on the castle.,so it fell on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,now[-:] the castle is nothing.,now the castle is nothing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,but they could see part of the castle.,but they could see part of the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,a bunny and a dog are go/ing for a walk.,a bunny and a dog are going for a walk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,: they have a picnic.,they have a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,the bunny get/3s too full.,the bunny gets too full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,(he) the bunny gots[EW:has] a stomachache.,he the bunny gots a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,the dog run/3s to : the doctor.,the dog runs to the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,the dog pull/3s the doctor to the bunny.,the dog pulls the doctor to the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,the doctor said : he has a stomachache.,the doctor said he has a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,then the bunny/z mom came.,then the bunny's mom came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,a : dog is pull/ing a wagon with a balloon.,a dog is pulling a wagon with a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,the bunny say/3s : if you let go it will fly up to the sky.,the bunny says if you let go it will fly up to the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,the dog say/3s no do not do that.,the dog says no do not do that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,the balloon flied|fly[EW:flew] up : to the sky.,the balloon flied up to the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,the doggy get/3s mad.,the doggy gets mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,then : a man come/3s by (with) who was[EW:is] sell/ing balloon/s.,then a man comes by with who was selling balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,: the bunny pick/ed : one of the balloon/s : which was five cent/s.,the bunny picked one of the balloons which was five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,and he did not have any money.,and he did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,: so he could not buy it.,so he could not buy it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,his mom came.,his mom came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,and the : bunny say/3s I need a five cent/s to buy one of those balloon/s.,and the bunny says I need a five cents to buy one of those balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,then the (um) mother : (w) one give five (cents) cent/s to the man [EU].,then the um mother w one give five cents cents to the man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,then they both got balloon/s.,then they both got balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/647.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the elephant and the giraffe : were play/ing with a ball.,the elephant and the giraffe were playing with a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the ball went in the water[-:].,the ball went in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the animal was swim[EW:swimming] and got it.,the animal was swim and got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the elephant got her ball back.,the elephant got her ball back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,(the elephant) : (uh : the : um) : they were happy.,the elephant uh the um they were happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,: they were at : the water pool.,they were at the water pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the elephant was : point/ing : at the : jump board.,the elephant was pointing at the jump board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the elephant slip/ed.,the elephant slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the elephant got a[EW:an] owee.,the elephant got a owee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the safety guard[-:] : ran[-:].,the safety guard ran +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the safety guard put a bandaid on her.,the safety guard put a bandaid on her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,she sat down.,she sat down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the : safety guard got mad at her.,the safety guard got mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,no run/ing.,no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,they were go/ing to play with a[EW:an] [?] airplane.,they were going to play with a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the animal was play/ing with (it : uh) the airplane[~!__whispering].,the animal was playing with it uh the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the elephant[~!_whispering] took the airplane.,the elephant took the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the plane went in the water.,the plane went in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the animal got mad at her.,the animal got mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the safety guard : was come/ing to check.,the safety guard was coming to check +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,(he) : the elephant said[-:] the airplane is in the water.,he the elephant said the airplane is in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the safety guard : try/ed to get it.,the safety guard tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,they could not get it.,they could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,a big elephant with a catcher : got it.,a big elephant with a catcher got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,she pull/ed it out.,she pulled it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the animal/z[-:] : airplane was back.,the animal's airplane was back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,they were both happy.,they were both happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,they were go/ing to [~_gonna] make a sandcastle.,they were going to make a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the rabbit put/3s : sand in the bucket.,the rabbit puts sand in the bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,he dump/ed it on the castle.,he dumped it on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the : sandcastle broke.,the sandcastle broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the dog cry/ed.,the dog cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,they were go/ing to go for a picnic.,they were going to go for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,they : took their stuff out.,they took their stuff out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,bunny ate fast.,bunny ate fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,what is that?,what is that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,bunny ate fast [+_bch].,bunny ate fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,he got a sore tummy.,he got a sore tummy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,he was call/ing the doctor.,he was calling the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the pup drag/ed the doctor over there.,the pup dragged the doctor over there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,(you ate too) you ate fast : said the[-:] doctor.,you ate too you ate fast said the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the doctor : (took him with him) [~_EXA:_the_doctor_what] took (him wi) the bunny with him.,the doctor took him with him took him wi the bunny with him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,bunny was come/ing to look at the : balloon.,bunny was coming to look at the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the bunny said wow!,the bunny said wow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the bunny untie/ed it.,the bunny untied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,it flew away[-:].,it flew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,dog was mad[-:].,dog was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,they were go/ing to [~_gonna] buy a new one.,they were going to buy a new one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,they did not have no[EW:any] change.,they did not have no change +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,actually[?] : they did not have five cent/s.,actually they did not have five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,they could not buy one.,they could not buy one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,there was a doctor.,there was a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,the doctor gave them twenty five cent/s for two balloon/s.,the doctor gave them twenty five cents for two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,they : got their balloon.,they got their balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/730.slt,they were happy.,they were happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,one day there was a[EW:an] elephant bounce/ing : a ball.,one day there was a elephant bouncing a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,: it went into the water.,it went into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,: the zebra jump/ed in and (ge) get/3s the ball [EU].,the zebra jumped in and ge gets the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,: and zebra give/3s it back to elephant.,and zebra gives it back to elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,: the lady smile/3s.,the lady smiles +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,and the giraffe smile/3s.,and the giraffe smiles +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,one day : they are both laugh/ing.,one day they are both laughing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,and they want/ed to go on the board.,and they wanted to go on the board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,: (the) : the elephant : said to the giraffe let us go on the board.,the the elephant said to the giraffe let us go on the board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,: and : the elephant slip/3s.,and the elephant slips +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,: and he get/3s a booboo.,and he gets a booboo +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,: then another (el) elephant come/3s run/ing and look|look[EW:looks] at the booboo.,then another el elephant comes running and look at the booboo +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,: and he put/3s a bandage on.,and he puts a bandage on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,: and now (she go) she is : surprise/ed.,and now she go she is surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,: no run/ing allow/ed (the :) the other elephant say/3s.,no running allowed the the other elephant says +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,one day : the giraffe had : a[EW:an] : airplane in his hand.,one day the giraffe had a airplane in his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,: he was fly/ing it.,he was flying it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,elephant took it away from him.,elephant took it away from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,and she drop/ed it into the pool.,and she dropped it into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,: the giraffe got angry at the elephant.,the giraffe got angry at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,but the guy came : run/ing.,but the guy came running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,and : he : see/3s the plane in the water.,and he sees the plane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,the elephant said it was not : me that brought it.,the elephant said it was not me that brought it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,the other elephant try/ed to reach it.,the other elephant tried to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,: (then the l) then the giraffe was cry/ing.,then the l then the giraffe was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,I know a way to get the plane out.,I know a way to get the plane out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,she put in her thing and : got the airplane.,she put in her thing and got the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,(she is) she hand/ed : (the) : the airplane to the giraffe.,she is she handed the the airplane to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,: and the giraffe hug/ed it.,and the giraffe hugged it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,one day : rabbit want/ed to play in the sand.,one day rabbit wanted to play in the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,and so did the dog.,and so did the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,the dog : was go/ing to touch it.,the dog was going to touch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,and the rabbit was fill/ing up his bucket.,and the rabbit was filling up his bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,rabbit dump/3s sand on it.,rabbit dumps sand on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,the dog saw.,the dog saw +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,(and) : and the rabbit was horrified.,and and the rabbit was horrified +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,the dog try/ed to fix it.,the dog tried to fix it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,one day dog met rabbit.,one day dog met rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,and they both want/ed to have a picnic.,and they both wanted to have a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,rabbit ate and ate.,rabbit ate and ate +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,: rabbit got a stomachache.,rabbit got a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,and the dog was eat/ing.,and the dog was eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,: he got : sick.,he got sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,the dog came run/ing to a doctor.,the dog came running to a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,he said wait a minute.,he said wait a minute +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,what is this problem about?,what is this problem about +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,it is about him.,it is about him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,and he is sick.,and he is sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,the doctor take/3s him : for a walk.,the doctor takes him for a walk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,one day a dog (was take/ing a b) wrap/ed a balloon : on her[-:] : wagon.,one day a dog was taking a b wrapped a balloon on her wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,the bunny see/3s the balloon.,the bunny sees the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,he tie/3s it off.,he ties it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,he let go.,he let go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,and it was float/ing away.,and it was floating away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,and the dog was mad at the rabbit.,and the dog was mad at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,and the rabbit see/3s balloon/s.,and the rabbit sees balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,: a[EW:the] balloon/s : were holded|hold[EW:held] by an old rabbit.,a balloons were holded by an old rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,it is worth five : cent/s.,it is worth five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,you cannot have a balloon if you do not have any money.,you cannot have a balloon if you do not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,rabbit go/3s : to the doctor.,rabbit goes to the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,we want a balloon.,we want a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,she paid : (two[-:] ) two (ff) : nickele/s.,she paid two two ff nickeles +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/614.slt,and now they both got[EW:have] balloon/s.,and now they both got balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,(um) : a giraffe and a[EW:an] elephant were friend/s.,um a giraffe and a elephant were friends +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and they were play/ing (ta) with each other.,and they were playing ta with each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and then : their ball : went in the water.,and then their ball went in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and the giraffe went to try and[EW:to] swim for the ball.,and the giraffe went to try and swim for the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and the giraffe got it and gave it : to the elephant.,and the giraffe got it and gave it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and the giraffe was soak/ing wet.,and the giraffe was soaking wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,(um) : once there was a[EW:an] elephant and giraffe.,um once there was a elephant and giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and they (wen) were friend/s.,and they wen were friends +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and they went to a swimming pool together.,and they went to a swimming pool together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and the elephant was go/ing to jump in.,and the elephant was going to jump in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,(and she) and before she jump/ed in : (um) : for some reason she must have forgot something.,and she and before she jumped in um for some reason she must have forgot something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,(she went) she ran very fast.,she went she ran very fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,with no run/ing allow/ed the elephant fell down and hurt her knee.,with no running allowed the elephant fell down and hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,she was cry/ing and look/ing at the pain.,she was crying and looking at the pain +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,she is : cry/ing even more[!] and not[!] look/ing at the pain.,she is crying even more and not looking at the pain +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,then she sat down on the bench.,then she sat down on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and the lifeguard gave her a bandaid.,and the lifeguard gave her a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and the lifeguard said no run/ing allow/ed.,and the lifeguard said no running allowed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,the elephant and the giraffe went to the swimming pool.,the elephant and the giraffe went to the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,(and they) and the giraffe brought a swimming toy with him.,and they and the giraffe brought a swimming toy with him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,(and) and he was play/ing it.,and and he was playing it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and the elephant was just like stare[EW:stare/ing] (on it) : (on) at it like crazy.,and the elephant was just like stare on it on at it like crazy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,(the) the elephant grab/ed it from the giraffe.,the the elephant grabbed it from the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,it look/ed so neat.,it looked so neat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and then she drop/ed it in the water.,and then she dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,the : giraffe got very mad at the elephant.,the giraffe got very mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,the lifeguard came and : look/ed at it : (and) and came closer to the elephant.,the lifeguard came and looked at it and and came closer to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and the elephant was (ex) try/ing to explain : how it happen/ed.,and the elephant was ex trying to explain how it happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and the lifeguard was listen/ing very carefully.,and the lifeguard was listening very carefully +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,the lifeguard try/ed to get it.,the lifeguard tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,but he could not.,but he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,the giraffe was cry/ing.,the giraffe was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,(the both) the lifeguard and the elephant (were) was[EW:were] just kind of stare/ing at it.,the both the lifeguard and the elephant were was just kind of staring at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,then a girl with a net came.,then a girl with a net came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,(and the) [~_actually_go_back] and (they was sup) they were like [~_points_to_the_picture].,and the and they was sup they were like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and the girl with the net : was : (pull) : (get) try/ing to get the airplane with her net.,and the girl with the net was pull get trying to get the airplane with her net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and she got it for the : giraffe.,and she got it for the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,the giraffe was hug/ing it.,the giraffe was hugging it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,once there was a bunny and : dog.,once there was a bunny and dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,(and and) and they were friend/s.,and and and they were friends +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,the dog was make/ing a sandcastle.,the dog was making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,then the bunny was about to come in with a shovel.,then the bunny was about to come in with a shovel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and he came in and throwed|throw[EW:threw] a : bucket of sand.,and he came in and throwed a bucket of sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,the bunny dump/ed it onto the (ca) : sandcastle.,the bunny dumped it onto the ca sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,dog was kind of sad.,dog was kind of sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,(it bro) I think it broke her castle.,it bro I think it broke her castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,she was cry/ing.,she was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,there was a dog and a bunny.,there was a dog and a bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,they were friend/s.,they were friends +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and they were go/ing to [~_gonna] go to a picnic with each other.,and they were going to go to a picnic with each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,(um : the) the dog : was take/ing everything out of her picnic basket.,um the the dog was taking everything out of her picnic basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,but the bunny was just eat/ing everything she took out.,but the bunny was just eating everything she took out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,(the) the bunny was : very full.,the the bunny was very full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and the dog was hardly even (eat) ate everything [EU].,and the dog was hardly even eat ate everything +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,the bunny was : fat.,the bunny was fat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and then the : dog was about to drink a little bit of her juice.,and then the dog was about to drink a little bit of her juice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and the : bunny had a tummyache.,and the bunny had a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,then a grownup bunny came along.,then a grownup bunny came along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,(and the) and the dog was race/ing to her.,and the and the dog was racing to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and it was like please(*3).,and it was like please please please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and the lady was like you eat too : to eat : you bunny.,and the lady was like you eat too to eat you bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and the bunny and the : grownup bunny (just) : just went along with each other.,and the bunny and the grownup bunny just just went along with each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,(the bunny and the dog were) (the) the bunny was run/ing to the dog.,the bunny and the dog were the the bunny was running to the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and the dog was just : go/ing her wagon in front of her : with her balloon.,and the dog was just going her wagon in front of her with her balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and the bunny like/ed the balloon.,and the bunny liked the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,he was about to pull it off.,he was about to pull it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and the bunny was untie/ing it.,and the bunny was untying it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and (the bunny was like) [~_I_mean] (the) the dog was like [~_makes_gasping_sound].,and the bunny was like the the dog was like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and then the bunny : untie/ed it.,and then the bunny untied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and (the) : the balloon float/ed away.,and the the balloon floated away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,they were try/ing to reach to get it.,they were trying to reach to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,the dog got mad at the bunny (un) (until) when the string was just left.,the dog got mad at the bunny un until when the string was just left +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and then a bunny with (balloon) (lot/s of) lot/s[!] of balloon/s came.,and then a bunny with balloon lots of lots of balloons came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and he said [~_change_in_voice] come here come here the bunny.,and he said come here come here the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and (the) the man with the balloon/s came.,and the the man with the balloons came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and the bunny was like [~_forlorn_look_on_face].,and the bunny was like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and the big bunny with the balloon/s was like which one do you want?,and the big bunny with the balloons was like which one do you want +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,that one that one the little bunny was like [~_facial_expression].,that one that one the little bunny was like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,(this) : this one?,this this one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,[~_CHI_asks_EXA:_actually_go_back] you can not have this one [~__harsh_voice].,you can not have this one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and then the bunny and[!] the dog was[EW:were] sad.,and then the bunny and the dog was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and then (the) the same lady with the other book came.,and then the the same lady with the other book came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,(and the) and the bunny was run/ing to her.,and the and the bunny was running to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and the dog was just stay/ing with the : bunny with the balloon/s.,and the dog was just staying with the bunny with the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,(and) : and the dog still had her wagon.,and and the dog still had her wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,(and the) and (the grown up b) (girl bunny was) the kid bunny was say/ing to the grown up girl bunny : can we get one of those balloon/s?,and the and the grown up b girl bunny was the kid bunny was saying to the grown up girl bunny can we get one of those balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,can we get one of those balloon/s : for the dog?,can we get one of those balloons for the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,(and the) : (and the) and she paid for it.,and the and the and she paid for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/554.slt,and they each got a balloon.,and they each got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,two : different animal/s were : the swimming pool [EU].,two different animals were the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,"they want/ed to play dodgeball in the water, water dodgeball.",they wanted to play dodgeball in the water water dodgeball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,the ball got in the water.,the ball got in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,and the (an) giraffe[-:] was go/ing to[:_gonna] get it.,and the an giraffe was going to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,so (huh : hm) while he was swim/ing water came out of his mouth.,so huh hm while he was swimming water came out of his mouth +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,and[-:] he was all drippy.,and he was all drippy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,then[?] : giggle/ed [EU].,then giggled +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,(he[-:]) (the ele) the elephant watch/ed.,he the ele the elephant watched +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,when they were at : a swimming pool the elephant want/ed (in the dive) the diving board.,when they were at a swimming pool the elephant wanted in the dive the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,(and there) (she want/ed to run toward) she want/ed to race towards it.,and there she wanted to run toward she wanted to race towards it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,but there was a sign[-:] that said no run/ing.,but there was a sign that said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,she runned|run[EW:ran][!] : towards here.,she runned towards here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,the giraffe never runned|run[EW:ran].,the giraffe never runned +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,(and they) (xx xx huh) and the elephant slip/ed and slip/ed : and fall|fall[EW:fell] down and hurt her knee.,and they huh and the elephant slipped and slipped and fall down and hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,lifeguard came run/ing.,lifeguard came running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,she[-:] : got a bandaid on it : [EW:an]elephant sized[~!_laughing] : bandaid.,she got a bandaid on it elephant sized bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,and (h) : bit better [EU].,and h bit better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,and[~!_laughing] the lifeguard said next[~!_laughing] time look at the sign[-:] [~_laughs] !,and the lifeguard said next time look at the sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,they were at the swimming pool.,they were at the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,and the (huh) giraffe (huh) : is throw/ing (air huh) super duper fly/ing jet plane [EU].,and the huh giraffe huh is throwing air huh super duper flying jet plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,he want/ed to fly it.,he wanted to fly it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,but : Elephant want/ed to fly it into the water see if it could : land on its gear [EU].,but Elephant wanted to fly it into the water see if it could land on its gear +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,but (it w) it was start/ing to sink.,but it w it was starting to sink +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,then[-:] the giraffe got angry at her : because of the plane : in the water.,then the giraffe got angry at her because of the plane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,and a lifeguard (huh : s) look/ed at them.,and a lifeguard huh s looked at them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,what is go/ing on?,what is going on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,and they said : (the) : my friend (s) : his super duper : jet plane is in the swimming pool.,and they said the my friend s his super duper jet plane is in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,it is sink/ing.,it is sinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,he try|try[EW:tried] to get it.,he try to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,but he could not reach it.,but he could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,it was start/ing to sink more.,it was starting to sink more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,cry/ed [EU].,cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,then (they s) he who is : there to swim [~_laughs] he got something : (was all) that look/ed like a big fishing net.,then they s he who is there to swim he got something was all that looked like a big fishing net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,he got it out.,he got it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,(huh) he got it.,huh he got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,and he tooked|take[EW:took] it out and : (start/ing) stop cry/ing [EU].,and he tooked it out and starting stop crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,then[-:] : to : the giraffe : and got happy [EU].,then to the giraffe and got happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,he hug/ed his plane : like it was[~!_laughing] a lost memory.,he hugged his plane like it was a lost memory +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,(hm) : there : were [~_laughs] : two : mole/s at the sandbox.,hm there were two moles at the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,one : was : build/ing a sandcastle.,one was building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,and one was build/ing a pail.,and one was building a pail +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,(one) the bunny : when he was done fill/ing it up : and pat/ing it down he put it right[!] over (the) : the sandcastle[-:][!].,one the bunny when he was done filling it up and patting it down he put it right over the the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,: went oh no [EU]!,went oh no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,doggy got[EW:was] sad.,doggy got sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,[~_laughs] bunny just whistle/ed [~_laughs].,bunny just whistled +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,the animal/s : go/ing out for a picnic in the wood/s [EU].,the animals going out for a picnic in the woods +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,they found the perfect spot.,they found the perfect spot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,they start/ed chow/ing down.,they started chowing down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,[~_laughs] the doggy ate (s) sandwich[EW:sandwiches] and juice.,the doggy ate s sandwich and juice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,and the bunny[~!_laughing] got just a tummyache [EU].,and the bunny got just a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,[~_laughs] : then : him[EW:he] : (xx xx) drinked|drink[EW:drank] : his juice : and ate a biscuit.,then him drinked his juice and ate a biscuit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,and the bunny[~!_laughing] got (a) : sicker.,and the bunny got a sicker +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,[~_laughs] the bunny faint/ed [~_laughs].,the bunny fainted +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,then got : there [EU].,then got there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,him[EW:he] want|want[EW:wanted][?] to get him to : come [~_laughs].,him want to get him to come +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,[~_laughs] he got a big tummyache.,he got a big tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,he was go/ing dizzy[-:] [EU]!,he was going dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,(hm pic) [EW:the]picnic was all gone.,hm pic picnic was all gone +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,[~_laughs] the (we) bunny went back home.,the we bunny went back home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,one animal had a balloon[-:].,one animal had a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,and : the bunny was come/ing towards (this) him.,and the bunny was coming towards this him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,[~_laughs] : he say|say[EW:says] cool[!] : balloon[-:].,he say cool balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,he untie/ed the balloon.,he untied the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,did not know it would float up [EU].,did not know it would float up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,it went really[!] high.,it went really high +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,they could not get[!] it.,they could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,and the balloon : was gone.,and the balloon was gone +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,the doggy got angry.,the doggy got angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,then[-:] : there was a balloon saler[EW:seller].,then there was a balloon saler +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,he want/ed one of the balloon/s (to get) : (to) : for his friend.,he wanted one of the balloons to get to for his friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,but : he was broke.,but he was broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,(s) so : decide/ed to get someone who had money.,s so decided to get someone who had money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,the bunny went to get the doctor.,the bunny went to get the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,she had lot/s[!] of money : (huh) : to get : a balloon.,she had lots of money huh to get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,then[-:] : two balloon/s : for each of them.,then two balloons for each of them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/875.slt,and they were pretty [~_laughs] have/ing fun [~_laughs] and laugh/ing [EU].,and they were pretty having fun and laughing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,an : elephant was play/ing with a ball.,an elephant was playing with a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and a giraffe came to play with it.,and a giraffe came to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,(um) and the elephant : threw the ball into the pool.,um and the elephant threw the ball into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and then : they got : scare/ed : that it would sink.,and then they got scared that it would sink +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,the giraffe try/ed : swim/ing : to get it.,the giraffe tried swimming to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,but he could not get it.,but he could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,(and h um) : but he got it.,and h um but he got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and he gave the ball back to the elephant.,and he gave the ball back to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and the elephant was happy to see the ball again.,and the elephant was happy to see the ball again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,The elephant and the giraffe seen|see[EW:saw] a diving board.,The elephant and the giraffe seen a diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,(and the elephant said) and the elephant start/ed run/ing.,and the elephant said and the elephant started running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and the sign said no run/ing.,and the sign said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and then the giraffe try/ed to catch the elephant.,and then the giraffe tried to catch the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,but the elephant hurt herself.,but the elephant hurt herself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and she had a cut.,and she had a cut +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and she got a bandaid.,and she got a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and she felt better.,and she felt better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and the lifeguard got mad at her because the sign said no run/ing.,and the lifeguard got mad at her because the sign said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,The giraffe had a toy airplane.,The giraffe had a toy airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and the elephant want/ed to play with it.,and the elephant wanted to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,the giraffe : start/ed fly/ing it.,the giraffe started flying it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,[~_coughs] and then the elephant took it from him and start/ed fly/ing it.,and then the elephant took it from him and started flying it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and then it sunk underwater.,and then it sunk underwater +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and the giraffe got mad at the elephant.,and the giraffe got mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,but the lifeguard went to get it.,but the lifeguard went to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and it was still float/ing in the pool.,and it was still floating in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and then he try/ed get/ing it from the outside of the pool.,and then he tried getting it from the outside of the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and he could not reach it.,and he could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and then : someone else came with a fishing net : and got it out of the pool : and gave it back to the giraffe.,and then someone else came with a fishing net and got it out of the pool and gave it back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and he was happy again.,and he was happy again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,a rabbit and a dog were play/ing : in the sand.,a rabbit and a dog were playing in the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,they made a sandcastle.,they made a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,the rabbit broke the sandcastle.,the rabbit broke the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and the rabbit : got : mad.,and the rabbit got mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and the : dog start/ed cry/ing.,and the dog started crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,the rabbit and the dog went for a picnic.,the rabbit and the dog went for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,the rabbit had more stuff to eat than the dog.,the rabbit had more stuff to eat than the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,the rabbit got really really full.,the rabbit got really really full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and then the rabbit had a stomachache.,and then the rabbit had a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,the dog ran to the rabbit/z mom.,the dog ran to the rabbit's mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,[~_whispers] the dog [+_bch].,the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,(and) and : she went to see the rabbit.,and and she went to see the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,(um) : and : (the) : she was a doctor.,um and the she was a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,(um) the rabbit felt better.,um the rabbit felt better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and he went home.,and he went home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,the dog was with his wagon and his balloon.,the dog was with his wagon and his balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and : the rabbit want/ed the balloon.,and the rabbit wanted the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,the rabbit untie/ed the balloon and took it.,the rabbit untied the balloon and took it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,then the balloon : flew up in the air.,then the balloon flew up in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and the dog got mad.,and the dog got mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and there was a rabbit hold/ing a lot of balloon/s.,and there was a rabbit holding a lot of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and : the little rabbit bought : a balloon.,and the little rabbit bought a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,(hm) : and the little rabbit could not buy the balloon because it was five cent/s.,hm and the little rabbit could not buy the balloon because it was five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and : the dog : saw the balloon/s.,and the dog saw the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and the little rabbit : went to get some money from the : doctor.,and the little rabbit went to get some money from the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and : the rabbit told the doctor that he did not have any money.,and the rabbit told the doctor that he did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and : she bought the balloon.,and she bought the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/707.slt,and the little rabbit and the dog had balloon/s.,and the little rabbit and the dog had balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,there was this old : giraffe [~_pronounced_/gUraef/].,there was this old giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and elephant was play/ing (by) by the pool with some bouncy ball/s.,and elephant was playing by by the pool with some bouncy balls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and the giraffe came up and said can I play?,and the giraffe came up and said can I play +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,then he bump/ed the ball.,then he bumped the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and then it went into the pool.,and then it went into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,then the giraffe swam(*2) [~_said_twice_for_effect].,then the giraffe swam swam +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and (there was) : water came out of his ear/s.,and there was water came out of his ears +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and the : elephant could not look.,and the elephant could not look +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,then : the : giraffe : gave it to the elephant.,then the giraffe gave it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and she was happy.,and she was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,then he smile/ed.,then he smiled +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and she smile/ed.,and she smiled +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,there was (these two elephants) the giraffe and the elephant.,there was these two elephants the giraffe and the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and there was a diving board.,and there was a diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and the sign said no run/ing.,and the sign said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and the elephant ran and ran.,and the elephant ran and ran +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and they almost slip/ed.,and they almost slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,then she slip/ed.,then she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and then the giraffe ran after her.,and then the giraffe ran after her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and then the elephant : hurt herself on the knee.,and then the elephant hurt herself on the knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and the giraffe look/ed at the sign : no run/ing.,and the giraffe looked at the sign no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,(and she sa) and the giraffe said no run/ing.,and she sa and the giraffe said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and the lifeguard came.,and the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,: and (sh) (sh) the lifeguard put a bandaid on.,and sh sh the lifeguard put a bandaid on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and : she was still cry/ing.,and she was still crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,: and the lifeguard help/ed her up and hand/ed her to the giraffe.,and the lifeguard helped her up and handed her to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and the lifeguard said no run/ing.,and the lifeguard said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and she got up.,and she got up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and she was all better.,and she was all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and he flew his airplane.,and he flew his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and he flew it.,and he flew it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and slobber came out.,and slobber came out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and : the (gir) elephant look/ed at : the airplane.,and the gir elephant looked at the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and : she got dizzy.,and she got dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,then she took it and flew it.,then she took it and flew it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and the giraffe said (uh) [EU].,and the giraffe said uh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,then it went into the water.,then it went into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and the : giraffe got really mad at the elephant.,and the giraffe got really mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and the lifeguard came again.,and the lifeguard came again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and : he look/ed : at the elephant.,and he looked at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and there was a airplane in the water.,and there was a airplane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and : he try/ed to reach it.,and he tried to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,but he could not.,but he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,(and) and the giraffe start/ed to cry.,and and the giraffe started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and another lifeguard came : and : brought this net.,and another lifeguard came and brought this net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and she : try/ed to get it.,and she tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and she did.,and she did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and she hand/ed it back to : the giraffe.,and she handed it back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,then the giraffe and the elephant was[EW:were] so happy.,then the giraffe and the elephant was so happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,there are these two bunny rabbit/s : play/ing in the sand.,there are these two bunny rabbits playing in the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,they made a castle.,they made a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and they are laugh/ing.,and they are laughing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,they start/ing to fix it : and : build/ing new stuff.,they starting to fix it and building new stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,: the boy rabbit dump/ed : sand on the castle.,the boy rabbit dumped sand on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,(sh) and (the) a little part of the castle is show/ing.,sh and the a little part of the castle is showing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and now it is only sand.,and now it is only sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,now they are try/ing to build it back together.,now they are trying to build it back together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,they are these two rabbit/s walk/ing (down the) : in the forest.,they are these two rabbits walking down the in the forest +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,they walk/ed and walk/ed.,they walked and walked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,they met each other.,they met each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and they start/ed to have a picnic (with every bo) (and with every) : with : that girl.,and they started to have a picnic with every bo and with every with that girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and then the boy rabbit ate everything up.,and then the boy rabbit ate everything up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and he was full.,and he was full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,then : the girl rabbit look/ed at the boy rabbit.,then the girl rabbit looked at the boy rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and the boy rabbit did not feel so good.,and the boy rabbit did not feel so good +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and then : there was a doctor came [EU].,and then there was a doctor came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and the girl went to get (hi) her.,and the girl went to get hi her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and she pull/ed.,and she pulled +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and she pull/ed.,and she pulled +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and they finally got there.,and they finally got there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and she was check/ing : if he was : all right.,and she was checking if he was all right +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,then : the doctor took him.,then the doctor took him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and : the girl stay/ed there.,and the girl stayed there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,they saw these two rabbit/s walk/ing down the wood/s again.,they saw these two rabbits walking down the woods again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and one had a wagon and a balloon.,and one had a wagon and a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and the boy jog/ed and jog/ed.,and the boy jogged and jogged +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and they look/ed at the balloon.,and they looked at the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and the boy rabbit untie/ed it.,and the boy rabbit untied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and he tie/ed : it.,and he tied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and it flew up up and away.,and it flew up up and away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and the girl rabbit got so mad.,and the girl rabbit got so mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,there was : another balloons[EW:balloon].,there was another balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and the girl (ma) rabbit was still[!] mad.,and the girl ma rabbit was still mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,: and : the : boy ask/ed the man a question.,and the boy asked the man a question +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,: and : then the girl was come/ing over.,and then the girl was coming over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and the man said the balloon/s were five cent/s.,and the man said the balloons were five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and the girl look/ed at there [EU].,and the girl looked at there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and the man smile/ed.,and the man smiled +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,(oh again) there was the doctor : again.,oh again there was the doctor again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,: and (sh) the boy talk/ed to the rabbit : and said : my sister is mad because I lost her balloon.,and sh the boy talked to the rabbit and said my sister is mad because I lost her balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,the girl is mad.,the girl is mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,: here is five cent/s.,here is five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,and here are two balloon/s he said.,and here are two balloons he said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,they were so happy.,they were so happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/823.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,A giraffe and an elephant [EU].,A giraffe and an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,(are bou) the elephant is bounce/ing a ball.,are bou the elephant is bouncing a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and they are by the pool.,and they are by the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,the ball fall/3s into the pool.,the ball falls into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,the giraffe swim/3s to get it.,the giraffe swims to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,(um) the giraffe : give/3s the : ball back to the elephant.,um the giraffe gives the ball back to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,she thank/3s the giraffe.,she thanks the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,The elephant and the giraffe are go/ing to the pool.,The elephant and the giraffe are going to the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,the elephant is point/ing to the diving board.,the elephant is pointing to the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,(she) she is run/ing so she slip/3s.,she she is running so she slips +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,she hurt/3s her knee.,she hurts her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,the lifeguard come/3s to see what happen/ed.,the lifeguard comes to see what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,the lifeguard put/3s a bandaid on it.,the lifeguard puts a bandaid on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,(she) the elephant sit/3s on the bench.,she the elephant sits on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and she smile/3s at the lifeguard when he point/3s at the no run/ing sign.,and she smiles at the lifeguard when he points at the no running sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,The elephant and the giraffe go to the pool again.,The elephant and the giraffe go to the pool again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,the : giraffe bring/3s an airplane that he is try/ing to fly.,the giraffe brings an airplane that he is trying to fly +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and the elephant is just look/ing at it.,and the elephant is just looking at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,then the elephant take/3s it away from the giraffe.,then the elephant takes it away from the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and she drop/3s it into the water.,and she drops it into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,the giraffe get/3s mad at her.,the giraffe gets mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,the lifeguard come/3s and see[EW:see/3s] what is happen/ing.,the lifeguard comes and see what is happening +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,the elephant is try/ing to explain what happen/ed.,the elephant is trying to explain what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,the lifeguard try/3s to reach it.,the lifeguard tries to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and he can not reach it.,and he can not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,(and the elephant) and the giraffe : start/3s cry/ing.,and the elephant and the giraffe starts crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,then another elephant come/3s with a : (um) net : and put/3s the net in the water and try/3s to get the : airplane.,then another elephant comes with a um net and puts the net in the water and tries to get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and she get/3s it out.,and she gets it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and the giraffe is happy again.,and the giraffe is happy again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,(um : Two people) two (um) animal/s are : in the sandbox.,um Two people two um animals are in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,they are build/ing a sandcastle.,they are building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,one of them is dump/ing sand over the castle.,one of them is dumping sand over the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,the sandcastle break/3s : because all of the sand.,the sandcastle breaks because all of the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and one of the animal/s get/3s sad.,and one of the animals gets sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,two animal/s are go/ing on a picnic.,two animals are going on a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,they bring lot/s of food.,they bring lots of food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and one of them is drool/ing over it.,and one of them is drooling over it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,one of them eat/3s it all up.,one of them eats it all up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and he get/3s a (tomach) stomachache.,and he gets a tomach stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and the doctor come/3s to see what is wrong with him.,and the doctor comes to see what is wrong with him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,(she) (she) one of the animal/3s is drag/ing her.,she she one of the animals is dragging her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,(she is) (she) she come/3s and (see what) see/3s what is wrong.,she is she she comes and see what sees what is wrong +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and she help/3s him.,and she helps him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,two : animal/s [EU].,two animals +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,one animal come/3s to see the other animal.,one animal comes to see the other animal +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,one animal look/3s at the balloon that she has.,one animal looks at the balloon that she has +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,(she is) he is take/ing it off of the wagon.,she is he is taking it off of the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and it fly/3s away.,and it flies away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,then one of them get/3s really mad.,then one of them gets really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,then they see the balloon man.,then they see the balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and he probably go/3s to buy her another one.,and he probably goes to buy her another one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and she ask/3s for one balloon.,and she asks for one balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and the balloon/s are five cent/s.,and the balloons are five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and he is look/ing in his pocket/s.,and he is looking in his pockets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and he is sad because he do/3s not have five cent/s.,and he is sad because he does not have five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and then the doctor is just look/ing at the view.,and then the doctor is just looking at the view +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and he go/3s and ask/3s for five cent/s.,and he goes and asks for five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and she give/3s the balloon man five cent/s.,and she gives the balloon man five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/925.slt,and then : they both get balloon/s.,and then they both get balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,An elephant is play/ing ball with a ball.,An elephant is playing ball with a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and then a giraffe is just (look/ing at) look/ing at the elephant like wow[!].,and then a giraffe is just looking at looking at the elephant like wow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and (the) now (the) the elephant was bounce/ing it.,and the now the the elephant was bouncing it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and it fell into the water.,and it fell into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now the elephant is sad.,and now the elephant is sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,so look/3s like the giraffe is go/ing to go get it.,so looks like the giraffe is going to go get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now the giraffe jump/3s in : and is swim/ing to get (the balloon) [~_not_the_balloon] the : ball.,and now the giraffe jumps in and is swimming to get the balloon the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and so now she got it for the elephant.,and so now she got it for the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the elephant is help/ing him out.,and the elephant is helping him out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now the elephant is happy.,and now the elephant is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the giraffe : is happy too!,and the giraffe is happy too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,(Um : hm) [~_laughs] (um) they are stand/ing in front of a pool the giraffe and the elephant.,Um hm um they are standing in front of a pool the giraffe and the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and look/3s like they could (be) feel like swim/ing.,and looks like they could be feel like swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,that is all [+_bch].,that is all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now the elephant see/3s the diving board.,and now the elephant sees the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the elephant want/3s to go dive/ing into the pool.,and the elephant wants to go diving into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the elephant is run/ing to go get : to the diving board.,and the elephant is running to go get to the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the[?] giraffe is run/ing after her.,and the giraffe is running after her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and then she fell : and hurt her knee.,and then she fell and hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and looks like she is go/ing to cry.,and looks like she is going to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the[?] giraffe is run/ing to help her.,and the giraffe is running to help her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and then the lifeguard come/3s : and is help/ing her.,and then the lifeguard comes and is helping her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and : the giraffe is help/ing her too.,and the giraffe is helping her too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now she is cry/ing.,and now she is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the : lifeguard is put/ing a bandaid on her : leg.,and the lifeguard is putting a bandaid on her leg +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now (the) the lifeguard is carry/ing her to a bench.,and now the the lifeguard is carrying her to a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and (the hiraff) the giraffe is help/ing her.,and the hiraff the giraffe is helping her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the lifeguard is mad (and is say) and is tell/ing her look at the sign.,and the lifeguard is mad and is say and is telling her look at the sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,it says no run/ing on it.,it says no running on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the giraffe (and) and (the um) the elephant (look/3s like he is) look/3s (like she never) (I don't know) (I can not) (I don't know what she is do/ing) (let us see) (like hm) like he is go/ing to[:_gonna] : get very mad at her?,and the giraffe and and the um the elephant looks like he is looks like she never I don't know I can not I don't know what she is doing let us see like hm like he is going to get very mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,now the giraffe has a : little : airplane.,now the giraffe has a little airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the elephant want/3s to play with it too.,and the elephant wants to play with it too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now the giraffe is try/ing to make it move.,and now the giraffe is trying to make it move +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the elephant is look/ing at it like wow[!].,and the elephant is looking at it like wow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now it is the elephant/z turn.,and now it is the elephant's turn +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the elephant : is try/ing to fly it : now.,and the elephant is trying to fly it now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now the giraffe is look/ing at his plane because the plane fell into the (wa) swimming pool.,and now the giraffe is looking at his plane because the plane fell into the wa swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now the giraffe is mad at the elephant : because : his : airplane is sink/ing into the water.,and now the giraffe is mad at the elephant because his airplane is sinking into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,now the lifeguard look/ing at them.,now the lifeguard looking at them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and they are look/ing back at him.,and they are looking back at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,now : (she is try/ing to) the elephant is try/ing to explain to the lifeguard that the plane fell in and is ask/ing if (they can) he can get it out : for them.,now she is trying to the elephant is trying to explain to the lifeguard that the plane fell in and is asking if they can he can get it out for them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the lifeguard (is try/ing) is on his knees try/ing to (ah) : get it : out of the water.,and the lifeguard is trying is on his knees trying to ah get it out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and both of them are look/ing at him.,and both of them are looking at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the lifeguard look/3s like he is use/ing all his might.,and the lifeguard looks like he is using all his might +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now the lifeguard could not get it.,and now the lifeguard could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the elephant (s) felt sad.,and the elephant s felt sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and so did the giraffe.,and so did the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,now a lady come/3s.,now a lady comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and : she has a little net.,and she has a little net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,she said she would get it for them : the airplane.,she said she would get it for them the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now she is use/ing all her[!] might and : look/3s like she got it.,and now she is using all her might and looks like she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and then she got it out (for the li) for the giraffe.,and then she got it out for the li for the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the giraffe was happy.,and the giraffe was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now the elephant and the giraffe (are both) are both happy again.,and now the elephant and the giraffe are both are both happy again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,(Um[-:] two[-:] ) a bunny *is in the[?] sandbox make/ing : a castle [EU].,Um two a bunny in the sandbox making a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and another one is (out) on the outside go/ing to[:_gonna] come in.,and another one is out on the outside going to come in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and then now they are both make/ing a bigger and bigger one.,and then now they are both making a bigger and bigger one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and (that is all) that is all I can see [+_bch].,and that is all that is all I can see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and then one of the bunny/s is pour/ing so much sand on.,and then one of the bunnies is pouring so much sand on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the other one (is) I think it is scare/ed or something [~_I__do_n(o)t_know].,and the other one is I think it is scared or something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and (now the sand) now the sandcastle was broken!,and now the sand now the sandcastle was broken +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the other one [~_I_do_n(o)t_know] just look/ed normal [~_laughs].,and the other one just looked normal +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now she is try/ing and try/ing to make (a b) another one because it is all broken.,and now she is trying and trying to make a b another one because it is all broken +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,Two bunny/s are walk/ing along in [~_I_don't_know] maybe a forest or something.,Two bunnies are walking along in maybe a forest or something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and they are hold/ing (a picnic basket) two picnic basket/s.,and they are holding a picnic basket two picnic baskets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now they are have/ing a picnic.,and now they are having a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,(and all) and they are eat/ing.,and all and they are eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,actually one of them is eat/ing with all the food.,actually one of them is eating with all the food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the other one is just sitt/ing there with his sandwich in his hand.,and the other one is just sitting there with his sandwich in his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now they are both eat/ing.,and now they are both eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now one of them'is eat/ing.,and now one of them'is eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the other one has a stomachache.,and the other one has a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the other one really do/3s not know what to do : because he has a stomachache.,and the other one really does not know what to do because he has a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,(and he) and he is get/ing dizzy[!].,and he and he is getting dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and then a : doctor was walk/ing along.,and then a doctor was walking along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the other one came : and told the doctor (that : he was) that he had a stomachache.,and the other one came and told the doctor that he was that he had a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and so now she is pull/ing the : doctor : to come and get (the person) the rabbit actually.,and so now she is pulling the doctor to come and get the person the rabbit actually +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now the doctor is operat/ing on the (guy) : little bunny.,and now the doctor is operating on the guy little bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,now the little bunny is fine.,now the little bunny is fine +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and he is go/ing home with the doctor.,and he is going home with the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the other one is sit/ing by (the sand box thing or whatever) [~_I_mean] the big (picnic) picnic[!][-:] thing.,and the other one is sitting by the sand box thing or whatever the big picnic picnic thing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,now the two bunny/s are : walk/ing along.,now the two bunnies are walking along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and one of them is pull/ing a wagon : that has a balloon attach/ed to it [~_laughs].,and one of them is pulling a wagon that has a balloon attached to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now the other bunny never notice/ed the : (um) balloon : and is look/ing at the balloon and point/ing at it.,and now the other bunny never noticed the um balloon and is looking at the balloon and pointing at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,[~_I_don't_know] pretty funny.,pretty funny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,now (the) the bunny is try/ing to untie the balloon.,now the the bunny is trying to untie the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the other one (is) [~_I_don't_know] look/3s kind of scare/ed.,and the other one is looks kind of scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the balloon flew away.,and the balloon flew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and they are both hop/ing and try/ing (to get it) to catch it.,and they are both hopping and trying to get it to catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the balloon *is gone [EU].,and the balloon gone +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and one of them (look) is just look/ing up.,and one of them look is just looking up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the other one is very mad.,and the other one is very mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,now : the other one see/3s : a man sell/ing balloon/s.,now the other one sees a man selling balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and then so he is walk/ing along (k) to get a balloon for the one he : made fly away.,and then so he is walking along k to get a balloon for the one he made fly away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,now (he is say) he is say/ing to (the thing) the man can I have a balloon?,now he is say he is saying to the thing the man can I have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,look/3s like it.,looks like it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and (now he got) now he did not have any money for the balloon/s.,and now he got now he did not have any money for the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,(and li) and (uh) the guy said it is only five cent/s for a balloon.,and li and uh the guy said it is only five cents for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and then (hm) he look/3s (um) [~_let_(u)s_see] he look/3s weird [~_I_don't_know].,and then hm he looks um he looks weird +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,now they are both look/ing at the guy.,now they are both looking at the guy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the guy *is look/ing down at them : while he is hold/ing the balloon/s [EU].,and the guy looking down at them while he is holding the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now : (she is run/ing to) one of the rabbit guy/s are run/ing to the doctor : that they saw before.,and now she is running to one of the rabbit guys are running to the doctor that they saw before +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and (the doctor) (there) she is run/ing to the doctor : maybe to get some money.,and the doctor there she is running to the doctor maybe to get some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now (she is) he is (um) show/ing the bunny (what he need/3s) : what she want/3s.,and now she is he is um showing the bunny what he needs what she wants +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now she is pay/ing for it.,and now she is paying for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and both of the kid/s are happy.,and both of the kids are happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and now they both got a balloon.,and now they both got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and they are happy.,and they are happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,and the doctor is happy too.,and the doctor is happy too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/803.slt,It is over [+_bch].,It is over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,there was a[EW:an]: (um) elephant that had a ball.,there was a um elephant that had a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and (um) a giraffe want/ed to play with : (the balaloo) the ball too.,and um a giraffe wanted to play with the balaloo the ball too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,but the balloon accidentally got[EW:went](into the w) into the swimming pool.,but the balloon accidentally gotinto the w into the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,(and) : and the elephant was very : worry/ed that (it would) (it would) it might sink.,and and the elephant was very worried that it would it would it might sink +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then (the cow[!]) [~_I_mean] the giraffe came over (to s) to (get it) swim : after it to get it.,and then the cow the giraffe came over to s to get it swim after it to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then he got it.,and then he got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and he gave it to the elephant : so she could play with it : with him.,and he gave it to the elephant so she could play with it with him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then : the elephant and the : giraffe : (came) : came to be friend/s.,and then the elephant and the giraffe came came to be friends +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and (also : they wan) and they also play/ed (t) with the ball together.,and also they wan and they also played t with the ball together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,there was an elephant and : (um) : a (g) (gir) giraffe.,there was an elephant and um a g gir giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and the elephant ran over to the : diving board.,and the elephant ran over to the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then : she accidentally slip/ed.,and then she accidentally slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,(then she) : and (then) : then the giraffe came run/ing after to see if : the elephant was okay!,then she and then then the giraffe came running after to see if the elephant was okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,(and then) and (then) : then the elephant start/ed to cry because it really[!] hurt.,and then and then then the elephant started to cry because it really hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,she scrape/ed her knee.,she scraped her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,then the lifeguard came run/ing over : and : said do not cry!,then the lifeguard came running over and said do not cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,I will help.,I will help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then he put on a bandaid (on her) on her scrape/ed knee.,and then he put on a bandaid on her on her scraped knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and (then) : then she : stop/ed cry/ing.,and then then she stopped crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then : the lifeguard help/ed her : get onto (the) the bench so she[!] could : go over and[-:] rest her knee for awhile.,and then the lifeguard helped her get onto the the bench so she could go over and rest her knee for awhile +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then she can go back : swim/ing.,and then she can go back swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and (then : she did not) : then the lifeguard : said : you must look at the sign/s[-:] that say no run/ing : or : no do/ing anything just in case there was : something slippery.,and then she did not then the lifeguard said you must look at the signs that say no running or no doing anything just in case there was something slippery +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,or : you can not go on the diving board.,or you can not go on the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,there was a : giraffe that had an airplane.,there was a giraffe that had an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and he really[!] like it lot/s.,and he really like it lots +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then an elephant want/ed to play with it.,and then an elephant wanted to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then he start/ed play/ing with it even more[!].,and then he started playing with it even more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then the elephant want/ed to play with it.,and then the elephant wanted to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,then the elephant grab/ed[!] it (from the) from the giraffe.,then the elephant grabbed it from the from the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then he was very[-:] angry.,and then he was very angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then it fell into the water.,and then it fell into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then they could not get it.,and then they could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,(so : they) so they did not know what to do.,so they so they did not know what to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then giraffe got very[-:][!] very angry at the : elephant.,and then giraffe got very very angry at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then the lifeguard came over : (and) and said what is the problem ?,and then the lifeguard came over and and said what is the problem +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and elephant explain/ed : I grab/ed : (the) : the toy airplane from the giraffe.,and elephant explained I grabbed the the toy airplane from the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then I accidentally threw it into the water[-:].,and then I accidentally threw it into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then the lifeguard try/ed reach/ing for it.,and then the lifeguard tried reaching for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,but he could not get it.,but he could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,then the : giraffe start/ed to cry about he like/ed it [EU].,then the giraffe started to cry about he liked it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,then somebody came over with a net[!] so they could get[!] it.,then somebody came over with a net so they could get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,then she reach/ed[!] over and got it for them.,then she reached over and got it for them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,then he got it back.,then he got it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and he really[!] really : like/ed it : again.,and he really really liked it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then the : elephant really[!] really want/ed to play with it.,and then the elephant really really wanted to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,but the giraffe was too[!] busy play/ing with it.,but the giraffe was too busy playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,there was a bunny and dog.,there was a bunny and dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,they want/ed to build a sandcastle together.,they wanted to build a sandcastle together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then the bunny took too much sand.,and then the bunny took too much sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then he dump/ed it onto the castle.,and then he dumped it onto the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,but[-:] : the castle got ruin/ed : (accidentally)[~!_whispering] accidentally.,but the castle got ruined accidentally accidentally +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then the dog was sad[-:] : because : her : castle got knock/ed down.,and then the dog was sad because her castle got knocked down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,there was a dog and a bunny.,there was a dog and a bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,they want/ed to have a picnic together.,they wanted to have a picnic together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and they each : took out all of their stuff from their basket/s : and : ate.,and they each took out all of their stuff from their baskets and ate +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and they ate and ate and ate : until the bunny got : so[!] full (he wa) he felt like he was sick.,and they ate and ate and ate until the bunny got so full he wa he felt like he was sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then : the puppy dog went to go and get doctor somebody who could help.,and then the puppy dog went to go and get doctor somebody who could help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,(and then) : and then the doctor came over and help/ed the dog and the bunny.,and then and then the doctor came over and helped the dog and the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,(and the bun) and the : doctor help/ed the bunny : be all right again.,and the bun and the doctor helped the bunny be all right again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then the bunny got[EW:was] taken someplace where he could be all right.,and then the bunny got taken someplace where he could be all right +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,there was a dog that had a balloon hook/ed up onto : her[-:] little : wagon.,there was a dog that had a balloon hooked up onto her little wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,then the bunny want/ed to have the balloon.,then the bunny wanted to have the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and so the dog : let the bunny : look[!] at the balloon.,and so the dog let the bunny look at the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then the bunny untie/ed[!] the balloon.,and then the bunny untied the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then : he lost the balloon.,and then he lost the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,but then the dog (very[-:] an) very sad.,but then the dog very an very sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,then the dog (get) got very angry at the bunny.,then the dog get got very angry at the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then they saw : (a) : (a s) a person that was sell/ing : some balloon/s.,and then they saw a a s a person that was selling some balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,(an) : and then : they came over : to him and said[-:] can I please have (another balloon) a balloon?,an and then they came over to him and said can I please have another balloon a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,(but the rabbit) but the : little rabbit : came over and said can I please have a : balloon?,but the rabbit but the little rabbit came over and said can I please have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,but the person said no you need some money.,but the person said no you need some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,(and then he) : and then he show/ed him (how much money he n) : (how mu) how much money he need/ed for a balloon.,and then he and then he showed him how much money he n how mu how much money he needed for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,(i) and it was quite[!] a bit.,i and it was quite a bit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and he did not even have any money.,and he did not even have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,so : they could not get another balloon for the little dog.,so they could not get another balloon for the little dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,(and they) and they were very[-:] sad.,and they and they were very sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then they : came over to a doctor.,and then they came over to a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,(and) and the little bunny said (can) can you please help us get a balloon?,and and the little bunny said can can you please help us get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then the doctor said : all right.,and then the doctor said all right +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,I will get you a balloon.,I will get you a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,(and the) and the doctor gave[-:] (the) : the person : (um) as much money (as) : as they need/ed.,and the and the doctor gave the the person um as much money as as they needed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,and then they enjoy/ed their balloon/s[-:] again.,and then they enjoyed their balloons again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/772.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,there was an elephant : play/ing with a ball[-:] : near the pool[-:].,there was an elephant playing with a ball near the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,(and the) (and a gira) and a[-:] : giraffe (came) want/ed to play too.,and the and a gira and a giraffe came wanted to play too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the ball fell right into the pool[-:].,the ball fell right into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the giraffe : (swam right towards) : (w) jump/ed into the pool and went to go get the ball.,the giraffe swam right towards w jumped into the pool and went to go get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the giraffe got the ball (for the eleph) (baby) for the : elephant.,the giraffe got the ball for the eleph baby for the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,and the elephant : like/3s the giraffe[-:].,and the elephant likes the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,that is all [+_bch].,that is all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the elephant and the giraffe want/ed to go swim/ing.,the elephant and the giraffe wanted to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the : elephant[-:] was go/ing on the diving board[-:].,the elephant was going on the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the elephant was run/ing.,the elephant was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,then she slip/ed[-:].,then she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,she (h) cut her knee.,she h cut her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the lifeguard came.,the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the lifeguard put a bandaid on.,the lifeguard put a bandaid on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the lifeguard[-:] put (the) : the elephant (on) : on (a b) the bench (w).,the lifeguard put the the elephant on on a b the bench w +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,and the lifeguard : point/ed to the sign that said no run/ing.,and the lifeguard pointed to the sign that said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the giraffe was play/ing with his toy plane[-:].,the giraffe was playing with his toy plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,(h : um) he did loop/s and stuff with his plane.,h um he did loops and stuff with his plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the elephant grab/ed it.,the elephant grabbed it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,and it land/ed in the pool.,and it landed in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the giraffe was very mad[-:].,the giraffe was very mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the lifeguard came : (to s) : to see what the problem was.,the lifeguard came to s to see what the problem was +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,(h) (he uh) : (the lil) the little elephant told everything what happen/ed.,h he uh the lil the little elephant told everything what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the : lifeguard try/ed to get (the : air) : the plane.,the lifeguard tried to get the air the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,but he could not reach it.,but he could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,(then[-:]) (then a) : then an elephant with a net came.,then then a then an elephant with a net came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the : elephant with the net scoop/ed out the : plane : and gave it back to the giraffe.,the elephant with the net scooped out the plane and gave it back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,and : he was happy again[-:].,and he was happy again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,there is (a little bun) a bunny (and[-:] a th) and a dog[-:].,there is a little bun a bunny and a th and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,they are : go/ing to [~_gonna] play in the sandbox[-:].,they are going to play in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the dog was build/ing a sandcastle.,the dog was building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,and (the[-:] : wa) the rabbit was : put/ing sand[-:] in a bucket.,and the wa the rabbit was putting sand in a bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,(he) : the rabbit (dump) : dump/ed the : sand on the : sandcastle/s.,he the rabbit dump dumped the sand on the sandcastles +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,(the rabbit and the do) (the ra) the rabbit : was like : what happen/ed?,the rabbit and the do the ra the rabbit was like what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,(and[-:]) : (and[-:] the dog was try/ing to rebi) and the little dog try/ed to rebuild it.,and and the dog was trying to rebi and the little dog tried to rebuild it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the little dog and the rabbit they (saw) : were go/ing for a picnic.,the little dog and the rabbit they saw were going for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,(uh uh the) : the dog had a sandwich.,uh uh the the dog had a sandwich +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,"and the rabbit had : carrot/s sandwich : cake, (chi).",and the rabbit had carrots sandwich cake chi +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,he had all kind/s of (st) : stuff.,he had all kinds of st stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,(then he) : then[-:] : all his food was gone.,then he then all his food was gone +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,then he felt sick.,then he felt sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the dog ran to : get a[-:] : doctor.,the dog ran to get a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,(sh) : the dog show/ed (where) the doctor (where) : where they were have/ing the picnic.,sh the dog showed where the doctor where where they were having the picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,(the do) the doctor : they were : say/ing : ah with his stick[?].,the do the doctor they were saying ah with his stick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,and[-:] I think that is what he did.,and I think that is what he did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,then he felt all better.,then he felt all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the little dog was pull/ing a wagon with a balloon.,the little dog was pulling a wagon with a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,(the ra) and the rabbit came along.,the ra and the rabbit came along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the rabbit saw the balloon[-:] (on the wagon) : tie/ed to the wagon.,the rabbit saw the balloon on the wagon tied to the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the rabbit untie/ed the balloon.,the rabbit untied the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the balloon float/ed away.,the balloon floated away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the dog was very mad.,the dog was very mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the rabbit ran to a balloon[-:] : man.,the rabbit ran to a balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,the : rabbit want/ed a balloon.,the rabbit wanted a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,(h) : (he) : he had no money.,h he he had no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,(so they) so they were very sad.,so they so they were very sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,(then the do) then the doctor was : walk/ing along.,then the do then the doctor was walking along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,and the rabbit (went to ask for some m) : went to ask for some money.,and the rabbit went to ask for some m went to ask for some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,(sh) (sh) (he told) : (the) the rabbit told the doctor everything.,sh sh he told the the rabbit told the doctor everything +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,(the ra) the : doctor gave : (money) (m) money to the : balloon man.,the ra the doctor gave money m money to the balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,so they got the two balloon/s.,so they got the two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/934.slt,(and now they were very ha) and[-:] they were very happy.,and now they were very ha and they were very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,(uh) he walk/3s to a horsey.,uh he walks to a horsey +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then the horsey (fell) fall/3s down.,and then the horsey fell falls down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,then the horsey fell in the water.,then the horsey fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then he : give/3s the ball back to him.,and then he gives the ball back to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then : they play with it.,and then they play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and that is the end so [+_bch].,and that is the end so +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,(um) he go/3s in the sandbox with the elephant.,um he goes in the sandbox with the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then they walk (in the) into the sandbox.,and then they walk in the into the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then they walk into the hill.,and then they walk into the hill +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then they laugh.,and then they laugh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,(and then they got a scr) and then elephant got a scrape.,and then they got a scr and then elephant got a scrape +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and (then he) then he start/ed to cry.,and then he then he started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then (he) he sat up and got a (bandage) bandage.,and then he he sat up and got a bandage bandage +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and he said are you okay?,and he said are you okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,(um) he found an airplane in the sandbox.,um he found an airplane in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,(and then he) (and then the) and then he fly/3s it up in the sky.,and then he and then the and then he flies it up in the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,(and then he stands up) [~_other_child_talking] and then he stand/3s up in the sandbox.,and then he stands up and then he stands up in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then they (br) broke the airplane in the sandbox.,and then they br broke the airplane in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and they drop/ed it.,and they dropped it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then (he) (he) it was stuck in the sandbox forever.,and then he he it was stuck in the sandbox forever +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then it was more stucker[EW:stuck].,and then it was more stucker +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then : a lifeguard came and get|get[EW:got] it.,and then a lifeguard came and get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,(and then he got it with his) and he reach/ed it with his arm.,and then he got it with his and he reached it with his arm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then : they were sad.,and then they were sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,the lifeguard got it for him.,the lifeguard got it for him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then the lifeguard pour/ed on : the net.,and then the lifeguard poured on the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and he got it.,and he got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then : he said here[!] you go.,and then he said here you go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then he keeped|keep[EW:kept] it forever.,and then he keeped it forever +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,(he) the dog go/3s in the sandbox.,he the dog goes in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then he start/3s make/ing the sandcastle.,and then he starts making the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then the rabbit spill/3s on it.,and then the rabbit spills on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,(and then he) and then it is all gone.,and then he and then it is all gone +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,it xxx up.,it x up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,then it was all cover/ed up.,then it was all covered up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,he go/3s look/ing at his favourite friend.,he goes looking at his favourite friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,then he go/3s and : stick/3s out his tongue.,then he goes and stickes out his tongue +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,then he had a drink.,then he had a drink +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then he lie/3s down in the sun.,and then he lies down in the sun +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then he walk/3s away.,and then he walks away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,then he pull/3s on his shirt.,then he pulls on his shirt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,(and then he) and then he : talk/3s to him.,and then he and then he talks to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then they walk away.,and then they walk away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,he come/3s along with a balloon (with) with his wagon.,he comes along with a balloon with with his wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,then he come/3s.,then he comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then he walk/3s with him.,and then he walks with him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,then : they stop/ed : and walk/ed in the snow.,then they stopped and walked in the snow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,then they lose the balloon.,then they lose the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then they : stop and : get angry.,and then they stop and get angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,then they walk away and saw a man with balloon/s [EU].,then they walk away and saw a man with balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,then : they said to him balloon [EU].,then they said to him balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then he give/3s him one.,and then he gives him one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then : they walk away.,and then they walk away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then : they[!] : think : (the rabbit) the big rabbit [EU].,and then they think the rabbit the big rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,(and then they walk to his mom) [~_another_child__says:_that_(i)s_Nolan's_mom] then they walk to their mom.,and then they walk to his mom then they walk to their mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then he come/3s and walk to the lady [EU].,and then he comes and walk to the lady +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then he : come/3s.,and then he comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,and then he get/3s (a ba) (another balloons[EW:balloon]) : balloons.,and then he gets a ba another balloons balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/447.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,(A horse) a giraffe : and an elephant were bounce/ing a ball.,A horse a giraffe and an elephant were bouncing a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,the ball *is in the pool [EU].,the ball in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the giraffe was scare/ed.,and the giraffe was scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,then the giraffe (um) : went in and swam and got the ball out.,then the giraffe um went in and swam and got the ball out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,then the elephant was happy.,then the elephant was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the giraffe was all wet.,and the giraffe was all wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and they were both happy.,and they were both happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,The giraffe (wa) was scare/ed to go in the water again.,The giraffe wa was scared to go in the water again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,so the elephant went in.,so the elephant went in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and she saw a diving board.,and she saw a diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and she decide/ed to go on the diving board and jump.,and she decided to go on the diving board and jump +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and then the giraffe said maybe that is a good idea.,and then the giraffe said maybe that is a good idea +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,the elephant went slip/ed and fell [EU].,the elephant went slipped and fell +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the giraffe was run/ing to the diving board.,and the giraffe was running to the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,the elephant hurt (her) her knee.,the elephant hurt her her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the giraffe was scare/ed.,and the giraffe was scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,so the giraffe help/ed the elephant.,so the giraffe helped the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,the lifeguard came and saw the giraffe (um) was take/ing care of the elephant.,the lifeguard came and saw the giraffe um was taking care of the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,the lifeguard put on a bandaid.,the lifeguard put on a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,it did not hurt any more.,it did not hurt any more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,so the giraffe did not look scare/ed any more.,so the giraffe did not look scared any more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the lifeguard was happy.,and the lifeguard was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and then the other elephant the lifeguard look/ed at a sign.,and then the other elephant the lifeguard looked at a sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and it said no run/ing.,and it said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,The giraffe : and the elephant : were happy.,The giraffe and the elephant were happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,so (they decide/ed maybe we could fly a) the giraffe decide/ed maybe he could fly the airplane : in the water.,so they decided maybe we could fly a the giraffe decided maybe he could fly the airplane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,(and then got) and then the elephant could dive down and get it.,and then got and then the elephant could dive down and get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and then : the giraffe would : throw it again into the water.,and then the giraffe would throw it again into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the elephant would keep on get/ing it.,and the elephant would keep on getting it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,: (then it) (then it was) then it (was) want/ed real : crazy [EU].,then it then it was then it was wanted real crazy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,so the elephant let xx him.,so the elephant let him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,the giraffe (would : make) made a tongue [EU].,the giraffe would make made a tongue +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,the elephant grab/ed it from the giraffe.,the elephant grabbed it from the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,(and the elephant look/ed) and the giraffe look/ed scare/ed.,and the elephant looked and the giraffe looked scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the elephant look/ed happy.,and the elephant looked happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,the elephant threw it.,the elephant threw it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and it went in the water.,and it went in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the elephant looked scare/ed.,and the elephant looked scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the giraffe did not know what to do.,and the giraffe did not know what to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,the giraffe got mad at the elephant.,the giraffe got mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and : the elephant got[EW:was] sad.,and the elephant got sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,the lifeguard got mad again.,the lifeguard got mad again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,(and they both : got) : and they both did not know that again [EU].,and they both got and they both did not know that again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,: so the lifeguard : look/ed nervous because the elephant look/ed scare/ed.,so the lifeguard looked nervous because the elephant looked scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the : giraffe was sad.,and the giraffe was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,*the lifeguard was go/ing to get it [EU].,lifeguard was going to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,so the lifeguard : was try/ing to get it.,so the lifeguard was trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,(and the : giraffe) and the elephant look/ed nervous.,and the giraffe and the elephant looked nervous +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,the : giraffe start/ed cry/ing.,the giraffe started crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the elephant was sad.,and the elephant was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the lifeguard was nervous.,and the lifeguard was nervous +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,(oh) then another : elephant came with a net to get it out of the water so (the) they could have it back again.,oh then another elephant came with a net to get it out of the water so the they could have it back again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and he try/ed to get it out.,and he tried to get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,but : (it : mm) (it) she (tried) try/ed a lot [EU].,but it mm it she tried tried a lot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,but it would not come out.,but it would not come out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,then he got it out.,then he got it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and they : were happy.,and they were happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,then the giraffe was happy.,then the giraffe was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the elephant was too.,and the elephant was too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,a bunny and a dog : were : build/ing a sandcastle.,a bunny and a dog were building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,the bunny got scare/ed.,the bunny got scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the dog : was nervous.,and the dog was nervous +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,they made a sandcastle.,they made a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,then they both were happy.,then they both were happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,(they poured : and) : the rabbit pour/ed sand over the dog/z sandcastle.,they poured and the rabbit poured sand over the dog's sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,: the sandcastle broke down.,the sandcastle broke down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and (the : rabbit was :) the sandcastle did not break down.,and the rabbit was the sandcastle did not break down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,(and the rabbit was : nervo) and the dog was nervous.,and the rabbit was nervo and the dog was nervous +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and then the dog : (um) try/ed to build it up.,and then the dog um tried to build it up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,but : he was cry/ing.,but he was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the : bunny was : nervous.,and the bunny was nervous +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,the dog (and the) and the bunny : were collect/ing coconut/s and berry/s.,the dog and the and the bunny were collecting coconuts and berries +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and they : saw each other.,and they saw each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and then they said hi to each other.,and then they said hi to each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and then they were happy.,and then they were happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,(and) (and they) and they had a picnic.,and and they and they had a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,they went home first.,they went home first +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and then they went back to the spot they were go/ing to have a picnic at.,and then they went back to the spot they were going to have a picnic at +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and then : the bunny : ate a lot.,and then the bunny ate a lot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the dog was nervous.,and the dog was nervous +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and then : the : bunny ate too much.,and then the bunny ate too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,he got so fat.,he got so fat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the dog (um) ate the rest.,and the dog um ate the rest +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,the : rabbit did not feel well.,the rabbit did not feel well +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the dog was nervous.,and the dog was nervous +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,: so the dog call/ed the doctor.,so the dog called the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the doctor came.,and the doctor came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and then the dog : told him that : the rabbit ate too much.,and then the dog told him that the rabbit ate too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,so he did not feel well.,so he did not feel well +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,(so the doc) so the dog drag/ed : the doctor there : because the rabbit was not feel/ing well.,so the doc so the dog dragged the doctor there because the rabbit was not feeling well +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,the doctor saw (that the dog) that the rabbit was not (fee) feel/ing very well.,the doctor saw that the dog that the rabbit was not fee feeling very well +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,so (um the) (hh he) he was scare/ed.,so um the hh he he was scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and (then : he felt) then the doctor made the rabbit : feel better.,and then he felt then the doctor made the rabbit feel better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and : the dog was happy.,and the dog was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,the : dog : (mm) pull/ed the wagon with a balloon tie/ed onto it.,the dog mm pulled the wagon with a balloon tied onto it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the rabbit saw that : the dog was pull/ing a wagon with a balloon on it.,and the rabbit saw that the dog was pulling a wagon with a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,the rabbit want/ed the balloon.,the rabbit wanted the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the dog look/ed nervous.,and the dog looked nervous +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,the rabbit try/ed take/ing off the balloon.,the rabbit tried taking off the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,the dog look/ed scare/ed.,the dog looked scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,: the rabbit was sad because : (it) when he got off the balloon it start/ed float/ing away.,the rabbit was sad because it when he got off the balloon it started floating away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,(so they were both) : (and then one : um wen) and the rabbit was sad.,so they were both and then one um wen and the rabbit was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the dog was scare/ed.,and the dog was scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,: the rabbit was : (nervous) : nervous.,the rabbit was nervous nervous +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the dog was mad.,and the dog was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,there is a balloon man over : there.,there is a balloon man over there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,(uh it) it was go/ing to another bunny (hu) him too [EU].,uh it it was going to another bunny hu him too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,(can I have a) (and the) and he said (um) can I have a balloon?,can I have a and the and he said um can I have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the dog was way back : there.,and the dog was way back there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,(so the) and the rabbit was up : to get a balloon.,so the and the rabbit was up to get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and then : (the guy) the balloon : man said balloon/s five cent/s.,and then the guy the balloon man said balloons five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,so the rabbit check/ed in his pocket for any money.,so the rabbit checked in his pocket for any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,but he did not have any.,but he did not have any +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,: the rabbit look/ed shy.,the rabbit looked shy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the dog : did not look shy.,and the dog did not look shy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and then the (um) man look/ed nervous.,and then the um man looked nervous +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,the doctor was come/ing.,the doctor was coming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and : the rabbit was run/ing to the doctor.,and the rabbit was running to the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the : balloon man was : sell/ing xx.,and the balloon man was selling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the dog was nervous.,and the dog was nervous +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and then (um he show/ed) (the doc) the rabbit show/ed the doctor : (um) that he want/ed (a balloon to buy to) five cent/s to buy a balloon so he could : have a balloon and : the dog could have a balloon.,and then um he showed the doc the rabbit showed the doctor um that he wanted a balloon to buy to five cents to buy a balloon so he could have a balloon and the dog could have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,then : he gave him five : cent/s for each balloon.,then he gave him five cents for each balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and then : the balloon man gave him : two balloon[EW:balloons].,and then the balloon man gave him two balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and then : they : (were) were happy.,and then they were were happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and the : balloon man was happy.,and the balloon man was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,(and : the rabb) the doctor was kind of nervous.,and the rabb the doctor was kind of nervous +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,the doctor was real nervous.,the doctor was real nervous +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/645.slt,and they : were both real happy.,and they were both real happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(uh : uh : the) : the elephant and (the[-:] : zebra) : [~_I_mean] (the) : [~_yeah] the zebra : were (go/ing) : play/ing ball.,uh uh the the elephant and the zebra the the zebra were going playing ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,and that was on this page [+_bch].,and that was on this page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(and) (and then) : (and[-:]) : (and then um) : and then the ball fall/3s in the water.,and and then and and then um and then the ball falls in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,and then zebra go/3s in (to) : to swim to it.,and then zebra goes in to to swim to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(the) and then the zebra bring/3s it to the elephant.,the and then the zebra brings it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,and the elephant felled|fell[EW:fell] in love with the : zebra.,and the elephant felled in love with the zebra +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,fell in love with the what ?,fell in love with the what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,zebra [+_bch].,zebra +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,oh.,oh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(they went on the) they are[-:] go/ing to go on the diving board.,they went on the they are going to go on the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,and then she go/3s run/ing to the diving board.,and then she goes running to the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,then she slip/3s[-:] : (and) : and (hurt/3s her knee) : get/3s a scrape on her knee.,then she slips and and hurts her knee gets a scrape on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,and then the lifeguard come/3s to put a bandage on it.,and then the lifeguard comes to put a bandage on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,and then she start/3s scream/ing.,and then she starts screaming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(and then she w) and then she (do/3s not) : put/3s her leg up like it is broken.,and then she w and then she does not puts her leg up like it is broken +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,then the lifeguard say/3s : no run/ing!,then the lifeguard says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(the z) the zebra find/3s (a[-:]) : a plane.,the z the zebra finds a a plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,and the elephant said : wow !,and the elephant said wow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,and then he start/3s fly/ing[-:] it.,and then he starts flying it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,then elephant[!] : grab/3s it from the zebra.,then elephant grabs it from the zebra +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(and then) (then sh) and then she start/ed (fly/ing[-:]) : fly/ing it.,and then then sh and then she started flying flying it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(and) (and) : and then she drop/3s it into the water.,and and and then she drops it into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,then it float/3s and start/3s (sink) : sink/ing.,then it floats and starts sink sinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,then the lifeguard come/3s.,then the lifeguard comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(s) : and (then) then the little boy : zebra said : can you get my : plane ?,s and then then the little boy zebra said can you get my plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(and then) : and then the zebra said : the elephant was fly/ing it.,and then and then the zebra said the elephant was flying it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,and then she dump/ed it into the water.,and then she dumped it into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,the elephant[-:] lifeguard/z arm/s : try/ed to grab it.,the elephant lifeguard's arms tried to grab it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,but (she) he could not.,but she he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(then the l) then the[-:] lifguard gived|give[EW:gave] her trouble.,then the l then the lifguard gived her trouble +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(a) and the zebra was cry/ing.,a and the zebra was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(and then she go) (and then the) and then the mom[-:] : get/3s a net (and s) and grab/3s it out of the water : and get/3s it for the little boy.,and then she go and then the and then the mom gets a net and s and grabs it out of the water and gets it for the little boy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,then the boy was happy.,then the boy was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,and they start/ed hug/ing it.,and they started hugging it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,and it was done [+_bch].,and it was done +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(there is m) (they are ma) they are make/ing a sandcastle.,there is m they are ma they are making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,and then a friend came.,and then a friend came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,and then (he dig/ed) : he digged|dig[EW:dug] some sand and put it in a bucket while : the other kid was make/ing a sandcastle.,and then he dug he digged some sand and put it in a bucket while the other kid was making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,and then he dump/3s[!] it on the sandcastle.,and then he dumps it on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(and then[-:]) : and then the rabbit was mad.,and then and then the rabbit was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(she) : (uh the other one st) and then the mouse start/3s cry/ing.,she uh the other one st and then the mouse starts crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(they go for a picnic and) : the mouse and the rabbit goes|go[EW:go] for a picnic.,they go for a picnic and the mouse and the rabbit goes for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,the rabbit start/3s eat/ing loud.,the rabbit starts eating loud +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,and then the rabbit got fulled|full[EW:full] (while) while the mouse was eat/ing lot/s of sandwich/s and (ju) drink/ing juice.,and then the rabbit got fulled while while the mouse was eating lots of sandwiches and ju drinking juice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,and then the rabbit ate some more.,and then the rabbit ate some more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(and then he had a) : (and a) and then he got sick.,and then he had a and a and then he got sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,then the doctor came : to see the rabbit.,then the doctor came to see the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(and the doctor was not) : (then the) : and then the mouse was drag/ing the doctor.,and the doctor was not then the and then the mouse was dragging the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,and then the doctor (see) (said) : [~_I_mean] (s) : (seem) seen|see[EW:saw] what is wrong.,and then the doctor see said s seem seen what is wrong +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(uh) and then he got all[-:][!] better.,uh and then he got all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,they are go/ing to the circus.,they are going to the circus +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,and the balloon pop/3s.,and the balloon pops +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,he tie/3s up another balloon.,he ties up another balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,then it fly/3s away[-:].,then it flies away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(and then there is) and then they can not move their wagon.,and then there is and then they can not move their wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(there[-:]) : there is a balloon[!] man.,there there is a balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,and the rabbit say/3s I[!] want one of those balloon/s.,and the rabbit says I want one of those balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(um) and he can not buy any because they are five cent/s.,um and he can not buy any because they are five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(and then he) (and then) (and then he) and then he : dump/3s his pocket/s out.,and then he and then and then he and then he dumps his pockets out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,and he go/3s to : go run/ing to his dad to ask his dad for[-:] a balloon : for his friend.,and he goes to go running to his dad to ask his dad for a balloon for his friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,(and[-:] the doc) and (then) (then) : then his dad (sa) : say/3s okay.,and the doc and then then then his dad sa says okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,then they bought two balloon/s!,then they bought two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/928.slt,and then they pop them.,and then they pop them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,he said hi.,he said hi +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,: I love those rock/s!,I love those rocks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,then : that rock is fall/ing!,then that rock is falling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and (he) : that one is swim/ing!,and he that one is swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and he gave that rock[!] [EU].,and he gave that rock +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,(and he play) : and he can play with it now.,and he play and he can play with it now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and : (uh b xx) there (was) is *an elephant and this one [EU].,and uh b there was is elephant and this one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,he was jump/ing[!] over.,he was jumping over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,(an) and they can run faster[!].,an and they can run faster +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,hm were you go/ing to help turn?,hm were you going to help turn +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,yep [+_bch].,yep +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,okay.,okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,he said I want to go run[!] faster and jump[!] over it.,he said I want to go run faster and jump over it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and he said you are not big[!] enough.,and he said you are not big enough +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and he said oh yes I will[EW:am] [-:].,and he said oh yes I will +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,she ran[!] (and) : and then slip/ed.,she ran and and then slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,(uh) and he will say : (y) ouch!,uh and he will say y ouch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and that hurt/3s!,and that hurts +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,he has a booboo.,he has a booboo +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and he tell|tell[EW:tell/3S] his mom[-:].,and he tell his mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and then : he *is still cry[EW:cying] [-:] [EU].,and then he still cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,then he sit|sit[EW:sits] on it.,then he sit on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and he could help.,and he could help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and : do not : play : (on : the rule/s) on (the) the pool/s [EU].,and do not play on the rules on the the pools +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,once upon a time (there was the) (this one is re) (really sheal) (he) he said I like your airplane.,once upon a time there was the this one is re really sheal he he said I like your airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,he said thank you!,he said thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and then it fly/3s[-:]!,and then it flies +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and he will catch[!] it.,and he will catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and he catch|catch[EW:caught] an airplane.,and he catch an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,it do/3s not fly[-:].,it does not fly +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,but : suddenly (he) the airplane did not fly[!] up.,but suddenly he the airplane did not fly up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,he look/3s so angry [~_makes_sound_'grrr']!,he looks so angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,(and then) : and he said : what is the matter?,and then and he said what is the matter +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,he said I was : drop/ing it.,he said I was dropping it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,(and) and he take|take[EW:takes] it.,and and he take it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and it fall/3s down.,and it falls down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,then : why did you did that!,then why did you did that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,I did not do anything he said!,I did not do anything he said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,maybe I can get[!] it.,maybe I can get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,[~_grunting] and it is too hard.,and it is too hard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,(maybe) : maybe I could try again.,maybe maybe I could try again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,I will catch it in that net[!].,I will catch it in that net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,he scoop|scoop[EW:scoops] it up.,he scoop it up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and that airplane : work/3s!,and that airplane works +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and he is so[!] happy.,and he is so happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,a bunny (l) love/3s the dog.,a bunny l loves the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,(and : they shovel the) (and they) and that dog build|build[EW:builds] a castle.,and they shovel the and they and that dog build a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,(and : the castle[-:]) and (that bunny : just : well) : it will fall down the castle.,and the castle and that bunny just well it will fall down the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and : that : bunny : (he) : he melt|melt[EW:melts][!] them.,and that bunny he he melt them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,he did not do it.,he did not do it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,they fix|fix[EW:fixed] it up.,they fix it up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,he wave/ed : at bunny.,he waved at bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and they eat some snack/s.,and they eat some snacks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and the rabbit[EW:rabbit/z] (is) tummy is full.,and the rabbit is tummy is full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and they got a tummyache [EU].,and they got a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,he tell|tell[EW:tells] him.,he tell him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,he just : look|look[EW:looks] at it.,he just look at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,he just got a : tummyache.,he just got a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,she *is really : not feel/ing all better [EU].,she really not feeling all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,then she feel/3s all better.,then she feels all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,he wave/ed at the dog.,he waved at the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and he get/3s the balloon.,and he gets the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,then : he show at the balloon [EU].,then he show at the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,then : she[-:] pull|pull[EW:pulls] it up.,then she pull it up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,(he did not) she did.,he did not she did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and it : go|go[EW:goes] up!,and it go up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and he was mad[!].,and he was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,(it) : she tell|tell[EW:tells] them.,it she tell them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and he look|look[EW:looks] at the balloon/s.,and he look at the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and he said : would you : please get that balloon?,and he said would you please get that balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and[-:] this present number five.,and this present number five +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and they : love[-:] them.,and they love them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and they tell him again[!].,and they tell him again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and he said the balloon (will not get) (it wo) he will not get it back!,and he said the balloon will not get it wo he will not get it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and : they all had two balloon/s.,and they all had two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,and last year they have|have[EW:had] a balloon.,and last year they have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/569.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,the zebra was go/ing to the zoo.,the zebra was going to the zoo +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and the elephant : want/ed to come and show : them : his practice at the circus.,and the elephant wanted to come and show them his practice at the circus +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and then they saw something inside a[EW:the] water.,and then they saw something inside a water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,but : the giraffe want/ed to get that ball : because : the elephant drop/ed it.,but the giraffe wanted to get that ball because the elephant dropped it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and the elephant said thank you for get/ing it.,and the elephant said thank you for getting it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,the elephant want/ed to go swim/ing.,the elephant wanted to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,but it : ran : jump/ed into the pool [EU].,but it ran jumped into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and it hurt itself.,and it hurt itself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,is that what is on this page ?,is that what is on this page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,the elephant ran.,the elephant ran +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,then when it ran it : just ran fast.,then when it ran it just ran fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and then : (it um) it fell down.,and then it um it fell down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and it hurt it/z knee.,and it hurt it's knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and then another elephant came : what[EW:that] was the lifeguard.,and then another elephant came what was the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,(he) and the lifeguard saw : the elephant hurt itself.,he and the lifeguard saw the elephant hurt itself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,then the lifeguard : said you can not swim without a lifeguard if it tell/3s you.,then the lifeguard said you can not swim without a lifeguard if it tells you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and it said [~_EXA:_can_you_take_your_finger_out_of_your_mouth] go on the bench.,and it said go on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,[~_stern_voice] and no more go/ing swim/ing : until you calm down and I say so.,and no more going swimming until you calm down and I say so +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,(the zebra w) [~_I_mean] the giraffe want/ed to put his airplane in to see it swim.,the zebra w the giraffe wanted to put his airplane in to see it swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,(and it) and it did.,and it and it did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and then it : went in the water.,and then it went in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and the : giraffe did not know how to get it out.,and the giraffe did not know how to get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,but then : the elephant took it from it[EW:him].,but then the elephant took it from it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and then : it[EW:he] : drop/ed it in the water.,and then it dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and then the lifeguard : did not know how that (it) airplane got in.,and then the lifeguard did not know how that it airplane got in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,said : (um) : that is the giraffe/z airplane [EU].,said um that is the giraffe's airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and the lifeguard try/ed to get it.,and the lifeguard tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,but he could not reach it.,but he could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and the giraffe was sad because nobody could get it.,and the giraffe was sad because nobody could get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,then another elephant [EU].,then another elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and it[EW:she] got (um) a thing what[EW:that] you catch fish with.,and it got um a thing what you catch fish with +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and it try/ed out to do it [EU].,and it tried out to do it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,but : it got (it :) the airplane.,but it got it the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,the elephant who caught fish gave it to the : giraffe.,the elephant who caught fish gave it to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and giraffe said thank you.,and giraffe said thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,giraffe was happy.,giraffe was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,he was make/ing a castle (in :) in the beach.,he was making a castle in in the beach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,what[?] he got the sandbox he won[?] [EU].,what he got the sandbox he won +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and he made a castle there.,and he made a castle there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,then when : he was done make/ing the castle he want/ed to make another one.,then when he was done making the castle he wanted to make another one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and then he tip/ed sand on it.,and then he tipped sand on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,but : he was afraid if it was going to crash.,but he was afraid if it was going to crash +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and it did crash.,and it did crash +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,but he had to make another one.,but he had to make another one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,but it was hard to make.,but it was hard to make +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,they were go/ing to[:_gonna] go and have a picnic.,they were going to go and have a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and the bunny want/ed to come.,and the bunny wanted to come +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and he said yes.,and he said yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,they eated|eat[EW:ate] carrot/s.,they eated carrots +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and they listen/ed to some music.,and they listened to some music +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and the : bunny rabbit was full.,and the bunny rabbit was full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and the puppy dog was not.,and the puppy dog was not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and then the bunny rabbit got sick.,and then the bunny rabbit got sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and the puppy dog was : not very happy.,and the puppy dog was not very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and then : (um) the bunny rabbit/z grandma came.,and then um the bunny rabbit's grandma came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and the puppy said : the bunny rabbit is sick.,and the puppy said the bunny rabbit is sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and they said come here come here.,and they said come here come here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and she came.,and she came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and she look/ed at the bunny rabbit and said : you are sick!,and she looked at the bunny rabbit and said you are sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,then they went back home.,then they went back home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,the puppy dog was all alone have/ing a picnic.,the puppy dog was all alone having a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,they were go/ing to a circus.,they were going to a circus +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and they brought a wagon with a balloon on it.,and they brought a wagon with a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,then bunny want/ed to grab the balloon.,then bunny wanted to grab the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,but the puppy dog would not let it.,but the puppy dog would not let it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,(so it said :) it is putt/ing it in a knot he said.,so it said it is putting it in a knot he said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,then it flied|fly[EW:flew] away.,then it flied away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and he was mad at the bunny rabbit.,and he was mad at the bunny rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and then : there is a man with a whole bunch of balloon/s.,and then there is a man with a whole bunch of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and puppy dog was mad.,and puppy dog was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,but then : the bunny rabbit : was not.,but then the bunny rabbit was not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,he want/ed some balloon/s.,he wanted some balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,and he said please can I have a balloon?,and he said please can I have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,but : the man would not let him.,but the man would not let him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,he had no money.,he had no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,but the puppy dog did.,but the puppy dog did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,(so the pup) but then : the bunny rabbit saw another bunny rabbit : ask/ed can I come to wherever you go [EU]?,so the pup but then the bunny rabbit saw another bunny rabbit asked can I come to wherever you go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,can I have a balloon if you have some?,can I have a balloon if you have some +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,(and he said) but then he realiz/ed that is not : a man.,and he said but then he realized that is not a man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,that is a girl.,that is a girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,said (y) yes [EU].,said y yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/416.slt,then : he gave her a balloon.,then he gave her a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,(the) that is a giraffe who is laugh/ing with the elephant.,the that is a giraffe who is laughing with the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,: and then he saw the ball[-:].,and then he saw the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then the elephant was scared.,and then the elephant was scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,: and then : the giraffe gave (him) the : elephant the ball.,and then the giraffe gave him the elephant the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,(and then the giraffe came up the sidewalk) and then the giraffe came up the sidewalk.,and then the giraffe came up the sidewalk and then the giraffe came up the sidewalk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,(the) the giraffe and the elephant were too scared to jump in the water.,the the giraffe and the elephant were too scared to jump in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then the elephant was laugh/ing.,and then the elephant was laughing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,but the giraffe was (like ssss) scared.,but the giraffe was like ssss scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then the elephant (s) was like trip/ing.,and then the elephant s was like tripping +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then the elephant (was) hurt his knee/s.,and then the elephant was hurt his knees +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then the elephant cry/ed.,and then the elephant cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,: then the elephant : camed|come[EW:came] home.,then the elephant camed home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,: and then the elephant was laugh/ing.,and then the elephant was laughing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,: and then the : swim/ing man (said) : he was point/ing a hand [EU].,and then the swimming man said he was pointing a hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,the swim/ing man was what?,the swimming man was what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,point/ing his hand [+_bch].,pointing his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,the elephant was laugh/ing.,the elephant was laughing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and the giraffe was laugh/ing.,and the giraffe was laughing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,: and then they were play/ing with[-:] the : airplane.,and then they were playing with the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then : the elephant/z turn to : play the airplane [EU].,and then the elephant's turn to play the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,: but they drop/ed it in the water.,but they dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then (they) the elephant was scared.,and then they the elephant was scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,but the giraffe was angry.,but the giraffe was angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then the : swim/ing man : was all mad at them.,and then the swimming man was all mad at them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,but he said what happen/ed ?,but he said what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then he was like : (wo) say/ing uhoh.,and then he was like wo saying uhoh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then he was try/ing to get it.,and then he was trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,but he could not.,but he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then : the giraffe was cry/ing.,and then the giraffe was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then the[-:] girl was try/ing to get a fish tank and then : get it [EU].,and then the girl was trying to get a fish tank and then get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then she got the airplane.,and then she got the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then (sh) she gave it back to the giraffe.,and then sh she gave it back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,this one the bunny was dig/ing.,this one the bunny was digging +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,but this : girl came and then dig|dig[EW:dug].,but this girl came and then dig +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then (they) they both share/ed.,and then they they both shared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,: then they put it on together.,then they put it on together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,but that girl was scared.,but that girl was scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then they were (like) all sad.,and then they were like all sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and they made it back again.,and they made it back again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,the bunny said hi.,the bunny said hi +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,: and then they went : to[EW:on] : a field : (tr) trip.,and then they went to a field tr trip +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then they ate carrot/s.,and then they ate carrots +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,but they[EW:the] guy did not got[EW:get] nothing[EW:anything].,but they guy did not got nothing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then (they) they both (um) share/ed food.,and then they they both um shared food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then (the f) the bunny (um) dranked|drink[EW:drank].,and then the f the bunny um dranked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and the bunny was fatter and fatter and fatter.,and the bunny was fatter and fatter and fatter +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,(and) but he flew it off to this doctor bunny [EU].,and but he flew it off to this doctor bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then he (s) told the doctor that (he is fff) he need/3s help.,and then he s told the doctor that he is fff he needs help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then he said go to the doctor.,and then he said go to the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then : the doctor (ss) went (to the dd) to his : workshop.,and then the doctor ss went to the dd to his workshop +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,this guy was hold/ing a balloon with a : little car.,this guy was holding a balloon with a little car +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,: and then he was say/ing look my balloon!,and then he was saying look my balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then he pull/ed it off and give|give[EW:gave] it to (the) the other guy.,and then he pulled it off and give it to the the other guy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,but it flewed|fly[EW:flew] up *in the sky [EU].,but it flewed up the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then the dog was all angry.,and then the dog was all angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,(and then they ss) and then they sawed|see[EW:saw] the balloon man.,and then they ss and then they sawed the balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then he said can I have that?,and then he said can I have that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,(and) but it was five dollar[EW:dollars].,and but it was five dollar +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then they were all sad.,and then they were all sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,but they saw the doctor.,but they saw the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and doctor can we buy this?,and doctor can we buy this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,can we buy the balloon doctor?,can we buy the balloon doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,and then the doctor (s) gave him the money.,and then the doctor s gave him the money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/602.slt,(th) then they (b) got another balloon.,th then they b got another balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,first there is an : elephant : and a giraffe.,first there is an elephant and a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and the elephant is bounce/ing a ball.,and the elephant is bouncing a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,Turn [+_bch].,Turn +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and : the elephant I think bounce/3s it into a pool.,and the elephant I think bounces it into a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and then : the : giraffe dive/3s in to get it.,and then the giraffe dives in to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and then : the giraffe : come/3s back : and give/3s it : to[-:] the elephant.,and then the giraffe comes back and gives it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and[-:] the elephant : (look/3s like he said th) look/3s like he is say/ing thank you.,and the elephant looks like he said th looks like he is saying thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,(um) : there is a giraffe and an elephant : stand/ing by a pool.,um there is a giraffe and an elephant standing by a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and there is a sign that say/3s no run/ing.,and there is a sign that says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,so[-:] the : elephant point/3s at the diving board.,so the elephant points at the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and : she[-:] run/3s over there.,and she runs over there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and she slip/3s.,and she slips +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and she[-:] scrape/3s her knee.,and she scrapes her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and then the lifeguard come/3s : (and : help) and put/3s a (band) bandaid : on : her.,and then the lifeguard comes and help and puts a band bandaid on her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,(then she) then he (put) (put) (put/3s[-:]) : put her[-:] on a bench : to sit down.,then she then he put put puts put her on a bench to sit down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and then the lifeguard : point/3s his finger out say/ing[-:] bad : I think.,and then the lifeguard points his finger out saying bad I think +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,there is an[-:] elephant and a giraffe.,there is an elephant and a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and : the giraffe is fly/ing a toy plane around.,and the giraffe is flying a toy plane around +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and then the elephant : (um) look/3s at it and I think say/3s : that is interest/ing.,and then the elephant um looks at it and I think says that is interesting +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,so the : giraffe give/3s a turn to the elephant.,so the giraffe gives a turn to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and the elephant is : (th um) : threw|throw[EW:throwing] it into the pool.,and the elephant is th um threw it into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and the giraffe get/3s : mad[!] at the elephant.,and the giraffe gets mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,so the elephant ask/3s the lifeguard to help : and then talk/3s : to (hi) (the liteguar) the lifeguard what happen/3s [EU].,so the elephant asks the lifeguard to help and then talks to hi the liteguar the lifeguard what happens +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and the lifeguard try/3s : to reach : and get it.,and the lifeguard tries to reach and get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,then the lifeguard (do/3s) do/3s not know what to do.,then the lifeguard does does not know what to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and the giraffe : go/3s on his knee/s and start/3s to cry.,and the giraffe goes on his knees and starts to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,so (a dif) I think : a person that swim/3s (take/3s a n) take/3s a net : and try/3s to scoop it.,so a dif I think a person that swims takes a n takes a net and tries to scoop it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and she (s) scoop/3s[-:] it up : and give/3s it back to the giraffe.,and she s scoops it up and gives it back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and[-:] : the giraffe hold/3s it (by) like this by his neck.,and the giraffe holds it by like this by his neck +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and[-:] the[-:] elephant : (um) has his hand/s (like this) : like that in front of the giraffe.,and the elephant um has his hands like this like that in front of the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,there is (um) I think a : bunny and a dog.,there is um I think a bunny and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and : the dog built a sandcastle.,and the dog built a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and the bunny I think : want/3s to help.,and the bunny I think wants to help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,(um) [-:] the dog is smooth/ing the side/3s out while the : bunny is dig/ing sand out for : the sandcastle.,um the dog is smoothing the sides out while the bunny is digging sand out for the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and : then the bunny pour/3s it : all over the sandcastle.,and then the bunny pours it all over the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,(and he) and it destroy/3s the sandcastle.,and he and it destroys the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and then : the : dog cry/3s and : try/3s to build a new one.,and then the dog cries and tries to build a new one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,(um) : there is a : bunny and a dog : that have their[-:] basket/s with (uh f) food in them.,um there is a bunny and a dog that have their baskets with uh f food in them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and : then the : bunny (dump/3s it all) dump/3s it all out.,and then the bunny dumps it all dumps it all out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and : the dog just take/3s it one at a time.,and the dog just takes it one at a time +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and then : the dog is : still eat/ing.,and then the dog is still eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and : the bunny is lay/ing on the ground with all this garbage around.,and the bunny is laying on the ground with all this garbage around +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and then : the[-:] : dog is drink/ing a juice box.,and then the dog is drinking a juice box +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and : I think the bunny feel/3s sick.,and I think the bunny feels sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,(then : uh) and then the : dog : I think find/3s a doctor.,then uh and then the dog I think finds a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and the dog is pull/ing the doctor/z sleeve over to where : (um) the bunny is lay/ing down.,and the dog is pulling the doctor's sleeve over to where um the bunny is laying down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and : (the[-:]) : the doctor : take/3s (a thing and) this little stick and : like : point/3s at something.,and the the doctor takes a thing and this little stick and like points at something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and then : the : doctor bring/3s : the : bunny : I think home.,and then the doctor brings the bunny I think home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and : (uh) : the : dog is (stand/ing b) just stand/ing still : with : (a th) a thing behind her back.,and uh the dog is standing b just standing still with a th a thing behind her back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,first (um) : the : dog is pull/ing a wagon with a balloon attach/ed to it.,first um the dog is pulling a wagon with a balloon attached to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,then the : dog drop/3s the handle.,then the dog drops the handle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and : the[-:] bunny (try/3s) : look/3s at it.,and the bunny tries looks at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and then : the bunny try/3s to untie it.,and then the bunny tries to untie it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and it (s) : blow/3s away into the sky.,and it s blows away into the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and then the dog get/3s mad at : him.,and then the dog gets mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and then : (the) : [~_well] (the da) the dog is mad.,and then the the da the dog is mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,the bunny run/3s over.,the bunny runs over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and he see/3s (a) : a balloon man : sell/ing balloon/s.,and he sees a a balloon man selling balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and : the bunny take/3s one of the balloon/s.,and the bunny takes one of the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,(and[-:]) : and on one of the balloon/s it say/3s : balloon/s five cent/s.,and and on one of the balloons it says balloons five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and then the bunny pull/3s out the inside of his pocket/s.,and then the bunny pulls out the inside of his pockets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and he has got no coin/s.,and he has got no coins +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,so[-:] : the : balloon : guy : was hold/ing the balloon/s.,so the balloon guy was holding the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and : the bunny : has his hand/s in his pocket/s : with the dog behind him.,and the bunny has his hands in his pockets with the dog behind him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,(the) (um : the) (the) : the (p) dog is stand/ing by the balloon guy.,the um the the the p dog is standing by the balloon guy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and : (the rab) the rabbit see/3s (this) : (this p) (this girl) : this lady.,and the rab the rabbit sees this this p this girl this lady +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and then (I th) (she tell/3s) : he tell/3s the lady to I think (b) get him a balloon.,and then I th she tells he tells the lady to I think b get him a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and then (the) : the lady take/3s out her wallet and put/3s : some coin/s in her hand.,and then the the lady takes out her wallet and puts some coins in her hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/820.slt,and they (uh) each get a balloon.,and they uh each get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,(the elephant start) : (the elephant[-:] start/s scream/ing[-:][!] with) [~_what_(i)s_this_thing_#_on_#_oh_a_trunk_trunk] : the elephant start/s do/ing with his trunk [EU]!,the elephant start the elephant starts screaming with the elephant starts doing with his trunk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,he (s) make/3s lot/s of noise.,he s makes lots of noise +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,do you know about the elephant/s [+_bch]?,do you know about the elephants +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,oh (it do/3s not) it is your story.,oh it does not it is your story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,you make it up : whatever you think.,you make it up whatever you think +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then they saw a[EW:an] egg in the water swim/ing.,and then they saw a egg in the water swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,they want to pick it up.,they want to pick it up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,the elephant said (uh) :[~!_screaming_'aah'] why there is a[EW:an] egg!,the elephant said uh why there is a egg +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,I want to jump in the water and get it!,I want to jump in the water and get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,ah[!] the guy swim|swim[EW:swam] in the water to catch it!,ah the guy swim in the water to catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and the elephant is do/ing this [~_makes_unknown_gesture]!,and the elephant is doing this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then the guy[-:] : (um) swim|swim[EW:swam].,and then the guy um swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and he give|give[EW:gave] the thing : for[EW:to] the elephant.,and he give the thing for the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,the elephant said wow!,the elephant said wow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,: and then the elephant went away.,and then the elephant went away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,they saw a water [EU]!,they saw a water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,they want to swim in there.,they want to swim in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,it is like the two guy/s the elephant and that guy.,it is like the two guys the elephant and that guy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,: same.,same +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and that is it [+_bch].,and that is it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and[-:] then the elephant said look!,and then the elephant said look +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,I want to swim in the water!,I want to swim in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then they start.,and then they start +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,the elephant was first.,the elephant was first +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,the guy was behind him.,the guy was behind him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and he start/s run/ing.,and he starts running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,I do not know what is he run/ing for.,I do not know what is he running for +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and they still[!] run again.,and they still run again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,know what is he run/ing for too.,know what is he running for too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then they stop/ed.,and then they stopped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and the elephant fell.,and the elephant fell +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and it hurt his leg.,and it hurt his leg +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,[~_laughs] that is *a funny part [EU].,that is funny part +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then a[EW:an] elephant came (and squeeze/ed[-:] his).,and then a elephant came and squeezed his +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then he put a bandaid [EU].,and then he put a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and that is it [+_bch].,and that is it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,elephant came[-:].,elephant came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,(and that) what is what is this guy/z long neck [+_bch]?,and that what is what is this guy's long neck +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,what is what is this guy/z long neck [+_bch]?,what is what is this guy's long neck +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,what is his long [+_bch] [+/]^,what is his long +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,I can not see it.,I can not see it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,"it is your story, you make it up.",it is your story you make it up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and[-:] : he got a helicopter.,and he got a helicopter +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,he flied|fly[EW:flew] it in the air[-:].,he flied it in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,(it fell in the water) [~_no] it keeped|keep[EW:kept] flying in the : sky.,it fell in the water it keeped flying in the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,it could not get down.,it could not get down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,he was go/ing to[:_gonna] catch it.,he was going to catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,he could not.,he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,okay shall I turn now?,okay shall I turn now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,oh[-:] (he) he want/3s to fly it right now!,oh he he wants to fly it right now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,the elephant is like this [~_makes_unknown_facial_expression]!,the elephant is like this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,"oh, you show/ed me again with your face.",oh you showed me again with your face +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,(and then) and then he want/3s to fly it!,and then and then he wants to fly it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,the elephant catched|catch[EW:caught] it.,the elephant catched it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,he must have[?] want/ed to fly it.,he must have wanted to fly it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then it fell in the water!,and then it fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,uhoh and then that guy get/3s mad on the elephant : (cause it is) : because (it got s : um) it is got snuck[?] down [EU].,uhoh and then that guy gets mad on the elephant cause it is because it got s um it is got snuck down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and it got stuck now!,and it got stuck now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then the other guy said : here is the bigger dad.,and then the other guy said here is the bigger dad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and (the eleph) (the other guy) the other one said[-:] : look.,and the eleph the other guy the other one said look +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,the helicopter sneaked|sneak[EW:snuck] down!,the helicopter sneaked down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,oh[-:][!] : (the guy) : the guy is try/ing to catch it!,oh the guy the guy is trying to catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,it gots[EW:got] all[-:] the way there!,it gots all the way there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then they could not catch it.,and then they could not catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,that is a long one.,that is a long one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then the guy got a[-:] like : net[!]!,and then the guy got a like net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,oh[-:] the net catch everything.,oh the net catch everything +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,he catch|catch[EW:caught] fish.,he catch fish +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,but it is hard to catch fish.,but it is hard to catch fish +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,they are fast!,they are fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and[-:] (helicopter is) it is just a toy down there.,and helicopter is it is just a toy down there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,you can catch it fast.,you can catch it fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,"okay, should I turn?",okay should I turn +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then the guy catched|catch[EW:caught] it.,and then the guy catched it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and he give it back to the : other guy.,and he give it back to the other guy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then the elephant is really[?] happy.,and then the elephant is really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and he went [~_makes_unknown_facial_expression].,and he went +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and he what?,and he what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,the (ele) elephant is happy.,the ele elephant is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and he went [~_makes_unknown_facial_expression] : because he got that thing.,and he went because he got that thing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,the other guy was[-:] build/ing his sandcastle.,the other guy was building his sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and the other guy with glass/s[?] [EU].,and the other guy with glasses +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,they was[EW:were] happy.,they was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then turn the page now [+_bch].,and then turn the page now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then the guy (w) want/3s to mix it : because he can not see or[?] watch.,and then the guy w wants to mix it because he can not see or watch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,[~_see] the guy put the pail.,the guy put the pail +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,it is go/ing to wreck it now!,it is going to wreck it now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,it is lot/s of sand!,it is lots of sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then he wreck/ed it!,and then he wrecked it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,that guy that is his sandcastle!,that guy that is his sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,he wreck/ed it!,he wrecked it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then the other guy build|build[EW:built] another[!] sandcastle.,and then the other guy build another sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,but it is not nice.,but it is not nice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,the guy said bye to (the guy) : the guy with the glass/s.,the guy said bye to the guy the guy with the glasses +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then he went.,and then he went +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and he sit[?].,and he sit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and he was play/ing with the sand.,and he was playing with the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,they was[EW:were] eat/ing.,they was eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,(and snow : uh) and snow came down.,and snow uh and snow came down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,(um[-:]) : and then[-:] they was[EW:were] cold.,um and then they was cold +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and they went in the house.,and they went in the house +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then they came back out[-:].,and then they came back out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and it was so[!] windy!,and it was so windy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then they came back out.,and then they came back out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,it was rain/ing[?]!,it was raining +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and when they came back out it was sunny[!].,and when they came back out it was sunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and when they came back out it was windy again.,and when they came back out it was windy again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and when they came back out it was sunny.,and when they came back out it was sunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,(um) : the guy went with the pail : with a balloon on.,um the guy went with the pail with a balloon on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then they see|see[EW:saw] [?] it.,and then they see it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,they want to get it to the sand.,they want to get it to the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,they could not find the sandpile.,they could not find the sandpile +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,(and then[-:]) : and then the other[-:] balloon fell in the sky.,and then and then the other balloon fell in the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,balloon/s can fly in the sky when it is windy because it is not heavy.,balloons can fly in the sky when it is windy because it is not heavy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then the guy want/3s to take it off.,and then the guy wants to take it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,whoa[-:]!,whoa +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,it forgot[?] to[?] go[?]!,it forgot to go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,it is not hang/ing in : tight like that.,it is not hanging in tight like that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,it is like this.,it is like this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,flied|fly[EW:flew] off [EU].,flied off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,it is gone.,it is gone +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,he can not catch it in the air.,he can not catch it in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,oh yeah if that guy was with it then it is windy so hard [EU]!,oh yeah if that guy was with it then it is windy so hard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,it can fly with it : if it is hang/ing on.,it can fly with it if it is hanging on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,oh[-:] it is fly/ed!,oh it is flew +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,he took it out and it flied|fly[EW:flew] up.,he took it out and it flied up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,(and then[-:] : th) and then the balloon pop[EW:popped].,and then th and then the balloon pop +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and the guy was mad.,and the guy was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and the other guy was sad.,and the other guy was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and the other guy bought lot/s[!] of balloon/s.,and the other guy bought lots of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and he gived|give[EW:gave] them to the kid.,and he gived them to the kid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and the other balloon pop/ed [~_laughs] : the last one.,and the other balloon popped the last one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then the other[!] one pop/ed.,and then the other one popped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,that is it.,that is it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then another[!] one.,and then another one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then it is not go/ing to pop!,and then it is not going to pop +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then[-:] [+/]^,and then +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,okay anything to say about this page here?,okay anything to say about this page here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,(um) [+/]^,um +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,page eleven?,page eleven +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then the guy (look) : look how many balloon/s he say [EU].,and then the guy look look how many balloons he say +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then he give|give[EW:gave] him some money.,and then he give him some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,(and he) and then they *are jump/ing to get the balloon [EU].,and he and then they jumping to get the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,the guy can not see.,the guy can not see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,they just gather[?] by his hand.,they just gather by his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and he went.,and he went +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,(and then they hang/ed on their arm) [~_EXA:_can_n(o)t_hear_you] and then they hanged|hang[EW:hung] on on the balloon [EU].,and then they hung on their arm and then they hanged on on the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,they hanged|hang[EW:hung] on on a balloon [EU].,they hanged on on a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,and then they *are smile/ing [EU].,and then they smiling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/572.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,It look/3s like a giraffe and an elephant that are go/ing swim/ing.,It looks like a giraffe and an elephant that are going swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and they are[-:] play/ing with a ball.,and they are playing with a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,"(although it) although when (um) they were play/ing with it, it (um) maybe bounce/3s in the water.",although it although when um they were playing with it it um maybe bounces in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and the giraffe try/3s to swim and get it.,and the giraffe tries to swim and get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and the giraffe got it and give/3s it to the elephant.,and the giraffe got it and gives it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and : the : elephant thank/3s him.,and the elephant thanks him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and : the giraffe is smile/ing.,and the giraffe is smiling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,It look/3s like they might want to dive in and go swim/ing.,It looks like they might want to dive in and go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,look/3s like the elephant is point/ing to the diving board to (um).,looks like the elephant is pointing to the diving board to um +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and he want/3s to dive.,and he wants to dive +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and (um) the elephant start/3s to run.,and um the elephant starts to run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,although : it is slipery.,although it is slipery +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,so she start/3s to slide.,so she starts to slide +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and she fall/3s and hurt/3s her knee.,and she falls and hurts her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and then (um) the lifeguard come/3s.,and then um the lifeguard comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and he[-:] put/3s a bandage on it.,and he puts a bandage on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,then he (um) say/ing probably that there is a no run/ing sign and that you can not that you should not run cause you can slip and fall.,then he um saying probably that there is a no running sign and that you can not that you should not run cause you can slip and fall +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and then he is point/ing to the sign that say/3s no run/ing.,and then he is pointing to the sign that says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,Look/3s like they are talk/ing : about something.,Looks like they are talking about something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,(and then he) and then the giraffe look/3s like he is show/ing : her : his new airplane.,and then he and then the giraffe looks like he is showing her his new airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and she look/3s like she is get/ing dizzy watch/ing it going around in circle/s.,and she looks like she is getting dizzy watching it going around in circles +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and she[-:] take/3s it from him and start/3s to look/3s[EW:look] at him.,and she takes it from him and starts to looks at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and the giraffe look/3s like he is get/ing mad.,and the giraffe looks like he is getting mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and then she accidentally drop/ed it in the water.,and then she accidentally dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and she look/3s like (sh) : she is scare/ed or something.,and she looks like sh she is scared or something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and the giraffe look/3s like he is (m) really mad.,and the giraffe looks like he is m really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and then the lifeguard come/3s along : and probably say/3s : what is that ?,and then the lifeguard comes along and probably says what is that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and what is it do/ing in the pool ?,and what is it doing in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and then the elephant is probably blame/ing it on the giraffe that he threw it in the water.,and then the elephant is probably blaming it on the giraffe that he threw it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and the lifeguard is (try/ing to catch it) try/ing to pick it up out of the water : although he can not reach it.,and the lifeguard is trying to catch it trying to pick it up out of the water although he can not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and the giraffe look/3s like he is get/ing really sad.,and the giraffe looks like he is getting really sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,so he start/3s to cry.,so he starts to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and then this lady elephant come/3s along with a net.,and then this lady elephant comes along with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and she[-:] try/3s to (fish it) fish it out with the net.,and she tries to fish it fish it out with the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and she get/3s it out and give/3s it back to the giraffe.,and she gets it out and gives it back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and he is all happy.,and he is all happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and he is hug/ing it.,and he is hugging it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,(it look/3s like[-:] two[-:]) it look/3s like a bunny : (and : um) and a dog or something play/ing in the sand.,it looks like two it looks like a bunny and um and a dog or something playing in the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,(and they start) and the bunny look/3s like he is help/ing : the dog make a sandcastle.,and they start and the bunny looks like he is helping the dog make a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and[-:] the bunny pour/3s a whole bucket of sand on it.,and the bunny pours a whole bucket of sand on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and the dog look/3s like he is get/ing sort of worry/ed.,and the dog looks like he is getting sort of worried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and the bunny (s) get/3s surprise/ed because it is all cover/ed in sand.,and the bunny s gets surprised because it is all covered in sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and the dog start/3s to cry.,and the dog starts to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and the bunny look/3s like he is : embarrasse/ed.,and the bunny looks like he is embarrasseed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,it look/3s like the dog is go/ing for a picnic.,it looks like the dog is going for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and the bunny is come/ing along with him.,and the bunny is coming along with him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,it look/3s like the bunny is look/ing at all this good food that he want/3s to eat.,it looks like the bunny is looking at all this good food that he wants to eat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and he eat/3s it all.,and he eats it all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,(and : he) (and he) I guess he has a stomachache.,and he and he I guess he has a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and then he start/3s to feel sick.,and then he starts to feel sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,: and it look/3s like/3s[EW:like] he is[EW:has] faint/ed.,and it looks likes he is fainted +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and (the puppy) the dog go/3s to find somebody.,and the puppy the dog goes to find somebody +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and : he (fi) (h um) he find/3s this (um) lady.,and he fi h um he finds this um lady +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and he pull/3s the lady to where (um) the bunny drop/ed out.,and he pulls the lady to where um the bunny dropped out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,(and[-:] the) and the lady was a doctor.,and the and the lady was a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,so she : test/ed him to see if he was awake : or not.,so she tested him to see if he was awake or not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and she took him.,and she took him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and she is probably go/ing to [~_gonna] take him back to the doctor office to check him up.,and she is probably going to take him back to the doctor office to check him up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,it looks like (she is pull) the dog is pull/ing a wagon with a balloon on it.,it looks like she is pull the dog is pulling a wagon with a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,(And the) and the bunny is come/ing : like run/ing along.,And the and the bunny is coming like running along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and he see/3s the dog.,and he sees the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and he is wave/ing.,and he is waving +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and[-:] the rabbit (pra um) look/3s like he is say/ing (um) like nice balloon.,and the rabbit pra um looks like he is saying um like nice balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and then the bunny try/3s to pull it off.,and then the bunny tries to pull it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and the dog look/3s : like : scare/ed : that it will fly away.,and the dog looks like scared that it will fly away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and then the bunny accidentally let/3s go of it.,and then the bunny accidentally lets go of it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and it start/3s to fly up in the air.,and it starts to fly up in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and they are try/ing to catch it : although they can not.,and they are trying to catch it although they can not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and the bunny is look/ing up at the balloon.,and the bunny is looking up at the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and the dog is get/ing really mad.,and the dog is getting really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and then (this um old bun) this bunny is sell/ing balloon/s.,and then this um old bun this bunny is selling balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and the bunny see/3s it.,and the bunny sees it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,so he run/3s over.,so he runs over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and then he ask/3s (the bunny) the older bunny : for (a) one of the balloon/s.,and then he asks the bunny the older bunny for a one of the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and then the balloon man said that the balloon/s are five cent/s.,and then the balloon man said that the balloons are five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and the bunny look/3s in his pocket/s.,and the bunny looks in his pockets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and he do/3s not have any money.,and he does not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and : the bunny look/3s sad because he can not : buy another balloon (for his) : for the dog.,and the bunny looks sad because he can not buy another balloon for his for the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and then the bunny walk/3s over to this lady.,and then the bunny walks over to this lady +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and he ask/3s her for some money.,and he asks her for some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and the lady give/3s him five cent/s.,and the lady gives him five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/921.slt,and then they each got one of their own balloon/s.,and then they each got one of their own balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,There is an elephant and a giraffe : by the swimming pool.,There is an elephant and a giraffe by the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the elephant is bang/ing a ball with his trunk.,and the elephant is banging a ball with his trunk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the elephant (kno) accidentally knock/ed the ball inside the water.,and the elephant kno accidentally knocked the ball inside the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the giraffe : had to go and get it.,and the giraffe had to go and get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,(he had) the giraffe had to swim inside the water to go and get the ball.,he had the giraffe had to swim inside the water to go and get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,the giraffe got the ball back for the elephant.,the giraffe got the ball back for the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,(and the elephant) : and the elephant was happy to get the ball back.,and the elephant and the elephant was happy to get the ball back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,The elephant and the giraffe are stand/ing by the water.,The elephant and the giraffe are standing by the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,the elephant ran closer to the water.,the elephant ran closer to the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,the elephant slip/ed[!].,the elephant slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the giraffe is run/ing to (s) stop the elephant from fall/ing on the ground.,and the giraffe is running to s stop the elephant from falling on the ground +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the elephant fell on (his) her knee and hurt it.,and the elephant fell on his her knee and hurt it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,the giraffe is try/ing to fix the elephant/z knee.,the giraffe is trying to fix the elephant's knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and (this oth) another elephant came and put a bandage on it.,and this oth another elephant came and put a bandage on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,"and (all the giraffe, the elephant and the other elephant are) the giraffe is sit/ing down.",and all the giraffe the elephant and the other elephant are the giraffe is sitting down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the (gg) giraffe is stand/ing up.,and the gg giraffe is standing up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and (the elephant is still) the other elephant is stand/ing up.,and the elephant is still the other elephant is standing up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the girl elephant is sit/ing down.,and the girl elephant is sitting down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,(The elephant is) : the elephant and the giraffe are happy.,The elephant is the elephant and the giraffe are happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,the giraffe is play/ing with a toy plane.,the giraffe is playing with a toy plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,: and the elephant is look/ing at it.,and the elephant is looking at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the elephant took[!] the toy plane and start/ed to play with it.,and the elephant took the toy plane and started to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the elephant drop/ed the toy plane inside the water.,and the elephant dropped the toy plane inside the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the giraffe is get/ing mad at the elephant.,and the giraffe is getting mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the lifeguard came and (s) look/ed at the toy plane.,and the lifeguard came and s looked at the toy plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and then : the elephant : was look/ing at the lifeguard.,and then the elephant was looking at the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and (the one) the giraffe is look/ing at the plane.,and the one the giraffe is looking at the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and (the ele) : the elephant ask/ed the lifeguard to get that plane out.,and the ele the elephant asked the lifeguard to get that plane out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,the lifeguard is[-:] hold/ing onto the edge and try/ing to get : the toy plane out.,the lifeguard is holding onto the edge and trying to get the toy plane out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and : the elephant and the giraffe are look/ing at the plane.,and the elephant and the giraffe are looking at the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the lifeguard can not[!] get : (the eleph) the (um) plane out.,and the lifeguard can not get the eleph the um plane out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,so : the giraffe start/ed to cry.,so the giraffe started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,(and the) and another lifeguard grab/ed a net (and tr) and try/ed to get it out.,and the and another lifeguard grabbed a net and tr and tried to get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the other lifeguard (um) caught it in the net in there.,and the other lifeguard um caught it in the net in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and (um the) everybody (was look/ing) was proud.,and um the everybody was looking was proud +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and that other lifeguard got it for the giraffe.,and that other lifeguard got it for the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the giraffe was very happy.,and the giraffe was very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the elephant and the giraffe are very happy to get the plane back.,and the elephant and the giraffe are very happy to get the plane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,There is a rabbit and a dog play/ing in the sandbox.,There is a rabbit and a dog playing in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the rabbit and the dog are make/ing a sandcastle.,and the rabbit and the dog are making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the : rabbit : fulled|fill[EW:filled] the bucket of sand and : broke the sandcastle.,and the rabbit fulled the bucket of sand and broke the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and now : the rabbit : is[-:] a bit frighten/ed of what happen/ed to the sandcastle.,and now the rabbit is a bit frightened of what happened to the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and : the dog (ha) is try/ing to make the sandcastle all over again.,and the dog ha is trying to make the sandcastle all over again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,there is a dog and a rabbit.,there is a dog and a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,they are go/ing to have a picnic.,they are going to have a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the rabbit took all the food out : and is get/ing very hungry.,and the rabbit took all the food out and is getting very hungry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,the rabbit ate all his food.,the rabbit ate all his food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the dog is still drink/ing and eat/ing : his food very nicely.,and the dog is still drinking and eating his food very nicely +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the rabbit is very[-:] (ff) full.,and the rabbit is very ff full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the dog is still[!] eat/ing his food.,and the dog is still eating his food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the dog see/3s a doctor : and ran over to the doctor.,and the dog sees a doctor and ran over to the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and (the doctor is[-:] ) the dog is pull/ing the doctor/z (leg) [~_I_mean] arm : to move it over there.,and the doctor is the dog is pulling the doctor's leg arm to move it over there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the doctor (is gon) (go/ing to take : um : the) (the bunny/z) (the rabbit/z : uh) is (go/ing) try/ing to fix the rabbit.,and the doctor is gon going to take um the the bunny's the rabbit's uh is going trying to fix the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the rabbit is all better now.,and the rabbit is all better now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,the rabbit : is run/ing over to the dog that is pull/ing a wagon : with a balloon on it.,the rabbit is running over to the dog that is pulling a wagon with a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the rabbit : is try/ing to grab the balloon.,and the rabbit is trying to grab the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the rabbit is untie/ing the balloon from the wagon.,and the rabbit is untying the balloon from the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the dog is very proud.,and the dog is very proud +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and then (the balloo) the balloon : slip/ed out of the rabbit/z hand and went fly/ing up in the air.,and then the balloo the balloon slipped out of the rabbit's hand and went flying up in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,(and they are all try) and the rabbit and the dog are try/ing to catch it.,and they are all try and the rabbit and the dog are trying to catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the dog is very mad at the rabbit.,and the dog is very mad at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,(and they s) and the rabbit see/3s : (another man sell/ing ballo) (a balloo) a man sell/ing balloon/s.,and they s and the rabbit sees another man selling ballo a balloo a man selling balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and (he bought one) the rabbit bought one[!] balloon.,and he bought one the rabbit bought one balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,(and he) and the rabbit has no money for balloon/s.,and he and the rabbit has no money for balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,(and th) and the rabbit and[!] the dog are try/ing to get a balloon.,and th and the rabbit and the dog are trying to get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and[-:] the rabbit went (to th) (to the) (to this other rabbit) : to the doctor.,and the rabbit went to th to the to this other rabbit to the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and the doctor saw him.,and the doctor saw him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and (the) the (ra) other rabbit is point/ing to : the balloon/s.,and the the ra other rabbit is pointing to the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and : the doctor is buy/ing a balloon.,and the doctor is buying a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/713.slt,and[-:] both of them have a balloon.,and both of them have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,the girl has three (ba) ball/s[-:].,the girl has three ba balls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(and she is) : and there is (a) a big one and a medium size/ed and a small ball.,and she is and there is a a big one and a medium sized and a small ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(and) : and there is (um) : a giraffe : that would like to play with one.,and and there is um a giraffe that would like to play with one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,by accident (he s) the girl throw/3s the ball into the pool.,by accident he s the girl throws the ball into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,the giraffe (go/3s) : (try) he is in to swim for it.,the giraffe goes try he is in to swim for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,he give/3s it back to the girl and say/3s that is okay.,he gives it back to the girl and says that is okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,he is smile/ing at the girl.,he is smiling at the girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,the girl : elephant and the boy giraffe are look/ing at the pool.,the girl elephant and the boy giraffe are looking at the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,okay can you talk a bit louder cause someone is make/ing noise out there.,okay can you talk a bit louder cause someone is making noise out there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,[~_CHI:_kay] what is next?,what is next +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(the girl) (the girl is run/ing) the girl is run/ing.,the girl the girl is running the girl is running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,mm okay.,mm okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(she) : she accidentally slip/3s[-:].,she she accidentally slips +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(and she hur) and she hurt/3s her knee.,and she hur and she hurts her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and now she is (cry/ing) : cry/ing.,and now she is crying crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,the lifeguard : come/3s run/ing.,the lifeguard comes running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,he put the bandage (on) : on the (um) bruise.,he put the bandage on on the um bruise +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(and she) now she is sit/ing down on the (um) : bench.,and she now she is sitting down on the um bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,he point/3s to the sign that says no run/ing.,he points to the sign that says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and she was run/ing.,and she was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,the boy giraffe have|have[EW:has] a toy airplane.,the boy giraffe have a toy airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and (the girl giraffe) : [~_I_mean] the girl elephant is ask/ing to play with it.,and the girl giraffe the girl elephant is asking to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(and he wa) (and he um) : and he is show/ing : her how to do a loopdeloop with the airplane.,and he wa and he um and he is showing her how to do a loopdeloop with the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(and then sh) and then she take/3s it.,and then sh and then she takes it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(sh) she is : look/ing at it like : it is her/z.,sh she is looking at it like it is her's +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,she accidentally drop/3s it into the pool.,she accidentally drops it into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(the um gira) the boy giraffe is get/ing mad at her.,the um gira the boy giraffe is getting mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(the la) (the l) when the lifeguard see/3s (he) : he is kind of happy.,the la the l when the lifeguard sees he he is kind of happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and he is kind of mad.,and he is kind of mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(the girl) the elephant is : tell/ing (hu) him what happen/ed.,the girl the elephant is telling hu him what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,he is try/ing to reach out : to get it.,he is trying to reach out to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,the boy giraffe : is cry/ing because they can not get it.,the boy giraffe is crying because they can not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(the) (the other gir) there is another girl elephant : that has : a net.,the the other gir there is another girl elephant that has a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and she think/3s that she can get it.,and she thinks that she can get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and she can get it.,and she can get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(she give/ing it) she is give/ing the toy airplane back to the giraffe.,she giving it she is giving the toy airplane back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and he is hug/ing it : because he love/3s it.,and he is hugging it because he loves it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,there is a rabbit that is make/ing a castle.,there is a rabbit that is making a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and there is another rabbit that want/3s to help that rabbit make the castle.,and there is another rabbit that wants to help that rabbit make the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(they) they are help/ing make the castle together.,they they are helping make the castle together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(one) one is build/ing the castle.,one one is building the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and one is make/ing the wall/s.,and one is making the walls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(one) (one) : (one is ac) one accidentally pour/3s the sand right onto the castle.,one one one is ac one accidentally pours the sand right onto the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and the other one : look/3s embarrass/ed.,and the other one looks embarrassed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(uh) after he pour/3s it on all there is is a tower from the castle.,uh after he pours it on all there is is a tower from the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and it is all gone.,and it is all gone +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and : the other one is kind of smile/ing.,and the other one is kind of smiling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,but one has a frown/ing face.,but one has a frowning face +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and : (that other) that other (wa) one (that had a) that was smile/ing is now cry/ing.,and that other that other wa one that had a that was smiling is now crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and the other one : is : think/ing of what he did.,and the other one is thinking of what he did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,that is the end of the story [+_bch].,that is the end of the story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(there is two) there are two rabbit/s.,there is two there are two rabbits +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,one is[-:] run/ing to the other with a (pis) : picnic[!] basket.,one is running to the other with a pis picnic basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and the other one is hold/ing a (pis) (picnic) : picnic basket[!].,and the other one is holding a pis picnic picnic basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(one said) one has open/ed up his picnic basket.,one said one has opened up his picnic basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and he is eat/ing : all the food.,and he is eating all the food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and the other one is (s) still open/ing hers up.,and the other one is s still opening hers up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,when he is done all his food (he kinds of) he kind of faint/s.,when he is done all his food he kinds of he kind of faints +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(and the other) and the other one is still eat/ing.,and the other and the other one is still eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(uh) he feel/3s kind of sick.,uh he feels kind of sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(and) : and (he) the other one is still eat/ing[~!__laughing].,and and he the other one is still eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,the one that was still eat/ing (ru) run/3s to get a doctor.,the one that was still eating ru runs to get a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(and) : and he is tell/ing (her) (him) her : what happen/ed to her friend.,and and he is telling her him her what happened to her friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(now she) now she is pull/ing : the doctor to (her fr) her friend.,now she now she is pulling the doctor to her fr her friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,the doctor : is speak/ing to the boy (and) to tell him not to eat too quick.,the doctor is speaking to the boy and to tell him not to eat too quick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,now : the boy is all better.,now the boy is all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(and : now) : and now the girl and the boy is[EW:are] going home.,and now and now the girl and the boy is going home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(there is a girl that is push/ing her wagon : and : uh) [~__clears_throat] there is a girl that is push/ing her wagon.,there is a girl that is pushing her wagon and uh there is a girl that is pushing her wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and : on the wagon there is a balloon.,and on the wagon there is a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(and the boy) and the boy rabbit is chase/ing after her.,and the boy and the boy rabbit is chasing after her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(he want/3s) he want/3s the balloon.,he wants he wants the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,so he reach/s : out.,so he reaches out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and she is : kind of have[EW:has] a frown/ing face.,and she is kind of have a frowning face +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,what kind of face?,what kind of face +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,a frown/ing face [+_bch].,a frowning face +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,oh frown/ing okay.,oh frowning okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,when he get/3s : his balloon (the gir) the girl (um kind) is say/ing hey.,when he gets his balloon the gir the girl um kind is saying hey +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and he is play/ing.,and he is playing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and he is tie/ing it to his wrist.,and he is tying it to his wrist +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,he let/3s the balloon go.,he lets the balloon go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and it float/3s away.,and it floats away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,the girl is get/ing really : mad : at the boy.,the girl is getting really mad at the boy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and soon they see another rabbit (that ha) that is hold/ing balloon/s.,and soon they see another rabbit that ha that is holding balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,[~_clears_throat] (when the bo) (when the boy : s) when the boy see/3s : that : he ask/3s if : he can have a balloon.,when the bo when the boy s when the boy sees that he asks if he can have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,the man said it is five cent/s.,the man said it is five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and the boy do/3s not have any money.,and the boy does not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,he say/3s : it is okay.,he says it is okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,maybe next time you will have some.,maybe next time you will have some +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and when the : boy see/3s the doctor he ask/3s (if he can pay for the) : if (sh) : she can pay (for the : balloon) : for both of the balloon/s.,and when the boy sees the doctor he asks if he can pay for the if sh she can pay for the balloon for both of the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,(I sa) the doctor say/3s (y) yes.,I sa the doctor says y yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and (um) : they both get a balloon.,and um they both get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,right here she is : pay/ing.,right here she is paying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/728.slt,and[-:] they both really like : their balloon/s.,and they both really like their balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,there once were two friend/s.,there once were two friends +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and they were : play/ing a game.,and they were playing a game +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and they want/ed to go swim/ing.,and they wanted to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,so then : they got there.,so then they got there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and then : they were play/ing.,and then they were playing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and the ball fell in the pool.,and the ball fell in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,so : one of the friend/s swam[!] out and got it.,so one of the friends swam out and got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and then they got it.,and then they got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and one of the friend/s she took it out.,and one of the friends she took it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and then they want/ed to play again.,and then they wanted to play again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,there were two friend/s.,there were two friends +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and : they were the same one[EW:ones] in the last story.,and they were the same one in the last story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and they want/ed to go swim/ing again.,and they wanted to go swimming again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,so they went.,so they went +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and then one of the friend/s : she want/ed to go in right[!] away.,and then one of the friends she wanted to go in right away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,so she ran[-:].,so she ran +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,(and sh) and she want/ed to jump in.,and sh and she wanted to jump in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,but then : she fell.,but then she fell +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and she scrape/ed her knee.,and she scraped her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and the lifeguard came.,and the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and he said oh it is all right.,and he said oh it is all right +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,here is a bandage.,here is a bandage +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,here you can sit here and wait til it is better.,here you can sit here and wait til it is better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and then : she was happy[!].,and then she was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,she took a little rest[!].,she took a little rest +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,there were once two friend/s.,there were once two friends +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and they want/ed to go swim/ing.,and they wanted to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,so they went[!].,so they went +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and one friend (bought) brought an airplane.,and one friend bought brought an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,the other friend grab/ed it and said wow an airplane !,the other friend grabbed it and said wow an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and then she accidentally drop/ed it in the pool.,and then she accidentally dropped it in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and then the other friend was a (l) little bit mad[-:].,and then the other friend was a l little bit mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,so then she said uhoh[-:] !,so then she said uhoh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and he went [~_makes_sound_'err'] !,and he went +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and then the lifeguard came.,and then the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and he went hmm.,and he went hmm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and then she said (I) I accidentally drop/ed the airplane[!] in the pool[-:].,and then she said I I accidentally dropped the airplane in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,he try/ed to get it.,he tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,but he could not reach.,but he could not reach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,so then : the friend that (ha) had the airplane he was cry/ing.,so then the friend that ha had the airplane he was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and then : one lady : she came.,and then one lady she came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and she had a net to get it.,and she had a net to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,she said do not worry.,she said do not worry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,I will get it.,I will get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and then she went and got[!] it.,and then she went and got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and then : (xx the) he was happy[!] again.,and then the he was happy again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and then they were both happy.,and then they were both happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and she was happy he got his airplane back.,and she was happy he got his airplane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,once : there were : two[-:] friend/s.,once there were two friends +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,(and they went) : and they want/ed to play in the sandbox.,and they went and they wanted to play in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and they built a sandcastle.,and they built a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and[-:] it was : really[!] nice.,and it was really nice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and they : need/ed lot/s of sand to make it (unless) : unless it would not work out [EU].,and they needed lots of sand to make it unless unless it would not work out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and then : he put too much sand on it that it all collapse/ed and fell.,and then he put too much sand on it that it all collapsed and fell +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,(and then) : and then : one of them start/ed to cry.,and then and then one of them started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,(so) and then : he want/ed to rebuild[!] it.,so and then he wanted to rebuild it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,once there were two[-:] friend/s.,once there were two friends +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,(and) : and they want/ed to go on a picnic.,and and they wanted to go on a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,they pack/ed all[-:] the lunch.,they packed all the lunch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and when they got there they start/ed to eat.,and when they got there they started to eat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and they start/ed to eat.,and they started to eat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and one of them felt really sick[!].,and one of them felt really sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,so they had to : get a doctor.,so they had to get a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,(and) and (while the doctor was come/ing) when the doctor was : come/ing he felt really[!] sick.,and and while the doctor was coming when the doctor was coming he felt really sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and (he k) he could not wait.,and he k he could not wait +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and the doctor came.,and the doctor came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,one of the friend/s she ran[!] up to the doctor.,one of the friends she ran up to the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,she said doctor doctor help!,she said doctor doctor help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,my friend is sick.,my friend is sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,we need some help so he feel/3s better.,we need some help so he feels better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,the doctor said oh my (he has a) he has a very bad tummyache.,the doctor said oh my he has a he has a very bad tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and he felt better because the doctor made him feel better.,and he felt better because the doctor made him feel better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and then : he live/ed happily ever after.,and then he lived happily ever after +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,there were two friend/s the same one/s in the last story that I read.,there were two friends the same ones in the last story that I read +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and they want/ed to go on a walk[!].,and they wanted to go on a walk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,so they went[!].,so they went +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,(and they) : (and they saw) : and they saw somebody : with balloon/s.,and they and they saw and they saw somebody with balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and (they) : they got one.,and they they got one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and they tie/ed it on.,and they tied it on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,but then it went up in the air[!].,but then it went up in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and they were sad[-:].,and they were sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and then : (they) they kept go/ing.,and then they they kept going +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and then they saw (a man) another man with balloon/s.,and then they saw a man another man with balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and (they went) : they want/ed to get some.,and they went they wanted to get some +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,(say) (so they got) : so they got some.,say so they got so they got some +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and then they left.,and then they left +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,but then : they did not have any money!,but then they did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and he was sad.,and he was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and the balloon man : said : hm I do not know : if you can get a balloon[-:].,and the balloon man said hm I do not know if you can get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and they did not : (d) get any.,and they did not d get any +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and then : they saw a lady.,and then they saw a lady +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,(and see) (she was) and then he ask/ed : can you get us some money so we can get a balloon?,and see she was and then he asked can you get us some money so we can get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and then : so she bought a balloon for them.,and then so she bought a balloon for them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/724.slt,and then they were both happy.,and then they were both happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,(uh : hm :) once upon a time : then there was a[EW:an] elephant go/ing [EU].,uh hm once upon a time then there was a elephant going +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,(then[-:] the ra) then (the) : he came.,then the ra then the he came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,(and was) and a ball[-:] was in[!] the pool[-:].,and was and a ball was in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,then he try/ed[-:] to swim in there.,then he tried to swim in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,but he could not : [~_right]?,but he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,then[-:] : she pick|pick[EW:picked] the ball up.,then she pick the ball up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,then[-:] he was all wet.,then he was all wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,then that is the end of the story [+_bch].,then that is the end of the story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,once upon a time : a[EW:an] elephant came along[-:].,once upon a time a elephant came along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and (that) (then) (then[-:] ) then [~_turn_the_story] : (then) (then : she want/ed to) then[-:] she want/ed to go.,and that then then then then then she wanted to then she wanted to go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,but[!] : she falled|fall[EW:fell] on herself.,but she falled on herself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and the more she was run/ing she falled|fall[EW:fell][-:].,and the more she was running she falled +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and[!] someone is go/ing to[:_gonna] help her.,and someone is going to help her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and she got a (br um) a[EW:an] owie [~_okay].,and she got a br um a owie +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,(then[-:] come along) (elephant came) then the elephant came.,then come along elephant came then the elephant came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,(and he) and that was a coast.,and he and that was a coast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,then there was a[EW:an] owie go/ing.,then there was a owie going +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,(and there was) but then[-:] : there was nothing to do[-:].,and there was but then there was nothing to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,then the animal was all[-:] better.,then the animal was all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and[-:] he said no run/ing : because if you run you fall on yourself.,and he said no running because if you run you fall on yourself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,I never do that I but I run on a sidewalk and I like like while I was two [+_bch].,I never do that I but I run on a sidewalk and I like like while I was two +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,like once upon a time : she did not : allow/ed in[-:] [EU].,like once upon a time she did not allowed in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,something came.,something came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,(and[-:]) and then there was an airplane go/ing in the water[-:].,and and then there was an airplane going in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and she[-:] : play/ed it and[-:] something.,and she played it and something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and she taked|take[EW:took] it away and : throwed|throw[EW:threw] it in there.,and she taked it away and throwed it in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,: (um then[-:]) : then he was angry.,um then then he was angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,(and she) and the boy told her : you did it on a purpose.,and she and the boy told her you did it on a purpose +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,then a lifeguard came[-:].,then a lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,(then[-:]) : then the airplane was still in there.,then then the airplane was still in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,he want/ed it out.,he wanted it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,he try/ed to reach it.,he tried to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,but he could not!,but he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and[-:] someone got it.,and someone got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,but she was very trifle[?].,but she was very trifle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,(um) then[-:] someone is go/ing to pick in[EW:up] a net.,um then someone is going to pick in a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,(um) : then someone is go/ing to pick it xx.,um then someone is going to pick it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,then he was happy.,then he was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,then[-:] he was glad.,then he was glad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,then she[!] was glad.,then she was glad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,they were : make/ing new friend/s again.,they were making new friends again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,then the end of the story [+_bch].,then the end of the story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,once upon a time[-:] (he) she built a nice sandcastle.,once upon a time he she built a nice sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,but (then that rabbit) : then the rabbit was surprise/ed.,but then that rabbit then the rabbit was surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,(then c) then[-:] they were make/ing a other[EW:another] castle.,then c then they were making a other castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,then[-:] someone push/ed it down.,then someone pushed it down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and that was (her[-:] like) like a rabbit or maybe : someone else.,and that was her like like a rabbit or maybe someone else +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and it was[!] rabbit.,and it was rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and[-:] she did not do it.,and she did not do it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,so she try/ed to fix it.,so she tried to fix it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and he[-:] was not (uh) please/ed.,and he was not uh pleased +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,then that is the end of the story [+_bch].,then that is the end of the story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,(he) she was walk/ing by.,he she was walking by +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and[-:] (then[-:]) then[-:] a rabbit was go/ing[!] by.,and then then a rabbit was going by +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and a puppy saw her.,and a puppy saw her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and a puppy said[-:] I am go/ing to picnic like you.,and a puppy said I am going to picnic like you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,so they had a nice picnic.,so they had a nice picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and[-:] he was get/ing : goofy.,and he was getting goofy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and[-:] suddenly he was tire/ed.,and suddenly he was tired +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and he was full of candy.,and he was full of candy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and[-:] he is get/ing sicker : sicker and sicker.,and he is getting sicker sicker and sicker +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,then he knowed|know[EW:knew]: he[-:] was get/ing sicker and sicker.,then he knowed he was getting sicker and sicker +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and (he) she need/ed : him to help her.,and he she needed him to help her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,he was so full he could not even walk.,he was so full he could not even walk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and[-:] the rabbit said : get up!,and the rabbit said get up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and[-:] then[-:] he was : fine at all.,and then he was fine at all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,then[-:] she was try/ing to pull it.,then she was trying to pull it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,but he was so[-:] happy.,but he was so happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,(a ra) and a other[EW:another] rabbit came along.,a ra and a other rabbit came along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and she said what are you do/ing[!]?,and she said what are you doing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,I am just pull/ing some stuff.,I am just pulling some stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and[-:] a balloon was not go/ing up.,and a balloon was not going up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and she[-:] was happy.,and she was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,suddenly it was go/ing up : and up : and up : and up and up : and up.,suddenly it was going up and up and up and up and up and up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,then suddenly he : want/ed a other[EW:another] one.,then suddenly he wanted a other one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and[-:] : she was angry.,and she was angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,there she came.,there she came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,just a sec [~_interruption_as_someone_came_into_the_office].,just a sec +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,then he was go/ing to [~_gonna] get a other[EW:another] balloon.,then he was going to get a other balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,she was angry.,she was angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and he[!] want/ed a balloon.,and he wanted a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and he said yup I want a balloon.,and he said yup I want a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and he did not know.,and he did not know +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,: and[-:] the xx [~_sounds_like_'mendasee'] said no[-:].,and the said no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,can you see?,can you see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,(and[-:]) and he said : you do not have any money?,and and he said you do not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,(that is) : that is not do/ing.,that is that is not doing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,: (then[-:]) then suddenly : he had idea.,then then suddenly he had idea +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and[-:] a rabbit had money somewhere : to find[-:].,and a rabbit had money somewhere to find +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and that was someone else look/ing : in a far away.,and that was someone else looking in a far away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and she said what is it you are do/ing?,and she said what is it you are doing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,I need some money!,I need some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,(but) and she said : she did not know what she need[EW:needed] the money for.,but and she said she did not know what she need the money for +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,: (then[-:]) then she give|give[EW:gave] him some (won) money.,then then she give him some won money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and they want/ed two[-:] balloon/s.,and they wanted two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,that was all.,that was all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and he[-:] want/ed them two.,and he wanted them two +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,but other/s hear/ed[?] it.,but others heard it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,but there was[EW:were] two left.,but there was two left +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,then they got both the balloon.,then they got both the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and they love/ed it.,and they loved it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,then they : hug/ed it.,then they hugged it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,(and then something went[-:] ) (then[-:]) [~_coughs] (then[-:]) then she was surprise/ed[-:].,and then something went then then then she was surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,and that was true.,and that was true +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/562.slt,that is the end [+_bch].,that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,[~_okay] : so (a guy) : there was a giraffe.,so a guy there was a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,he was at the pool.,he was at the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,then he met a girl : bounce/ing a ball.,then he met a girl bouncing a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,but the ball fell in the water.,but the ball fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and (the man) [~_like] the boy try/ed to go get it.,and the man the boy tried to go get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and then he got the ball.,and then he got the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and then[-:] : he was still all wet because he was in his clothes.,and then he was still all wet because he was in his clothes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,there [+_bch].,there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,[~_okay] they saw a diving board.,they saw a diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,(and it) and it said no run/ing : (and) the sign said (but).,and it and it said no running and the sign said but +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and then she start/ed to run[-:].,and then she started to run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and then she slip/ed.,and then she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,she fell on the ground.,she fell on the ground +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and she hurt her knee.,and she hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and then the lifeguard came : and put a bandage on it.,and then the lifeguard came and put a bandage on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,sat on a bench [EU].,sat on a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and then the[-:] lifeguard said you are kick/ed out.,and then the lifeguard said you are kicked out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,[~_okay] a boy was there.,a boy was there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and the girl was there.,and the girl was there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and then the boy had an airplane in his hand.,and then the boy had an airplane in his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,he flew it around like this [~_gestures].,he flew it around like this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and then the girl grab/ed it out of his hand.,and then the girl grabbed it out of his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and then[-:] it slip/ed out of her hand.,and then it slipped out of her hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and it went into the water.,and it went into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,it was a pool.,it was a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and then the boy got so angry.,and then the boy got so angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and the lifeguard came[-:].,and the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and the girl said it was an accident.,and the girl said it was an accident +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,I accidentally : got the (w) : plane in the water.,I accidentally got the w plane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,so the lifeguard try/ed to reach it.,so the lifeguard tried to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,then he could not.,then he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,the lifeguard girl[!] came : and pick/ed it up with a scooper : and gave it back to the boy.,the lifeguard girl came and picked it up with a scooper and gave it back to the boy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and then (he hug/ed it) : he hug/ed the plane[!].,and then he hugged it he hugged the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,well he[-:] were[EW:was] in the sandbox.,well he were in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and he meant[?] [EU].,and he meant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,(and he) somebody had a sandcastle built up.,and he somebody had a sandcastle built up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and they play/ed together.,and they played together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and he put some sand in a bucket.,and he put some sand in a bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and the other guy touch/ed the castle[-:].,and the other guy touched the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and then the rabbit : put the sand on[!] the castle.,and then the rabbit put the sand on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and then : he got so mad.,and then he got so mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,so then they try/ed to fix it.,so then they tried to fix it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,there [+_bch].,there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,so[-:] : he was on the road somewhere.,so he was on the road somewhere +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and he : put his hand out like[~!_laughing] this.,and he put his hand out like this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and he saw somebody run : down[?] the street.,and he saw somebody run down the street +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and then[-:] : they decide/ed to have a picnic together.,and then they decided to have a picnic together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,one is eat/ing a carrot.,one is eating a carrot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and then he got so[!] full because he ate all the food.,and then he got so full because he ate all the food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and he got so[!] full that : the basket fell over.,and he got so full that the basket fell over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and then his dad came.,and then his dad came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and he is still lay/ing on the carpet.,and he is still laying on the carpet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and then (he) the : child[!] pull|pull[EW:pulled] : the dad/z shirt.,and then he the child pull the dad's shirt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and then he said go[~!_laughing] to your room now.,and then he said go to your room now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,(and then) (he) : (he sna) and then the other guy went home because : the other guy was not really his child.,and then he he sna and then the other guy went home because the other guy was not really his child +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,the other guy was?,the other guy was +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,(re) really not his child [+_bch].,re really not his child +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,so (the) this boy met a girl[-:] : push/ing a wagon with a balloon attach/ed to it.,so the this boy met a girl pushing a wagon with a balloon attached to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and then[-:] they want/ed to play together.,and then they wanted to play together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,(so[-:]) : and then : the boy took the balloon off[!].,so and then the boy took the balloon off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and it float/ed up into the air.,and it floated up into the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and then the girl got angry.,and then the girl got angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,so then another man came by sell/ing balloon/s.,so then another man came by selling balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,so the girl want/ed one.,so the girl wanted one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,so then (he uh) the guy look/ed in his pockets to see if he had any : money.,so then he uh the guy looked in his pockets to see if he had any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,but he did not.,but he did not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,so he had to walk back : and ask somebody else : (to) for some more money.,so he had to walk back and ask somebody else to for some more money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,then he got more money.,then he got more money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/624.slt,and then[-:] (they got another balloon) they each got a balloon.,and then they got another balloon they each got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,the elephant is (talk/ing to the) : talk/ing to a horse.,the elephant is talking to the talking to a horse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,the elephant is push/ing the horse.,the elephant is pushing the horse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,the elephant push/ed : the horse in the water.,the elephant pushed the horse in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,the elephant is help/ing him out.,the elephant is helping him out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,: the elephant *is (ah) : be/ing nice [EU].,the elephant ah being nice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,and that is the end [+_bch].,and that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,the elephant is be/ing nice.,the elephant is being nice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,(elephant) the elephant is go/ing to[:_gonna] jump in the water.,elephant the elephant is going to jump in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,(th) the elephant is run/ing.,th the elephant is running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,the elephant (got a) got an owie.,the elephant got a got an owie +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,the elephant is cry/ing.,the elephant is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,: (uh) the daddy is put/ing a bandaid on it.,uh the daddy is putting a bandaid on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,and she is sit/ing on a bench.,and she is sitting on a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,(uh and she was) (and she is be) and she was just tease/ing.,uh and she was and she is be and she was just teasing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,she was just tease/ing that she had a owie.,she was just teasing that she had a owie +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,the elephant is make/ing funny faces.,the elephant is making funny faces +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,: the elephant is : (uh) : look/ing at the airplane.,the elephant is uh looking at the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,the elephant (s) want/3s to fly it.,the elephant s wants to fly it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,(the elephant is) the elephant is : sink/ing it.,the elephant is the elephant is sinking it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,(the elephant is) and : the elephant is look/ing at : the airplane sink/ing.,the elephant is and the elephant is looking at the airplane sinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,: and (hm) the elephant is : mad.,and hm the elephant is mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,: and (she s) she said to her dad (that) (that) that I sinked|sink[EW:sunk] : his airplane.,and she s she said to her dad that that that I sinked his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,and the dad is try/ing to get it.,and the dad is trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,: and the dad is : put/ing his hands out like this.,and the dad is putting his hands out like this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,(and) (and the ga) (and) (and the fly) : (fly : swatter) [~_child_whispers_swatter] (uh) and she is try/ing to get it with the fly (shw) (ss) swatter : (s) .,and and the ga and and the fly fly swatter uh and she is trying to get it with the fly shw ss swatter s +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,(and) and she got it out for him.,and and she got it out for him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,now the elephant is happy.,now the elephant is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,and that is the end [+_bch].,and that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,(um) they are play/ing in sand.,um they are playing in sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,the rabbit is dig/ing in sand.,the rabbit is digging in sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,the rabbit is : put/ing sand on the sandcastle.,the rabbit is putting sand on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,the rabbit wreck/ed the sandcastle.,the rabbit wrecked the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,: (and) and the : piggy is sad.,and and the piggy is sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,and he is build/ing it back up.,and he is building it back up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,and that the end [+_bch].,and that the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,the rabbit is walk/ing down the : path.,the rabbit is walking down the path +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,(the ra) (they are have/ing a) the pig and the rabbit are have/ing a picnic.,the ra they are having a the pig and the rabbit are having a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,the rabbit is eat/ing candy.,the rabbit is eating candy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,: (the rabbit is) : the rabbit is feel/ing sick.,the rabbit is the rabbit is feeling sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,(and they are gi) (and the) : and the pig has a flower in his hand.,and they are gi and the and the pig has a flower in his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,and the pig is pull/ing (the) the girl bunny/z : hand.,and the pig is pulling the the girl bunny's hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,and the girl bunny hit him on the head.,and the girl bunny hit him on the head +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,and the girl bunny is take/ing him.,and the girl bunny is taking him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,and that is the end [+_bch].,and that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,the rabbit (wr) walk/ing down the path again.,the rabbit wr walking down the path again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,the rabbit is look/ing at the balloon.,the rabbit is looking at the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,(the pig has a f um) the rabbit is untie/ing the balloon.,the pig has a f um the rabbit is untying the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,and the balloon is go/ing up.,and the balloon is going up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,and the pig is get/ing mad at the rabbit.,and the pig is getting mad at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,(and) : and there is another rabbit.,and and there is another rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,and they are go/ing to[:_gonna] go buy another one.,and they are going to go buy another one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,and they are go/ing to [:_gonna] get one.,and they are going to get one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,: and (then they are go/ing to [:_gonna] ge) (go get another one from someone else) then they are go/ing to [:_gonna] go get another one from someone else.,and then they are going to ge go get another one from someone else then they are going to go get another one from someone else +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,and then they got one.,and then they got one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,(and then the) (and then the) (then the gi) (then the girl um) (and) and the rabbit is run/ing to (the girl : bunny) : the girl rabbit.,and then the and then the then the gi then the girl um and and the rabbit is running to the girl bunny the girl rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,(n and) (and then) (and) and he is point/ing to the balloon/s.,n and and then and and he is pointing to the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,(and) and they want another balloon.,and and they want another balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,so they are get/ing : their mom to buy another one.,so they are getting their mom to buy another one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,(and this t) and they got their own this time.,and this t and they got their own this time +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/441.slt,and that is the end [+_bch].,and that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,a girl is bounce/ing (a b) a ball.,a girl is bouncing a b a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,the ball went into the pool.,the ball went into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,the moose went to go get it.,the moose went to go get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,the moose got it and brang|bring[EW:brought] it back.,the moose got it and brang it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,and then he (got out of the pool) got out of the pool.,and then he got out of the pool got out of the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,and the girl was happy.,and the girl was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,(they) they see a pool.,they they see a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,they run to the diving pool.,they run to the diving pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,[~_well] now[!] they are run/ing to the diving pool.,now they are running to the diving pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,"okay so you were thinking about that because you knew what came next, anything else on this page?",okay so you were thinking about that because you knew what came next anything else on this page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,they see the diving board.,they see the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,so they run to the diving board.,so they run to the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,the girl ran so fast : that she slip/ed and hurt her knee.,the girl ran so fast that she slipped and hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,the lifeguard came to see : to give a (bandaid :) bandaid.,the lifeguard came to see to give a bandaid bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,(the) the : moose went to go get him.,the the moose went to go get him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,the lifeguard gave : her a bandaid.,the lifeguard gave her a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,she thought it really hurted|hurt[EW:hurt].,she thought it really hurted +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,and then (the) the lifeguard took : her to the bench.,and then the the lifeguard took her to the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,and then she try/ed touch/ing it.,and then she tried touching it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,and it was better.,and it was better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,and then the lifeguard : point/ed to a sign.,and then the lifeguard pointed to a sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,she look/ed.,she looked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,it said no run/ing.,it said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,the moose[-:] has a plane.,the moose has a plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,they were go/ing to[:_gonna] play with it : at the pool.,they were going to play with it at the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,the moose : (fl fl) made it fly [~_gestures].,the moose fl fl made it fly +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,"okay, you were show/ing me with your hands.",okay you were showing me with your hands +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,and then : the girl took it : away : and threw it.,and then the girl took it away and threw it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,it land/ed in the pool.,it landed in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,the moose got really mad.,the moose got really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,the girl said oopsie/s.,the girl said oopsies +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,the lifeguard came.,the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,she was scare/ed.,she was scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,she told (what) (how :) (um how) how it happen/ed.,she told what how um how how it happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,the lifeguard try/ed to reach it.,the lifeguard tried to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,but he could not.,but he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,the moose cry/ed.,the moose cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,the lifeguard got a net : and got the plane with the net : then pull/ed it out (so sh) so the moose can have it.,the lifeguard got a net and got the plane with the net then pulled it out so sh so the moose can have it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,and then they had fun : later.,and then they had fun later +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,there are two boy/s make/ing a sandcastle.,there are two boys making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,one of them smooth/ed it up.,one of them smoothed it up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,the other one : put sand on it.,the other one put sand on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,since he was get/ing tire/ed of do/ing that he dump/ed the whole pail on.,since he was getting tired of doing that he dumped the whole pail on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,and then the (wh) whole pail cover|cover[EW:covered] most of the : sandcastle.,and then the wh whole pail cover most of the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,one of the boy/s start/ed to cry.,one of the boys started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,two people had a : picnic.,two people had a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,: one of the boy/s (ate) had more[!] than the other one.,one of the boys ate had more than the other one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,(the) (the) one of the boy/s (had : l :) had too much to eat.,the the one of the boys had l had too much to eat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,(he got) he ate a little more.,he got he ate a little more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,and he got dizzy.,and he got dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,(and then) : and then (um a) : the other boy : saw a girl.,and then and then um a the other boy saw a girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,she pull/ed the girl : to the picnic.,she pulled the girl to the picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,: and : (the boy wa) the boy : was not so dizzy any more : because the girl help/ed him.,and the boy wa the boy was not so dizzy any more because the girl helped him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,a boy was pull/ing a wagon with : a balloon on it.,a boy was pulling a wagon with a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,the boy saw the balloon.,the boy saw the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,the boy : was untie/ing the balloon.,the boy was untying the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,the balloon float/ed away.,the balloon floated away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,the other boy got mad at him.,the other boy got mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,(he) so (he) the other boy look/ed up.,he so he the other boy looked up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,and then they saw more balloon/s.,and then they saw more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,so they went to go get one.,so they went to go get one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,(but) but it cost/3s money.,but but it costs money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,and that was this page [+_bch].,and that was this page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,and then the boy check/ed his pocket/s.,and then the boy checked his pockets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,but he did not have : five cent/s.,but he did not have five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,so the man with the balloon/s said no you can not have : one because you do not have any money.,so the man with the balloons said no you can not have one because you do not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,and then a boy found : a girl.,and then a boy found a girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,the boy ask/ed her : nicely if she could buy him : a balloon.,the boy asked her nicely if she could buy him a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,the girl gave him a balloon.,the girl gave him a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/830.slt,they both had a balloon now.,they both had a balloon now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,The : elephant : (and the : ah) [EU].,The elephant and the ah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,the giraffe : (was : uh) saw the elephant was bounce/ing the ball.,the giraffe was uh saw the elephant was bouncing the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and (the :) the ball was on the water.,and the the ball was on the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and giraffe : *was try/ing to get the ball on the water [EU].,and giraffe trying to get the ball on the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and : the giraffe : got it.,and the giraffe got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and : the elephant get|got[EW:got] it.,and the elephant get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the giraffe was wet.,and the giraffe was wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,Once upon a time (a) the elephant and the giraffe was saw the water [EU].,Once upon a time a the elephant and the giraffe was saw the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,(and) and : (ahh : um) the elephant want|want[EW:wanted] to go on the water.,and and ahh um the elephant want to go on the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the elephant go|go[EW:goes] right away to go on the water.,and the elephant go right away to go on the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the elephant slip/ed over (the) the ground [EU].,and the elephant slipped over the the ground +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the elephant got hurt on the knee/s.,and the elephant got hurt on the knees +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the elephant was cry/ing.,and the elephant was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,(and the) and the elephant was put/ing a bandaid on.,and the and the elephant was putting a bandaid on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and (the : elephant was) the elephant was (ahh ahh) mad because it hurt/3s on the knee/s with the bandaid.,and the elephant was the elephant was ahh ahh mad because it hurts on the knees with the bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and they feel better.,and they feel better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and they sit down.,and they sit down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,but the elephant (ahh) : look/ed so mad because (they're) the giraffe and the elephant want to go to the water.,but the elephant ahh looked so mad because they're the giraffe and the elephant want to go to the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,the giraffe and the elephant [EU].,the giraffe and the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,the elephant saw the airplane on the giraffe[EW:giraffe/z] hand.,the elephant saw the airplane on the giraffe hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the : elephant : (was) saw the airplane was fly/ing.,and the elephant was saw the airplane was flying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the giraffe was : stand/ing (uh) with the airplane.,and the giraffe was standing uh with the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the elephant take|take[EW:took] away from the giraffe[EW:giraffe/z] airplane [EU].,and the elephant take away from the giraffe airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the elephant want|want[EW:wanted] to see it.,and the elephant want to see it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the elephant drop|drop[EW:dropped] it in the water.,and the elephant drop it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the giraffe was very angry.,and the giraffe was very angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and (the elephant and the giraffe was saw the) the other elephant was saw the airplane in the water [EU].,and the elephant and the giraffe was saw the the other elephant was saw the airplane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and : (the) the elephant was (uh) say[EW:saying] (the) she was dropped[EW:dropping] the airplane in the water.,and the the elephant was uh say the she was dropped the airplane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and (the : uh) the elephant *was try/ing to go get (the) the airplane [EU].,and the uh the elephant trying to go get the the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and he can not get it.,and he can not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,: but (: uh) the giraffe was cry/ing with the airplane.,but uh the giraffe was crying with the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and : (the) then the other (uh) elephant will get the airplane with : that thing (to) for the fish.,and the then the other uh elephant will get the airplane with that thing to for the fish +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and (she) the elephant *was try/ing to get it [EU].,and she the elephant trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,but : it is too hard to get it.,but it is too hard to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,but : she get|get[EW:got] it.,but she get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,the elephant got it now.,the elephant got it now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the (uh) giraffe was happy.,and the uh giraffe was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and : the elephant and the giraffe was[EW:were] happy too.,and the elephant and the giraffe was happy too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,the bunny and (the) : the dog [EU].,the bunny and the the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,the dog was make/ing a sandcastle.,the dog was making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the rabbit want|want[EW:wanted] to help the dog.,and the rabbit want to help the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the rabbit : was make/ing a sandcastle.,and the rabbit was making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the dog *was all finish[EW:finished] [EU].,and the dog all finish +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the rabbit : was try/ing to put the sand on the castle.,and the rabbit was trying to put the sand on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the dog : was so scare/ed.,and the dog was so scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,(the) the rabbit *was try/ing to put : the sand on the castle [EU].,the the rabbit trying to put the sand on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and there is breaked|break[EW:broke] (the) the sandcastle [EU].,and there is breaked the the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the dog was cry/ing.,and the dog was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the rabbit was so sorry : breaked|break[EW:broke] the sandcastle [EU].,and the rabbit was so sorry breaked the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,The dog and the rabbit was[EW:were] go/ing to the picnic.,The dog and the rabbit was going to the picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and : the rabbit was have[EW:having] the carrot and some hot_dog/s and some cake : and some sandwich/s.,and the rabbit was have the carrot and some hot dogs and some cake and some sandwiches +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the rabbit got[EW:had] too much to eat.,and the rabbit got too much to eat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the rabbit got a (st) stomachache.,and the rabbit got a st stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and he is get/ing so fat.,and he is getting so fat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and : the doctor was came[EW:coming] and saw the rabbit.,and the doctor was came and saw the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,(the) and the dog try/ed to get the doctor.,the and the dog tried to get the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the doctor was : come/ing : and saw the rabbit there.,and the doctor was coming and saw the rabbit there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the rabbit was so : have a stomachache [EU].,and the rabbit was so have a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and he *was feel/ing right sick [EU].,and he feeling right sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the rabbit go|go[EW:went] home.,and the rabbit go home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and he felt better.,and he felt better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,(The dog and the bal) the dog and the bunny was[EW:were] saw (the balloon) the color pink balloon [EU].,The dog and the bal the dog and the bunny was saw the balloon the color pink balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,(and) : and the rabbit went to see the balloon.,and and the rabbit went to see the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and he *was try/ing to take it off for the dog [EU].,and he trying to take it off for the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and (is) is float/ing away : from the dog [EU].,and is is floating away from the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the dog was right angry because : the bunny was : let go of the balloon [EU].,and the dog was right angry because the bunny was let go of the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and : the dog : and the rabbit saw lot/s of balloon/s there.,and the dog and the rabbit saw lots of balloons there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,"pink, green and orange and blue and purple, white and : gold.",pink green and orange and blue and purple white and gold +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and : the rabbit choosed|choose[EW:chose] the : blue one.,and the rabbit choosed the blue one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,(and that) and : (the) (the nother) : the another[EW:other] (uh) rabbit was right angry because that is number five.,and that and the the nother the another uh rabbit was right angry because that is number five +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,so the rabbit and the dog want to pick the balloon.,so the rabbit and the dog want to pick the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,but : the doctor *was there because : the dog was sick [EU].,but the doctor there because the dog was sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and (the) the doctor saw the dog was sick.,and the the doctor saw the dog was sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and (he has got some) the doctor got[EW:has] some monies[EW:money] for the dog and the rabbit for the balloon/s.,and he has got some the doctor got some monies for the dog and the rabbit for the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the dog got the color the gold balloon [EU].,and the dog got the color the gold balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,and the rabbit got the color the blue balloon [EU].,and the rabbit got the color the blue balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/607.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,the : elephant was play/ing with his ball.,the elephant was playing with his ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,then he threw it in the : pool.,then he threw it in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,then : the giraffe : catch|catch[EW:caught] the ball and : throwed|throw[EW:threw] it to the elephant.,then the giraffe catch the ball and throwed it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,and : he pick|pick[EW:picked] it up[?].,and he pick it up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,xxx.,x +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,"okay, what did you say?",okay what did you say +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,[~_grunts]., +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,they : want to go in the pool.,they want to go in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,he was run/ing.,he was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,then he slip/ed.,then he slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,then : hurt his knee [EU].,then hurt his knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,then he cry/ed.,then he cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,what is that?,what is that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,then the lifeguard : go [EU].,then the lifeguard go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,and he close/ed his eye/s.,and he closed his eyes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,and : it (hur) hurt.,and it hur hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,then : (uh) : the lifeguard told him that (he) it say/3s no run/ing.,then uh the lifeguard told him that he it says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,the elephant look/ed at the : giraffe : play/ing.,the elephant looked at the giraffe playing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,then he play/ed with it.,then he played with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,then he grab/ed it.,then he grabbed it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,then he throw : into the deep : pool[?] [EU].,then he throw into the deep pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,and the : giraffe : been angry [EU].,and the giraffe been angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,and the lifeguard : came.,and the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,(he) and he told : him : that he throwed|throw[EW:threw] (um) : the giraffe[EW:giraffe's] : plane into the deep.,he and he told him that he throwed um the giraffe plane into the deep +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,he try/ed to grab it.,he tried to grab it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,but he can not.,but he can not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,and there was xx daddy[?].,and there was daddy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,he get|get[EW:got] the : plane.,he get the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,and he catched|catch[EW:caught] it.,and he catched it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,and he bring|bring[EW:brought] it : back to the giraffe.,and he bring it back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,and he : hug/ed it tight to the xx.,and he hugged it tight to the +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,the bunny and the dog are make/ing a (castle) castle.,the bunny and the dog are making a castle castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,the bunny : put : sand in his bucket.,the bunny put sand in his bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,and he dump|dump[EW:dumped] : it all.,and he dump it all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,and he : wreck|wreck[EW:wrecked] : the dog/z castle.,and he wreck the dog's castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,(mm : he) (he) : he pretend/ed (to) he did it to xx him.,mm he he he pretended to he did it to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,the dog and the bunny (went) go/ing for a picnic [EU].,the dog and the bunny went going for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,the bunny : ate some food.,the bunny ate some food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,and : he ate some more.,and he ate some more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,and then he has a stomachache.,and then he has a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,then : the dog got by the doctor [EU].,then the dog got by the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,and he grab/ed him.,and he grabbed him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,and : (he : uh) : he told the dog that he has a stomachache [EU].,and he uh he told the dog that he has a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,and then : they came.,and then they came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,the dog and the (b) bunny went to see the bunny.,the dog and the b bunny went to see the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,(the) the bunny (see) he : see/3s : the dog[?].,the the bunny see he sees the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,then : he : tie/ed up the balloon.,then he tied up the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,and the balloon : went up.,and the balloon went up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,and the dog got angry.,and the dog got angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,then : the bunny losed|lose[EW:lost] it.,then the bunny losed it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,he talk the mom : to give him the balloon [EU].,he talk the mom to give him the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,but he do|do[EW:does] not have money.,but he do not have money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,(the) : (the) : the bunny and the dog have no money.,the the the bunny and the dog have no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,they : come : to go : to him [EU].,they come to go to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,and then (the dog) [~_no] the bunny goed|go[EW:went] xx xx xx.,and then the dog the bunny goed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/778.slt,and he gave : both balloon/s : to them : bunny and the dog.,and he gave both balloons to them bunny and the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,(um) : the donkey want/ed to play (uh with) with another animal with his ball/s.,um the donkey wanted to play uh with with another animal with his balls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,(um : they) they went to the swim[EW:swimming] pool.,um they they went to the swim pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and (they) they found a friend.,and they they found a friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and he jump/ed in the : water and splash/ed the elephant by accident.,and he jumped in the water and splashed the elephant by accident +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and the elephant pick/ed the ball up.,and the elephant picked the ball up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and the giraffe ask/ed if he could have it.,and the giraffe asked if he could have it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and he came out with his : cloth/s on.,and he came out with his cloths on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,(um) they went back to the swimming : pool and did not want to go into the water.,um they went back to the swimming pool and did not want to go into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,the elephant want/ed to go in the water.,the elephant wanted to go in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,but the giraffe did not.,but the giraffe did not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,(um) the elephant : ask/ed if he could race the : giraffe to the diving board.,um the elephant asked if he could race the giraffe to the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,but : the elephant trip/ed (and) and fell and hurt her knee.,but the elephant tripped and and fell and hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and : the swimming : person check/ed if he was okay : and put the bandaid on her.,and the swimming person checked if he was okay and put the bandaid on her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and she feeled|feel[EW:felt] all better.,and she feeled all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and she stay/ed there so she could get better.,and she stayed there so she could get better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,(um) the : giraffe throwed|throw[EW:threw] his airplane.,um the giraffe throwed his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and it flew.,and it flew +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,(but) but by accident he (th) threw it too soft.,but but by accident he th threw it too soft +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and it fell in the water.,and it fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and : he try/ed to get it out.,and he tried to get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,(but he) and he did.,but he and he did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and without ask/ing : the elephant grab/ed the airplane away from him because she want/ed to play with it.,and without asking the elephant grabbed the airplane away from him because she wanted to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,(and because they was grab/ing) they grab/ed.,and because they was grabbing they grabbed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and it fell in the water.,and it fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and the giraffe was angry at the elephant because she : throwed|throw[EW:threw] it in by accident.,and the giraffe was angry at the elephant because she throwed it in by accident +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,the lifeguard was mad because : they throwed|throw[EW:threw] it in.,the lifeguard was mad because they throwed it in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and toy/s was[EW:were] not suppose/ed to be in the water.,and toys was not supposed to be in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and the elephant : said look what I did.,and the elephant said look what I did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,it was by accident.,it was by accident +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and the lifeguard try/ed to pick it up.,and the lifeguard tried to pick it up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,but he could not.,but he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,the lifeguard could not.,the lifeguard could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,so he just got up.,so he just got up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and he had an (ide) a plan.,and he had an ide a plan +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,(he) : but : he did not.,he but he did not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,his wife took : (um) : a stick with a rope (on the ss) on the front.,his wife took um a stick with a rope on the ss on the front +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and he catched|catch[EW:caught] it out.,and he catched it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,(he try/ed to) she try/ed to catch it out.,he tried to she tried to catch it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,(an) but she could not.,an but she could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and she did.,and she did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and she gave it back to the (el) giraffe.,and she gave it back to the el giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and now he was proud : of : the girl because : she got his plane back.,and now he was proud of the girl because she got his plane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,the bunny said hi to : the dog.,the bunny said hi to the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and the dog was make/ing a sandcastle.,and the dog was making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and the bunny want/ed to help.,and the bunny wanted to help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,but the dog said yes.,but the dog said yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and they start/ed build/ing a sandcastle.,and they started building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and then : the bunny dump/ed a bucket.,and then the bunny dumped a bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,(and it) (and it) and the : castle fell down.,and it and it and the castle fell down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and the dog was : mad at the bunny.,and the dog was mad at the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and the bunny was : sorry because he knock/ed the sandcastle down.,and the bunny was sorry because he knocked the sandcastle down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,(and then they builded|build[EW:built] it all) : and then the dog builded|build[EW:built] it all up and *was cry/ing [EU].,and then they builded it all and then the dog builded it all up and crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,the dog said hi again to the : bunny.,the dog said hi again to the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,the bunny was race/ing down with a basket of food.,the bunny was racing down with a basket of food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,so was the dog.,so was the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and when they got : there they : unpack/ed the food.,and when they got there they unpacked the food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and they start/ed eat/ing.,and they started eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and the bunny[EW:bunny/z]: tummy hurted|hurt[EW:hurt].,and the bunny tummy hurted +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and he was sick of the food.,and he was sick of the food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and the dog race/ed to the doctor and said doctor doctor can you help?,and the dog raced to the doctor and said doctor doctor can you help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,(my bun) my friend bunny is sick.,my bun my friend bunny is sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,Doctor doctor come on [~_announcement_interruption_from_the_school].,Doctor doctor come on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,come on doctor.,come on doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,come on.,come on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,my friend bunny is really sick because he eat|eat[EW:ate] so much food.,my friend bunny is really sick because he eat so much food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,okay okay.,okay okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,he took his temperature.,he took his temperature +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and he was (sick) sick.,and he was sick sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,(and) and then he check/ed the bunny again.,and and then he checked the bunny again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and he was all better.,and he was all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,the dog said hi again.,the dog said hi again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and the bunny want/ed the balloon and said where did you get that from?,and the bunny wanted the balloon and said where did you get that from +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,I want that balloon right now.,I want that balloon right now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and he untie/ed it from : the wagon.,and he untied it from the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and it start/ed (float) float/ing off the wagon.,and it started float floating off the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and the dog was mad at the bunny because he untie/ed it.,and the dog was mad at the bunny because he untied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and he want/ed it.,and he wanted it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and then the bunny had a great idea.,and then the bunny had a great idea +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,he can go over to the balloon man to buy another balloon.,he can go over to the balloon man to buy another balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and they ask/ed : could we have two balloon/s please?,and they asked could we have two balloons please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,(and uh) and (it cost/ed) it costed|cost[EW:cost] five dollar/s.,and uh and it cost it costed five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,(and he had) he did not have any money in his pocket.,and he had he did not have any money in his pocket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,so he could not get a balloon.,so he could not get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and they said please.,and they said please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,but no only for five dollar/s.,but no only for five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,doctor can you help us?,doctor can you help us +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,(can we have five) could we have : five dollar/s for both of us so we can have a balloon?,can we have five could we have five dollars for both of us so we can have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,he said : okay you can have balloon.,he said okay you can have balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,(I) (I do not) we do not have any money in : our pocket/s.,I I do not we do not have any money in our pockets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,so please can you give us five dollar/s?,so please can you give us five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,so they gived|give[EW:gave] him five dollar/s for both of : us[EW:them].,so they gived him five dollars for both of us +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and then they got the two leftover balloon/s.,and then they got the two leftover balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and then they was[EW:were] proud of the doctor because : they got a balloon.,and then they was proud of the doctor because they got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and the bunny said sorry to : the dog because : (he uh) he want/ed the balloon.,and the bunny said sorry to the dog because he uh he wanted the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,and he untie/ed it.,and he untied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/550.slt,so he said sorry.,so he said sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,"Play ball [~_sentence_stress_on_""ball""].",Play ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and : he take/ing swimming pool [EU].,and he taking swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and he get[EW:got] it.,and he get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and thank you[-:].,and thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and welcome[?] (uh)[?] [EU].,and welcome uh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and over [+_bch].,and over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,Play swim/ing [EU].,Play swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and go[EW:goes] in it [EU].,and go in it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,(and) and run [EU].,and and run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and walk on knee [EU].,and walk on knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and her[EW:she] cry[EW:cried] : and cry[EW:cried] lot/s.,and her cry and cry lots +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and sit on bench [EU].,and sit on bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and stay here [EU].,and stay here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,the what?,the what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and stay on *the bench [EU].,and stay on bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,over [+_bch].,over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,Play!,Play +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,play?,play +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,play a[!] play [EU].,play a play +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and play a play again [EU].,and play a play again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and play it (in) in water [EU].,and play it in in water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and : it *is angry [EU].,and it angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and : say : bad [EU].,and say bad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and : dad [EU].,and dad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,what is that?,what is that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,daddy [+_bch].,daddy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,I play[EW:played] in *the pool [EU].,I play in pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and (they are get it) (get[!] it) : I am get[EW:getting][!] it.,and they are get it get it I am get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,look/ing [EU].,looking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and get[EW:got] it [EU].,and get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and : it in there [EU].,and it in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,I get[EW:got][!] it.,I get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,you get[!] it.,you get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and : (loff/ed it) [~_EXA:_and_what] love/ed it [EU].,and loffed it loved it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,lov/ed it [EU].,loved it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,He play[EW:played] (on s) in *the sand [EU].,He play on s in sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and play make castle [EU].,and play make castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and dump[EW:dumped] it [EU].,and dump it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and what?,and what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,dump it [+_bch].,dump it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,oh no.,oh no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,oops sorry.,oops sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and cry[EW:cried] [EU].,and cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,uhoh.,uhoh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,They go picnic [EU].,They go picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and eat [EU].,and eat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and they drinks[EW:drink] juice.,and they drinks juice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and hungry [EU].,and hungry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and : (that girl : her tummy) that man *is sick [EU].,and that girl her tummy that man sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,she what?,she what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,sick [+_bch].,sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and : a bunny : his[?] : tummy hurt/3s.,and a bunny his tummy hurts +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and turn that [+_bch].,and turn that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and : go *to doctor/z house [EU].,and go doctor's house +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,he what?,he what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,doctor [+_bch].,doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,all done [+_bch].,all done +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,her[EW:she] play[EW:played].,her play +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and : hold that up higher [EU].,and hold that up higher +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,tie it up [EU].,tie it up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and up higher [EU].,and up higher +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and up clouds [EU].,and up clouds +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,angry [EU].,angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and : man[!] [EU].,and man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,: what?,what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,man balloon/s on it [EU].,man balloons on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,(him) : him[EW:he] take[EW:took] one.,him him take one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,(and) and xxx.,and and x +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and bring[?] doctor here and check [EU].,and bring doctor here and check +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and talk [EU].,and talk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and money [EU].,and money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and balloon [EU].,and balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and two balloon/s [EU].,and two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/413.slt,and over [+_bch].,and over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,there are these two kid/s.,there are these two kids +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,one has a ball[-:].,one has a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and she is bounce/ing it really fast : by a pool[-:].,and she is bouncing it really fast by a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and the ball fall/3s in[-:].,and the ball falls in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,so the other kid jump/3s in and swim/3s to the ball.,so the other kid jumps in and swims to the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and he get/3s it for her : and then : climb/3s out.,and he gets it for her and then climbs out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,there is[EW:are] these two kid/s[-:].,there is these two kids +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and they are look/ing at the water.,and they are looking at the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and : one of the kid/s : say/3s that there is a diving board.,and one of the kids says that there is a diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and it look/3s like fun.,and it looks like fun +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and the kid who said that the diving board look/3s fun run/3s : and[-:] : slip/3s and hurt/3s her knee.,and the kid who said that the diving board looks fun runs and slips and hurts her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and the lifeguard come/3s : and : put/3s a bandaid on : the hurt spot : and[-:] put/3s her on a bench : and show/3s her the sign no run/ing.,and the lifeguard comes and puts a bandaid on the hurt spot and puts her on a bench and shows her the sign no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,there is[EW:are] these two kid/s.,there is these two kids +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,one has an airplane.,one has an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and he : play/3s : with it.,and he plays with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and the other one : take/3s his airplane away : and accidentally drop/3s it in : the pool.,and the other one takes his airplane away and accidentally drops it in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and the other kid is really mad at her.,and the other kid is really mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,(so she go get/3s) so she get/3s a lifeguard.,so she go gets so she gets a lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and : she ask/3s him : if he could try and get the plane out.,and she asks him if he could try and get the plane out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and he try/3s.,and he tries +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,but he can not reach it.,but he can not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and he do/3s not know what to do.,and he does not know what to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and then : this lifeguard with : a net come/3s : and fish/3s it out : and give/3s it back to the kid.,and then this lifeguard with a net comes and fishes it out and gives it back to the kid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and the kid was really happy to have his airplane back.,and the kid was really happy to have his airplane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,(um) these two kid/3s (um) are go/ing to build a sandcastle.,um these two kids um are going to build a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and they start build/ing.,and they start building +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and : then one of the kid (um) dump/*3s sand on it.,and then one of the kid um dump sand on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and[-:] then it is all flat.,and then it is all flat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and then the other kid cry/3s because it is broken.,and then the other kid cries because it is broken +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,that is kind of [~_kinda] dumb.,that is kind of dumb +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,these two kid/s are going to go for a picnic.,these two kids are going to go for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and : the first kid took (um) all this unhealthy stuff.,and the first kid took um all this unhealthy stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and he start/3s eating.,and he starts eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and : he : get/3s all sick.,and he gets all sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and : the other one : he get/3s all dizzy.,and the other one he gets all dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and the : other kid run/3s and get/3s (s) the doctor.,and the other kid runs and gets s the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and : the other one pull/3s the doctor to him.,and the other one pulls the doctor to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and : then he : check/3s him out.,and then he checks him out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and : then he say/3s that he is go/ing to give him a checkup.,and then he says that he is going to give him a checkup +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,(um) : there is[EW:are] these two kid/s.,um there is these two kids +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,one of them come/3s up (and) and say/3s hi.,one of them comes up and and says hi +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and he see/3s the other : one/z balloon.,and he sees the other one's balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and then he start/3s take/ing : it off the wagon.,and then he starts taking it off the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,(and) : and the other kid is yell/ing.,and and the other kid is yelling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and then he accidentally let/3s go.,and then he accidentally lets go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and the other kid is really mad.,and the other kid is really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,so he see/3s a[-:] guy that is sell/ing balloon/s.,so he sees a guy that is selling balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and he ask/3s if he could have a balloon.,and he asks if he could have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and then : the guy show/3s him that the balloon/s are five cent/s.,and then the guy shows him that the balloons are five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and he do/3s not have five cent/s.,and he does not have five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,so he : go/3s to his grandma : and ask/3s if he could have a balloon.,so he goes to his grandma and asks if he could have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,and she say/3s yes.,and she says yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/750.slt,so they both get a balloon.,so they both get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,One day a giraffe saw : her friend the elephant play/ing with a ball.,One day a giraffe saw her friend the elephant playing with a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,(gira) the giraffe took[!] the ball and threw it (in the po) in a pool nearby.,gira the giraffe took the ball and threw it in the po in a pool nearby +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the elephant was scare/ed the ball might : sink.,the elephant was scared the ball might sink +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,so the giraffe went to get the ball.,so the giraffe went to get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the giraffe got the ball for the elephant.,the giraffe got the ball for the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,and the elephant was happy.,and the elephant was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,then the elephant thank/ed the giraffe.,then the elephant thanked the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,One day the giraffe and the elephant were at the pool.,One day the giraffe and the elephant were at the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the elephant said let us go off the diving board.,the elephant said let us go off the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the : elephant ran.,the elephant ran +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,and so did the giraffe.,and so did the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the elephant fell (and) and hurt her knee.,the elephant fell and and hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the lifeguard came and help/ed her.,the lifeguard came and helped her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,he put a bandaid on the elephant while the giraffe watch/ed.,he put a bandaid on the elephant while the giraffe watched +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the lifeguard told the elephant : not to run in the pool.,the lifeguard told the elephant not to run in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,or she might slip.,or she might slip +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,so the elephant sat down [~_coughs] and did not run.,so the elephant sat down and did not run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,One day (in) the elephant and the giraffe were at the pool.,One day in the elephant and the giraffe were at the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the giraffe had (a) (a) a little plane.,the giraffe had a a a little plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the giraffe play/ed with the plane.,the giraffe played with the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,he did loop/s and swirl/s and (s) thing/s like that.,he did loops and swirls and s things like that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,then the elephant took the plane and try/ed to play with it.,then the elephant took the plane and tried to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the elephant drop/ed the plane into the water.,the elephant dropped the plane into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the giraffe got furious.,the giraffe got furious +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,(and the ele) and the elephant got scare/ed.,and the ele and the elephant got scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,then the lifeguard came.,then the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the elephant told the lifeguard that she was play/ing with the plane.,the elephant told the lifeguard that she was playing with the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,but she drop/ed it in the pool.,but she dropped it in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the lifeguard try/ed to get it.,the lifeguard tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,he said he could not reach it.,he said he could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,and the : giraffe start/ed cry/ing.,and the giraffe started crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,then a woman came with a net.,then a woman came with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,(she took the net and) : she took the net and : took the plane out.,she took the net and she took the net and took the plane out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the boy was really happy and thank/ed (the ele) the woman.,the boy was really happy and thanked the ele the woman +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the boy got his plane back.,the boy got his plane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,and he was really happy.,and he was really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,and so was the elephant.,and so was the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,one day two rabbit/s were play/ing in the sandbox.,one day two rabbits were playing in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,one rabbit was dig/ing out some sand.,one rabbit was digging out some sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the other one was make/ing : a sandcastle.,the other one was making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the rabbit pour/ed the sand in the bucket on the sandcastle.,the rabbit poured the sand in the bucket on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,(the rabbit got conf) : the rabbit pour/ed on the sand.,the rabbit got conf the rabbit poured on the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,and : I can not make this one : (um) (uh) [+_bch].,and I can not make this one um uh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,: just tell me what is happen/ing.,just tell me what is happening +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the rabbit is like scare/ed because then the other : rabbit might : get mad at him.,the rabbit is like scared because then the other rabbit might get mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the[-:] dog or rabbit : start/ed to cry.,the dog or rabbit started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,and the rabbit just stood there.,and the rabbit just stood there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,one day two friend/s met to go to a picnic.,one day two friends met to go to a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,one friend kept on eat/ing and eat/ing (and : got) : and : (keep) kept on eat/ing and eat/ing and got really full.,one friend kept on eating and eating and got and keep kept on eating and eating and got really full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,by the time he finish/ed he was really stuff/ed.,by the time he finished he was really stuffed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the other friend : just drank some juice and some bread.,the other friend just drank some juice and some bread +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,(w) when the other friend found the doctor who was in the park : (h) he went to get him to see if there was anything wrong with : her friend.,w when the other friend found the doctor who was in the park h he went to get him to see if there was anything wrong with her friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,she beg/ed the doctor to come.,she begged the doctor to come +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,(so she did) so the doctor came.,so she did so the doctor came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the doctor check/ed the rabbit.,the doctor checked the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,and : it seem/ed that he had a stomachache.,and it seemed that he had a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the doctor told the rabbit : to not eat too much junk food.,the doctor told the rabbit to not eat too much junk food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,so the rabbit did not get much of a stomachache.,so the rabbit did not get much of a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,one day (a) : the rabbit met : his friend the dog : which had a wagon and a balloon.,one day a the rabbit met his friend the dog which had a wagon and a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the rabbit like/ed the balloon.,the rabbit liked the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,so he point/ed to it.,so he pointed to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the rabbit untie/ed the balloon.,the rabbit untied the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,and the dog just stood there with surprise.,and the dog just stood there with surprise +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,(so) and then the balloon flew away.,so and then the balloon flew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the dog got mad at the rabbit.,the dog got mad at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,then[!] the two (s) saw a man hold/ing a bunch[!] of balloon/s.,then the two s saw a man holding a bunch of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the rabbit ask/ed for : another balloon.,the rabbit asked for another balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the man told him it was five cent/s.,the man told him it was five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,but the rabbit did not have any money.,but the rabbit did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,then the other[!] friend came.,then the other friend came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the rabbit went to see : his mom.,the rabbit went to see his mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,(and s) : and (the) his friend watch/ed him as he walk/ed to his mom.,and s and the his friend watched him as he walked to his mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,he told his mom he want/ed a balloon.,he told his mom he wanted a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,the man : gave two balloon/s (to the) to the two friend/s.,the man gave two balloons to the to the two friends +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,and the mom paid : the money.,and the mom paid the money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/911.slt,(they) the two friend/s thank/ed (their) the mom.,they the two friends thanked their the mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,(um) : let us play boy/s!,um let us play boys +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,the ball went in the water!,the ball went in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,I got[EW:have] to swim[!] and get it.,I got to swim and get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,[~_high_pitched_voice] I got another ball to swim with it!,I got another ball to swim with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,and I am play/ing with it.,and I am playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,aaah[~!_sighing] I am all wet.,aaah I am all wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,the end[~!_laughing] [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,let us swim.,let us swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,I am jump/ing in the water!,I am jumping in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,let us run.,let us run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,ow[-:].,ow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,: are you okay!,are you okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,and it hurt/3s.,and it hurts +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,I[!] need a bandaid.,I need a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,it is : still hurt/ing.,it is still hurting +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,I got[EW:have] to go to the doctor.,I got to go to the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,the end [+_bch]!,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,pig/s do like this [~_makes_snorting_sound] [~_laughs] [+_bch].,pigs do like this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,let us swim!,let us swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,I am cry/ing[!].,I am crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,I found a[EW:an] airplane.,I found a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,[~_makes_creaky_voice_sound] : give me that airplane!,give me that airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,[~_hhh] my airplane[-:]!,my airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,oh do not be angry at me!,oh do not be angry at me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,let us get it!,let us get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,oh we got it!,oh we got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,I got it in right.,I got it in right +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,he *is get/ing out of the water [EU].,he getting out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,no[-:] !,no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,okay let us catch it!,okay let us catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,I got it!,I got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,: thank you.,thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,my favourite airplane.,my favourite airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,(um) you play in the sandpack.,um you play in the sandpack +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,(you dig a) : you put the sand in the : bucket.,you dig a you put the sand in the bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,and you dump it on the castle[-:] .,and you dump it on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,and (then) : (then um) : (then) then the castle broke.,and then then um then then the castle broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,and then the xx cried[~!_laughing].,and then the cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,the[!] end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,he is walk/ing.,he is walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,and then : he say/3s hi.,and then he says hi +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,he[-:] : eat/3s his sandwich with a carrot.,he eats his sandwich with a carrot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,and he : drink/3s his juice.,and he drinks his juice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,and he cry/3s[-:].,and he cries +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,(um) : I am : thirsty.,um I am thirsty +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,you stole it.,you stole it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,I said it!,I said it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,you stole it[~!_laughing].,you stole it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,I do not know that page [+_bch].,I do not know that page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,should we try the next page?,should we try the next page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,he cry/3s[-:].,he cries +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,goodbye.,goodbye +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,(um) : here is a balloon.,um here is a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,(um) I am run/ing around!,um I am running around +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,my balloon/s [EU].,my balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,do not take it off!,do not take it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,ah[-:] the balloon : it is fly/ing!,ah the balloon it is flying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,aw the balloon is broken!,aw the balloon is broken +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,there is[EW:are] (a lots balloons) lots of balloon/s.,there is a lots balloons lots of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,I[!] want a balloon.,I want a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,I only have one.,I only have one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,oh there is[EW:are] a lot of balloon/s.,oh there is a lot of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,ah[~!_whispering].,ah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,I[!] want some balloon/s.,I want some balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,where can we put the balloon?,where can we put the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,but our balloon is broken.,but our balloon is broken +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,let us have another balloon.,let us have another balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,and : we got[EW:have] two.,and we got two +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,let us have it!,let us have it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,we got[EW:have][!] : two.,we got two +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/458.slt,that kind [EU].,that kind +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,(the dog) [~_no] the giraffe and the elephant [EU].,the dog the giraffe and the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,the elephant was play/ing basketball with the giraffe.,the elephant was playing basketball with the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and then : the (do) elephant throw|throw[EW:threw] the basketball in the water.,and then the do elephant throw the basketball in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,the giraffe try/ed to save the (balloon) [~_no] ball.,the giraffe tried to save the balloon ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and the giraffe said here you go.,and the giraffe said here you go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,here is the (balloon) [~_no] ball.,here is the balloon ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and now the elephant/s have the ball.,and now the elephants have the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,a giraffe and a[EW:an] elephant : was[EW:were] go/ing swim/ing.,a giraffe and a elephant was going swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and the elephant said I am go/ing on the diving board.,and the elephant said I am going on the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and then : the elephant hurt/3s her foot.,and then the elephant hurts her foot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and she slip/ed.,and she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and[-:] she break|break[EW:broke] her foot.,and she break her foot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,(and) and then the giraffe came : to save her.,and and then the giraffe came to save her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and then the swimming teacher came.,and then the swimming teacher came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and then (the s) (s) the swimming teacher give|give[EW:gave] her a bandaid.,and then the s s the swimming teacher give her a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and the swimming teacher : gave her a bandaid.,and the swimming teacher gave her a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,(and then) and then the elephant said thank you for the bandaid.,and then and then the elephant said thank you for the bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and the teacher said no run/ing.,and the teacher said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,said oopsie [EU].,said oopsie +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,the giraffe is play/ing (wi) with his helicopter.,the giraffe is playing wi with his helicopter +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,(eh eh) and the elephant (wa) want|want[EW:wanted] to play (with) with it too.,eh eh and the elephant wa want to play with with it too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and the giraffe play/ed with his helicopter.,and the giraffe played with his helicopter +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and then[-:] the elephant take|take[Ew:took] it away from him.,and then the elephant take it away from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and then the elephant drop|drop[EW:dropped] it in the water.,and then the elephant drop it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and (the elephant was mad) [~_no] the giraffe was mad.,and the elephant was mad the giraffe was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and the swimming teacher was (to) to look at the helicopter [EU].,and the swimming teacher was to to look at the helicopter +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,(and then) and then (this) (the[-:]) the elephant said : that the airplane is in the water.,and then and then this the the elephant said that the airplane is in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and then the swimming teacher is try/ing to save the airplane : in the water.,and then the swimming teacher is trying to save the airplane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and (the) (the) the swimming teacher said I can not catch the airplane.,and the the the swimming teacher said I can not catch the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,(and then the) (an) and then the giraffe was cry/ing.,and then the an and then the giraffe was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and then (a) a swimming (eh) elephant : was came[EW:coming] (to) : to rescue the : airplane.,and then a a swimming eh elephant was came to to rescue the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,(and then) and then she save/ed the airplane.,and then and then she saved the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and she said here you go : giraffe.,and she said here you go giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,here is the airplane.,here is the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,(and) and then (the) the giraffe was happy.,and and then the the giraffe was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,(the bo) the dog (and) (and the) and the bunny want to build a castle.,the bo the dog and and the and the bunny want to build a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,first : the rabbit : take/3s the sand in the bucket.,first the rabbit takes the sand in the bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,(then) : and then the rabbit taked|take[EW:took] the sand the castle [EU].,then and then the rabbit taked the sand the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and the dog is (s) scare/ed[~!_laughs].,and the dog is s scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and then[-:] : (the ra) the rabbit is scare/ed (be) because[?] the rabbit break|break[EW:broke] the castle.,and then the ra the rabbit is scared be because the rabbit break the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and then the dog try/ed to (fix) fix the castle.,and then the dog tried to fix fix the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,the rabbit and the dog went (F) : for a picnic.,the rabbit and the dog went F for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and then : the rabbit (i) is eat/ing (his) her lunch.,and then the rabbit i is eating his her lunch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and the dog (is) (is) is eat/ing his[!] lunch.,and the dog is is is eating his lunch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,(and) and : because the rabbit have|have[EW:has] too much lunch now rabbit have|have[EW:has] a tummyache.,and and because the rabbit have too much lunch now rabbit have a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,but the dog do|do[EW:does] not.,but the dog do not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and the dog (only ha) only have|have[EW:has] : some[!] lunch.,and the dog only ha only have some lunch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and the dog say/3s huh?,and the dog says huh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,the rabbit (is) have|have[EW:has] a tummyache : (and now) : because the dog : did not eat too much.,the rabbit is have a tummyache and now because the dog did not eat too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,only the rabbit did.,only the rabbit did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and the dog said mama!,and the dog said mama +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and mommy [EU].,and mommy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,but the rabbit/z mommy[~!_laughs] [EU].,but the rabbit's mommy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and he said this : hey mommy.,and he said this hey mommy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,here is a dog [~_laughing].,here is a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,he said huh?,he said huh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,that is not my children[EW:child].,that is not my children +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and (she said) she said : I do not know rabbit.,and she said she said I do not know rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,I am a doctor!,I am a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,(and now : the rabbit has gone) and the rabbit go|go[EW:goes] home except the dog.,and now the rabbit has gone and the rabbit go home except the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,the dog has (a) a dragon.,the dog has a a dragon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and the balloon is hold[EW:holding] up the dragon.,and the balloon is hold up the dragon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and then the rabbit came : with him.,and then the rabbit came with him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,(and then) and then the rabbit found the balloon.,and then and then the rabbit found the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and then the rabbit *is go/ing to take it off [EU].,and then the rabbit going to take it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,(and) (and) and the rabbit : take|take[EW:took] it off.,and and and the rabbit take it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,(and) and it float|float[EW:floated] up to the sky.,and and it float up to the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and the rabbit and the dog try|try[EW:tried] to catch it.,and the rabbit and the dog try to catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and now the dog is mad.,and now the dog is mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,(and it) and the rabbit was scare/ed.,and it and the rabbit was scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,(and then) and then the rabbit and the dog bought some more[!] balloon/s.,and then and then the rabbit and the dog bought some more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and the rabbit said how much *does that[!] cost [EU]?,and the rabbit said how much that cost +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,it cost|cost[EW:costs] five cent/s.,it cost five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,but the rabbit had no money.,but the rabbit had no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and the rabbit and the dog said no money?,and the rabbit and the dog said no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,aw [~_disappointed_sound].,aw +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,xxx : a balloon.,x a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,then they said mommy come here!,then they said mommy come here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,can you buy us a balloon?,can you buy us a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,(and sh) and the mommy said which balloon/s?,and sh and the mommy said which balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,the[!] balloon/s.,the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and then the mom buy|buy[EW:bought] the balloons.,and then the mom buy the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,call/ed[?] a nickel [EU].,called a nickel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,and (then) then they had the balloon/s.,and then then they had the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/879.slt,then (the) (the) (the cat and) [~_no] (the) the bunny and the dog is[EW:are] happy.,then the the the cat and the the bunny and the dog is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,One day a giraffe meet/3s an elephant play/ing : with a ball.,One day a giraffe meets an elephant playing with a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,then the ball fell into a little pool.,then the ball fell into a little pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the giraffe go/3s into the pool to go swim to the ball to get it.,the giraffe goes into the pool to go swim to the ball to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the giraffe : got the ball and gave it to the elephant.,the giraffe got the ball and gave it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the elephant is so happy to have the ball back.,the elephant is so happy to have the ball back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the giraffe get/3s up on shore.,the giraffe gets up on shore +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,One day an elephant and a giraffe : (fou) found a pool.,One day an elephant and a giraffe fou found a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the elephant decide/ed to go down the ladder.,the elephant decided to go down the ladder +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,(it walks but) : it run/3s.,it walks but it runs +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,but it (f) was trip/ing.,but it f was tripping +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,it hurt/3s it/z knee.,it hurts it's knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the giraffe come/3s run/ing.,the giraffe comes running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,an elephant lifeguard came to the elephant and the giraffe.,an elephant lifeguard came to the elephant and the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,it help/ed : the elephant.,it helped the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,it gave the elephant a bandage and let it sit on a bench.,it gave the elephant a bandage and let it sit on a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the elephant lifeguard told : the elephant no run/ing.,the elephant lifeguard told the elephant no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,one day the elephant and the giraffe saw a pool.,one day the elephant and the giraffe saw a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,then the giraffe saw an airplane zoom/ing by.,then the giraffe saw an airplane zooming by +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the elephant grab/3s the : airplane : from the giraffe.,the elephant grabs the airplane from the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,then the airplane sink/3s in the pool.,then the airplane sinks in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the giraffe is mad at the elephant.,the giraffe is mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the elephant lifeguard come/3s.,the elephant lifeguard comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the elephant told : the lifeguard what happen/ed.,the elephant told the lifeguard what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the lifeguard try/3s to get the : airplane.,the lifeguard tries to get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,he can not get it.,he can not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the giraffe is cry/ing.,the giraffe is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,and the elephant is sorry.,and the elephant is sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,then another elephant came along with a fish/ing net.,then another elephant came along with a fishing net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,she scoop/3s the airplane out with the fish/ing net.,she scoops the airplane out with the fishing net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,she give/3s : the airplane to the giraffe.,she gives the airplane to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the giraffe and the elephant is[EW:are] happy.,the giraffe and the elephant is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,Once there was a rabbit.,Once there was a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,and it meet/3s: a little animal.,and it meets a little animal +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,they both try to make a sandcastle together.,they both try to make a sandcastle together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the rabbit pour/3s sand on the sandcastle.,the rabbit pours sand on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the sandcastle go/3s down.,the sandcastle goes down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the rabbit : feel/3s sorry for the other animal.,the rabbit feels sorry for the other animal +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,Once there was a rabbit.,Once there was a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,and it meet/3s an animal.,and it meets an animal +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,and they both want to [~_wanna] go on a picnic.,and they both want to go on a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,they together have a picnic at the same place.,they together have a picnic at the same place +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the rabbit eat/3s a lot of thing/s.,the rabbit eats a lot of things +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,and he is stuff/ed.,and he is stuffed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,then he feel/3s dizzy and sleepy.,then he feels dizzy and sleepy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the other animal tell/3s : the rabbit/z mom.,the other animal tells the rabbit's mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,it tell/3s her to come : to the rabbit.,it tells her to come to the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the other rabbit wake/3s up the little rabbit.,the other rabbit wakes up the little rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,and they : go home.,and they go home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,one day the rabbit saw : an animal pull/ing it/z wagon with a balloon.,one day the rabbit saw an animal pulling it's wagon with a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the rabbit (s) : is watch/ing the balloon.,the rabbit s is watching the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the rabbit try/3s to untie the balloon off the wagon.,the rabbit tries to untie the balloon off the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,(but it) after it goes (uh) up in the air.,but it after it goes uh up in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the other animal is mad at the rabbit.,the other animal is mad at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,then there is someone that is sell/ing balloon/s.,then there is someone that is selling balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,and the rabbit is ask/ing for some balloon/s.,and the rabbit is asking for some balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,he is look/ing in his pocket for money.,he is looking in his pocket for money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,but he do/3s not have enough money.,but he does not have enough money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,(so i) and he see/3s his mom.,so i and he sees his mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,so he go/3s over to his mom.,so he goes over to his mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,he ask/3s for some money to buy the balloon/s.,he asks for some money to buy the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,the mom gaves|give[EW:gives] : the : man some money to buy two balloon/s.,the mom gaves the man some money to buy two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/759.slt,(they have two) now the rabbit and the other (ha) animal has|have[EW:have] two balloon/s.,they have two now the rabbit and the other ha animal has two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(one :) one day (um) : a little : giraffe and (um) : elephant they were play/ing with three ball/s.,one one day um a little giraffe and um elephant they were playing with three balls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and (they were g) they were go/ing to go in the swimming pool.,and they were g they were going to go in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,so they got to the swimming pool : with ticket/s.,so they got to the swimming pool with tickets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and (then they sawl a ba) they saw their ball in the swimming pool.,and then they sawl a ba they saw their ball in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,so they got it.,so they got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then : (the gira) the giraffe try/ed to : come and get the (balloon um) balloon that they had.,and then the gira the giraffe tried to come and get the balloon um balloon that they had +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,so (they) he got it.,so they he got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and (then they) then they got their ball and their balloon.,and then they then they got their ball and their balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then they went and play/ed with them.,and then they went and played with them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and so the : elephant said thank you.,and so the elephant said thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then the giraffe said you are welcome.,and then the giraffe said you are welcome +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and they play/ed together (with their um) with their balloon.,and they played together with their um with their balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,one day (um they :) the giraffe and elephant want/ed to go swim/ing.,one day um they the giraffe and elephant wanted to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then : the giraffe ran.,and then the giraffe ran +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(and he) and he[EW:she] ran in the swimming pool with her bathing suit on.,and he and he ran in the swimming pool with her bathing suit on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and (then she) then she hurt herself on the knee.,and then she then she hurt herself on the knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,is that on this picture?,is that on this picture +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(um) (uh) yeah [+_bch].,um uh yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,can you just tell me the story that is on the picture?,can you just tell me the story that is on the picture +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and you tell me to turn if I am not turn/ing it fast enough.,and you tell me to turn if I am not turning it fast enough +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then she slip/ed because there was water when she was run/ing.,and then she slipped because there was water when she was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(and then) : and then she hurt herself.,and then and then she hurt herself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,so the lifeguard came and got her a bandage for her knee.,so the lifeguard came and got her a bandage for her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(and then they) so then they (um) went to swim again.,and then they so then they um went to swim again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and she was all better.,and she was all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(so) but first she had to sit on the bench a little bit.,so but first she had to sit on the bench a little bit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then she was okay.,and then she was okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and the lifeguard said (no run) can not you see the sign.,and the lifeguard said no run can not you see the sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,there is no run/ing here.,there is no running here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(one day there is a) one day there was : a giraffe and a[EW:an] (um) elephant.,one day there is a one day there was a giraffe and a um elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,the giraffe had a[EW:an] : airplane.,the giraffe had a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and he was play/ing with it.,and he was playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(and then he : al) and then the elephant want/ed to play with it.,and then he al and then the elephant wanted to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(so he na) so (um) he did.,so he na so um he did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,but then she took it away from the giraffe.,but then she took it away from the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then she drop/ed it in the water.,and then she dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,is that on this page?,is that on this page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,or was that on the next page?,or was that on the next page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,"it was on that page, oh okay.",it was on that page oh okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,so then it sank in.,so then it sank in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and (then the life) then the lifeguard got mad.,and then the life then the lifeguard got mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,so then : the giraffe [+/]^,so then the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,tell me : should I be turn/ing yet?,tell me should I be turning yet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,[~_yeah] then the giraffe got mad at the elephant.,then the giraffe got mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and she said she was sorry.,and she said she was sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,so she got her mom to catch the lifeguard.,so she got her mom to catch the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,is that what is on this page?,is that what is on this page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,so the lifeguard could not reach it.,so the lifeguard could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,so she got her mom to reach it : with a net.,so she got her mom to reach it with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then the lifeguard (she) he came back to say sorry to the elephant because (he) he got mad at the elephant.,and then the lifeguard she he came back to say sorry to the elephant because he he got mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then : her mom : catched|catch[EW:caught] it with (um) the thing.,and then her mom catched it with um the thing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then the lifeguard he try/ed to get it again.,and then the lifeguard he tried to get it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,but her mom could not.,but her mom could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and the lifeguard could not.,and the lifeguard could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,so she got a big big net.,so she got a big big net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and she catched|catch[EW:caught] it.,and she catched it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,is that on this page?,is that on this page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,yeah.,yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,remember I can not see so I just want you to tell the story that is on the page.,remember I can not see so I just want you to tell the story that is on the page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(and then all the lifeguard/s) and then : the mom had a real long net.,and then all the lifeguards and then the mom had a real long net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,so she grab/ed it.,so she grabbed it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and she catched|catch[EW:caught] it.,and she catched it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and the giraffe said thank you.,and the giraffe said thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then she said you are welcome.,and then she said you are welcome +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then (the) they were both happy again.,and then the they were both happy again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and they play/ed with it.,and they played with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,one day (a lit) a bunny rabbit went to the beach.,one day a lit a bunny rabbit went to the beach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(and she saw a p) and he saw a puppy.,and she saw a p and he saw a puppy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and she was make/ing a sandcastle.,and she was making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then the bunny said can I help?,and then the bunny said can I help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and the puppy said okay.,and the puppy said okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,then they build|build[EW:built] a sandcastle.,then they build a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and the bunny got a bucket.,and the bunny got a bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(and she) and then he got a shovel.,and she and then he got a shovel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(and he put it) and he put sand in the bucket to make a sandcastle.,and he put it and he put sand in the bucket to make a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(and the) and the puppy was make/ing (the sss um) a water hole.,and the and the puppy was making the sss um a water hole +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(and then the) and then the rabbit wreck/ed it because he put (all of :) all of sand on it.,and then the and then the rabbit wrecked it because he put all of all of sand on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and it push/ed it down.,and it pushed it down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and the (w) puppy was very sad.,and the w puppy was very sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(and then the) and the puppy try/ed to build it again.,and then the and the puppy tried to build it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,but it did not work.,but it did not work +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and the rabbit (was just) he did not say sorry or anything.,and the rabbit was just he did not say sorry or anything +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,one day : the puppy and the rabbit came for a picnic in a forest.,one day the puppy and the rabbit came for a picnic in a forest +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then (uh) the rabbit ate too much.,and then uh the rabbit ate too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and he got sick and was too full.,and he got sick and was too full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(so the) so the : puppy dog went to get some help.,so the so the puppy dog went to get some help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(and then she) but she did not find anyone yet (until he s) until she saw that the rabbit was sick.,and then she but she did not find anyone yet until he s until she saw that the rabbit was sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(and) (and then she got a nur) she got a doctor that was walk/ing by.,and and then she got a nur she got a doctor that was walking by +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then she took the rabbit : (and) and took the stomach away : ache.,and then she took the rabbit and and took the stomach away ache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then (: the bunny and the r um) bunny was still sick.,and then the bunny and the r um bunny was still sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,so : the puppy (he um) she pull/ed on the doctor.,so the puppy he um she pulled on the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then the doctor went on the picnic thing.,and then the doctor went on the picnic thing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(and the s) and he was really sick.,and the s and he was really sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,so the puppy went away : because the doctor said : he need/3s to be alone for a while.,so the puppy went away because the doctor said he needs to be alone for a while +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and the end [+_bch].,and the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,"oh just a second I miss/ed one, did not I?",oh just a second I missed one did not I +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,yeah and the [+/]^,yeah and the +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,it was after he need/3s to be alone for a while and then [+..].,it was after he needs to be alone for a while and then +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then (um) : the puppy came back.,and then um the puppy came back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and he was all better.,and he was all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,but he had to go lie in bed.,but he had to go lie in bed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(one day the bunny went) (he) (he) one day the bunny went to the forest.,one day the bunny went he he one day the bunny went to the forest +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(and he) and on the way there he saw a puppy.,and he and on the way there he saw a puppy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(and then they) and then they saw a clown with balloon/s.,and then they and then they saw a clown with balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and so they : ask/ed bunny/z mom if they could have some money for a balloon.,and so they asked bunny's mom if they could have some money for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and she said yes.,and she said yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,so then they got a : balloon.,so then they got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(and then they) (then their balloon uh) there was a balloon tie/ed onto puppy/z wagon.,and then they then their balloon uh there was a balloon tied onto puppy's wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and (it fell away) it flew away.,and it fell away it flew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,so then (um) [+..].,so then um +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,tell me when to turn.,tell me when to turn +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(and then it [~_please_turn_now_(whispered)] and then it went) and it disappear/ed up in the air.,and then it and then it went and it disappeared up in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and puppy was mad (at) at bunny.,and puppy was mad at at bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(and then) and then they saw (a clown) (a bunny with balloon/s) a clown bunny with balloon/s.,and then and then they saw a clown a bunny with balloons a clown bunny with balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(so they ask/ed bunny) so they ask/ed bunny/z mom if they could have some money.,so they asked bunny so they asked bunny's mom if they could have some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then they bought a balloon with their money.,and then they bought a balloon with their money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and puppy was very happy.,and puppy was very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and they both got two balloon/s.,and they both got two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then puppy ran over there to get a balloon.,and then puppy ran over there to get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,but bunny had no money.,but bunny had no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,so : she had to go to : (um) the mom to get his money.,so she had to go to um the mom to get his money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then after that : they got some money.,and then after that they got some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and they gave it to the clown bunny.,and they gave it to the clown bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then they got two balloon/s : one yellow and one red.,and then they got two balloons one yellow and one red +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(and then) but first they had to get the money from the doctor (that fix/ed) that help/ed bunny.,and then but first they had to get the money from the doctor that fixed that helped bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then so they got two balloon/s (ye) yellow and blue.,and then so they got two balloons ye yellow and blue +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,"and then they got one for the doctor, red.",and then they got one for the doctor red +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then : [~_whispers] I do not know [+_bch].,and then I do not know +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,you are not sure on this one?,you are not sure on this one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,nothing to say on this one?,nothing to say on this one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,"okay, we will just turn then.",okay we will just turn then +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then they bought the balloon/s.,and then they bought the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,(and then they) and then they got two balloon/s.,and then they and then they got two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then they were happy.,and then they were happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and they play/ed with them.,and they played with them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,and then they play/ed with them and play/ed.,and then they played with them and played +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/536.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,once there was a giraffe : who was stand/ing by a pool.,once there was a giraffe who was standing by a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and a[EW:an] elephant (said) : came : with : a swimsuit[!] on : and said you want to play fetch?,and a elephant said came with a swimsuit on and said you want to play fetch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,but[-:][!] : they were not so sure about play/ing near the pool.,but they were not so sure about playing near the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,just then when the elephant : blew it with her trunk : it fell in the pool.,just then when the elephant blew it with her trunk it fell in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the giraffe : jump/ed[!] in : and swam[-:][!] to get (the balloon[-:]) [~_I_mean] the ball.,the giraffe jumped in and swam to get the balloon the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the giraffe[!] : came back with it : in a minute.,the giraffe came back with it in a minute +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,(and said) : (and the gira) [~_I_mean] and the elephant said : oh (you) : you got my (balloon) [~_I_mean] ball!,and said and the gira and the elephant said oh you you got my balloon ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,thank you!,thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,sometime/3s I get mixed up with the word/s [+_bch].,sometimes I get mixed up with the words +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the giraffe[-:] : felt please/ed (that : he) that he got the ball[-:][-:] (for the) : for her friend.,the giraffe felt pleased that he that he got the ball for the for her friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,but the elephant[!] (just sta) just stood there and smile/ed.,but the elephant just sta just stood there and smiled +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the giraffe[!] and the elephant went to the pool[-:] because it was a hot[!] summer day.,the giraffe and the elephant went to the pool because it was a hot summer day +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,(they were) they look/ed at the pool.,they were they looked at the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and they were excite/ed.,and they were excited +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,but[!] the elephant said hey I am go/ing to go off the diving board!,but the elephant said hey I am going to go off the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,but she did not read the sign : which said no run/ing.,but she did not read the sign which said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,so[-:][!] she ran anyway.,so she ran anyway +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,just[!] then : (the el) the giraffe was catch/ing up with her when she slip/ed[!] : and fell on her knee.,just then the el the giraffe was catching up with her when she slipped and fell on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,she got[!] : a cut on her knee.,she got a cut on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and the giraffe[-:][!] went to get someone.,and the giraffe went to get someone +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,a lifeguard[!] : came : as quickly as possible : and help/ed the elephant[!].,a lifeguard came as quickly as possible and helped the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the elephant thought it was go/ing to [~_gonna] sting.,the elephant thought it was going to sting +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,but : it did not.,but it did not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,(they) they put on the bandage.,they they put on the bandage +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,(and it was) and it look/ed good as new.,and it was and it looked good as new +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the lifeguard was disappoint/ed.,the lifeguard was disappointed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and the girl : (stood) sat on the bench and said [~_heh_heh] hi?,and the girl stood sat on the bench and said hi +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and the lifeguard was point/ing at the no run/ing[!] sign.,and the lifeguard was pointing at the no running sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the giraffe and the elephant went to play by the pool.,the giraffe and the elephant went to play by the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and the giraffe[!] : got a new toy plane and said you want to [~__wanna] play with me?,and the giraffe got a new toy plane and said you want to play with me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the elephant said sure!,the elephant said sure +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the giraffe flew the plane first.,the giraffe flew the plane first +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,but the elephant was so excit/ed : she just grab/ed it out of her hands.,but the elephant was so excited she just grabbed it out of her hands +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the giraffe said my plane give it back!,the giraffe said my plane give it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,I was not done my turn!,I was not done my turn +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,but the elephant did not care.,but the elephant did not care +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,she was just fly/ing[!] it around.,she was just flying it around +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,just[!] then she : flew it : too[!] high.,just then she flew it too high +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and : it fell in the pool.,and it fell in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and it start/ed to sink.,and it started to sink +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the giraffe was mad at the elephant.,the giraffe was mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,but the elephant just stood there puzzle/ed[-:].,but the elephant just stood there puzzled +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the lifeguard[!] came : right by the two girl/s.,the lifeguard came right by the two girls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and (one of the girl/s[-:] said) [~_I_mean] : one of the elephant/s said I can explain[-:] .,and one of the girls said one of the elephants said I can explain +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,(I) I did not do it!,I I did not do it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,it was the giraffe[-:]!,it was the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,just then (g) (g) the giraffe said : she is lie/ing!,just then g g the giraffe said she is lying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,it was her!,it was her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,then (it came) : like it was a big argument[-:].,then it came like it was a big argument +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,so the lifeguard said cool it.,so the lifeguard said cool it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,who drop/ed it in the pool?,who dropped it in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and the giraffe was point/ing at the elephant.,and the giraffe was pointing at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the lifeguard try/ed to (get) catch it.,the lifeguard tried to get catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,but it was float/ing : in the pool.,but it was floating in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the giraffe[-:] start/ed to cry : when the lifeguard said he could not reach it.,the giraffe started to cry when the lifeguard said he could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and the : elephant felt sorry.,and the elephant felt sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,just[-:][!] then a lady[!] elephant came with a net[-:].,just then a lady elephant came with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,she : quickly got the plane : with the net.,she quickly got the plane with the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,(and : it came) : and she pull/ed it : (f) : to her[!].,and it came and she pulled it f to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,she said here you go!,she said here you go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,is this your airplane?,is this your airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and the giraffe said yes : thank you very much!,and the giraffe said yes thank you very much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the giraffe hug/ed[!] her plane.,the giraffe hugged her plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,but the elephant : was happy.,but the elephant was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,one day at the park : there was : a baby dog : who was make/ing a sandcastle.,one day at the park there was a baby dog who was making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,just then a bunny : came along and said : can I help you?,just then a bunny came along and said can I help you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the dog said sure.,the dog said sure +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,they want/ed to help build (a) the biggest sandcastle in the world!,they wanted to help build a the biggest sandcastle in the world +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,so the rabbit[!] was go/ing to build it.,so the rabbit was going to build it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,so he got some sand in a pail and start/ed dig/ing.,so he got some sand in a pail and started digging +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,just[!] then : he decid/ed that a shovel was not so slow after all.,just then he decided that a shovel was not so slow after all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,so he decide/ed to dump it on the : castle.,so he decided to dump it on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,so he did.,so he did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,but : when he realize/ed he had wreck/ed it : he was so[-:][!] embarrass/ed.,but when he realized he had wrecked it he was so embarrassed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the dog[-:] start/ed to cry : and rebuild the sandcastle.,the dog started to cry and rebuild the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,but the rabbit just stood there : and look/ed like he did nothing.,but the rabbit just stood there and looked like he did nothing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,(there) : there once was a dog who was go/ing on a picnic in the : park.,there there once was a dog who was going on a picnic in the park +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and then he saw a rabbit.,and then he saw a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,so (he) they decide/ed to go together.,so he they decided to go together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,(when the om) when they unpack/ed the lunch : the rabbit was so[!] hungry.,when the om when they unpacked the lunch the rabbit was so hungry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,(s) the rabbit was so[!] hungry.,s the rabbit was so hungry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,but the dog was not.,but the dog was not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,so the rabbit ate all[-:] the stuff.,so the rabbit ate all the stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,when the dog[!] was eat/ing : the bunny had already finish/ed.,when the dog was eating the bunny had already finished +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the bunny[-:] : had a terrible[-:][!] stomachache while the dog was eat/ing.,the bunny had a terrible stomachache while the dog was eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the dog just stood there puzzle/ed and said are you okay?,the dog just stood there puzzled and said are you okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and the rabbit said no I feel like I am go/ing to[:_gonna] hurl[-:]!,and the rabbit said no I feel like I am going to hurl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,just then the dog : ran : to the (doc) : doctor who was stand/ing[!] right by the path.,just then the dog ran to the doc doctor who was standing right by the path +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,she said excuse me could you help my friend[-:] here?,she said excuse me could you help my friend here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,he has a stomachache!,he has a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,(so) but the doctor said no.,so but the doctor said no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,she had : a patient who was wait/ing[!] for her.,she had a patient who was waiting for her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,but the : dog[-:] : really need/ed her.,but the dog really needed her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,so she : took the doctor and drag/ed them[EW:him] to the : picnic.,so she took the doctor and dragged them to the picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the doctor said : I will take your temperature now.,the doctor said I will take your temperature now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and you will feel much better.,and you will feel much better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,just then the bunny (f) got up.,just then the bunny f got up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and he felt queasy[-:].,and he felt queasy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,then the doctor and the bunny : went : home.,then the doctor and the bunny went home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,they walk/ed together : back home.,they walked together back home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,there once was a dog : who was pull/ing a wagon with a balloon tie/ed to it.,there once was a dog who was pulling a wagon with a balloon tied to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,then he saw the bunny.,then he saw the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,then they want/ed to play with the balloon.,then they wanted to play with the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the bunny want/ed to : touch[!] the balloon : because : he thought it was : cool.,the bunny wanted to touch the balloon because he thought it was cool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,but the dog[-:] did not : really want him to.,but the dog did not really want him to +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,so (the rabbit) : just then the rabbit : did not care[-:] about what the dog said.,so the rabbit just then the rabbit did not care about what the dog said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,so : the rabbit : untie/ed the balloon.,so the rabbit untied the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and the dog (was ss) (was a lit) was begin/ing to get a little[!] fed up.,and the dog was ss was a lit was beginning to get a little fed up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,just then the balloon float/ed away.,just then the balloon floated away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and they were try/ing[!] to catch it.,and they were trying to catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,but they were too short.,but they were too short +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the dog was so[-:][!] angry at the rabbit.,the dog was so angry at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the rabbit just : stare/ed at the balloon.,the rabbit just stared at the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and he[-:] felt like : he was get/ing a little scare/ed : because the dog was mad.,and he felt like he was getting a little scared because the dog was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,just then they saw a balloon[!] seller : who had : ton/s[!] of balloon/s.,just then they saw a balloon seller who had tons of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and he just stood there.,and he just stood there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,so : the dog and the rabbit decide/ed to go buy a new one.,so the dog and the rabbit decided to go buy a new one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the rabbit said may I have a balloon : please[!] for my friend over there?,the rabbit said may I have a balloon please for my friend over there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the man said sure[-:] but : you will have to pay (for that) : for the balloon.,the man said sure but you will have to pay for that for the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the rabbit look/ed through his pocket/s.,the rabbit looked through his pockets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,just then : (it said) : a sign said : balloon/s five cent/s.,just then it said a sign said balloons five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and he did not have[!] five cent/s.,and he did not have five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,(he and the ra) the rabbit : and the : dog[-:] look/ed at the balloon seller.,he and the ra the rabbit and the dog looked at the balloon seller +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,they told him that they did not have[!] five cent/s.,they told him that they did not have five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,just then : the bunny (went to the[-:]) : went to a lady who was stand/ing nearby.,just then the bunny went to the went to a lady who was standing nearby +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and he said excuse me do you have five cent/s because I need to buy a balloon for : a friend.,and he said excuse me do you have five cents because I need to buy a balloon for a friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the rabbit[-:][!] : look/ed puzzle/ed.,the rabbit looked puzzled +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the lady rabbit : gave five[!] cent/s : for two balloon/s.,the lady rabbit gave five cents for two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,and : the bunny and the dog were jump/ing up and down : in excitement.,and the bunny and the dog were jumping up and down in excitement +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,then : they both[!] got balloon/s.,then they both got balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,(and they hug/ed) and they loved them real[EW:very] [-:] much.,and they hugged and they loved them real much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/822.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,(this is) this story is call/ed[-:] : the ball [~_title].,this is this story is called the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,one day : this little girl was play/ing with a ball[!].,one day this little girl was playing with a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and a lifeguard : was play/ing with it too.,and a lifeguard was playing with it too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and so when she was play/ing with the ball : she accidentally drop/ed it in the pool.,and so when she was playing with the ball she accidentally dropped it in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and then : the lifeguard went in the water and : swam (and got the balloon) and got the ball.,and then the lifeguard went in the water and swam and got the balloon and got the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and when : he did : she was so[-:][!] happy.,and when he did she was so happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and then : (she um) : she ask/ed him if he want/3s to play with her again.,and then she um she asked him if he wants to play with her again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,this story is call/ed the scratch.,this story is called the scratch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,one[!] day : a little girl was go/ing swim/ing.,one day a little girl was going swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and she was run/ing to the board.,and she was running to the board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and when she did she slip/ed.,and when she did she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,(and : she) and when she slip/ed she : got a cut on her knee.,and she and when she slipped she got a cut on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,(and then the lifegua) and then another lifeguard came run/ing and : said are you okay?,and then the lifegua and then another lifeguard came running and said are you okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and then he put a bandaid on.,and then he put a bandaid on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and then he put (him on) put her on the bench.,and then he put him on put her on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and (she would not be able) she was not able to swim.,and she would not be able she was not able to swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,but then the lifeguard was really mad because : (he) she should have seen (the) the sign no run/ing.,but then the lifeguard was really mad because he she should have seen the the sign no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,this story is call/ed the airplane.,this story is called the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,one day this little boy and this little girl were play/ing with an (air) airplane.,one day this little boy and this little girl were playing with an air airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,the girl ask/ed can I play with it now !,the girl asked can I play with it now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and he said okay.,and he said okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,(and then it) and then she accidentally drop/ed it in the water.,and then it and then she accidentally dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,when she did : the little boy got all[-:] mad.,when she did the little boy got all mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and then she went up to the lifeguard : and ask/ed the lifeguard if he could get the airplane.,and then she went up to the lifeguard and asked the lifeguard if he could get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and when he said okay I will try : he try/ed.,and when he said okay I will try he tried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,but he could not reach it.,but he could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,(and then he) and then the little boy was cry/ing.,and then he and then the little boy was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,but then the girl lifeguard came.,but then the girl lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and[-:] : she got a net.,and she got a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,then she try/ed to get it.,then she tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and she did.,and she did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and then the little boy was so happy.,and then the little boy was so happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and then : the little girl said I am sorry (for) : for wreck/ing your toy.,and then the little girl said I am sorry for for wrecking your toy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,this story is call/ed : (um) the castle that break/3s.,this story is called um the castle that breaks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,one day (there is) there is a little girl and a little boy who is[EW:are] play/ing in the sand.,one day there is there is a little girl and a little boy who is playing in the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and the little girl : builded|build[EW:built] a castle.,and the little girl builded a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and : the little boy : dump/ed : a bucket.,and the little boy dumped a bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,he did not mean to dump the bucket (oh) on the castle.,he did not mean to dump the bucket oh on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and then when he did : the girl got all (mad) [~_I_mean] sad.,and then when he did the girl got all mad sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and she was cry/ing.,and she was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and : the bunny said sorry.,and the bunny said sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,this story is call/ed : the picnic.,this story is called the picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,one day (a little) (a doggy and) : a dog and a rabbit (was eat/ing) was[EW:were] have/ing a picnic [~_okay].,one day a little a doggy and a dog and a rabbit was eating was having a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and the rabbit ate too much.,and the rabbit ate too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,so he got sick.,so he got sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and then the poochy ran over to : a doctor : near by.,and then the poochy ran over to a doctor near by +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,the pooch said help help.,the pooch said help help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,a little boy is sick!,a little boy is sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,so the doctor : check/ed the boy and said (he was si) he had to go home.,so the doctor checked the boy and said he was si he had to go home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and then he felt better.,and then he felt better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,this story is call/ed : the puppy who had two balloon/s.,this story is called the puppy who had two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,one day[-:] (a pup) (his uh) somebody/z friend came over : to check his balloon out.,one day a pup his uh somebody's friend came over to check his balloon out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and when he did he tie/ed the rope off : (the) : the wagon.,and when he did he tied the rope off the the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and when he did the (ba) balloon got away.,and when he did the ba balloon got away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and then the puppy is all[!] mad.,and then the puppy is all mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and then the rabbit saw some more balloon/s.,and then the rabbit saw some more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and he ask/ed (some) for a balloon.,and he asked some for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,but the guy said : balloon/s are five cent/s.,but the guy said balloons are five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and : the bunny did not have any money.,and the bunny did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,(so) so the bunny said (um) well : I accidentally : lost (one that) my friend/z balloon.,so so the bunny said um well I accidentally lost one that my friend's balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,(and so he) and then the : balloon man said no you still need to pay five cent/s.,and so he and then the balloon man said no you still need to pay five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,so then the bunny went over to an adult[!] to ask for five cent/s.,so then the bunny went over to an adult to ask for five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and when he did ask : she said okay.,and when he did ask she said okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and then she paid him five cent/s.,and then she paid him five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and then : (the : boy) the girl got (his) (her balloon) (a) another balloon back.,and then the boy the girl got his her balloon a another balloon back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,and then she was all happy.,and then she was all happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/959.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,once upon a time : there was : a giraffe and a[EW:an] elephant play/ing : around the pool.,once upon a time there was a giraffe and a elephant playing around the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,(and one of) they were play/ing with a ball.,and one of they were playing with a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and (it f) : it fell : in the water.,and it f it fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and the giraffe : swam to (the balloon) : the ball.,and the giraffe swam to the balloon the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and then : he[-:] swam back : to : the elephant : and gave it back to her.,and then he swam back to the elephant and gave it back to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and she was : very[!] : happy : that he got it : for the elephant.,and she was very happy that he got it for the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,once upon a time : there was : a giraffe and a[EW:an] elephant : around the pool.,once upon a time there was a giraffe and a elephant around the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and the elephant (want/ed to jump : off the j) : (the) : (the tr : um) : (the : um) : want/ed to jump : in the pool.,and the elephant wanted to jump off the j the the tr um the um wanted to jump in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and (sh) when she was run/ing : to it : she slip/ed.,and sh when she was running to it she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and she fell.,and she fell +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,she got (a scra) : a scratch on her : knee.,she got a scra a scratch on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and[-:] the giraffe : ran to : the[-:] lifeguard.,and the giraffe ran to the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and : he got a bandaid.,and he got a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and : (they) : (they) : he put it on : her knee.,and they they he put it on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,(and) : and he sent : her to (the) : the bench.,and and he sent her to the the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,(and) and he show|show[EW:showed] [-:] her : no run/ing : sign.,and and he show her no running sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,(one[-:]) there was[EW:were] two friend/s : an elephant and a giraffe.,one there was two friends an elephant and a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,the giraffe had a toy : that it was a airplane.,the giraffe had a toy that it was a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,he was play/ing around with it.,he was playing around with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and : a[EW:an] elephant want/ed to play with it : too.,and a elephant wanted to play with it too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and elephant took[!] it from the giraffe : and (p) play/ed around with it.,and elephant took it from the giraffe and p played around with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and she drop/ed it into the pool.,and she dropped it into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and (she) : she was very sad.,and she she was very sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and the giraffe was very angry at her.,and the giraffe was very angry at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,the lifeguard : (ran uh) came to : the elephant and the giraffe.,the lifeguard ran uh came to the elephant and the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and : (the) (the el) (the[-:] : lifeguard) : [~_no] the elephant : said that : (I) by accident I : threw : the giraffe/z airplane inside : the water.,and the the el the lifeguard the elephant said that I by accident I threw the giraffe's airplane inside the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and[-:] the lifeguard was try/ing to get it.,and the lifeguard was trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,but it was too far.,but it was too far +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and he said : I can not do anything.,and he said I can not do anything +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and the giraffe : start/ed to cry.,and the giraffe started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,a net : catcher : came to : the hopeless : giraffe.,a net catcher came to the hopeless giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and : she had a net in her hand.,and she had a net in her hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and she : got : the airplane by her net.,and she got the airplane by her net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and the giraffe : stop/ed cry/ing.,and the giraffe stopped crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and the lady : gave it to the giraffe.,and the lady gave it to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and (he is very) he was very happy.,and he is very he was very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,once upon a time : there was a little dog : that : made a castle.,once upon a time there was a little dog that made a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and : (a) a rabbit : he came : (a) along : and want/ed to help him.,and a a rabbit he came a along and wanted to help him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and then : (he) (he dump) he dump/ed some sand inside : a bucket.,and then he he dump he dumped some sand inside a bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,(and : the) : and he scoop/ed some up.,and the and he scooped some up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and then he dump/ed it (on there) on the castle.,and then he dumped it on there on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,(and then) and it got cover/ed.,and then and it got covered +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,(and) : and then : (it really : did not do) it (was) : was a cloud : of : sand.,and and then it really did not do it was was a cloud of sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and the dog[-:] was build/ing it again.,and the dog was building it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,there was[EW:were] : two friend/s : that : were : walk/ing along for a picnic.,there was two friends that were walking along for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and[-:] : (the ra) (the fr) one of the friend/s had : a lot of[EW:more] (f) food than : the other : friend.,and the ra the fr one of the friends had a lot of f food than the other friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and then : he ate all of it.,and then he ate all of it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,(and) : and he got really : stuff/ed.,and and he got really stuffed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and then : (he) : he was very sick.,and then he he was very sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and his stomach was really hurt/ing.,and his stomach was really hurting +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and one of the friend/s call/ed : the doctor.,and one of the friends called the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and : the dog call/ed (her) (the) : the doctor : to help.,and the dog called her the the doctor to help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and : the doctor : said do not eat a lot of food.,and the doctor said do not eat a lot of food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and he went home.,and he went home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and he had some rest.,and he had some rest +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,once upon a time there was[EW:were] : (a) : two friend/s walk/ing along with their[-:] wagon.,once upon a time there was a two friends walking along with their wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and one of the friend/s said : this is a nice wagon : and a nice balloon : you have on it.,and one of the friends said this is a nice wagon and a nice balloon you have on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,he tie/ed it off.,he tied it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,(and he) : and he want/ed to hold it.,and he and he wanted to hold it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and then the balloon (fell) flew away.,and then the balloon fell flew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and then : (they were re) one of the friend/z balloon : was very disappoint/ed.,and then they were re one of the friend's balloon was very disappointed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and one of the friend/s : saw (a) : a man sell/ing balloon/s.,and one of the friends saw a a man selling balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,so he ran[!] over there.,so he ran over there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and : (he) : he got one from the man.,and he he got one from the man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,can I have one of those balloon/s he said?,can I have one of those balloons he said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,but it was actually : five cent/s : to buy (the) one of the balloon/s.,but it was actually five cents to buy the one of the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,(it w) : he was really sad : that he lost : (one of the friend) : his friend : balloon.,it w he was really sad that he lost one of the friend his friend balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,he ask/ed : a person (by) : if (sh) they had five cent/s.,he asked a person by if sh they had five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and : (he) he point/ed : to the balloon/s.,and he he pointed to the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and : he said there is only balloon/s for five cent/s.,and he said there is only balloons for five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and I have no money.,and I have no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and : (she) : she bought two for each of (the) the friend/s.,and she she bought two for each of the the friends +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,and they : said (thank you) thank you for the balloon/s.,and they said thank you thank you for the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/920.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,[~_okay] there is an elephant and a giraffe bounce/ing a ball have/ing fun with the ball.,there is an elephant and a giraffe bouncing a ball having fun with the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and the ball goes into the water : gets bounce/ed into the water.,and the ball goes into the water gets bounced into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,the giraffe go/3s to get it.,the giraffe goes to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,he is : really wet.,he is really wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,he give/3s it to the elephant.,he gives it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and (the elephant) : the elephant is hold/ing it.,and the elephant the elephant is holding it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and the giraffe is smile/ing quite a lot.,and the giraffe is smiling quite a lot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,[~_okay] the giraffe and the elephant are look/ing to the water.,the giraffe and the elephant are looking to the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and (the : gira) the elephant see/3s a diving board.,and the gira the elephant sees a diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,the elephant is run/ing and slip/3s (on the : pavement) [~_or__whatever_it_is] on : the deck [~_or_whatever] and : scrape/3s her knee.,the elephant is running and slips on the pavement on the deck and scrapes her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,the giraffe came over.,the giraffe came over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and the : lifeguard came over and look/ed at it : and bandage/ed it up.,and the lifeguard came over and looked at it and bandaged it up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and : the elephant sat on a bench.,and the elephant sat on a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and (the) : the lifeguard point/ed at the no run/ing sign.,and the the lifeguard pointed at the no running sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,the giraffe and the elephant are play/ing with a : (airplane) toy airplane.,the giraffe and the elephant are playing with a airplane toy airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,the giraffe is make/ing it go : really high.,the giraffe is making it go really high +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,the elephant grab/3s it away and start/3s play/ing with it.,the elephant grabs it away and starts playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,it go/3s in the water.,it goes in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,the giraffe is really mad at the elephant.,the giraffe is really mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and the lifeguard see/3s the toy in the water and : look/3s mad.,and the lifeguard sees the toy in the water and looks mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and : the lifeguard and : the : (el) other elephant : are talk/ing.,and the lifeguard and the el other elephant are talking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and the lifeguard try/3s to reach the airplane.,and the lifeguard tries to reach the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,but he can not.,but he can not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,the lifeguard : is kind of shrug/ing his shoulder/s think/ing what can I do ?,the lifeguard is kind of shrugging his shoulders thinking what can I do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and then another : person come/3s with a net : and get/3s it out for them.,and then another person comes with a net and gets it out for them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and the giraffe is really really happy.,and the giraffe is really really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and : the giraffe is hug/ing his toy.,and the giraffe is hugging his toy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,the bunny and : something else are play/ing.,the bunny and something else are playing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,I think it is a dog that are[EW:is] play/ing : with sand.,I think it is a dog that are playing with sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and the bunny (put) is get/ing some sand out of a pail.,and the bunny put is getting some sand out of a pail +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,he dump/3s sand on a sandcastle.,he dumps sand on a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,then the sandcastle is all wreck/ed.,then the sandcastle is all wrecked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,the bunny feel/3s really bad.,the bunny feels really bad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and : I think it is the dog that is cry/ing.,and I think it is the dog that is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,the bunny and the : dog I think are go/ing for a picnic.,the bunny and the dog I think are going for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,(the dog and the) : the bunny is eat/ing too much.,the dog and the the bunny is eating too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,he has : maybe twenty thing/s.,he has maybe twenty things +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,he is eat/ing lot/s.,he is eating lots +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and : the bunny is really full[!].,and the bunny is really full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and the dog is just eat/ing his sandwich and drink/ing juice box.,and the dog is just eating his sandwich and drinking juice box +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and the bunny : is feel/ing dizzy.,and the bunny is feeling dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and the dog : think/3s oh I should go get some help!,and the dog thinks oh I should go get some help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,so he run/3s to a doctor walk/ing down the road : and pull/3s the doctor over to her friend.,so he runs to a doctor walking down the road and pulls the doctor over to her friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and the doctor check/3s her friend out : and take/3s (her) the dog/z friend home the rabbit.,and the doctor checks her friend out and takes her the dog's friend home the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,there is the dog and the bunny.,there is the dog and the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,the bunny is come/ing down : the road : jog/ing.,the bunny is coming down the road jogging +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,(he) and the dog has a wagon with a balloon tie/ed to it.,he and the dog has a wagon with a balloon tied to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,the bunny grab/3s the balloon.,the bunny grabs the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and the dog is kind of [~_kinda] fine with it.,and the dog is kind of fine with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and : then the dog kind of [~_kinda] (freak/3s out) start/3s freak/ing out.,and then the dog kind of freaks out starts freaking out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and the : bunny : and the dog try/ed to grab it.,and the bunny and the dog tried to grab it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,but they can not because it is float/ing up into the air.,but they can not because it is floating up into the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and the dog is really[!] mad at the bunny.,and the dog is really mad at the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,then (the : do) the bunny go/3s : to the balloon man.,then the do the bunny goes to the balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,he ask/3s for a balloon.,he asks for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,he say/3s five cent/3s for a balloon.,he says five cents for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and the bunny has no money.,and the bunny has no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,so (the) the little bunny look/3s at the : balloon man very innocently : and then go/3s to (his) (the doctor) his dad [~_or_whatever] (and) : [~_I_do_n(o)t_know].,so the the little bunny looks at the balloon man very innocently and then goes to his the doctor his dad and +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,I just see him go/ing to his dad or : the doctor.,I just see him going to his dad or the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,he ask/3s for money.,he asks for money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and : (he) [~_yeah] he ask/3s for some money.,and he he asks for some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and his dad pay/3s : the balloon man for two balloon/s.,and his dad pays the balloon man for two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and : (I) : I think the little bunny/z dad : feel/3s really good.,and I I think the little bunny's dad feels really good +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/test/972.slt,and so do the rest of them.,and so do the rest of them diff --git a/data/enni_salt_for_segmentation/train.csv b/data/enni_salt_for_segmentation/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5568a816c601ba95b4f3cd691d036cfcabc08820 --- /dev/null +++ b/data/enni_salt_for_segmentation/train.csv @@ -0,0 +1,23637 @@ +file_name,slt_transcription,cleaned_transcription +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,a giraffe *is play/ing with a[EW:an] elephant [EU].,a giraffe playing with a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,like they are play/ing with the ball.,like they are playing with the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and it fell into the pool.,and it fell into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,(and) and then (the g) (the) the zebra (uh s) swam to get it.,and and then the g the the zebra uh s swam to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,(and the) (the) (and the gira) (and) and the giraffe got it and gave it to the elephant.,and the the and the gira and and the giraffe got it and gave it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and (um) the elephant was okay.,and um the elephant was okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,but the giraffe was all wet.,but the giraffe was all wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,the zebra and the elephant went to the pool again.,the zebra and the elephant went to the pool again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,(and they wanted to s) and the elephant want/ed to swim : till : it kick/ed it/z face.,and they wanted to s and the elephant wanted to swim till it kicked it's face +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and the : giraffe ran after it.,and the giraffe ran after it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,(and at last) and the giraffe just ran somewhere.,and at last and the giraffe just ran somewhere +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,(uh) but the elephant hurt it/z knee.,uh but the elephant hurt it's knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and she was cry/ing so much that the elephant stop/ed run/ing (when an elephant) when another[!] elephant came : and said what is wrong?,and she was crying so much that the elephant stopped running when an elephant when another elephant came and said what is wrong +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,she scratch/ed me.,she scratched me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,ow.,ow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,so : I could get a bandaid.,so I could get a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and : (you should not know that) (you should not) no[!] run/ing.,and you should not know that you should not no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,the elephant and the giraffe went to the pool again.,the elephant and the giraffe went to the pool again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and then : (they) they play/ed with a little plane.,and then they they played with a little plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,but the elephant took it from the giraffe!,but the elephant took it from the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,(and they) and they drop/ed into the pool [EU].,and they and they dropped into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and the giraffe was so mad to[EW:at] the elephant that : the elephant was too scared to get it.,and the giraffe was so mad to the elephant that the elephant was too scared to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,when : (the) the other elephant came and said what is go/ing on around here[!].,when the the other elephant came and said what is going on around here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and the (f) other elephant answer/ed we are play/ing with the plane.,and the f other elephant answered we are playing with the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,(but it) but it drop/ed into the pool.,but it but it dropped into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,I could get it[!] the other elephant said.,I could get it the other elephant said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,it is no use.,it is no use +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,I could not (the) the elephant said.,I could not the the elephant said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,then another elephant came over and said what is the problem?,then another elephant came over and said what is the problem +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,(the net) the plane : drop/ed into the pool [~_different__speaking_voice].,the net the plane dropped into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,well I got a net to catch it [~_different_speaking_voice]!,well I got a net to catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,(and she did) and (she) she did (ju) just that.,and she did and she she did ju just that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,I got : the plane for you.,I got the plane for you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,oh thank you the giraffe said.,oh thank you the giraffe said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,giraffe : hug/ed it.,giraffe hugged it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and the elephant was a little happy again.,and the elephant was a little happy again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,a rabbit and a dog were : play/ing in the sand and build/ing a sandcastle.,a rabbit and a dog were playing in the sand and building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and the dog like/ed to : make the (sand) sandcastle.,and the dog liked to make the sand sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and the bunny : like/ed to help.,and the bunny liked to help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and he put some on.,and he put some on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and the dog was too frighten/ed to talk.,and the dog was too frightened to talk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,[~_right] (and it was) and it was ruin/ed (the) the bunny said after he did it.,and it was and it was ruined the the bunny said after he did it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and : the : rabbit did not say another : word.,and the rabbit did not say another word +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and the dog : cry/ed a little.,and the dog cried a little +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,the dog and the bunny were have/ing a picnic today.,the dog and the bunny were having a picnic today +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and they start/ed to eat.,and they started to eat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and the bunny sweated|sweat[EW:sweat] : and fell to : the ground [EU].,and the bunny sweated and fell to the ground +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,(but) but the dog was still eat/ing.,but but the dog was still eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,ah I can not take it any more the bunny said.,ah I can not take it any more the bunny said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and then the mother bunny came : and said what is the matter little one?,and then the mother bunny came and said what is the matter little one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and the dog said : he sweated|sweat[EW:sweat] and fell to the ground [EU].,and the dog said he sweated and fell to the ground +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,oh my goodness [~_high_pitched_voice].,oh my goodness +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,are you all right little one [~_high_pitched_voice]?,are you all right little one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,I am okay [~_high_pitched_voice].,I am okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,let us go home okay [~_high_pitched_voice]?,let us go home okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,goodbye [~_high_pitched_voice].,goodbye +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,the bunny and the dog had a wagon that had (uh uh uh a big bunny/z uh) a big bunny/z balloon.,the bunny and the dog had a wagon that had uh uh uh a big bunny's uh a big bunny's balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and : they like/ed it so much that (they) he play/ed with it.,and they liked it so much that they he played with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,but then : they try/ed to pull[?] it easily.,but then they tried to pull it easily +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and the dog almost : sweated all the time [EU].,and the dog almost sweated all the time +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and the balloon flew away.,and the balloon flew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and they both try/ed to get it.,and they both tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,but they could not.,but they could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,(and they are so) and the dog was so angry.,and they are so and the dog was so angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,when they saw the big bunny (with) hold/ing some balloon/s [EU].,when they saw the big bunny with holding some balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,[~_high_voice] hey big one.,hey big one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,(have you) (we) we just had a wagon that had one of your balloon/s.,have you we we just had a wagon that had one of your balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,[~_deep_voice] oh?,oh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,"[~_deep_voice,_menacing_tone] (you y y you) and where did you put it?",you y y you and where did you put it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,[~_high_voice] well it flew away.,well it flew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,[~_makes_growling_sound_'errrr']., +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,[~_high_voice] it is okay.,it is okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,[~_high_voice] how come : there is[EW:are] two?,how come there is two +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,[~_high_voice] oh that is just my friend.,oh that is just my friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and then the mother came again and : said what is up now [~__different_speaking_voice]?,and then the mother came again and said what is up now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,oh we just found a balloon man.,oh we just found a balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,and we had one of his balloon/s.,and we had one of his balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,oh [~_different_speaking_voice].,oh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,(and and) and (uh) he had a balloon that said : five balloon/s.,and and and uh he had a balloon that said five balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,(but he) (he) but he just had four because we had one of them.,but he he but he just had four because we had one of them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,but it is okay he said.,but it is okay he said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,: (because) and he gave both of them a balloon.,because and he gave both of them a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/471.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(um) Elephant and giraffe want to [~_wanna] play ball : outside.,um Elephant and giraffe want to play ball outside +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(and) : and giraffe : do|do[EW:does] not want to get the ball at the pool.,and and giraffe do not want to get the ball at the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,and the elephant *is scare/ed of height/s.,and the elephant scared of heights +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,then he bring|bring[EW:brought] a ball back to the giraffe.,then he bring a ball back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,then : (um) elephant is very shy : with giraffe.,then um elephant is very shy with giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(ah) the elephant (want to) : and giraffe go to the pool.,ah the elephant want to and giraffe go to the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(then) and then (the elephant and gir) elephant go run [EU].,then and then the elephant and gir elephant go run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(and el) and giraffe stay|stay[EW:stays] here.,and el and giraffe stay here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(then) : then : giraffe run|run[EW:ran].,then then giraffe run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,and elephant slip|slip[EW:slipped] *on the floor [EU].,and elephant slip the floor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,then elephant have|have[EW:has] a booboo : because[?] : *of the slippery floor [EU].,then elephant have a booboo because the slippery floor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(then) : and the giraffe said it is okay xx the elephant.,then and the giraffe said it is okay the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(and) : (and the) and the elephant give|give[EW:gave] him a bandaid.,and and the and the elephant give him a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,and then : the elephant stay|stay[EW:stayed] here sit|sit[EW:sat] down and watch|watch[EW:watched].,and then the elephant stay here sit down and watch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(then) (and the) and the elephant said stay here.,then and the and the elephant said stay here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(um) giraffe want|want[EW:wanted] to [~_wanna] play with his airplane.,um giraffe want to play with his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,then : giraffe play/3s airplane now.,then giraffe plays airplane now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(then) (and) (and) and the elephant grab/ed to the giraffe[EW:giraffe/z] airplane [EU].,then and and and the elephant grabbed to the giraffe airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(then) (then) and the elephant (drop it) is drop[EW:dropping] *the airplane in the pool [EU].,then then and the elephant drop it is drop airplane in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(then) : and the giraffe *is mean to the elephant [EU].,then and the giraffe mean to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,then : the elephant go|go[EW:goes] to get (his) giraffe[EW:giraffe/z] airplane.,then the elephant go to get his giraffe airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,then (h he) elephant go|go[EW:goes] to try reach his airplane [EU].,then h he elephant go to try reach his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(and) (and then airplane) [~_I_mean] elephant (uh get/3s airplane) : [~_wait] (tr) try|try[Ew:tried] to get it.,and and then airplane elephant uh gets airplane tr try to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(then) : (then uh) and the elaphant can not.,then then uh and the elaphant can not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(then) : (then) and the elephant *is go/ing to get it in the : net [EU].,then then and the elephant going to get it in the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,then he get|get[EW:got] the net.,then he get the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,then he get|get[EW:got] the airplane.,then he get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,then he get|get[EW:got] the toy airplane back to giraffe.,then he get the toy airplane back to giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(then) (and) : and giraffe is so happy.,then and and giraffe is so happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(uh) (um) the dog want|want[EW:wanted] to [~_wanna] build a sandcastle.,uh um the dog want to build a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,so do/3s the rabbit.,so does the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(then) then the dog make|make[EW:made] a castle xxx now.,then then the dog make a castle x now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,and he finish/ed.,and he finished +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(then) then the rabbit dug sand in a pile.,then then the rabbit dug sand in a pile +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(then) and the rabbit drop/ed sand (in the) in the dog[EW:dog/z] castle.,then and the rabbit dropped sand in the in the dog castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(then) and then (then uh) the rabbit said why did you drop the sand?,then and then then uh the rabbit said why did you drop the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,and so is the dog [EU].,and so is the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(and) (and) and the dog cry|cry[EW:cried].,and and and the dog cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(and) and the rabbit did not need to.,and and the rabbit did not need to +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,and rabbit (and go to) and the dog go to get[EW:have] *a picnic [EU].,and rabbit and go to and the dog go to get picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,then he have|have[EW:has] *a picnic [EU].,then he have picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,we have a lot of food.,we have a lot of food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(then) : then the rabbit ate too much.,then then the rabbit ate too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,and then (then) the rabbit *is get/ing dizzy [EU].,and then then the rabbit getting dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,then there is a doctor with the rabbit.,then there is a doctor with the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,there is a doctor.,there is a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(and) and then (then) the dog pull/ed on his doctor[EW:doctor/z] arm.,and and then then the dog pulled on his doctor arm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,and he *is go/ing to make it feel better the rabbit [EU].,and he going to make it feel better the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,then and the dog just has time to go to the doctor.,then and the dog just has time to go to the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,and then we go.,and then we go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,and the dog stay|stay[EW:stayed] here.,and the dog stay here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,[~_okay] the dog get|get[EW:got] his wagon and a balloon.,the dog get his wagon and a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,then the dog stand|stand[EW:stands] here.,then the dog stand here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(and then) and then the rabbit point/3s to the balloon.,and then and then the rabbit points to the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,then the rabbit (tie/ed) tie/ed the balloon.,then the rabbit tied tied the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,then his balloon *is go/ing up [EU].,then his balloon going up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,and dog is mad (xxx).,and dog is mad x +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,and rabbit me too [EU].,and rabbit me too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,and there is[EW:are] more balloon/s when a man get|get[EW:got] it [EU].,and there is more balloons when a man get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,and the rabbit go|go[EW:went].,and the rabbit go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,and the (and the man go) rabbit (said) said to man to please *can I have a balloon [EU].,and the and the man go rabbit said said to man to please I have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,then he gave one five cent/s.,then he gave one five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,and there is no cash money.,and there is no cash money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(and) and then (his mommy I mean) his doctor gave him money.,and and then his mommy I mean his doctor gave him money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,or they gave it to these two.,or they gave it to these two +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,then he give him cash and get|get[EW:got] the balloon.,then he give him cash and get the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,then (he get to p) the the doctor give|give[EW:gave] the (the) money to the man.,then he get to p the the doctor give the the money to the man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,(and then) then he got to these two balloon/s [EU].,and then then he got to these two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/678.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,first : the elephant was bounce/ing a ball.,first the elephant was bouncing a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,a giraffe (d) come|come[EW:came] [~_past_tense_marked_on_noun:_giraffed_come].,a giraffe d come +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,the giraffe actually hit it in the pool.,the giraffe actually hit it in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,the giraffe was swim/ing : for it.,the giraffe was swimming for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,he got it.,he got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,: (and sh) and she was play/ing with it now.,and sh and she was playing with it now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,first she want/ed to go swim/ing :.,first she wanted to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,she want/ed to go on the diving board.,she wanted to go on the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,she was run/ing.,she was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,she slip/ed.,she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and she fell and hurt her knee.,and she fell and hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and then another elephant comed|come[EW:came] over.,and then another elephant comed over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,(and then he she pu) and then he put a bandaid on.,and then he she pu and then he put a bandaid on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and then she was feel/ing a lot better.,and then she was feeling a lot better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,then she sit|sit[EW:sat] down.,then she sit down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,she had no run/ing.,she had no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,(uh first she want to pla) the boy had a[EW:an] airplane.,uh first she want to pla the boy had a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and she want|want[EW:want/ed] to play with it.,and she want to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,he was fly/ing it.,he was flying it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and she stare/ed at it.,and she stared at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and then she took it away.,and then she took it away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,: then she (rek) threw it in the water.,then she rek threw it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,she [+..].,she +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,she threwed|throw[EW:threw] it into the water [+_bch].,she threwed it into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and then the giraffe was angry.,and then the giraffe was angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and then another elephant comed|come[EW:came] along.,and then another elephant comed along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,(he was try) (he) she was talk/ing about it.,he was try he she was talking about it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,(uh) she accidentally put it in.,uh she accidentally put it in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and then he start/ed to reach it.,and then he started to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,but he could not.,but he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,(and then) and then he was feel/ing sad.,and then and then he was feeling sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and then (um) a girl elephant comed|come[EW:came].,and then um a girl elephant comed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,(she) (she got a) she got it.,she she got a she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and she giveded|give[EW:gave] it back.,and she giveded it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,(now) now he was happy again.,now now he was happy again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,they are play/ing in the sand.,they are playing in the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,then a bunny comed|come[EW:came] in.,then a bunny comed in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,the bunny was make/ing a castle.,the bunny was making a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and the dog was make/ing : (a) a big castle : with stuff on it.,and the dog was making a a big castle with stuff on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,(then they dump/ed it on) they dump/ed it.,then they dumped it on they dumped it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and it spill/ed.,and it spilled +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,(it) : and then the dog build|build[EW:built] it again.,it and then the dog build it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,they went for a picnic.,they went for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,they ate.,they ate +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,the rabbit was get/ing full.,the rabbit was getting full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and he felt dizzy.,and he felt dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and then a bunny come|come[EW:came] along : a bunny nurse.,and then a bunny come along a bunny nurse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,the dog : pull/ed on the nurse.,the dog pulled on the nurse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,(he felt) : the doctor help/ed the other bunny.,he felt the doctor helped the other bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and then he was feel/ing better.,and then he was feeling better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,the dog was (pull/ing a : uh : a) pull/ing [~_what's_that__thing_a_box_like_a_box_and_they_have_wheels_like_four_on_a__car] [~_EXA_tells_CHI_to_decide] a car.,the dog was pulling a uh a pulling a car +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and then : the bunny want/ed to have (a balloon) the balloon.,and then the bunny wanted to have a balloon the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,he took it off.,he took it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,the dog was not happy.,the dog was not happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,(it fe) (it was) it was : go/ing up.,it fe it was it was going up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and then it[EW:he] lost it.,and then it lost it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and the dog felt mad.,and the dog felt mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and then there is[EW:were] some more balloon/s.,and then there is some more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and then he want/ed one.,and then he wanted one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,he give|give[EW:gave] him the five one.,he give him the five one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,he did not have any money.,he did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,then another nurse come|come[EW:came].,then another nurse come +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,he want/ed the balloon.,he wanted the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and she gaved|give[EW:gave] him it : two penny/s [EU].,and she gaved him it two pence +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/508.slt,and then they have|have[EW:had] balloon/s.,and then they have balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,there was once an elephant : with some ball/s and[-:] a giraffe.,there was once an elephant with some balls and a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,the elephant/z (ball/s) : ball fell into the water.,the elephant's balls ball fell into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and[-:] the giraffe had his hand out : almost ready to get it.,and the giraffe had his hand out almost ready to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and[-:] : the elephant/z : (uh um) hand/s are almost cover/ing her eyes.,and the elephant's uh um hands are almost covering her eyes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and the giraffe is swim/ing in the water try/ing to get her ball back for her.,and the giraffe is swimming in the water trying to get her ball back for her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and : he swim/3s back *and give/3s her ball to her [EU].,and he swims back gives her ball to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and she is : smile/ing very happy.,and she is smiling very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and[~!_laughing] she is very happy that (she) he got her ball back.,and she is very happy that she he got her ball back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and then[-:] : it look/3s like : she want/3s to kiss him.,and then it looks like she wants to kiss him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,the very end[~!_laughing] [+_bch].,the very end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and (he is)[~!_laughing] : it was funny.,and he is it was funny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,the elephant and the giraffe saw : a swimming pool : and were stand/ing there.,the elephant and the giraffe saw a swimming pool and were standing there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,the elephant : was[-:] go/ing to run and jump into the pool.,the elephant was going to run and jump into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,the elephant slip/3s[!] on the water on the side.,the elephant slips on the water on the side +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,she fall/3s down and hurt/3s her knee.,she falls down and hurts her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,she start/3s cry/ing.,she starts crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and the lifeguard come/3s.,and the lifeguard comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,he give/3s her a bandage.,he gives her a bandage +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,he help/3s her walk (to the ch) to the[-:] bench.,he helps her walk to the ch to the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,(then) then he point/3s to the sign no run/ing.,then then he points to the sign no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and[-:] : she look/3s like she is done something wrong [EU].,and she looks like she is done something wrong +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,there was a : giraffe and a elephant.,there was a giraffe and a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and the giraffe is hold/ing a[EW:an] (uh) airplane in his hand.,and the giraffe is holding a uh airplane in his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,: the elephant : has her eyes wide open.,the elephant has her eyes wide open +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and the giraffe is stick/ing out (hi) : his tongue (on the si) on the side of his face : (drive/ing his) [~_um_not_driving] play/ing with his plane and show/ing her.,and the giraffe is sticking out hi his tongue on the si on the side of his face driving his playing with his plane and showing her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,she take/3s it right out of (her) his hand/s and go/3s like this (arou) and look/3s at it.,she takes it right out of her his hands and goes like this arou and looks at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and she drop/3s it into the water.,and she drops it into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,the giraffe : get/3s : kind of angry with the elephant because she drop/ed the (plane) airplane in the water.,the giraffe gets kind of angry with the elephant because she dropped the plane airplane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,(the life) : they get the lifeguard.,the life they get the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and the lifeguard come/3s.,and the lifeguard comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and he look/3s : at the plane in the water.,and he looks at the plane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,the elephant : (ask/3s him to[-:] get) (as) ask/3s him nicely to get the plane out of the water for (her[-:]) her friend.,the elephant asks him to get as asks him nicely to get the plane out of the water for her her friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,the lifeguard try/3s to get it.,the lifeguard tries to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,but he can not reach it.,but he can not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,the lifeguard say/3s I can not reach[!] it!,the lifeguard says I can not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and then : (uh) a nice : lady : elephant come/3s with a net.,and then uh a nice lady elephant comes with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,she get/3s the plane out of the water.,she gets the plane out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,she give/3s it back to the : little giraffe.,she gives it back to the little giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and then he is happy again.,and then he is happy again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,there was a bunny who was play/ing with a shovel.,there was a bunny who was playing with a shovel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and then another[!] bunny came.,and then another bunny came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,the other bunny ask/3s : if he (c) : could play with : him and help : him build a sandcastle.,the other bunny asks if he c could play with him and help him build a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and she say/3s yes.,and she says yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and[-:] : then (he try/3s to) she try/3s to dump the : bucket on the sandcastle.,and then he tries to she tries to dump the bucket on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,it break/3s her sandcastle.,it breaks her sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,she cry/3s because she is try/ing to get it back up.,she cries because she is trying to get it back up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and it is all broken.,and it is all broken +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,there was a bunny[-:] who was walk/ing with a picnic basket.,there was a bunny who was walking with a picnic basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and the other bunny say/3s hi.,and the other bunny says hi +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,the bunny and : the[-:] other bunny : take their picnic (baks) basket/s : and go find a nice[-:] spot on the ground.,the bunny and the other bunny take their picnic baks baskets and go find a nice spot on the ground +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,(they) they ate their lunch.,they they ate their lunch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and one of the bunny[EW:bunnies][!] : has eaten very very fast.,and one of the bunny has eaten very very fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and now he has got a stomachache.,and now he has got a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,he feel/3s really dizzy.,he feels really dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,the other : bunny go/3s to get : (a) a doctor[!] bunny.,the other bunny goes to get a a doctor bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and she say/3s come here come here.,and she says come here come here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,(my friend is) my friend is not feel/ing so good!,my friend is my friend is not feeling so good +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and so she pull/3s her : and pull/3s her until she get/3s there.,and so she pulls her and pulls her until she gets there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and : she take/3s her thermometer out of her : bucket.,and she takes her thermometer out of her bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and[-:] she check/3s his temperature.,and she checks his temperature +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and then : he is all better.,and then he is all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and : she is walk/ing off with him.,and she is walking off with him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,there was a bunny with a : balloon and a wagon pull/ing.,there was a bunny with a balloon and a wagon pulling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and[-:] she say/3s hi to her friend.,and she says hi to her friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,her friend : want/3s to see the balloon.,her friend wants to see the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,so he put/3s his hand out ready to grab (i) her balloon.,so he puts his hand out ready to grab i her balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,he try/3s to untie her balloon.,he tries to untie her balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,he untie/3s it.,he unties it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and he let/3s go by accident.,and he lets go by accident +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and the balloon fly/3s up : into the sky.,and the balloon flies up into the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,it fly/3s up so high that : (the) : the girl whose balloon that belong/ed to [~_sighs] : (um) : rose too high up to the sky to get it [EU].,it flies up so high that the the girl whose balloon that belonged to um rose too high up to the sky to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and then (sh) : she is get/ing really mad at him.,and then sh she is getting really mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,the other guy : see/3s (another) : mister balloon guy.,the other guy sees another mister balloon guy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and he has a (bu) whole bunch of balloon/s.,and he has a bu whole bunch of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and he think/3s oh[!] well I should go get my friend another[!] balloon!,and he thinks oh well I should go get my friend another balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and he go/3s one balloon please[-:]!,and he goes one balloon please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and : he[-:] look/3s in his pocket/s.,and he looks in his pockets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and he do/3s not have any money.,and he does not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and it say/3s on a balloon balloon/s five cent/s.,and it says on a balloon balloons five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,(his girl come) (the) : the girl bunny come/3s and look/3s at the balloon/s.,his girl come the the girl bunny comes and looks at the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,then : the other bunny go/3s : run/ing : to (a) : a lady bunny : and ask/3s her for five cent/s.,then the other bunny goes running to a a lady bunny and asks her for five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,and then the lady pay/3s ten cent/s because five plus five equal/3s ten for both[!] of them to have a balloon.,and then the lady pays ten cents because five plus five equals ten for both of them to have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,then they were both[!] happy : because they got balloon/s.,then they were both happy because they got balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/869.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,once upon a time : there was a[EW:an] elephant : and a giraffe.,once upon a time there was a elephant and a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,: and they all got together.,and they all got together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,: and then they falled|fall[EW:fell] in the swimming pool.,and then they falled in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,: and then little elephant help/ed him.,and then little elephant helped him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,: and then it was all wet.,and then it was all wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,once upon a time they want/ed to go in a pool.,once upon a time they wanted to go in a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and the little guy said you could go in the pool.,and the little guy said you could go in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and then he went in there.,and then he went in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,: a long time ago her[EW:she] was run/ing.,a long time ago her was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and her[EW:she] falled|fall[EW:fell].,and her falled +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and then her[EW:she] hurt herself.,and then her hurt herself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,: and then the team : elephant help/ed her.,and then the team elephant helped her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,: and then it hurted|hurt[EW:hurt].,and then it hurted +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and then it feeled|feel[EW:felt] all better.,and then it feeled all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and he said do not do that again.,and he said do not do that again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,once upon a time : elephant got [<~?_in_two] into [>~?_in_two] friend/s again [EU].,once upon a time elephant got into friends again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,he like/3s play/ing with his airplane.,he likes playing with his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and then : they went in the pool.,and then they went in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and then it went in the water.,and then it went in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,(and) and the giraffe be mad at the elephant [EU].,and and the giraffe be mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and then it sinked|sink[EW:sank].,and then it sinked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,he said help (this) get this airplane.,he said help this get this airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,but he could not get it out : because it was too far away.,but he could not get it out because it was too far away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and then her[EW:she] try/ed it.,and then her tried it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and it got : open [EU].,and it got open +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and he help[EW:helped] : him.,and he help him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and he like/ed the airplane now.,and he liked the airplane now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,once upon a time (they were) they were build/ing a sandcastle.,once upon a time they were they were building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and then it maked|make[EW:made] them more [EU].,and then it maked them more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,: and then they put sand on it.,and then they put sand on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and then they want/ed to make it again.,and then they wanted to make it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and then he did not want to because he was cry/ing.,and then he did not want to because he was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and that is the end [+_bch].,and that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,once upon a time they were have/ing a picnic.,once upon a time they were having a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and then they took all the food to eat.,and then they took all the food to eat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and he was too full.,and he was too full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,he need/ed a little rest.,he needed a little rest +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and then : a little man came by.,and then a little man came by +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,(and) and he was suppose/ed to help us.,and and he was supposed to help us +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and he eat[EW:ate] too much.,and he eat too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,so they went along.,so they went along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,(once upon) once upon a time he had a balloon : with a wagon.,once upon once upon a time he had a balloon with a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and then he want/ed it.,and then he wanted it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and then he could have it.,and then he could have it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,but then it got away.,but then it got away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and then they were not suppose/ed to take it off then.,and then they were not supposed to take it off then +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and there was[EW:were] extra balloon/s.,and there was extra balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,he want/ed one.,he wanted one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,: and that one said fifty dollar/s.,and that one said fifty dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,(so h) so they got a different one a balloon.,so h so they got a different one a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,(and then) and then the daddy was wait/ing for him.,and then and then the daddy was waiting for him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,he said daddy can I have one?,he said daddy can I have one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and then he[?] gave him a dollar to get one.,and then he gave him a dollar to get one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and then they both got one.,and then they both got one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/429.slt,and that is the the end [+_bch].,and that is the the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,(Elephant s) elephant was play/ing his candy bar/s [EU].,Elephant s elephant was playing his candy bars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,(and) (and gi) : and giraffe want/ed some.,and and gi and giraffe wanted some +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,: and one went in the sandbox.,and one went in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,: but actually that was the water.,but actually that was the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,then : giraffe got it back to the elephant.,then giraffe got it back to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,then : elephant look/ed : happy (to) to giraffe.,then elephant looked happy to to giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,They want/ed to go in the swimming pool.,They wanted to go in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,(but) but they did not have (their pool) their bathing suit/s.,but but they did not have their pool their bathing suits +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,but actually they did have their bathing suits on.,but actually they did have their bathing suits on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,but there was slippery [EU].,but there was slippery +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,then (there knee) she fell down.,then there knee she fell down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and (she) she hurt her knee.,and she she hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and then her brother came to help her.,and then her brother came to help her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,it really hurted|hurt[EW:hurt].,it really hurted +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,: so (the) (the) the brother elephant put on the bandaid on the sister elephant.,so the the the brother elephant put on the bandaid on the sister elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and then it was still hurt/ing.,and then it was still hurting +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and the brother one said go home.,and the brother one said go home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,So : the piggy want/ed the giraffe/z airplane.,So the piggy wanted the giraffe's airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,except it went round and round and round.,except it went round and round and round +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and the piggy walk/ed round and round and round.,and the piggy walked round and round and round +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,(and) and giraffe did not want piggy to break[!] it.,and and giraffe did not want piggy to break it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,so it went round and round and round.,so it went round and round and round +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,then the airplane fell in the water.,then the airplane fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and it was go/ing deeper.,and it was going deeper +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and (the p) (the elephant) the elephant[EW:elephant/z] brother came to seize the airplane.,and the p the elephant the elephant brother came to seize the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,then the sister said it went deeper.,then the sister said it went deeper +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,now it was go/ing deeper.,now it was going deeper +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,he did not want to [~_wanna] fall in the water[-:] because he was wear/ing clothes.,he did not want to fall in the water because he was wearing clothes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,but : the giraffe was start/ing to cry.,but the giraffe was starting to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and then (the) the lady was try[EW:trying] *to getting[EW:get] it [EU].,and then the the lady was try getting it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,: and then : the lady was try/ing to get it.,and then the lady was trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,she was try/ing to get it (at the um) .,she was trying to get it at the um +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,: and then the giraffe was start/ing to be happy.,and then the giraffe was starting to be happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,when you are happy sometime/s people cry.,when you are happy sometimes people cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,that is right.,that is right +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,(then) then the lady got (the) the airplane back to the giraffe.,then then the lady got the the airplane back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,(and) and (the) the elephant/z sister was really[-:] happy to like (uh) the giraffe [EU].,and and the the elephant's sister was really happy to like uh the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,(th) there were[EW:was] a dog that was make/ing a sandcastle.,th there were a dog that was making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and then (the) the bunny want/ed to do it too.,and then the the bunny wanted to do it too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and the dog did not want the bunny to.,and the dog did not want the bunny to +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and : then the bunny was mad too because it all fell down.,and then the bunny was mad too because it all fell down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and (the bun) then the dog was cry/ing.,and the bun then the dog was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,The bunny was go/ing for a picnic too.,The bunny was going for a picnic too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and the doggy was too.,and the doggy was too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,bunny was really hungry.,bunny was really hungry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,then he was really full.,then he was really full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,the bunny/z tummy hurted|hurt[EW:hurt].,the bunny's tummy hurted +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,then doggy saw bunny/z mom.,then doggy saw bunny's mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,then doggy pull/ed on the doctor bunny.,then doggy pulled on the doctor bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,the doctor said (he is) he is too full.,the doctor said he is he is too full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,(the) the (doc) doctor : fix/ed the bunny.,the the doc doctor fixed the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and the bunny was not full any more.,and the bunny was not full any more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,The end [+_bch].,The end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,Doggy was pull/ing his : wagon with a balloon on it.,Doggy was pulling his wagon with a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and bunny was run/ing at her.,and bunny was running at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,(bun) bunny said I like that balloon.,bun bunny said I like that balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and doggy said that is mine.,and doggy said that is mine +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,(and then he s) then bunny (s) was try/ing to tie it off.,and then he s then bunny s was trying to tie it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,(and) and doggy (was m s) she was about to cry.,and and doggy was m s she was about to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and then it was all fly/ing up to the air.,and then it was all flying up to the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and the bunny want/ed it.,and the bunny wanted it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and the doggy want/ed it.,and the doggy wanted it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,now the balloon pop/ed.,now the balloon popped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,(and) and they are xxx.,and and they are x +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and bunny was : really : kind of nervous.,and bunny was really kind of nervous +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,(and the) and the dog was mad.,and the and the dog was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,then there was a bunny rabbit : and lot/s : of balloon/s.,then there was a bunny rabbit and lots of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,lot/s of what?,lots of what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,balloon/s [+_bch].,balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,(and) and bunny ask/ed can I have a balloon : (said the ma) : said bunny.,and and bunny asked can I have a balloon said the ma said bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,(but bunny) but bunny did not have five dollar/s.,but bunny but bunny did not have five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and bunny did not get a balloon.,and bunny did not get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,(but doc) : but bunny ask/ed doctor.,but doc but bunny asked doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,he was stand/ing right : there.,he was standing right there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and bunny ask/ed doctor can I get : a balloon?,and bunny asked doctor can I get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and (then) then bunny and doggy was[EW:were] happy because there was[EW:were] two balloon/s for them.,and then then bunny and doggy was happy because there was two balloons for them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/419.slt,and (then they were all) then they were happy (from) (from) from the bunny doctor [EU].,and then they were all then they were happy from from from the bunny doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,once : (a) : a giraffe and an elephant were play/ing with a ball.,once a a giraffe and an elephant were playing with a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,the ball bounce/ed into the water.,the ball bounced into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,the giraffe (try/ed) : was swim/ing to go get it.,the giraffe tried was swimming to go get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,he got it.,he got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,and[-:] the elephant took it.,and the elephant took it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,once a[-:] elephant and a giraffe : were : (l) stare/ing into the water of the pool.,once a elephant and a giraffe were l staring into the water of the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,(the elephant said : let us go a) : the elephant ran and said : let us go in!,the elephant said let us go a the elephant ran and said let us go in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,the elephant slip/ed.,the elephant slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,the : giraffe try/ed to run and : get her.,the giraffe tried to run and get her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,and then she hurt her knee.,and then she hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,and then the lifeguard came : to look at it.,and then the lifeguard came to look at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,and he put a bandage[!] on it.,and he put a bandage on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,and then he said : do not : run on the deck any more.,and then he said do not run on the deck any more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,oh no that is right now[~!_laughing] [+_bch].,oh no that is right now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,see look at the sign : he said.,see look at the sign he said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,you should have paid attention to the sign!,you should have paid attention to the sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,once a giraffe and an elephant were play/ing with a toy plane.,once a giraffe and an elephant were playing with a toy plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,they were[-:] : play/ing with it just : at the edge of the water.,they were playing with it just at the edge of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,the elephant took the plane from the giraffe and start/ing play/ing with it.,the elephant took the plane from the giraffe and starting playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,and then she drop/ed it in the water.,and then she dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,and then the giraffe got mad (at h) at the elephant.,and then the giraffe got mad at h at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,and the lifeguard came over.,and the lifeguard came over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,and : the elephant said I drop/ed the plane into the pool[!] by accident.,and the elephant said I dropped the plane into the pool by accident +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,then the lifeguard try/ed to reach it.,then the lifeguard tried to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,but he could not.,but he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,and then the giraffe start/ed cry/ing.,and then the giraffe started crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,and then a girl with a net came.,and then a girl with a net came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,she[-:] got the plane out of the water with the net : and gave it back to the giraffe.,she got the plane out of the water with the net and gave it back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,and then they : start/ed play/ing.,and then they started playing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,(ha) and then : they : did not want to[:_wanna] play : by the water again with the plane.,ha and then they did not want to play by the water again with the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,once there was a rabbit and : a dog : make/ing a sandcastle[!].,once there was a rabbit and a dog making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,the dog was : smooth/ing out the top.,the dog was smoothing out the top +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,and then the rabbit put a whole bunch of sand on.,and then the rabbit put a whole bunch of sand on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,stupid dog.,stupid dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,and then it : broke.,and then it broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,(and then the rabbit) : (and he[-:] did) and he should not have done it.,and then the rabbit and he did and he should not have done it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,and the dog : look/ed surprise/ed.,and the dog looked surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,and then the dog was try to (be) : rebuilt|rebuild[EW:rebuild] it very hard [EU].,and then the dog was try to be rebuilt it very hard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,but : she could not.,but she could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,once (there) a rabbit and a dog went for a picnic.,once there a rabbit and a dog went for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,the rabbit was eat/ing very fast.,the rabbit was eating very fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,(he got) : he was not hungry any more.,he got he was not hungry any more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,he got dizzy[!].,he got dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,and then : he faint/ed.,and then he fainted +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,(and) [~_no] and then the dog ran up and got a lady and : told her to come see (the) : if the rabbit was okay.,and and then the dog ran up and got a lady and told her to come see the if the rabbit was okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,the lady told the rabbit that you should not eat : food that fast.,the lady told the rabbit that you should not eat food that fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,and then the lady walk/ed off with the rabbit.,and then the lady walked off with the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,(once : a) : once a dog was : wheel/ing around her balloon in a wagon.,once a once a dog was wheeling around her balloon in a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,a rabbit came : and : said nice balloon.,a rabbit came and said nice balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,the rabbit untie/ed the balloon : and then it : float/ed into the sky.,the rabbit untied the balloon and then it floated into the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,the dog got very mad at the rabbit.,the dog got very mad at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,the rabbit saw : another rabbit carry/ing balloon/s for sale.,the rabbit saw another rabbit carrying balloons for sale +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,the rabbit ask/ed if he could have one.,the rabbit asked if he could have one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,but he said they are (five dollar/s : uh) five cent/s.,but he said they are five dollars uh five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,and he did not have any money!,and he did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,they look/ed surprise/ed.,they looked surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,and then (he) they ask/ed another rabbit for some money.,and then he they asked another rabbit for some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,(they gave her some money) : they gave the rabbit some money : to buy two balloon/s.,they gave her some money they gave the rabbit some money to buy two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/961.slt,and then they both[!] had a balloon.,and then they both had a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,a giraffe name/ed : Savannah and an elephant name/ed Tutu : were : play/ing ball beside the[-:] pool.,a giraffe named Savannah and an elephant named Tutu were playing ball beside the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,(um) : Tutu drop/3s the : (b) ball into the water.,um Tutu drops the b ball into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Savannah jump/3s in and (s) start/3s swimming towards the ball.,Savannah jumps in and s starts swimming towards the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Savannah get/3s the ball and hand/3s it to Tutu.,Savannah gets the ball and hands it to Tutu +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,(Sava) Savannah get/3s out.,Sava Savannah gets out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,and : Tutu is very happy.,and Tutu is very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Tutu and Savannah are get/ing ready to jump into the : pool.,Tutu and Savannah are getting ready to jump into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Tutu say/3s she is go/ing to : go : over to the diving board.,Tutu says she is going to go over to the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Tutu run/3s.,Tutu runs +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,and she slip/3s on the wet deck.,and she slips on the wet deck +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,(she) : she got a big scrape when she fell.,she she got a big scrape when she fell +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,a lifeguard come/3s run/ing over.,a lifeguard comes running over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,he put/3s a bandaid : on : Tutu/z knee.,he puts a bandaid on Tutu's knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,the lifeguard help/3s : Tutu back to Savannah.,the lifeguard helps Tutu back to Savannah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,the lifeguard : tell/3s Savannah very sternly : never run on the deck.,the lifeguard tells Savannah very sternly never run on the deck +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Tutu and Savannah are play/ing with Savannah/z new airplane by the pool.,Tutu and Savannah are playing with Savannah's new airplane by the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Savannah show/3s Tutu how high he can make his airplane fly.,Savannah shows Tutu how high he can make his airplane fly +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Tutu : grab/3s the airplane out of Savannah/z hand/s.,Tutu grabs the airplane out of Savannah's hands +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,she accidentally drop/3s it in the water.,she accidentally drops it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Savannah get/3s really mad.,Savannah gets really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,they call the lifeguard.,they call the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,(he ha) he has to think for a while before : he figure/3s out : how[-:] to get the plane.,he ha he has to think for a while before he figures out how to get the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Tutu : say/3s : she accidentally drop/ed it in the water.,Tutu says she accidentally dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,the lifeguard stretch/3s as far as he can.,the lifeguard stretches as far as he can +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,but he can not get it.,but he can not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Savannah start/3s cry/ing : really : loud.,Savannah starts crying really loud +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Tutu feel/3s really sorry.,Tutu feels really sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,then a lady come/3s by with a net.,then a lady comes by with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,(she is said) she say/3s : she would get the plane out for them.,she is said she says she would get the plane out for them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,the lady : put/3s the net into the water : and fish/3s the plane out.,the lady puts the net into the water and fishes the plane out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,then she hand/3s it to Savannah.,then she hands it to Savannah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,and (he) he is really happy.,and he he is really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,he hug/3s his : plane.,he hugs his plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,and (s) : Tutu is happy too.,and s Tutu is happy too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,(dog was) Dog was make/ing : a sandcastle.,dog was Dog was making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,and Rabbit was fill/ing a bucket with sand.,and Rabbit was filling a bucket with sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Rabbit : lift/3s the bucket and dump/3s all the sand out onto Dog/z : finish/ed castle.,Rabbit lifts the bucket and dumps all the sand out onto Dog's finished castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,(r) Rabbit did not realize that all the sand he had put into the bucket : was so heavy that it would : destroy the : castle.,r Rabbit did not realize that all the sand he had put into the bucket was so heavy that it would destroy the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Dog start/3s to cry.,Dog starts to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Rabbit feel/3s very sorry.,Rabbit feels very sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Dog and Rabbit are go/ing to a picnic.,Dog and Rabbit are going to a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,(they) they are each bring/ing their own picnic basket.,they they are each bringing their own picnic basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,: Rabbit dump/3s : (all of the) : all of his food out of his basket : while Dog take/3s thing/s out one at a time.,Rabbit dumps all of the all of his food out of his basket while Dog takes things out one at a time +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Rabbit (hur) hurry/3s to eat all his food.,Rabbit hur hurries to eat all his food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Dog : be/ing polite : eat/3s it very slowly.,Dog being polite eats it very slowly +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,soon Rabbit get/3s a stomachache.,soon Rabbit gets a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,fortunately a doctor is walk/ing down the road.,fortunately a doctor is walking down the road +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Dog : run/3s over and tell/3s : the doctor about Rabbit.,Dog runs over and tells the doctor about Rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Dog show/3s her (where th) where Rabbit is : and tell/3s her : he has a bad stomachache.,Dog shows her where th where Rabbit is and tells her he has a bad stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,the doctor say/3s open wide and say ah.,the doctor says open wide and say ah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,soon : Rabbit feel/3s better.,soon Rabbit feels better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Dog is (push/ing a wagon) : [~_or] pull/ing a wagon : with a balloon tie/ed to it.,Dog is pushing a wagon pulling a wagon with a balloon tied to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Rabbit come/3s walk/ing down the road and say/3s : what a nice balloon you have there.,Rabbit comes walking down the road and says what a nice balloon you have there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,he start/3s untie/ing it.,he starts untying it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Dog do/3s not think that is a very good idea.,Dog does not think that is a very good idea +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Rabbit let/3s go.,Rabbit lets go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,and the balloon start/3s float/ing away.,and the balloon starts floating away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,they both run and try and catch it.,they both run and try and catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Dog get/3s very[!] mad.,Dog gets very mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Rabbit watch/3s the balloon go up and up.,Rabbit watches the balloon go up and up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,they see : a balloon salesman : carry/ing a whole : set of balloon/s.,they see a balloon salesman carrying a whole set of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Rabbit run/3s up to him and ask/3s can I have one of those balloon/s please?,Rabbit runs up to him and asks can I have one of those balloons please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,the : balloon : salesman pull/3s down a balloon : that say/3s balloon/s five cent/s.,the balloon salesman pulls down a balloon that says balloons five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,(dog) neither Dog or Rabbit have five cent/s.,dog neither Dog or Rabbit have five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Rabbit run/3s up to his mother and say/3s : can I have ten cent/s to buy two balloon/s?,Rabbit runs up to his mother and says can I have ten cents to buy two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,the mother look/3s puzzle/ed.,the mother looks puzzled +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,(why would) she think/3s why would they need a balloon?,why would she thinks why would they need a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,she do/3s it anyway.,she does it anyway +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,so : Dog and[!] Rabbit get a balloon.,so Dog and Rabbit get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/861.slt,Dog : and Rabbit : are very happy that they both have balloon/s.,Dog and Rabbit are very happy that they both have balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,(um : a li) a[EW:an] elephant and a giraffe : (are gonna um) are play/ing : around a pool.,um a li a elephant and a giraffe are gonna um are playing around a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and they take a ball.,and they take a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and : by accident (it ffff) (they) they drop/ed it in the pool.,and by accident it ffff they they dropped it in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,so the giraffe jump/3s in and (um) try/3s to get the ball.,so the giraffe jumps in and um tries to get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and he get/3s it.,and he gets it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and the elephant is really happy.,and the elephant is really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,(and then they) and then they can play catch.,and then they and then they can play catch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,(an elephant) an elephant and a giraffe want to go swim/ing.,an elephant an elephant and a giraffe want to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and (the) the elephant is run/ing.,and the the elephant is running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and there[EW:they] is[EW:are] not allow/ed to be run/ing along the pool because you might slip and fall.,and there is not allowed to be running along the pool because you might slip and fall +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and it is slippery.,and it is slippery +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and she fall/3s and hurt/3s her knee.,and she falls and hurts her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and the giraffe (um) run/3s and tell/3s the lifeguard.,and the giraffe um runs and tells the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,the lifeguard come/3s.,the lifeguard comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and he see/3s that the elephant is cry/ing.,and he sees that the elephant is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,so he put/3s the bandaid (on um) on her cut.,so he puts the bandaid on um on her cut +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,(and she) and the lifeguard put/3s her down (on the) on a bench.,and she and the lifeguard puts her down on the on a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and the lifeguard tell/3s her not to run.,and the lifeguard tells her not to run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,(um) the giraffe get/3s a new (toy air) toy airplane.,um the giraffe gets a new toy air toy airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and the elephant ask/3s if she can play with it.,and the elephant asks if she can play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and the giraffe said sure.,and the giraffe said sure +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and he show/3s : her how to play with it.,and he shows her how to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,so she try/3s.,so she tries +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,(and : sh) and[-:] she is run/ing with it.,and sh and she is running with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,but by accident she drop/ed it in the water.,but by accident she dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and it sink/3s.,and it sinks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and the giraffe is really mad.,and the giraffe is really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and he tell/3s the lifeguard.,and he tells the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and the lifeguard is disappoint/ed.,and the lifeguard is disappointed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and the elephant say/3s she did by accident.,and the elephant says she did by accident +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,(the) and the lifeguard try/3s to get it.,the and the lifeguard tries to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and he can not reach it.,and he can not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and then : it start/3s to sink.,and then it starts to sink +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and the giraffe start/3s to cry.,and the giraffe starts to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,then : (um : um : um :) the elephant/z mom come/3s with a net.,then um um um the elephant's mom comes with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,(and) and she try/3s to scoop it out.,and and she tries to scoop it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,(and) : and she get/3s it.,and and she gets it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and she give/3s it back to the : giraffe.,and she gives it back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,the giraffe hug/3s his toy airplane.,the giraffe hugs his toy airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and the elephant is happy for the giraffe.,and the elephant is happy for the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,there was a rabbit and a dog.,there was a rabbit and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and they love/ed to play in the sandbox.,and they loved to play in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,the dog is make/ing a castle.,the dog is making a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and the rabbit is (um) fill/ing a bucket so he can add on to the castle.,and the rabbit is um filling a bucket so he can add on to the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and he dump/3s it on the dog/z castle.,and he dumps it on the dog's castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and the dog : (um) do/3s not like that.,and the dog um does not like that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and she is sad.,and she is sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,she start/3s to cry because that was her castle.,she starts to cry because that was her castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,(there was) the doggy and the rabbit are go/ing to go for a picnic in a forest.,there was the doggy and the rabbit are going to go for a picnic in a forest +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and the rabbit love/3s carrot/s.,and the rabbit loves carrots +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,so he unpack/3s all his food.,so he unpacks all his food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and he find/3s a carrot.,and he finds a carrot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and he : start/3s to eat it.,and he starts to eat it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and the dog unpack/3s her food.,and the dog unpacks her food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and she eat/3s her sandwich (and her juice box) and drink/3s her juice box.,and she eats her sandwich and her juice box and drinks her juice box +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,(the rabbit eat) the rabbit eat/3s so fast (that he is) that his tummy hurt/3s.,the rabbit eat the rabbit eats so fast that he is that his tummy hurts +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,(so the dog go/3s and) and there is a doctor walk/ing in the forest.,so the dog goes and and there is a doctor walking in the forest +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and the dog rush/3s over to tell the doctor.,and the dog rushes over to tell the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and : she pull/3s the doctor over to help the rabbit.,and she pulls the doctor over to help the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and she say/3s that (sh) the rabbit ate too much.,and she says that sh the rabbit ate too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and then the rabbit went home with the doctor.,and then the rabbit went home with the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and he felt better.,and he felt better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,(one day a rabbit and a dog are play/ing in a park) one day : a dog is play/ing in the park.,one day a rabbit and a dog are playing in a park one day a dog is playing in the park +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,(and : he) and she see/3s her friend rabbit.,and he and she sees her friend rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,(and she show/3s) and the rabbit point/3s to her balloon.,and she shows and the rabbit points to her balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and he ask/3s if he can play with it.,and he asks if he can play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,(and : the rabbit say/3s) and : the dog is think/ing about it.,and the rabbit says and the dog is thinking about it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,(and) : and (sh) before she could say anything the rabbit untie/ed the balloon.,and and sh before she could say anything the rabbit untied the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and it start/ed float/ing up into the air.,and it started floating up into the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,(and there were) and (um) the dog (s) got really mad at the (um) rabbit.,and there were and um the dog s got really mad at the um rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and the rabbit see/3s (um more) (a balloo) a person with balloon/s.,and the rabbit sees um more a balloo a person with balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and he ask/3s if he could buy one.,and he asks if he could buy one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,but he check/3s in his pocket/s.,but he checks in his pockets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,(and there is noth) (and there is) and he has no money.,and there is noth and there is and he has no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,(and the) (and the balloon) and the guy with the balloon say/3s you will have to have money to buy one.,and the and the balloon and the guy with the balloon says you will have to have money to buy one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,so : the rabbit run/3s and ask/3s the doctor : and ask/3s (if he could buy uh) if she could buy a balloon for the dog.,so the rabbit runs and asks the doctor and asks if he could buy uh if she could buy a balloon for the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and she give/3s the money to the (um :) guy with the balloon/s.,and she gives the money to the um guy with the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and they each get a balloon.,and they each get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/677.slt,and then they are both happy.,and then they are both happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,one day[!] : her[EW:she] is[EW:was] bounce/ing a ball.,one day her is bouncing a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,then the giraffe came and say|say[EW:said] hi.,then the giraffe came and say hi +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,they want to[-:] swim.,they want to swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,the giraffe[!] jump/ed[-:][!] in the water.,the giraffe jumped in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,then he swam and swam and swam and swam and swam.,then he swam and swam and swam and swam and swam +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,the ball[-:] keep/3s go/ing far[EW:further].,the ball keeps going far +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,so he pass|pass[EW:passed] the ball.,so he pass the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,and then he[-:] just stay|stay[EW:stayed] in the water.,and then he just stay in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,then he came out.,then he came out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,and then her[EW:she] [-:] want|want[EW:wanted] to play with him[!].,and then her want to play with him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,that is it [+_bch].,that is it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,one day[-:] : the giraffe and[!] the elephant : want to jumping[EW:jump] off the board.,one day the giraffe and the elephant want to jumping off the board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,so the elephant went jump[EW:jumping] [!] off the board.,so the elephant went jump off the board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,and then her[EW:she] [!] run|run[EW:ran] so[-:][!] fast.,and then her run so fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,then her[-:][!] : ouch [EU]!,then her ouch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,(sher) then : him[EW:he] said : (why) why were you run[EW:running] so fast.,sher then him said why why were you run so fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,you can not.,you can not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,you *are suppose/ed to walk [EU].,you supposed to walk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,and then her[EW:she] start/ed cry/ing.,and then her started crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,then the lifeguard came.,then the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,and then : her daddy : put a bandaid on.,and then her daddy put a bandaid on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,and then that is[?] (uh) : feel[!] better [EU].,and then that is uh feel better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,so[-:] : her[EW:she] just sit|sit[EW:sat] down and : be quiet[?] [~_/kwat/] [EU].,so her just sit down and be quiet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,that is it [+_bch].,that is it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,one day[-:] : her[EW:she] said[-:] : I want to play with the airplane.,one day her said I want to play with the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,then him[EW:he] [-:][!] : flied|fly[EW:flew] it.,then him flied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,and then : her[EW:she] grab|grab[EW:grabbed] [!] it from him[!].,and then her grab it from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,and then her[EW:she] throwed|throw[EW:threw] it in the water.,and then her throwed it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,and then : him[EW:he] got mad at her.,and then him got mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,and then : so a lifeguard : try|try[EW:tried] and get|get[EW:got] (the air) the pool [EU].,and then so a lifeguard try and get the air the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,so he[-:] did not got|get[EW:get] the[-:] airplane.,so he did not got the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,so him[EW:he] just : jump/ed[!] in the water : and got it.,so him just jumped in the water and got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,(and then) : and then him[EW:he] : *is try/ing to get it [EU].,and then and then him trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,and then : him[EW:he] (try/ing) : cry/ed.,and then him trying cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,so[-:] her[EW:she] got (uh th) the[-:] fish/ing net to fish[!] the : airplane out.,so her got uh th the fishing net to fish the airplane out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,so her[EW:she] got[!] it.,so her got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,then they gives|give[EW:gave] *it to the boy [EU].,then they gives to the boy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,and then him[EW:he] said : mmm I love it now!,and then him said mmm I love it now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,that is it [+_bch].,that is it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,(he wa) (he made) a happy[!] : little bunny he : (made[?] happy) made a sandcastle with her.,he wa he made a happy little bunny he made happy made a sandcastle with her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,they need to[:_needa] start work/ing[!].,they need to start working +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,(then) and[-:] then him[EW:he] (s) (scoop|scoop[EW:scoops] off) scoop[EW:scoops] *it off[?] and put|put[EW:puts] it in a bucket[!] [EU].,then and then him s scoop off scoop off and put it in a bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,and they put *it on top[!] of the sandcastle[!] [EU].,and they put on top of the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,it all[-:] broke now.,it all broke now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,and then (h) : her[EW:she] [!] have|have[EW:has] to cry[!].,and then h her have to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,then he is stand|stand[EW:standing] [-:] still.,then he is stand still +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,that is it [+_bch].,that is it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,one day : her[EW:she] came and say|say[EW:said] hi[!] to the boy.,one day her came and say hi to the boy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,then they were start/ing to eat[-:] lunch on the ground.,then they were starting to eat lunch on the ground +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,(then he) (then[-:]) : and then him[EW:he] [-:][!] : was (um) full[-:].,then he then and then him was um full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,then he got dizzy.,then he got dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,and then he call|call[EW:called] the doctor.,and then he call the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,then the doctor help|help[EW:helped].,then the doctor help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,he make|make[EW:made] him more dizzy[!].,he make him more dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,and then : he walk|walk[EW:walked] (with the[-:] ma) with the man (and a) : and another girl or boy [~_I_do_n(o)t_know].,and then he walk with the ma with the man and a and another girl or boy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,that is it [+_bch].,that is it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,her[EW:she] is pull/ing a balloon.,her is pulling a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,him said hi.,him said hi +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,then he want/3s to sit in the[-:] : wagon : with the balloon.,then he wants to sit in the wagon with the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,and then he[-:] : took off[-:] the balloon!,and then he took off the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,then it fly|fly[EW:flew] : up[!] in the air.,then it fly up in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,then[-:] : her[EW:she] got mad[-:].,then her got mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,then : her[EW:she] (have|have[EW:has] to) have|have[EW:has] to buy another balloon[!].,then her have to have to buy another balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,(then he said[-:]) then he went old man old man : I want a balloon [~_laughs].,then he said then he went old man old man I want a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,old man old man number five : balloon.,old man old man number five balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,old man old man I want one too.,old man old man I want one too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,thank you old man old man.,thank you old man old man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,doctor said old man old man thank you.,doctor said old man old man thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,give me a balloon.,give me a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,the old man old man have|have[EW:has] two balloon/s.,the old man old man have two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,then old man old man : give|give[EW:gives] the two balloon/s [EU].,then old man old man give the two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/667.slt,that is it [+_bch].,that is it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,(um) there was a little giraffe and a little elephant.,um there was a little giraffe and a little elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,: (he wa) there was a ball in the water.,he wa there was a ball in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,the giraffe want/ed to play with it.,the giraffe wanted to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,he jump/ed in.,he jumped in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and he swam to it.,and he swam to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,he gave it to the elephant.,he gave it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,then the elephant look/ed at him.,then the elephant looked at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and he look/ed back.,and he looked back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,(um the llll) the little elephant want/ed to go to the diving board.,um the llll the little elephant wanted to go to the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and she did not see the sign that said no run/ing.,and she did not see the sign that said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and she ran to there.,and she ran to there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and she said let us go on the diving board.,and she said let us go on the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and then she ran.,and then she ran +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and she slip/ed.,and she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,: and she slip/ed.,and she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and she hurt her knee really bad.,and she hurt her knee really bad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and the elephant lifeguard came run/ing.,and the elephant lifeguard came running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and the giraffe was sit/ing beside her.,and the giraffe was sitting beside her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,(um the bi) the little elephant : was : so sad that she could not stop.,um the bi the little elephant was so sad that she could not stop +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and the lifeguard elephant gave her a bandaid.,and the lifeguard elephant gave her a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,(and they) and they had to sit down : on a bench.,and they and they had to sit down on a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and the lifeguard was really mad at her.,and the lifeguard was really mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,(and she said) and he said can not you see the sign that say/3s no run/ing?,and she said and he said can not you see the sign that says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,the little giraffe had an airplane.,the little giraffe had an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and the (um) little elephant want/ed to hold it.,and the um little elephant wanted to hold it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and he did not let her.,and he did not let her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,: (but then sh) but then he grab/ed it from her.,but then sh but then he grabbed it from her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,: and then she drop/ed it in the water.,and then she dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and she felt really sad for what she has|have[EW:had] done.,and she felt really sad for what she has done +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and then the little giraffe got so mad at her.,and then the little giraffe got so mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,then : she tiptoe/ed.,then she tiptoed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and then the lifeguard : spot/ed her.,and then the lifeguard spotted her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,(and the little) and (the) the little elephant lifeguard was go/ing to [~_gonna] try to reach it for her.,and the little and the the little elephant lifeguard was going to try to reach it for her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and he try/ed it.,and he tried it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,but he could not reach it.,but he could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,: (so she was ss) and the little giraffe was : sad.,so she was ss and the little giraffe was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and the girl lifeguard had (a bi) (a long neck and) a long net.,and the girl lifeguard had a bi a long neck and a long net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and she was go/ing to [~_gonna] : get (um) it out.,and she was going to get um it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and she reach/ed.,and she reached +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and she caught it.,and she caught it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,(and the ll) and the little giraffe was so[-:] happy.,and the ll and the little giraffe was so happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and then he said thank you.,and then he said thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,the little bunny was going to help [~_um_what_is_that_animal__that_(i)s_in_the_sandbox] [~_EXA:_it's_your_story] (um) kangaroo to make it/z (um ss) sandcastle.,the little bunny was going to help um kangaroo to make it's um ss sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,(and she) and the bunny was get/ing some sand out (to make : the) to add some more sand for the sandcastle.,and she and the bunny was getting some sand out to make the to add some more sand for the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and then he dump/ed it all on.,and then he dumped it all on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,then it broke.,then it broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,(an) and then : the kangaroo was sad.,an and then the kangaroo was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,the kangaroo and the bunny were walk/ing for a picnic.,the kangaroo and the bunny were walking for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and then they saw each other.,and then they saw each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and then they both got out for a picnic.,and then they both got out for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and the bunny (was : um) was look/ing at : the kangaroo.,and the bunny was um was looking at the kangaroo +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and then : (he ate too much) the bunny ate too much candy.,and then he ate too much the bunny ate too much candy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and he fell down.,and he fell down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and he had a : stomachache.,and he had a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and he felt really wheezy.,and he felt really wheezy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,(and the mother um) and the doctor rabbit (je) was walk/ing around.,and the mother um and the doctor rabbit je was walking around +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and the kangaroo came run/ing and say/ing doctor doctor.,and the kangaroo came running and saying doctor doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,my friend bunny : is really wheezy.,my friend bunny is really wheezy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and he ate too much candy.,and he ate too much candy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and : the kangaroo pull/ed her towards.,and the kangaroo pulled her towards +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,then she is like you should not eat too much candy.,then she is like you should not eat too much candy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,make/3s you really sick.,makes you really sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and you get really wheezy.,and you get really wheezy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,(and they) and they were both happy at[EW:with] each other.,and they and they were both happy at each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,then they both left.,then they both left +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,the bunny and the kangaroo.,the bunny and the kangaroo +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,the kangaroo had a balloon tie/ed on it/z wagon.,the kangaroo had a balloon tied on it's wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,: but then the bunny was go/ing to[:_gonna] untie it.,but then the bunny was going to untie it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,: then the bunny untie/ed it.,then the bunny untied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and then it went fly/ing up in the sky.,and then it went flying up in the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and they both could not catch it.,and they both could not catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and the kangaroo was so so angry at[EW:with] him.,and the kangaroo was so so angry at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and the bunny saw the balloon bunny.,and the bunny saw the balloon bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,(and he) and he said can I get a balloon?,and he and he said can I get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,(it is five) and he said it is five cent/s.,it is five and he said it is five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and he did not have any.,and he did not have any +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and then he (re) walk/ed up to the : doctor rabbit.,and then he re walked up to the doctor rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and he said do you have five cent/s for a balloon?,and he said do you have five cents for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,(and he) and the bunny rabbit gave him (one) (the) the five cent/s.,and he and the bunny rabbit gave him one the the five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/526.slt,and then he got the balloon for her and him a balloon.,and then he got the balloon for her and him a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,once upon a time there was an elephant and a : horse.,once upon a time there was an elephant and a horse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the horse and the elephant : saw a ball in the pool.,the horse and the elephant saw a ball in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the horse jump/ed into the pool and swam to the ball.,the horse jumped into the pool and swam to the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the horse got the ball.,the horse got the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,(and the elep) and the horse brought it to the elephant.,and the elep and the horse brought it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and the elephant got the ball.,and the elephant got the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the elephant was really happy and smile/ed.,the elephant was really happy and smiled +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and the horse was all wet.,and the horse was all wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,once upon a time there was an elephant and a horse.,once upon a time there was an elephant and a horse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the horse had a cloth with it.,the horse had a cloth with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,they were at a pool.,they were at a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and the elephant want/ed to jump into the pool where the diving board is.,and the elephant wanted to jump into the pool where the diving board is +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the elephant ran.,the elephant ran +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,(the horse) the horse ran after the elephant.,the horse the horse ran after the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the elephant scrape/ed her knee because she was run/ing.,the elephant scraped her knee because she was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and there was no run/ing allow/ed.,and there was no running allowed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the lifeguard came.,the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and the elephant was cry/ing.,and the elephant was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and the horse sat down : beside the elephant.,and the horse sat down beside the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the lifeguard got a bandaid and put the bandaid on : the elephant/z knee.,the lifeguard got a bandaid and put the bandaid on the elephant's knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and the elephant said it really really hurt.,and the elephant said it really really hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the elephant : sat down on the bench.,the elephant sat down on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and the lifeguard : took the[-:] elephant to the bench.,and the lifeguard took the elephant to the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the lifeguard said no run/ing.,the lifeguard said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and the elephant : knew not to run.,and the elephant knew not to run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,once upon a time there was an elephant and a horse.,once upon a time there was an elephant and a horse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and the horse had an airplane to play with.,and the horse had an airplane to play with +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the elephant want/ed to play with the airplane too.,the elephant wanted to play with the airplane too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the horse was drive/ing it around and make/ing (a) airplane sound/s.,the horse was driving it around and making a airplane sounds +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and : the elephant really want/ed to play.,and the elephant really wanted to play +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the elephant grab/ed the airplane from the horse.,the elephant grabbed the airplane from the horse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and the horse said ah give me back my airplane.,and the horse said ah give me back my airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,then the elephant drop/ed : the[-:] airplane into the water.,then the elephant dropped the airplane into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and they could not get it.,and they could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,now the horse got really mad at the elephant.,now the horse got really mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the lifeguard came.,the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and it was in the middle of the pool.,and it was in the middle of the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and they ask/ed if he could get it out.,and they asked if he could get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and the lifeguard said okay I will try and get it out for you.,and the lifeguard said okay I will try and get it out for you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the lifeguard could not reach.,the lifeguard could not reach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,(then) then the horse start/ed to cry.,then then the horse started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,then a girl in a bathing suit : that was the elephant/z mom : had a net with her.,then a girl in a bathing suit that was the elephant's mom had a net with her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and she got the (pl) airplane out of the water.,and she got the pl airplane out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and the horse was nice and happy again.,and the horse was nice and happy again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the horse was really happy.,the horse was really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,he hug/ed the plane.,he hugged the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,so was the : elephant.,so was the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,once upon a time there was a dog and a rabbit.,once upon a time there was a dog and a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and they : were in a sandbox play/ing.,and they were in a sandbox playing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,(one) one day they start/ed to make : a sandcastle.,one one day they started to make a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the bunny put : a bucket of : sand on the sandcastle.,the bunny put a bucket of sand on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and the sandcastle melt/ed.,and the sandcastle melted +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and they all start/ed to cry.,and they all started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the dog really cry/ed.,the dog really cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,but the bunny did not.,but the bunny did not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,(he was mad) he was sad though.,he was mad he was sad though +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,once upon a time there was a dog and a bunny.,once upon a time there was a dog and a bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,(they were) they had basket/s.,they were they had baskets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,they were go/ing to go on a picnic.,they were going to go on a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,(they start/ed) the bunny start/ed to get real[!][EW:really] hungry.,they started the bunny started to get real hungry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,he dump/ed out all his food : while the dog was just take/ing his food out very carefully.,he dumped out all his food while the dog was just taking his food out very carefully +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the bunny ate all[!] his food.,the bunny ate all his food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and he[!] was very (hungr) stuff/ed.,and he was very hungr stuffed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the dog ate very slow : so she[!] would not get a stomachache.,the dog ate very slow so she would not get a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,then the bunny felt seasick.,then the bunny felt seasick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and he was about to throw up.,and he was about to throw up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,then the dog ran to : a doctor.,then the dog ran to a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,then the doctor came with the dog (to) to the bunny.,then the doctor came with the dog to to the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the (b) doctor took care of the bunny.,the b doctor took care of the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,bunny was feel/ing a little better.,bunny was feeling a little better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and the dog was happy again.,and the dog was happy again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the dog had a balloon and a (wa) wagon.,the dog had a balloon and a wa wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the balloon was tie/ed to the wagon.,the balloon was tied to the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,then the bunny untie/ed the balloon off the wagon.,then the bunny untied the balloon off the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,then the balloon flew away.,then the balloon flew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the dog was very[!] mad at the bunny.,the dog was very mad at the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,they saw some balloon/s.,they saw some balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and the bunny ran to the balloon man.,and the bunny ran to the balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and he ask/ed could we have a balloon?,and he asked could we have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,but he had no money.,but he had no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the dog start/ed run/ing after him.,the dog started running after him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the bunny felt sad.,the bunny felt sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,so did the dog.,so did the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,then the bunny ran to his mom : and ask/ed if they could have some money.,then the bunny ran to his mom and asked if they could have some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,so they ask/ed.,so they asked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and they ask/ed.,and they asked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and then she finally gave them some money.,and then she finally gave them some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,and they both bought : two balloon/s : for ten cent/s.,and they both bought two balloons for ten cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,so now they both had balloon/s.,so now they both had balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/766.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,[~_Well] a giraffe (uh) see/3s an elephant play/ing with : a ball[-:].,a giraffe uh sees an elephant playing with a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and the ball go/3s into a swimming pool.,and the ball goes into a swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,: and the giraffe go/3s into the water and swim/3s towards it : and (um) get/3s the ball and give/3s it back to the elephant.,and the giraffe goes into the water and swims towards it and um gets the ball and gives it back to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and he smile/3s.,and he smiles +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and he is drip/ing wet.,and he is dripping wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,(Well) the elephant and the giraffe are at the swimming pool.,Well the elephant and the giraffe are at the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and there is a sign that say/3s no run/ing.,and there is a sign that says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and the elephant go/3s run/ing : towards the pool and point/3s to the diving board : and slip/3s while run/ing.,and the elephant goes running towards the pool and points to the diving board and slips while running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,she fall/3s and scrape/3s her knee in the pool.,she falls and scrapes her knee in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and (um) the giraffe get/3s the lifeguard.,and um the giraffe gets the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and he put/3s a bandage on her knee : and help/3s her sit down on a bench.,and he puts a bandage on her knee and helps her sit down on a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and then he frown/3s and point/3s to the sign that said no run/ing [EU].,and then he frowns and points to the sign that said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,(Well) : the giraffe has a little model airplane with him.,Well the giraffe has a little model airplane with him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,he[-:] : (um) has the airplane in his hand and : kind of move/3s his hand/s around and stick/s his tongue out and say/3s [~_makes__airplane_sound].,he um has the airplane in his hand and kind of moves his hands around and sticks his tongue out and says +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,then (the) the elephant take/3s the airplane from him : and drop/3s it into the pool[-:].,then the the elephant takes the airplane from him and drops it into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and the giraffe (ge) look/3s mad at the elephant.,and the giraffe ge looks mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and then[-:] the lifeguard see/3s[!] the airplane.,and then the lifeguard sees the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and the (um) : elephant she explain/3s to him what happen/ed.,and the um elephant she explains to him what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and he reach/3s out to reach it.,and he reaches out to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and he can not reach it.,and he can not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and the giraffe start/3s to cry.,and the giraffe starts to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,: then another elephant come/3s and (um) has a net with her.,then another elephant comes and um has a net with her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,she put/3s the net in the water and try/3s to scoop up the airplane.,she puts the net in the water and tries to scoop up the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and she get/3s it out for the giraffe[!].,and she gets it out for the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,then he is happy again and hold/3s the (um) airplane up : towards : his cheek.,then he is happy again and holds the um airplane up towards his cheek +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,[~_Well] : it look/3s like a bunny is play/ing with : another type of animal in a sandbox : I think maybe a dog.,it looks like a bunny is playing with another type of animal in a sandbox I think maybe a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and they are build/ing a sandcastle.,and they are building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and the bunny pour/3s : (ss) a bucket of sand onto the sandcastle.,and the bunny pours ss a bucket of sand onto the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and : they both do not look a little too happy.,and they both do not look a little too happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,then : the (um) dog : cry/3s.,then the um dog cries +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and the bunny look/3s a little guilty.,and the bunny looks a little guilty +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,[~_well] (it is the) it is the bunny and dog again.,it is the it is the bunny and dog again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and they are go/ing on a picnic.,and they are going on a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,the bunny has carrot/s : a[-:] sandwich and look/3s like (junk food and :) : junk food.,the bunny has carrots a sandwich and looks like junk food and junk food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and the dog has only taken out a : sandwich.,and the dog has only taken out a sandwich +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and the : bunny has finish/ed his[!] lunch.,and the bunny has finished his lunch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and the dog has only : start/ed a juice box and : eat/ing it/z sandwich.,and the dog has only started a juice box and eating it's sandwich +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and : the bunny is feel/ing dizzy from eat/ing too fast (I think) : and faint/3s.,and the bunny is feeling dizzy from eating too fast I think and faints +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,so the dog get/3s : a doctor rabbit : and (gets it) (get/3s the doctor to look at the : well) he is bring/ing the doctor to the bunny.,so the dog gets a doctor rabbit and gets it gets the doctor to look at the well he is bringing the doctor to the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and : the doctor is examine/ing the bunny.,and the doctor is examining the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,(and : he wa) and the little bunny walk/3s with the doctor.,and he wa and the little bunny walks with the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,[~_well] the dog has (a) : a wagon with a balloon tie/ed to it.,the dog has a a wagon with a balloon tied to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and the bunny come/3s walk/ing : to greet it.,and the bunny comes walking to greet it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and he look/3s at the balloon.,and he looks at the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,so he start/3s to untie[-:] the balloon from the : wagon : and let/3s the balloon go.,so he starts to untie the balloon from the wagon and lets the balloon go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and : the dog get/3s : mad.,and the dog gets mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and then there is a bunny with more balloon/s.,and then there is a bunny with more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and : the dog still look/3s mad.,and the dog still looks mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and the (um) bunny (um) see/3s those balloon/s with the : man and start/3s walk/ing towards it.,and the um bunny um sees those balloons with the man and starts walking towards it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and he buy/3s a balloon.,and he buys a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,: and he show/3s him that the balloons are (five dollar) five cent/s a balloon.,and he shows him that the balloons are five dollar five cents a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,so then (the little) the dog come/3s to see : what is go/ing on with the bunny and : the man.,so then the little the dog comes to see what is going on with the bunny and the man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and the : bunny (go/3s to) go/3s to the doctor : and probably : ask/3s for five cent/s : to buy a balloon because he has no money.,and the bunny goes to goes to the doctor and probably asks for five cents to buy a balloon because he has no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,so the : doctor buy/3s two balloon/s : for : ten cent/s five cent/s per balloon.,so the doctor buys two balloons for ten cents five cents per balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/923.slt,and they are both pretty happy.,and they are both pretty happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,(There is a) [~_CHI:_is_that_a_donkey_EXA:_what_do_you_think__it_is_CHI:_it_looks_like_a_donkey] a donkey want/3s to play with the elephant.,There is a a donkey wants to play with the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and they are by a swimming pool.,and they are by a swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and he see/3s the elephant.,and he sees the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and there is a note that say/3s something or like that.,and there is a note that says something or like that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the ball is bounce/ing really fast.,and the ball is bouncing really fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and it is hard to see.,and it is hard to see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the elephant is wear/ing a girl/z[-:] dress and a bow tie.,and the elephant is wearing a girl's dress and a bow tie +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the donkey is wear/ing a hat : pant/s : and a shirt.,and the donkey is wearing a hat pants and a shirt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the ball went in the (uh) : pool.,and the ball went in the uh pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the donkey was kind of squirt/ing the water out of his mouth for he can get the ball [EU].,and the donkey was kind of squirting the water out of his mouth for he can get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and he got the ball to the elephant.,and he got the ball to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,then she was happy.,then she was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,then : he pass/ed the ball up to her.,then he passed the ball up to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,then she is happy[-:].,then she is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,then the donkey went out of the water.,then the donkey went out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,then he is wet.,then he is wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and I can see some : water fall/ing from him when he was in the swimming pool.,and I can see some water falling from him when he was in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,Now they went to a swim/ing pool where you would jump off (where a diving thing) where you kind of jump on.,Now they went to a swimming pool where you would jump off where a diving thing where you kind of jump on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,there is a swimming pool underneath it.,there is a swimming pool underneath it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,then the kid/s feel like they want to go swim/ing because they have swimming stuff on.,then the kids feel like they want to go swimming because they have swimming stuff on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and she say/3s[-:] I want to go on there first.,and she says I want to go on there first +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,then you are go/ing on there second.,then you are going on there second +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,then she is walk/ing to the diving[-:] stick thing where you jump off.,then she is walking to the diving stick thing where you jump off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and she was walk/ing to the diving stick.,and she was walking to the diving stick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and she was go/ing to go on it and then jump on the swimming pool or something.,and she was going to go on it and then jump on the swimming pool or something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,(sh) she is[-:] walk/ing too fast.,sh she is walking too fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and she is kind of slip/ing.,and she is kind of slipping +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and she is kind of do/ing a spin around almost.,and she is kind of doing a spin around almost +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the donkey I think it is go/ing to help her.,and the donkey I think it is going to help her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,she hurt her knee when she just fell.,she hurt her knee when she just fell +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the donkey was kind of sad.,and the donkey was kind of sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and he was go/ing to get someone to help her.,and he was going to get someone to help her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,the donkey is right beside her.,the donkey is right beside her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and she is cry/ing.,and she is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,(s uh elephant) a boy elephant or something is go/ing to help her.,s uh elephant a boy elephant or something is going to help her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,she does not really like the pain when the bandaid kind of hurt/3s her.,she does not really like the pain when the bandaid kind of hurts her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,then she can not go in the swimming pool with a bandaid on.,then she can not go in the swimming pool with a bandaid on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,then it was on her knee.,then it was on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and she was okay.,and she was okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,she had to sit down for a little bit.,she had to sit down for a little bit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,then they start/ed talk/ing to her.,then they started talking to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,the sign says no run/ing.,the sign says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,or you kind of get hurt.,or you kind of get hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,Her leg is fine.,Her leg is fine +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and they went back to the swimming pool.,and they went back to the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the donkey had to bring his toy.,and the donkey had to bring his toy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and she want/ed to go swim/ing instead of run/ing.,and she wanted to go swimming instead of running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and she stare/ed at the airplane.,and she stared at the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the donkey kind of put his tongue on the side of him.,and the donkey kind of put his tongue on the side of him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and I can see some line/s from the airplane when he was play/ing with it.,and I can see some lines from the airplane when he was playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and she is still stare/ing at it.,and she is still staring at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and her eye/s kind of look funny : the elephant/z eyes.,and her eyes kind of look funny the elephant's eyes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,now she gots|get[EW:gets] it.,now she gots it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and[-:] the donkey say/3s that is my[!] airplane not your/z.,and the donkey says that is my airplane not your's +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,(and) and she said I want to play with it.,and and she said I want to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and then she start/ed play/ing with it.,and then she started playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,then she kind of get/ing happy.,then she kind of getting happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,but not the donkey.,but not the donkey +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,now his airplane is in the : swim/ing pool.,now his airplane is in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,www.,www +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,then[-:] the donkey is go/ing to go back in the water or swimming pool or something like that.,then the donkey is going to go back in the water or swimming pool or something like that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,(now hi) now the donkey is upset what the elephant did.,now hi now the donkey is upset what the elephant did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and (he) (she kin) she is really a little bit sad.,and he she kin she is really a little bit sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the donkey is a lot of mad [EU].,and the donkey is a lot of mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,now[-:] the (ma) the elephant person already come|come[EW:came] back.,now the ma the elephant person already come back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,now both of them are sad.,now both of them are sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and that one is kind of a little bit upset : from that elephant.,and that one is kind of a little bit upset from that elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,: [~_sighs] now the airplane is sink/ing to the bottom of the swimming pool.,now the airplane is sinking to the bottom of the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and they had to try to solve the problem.,and they had to try to solve the problem +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,or they have to hurry.,or they have to hurry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,or that airplane might be sink/ing.,or that airplane might be sinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,or it might be hard to see.,or it might be hard to see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and they think that person is go/ing to try to get it.,and they think that person is going to try to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,but he might fall because it is a little bit far from him.,but he might fall because it is a little bit far from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,now the donkey is cry/ing because his airplane is sink/ing.,now the donkey is crying because his airplane is sinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,now a lady with a net : she is go/ing to get it with a swimming pool net : (tha) get it out.,now a lady with a net she is going to get it with a swimming pool net tha get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,she is go/ing to go swim/ing because she has a bathing suit on her.,she is going to go swimming because she has a bathing suit on her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,she gots|get[EW:gets] it with the net.,she gots it with the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,she is try/ing to be careful try/ing not to lose it.,she is trying to be careful trying not to lose it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,then she gots|get[EW:gets] it.,then she gots it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,she give/3s it to the boy.,she gives it to the boy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and then : she said you are welcome.,and then she said you are welcome +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and (she) he said thank you.,and she he said thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and he is hug/ing his airplane.,and he is hugging his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and now both of them are happy.,and now both of them are happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,they are go/ing to play and try not get in the swimming pool again.,they are going to play and try not get in the swimming pool again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,Now there is a bunny rabbit.,Now there is a bunny rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the bunny rabbit want/3s to play in the sandbox.,and the bunny rabbit wants to play in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and (the dog is play/ing) the : girl : dog is play/ing in the sandbox.,and the dog is playing the girl dog is playing in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and she has a : pony tail on her tail.,and she has a pony tail on her tail +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and[-:] she has a shovel like the bunny rabbit.,and she has a shovel like the bunny rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and she say/3s hey do you want to [~_wanna] play with me?,and she says hey do you want to play with me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the dog is wear/ing a dress.,and the dog is wearing a dress +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and it is a girl.,and it is a girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,she has a[-:] leash around her neck.,she has a leash around her neck +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and she is (buh) (be) (biling) build/ing a castle.,and she is buh be biling building a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the (bundy) bunny is try/ing to build something else with a bucket with sand in it.,and the bundy bunny is trying to build something else with a bucket with sand in it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and[-:] he is go/ing to do something like pour/ing sand onto the castle.,and he is going to do something like pouring sand onto the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and[-:] he put too much sand on it.,and he put too much sand on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and it kind of [~_kinda] wreck/ed the castle.,and it kind of wrecked the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,now he is sorry because he wreck/ed her castle.,now he is sorry because he wrecked her castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,Now the dog is go/ing for a picnic.,Now the dog is going for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and even the bunny is do/ing the same thing as her.,and even the bunny is doing the same thing as her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,he is go/ing to [~_gonna] follow her anywhere.,he is going to follow her anywhere +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,but she is not wear/ing her leash : today.,but she is not wearing her leash today +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,the bunny is kind of [~_kinda] sweat/ing.,the bunny is kind of sweating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and he is : kind of [~_kinda] happy.,and he is kind of happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and his tongue is stick/ing out.,and his tongue is sticking out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and I can see some water fall/ing from him.,and I can see some water falling from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and he has a carrot in his hand and even a pie or something.,and he has a carrot in his hand and even a pie or something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,even the dog she is a little bit happy.,even the dog she is a little bit happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,but he gots[EW:has] more food than her.,but he gots more food than her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,then she took her sandwich out.,then she took her sandwich out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,then she start/ed stare/ing at the bunny rabbit.,then she started staring at the bunny rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,now the bunny rabbit is full but not the dog.,now the bunny rabbit is full but not the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,she did not ate|eat[EW:eat] all of her/z I think.,she did not ate all of her's I think +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,now his stomach hurt/3s.,now his stomach hurts +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the dog is kind of sad.,and the dog is kind of sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and I can see some brown line/s from the bunny/z head.,and I can see some brown lines from the bunny's head +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and I can see some bunny/z (uh) bubble/s right beside him.,and I can see some bunny's uh bubbles right beside him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,there is a doctor kind of [~_kinda] help/3s[-:] people [EU].,there is a doctor kind of helps people +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and it is a (person do um) (a do uh) lady bunny rabbit.,and it is a person do um a do uh lady bunny rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and she is (a uh) help/3s (uh) one of those (one/s) animal/s.,and she is a uh helps uh one of those ones animals +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the bunny he is lay/ing down.,and the bunny he is laying down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and I can see some air from him.,and I can see some air from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,now the dog is pull/ing her to the boy : is kind (of) of ate too much of his [EU].,now the dog is pulling her to the boy is kind of of ate too much of his +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,the[-:] bubble/s are make/ing him sick because he has ate too much.,the bubbles are making him sick because he has ate too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,(now[-:]) [~_yeah] now he feel/3s fine.,now now he feels fine +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and he is go/ing to [~_gonna] go home with his mom or something.,and he is going to go home with his mom or something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,Now I can see some flower/s on the grass.,Now I can see some flowers on the grass +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and I can see the dog.,and I can see the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,she is[-:] : pull/ing her[-:] pail with a balloon on it.,she is pulling her pail with a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,she has her dress on with her bow tie on her now.,she has her dress on with her bow tie on her now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the bunny is feel/ing fine.,and the bunny is feeling fine +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,he is wear/ing his short/s his shirt.,he is wearing his shorts his shirt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,he is run/ing to her.,he is running to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,the bunny really want/3s her balloon (because she).,the bunny really wants her balloon because she +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,he want/3s it because (he got her) (her) she[!] got it first.,he wants it because he got her her she got it first +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and he was not there.,and he was not there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,then that is why he did not got one.,then that is why he did not got one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and he want/3s her/z.,and he wants her's +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and she is say/ing hey that is my balloon not your/z.,and she is saying hey that is my balloon not your's +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the bunny is not listen/ing.,and the bunny is not listening +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and he is make/ing it unloose to take it.,and he is making it unloose to take it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,now the bunny let go of it.,now the bunny let go of it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and now the balloon is fly/ing away from that bunny what he did.,and now the balloon is flying away from that bunny what he did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,now he is still stare/ing at the balloon.,now he is still staring at the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and she is upset because he let her balloon go.,and she is upset because he let her balloon go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and she is really mad.,and she is really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and she is shake/ing so mad.,and she is shaking so mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,she drop/ed her[-:] pail[-:] (pool or) thing.,she dropped her pail pool or thing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and then : she is mad.,and then she is mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the other one is sad.,and the other one is sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,now there is a bunny : with a hat on (with a).,now there is a bunny with a hat on with a +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,now she is still mad.,now she is still mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the bunny want/3s a balloon.,and the bunny wants a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and that he is happy [EU].,and that he is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and he do/3s not know her balloon flew up in the air.,and he does not know her balloon flew up in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and (she) the bunny is run/ing up to him to get a balloon.,and she the bunny is running up to him to get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,now (the girl) the girl dog she is go/ing to [~_gonna] pull her pail to someone else.,now the girl the girl dog she is going to pull her pail to someone else +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and she is still mad.,and she is still mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the bunny rabbit is happy.,and the bunny rabbit is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and he want/3s a balloon.,and he wants a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the big bunny one is stare/ing at him.,and the big bunny one is staring at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the : little bunny (is) want/3s a balloon.,and the little bunny is wants a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and he is point/ing at one.,and he is pointing at one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,that one is five : (s) dollar/s.,that one is five s dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,he does not have any five dollar/s for it.,he does not have any five dollars for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,that is why you know the bunny is upset.,that is why you know the bunny is upset +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and that one is sad.,and that one is sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and he want/ed that balloon.,and he wanted that balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,but (you can not) he do/3s not have any money for it.,but you can not he does not have any money for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,(now the dog and the girl) (the girl dog and the boy dog) (boy bunny rabbit) [~_I_mean] now the (bunny) big bunny is a little bit sad because they do not have any money to get a balloon.,now the dog and the girl the girl dog and the boy dog boy bunny rabbit now the bunny big bunny is a little bit sad because they do not have any money to get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,(now that doctor) now the girl : is stand/ing by (the big bunny) the (boy) : man bunny.,now that doctor now the girl is standing by the big bunny the boy man bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and (the) the little bunny boy he is : run/ing to the nurse.,and the the little bunny boy he is running to the nurse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and he touch/ed her.,and he touched her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,(and he want/ed money to get) and he is go/ing to ask her for some money to get some balloon/s.,and he wanted money to get and he is going to ask her for some money to get some balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and (he is) she is give/ing some money to them.,and he is she is giving some money to them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and then they are get/ing their own balloon.,and then they are getting their own balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and the girl is wag/ing her tail because she is get/ing a balloon.,and the girl is wagging her tail because she is getting a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,(now) : both of them are happy now.,now both of them are happy now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,and (the bunny ra) the nurse bunny is happy too.,and the bunny ra the nurse bunny is happy too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/725.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(um) : there is a[EW:an] elephant who is play/ing with a ball.,um there is a elephant who is playing with a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and it drop/ed it.,and it dropped it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and it said (um) could I play?,and it said um could I play +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,but then it went in the water.,but then it went in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(and um) and (the : um :) he went in the water.,and um and the um he went in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,shall I turn?,shall I turn +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and (the) : the elephant got the ball.,and the the elephant got the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(and um) and he smile/ed.,and um and he smiled +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and so did the elephant.,and so did the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and the end [+_bch].,and the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(um : uh) a[EW:an] elephant [EU].,um uh a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and he (went) went go/ing in the water [EU].,and he went went going in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and (um) they said let us go in that thing and jump in the water.,and um they said let us go in that thing and jump in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,but (um she w) she ran.,but um she w she ran +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and she fell.,and she fell +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and she hurt her knee.,and she hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and (um) : her big brother came : and (um) put a bandaid on : and (um) lift/ed her up : and said you can not get off that bench.,and um her big brother came and um put a bandaid on and um lifted her up and said you can not get off that bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(um : the um) : (this um) the elephant was there.,um the um this um the elephant was there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,then this boy came with a[EW:an] airplane.,then this boy came with a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and she said could I play with the airplane ?,and she said could I play with the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(then um) (then it w) (then he) then he said I will go first.,then um then it w then he then he said I will go first +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and it went [~_flying_noises].,and it went +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(but) but then she try/ed.,but but then she tried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and she went like this [~_flying_noises].,and she went like this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,but : then it went in the water.,but then it went in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,both times you were show/ing me with your hands when you went [~_flying_noises].,both times you were showing me with your hands when you went +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and (um : it) it went in the water.,and um it it went in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and it was go/ing to sink.,and it was going to sink +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and he got mad : at the elephant.,and he got mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and then her big brother came.,and then her big brother came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(and) and she said could you reach it big brother ?,and and she said could you reach it big brother +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and (um) he try/ed.,and um he tried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,but it went far.,but it went far +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(um but then it) (but then it) then this (um el) other elephant came to catch (i) the airplane.,um but then it but then it then this um el other elephant came to catch i the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,"and it went sink, sink, sink/ing.",and it went sink sink sinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,but : then she caught it.,but then she caught it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and (um) she brought it up.,and um she brought it up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and then she gave it to him.,and then she gave it to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,then he hug/ed it.,then he hugged it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and that is the end [+_bch].,and that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,there was a dog and a bunny : play/ing.,there was a dog and a bunny playing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and (um : then um) then the bunny came and said could I : build a sandcastle with you?,and um then um then the bunny came and said could I build a sandcastle with you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,but then it was up before he went.,but then it was up before he went +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(then um) (then they) : then the rabbit (um) put sand in the bucket.,then um then they then the rabbit um put sand in the bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and they pour/ed it : on.,and they poured it on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,turn?,turn +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(then) then it broke : down.,then then it broke down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and he is like this.,and he is like this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(and he) (and he was) and he was try/ing to fix it.,and he and he was and he was trying to fix it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,you show/ed me the face he was pull/ing.,you showed me the face he was pulling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,the (um) dog try/ed to fix it.,the um dog tried to fix it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,but it would not go up.,but it would not go up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and that is the end [+_bch].,and that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(um) (there) there is the dog who had a picnic basket.,um there there is the dog who had a picnic basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and (um) then here came : a bunny with a picnic basket.,and um then here came a bunny with a picnic basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(and um) (and they are) and he was go/ing to eat.,and um and they are and he was going to eat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,but he ate too much.,but he ate too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,but : he got a tummyache.,but he got a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and (um) he was too full.,and um he was too full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and (um) : there was a spinny thing around his head.,and um there was a spinny thing around his head +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(and he asks) and the dog ask/3s [~_pronounced_/aeks/] his mom to come here.,and he asks and the dog asks his mom to come here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and (um) she saw (the rab) her son.,and um she saw the rab her son +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and (um) they are go/ing home.,and um they are going home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and (um : they um : were) then the bunny left.,and um they um were then the bunny left +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,now it is the end [+_bch].,now it is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(um) there was a dog who had a balloon.,um there was a dog who had a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(and um) and (then uh) then came the rabbit : and (um) said[?] hey ( could) could I pull on it?,and um and then uh then came the rabbit and um said hey could could I pull on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and then it went.,and then it went +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(then) then he untie/ed it.,then then he untied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(um) and he let goed[EW:go].,um and he let goed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and it went high(*2) [~_gestures].,and it went high high +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and then the dog got mad.,and then the dog got mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(then um) then : the rabbit said hey lookit.,then um then the rabbit said hey lookit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,there is a man : who is full of balloon/s.,there is a man who is full of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and he said could I have a balloon?,and he said could I have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(and um :) [~_EXA:_turn] and he said this is five : buck/s.,and um and he said this is five bucks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(but) [~_you_can_turn_now] (but) but they could not buy a balloon.,but but but they could not buy a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,then he was go/ing to go ask [~_pronounced_/aeks/] his mother if he could have some : money : (and um) to buy a balloon : for the dog.,then he was going to go ask his mother if he could have some money and um to buy a balloon for the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,(um) and she gave money : to him.,um and she gave money to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and (um) they both had a balloon.,and um they both had a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/418.slt,and that is the end [+_bch].,and that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,I saw an elephant (and) (and a) and a horse.,I saw an elephant and and a and a horse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,(then I) then I ran and ran.,then I then I ran and ran +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,but he trip/ed : (on the) on the way because I was run/ing.,but he tripped on the on the way because I was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and my mom and dad told me I can not run because (it) there is some ice on there.,and my mom and dad told me I can not run because it there is some ice on there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,then : (he) I saw a swimming pool that I can go in.,then he I saw a swimming pool that I can go in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,(so) so that is where : the elephant and the horse want/ed to go too.,so so that is where the elephant and the horse wanted to go too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and so they jump/ed and jump/ed try/ed to pedal [EU].,and so they jumped and jumped tried to pedal +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,but something was in the water.,but something was in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,he reach/ed for to give the ball to him [EU].,he reached for to give the ball to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,but he can not reach.,but he can not reach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,he has to get up then jump.,he has to get up then jump +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,they were chilly.,they were chilly +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,so they decide to put on (their) : their clothes and brush their teeth.,so they decide to put on their their clothes and brush their teeth +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,That is the end [+_bch].,That is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,One time they saw a pool.,One time they saw a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and they saw a jump/ing thing.,and they saw a jumping thing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,so they climb/ed way up then jump/ed in the water.,so they climbed way up then jumped in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,it was far away so that they could not reach it.,it was far away so that they could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,they had to jump.,they had to jump +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,(then he wo) then the elephant and the horsie was[EW:were] scare/ed because (they might) they might float down (if some) if something had a pool [EU].,then he wo then the elephant and the horsie was scared because they might they might float down if some if something had a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,so they decide/ed (to go back) to go back.,so they decided to go back to go back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and then she almost slip/ed on the way walk/ing.,and then she almost slipped on the way walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,(then he) then he was walk/ing.,then he then he was walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and the elephant was walk/ing.,and the elephant was walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,then they hurt [EU].,then they hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,then : (he) (he) he said maybe we can put a bandaid on.,then he he he said maybe we can put a bandaid on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and so they did.,and so they did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and so they all (had a) had a wonderful day.,and so they all had a had a wonderful day +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and then they decide/ed to have (another) another surprise about this story.,and then they decided to have another another surprise about this story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,then they put *a bandaid (on) on the way sit/ing on the bench [EU].,then they put bandaid on on the way sitting on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and it feeled|feel[EW:felt] all better.,and it feeled all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and (the ele) and the big dad said you should never go out with yourself (until) until we come with you [EU].,and the ele and the big dad said you should never go out with yourself until until we come with you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,This elephant feeled|feel[EW:felt] all better.,This elephant feeled all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,(and) and him[EW:he] : did : too.,and and him did too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and so they all both laugh/ed [EU].,and so they all both laughed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and they said let us go in the water !,and they said let us go in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and so : he said no[!] I want to play with my airplane.,and so he said no I want to play with my airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,(and) and he grab/ed it because he want/ed to play with it too.,and and he grabbed it because he wanted to play with it too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,(and) and he put it in the water.,and and he put it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,(and it) and it was float/ing down.,and it and it was floating down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,(so he) so the horse had to jump in and get it.,so he so the horse had to jump in and get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,then : he was very mad that (his air) his airplane was float/ing down.,then he was very mad that his air his airplane was floating down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,(his m) his mom said : (you) you can go in the pool.,his m his mom said you you can go in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,but do not ever put airplane/s in the pool.,but do not ever put airplanes in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,then : his dad (was) (was very) was very[!] happy because he is glad.,then his dad was was very was very happy because he is glad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,but (he is : mad) he is very mad now because (he) this elephant told him he throwed|throw[EW:threw] it into the water.,but he is mad he is very mad now because he this elephant told him he throwed it into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,that is why he was mad.,that is why he was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and he try/ed to reach (by) by get/ing it.,and he tried to reach by by getting it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,but he could not.,but he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,they were cry/ing because they had to jump in.,they were crying because they had to jump in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and then : the airplane start/ed to go up (and) or maybe down.,and then the airplane started to go up and or maybe down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,but they were still[!] cry/ing.,but they were still crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,this little elephant said : hey I think I can get it with my net.,this little elephant said hey I think I can get it with my net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,so he[!] tried.,so he tried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and he got it.,and he got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and (he got it) he got it.,and he got it he got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and then they were all happy.,and then they were all happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,that is the last time.,that is the last time +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,do not put it in.,do not put it in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and then they *were both happy and enjoyed theirselves[EW:themselves] [EU].,and then they both happy and enjoyed theirselves +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,so : they said : how about that swim?,so they said how about that swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and he said oh[-:] : we have to dig out some sand.,and he said oh we have to dig out some sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,so : they did.,so they did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,(and) : and there was a castle way out there that had more sand.,and and there was a castle way out there that had more sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and they ask/ed for some.,and they asked for some +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and he said let us build a castle too.,and he said let us build a castle too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and so they build|build[EW:built] it : build|build[EW:built] it and build|build[EW:built] it until there was no castle : because somebody moved it in : to *an apartment building [EU].,and so they build it build it and build it until there was no castle because somebody moved it in to apartment building +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and so they just made it.,and so they just made it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and xx (had a do) (had t) had each three window/s.,and had a do had t had each three windows +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and there was a door.,and there was a door +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,but it fell down because the rain was start/ing to come.,but it fell down because the rain was starting to come +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,but then it stop/ed.,but then it stopped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and so they start/ed to fix it again.,and so they started to fix it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and they were chilly.,and they were chilly +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and this (little) little rabbit was cry/ing because he did not know how[!] his castle was made.,and this little little rabbit was crying because he did not know how his castle was made +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,That is the end [+_bch].,That is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,I saw two rabbit/s.,I saw two rabbits +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and I was walk/ing down on the same track.,and I was walking down on the same track +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and I was ask/ing them can I come.,and I was asking them can I come +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and they said sure.,and they said sure +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,so I forgot my picnic [~_pronounced_'pinkink'].,so I forgot my picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and it ran fast and (ran) ran back to there.,and it ran fast and ran ran back to there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and so I did.,and so I did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and so (they) (they hardly) they hardly had their castle.,and so they they hardly they hardly had their castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,so they decid/ed to take a lunch.,so they decided to take a lunch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and they had our card/s : then put them back : then started to go for another picnic.,and they had our cards then put them back then started to go for another picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,but no picnic there.,but no picnic there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,they start/ed to take a nap.,they started to take a nap +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and this little pig start/ed to drink the juice.,and this little pig started to drink the juice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,then he waked|wake[EW:woke] up.,then he waked up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,suddenly he bump/ed his head on the ground.,suddenly he bumped his head on the ground +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,then : he tip/ed his picnic : basket over.,then he tipped his picnic basket over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,but : little rabbit said I want more juice.,but little rabbit said I want more juice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,see there is no more juice there.,see there is no more juice there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,oh there is still more.,oh there is still more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and so he said it is gone.,and so he said it is gone +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,(and he) and he had to learn to : know.,and he and he had to learn to know +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and then : he said come on!,and then he said come on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,come on doctor!,come on doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,come on!,come on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,go ahead and finish the story [~_New_track_begins_due_to_power_failure].,go ahead and finish the story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,so he could not pull him.,so he could not pull him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,so he just left him and ran[-:] and ran.,so he just left him and ran and ran +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,he told (doctor) (doctor) this doctor (is not plas) it is plastic.,he told doctor doctor this doctor is not plas it is plastic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and so : he felleded|fall[EW:fell] down again.,and so he felleded down again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,then he fell down.,then he fell down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,then he start/ed to give him a tweek like a bandaid on his head.,then he started to give him a tweek like a bandaid on his head +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,then he feeled|feel[EW:felt] much better.,then he feeled much better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,but (this ma) this doctor was not plastic anymore.,but this ma this doctor was not plastic anymore +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and so he begin|begin[EW:began] to get tire/ed.,and so he begin to get tired +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,once they saw a sign.,once they saw a sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and they : said that is put (uh) our balloon [EU].,and they said that is put uh our balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and let us[?] write a sign on our balloon.,and let us write a sign on our balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,but he said no that is not a good idea.,but he said no that is not a good idea +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,then he start/ed to : pull it and start/ed to ride home.,then he started to pull it and started to ride home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,why do not you go home [EU]?,why do not you go home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and I will tell a secret.,and I will tell a secret +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and why do not we surprise [EU].,and why do not we surprise +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and so : he made a balloon : by hisself[EW:himself].,and so he made a balloon by hisself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,(and) and he blowed|blow[EW:blew] and blowed|blow[EW:blew] it until it was get/ing small.,and and he blowed and blowed it until it was getting small +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and so he start/ed to get inside.,and so he started to get inside +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and nobody push/ed them.,and nobody pushed them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,so that is why he had hard push/ing this rabbit [EU].,so that is why he had hard pushing this rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,then he try/ed to reach for the balloon.,then he tried to reach for the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,but it was float/ing way up in the air that they could not reach it.,but it was floating way up in the air that they could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,(they were) (they) he was so mad : (cause he) (cause) he was so mad (that he) that he cut (the balloo) the balloon of (this) this plastic.,they were they he was so mad cause he cause he was so mad that he that he cut the balloo the balloon of this this plastic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,then he said hello to Mrs Ballooner.,then he said hello to Mrs Ballooner +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and he said would you like to borrow some balloon[EW:balloons]?,and he said would you like to borrow some balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and he said yes.,and he said yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,(but this then) : (this towards little bunny look/ed past) way down there (was a big) was a big man carry/ing a bunch of balloon/s.,but this then this towards little bunny looked past way down there was a big was a big man carrying a bunch of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,then he went down there and say/3s hello Mr Ballooner.,then he went down there and says hello Mr Ballooner +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,can I borrow a balloon?,can I borrow a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,of course.,of course +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,so he take|take[EW:took] one and snap/ed it towards the hanger.,so he take one and snapped it towards the hanger +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and they were sit/ing down on that bench.,and they were sitting down on that bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and he said I am finish/ed.,and he said I am finished +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,where is the garbage?,where is the garbage +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,right there.,right there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and so they both : beginned|begin[EW:began] [EU].,and so they both beginned +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,(and he) (and he s) and he said can I have a balloon?,and he and he s and he said can I have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and he said (you) (he) your brother (al) already got a balloon.,and he said you he your brother al already got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and so [~_yawns] he beginned|begin[EW:began] : (to) : to (just gra) just get one and say please.,and so he beginned to to just gra just get one and say please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,but he could not.,but he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,this man got mad because he took one.,this man got mad because he took one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and he said why yes you can take one.,and he said why yes you can take one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and so he take|take[EW:took] one.,and so he take one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and they went home.,and they went home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and both happys [EU].,and both happys +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,: and then he was happy forever.,and then he was happy forever +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,the doctor was happy : because he want/ed a balloon too.,the doctor was happy because he wanted a balloon too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,but one balloon was float/ing up in the air.,but one balloon was floating up in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and he told his mother doctor this balloon is float/ing away.,and he told his mother doctor this balloon is floating away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and he said I will try to reach it (with a fl) with a[EW:an] airplane.,and he said I will try to reach it with a fl with a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and so : they beginned|begin[EW:began] to say happy [EU].,and so they beginned to say happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,and (he was) the doctor was : happy that he had a balloon.,and he was the doctor was happy that he had a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,so they all beginned|begin[EW:began] [EU].,so they all beginned +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/421.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,Giraffe and Elephant were : friend/s.,Giraffe and Elephant were friends +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,and (whe) while they were play/ing : their ball got stuck in the water.,and whe while they were playing their ball got stuck in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,(uh giraffe went to i) Giraffe jump/ed into the pool : to get the : ball : back[~!_laughs].,uh giraffe went to i Giraffe jumped into the pool to get the ball back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,and : while he was still in the pool he gave it to Elephant.,and while he was still in the pool he gave it to Elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,Elephant was really proud of Giraffe[~!_laughs].,Elephant was really proud of Giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,Elephant and Giraffe went to the[-:] swimming pool.,Elephant and Giraffe went to the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,Elephant ask/ed : Giraffe if he want/ed to go on the diving board.,Elephant asked Giraffe if he wanted to go on the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,Giraffe said yes.,Giraffe said yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,and they went.,and they went +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,but Elephant slip/ed.,but Elephant slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,Elephant had hurt her knee.,Elephant had hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,Giraffe quickly ran to help[~!_laughs].,Giraffe quickly ran to help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,then the lifeguard came over : to help.,then the lifeguard came over to help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,he put a bandaid on Elephant/z knee.,he put a bandaid on Elephant's knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,the lifeguard help/ed : Elephant (go to) get to a bench.,the lifeguard helped Elephant go to get to a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,and then the lifeguard point/ed at a sign that said no run/ing.,and then the lifeguard pointed at a sign that said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,"so these are all about the elephant and the giraffe, okay [+_bch].",so these are all about the elephant and the giraffe okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,"that is right, okay, go ahead.",that is right okay go ahead +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,Elephant and Giraffe went to the pool.,Elephant and Giraffe went to the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,and Giraffe brought his[-:] toy airplane.,and Giraffe brought his toy airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,he[-:] show/ed : Elephant how to fly it.,he showed Elephant how to fly it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,then she snatch/ed it away (fer) from Giraffe : and try/ed to fly it herself.,then she snatched it away fer from Giraffe and tried to fly it herself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,then she drop/ed it into the pool.,then she dropped it into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,Giraffe got very angry.,Giraffe got very angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,and the lifeguard look/ed worry/ed.,and the lifeguard looked worried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,: Elephant explain/ed how she drop/ed it in.,Elephant explained how she dropped it in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,the lifeguard try/ed to reach it.,the lifeguard tried to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,but he could not.,but he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,Giraffe was very sad.,Giraffe was very sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,then a lady came with a fishing net.,then a lady came with a fishing net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,she scoop/ed the airplane out of the water.,she scooped the airplane out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,she gave it back to Giraffe.,she gave it back to Giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,he was really happy.,he was really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,Rabbit and Dog : were play/ing in the sandbox.,Rabbit and Dog were playing in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,they were build/ing a sandcastle.,they were building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,Rabbit dump/ed a bunch of sand onto the sandcastle.,Rabbit dumped a bunch of sand onto the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,and it was broken.,and it was broken +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,Dog was sad.,Dog was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,Rabbit and Dog met for a picnic.,Rabbit and Dog met for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,they sat down.,they sat down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,and Hare was a big pig.,and Hare was a big pig +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,while Dog ate her lunch : Rabbit was stuck on the ground because he had eaten so much.,while Dog ate her lunch Rabbit was stuck on the ground because he had eaten so much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,he felt sick.,he felt sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,Dog ran to get the doctor.,Dog ran to get the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,(she pu) she drag/ed the doctor over to : Rabbit.,she pu she dragged the doctor over to Rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,the doctor took his temperature.,the doctor took his temperature +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,then she took him home.,then she took him home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,one day Rabbit and Dog met.,one day Rabbit and Dog met +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,Dog was pull/ing her wagon.,Dog was pulling her wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,there was a balloon on it.,there was a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,Rabbit like/ed the balloon.,Rabbit liked the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,he try/ed to untie it.,he tried to untie it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,but he let go too soon.,but he let go too soon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,and the balloon float/ed away.,and the balloon floated away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,dog was very[!] angry.,dog was very angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,then they saw a rabbit sell/ing more balloon/s.,then they saw a rabbit selling more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,Rabbit ask/ed (to) for a blue one.,Rabbit asked to for a blue one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,(he said that) : the rabbit sell/ing the balloon/s said that they cost five cent/s.,he said that the rabbit selling the balloons said that they cost five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,Rabbit did not have any money.,Rabbit did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,Dog was sad.,Dog was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,and now so was Rabbit.,and now so was Rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,then they saw the doctor again.,then they saw the doctor again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,Rabbit went over to her.,Rabbit went over to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,he asked if they could borrow five cent/s for Dog.,he asked if they could borrow five cents for Dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,so she did and bought them both a balloon.,so she did and bought them both a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/933.slt,they were both really happy.,they were both really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,one day an elephant and a zebra were bounce/ing a ball.,one day an elephant and a zebra were bouncing a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and the ball fell in the water.,and the ball fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then the zebra swam to get it.,and then the zebra swam to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then : he got it and gave it to the elephant.,and then he got it and gave it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and the elephant was really happy.,and the elephant was really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and the zebra was really happy too.,and the zebra was really happy too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,a zebra (and a elephant) and an elephant were go/ing swim/ing.,a zebra and a elephant and an elephant were going swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and (um) the elephant was : (um) go/ing to go off the diving board.,and um the elephant was um going to go off the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and she was run/ing to go : to the diving board.,and she was running to go to the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and she trip/ed : and fell on her knee and hurt herself.,and she tripped and fell on her knee and hurt herself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and (um) then she start/ed to cry.,and um then she started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,(and the lifeguard) and the lifeguard put a bandaid on her.,and the lifeguard and the lifeguard put a bandaid on her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and (um) then she could not move it for a little while.,and um then she could not move it for a little while +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then she was able to move it.,and then she was able to move it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,one day (an eleph uh) the zebra (and the) and an elephant were play/ing with an airplane.,one day an eleph uh the zebra and the and an elephant were playing with an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and (um) then : (i the) the zebra was play/ing with the airplane.,and um then i the the zebra was playing with the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,(and the elephant) and (um) the elephant want/ed to try.,and the elephant and um the elephant wanted to try +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then the elephant grab/ed it from the zebra.,and then the elephant grabbed it from the zebra +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then it fell in the water.,and then it fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,the zebra got mad at the elephant.,the zebra got mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,(um) and then the lifeguard came.,um and then the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,the lifeguard saw the boat.,the lifeguard saw the boat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,(and um he was) (and he) and the elephant said : could : you (um) get the plane.,and um he was and he and the elephant said could you um get the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then he try/ed.,and then he tried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,but he could not do it.,but he could not do it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and the zebra was cry/ing.,and the zebra was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and the elephant : was kind of sad for him : and kind of guilty.,and the elephant was kind of sad for him and kind of guilty +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then (um : uh) : a (la oh) lady came.,and then um uh a la oh lady came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,(and um) and she had a net to get the airplane.,and um and she had a net to get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and she got it for him.,and she got it for him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and : he was really happy.,and he was really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then he hug/ed the airplane.,and then he hugged the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,(uh[-:] : um I can not um) Bill and Harold were build/ing a castle.,uh um I can not um Bill and Harold were building a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and (um : b[-:]) Bill (bi) (um sh) shape/ed the castle while Harold dug some sand.,and um b Bill bi um sh shaped the castle while Harold dug some sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then Harold dump/ed the sand on the castle.,and then Harold dumped the sand on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and he ruin/ed it.,and he ruined it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and they were both kind of sad.,and they were both kind of sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,(and um Harold was a) and Harold was : kind of sad.,and um Harold was a and Harold was kind of sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and : Bill did not really care.,and Bill did not really care +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,(and then he start oh uh) and then : he did not look like he was sad.,and then he start oh uh and then he did not look like he was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,(but) : and then he start/ed to cry.,but and then he started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,he did not look very sad.,he did not look very sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then (um) : Harold : was kind of sad for him.,and then um Harold was kind of sad for him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,(um[-:] Har) Harold and Bill went on a picnic.,um Har Harold and Bill went on a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and Harold brought a lot of thing/s.,and Harold brought a lot of things +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and he look/ed hungry.,and he looked hungry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then he ate all of them.,and then he ate all of them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,(and um he felt) and : Harold felt sick.,and um he felt and Harold felt sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then (um) Bill went to go get a doctor.,and then um Bill went to go get a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then (um) the doctor did not want to come.,and then um the doctor did not want to come +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,but then Bill pull/ed her over.,but then Bill pulled her over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,(and um she) and (um) she said not to eat that much the next time.,and um she and um she said not to eat that much the next time +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then he walk/ed home : with (her) the doctor.,and then he walked home with her the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,(um) one day : (Harold) Harold and Bill : went to go play.,um one day Harold Harold and Bill went to go play +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and (um) Harold saw that Bill had a balloon on his : (um) wagon.,and um Harold saw that Bill had a balloon on his um wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then he was try/ing to untie it.,and then he was trying to untie it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and Bill did not want him to.,and Bill did not want him to +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then the balloon flew away.,and then the balloon flew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and they were both try/ing to catch it.,and they were both trying to catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,but they could not.,but they could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then Bill got mad at Harold.,and then Bill got mad at Harold +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and (um) : he start/ed to shake.,and um he started to shake +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then they saw (some) (a balloon) (a g) a person (say um) with some balloon/s.,and then they saw some a balloon a g a person say um with some balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then they went to go get him.,and then they went to go get him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then (um) : Harold went and chose a balloon for Bill.,and then um Harold went and chose a balloon for Bill +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and (um) it said five cent/s on the balloon.,and um it said five cents on the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,(and um) but Harold did not have that much.,and um but Harold did not have that much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then they could not get it.,and then they could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then (um) they saw Harold/z Mom : and asked her for five cent/s.,and then um they saw Harold's Mom and asked her for five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,(and then : they) and then (um) she gave the balloon salesman five cent/s.,and then they and then um she gave the balloon salesman five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/752.slt,and then : they were both able to get a balloon.,and then they were both able to get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,(have a : wwu) elephant have|have[EW:has] a ball.,have a wwu elephant have a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,(and one ball) and ball swimming pool[EU].,and one ball and ball swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and (ball) cow (ss) get|get[EW:got] this.,and ball cow ss get this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and (ball) : cow : take|take[EW:took] this ball : for elephant.,and ball cow take this ball for elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and (eleph) [~_no] have a cow soak/ing wet [EU].,and eleph have a cow soaking wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,(have a) : have no runned[EW:running] [EU].,have a have no runned +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and him[EW:he](walked) got on the diving board.,and himwalked got on the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,(and a) and : the[-:] elephant and the cow runned|run[EW:ran].,and a and the elephant and the cow runned +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and him[EW:he] fall|fall[EW:fell] and get him[EW:his] leg [EU].,and him fall and get him leg +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and have a other elephant comed|come[EW:came] [EU].,and have a other elephant comed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and have|have[EW:has] *a big bandage [EU].,and have big bandage +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,(and : ff) (look/ed out th) and look/ed out on (rad) (ra) cut [EU].,and ff looked out th and looked out on rad ra cut +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and the elephant put no runned[EW:running] [EU].,and the elephant put no runned +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,(and have) : (xx have) a cow have|have[EW:has] a plane.,and have have a cow have a plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and : the elephant want some one [EU].,and the elephant want some one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and him elephant have|have[EW:has] a (cc) cow hand [EU].,and him elephant have a cc cow hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and the airplane *is in the water [EU].,and the airplane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and the cow take mad [EU].,and the cow take mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and the elephant comed|come[EW:came][~_/kUmEd/].,and the elephant comed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and the elephant say/3s cow do this.,and the elephant says cow do this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and (the leph) the elephant try|try[EW:tried] get this [EU].,and the leph the elephant try get this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and (the) the (cow) cow cry|cry[EW:cried].,and the the cow cow cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and the other elephant comed|come[EW:came].,and the other elephant comed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and the other elephant pick/ed the plane up.,and the other elephant picked the plane up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,(and the : elephant get) the : cow get|get[EW:got] the plane.,and the elephant get the cow get the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and the : cow is happy.,and the cow is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,have two[-:] : rabbit[EW:rabbits] [EU].,have two rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and (uh) play sand [EU].,and uh play sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and one : have|have[EW:has] *a pail [EU].,and one have pail +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and one (have a) make|make[EW:makes] a sandcastle.,and one have a make a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and (the) one rabbit throw|throw[EW:threw] a[EW:the] sand on the castle.,and the one rabbit throw a sand on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and the other[?] rabbit *is sad [EU].,and the other rabbit sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and : the rabbit is cry/ing.,and the rabbit is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,(have) a rabbit have|have[EW:has] a picnic.,have a rabbit have a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and (all ra have) the rabbit have|have[EW:has] a carrot and hot dog : a bun [EU].,and all ra have the rabbit have a carrot and hot dog a bun +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and (a) the rabbit is full.,and a the rabbit is full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and him[EW:he] hit/3s (these) these xx [~_yeah].,and him hits these these +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and him[EW:he] have|have[EW:has]: another rabbit [EU].,and him have another rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,a : doctor *is come/ing [EU].,a doctor coming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and the other rabbit pull/ed him on [EU].,and the other rabbit pulled him on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and the doctor (ss) say/3s : you want: eat any more [EU]?,and the doctor ss says you want eat any more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and the doctor come|come[EW:came] and take|take[EW:took] the other rabbit away.,and the doctor come and take the other rabbit away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,(have a b) bunny have|have[EW:has] a balloon.,have a b bunny have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and the other[?] rabbit want|want[EW:wants] one.,and the other rabbit want one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,(ha) and the bunny tie this off [EU].,ha and the bunny tie this off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and the balloon flied|fly[EW:flew] away.,and the balloon flied away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and all : bunny is mad [EU].,and all bunny is mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and found a lot more[!] balloon[EW:balloons] [EU].,and found a lot more balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and (have one) want|want[EW:wants] one [EU].,and have one want one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,(have) : want|want[EW:wants] : one for a other[EW:another] [?] bunny [EU].,have want one for a other bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,have (a) two bunny[EW:bunnies] want[-:] one [EU].,have a two bunny want one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and (a) (the bunny) the doctor come|come[EW:came].,and a the bunny the doctor come +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and (the) the other[?] bunny (w) : put a balloon [EU].,and the the other bunny w put a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,(have) : buy two [EU].,have buy two +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/731.slt,and : all bunny[Ew:bunnies] have one.,and all bunny have one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,There is this giraffe and the elephant play/ing ball.,There is this giraffe and the elephant playing ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and then : the ball bounce/ed into the water.,and then the ball bounced into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then the giraffe swimmed|swim[EW:swam] and got (the balloon) [~_I_mean] the ball.,then the giraffe swimmed and got the balloon the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then : the giraffe gave it to the elephant.,then the giraffe gave it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then[!] he was smile/ing.,then he was smiling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,The elephant and the giraffe (s) (swi) (de) decide to go in the pool.,The elephant and the giraffe s swi de decide to go in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and there is a sign no run/ing in the pool.,and there is a sign no running in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,(i) there is a sign right in the corner right there.,i there is a sign right in the corner right there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,but they never saw it.,but they never saw it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then the elephant said : come on let us go in the water.,then the elephant said come on let us go in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then : she tumble/ed.,then she tumbled +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,she sprain/ed her ankle : up here.,she sprained her ankle up here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and she got a[EW:an] elephant to come.,and she got a elephant to come +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then the elephant look/ed at her : knee.,then the elephant looked at her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then the elephant (: was) was help/ing her up.,then the elephant was was helping her up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and the elephant look/ed mad at her.,and the elephant looked mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,(an) (and she) and she never saw the sign.,an and she and she never saw the sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,The elephant and the giraffe were talk/ing to each other.,The elephant and the giraffe were talking to each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then the giraffe pull/ed out his play airplane.,then the giraffe pulled out his play airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then the elephant took it away.,then the elephant took it away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and then she drop/ed it in the water.,and then she dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then the giraffe[!] got mad at the elephant.,then the giraffe got mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and the plane is sink/ing.,and the plane is sinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and then the other elephant look/ed at them.,and then the other elephant looked at them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and then the elephant explain/ed.,and then the elephant explained +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then the[-:] guy elephant try/ed to get it.,then the guy elephant tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,but he could not reach it.,but he could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,(then) then the giraffe was cry/ing.,then then the giraffe was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and then a lady came and brought a net.,and then a lady came and brought a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and the lady got it in the net.,and the lady got it in the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then the giraffe was happy.,then the giraffe was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and then the giraffe was proud.,and then the giraffe was proud +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,two bunny/s : (and an eleph) and a dog were play/ing in the park.,two bunnies and an eleph and a dog were playing in the park +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and they were build/ing a sandcastle.,and they were building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and the bunny put sand over the[-:] castle.,and the bunny put sand over the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and the dog made a funny face.,and the dog made a funny face +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,(he ma) he look/3s like a funny dog.,he ma he looks like a funny dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,[~_laughs] he is silly.,he is silly +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,there is only one piece left : on top of the : castle.,there is only one piece left on top of the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then the dog cry/3s : because the castle got[EW:was] broken.,then the dog cries because the castle got broken +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,: the dog and the rabbit were go/ing for a picnic.,the dog and the rabbit were going for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and then (they started eat/ing) the rabbit start/ed eat/ing.,and then they started eating the rabbit started eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then : the rabbit was finish/ed.,then the rabbit was finished +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,(the) then the rabbit (tum hurt) his tummy hurted|hurt[EW:hurt] [EU].,the then the rabbit tum hurt his tummy hurted +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then : the dog went and told the nurse.,then the dog went and told the nurse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and she pull/ed her.,and she pulled her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and then[!] she saw (her) the dog.,and then she saw her the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,: then[!] : the rabbit was feel/ing better.,then the rabbit was feeling better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,the rabbit and the dog were walk/ing.,the rabbit and the dog were walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and the rabbit saw the balloon on the wagon.,and the rabbit saw the balloon on the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and the rabbit untie/ed it from the wagon.,and the rabbit untied it from the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and the dog was happy.,and the dog was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and then[!] the rabbit lost it.,and then the rabbit lost it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and the rabbit was cry/ing.,and the rabbit was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and then the dog was mad at the rabbit.,and then the dog was mad at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then there was a bunny : sell/ing balloon/s.,then there was a bunny selling balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then the bunny : ask/ed[-:] for a balloon.,then the bunny asked for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then[!] : he never gave it to him because it cost five dollar/s.,then he never gave it to him because it cost five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then they are both not happy.,then they are both not happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then : someone was stand/ing on the : path.,then someone was standing on the path +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and the bunny ran to the bunny.,and the bunny ran to the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then : he offer/3s some money for a balloon : for his friend.,then he offers some money for a balloon for his friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,then : he give him some money : for the balloon/s.,then he give him some money for the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,and they are both[!] happy.,and they are both happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/639.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,There once lived a : cow and an elephant.,There once lived a cow and an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,the elephant had some ball/s.,the elephant had some balls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,one of the ball/s from the elephant (um) drop/ed into a swimming pool.,one of the balls from the elephant um dropped into a swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,then the cow (went to s) went swim/ing to get (the : sw) the ball.,then the cow went to s went swimming to get the sw the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and the cow save/ed : the ball.,and the cow saved the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and then he was under the water.,and then he was under the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,(he gave it) he gave the ball to the elephant.,he gave it he gave the ball to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and the elephant thank/ed him.,and the elephant thanked him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,she was really happy that her ball was back.,she was really happy that her ball was back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,The elephant and the cow (are have/ing a) I think they found something in the swimming pool.,The elephant and the cow are having a I think they found something in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,the elephant talk/ed to the cow.,the elephant talked to the cow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and she was not watch/ing where she was go/ing.,and she was not watching where she was going +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and then she slip/ed.,and then she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,the cow (was try/ing) was run/ing to save her.,the cow was trying was running to save her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,the elephant hurt her knee.,the elephant hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,the lifeguard came and help/ed the elephant.,the lifeguard came and helped the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,the lifeguard put a bandage on the elephant.,the lifeguard put a bandage on the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,then the elephant sat on a bench with the lifeguard.,then the elephant sat on a bench with the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,(the ele) the little elephant got in trouble because there was a sign that said no run/ing.,the ele the little elephant got in trouble because there was a sign that said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,There was an elephant : and a cow.,There was an elephant and a cow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and the elephant was talk/ing to the cow.,and the elephant was talking to the cow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,the cow found an airplane.,the cow found an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and the : cow was make/ing the sound/s (uh).,and the cow was making the sounds uh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and then he was : fly/ing the airplane around with his hand.,and then he was flying the airplane around with his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,then the elephant just grab/ed : the airplane right out of : the cow/z hand (and was) : and look/ed at it.,then the elephant just grabbed the airplane right out of the cow's hand and was and looked at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,but (then while sh) then the cow try/ed to get it back.,but then while sh then the cow tried to get it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,but it went into the water.,but it went into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,(and then the cow was mad at the c um) and then the cow was mad at the elephant.,and then the cow was mad at the c um and then the cow was mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,the lifeguard came.,the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and they were both : amaze/ed.,and they were both amazed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,the elephant talk/ed to the lifeguard.,the elephant talked to the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,the lifeguard try/ed to get the : (pla) airplane.,the lifeguard tried to get the pla airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,: but the lifeguard could not get the airplane.,but the lifeguard could not get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,then the cow was cry/ing.,then the cow was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and then : another lifeguard : came : and had : (one of those[-:]) : something to pick it up with.,and then another lifeguard came and had one of those something to pick it up with +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,then she (oop) scoop/3s the airplane up with it.,then she oop scoops the airplane up with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and the cow was happy.,and the cow was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,the cow hug/ed the airplane.,the cow hugged the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and (the) : the elephant was smile/ing.,and the the elephant was smiling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,There was : a bunny and dog play/ing in the sandbox.,There was a bunny and dog playing in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,they both together made a sandcastle.,they both together made a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,the bunny he was : put/ing sand in a pail.,the bunny he was putting sand in a pail +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and then when the : dog was done make/ing the sandcastle the bunny pour/ed : sand : on the sandcastle.,and then when the dog was done making the sandcastle the bunny poured sand on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and then : the bunny and[!] the dog were not happy.,and then the bunny and the dog were not happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,so then the dog (had the) was cry/ing.,so then the dog had the was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and he had to make another one.,and he had to make another one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,a dog and a rabbit : were go/ing on a picnic together.,a dog and a rabbit were going on a picnic together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,(the b) the rabbit was a little bit (ra) late.,the b the rabbit was a little bit ra late +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,the rabbit (had) was act/ing like a pig and eat/ing everything.,the rabbit had was acting like a pig and eating everything +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,but the dog was look/ing at him.,but the dog was looking at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and then when the dog was start/ed to eat : the rabbit (was a) was all full.,and then when the dog was started to eat the rabbit was a was all full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and the garbage was all around him.,and the garbage was all around him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,then the rabbit had a headache.,then the rabbit had a headache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,so then (the doctor came to the : dog : and) [~_actually] the dog phone/ed[!] the doctor.,so then the doctor came to the dog and the dog phoned the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and : the doctor came.,and the doctor came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and the dog told the doctor what happen/ed (to the) to the rabbit.,and the dog told the doctor what happened to the to the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,so then (the dog took him to the doctor and) the dog took him to the doctor.,so then the dog took him to the doctor and the dog took him to the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and the doctor was amaze/ed.,and the doctor was amazed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and then : the doctor took the rabbit somewhere.,and then the doctor took the rabbit somewhere +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,The : girl dog is pull/ing a wagon.,The girl dog is pulling a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and the rabbit is come/ing.,and the rabbit is coming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,the rabbit like/3s : the balloon.,the rabbit likes the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,he want/3s to play with it.,he wants to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,the rabbit try/3s to untie the balloon from the wagon.,the rabbit tries to untie the balloon from the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,then the (ba) balloon fly/3s away.,then the ba balloon flies away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,(they tr) the rabbit and the dog try to get it.,they tr the rabbit and the dog try to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,so then (the dog) the girl dog is mad at the rabbit.,so then the dog the girl dog is mad at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and the rabbit is sad.,and the rabbit is sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,then they see : a (bunny) : bunny sell/ing more balloon/s.,then they see a bunny bunny selling more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,and the rabbit (co) go/3s and get/3s a balloon.,and the rabbit co goes and gets a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,(the balloo) (the rabbit do/3s um) (loo/3s for some) (f look/3s) the rabbit look/3s for five cent/s : to buy a balloon.,the balloo the rabbit does um loos for some f looks the rabbit looks for five cents to buy a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,the rabbit : do/3s not have five cent/s.,the rabbit does not have five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,so then they are both sad.,so then they are both sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,but then (the doctor come/3s) (the) the doctor come/3s.,but then the doctor comes the the doctor comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,the rabbit see/3s the doctor.,the rabbit sees the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,he go/3s to the doctor.,he goes to the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,he ask/3s for : five cent/s : so he can buy a balloon.,he asks for five cents so he can buy a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,so the doctor give/3s : them ten[!] cent/s so both (of) the dog and[!] the rabbit can have balloon/s.,so the doctor gives them ten cents so both of the dog and the rabbit can have balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/815.slt,then both of the animal/s are happy.,then both of the animals are happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,one day a giraffe saw an elephant at the pool.,one day a giraffe saw an elephant at the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,"and she was play/ing with a (ball) ball, bounce/ing it up and down.",and she was playing with a ball ball bouncing it up and down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,then she by accidentally bounce/ed it into the pool.,then she by accidentally bounced it into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and she could not go in and get it.,and she could not go in and get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,so they were both scare/ed.,so they were both scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and then the giraffe went in and swam after it.,and then the giraffe went in and swam after it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,(he brought) he swam over to the elephant and gave her (her) (the) her ball.,he brought he swam over to the elephant and gave her her the her ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and then she said thank you.,and then she said thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and : the giraffe (felt) felt proud.,and the giraffe felt felt proud +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and the elephant felt (va) very very happy.,and the elephant felt va very very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,one day giraffe and elephant decide/ed to go swim/ing.,one day giraffe and elephant decided to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,(the) (then the) so the elephant want/ed to go off the diving board.,the then the so the elephant wanted to go off the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,so : she start/ed to run.,so she started to run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,as she ran she slip/ed.,as she ran she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and the giraffe came run/ing.,and the giraffe came running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,she sat there with : a cut on her knee cry/ing.,she sat there with a cut on her knee crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,then the giraffe came run/ing even faster.,then the giraffe came running even faster +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,then : (the) (a l) the lifeguard came.,then the a l the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and (um) : the giraffe was just sit/ing there : make/ing sure that the elephant was okay.,and um the giraffe was just sitting there making sure that the elephant was okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and then the (um) lifeguard put (um on) a bandaid on the cut : (for) so the elephant : would not get her (um) : knee infect/ed.,and then the um lifeguard put um on a bandaid on the cut for so the elephant would not get her um knee infected +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,(um) then they sat her on a bench.,um then they sat her on a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and she look/ed at the bandaid.,and she looked at the bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and the lifeguard talk/ed to her.,and the lifeguard talked to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and the giraffe was also talk/ing to her.,and the giraffe was also talking to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,then the : lifeguard point/ed out the sign that said no run/ing.,then the lifeguard pointed out the sign that said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and then the elephant start/ed to blush.,and then the elephant started to blush +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,one day (um) giraffe brought an airplane to the pool.,one day um giraffe brought an airplane to the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and elephant saw it.,and elephant saw it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and ( sh) (it) (it) it look/ed really neat to her.,and sh it it it looked really neat to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,(the) the giraffe made all these sound/s with his tongue : (and he) as he : play/ed with his airplane.,the the giraffe made all these sounds with his tongue and he as he played with his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and the : elephant was amaze/ed.,and the elephant was amazed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,(then she just grab/ed) then she grab/ed : the airplane out of the giraffe/z hand.,then she just grabbed then she grabbed the airplane out of the giraffe's hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and : he was : surprise/ed.,and he was surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,(then she by acci) then she accidentally drop/ed it in the pool.,then she by acci then she accidentally dropped it in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,then the giraffe got mad.,then the giraffe got mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and the elephant felt sad.,and the elephant felt sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,so they got the lifeguard and told him about what had happen/ed.,so they got the lifeguard and told him about what had happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,then : he said so this is what happen/ed.,then he said so this is what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,it end/ed up in the pool.,it ended up in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,so he try/ed to reach it.,so he tried to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,but he could not.,but he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and so the giraffe start/ed to cry (and sw) and sweat because : he was afraid that his airplane might sink all the way.,and so the giraffe started to cry and sw and sweat because he was afraid that his airplane might sink all the way +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,then another elephant come/3s with : a net.,then another elephant comes with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and then she say/3s that maybe she could help.,and then she says that maybe she could help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,so then : she (take) use/3s her net to try and (get it) : get the airplane.,so then she take uses her net to try and get it get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and everybody watch/3s.,and everybody watches +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,then she get/3s it and give/3s it to the giraffe.,then she gets it and gives it to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,the giraffe is very happy.,the giraffe is very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and so is the elephant.,and so is the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,(um) one day a rabbit and : (um) a monster were build/ing a castle in the sandbox.,um one day a rabbit and um a monster were building a castle in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,(um) : so the monster was straighten/ing up the castle (the rab) (and the rabbit) while the rabbit was put/ing sand in the bucket.,um so the monster was straightening up the castle the rab and the rabbit while the rabbit was putting sand in the bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and then the rabbit dump/ed : all the sand that he put in the bucket onto the castle.,and then the rabbit dumped all the sand that he put in the bucket onto the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and then it fell down.,and then it fell down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and all that was left was a little tower.,and all that was left was a little tower +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and : the monster start/ed to cry.,and the monster started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and it start/ed to put it (up) back up.,and it started to put it up back up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,(but the) and the rabbit felt bad.,but the and the rabbit felt bad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,the same monster and rabbit decide/ed to go on a picnic.,the same monster and rabbit decided to go on a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,when they got there the monster had start/ed to unpack.,when they got there the monster had started to unpack +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,but the rabbit had (all this) all the food.,but the rabbit had all this all the food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,but the monster all that it had was sandwich/s and juice.,but the monster all that it had was sandwiches and juice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,so the rabbit got all hot and start/ed to eat.,so the rabbit got all hot and started to eat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and : the monster (had) had not start/ed eat/ing.,and the monster had had not started eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,but the rabbit had already finish/ed before the monster could start to eat.,but the rabbit had already finished before the monster could start to eat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,then the rabbit did not feel (too) too good.,then the rabbit did not feel too too good +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,so the : monster was puzzle/ed.,so the monster was puzzled +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,(and he did not) and she did not know what to do.,and he did not and she did not know what to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and then (she got) a doctor was walk/ing past.,and then she got a doctor was walking past +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and then she ran and got the doctor.,and then she ran and got the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and then (she) (the) she pull/ed the doctor towards the rabbit.,and then she the she pulled the doctor towards the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,the doctor look/ed at the rabbit and : said that it ate too fast.,the doctor looked at the rabbit and said that it ate too fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,so it probably felt sick.,so it probably felt sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and then : (um) the rabbit : went with the doctor.,and then um the rabbit went with the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and he felt much better.,and he felt much better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,one day monster (put) (got) pull/ed up her wagon to rabbit with a balloon attach/ed to her wagon.,one day monster put got pulled up her wagon to rabbit with a balloon attached to her wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and the rabbit said hi.,and the rabbit said hi +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and then the rabbit saw the balloon and thought it look/ed neat.,and then the rabbit saw the balloon and thought it looked neat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,but the monster : was a little scare/ed that it might pop it.,but the monster was a little scared that it might pop it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and then the rabbit undid it.,and then the rabbit undid it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and the monster (s) just try/ed to tell it (not to) to stop.,and the monster s just tried to tell it not to to stop +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,but (um) the rabbit just kept on (t) untie/ing the balloon.,but um the rabbit just kept on t untying the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and then the balloon float/ed away.,and then the balloon floated away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,they both try/ed to get it.,they both tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and then (: all) all that they could see was a string.,and then all all that they could see was a string +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,the rabbit was scare/ed.,the rabbit was scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and the monster was very mad.,and the monster was very mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,then : the rabbit saw (a) a balloon man sell/ing balloon/s.,then the rabbit saw a a balloon man selling balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,so (he) he decide/ed to go and buy one for his friend.,so he he decided to go and buy one for his friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and then he ask/ed if he could buy a balloon.,and then he asked if he could buy a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and the man said yes.,and the man said yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,so he paid.,so he paid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,he had no money.,he had no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and the balloon/s were five cent/s.,and the balloons were five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,(so) (and the monst) (so he try/ed) and he want/ed to surprise the monster.,so and the monst so he tried and he wanted to surprise the monster +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,but the monster was already come/ing his way.,but the monster was already coming his way +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,but then : the salesman (um) hear/ed the monster.,but then the salesman um heard the monster +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and the rabbit told the sale/s (man) man what (um happen/ed) had happen/ed to the balloon.,and the rabbit told the sales man man what um happened had happened to the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,the salesman thought that they could (um) have a balloon maybe.,the salesman thought that they could um have a balloon maybe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,(then he) then (th) they saw (um) the (uh) the doctor.,then he then th they saw um the uh the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,so the rabbit ran to the doctor and ask/ed for five cent/s : (uh) for a balloon.,so the rabbit ran to the doctor and asked for five cents uh for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and then the doctor said okay.,and then the doctor said okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and then she paid for two[!] balloon/s.,and then she paid for two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,so they each got one.,so they each got one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,(th) then they had so much fun.,th then they had so much fun +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/960.slt,and they were all happy.,and they were all happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,(um) [~_clears_throat] an elephant is play/ing : ball.,um an elephant is playing ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and a giraffe is come/ing along to watch.,and a giraffe is coming along to watch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,one of the ball/s skid/ed into the pool.,one of the balls skidded into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and they are both watch/ing it.,and they are both watching it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and then the giraffe : come/3s in : and try/3s to get the ball : and give/3s it to the elephant.,and then the giraffe comes in and tries to get the ball and gives it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the : elephant is happy that the giraffe (give) (fou um) : swim|swim[EW:swam] (and get) and got the ball and give|give[EW:gave] it back.,and the elephant is happy that the giraffe give fou um swim and get and got the ball and give it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,(um) a giraffe : and an elephant are watch/ing the : swimming pool.,um a giraffe and an elephant are watching the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,then the elephant say/3s : let us go over here.,then the elephant says let us go over here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and : they are run/ing over to there.,and they are running over to there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the elephant look/3s like he is go/ing to slip.,and the elephant looks like he is going to slip +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the elephant stub/3s his : knee.,and the elephant stubs his knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and it is cut.,and it is cut +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the elephant is come/ing along (and) the lifeguard : (and) to see what was the matter.,and the elephant is coming along and the lifeguard and to see what was the matter +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the lifeguard is give/ing the elephant a bandaid [~_coughs].,and the lifeguard is giving the elephant a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the lifeguard is take/ing the elephant : (with) : out : to : the side.,and the lifeguard is taking the elephant with out to the side +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and : the lifeguard is tell/ing the elephant no run/ing.,and the lifeguard is telling the elephant no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,The elephant is [~_coughs] happy.,The elephant is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and she want/3s to go somewhere.,and she wants to go somewhere +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the giraffe is play/ing with his : plane.,and the giraffe is playing with his plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the elephant took it.,and the elephant took it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and[-:] she want/3s to try.,and she wants to try +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and it go/3s into the water [~_coughs].,and it goes into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the giraffe : is get/ing mad at the elephant for : put/ing it in the water.,and the giraffe is getting mad at the elephant for putting it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,the lifeguard is look/ing : and the giraffe and the elephant [EU].,the lifeguard is looking and the giraffe and the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the plane is in the pool.,and the plane is in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,(the li) (life) the elephant is tell/ing the lifeguard what happen/ed [~_coughs].,the li life the elephant is telling the lifeguard what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,the lifeguard is try/ing : to get the : airplane out of the water.,the lifeguard is trying to get the airplane out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,he can not.,he can not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the giraffe is cry/ing.,and the giraffe is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,then : another : person comes along with a net.,then another person comes along with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,(and sh) (and she got) and she is try/ing to get it.,and sh and she got and she is trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,she got it : and gave it to the giraffe.,she got it and gave it to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and : now the giraffe is happy.,and now the giraffe is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,now the giraffe is : hug/ing the airplane.,now the giraffe is hugging the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and : he is happy.,and he is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the elephant is happy too.,and the elephant is happy too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,(Um um : a : um) a brother rabbit and a sister rabbit *are play/ing in the sandbox [EU].,Um um a um a brother rabbit and a sister rabbit playing in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the : sister rabbit is : make/ing a sandcastle.,and the sister rabbit is making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the brother rabbit is get/ing some sand out of the bucket.,and the brother rabbit is getting some sand out of the bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and then the brother rabbit is pour/ing it over top of the sandcastle.,and then the brother rabbit is pouring it over top of the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and then : the sister rabbit is look/ing at the sandcastle.,and then the sister rabbit is looking at the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the brother rabbit is : (um : um) : mad : I think.,and the brother rabbit is um um mad I think +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and then : the sister rabbit is try/ing to make it over again.,and then the sister rabbit is trying to make it over again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the brother rabbit is stand/ing there.,and the brother rabbit is standing there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,a brother rabbit and (a) a sister rabbit have (picnic bastics) picnic basket/s.,a brother rabbit and a a sister rabbit have picnic bastics picnic baskets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and : they are go/ing for a picnic.,and they are going for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the brother rabbit is have/ing a carrot and a sandwich.,and the brother rabbit is having a carrot and a sandwich +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and : the sister rabbit is pull/ing out her stuff.,and the sister rabbit is pulling out her stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the brother rabbit is full.,and the brother rabbit is full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the sister rabbit is have/ing the sandwich and a drink.,and the sister rabbit is having the sandwich and a drink +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and (the brother rabbit) the (bluther) brother rabbit is : (um) hold/ing his stomach.,and the brother rabbit the bluther brother rabbit is um holding his stomach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the sister rabbit is still have/ing some drink : and something to eat.,and the sister rabbit is still having some drink and something to eat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,(the) and a doctor is come/ing.,the and a doctor is coming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the sister (says : wait) : want/3s him to wait.,and the sister says wait wants him to wait +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the sister rabbit is drag/ing the doctor (to his) to her brother.,and the sister rabbit is dragging the doctor to his to her brother +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the doctor is check/ing out the brother rabbit.,and the doctor is checking out the brother rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,now the doctor and the brother rabbit are walk/ing away.,now the doctor and the brother rabbit are walking away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,(um) the sister rabbit is pull/ing a wagon with a balloon tie/ed to it.,um the sister rabbit is pulling a wagon with a balloon tied to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and Brother Rabbit : is : try/ing to take the balloon.,and Brother Rabbit is trying to take the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and he is untie/ing the balloon from the wagon.,and he is untying the balloon from the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and now (it's f) the balloon is float/ing up.,and now it's f the balloon is floating up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and both of them are try/ing to catch it.,and both of them are trying to catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,(the brother) the sister rabbit is get/ing mad.,the brother the sister rabbit is getting mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the brother rabbit is watch/ing it go up.,and the brother rabbit is watching it go up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,then a man is come/ing with a whole bunch of balloon/s.,then a man is coming with a whole bunch of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and brother rabbit look/3s like he is go/ing to [~_gonna] run to him.,and brother rabbit looks like he is going to run to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the brother rabbit say/3s one balloon.,and the brother rabbit says one balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,balloon five cent[EW:cents] [EU].,balloon five cent +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and : the brother rabbit do/3s not have any money.,and the brother rabbit does not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,the brother rabbit is (hold/ing) put/ing his hand/s in his pocket/s.,the brother rabbit is holding putting his hands in his pockets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and Sister Rabbit : is put/ing her hand/s by her side.,and Sister Rabbit is putting her hands by her side +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the man is stand/ing there with a whole bunch of balloon/s in his hand.,and the man is standing there with a whole bunch of balloons in his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,(hm) the : (um) doctor rabbit is there.,hm the um doctor rabbit is there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and Brother Rabbit is run/ing to the doctor.,and Brother Rabbit is running to the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,Doctor do you have any money (the) the (um) other rabbit is say/ing : to her.,Doctor do you have any money the the um other rabbit is saying to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the doctor is give/ing : the man : (fi) two five centses|cent[EW:cents].,and the doctor is giving the man fi two five centses +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the man is hold/ing out his hand : and two balloon/s for : the kid/s.,and the man is holding out his hand and two balloons for the kids +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,then : the : two rabbit/s have the balloon.,then the two rabbits have the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,and the : doctor is just smile/ing.,and the doctor is just smiling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/763.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,they are friend/s : play/ing with ball/s.,they are friends playing with balls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,: but one of the ball/s fell in the water.,but one of the balls fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,: then : (um) : (giraffe um) : (giraffe) the giraffe fell in the water too.,then um giraffe um giraffe the giraffe fell in the water too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and then there was one more ball.,and then there was one more ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,: then she want/ed to keep it.,then she wanted to keep it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,(there) they want to go swim/ing.,there they want to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,(so they) so the elephant said that let us go swim/ing.,so they so the elephant said that let us go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and so she kick/ed and run|run[EW:ran].,and so she kicked and run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,kick/ed and what?,kicked and what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,runned|run[EW:ran] [+_bch].,runned +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and she scrape/ed her knee on the (uhm) sidewalk.,and she scraped her knee on the uhm sidewalk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,: and her dad came.,and her dad came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and she was scare/ed to get a bandage.,and she was scared to get a bandage +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,: and then she close/ed her eye/s.,and then she closed her eyes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and she cry/ed when it was a bandage on her.,and she cried when it was a bandage on her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,: then she had to settle down.,then she had to settle down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,: her dad was (uhm) : so happy at her friend [EU].,her dad was uhm so happy at her friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and then her dad was mad at her.,and then her dad was mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,they were play/ing with : the airplane.,they were playing with the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and they are take/ing turn/s.,and they are taking turns +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and then : he said : he was play/ing with it.,and then he said he was playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and then (sh) (he) she took it away from the giraffe.,and then sh he she took it away from the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and then they drived|drive[EW:drove] in : through the water.,and then they drived in through the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and they drived|drive[EW:drove] and drived|drive[EW:drove].,and they drived and drived +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and : a dad came.,and a dad came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and she had to walk to the dad.,and she had to walk to the dad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,: and then she ask/ed her dad that : [~_high_pitched_voice] I let go of it.,and then she asked her dad that I let go of it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,: and then the dad try/ed to get : the : airplane.,and then the dad tried to get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,but it was drive/ing : to his hand.,but it was driving to his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and the dad was (so[-:]) so : try/ing to get it.,and the dad was so so trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,he was so mad.,he was so mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,: (she) (he cry/ed) the giraffe cry/ed.,she he cried the giraffe cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and then the mom came and got a fish/ing : net.,and then the mom came and got a fishing net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and then : she try/ed to get it.,and then she tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and then she did it.,and then she did it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,but she got it (thur) through her hand/s.,but she got it thur through her hands +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,: and then (she) he (um) love/ed play/ing with it.,and then she he um loved playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,(the bunny/s and) the bunny and the puppy dog were make/ing a sandcastle.,the bunnies and the bunny and the puppy dog were making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,they shovel/ed and shovel/ed and made a sandcastle.,they shoveled and shoveled and made a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and then he dump/ed it (on and) on the puppy dog/z sandcastle.,and then he dumped it on and on the puppy dog's sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and it : broke.,and it broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and (she : um) the bunny was so[-:] sad because : the dog was : so sad too.,and she um the bunny was so sad because the dog was so sad too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and she start/ed cry/ing.,and she started crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and the bunny was [+_bch] [+/]^,and the bunny was +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,(um they were) the bunny and the puppy dog want/ed to have a picnic.,um they were the bunny and the puppy dog wanted to have a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,so the : bunny was eat/ing too much.,so the bunny was eating too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and he felt sick.,and he felt sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and then his stomach was get/ing fuller and fuller : just like mine.,and then his stomach was getting fuller and fuller just like mine +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and : (his head) his (um) head was : too full.,and his head his um head was too full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and then he runned|run[EW:ran]: to get his mother.,and then he runned to get his mother +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,he pull/ed and pull/ed on (him) her.,he pulled and pulled on him her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and then (he) she (um) check/ed the bunny.,and then he she um checked the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,she did what?,she did what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,check/ed the bunny [+_bch].,checked the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and then he had to go home : to the doctor/z.,and then he had to go home to the doctor's +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,(um) the bunny and the puppy dog were : take/ing a wagon with a balloon on.,um the bunny and the puppy dog were taking a wagon with a balloon on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and then the balloon was get/ing bigger and bigger.,and then the balloon was getting bigger and bigger +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,so (he tie) the bunny tie/ed it on.,so he tie the bunny tied it on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and then it blowed|blow[EW:blew] away out of his : hand.,and then it blowed away out of his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,the puppy dog was so mad.,the puppy dog was so mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,it pop/ed.,it popped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,: and then there was a guy : come/ing with a full (um) : (uh) balloon/s [EU].,and then there was a guy coming with a full um uh balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,guy come/ing with a what?,guy coming with a what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,(balloon/s) a full balloon/s [+_bch].,balloons a full balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and then (he) : he need/ed one for his wagon.,and then he he needed one for his wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and there was one number five.,and there was one number five +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and then that is it.,and then that is it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,I just got : one number five.,I just got one number five +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and there was only play/ing now.,and there was only playing now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,there was no more number five/s.,there was no more number fives +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,just only play/ing.,just only playing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and then they were so sad that there was only one number five.,and then they were so sad that there was only one number five +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,there was[EW:were] two left.,there was two left +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,and then they took it.,and then they took it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,we get to keep these two balloon/s.,we get to keep these two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/506.slt,yay[!] said : the puppy dog and the : bunny.,yay said the puppy dog and the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,An elephant and a : giraffe met together.,An elephant and a giraffe met together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and : they found something in the water.,and they found something in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,they (s) try/ed to (sw) swim.,they s tried to sw swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,the giraffe was try/ing to get it.,the giraffe was trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and the giraffe gave it to the elephant.,and the giraffe gave it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,(and then) and then the giraffe was all wet.,and then and then the giraffe was all wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,(Ah) a giraffe and an elephant saw something.,Ah a giraffe and an elephant saw something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,they try/ed to run for it.,they tried to run for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and then an elephant slip/ed.,and then an elephant slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and the elephant hurt her knee.,and the elephant hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and then a lifeguard (a) came.,and then a lifeguard a came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,then : (the lifeguard try/ed to put) the lifeguard put a bandaid on her knee.,then the lifeguard tried to put the lifeguard put a bandaid on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,(then) then the lifeguard put the elephant on the bench.,then then the lifeguard put the elephant on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,then the lifeguard point/ed at the sign no run/ing.,then the lifeguard pointed at the sign no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,A giraffe and a[EW:an] : elephant met together.,A giraffe and a elephant met together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,(they um) the giraffe (s) found an airplane.,they um the giraffe s found an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and then : the elephant took it from the : giraffe.,and then the elephant took it from the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,then it got into the water.,then it got into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,then it was sink/ing.,then it was sinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and then a lifeguard came.,and then a lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and then : the elephant : was : shout/ing at the lifeguard.,and then the elephant was shouting at the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and the lifeguard try/ed to get it.,and the lifeguard tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,but it stay/ed there.,but it stayed there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,so (he uh) another lifeguard got a net : and scoop/ed it up.,so he uh another lifeguard got a net and scooped it up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,then (i) the : lifeguard gave it to the (gi) giraffe.,then i the lifeguard gave it to the gi giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and then he was play/ing with it.,and then he was playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,a baby dog : and a : rabbit are play/ing in the sandbox.,a baby dog and a rabbit are playing in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,they are build/ing a sandcastle.,they are building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and : (the ra) the rabbit dump/ed some sand on the sandcastle.,and the ra the rabbit dumped some sand on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and it broke.,and it broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,(they start/ed) and they start/ed to cry except for the rabbit.,they started and they started to cry except for the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,a rabbit and a : dog are go/ing for a picnic.,a rabbit and a dog are going for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,they had a picnic together.,they had a picnic together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,the rabbit was too full.,the rabbit was too full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,the rabbit (um) : got a stomachache.,the rabbit um got a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and (he w) he was lay/ing on the (um) the : picnic : (w) on the grass.,and he w he was laying on the um the picnic w on the grass +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and a lady came.,and a lady came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and : the guy was still lay/ing on the grass.,and the guy was still laying on the grass +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,(then) then the lady : (um) check/ed him.,then then the lady um checked him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and then he was all better.,and then he was all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,a dog and a rabbit met together.,a dog and a rabbit met together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,the rabbit want/ed the balloon.,the rabbit wanted the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and he try/ed to take it off.,and he tried to take it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and (it fl) it flew away up in the sky.,and it fl it flew away up in the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,(and then : the) the dog got mad at the rabbit.,and then the the dog got mad at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and then a man came with a whole bunch of balloon/s.,and then a man came with a whole bunch of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and then : the rabbit pick/ed a balloon.,and then the rabbit picked a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and he pick/ed : balloon : five cent/s [EU].,and he picked balloon five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and he did not have any money.,and he did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,(then) then he did not (get) get any.,then then he did not get get any +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and then the girl got some.,and then the girl got some +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,(and) and the rabbit ask/ed for money.,and and the rabbit asked for money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and he (ga) gave (um the ra) the rabbit five cent/s.,and he ga gave um the ra the rabbit five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,and then he got a balloon.,and then he got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/723.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,one day a[EW:an]: elephant and a giraffe were play/ing by the : swimming pool.,one day a elephant and a giraffe were playing by the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the : elephant had (his) this really bouncy ball.,and the elephant had his this really bouncy ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then the ball fell in the water while they were play/ing with it.,and then the ball fell in the water while they were playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,(and the) and the : elephant was really : really (s) upset that his ball was in the water.,and the and the elephant was really really s upset that his ball was in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the : zebra was like maybe I could go get[!] it for her.,and the zebra was like maybe I could go get it for her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,so he jump/ed into the water and swam all[!] the way.,so he jumped into the water and swam all the way +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the elephant was worry/ed about the giraffe.,and the elephant was worried about the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the giraffe almost had the ball.,and the giraffe almost had the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,but then : he got it and came back : and gave it to the elephant.,but then he got it and came back and gave it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the elephant was really happy that he got his ball.,and the elephant was really happy that he got his ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then : the elephant : kind of[:_kinda] thinked|think[EW:thought] that the : giraffe was cute.,and then the elephant kind of thinked that the giraffe was cute +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and so did the : giraffe think the elephant was cute.,and so did the giraffe think the elephant was cute +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,one day an elephant and the giraffe (were) went to the swimming pool together because they want/ed to go swim/ing.,one day an elephant and the giraffe were went to the swimming pool together because they wanted to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the elephant was run/ing along.,and the elephant was running along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the giraffe was walk/ing[!] along : behind her.,and the giraffe was walking along behind her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then the elephant slip/ed.,and then the elephant slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then : the giraffe rush/ed over to her.,and then the giraffe rushed over to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and he never caught up.,and he never caught up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the : elephant got a big[!] cut on her leg.,and the elephant got a big cut on her leg +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the : giraffe was worry/ed.,and the giraffe was worried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,so he went to go get some help.,so he went to go get some help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then the lifeguard came over.,and then the lifeguard came over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the giraffe : was beside the elephant.,and the giraffe was beside the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the lifeguard : rush/ed over to her.,and the lifeguard rushed over to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the elephant start/ed to cry.,and the elephant started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then the lifeguard gave her a bandaid.,and then the lifeguard gave her a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,but it hurt the elephant when it got on.,but it hurt the elephant when it got on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the : giraffe was curious.,and the giraffe was curious +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,(what) why did he put on a bandaid?,what why did he put on a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,why did not he clean it up and stuff?,why did not he clean it up and stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then they help/ed her to a bench.,and then they helped her to a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the giraffe was go/ing to help.,and the giraffe was going to help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the elephant got her on the bench (with the).,and the elephant got her on the bench with the +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the elephant stuck out her leg.,and the elephant stuck out her leg +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the lifeguard : point/ed to a sign that said no run/ing.,and the lifeguard pointed to a sign that said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,(and the) : and the[-:] elephant (ss) was like (uh) I was not run/ing : (uh) : (um).,and the and the elephant ss was like uh I was not running uh um +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the lifeguard is like no run/ing at the swimming pool.,and the lifeguard is like no running at the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,you could slip and hurt yourself like you did.,you could slip and hurt yourself like you did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,one day the elephant and the giraffe were at the swimming pool.,one day the elephant and the giraffe were at the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,but the giraffe : brought his plane with him.,but the giraffe brought his plane with him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the elephant like/ed plane/s a lot.,and the elephant liked planes a lot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,so then (the) the giraffe (was) put it up in the air : twirl/ed it around.,so then the the giraffe was put it up in the air twirled it around +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the elephant is like wow !,and the elephant is like wow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then she grab/ed it out of the giraffe/z hand.,and then she grabbed it out of the giraffe's hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,"and she was like yes, I want to [~_wanna] play with this[!] one.",and she was like yes I want to play with this one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,it is real fun !,it is real fun +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then she (drop) accidentally drop/ed it in the water.,and then she drop accidentally dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and it start/ed to sink.,and it started to sink +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,you could only see the top of it.,you could only see the top of it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then the giraffe got really mad at the elephant.,and then the giraffe got really mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the elephant is like oops.,and the elephant is like oops +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then the lifeguard was on the other side.,and then the lifeguard was on the other side +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and he[!] saw it.,and he saw it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,he is like how did that plane get in there ?,he is like how did that plane get in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,(and they are) and they did not say nothing else.,and they are and they did not say nothing else +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then the elephant explain/ed what happen/ed to the lifeguard.,and then the elephant explained what happened to the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,"and the lifeguard is : hmmm, maybe I can help.",and the lifeguard is hmmm maybe I can help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,so he try/ed reach/ing over : to get the plane.,so he tried reaching over to get the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,but (he) his arm/s were a little bit too short.,but he his arms were a little bit too short +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then the : giraffe start/ed to cry.,and then the giraffe started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,(and the) and the elephant (s) look/ed very[!] upset.,and the and the elephant s looked very upset +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the lifeguard said there is nothing I can do.,and the lifeguard said there is nothing I can do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then this lady came along : with a real long net.,and then this lady came along with a real long net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and they are like wow !,and they are like wow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,could you help us get out my plane said the giraffe ?,could you help us get out my plane said the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and she said hmm okay.,and she said hmm okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,so she bent over and try/ed reach/ing for the plane.,so she bent over and tried reaching for the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and she got it.,and she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then (they are) the : giraffe thought (he) she would not get it.,and then they are the giraffe thought he she would not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then he start/ed to cry.,and then he started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,but then the lifeguard saw it : and is like yes she got it.,but then the lifeguard saw it and is like yes she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then she scoop/ed it up : with her net and gave it to the giraffe.,and then she scooped it up with her net and gave it to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the giraffe was really happy.,and the giraffe was really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and he said thank/s missus.,and he said thanks missus +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,you are a real help.,you are a real help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then the giraffe got : his plane back.,and then the giraffe got his plane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and he (went) yay I got my plane back.,and he went yay I got my plane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then the elephant said I am sorry that I drop/ed your plane in the water.,and then the elephant said I am sorry that I dropped your plane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and he said okay.,and he said okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,we could play with it together.,we could play with it together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,one day a bunny and a dog : went to a beach.,one day a bunny and a dog went to a beach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the dog already made a sandcastle.,and the dog already made a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the bunny ask/ed if he could help.,and the bunny asked if he could help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,so the bunny put some : sand in a box and was go/ing to [~_gonna] help the dog with his big sandcastle.,so the bunny put some sand in a box and was going to help the dog with his big sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then he pour/ed all the sand on the castle.,and then he poured all the sand on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then : the castle collapse/ed.,and then the castle collapsed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,it was full of sand.,it was full of sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the dog : look/ed very upset.,and the dog looked very upset +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,but the bunny was [~_gasps] oh no!,but the bunny was oh no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,so the dog start/ed to cry.,so the dog started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the bunny felt very sad that he broke his sandcastle.,and the bunny felt very sad that he broke his sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,one day a bunny and a dog went for a picnic : (at) in the forest.,one day a bunny and a dog went for a picnic at in the forest +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,the bunny pack/ed lot/s of stuff.,the bunny packed lots of stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,(and the) but the dog knew if he ate lot/s of stuff he will get a stomachache.,and the but the dog knew if he ate lots of stuff he will get a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,so he just pack/ed a little bit.,so he just packed a little bit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,the bunny ate all his stuff really really quickly.,the bunny ate all his stuff really really quickly +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and his belly got real big.,and his belly got real big +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then : the dog was eat/ing slowly.,and then the dog was eating slowly +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,so (he) it did not get a stomachache.,so he it did not get a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,but then the bunny felt very sick and had a real big stomachache.,but then the bunny felt very sick and had a real big stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the dog did not know what to do.,and the dog did not know what to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then : a bunny nurse came by.,and then a bunny nurse came by +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the : dog said I will help you bunny.,and the dog said I will help you bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,I will go get that nurse.,I will go get that nurse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then the nurse came.,and then the nurse came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,but : the dog struggle/ed her over to the bunny : that was lay/ing on the ground.,but the dog struggled her over to the bunny that was laying on the ground +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,the nurse told him to open up and say ah.,the nurse told him to open up and say ah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the bunny open/ed up.,and the bunny opened up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then : she said stop eat/ing so much food.,and then she said stop eating so much food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,you will get a : stomachache again.,you will get a stomachache again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,one day (the rabbit and the dog) (the) : (the rab) [~__no] the dog had a balloon with his wagon that he brought along with him to go walk by the park.,one day the rabbit and the dog the the rab the dog had a balloon with his wagon that he brought along with him to go walk by the park +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then he met the bunny again.,and then he met the bunny again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the bunny saw his balloon and want/ed to play with it.,and the bunny saw his balloon and wanted to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the dog (w) said okay.,and the dog w said okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then the bunny got the balloon : and untie/ed it.,and then the bunny got the balloon and untied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the dog is like [~_gasps] no*3!,and the dog is like no no no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then the bunny untie/ed it.,and then the bunny untied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the balloon flew away.,and the balloon flew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,(and) and they are both like no the balloon!,and and they are both like no the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then the dog got real[!] mad at the bunny.,and then the dog got real mad at the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the bunny is like oh no oh no the balloon!,and the bunny is like oh no oh no the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then (the :) the dog (s) was real real mad.,and then the the dog s was real real mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then the (r) bunny saw : a guy with a whole bunch of balloon/s.,and then the r bunny saw a guy with a whole bunch of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and (s) the dog was still mad at him.,and s the dog was still mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,so he went over : to the guy with the balloon/s.,so he went over to the guy with the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and he pick/ed one out.,and he picked one out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the guy said : five cent/s : for this balloon.,and the guy said five cents for this balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and the : bunny did not have no[EW:any] money.,and the bunny did not have no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then the dog came over.,and then the dog came over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and they both were stand/ing there.,and they both were standing there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,but the bunny keeper said five cent/s.,but the bunny keeper said five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and they both looked very upset.,and they both looked very upset +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,but then they saw : (I) the bunny/z mom.,but then they saw I the bunny's mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,so he went over to her.,so he went over to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,(and she) and he said mom I need five cent/s for the balloon because I lost : the dog/z balloon : and went high up into the air.,and she and he said mom I need five cents for the balloon because I lost the dog's balloon and went high up into the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,so she came over.,so she came over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,here you go.,here you go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,(and) and she gave him ten cent/s one for the dog and one for the rabbit.,and and she gave him ten cents one for the dog and one for the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then the : bunny and the dog was[EW:were] really happy.,and then the bunny and the dog was really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,(and then) and then the doggie was nice again to the bunny.,and then and then the doggie was nice again to the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and then they both had a balloon.,and then they both had a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/912.slt,and : the dog said thank/s to the bunny/z mom.,and the dog said thanks to the bunny's mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(they are) (they are) they are go/ing to pick some bubble/s.,they are they are they are going to pick some bubbles +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,they are put/ing bubble/s in the water.,they are putting bubbles in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(there is : he them :) he is try/ing to get the bubble.,there is he them he is trying to get the bubble +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(he got) (her[EW:she] got) the elephant got[!] the bubble.,he got her got the elephant got the bubble +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(he) her[EW:she] still : gots[EW:had] it in her hand.,he her still gots it in her hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,they are go/ing to : swim.,they are going to swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,they are go/ing to run.,they are going to run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,and : they are go/ing to : still swim.,and they are going to still swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(they) (they s) they are run/ing.,they they s they are running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(they are[-:]) [~_I_do_n(o)t_know_what] they got hurt.,they are they got hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,the elephant got hurt.,the elephant got hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(and) : (and) and her[EW:she] got hurt again.,and and and her got hurt again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,her[EW:she] gots[EW:has] a bandaid.,her gots a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,they are sit/ing.,they are sitting +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,now : the other[?] elephant is (ba) mad.,now the other elephant is ba mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,they are go/ing to : play.,they are going to play +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,they are got an airplane [EU].,they are got an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(it is go/ing) (the) (they) the elephant got it.,it is going the they the elephant got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(is) it went into a[EW:the] water.,is it went into a water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,and now he is mad.,and now he is mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(he) the elephant is mad.,he the elephant is mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,or they are both happy.,or they are both happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,but he is sad[!].,but he is sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,the elephant can not reach.,the elephant can not reach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,it is sink/ing.,it is sinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,her[EW:she] gots[EW:has] a net.,her gots a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,her[EW:she] gots[EW:has][!] it.,her gots it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,the airplane is back.,the airplane is back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(he) : (he l) he is happy now.,he he l he is happy now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,they are make/ing a sandcastle.,they are making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(the sandcastle : i) they are still make/ing the sandcastle.,the sandcastle i they are still making the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(the story) they are dump/ing : (the) : this thing on it.,the story they are dumping the this thing on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,it broked|broke[EW:broke][-:] .,it broked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,he is (dum) : close/ing the door.,he is dum closing the door +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(now is) : now it is sink/ing down.,now is now it is sinking down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,they are have/ing a picnic.,they are having a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,they are eat/ing[-:] .,they are eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(he is) they are done.,he is they are done +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,they are happy.,they are happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,the rabbit is full.,the rabbit is full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,he has a tummyache.,he has a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(he) he call/ed (the den) the doctor.,he he called the den the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(he is) (he is go/ing) her[EW:she] is go/ing (the) : to help him.,he is he is going her is going the to help him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(he is) : (her glass um) I do not know what that is [+_bch].,he is her glass um I do not know what that is +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,maybe it is a needle : or a medicine thing.,maybe it is a needle or a medicine thing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,maybe it is a medicine thing.,maybe it is a medicine thing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,he is feel/ing better.,he is feeling better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,he gots[EW:has] a balloon on the wagon.,he gots a balloon on the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,it is still on the wagon.,it is still on the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,they are look/ing at it.,they are looking at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,he is untie/ing it.,he is untying it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(it was) it is blow/ing away.,it was it is blowing away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,he is mad[-:] now.,he is mad now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(the) he is bring/ing more balloon/s.,the he is bringing more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(he nee) we need more balloon/s!,he nee we need more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(he) and he is for five dollar/s [EU].,he and he is for five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,but (they) he do/3s not.,but they he does not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,now they are sad (when he did not brought[EW:bring]) when he did not give them any balloon/s.,now they are sad when he did not brought when he did not give them any balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,now (the) (he) they are go/ing to have some balloon/s.,now the he they are going to have some balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(the den) the doctor came.,the den the doctor came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(why) : what is the problem[-:]?,why what is the problem +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(the) (the balloon man) : they had more balloon/s two balloon/s.,the the balloon man they had more balloons two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,here we have more balloon/s on the wagon.,here we have more balloons on the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,(thank) (they) now they are happy.,thank they now they are happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/460.slt,know what I got (a wa) a blue wagon [+_bch].,know what I got a wa a blue wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(um um) they *are look/ing at the apple/s [EU].,um um they looking at the apples +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,they are look/ing at the apple/s.,they are looking at the apples +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(um and) and somebody throwed|trow[EW:threw] the apple in.,um and and somebody throwed the apple in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,somebody threw the apple in.,somebody threw the apple in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(um) : and that giraffe want to[:_wanna] get it.,um and that giraffe want to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,the what?,the what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and the giraffe want to[:_wanna] get it [+_bch].,and the giraffe want to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,the giraffe want to?,the giraffe want to +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,get it [+_bch].,get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,get it oh.,get it oh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and he got it.,and he got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,he got it?,he got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,yeah [+_bch].,yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and then elephant *is hug/ing it [EU].,and then elephant hugging it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(um) them look/ing at the water.,um them looking at the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,them look/ing at the water.,them looking at the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(and) (and that elephant) (and that elephant) and that elephant (um) runned|run[EW:ran].,and and that elephant and that elephant and that elephant um runned +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,that elephant runned|run[EW:ran]?,that elephant runned +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and fast.,and fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,fast?,fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,yeah [+_bch].,yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(and) (and he) and he got a owie.,and and he and he got a owie +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,he got a owie.,he got a owie +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(and) and he (look) *is look/ing at it [EU].,and and he look looking at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,tell me again.,tell me again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(and they look/ing) and the giraffe and the elephant *are look/ing at it [EU].,and they looking and the giraffe and the elephant looking at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,oh the giraffe and elephant *are look/ing at it [EU].,oh the giraffe and elephant looking at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,[~_yep] (and) (and) (and the guy) and the guy put a bandage on it.,and and and the guy and the guy put a bandage on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,a guy put a bandage on it?,a guy put a bandage on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,[~_yeah] (and) (and) (and) (and a[EW:an] elephant) and a[EW:an] elephant sit[EW:sat] down.,and and and and a elephant and a elephant sit down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,a[EW:an] elephant sit[EW:sat] down.,a elephant sit down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,[~_yeah] (and hold/ing) and hold/ing it [EU].,and holding and holding it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and hold/ing it [EU]?,and holding it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,yeah [+_bch].,yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(um) a giraffe : got a[EW:an] airplane.,um a giraffe got a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,the?,the +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,a giraffe got a[EW:an] airplane [+_bch].,a giraffe got a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,a giraffe bought a[EW:an] airplane?,a giraffe bought a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,[~_yeah] (and) and he flied|fly[EW:flew] it [EU].,and and he flied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,he flied|fly[EW:flew] it.,he flied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(and) (and) and the elephant taked|take[EW:took] it from him [~_EXA:_and__the_elephant_take_it_from_him] [~_yeah] (and throwed|throw[EW:threw]) and throwed|throw[EW:threw] it in the water.,and and and the elephant taked it from him and throwed and throwed it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and throwed|throw[EW:threw] it in the water.,and throwed it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and they [+/]^,and they +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,oops sorry I miss/ed one [~_finds_correct_page].,oops sorry I missed one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(and) (and) (and they) and the giraffe got mad at him.,and and and they and the giraffe got mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,the giraffe got mad at him.,the giraffe got mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(and) : (and) (and) (and) (and the) (and the) and the man got sad [EU].,and and and and and the and the and the man got sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and the man got sad?,and the man got sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(and) (and the elephant) : (and : he took um) : (xxx) I have not told him he got in the water [EU].,and and the elephant and he took um x I have not told him he got in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,the elephant told him.,the elephant told him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,in the water [+_bch] [EU].,in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,tell me that again.,tell me that again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(um um) elephant told him : [~_EXA:_told_him] that elephant is in the water.,um um elephant told him that elephant is in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,elephant is in the water.,elephant is in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(and) (and the) and the man try/ed to get it.,and and the and the man tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,the man try/ed to get it.,the man tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,[~_yeah] (and) (and) (and the giraffe) and the giraffe cry/ed.,and and and the giraffe and the giraffe cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and giraffe?,and giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,cry/ed [+_bch].,cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,cry/ed?,cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,yeah [+_bch].,yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(and) (and the xxx) and the xx get|get[EW:got] it.,and and the x and the get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,the what?,the what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,the girl[?] get|get[EW:got] it.,the girl get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,the girl?,the girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,yeah [+_bch].,yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,get|get[EW:got] it?,get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,yeah [+_bch].,yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,oh.,oh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(and) and she got it.,and and she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and she got it.,and she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,[~_yeah] : (and the giraffe) (and) (and the girl) and the girl give|give[EW:gave] it to him.,and the giraffe and and the girl and the girl give it to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and the girl give|give[EW:gave] it to him.,and the girl give it to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,[~_yeah] (and) and giraffe *is hold/ing it.,and and giraffe holding it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,the giraffe.,the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,was hold/ing it [+_bch].,was holding it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(um and a) (a rabbit) and a rabbit and a dog was[EW:were] make/ing a castle.,um and a a rabbit and a rabbit and a dog was making a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,a rabbit comed|come[EW:came] at the dog/z (um) sandbox [EU].,a rabbit comed at the dog's um sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,a rabbit what?,a rabbit what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(a) (a rabbit) a rabbit comed|come[EW:came] at the dog/z (um san) sand [+_bch] [EU].,a a rabbit a rabbit comed at the dog's um san sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,sandbox?,sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,yeah [+_bch].,yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(and the) and the rabbit was (make/ing um) dig/ing a hole.,and the and the rabbit was making um digging a hole +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,the rabbit was.,the rabbit was +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,dig/ing a hole [+_bch].,digging a hole +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,dig/ing a hole?,digging a hole +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,"[~_yeah] (and) (and) (and) (and um) (and) (and uh) (and he) and he got the pot[?] on the bucket [~__pronounced_""buttit""] down.",and and and and um and and uh and he and he got the pot on the bucket down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,he got a?,he got a +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,"bucket [~_pronounced_""buttit""] [+_bch].",bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,buttit?,buttit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,no [+_bch].,no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,oh.,oh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,"a bucket [~_pronounced_""buttit""] [+_bch].",a bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,a bucket!,a bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,yeah [+_bch].,yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,oh you got a bucket.,oh you got a bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(and) and the sand got out.,and and the sand got out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and the sand got out?,and the sand got out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,yeah [+_bch].,yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,okay.,okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(and) (and) (and) (and he) and he do|do[EW:did] this.,and and and and he and he do this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and he do|do[EW:did] this.,and he do this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,yeah [+_bch].,yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,what?,what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(and) (and) and that puppy was look/ing at it.,and and and that puppy was looking at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,the puppy was look/ing at it : okay.,the puppy was looking at it okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(and) (and he fw) (and) (and) and he cry/ed.,and and he fw and and and he cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and he cry/ed : oh.,and he cried oh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(um um) and the dog and the rabbit was[EW:were] have/ing a picnic.,um um and the dog and the rabbit was having a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,a dog and a rabbit was[EW:were] have/ing a picnic.,a dog and a rabbit was having a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,[~_yeah] (and) (and) (and a) and a rabbit have|have[EW:has] a carrot and a sandwich.,and and and a and a rabbit have a carrot and a sandwich +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,a rabbit have|have[EW:has] a carrot and a sandwich.,a rabbit have a carrot and a sandwich +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,[~_yeah] (and) (and he had) and a dog was still eat/ing.,and and he had and a dog was still eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,the dog was still eat/ing?,the dog was still eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,yeah [+_bch].,yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,okay.,okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and he was have/ing a drink.,and he was having a drink +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,he was have/ing a?,he was having a +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,drink [+_bch].,drink +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,a drink?,a drink +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,yeah a dog [+_bch].,yeah a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,a what?,a what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,a dog [+_bch].,a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,a dog?,a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,yeah [+_bch].,yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(and) and there is (a puppy that) (that) (that um) (that : girl) (that doctor) a doctor rabbit.,and and there is a puppy that that that um that girl that doctor a doctor rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,a doctor rabbit?,a doctor rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,[~_yeah] the dog got it.,the dog got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,the dog got it?,the dog got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,yeah [+_bch].,yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(and) and he pull/ed him[EW:his] shirt.,and and he pulled him shirt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and he pull/ed him[EW:his] shirt?,and he pulled him shirt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,yeah [+_bch].,yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(and he got) and he got him.,and he got and he got him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and he got him?,and he got him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,[~_yeah] (and) and he bring|bring[EW:brought] him at the doctor/z [EU].,and and he bring him at the doctor's +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,I am sorry and he?,I am sorry and he +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,bring|bring[EW:brought] him at the doctors [+_bch] [EU].,bring him at the doctors +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(a pup) a puppy was got (a um) a balloon (on) (on the) on the wagon [EU].,a pup a puppy was got a um a balloon on on the on the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,the puppy was?,the puppy was +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,got (a) a balloon [+_bch].,got a a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,got a balloon.,got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,on the wagon [+_bch].,on the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,on the?,on the +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,wag[+/] [+_bch]^,wag +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,wagon.,wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,yeah [+_bch].,yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,oh okay.,oh okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,(and) (and that) (and that) (and that rabbit was) and he smile/ed a rabbit [~_EXA:_a_the_rabbit_he_smile/ed] [~_yeah] and take|take[EW:took] it off.,and and that and that and that rabbit was and he smiled a rabbit and take it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and take|take[EW:took] it off?,and take it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,[~_yeah] (and) (and) (and) (and the) and the balloon was get/ing away.,and and and and the and the balloon was getting away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,the balloon was get/ing away.,the balloon was getting away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,[~_yeah] (and) (and) and the balloon pop/ed.,and and and the balloon popped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,the balloon pop/ed!,the balloon popped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,[~_yeah] (and) (and the rab) (and) and the balloon man rabbit gotted|got[EW:got] a balloon/s [EU].,and and the rab and and the balloon man rabbit gotted a balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,a balloon man : a rabbit?,a balloon man a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,yeah [+_bch].,yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,got?,got +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,the balloon/s [+_bch].,the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,got all the balloon/s?,got all the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,[~_yeah] : (and) (and) (and they) and the rabbit got one.,and and and they and the rabbit got one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and the rabbit got one?,and the rabbit got one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,[~_yeah] : (they got) he got one [+_BCH].,they got he got one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,he get[EW:got] one?,he get one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,[~_yeah] : (and) and he did not give them one.,and and he did not give them one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and he can not give them one?,and he can not give them one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,[~_no] : and a doctor was there.,and a doctor was there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and a?,and a +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,doctor was there [+_bch].,doctor was there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,a doctor was there!,a doctor was there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,[~_yeah] (and) (and) (and a rabbit) (and a rabbit said) (the rab) (a doctors) a rabbit said that (a) doctor I need/ed a balloon.,and and and a rabbit and a rabbit said the rab a doctors a rabbit said that a doctor I needed a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,the rabbit said to the doctor I need a balloon?,the rabbit said to the doctor I need a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and they give|give[EW:gave] (they) they[EW:them] one.,and they give they they one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,pardon me?,pardon me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,they gived|give[EW:gave] one of them [+_bch].,they gived one of them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,they give|give[EW:gave] one of them?,they give one of them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and they (got) got one.,and they got got one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,and they got one.,and they got one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,one of the rabbit and one of (the) a puppy [EU].,one of the rabbit and one of the a puppy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,one for the rabbit and one for the puppy?,one for the rabbit and one for the puppy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/476.slt,yeah [+_bch].,yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,There was once an elephant and *a giraffe [EU].,There was once an elephant and giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,they are play/ing with a ball and see who could bounce the ball the fastest [EU].,they are playing with a ball and see who could bounce the ball the fastest +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and all of sudden the ball bounce/ed into a pool.,and all of sudden the ball bounced into a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and the giraffe did not have a swimming suit on.,and the giraffe did not have a swimming suit on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,but the elephant did.,but the elephant did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and she said I would go get it for you.,and she said I would go get it for you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and (sh) the giraffe said thank you.,and sh the giraffe said thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,so the giraffe jump/ed off in the pool instead of the elephant and went to go get the ball.,so the giraffe jumped off in the pool instead of the elephant and went to go get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,but he was just about there.,but he was just about there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,the giraffe gave the ball to the elephant.,the giraffe gave the ball to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and the elephant said you are a real neat swimmer.,and the elephant said you are a real neat swimmer +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,(and the) and then when the giraffe got out he was all soak/ing wet.,and the and then when the giraffe got out he was all soaking wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and so was the elephant.,and so was the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,(and um :) (and : um) and they fell in love.,and um and um and they fell in love +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,The giraffe and the elephant : saw a sign say/ing no run/ing.,The giraffe and the elephant saw a sign saying no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,but they felt like run/ing to the diving board.,but they felt like running to the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and the elephant said I will beat you there first.,and the elephant said I will beat you there first +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and the giraffe said not if I can.,and the giraffe said not if I can +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and all of a sudden the elephant slip/ed.,and all of a sudden the elephant slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and he said oh no : help.,and he said oh no help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and all of a sudden she trip/ed and hit her knee and start/ed cry/ing because it hurt really bad.,and all of a sudden she tripped and hit her knee and started crying because it hurt really bad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,the lifeguard came : and ask[EW:asked] her what was wrong.,the lifeguard came and ask her what was wrong +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,I was run/ing and fell on my knee.,I was running and fell on my knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,so (the ele) the lifeguard put a (um) bandage on her.,so the ele the lifeguard put a um bandage on her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and (she) she was ready to cry because it hurt.,and she she was ready to cry because it hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,(and) and she did not cry because it was not that[!] bad.,and and she did not cry because it was not that bad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and then the lifeguard said did not you see the sign that said no run/ing.,and then the lifeguard said did not you see the sign that said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and then she said oh I never saw that.,and then she said oh I never saw that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and then she was in a lot of trouble from the lifeguard because : she was run/ing without (the) see/ing the sign say/ing no run/ing.,and then she was in a lot of trouble from the lifeguard because she was running without the seeing the sign saying no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,The elephant start/ed feel/ing happy.,The elephant started feeling happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and she said let us go for a swim.,and she said let us go for a swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,but the giraffe was play/ing with his toy airplane.,but the giraffe was playing with his toy airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,(and he did not) (and he did not) he got upset.,and he did not and he did not he got upset +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and (she did not) (um) she like/ed play/ing with him.,and she did not um she liked playing with him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,(so the) so the elephant just grab/ed the (el) airplane away and start/ed drive/ing it : without even ask/ing to play with it.,so the so the elephant just grabbed the el airplane away and started driving it without even asking to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and all of a sudden the elephant threw it up in the air.,and all of a sudden the elephant threw it up in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,it came twirl/ing around and land/ed in the water.,it came twirling around and landed in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and the giraffe said : (you are) you are not suppose/ed to be do/ing that with the airplane.,and the giraffe said you are you are not supposed to be doing that with the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,now all of a sudden the airplane start/ed : to sink.,now all of a sudden the airplane started to sink +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and the giraffe got mad and mad : and start/ed yell/ing at the elephant.,and the giraffe got mad and mad and started yelling at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,the lifeguard came.,the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and the giraffe was sad because his (plane) airplane was in the water.,and the giraffe was sad because his plane airplane was in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and the elephant start/ed walk/ing away.,and the elephant started walking away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,so the elephant told him that : he was play/ing with it.,so the elephant told him that he was playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,so I just grab/ed it away from him and start/ed play/ing with it too.,so I just grabbed it away from him and started playing with it too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,I threw it up in the air.,I threw it up in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and there it land/ed in the water[!].,and there it landed in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and the lifeguard try/ed to grab it.,and the lifeguard tried to grab it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,but it was too far away from the edge that he could not grab it.,but it was too far away from the edge that he could not grab it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,but the lifeguard did not know what to do.,but the lifeguard did not know what to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and : the giraffe start/ed cry/ing because : he did not want to go in the water.,and the giraffe started crying because he did not want to go in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and the elephant start/ed feel/ing sorry.,and the elephant started feeling sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and so the other lifeguard came and grab/ed the net.,and so the other lifeguard came and grabbed the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and all of a sudden she pull/ed it back in and gave it to the giraffe.,and all of a sudden she pulled it back in and gave it to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and the elephant (was) were[EW:was] happy.,and the elephant was were happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and then she try/ed and try/ed.,and then she tried and tried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and then when she finally got it : the elephant and giraffe were happy.,and then when she finally got it the elephant and giraffe were happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,the giraffe ran and thank/ed the lifeguard.,the giraffe ran and thanked the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and then the giraffe and the elephant took turn/s play/ing with the airplane.,and then the giraffe and the elephant took turns playing with the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,there is a rabbit and a dog (s) build/ing a sandcastle inside the sandbox.,there is a rabbit and a dog s building a sandcastle inside the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and then they came up with a great idea for the sandcastle.,and then they came up with a great idea for the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,so the dog start/ed work/ing on the sandcastle to make it better (while this) while the : rabbit start/ed making a hill of sand.,so the dog started working on the sandcastle to make it better while this while the rabbit started making a hill of sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,so there is[EW:are] hill/s[!] all over it.,so there is hills all over it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and (then the dog) after the dog was finish/ed build/ing it it was so beautiful that the rabbit : thought it would be so funny to pour the whole bucket of sand on top of it.,and then the dog after the dog was finished building it it was so beautiful that the rabbit thought it would be so funny to pour the whole bucket of sand on top of it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and all of a sudden (the) : only one part of the sandcastle was left.,and all of a sudden the only one part of the sandcastle was left +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and it was one of the window/s.,and it was one of the windows +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,(and the rabbit) and the dog : start/ed look/ing funny.,and the rabbit and the dog started looking funny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and the dog start/ed cry/ing.,and the dog started crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and the rabbit start/ed look/ing up and start/ed walk/ing away.,and the rabbit started looking up and started walking away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,(Then the one) then the other day : the dog want/ed to go for a picnic.,Then the one then the other day the dog wanted to go for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and then the rabbit said : could I come?,and then the rabbit said could I come +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,I will bring my own food.,I will bring my own food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,then the dog said okay.,then the dog said okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,(the rabbit brought a) the rabbit brought pickle/s : cheese : mustard : sandwich/s strawberry/s : (um) a cake and some sub/s and a carrot.,the rabbit brought a the rabbit brought pickles cheese mustard sandwiches strawberries um a cake and some subs and a carrot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and the dog brang|bring[EW:brought] a sandwich : and a juice.,and the dog brang a sandwich and a juice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,(and) and the pig start/ed feeling (um) full.,and and the pig started feeling um full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and he ate all his stuff.,and he ate all his stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and he left a big mess.,and he left a big mess +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and then the dog was just sit/ing there eat/ing.,and then the dog was just sitting there eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and (then the) : then the rabbit start/ed burp/ing right in front of him and start/ed walk/ing crazy.,and then the then the rabbit started burping right in front of him and started walking crazy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,(and then his mother) and then (all) his mother rabbit came.,and then his mother and then all his mother rabbit came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and then the dog went race/ing to say : your son he is[EW:has] gotten dizzy.,and then the dog went racing to say your son he is gotten dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and then he drag/ed (the rabbit) his mother over there : to see what happen/ed.,and then he dragged the rabbit his mother over there to see what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and all of a sudden : she said you should not have eaten too much food : you pig.,and all of a sudden she said you should not have eaten too much food you pig +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and then they went walk/ing off home.,and then they went walking off home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and then that even/ing the dog was pull/ing : his wagon with nothing in it.,and then that evening the dog was pulling his wagon with nothing in it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and it had a balloon on it.,and it had a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and the rabbit said hey could I see the balloon?,and the rabbit said hey could I see the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and the dog said okay then.,and the dog said okay then +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,but be careful.,but be careful +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,so the rabbit start/ed untie/ing it.,so the rabbit started untying it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and the dog start/ed say/ing : no do not do that.,and the dog started saying no do not do that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,you will let it fly away.,you will let it fly away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and the rabbit did not do it.,and the rabbit did not do it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,he just kept on untie/ing the balloon.,he just kept on untying the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and all of a sudden the rabbit let the balloon go and start/ed crying : when it was not his.,and all of a sudden the rabbit let the balloon go and started crying when it was not his +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,it was the dog/z.,it was the dog's +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and he start/ed run/ing after it and *was yell/ing help help [EU]!,and he started running after it and yelling help help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,all of a sudden the dog got mad at the rabbit.,all of a sudden the dog got mad at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and the rabbit start/ed cry/ing.,and the rabbit started crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,then the dog was so mad that the rabbit had an idea.,then the dog was so mad that the rabbit had an idea +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,he saw another rabbit sell/ing balloon/s.,he saw another rabbit selling balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,so he went to go buy them.,so he went to go buy them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,the rabbit said I will take that one.,the rabbit said I will take that one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,the purple one said the big rabbit?,the purple one said the big rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,he said yes.,he said yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,so he bought that one for five cent/s.,so he bought that one for five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,: (but the r) but the[~!_laughs] rabbit was out of change.,but the r but the rabbit was out of change +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and then the rabbit : said sorry but you can not buy that balloon.,and then the rabbit said sorry but you can not buy that balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,you do not have five cent/s.,you do not have five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,then all of a sudden (the r) he saw another[!] rabbit.,then all of a sudden the r he saw another rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and he went to go ask him[!] if he had five cent/s.,and he went to go ask him if he had five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and he said could I borrow five cent/s to buy my friend a purple balloon?,and he said could I borrow five cents to buy my friend a purple balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and then : she gave him ten cent/s instead and got two balloon/s for both of them.,and then she gave him ten cents instead and got two balloons for both of them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,and then they were both happy : really happy.,and then they were both happy really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/805.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,the : elephant want/3s to get the balloon/s.,the elephant wants to get the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,she lost her balloon.,she lost her balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and (she said) oh my : elephant said.,and she said oh my elephant said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and that[!] said : he would get it for (her) the elephant [EU].,and that said he would get it for her the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,she was so proud to go get her balloon.,she was so proud to go get her balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,she want/3s to get it and like|like[EW:likes][?] her.,she wants to get it and like her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,the : that elephant want/3s to get in the pool.,the that elephant wants to get in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,(the elephant pus) : he push|push[EW:pushed] her in.,the elephant pus he push her in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and (she is like) : she runned|run[EW:ran].,and she is like she runned +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,(: and it is like :) she went [~_yeeha].,and it is like she went +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and she hurt her knee.,and she hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and she cry/ed.,and she cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,then : it was so better : in the bandaid [EU].,then it was so better in the bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and : she like/3s her bandaid.,and she likes her bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,it help|help[EW:helps] her feel better.,it help her feel better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,the elephant (was) : (the ban) : the bandaid help|help[EW:helps] her feel better.,the elephant was the ban the bandaid help her feel better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,then : she fall|fall[EW:fell] down in a[EW:an] airplane [EU].,then she fall down in a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and she got it in the airplane [EU].,and she got it in the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and she was so happy.,and she was so happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,then she was : so happy to get (uh) : her airplane.,then she was so happy to get uh her airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,she want/3s her airplane back.,she wants her airplane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,then : she want/3s it.,then she wants it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and (she want/3s) : then : he will get it for her.,and she wants then he will get it for her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,(and sh) : and he could reach it for her.,and sh and he could reach it for her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and thinks so he could [EU].,and thinks so he could +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,"and he gots[EW:has] xx [~_sounds_like_""basmin""] and like a suit.",and he gots and like a suit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,I guess : (she) : he : (xx) got (hims ai) her airplane.,I guess she he got hims ai her airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and she was still happy.,and she was still happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,(and) and this other was : mines[EW:mine].,and and this other was mines +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and that is the end [+_bch].,and that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,(the elephant um) : they want to make a sandcastle.,the elephant um they want to make a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and they build it.,and they build it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and they build it.,and they build it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,then : he messed it up for him.,then he messed it up for him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and it is so : beautiful.,and it is so beautiful +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and they xxx.,and they x +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and he was sad.,and he was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and he was sad too.,and he was sad too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,end [+_bch].,end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,a letter!,a letter +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,a letter!,a letter +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,they want to : get a balloon.,they want to get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and they build a sandcastle.,and they build a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and they try to go in the sand and xx [~_sounds_like_'blom'].,and they try to go in the sand and +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and he said sorry.,and he said sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,xx [~_says_something_under_breath]., +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and the bunny rabbit was so happy today.,and the bunny rabbit was so happy today +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and : they was[EW:were] so : pushing in : the case [EU].,and they was so pushing in the case +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,he push/ed them in.,he pushed them in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and they was|be[EW:were] so happy to go.,and they was so happy to go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,then he was so happy to go see her.,then he was so happy to go see her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and that : is the end [+_bch].,and that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,this is a balloon.,this is a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,they got a balloon : to : put it on the wagon[!] [EU].,they got a balloon to put it on the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,then he is try/ing to pull it off.,then he is trying to pull it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and him[EW:he] xx [~_swing?] was flying (in) in the sky.,and him was flying in in the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and it was fly/ing.,and it was flying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and it broked|break[EW:broke] and broked|break[EW:broke].,and it broked and broked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,then : he gots[Ew:has] more balloon/s.,then he gots more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and : he went go get some more.,and he went go get some more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,then : oh (wa) lots of balloon/s today [EU].,then oh wa lots of balloons today +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and he said : no I want a balloon.,and he said no I want a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,said : I want to [~_wanna] have a balloon [EU]!,said I want to have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,I want a balloon!,I want a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and they saw : more[!] balloon/s.,and they saw more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,then he want/3s a balloon : and a balloon.,then he wants a balloon and a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,then he want/3s a balloon.,then he wants a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and he get/3s him.,and he gets him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and he is so lucky to get a balloon.,and he is so lucky to get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/479.slt,and that is the end [+_bch].,and that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(There is a xx) one day (nn there) there is a (um) giraffe and a[EW:an] elephant.,There is a one day nn there there is a um giraffe and a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and the elephant was bounce/ing a ball when she had her bathing suit on and a bow on her head.,and the elephant was bouncing a ball when she had her bathing suit on and a bow on her head +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,what else do I wanna say [+_bch]?,what else do I wanna say +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and a giraffe had new clothes on that had a shirt on and a hat on.,and a giraffe had new clothes on that had a shirt on and a hat on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and that is it [~_indicating_C_was_done_with_page] [+_bch].,and that is it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and then : accidentally (um) the giraffe drop/ed (the water) the ball into the water.,and then accidentally um the giraffe dropped the water the ball into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and : they both saw the ball into the water.,and they both saw the ball into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(hm :) and the giraffe jump/ed in and try/ed to (get) catch the ball.,hm and the giraffe jumped in and tried to get catch the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and then the giraffe got it and gave it to the elephant.,and then the giraffe got it and gave it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and : and that was all [+_bch].,and and that was all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(And he) and the elephant you are very kind.,And he and the elephant you are very kind +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and : (then) then (the gura) the giraffe just gave (um) back the ball to the elephant.,and then then the gura the giraffe just gave um back the ball to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,The end [+_bch].,The end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(um) and then [+_bch].,um and then +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,I do not know this part [+_bch].,I do not know this part +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,I do not know this book [+_bch].,I do not know this book +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,Just look at the picture and tell me what you see.,Just look at the picture and tell me what you see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,okay [+_bch].,okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(I see two giraffe/s) I see a giraffe and an elephant with a bow in her hair.,I see two giraffes I see a giraffe and an elephant with a bow in her hair +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and they were look/ing at the water to see how cold it was.,and they were looking at the water to see how cold it was +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and the elephant : let us go in and jump on that thing [EU].,and the elephant let us go in and jump on that thing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,I do not know what is that called [+_bch].,I do not know what is that called +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and then the elephant slip/ed.,and then the elephant slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and she is almost go/ing to slip down when she was run/ing [EU].,and she is almost going to slip down when she was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and she hurt her knee.,and she hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and there is no run/ing in there.,and there is no running in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(and then) and then the giraffe went near her.,and then and then the giraffe went near her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(and it) (and) and the girl/z brother came by too.,and it and and the girl's brother came by too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and she got hurt.,and she got hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(then her) then her brother put a bandaid on her.,then her then her brother put a bandaid on her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and then they got her.,and then they got her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(then they) (then she) then her brother said there is a bench over there.,then they then she then her brother said there is a bench over there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,you can sit down over there.,you can sit down over there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,see the bandaid is on.,see the bandaid is on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and (then) then her brother got mad at her.,and then then her brother got mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and I do not know [+_bch].,and I do not know +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and the brother said (see) see that sign ?,and the brother said see see that sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,no run/ing in here.,no running in here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and then she got all better.,and then she got all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and then (they stand) they stand by (d) each other.,and then they stand they stand by d each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,And they laugh/ed : because he got a bandaid off [EU].,And they laughed because he got a bandaid off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,And then : the giraffe had a[EW:an] airplane.,And then the giraffe had a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,And he flied|fly[EW:flew] it.,And he flied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,he try/ed to fly it high : so it could be more[!] like a[EW:an] airplane.,he tried to fly it high so it could be more like a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,then : the elephant took it away from him.,then the elephant took it away from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and : she look/ed at it.,and she looked at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(and that) and (she saw s) she saw an airplane in her hand.,and that and she saw s she saw an airplane in her hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(she) she accidentally drop/ed it in the water.,she she accidentally dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and it got into the water.,and it got into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(And it) and : they both look/ed at the water.,And it and they both looked at the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and then : the giraffe got mad at her.,and then the giraffe got mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and then : (she s) she still look/ed at the (um) airplane (to s) because it was go/ing to [~_gonna] go down deep into the water.,and then she s she still looked at the um airplane to s because it was going to go down deep into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,And (then : he s) then her brother came by and saw it.,And then he s then her brother came by and saw it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,And then they all look/ed (a) at it except for his sister.,And then they all looked a at it except for his sister +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(His sister) his sister is look/ing at him to see what his : shirt look/3s like.,His sister his sister is looking at him to see what his shirt looks like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,Then (she) she : talk/ed at him (to see) (she gra) [~__high_pitched_voice] I (grab/ed it) (in front of) : (grab/ed it : f) took it away from the giraffe [EU].,Then she she talked at him to see she gra I grabbed it in front of grabbed it f took it away from the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,And then : it got[EW:went] into the water !,And then it got into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,then : (her brother try/ed) her brother try/ed : to (get it um) get the (um) airplane : out of the water.,then her brother tried her brother tried to get it um get the um airplane out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,But he could not reach it.,But he could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(Then she) then the giraffe cry/ed.,Then she then the giraffe cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and : she was sad.,and she was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(the s) : (the) [~_no] the giraffe was sad : that nobody could not get it [EU].,the s the the giraffe was sad that nobody could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(and then) (their mum) (then : the gira) then the elephant/z mum came by.,and then their mum then the gira then the elephant's mum came by +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(And she had : um) what is that call/ed [+_bch]?,And she had um what is that called +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,I do not know [+_bch].,I do not know +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,What ?,What +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(Um) xxx [+_bch].,Um x +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,Then she got a tank[?] to get it out of the water.,Then she got a tank to get it out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,Then she try/ed.,Then she tried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,And she try/ed.,And she tried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,And she almost got it.,And she almost got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,But it could not fit in there.,But it could not fit in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,Then she got it and gave it to the giraffe.,Then she got it and gave it to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,And then : the giraffe was so happy.,And then the giraffe was so happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,And so was the elephant.,And so was the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,a bunny and (a dog) a dog was[EW:were] in the (um) sand.,a bunny and a dog a dog was in the um sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(when) they were both at the beach.,when they were both at the beach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and they both had shovel/s.,and they both had shovels +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and (the doggy) the girl doggy (um : she was) she made a sandcastle.,and the doggy the girl doggy um she was she made a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and then they both start/ed make/ing one.,and then they both started making one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and (h) (he got a buck) he had a bucket.,and h he got a buck he had a bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and then : he was go/ing to[:_gonna] dump it on : the girl/z (um) castle.,and then he was going to dump it on the girl's um castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and (then she broke it) then he broke it.,and then she broke it then he broke it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and then she start/ed cry/ing.,and then she started crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(um) a bunny was go/ing to [:_gonna] go get some : chocolate/s.,um a bunny was going to go get some chocolates +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and : a girl had a bucket.,and a girl had a bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and (so did) the boy bunny did (t) too.,and so did the boy bunny did t too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(and they wen) and he took all[!] her food.,and they wen and he took all her food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,then he had a tummyache.,then he had a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and then : he was sick.,and then he was sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and (he wa) he was get/ing dizzy.,and he wa he was getting dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and then (he saw his mo) she saw his mommy.,and then he saw his mo she saw his mommy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and then she (ran to him) ran to her.,and then she ran to him ran to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and then she told the doctor that (um : he) he was sick.,and then she told the doctor that um he he was sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and he was get/ing dizzy too.,and he was getting dizzy too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(he said) she said come(*3).,he said she said come come come +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,: see [+_bch]?,see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,he is get/ing dizzy and sick.,he is getting dizzy and sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,so : she had to bring him home.,so she had to bring him home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(A) when a girl : doggy was pull/ing a wagon with a (balloon on there) balloon on there [EU].,A when a girl doggy was pulling a wagon with a balloon on there balloon on there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and it was tie/ed up.,and it was tied up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and she was pull/ing it.,and she was pulling it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and (he was) he said nice balloon.,and he was he said nice balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,could I have it?,could I have it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,then : he was go/ing to[:_gonna] take it off.,then he was going to take it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and she said[~!_intake_of_breath] [EU].,and she said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,then he made it go up(*2).,then he made it go up up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and he could not reach it.,and he could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,so she got mad.,so she got mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and she want/ed it back.,and she wanted it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,then she ask/ed for another balloon.,then she asked for another balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and (the bunny want/ed) the boy (blun) bunny want/ed one of those kind of balloon/s.,and the bunny wanted the boy blun bunny wanted one of those kind of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(and he) (x) and (he ga) he gave him one.,and he x and he ga he gave him one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and then he has to give him : five cent/s.,and then he has to give him five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and he do/3s not got[EW:have] that much.,and he does not got that much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(he did not got) he check/ed and check/ed.,he did not got he checked and checked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and (he did not) he did not got[EW:have] no[EW:any] money.,and he did not he did not got no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and then : he ran to the : girl and : ask/ed her (was she was) could he have some money from that girl.,and then he ran to the girl and asked her was she was could he have some money from that girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,and he said : can I have five cent/s to have one of those kind[EW:kinds] of balloon/s[-:] ?,and he said can I have five cents to have one of those kind of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,then : (he ha) he was go/ing to[:_gonna] (give her) give those two two balloon/s.,then he ha he was going to give her give those two two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/417.slt,(then he) then they both got happy [EU].,then he then they both got happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,the[-:] elephant was bounce/ing the ball.,the elephant was bouncing the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,(the elephant accidentally) the ball went in the pool.,the elephant accidentally the ball went in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,the cow (was) was : swim/ing to get it.,the cow was was swimming to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,(the elephant) : [~_no] the cow : gave it to the elephant.,the elephant the cow gave it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,the elephant was hug/ing the ball.,the elephant was hugging the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,the elephant and the : giraffe : were go/ing to [~_gonna] go swim/ing.,the elephant and the giraffe were going to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,the elephant was go/ing.,the elephant was going +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,(but the) but the giraffe (s) was go/ing to [~_gonna] stay.,but the but the giraffe s was going to stay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,elephant was run/ing.,elephant was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then the giraffe : was run/ing.,then the giraffe was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then the elephant hurt his knee.,then the elephant hurt his knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then he was start/ing to cry.,then he was starting to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then the : lifeguard put a bandaid on him.,then the lifeguard put a bandaid on him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then : she : did not realize : ( that it was) that it did not hurt.,then she did not realize that it was that it did not hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then she feeled|feel[EW:felt] better.,then she feeled better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,the giraffe held : the[-:] airplane.,the giraffe held the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then the giraffe was play/ing with the airplane.,then the giraffe was playing with the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then the elephant was play/ing with it.,then the elephant was playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then it fell in the pool.,then it fell in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,(then the) then the giraffe was mad.,then the then the giraffe was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then the lifeguard (is : uh) was : disappoint/ed.,then the lifeguard is uh was disappointed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,(then) : then the elephant was complain/ing.,then then the elephant was complaining +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then the : lifeguard was : try/ing to get it.,then the lifeguard was trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then they could not.,then they could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then the giraffe was cry/ing.,then the giraffe was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then she [+/]^,then she +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,do you have to go to the bathroom?,do you have to go to the bathroom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then the elephant (was) was (um) go/ing to[:_gonna] get it.,then the elephant was was um going to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then the elephant (was) : got it.,then the elephant was got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,but she did not get it up there yet.,but she did not get it up there yet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then the elephant : gave it to the giraffe.,then the elephant gave it to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then the giraffe was happy.,then the giraffe was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,the dog and the rabbit : (were) : were go/ing to[:_gonna] make : a castle.,the dog and the rabbit were were going to make a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,: they were make/ing a castle.,they were making a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,they were still make/ing the castle.,they were still making the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,(they broke the cas) he broke the castle.,they broke the cas he broke the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then he cry/ed.,then he cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,the rabbit and the dog : met.,the rabbit and the dog met +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,to get [+/]^,to get +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,shall I turn the page?,shall I turn the page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then they : took thing/s out of their basket.,then they took things out of their basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then they start/ed eat/ing.,then they started eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,(then they are) and then the rabbit : was full.,then they are and then the rabbit was full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,(then the) : then : the dog went : to the doctor rabbit.,then the then the dog went to the doctor rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then the dog was pull/ing [EU].,then the dog was pulling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,: then the doctor was check/ing the rabbit.,then the doctor was checking the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then the doctor rabbit : was : take/ing (him :) the rabbit.,then the doctor rabbit was taking him the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,(he has a) the dog had the wagon with the balloon.,he has a the dog had the wagon with the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,the rabbit (was) was look/ing at it.,the rabbit was was looking at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,the rabbit took it off.,the rabbit took it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,the rabbit : let it go.,the rabbit let it go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,the dog was mad.,the dog was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,(the) the rabbit had : balloon/s.,the the rabbit had balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,(the rabbit :) the rabbit came (to) (to the) to the balloon/s.,the rabbit the rabbit came to to the to the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,the : rabbit was think/ing.,the rabbit was thinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,( the rabbit um) (the um) (the dog was) : (they were put/ing) they were put/ing their (hand/s s) hand/s [EU].,the rabbit um the um the dog was they were putting they were putting their hands s hands +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,shall I turn?,shall I turn +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,hand/s [+_bch].,hands +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,then the doctor rabbit was there.,then the doctor rabbit was there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,the rabbit : said : go over there.,the rabbit said go over there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,: (the r) the doctor rabbit gave : money to the man.,the r the doctor rabbit gave money to the man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/628.slt,they both had each balloon.,they both had each balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,"the elephant (and the hor) (and the uh[-:] ) [~_whispers:_I__do_n(o)t_know_that_one] (uh) [~_the_long_neck_(be)cause_two_things__have_long_necks,_little_foot/z_Dad_and_little_foot/z_mom_and__lit_and_uh_a_giraffe,_that_(i)s_called_a_giraffe] and (zebra) giraffe [EU].",the elephant and the hor and the uh uh and zebra giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then the ball went into the pool when the giraffe and[!] the elephant were play/ing.,and then the ball went into the pool when the giraffe and the elephant were playing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then the (uh) giraffe went into the water.,and then the uh giraffe went into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,(and then) (and then[!] the) and then the giraffe had water come/ing out of his ear.,and then and then the and then the giraffe had water coming out of his ear +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,(and then the ball go) (and then the zeb) (and then) and then the zebra got it : and gived|give[EW:gave] it to the (uh) elephant.,and then the ball go and then the zeb and then and then the zebra got it and gived it to the uh elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then : the elephant was happy.,and then the elephant was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and so was the zebra too.,and so was the zebra too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,they were go/ing to[:_gonna] go into the swimming pool when there was a diving_board there.,they were going to go into the swimming pool when there was a diving board there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,then[-:] (the uh um) the elephant want/ed to go first.,then the uh um the elephant wanted to go first +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then the elephant : slip/ed.,and then the elephant slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,(and hurt) and then : he hurt her knee.,and hurt and then he hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then she cry/ed.,and then she cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then the coach comed|come[EW:came] over.,and then the coach comed over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,(and sh) : and she was still cry/ing.,and sh and she was still crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then it was all better.,and then it was all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and the coach was angry.,and the coach was angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,(uh they were gon) the elephant was go/ing to[:_gonna] fly a[EW:an] airplane.,uh they were gon the elephant was going to fly a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,(then the airplane) (then the zeb) then the zebra fly|fly[EW:flew] it.,then the airplane then the zeb then the zebra fly it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,(and then the uh) and then the elephant [~_makes_raspberry__noise] got it away from the zebra.,and then the uh and then the elephant got it away from the zebra +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and (then) then the (uh) elephant throwed|throw[EW:threw] it in the air.,and then then the uh elephant throwed it in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and it land/ed in the swimming pool.,and it landed in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and : the zebra was mad.,and the zebra was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then[-:] (the coach try/ed to get it) the zebra coach try/ed to get it.,and then the coach tried to get it the zebra coach tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then when the zebra coach try/ed to get it : it was too far.,and then when the zebra coach tried to get it it was too far +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then when the coach got it : it was too far (t) too!,and then when the coach got it it was too far t too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and (then) then the zebra was sad : and cry/ed.,and then then the zebra was sad and cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then the girl comed|come[EW:came] over and got it with her own fish/ing net.,and then the girl comed over and got it with her own fishing net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then she got it!,and then she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then that was the end [+_bch].,and then that was the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,(and) : and the zebra was so happy.,and and the zebra was so happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,(uh) the rabbit and the dog were play/ing in the sandbox.,uh the rabbit and the dog were playing in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,they were go/ing to[:_gonna] build : a sandcastle.,they were going to build a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,one pull/ed sand on top.,one pulled sand on top +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then it broked|break[EW:broke].,and then it broked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then the dog was sad.,and then the dog was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and the end [+_bch].,and the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,(the) the dog and the rabbit were go/ing to[:_gonna] have a picnic.,the the dog and the rabbit were going to have a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,(uh) the rabbit ate too much food.,uh the rabbit ate too much food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,the rabbit was : sick.,the rabbit was sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then he got bonk/ed on the head (with something) : with a rock.,and then he got bonked on the head with something with a rock +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then the hospital : thing comed|come[EW:came].,and then the hospital thing comed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then the dog try/ed to get her.,and then the dog tried to get her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then the hospital girl comed|come[EW:came] over : and fix/ed the rabbit.,and then the hospital girl comed over and fixed the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,(uh) the puppy want/ed to get a balloon.,uh the puppy wanted to get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,(then the balloon) then the rabbit would not get it.,then the balloon then the rabbit would not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and the rabbit tie/ed it to the (uh) : wagon.,and the rabbit tied it to the uh wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then it flew up to the sky.,and then it flew up to the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then the dog was mad.,and then the dog was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then : the dog was mad still.,and then the dog was mad still +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then the rabbit : want/ed to get a balloon.,and then the rabbit wanted to get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then : (five bucks) : it was five buck/s for a balloon.,and then five bucks it was five bucks for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then : they are sad.,and then they are sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then : (the) : their mom came.,and then the their mom came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,(and then) and then the rabbit said they will not give me a balloon.,and then and then the rabbit said they will not give me a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then : the mom gave him (two do) five dollar/s.,and then the mom gave him two do five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and then they got : balloon/s.,and then they got balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,and they were happy after all.,and they were happy after all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/453.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,(um) they are get/ing bore/ed with the elephant/z nose.,um they are getting bored with the elephant's nose +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,the other one said wahoo!,the other one said wahoo +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now they drop/ed the ball in the pool.,now they dropped the ball in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,they said aah[~!_Yelling]!,they said aah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now they are swim/ing in the pool.,now they are swimming in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and one is try/ing to get it.,and one is trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now they got the ball.,now they got the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and now the horse is : get/ing out.,and now the horse is getting out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and now they got the ball back.,and now they got the ball back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,they are going to go in the pool.,they are going to go in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,they are going to jump.,they are going to jump +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and the other one is not jump/ing.,and the other one is not jumping +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now they are run/ing.,now they are running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now (the ele) the elephant hurt his knee.,now the ele the elephant hurt his knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now they ask/ed (the) the lifeguard to get (a ow) a bandaid.,now they asked the the lifeguard to get a ow a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now they are cry/ing.,now they are crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now they got a bandaid.,now they got a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now they are sit/ing down.,now they are sitting down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,(um the) (they have) the horse has (a ele uh) a plane.,um the they have the horse has a ele uh a plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,(now the) now the horse is fly/ing the plane.,now the now the horse is flying the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now the elephant is fly/ing the plane.,now the elephant is flying the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,(now they drop/ed it) now the elephant drop/ed it in the water.,now they dropped it now the elephant dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and now (the) the horsey is mad.,and now the the horsey is mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and the elephant is sad.,and the elephant is sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,(and now the l :) (now the elephant is) and now the lifeguard said go and get it.,and now the l now the elephant is and now the lifeguard said go and get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and she said I can not.,and she said I can not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and then : the lifeguard try/3s to get it.,and then the lifeguard tries to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and he can not.,and he can not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and he do/3s not know how.,and he does not know how +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and the horsey is sad.,and the horsey is sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now (he got the net) (the) the other one got the net.,now he got the net the the other one got the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and they got it.,and they got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now we have the airplane back.,now we have the airplane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now we can fly it.,now we can fly it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,he is not sail/ing it any more.,he is not sailing it any more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,they are : in the sand box.,they are in the sand box +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and the : other bunny is surprise/ed.,and the other bunny is surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,(and the) and (he has a shovel in his hand) both of them have shovel/s in their hand.,and the and he has a shovel in his hand both of them have shovels in their hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,they are make/ing a sandcastle.,they are making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,they are dump/ing sand on other people/z sandcastle/s.,they are dumping sand on other people's sandcastles +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now it is wreck/ed.,now it is wrecked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now they are build/ing it back up.,now they are building it back up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,they are go/ing on a picnic.,they are going on a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,(the ra) they are eat/ing.,the ra they are eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,(they[-:] ) one rabbit is full.,they one rabbit is full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,(and there is) and one rabbit is still eat/ing.,and there is and one rabbit is still eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now the other one is full.,now the other one is full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and (it) (now) : now the other one is still eat/ing.,and it now now the other one is still eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and it is still full.,and it is still full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now they are walk/ing home.,now they are walking home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and now : the daddy is there.,and now the daddy is there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and the guy is sleep/ing.,and the guy is sleeping +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now he come/3s closer.,now he comes closer +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and he is still[!] sleep/ing.,and he is still sleeping +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and now he is awake.,and now he is awake +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now they are walk/ing home.,now they are walking home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,(they are carry/ing the balloon and) (tie/ed onto a wagon) [~__oh_this_one_looked] : they are carry/ing the balloon on a wagon.,they are carrying the balloon and tied onto a wagon they are carrying the balloon on a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and the other one is walk/ing with him.,and the other one is walking with him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now they have a balloon on their wagon.,now they have a balloon on their wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and he is look/ing at it.,and he is looking at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,they have a balloon.,they have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and the other one is tie/ing it off.,and the other one is tying it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now it let/ing go fly up in the air.,now it letting go fly up in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now they are try/ing to catch it.,now they are trying to catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now the string is fall/ing down from the sky with it.,now the string is falling down from the sky with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,it got biten [~_pronounced_/baitEn/] by a bug.,it got biten by a bug +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now they got more balloon/s : from the : (other bunny) Easter bunny.,now they got more balloons from the other bunny Easter bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now they say can we have another one?,now they say can we have another one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,and they got another one.,and they got another one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,it is for five dollar/s.,it is for five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,oh : they said see you later.,oh they said see you later +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now they are walk/ing home : with the dad.,now they are walking home with the dad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,they are run/ing to the dad.,they are running to the dad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now they said look at that [~_!] : the balloon rabbit.,now they said look at that the balloon rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,now they said do you want a balloon?,now they said do you want a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,it is for five dollar/s.,it is for five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,okay.,okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/533.slt,let us go home.,let us go home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,(the[-:] um) : the elephant is : bounce/ing a ball[-:].,the um the elephant is bouncing a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and the giraffe is (say/ing) [~_I_do_n(o)t_know_like] say/ing wow or something.,and the giraffe is saying saying wow or something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,say/ing what?,saying what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,say/ing wow [+_bch].,saying wow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then (um) the elephant : is bounce/ing the ball still.,and then um the elephant is bouncing the ball still +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and it fall/3s into the water.,and it falls into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then : the[-:] giraffe[-:] look/3s a little surprise/ed.,and then the giraffe looks a little surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,: and then : the horse jump/3s into the pool and swim/3s to go get it.,and then the horse jumps into the pool and swims to go get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then the elephant is go/ing like this [~_child_holding_hands__up_to_her_face].,and then the elephant is going like this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then she get/3s a ball.,and then she gets a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and the : giraffe is a little surprise/ed.,and the giraffe is a little surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,: and now (sh) the elephant is really proud that she has her ball back.,and now sh the elephant is really proud that she has her ball back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,is really what?,is really what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,proud that she has the ball back [+_bch].,proud that she has the ball back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,(um) the[-:] elephant and the giraffe are go/ing swim/ing.,um the elephant and the giraffe are going swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then[-:] (the gir) the (um) elephant is run/ing.,and then the gir the um elephant is running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,: and the giraffe is just stand/ing there hold/ing the[-:] towel.,and the giraffe is just standing there holding the towel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,: and the elephant is run/ing : over to (this side) that side.,and the elephant is running over to this side that side +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then : the giraffe is run/ing after her.,and then the giraffe is running after her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,: and then the elephant : fall/3s : and hurt/3s her knee.,and then the elephant falls and hurts her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,: and then she is[-:] still cry/ing and hold/ing her knee.,and then she is still crying and holding her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and the giraffe is stand/ing by her.,and the giraffe is standing by her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,sorry?,sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and the giraffe is stand/ing by her [+_bch].,and the giraffe is standing by her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then her dad is run/ing : to her.,and then her dad is running to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then her dad is fix/ing it up.,and then her dad is fixing it up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then (sh) she is sit/ing on the thing hold/ing her knee : still : and sit/ing on the bench.,and then sh she is sitting on the thing holding her knee still and sitting on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then (sh um) she is (sup) like grin/ing.,and then sh um she is sup like grinning +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,the elephant is[-:] say/ing wow : to the giraffe (hold/ing the : um) hold/ing the plane.,the elephant is saying wow to the giraffe holding the um holding the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,: and then he is[-:] zoom/ing it up in twirl/s and stuff like that.,and then he is zooming it up in twirls and stuff like that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,"and she is just surprise/ed, the elephant.",and she is just surprised the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then (uh) the elephant take/3s it away from the giraffe : grab/3s it : and start/3s play/ing with it.,and then uh the elephant takes it away from the giraffe grabs it and starts playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then she drop/3s it in the pool.,and then she drops it in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and : I think the giraffe is a little mad.,and I think the giraffe is a little mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,: and[-:] then : the giraffe is mad.,and then the giraffe is mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and (she is) she is scare/ed.,and she is she is scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then her dad come/3s.,and then her dad comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,: and[-:] (um) her dad is go/ing like this [~_child_has_hands_on__hips].,and um her dad is going like this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and (she is just : really) she is not happy.,and she is just really she is not happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,like she is mad.,like she is mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,"she has her hand/s on her hip/s, oh right.",she has her hands on her hips oh right +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then she is explain/ing what happen/ed : to her dad.,and then she is explaining what happened to her dad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and the giraffe is still a little mad.,and the giraffe is still a little mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then : her dad is : (getting) try/ing to get it.,and then her dad is getting trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,but he can not.,but he can not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,: and (then um) then giraffe is cry/ing.,and then um then giraffe is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,: and then her mom come/3s and has a net in her hand/s and : is go/ing to[:_gonna] get it.,and then her mom comes and has a net in her hands and is going to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then she get/3s it.,and then she gets it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,: then she is hold/ing (the : um) the : (um :) plane.,then she is holding the um the um plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,: and then : the giraffe is : happy to get his plane back.,and then the giraffe is happy to get his plane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,(um) the rabbit : and : I will say : the dog are play/ing and make/ing a sandcastle : in the sandbox.,um the rabbit and I will say the dog are playing and making a sandcastle in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,: and then : the rabbit is[-:] play/ing with a bucket.,and then the rabbit is playing with a bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and : the dog : is (fix/ing his like) touch/ing his castle.,and the dog is fixing his like touching his castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,then[-:] the bunny rabbit come/3s and dump/3s sand on (the) his castle.,then the bunny rabbit comes and dumps sand on the his castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and the dog is surprise/ed.,and the dog is surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and the : rabbit is happy.,and the rabbit is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,: and then the castle is : broken.,and then the castle is broken +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,he is sort of sad.,he is sort of sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then the rabbit is a little surprise/ed.,and then the rabbit is a little surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,: and then the dog is cry/ing (cause his castle).,and then the dog is crying cause his castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and the rabbit is : think/ing : should he did it or should he not do it [EU].,and the rabbit is thinking should he did it or should he not do it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,they are go/ing on a picnic : the dog and the rabbit.,they are going on a picnic the dog and the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and : the rabbit is eat/ing so much because he gots|get[EW:got] it all out.,and the rabbit is eating so much because he gots it all out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and the dog is just get/ing his stuff out.,and the dog is just getting his stuff out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then (he had) he is stuff/ed.,and then he had he is stuffed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and he is about to fall over.,and he is about to fall over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,then he fall/3s over.,then he falls over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and the dog is run/ing to the doctor.,and the dog is running to the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,(and then the doctor) [~_requests_page_turn] [+_bch].,and then the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,(and then) and then (um) the dog pull/3s the doctor over to the rabbit.,and then and then um the dog pulls the doctor over to the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then the rabbit : is talk/ing to the bunny ask/ing if he feel/3s all right.,and then the rabbit is talking to the bunny asking if he feels all right +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then : the rabbit go/3s home : with his mom.,and then the rabbit goes home with his mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,(um the[-:] ) the dog is : go/ing.,um the the dog is going +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and the balloon is hang/ing off of the[-:] : wagon.,and the balloon is hanging off of the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then the rabbit come/3s along.,and then the rabbit comes along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,then the bunny show/3s that the balloon is there.,then the bunny shows that the balloon is there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and the dog is : stand/ing by there (lo) listen/ing.,and the dog is standing by there lo listening +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,(and then[-:] the rabbit) and then the rabbit come/3s and take/3s it off.,and then the rabbit and then the rabbit comes and takes it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then the rabbit let/3s go of it.,and then the rabbit lets go of it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then it is way up in the sky.,and then it is way up in the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and the dog is really mad.,and the dog is really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and the rabbit is surprise/ed.,and the rabbit is surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,: and then : he see/3s that there is[EW:are] more balloon/s.,and then he sees that there is more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,(and then he go/3s over to the) [~_I_mean_that's_the_other_page] [+_bch].,and then he goes over to the +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then he ask/3s for the[-:] balloon.,and then he asks for the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then he check/3s in his pocket/s if there is (um) any money [EU].,and then he checks in his pockets if there is um any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and there is not.,and there is not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then he is[-:] stand/ing there.,and then he is standing there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then he run/3s over to his mom.,and then he runs over to his mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then the rabbit ask/3s if he can have a balloon.,and then the rabbit asks if he can have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then : she give/3s him (five cent/s) : ten cent/s [~_I_mean].,and then she gives him five cents ten cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/802.slt,and then they both got a balloon.,and then they both got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,once upon a time (gi) Giraffe and Elephant were play/ing ball close to a swim/ing pool.,once upon a time gi Giraffe and Elephant were playing ball close to a swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,they had lot/s of fun : until[!] the ball drop/ed into (the) the swim/ing pool.,they had lots of fun until the ball dropped into the the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,they said ooww someone get it!,they said ooww someone get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: Giraffe swam and try/ed to get it.,Giraffe swam and tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: Giraffe (got it) got it for Elephant.,Giraffe got it got it for Elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,but he was wet[!].,but he was wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: Giraffe : put his hand/s behind his back.,Giraffe put his hands behind his back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,(and) (and) and Elephant said thank you.,and and and Elephant said thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,Elephant and Giraffe want/ed to swim in the swimming pool.,Elephant and Giraffe wanted to swim in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,there was a sign stat/ing no run/ing.,there was a sign stating no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,but they did not (li) listen.,but they did not li listen +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: (elephant and gir) Elephant decide/ed to run (along) along (the) the swimming pool.,elephant and gir Elephant decided to run along along the the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,(she is) (she) (she is gonna s) she start/ed to slip.,she is she she is gonna s she started to slip +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: then she hurt her feet.,then she hurt her feet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,(she is cry) she was cry/ing.,she is cry she was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: the lifeguard then came to see what was happen/ing.,the lifeguard then came to see what was happening +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: the lifeguard check/ed her knee.,the lifeguard checked her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,but she still cry/ed.,but she still cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: the lifeguard put her on the bench.,the lifeguard put her on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,and she put a bandage on (her) (her) her knee.,and she put a bandage on her her her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: and the lifeguard said no run/ing[!] [~_child_points_to_sign_in__picture] : next time okay?,and the lifeguard said no running next time okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,(gi) Giraffe and Elephant (were) were go/ing *to play with giraffe[EW:giraffe/z] airplane (in the sw) close to the swimming pool.,gi Giraffe and Elephant were were going play with giraffe airplane in the sw close to the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: giraffe : flew his airplane.,giraffe flew his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: (then) then elephant snatch/ed[!] it and said I want my turn!,then then elephant snatched it and said I want my turn +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: then she threw[!] it : but *it land/ed in the swimming pool [EU].,then she threw it but landed in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,giraffe was mad[!]!,giraffe was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,(he) he look/ed (at) at giraffe madly.,he he looked at at giraffe madly +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: then the lifeguard came.,then the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,he said what happen/ed?,he said what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,(he said) giraffe said : elephant : threw (my) (my) my airplane into the swimming pool.,he said giraffe said elephant threw my my my airplane into the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: lifeguard said I think I will try to reach it.,lifeguard said I think I will try to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,he said okay.,he said okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: the lifeguard try/ed to reach it.,the lifeguard tried to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: but he could not!,but he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,(then uh hm) (then) then giraffe (s) kept on cry/ing.,then uh hm then then giraffe s kept on crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: then : a woman in : a swimming suit got a net (and) and (caught) was go/ing to[:_gonna] get it out.,then a woman in a swimming suit got a net and and caught was going to get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: and she got it.,and she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: giraffe said thank you to the woman (that) (that) that (get) got (her) his airplane out.,giraffe said thank you to the woman that that that get got her his airplane out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: he hug/ed his airplane and said (not) let us not play close to the swimming pool any more.,he hugged his airplane and said not let us not play close to the swimming pool any more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,once upon a time there is : a dog and a (cat uh) rabbit.,once upon a time there is a dog and a cat uh rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,(they) (they want/ed) they were go/ing to[:_gonna] play together in the sandbox.,they they wanted they were going to play together in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,they were go/ing to[:_gonna] make a sandcastle.,they were going to make a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,rabbit got the sand.,rabbit got the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,and dog put the sand (on the) (on) on the sandbox to make the castle.,and dog put the sand on the on on the sandbox to make the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,then rabbit dump/ed (the) the sand on top of the sandcastle.,then rabbit dumped the the sand on top of the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,then it collapse/ed!,then it collapsed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,he was sad.,he was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,he was shock/ed!,he was shocked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,(they) dog began to cry.,they dog began to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,but he said oh : we will build another one.,but he said oh we will build another one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,once upon the time dog and rabbit were go/ing to[:_gonna] have a picnic.,once upon the time dog and rabbit were going to have a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,they were go/ing to[:_gonna] (go somewhere) go to a good spot to have a picnic.,they were going to go somewhere go to a good spot to have a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,and they chose (the good one) a good one.,and they chose the good one a good one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,(they) (r) (ca) (r) rabbit and dog ate (the) (the) their food.,they r ca r rabbit and dog ate the the their food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,(but) but rabbit said yuck this is yucky!,but but rabbit said yuck this is yucky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,rabbit : soon became sick.,rabbit soon became sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,he ate too much food.,he ate too much food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,he said dog I need to go see (a dentist) a doctor.,he said dog I need to go see a dentist a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,I still[!] have it!,I still have it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,call the doctor!,call the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,I am really get/ing sick.,I am really getting sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,after : the doctor came.,after the doctor came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,(he said) (he) (the dog) the dog said to the rabbit come here.,he said he the dog the dog said to the rabbit come here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,(my fra) my friend rabbit is sick!,my fra my friend rabbit is sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: then[~!_laughing] the : dog help/ed by pull/ing her until she was in the sandbox.,then the dog helped by pulling her until she was in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,she said hey why are you pull/ing me?,she said hey why are you pulling me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,I know what to do!,I know what to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: (ra) (r) (the) the doctor look/ed (at) at (doc) rabbit.,ra r the the doctor looked at at doc rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,(he look/3s) (he) he check/ed his tongue.,he looks he he checked his tongue +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,(he said) (he sa) he said stick out your tongue!,he said he sa he said stick out your tongue +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,he said [~_makes_sound_'aah'].,he said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,he said okay.,he said okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,turn the page [+_bch].,turn the page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,(then) Did you miss anything [+_bch]?,then Did you miss anything +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,no.,no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,(the) (the) (the) the doctor told the rabbit to (go to his) (his : office to see if he was all) go to his office (to see) (to see him if he wa) to check his mouth again.,the the the the doctor told the rabbit to go to his his office to see if he was all go to his office to see to see him if he wa to check his mouth again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,dog was happy.,dog was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,can I always start with once upon a time if I want to [+_bch]?,can I always start with once upon a time if I want to +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,sure.,sure +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,once upon a time dog and (cat) (rabbit) : [~_okay_I_I_mean] : dog and rabbit had a wagon.,once upon a time dog and cat rabbit dog and rabbit had a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,(they w) they had a balloon too.,they w they had a balloon too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,they both want/ed the balloon.,they both wanted the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,both of them said I want that.,both of them said I want that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,but both of them did not agree.,but both of them did not agree +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,they both want/ed them still.,they both wanted them still +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,rabbit tie/ed it to the wagon (so) so dog cannot get it.,rabbit tied it to the wagon so so dog cannot get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,he was say aah I want that!,he was say aah I want that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,then the balloon flew away.,then the balloon flew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,dog was angry!,dog was angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,he want/ed to hit rabbit.,he wanted to hit rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,then they saw (a) (a) a man carry/ing balloon/s.,then they saw a a a man carrying balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,it costed|cost[EW:cost] five cent/s.,it costed five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,he said can I have one please?,he said can I have one please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,he said only if you have five cent/s.,he said only if you have five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,and (he) rabbit pull/ed his pocket.,and he rabbit pulled his pocket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,it was empty!,it was empty +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,(uh) but (the dog) (the) (the) the guy who : had the balloon/s said no you can not have them!,uh but the dog the the the guy who had the balloons said no you can not have them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,only if you have five cent/s.,only if you have five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,rabbit want/ed to ask : his mom.,rabbit wanted to ask his mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,and (she) he went.,and she he went +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,and he saw her.,and he saw her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,so he went to tell her that : they want/ed balloon/s.,so he went to tell her that they wanted balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,(the mom : paid) the (mom s) mom said okay.,the mom paid the mom s mom said okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,are you sure you want them?,are you sure you want them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,he said okay.,he said okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,: the mom gave (the) the guy (two n) two nickel/s so (the) (the two guys) the two boy/s can have them.,the mom gave the the guy two n two nickels so the the two guys the two boys can have them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,(dog) (ca) (ha) rabbit and dog were very happy.,dog ca ha rabbit and dog were very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,and they said thank you to : rabbit/z mom.,and they said thank you to rabbit's mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/804.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,the giraffe and the elephant and the ball [~_Title].,the giraffe and the elephant and the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,once upon a time (a rabbit and a) (I mean a : uh zebra and I mean) : a giraffe and a[EW:an] elephant were play/ing by the pool.,once upon a time a rabbit and a I mean a uh zebra and I mean a giraffe and a elephant were playing by the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,the ball flew in.,the ball flew in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,the giraffe came to get it.,the giraffe came to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,he gave it back.,he gave it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,I love you Missus elephant [~_laughing].,I love you Missus elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,I what?,I what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,I like you Missus elephant [+_bch].,I like you Missus elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,Oh I love you Missus elephant.,Oh I love you Missus elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,"(the) (the el) the elephant (and the) and the giraffe in the pool, no run/ing [~_title].",the the el the elephant and the and the giraffe in the pool no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,the elephant want/ed to jump off of the jumping board.,the elephant wanted to jump off of the jumping board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,he ran.,he ran +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,she fell.,she fell +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,she : cry/ed.,she cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,(and the) and the : giraffe came run/ing to her.,and the and the giraffe came running to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,he came to tell (her mom) [~_I_mean] the coach.,he came to tell her mom the coach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,(are) : are you okay the coach said.,are are you okay the coach said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,no[!] she cry/ed.,no she cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,he put a bandage on her.,he put a bandage on her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,(hh) he said there.,hh he said there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,(no run/ing in the) no run/ing he said : because it said on the board.,no running in the no running he said because it said on the board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,the giraffe and the elephant and the airplane [~_title].,the giraffe and the elephant and the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,the giraffe and the elephant were play/ing (wi) with their toy airplane.,the giraffe and the elephant were playing wi with their toy airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,(the) the elephant want/ed a turn.,the the elephant wanted a turn +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,(she she threw it right in the) she took it from him and threw it right[!] in the pool.,she she threw it right in the she took it from him and threw it right in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,(h) the[-:] giraffe was not very happy.,h the giraffe was not very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,she cross/ed her finger/s.,she crossed her fingers +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,he said [~_makes_'errrr'_sound] look what you did now!,he said look what you did now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,you threw my : first toy airplane in the water!,you threw my first toy airplane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,I am tell/ing the coach.,I am telling the coach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,he ran.,he ran +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,and the coach came.,and the coach came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,and he said I will get it.,and he said I will get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,he could not reach it.,he could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,he try/ed again.,he tried again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,he still could not reach it.,he still could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,(he) (he s) he said (I can not rea) I can not reach it.,he he s he said I can not rea I can not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,ask Missus[!] elephant.,ask Missus elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,(she came) he went to (came) come and tell her.,she came he went to came come and tell her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,and she came to get the airplane.,and she came to get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,she got it out with her scooper.,she got it out with her scooper +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,(here you go mist) here you go sir (she said) (she) she said to (the) the[-:] giraffe.,here you go mist here you go sir she said she she said to the the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,thank you he said.,thank you he said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,I will never play with this toy again by the water.,I will never play with this toy again by the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,the rabbit and the dog [~_title].,the rabbit and the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,once upon a time a rabbit and a dog were build/ing a sandcastle.,once upon a time a rabbit and a dog were building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,the rabbit was not very good at it.,the rabbit was not very good at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,the rabbit pour/ed the castle over [EU].,the rabbit poured the castle over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,the rabbit and the dog have lunch [~_title].,the rabbit and the dog have lunch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,once upon a time a dog and a rabbit (were ea) were eat/ing their lunch.,once upon a time a dog and a rabbit were ea were eating their lunch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,the rabbit was eat/ing everything.,the rabbit was eating everything +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,soon enough he got fat.,soon enough he got fat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,he felt dizzy.,he felt dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,(litt do) little dog (ra) ran to tell his mom.,litt do little dog ra ran to tell his mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,he kept on pull/ing her.,he kept on pulling her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,[~_in_a_different_voice] well I must say you ate too much.,well I must say you ate too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,(he took him) she took him home so that he could have a diet.,he took him she took him home so that he could have a diet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,the rabbit and the dog and the wagon [~_title].,the rabbit and the dog and the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,(one) once upon a time a dog (an) and a rabbit were use/ing (their uh trailer) their (uh) trailer to go on a ride.,one once upon a time a dog an and a rabbit were using their uh trailer their uh trailer to go on a ride +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,they tie/ed a balloon to the top.,they tied a balloon to the top +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,it start/ed to flow[EW:float] away.,it started to flow away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,the dog was mad.,the dog was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,(the do) (the do) but the rabbit saw (something real) something that would replace it.,the do the do but the rabbit saw something real something that would replace it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,he said can I have these balloon/s?,he said can I have these balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,: balloon/s five cent/s.,balloons five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,I do not have any five cent/s he said [EU].,I do not have any five cents he said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,the dog came run/ing along.,the dog came running along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,they felt really sad.,they felt really sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,the rabbit came to run to his mom [EU].,the rabbit came to run to his mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,came to what?,came to what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,run to his mom [+_bch].,run to his mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,mom can you buy a balloon for me he said?,mom can you buy a balloon for me he said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,how much does it cost?,how much does it cost +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,five dollar/s.,five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,okay thank you.,okay thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,and they both pretend they (had big chubby : uh) big chubby tummy/s [EU].,and they both pretend they had big chubby uh big chubby tummies +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/824.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,(um) once upon a time a giraffe (met) met a[EW:an] elephant : bounce/ing a ball : (by) (in the sw) (um) by the swimming pool.,um once upon a time a giraffe met met a elephant bouncing a ball by in the sw um by the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,the ball drop/ed in the water.,the ball dropped in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,(and) and the (elephant um) (elephant um) elephant (did not like it) (it) it would[?] like the ball.,and and the elephant um elephant um elephant did not like it it it would like the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,the elephant start/ed to cry.,the elephant started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,and the giraffe : (um) dived|dive[EW:dove] (uh) : try/ing to get the ball for her.,and the giraffe um dived uh trying to get the ball for her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,: the giraffe gave the ball to the elephant.,the giraffe gave the ball to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,: (um) the giraffe : got out of the water.,um the giraffe got out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,and : the elephant (ss) start/ed to like the giraffe.,and the elephant ss started to like the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,(uhm) : once upon a time there was an elephant and (a) a giraffe hold/ing a towel.,uhm once upon a time there was an elephant and a a giraffe holding a towel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,: the elephant : was run/ing to the diving board.,the elephant was running to the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,: [~_child_breathes_deeply] the elephant was run/ing (fast) fast and slip/ed.,the elephant was running fast fast and slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,: [~_child_breathes_deeply] (um) the elephant did not notice there was a sign say/ing no run/ing.,um the elephant did not notice there was a sign saying no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,and she hurt herself on her knee.,and she hurt herself on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,(um) (she) she start/ed to cry a little.,um she she started to cry a little +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,the lifeguard (came) came.,the lifeguard came came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,: (um) the lifeguard put a bandaid (on) on : (the) the owie.,um the lifeguard put a bandaid on on the the owie +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,: the lifeguard brought her (to) to a wooden : (ch) chair.,the lifeguard brought her to to a wooden ch chair +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,: [~_child_breathes_deeply] the lifeguard said there was no run/ing and became mad at her.,the lifeguard said there was no running and became mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,what?,what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,and became mad [+_bch].,and became mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,one day a giraffe (um : um) went to a swimming pool with her friend : and had (a ai) a toy airplane.,one day a giraffe um um went to a swimming pool with her friend and had a ai a toy airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,: (he a) (h) he start/ed to play with the elephant to make it fly.,he a h he started to play with the elephant to make it fly +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,(um : the) : the elephant (took the ele) took the airplane from the giraffe : and want/ed to see it.,um the the elephant took the ele took the airplane from the giraffe and wanted to see it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,she accidentally drop/ed it : (by) in the water.,she accidentally dropped it by in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,the giraffe was very : very : very mad.,the giraffe was very very very mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,: then the lifeguard came.,then the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,(and the) and the elephant : went to the lifeguard.,and the and the elephant went to the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,she said if he could : reach and get the airplane.,she said if he could reach and get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,the lifeguard try/ed to get (the ele) the airplane.,the lifeguard tried to get the ele the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,but (he) it was too far.,but he it was too far +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,: the elephant kneel/ed down and start/ed cry/ing.,the elephant kneeled down and started crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,(the ele) and the giraffe kneel/ed down and start/ed to cry.,the ele and the giraffe kneeled down and started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,the elephant felt sorry.,the elephant felt sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,: (then) then this woman came with a fishnet.,then then this woman came with a fishnet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,and she : put the net by the water to try and get the airplane.,and she put the net by the water to try and get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,she got the airplane and gave it back to the giraffe.,she got the airplane and gave it back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,the giraffe was happy now.,the giraffe was happy now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,and[-:] (the elephant) the elephant was happy too.,and the elephant the elephant was happy too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,once upon a time there was a dog.,once upon a time there was a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,and he met a rabbit.,and he met a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,the dog had built (um) a sandcastle.,the dog had built um a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,and the rabbit fill/ed a bucket with sand.,and the rabbit filled a bucket with sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,(the) the rabbit had dump/ed the sand on the castle.,the the rabbit had dumped the sand on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,and the dog : (did not) was not happy.,and the dog did not was not happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,(um : the rabbit um) : the rabbit look/3s sorry.,um the rabbit um the rabbit looks sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,and the dog : [+_bch] [EU].,and the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,turn the page?,turn the page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,yeah [+_bch].,yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,the dog start/ed to cry.,the dog started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,once upon a time there was : a dog : go/ing for a picnic and met a rabbit [EU].,once upon a time there was a dog going for a picnic and met a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,(um the dog) the rabbit had lot/s of food.,um the dog the rabbit had lots of food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,and the dog was look/ing at the rabbit.,and the dog was looking at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,the dog start/ed to eat.,the dog started to eat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,the rabbit was full and had a stomachache.,the rabbit was full and had a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,then he felt dizzy and : dizzier.,then he felt dizzy and dizzier +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,(the) the dog ran to : a doctor : and told the doctor (um) about the stomachache.,the the dog ran to a doctor and told the doctor um about the stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,the dog start/ed to (pull) pull the doctor (by) : by the rabbit.,the dog started to pull pull the doctor by by the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,the doctor (checked) check/ed the rabbit.,the doctor checked checked the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,(um) [~_child_makes_sounds_while_thinking_about_what_to_say] : the doctor said if he was okay.,um the doctor said if he was okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,and then he said he was okay.,and then he said he was okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,once upon a time there was a dog with a wagon.,once upon a time there was a dog with a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,and a balloon was tie/ed (on the top) on the wagon.,and a balloon was tied on the top on the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,(he met) he met a rabbit.,he met he met a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,(and) : [~_child_breathed_deep] (and um asked him um) and the rabbit want/ed to hold the balloon.,and and um asked him um and the rabbit wanted to hold the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,(the ra) the rabbit untie/ed the knot with the dog did not want him to.,the ra the rabbit untied the knot with the dog did not want him to +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,the rabbit (lo) accidentally let go of the : balloon.,the rabbit lo accidentally let go of the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,and the balloon : flew up.,and the balloon flew up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,(the dog tried to) the dog try/ed : to get the balloon down.,the dog tried to the dog tried to get the balloon down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,: (um it) the balloon went very high.,um it the balloon went very high +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,the dog was very mad at the rabbit.,the dog was very mad at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,(then they s) then the rabbit saw (a b) a rabbit sell/ing balloon/s.,then they s then the rabbit saw a b a rabbit selling balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,but the dog did not.,but the dog did not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,the rabbit ask/ed if he could have : a balloon.,the rabbit asked if he could have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,(and) (and um) : and (the) : the dog (um) was not sure what he was do/ing.,and and um and the the dog um was not sure what he was doing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,: the rabbit show/ed his pocket/s.,the rabbit showed his pockets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,and there was[EW:were] : no balloon/s.,and there was no balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,the balloons were five cent/s.,the balloons were five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,: the dog went (by the) (be) beside the rabbit : and look/ed at the : rabbit sell/ing the balloon/s.,the dog went by the be beside the rabbit and looked at the rabbit selling the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,(um) the rabbit went to the doctor.,um the rabbit went to the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,he ask/ed (if) : the doctor if he had money to get balloon/s for the rabbit and the dog.,he asked if the doctor if he had money to get balloons for the rabbit and the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,the doctor gave him money for two balloon/s : for the dog and the rabbit.,the doctor gave him money for two balloons for the dog and the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,the (ra) the dog and the rabbit were please/ed.,the ra the dog and the rabbit were pleased +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/812.slt,and : the doctor (was ver) was happy because (they wer) they were happy.,and the doctor was ver was happy because they wer they were happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,a[EW:an] elephant and xx.,a elephant and +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,an elephant and : what do you think?,an elephant and what do you think +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,xx., +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,you can call it whatever you want.,you can call it whatever you want +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,a cow.,a cow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,and : the cow went in the water.,and the cow went in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,the moon say/3s no no.,the moon says no no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,xx., +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,"then the : then the : [~_EXA:_I_can't_hear_you,_say_it_louder] it cried because : it did not come in the water.",then the then the it cried because it did not come in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,it did not come in the water?,it did not come in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,yeah [+_bch].,yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,the elephant cry/ed?,the elephant cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then the xx.,then the +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,because he got?,because he got +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,in the water [+_bch].,in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,"in the water, wow!",in the water wow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then : he : pick|pick[EW:picked] : up : a[EW:an] : apple.,then he pick up a apple +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then he pick/ed up a[EW:an] : apple?,then he picked up a apple +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then her[EW:she] *is sad [EU].,then her sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then her[EW:she] *is sad [EU].,then her sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,xxx.,x +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,what did she say?,what did she say +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,[~_whispers] beautiful.,beautiful +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,beautiful?,beautiful +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,yeah [+_bch].,yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,that is it [+_bch].,that is it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,the elephant want|want[EW:wanted] to go in the water.,the elephant want to go in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,the elephant want|want[EW:wanted] to go in the water.,the elephant want to go in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,[~_yeah] then (the) let us.,then the let us +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,it is cold?,it is cold +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,[~_no] (it is) let us go.,it is let us go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,oh let us go I see.,oh let us go I see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then turn the other way [EU].,then turn the other way +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then her[EW:she] runned|run[EW:ran] back there.,then her runned back there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,her[EW:she] runned|run[EW:ran] back there.,her runned back there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,[~_yeah] then her[EW:she] hurted|hurt[EW:hurt] her leg.,then her hurted her leg +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,and (the) her dad elephant (fix/ed a) bandage/ed it.,and the her dad elephant fixed a bandaged it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,her dad elephant give|give[EW:gave] her a bandaid?,her dad elephant give her a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,no bandage [+_bch].,no bandage +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then her[EW:she] put on her xx.,then her put on her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,her[EW:she] put on her boot/s and her[EW:she] go[EW:went] home?,her put on her boots and her go home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then he pick|pick[EW:picked] her up.,then he pick her up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,pardon me.,pardon me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,wake her up.,wake her up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,wake her up!,wake her up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,he : *is go/ing to go put her bandage on [EU].,he going to go put her bandage on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then (the) : they *are sit/ing on the bench [EU].,then the they sitting on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,pardon me.,pardon me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,a bench [+_bch].,a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,they are sit/ing on a bench.,they are sitting on a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,yes [+_bch].,yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,they *are talk/ing [EU].,they talking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then her eye came to close [EU].,then her eye came to close +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,and her[EW:she] say|say[EW:said] I no like airplanes [EU].,and her say I no like airplanes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,[~_repeats_what_CHI_said]., +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then xx like an airplane.,then like an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then he give|give[EW:gave] it to her.,then he give it to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then he say|say[EW:said] give it back.,then he say give it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then her[EW:she] put it in the water.,then her put it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then her[EW:she] put it?,then her put it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,in the water [+_bch].,in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then : he was mad at her.,then he was mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then he was mad at her.,then he was mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then xx : the airplane : *is in the water [EU].,then the airplane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,what?,what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,[~_whispers] in the water [+_bch].,in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,the airplane is in the water.,the airplane is in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,xxx.,x +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,he is go/ing *to get almost in the water [EU].,he is going get almost in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,[~_repeats_what_CHI_said]., +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then (uh) he can not reach it : the bad elephant.,then uh he can not reach it the bad elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,[~_repeats_what_CHI_said]., +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then : he cry/ed.,then he cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,and then : the mom [EU].,and then the mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,and it can not get it.,and it can not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,[~_repeats_what_CHI_said]., +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then her[EW:she] get|get[EW:got] it.,then her get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,[~_repeats_what_CHI_said]., +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,that is : all [+_bch].,that is all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,can you tell me a little bit about this part?,can you tell me a little bit about this part +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then (xx) [~_EXA:_then_#] him[EW:he] give|give[EW:gave] it to her.,then him give it to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,"give it to her, I see.",give it to her I see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then : (her) : her (got xx) [~_EXA:_got_#] got a shovel [EU].,then her her got got a shovel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,and her[EW:she] got it.,and her got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,[~_repeats_what_CHI_said]., +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,xxx.,x +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,is it all done?,is it all done +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,yeah [+_bch].,yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,(um) : what is this [+_bch]?,um what is this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,what do you think it is?,what do you think it is +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,I can not see so you have to think of something yourself.,I can not see so you have to think of something yourself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,okay [+_bch].,okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,this (is a) is a bunny rabbit.,this is a is a bunny rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,this is a dog.,this is a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,okay tell me what happen/ed.,okay tell me what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,(he is) the dog : he put lot/s of sand xx bucket.,he is the dog he put lots of sand bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then he put it on the sandcastle him[EW:he] make|make[EW:made].,then he put it on the sandcastle him make +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,: and then what?,and then what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,(he) the bunny rabbit put : sand in his bucket.,he the bunny rabbit put sand in his bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then he put it on the dog/z castle.,then he put it on the dog's castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then he *is go/ing *to try to put it in [EU].,then he going try to put it in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,(then he will) then he dump/ed it.,then he will then he dumped it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then he said he (do not lo) can not any more [EU].,then he said he do not lo can not any more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,and then he cry/ed and he said ha.,and then he cried and he said ha +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,that is all [+_bch].,that is all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,the bunny rabbit and the dog they was[EW:were] go/ing for a picnic with the (bas) basket.,the bunny rabbit and the dog they was going for a picnic with the bas basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,with the basket?,with the basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,food.,food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,of food food?,of food food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,no fruit is in there.,no fruit is in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,fruit is in there.,fruit is in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,[~_yeah] and (there was) : (he jus) he eat|eat[EW:ate] his own bun.,and there was he jus he eat his own bun +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then (he) he have|have[EW:has] a drinks[EW:drink].,then he he have a drinks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,and he have|have[EW:has] : a bun dog.,and he have a bun dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,and he have|have[EW:has] to drink.,and he have to drink +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,and then : a bunny rabbit his tummy was hurt/ing because he eat|eat[EW:ate] all *that food [EU].,and then a bunny rabbit his tummy was hurting because he eat all food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,(he) then : the dog talk/ed to *the other bunny [EU].,he then the dog talked to other bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then (uh) he said wait.,then uh he said wait +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,(uh) then he said I will pulled|pull[EW:pull] her jacket.,uh then he said I will pulled her jacket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,(um) then : the bunny and the other (uh) bunny : he did not feel like come/ing.,um then the bunny and the other uh bunny he did not feel like coming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,and he is go/ing *to helping|help[EW:help] to feel his tummy [EU].,and he is going helping to feel his tummy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then he feel/3s great.,then he feels great +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,and that is his grandma : bunny.,and that is his grandma bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,(um) the dog (he have|have[EW:has] a) (a um) he have|have[EW:has] wheel/s for he is push/ing.,um the dog he have a a um he have wheels for he is pushing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then he can push with somebody get/3s in with (when) [EU].,then he can push with somebody gets in with when +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,there is a balloon on it with tape.,there is a balloon on it with tape +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,and then he is go/ing *to push it [EU].,and then he is going push it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,(he will) and then he *is go/ing *to get it [EU].,he will and then he going get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,hold it tight.,hold it tight +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,and then (he) he tie/3s it off [EU].,and then he he ties it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then it blowed|blow[EW:blew] away.,then it blowed away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then (he feel/3s that) : [~_EXA:_then_he_what] (he was) (he said he was m) the dog was (m) mad.,then he feels that he was he said he was m the dog was m mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then the bunny rabbit is go/ing to get balloon/s (fr) from that man : the bunny rabbit man.,then the bunny rabbit is going to get balloons fr from that man the bunny rabbit man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,and then (he) (he) (one for) [~_EXA:_then_he_what_tell_me_this_again] he give|give[EW:gave] one for the dog and the bunny rabbit [EU].,and then he he one for he give one for the dog and the bunny rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,(then the) they having|have[EW:have] a balloon.,then the they having a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then there was find they have[?] [EU].,then there was find they have +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,find the what?,find the what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,the bunny rabbit find|find[EW:finds] a balloon.,the bunny rabbit find a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,and then (he s) he said (he s) the kid/z bunny rabbit mom he give|give[EW:gave] him : a balloon [EU].,and then he s he said he s the kid's bunny rabbit mom he give him a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/474.slt,then it is the end [+_bch].,then it is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,a giraffe : meet/3s an elephant.,a giraffe meets an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,the elephant : seem/3s like she is ask/ing the giraffe to play with her.,the elephant seems like she is asking the giraffe to play with her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,the giraffe : play/3s with the elephant.,the giraffe plays with the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,but : the ball go/3s into the water.,but the ball goes into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,the giraffe swim/3s to get the ball.,the giraffe swims to get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,he give/3s the ball to the elephant.,he gives the ball to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and the elephant : thank/3s him.,and the elephant thanks him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,she think/3s that he is her hero.,she thinks that he is her hero +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,the[-:] elephant : and the giraffe they want : to : jump in the water to play : in the water.,the elephant and the giraffe they want to jump in the water to play in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,the elephant go/3s first.,the elephant goes first +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,but they run.,but they run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,the elephant : hurt/3s herself.,the elephant hurts herself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and the : giraffe tell/3s a lifeguard.,and the giraffe tells a lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,the lifeguard put/3s a bandaid on the elephant/z hurt : and then make/3s it better.,the lifeguard puts a bandaid on the elephant's hurt and then makes it better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,but then he make/3s her sit on the bench because she ran.,but then he makes her sit on the bench because she ran +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,finish/ed [+_bch].,finished +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,the giraffe and the elephant : are go/ing to play together again.,the giraffe and the elephant are going to play together again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,the giraffe has an airplane.,the giraffe has an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and the elephant is watch/ing.,and the elephant is watching +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,then the elephant grab/3s it from : the giraffe.,then the elephant grabs it from the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and then she start/3s to play with it.,and then she starts to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,but then it land/3s in the water.,but then it lands in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,the giraffe get/3s angry at the elephant.,the giraffe gets angry at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,the lifeguard : look/3s at them.,the lifeguard looks at them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and the elephant tell/3s the lifeguard that : (her plane) the giraffe/z plane fell in the water.,and the elephant tells the lifeguard that her plane the giraffe's plane fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,the lifeguard try/3s to get it.,the lifeguard tries to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,the giraffe[!] try/3s to get it.,the giraffe tries to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,then : another person come/3s.,then another person comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and then she has a net.,and then she has a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and she[!] get/3s it : and then give/3s it back to the giraffe.,and she gets it and then gives it back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and then the giraffe hug/3s his plane.,and then the giraffe hugs his plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,a rabbit and a dog : meet each other.,a rabbit and a dog meet each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and they want to play.,and they want to play +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,the doggy build/3s a sandcastle while the rabbit fill/3s : the bucket/s.,the doggy builds a sandcastle while the rabbit fills the buckets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,then the rabbit dump/3s it on the sandcastle : then make/3s the dog/z castle : broken.,then the rabbit dumps it on the sandcastle then makes the dog's castle broken +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and then the dog cry/3s.,and then the dog cries +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and then the rabbit just go/3s like this [~_child_makes_a_motion] : with his ear/s down.,and then the rabbit just goes like this with his ears down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,(then they meet) the rabbit and the dog meet again.,then they meet the rabbit and the dog meet again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,the dog say/3s she would like to eat.,the dog says she would like to eat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and the rabbit has a carrot and love/3s it.,and the rabbit has a carrot and loves it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,then he eat/3s all of his picnic stuff.,then he eats all of his picnic stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and the dog is just eat/ing her[!] sandwich and drink/ing her juice box.,and the dog is just eating her sandwich and drinking her juice box +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,then the rabbit get/3s dizzy.,then the rabbit gets dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,then the dog go/3s *and tell/3s (miss) the doctor [EU].,then the dog goes tells miss the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and the doctor : come/3s.,and the doctor comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and he take/3s his temperature.,and he takes his temperature +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and he leave/3s with the doctor.,and he leaves with the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and the dog stay/3s.,and the dog stays +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,the dog and the rabbit : meet again.,the dog and the rabbit meet again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and the doggy she is pull/ing a wagon.,and the doggy she is pulling a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and the balloon was on top.,and the balloon was on top +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,(an) and I guess (I thi) I think I know what is go/ing to happen next.,an and I guess I thi I think I know what is going to happen next +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,the rabbit : ask/3s the dog for the balloon.,the rabbit asks the dog for the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and then : the rabbit take/3s the balloon off the wagon.,and then the rabbit takes the balloon off the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,then the rabbit and the dog try to get the balloon because : the rabbit let go : of the balloon.,then the rabbit and the dog try to get the balloon because the rabbit let go of the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,the dog get/3s angry at the rabbit.,the dog gets angry at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,then they go : to get another one.,then they go to get another one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,then the rabbit ask/3s for one[!].,then the rabbit asks for one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and then : he said balloon/s five[-:] cent/s.,and then he said balloons five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,the dog and the rabbit get sad because they can not get a balloon.,the dog and the rabbit get sad because they can not get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,then[-:] rabbit tell/3s his mommy : if he can get any money from her [EU].,then rabbit tells his mommy if he can get any money from her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,(and she give/3s) : (she sa) (and he sa) and she ask/3s why?,and she gives she sa and he sa and she asks why +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and then the rabbit say/3s I want a balloon.,and then the rabbit says I want a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and then she give/3s : the : storekeeper two five centses[EW:cent/s] so (sh) he can get one for[-:] : the dog and the rabbit.,and then she gives the storekeeper two five centses so sh he can get one for the dog and the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and they both get them.,and they both get them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/553.slt,and then (they) they are happy.,and then they they are happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(um) there is a giraffe and an elephant play/ing by the pool.,um there is a giraffe and an elephant playing by the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and : the elephant has a ball and is bounce/ing it by the pool.,and the elephant has a ball and is bouncing it by the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and : she throw/3s it into the water.,and she throws it into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the giraffe and the elephant look surprise/ed.,and the giraffe and the elephant look surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the giraffe (go/3s and run/3s to get in) go/3s in the water and : is swim/ing to get the ball.,and the giraffe goes and runs to get in goes in the water and is swimming to get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the elephant is scare/ed that he might drowned[EW:drown].,and the elephant is scared that he might drowned +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and (the) the giraffe get/3s the ball and give/3s it to the elephant.,and the the giraffe gets the ball and gives it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the elephant is happy.,and the elephant is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,the elephant say/3s thank you.,the elephant says thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the giraffe say/3s you are welcome.,and the giraffe says you are welcome +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(um : the) there is a[EW:an] elephant and a giraffe at the pool.,um the there is a elephant and a giraffe at the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and there is a sign (the no).,and there is a sign the no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and it say/3s no run/ing.,and it says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the elephant (go/3s) (look/3s) see/3s a diving board : and go/3s run/ing towards it.,and the elephant goes looks sees a diving board and goes running towards it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the giraffe is run/ing after her try/ing to tell her that the sign says no run/ing.,and the giraffe is running after her trying to tell her that the sign says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and she slip/3s.,and she slips +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and she scrape/3s her knee.,and she scrapes her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the giraffe come/3s walk/ing fast behind her to see what is the matter.,and the giraffe comes walking fast behind her to see what is the matter +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and he call/3s the lifeguard.,and he calls the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the lifeguard (come) come/3s : walk/ing (a li) a little bit fast but not run/ing.,and the lifeguard come comes walking a li a little bit fast but not running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the lifeguard put/3s a bandaid.,and the lifeguard puts a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(and the) and the elephant is cry/ing.,and the and the elephant is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the giraffe (is hold) is say/ing it is okay.,and the giraffe is hold is saying it is okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,it will not hurt.,it will not hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(um) : and the elephant has to sit on the bench (until) (un) for awhile.,um and the elephant has to sit on the bench until un for awhile +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the lifeguard say/3s she could go in the pool after.,and the lifeguard says she could go in the pool after +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the lifeguard show/3s her the sign that says no run/ing.,and the lifeguard shows her the sign that says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and (she ssss) she say/3s oh I sorry [EU].,and she ssss she says oh I sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,there is (um) a[EW:an] elephant and a giraffe at the swimming pool.,there is um a elephant and a giraffe at the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the giraffe has a toy airplane.,and the giraffe has a toy airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,"and the giraffe is (um) play/ing with the airplane, spin/ing it around.",and the giraffe is um playing with the airplane spinning it around +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the elephant is ask/ing him if (he) she could play with it.,and the elephant is asking him if he she could play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(um) the elephant take/3s it away from the giraffe.,um the elephant takes it away from the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the giraffe is say/ing no give it back.,and the giraffe is saying no give it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,give it back.,give it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the elephant accidentally drop/3s it in the water.,and the elephant accidentally drops it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the giraffe is look/ing surprise/ed.,and the giraffe is looking surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(then the) (it is) and then it start/3s to sink.,then the it is and then it starts to sink +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(and the) and the elephant is look/ing like she never did anything.,and the and the elephant is looking like she never did anything +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the giraffe is get/ing mad at her say/ing why did you take it away ?,and the giraffe is getting mad at her saying why did you take it away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,then the lifeguard come/3s.,then the lifeguard comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(and the) and the giraffe tell/3s him what happen/ed.,and the and the giraffe tells him what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(and he) and : he is stand/ing by the pool see/ing : how they could get it out.,and he and he is standing by the pool seeing how they could get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(and then) and then the elephant tell/3s : him that : she accidentally drop/ed it in the pool.,and then and then the elephant tells him that she accidentally dropped it in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(and) and it is sink/ing even more.,and and it is sinking even more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,then the lifeguard try/3s to get it out.,then the lifeguard tries to get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and he is on his hand/s and knee/s (on the) on the pool : and try/ing to go over to get it.,and he is on his hands and knees on the on the pool and trying to go over to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,then the lifeguard (s) tell/3s them there is nothing we could do.,then the lifeguard s tells them there is nothing we could do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,it is too far out.,it is too far out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the (gir) elephant and the giraffe : are sad.,and the gir elephant and the giraffe are sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the giraffe is cry/ing.,and the giraffe is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,then the elephant/z mom come/3s : and (h) has a net (and is gonna) and tell/3s the kid/s that she will get the airplane out.,then the elephant's mom comes and h has a net and is gonna and tells the kids that she will get the airplane out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and she take/3s the net and (sc) try/3s to scoop it out of the water.,and she takes the net and sc tries to scoop it out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and she got it out with the net.,and she got it out with the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the giraffe thank/3s her very much.,and the giraffe thanks her very much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and then the giraffe play/3s with it.,and then the giraffe plays with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(and he) and he say/3s to the elephant you could only play with it if you could not put it in the water.,and he and he says to the elephant you could only play with it if you could not put it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,there is (um) a dog in the sandbox.,there is um a dog in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and rabbit want/3s to play with him.,and rabbit wants to play with him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the dog made a sandcastle.,and the dog made a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(the rabbit put it) the rabbit is play/ing with the dog.,the rabbit put it the rabbit is playing with the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the rabbit (um) put some sand in the bucket and is : move/ing it around with the shovel.,and the rabbit um put some sand in the bucket and is moving it around with the shovel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the rabbit (um) take/3s the sand in the bucket and put/3s it on the dog/z[?] sandcastle.,and the rabbit um takes the sand in the bucket and puts it on the dog's sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(um) the rabbit wreck/3s the sandcastle (in) when he put all the sand on the sandcastle.,um the rabbit wrecks the sandcastle in when he put all the sand on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(and the) and the dog looks funny.,and the and the dog looks funny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and (the) now the dog is cry/ing.,and the now the dog is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the rabbit (um) is look/ing like he did not do nothing.,and the rabbit um is looking like he did not do nothing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(um) the rabbit and the dog (is) are carry/ing picnic basket/s.,um the rabbit and the dog is are carrying picnic baskets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and they are in the forest.,and they are in the forest +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and they unpack their picnic basket/s.,and they unpack their picnic baskets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and : the rabbit has all[!] junk food.,and the rabbit has all junk food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the dog has only a sandwich out.,and the dog has only a sandwich out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the rabbit ate all his food.,and the rabbit ate all his food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(and) and (he is all) he is all look/ing silly.,and and he is all he is all looking silly +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the dog is still eat/ing his food.,and the dog is still eating his food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,now the rabbit is get/ing dizzy.,now the rabbit is getting dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the dog : is look/ing at him.,and the dog is looking at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(and) and the rabbit is not feel/ing well.,and and the rabbit is not feeling well +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the dog get/3s (um) a doctor (and want/3s) and is talk/ing to her about the rabbit.,and the dog gets um a doctor and wants and is talking to her about the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and their doctor come/3s (to the picnic) to their picnic (ban) blanket to go help the rabbit.,and their doctor comes to the picnic to their picnic ban blanket to go help the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the doctor is (put/ing um a thermometer in the rabbit/z) go/ing to [~_gonna] put (it in) a thermometer in the rabbit/z mouth to check the temperature.,and the doctor is putting um a thermometer in the rabbit's going to put it in a thermometer in the rabbit's mouth to check the temperature +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the rabbit is all well.,and the rabbit is all well +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and he is walk/ing now and thank/ing the doctor.,and he is walking now and thanking the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(um) there is a dog pull/ing it/z wagon.,um there is a dog pulling it's wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and it has a balloon tie/ed to the wagon.,and it has a balloon tied to the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the rabbit is come/ing jog/ing to the (r) dog.,and the rabbit is coming jogging to the r dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(the) the rabbit look/3s at the dog/z balloon.,the the rabbit looks at the dog's balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and it is say/ing (this i) can I have this balloon?,and it is saying this i can I have this balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the dog say/3s no.,and the dog says no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the rabbit untie/3s it from the wagon.,and the rabbit unties it from the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(and its the r) and the dog is look/ing : surprise/ed.,and its the r and the dog is looking surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and (he let/3s go) the rabbit let/3s go of the balloon.,and he lets go the rabbit lets go of the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and it is fly/ing in the air.,and it is flying in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and they are try/ing to catch it.,and they are trying to catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,the rabbit is look/ing up into the sky at the balloon.,the rabbit is looking up into the sky at the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the dog is look/ing very angry at the rabbit.,and the dog is looking very angry at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(the) (the t) the rabbit see/3s a man hold/ing lot/s and lot/s of balloon/s and tell/3s the dog.,the the t the rabbit sees a man holding lots and lots of balloons and tells the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the dog is still look/ing angry at him.,and the dog is still looking angry at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,the rabbit go/3s to the man with the balloon/s and ask/3s him for one.,the rabbit goes to the man with the balloons and asks him for one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and : the man tell/3s him that the balloon/s are five cent/s.,and the man tells him that the balloons are five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the rabbit tell/3s him he has no money.,and the rabbit tells him he has no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the dog is trail/ing behind him.,and the dog is trailing behind him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(then the) then the dog come/3s.,then the then the dog comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and : he ask/3s (the ra) (the) the man if they could have one for free.,and he asks the ra the the man if they could have one for free +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and he say/3s no.,and he says no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,then they see the doctor.,then they see the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and (they w) and the rabbit run/3s to her.,and they w and the rabbit runs to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the dog is stand/ing by the man.,and the dog is standing by the man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the rabbit ask/3s the doctor if they could have some money (for) (for) for the balloon/s and because he is broke [EU].,and the rabbit asks the doctor if they could have some money for for for the balloons and because he is broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(the r) (the r) the doctor go/3s up to the man and give/3s him : ten cent/s for the balloon/s.,the r the r the doctor goes up to the man and gives him ten cents for the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,(and the b) and the rabbit and the dog have balloon[EW:balloons].,and the b and the rabbit and the dog have balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and the rabbit and the dog are happy.,and the rabbit and the dog are happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and they thank (the) the doctor.,and they thank the the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/908.slt,and they are rub/ing their balloon/s all over the place.,and they are rubbing their balloons all over the place +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,the cow was go/ing to[:_gonna] go in the pool.,the cow was going to go in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,and there was a little elephant that had ball/s.,and there was a little elephant that had balls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,(the c) : the elephant threw a ball into the pool.,the c the elephant threw a ball into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,and the cow saw.,and the cow saw +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,then the cow swam in the pool to[!] the ball.,then the cow swam in the pool to the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,then he took another[!] ball.,then he took another ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,then he came out.,then he came out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,and (the) the elephant laugh/ed[!] at him.,and the the elephant laughed at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,there was a[EW:an] elephant and a giraffe.,there was a elephant and a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,the elephant was go/ing to[:_gonna] run into the pool.,the elephant was going to run into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,she slip/ed : and hurt her knee.,she slipped and hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,the lifeguard came : and took her into the room : and try/ed to put a bandaid on her.,the lifeguard came and took her into the room and tried to put a bandaid on her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,so she put one on.,so she put one on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,and she was sit/ing on the bench!,and she was sitting on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,and saw it.,and saw it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,and put it into the pool[!].,and put it into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,and the giraffe was mad : because it shrunk.,and the giraffe was mad because it shrunk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,and (the) : the elephant said lifeguard lifeguard : his airplane fell into the pool!,and the the elephant said lifeguard lifeguard his airplane fell into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,then the lifeguard try and reach it [EU].,then the lifeguard try and reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,and the giraffe was cry/ing.,and the giraffe was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,and the girl was scare/ed.,and the girl was scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,and then[~!_laughing] the girl came and got a net[!] : and caught[!] the airplane.,and then the girl came and got a net and caught the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,and then she gave it back[!] to him.,and then she gave it back to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,he was hug/ing it.,he was hugging it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,there once was a rabbit : and a doggy.,there once was a rabbit and a doggy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,the rabbit dug a sandcastle and put some more sand[!] in.,the rabbit dug a sandcastle and put some more sand in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,then he put some on the castle.,then he put some on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,then : the doggy was sad.,then the doggy was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,then she had to make it all over[!] again.,then she had to make it all over again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,there once was (a um) : a bunny : and a doggy.,there once was a um a bunny and a doggy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,(there) : the bunny decide/ed to go on a picnic with the doggy[!].,there the bunny decided to go on a picnic with the doggy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,the doggy ate his sandwich so funny (that the) : that the rabbit laugh/ed.,the doggy ate his sandwich so funny that the that the rabbit laughed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,and then the rabbit was too full of laugh/ing.,and then the rabbit was too full of laughing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,and the doggy had card/s out.,and the doggy had cards out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,then the dog said go[!] go[!] : and pull/ed : and pull/ed : the : rabbit[-:] to the other rabbit.,then the dog said go go and pulled and pulled the rabbit to the other rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,that rabbit : check/ed the other rabbit.,that rabbit checked the other rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,and he was as good.,and he was as good +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,there once was a doggy and a rabbit.,there once was a doggy and a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,the dog had a balloon.,the dog had a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,the rabbit want/ed to play with it.,the rabbit wanted to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,so he took it off.,so he took it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,and then the balloon float/ed away.,and then the balloon floated away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,and it went up up into the sky.,and it went up up into the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,and then they went to buy another one.,and then they went to buy another one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,and the doggy was mad.,and the doggy was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,then (he) he pick/ed another one he said.,then he he picked another one he said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,then there was five[-:].,then there was five +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,then they got another[!] one.,then they got another one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,then one float/ed away.,then one floated away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,then another[!] float/ed away.,then another floated away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,and then he only had two more left for one person.,and then he only had two more left for one person +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/548.slt,and there was one for each of them.,and there was one for each of them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,(um) : the elephant got a ball.,um the elephant got a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,(th) : it bounce/ed in the water.,th it bounced in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,the donkey swam to get it.,the donkey swam to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,(um : the donkey got) [~_actually_that_(i)s_a_giraffe__is_n(o)t_it_#_well] the giraffe got : for the elephant [EU].,um the donkey got the giraffe got for the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,got what?,got what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,got the ball for the elephant [+_bch].,got the ball for the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,the elephant (l) : said thank you.,the elephant l said thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,(um) : the[-:] elephant and the giraffe : want/ed to go swim/ing.,um the elephant and the giraffe wanted to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,(um) the elephant said let us go (in) in the pool.,um the elephant said let us go in in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,she ran : over to the[-:] diving board.,she ran over to the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,she (um) scrape/ed her knee.,she um scraped her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,(um) the giraffe got the lifeguard.,um the giraffe got the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,the lifeguard put a bandage on the elephant/z knee.,the lifeguard put a bandage on the elephant's knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,(the) (the : giraffe : uh um uh) : the lifeguard said you are okay now.,the the giraffe uh um uh the lifeguard said you are okay now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,the lifeguard said no run/ing.,the lifeguard said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,(um) : the giraffe got a : new airplane.,um the giraffe got a new airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,the[-:] giraffe was play/ing with it.,the giraffe was playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,the elephant grab/ed it away.,the elephant grabbed it away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,the elephant drop/ed it in the water accidentally.,the elephant dropped it in the water accidentally +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,(um) the giraffe got : mad.,um the giraffe got mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,the lifeguard came.,the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,and : the elephant explain/ed what happen/ed.,and the elephant explained what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,the lifeguard try/ed to get it.,the lifeguard tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,but he could not.,but he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,the : giraffe cry/ed.,the giraffe cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,(the : la uh : well) the pool lady got it out for him.,the la uh well the pool lady got it out for him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,"(um : she try/ed to get it out) [~_well,_I_can_n(o)t_xx_this_one_#__well] she was get/ing it out.",um she tried to get it out she was getting it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,she got it out for the giraffe.,she got it out for the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,the giraffe was very happy.,the giraffe was very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,(um : hmm :) the rabbit want/ed to play with the [~_what_is_it_a__dog_or_something] dog.,um hmm the rabbit wanted to play with the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,"(um) they built a sandcastle [~_CHI_knocks_into_something,__says_'sorry'].",um they built a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,(um) the rabbit dump/ed sand all over the sandcastle.,um the rabbit dumped sand all over the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,the rabbit (was say/ing sorry) said sorry.,the rabbit was saying sorry said sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,(um then : uh) [~_I_can_n(o)t_think_of_one_for_this_picture] and then they rebuilt (another uh) another castle.,um then uh and then they rebuilt another uh another castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,(um) : the rabbit and the dog (want/ed to have a picnic) [~__well] went to have a picnic.,um the rabbit and the dog wanted to have a picnic went to have a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,(uh) the rabbit got hungry.,uh the rabbit got hungry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,so he ate before the dog.,so he ate before the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,he ate what?,he ate what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,before the dog [+_bch].,before the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,and then he got full.,and then he got full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,and the dog just start/ed to eat.,and the dog just started to eat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,(he) he got a bellyache.,he he got a bellyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,and dog : [~_I_can_n(o)t_think_of_one] [~_well] he got a bellyache.,and dog he got a bellyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,the dog (call/ed) got the doctor.,the dog called got the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,(uh um) the dog told the doctor that his friend had a bellyache.,uh um the dog told the doctor that his friend had a bellyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,"(um the doctor um :) [~_I_can_n(o)t_think_of_one_for_this_one,__it_(i)s_too_hard] (the doctor) [~_I_can_n(o)t_it_(i)s_really_hard] [EU].",um the doctor um the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,do you want to skip that page then?,do you want to skip that page then +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,the doctor (um) : said do not eat too much food next time.,the doctor um said do not eat too much food next time +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,(um) : the rabbit and the dog had a balloon : that was tie/ed onto a wagon.,um the rabbit and the dog had a balloon that was tied onto a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,[~_actually] the dog[!] had a balloon that was tie/ed onto the wagon.,the dog had a balloon that was tied onto the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,the rabbit want/ed to hold it.,the rabbit wanted to hold it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,the rabbit untie/ed it.,the rabbit untied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,the balloon (flo) float/ed up into the air.,the balloon flo floated up into the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,the dog got mad.,the dog got mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,they saw : a person sell/ing balloon/s.,they saw a person selling balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,the rabbit said I want one of those.,the rabbit said I want one of those +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,the rabbit did not have any money.,the rabbit did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,so (um) he could not get a balloon.,so um he could not get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,(um) : they really want/ed a balloon.,um they really wanted a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,they went to the doctor : and said can you get me a balloon?,they went to the doctor and said can you get me a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,then the doctor paid for the balloon/s.,then the doctor paid for the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/828.slt,they love/ed their balloon/s and said thank you.,they loved their balloons and said thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,There is a[EW:an] elephant : and a giraffe.,There is a elephant and a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,(uh) there is some grass right here.,uh there is some grass right here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and there is write/ing.,and there is writing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,"there is a[EW:an] elephant, a giraffe and their ball (fell/ing) fell in the water.",there is a elephant a giraffe and their ball felling fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there was an elephant and a giraffe.,there was an elephant and a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,the elephant xx water.,the elephant water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,he was try/ing to get the ball.,he was trying to get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,(he) the elephant got the ball.,he the elephant got the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and giraffe want/ed it.,and giraffe wanted it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there is a[EW:an] elephant.,there is a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there is a ball and the giraffe.,there is a ball and the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,There is an elephant and a giraffe.,There is an elephant and a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and there is some water.,and there is some water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and there is[EW:are] some brick/s right here.,and there is some bricks right here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,can you tell me what is happen/ing?,can you tell me what is happening +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,they are look/ing at the water.,they are looking at the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there is a giraffe and a[EW:an] elephant.,there is a giraffe and a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there is[EW:are] some brick/s.,there is some bricks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and they are point/ing right over here.,and they are pointing right over here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there is a giraffe and a[EW:an] elephant.,there is a giraffe and a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and the elephant slip/ing.,and the elephant slipping +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there is a giraffe.,there is a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and he hurt his knee right there.,and he hurt his knee right there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there is a[EW:an] elephant.,there is a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there is a[EW:an] elephant.,there is a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there is a giraffe.,there is a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and they are try/ing to help him.,and they are trying to help him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there is a giraffe and (elephant) an elephant.,there is a giraffe and elephant an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and (he got) they are put/ing a bandaid on his owee.,and he got they are putting a bandaid on his owee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there is a giraffe and a[EW:an] elephant elephant.,there is a giraffe and a elephant elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and he was all better.,and he was all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there is an elephant and an elephant.,there is an elephant and an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and he is point/ing at her.,and he is pointing at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,There is an elephant.,There is an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and there is a giraffe.,and there is a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and there is[EW:are] some brick/s.,and there is some bricks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,(there is) there is a[EW:an] airplane.,there is there is a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and he is hold/ing onto his airplane as he is put/ing her hand/s out.,and he is holding onto his airplane as he is putting her hands out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there is a[EW:an] elephant and a giraffe.,there is a elephant and a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,(and he was) and the airplane had string on him[EW:it].,and he was and the airplane had string on him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and there was[EW:were] some brick/s.,and there was some bricks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there was a[-:] : giraffe and an elephant.,there was a giraffe and an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,the elephant took the airplane away from the giraffe.,the elephant took the airplane away from the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,then he drop/ed it in the water.,then he dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and there was[EW:were] some brick/s.,and there was some bricks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and the giraffe was stand/ing on the brick/s.,and the giraffe was standing on the bricks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,(then there was) (the) then there was a[EW:an] elephant.,then there was the then there was a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and the giraffe got mad because it went in that water.,and the giraffe got mad because it went in that water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there was the giraffe and two elephant/s.,there was the giraffe and two elephants +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and they were (look/ing at) look/ing at the airplane to try to get it out.,and they were looking at looking at the airplane to try to get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there is the giraffe.,there is the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there is the elephant.,there is the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and they are try/ing to get it out.,and they are trying to get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,it is the elephant and the giraffe.,it is the elephant and the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and he was try/ing to reach his hand and to get the airplane.,and he was trying to reach his hand and to get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,he could not do it.,he could not do it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and (there is) giraffe cry/ed.,and there is giraffe cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and there is elephant and elephant.,and there is elephant and elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there is a[EW:an] elephant and a[EW:an] elephant and a giraffe and another elephant.,there is a elephant and a elephant and a giraffe and another elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,it was try/ing to get it out.,it was trying to get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,"(he was try/ing) there is an elephant, an elephant and a giraffe and an elephant try/ing to get (the) the airplane out (with his) with his thing.",he was trying there is an elephant an elephant and a giraffe and an elephant trying to get the the airplane out with his with his thing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,the elephant and giraffe.,the elephant and giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and he got it out of the water.,and he got it out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and then he was happy that he got his airplane the giraffe.,and then he was happy that he got his airplane the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and then the elephant was happy.,and then the elephant was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,There was a bunny.,There was a bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and (a) there is a castle.,and a there is a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and she made a castle.,and she made a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and there was a sandbox.,and there was a sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there was a rabbit.,there was a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,(and there) and she was build/ing a castle.,and there and she was building a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and there was a sandbox.,and there was a sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,(and he was) and he was put/ing dirt in his bucket.,and he was and he was putting dirt in his bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there was : a girl.,there was a girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there was : a rabbit.,there was a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and the rabbit pour/ed it on her castle.,and the rabbit poured it on her castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,then it fell down.,then it fell down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there was a bunny.,there was a bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and his bucket fell down.,and his bucket fell down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and she was sad.,and she was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,she cry/ed.,she cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and she try/ed to make another one.,and she tried to make another one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and the bunny rabbit/s was[EW:were] there.,and the bunny rabbits was there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there was a girl.,there was a girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,she was carry/ing a basket.,she was carrying a basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and the bunny was carry/ing a basket.,and the bunny was carrying a basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and there were tree/s.,and there were trees +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,they had a picnic.,they had a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and the bunny was eat/ing some carrot/s.,and the bunny was eating some carrots +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and he was eat/ing something.,and he was eating something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and she was start/ing to put her/z out.,and she was starting to put her's out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,the bunny ate all of it.,the bunny ate all of it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and he got a hurt/ing tummy.,and he got a hurting tummy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and she did not because she did not have much stuff.,and she did not because she did not have much stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,he got more sicker [EU].,he got more sicker +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and she was drink/ing still.,and she was drinking still +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and then her grandma came.,and then her grandma came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,(and sh) and she was try/ing to reach her hand.,and sh and she was trying to reach her hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,(and she) (and she grab/ed her mother) [~_no] she grab/ed her grandma because she was go/ing to[:_gonna] tell her grandma that he (was) (had a) had a hurt/ing tummy.,and she and she grabbed her mother she grabbed her grandma because she was going to tell her grandma that he was had a had a hurting tummy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,(and she s) and she said do not eat no[EW:any] more food.,and she s and she said do not eat no more food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and then he got all better.,and then he got all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there was a girl.,there was a girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,(and) and she was carry/ing (a) (a) a wagon.,and and she was carrying a a a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,(And i) and she tie/ed the (wagon) balloon on her wagon.,And i and she tied the wagon balloon on her wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and the bunny was come/ing to see it.,and the bunny was coming to see it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there was a bunny.,there was a bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there was a bunny look/ing at it.,there was a bunny looking at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and he like/ed it.,and he liked it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and there was balloon.,and there was balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and there was a wagon on it : tie/ed up.,and there was a wagon on it tied up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there was a balloon.,there was a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and there was a wagon.,and there was a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and there was her.,and there was her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and he was try/ing to get the balloon off because he like/ed it.,and he was trying to get the balloon off because he liked it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,(and) and it flew up the air the balloon.,and and it flew up the air the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and then she did not have her balloon.,and then she did not have her balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and the bunny was try/ing to get it.,and the bunny was trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and she was try/ing to get it.,and she was trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and then it broke.,and then it broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,the bunny broke it because she got mad.,the bunny broke it because she got mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and then the wagon was left there.,and then the wagon was left there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,then (the balloon man had) the balloon man had lot/s of balloon/s.,then the balloon man had the balloon man had lots of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and (they) (they had) they like/ed it.,and they they had they liked it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,but the bunny like/ed it.,but the bunny liked it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,but she was still mad.,but she was still mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and (he said could I still) he was look/ing at the balloon.,and he said could I still he was looking at the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and he like/ed it.,and he liked it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and he want/ed one.,and he wanted one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and (sh) she want/ed one too.,and sh she wanted one too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,but she lost her balloon.,but she lost her balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,there was a balloon guy.,there was a balloon guy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and there was the bunny.,and there was the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and there was the girl again.,and there was the girl again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,then they ran back.,then they ran back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,then he ran to his mother.,then he ran to his mother +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,(and) and she was still stand/ing (where) where the balloon man was.,and and she was still standing where where the balloon man was +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and then he point/ed to the balloon man (if) (if) if he could have some balloon/s.,and then he pointed to the balloon man if if if he could have some balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,then she give|give[EW:gave] him some money.,then she give him some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and then they could have two balloon/s.,and then they could have two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,and then (they had their balloon/s for) (for) they had their balloon/s.,and then they had their balloons for for they had their balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/517.slt,that is the end [+_bch].,that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,There is a giraffe and a[EW:an] elephant.,There is a giraffe and a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,(the g*) : the elephant is bounce/ing a ball by the water.,the g the elephant is bouncing a ball by the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,(the) the ball went into the : water.,the the ball went into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,And the elephant was scare/ed and the giraffe [EU].,And the elephant was scared and the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the giraffe dived|dive[EW:dove] in.,the giraffe dived in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,and the elephant could[Ew:did] not even : want to look at it.,and the elephant could not even want to look at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the giraffe gave the ball to the elephant.,the giraffe gave the ball to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,Then the giraffe smile/ed at the elephant.,Then the giraffe smiled at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,And the (su* : uh) elephant smile/ed at the giraffe.,And the su uh elephant smiled at the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,That is the end [+_bch].,That is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,The elephant and the giraffe (: um) are stand/ing on the walkway : by the pool.,The elephant and the giraffe um are standing on the walkway by the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the elephant is go/ing to run into the pool.,the elephant is going to run into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,she slip/ed.,she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,and (the she s*) that is all [+_bch].,and the she s that is all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,She slip/ed [+_bch].,She slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,She hurted|hurt[EW:hurt] her leg.,She hurted her leg +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the giraffe (was was uh) was not smile/ing.,the giraffe was was uh was not smiling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the lifeguard came and look/ed at the elephant/z owee.,the lifeguard came and looked at the elephant's owee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the lifeguard putted|put[EW:put] a bandaid on : (her owee) the elephant/z owee.,the lifeguard putted a bandaid on her owee the elephant's owee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,she had to sit on the bench til[EW:until] : her knee felt better.,she had to sit on the bench til her knee felt better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,(now she uh) now (uh no) the lifeguard was not happy (because it is) because there is not suppose/ed to be run/ing on the deck.,now she uh now uh no the lifeguard was not happy because it is because there is not supposed to be running on the deck +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,That is the end [+_bch].,That is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,a[EW:an] elephant : and the giraffe [EU].,a elephant and the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,(uh) the giraffe had : a[EW:an] airplane.,uh the giraffe had a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,"the elephant was stare/ing at the airplane, how : the giraffe could not make it go up [EU].",the elephant was staring at the airplane how the giraffe could not make it go up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,(then) then she want/ed a turn.,then then she wanted a turn +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,and she grab/ed it out of the giraffe/z : hand.,and she grabbed it out of the giraffe's hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,now when (sh*) they were (pull) go/ing to pull on it : it just fell in the water : of the pool.,now when sh they were pull going to pull on it it just fell in the water of the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,"the giraffe was mad at the elephant, : what she did to his airplane [EU].",the giraffe was mad at the elephant what she did to his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,now the lifeguard came and (s*) saw : (uh um) the little toy airplane was in the water [EU].,now the lifeguard came and s saw uh um the little toy airplane was in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the elephant explain/ed it was an accident.,the elephant explained it was an accident +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the lifeguard was (s* s*) try/ing to reach it (through the) by the pool.,the lifeguard was s s trying to reach it through the by the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the giraffe was cry/ing because : the lifeguard could not reach it.,the giraffe was crying because the lifeguard could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,and the elephant felt sorry.,and the elephant felt sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,a[EW:an] other elephant had a : net.,a other elephant had a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,and she was smile/ing.,and she was smiling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,she took out the airplane (from) with the net from the water.,she took out the airplane from with the net from the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,now the giraffe was happy.,now the giraffe was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the giraffe was smile/ing and the elephant [EU].,the giraffe was smiling and the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,there is a rabbit and a dog.,there is a rabbit and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the dog made a sandcastle.,the dog made a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the rabbit want/ed to help.,the rabbit wanted to help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,so (he had she he) he gotted|got[EW:got] a shovel and a pail.,so he had she he he gotted a shovel and a pail +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,he dump/ed it on the sandcastle.,he dumped it on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,it broke the sandcastle.,it broke the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,and the dog was : almost go/ing to cry.,and the dog was almost going to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the dog was cry/ing because : the rabbit dump/ed the sand on his sandcastle what[EW:that] he built.,the dog was crying because the rabbit dumped the sand on his sandcastle what he built +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the dog and the rabbit had a picnic basket.,the dog and the rabbit had a picnic basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the dog was wave/ing.,the dog was waving +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,wave/ing?,waving +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,at the rabbit [+_bch].,at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,The rabbit brought a lot of stuff.,The rabbit brought a lot of stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,he was drool/ing because : all his stuff he want/ed to eat right now.,he was drooling because all his stuff he wanted to eat right now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,he ate all of it.,he ate all of it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,(And and) and he had a : full tummy.,And and and he had a full tummy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,his tummy ache/ed.,his tummy ached +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,he : went and (saw his mom and) ((no)) saw a doctor : and : telled|tell[EW:told] my friend (is) has a tummyache [EU].,he went and saw his mom and no saw a doctor and telled my friend is has a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the dog pull/ed (him) her (to) to his friend.,the dog pulled him her to to his friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,(the) the nurse said you should not have ate too[EW:so] much.,the the nurse said you should not have ate too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,(he sh*) she said walk with me.,he sh she said walk with me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,we will get you to the hospital.,we will get you to the hospital +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the dog had : the balloon on his (str* : uh) : stroller.,the dog had the balloon on his str uh stroller +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the bunny saw the balloon.,the bunny saw the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,and : he was go/ing to pull his arm to get the balloon.,and he was going to pull his arm to get the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,he : untie/ed the balloon.,he untied the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,and then : (his) the dog/z balloon went up in the air.,and then his the dog's balloon went up in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the dog was mad at the : bunny.,the dog was mad at the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the rabbit saw a balloon man : have/ing balloon/s [EU].,the rabbit saw a balloon man having balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the angry dog : saw the balloon : man : had lot/s of balloon/s.,the angry dog saw the balloon man had lots of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,and the rabbit was go/ing to get one.,and the rabbit was going to get one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,it is (the) : the balloon (with the) with the : thing where it had the number on it with cash.,it is the the balloon with the with the thing where it had the number on it with cash +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,(The bu*) the bunny did not have any money to get that balloon for him.,The bu the bunny did not have any money to get that balloon for him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,(to) : the bunny went to the nurse.,to the bunny went to the nurse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,and the dog stay/ed with the man.,and the dog stayed with the man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,the bunny said it to the nurse (s*) could you get one of those balloon/s for me?,the bunny said it to the nurse s could you get one of those balloons for me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,I do not have too much money (for) to get one for my friend.,I do not have too much money for to get one for my friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,she paid for the money[EW:balloons].,she paid for the money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,and there was[EW:were] two balloon/s what[EW:that] they got.,and there was two balloons what they got +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,they each have their balloon.,they each have their balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,and (they) the dog was hug/ing his.,and they the dog was hugging his +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,and the rabbit was hold/ing on to it (on) on the side/s.,and the rabbit was holding on to it on on the sides +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,and?,and +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/501.slt,that is all [+_bch].,that is all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,here he come/3s.,here he comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,oh hi giraffe.,oh hi giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,how are you?,how are you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,I will get your (ba um) ball elephant.,I will get your ba um ball elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,oh do not drowned|drown[EW:drown].,oh do not drowned +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,oh thank you giraffe.,oh thank you giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,I like you giraffe.,I like you giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,Elephant why do not we go swimming [EU]?,Elephant why do not we go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,: I will jump in first.,I will jump in first +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,oh Elephant do not slip : and hurt yourself.,oh Elephant do not slip and hurt yourself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,oh Elephant are you okay?,oh Elephant are you okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,I will go get the lifeguard.,I will go get the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,there is the lifeguard.,there is the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,he will help you.,he will help you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,are you okay?,are you okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,sit on this bench for awhile.,sit on this bench for awhile +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,and you will feel better.,and you will feel better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,: next time no run/ing.,next time no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,hello Elephant.,hello Elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,(how is) : your leg is better.,how is your leg is better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,do you like my new airplane?,do you like my new airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,could I play with it?,could I play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,(sorry) sorry Giraffe that I drop/ed your plane in the water.,sorry sorry Giraffe that I dropped your plane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,[~_makes_growling_sound] I do not want to[:_wanna] be your friend any more.,I do not want to be your friend any more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,I do not like you.,I do not like you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,lifeguard I was only play/ing with it.,lifeguard I was only playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,I can not reach it.,I can not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,now look they will think you made (lil) (the little giraffe) the little boy giraffe cry.,now look they will think you made lil the little giraffe the little boy giraffe cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,it is okay.,it is okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,I can get it out with my net.,I can get it out with my net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,: see you can not[!] get it out : with your net.,see you can not get it out with your net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,oh maybe you can.,oh maybe you can +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,thank you.,thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,I am sorry that I said I do not want to[:_wanna] be your friend any more.,I am sorry that I said I do not want to be your friend any more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,a bunny and a : bunny rabbit [EU].,a bunny and a bunny rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,okay why do you not start now?,okay why do you not start now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,oh (hi) hi bunny.,oh hi hi bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,do you want to[:_wanna] play with me in the sand?,do you want to play with me in the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,I am build/ing a sandcastle.,I am building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,do you want to[:_wanna] help?,do you want to help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,sure I will help.,sure I will help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,: oh no (look how sand) I pour/ed too much sand on the sandcastle.,oh no look how sand I poured too much sand on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,it broke.,it broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,I am sorry.,I am sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,hi Rabbit.,hi Rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,do you want to[:_wanna] have a picnic with me?,do you want to have a picnic with me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,this[EW:these] (is) sure are some good carrot/s.,this is sure are some good carrots +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,I am full.,I am full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,[~_child_makes_snoring_sound] he look/3s likes|like[EW:like] he is xx asleep.,he looks likes he is asleep +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,missus Rabbit (your um) (your lil) your son : rabbit is (um) fall/ing asleep.,missus Rabbit your um your lil your son rabbit is um falling asleep +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,and I can not wake him up.,and I can not wake him up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,hurry hurry.,hurry hurry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,[~_stern_voice] you ate too much again.,you ate too much again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,you are ground/ed.,you are grounded +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,time to go home Rabbit.,time to go home Rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,hi Rabbit.,hi Rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,do you want to[:_wanna] come for a walk with me?,do you want to come for a walk with me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,nice balloon : Rabbit.,nice balloon Rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,I will untie it : for you.,I will untie it for you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,oh no!,oh no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,it slip/ed out of my hands.,it slipped out of my hands +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,and I can not reach it.,and I can not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,I am mad at you stinky stupid Rabbit!,I am mad at you stinky stupid Rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,I do not like you.,I do not like you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,hey (there some mor) there is (a) a man over there sell/ing : some balloon/s.,hey there some mor there is a a man over there selling some balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,hey can I have one of those balloon/s?,hey can I have one of those balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,: oh : price is (five bu) five cent/s [EU].,oh price is five bu five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,oh no.,oh no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,guess I can not get *a balloon for you [EU].,guess I can not get balloon for you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,mom : can I have five cent/s : because I want to[:_wanna] get a balloon?,mom can I have five cents because I want to get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,: oh thank you mama.,oh thank you mama +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,now we both have balloon/s (ra) Rabbit.,now we both have balloons ra Rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/825.slt,thank you Rabbit for ask/ing your mom to get me : a balloon.,thank you Rabbit for asking your mom to get me a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,(uh) There was (a) a giraffe : talk/ing to a[EW:an] [-:] elephant bounce/ing ball/s.,uh There was a a giraffe talking to a elephant bouncing balls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then one of them fell in the water.,and then one of them fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and (then he went) the giraffe went to swim[!] for it.,and then he went the giraffe went to swim for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and he got it and : gave it to the elephant.,and he got it and gave it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then[-:] elephant was really happy.,and then elephant was really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,There was a giraffe and an elephant : look/ing at the lake or the swimming pool.,There was a giraffe and an elephant looking at the lake or the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then the elephant was about to jump in.,and then the elephant was about to jump in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,[~_wait_no] they are play/ing : a game around the pool.,they are playing a game around the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then he was about to fall in.,and then he was about to fall in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then he got hurt.,and then he got hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then the lifeguard came.,and then the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then he put a bandaid on it.,and then he put a bandaid on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and it really hurted|hurt[EW:hurt].,and it really hurted +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then it was better after.,and then it was better after +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then the lifeguard (point/ed) said sit down on the chair.,and then the lifeguard pointed said sit down on the chair +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and he point/ed to a sign that said no run/ing.,and he pointed to a sign that said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,There was an elephant and a giraffe talk/ing once again.,There was an elephant and a giraffe talking once again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then (the) : the giraffe took a plane and went [~_makes__airplane_sound].,and then the the giraffe took a plane and went +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then the elephant grab/ed it and start/ed to play with it.,and then the elephant grabbed it and started to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then the giraffe got really mad.,and then the giraffe got really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then it fell in the water.,and then it fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then he was really mad at the elephant.,and then he was really mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then the lifeguard came.,and then the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then[-:] : he[-:] : told him not to do that.,and then he told him not to do that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then he try/ed to reach for it.,and then he tried to reach for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,but they could not get it out.,but they could not get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,so (they took) another girl came and took a net.,so they took another girl came and took a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,(and she got it o) [~_wait] she is try/ing to get it out.,and she got it o she is trying to get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and she got it out.,and she got it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,"and then (he wa) they were both very happy,.",and then he wa they were both very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,there was (a um) a[EW:an] elephant build/ing : a sandcastle.,there was a um a elephant building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then[-:] a bunny came and start/ed to help him.,and then a bunny came and started to help him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then the bunny dump/ed a whole bunch of sand on the castle.,and then the bunny dumped a whole bunch of sand on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and it broke.,and it broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and there was one tower left.,and there was one tower left +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then[-:] : the elephant was really mad.,and then the elephant was really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and the (uh) bunny did not know what to say.,and the uh bunny did not know what to say +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then it was over [+_bch].,and then it was over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then an elephant came.,and then an elephant came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then a bunny came.,and then a bunny came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and they were go/ing for a picnic.,and they were going for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and the elephant had not open/ed his lunch kit yet.,and the elephant had not opened his lunch kit yet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and the : bunny had all sort/s of food.,and the bunny had all sorts of food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,(and then he got) and then while the elephant was eat/ing the (um) : bunny was really sick : or full.,and then he got and then while the elephant was eating the um bunny was really sick or full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then : he[-:] got sick.,and then he got sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and : he was still eat/ing.,and he was still eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,so then (they went to get) the elephant went to get a doctor.,so then they went to get the elephant went to get a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and the doctor came.,and the doctor came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then he start/ed to help him.,and then he started to help him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then he was all better.,and then he was all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,well not all better but [EU] [+/]^,well not all better but +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,there was (a : um) an elephant pull/ing a stroller with a balloon on it.,there was a um an elephant pulling a stroller with a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and (uh) then the bunny came.,and uh then the bunny came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and he was go/ing to [~_gonna] grab it : to see it.,and he was going to grab it to see it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and he start/ed to untie it.,and he started to untie it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then (the bun) it flew away.,and then the bun it flew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and : it kept fly/ing.,and it kept flying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and[-:] the bunny was look/ing up.,and the bunny was looking up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and the elephant : was really mad.,and the elephant was really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then they saw a balloon man.,and then they saw a balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,(and he was go/ing to have) and then the bunny was go/ing to [~_gonna] have one.,and he was going to have and then the bunny was going to have one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then[-:] he said they were five cent/s.,and then he said they were five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then[-:] : they were mad.,and then they were mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,but[-:] he still did not give them one.,but he still did not give them one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then (he told) he asked the man for five cent/s I think.,and then he told he asked the man for five cents I think +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and (he : bo) then he got one : for them.,and he bo then he got one for them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/917.slt,and then they were happy.,and then they were happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,(um) : a[EW:an] [-:] elephant is dribble/ing a ball near water I think.,um a elephant is dribbling a ball near water I think +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,the ball fall/3s in the water.,the ball falls in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,(the) [~_is_that_a_donk*_no] the giraffe go/3s to get it.,the the giraffe goes to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and[-:] the giraffe give/3s it back to the : elephant.,and the giraffe gives it back to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and now the elephant is happy.,and now the elephant is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,(um) : they see the pool again.,um they see the pool again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and[-:] there is a sign that say/3s no run/ing.,and there is a sign that says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and[-:] they see a diving board.,and they see a diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and they want to go to the diving board.,and they want to go to the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,but they start to run.,but they start to run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and the elephant slip/3s : and[-:] hurt/3s her (uh) knee.,and the elephant slips and hurts her uh knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and then a lifeguard come/3s : and put/3s a bandaid on it.,and then a lifeguard comes and puts a bandaid on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and[-:] then it is fine.,and then it is fine +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and then the lifeguard point/3s to a no run/ing sign.,and then the lifeguard points to a no running sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,(um) : they are back at the pool.,um they are back at the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and[-:] the giraffe has a[-:] : plane.,and the giraffe has a plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and the[-:] elephant grab/3s it from the[-:] giraffe/z hand.,and the elephant grabs it from the giraffe's hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and it fall/3s in the water.,and it falls in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and it is sink/ing.,and it is sinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,now the lifeguard see/3s it.,now the lifeguard sees it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and[-:] : the elephant is (um) ask/ing what he can do about it.,and the elephant is um asking what he can do about it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,the lifeguard try/3s to reach it.,the lifeguard tries to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,but he can not.,but he can not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,so[-:] a lady got a net : and : get/3s it out.,so a lady got a net and gets it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and then the giraffe is happy again.,and then the giraffe is happy again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and : now I guess he is play/ing with it again.,and now I guess he is playing with it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,two rabbit/s are[-:] make/ing a sandcastle.,two rabbits are making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,(um) : I guess they are just make/ing it better.,um I guess they are just making it better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,(um) one rabbit dump/3s the sand on the sandcastle.,um one rabbit dumps the sand on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and it wreck/3s it.,and it wrecks it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and[-:] the other rabbit is sad.,and the other rabbit is sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,that is it [+_bch].,that is it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,the two rabbit/s are go/ing for a picnic.,the two rabbits are going for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,(um) : I guess one has lot/s [EU].,um I guess one has lots +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and the other one has hardly any.,and the other one has hardly any +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,(the) : the bunny get/3s fat.,the the bunny gets fat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,he get/3s dizzy.,he gets dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,(um) : he call/3s for help.,um he calls for help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,(um) : the rabbit is pull/ing her (um) : because maybe she just want/3s to go for a walk more [~_laughs] [EU].,um the rabbit is pulling her um because maybe she just wants to go for a walk more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,: (um) she is make/ing him (feel) feeling[EW:feel] better.,um she is making him feel feeling better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,I do not know [+_bch].,I do not know +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,(um) and : he walk/3s away when she is better again.,um and he walks away when she is better again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,(um) the rabbit/s are back again.,um the rabbits are back again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and : one is pull/ing a wagon with a balloon on it.,and one is pulling a wagon with a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,(um) : the other rabbit notice/3s (that) the balloon I guess.,um the other rabbit notices that the balloon I guess +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,(um) : the other rabbit is try/ing to pull it off.,um the other rabbit is trying to pull it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and it go/3s up into the air.,and it goes up into the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and now the other rabbit is mad.,and now the other rabbit is mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and then they see : a different rabbit that is sell/ing balloon/s.,and then they see a different rabbit that is selling balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,so : the rabbit go/3s up and buy/3s one.,so the rabbit goes up and buys one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and they are five cent/s.,and they are five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,but he do/3s not have any five cents[EW:money].,but he does not have any five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,(um : uh) : so I guess he is mad or something.,um uh so I guess he is mad or something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,then he go/3s to a lady : to ask (if) if she has five cent/s.,then he goes to a lady to ask if if she has five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,and she do/3s.,and she does +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/855.slt,so they both get a balloon.,so they both get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,So (ele) elephant say|say[EW:said] : yes : you can play with me!,So ele elephant say yes you can play with me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so she try/ed to put it in the water.,so she tried to put it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,aah[!] [~_makes_sound_effects].,aah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,and she say|say[EW:said] : I got it [~_repeats_2_times].,and she say I got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,I got it[-:]!,I got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so (good) good job!,so good good job +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so your husband too.,so your husband too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,I am done [+_bch].,I am done +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,So (sh) she had a [~_wheee].,So sh she had a +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,then : she decide to get in the water!,then she decide to get in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,(I wa) I want to go here.,I wa I want to go here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,hey yes you can.,hey yes you can +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,yahoo!,yahoo +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,wait[-:].,wait +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so : (you) you knee/s is hurt [EU].,so you you knees is hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,aah.,aah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,ouch.,ouch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so : that hurt/3s.,so that hurts +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,she has got to cry.,she has got to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so she say/3s [~_makes_crying_sound].,so she says +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,there.,there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,that is better!,that is better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,(huh) that is xx your bandaid.,huh that is your bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so : (you) you got to swim/ing later [EU].,so you you got to swimming later +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so : you got to get hurt.,so you got to get hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,I am done [+_bch].,I am done +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,So (you) (you) you had to go swim.,So you you you had to go swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,I said (ahh) stop.,I said ahh stop +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so fine!,so fine +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,she say|say[EW:said] he is dead.,she say he is dead +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,hey.,hey +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so (sh) aah!,so sh aah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,my airplane!,my airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,[~_grr] oh your said bad my airplane [EU].,oh your said bad my airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,[~_grrr] you broke my airplane.,you broke my airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,but (she) (she is) she is put my airplane [EU].,but she she is she is put my airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,oh no.,oh no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,but I was do/ing that.,but I was doing that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,oh no(*3)[-:].,oh no no no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,I got it.,I got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,I got it.,I got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,see?,see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,I do not think so.,I do not think so +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,(give) give it a try.,give give it a try +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,here I come (stt).,here I come stt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,I got it.,I got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,I got it.,I got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,said she just start to cry [EU].,said she just start to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,my airplane!,my airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so do not touch it.,so do not touch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,then I am done [+_bch].,then I am done +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,(she) she is had to play (sand) sandcastle [EU].,she she is had to play sand sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,she is had to make big sandcastle for rabbit : a dog [EU].,she is had to make big sandcastle for rabbit a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so : a bad rabbit : (he) he is put/ing like this [EU].,so a bad rabbit he he is putting like this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,she had a xx found a (sa) (sandcas) sandcastle.,she had a found a sa sandcas sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,(uh) what is happen/ed?,uh what is happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,oops.,oops +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,she say/3s sorry.,she says sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,(uh) (rab) rabbit say|say[EW:says] (do not) do not take[?] it.,uh rab rabbit say do not do not take it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,you bad [EU].,you bad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,(you) you hurt my sandcastle.,you you hurt my sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,(I) she would not come with us.,I she would not come with us +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so she is hardly eat a food [EU].,so she is hardly eat a food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,(she) (she) so tummy/s is hurt/3s [EU].,she she so tummies is hurts +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so : she *is sick [EU].,so she sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so : he *is sick [EU].,so he sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,a doctor is a listen [EU].,a doctor is a listen +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,(ah) his tummy is hurt.,ah his tummy is hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,she said open your mouth.,she said open your mouth +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,she sick.,she sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,"[~_makes_sound_""ahhh""] yuck.",yuck +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so (a) (a doctor she) (ra) (ra) rabbit felt like this [~_makes_gesture].,so a a doctor she ra ra rabbit felt like this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so a rabbit is open your mouth.,so a rabbit is open your mouth +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,"[~_makes_sound_""ahhh""].", +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,(so : rabbit) rabbit : (so) : so feel better.,so rabbit rabbit so so feel better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,all done [+_bch].,all done +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so she is has a xx xx some mooo.,so she is has a some mooo +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so he said I get some balloon (like) like this.,so he said I get some balloon like like this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so she has to say [~_makes_gestures].,so she has to say +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,she say/3s[?] take it off.,she says take it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,and put it up.,and put it up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,say (ahhh) a balloon.,say ahhh a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,"[~_makes_sound_""grrr""] [~_laughs].", +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,what is happen/ing?,what is happening +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,she is say what are you [EU]?,she is say what are you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,"[~_makes_sound_""grrrr""] [~_laughs].", +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,balloon/s is[EW:are] back[!].,balloons is back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,"yeah [~_makes_yelling_sound_""ahhh""].",yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,oops.,oops +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,ouch!,ouch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,a balloon [~_yeahha].,a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,she say|say[EW:says] this one.,she say this one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,(ahh) (where is) (where is my) where is my (I) (I) my balloon?,ahh where is where is my where is my I I my balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,what is happen/ing?,what is happening +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so : (I xxx) I go/ing to[:_gonna] say I xxx.,so I x I going to say I x +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,I wonder what xx xx.,I wonder what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,xxx.,x +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,xxx [~_/bosolasafiso/].,x +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,she say I talk/ed to her [EU].,she say I talked to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,yes?,yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,I tell you I xxx.,I tell you I x +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,I want to go home.,I want to go home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,"[~_makes_sound_""wha""] can you hear that?",can you hear that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,so (I) I want to buy a balloon.,so I I want to buy a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,I want a balloon for the boy[?].,I want a balloon for the boy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,yay!,yay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/523.slt,(she say) : then I am all done [+_bch].,she say then I am all done +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,he saw a balloon.,he saw a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,and he was bounce/ing it.,and he was bouncing it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,and they drop/ed it in the water.,and they dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,he went to swim for it.,he went to swim for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,and he gave it to her.,and he gave it to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,(and then : sh) (and then she was too) and then (wa) she was happy.,and then sh and then she was too and then wa she was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,[~_what_(i)s_that] : they were go/ing to get the ball.,they were going to get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,she was go/ing to get it first.,she was going to get it first +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,he ran for his life.,he ran for his life +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,and then she got it.,and then she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,and then she hurt herself.,and then she hurt herself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,and then another elephant came.,and then another elephant came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,and then she : start/ed to cry.,and then she started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,and then she help/ed her up and put a bandaid on her.,and then she helped her up and put a bandaid on her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,and then she sitted|sit[EW:sat] there.,and then she sitted there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,and the lifeguard came.,and the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,(she) he had a[EW:an] airplane.,she he had a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,and she want/ed to give it to her.,and she wanted to give it to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,(and then[-:] she) and then he flied|fly[EW:flew] it.,and then she and then he flied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,then : she got it from him.,then she got it from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,and then it fell in the : water.,and then it fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,(and) and he got so mad at her.,and and he got so mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,(then anoth) and the lifeguard came.,then anoth and the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,and then she ask/ed if he can pick that up.,and then she asked if he can pick that up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,and he try/ed to get it.,and he tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,but he could not reach.,but he could not reach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,then he cry/ed.,then he cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,and then he try/ed to get it.,and then he tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,(and then he getted|get[EW:got] it) and then he got it from out of the water.,and then he getted it and then he got it from out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,and he gave it to : him.,and he gave it to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,and he said thank you.,and he said thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,they were play/ing in the sandbox[-:] .,they were playing in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,he was dig/ing for sand : then put/ing it in the bucket.,he was digging for sand then putting it in the bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,and he pour/ed it on the castle.,and he poured it on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,then : he was : sad.,then he was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,then he (th s) thought (of s) of build/ing it again.,then he th s thought of s of building it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,he was walk/ing towards (a) a bunny.,he was walking towards a a bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,they ate : a picnic.,they ate a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,then he : ate too much.,then he ate too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,and then he was full.,and then he was full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,then he ran to someone who could help.,then he ran to someone who could help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,then he pull/ed her shirt.,then he pulled her shirt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,what is this one (um) [+_bch]?,what is this one um +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,look at the picture/s.,look at the pictures +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,I do not know which one it is [+_bch].,I do not know which one it is +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,let us try the next page.,let us try the next page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,like : turn the next page [+_bch].,like turn the next page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,and (then they) then they went home.,and then they then they went home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,he was take/ing a balloon to someone.,he was taking a balloon to someone +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,(and then he took) and then he want/ed to give it to him.,and then he took and then he wanted to give it to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,he tie/ed it off.,he tied it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,then it flew up in the air.,then it flew up in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,then he got so mad.,then he got so mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,then another man came by with balloon/s.,then another man came by with balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,(and he gave him) and he ask/ed for another balloon.,and he gave him and he asked for another balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,(and h) and he said no.,and h and he said no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,then they were so upset.,then they were so upset +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,then (they) another bunny was stand/ing there.,then they another bunny was standing there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,and he said : look at those balloon/s.,and he said look at those balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,then he want/ed to give him[!] a balloon.,then he wanted to give him a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/446.slt,(then they got) then they both got one.,then they got then they both got one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,that is a[EW:an] elephant.,that is a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and that is a cow.,and that is a cow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,that is what?,that is what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,a cow [+_bch].,a cow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,that is *an elephant [EU].,that is elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and then that is a cow : again.,and then that is a cow again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,a[EW:an] elephant and a cow.,a elephant and a cow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,oh you want/ed to turn the page/s sorry.,oh you wanted to turn the pages sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,tell me the story.,tell me the story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,(that) that guy fell in the mud.,that that guy fell in the mud +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and this girl (pick/ed her up) (pick up) pick/ed him up : elephant [EU].,and this girl picked her up pick up picked him up elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and he was very mad at her.,and he was very mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,they were go/ing to [:_gonna] go in the pool right [+_bch]?,they were going to go in the pool right +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,can you say that louder so I can hear better?,can you say that louder so I can hear better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,(th) they were go/ing to go in the pool[-:].,th they were going to go in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,oh okay remember I can not see the picture/s so you have to tell me so I can hear it.,oh okay remember I can not see the pictures so you have to tell me so I can hear it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,(um) she : was go/ing to [:_gonna] hurt herself : when she went.,um she was going to hurt herself when she went +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,: and she hurt herself.,and she hurt herself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,: what is happen/ing in that picture?,what is happening in that picture +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,she hurt herself [+_bch].,she hurt herself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,she got a scratch.,she got a scratch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,: and then that guy came.,and then that guy came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,(and) : and then she had a bandaid on.,and and then she had a bandaid on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,: what is happen/ing on this one now?,what is happening on this one now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,(hm) : they : were happy.,hm they were happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,oh okay.,oh okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,this guy is mad.,this guy is mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,he is.,he is +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,is that the end?,is that the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,yup [+_bch].,yup +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,he had the airplane.,he had the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and it was his.,and it was his +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and this guy : got it all tangle/ed.,and this guy got it all tangled +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and the girl had it now.,and the girl had it now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,(and : now the girl :) [~_EXA:_what_(i)s_that_I_did_n(o)t_hear] then the girl drop/ed it in there.,and now the girl then the girl dropped it in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,okay.,okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,she drop/ed it in there.,she dropped it in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and this guy was mad.,and this guy was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,: (now they were both) now they were both mad.,now they were both now they were both mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,: and that[!] girl [EU].,and that girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,lot/s of page/s [+_bch].,lots of pages +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,yeah yeah but on this page can you tell me what is happen/ing because I can not see.,yeah yeah but on this page can you tell me what is happening because I can not see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,(um) the girl is mad.,um the girl is mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and now that guy was go/ing to reach it.,and now that guy was going to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and he could not.,and he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,: and then this guy was cry/ing.,and then this guy was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and this girl xxx.,and this girl x +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,yes she did.,yes she did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,: and (this girl xxx) [~_EXA:_what_is_that] this girl was go/ing to catch it.,and this girl x this girl was going to catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and she caught[!] it.,and she caught it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,"oh okay, and on this page what is happen/ing?",oh okay and on this page what is happening +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,she caught[!] it [+_bch].,she caught it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,: then she gave it to him.,then she gave it to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,: (then : he) then she was happy.,then he then she was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,he : and him[EW:he] builded|build[EW:built] a castle.,he and him builded a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,: and then that guy was go/ing to [:_gonna] build a really high [+..] [EU].,and then that guy was going to build a really high +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and then it spill/ed all over.,and then it spilled all over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and then : it was broken!,and then it was broken +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and he was mad.,and he was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,it was all his fault.,it was all his fault +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,he did it.,he did it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,what did you say what did you say honey?,what did you say what did you say honey +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,this guy was : sad.,this guy was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and : (that guy : was not happy) [~_no] (this guy) that guy was cry/ing.,and that guy was not happy this guy that guy was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,that guy was run/ing.,that guy was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,[~!_whispers] he was [+_bch].,he was +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and then : that guy was go/ing [~_sticking_tongue__out].,and then that guy was going +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,[~!_whispers] he was [+_bch].,he was +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,can you say that louder?,can you say that louder +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,he was go/ing like [~_sticks_out_tongue] the bunny was.,he was going like the bunny was +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,oh stick/ing his tongue out.,oh sticking his tongue out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,yeah stick/ing his tongue out [+_bch].,yeah sticking his tongue out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,: now he sat down.,now he sat down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,like he went like this [~_shaking_head].,like he went like this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,: and that guy was [~_shakes_head].,and that guy was +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,shak/ing his head?,shaking his head +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,umhm [+_bch].,umhm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,that guy ran to him.,that guy ran to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,what was that?,what was that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,that guy ran to him [+_bch].,that guy ran to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,then (he) did he XXX.,then he did he XXX +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,he did what?,he did what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,(this guy) (this guy pull/ed him) this guy pull/ed him.,this guy this guy pulled him this guy pulled him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,(um) now this guy was go/ing [~_shaking_head] again.,um now this guy was going again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,shaking his head again?,shaking his head again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,yeah [+_bch].,yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,now that guy was in the sand[?].,now that guy was in the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and then (that guy) this guy (b) walk/ed with him.,and then that guy this guy b walked with him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,that guy was run/ing again.,that guy was running again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,this guy was [+_bch].,this guy was +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,no that guy was [+_bch].,no that guy was +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,(that guy was) that bunny was go/ing to [:_gonna] take that balloon!,that guy was that bunny was going to take that balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,then he got it.,then he got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and he untie/ed it.,and he untied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,can you talk louder so I can hear?,can you talk louder so I can hear +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,he untied it [+_bch]!,he untied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and it flew away.,and it flew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and it should not do that [+_bch].,and it should not do that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,what?,what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,that bunny should not do that.,that bunny should not do that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,he did not : do it [+_bch].,he did not do it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and then that[!] guy : was really mad.,and then that guy was really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and then : that guy saw that guy.,and then that guy saw that guy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and he had : more balloon/s.,and he had more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,: then this guy ran up to him.,then this guy ran up to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,then he was go/ing to [:_gonna] get a balloon.,then he was going to get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,did you tell me about this page?,did you tell me about this page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,this guy (was) ran up to him[?].,this guy was ran up to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,he got a balloon!,he got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,then this guy was very sad.,then this guy was very sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,: then : this guy : got it.,then this guy got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,this guy what?,this guy what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,this guy [+_bch]!,this guy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,yeah what did you say?,yeah what did you say +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,this guy was here [+_bch]!,this guy was here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,then (that guy : said) (he went over) : this guy said over there!,then that guy said he went over this guy said over there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,what?,what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,this guy said over there [+_bch].,this guy said over there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,and then (this) these two got a balloon.,and then this these two got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,then this guy : (ha) sticked|stick[EW:stuck] his teeth out [~_exaggerated_grin].,then this guy ha sticked his teeth out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/402.slt,oh like a big grin.,oh like a big grin +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,once upon : a time : there was a[EW:an] elephant name/ed : Emily.,once upon a time there was a elephant named Emily +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,: and John ask/ed her if she want/ed to go swim/ing.,and John asked her if she wanted to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,: so Emily was so sad that : (um) Jonathan fell in the pool.,so Emily was so sad that um Jonathan fell in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,: she try/ed to give him the ball.,she tried to give him the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,but he was go/ing to sink.,but he was going to sink +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,: he was so wet that Emily did not like him any more.,he was so wet that Emily did not like him any more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,Emily and Michael went to the pool.,Emily and Michael went to the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,so Michael (ww) want/ed to go in the pool.,so Michael ww wanted to go in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,: Emily was go/ing to jump in the pool.,Emily was going to jump in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,: but Emily want/ed to jump off : the teetertotter.,but Emily wanted to jump off the teetertotter +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,she hurt her knee.,she hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,: (her big brother came) the lifeguard came to see her knee.,her big brother came the lifeguard came to see her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,: (and they : did not want) Emily did not want to come to (the) any more swimming pool/s.,and they did not want Emily did not want to come to the any more swimming pools +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,: so Emily and the lifeguard and (ju) Michael were walk/ing her home.,so Emily and the lifeguard and ju Michael were walking her home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,: the lifeguard said if you only have a parent to come with you.,the lifeguard said if you only have a parent to come with you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,Emily and Michael came to the swimming pool again.,Emily and Michael came to the swimming pool again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,so they were fly/ing their plane in the : room where the pool was.,so they were flying their plane in the room where the pool was +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,: Emily had (a) after a turn from Michael.,Emily had a after a turn from Michael +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,so Michael was so sad that his plane was down in the water.,so Michael was so sad that his plane was down in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,: Michael was so upset about Emily drop/ed the plane in the water.,Michael was so upset about Emily dropped the plane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,the lifeguard : was (so nn :) not angry.,the lifeguard was so nn not angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,(so) : so (they ask/ed the lifeguard if they could get Michael/z) Emily ask/ed the lifeguard if she can get Michael/z : plane.,so so they asked the lifeguard if they could get Michael's Emily asked the lifeguard if she can get Michael's plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,but he could not reach it.,but he could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,: (then they were st) then Michael start/ed to cry.,then they were st then Michael started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,: a fanciest pig with a : bathing suit can catch it.,a fanciest pig with a bathing suit can catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,: she got her net in the water : to catch the plane.,she got her net in the water to catch the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,: she gave it to Michael.,she gave it to Michael +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,: and Michael was not upset again.,and Michael was not upset again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,once upon a time Emily and : (um) : the : [~_dropped_the__microphone] [~_EXA:_you_said_once_upon_a_time_Emily_and] Michael went to the park : to build a sandcastle.,once upon a time Emily and um the Michael went to the park to build a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,so (they) Michael was build/ing some of his own sandcastle.,so they Michael was building some of his own sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,he was go/ing to wreck : Emily/z sandcastle.,he was going to wreck Emily's sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,Emily was not (wa) happy because her castle was broke[EW:broken].,Emily was not wa happy because her castle was broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,she was so sad that Michael did that.,she was so sad that Michael did that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,she cry/ed : because : Michael did that.,she cried because Michael did that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,Michael was walk/ing for a picnic with his mother.,Michael was walking for a picnic with his mother +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,so Michael got out his stuff : for his picnic.,so Michael got out his stuff for his picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,he was so full that he can barely : eat any more [EU].,he was so full that he can barely eat any more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,: so he got seasick from eat/ing all those[EW:that] food.,so he got seasick from eating all those food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,so Emily ran to : Missus Kay.,so Emily ran to Missus Kay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,Missus Kay came with her.,Missus Kay came with her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,so Thumper was not all right.,so Thumper was not all right +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,: so Thumper came with (um) : Missus Kay.,so Thumper came with um Missus Kay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,once upon a time Emily had (a) her wagon and a balloon.,once upon a time Emily had a her wagon and a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,Michael was come/ing along : to see : the balloon.,Michael was coming along to see the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,so Michael untie/ed it : from the wagon.,so Michael untied it from the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,Emily was so angry.,Emily was so angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,she was so upset that her balloon went up.,she was so upset that her balloon went up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,they saw a balloon man hold/ing more of the balloon/s.,they saw a balloon man holding more of the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,: so (Mister) Mister Kay let him pick a balloon.,so Mister Mister Kay let him pick a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,but (he) : he said they are only five[-:] dollar/s.,but he he said they are only five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,so they could not get a balloon.,so they could not get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,Missus Kay was come/ing along.,Missus Kay was coming along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,Missus Kay want/ed to (he) help the little children bunny/s.,Missus Kay wanted to he help the little children bunnies +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,so she did : buy them a balloon.,so she did buy them a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,(so sh) so Missus Kay (gave them) gave : the man : five[-:] dollar/s.,so sh so Missus Kay gave them gave the man five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/510.slt,they were so happy that they both got their own balloon/s.,they were so happy that they both got their own balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,once upon a time : there was : a little : (ch) : giraffe and a little elephant.,once upon a time there was a little ch giraffe and a little elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,they got a ball!,they got a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and they play/ed all[-:] in the pool.,and they played all in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and : (it) they play/ed outside[!] the pool.,and it they played outside the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,but (the) : it got stuck in there!,but the it got stuck in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,the elephant was the only one with her bathing suit on!,the elephant was the only one with her bathing suit on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,(so she had : to) but he[-:][!] just goed|go[EW:went] and got the ball : because he was brave.,so she had to but he just goed and got the ball because he was brave +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and : then (the elephant ga) : the giraffe gave[-:] the elephant the ball.,and then the elephant ga the giraffe gave the elephant the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,then he was soak/ing wet[~!_laughing].,then he was soaking wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and then : he laugh/ed[-:] kind of [~_laughs].,and then he laughed kind of +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,once upon a time[-:] : there was : a little giraffe and a little elephant.,once upon a time there was a little giraffe and a little elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and : then they want/ed to go in the pool[!].,and then they wanted to go in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and it said no[-:] run/ing!,and it said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,so then : she runned|run[EW:ran] [!] : the elephant.,so then she runned the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,but she try/ed not to.,but she tried not to +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and she whoa(*3) slip/ed!,and she whoa whoa whoa slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and she hurt[!] herself on : the knee[-:]!,and she hurt herself on the knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and it really hurted|hurt[EW:hurt].,and it really hurted +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and (it) : so she : (ca) call/ed the lifeguard.,and it so she ca called the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and she is cry/ing.,and she is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and : he got some[EW:a] bandaid and : put it on : her knee.,and he got some bandaid and put it on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,then it was better.,then it was better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and then : he point/ed at him.,and then he pointed at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,you should not run!,you should not run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,look at this sign.,look at this sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,so : the end [+_bch].,so the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,once upon a time there was a giraffe : and : an elephant.,once upon a time there was a giraffe and an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and : he *was fly/ing a plane around the pool [EU].,and he flying a plane around the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,but then it drop/ed in the pool.,but then it dropped in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and : then : he try/ed[-:].,and then he tried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,then the elephant use it [EU].,then the elephant use it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and : he drop [+/]^,and he drop +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,the elephant what?,the elephant what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,the elephant (did it) (drop) play/ed with it.,the elephant did it drop played with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and then he try/ed[-:] not to put it in the pool.,and then he tried not to put it in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,but then it fell in.,but then it fell in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and he was so[!] mad.,and he was so mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,the giraffe was.,the giraffe was +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,so : and the lifeguard was mad[-:] too.,so and the lifeguard was mad too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,(and he said) but it was an accident she said.,and he said but it was an accident she said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,so (she) he try/ed[-:] and try/ed to reach it.,so she he tried and tried to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,(but this) : but he could not[-:] : just could not.,but this but he could not just could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,so : then : he cry/ed[-:].,so then he cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,so then (the little) a girl[!] came with a bathing suit on.,so then the little a girl came with a bathing suit on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and she had a net so she could : reach[!] it.,and she had a net so she could reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,so (she reach) : he try/ed to reach it.,so she reach he tried to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and she got[!] it.,and she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,then she was : happy again.,then she was happy again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,but then[-:] : he hug/ed it and hug/ed it.,but then he hugged it and hugged it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,the end [+_bch]!,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,once upon a time (there was a) there was a little : girl doggy play/ing.,once upon a time there was a there was a little girl doggy playing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and she was make/ing a big sandcastle with a bow[!] on it.,and she was making a big sandcastle with a bow on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and [+/]^,and +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,with a what?,with a what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,bow on it [+_bch].,bow on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,(and : she) and some : little bunny[!] came over.,and she and some little bunny came over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and he ask/ed to play.,and he asked to play +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and the doggy said : come on.,and the doggy said come on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,let us play.,let us play +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and so he play/ed.,and so he played +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and[-:] then[-:] they made a big[-:][!] (castle) : sandcastle[?].,and then they made a big castle sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and then : they just kept[!] : dig/ing and kept dig/ing until it was very[!] very big.,and then they just kept digging and kept digging until it was very very big +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,then : (there wa) then (th) : he dump/ed it all[-:] over.,then there wa then th he dumped it all over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,but then : doggy feeled|feel[EW:felt] kind of : sad and mad.,but then doggy feeled kind of sad and mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,so : then it would all break down.,so then it would all break down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,but then they had to make it all over[!] again.,but then they had to make it all over again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and they (wa) did it.,and they wa did it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and (he[-:]) she was kind of : happy.,and he she was kind of happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and he was so[-:][!] (mm) : sad : that he[-:] just : said please do not : hurt me!,and he was so mm sad that he just said please do not hurt me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,it was just an accident!,it was just an accident +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,so[-:] then she cry/ed.,so then she cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,but (then it was not) then he saw[?] it[?].,but then it was not then he saw it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,once upon a time[-:] there was : (a he) a little girl who walk/ing [EU].,once upon a time there was a he a little girl who walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and she found her buddy that she was go/ing to camp with.,and she found her buddy that she was going to camp with +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,so then[-:] she : just : let us go this[!] way.,so then she just let us go this way +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,then they went that way.,then they went that way +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and then they : did it.,and then they did it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and the bunny[!] ate : (all[-:]) almost all of the food!,and the bunny ate all almost all of the food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and (then they had to) : (th) then they had no more food just one sandwich (i) and one : little drink for : the doggy!,and then they had to th then they had no more food just one sandwich i and one little drink for the doggy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,so[-:] then he was full!,so then he was full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and his tummy hurt!,and his tummy hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,so[-:] then : the doctor[!] came : and : (try/ed to) then : try/ed to cure him.,so then the doctor came and tried to then tried to cure him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,try/ed to what?,tried to what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,cure him [+_bch].,cure him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and then : (he) he pull/ed his sleeve and : said come on come on!,and then he he pulled his sleeve and said come on come on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,so then : she had to : just say : (your) (his tu) (her tummy) open wide.,so then she had to just say your his tu her tummy open wide +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and : they had : a big[-:][!] problem.,and they had a big problem +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,but then he was better.,but then he was better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,once upon a time there was a little[-:] : doggy : and a bunny.,once upon a time there was a little doggy and a bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and : she had a balloon!,and she had a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,she was (ride) : pull/ing her : wagon.,she was ride pulling her wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,so[-:] then (he[!] wan) he[-:] kind of touch/ed it.,so then he wan he kind of touched it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and : then he went off.,and then he went off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,then she tie/ed it.,then she tied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,(she) he untie/ed it.,she he untied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and then : it went up up up and away.,and then it went up up up and away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,then she lost it.,then she lost it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and then[!] : she was angry : at the bunny!,and then she was angry at the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and (h) he was sad.,and h he was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,there was another patch of balloon/s.,there was another patch of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and he would go get one for her : the same color.,and he would go get one for her the same color +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and (k) : he point/ed at them.,and k he pointed at them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,(and he wan) : (and : she) and they had no[-:] money!,and he wan and she and they had no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,(so that) so he was very sad.,so that so he was very sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,so then : he[-:] gave him : a balloon.,so then he gave him a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,and that[?] said (if) I will save that balloon for you if you can go get money at your[!] house!,and that said if I will save that balloon for you if you can go get money at your house +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,so then (he got) : he goed|go[EW:went] and get|get[EW:got] the money from : his mom[!].,so then he got he goed and get the money from his mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,so then : he : got money so he could get that (ot) balloon.,so then he got money so he could get that ot balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,(and she gave) and he gave (it) : two[!] (to him) to (th) her and him because : he had more[!] money than just five[-:] (buck/s) : dollar/s.,and she gave and he gave it two to him to th her and him because he had more money than just five bucks dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,so then they were : happy.,so then they were happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/528.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,I see that the elephant is (a bounce) bounce/ing (three ball/s at) : a ball[!].,I see that the elephant is a bounce bouncing three balls at a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and she is go/ing to throw it into one of the hoop/s[!].,and she is going to throw it into one of the hoops +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then it felled|fall[EW:fell] into the water.,and then it felled into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then : the zebra is try/ing to swim and get it.,and then the zebra is trying to swim and get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then : the elephant is go/ing to : get the ball for him.,and then the elephant is going to get the ball for him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then[-:] she is smile/ing with her ball.,and then she is smiling with her ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and that is : the end I think [+_bch].,and that is the end I think +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,[~_all_right] it look/3s like she is look/ing at the water !,it looks like she is looking at the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,(and she) and I think she is go/ing to [~_gonna] walk[!] into the water.,and she and I think she is going to walk into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and she slip/ed[!].,and she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then she scratch/ed her knee.,and then she scratched her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and : I think (um) : the guard of the swimming pool (she) she is run/ing : to her.,and I think um the guard of the swimming pool she she is running to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,(and she) and it look/3s like she is cry/ing[-:] .,and she and it looks like she is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,(and then[-:]) [~_I_think__I_(a)m_ready_for_the_next_page] and then it look/3s like : (um : he is) : he is mad[!] at her.,and then and then it looks like um he is he is mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and I think that is about the end [+_bch].,and I think that is about the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,(I see : um the[-:] : um) I see the[-:] zebra.,I see um the um I see the zebra +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,he has a[EW:an] airplane in his hand[-:] .,he has a airplane in his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,(and he is) and he is fling/ing his tongue out it look/3s like and : sound/ing[EW:sound/3s] like it is a[EW:an] airplane.,and he is and he is flinging his tongue out it looks like and sounding like it is a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then the elephant took it away.,and then the elephant took it away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then she accidentally drop/ed it into the water.,and then she accidentally dropped it into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then[!] he was mad[!] at her : (cau) .,and then he was mad at her cau +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then he[!] came.,and then he came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,(and then[-:] she) and then (she : like want/ed) (she told her wha) (she) she[!] told him what happen/ed.,and then she and then she like wanted she told her wha she she told him what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and : he try/ed[!] to get it out.,and he tried to get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,but it keeped|keep[EW:kept] float/ing and float/ing farer[EW:further].,but it keeped floating and floating farer +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then they could not get it.,and then they could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,somebody need/ed to swim in there and get it : maybe.,somebody needed to swim in there and get it maybe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then she got something to get it out.,and then she got something to get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,she try/ed (it) to get it and get it.,she tried it to get it and get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and it still would not get in.,and it still would not get in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then she got it out.,and then she got it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,then she : got it for him.,then she got it for him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then (she hug) (he hug/ed it very) the zebra hug/ed it very much.,and then she hug he hugged it very the zebra hugged it very much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,[~_singsong_voice] the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,I see they are make/ing a sandcastle.,I see they are making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and it is very nice.,and it is very nice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and I see the rabbit[~!_laughing] is go/ing to flip that bucket over.,and I see the rabbit is going to flip that bucket over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then[-:] (he) the bunny (has) is go/ing to pour it on top of the sandcastle.,and then he the bunny has is going to pour it on top of the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then it was wreck/ed.,and then it was wrecked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,then he : is like oh no!,then he is like oh no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and[-:] now the : dog is cry/ing.,and now the dog is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then that is the end [+_bch].,and then that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,I see they are go/ing to have a picnic!,I see they are going to have a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,they are eat/ing.,they are eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,(hm) : and I think that rabbit is too full[-:] .,hm and I think that rabbit is too full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,I think he ate too much candy or too much food[-:] .,I think he ate too much candy or too much food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,(and) and the dog *is go/ing to[:_gonna] tell (th) another rabbit : the nurse : rabbit [EU].,and and the dog going to tell th another rabbit the nurse rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,(hm) : and (he is look/3s like) : he is like faint/ing[!].,hm and he is looks like he is like fainting +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and the : nurse like : is tell/ing him something : to put on his hand[?].,and the nurse like is telling him something to put on his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then he is walk/ing.,and then he is walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and the dog is stand/ing up by the picnic.,and the dog is standing up by the picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,I think that is about it [+_bch].,I think that is about it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,I think[!] he has a : wagon and a : balloon tie/ed onto his wagon.,I think he has a wagon and a balloon tied onto his wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and the bunny want/3s to come along with[!] him I think.,and the bunny wants to come along with him I think +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then he saw the balloon.,and then he saw the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then he try/ed to tie it off[-:].,and then he tried to tie it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then it : sail/ed up into the sky!,and then it sailed up into the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then[!] the bunny look/ed up in the sky[-:].,and then the bunny looked up in the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then the dog was mad at him!,and then the dog was mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then (they s) they went and saw (ano) (lots o) other balloon/s.,and then they s they went and saw ano lots o other balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then the bunny came after[!] those balloon/s.,and then the bunny came after those balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and the bunny said can I have another balloon[-:]?,and the bunny said can I have another balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,but he had no cents[EW:money].,but he had no cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,but[-:][!] (he) (he wa) and he had a smile again.,but he he wa and he had a smile again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then[-:] : the other bunny came along.,and then the other bunny came along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and (he) (the oth) the little bunny said can you give me some money?,and he the oth the little bunny said can you give me some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and : well she said I do not know!,and well she said I do not know +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,so she gave : him some money : for a balloon.,so she gave him some money for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/455.slt,and then she smile/ed[-:].,and then she smiled +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,one day there was an elephant and a giraffe who want/ed to go swim/ing.,one day there was an elephant and a giraffe who wanted to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,the elephant drop/ed her ball in the swimming pool.,the elephant dropped her ball in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,the giraffe swam and got it for her.,the giraffe swam and got it for her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,he gave it to her.,he gave it to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,the girl was very happy.,the girl was very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,once upon a time there was : a cow and : a[EW:an] elephant.,once upon a time there was a cow and a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,the elephant want/3s to go on a diving board.,the elephant wants to go on a diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,: she ran : there.,she ran there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,: she slip/ed and bump/ed her knee.,she slipped and bumped her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,coach came run/ing.,coach came running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,: the (go) coach put a bandaid on : it.,the go coach put a bandaid on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,: she walk/ed to the bench.,she walked to the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,: then the coach got very angry at her.,then the coach got very angry at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,one day there was a : cow and a[EW:an] elephant.,one day there was a cow and a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,: the cow had an airplane.,the cow had an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,(the) the elephant took it from : him.,the the elephant took it from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,: it fell into the swimming pool.,it fell into the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,the cow was very angry at the elephant.,the cow was very angry at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,the coach : came.,the coach came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,: the elephant was talk/ing to the coach.,the elephant was talking to the coach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,the coach try/ed and reach/ed it [EU].,the coach tried and reached it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,: (the) : (the t) : the cow was : cry/ing.,the the t the cow was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,: then came : a lady with a net : and grab/ed it.,then came a lady with a net and grabbed it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,and then the cow : was very happy.,and then the cow was very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,: and the cow and the elephant were happy.,and the cow and the elephant were happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,one day there was : a rabbit : and his friend who want/ed : to build a sandcastle.,one day there was a rabbit and his friend who wanted to build a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,they start/ed to build it.,they started to build it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,(the rabbit) : the rabbit pour/ed a bucket on the sandcastle : and broke it.,the rabbit the rabbit poured a bucket on the sandcastle and broke it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,and : the rabbit/z friend : (was) was build/ing it really fast.,and the rabbit's friend was was building it really fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,once upon a time there was a rabbit and a dog.,once upon a time there was a rabbit and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,they were have/ing a picnic.,they were having a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,the rabbit ate all the food in his basket.,the rabbit ate all the food in his basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,he had a stomachache.,he had a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,his mom came.,his mom came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,(um) the dog pull/ed : his mom to the picnic.,um the dog pulled his mom to the picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,(the mom) : the mom was look/ing at his : daughter.,the mom the mom was looking at his daughter +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,then he feeled|feel[EW:felt] better.,then he feeled better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,and they went home.,and they went home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,one day there was : a dog who had a balloon.,one day there was a dog who had a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,the rabbit want/ed to play with it.,the rabbit wanted to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,the rabbit untie/ed it from the wagon.,the rabbit untied it from the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,it flew away.,it flew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,they were very mad at each other.,they were very mad at each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,but then they seen|see[EW:saw] : a man sell/ing balloon/s.,but then they seen a man selling balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,they want/ed to buy one.,they wanted to buy one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,but the balloon/s were five cent/s.,but the balloons were five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,and the rabbit had no money.,and the rabbit had no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,they were sad.,they were sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,then he seen|see[EW:saw] : a girl.,then he seen a girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,and he ask/ed (if he could) if she could buy one for them.,and he asked if he could if she could buy one for them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,(and he) and she did.,and he and she did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/704.slt,and they were both very happy.,and they were both very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,they are at the swimming pool.,they are at the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,(a b) they saw a ball in the water.,a b they saw a ball in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,(th) is that a horse or a giraffe [~_whispers] [+_bch]?,th is that a horse or a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,it is your story.,it is your story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,the giraffe is : try/ing to swim for the ball.,the giraffe is trying to swim for the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and then he got it for the elephant.,and then he got it for the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and then : she was proud of him.,and then she was proud of him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,(they are) the same character/s are at the pool.,they are the same characters are at the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,the elephant start/3s to run.,the elephant starts to run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,she slip/3s.,she slips +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,then[-:] the lifeguard come/3s.,then the lifeguard comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and she is cry/ing.,and she is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and the : lifeguard put/3s (um) a bandage on.,and the lifeguard puts um a bandage on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and then : she is like [~_inhales_sharply].,and then she is like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and the lifeguard : (um) tell/3s her : the sign no run/ing.,and the lifeguard um tells her the sign no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and then : she is look/ing at it.,and then she is looking at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,(then) then lifeguard is point/ing it out.,then then lifeguard is pointing it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,(um) the giraffe has a : toy airplane in his hand.,um the giraffe has a toy airplane in his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and (the el) the : giraffe he is play/ing with it.,and the el the giraffe he is playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and then the elephant grab/3s it from him.,and then the elephant grabs it from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,(and then she put/3s it in the w) and she accidentally : put it in the water.,and then she puts it in the w and she accidentally put it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,then the giraffe get/3s mad at her.,then the giraffe gets mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,then the lifeguard come/3s.,then the lifeguard comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and then the lifeguard is talk/ing to the elephant what happen/ed.,and then the lifeguard is talking to the elephant what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and then the lifeguard is try/ing to reach for it.,and then the lifeguard is trying to reach for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,then the : giraffe is cry/ing.,then the giraffe is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,then (um) a girl elephant come/3s.,then um a girl elephant comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and she (um) : has a net.,and she um has a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and she scoop/ed it out.,and she scooped it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and : now he is all glad.,and now he is all glad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and now he is hug/ing it.,and now he is hugging it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,a bunny : rabbit was : (um) in the sandpit and a dog.,a bunny rabbit was um in the sandpit and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and then (um) the dog made a sandcastle.,and then um the dog made a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and then the bunny rabbit was stir/ing up sand in a pail.,and then the bunny rabbit was stirring up sand in a pail +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and then he pour/3s it onto the sandcastle.,and then he pours it onto the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and then (um) : Rabbit is scream/ing.,and then um Rabbit is screaming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,then : (um) Dog was try/ing to fix it up (for her) for him.,then um Dog was trying to fix it up for her for him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and that is the end [+_bch].,and that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,the same character/s (are) [EU].,the same characters are +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,but they are go/ing on a picnic.,but they are going on a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,rabbit is eat/ing so much.,rabbit is eating so much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and (he is) I think he is get/ing full.,and he is I think he is getting full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and now I think he has a tummyache.,and now I think he has a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and (he is) now he is all dizzy.,and he is now he is all dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and now a doctor come/3s.,and now a doctor comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and the dog is pull/ing a doctor to the rabbit.,and the dog is pulling a doctor to the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and then (the ra) the doctor was try/ing to : figure out : what had happen/ed to the rabbit.,and then the ra the doctor was trying to figure out what had happened to the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and then rabbit is feel/ing a little bit better.,and then rabbit is feeling a little bit better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,they are the same character/s.,they are the same characters +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and the dog is pull/ing a wagon.,and the dog is pulling a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and he has a balloon on it.,and he has a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and : rabbit is come/ing.,and rabbit is coming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and then rabbit look/3s at the balloon.,and then rabbit looks at the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and he say/3s wow.,and he says wow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and then he is try/ing to untie it.,and then he is trying to untie it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,(then the balloo) and he untie/3s it.,then the balloo and he unties it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and the balloon float/3s up.,and the balloon floats up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and Dog is try/ing to chase it.,and Dog is trying to chase it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and Rabbit is trying to reach it.,and Rabbit is trying to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and now Dog is really mad at : him.,and now Dog is really mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,then there is a balloon seller come/ing.,then there is a balloon seller coming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,(and uh she) and : rabbit want/3s to buy one.,and uh she and rabbit wants to buy one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,but : [~_whispers_'okay'] balloon/s are twenty (fi s) five cent/s.,but balloons are twenty fi s five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and dog is pull/ing his wagon.,and dog is pulling his wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and : (th) they are (um) look/ing (at the m) at the balloon seller.,and th they are um looking at the m at the balloon seller +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and the balloon seller is (um) : ignore/ing them.,and the balloon seller is um ignoring them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and then : the doctor (she) she is there.,and then the doctor she she is there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,(and : then) : and then the rabbit run/3s to her.,and then and then the rabbit runs to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and then the rabbit point/3s out to the balloon/s.,and then the rabbit points out to the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and (the um) : (the) : the doctor give/3s him : (two five) ten cent/s for two balloon/s.,and the um the the doctor gives him two five ten cents for two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and then they each got their own balloon.,and then they each got their own balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and the doctor is really happy.,and the doctor is really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/757.slt,and that is the end [+_bch].,and that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,(there is :) the (um) zebra is the coach.,there is the um zebra is the coach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and[-:] : this girl is bounce/ing a ball : near the water.,and this girl is bouncing a ball near the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,then her ball fall|fall[EW:falls] into the water.,then her ball fall into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and she can not get it.,and she can not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,but the zebra swim/3s and (help/3s it) help/3s her get her ball back.,but the zebra swims and helps it helps her get her ball back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,the[-:] elephant : say/3s thank you to give/ing her ball back [EU].,the elephant says thank you to giving her ball back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the zebra say/3s you are welcome.,and the zebra says you are welcome +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and then she is (um) so glad that she hug/3s her ball.,and then she is um so glad that she hugs her ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,(and) and they are both smile/ing at each other.,and and they are both smiling at each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the zebra is all wet.,and the zebra is all wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,there is a : zebra and the elephant.,there is a zebra and the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and there is xx of water [~_?].,and there is of water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and it say/3s no run/ing.,and it says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and[-:] there is a diving board.,and there is a diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the elephant is : [~_child_coughs] walk/ing.,and the elephant is walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and[-:] : she says I am go/ing to[:_gonna] go (on the high dive) on the diving board.,and she says I am going to go on the high dive on the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,(and the) : and then (the) : the elephant want/ed it.,and the and then the the elephant wanted it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,(he) she is go/ing to (sl) [~_child_coughs] slip.,he she is going to sl slip +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the elephant slip/3s.,and the elephant slips +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and she is cry/ing.,and she is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,so then the lifeguard come/3s.,so then the lifeguard comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and she look/3s at it.,and she looks at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and (s) there is a tear [~_/teer/].,and s there is a tear +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and it is all wipe/ed up.,and it is all wiped up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,: and now (she put/3s) they put a bandaid on her : to make it all better.,and now she puts they put a bandaid on her to make it all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,[~_child_yawns] and she is sit/ing on a bench.,and she is sitting on a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and : that is why : (it) it say/3s no run/ing.,and that is why it it says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the elephant and the zebra says|say[EW:say] : do you know why that sign is up?,and the elephant and the zebra says do you know why that sign is up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,no : the elephant say/3s.,no the elephant says +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,because it say/3s no run/ing.,because it says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and you just runned|run[EW:ran].,and you just runned +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,: (and : we) : and she said yeah.,and we and she said yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,it say/3s no run/ing.,it says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and you did!,and you did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and she is (like : um) kind of scare/ed.,and she is like um kind of scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,"and he has (a face on her) : a mean face on him, the elephant.",and he has a face on her a mean face on him the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,(the ze) the zebra has a[EW:an] airplane in his hand.,the ze the zebra has a airplane in his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and he say/3s hey.,and he says hey +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the elephant say/3s hey can I try that out?,and the elephant says hey can I try that out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and he is near the water.,and he is near the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and he say/3s yes.,and he says yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,: and : it go/3s everywhere.,and it goes everywhere +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,(and he is) and he is (um) spit/ing.,and he is and he is um spitting +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and (she is like) she is like whoa cool.,and she is like she is like whoa cool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and then : (she[-:]) (he) she take/3s it out of his hand.,and then she he she takes it out of his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and (she fl) she fly/3s it : without ask/ing.,and she fl she flies it without asking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and then : the : plane go/3s into the water.,and then the plane goes into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,: and the zebra get/3s mad at her (beca).,and the zebra gets mad at her beca +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,: and it is sink/ing lower and lower : and lower.,and it is sinking lower and lower and lower +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the guy is like (um) : be/ing mad at her.,and the guy is like um being mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and then she say/3s it was not my fault[!].,and then she says it was not my fault +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,I did not mean to do it.,I did not mean to do it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,so (it is) he is try/ing to get it.,so it is he is trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,but it is too far.,but it is too far +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and so[-:] : (the) the zebra is cry/ing.,and so the the zebra is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the elephant is (li) try/ing to put her foot in.,and the elephant is li trying to put her foot in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and then (the lifeg) the girl lifeguard : is here.,and then the lifeg the girl lifeguard is here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and then : he[~?_yawning] had a net with her [+_bch].,and then he had a net with her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,can you say that again ?,can you say that again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and : she has a net with her.,and she has a net with her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and then she (fl) : try/3s to pick it up.,and then she fl tries to pick it up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,: and she do/3s.,and she does +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and then (him uh) he is hold/ing it very tight.,and then him uh he is holding it very tight +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and she is glad.,and she is glad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,(a[-:]) : a dog and a bunny [EU].,a a dog and a bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,(and) (and he) and the bunny has a shovel.,and and he and the bunny has a shovel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the dog has a shovel.,and the dog has a shovel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and : he is make/ing a castle : in the sand.,and he is making a castle in the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,they play/ed with each other.,they played with each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the bunny : is put/ing sand in the bucket with the (ch) shovel.,and the bunny is putting sand in the bucket with the ch shovel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,(and the other) and the dog is pat/ing the sandcastle.,and the other and the dog is patting the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,: and now : the bunny pour/ed some sand on the castle.,and now the bunny poured some sand on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and : he has a face.,and he has a face +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the dog has a (um : uh) : kind of a scare/ed face.,and the dog has a um uh kind of a scared face +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the castle broke.,and the castle broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and then (they c) the dog cry/ed.,and then they c the dog cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the rabbit (was) was look/ing up.,and the rabbit was was looking up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and he put his hand behind his back.,and he put his hand behind his back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and then the bunny and a dog [EU].,and then the bunny and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,they have some basket/s.,they have some baskets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and : the dog say/3s hi.,and the dog says hi +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and them[EW:they] *are walk/ing down the road [EU].,and them walking down the road +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the bunny *is try/ing to catch up to him [EU].,and the bunny trying to catch up to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,the bunny is so hungry that : (um) : he put/3s all that stuff out.,the bunny is so hungry that um he puts all that stuff out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and then it is (fall/ing) drip/ing from him.,and then it is falling dripping from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and now the bunny is full : too.,and now the bunny is full too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the bunny has a stomachache.,and the bunny has a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the : dog do/3s not.,and the dog does not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and : missus Bunny come/3s.,and missus Bunny comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the dog (go) (go) go/3s run/ing to her.,and the dog go go goes running to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,(and he) and the bunny is lay/ing down on the floor.,and he and the bunny is laying down on the floor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the dog is try/ing to pull him.,and the dog is trying to pull him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,but (he) he can not.,but he he can not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and he *is try/ing to get away [EU].,and he trying to get away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the bunny is still right there.,and the bunny is still right there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and now : the doctor is (um) try/ing to make him wake up.,and now the doctor is um trying to make him wake up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and then they go home.,and then they go home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,the dog is push/ing a wagon with a balloon in it.,the dog is pushing a wagon with a balloon in it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and[-:] (the) the bunny (s) say/3s hi.,and the the bunny s says hi +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and he is try/ing to catch up to him again.,and he is trying to catch up to him again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,(and the bunny) and the bunny look/3s at the balloon.,and the bunny and the bunny looks at the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and they stop.,and they stop +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and then the clown : is there.,and then the clown is there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the bunny is try/ing to get it off.,and the bunny is trying to get it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,: and then : the balloon go/3s away.,and then the balloon goes away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and they are try/ing to get it.,and they are trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and now (they) the dog is so angry at the bunny.,and now they the dog is so angry at the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and he is look/ing up like a scare/ed bunny.,and he is looking up like a scared bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,: (the bunny) : (and : the bu) : (the) : they see a boy bunny.,the bunny and the bu the they see a boy bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and he is hold/ing a balloon[-:] : with a hat on his head.,and he is holding a balloon with a hat on his head +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the bunny is walk/ing to it.,and the bunny is walking to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and : the dog is still mad at him.,and the dog is still mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,(the bunny is) the bunny point/3s at the balloon and say/3s : can I have that balloon?,the bunny is the bunny points at the balloon and says can I have that balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the dog is make/ing a frown.,and the dog is making a frown +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the : rabbit is make/ing : a glad face.,and the rabbit is making a glad face +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,: and the bunny do/3s not have any money.,and the bunny does not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,so : the rabbit : say/3s (he) (if he can not) if you do not have money you can not buy a balloon.,so the rabbit says he if he can not if you do not have money you can not buy a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,: and (the bun) the dog and the bunny : (is) is[EW:are] (uh) worry/ed that : they might not get enough money to buy the balloon back.,and the bun the dog and the bunny is is uh worried that they might not get enough money to buy the balloon back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,: and the : bunny went to (the other) the doctor bunny.,and the bunny went to the other the doctor bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and the dog and the bunny [~_child_yawns] stands|stand[EW:stand] there look/ing at him.,and the dog and the bunny stands there looking at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,: the bunny say/3s : me and my friend : want to buy that balloon.,the bunny says me and my friend want to buy that balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and he is not let/ing us.,and he is not letting us +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and we do not have enough money.,and we do not have enough money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,so : can you lend us some?,so can you lend us some +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,[~_child_makes_a_comment_under_breath] so she do/3s.,so she does +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,and : she give/3s them (a balloon) each a balloon.,and she gives them a balloon each a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/819.slt,they both have the balloon.,they both have the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,there was once upon a time a : giraffe and an elephant : who[-:] : want/ed to go in a pool.,there was once upon a time a giraffe and an elephant who wanted to go in a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and the[-:] elephant lost his ball.,and the elephant lost his ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,so the giraffe try/ed to swim for it.,so the giraffe tried to swim for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and the giraffe got the ball.,and the giraffe got the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and : the elephant like/ed the giraffe.,and the elephant liked the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,there was once upon a time : a giraffe and an elephant.,there was once upon a time a giraffe and an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,they want/ed to go on the diving board.,they wanted to go on the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,(uh) the elephant was run/ing.,uh the elephant was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,the sign said no[!] run/ing.,the sign said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and the elephant trip/ed and hurt her knee.,and the elephant tripped and hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and : (the lifeguard came run/ing and the gira) : the lifeguard came run/ing.,and the lifeguard came running and the gira the lifeguard came running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and : the : girl elephant was cry/ing.,and the girl elephant was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and : the girl (elev) elephant was okay : because she had a bandaid on.,and the girl elev elephant was okay because she had a bandaid on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and the lifeguard told her : see the sign no run/ing?,and the lifeguard told her see the sign no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,(there was once upon a time) : there was once upon a time an elephant and a giraffe.,there was once upon a time there was once upon a time an elephant and a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,(the) and (uh) the giraffe play/ed with its airplane.,the and uh the giraffe played with its airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and then the elephant took the airplane away from the giraffe.,and then the elephant took the airplane away from the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and the elephant accidentally threw it in the water.,and the elephant accidentally threw it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and the giraffe got mad at the elephant.,and the giraffe got mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and the lifeguard[-:] said what is the problem?,and the lifeguard said what is the problem +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and the : elephant said I accidentally threw it in the water.,and the elephant said I accidentally threw it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and the lifeguard try/ed to reach it with it/z own hands.,and the lifeguard tried to reach it with it's own hands +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,but he could not.,but he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,so : the giraffe cry/ed.,so the giraffe cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and the : elephant was sorry.,and the elephant was sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and another lifeguard came with a net.,and another lifeguard came with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and she got the airplane out of the pool : and then gave it to the giraffe.,and she got the airplane out of the pool and then gave it to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and then the giraffe was happy.,and then the giraffe was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and then the giraffe was play/ing with it.,and then the giraffe was playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and (she) he said to the : elephant : (if) (do not throw the) be careful with this airplane.,and she he said to the elephant if do not throw the be careful with this airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,once upon a time there was[EW:were] : two little mice : (that : build[-:]) that : (bil) : builded|build[EW:built] a sandcastle.,once upon a time there was two little mice that build that bil builded a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and : a[-:] mouse[-:] : dump/ed sand on it.,and a mouse dumped sand on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and the other mouse was : sad.,and the other mouse was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and then he was cry/ing.,and then he was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and (he did not want to) (he want) he : did not want him to play with him any more.,and he did not want to he want he did not want him to play with him any more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,there was[EW:were] once : two little mice : have/ing a picnic.,there was once two little mice having a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and one mice[EW:mouse] ate : a lot of stuff.,and one mice ate a lot of stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and then he had a stomachache.,and then he had a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,(and he tol) and the other mice[EW:mouse] told his : mother that he had a stomachache.,and he tol and the other mice told his mother that he had a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and (his) he pull/ed his mother to see (wh).,and his he pulled his mother to see wh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and his mother said : are you okay?,and his mother said are you okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and he was okay (cause) : [~_oh_I_forgot].,and he was okay cause +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,there was[EW:were] once upon a time : two mice.,there was once upon a time two mice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and one mice[EW:mouse] had a balloon.,and one mice had a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and : the other mice[EW:mouse] want/ed to look at it.,and the other mice wanted to look at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,(he was : sur) (he was) : he want/ed to : feel it.,he was sur he was he wanted to feel it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,so he untie/ed the balloon so : it would (f) fly away.,so he untied the balloon so it would f fly away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and : the other mouse[-:] got really mad.,and the other mouse got really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and there was a man that selled|sell[EW:sold] balloon/s.,and there was a man that selled balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,the other mouse want/ed a balloon.,the other mouse wanted a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,but the : balloon/s were five cent/s.,but the balloons were five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and he did not have enough.,and he did not have enough +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,so they could not get a balloon.,so they could not get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and then they came to their mother : and said can we have a balloon?,and then they came to their mother and said can we have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and their mother paid the man so they could have a balloon.,and their mother paid the man so they could have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/863.slt,and now they : each have a balloon.,and now they each have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,Two dragon/s are play/ing by the park.,Two dragons are playing by the park +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,and there is this pool in the park.,and there is this pool in the park +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,and this ball fall/3s in the water.,and this ball falls in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,(the b) the boy dragon try/3s to get the ball by swim/ing to it.,the b the boy dragon tries to get the ball by swimming to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,and he get/3s the ball.,and he gets the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,(h) the girl elephant (is ha) thank/3s him for get/ing the ball.,h the girl elephant is ha thanks him for getting the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,There is[EW:are] these two (: um) kid/s.,There is these two um kids +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,and [~_softly] : they want to go swim/ing.,and they want to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the elephant run/3s and slip/3s over.,the elephant runs and slips over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the elephant hurt her knee.,the elephant hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the[-:] giraffe went to go get the lifeguard.,the giraffe went to go get the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the lifeguard put a bandage on : the elephant/z knee.,the lifeguard put a bandage on the elephant's knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the elephant sat down on the bench.,the elephant sat down on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the lifeguard was angry because (she did not) she was run/ing.,the lifeguard was angry because she did not she was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,Two : animal/s are play/ing near (the sea) [~_I_mean] the pool.,Two animals are playing near the sea the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the giraffe is fly/ing (a) a plane.,the giraffe is flying a a plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the elephant watch/3s.,the elephant watches +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the elephant (ta) snatch/3s the : plane from the giraffe/z hand.,the elephant ta snatches the plane from the giraffe's hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,and she drop/3s it into the pool.,and she drops it into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the giraffe is angry with the elephant.,the giraffe is angry with the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the lifeguard : came and : ask/ed what is the matter.,the lifeguard came and asked what is the matter +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the : giraffe said : that the elephant (threw the) snatch/ed the plane from (the) his hand and threw it in the water.,the giraffe said that the elephant threw the snatched the plane from the his hand and threw it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the lifeguard try/s to get the : plane.,the lifeguard tries to get the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,but he can not.,but he can not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the giraffe is sad : because he could not get his plane.,the giraffe is sad because he could not get his plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,and then another lifeguard came (an) with a net.,and then another lifeguard came an with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,she grab/ed the plane in the net.,she grabbed the plane in the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,and she gave it back to the giraffe.,and she gave it back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the giraffe was happy that he got his plane back.,the giraffe was happy that he got his plane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,and the elephant ask/ed if she could play with it.,and the elephant asked if she could play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,(a) two bunny/s were play/ing in the sand park.,a two bunnies were playing in the sand park +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,(the bunny) one of the bunny/s were[EW:was] : make/ing a sandcastle.,the bunny one of the bunnies were making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the other one was help/ing.,the other one was helping +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,but then the other bunny just : threw some sand onto the castle.,but then the other bunny just threw some sand onto the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,: and then they were (sa) shock/ed because it fell down.,and then they were sa shocked because it fell down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,(the : one) the bunny who threw the sand : just : pretend/ed he did not do anything.,the one the bunny who threw the sand just pretended he did not do anything +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,a bunny and a wolf were play/ing together (in) in the : forest.,a bunny and a wolf were playing together in in the forest +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,they had the picnic in the open : field.,they had the picnic in the open field +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,and the bunny was : eat/ing lots.,and the bunny was eating lots +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,then the bunny just (lie) lie/ed down with a fat stomach.,then the bunny just lie lay down with a fat stomach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,suddenly the bunny felt sick.,suddenly the bunny felt sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the wolf went to get the bunny/z mom.,the wolf went to get the bunny's mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the bunny/z mom : went with the wolf.,the bunny's mom went with the wolf +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the bunny/z mom was a doctor.,the bunny's mom was a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,and she : said you should take a rest to the bunny.,and she said you should take a rest to the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,finally the bunny felt better.,finally the bunny felt better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,and they walk/ed home.,and they walked home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,a bunny and a dog were (wal) take/ing a walk.,a bunny and a dog were wal taking a walk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the dog had a balloon with him.,the dog had a balloon with him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the bunny was try/ing to get the balloon.,the bunny was trying to get the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the bunny : made the (lo) dog lose the balloon.,the bunny made the lo dog lose the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,and it float/ed away.,and it floated away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the dog was angry with the bunny : because : that was his only balloon.,the dog was angry with the bunny because that was his only balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,suddenly they saw (a m) (a b) a bunny : with a whole bunch of balloon/s.,suddenly they saw a m a b a bunny with a whole bunch of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the bunnies ask/ed if they could buy one of them.,the bunnies asked if they could buy one of them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,(the bun) the big bunny said : yes you can.,the bun the big bunny said yes you can +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,but : they are five cent/s.,but they are five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the bunny did not have any[!] money.,the bunny did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,suddenly he saw his mom.,suddenly he saw his mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,he ask/ed his mom if he could have five cent/s for a balloon.,he asked his mom if he could have five cents for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the (bunn) bunny/z mom gave the : big bunny (five cent/s and) : ten cent/s.,the bunn bunny's mom gave the big bunny five cents and ten cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,and (the) : both the dog and bunny could have balloon/s.,and the both the dog and bunny could have balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the dog and the bunny were play/ing together : with the balloon/s.,the dog and the bunny were playing together with the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/837.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,one day : Giraffe and Elephant went to the pool.,one day Giraffe and Elephant went to the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,(uh) Elephant was bounce/ing a ball.,uh Elephant was bouncing a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,the ball went into the water : in the pool.,the ball went into the water in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,and : Giraffe swam in to get it.,and Giraffe swam in to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,Elephant (pulled) got the ball (f) when Giraffe came back (to uh :) to the shore.,Elephant pulled got the ball f when Giraffe came back to uh to the shore +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,and (when rab) when Giraffe got out Elephant said [~_high__pitched_voice] thank you Giraffe.,and when rab when Giraffe got out Elephant said thank you Giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,and they all live/ed (hap) happily (af) ever after.,and they all lived hap happily af ever after +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,later on that day they went (to) back to the pool again with elephant got her ball all back [EU].,later on that day they went to back to the pool again with elephant got her ball all back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,they saw a diving board.,they saw a diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,elephant said hey giraffe (want to) want to go dive/ing?,elephant said hey giraffe want to want to go diving +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,and (she start/ed run/ing) she start/ed run/ing.,and she started running she started running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,but she trip/ed and fell.,but she tripped and fell +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,and she got a cut.,and she got a cut +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,the lifeguard came run/ing and put a bandaid on it.,the lifeguard came running and put a bandaid on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,and (she :) she look/ed.,and she she looked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,(and did not fe) and it did not hurt anymore.,and did not fe and it did not hurt anymore +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,she sat on the bench instead of dive/ing off the diving board and did not run.,she sat on the bench instead of diving off the diving board and did not run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,the end.,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,one day Giraffe and Elephant went to the pool.,one day Giraffe and Elephant went to the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,Giraffe had an airplane!,Giraffe had an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,(he) he told Elephant [~_oops] that it was (a grea) a great airplane and *it could fly anywhere [EU]!,he he told Elephant that it was a grea a great airplane and could fly anywhere +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,Elephant took the airplane from Giraffe.,Elephant took the airplane from Giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,and she : (uh) flew it.,and she uh flew it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,and it land/ed in the water.,and it landed in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,Giraffe was really mad at Elephant.,Giraffe was really mad at Elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,the lifeguard saw this.,the lifeguard saw this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,Elephant told the lifeguard what happen/ed.,Elephant told the lifeguard what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,the lifeguard try/ed to reach the airplane.,the lifeguard tried to reach the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,but he could not.,but he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,Giraffe was really really sad.,Giraffe was really really sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,then[!] : a lady with a net came by.,then a lady with a net came by +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,and she reach/ed the airplane (with her fi) with her fishing net.,and she reached the airplane with her fi with her fishing net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,[~_under_her_breath] well she try/ed.,well she tried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,[~_yeah] and she reach/ed it and gave it back to giraffe.,and she reached it and gave it back to giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,and giraffe was happy.,and giraffe was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,and they all live/ed happily (ever af) ever after.,and they all lived happily ever af ever after +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,(one day dog and rabbit) one day : rabbit came over to dog/z house.,one day dog and rabbit one day rabbit came over to dog's house +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,dog : was make/ing a sandcastle.,dog was making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,rabbit took some sand out of the bucket dog was use/ing and[-:] pour/ed it on dog/z sandcastle!,rabbit took some sand out of the bucket dog was using and poured it on dog's sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,then : dog/z sandcastle broke.,then dog's sandcastle broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,and rabbit : made a weird look/ing face [~_laughs].,and rabbit made a weird looking face +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,dog cry/ed.,dog cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,(and like) and rabbit said sorry dog.,and like and rabbit said sorry dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,I did not mean it.,I did not mean it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,one day : dog and rabbit went for a picnic.,one day dog and rabbit went for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,[~_uh_okay] rabbit got a delicious picnic when dog was take/ing out his things.,rabbit got a delicious picnic when dog was taking out his things +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,(but after he ate) but after rabbit ate he got all queasy.,but after he ate but after rabbit ate he got all queasy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,uhoh said dog.,uhoh said dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,dog ran to get (r r) rabbit/z mother : the doctor.,dog ran to get r r rabbit's mother the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,and : he pull/ed her over to where rabbit was.,and he pulled her over to where rabbit was +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,(he said) and his mom said oh no you should be in bed [~_laughs].,he said and his mom said oh no you should be in bed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,and so they went home.,and so they went home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,and everyone was happy.,and everyone was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,(once there was) [~_okay] (one day dog had a ba) one day dog was push/ing his wagon with his brand new balloon.,once there was one day dog had a ba one day dog was pushing his wagon with his brand new balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,rabbit saw the balloon (and) and was amaze/ed of[EW:by] how it float/ed in the air.,rabbit saw the balloon and and was amazed of how it floated in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,rabbit untie/ed the balloon from the wagon.,rabbit untied the balloon from the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,and poof it went up into the sky.,and poof it went up into the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,dog got really really mad at rabbit.,dog got really really mad at rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,then they saw a man with balloon/s.,then they saw a man with balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,(rabbit sai) rabbit said : (can we buy you) can we have one of your balloon/s?,rabbit sai rabbit said can we buy you can we have one of your balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,(he) he said balloon/s are five cent/s.,he he said balloons are five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,do you have five cent/s?,do you have five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,he look/ed.,he looked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,he did not have any.,he did not have any +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,(ssss mmm) maybe you should get somebody who has[!] five cent/s before (you wan) you get a balloon.,ssss mmm maybe you should get somebody who has five cents before you wan you get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,"so[!] : rabbit got his mom : and ask/ed, mom can you buy (a) a five cent balloon?",so rabbit got his mom and asked mom can you buy a a five cent balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,(uh) okay I will : two.,uh okay I will two +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,and they have two balloon/s.,and they have two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,they each have one balloon.,they each have one balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,and they were all happy.,and they were all happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/676.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,once upon a time : there was (a) a[EW:an] elephant : and a zebra.,once upon a time there was a a elephant and a zebra +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,they were very best friend/s.,they were very best friends +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and : they were play/ing with the ball.,and they were playing with the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and first the ball bounce/ed into the water.,and first the ball bounced into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then : (the sh) (the) : the zebra jump/ed into the swim/ing pool and : swimmed|swim[EW:swam] to get the ball.,and then the sh the the zebra jumped into the swimming pool and swimmed to get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then[!] : the zebra came back and give|give[EW:gave] (it) the ball back to the elephant.,and then the zebra came back and give it the ball back to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and : then : the elephant was jealous.,and then the elephant was jealous +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and : the zebra was soak/ing wet.,and the zebra was soaking wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,once upon a time there was a zebra and the elephant.,once upon a time there was a zebra and the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,they were go/ing to go swim/ing.,they were going to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then : (she ru) she runned|run[EW:ran] over to the jumping board.,and then she ru she runned over to the jumping board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then she runned|run[EW:ran].,and then she runned +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and she slip/ed.,and she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and[-:] then she hurt her knee.,and then she hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then the zebra went to go get the shop keeper.,and then the zebra went to go get the shop keeper +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then the keeper saw her and then gave her a bandage.,and then the keeper saw her and then gave her a bandage +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then when they put the bandage on the zebra feeled|feel[EW:felt] a little bit sad.,and then when they put the bandage on the zebra feeled a little bit sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and (then) : then (the) he did this [~_child_holds_out_his__hands].,and then then the he did this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,(and then) and then the swimming pool guy was pretty mad because she look/ed at the sign and said (no) no run/ing.,and then and then the swimming pool guy was pretty mad because she looked at the sign and said no no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,once upon a time : the zebra and the elephant.,once upon a time the zebra and the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,the zebra brought a play airplane where the swimming pool was.,the zebra brought a play airplane where the swimming pool was +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then : he : flied|fly[EW:flew] it.,and then he flied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then the elephant want/ed to hold it.,and then the elephant wanted to hold it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then : she (ff) xx pajinkly[c] drop/ed it in the water.,and then she ff pajinkly dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,she what ?,she what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,drop/ed it in the water the airplane [+_bch].,dropped it in the water the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,you said what pajinkly what was that word ?,you said what pajinkly what was that word +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,(she) (the airplane) (she le) (she xx) she slip/ed the airplane and fell in the water [+_bch].,she the airplane she le she she slipped the airplane and fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and : then : the zebra got really mad : at the elephant.,and then the zebra got really mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then : the keeper : try/ed to help.,and then the keeper tried to help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,(and : he tr) and then he try/ed to reach/ing[EW:reach] it : with his hand/s.,and he tr and then he tried to reaching it with his hands +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and : he fell in the water.,and he fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then : the zebra cry/ed.,and then the zebra cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then : a girl : elephant came.,and then a girl elephant came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and she : xx it out with her net : and then gave it : back : to the zebra[!].,and she it out with her net and then gave it back to the zebra +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,: I am all done [+_bch].,I am all done +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,"you are done, [~_turns_page] anything for this page?",you are done anything for this page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,then : he said thank you.,then he said thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then : he hug/ed his airplane with joy.,and then he hugged his airplane with joy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,once upon a time there was a rabbit and a dog.,once upon a time there was a rabbit and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and : the dog was : make/ing a sandcastle.,and the dog was making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then : the rabbit took a bunch of (sssh) sand[-:] from it/z sandbox.,and then the rabbit took a bunch of sssh sand from it's sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and he pour/ed it all over : her castle.,and he poured it all over her castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then : he was not very happy the dog.,and then he was not very happy the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and : then the doggy cry/ed.,and then the doggy cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and : the rabbit felt not very happy.,and the rabbit felt not very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,once upon a time : there were best friend/s a rabbit and a dog.,once upon a time there were best friends a rabbit and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and : they have the[EW:a] picnic.,and they have the picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and the rabbit ate lot/s of food.,and the rabbit ate lots of food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then he eat|eat[EW:ate] lot/s and lot/s.,and then he eat lots and lots +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then he had stomachache.,and then he had stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and he faint/ed.,and he fainted +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then : he went to go get the doctor.,and then he went to go get the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then : the doctor help/ed him.,and then the doctor helped him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then : they walk/ed home again.,and then they walked home again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,once upon a time : the doggy had a balloon.,once upon a time the doggy had a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then : the rabbit : untie/ed it.,and then the rabbit untied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,(uh) and : then : the doggy said they would fly away.,uh and then the doggy said they would fly away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then (the) he let go of it.,and then the he let go of it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then it flied|fly[EW:flew] away.,and then it flied away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,(then the dog) then the dog was really mad.,then the dog then the dog was really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then : he saw a balloon man : sell/ing balloon/s.,and then he saw a balloon man selling balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then he said can we have two balloon/s please?,and then he said can we have two balloons please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then he gave him balloon/s and gave him more money and put it back.,and then he gave him balloons and gave him more money and put it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and : then they both had a balloon.,and then they both had a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,: and : they saw a doctor.,and they saw a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and they said will you get us a balloon please?,and they said will you get us a balloon please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and (then she gave) then they get|get[EW:got] a balloon.,and then she gave then they get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/514.slt,and then they were best friend/s again.,and then they were best friends again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,(uh) there is : a giraffe[-:].,uh there is a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then there is an elephant.,and then there is an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,the elephant is bounce/ing a ball.,the elephant is bouncing a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and : they are probably say/ing hi to each other.,and they are probably saying hi to each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,they are by a pool.,they are by a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and the : elephant has his swimsuit (maybe on) probably yeah : on.,and the elephant has his swimsuit maybe on probably yeah on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then the : elephant probably bounce/3s it into the water.,and then the elephant probably bounces it into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and they are both : oh no it is went into the water [EU] !,and they are both oh no it is went into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,what are we go/ing to do[-:] !,what are we going to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,so (the horse) [~_no_the_horse] the (um) : giraffe jump/3s into the water : hold/3s his breath probably and then swim/3s over to it and : probably grab/3s it.,so the horse the um giraffe jumps into the water holds his breath probably and then swims over to it and probably grabs it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then he is like no[-:] what if he do/3s not come up [~_laughs] !,and then he is like no what if he does not come up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then : the giraffe come/3s back with the ball and hand/3s it over to the elephant.,and then the giraffe comes back with the ball and hands it over to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,(with) and then they are both happy they look like.,with and then they are both happy they look like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then : I think[!] they like each other because[~!_laughing] they are like [~_dreamy_facial_expression] : to each other.,and then I think they like each other because they are like to each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,yeah.,yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,(uh) they are the same two people the giraffe and the[-:] : elephant.,uh they are the same two people the giraffe and the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and they are still[!] at the (um) : pool.,and they are still at the um pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and there is a no run/ing sign.,and there is a no running sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then I think the elephant is probably start/ing to run.,and then I think the elephant is probably starting to run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and the giraffe has a towel on it : hold/ing it.,and the giraffe has a towel on it holding it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then she do/3s start to run.,and then she does start to run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then : she slip/3s.,and then she slips +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and I think the giraffe[!] is start/ing to run.,and I think the giraffe is starting to run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,but then : he probably see/3s her : fall.,but then he probably sees her fall +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,so he probably do/3s not run then.,so he probably does not run then +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then he is like oh no I have to get over to her : because she hurt her knee!,and then he is like oh no I have to get over to her because she hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and she is probably cry/ing.,and she is probably crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and she is hold/ing her knee up.,and she is holding her knee up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and there is still[!] a no run/ing sign.,and there is still a no running sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and : then the lifeguard come/3s over.,and then the lifeguard comes over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and : (she see/3s) he see/3s her : with a[EW:an]: owie.,and she sees he sees her with a owie +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then the[-:] lifeguard run/3s down and put/3s a bandage on her knee : to make her feel better.,and then the lifeguard runs down and puts a bandage on her knee to make her feel better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then : she look/3s down like ooh[-:] a bandage[-:] !,and then she looks down like ooh a bandage +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then the giraffe is all happy because she is real (um) : not sad and : cry/ing [EU].,and then the giraffe is all happy because she is real um not sad and crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then the lifeguard get/3s mad and point/3s at the no run/ing sign.,and then the lifeguard gets mad and points at the no running sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and she is like oh[-:] okay[-:] I am not go/ing to run no more [~__laughs].,and she is like oh okay I am not going to run no more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,they are[-:] the same two character/s the giraffe and the elephant.,they are the same two characters the giraffe and the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and[-:] the giraffe has[-:] a[EW:an][-:] : airplane it look/3s like.,and the giraffe has a airplane it looks like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and he is fly/ing it like whoa[-:].,and he is flying it like whoa +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and he is hang[EW:hanging] his tongue out (uh[-:]) [~_sticks_tongue_out] [~__laughs].,and he is hang his tongue out uh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,that was so rude [~_laughs].,that was so rude +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then the elephant want/3s to try.,and then the elephant wants to try +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and : the : giraffe probably do/3s not want it to because he is like waa[-:] do not touch that !,and the giraffe probably does not want it to because he is like waa do not touch that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then it fall/3s into the water.,and then it falls into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and (the : like) : the elephant start/3s to like uhoh he is probably go/ing to get mad at me !,and the like the elephant starts to like uhoh he is probably going to get mad at me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and[-:] the giraffe is not[!] cry/ing yet.,and the giraffe is not crying yet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,but he will probably get really mad.,but he will probably get really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,yeah[!] he really gets mad[!][-:].,yeah he really gets mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,"and he is [~_makes_mad_sound_""hmmm""] !",and he is +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then the man is[?] like uhoh[-:] [~_laughs] : because (it is pra) it looks like this plane is sink/ing.,and then the man is like uhoh because it is pra it looks like this plane is sinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,but I do not think it is.,but I do not think it is +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then the lifeguard (came/3s o) come/3s over.,and then the lifeguard cames o comes over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and (the giraffe is like) : (look/3s) : [~_no] : the giraffe look/3s : over to see the lifeguard.,and the giraffe is like looks the giraffe looks over to see the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and the elephant look/3s over to see the lifeguard : come/ing.,and the elephant looks over to see the lifeguard coming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then the (elephan) elephant probably start/3s to tell[!] (the : other) : the elephant lifeguard that : she accidentally drop/ed it into the : water.,and then the elephan elephant probably starts to tell the other the elephant lifeguard that she accidentally dropped it into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and she probably ask/ing him can you get it out for us ?,and she probably asking him can you get it out for us +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and the elephant start/3s to try[!] to get it out.,and the elephant starts to try to get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,but I do not think he can reach.,but I do not think he can reach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and they are like whoa I do not think he can reach [~_laughs].,and they are like whoa I do not think he can reach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then : the giraffe start/3s to cry[-:].,and then the giraffe starts to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then the elephant was like uhoh (um) again.,and then the elephant was like uhoh um again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,I am[-:] : go/ing to[:_gonna] get mad at for drop/ing in the plane.,I am going to get mad at for dropping in the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then a girl elephant come/3s over.,and then a girl elephant comes over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and she has one of those net thing/s you know ?,and she has one of those net things you know +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and she is probably go/ing to[:_gonna] fish it out (for them) and like yay probably for (them) : her.,and she is probably going to fish it out for them and like yay probably for them her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then she get/3s it.,and then she gets it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,she[-:] dip/3s it into the water : and : scoop/3s it up.,she dips it into the water and scoops it up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then (the) : I think the giraffe is still probably cry/ing.,and then the I think the giraffe is still probably crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,but : (the) : the lifeguard is happy[!].,but the the lifeguard is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then (the ele) the other elephant : the : little one : was actually like (uh[-:]) hope this one get/3s it [~_laughs].,and then the ele the other elephant the little one was actually like uh hope this one gets it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then she scoop/3s it up pick/3s it up and then give/3s it to the giraffe.,and then she scoops it up picks it up and then gives it to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,(and every) and both of them are happy.,and every and both of them are happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and now : the giraffe is really happy[-:] !,and now the giraffe is really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and the elephant is really happy.,and the elephant is really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and (he) the giraffe is hug/ing[!] the airplane.,and he the giraffe is hugging the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,(uh) [-:] I think it look/3s like a rabbit : and a dog.,uh I think it looks like a rabbit and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,the dog is make/ing a sandcastle.,the dog is making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and it look/3s like the rabbit want/3s to join in to make the : sandcastle.,and it looks like the rabbit wants to join in to make the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and[-:] the rabbit has a pail of sand[-:] with a shovel in it.,and the rabbit has a pail of sand with a shovel in it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and he start/3s to dig in it.,and he starts to dig in it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and the guy is shape/ing it [~_laughs] the dog.,and the guy is shaping it the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then the rabbit start/3s to pour[-:][!] it on the sandcastle.,and then the rabbit starts to pour it on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and he is like : kind of : sad or scare/ed of what is go/ing to [~__gonna] happen to it.,and he is like kind of sad or scared of what is going to happen to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then[-:] : it wreck/3s it.,and then it wrecks it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,(it) it come/3s out with a big pile of sand but with just[!] one[-:][!] little building on top but with the whole mound.,it it comes out with a big pile of sand but with just one little building on top but with the whole mound +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then the : rabbit is uhoh[~!_laughing].,and then the rabbit is uhoh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then (the guy) : the dog is kind of : oh[-:].,and then the guy the dog is kind of oh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then[-:] the rabbit is sort of like a sorry look.,and then the rabbit is sort of like a sorry look +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and I think the dog is cry/ing[-:].,and I think the dog is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and he is try/ing to : maybe to shape it.,and he is trying to maybe to shape it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and (there) there is[EW:are] two little more hump/s : with the sandcastle.,and there there is two little more humps with the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,that is all [+_bch].,that is all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,(uh) [-:] (the rabbit) (there is a) : they are the same two character/s from the[-:] one B [~_previous_story_number] I think.,uh the rabbit there is a they are the same two characters from the one B I think +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and[-:] they both have picnic basket/s.,and they both have picnic baskets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and the rabbit is walk/ing down[-:] on the forest : on the path.,and the rabbit is walking down on the forest on the path +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and he meet/3s the dog with the : other : (one) : [~_uh_what_(i)s__it_call/ed] : basket.,and he meets the dog with the other one basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and[-:] : the rabbit start/3s to take out all[-:] the food.,and the rabbit starts to take out all the food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,there is (uh) carrot/s sandwich cake another[!] sandwich (uh) : pickle/s[-:] cookie/s : (uh) chip/s : another sandwich [EU].,there is uh carrots sandwich cake another sandwich uh pickles cookies uh chips another sandwich +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,(uh) there is a lot of stuff.,uh there is a lot of stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,(um) [-:] : and then he has the carrot and the sandwich in his hand.,um and then he has the carrot and the sandwich in his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,(uh) [-:] : (he has sort of a) : yum I am go/ing to eat this.,uh he has sort of a yum I am going to eat this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then the dog just take/3s out one sandwich.,and then the dog just takes out one sandwich +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,he is like whoa[-:][!] : this[-:] guy eat/3s a lot [~_laughs].,he is like whoa this guy eats a lot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and (um) : the rabbit start/3s to gobble it all up.,and um the rabbit starts to gobble it all up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and there is[EW:are] crumb/3s left.,and there is crumbs left +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,there is an apple core : a juice box I think : some[-:] crumb/s.,there is an apple core a juice box I think some crumbs +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,(and then the ba) and then he has a big tummy[!].,and then the ba and then he has a big tummy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and he is still munch/ing his food.,and he is still munching his food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and the[-:] lunchbox is tip/ed over.,and the lunchbox is tipped over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then the dog is just sit/ing there : munch/ing on his (sandwi) sandwich and has a juice box in his hand.,and then the dog is just sitting there munching on his sandwi sandwich and has a juice box in his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then the rabbit go/3s whoa that is a lot of food.,and then the rabbit goes whoa that is a lot of food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then he (s) kind of fall/3s over it look/3s like : cause he (has a) : probably has a tummyache.,and then he s kind of falls over it looks like cause he has a probably has a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then : the dog is like whoa what is wrong with him?,and then the dog is like whoa what is wrong with him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and he still[~!_laughing] has the : sandwich and the juice box in his hand.,and he still has the sandwich and the juice box in his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then : (the dog[-:] start/3s) [~_no] (the um) : there is a mother rabbit.,and then the dog starts the um there is a mother rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,it is probably the rabbit/z mother.,it is probably the rabbit's mother +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,she is walk/ing down[-:].,she is walking down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then : the little dog go/3s and : tell/3s her that probably the : rabbit *that is lie/ing there : (uh) has a stomachache [EU].,and then the little dog goes and tells her that probably the rabbit is lying there uh has a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and : he start/3s to pull[!] on her to come over : and check on him to make sure he is okay.,and he starts to pull on her to come over and check on him to make sure he is okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and (he) there is a big twirl come/ing over the : rabbit/z face.,and he there is a big twirl coming over the rabbit's face +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then (the rabbit) : [~_I_think_it_(i)s_a_doctor] (the rabbit) the older rabbit is a doctor.,and then the rabbit the rabbit the older rabbit is a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and he has (a telescope thingy) [~_not_a_telescope_#_you_know__those_things_I_can_n(o)t_do_n(o)t_know_what_they_are_called_-:_#_whoa__they_have_like_a_little_round_thing_and_then_there_(i)s_a_poke__#_hole].,and he has a telescope thingy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then she has glass/s.,and then she has glasses +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and she has (a) : one of those : thing/s that go down there.,and she has a one of those things that go down there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then : (she go/3s : to) she is probably tell/ing him (um) to open wide or to not eat so much food.,and then she goes to she is probably telling him um to open wide or to not eat so much food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then : (the ra) the doctor rabbit say/3s : I guess he feel/3s better.,and then the ra the doctor rabbit says I guess he feels better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and (um) he get/3s up and (wa) start/3s to walk with the doctor.,and um he gets up and wa starts to walk with the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then and the dog (s) start/3s to smile.,and then and the dog s starts to smile +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,(uh) [-:] the rabbit is walk/ing down.,uh the rabbit is walking down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and the dog has a balloon[!] in it : that is tie/ed to a wagon.,and the dog has a balloon in it that is tied to a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and I think she is pull/ing[!] it.,and I think she is pulling it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and (then the do) : then the rabbit say/3s probably can I look at it and (ho) : want/3s to hold it.,and then the do then the rabbit says probably can I look at it and ho wants to hold it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then probably the dog say/3s yeah sure.,and then probably the dog says yeah sure +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then : she (un) start/3s to untie it.,and then she un starts to untie it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and the dog is (like) : like a little surprise/ed : think : yeah.,and the dog is like like a little surprised think yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then : I guess the balloon float/3s away.,and then I guess the balloon floats away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,it is float/ing away.,it is floating away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and the rabbit is like no[-:] !,and the rabbit is like no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and the dog is[~!_laughing] no either.,and the dog is no either +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then : the dog get/3s really[!] mad like hmmm[~!_grunting].,and then the dog gets really mad like hmmm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,I am really mad at you!,I am really mad at you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and the rabbit is like (uh) hm (ye) yeah.,and the rabbit is like uh hm ye yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,he is like : scare/ed of him maybe.,he is like scared of him maybe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then they see : another rabbit : with all these balloon/s.,and then they see another rabbit with all these balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then : the dog still has a mad[!] face on it.,and then the dog still has a mad face on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and the rabbit is like woo maybe you can get one from there.,and the rabbit is like woo maybe you can get one from there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then (the dog run/3s over) [~_no] : the rabbit[!] run/3s over to[-:] probably ask if they could have one.,and then the dog runs over the rabbit runs over to probably ask if they could have one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,(and[-:] yeah) and then they cost five : cent/s : for the balloon/s.,and yeah and then they cost five cents for the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,but : she do/3s not have none[EW:any].,but she does not have none +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and the dog (s) come/3s run/ing : over.,and the dog s comes running over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then the dog and the rabbit have really sad face/s.,and then the dog and the rabbit have really sad faces +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and[-:] : the : older rabbit I guess has like : I am proud of myself [~_laughs].,and the older rabbit I guess has like I am proud of myself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,then they see (the rabbit) the doctor rabbit.,then they see the rabbit the doctor rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and (the rab) the other little rabbit that is the baby run/3s over to her probably ask her for a balloon.,and the rab the other little rabbit that is the baby runs over to her probably ask her for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and (sh) the rabbit ask/3s her if they could get a balloon too : probably : for one : for each of them.,and sh the rabbit asks her if they could get a balloon too probably for one for each of them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,then[-:] : the rabbit come/3s over and give/3s (t) ten cent/s to get both of them a balloon.,then the rabbit comes over and gives t ten cents to get both of them a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and she give/3s it to (them) : him.,and she gives it to them him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and (uh) : rabbit is hold/ing the two balloon/s out : for them to get.,and uh rabbit is holding the two balloons out for them to get +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and then everyone is all happy.,and then everyone is all happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,the dog is like : hug/ing[!] it.,the dog is like hugging it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,and the rabbit is hold/ing and hug/ing probably it.,and the rabbit is holding and hugging probably it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/955.slt,the rabbit is really happy : older rabbit.,the rabbit is really happy older rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,once upon a time (a uh) a giraffe and a[EW:an] elephant met.,once upon a time a uh a giraffe and a elephant met +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,they saw : a balloon stuck (in) in their water (p) pool.,they saw a balloon stuck in in their water p pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,(they) (the) (the) the zebra try/ed to get it.,they the the the zebra tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,but he (cou) just could not get it.,but he cou just could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,then : (the) the elephant got it.,then the the elephant got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and then (he le) he help/ed : the zebra get out of the water.,and then he le he helped the zebra get out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and then : they both smile/ed at each other.,and then they both smiled at each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,(once upon a z) the zebra and the elephant : they want/ed to go dive/ing in the pool.,once upon a z the zebra and the elephant they wanted to go diving in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and then the elephant runned|run[EW:ran].,and then the elephant runned +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,but it was too slippery (on the) : on the side.,but it was too slippery on the on the side +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,(and then he slip/ed) and then she slip/ed off.,and then he slipped and then she slipped off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and she fell into the pool.,and she fell into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,but she was not ready to jump.,but she was not ready to jump +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,(sh) then she got a[EW:an] owie because she runned|run[EW:ran] too fast.,sh then she got a owie because she runned too fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and she hurt herself.,and she hurt herself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,then : (th) the other elephant came to help.,then th the other elephant came to help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,she cry/ed and she cry/ed : because it was hurt/ing.,she cried and she cried because it was hurting +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and he put a bandaid on it.,and he put a bandaid on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,then she feeled|feel[EW:felt] much better.,then she feeled much better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,but she just stare/ed at it.,but she just stared at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and (he[!] said) : she just freak/ed at him.,and he said she just freaked at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,once upon a time (the elephant) [~_I_mean] the zebra had a toy airplane.,once upon a time the elephant the zebra had a toy airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and the elephant want/ed to play with it.,and the elephant wanted to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,but the zebra said no.,but the zebra said no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and : then : the elephant took it away from the zebra.,and then the elephant took it away from the zebra +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and then it fell in the water.,and then it fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,then : he got upset.,then he got upset +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and then the lifeguard said no toy/s in the water.,and then the lifeguard said no toys in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and then : he said (that) that the zebra had the toy.,and then he said that that the zebra had the toy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and then : she took it from him.,and then she took it from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and then it went in the water.,and then it went in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,(and the ele) and the lifeguard try/ed to reach it.,and the ele and the lifeguard tried to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and then : he said : I can not get it out!,and then he said I can not get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and then the person who take/3s toy/s out of the water : she came with a net.,and then the person who takes toys out of the water she came with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,(and) : and she try/ed to take it out.,and and she tried to take it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and then she just about got it.,and then she just about got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and then she got it out of the water.,and then she got it out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and then the zebra was happy.,and then the zebra was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,once upon a time there was[EW:were] two rabbit/s.,once upon a time there was two rabbits +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and they were play/ing in a sandbox!,and they were playing in a sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and then : one of the rabbit/s took a great big pile of sand.,and then one of the rabbits took a great big pile of sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and then the rabbit pour/ed it : on the sandcastle.,and then the rabbit poured it on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,then it broke.,then it broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and then : the other one cry/ed.,and then the other one cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,once upon a time the rabbit/s were take/ing their lunch bag/s!,once upon a time the rabbits were taking their lunch bags +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,then : (a) one of them ate too much.,then a one of them ate too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,he got a tummyache.,he got a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and then he could not eat any more.,and then he could not eat any more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,so then he ask/3s[-:] the doctor if he could fix his tummyache [EU].,so then he asks the doctor if he could fix his tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,then : (h) the doctor said no.,then h the doctor said no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,then the doctor said open up wide.,then the doctor said open up wide +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and then he still had a tummyache.,and then he still had a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,once upon a time the rabbit had a balloon.,once upon a time the rabbit had a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and he was pull/ing his wagon.,and he was pulling his wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,then the balloon start/ed to fly away.,then the balloon started to fly away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and (he tie/ed it tright) he try/ed to tie it (ti) tighter.,and he tied it tright he tried to tie it ti tighter +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,then the balloon flew away.,then the balloon flew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,then (the) only the string was left.,then the only the string was left +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,(so then the) and then the rabbit saw : (the) the man hold/ing the balloon/s.,so then the and then the rabbit saw the the man holding the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,he said can I have a balloon?,he said can I have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,and the man said no.,and the man said no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,then he just stood there.,then he just stood there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,then (he) the doctor[!] walk/ed away.,then he the doctor walked away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,then the doctor look/ed at him and said : he will not give me a balloon.,then the doctor looked at him and said he will not give me a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,(then the doc) and then the doctor gave the man : some penny/s.,then the doc and then the doctor gave the man some pence +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,(and) : and then he got a balloon.,and and then he got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/459.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,the[-:] elephant has : a ball[-:].,the elephant has a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and the giraffe see/3s the ball[-:].,and the giraffe sees the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,(and : so) : and then : (I) the giraffe : took the ball.,and so and then I the giraffe took the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and[-:] : the elephant look/3s unhappy because : the ball is in the pool.,and the elephant looks unhappy because the ball is in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,so the giraffe go/3s out and swim/3s for it.,so the giraffe goes out and swims for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and the giraffe get/3s the ball back.,and the giraffe gets the ball back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and the elephant look/3s happy.,and the elephant looks happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and so : the elephant is really happy with him.,and so the elephant is really happy with him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,[~_kay_-:] there is : an elephant : that want/3s to go (on) on the diving board.,there is an elephant that wants to go on on the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and then : so the elephant run/3s over to the diving board.,and then so the elephant runs over to the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,but the giraffe see/3s the no run/ing sign.,but the giraffe sees the no running sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,but the elephant do/3s not.,but the elephant does not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and so she slip/3s.,and so she slips +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and she start/3s cry/ing because she hit her knee.,and she starts crying because she hit her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,(so the oth) so the giraffe get/3s : a lifeguard.,so the oth so the giraffe gets a lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and the lifeguard come/3s over.,and the lifeguard comes over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and so he put/3s a bandage on it.,and so he puts a bandage on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and[-:] : the lifeguard help/3s the elephant over to a bench.,and the lifeguard helps the elephant over to a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and then he point/3s at : the no run/ing sign.,and then he points at the no running sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,the giraffe has an[-:] airplane.,the giraffe has an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and the elephant : like/3s it.,and the elephant likes it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,so the giraffe : start/3s play/ing with it.,so the giraffe starts playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and the elephant is dumbstruck.,and the elephant is dumbstruck +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,so the elephant take/3s the : airplane.,so the elephant takes the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and the giraffe look/3s really unhappy.,and the giraffe looks really unhappy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,then (the ax) accidentally the elephant drop/3s the plane into the water.,then the ax accidentally the elephant drops the plane into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and so the giraffe get/3s really mad at the elephant.,and so the giraffe gets really mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,the lifeguard see/3s the plane.,the lifeguard sees the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,so he come/3s over.,so he comes over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,the elephant explain/3s what happened.,the elephant explains what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,so the lifeguard try/3s to reach it with his : hand.,so the lifeguard tries to reach it with his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,but he can not.,but he can not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,so : the giraffe start/3s cry/ing[-:].,so the giraffe starts crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,but then a lady : come/3s over.,but then a lady comes over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and she has : a net.,and she has a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and so[-:] she[-:] fish/3s the[-:] : airplane out of : the water with the net.,and so she fishes the airplane out of the water with the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and giraffe is really happy.,and giraffe is really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and so he hug/3s his airplane.,and so he hugs his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,(um) : there is : a dog[-:].,um there is a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,(and[-:] there) and he is at the beach.,and there and he is at the beach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and there is also a bunny.,and there is also a bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and the dog has made a sandcastle.,and the dog has made a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and so they are talk/ing.,and so they are talking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and I think that the bunny : is want/ing to help build the rest of the sandcastle.,and I think that the bunny is wanting to help build the rest of the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,so[-:] the bunny help/3s : build the sandcastle.,so the bunny helps build the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and then : the bunny : pour/3s : a bunch of sand right[!] over top of the castle.,and then the bunny pours a bunch of sand right over top of the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and the dog look/3s really disappoint/ed.,and the dog looks really disappointed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and so the dog try/3s to reform : the[-:] castle.,and so the dog tries to reform the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and the bunny : just look/3s really unhappy.,and the bunny just looks really unhappy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,[~_okay] (um) : the bunny and the dog are go/ing : for a picnic in the wood/s.,um the bunny and the dog are going for a picnic in the woods +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and[-:] : the dog : see/3s what the bunny is eat/ing.,and the dog sees what the bunny is eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and the bunny/z : mouth is water/ing.,and the bunny's mouth is watering +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and the dog just stare/3s[-:].,and the dog just stares +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,the dog eat/3s very slowly.,the dog eats very slowly +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and the bunny is already done.,and the bunny is already done +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and (he is really really unha) he look/3s really really proud of himself.,and he is really really unha he looks really really proud of himself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and then (it) the dog look/3s worry/ed because his friend is now sick.,and then it the dog looks worried because his friend is now sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,(um) : the dog see/3s a doctor bunny : and : ask/3s her : to come with him.,um the dog sees a doctor bunny and asks her to come with him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,so[-:] the doctor bunny : look/3s[~!_laughing] at him.,so the doctor bunny looks at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and he tell/3s : the dog to do something : while he examine/3s the bunny.,and he tells the dog to do something while he examines the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and the bunny come/3s along : and look/3s at the balloon and say/3s : something.,and the bunny comes along and looks at the balloon and says something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and[-:] the dog look/3s : worry/ed.,and the dog looks worried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,so the : bunny untie/3s the balloon.,so the bunny unties the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and the dog look/3s really unhappy now.,and the dog looks really unhappy now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and the bunny accidentally let/3s go of the balloon.,and the bunny accidentally lets go of the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,so the dog is like ah!,so the dog is like ah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,the bunny look/3s up.,the bunny looks up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and the dog look/3s really mad now.,and the dog looks really mad now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,the bunny see/3s (another balloon man an) a balloon man.,the bunny sees another balloon man an a balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and : so he go/3s over : to him : (ask/3s : for a balloon) : and ask/3s for a balloon.,and so he goes over to him asks for a balloon and asks for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and[-:] the balloon/s are five (cent/s an) cent/s each.,and the balloons are five cents an cents each +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,but : the bunny do/3s not have any money on him.,but the bunny does not have any money on him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,so the man just look/3s really happy[!].,so the man just looks really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and then they see the doctor[!] bunny again.,and then they see the doctor bunny again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,so they go over : and ask her[!] : for some money for a balloon.,so they go over and ask her for some money for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and then : so she pay/3s (the ma) the balloon man.,and then so she pays the ma the balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and the dog and[!] the bunny : each get a balloon.,and the dog and the bunny each get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and so the dog hug/3s the balloon.,and so the dog hugs the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,the doctor bunny look/3s really[!] happy.,the doctor bunny looks really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/868.slt,and so do/3s the little bunny.,and so does the little bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,(Um : the elephant he was sh) the elephant and (the) (um : the d um) the horse (um) were : at the pool.,Um the elephant he was sh the elephant and the um the d um the horse um were at the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and the elephant was bounce/ing the ball very very fast.,and the elephant was bouncing the ball very very fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,And : the elephant was watch/ing.,And the elephant was watching +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,And then : the elephant saw how the ball went in the water.,And then the elephant saw how the ball went in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and the dog was surprise/ed.,and the dog was surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,And then the dog : went : (um) in : and chase/ed it [~_laughs].,And then the dog went um in and chased it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and : it never could get there.,and it never could get there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,And then he got it.,And then he got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and : he gave it to the (um) : girl so (he) she could bounce it again.,and he gave it to the um girl so he she could bounce it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and he was all all wet.,and he was all all wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,(Um there wa in) the (um) horse and the elephant : want/ed to go swim/ing.,Um there wa in the um horse and the elephant wanted to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then the : (um) elephant saw a diving board.,and then the um elephant saw a diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,so she want/ed to go.,so she wanted to go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,And she start/ed run/ing.,And she started running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and he : was just smile/ing.,and he was just smiling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and (um) : she keeped|keep[EW:kept] on run/ing faster.,and um she keeped on running faster +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then she slip/ed : and fell[-:] : and hurt her knee.,and then she slipped and fell and hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,And then the lifeguard came : and put a bandage on her.,And then the lifeguard came and put a bandage on her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then she sat down on the bench.,and then she sat down on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,And : then (um) : she was embarrass/ed because the lifeguard show/ed her no run/ing it said.,And then um she was embarrassed because the lifeguard showed her no running it said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,The horse : was play/ing with the airplane.,The horse was playing with the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and the : (um) elephant want/ed to play with it.,and the um elephant wanted to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,And then he[!] was flap/ing it around in the air.,And then he was flapping it around in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and she was look/ing.,and she was looking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then she took it from him.,and then she took it from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and she[!] was.,and she was +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then she let it go into the pool.,and then she let it go into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then : (he) the : horse got mad.,and then he the horse got mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then the lifeguard saw.,and then the lifeguard saw +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and they were both not happy.,and they were both not happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then (um) she told the lifeguard about it.,and then um she told the lifeguard about it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and (um) the lifeguard : said down there?,and um the lifeguard said down there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then he was try/ing to reach it.,and then he was trying to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,(and then h) but he could not.,and then h but he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,so the horse was cry/ing.,so the horse was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then : (um) another lifeguard came with a net to pick it up with.,and then um another lifeguard came with a net to pick it up with +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and (they were a all) (the life) the other lifeguard the elephant : and : the horse were surprise/ed.,and they were a all the life the other lifeguard the elephant and the horse were surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then she : try/ed.,and then she tried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and the horse was in tear/s.,and the horse was in tears +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and she got it for him.,and she got it for him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and he was happy.,and he was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then he love/ed it.,and then he loved it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,(um) there is a rabbit and (um) a dog[-:].,um there is a rabbit and um a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and they : both came to the same sandbox.,and they both came to the same sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then the rabbit he fill/3s the bucket to help make the sandcastle.,and then the rabbit he fills the bucket to help make the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then he think/3s that : it would work if he just pour/3s it on.,and then he thinks that it would work if he just pours it on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,but then : it make/3s (i) a sand pile on top of it.,but then it makes i a sand pile on top of it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and you can only see one window.,and you can only see one window +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then the dog is in tear/s because (he work/ed) he (b) made the (k) castle.,and then the dog is in tears because he wrought he b made the k castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,(he ju) the rabbit just fill/ed the sandbox.,he ju the rabbit just filled the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,this is a bunny.,this is a bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and he is hop/ing down the street.,and he is hopping down the street +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,name/ed Roger Rabbit.,named Roger Rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and he meet/3s : a fox.,and he meets a fox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and (they want to have a pic) they have a picnic.,and they want to have a pic they have a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then the rabbit he eat/3s ton/s and ton/s and ton/s of stuff.,and then the rabbit he eats tons and tons and tons of stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and the dog just (eats a ju) has a juice and a sandwich.,and the dog just eats a ju has a juice and a sandwich +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then : the dog see/3s (ra) the rabbit.,and then the dog sees ra the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and he is almost pass/ed out.,and he is almost passed out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,he ate so much.,he ate so much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then : the dog he call/ed : the nurse rabbit.,and then the dog he called the nurse rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and (um) she saw him.,and um she saw him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and she is like : okay[!].,and she is like okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then she came over.,and then she came over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then she gave him the pill/s and stuff.,and then she gave him the pills and stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then they went home.,and then they went home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,(um the do and the) a dog (and the rabbit came) and the rabbit came by.,um the do and the a dog and the rabbit came and the rabbit came by +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,the dog had a cart and a balloon.,the dog had a cart and a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and the rabbit had nothing.,and the rabbit had nothing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,the rabbit want/ed to hold the balloon.,the rabbit wanted to hold the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and : the dog was not sure.,and the dog was not sure +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then the rabbit untie/ed the balloon.,and then the rabbit untied the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,(and he) and the dog was : scare/ed that he would let go of it.,and he and the dog was scared that he would let go of it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then (um) the rabbit let go of it.,and then um the rabbit let go of it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and the dog was run/ing to catch it.,and the dog was running to catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and the rabbit was try/ing to.,and the rabbit was trying to +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,but they could not.,but they could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and it went higher.,and it went higher +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and the dog got madder [EU].,and the dog got madder +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,(and then : they saw) and then the rabbit saw (bu) a balloon man.,and then they saw and then the rabbit saw bu a balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and the dog was really really mad.,and the dog was really really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then he asked for a balloon.,and then he asked for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and the dog was surprise/ed.,and the dog was surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,(and then he) : it was five dollar/s.,and then he it was five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and he look/ed.,and he looked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and (he was) he did not have any money.,and he was he did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and the dog was come/ing up the hill.,and the dog was coming up the hill +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then they were like aw[-:].,and then they were like aw +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then the man is like you need five dollar/s.,and then the man is like you need five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and : she was kind of [~_kinda] surprise/ed what he want/ed because he never was interest/ed in balloon/s.,and she was kind of surprised what he wanted because he never was interested in balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then she paid for (one) two : balloon/s.,and then she paid for one two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and then they were both happy.,and then they were both happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and the rabbit could let his go if he want/ed to.,and the rabbit could let his go if he wanted to +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/755.slt,and the dog want/ed to keep his.,and the dog wanted to keep his +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,he got three ball/s.,he got three balls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and it : and it went in the mud.,and it and it went in the mud +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,"he got : what, people/s?",he got what people +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(the) : the ball went (in) in the mud.,the the ball went in in the mud +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and then : he was still wet.,and then he was still wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and (then : the) : then he was to go to jump in there [EU].,and then the then he was to go to jump in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and then he went to go get the ball.,and then he went to go get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and he (got tick/ed[?]) [~_EXA:_he_got_#] got all dirty.,and he got ticked got all dirty +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and then he comed|come[EW:came] out.,and then he comed out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(the :) (and now) : (now the giraffe) : and now the giraffe got his : back out.,the and now now the giraffe and now the giraffe got his back out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(the) (the) the wait/ing to go in the water [EU].,the the the waiting to go in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and then) and then he falled|fall[EW:fell].,and then and then he falled +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,he was run/ing.,he was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(h) he want|want[EW:wanted] to go in the water.,h he want to go in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and h) and he was run/ing.,and h and he was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and he falled|fall[EW:fell].,and he falled +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and he hurt he[EW:his] knee.,and he hurt he knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and) and the doctor comed|come[EW:came] (and and) and put a bandaid on here.,and and the doctor comed and and and put a bandaid on here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and he *is better now [EU].,and he better now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(he) he sit|sit[EW:sat] on the bench.,he he sit on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and) and the doctor said you can go back in the water.,and and the doctor said you can go back in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,he got a plane.,he got a plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and then : it went in the water.,and then it went in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and he) : [~_no] he went to go get it.,and he he went to go get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and then : he was play/ing with it.,and then he was playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and then : he put (in) (in) in the (uh) friend[EW:friend/z] hand [EU].,and then he put in in in the uh friend hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and it falled|fall[EW:fell] in the water.,and it falled in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and it give it back.,and it give it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and then) : (and) and (he) she drop/ed it in the water.,and then and and he she dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and he did.,and he did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and he he did not got|get[EW:get] it back.,and he he did not got it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and then : how he) : (and the) (the girl) (the) he *is mad [EU].,and then how he and the the girl the he mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,the what?,the what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,he *is mad now [EU].,he mad now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and the) (put the) (the) then the doctor comed|come[EW:came] (uh) up and said you can not put that in the water.,and the put the the then the doctor comed uh up and said you can not put that in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and then the doctor was mad.,and then the doctor was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and then : he was sad.,and then he was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and) (and) and the doctor was (um) happy again.,and and and the doctor was um happy again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and then : (he) the doctor can not get it from the water.,and then he the doctor can not get it from the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,so : the xx went to go get it take/ing it got it out.,so the went to go get it taking it got it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(then he was) (the) he (was cry/ing) : was cry/ing.,then he was the he was crying was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and then the other[!] doctor comed|come[EW:came] and : went to go get it : the hook.,and then the other doctor comed and went to go get it the hook +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and he : did[!] got|get[EW:get] it.,and he did got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and (then he) : then he give|give[EW:gave] it back to the ray[?].,and then he then he give it back to the ray +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and then (he took) (that) he give|give[EW:gave] it back to the girl.,and then he took that he give it back to the girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,he was play/ing in the sand and (uh) make/ing (a) (it) a castle.,he was playing in the sand and uh making a it a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and (when) when he *was done make/ing a castle a bunny rabbit : *was make/ing it castle too [EU].,and when when he done making a castle a bunny rabbit making it castle too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and) and (he) (he) he dump/ed it : on the castle.,and and he he he dumped it on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and he dump/ed it.,and he dumped it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and it was) and it knock/ed all the sand down from the castle.,and it was and it knocked all the sand down from the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and (then) then he was mad.,and then then he was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and then he wa) and then (the) he was cry/ing.,and then he wa and then the he was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(when) when rabbit said hi.,when when rabbit said hi +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,he was run/ing.,he was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and then) and (then he) then (he went) (he) (he went at) (he eat a) he eat[EW:ate] (a) a bun.,and then and then he then he went he he went at he eat a he eat a a bun +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and then he did not like it.,and then he did not like it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,he did not?,he did not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,like it [+_bch].,like it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,then he was sick.,then he was sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and (then) then the doctor was need to come [EU].,and then then the doctor was need to come +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(then) and then he was fat.,then and then he was fat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and he was?,and he was +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,he got too much.,he got too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and (then he) (then) then he sat at doctor and said you come help me [EU].,and then he then then he sat at doctor and said you come help me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and then he help/ed.,and then he helped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and then) (and then) (and) : and then he was better.,and then and then and and then he was better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(xx) and the doctor help|help[EW:helped] him.,and the doctor help him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and then) : (and then) and then (the doctor take/ed him) : the doctor taked|take[EW:took] him.,and then and then and then the doctor took him the doctor taked him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and the end [+_bch].,and the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and the rabbit comed|come[EW:came] down and said I *will pull the wagon [EU].,and the rabbit comed down and said I pull the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and) (and) (and the) (then) then balloon was (c) (c) comed|come[EW:came] off.,and and and the then then balloon was c c comed off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and (then) then it was was flewing[EW:flying] away.,and then then it was was flewing away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and) (and the) and the rabbit was happy.,and and the and the rabbit was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and then he was take/ing it off.,and then he was taking it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and then he flewed|fly[EW:flew] away.,and then he flewed away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and then) and then he was mad.,and then and then he was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,when he saw (the) (a) the same balloon with the man he was go/ing to go get one.,when he saw the a the same balloon with the man he was going to go get one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and then (he flew the) all of them flewed|fly[EW:flew] away.,and then he flew the all of them flewed away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,he what?,he what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,all of them flew away?,all of them flew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,when he sawed|see[EW:saw] it he said I have one [EU]?,when he sawed it he said I have one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and then he was happy.,and then he was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and then) and then he give|give[EW:gave] one to him.,and then and then he give one to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and then he was flown[?] away.,and then he was flown away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and then he was gone.,and then he was gone +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and (then he) then he was : sad.,and then he then he was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and then he saw another person.,and then he saw another person +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and he) (and) and the doctor said I have one [EU]?,and he and and the doctor said I have one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and the doctor said no.,and the doctor said no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and then) and then he got[EW:had] two more left.,and then and then he got two more left +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and) (and) and he want|want[EW:wanted] one.,and and and he want one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,so he gived|give[EW:gave] one (to) to the bunny one to the other.,so he gived one to to the bunny one to the other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,(and) (and) and he have|have[EW:had] the same one.,and and and he have the same one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/575.slt,and (uh) he was happy.,and uh he was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the elephant and : the giraffe play with the ball.,the elephant and the giraffe play with the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the ball bounce/3s into the water.,the ball bounces into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the giraffe (comes a) go/3s and get/3s it.,the giraffe comes a goes and gets it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the elephant : (pick) pick/3s it up (for the) for the giraffe.,the elephant pick picks it up for the for the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,: (uh) : they play[-:] : with the ball.,uh they play with the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the elephant and them (was uh) : were play/ing [EU].,the elephant and them was uh were playing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the elephant want/ed to play tag[-:].,the elephant wanted to play tag +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the giraffe chase/3s the elephant.,the giraffe chases the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,and the elephant : fall/3s.,and the elephant falls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the elephant get/3s a booboo.,the elephant gets a booboo +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the elephant : need/3s : a bandaid.,the elephant needs a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,it hurt/3s.,it hurts +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,it feels better.,it feels better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the lifeguard get/3s mad.,the lifeguard gets mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the giraffe play/3s with his : (uh) plane.,the giraffe plays with his uh plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,it was fly/ing.,it was flying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the elephant (was) : snatch/ed [EU].,the elephant was snatched +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,(an) (an) and she play/ed with it.,an an and she played with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,(she) it fell in the water.,she it fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the giraffe is mad at the elephant.,the giraffe is mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the lifeguard (uh) : try/3s : to get it.,the lifeguard uh tries to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the elephant ask/ed if he can get it.,the elephant asked if he can get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,he reach/3s for it.,he reaches for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,like[!] he can not get it.,like he can not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,they get a net.,they get a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,(s) they scoop it out.,s they scoop it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,and they give it back to the giraffe.,and they give it back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,: let us play with it!,let us play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,Bunny and Dog make a castle.,Bunny and Dog make a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the dog build/3s it.,the dog builds it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the rabbit pour/3s sand on the castle.,the rabbit pours sand on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,(it) it is broken.,it it is broken +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the dog is cry/ing.,the dog is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,dog meet/3s the rabbit.,dog meets the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,they eat.,they eat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the rabbit get/3s a tummyache.,the rabbit gets a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,he feel/3s sick.,he feels sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the dog call/3s (for hel) the doctor.,the dog calls for hel the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the dog : ask|ask[EW:asks] : to help him.,the dog ask to help him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,and : the doctor : (uh) (what was it : uh) : check/ed (it) his throat.,and the doctor uh what was it uh checked it his throat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the doctor take/3s him : away.,the doctor takes him away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the rabbit come/3s and meet/3s the dog because he has a balloon.,the rabbit comes and meets the dog because he has a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the rabbit want/3s to hold the balloon.,the rabbit wants to hold the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,he hold/3s it.,he holds it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,he let/3s it go.,he lets it go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the dog is mad.,the dog is mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,*the balloon man come/3s [EU].,balloon man comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the rabbit want/3s a balloon.,the rabbit wants a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,(um) : the rabbit : has no money.,um the rabbit has no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,so he can not have a balloon.,so he can not have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,he walk/3s away : to the doctor.,he walks away to the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,the doctor give/3s : the balloon man money.,the doctor gives the balloon man money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/615.slt,they have fun with the balloon/s.,they have fun with the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,the elephant was bounce/ing a ball.,the elephant was bouncing a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,: the ball fell in the water.,the ball fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,: I do not know what that thing is [~_child_is_whispering] [+_bch].,I do not know what that thing is +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,: some kind of thing was come/ing after it.,some kind of thing was coming after it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,he gived[EW:gave] it back to the elephant.,he gived it back to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,the elephant was (hug/ing) hug/ing it.,the elephant was hugging hugging it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,the girl want/ed to (um) jump on this thing : that go/3s in the water.,the girl wanted to um jump on this thing that goes in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,she was run/ing.,she was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,: and she slip/ed.,and she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,she had a[EW:an] owie on her knee.,she had a owie on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,(uh) : that guy (um : come/3s in the) : came and (see her) saw her.,uh that guy um comes in the came and see her saw her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,: she was cry/ing.,she was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,and that guy was go/ing to[:_gonna] put a bandaid on it.,and that guy was going to put a bandaid on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,she was sit/ing on the bench.,she was sitting on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,: the guy said (the) : just look at the sign.,the guy said the just look at the sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,: the[-:] : guy had a[EW:an] airplane.,the guy had a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,: he was fly/ing it.,he was flying it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,: the girl took it.,the girl took it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,: she was drive/ing it.,she was driving it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,then (the) : the airplane fell.,then the the airplane fell +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,the man got mad : at the elephant.,the man got mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,the coach saw (um) : the elephant *was sad [EU].,the coach saw um the elephant sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,(um) : the girl was : (do/ing something) talk/ing to the coach.,um the girl was doing something talking to the coach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,the coach was try/ing to get it.,the coach was trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,the : guy was cry/ing.,the guy was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,some kind of woman came and (uh) help/ed them.,some kind of woman came and uh helped them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,she caught : it.,she caught it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,she gived|give[EW:gave] it back to him.,she gived it back to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,and then the boy was hug/ing it.,and then the boy was hugging it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,there was a girl that (uh) was build/ing a castle.,there was a girl that uh was building a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,and the (um) boy want/ed to help.,and the um boy wanted to help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,: (um) he was (uh) do/ing : the shovel/ing.,um he was uh doing the shoveling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,and the (um) girl was (uhm build/ing it) : do/ing the rest.,and the um girl was uhm building it doing the rest +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,: (uh) : the boy spill/ed the sand on[!] the castle.,uh the boy spilled the sand on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,the (ss) castle (sss) sunk.,the ss castle sss sunk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,the girl was : cry/ing.,the girl was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,and the boy was : sad.,and the boy was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,(there[-:] was a guy) there was another guy come/ing by with a basket.,there was a guy there was another guy coming by with a basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,and the other guy had a basket too.,and the other guy had a basket too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,they had a picnic.,they had a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,the guy ate fast.,the guy ate fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,and then his tummy was (like) hurt/ing.,and then his tummy was like hurting +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,(he was um) his tummy (was hurt/ing) get[EW:got] hurt [~_get_hurt_was__whispered_very_quietly].,he was um his tummy was hurting get hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,(uh) (there was) (uh) the guy was (um) find/ing (a) a doctor.,uh there was uh the guy was um finding a a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,and there was a doctor come/ing.,and there was a doctor coming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,he got her and : bringed|bring[EW:brought] her over to him.,he got her and bringed her over to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,and[-:] the girl was sit/ing on the blanket and fix/ing him.,and the girl was sitting on the blanket and fixing him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,and what?,and what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,do/ing something to him [+_bch].,doing something to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,: and then : she (uh) : brought him to the doctor.,and then she uh brought him to the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,there was a girl with a balloon on her (uh) : thingy.,there was a girl with a balloon on her uh thingy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,the boy took it off.,the boy took it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,the balloon : he : untie/ed it.,the balloon he untied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,it flew up.,it flew up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,the girl was mad.,the girl was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,: the boy found a : guy with a balloon.,the boy found a guy with a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,he pick/ed a balloon.,he picked a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,: five buck/s it said.,five bucks it said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,: he had no (buck/s) five buck/s [EU].,he had no bucks five bucks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,: (there was a doctor) there was a nurse.,there was a doctor there was a nurse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,and : the guy will not give (it to hh) (um) the balloon to him.,and the guy will not give it to hh um the balloon to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,: he said the guy did not give it to him.,he said the guy did not give it to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,he gived|give[EW:gave] some money : (for him) to him.,he gived some money for him to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/606.slt,they both got one.,they both got one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,the giraffe was go/ing to[:_gonna] take a swim with the elephant.,the giraffe was going to take a swim with the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,(um) the elephant drop/ed the ball.,um the elephant dropped the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,the giraffe (sw) is swim/ing to get it.,the giraffe sw is swimming to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,the giraffe : give/3s the ball to the elephant.,the giraffe gives the ball to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,(the elephant t) the elephant get/3s the ball.,the elephant t the elephant gets the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,the giraffe and the elephant are go/ing to [~_gonna] take a swim again.,the giraffe and the elephant are going to take a swim again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,the elephant is (run/ing) : (well not) about to run.,the elephant is running well not about to run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,she is run/ing.,she is running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,she hurt/3s her knee.,she hurts her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,the lifeguard come/3s.,the lifeguard comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,(she puts a ban) the lifeguard put/3s a bandaid on her knee.,she puts a ban the lifeguard puts a bandaid on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,and then : (she is o) she is okay.,and then she is o she is okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,the lifeguard is tell/ing her not to run in the pool again.,the lifeguard is telling her not to run in the pool again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,the giraffe and the elephant (are g) (want to take a swi) [~_well] they are not take/ing a swim.,the giraffe and the elephant are g want to take a swi they are not taking a swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,but they are by the pool with an airplane.,but they are by the pool with an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,(um) the giraffe is play/ing with the airplane.,um the giraffe is playing with the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,the elephant take/3s it.,the elephant takes it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,she throw/3s it in the pool.,she throws it in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,or it drop/3s.,or it drops +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,it is : sink/ing.,it is sinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,and the giraffe is mad.,and the giraffe is mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,the lifeguard : is talk/ing to them.,the lifeguard is talking to them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,the lifeguard is talk/ing to them again.,the lifeguard is talking to them again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,the lifeguard try/3s to get it.,the lifeguard tries to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,(they are talk/ing) [~_I_mean] they are sad.,they are talking they are sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,(a women ca) a women (came) come/3s with a net.,a women ca a women came comes with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,she pick/3s it up with the net.,she picks it up with the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,the giraffe (hug/3s it) [~_I_mean_yeah] now he hug/3s it.,the giraffe hugs it now he hugs it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,she is give/ing it to her.,she is giving it to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,and now (h) he hug/3s it.,and now h he hugs it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,the rabbit and it look/s like : a dog [EU].,the rabbit and it looks like a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,they are play/ing in the sandbox.,they are playing in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,and they made a castle.,and they made a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,the rabbit is (make/ing) dig/ing out of the bucket.,the rabbit is making digging out of the bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,the rabbit is pour/ing it on the castle.,the rabbit is pouring it on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,the castle has a big pile of sand on it.,the castle has a big pile of sand on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,(he try/3s to make) she try/3s to make it again.,he tries to make she tries to make it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,(they are go/ing for a picnic again) [~_well] they are go/ing for a picnic [~_though].,they are going for a picnic again they are going for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,(they are eat/ing) [~_I_mean] the rabbit is eat/ing all the food.,they are eating the rabbit is eating all the food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,(he) he has a stomachache.,he he has a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,he is get/ing dizzy.,he is getting dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,he run/3s for his mom.,he runs for his mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,she pull/3s her.,she pulls her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,he is crazy : still[~!_laughing].,he is crazy still +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,then he is better.,then he is better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,and his mom take/3s him home.,and his mom takes him home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,the dog is pull/ing : a wagon : with a balloon on it.,the dog is pulling a wagon with a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,(the rab) (the rabbit look/ed) the rabbit look/ed at the balloon.,the rab the rabbit looked the rabbit looked at the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,he (is) try/3s to tie it off.,he is tries to tie it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,it go/3s up in the air.,it goes up in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,it is totally up now.,it is totally up now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,then they see a rabbit with lot/s of balloon/s.,then they see a rabbit with lots of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,they ask for one.,they ask for one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,it is five cent/s.,it is five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,they are : sad[~!_laughing] that they did not get one.,they are sad that they did not get one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,then : the rabbit/z mom is over there.,then the rabbit's mom is over there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,(she) he ask/3s [~_pronounced_'askses'] her (for a balloon) : for money for a balloon.,she he asks her for a balloon for money for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,she give/3s : the balloon person money.,she gives the balloon person money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/661.slt,(they both) they both get a balloon.,they both they both get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,they were play/ing[-:] : with their beach ball the elephant and the giraffe.,they were playing with their beach ball the elephant and the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,(then) but then : the ball : (bump) : jump/ed into the[-:] water.,then but then the ball bump jumped into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,the giraffe went and swam and got it.,the giraffe went and swam and got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and (then i) then the giraffe gave it to the elephant.,and then i then the giraffe gave it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then : the elephant was so proud.,and then the elephant was so proud +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,first : they[-:] were look/ing at the : water : the giraffe and the elephant.,first they were looking at the water the giraffe and the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,(sh) the elephant : ask/ed (if) if she could go in[!] the water.,sh the elephant asked if if she could go in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,then she ran[-:][!].,then she ran +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,but then she slip/ed and got a really bad cut.,but then she slipped and got a really bad cut +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then : she start/ed cry/ing.,and then she started crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then the coach came along.,and then the coach came along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and the elephant was feel/ing very sad.,and the elephant was feeling very sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,but then (when the) : when the coach was go/ing to [~_gonna] put a bandaid on it : the elephant cry/ed and cry/ed even more.,but then when the when the coach was going to put a bandaid on it the elephant cried and cried even more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,but then : (when) : when she got onto : one[-:] of the bench/s[!] it did not[?] [~_microphone_fell_off] [+/]^,but then when when she got onto one of the benches it did not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,when she got onto one of the bench/s it did not?,when she got onto one of the benches it did not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,"[+,] (it did not) : it did not feel : any more hurt[!] any more [EU].",it did not it did not feel any more hurt any more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,(but then) : (but then the k) : (the) but then the elephant was try/ing to take it off.,but then but then the k the but then the elephant was trying to take it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and (then the eleph) then the coach : said do not take it off.,and then the eleph then the coach said do not take it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,one day (there was) : the elephant and the giraffe : are play/ing with (the) : the giraffe/z : airplane.,one day there was the elephant and the giraffe are playing with the the giraffe's airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and[-:] : the elephant look/ed at the airplane : when the giraffe was play/ing with it.,and the elephant looked at the airplane when the giraffe was playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then : the elephant took it away and play/ed with it.,and then the elephant took it away and played with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then[-:] : the giraffe scream/ed.,and then the giraffe screamed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,but then she threw it in the water[-:] .,but then she threw it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then the giraffe was very angry at her.,and then the giraffe was very angry at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and it sinks[?].,and it sinks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then : the coach came and saw.,and then the coach came and saw +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and the elephant was very sad (that) : that she did that.,and the elephant was very sad that that she did that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and the elephant : coach was try/ing to get it out.,and the elephant coach was trying to get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then : (the) : the giraffe cry/ed and cry/ed.,and then the the giraffe cried and cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then a momma coach thing came along.,and then a momma coach thing came along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and she had a net.,and she had a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and she pull/ed it out.,and she pulled it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then she gave it to the (gira) giraffe.,and then she gave it to the gira giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then the giraffe was (ha) happy to play with it again.,and then the giraffe was ha happy to play with it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,the doggy and the (uh) : rabbit were make/ing a sandcastle.,the doggy and the uh rabbit were making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and they just finish/ed it.,and they just finished it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and they were just do/ing a little bit of decoration/s.,and they were just doing a little bit of decorations +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then the rabbit put lot/s of sand on it.,and then the rabbit put lots of sand on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then the doggy : grew : sad.,and then the doggy grew sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then : (sh) she look/ed at it again.,and then sh she looked at it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then she cry/ed because it was gone.,and then she cried because it was gone +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,one day the puppy : and the rabbit were just walk/ing along through a : dusty hill.,one day the puppy and the rabbit were just walking along through a dusty hill +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and [+/]^,and +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,through a what?,through a what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,a dusty hill [+_bch].,a dusty hill +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then (they) : they just pack/ed : some food.,and then they they just packed some food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then : the rabbit began to eat and got dizzy : and then got dizzier : and ate all his candy and ate all his food.,and then the rabbit began to eat and got dizzy and then got dizzier and ate all his candy and ate all his food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then : he fell down.,and then he fell down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,(and he) and then the puppy : ran as fast as she could (to ca) : to get the doctor.,and he and then the puppy ran as fast as she could to ca to get the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,(sh) she pull/ed[!] the doctor/z coat as hard[!] as she could (to get him) to get : her over there.,sh she pulled the doctor's coat as hard as she could to get him to get her over there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then she look/ed at the bunny.,and then she looked at the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,(and) : (and) : and (she) : she felt : his forehead.,and and and she she felt his forehead +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then : (she) : (he got to s) : he got to go get a sticker.,and then she he got to s he got to go get a sticker +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and he got to go home.,and he got to go home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,one day the bunny found the doggy again have/ing her wagon and a balloon : right tie/ed to it [EU].,one day the bunny found the doggy again having her wagon and a balloon right tied to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,he want/ed to hold the balloon.,he wanted to hold the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,then he untie/ed it.,then he untied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,(and it) : but then : he lost the balloon.,and it but then he lost the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,(the) the puppy got very[-:][!] angry.,the the puppy got very angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then (they saw) the bunny : saw (a bunny) : another bunny hold/ing lot/s of balloon/s for sale.,and then they saw the bunny saw a bunny another bunny holding lots of balloons for sale +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,he said can I have one of those please?,he said can I have one of those please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,five cent/s he said.,five cents he said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,but then : the puppy and the rabbit were very sad.,but then the puppy and the rabbit were very sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,so then the rabbit : (go) went (to) : to get : the doctor : for a balloon.,so then the rabbit go went to to get the doctor for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,the doctor paid for a balloon : for both[!] of them.,the doctor paid for a balloon for both of them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/618.slt,and then they had their both balloon/s.,and then they had their both balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,once upon a time[-:] there was a donkey and a[EW:an] : elephant.,once upon a time there was a donkey and a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,they had a new ball and play/ed on the beach.,they had a new ball and played on the beach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,the ball fell in the water.,the ball fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,the[-:] donkey went to get it.,the donkey went to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,it was : elephant/z (b) : ball.,it was elephant's b ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,(s) and donkey catched|catch[EW:caught] it.,s and donkey catched it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,elephant said thank you.,elephant said thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,once upon a time there was[-:] a donkey and a[EW:an] elephant (that) : that play/ed[-:] : on : the beach.,once upon a time there was a donkey and a elephant that that played on the beach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,and there was no[-:][!] run/ing.,and there was no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,elephant : try/ed to jump into the pool.,elephant tried to jump into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,but she could not.,but she could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,she ran[-:].,she ran +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,but that was against the law.,but that was against the law +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,she fell[-:] down (and) : and scrape/ed her knee.,she fell down and and scraped her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,donkey came run/ing and call/ed : her husband.,donkey came running and called her husband +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,she cry/ed and cry/ed and cry/ed.,she cried and cried and cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,good thing : her husband gave her a bandaid.,good thing her husband gave her a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,she sat on the bench and smile/ed[-:].,she sat on the bench and smiled +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,once upon a time there was a donkey and an elephant.,once upon a time there was a donkey and an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,the donkey had an airplane that was attach/ed to a cord.,the donkey had an airplane that was attached to a cord +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,elephant took it right out of his hand/s.,elephant took it right out of his hands +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,elephant drop/ed it in the water.,elephant dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,(and that was) : and that[-:] was all [+_bch].,and that was and that was all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,donkey was mad.,donkey was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,so he : grinch/ed his face at her.,so he grinched his face at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,good thing elephant[!] call/ed her friend.,good thing elephant called her friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,elephant cry/ed can you please get the airplane.,elephant cried can you please get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,I cannot get it.,I cannot get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,he try/ed.,he tried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,he stretch/ed hisself[EW:himself].,he stretched hisself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,(and) : and he try/ed[-:] to get it.,and and he tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,he could not get it.,he could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,so donkey cry/ed.,so donkey cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,good thing another[!] girl came along with a net and caught it.,good thing another girl came along with a net and caught it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,(she) : she caught it from the water.,she she caught it from the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,and it was dry.,and it was dry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,he never bring|bring[EW:brought] his airplane back to the beach.,he never bring his airplane back to the beach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,thank you.,thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,once upon a time there was : a bunny and a dog.,once upon a time there was a bunny and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,they play/ed in the sandbox all day.,they played in the sandbox all day +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,they made a sandcastle.,they made a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,and then : they made another.,and then they made another +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,the sandcastle broke.,the sandcastle broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,they cry/ed.,they cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,once upon a time there was (a bunny) : [~_I_mean] a bunny and a dog.,once upon a time there was a bunny a bunny and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,they were go/ing on a picnic through the wood/s.,they were going on a picnic through the woods +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,they laid out their blanket : and sat down : got their food out : and took a bite.,they laid out their blanket and sat down got their food out and took a bite +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,rabbit was full[-:].,rabbit was full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,doggy was not[-:].,doggy was not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,rabbit got sick.,rabbit got sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,and dog did not.,and dog did not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,(rabbit/z mom) : rabbit/z doctor[-:] was there stand/ing.,rabbit's mom rabbit's doctor was there standing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,dog went to get some help.,dog went to get some help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,(the rabbit) the doctor rabbit would not come[!].,the rabbit the doctor rabbit would not come +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,so : dog pull/ed her.,so dog pulled her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,uhoh this : bunny is very sick.,uhoh this bunny is very sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,we will take him to the doctor/z office.,we will take him to the doctor's office +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,once upon a time there was a rabbit and a dog : who went for a party that had a balloon.,once upon a time there was a rabbit and a dog who went for a party that had a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,they tie/ed the balloon onto their red wagon.,they tied the balloon onto their red wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,later it fell off.,later it fell off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,so they tie/ed it on again.,so they tied it on again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,then the balloon fell off[!] and went up into the air.,then the balloon fell off and went up into the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,they shout/ed help.,they shouted help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,the balloon was way[!] up in the sky.,the balloon was way up in the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,and dog was mad.,and dog was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,good thing they saw a balloon man.,good thing they saw a balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,the rabbit said can I please have : a balloon?,the rabbit said can I please have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,he said : five dollar/s.,he said five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,and he had none.,and he had none +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,(so the r) so the (b) balloon man said I guess you can not buy one.,so the r so the b balloon man said I guess you can not buy one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,the doctor : was : over on the street/s : look/ing around to see for a treat [EU].,the doctor was over on the streets looking around to see for a treat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,rabbit said he will not give me[:_gimme] a balloon.,rabbit said he will not give me a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,so : the doctor gave him some money.,so the doctor gave him some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,and they got two balloon/s.,and they got two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/656.slt,they said hurray[-:]!,they said hurray +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,there is a giraffe and an elephant.,there is a giraffe and an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,they are play/ing by a pool.,they are playing by a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so the elephant is sort of[:_sorta] tease/ing the giraffe.,and so the elephant is sort of teasing the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so she is play/ing with the ball.,and so she is playing with the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so she throw/3s the ball in the water.,and so she throws the ball in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and the (gir) giraffe is try/ing to get it.,and the gir giraffe is trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,(so) and it is in the deep end.,so and it is in the deep end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and : (the um) the elephant is sort of[:_sorta] : like [~__gestures] she is cover/ing her eye/s.,and the um the elephant is sort of like she is covering her eyes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so the giraffe : is get/ing the ball.,and so the giraffe is getting the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,but water is squirt/ing out of his ear/s.,but water is squirting out of his ears +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,(and then) so : (um) the elephant got the ball.,and then so um the elephant got the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and the giraffe is still in the water.,and the giraffe is still in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so : the elephant hand/3s the ball to the giraffe.,and so the elephant hands the ball to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then : the giraffe is all wet.,and then the giraffe is all wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and : now the elephant has the ball.,and now the elephant has the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and she is play/ing with it.,and she is playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,there is the giraffe and elephant again.,there is the giraffe and elephant again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so they want to[:_wanna] go swim/ing together.,and so they want to go swimming together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then they saw a sign that says no run/ing.,and then they saw a sign that says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,but the elephant is run/ing anyways into the pool.,but the elephant is running anyways into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so : the elephant slip/3s.,and so the elephant slips +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and[-:] she fall/3s.,and she falls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and (then) now the giraffe is run/ing to save her.,and then now the giraffe is running to save her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then she got a bruise by the swimming pool.,and then she got a bruise by the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,so the giraffe is still run/ing.,so the giraffe is still running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so the giraffe catch/3s up to her.,and so the giraffe catches up to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then the lifeguard come/3s.,and then the lifeguard comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so (um) she is cry/ing.,and so um she is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and[-:] the lifeguard get/3s her a bandaid.,and the lifeguard gets her a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and the giraffe is still by her.,and the giraffe is still by her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then so the lifeguard is ask/ing her how did she fall.,and then so the lifeguard is asking her how did she fall +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then[-:] she is sort of surprise/ed that he ask/ed that question.,and then she is sort of surprised that he asked that question +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then the giraffe is[-:] still by her.,and then the giraffe is still by her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then she tell/3s him : what she was do/ing.,and then she tells him what she was doing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then : (um) the lifeguard say/3s look at the sign.,and then um the lifeguard says look at the sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,it says no run/ing.,it says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,(there is) there is the giraffe and the elephant again.,there is there is the giraffe and the elephant again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and they are by the pool.,and they are by the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,(and then) so[-:] the giraffe got his plane.,and then so the giraffe got his plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so he is play/ing with it.,and so he is playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then (the) the elephant is get/ing dizzy because : the giraffe is do/ing loop/s with the plane.,and then the the elephant is getting dizzy because the giraffe is doing loops with the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,(and then) so the elephant like/3s it so much : (she) she just took it out of the giraffe/z hand.,and then so the elephant likes it so much she she just took it out of the giraffe's hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and she was play/ing with it.,and she was playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and (then it) then it slip/ed out of her finger/s.,and then it then it slipped out of her fingers +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and it : went in the pool.,and it went in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so now it is sink/ing.,and so now it is sinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and : the giraffe is mad at her.,and the giraffe is mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then she like [~_makes_sound_'ahhhhhh'].,and then she like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and (um) : the lifeguard come/3s again.,and um the lifeguard comes again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then : he look/3s in the pool.,and then he looks in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and he see/3s the plane.,and he sees the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then the elephant is try/ing to tell the lifeguard : I did not do it on purpose.,and then the elephant is trying to tell the lifeguard I did not do it on purpose +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,I did not do it on purpose.,I did not do it on purpose +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,(and then) so the lifeguard is reach/ing over the pool to try to get it.,and then so the lifeguard is reaching over the pool to try to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,(and then) so[-:] the giraffe is really really really sad.,and then so the giraffe is really really really sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then the lifeguard did not reach it.,and then the lifeguard did not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and (the) the elephant is really sad that she did that.,and the the elephant is really sad that she did that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,(and then) so[-:] (s) another elephant come/3s up with a net.,and then so s another elephant comes up with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then (all of the three um) (the two elephant/s) the lifeguard the elephant and the giraffe : are surprise/ed that somebody knew that the plane was sink/ing and : that they got a net.,and then all of the three um the two elephants the lifeguard the elephant and the giraffe are surprised that somebody knew that the plane was sinking and that they got a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so : the elephant get/3s the plane out of the water.,and so the elephant gets the plane out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and the giraffe is really happy.,and the giraffe is really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then so he get/3s to play with it again.,and then so he gets to play with it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then he is really happy.,and then he is really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,so now : like she is being careful to play with the plane.,so now like she is being careful to play with the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,(um) there is[EW:are]: two bunny/s (in) in the sandbox.,um there is two bunnies in in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and [~_well] one bunny come/3s along and ask/3s if he can play in the sandbox.,and one bunny comes along and asks if he can play in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so : they are play/ing together.,and so they are playing together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and they are build/ing a sandcastle.,and they are building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so : one of the bunny/s pour/3s : some sand on the castle.,and so one of the bunnies pours some sand on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then it all melt/3s.,and then it all melts +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,(and then) so they start build/ing it again.,and then so they start building it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,(um) it is the same bunny and the other bunny again.,um it is the same bunny and the other bunny again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so they are go/ing on a picnic.,and so they are going on a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so one of the bunny/s are[EW:is] eat/ing everything up.,and so one of the bunnies are eating everything up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and he is get/ing sick.,and he is getting sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,(um) and so : then he feel/3s like he is really hot.,um and so then he feels like he is really hot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then the other bunny is still eat/ing.,and then the other bunny is still eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so : the bunny is get/ing really dizzy.,and so the bunny is getting really dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and he is really hot : and full.,and he is really hot and full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then so : (um) one of the bunny/s find/*3s like a doctor.,and then so um one of the bunnies find like a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,they call a doctor.,they call a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,so : a doctor come/3s.,so a doctor comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so : (um) she see/3s him lie/ing in the sand.,and so um she sees him lying in the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then so the bunny is pull/ing : the doctor/z arm to come quicker.,and then so the bunny is pulling the doctor's arm to come quicker +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then so : the doctor is like point/ing to something.,and then so the doctor is like pointing to something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and : the bunny sort of has to follow it.,and the bunny sort of has to follow it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so then the doctor sort of [~_sorta] become/3s friend/s with the patient.,and so then the doctor sort of becomes friends with the patient +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,(and then) so they walk along the sidewalk.,and then so they walk along the sidewalk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,(um) it is the same bunny/s again [EU].,um it is the same bunnies again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,so one of the bunny/s have|have[EW:has] a wagon and a balloon attach/ed to it.,so one of the bunnies have a wagon and a balloon attached to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so[-:] the other bunny sort of [~_sorta] want/3s the balloon.,and so the other bunny sort of wants the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,(but) and the other bunny is sort of [~_sorta] shock/ed.,but and the other bunny is sort of shocked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,like you can not have it.,like you can not have it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so the bunny untie/3s the string : (te) so he can have it.,and so the bunny unties the string te so he can have it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then the other bunny is sort of [~_sorta] mad.,and then the other bunny is sort of mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,(and then) so (he um) the bunny who has the balloon : it slip/3s out of his finger/s.,and then so he um the bunny who has the balloon it slips out of his fingers +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then it go/3s up in the air.,and then it goes up in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and they can not catch it.,and they can not catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,so it go/3s higher and higher.,so it goes higher and higher +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and the bunny get/3s madder and madder.,and the bunny gets madder and madder +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then so they see another : balloon guy that has some more balloon/s.,and then so they see another balloon guy that has some more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then so[-:] (um) they are get/ing a new balloon.,and then so um they are getting a new balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and : the balloon/s are five cent/s.,and the balloons are five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,but the bunny do/3s not have five cent/s.,but the bunny does not have five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,so they will not get a balloon.,so they will not get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then both of them come up again.,and then both of them come up again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and : (they want a) they want a balloon even though they do not have five cent/s.,and they want a they want a balloon even though they do not have five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then they see the doctor.,and then they see the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and so : one of the bunny/s are[EW:is] run/ing to see the doctor again.,and so one of the bunnies are running to see the doctor again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then (so the) so the bunny ask/3s for some money to get a balloon.,and then so the so the bunny asks for some money to get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then so : the doctor is give/ing him some money so they can have a balloon/s[EW:balloon].,and then so the doctor is giving him some money so they can have a balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and then so they are both happy[~!_laughing].,and then so they are both happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/768.slt,and they are play/ing with them.,and they are playing with them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,two elephant/s want/ed to play ball.,two elephants wanted to play ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and the ball accidentally went : in the water.,and the ball accidentally went in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and the zebra jump/ed in and : was swim/ing to the ball.,and the zebra jumped in and was swimming to the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and they got the ball out.,and they got the ball out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,(an) : and (uh) : they could play again.,an and uh they could play again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,(and they s) and they start/ed play/ing.,and they s and they started playing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,(the) : the two kid/s want/ed to play : tag.,the the two kids wanted to play tag +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,they were run/ing.,they were running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,they were run/ing : and run/ing.,they were running and running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,the girl[-:] (um : um :) sweeped|sweep[EW:swept] off (um) her feet (with the) when the water splash/ed up.,the girl um um sweeped off um her feet with the when the water splashed up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and she hurt her knee.,and she hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,(and everybody wa) and a : lifeguard was come/ing over.,and everybody wa and a lifeguard was coming over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and they put a bandaid on her.,and they put a bandaid on her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,(and she) : and she went : to (um the) the bench.,and she and she went to um the the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and the lifeguard said stay there for awhile.,and the lifeguard said stay there for awhile +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,the two kid/s had an (airplane) : (a tor) a toy airplane.,the two kids had an airplane a tor a toy airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and they were play/ing with it.,and they were playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and the elephant took it.,and the elephant took it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and she drop/ed it into the water.,and she dropped it into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and the : giraffe was mad at her.,and the giraffe was mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and the life (gyar) guard came over.,and the life gyar guard came over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and : the girl explain/ed to[-:] (uh) the lifeguard what happen/ed.,and the girl explained to uh the lifeguard what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and the lifeguard : try/ed to : get the plane : back.,and the lifeguard tried to get the plane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,but he could not.,but he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,(an) : and so : (the) : another lifeguard came.,an and so the another lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and she : grab/ed it with a net.,and she grabbed it with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and she gave it back to the giraffe.,and she gave it back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and they were happy again.,and they were happy again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,[~_okay] : (uh : the two ki) the two bunny/s were make/ing a sandcastle.,uh the two ki the two bunnies were making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and : they got a sand bucket.,and they got a sand bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,(and they) : and the bunny dump/ed the sand on top of the castle.,and they and the bunny dumped the sand on top of the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,(and the s) : and it accidentally (um) : broke (it) the sandcastle.,and the s and it accidentally um broke it the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and they try/ed to fix it.,and they tried to fix it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,the two bunny/s were[-:] go/ing for a picnic.,the two bunnies were going for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,when they got there they (b) got out everything.,when they got there they b got out everything +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and : (the) : the boy bunny ate everything.,and the the boy bunny ate everything +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,(and he was ver) and he was full.,and he was ver and he was full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and the doctor came by.,and the doctor came by +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and the : girl (um) : ask/ed the (do) doctor if he could help the bunny.,and the girl um asked the do doctor if he could help the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,(s) and[-:] the doctor went with her.,s and the doctor went with her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and the doctor : was check/ing him.,and the doctor was checking him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and[-:] he said that (sh) you should be all right.,and he said that sh you should be all right +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,the two bunny/s were (um) push/ing a cart (wheel/ing) wheeler.,the two bunnies were um pushing a cart wheeling wheeler +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and there was a balloon on it.,and there was a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,they try/ed to untie the balloon.,they tried to untie the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and the balloon went up.,and the balloon went up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and the girl was mad.,and the girl was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and there were other balloon/s (o) over (wi) with the other bunnny.,and there were other balloons o over wi with the other bunnny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and the[-:] boy : want/ed a balloon.,and the boy wanted a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,: he wanted five balloon/s.,he wanted five balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,but he could not get any.,but he could not get any +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,so the doctor came.,so the doctor came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,(um : the kid : um was) : the bunny was point/ing to the : balloon man.,um the kid um was the bunny was pointing to the balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and the doctor paid him : cash.,and the doctor paid him cash +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/771.slt,and they both[!] got a balloon.,and they both got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,one day giraffe and elephant : went play/ing : by the pool [EU].,one day giraffe and elephant went playing by the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,they were play/ing with a ball.,they were playing with a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,but accidentally : giraffe : bounc/ed it into the pool.,but accidentally giraffe bounced it into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,so : (g) giraffe (a d d) jump/ed into the water and went after the ball.,so g giraffe a d d jumped into the water and went after the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,then he gave it (to) to elephant.,then he gave it to to elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,elephant thank/ed him very much.,elephant thanked him very much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,one day giraffe and elephant went to the swimming pool.,one day giraffe and elephant went to the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: elephant : want/ed to go on the diving board : and start/ed run/ing : across the deck.,elephant wanted to go on the diving board and started running across the deck +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,suddenly elephant slip/ed and scrape/ed her knee.,suddenly elephant slipped and scraped her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: the lifeguard came over : (and) : and gave her a bandage.,the lifeguard came over and and gave her a bandage +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: elephant went over to a bench to sit down.,elephant went over to a bench to sit down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: then the lifeguard told her you are not suppose/ed to be run/ing on the deck.,then the lifeguard told her you are not supposed to be running on the deck +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,one day giraffe and elephant went to play by the swimming pool.,one day giraffe and elephant went to play by the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,giraffe brought along his airplane.,giraffe brought along his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: he made it fly (re) very high up.,he made it fly re very high up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: then : suddenly elephant snatch/ed it from him : then accidentally drop/ed it in the water.,then suddenly elephant snatched it from him then accidentally dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: giraffe was very angry at elephant.,giraffe was very angry at elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: then the lifeguard came over.,then the lifeguard came over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: they told (him) him what had happen/ed.,they told him him what had happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,he try/ed get/ing it.,he tried getting it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,but he could not reach.,but he could not reach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: (th) suddenly giraffe start/ed cry/ing.,th suddenly giraffe started crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: then someone else came over : with a net.,then someone else came over with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: and then she got it out.,and then she got it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: she gave it to a : giraffe : who was very happy after that.,she gave it to a giraffe who was very happy after that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,one day two animals were play/ing in (th) a sandbox.,one day two animals were playing in th a sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: one was a rabbit.,one was a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,and one was a dog.,and one was a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,the dog had built a sandcastle.,the dog had built a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,the rabbit start/ed help/ing out.,the rabbit started helping out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,(but the ra) but : he dump/ed (the bucket of sand on : th) a bucket of sand on the castle.,but the ra but he dumped the bucket of sand on th a bucket of sand on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,and there it stood : in : a heap of sand.,and there it stood in a heap of sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: suddenly the dog start/ed cry/ing.,suddenly the dog started crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: wi : and : guess that's it [+_bch].,wi and guess that's it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,one day : rabbit and dog went for a picnic.,one day rabbit and dog went for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: (they brought) rabbit brought a lot of food.,they brought rabbit brought a lot of food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,but dog only brought : a sandwich.,but dog only brought a sandwich +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,then rabbit ate all his food.,then rabbit ate all his food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,and dog just ate his sandwich and juice.,and dog just ate his sandwich and juice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,suddenly rabbit start/ed feel/ing dizzy : and then faint/ed.,suddenly rabbit started feeling dizzy and then fainted +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,(ss) then[-:] dog went for a doctor.,ss then dog went for a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,(the dog) the doctor came over : and told the rabbit not to eat as much.,the dog the doctor came over and told the rabbit not to eat as much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: then the rabbit start/ed (walk) go/ing home.,then the rabbit started walk going home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,one day : rabbit and dog went for a walk.,one day rabbit and dog went for a walk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,dog had a balloon : tie/ed to his wagon.,dog had a balloon tied to his wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: rabbit suddenly start/ed admire/ing the balloon : and then tie/ed it from the wagon.,rabbit suddenly started admiring the balloon and then tied it from the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,then suddenly he accidentally let go.,then suddenly he accidentally let go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,dog was very angry at rabbit.,dog was very angry at rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: then rabbit went to the balloon man.,then rabbit went to the balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,he ask/ed him for a balloon.,he asked him for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,the balloon man told rabbit that they were five cent/s.,the balloon man told rabbit that they were five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,but rabbit had nothing in his pocket/s.,but rabbit had nothing in his pockets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: so they could not buy one.,so they could not buy one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: then rabbit went : to the doctor and ask/ed him if he could (b) buy them a balloon.,then rabbit went to the doctor and asked him if he could b buy them a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,rabbit point/ed at the balloon man : and show/ed him that his (empties wer) pocket/s were empty.,rabbit pointed at the balloon man and showed him that his empties wer pockets were empty +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,: then the doctor bought (both) : both the dog and the rabbit a balloon.,then the doctor bought both both the dog and the rabbit a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/904.slt,they were very happy.,they were very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,[~!_sighs] (um) : a giraffe see/3s (um) : a[EW:an] elephant play[EW:playing] with a ball[-:] [~_oh] near a pool.,um a giraffe sees um a elephant play with a ball near a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,[~_oh] (um : i) it (uh) gets[EW:goes] in the water[-:].,um i it uh gets in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(and they bo) and (uh) I think the elephant cry/ed a lot.,and they bo and uh I think the elephant cried a lot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,so that xxx : back.,so that x back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,{whispers} want/3s what?,wants what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,the ball[-:] to play with it [+_bch].,the ball to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,so the giraffe go/3s there and (swim/3s ah for it) go/3s swim/ing for it.,so the giraffe goes there and swims ah for it goes swimming for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(um) he give/3s the ball back to[-:] (ooh) the (uh) elephant.,um he gives the ball back to ooh the uh elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: and : now the elephant and the giraffe are happy.,and now the elephant and the giraffe are happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,[~_okay] (a[-:] ) the[-:] elephant[-:] and the giraffe[-:] are (er) by the pool still.,a the elephant and the giraffe are er by the pool still +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and[-:] there is a no run/ing sign.,and there is a no running sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: and : (uh) the elephant (look/3s like) start/3s run/ing.,and uh the elephant looks like starts running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(ay) but the giraffe stay/3s right where he is.,ay but the giraffe stays right where he is +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: now (um : uh) it look/3s like the elephant (sli) *is slip/ing [EU].,now um uh it looks like the elephant sli slipping +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,[~_oh] now she has fallen.,now she has fallen +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and (the uh) sorry [+_bch].,and the uh sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,what?,what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,now the elephant (uh : i) has hurt herself.,now the elephant uh i has hurt herself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and : the giraffe (i[-:] ) look/3s like is go/ing for the lifeguard [EU].,and the giraffe i looks like is going for the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: the lifeguard is come/ing[-:].,the lifeguard is coming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and the giraffe is by the elephant.,and the giraffe is by the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and the elephant is cry/ing.,and the elephant is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: the lifeguard put a bandage on[-:] (um) her cut[-:].,the lifeguard put a bandage on um her cut +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: now the lifeguard is help/ing her : onto the bench.,now the lifeguard is helping her onto the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and the giraffe look/3s (uh) kind of happy that she is all right.,and the giraffe looks uh kind of happy that she is all right +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: now[-:] (uh) the lifeguard is[-:] tell/ing her not to run and that the sign say/3s no run/ing.,now uh the lifeguard is telling her not to run and that the sign says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,[~_okay] the (um[-:]) the giraffe has an airplane.,the um the giraffe has an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and the elephant[-:] look/3s like[-:] she want/3s to play with it.,and the elephant looks like she wants to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: the elephant is show/ing (you her er um) : how like to play with it and : that it is fun to play with.,the elephant is showing you her er um how like to play with it and that it is fun to play with +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: (the) (and the elephant) [~_I_mean] then the giraffe let/3s (her) her play with it.,the and the elephant then the giraffe lets her her play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(and) and (uh) (she) the (l) elephant look/3s happy.,and and uh she the l elephant looks happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(i) but (i the elephant) [~_I_mean] the giraffe kind of look/3s (uh not too[-:] sure[-:]) kind of (um) unsure about it.,i but i the elephant the giraffe kind of looks uh not too sure kind of um unsure about it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(um) the (elephant[-:]) (ah ah) (bank/3s it um) get/3s it in the water.,um the elephant ah ah banks it um gets it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(er) and now it is in the water.,er and now it is in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(and they are both kind of : um) (do not know) the giraffe look/3s kind of sad.,and they are both kind of um do not know the giraffe looks kind of sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,now the giraffe is very very mad (uh) at the elephant : and want/3s that plane back.,now the giraffe is very very mad uh at the elephant and wants that plane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: (the el[-:] ) the elephant (uh) go/3s[-:] to the lifeguard I think to see if he could get the plane out.,the el the elephant uh goes to the lifeguard I think to see if he could get the plane out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: (she is te[-:] ) the elephant is tell/ing the lifeguard what happen/ed.,she is te the elephant is telling the lifeguard what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and the lifeguard kind of look/3s [~_well] surprise/ed : perhaps.,and the lifeguard kind of looks surprised perhaps +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,now the lifeguard (is try/ing to get[-:] the) is try/ing to reach for the airplane.,now the lifeguard is trying to get the is trying to reach for the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,but he can not reach it.,but he can not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: (the ele) the lifeguard[-:] say/3s he can not do it.,the ele the lifeguard says he can not do it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,the[-:] elephant look/3s kind of sad.,the elephant looks kind of sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(and the) and the (uh) giraffe is cry/ing.,and the and the uh giraffe is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: (um) then[-:] the elephant/z mother come/3s along : (with a net and um) : with a net.,um then the elephant's mother comes along with a net and um with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(um) : then she[-:] is try/ing to get it with the net.,um then she is trying to get it with the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: now (the)[~!_sighs] (uh) the elephant/z mother give/3s the plane back to (the elephant) [~_I_mean] the[-:] giraffe.,now the uh the elephant's mother gives the plane back to the elephant the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: now (uh) the elephant and the giraffe are happy.,now uh the elephant and the giraffe are happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(um : uh) (there[-:] are) (er) there is it look/3s like a dog and a bunny in this picture [EU].,um uh there are er there is it looks like a dog and a bunny in this picture +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,the dog look/3s like he is make/ing a sandcastle.,the dog looks like he is making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and the bunny : I think want/3s to help him.,and the bunny I think wants to help him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and so they are help/ing each other[-:].,and so they are helping each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(the dog is help/ing) [~_I_mean] the rabbit is help/ing the dog make the sandcastle.,the dog is helping the rabbit is helping the dog make the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and[-:] now the bunny dump/3s a pile of sand on (and) the sandcastle.,and now the bunny dumps a pile of sand on and the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: and[-:] : (um) now the sandcastle is wreck/ed.,and um now the sandcastle is wrecked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: and now the dog is try/ing to rebuild it.,and now the dog is trying to rebuild it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(um) the dog see/3s the rabbit come/ing down the road.,um the dog sees the rabbit coming down the road +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and they are both carry/ing basket/s : with something in them.,and they are both carrying baskets with something in them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(um) : (they[-:] ) (um) now they are have/ing a picnic (nic um) with a whole bunch of (look) good look/ing food in it.,um they um now they are having a picnic nic um with a whole bunch of look good looking food in it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,they are eat/ing.,they are eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: (um) : it look/3s like the bunny ate a little too much : and (do/3s not look) and look/3s sick.,um it looks like the bunny ate a little too much and does not look and looks sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: (um) the dog is : [~_well] kind of : surprise/ed.,um the dog is kind of surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and the bunny still do/3s not look very very well.,and the bunny still does not look very very well +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(um : there i) it look/3s like a doctor bunny come/ing down.,um there i it looks like a doctor bunny coming down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and the dog (r) rushes (eh and) to get him.,and the dog r rushes eh and to get him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(um) (he) the dog is pull/ing[-:] the doctor towards the (uh) rabbit : on the[-:] (picnic uh) picnic cloth.,um he the dog is pulling the doctor towards the uh rabbit on the picnic uh picnic cloth +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: (looks like the[-:] um doctor rabbit) (it um is) : (um : kind of is) look/3s like the young rabbit is wake/ing up but still is not look/ing too well.,looks like the um doctor rabbit it um is um kind of is looks like the young rabbit is waking up but still is not looking too well +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and the doctor : rabbit is[-:] check/ing.,and the doctor rabbit is checking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: (um) now : the doctor rabbit (and the r) and the younger rabbit are walk/ing[-:] : down the road again.,um now the doctor rabbit and the r and the younger rabbit are walking down the road again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and the dog look/3s happy now.,and the dog looks happy now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(um) : the dog (um) : (is carry[-:] i[-:]) is pull/ing a wagon with a balloon on it.,um the dog um is carry i is pulling a wagon with a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and the rabbit see/3s (h) him[-:] come/ing.,and the rabbit sees h him coming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and so he run/3s to greet him.,and so he runs to greet him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(um) the rabbit see/3s the balloon (uh) and : look/3s like he want/3s it.,um the rabbit sees the balloon uh and looks like he wants it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,want/3s what?,wants what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,want/3s the balloon [+_bch].,wants the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,look/3s like (he) the rabbit is untie/ing the balloon[-:].,looks like he the rabbit is untying the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and[-:] : (the balloon um) they lost the balloon.,and the balloon um they lost the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,the balloon rose too high.,the balloon rose too high +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and they could not reach it.,and they could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,now the dog is very mad at the rabbit.,now the dog is very mad at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(and : um then they bo[-:]) and then the rabbit see/3s[-:] (um) : another rabbit sell/ing balloon/s.,and um then they bo and then the rabbit sees um another rabbit selling balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(um) : the rabbit ask|ask[EW:asked] (uh) can I have (uh) : a balloon : please?,um the rabbit ask uh can I have uh a balloon please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: (um) you have to pay five cent/s for the balloon.,um you have to pay five cents for the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(uz um) but the balloon/s were five cent/s.,uz um but the balloons were five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and the rabbit did not have any money.,and the rabbit did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: (uh) now the rabbit is sad.,uh now the rabbit is sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and now the dog has come up to the rabbit and : look/3s sad too.,and now the dog has come up to the rabbit and looks sad too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: (um) the rabbit see/3s[-:] : I think his dad (and[-:]) : and : I think (go/3s) go/3s to him.,um the rabbit sees I think his dad and and I think goes goes to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,(he) the rabbit asks if he can have (some money : for) (five cents) (uh um) some money for : balloons.,he the rabbit asks if he can have some money for five cents uh um some money for balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,: now[-:] his dad is pay/ing[-:] ten cent/s for a balloon for each of them.,now his dad is paying ten cents for a balloon for each of them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,now they are both very very happy.,now they are both very very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/808.slt,and so is the dad.,and so is the dad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,there is a giraffe and this (um) elephant.,there is a giraffe and this um elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and the elephant is bounce/ing this ball.,and the elephant is bouncing this ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and they are right beside a pool.,and they are right beside a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now the ball land/3s into the pool.,and now the ball lands into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now the giraffe : jump/3s into the pool.,and now the giraffe jumps into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and he is swim/ing for it.,and he is swimming for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now he is (be) be give/ing it back to the elephant.,and now he is be be giving it back to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now : the elephant is kind of smile/ing.,and now the elephant is kind of smiling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,(and) : and the[-:] giraffe is just smile/ing at each other.,and and the giraffe is just smiling at each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,that is the end [+_bch].,that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,the elephant and the giraffe again.,the elephant and the giraffe again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and they see this diving board.,and they see this diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now : the elephant is (gonna) point/ing at it.,and now the elephant is gonna pointing at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and (it is gonna) and : he is go/ing to[:_gonna] go to run over to it.,and it is gonna and he is going to go to run over to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now they are both run/ing over.,and now they are both running over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and elephant is go/ing to [~_gonna] fall.,and elephant is going to fall +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now the elephant fell and : (stub) (made) gots|get[EW:gets] a booboo on her knee.,and now the elephant fell and stub made gots a booboo on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,now : the lifeguard : is another[!] elephant and come/3s over to see what *is the matter [EU].,now the lifeguard is another elephant and comes over to see what the matter +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now (um : the) (the) the : lifeguard is put/ing a bandaid on the elephant that : (made) got a booboo on her knee.,and now um the the the lifeguard is putting a bandaid on the elephant that made got a booboo on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and the : giraffe is just kneel/ing there on : his knee/s.,and the giraffe is just kneeling there on his knees +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now : the lifeguard point/3s to the sign no run/ing.,and now the lifeguard points to the sign no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and that is what she was do/ing.,and that is what she was doing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,(um) a[EW:an] elephant and a giraffe.,um a elephant and a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and the giraffe has gots|get[EW:got] a[EW:an] airplane in his hand : ready to fly it.,and the giraffe has gots a airplane in his hand ready to fly it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now : (the) (the) the : (gir) giraffe is go/ing to [~_gonna] throw it.,and now the the the gir giraffe is going to throw it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and the elephant is stare/ing at it.,and the elephant is staring at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now the elephant grab/3s it.,and now the elephant grabs it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now : she is go/ing to[:_gonna] try to fly it.,and now she is going to try to fly it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now she throw/3s it into the pool[-:].,and now she throws it into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now the giraffe is angry at the elephant.,and now the giraffe is angry at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now the lifeguard see/3s it just float/ing in there.,and now the lifeguard sees it just floating in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now : (the elephant) the : girl elephant is try/ing to talk : what happen/ed with the airplane to the lifeguard.,and now the elephant the girl elephant is trying to talk what happened with the airplane to the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,now the lifeguard is try/ing to reach over and get it.,now the lifeguard is trying to reach over and get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and (now the) : now the giraffe (is tear) got[EW:has] tear/s in his eye/s.,and now the now the giraffe is tear got tears in his eyes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,now : there is a girl there : a girl elephant with a net that is go/ing to[:_gonna] grab it.,now there is a girl there a girl elephant with a net that is going to grab it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now it is pick/ing it up out of the water.,and now it is picking it up out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,now give/3s it : to the giraffe.,now gives it to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now : the giraffe is hug/ing[!] : (the) his airplane.,and now the giraffe is hugging the his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,(um) a rabbit and his dog : are make/ing a sandcastle.,um a rabbit and his dog are making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now the rabbit gots[EW:has] a shovel and his bucket.,and now the rabbit gots a shovel and his bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now : the rabbit is go/ing to[?] dump the sand from the bucket onto the sandcastle.,and now the rabbit is going to dump the sand from the bucket onto the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and[-:] the sandcastle is all mush/ed with a big pile of sand on top of it.,and the sandcastle is all mushed with a big pile of sand on top of it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now they are try/ing to put it back together.,and now they are trying to put it back together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and the rabbit is like stand/ing (like) : something like this.,and the rabbit is like standing like something like this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,(um) a rabbit and this : dog are walk/ing down the road with these picnic basket/s.,um a rabbit and this dog are walking down the road with these picnic baskets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now they are eat/ing.,and now they are eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now the rabbit is stuff/ed.,and now the rabbit is stuffed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and he is lie/ing down.,and he is lying down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and the dog is still eat/ing : with a juice box in his hand.,and the dog is still eating with a juice box in his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now the juice box is is still in his hand.,and now the juice box is is still in his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now the rabbit is still do/ing what (he) he was do/ing before.,and now the rabbit is still doing what he he was doing before +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now : he has gots[EW:has] his hand/s on his tummy.,and now he has gots his hands on his tummy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and he is go/ing pluck(*3) : something like that.,and he is going pluck pluck pluck something like that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now : (the dog) (the) the dog is run/ing to : a doctor that is walk/ing down the road : and pull/3s the doctor to the rabbit.,and now the dog the the dog is running to a doctor that is walking down the road and pulls the doctor to the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now : the doctor is fix/ing up the rabbit.,and now the doctor is fixing up the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now (the r) the doctor rabbit is take/ing : (the) the little rabbit home : I think.,and now the r the doctor rabbit is taking the the little rabbit home I think +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,this dog has a balloon tie/ed up to his wagon.,this dog has a balloon tied up to his wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,(and the ra) and the rabbit is walk/ing by.,and the ra and the rabbit is walking by +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now the rabbit is go/ing to [~_gonna] grab the balloon and untie it I guess.,and now the rabbit is going to grab the balloon and untie it I guess +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now[-:] he is untie/ing it.,and now he is untying it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now the balloon is float/ing up into the air.,and now the balloon is floating up into the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now the string is all that they can see.,and now the string is all that they can see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,"(and the rab) and the dog : shake/ing it/z fist/s : and *is just stand/ing there [~_makes_noise_""errr""] [EU].",and the rab and the dog shaking it's fists and just standing there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and then there is another rabbit over here : that gots[EW:has] some balloons in his hands.,and then there is another rabbit over here that gots some balloons in his hands +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now (the rabbit) : the little rabbit walk/3s up to him and ask/3s could I have a balloon?,and now the rabbit the little rabbit walks up to him and asks could I have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and they are five cent/s[~!_yawning] each a balloon.,and they are five cents each a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now he is pull/ing out his pocket/s.,and now he is pulling out his pockets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and there is nothing in it.,and there is nothing in it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now they are both just stand/ing there.,and now they are both just standing there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now (the rabbit) the little[!] rabbit walk/3s over to the doctor bunny[!] again : and ask/3s can I have a balloon from him?,and now the rabbit the little rabbit walks over to the doctor bunny again and asks can I have a balloon from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now (he) the (lit) rabbit is pay/ing[-:] : (to) for a balloon : too.,and now he the lit rabbit is paying to for a balloon too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and now they both got[EW:have] a balloon.,and now they both got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/758.slt,and that is the end [+_bch].,and that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(um : uh) : there was a giraffe and a[EW:an] elephant.,um uh there was a giraffe and a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(uh an) (and) and the elephant had (a ba) : a ball.,uh an and and the elephant had a ba a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and she was bounce/ing it.,and she was bouncing it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and the giraffe was look/ing at it like whoa that look/3s nice !,and the giraffe was looking at it like whoa that looks nice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and) (and he) (and) and (uh) the elephant accidentally put it in the water.,and and he and and uh the elephant accidentally put it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and) : and the zebra[-:] look/ed (a) at it.,and and the zebra looked a at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and he was like : waa !,and he was like waa +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and the elephant is like : aah my ball.,and the elephant is like aah my ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,my ball is gone.,my ball is gone +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,so the zebra (he ca) (he) (he go) : (he) he went to get it.,so the zebra he ca he he go he he went to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and) and[-:] (the uh) : the : elephant was like whoa this guy is[-:] : get/ing my ball !,and and the uh the elephant was like whoa this guy is getting my ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and) (and) and the giraffe : (um) he was go/ing out to the : ball.,and and and the giraffe um he was going out to the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and he was swim/ing fast.,and he was swimming fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,so he[-:] got the ball.,so he got the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and he swam back : to the (eleph) elephant : (that) : that lost her ball.,and he swam back to the eleph elephant that that lost her ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and she said thank you !,and she said thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and he is like you are welcome !,and he is like you are welcome +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(um uh : uh) the elephant want/ed to like go off the diving board[-:] : and go into the water.,um uh uh the elephant wanted to like go off the diving board and go into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,so she (went to) (to the uh) : went to the (uh) diving board.,so she went to to the uh went to the uh diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and she was not suppose/ed[!] to run.,and she was not supposed to run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(she) and she run|run[EW:ran].,she and she run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and the zebra said do not run!,and the zebra said do not run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and he only jog/ed[-:].,and he only jogged +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and : (the elephant is like) (it is) (he : like) she is slip/ing.,and the elephant is like it is he like she is slipping +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and she fall|fall[EW:fell] down.,and she fall down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,she had a cut.,she had a cut +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,there was a sign say/ing no run/ing.,there was a sign saying no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(the) (and) and the zebra is like uhoh (what ay) are you okay!,the and and the zebra is like uhoh what ay are you okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,anyway[?] there is no run/ing : (in) : in the swimming pool place!,anyway there is no running in in the swimming pool place +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and the lifeguard he came[-:].,and the lifeguard he came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and he said are you okay little girl?,and he said are you okay little girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and[-:] the) (and the) (and the) and the : elephant said no[-:] it hurt/3s!,and the and the and the and the elephant said no it hurts +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and : then (uh) : the elephant gived|give[EW:gave] her a bandaid.,and then uh the elephant gived her a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and) and she look/ed at it.,and and she looked at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and she is) and the (z) zebra is like are you okay?,and she is and the z zebra is like are you okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and she is like : ooh it do/3s not hurt anymore.,and she is like ooh it does not hurt anymore +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,are you okay[-:] ?,are you okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and she) (and she is told the st) the she start the story how she fall [EU].,and she and she is told the st the she start the story how she fall +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and[-:] uh) and the lifeguard say/3s there is no run/ing (in) : in swimming pool/s!,and uh and the lifeguard says there is no running in in swimming pools +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(um : the) the end [+_bch].,um the the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(uh) : giraffe had[-:] : [~_like] a[EW:an] airplane in it/z hand.,uh giraffe had a airplane in it's hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and he was [~_like] play/ing with it.,and he was playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and said) and the elephant said whoa nice airplane you have in your hand !,and said and the elephant said whoa nice airplane you have in your hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and he) and he said thank/s !,and he and he said thanks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and he was : pretend/ing to fly with it.,and he was pretending to fly with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,that was wow[-:][!][~!_laughing].,that was wow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and then she took it.,and then she took it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and) and the zebra is like hey !,and and the zebra is like hey +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,he is like wow !,he is like wow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,she accidentally threw it into the water[-:].,she accidentally threw it into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(uh) and the giraffe is like : what did she did[EW:do]!,uh and the giraffe is like what did she did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(she is like) and she is like oopsie/s.,she is like and she is like oopsies +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and then) and then the giraffe start/ed to get mad at the elephant.,and then and then the giraffe started to get mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,then the elephant went to like a lifeguard[-:].,then the elephant went to like a lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and (uh) : she said (uh) can you please get that airplane out of the swimming pool !,and uh she said uh can you please get that airplane out of the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and he said) and he said I will try.,and he said and he said I will try +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and he try/ed to reach it.,and he tried to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,but he could not reach it.,but he could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,then (uh) the lifeguard could not.,then uh the lifeguard could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and the giraffe was cry/ing.,and the giraffe was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and she is like oh man how am I suppose/ed to get that back now ?,and she is like oh man how am I supposed to get that back now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and this one lady with this one net (uh) : she came.,and this one lady with this one net uh she came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and she took the airplane out of there.,and she took the airplane out of there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and it is like whoa(*3) !,and it is like whoa whoa whoa +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(she has) : she has a net on her hand !,she has she has a net on her hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(for) what for ?,for what for +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and then she took) then she took out the airplane.,and then she took then she took out the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,it is (like : like) : like whoa she is do/ing that to get my airplane back !,it is like like like whoa she is doing that to get my airplane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and sh) and he said thank/s.,and sh and he said thanks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,you are welcome : said the elephant with the net.,you are welcome said the elephant with the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,said (I) I like this airplane.,said I I like this airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,( um) and the elephant is like : I like it.,um and the elephant is like I like it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,in her mind[?] (I) I like it too.,in her mind I I like it too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(uh : they[?] : uh) (the uh) this[-:] (dog) [~_I__mean] : hare (uh) he made a sandcastle.,uh they uh the uh this dog hare uh he made a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and a rabbit came.,and a rabbit came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,the rabbit : start/ed (to) to like (uh) put his sand in the pail.,the rabbit started to to like uh put his sand in the pail +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(so he dump/ed it : on) so the rabbit dump/ed it on[-:] : the hare/z sandcastle.,so he dumped it on so the rabbit dumped it on the hare's sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and : the hare : (uh : he was like) (uh he was look/ing like kinda) like he was look/ing just like this.,and the hare uh he was like uh he was looking like kinda like he was looking just like this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(what did this guy) like what did this rabbit do?,what did this guy like what did this rabbit do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and the rabbit was (like) like (why[-:] i) if the hare get mad[-:] [EU].,and the rabbit was like like why i if the hare get mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(s) : (and[-:]) : and the hare start/ed to cry.,s and and the hare started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(an) : and the rabbit (uh : start/ed) start/ed to like feel bad.,an and the rabbit uh started started to like feel bad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and he) : the end [+_bch].,and he the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(uh) : the rabbit and the hare (uh) they are both go/ing to have a picnic.,uh the rabbit and the hare uh they are both going to have a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and : then they took out all their stuff and put out the blanket.,and then they took out all their stuff and put out the blanket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(then uh) (then) : then they start/ed eat/ing!,then uh then then they started eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,an : the rabbit had lot/s of food : like sandwich/s chocolate bar/s chip/s sub/s carrot/s cake.,an the rabbit had lots of food like sandwiches chocolate bars chips subs carrots cake +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and : uh) and the hare is like (what is) oh what did this guy bring to eat?,and uh and the hare is like what is oh what did this guy bring to eat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,a whole bunch of thing/s!,a whole bunch of things +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and) : and the hare only ated|eat[EW:ate] a sandwich.,and and the hare only ated a sandwich +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and the rabbit ated|eat[EW:ate] the whole thing : when she gotted|got[EW:got] her sandwich out.,and the rabbit ated the whole thing when she gotted her sandwich out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(uh : the uh) the hare : look/ed at the rabbit.,uh the uh the hare looked at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and the rabbit did not look so well.,and the rabbit did not look so well +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,so : the hare (went) went to a nurse (and) : (and) and tell (uh the) the rabbit (s) : has a stomachache [EU].,so the hare went went to a nurse and and and tell uh the the rabbit s has a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and) and the hare is like pull/ing her : to (like uh) get over there fast.,and and the hare is like pulling her to like uh get over there fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and) (and the ra) (and[-:]) : (and the ra) and (the rabbit uh : wa) [~_like] the nurse rabbit (uh she) she look|look[EW:looks] and say|say[EW:says] you have a stomachache!,and and the ra and and the ra and the rabbit uh wa the nurse rabbit uh she she look and say you have a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(an) : and he like[-:] I think I notice/ed.,an and he like I think I noticed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(so[-:] he came) so he came with the nurse (to like uh) : to [~_like] see (his) [~_like] his mom or his dad.,so he came so he came with the nurse to like uh to see his his mom or his dad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,the hare was pull/ing a wagon.,the hare was pulling a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and[-:] the hare had[-:] (a) : a balloon on it/z wagon.,and the hare had a a balloon on it's wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and[-:] the rabbit came by and say|say[EW:says] hey you have a nice balloon!,and the rabbit came by and say hey you have a nice balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and the rabbit he came to [~_like] touch the balloon.,and the rabbit he came to touch the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,then (uh he) he try/ed to take it off for a sec.,then uh he he tried to take it off for a sec +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(the) and the hare is like what are you do/ing!,the and the hare is like what are you doing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,the rabbit accidentally let go of it.,the rabbit accidentally let go of it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and the hare was try/ing to reach it same with the rabbit.,and the hare was trying to reach it same with the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(but) but : it went up too fast.,but but it went up too fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and (uh) the hare start/ed to get mad at him : again.,and uh the hare started to get mad at him again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(there was) : there was (uh : a balloon[-:]) : (uh) a balloon.,there was there was uh a balloon uh a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and a rabbit was sell/ing them.,and a rabbit was selling them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and) and he was just like stand/ing there smile/ing.,and and he was just like standing there smiling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,then (uh the ra) the rabbit say[-:] (uh) : can I please have : one balloon?,then uh the ra the rabbit say uh can I please have one balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,he was like (uh) : balloon/s five cent/s.,he was like uh balloons five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,[~_like] that is how much : (like) : [~_like] : (it) it (co) cost.,that is how much like it it co cost +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and they did not have any (money) money.,and they did not have any money money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,so[-:] they went back to the nurse.,so they went back to the nurse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(s) they ask (uh) if we can have [~_like] a balloon[-:] [EU]?,s they ask uh if we can have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and[-:]) : and she came.,and and she came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and she) (she) and she gived|give[EW:gave] : ten cent/s to [~_like] (uh) : the rabbit and the hare.,and she she and she gived ten cents to uh the rabbit and the hare +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,(and they both) and the hare gotted|got[EW:got] her balloon back.,and they both and the hare gotted her balloon back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,and the hare has it/z[!] own balloon now.,and the hare has it's own balloon now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/924.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,This elephant is play/ing with a ball.,This elephant is playing with a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and then the giraffe want/3s to play.,and then the giraffe wants to play +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and then (they a) it accidentally fall/3s into the pool.,and then they a it accidentally falls into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,so then the giraffe swim/3s to get it.,so then the giraffe swims to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and he give/3s it back to the elephant.,and he gives it back to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,then she is very happy.,then she is very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and : she say/3s (ve) thank you to the giraffe.,and she says ve thank you to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,(the[-:] um) : the elephant and the giraffe want to go in the water.,the um the elephant and the giraffe want to go in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and so the elephant : want/3s to go on the diving board.,and so the elephant wants to go on the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,but then she run/3s too fast.,but then she runs too fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and she start/3s slip/ing.,and she starts slipping +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,then she hurt/3s her knee.,then she hurts her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and : the giraffe : (ca) come/3s to help.,and the giraffe ca comes to help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,then he call/3s the lifeguard and tell/3s him what happen/ed.,then he calls the lifeguard and tells him what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,then he put/3s a bandaid on her knee.,then he puts a bandaid on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and[-:] she go/3s to sit down on a bench.,and she goes to sit down on a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,then the lifeguard say/3s (that he) that she is not suppose/ed to be run/ing on deck.,then the lifeguard says that he that she is not supposed to be running on deck +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,The elephant start/3s talk/ing to the giraffe.,The elephant starts talking to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and the giraffe show/3s : her[-:] his plane.,and the giraffe shows her his plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,then she take/3s it away from him.,then she takes it away from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and : she start/3s play/ing with it.,and she starts playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,then it fall/3s into the water.,then it falls into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,the giraffe get/3s mad at her.,the giraffe gets mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,then the lifeguard see/3s that there is a toy in the pool.,then the lifeguard sees that there is a toy in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and he is mad at them both.,and he is mad at them both +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and then he ask/3s what happen/ed.,and then he asks what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and she says she accidentally drop/ed it in the water.,and she says she accidentally dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,then the lifeguard try/3s to get it.,then the lifeguard tries to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and he[!] can not get it.,and he can not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and now the giraffe is cry/ing.,and now the giraffe is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,then : her mom come/3s : (and) with a net thingy.,then her mom comes and with a net thingy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and she try/3s to get the plane : and hand/3s it to the giraffe.,and she tries to get the plane and hands it to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,the giraffe is very happy.,the giraffe is very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,the elephant : is happy that he got it back.,the elephant is happy that he got it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,(uh uh) two : bunny/s I think are make/ing a sandcastle.,uh uh two bunnies I think are making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,this bunny is make/ing a sandcastle.,this bunny is making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and the other bunny want/3s to help.,and the other bunny wants to help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and then [~_like] they start build/ing it [~_like] really tall and stuff.,and then they start building it really tall and stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,then the other bunny (uh) throw/3s a bucket on top of the : sandcastle.,then the other bunny uh throws a bucket on top of the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and : the sandcastle [~_like] get/3s destroy/ed or something like that.,and the sandcastle gets destroyed or something like that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and then : the other bunny start/3s cry/ing and try/3s to rebuild his sandcastle[~!_laughing].,and then the other bunny starts crying and tries to rebuild his sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,(this bunny is) these two bunny/s are go/ing to [~_gonna] go on [~_like] a picnic I think.,this bunny is these two bunnies are going to go on a picnic I think +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and : one bunny bring/3s [~_like] a lot of stuff.,and one bunny brings a lot of stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,(the other) the other bunny just bring/3s a sandwich and (uh) some pop.,the other the other bunny just brings a sandwich and uh some pop +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,(one) the other bunny feel/3s very sick : because he ate so much.,one the other bunny feels very sick because he ate so much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and so the : other bunny go/3s to tell the doctor what happen/ed.,and so the other bunny goes to tell the doctor what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and then so the doctor : come/3s and try/3s to help.,and then so the doctor comes and tries to help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and : she talk/3s to the : sick bunny[~!_laughing] and : ask/3s what happen/ed.,and she talks to the sick bunny and asks what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and then he get/3s better.,and then he gets better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and : she say/3s to be careful.,and she says to be careful +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,one bunny is taking a wagon out : somewhere.,one bunny is taking a wagon out somewhere +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and then another bunny come/3s and : ask/3s her something.,and then another bunny comes and asks her something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,the bunny ask/3s if he could see the balloon.,the bunny asks if he could see the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and the : other bunny : is think/ing about it.,and the other bunny is thinking about it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,so : the : bunny undo/3s the balloon.,so the bunny undoes the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and the other bunny is very surprise/ed.,and the other bunny is very surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and then he let/3s go of the balloon.,and then he lets go of the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and : she try/3s to get it back.,and she tries to get it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,but then it disappear/3s.,but then it disappears +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and she is very mad at him.,and she is very mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,then : a bunny sell/ing balloon/s[-:] : say/3s do you want another one?,then a bunny selling balloons says do you want another one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and[-:] : the boy bunny come/3s up (and take/3s) and ask/3s for a balloon.,and the boy bunny comes up and takes and asks for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and it is[-:] five cent/s for a balloon.,and it is five cents for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,but he do/3s not have five cent/s.,but he does not have five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and then they ask him really nicely.,and then they ask him really nicely +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and he : say/3s maybe.,and he says maybe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,(and then they find their) (hi) and then he find/3s his mom and ask/3s her for some money.,and then they find their hi and then he finds his mom and asks her for some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and then : (um) she is surprise/ed that he want/3s a balloon because : (he) he : lost the other girl/z balloon.,and then um she is surprised that he wants a balloon because he he lost the other girl's balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and then so she give/3s the man : (five) (te) ten cent/s.,and then so she gives the man five te ten cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and they each get a balloon.,and they each get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/939.slt,and then they both are very happy.,and then they both are very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,it is a giraffe.,it is a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and the : elephant play/ed ball.,and the elephant played ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,it go/3s in the swimming pool.,it goes in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,: (it) the giraffe is go/ing to get it.,it the giraffe is going to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and : the giraffe get/3s it.,and the giraffe gets it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and they are play/ing ball again.,and they are playing ball again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,it is[-:] : a giraffe and a[EW:an] elephant again.,it is a giraffe and a elephant again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,(an) : and they are run/ing.,an and they are running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,: the elephant was run/ing.,the elephant was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,: and : the elephant hurt [<~_herself]hisself[>~_herself].,and the elephant hurt hisself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,the lifeguard came.,the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,: the lifeguard is (chh uh) put/ing a bandaid on it.,the lifeguard is chh uh putting a bandaid on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and then he is put/ing (uhm) her on the bench.,and then he is putting uhm her on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and then the lifeguard say/3s (to) to her no run/ing.,and then the lifeguard says to to her no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,(okay) it is a[EW:an] elephant.,okay it is a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and (the giraffe pla ha) the giraffe has a[EW:an] airplane.,and the giraffe pla ha the giraffe has a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,: the giraffe is play/ing (it) with it.,the giraffe is playing it with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,the elephant is try/ing.,the elephant is trying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,: and the elephant throw/3s it into the water.,and the elephant throws it into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and the giraffe is mad.,and the giraffe is mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,: and the lifeguard came.,and the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,: and (the l) the[-:] elephant say/3s sorry to the lifeguard.,and the l the elephant says sorry to the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and the lifeguard try/s to get it.,and the lifeguard tries to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and the lifeguard can not get it.,and the lifeguard can not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and the lifeguard/z (um) wife came : with a net.,and the lifeguard's um wife came with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and the lifeguard/z[-:] : wife got the net : and pull/ed the airplane out.,and the lifeguard's wife got the net and pulled the airplane out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,then she gave it to the (geraff) giraffe.,then she gave it to the geraff giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and the giraffe was : happy.,and the giraffe was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,(ss) the rabbit and the dog (was) : was[EW:were] make/ing a sandcastle.,ss the rabbit and the dog was was making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,(they are m) they are dig/ing out the sand.,they are m they are digging out the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,they are put/ing the sand on the castle.,they are putting the sand on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and they broke the castle.,and they broke the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and now the dog is cry/ing.,and now the dog is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,(kay) they are go/ing for a picnic.,kay they are going for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,the rabbit is eat/ing too much.,the rabbit is eating too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,the rabbit get/3s sick.,the rabbit gets sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and he is dizzy.,and he is dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and the doctor come/3s.,and the doctor comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,the doctor check/3s : him.,the doctor checks him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and she is put/ing the thing in his mouth.,and she is putting the thing in his mouth +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and the doctor is take/ing him home.,and the doctor is taking him home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,(kay) they are go/ing : with : the wagon with the balloon on it.,kay they are going with the wagon with the balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,(the do) the rabbit take/3s the balloon.,the do the rabbit takes the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,he let/3s go of it.,he lets go of it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and it is float/ing in the air.,and it is floating in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,it is (f li) far up in the cloud/s.,it is f li far up in the clouds +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and they see a balloon man.,and they see a balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,they[-:] want a balloon.,they want a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,: they : got the balloon.,they got the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,but he did not have five cent/s.,but he did not have five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and (he said : a) : the : guy said you can not have the balloon : then.,and he said a the guy said you can not have the balloon then +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and he went to the doctor.,and he went to the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,the doctor gave him five cent/s.,the doctor gave him five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and then they gave him the five cent/s.,and then they gave him the five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/702.slt,and then (they had the balloon) : they both had a balloon.,and then they had the balloon they both had a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,once upon a : time there was a[EW:an]: elephant (and a) : and a giraffe.,once upon a time there was a elephant and a and a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and the elephant blowed|blow[EW:blew] water.,and the elephant blowed water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then (the) (hh) he blowed|blow[EW:blew] (the : el) the giraffe right into the water.,and then the hh he blowed the el the giraffe right into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then (he tr) (the) : (the) (he xx) (he) (the) she blowed|blow[EW:blew] him.,and then he tr the the he he the she blowed him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then he fell right in with his pant/s and his shirt on.,and then he fell right in with his pants and his shirt on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then he row/ed[?] to get the : watermelon.,and then he rowed to get the watermelon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,but it was not a watermelon.,but it was not a watermelon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,it was : a rock.,it was a rock +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,(when he) when he put his nose right on it : he swam really fast.,when he when he put his nose right on it he swam really fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,then he bump/ed his nose right on it.,then he bumped his nose right on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then (uh) : he said ow[!].,and then uh he said ow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,: then : (um) : the : elephant gave him one more rock.,then um the elephant gave him one more rock +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then (he) the : giraffe had water all over.,and then he the giraffe had water all over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,once upon a time there was an elephant and a giraffe.,once upon a time there was an elephant and a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,they look/ed at the water.,they looked at the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then the elephant ran.,and then the elephant ran +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and he did not see nothing[EW:anything].,and he did not see nothing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,so he jump/ed.,so he jumped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,so he went right into the water.,so he went right into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,: and then : the elephant hurt his knee.,and then the elephant hurt his knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,: and then (the mommy) came by [~_I_mean] the lifeguard.,and then the mommy came by the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and lifeguard ran after.,and lifeguard ran after +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then (ih) the elephant cry/ed.,and then ih the elephant cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,: and then the giraffe bend|bend[EW:bent] his knee on the ground.,and then the giraffe bend his knee on the ground +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and (the) the sign said no[-:] run/ing.,and the the sign said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,: and then they gave him a bandage the elephant.,and then they gave him a bandage the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,then (the) the lifeguard was angry at the (uh) elephant.,then the the lifeguard was angry at the uh elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,once upon a time there was an[EW:a] : giraffe that had (an) (a) an airplane.,once upon a time there was an giraffe that had an a an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and he threw it up to see *if it would glide in the air [EU].,and he threw it up to see it would glide in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,then it drop/ed into the water.,then it dropped into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and (the) he threw it.,and the he threw it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then he got it right into the water.,and then he got it right into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,: and then : (the el) she[!] try/ed to throw it.,and then the el she tried to throw it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then it land/ed in the water.,and then it landed in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,: (and then it land/ed right) and then it sinked|sink[EW:sunk] a little bit.,and then it landed right and then it sinked a little bit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,then : (the) (hh) the : giraffe was angry.,then the hh the giraffe was angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,: and the lifeguard took a net : and pick/ed it up.,and the lifeguard took a net and picked it up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,: and she could not reach it with his[EW:her] hand.,and she could not reach it with his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,(so he) so he did not know what to do.,so he so he did not know what to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,then he took a net.,then he took a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,then he grab/ed it up.,then he grabbed it up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then : he pull/ed it up.,and then he pulled it up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,: and then (he ga) the lifeguard gave it back : to the giraffe.,and then he ga the lifeguard gave it back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and : then the giraffe was : happy.,and then the giraffe was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,"once upon a time there was a little rabbit and a little dog [~_""little""_pronounced_""yittle""_both_times].",once upon a time there was a little rabbit and a little dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and the dog : was woof/ing.,and the dog was woofing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and the rabbit got scare/ed.,and the rabbit got scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,so he just threw the shovel at[!] the dog.,so he just threw the shovel at the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and the dog got angry.,and the dog got angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then he threw his[!] shovel back.,and then he threw his shovel back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,then they came back.,then they came back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then they made a sandcastle.,and then they made a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then (they) the rabbit pour/ed (some sand) some water on it.,and then they the rabbit poured some sand some water on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,(the) the castle got wet.,the the castle got wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then the castle fell down.,and then the castle fell down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,then : the rabbit : got scare/ed from the dog.,then the rabbit got scared from the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,so the rabbit ran away : threw his pail.,so the rabbit ran away threw his pail +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and the sand got in[!] the pail.,and the sand got in the pail +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,then : the dog ran away too.,then the dog ran away too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,then : (they) : (the) they made silly joke/s.,then they the they made silly jokes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,once upon a time there was a dog and a rabbit who went to have a picnic.,once upon a time there was a dog and a rabbit who went to have a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,(then they) then the rabbit ate everything.,then they then the rabbit ate everything +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and the dog had nothing left to eat.,and the dog had nothing left to eat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then the dog ran away *and put a costume on (so he would think) so the dog would think he was a different person [EU].,and then the dog ran away put a costume on so he would think so the dog would think he was a different person +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,then they went swim/ing.,then they went swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,then : the rabbit got stuff/ed up that he could not eat any more food [EU].,then the rabbit got stuffed up that he could not eat any more food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,then he got dizzy.,then he got dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then the dog drank some juice.,and then the dog drank some juice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,then the dog[!] got dizzy.,then the dog got dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then the dog saw a different[!] person.,and then the dog saw a different person +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,: and then the dog pull/ed his shirt.,and then the dog pulled his shirt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,: and then : the mommy came : to him : (and) : and said you naughty little boy.,and then the mommy came to him and and said you naughty little boy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,then : the rabbit went with his mommy back home.,then the rabbit went with his mommy back home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,"once upon a time there was a little [~_pronounced_""yIt'l""] dog with a balloon (on his) (on his) on his wagon.",once upon a time there was a little dog with a balloon on his on his on his wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,then he let go of the balloon.,then he let go of the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,the balloon went up.,the balloon went up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,then the dog was angry[-:].,then the dog was angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,: and then (the t) it was there.,and then the t it was there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,: and then the rabbit came : and undid (the) (the re) the balloon.,and then the rabbit came and undid the the re the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,the balloon went all the way up.,the balloon went all the way up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,they could not reach it.,they could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,: and then the dog got really angry.,and then the dog got really angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then : they went.,and then they went +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and somebody had balloon/s.,and somebody had balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,but the little [~_yittle] rabbit had no money.,but the little rabbit had no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,so (they came) the rabbit came and : (got : st) took : one of the balloon/s.,so they came the rabbit came and got st took one of the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,but (the) the man hold|hold[EW:held] it tight so that it would not : blow away.,but the the man hold it tight so that it would not blow away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then : the rabbit took the string.,and then the rabbit took the string +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,but he could not take it away.,but he could not take it away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,then he said : I[!] know.,then he said I know +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,I will take one of those balloon/s.,I will take one of those balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,then he said it is for five dollar/s.,then he said it is for five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,: so then : the (w) mommy came and gave him some five dollar/s.,so then the w mommy came and gave him some five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,then : (the) the balloon came for the dog.,then the the balloon came for the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then the dog had the balloon.,and then the dog had the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then : (they : ha) the dog had another balloon on his wagon.,and then they ha the dog had another balloon on his wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then the mommy gave him five dollar/s.,and then the mommy gave him five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and then : (the) the rabbit was happy too.,and then the the rabbit was happy too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/512.slt,and they both[!] got a balloon.,and they both got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,there is a giraffe and[!] an elephant.,there is a giraffe and an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,the elephant is bounce/ing a ball.,the elephant is bouncing a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and (they are) they are by a : swimming pool.,and they are they are by a swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and the ball bounce/ed in.,and the ball bounced in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,then the : giraffe[!] : jump/ed in the water and swam after it.,then the giraffe jumped in the water and swam after it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,the giraffe got the ball back to the elephant.,the giraffe got the ball back to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and then he was : soak/ed.,and then he was soaked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and he was say/ing thank you to the : elephant.,and he was saying thank you to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,there is a giraffe and an elephant.,there is a giraffe and an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,the elephant[!] want/ed to go off the diving[!] board.,the elephant wanted to go off the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,the sign said no run/ing.,the sign said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and the giraffe : start/ed to run to the : diving board.,and the giraffe started to run to the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,the giraffe ran (and slip) and slip/ed.,the giraffe ran and slip and slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,(the giraffe hurt her knee) (so the) : [~_I_mean] the elephant (hurt) hurt her knee.,the giraffe hurt her knee so the the elephant hurt hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and the giraffe (st) (ran) walk/ed to the giraffe.,and the giraffe st ran walked to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,the giraffe : got a lifeguard.,the giraffe got a lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and the lifeguard help/ed the giraffe by put/ing on a bandaid.,and the lifeguard helped the giraffe by putting on a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and (the giraffe sat on the bench) : [~_I_mean] the elephant[~!_laughing] sat on the bench [~_I_get_mixed_up].,and the giraffe sat on the bench the elephant sat on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,(and the elepha) and the lifeguard (said) show/ed the elephant where the no run/ing sign was.,and the elepha and the lifeguard said showed the elephant where the no running sign was +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,there is a giraffe and a[EW:an] elephant by the pool.,there is a giraffe and a elephant by the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,the giraffe[-:] : has a[-:] plane.,the giraffe has a plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,the giraffe start/ed to fly the plane.,the giraffe started to fly the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and then the : elephant grab/ed[!] the plane from the giraffe.,and then the elephant grabbed the plane from the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,the elephant accidentally drop/ed the plane in the pool.,the elephant accidentally dropped the plane in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,the[-:] giraffe got really mad[!] at the elephant.,the giraffe got really mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,the lifeguard : he walk/ed over.,the lifeguard he walked over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and both[!] of them : (look/ed) (were look) were look/ing at him : for some weird reason.,and both of them looked were look were looking at him for some weird reason +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and then the elephant : (um) told them what happen/ed.,and then the elephant um told them what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and : so the lifeguard try/ed[!] to reach in and get the plane.,and so the lifeguard tried to reach in and get the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,he could not get it.,he could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,so the : giraffe start/ed to cry.,so the giraffe started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,then another elephant came with a big[-:] long net.,then another elephant came with a big long net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,she reach/ed it in and grab/ed the plane : and gave the plane back to the giraffe.,she reached it in and grabbed the plane and gave the plane back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,then the giraffe : was really happy that he had his plane back.,then the giraffe was really happy that he had his plane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,(there is a) (there is a) there is a rabbit.,there is a there is a there is a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and there is a little dog.,and there is a little dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and : the dog was make/ing a sandcastle.,and the dog was making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and the rabbit want/ed to make it too.,and the rabbit wanted to make it too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,so the dog invit/ed him over.,so the dog invited him over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,then the dog : and[!] the rabbit work/ed together to make the sandcastle.,then the dog and the rabbit wrought together to make the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,the rabbit dump/ed a whole bucket of sand on[!] the castle.,the rabbit dumped a whole bucket of sand on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,(then the whole) then the whole castle was cover/ed in sand.,then the whole then the whole castle was covered in sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and it all fell down.,and it all fell down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,then the dog : start/ed to cry because his castle was ruin/ed.,then the dog started to cry because his castle was ruined +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,(there is) there is the same dog and the same rabbit.,there is there is the same dog and the same rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and (they are : on) (there is) they are on a path in the wood/s.,and they are on there is they are on a path in the woods +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and the dog say/3s hi to the rabbit.,and the dog says hi to the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,but they both have a picnic together : (on) : on all the grass.,but they both have a picnic together on on all the grass +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,the rabbit (ate) : ate all[!] of his food.,the rabbit ate ate all of his food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and the dog is still eat/ing his.,and the dog is still eating his +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,(the rabbit go) (is) the rabbit got a stomachache.,the rabbit go is the rabbit got a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and the dog look/ed worry/ed.,and the dog looked worried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,the dog ran to the rabbit/z : Mom or someone else (and) (an) and told her that : (the ra) the rabbit has a stomachache.,the dog ran to the rabbit's Mom or someone else and an and told her that the ra the rabbit has a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,he yank/ed her over : to the sandbox.,he yanked her over to the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and then (the) she start/ed to : give the rabbit heck (for eating[~!_laughing] too much food) for : eat/ing too much food too fast.,and then the she started to give the rabbit heck for eating too much food for eating too much food too fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,(then) then the rabbit start/ed to feel better.,then then the rabbit started to feel better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and they both walk/ed home.,and they both walked home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,there is a dog and the rabbit again.,there is a dog and the rabbit again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,the dog (ha) just got a brand[!] new wagon : with a balloon hang/ing on to it by a string.,the dog ha just got a brand new wagon with a balloon hanging on to it by a string +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,the rabbit came along : and compliment/ed : on his wagon.,the rabbit came along and complimented on his wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,then the rabbit was start/ing to untie[!] the balloon.,then the rabbit was starting to untie the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,then the balloon flew way[!] up into the air.,then the balloon flew way up into the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and they both try/ed to grab it.,and they both tried to grab it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,it flew too high.,it flew too high +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and the rabbit : was[-:] scare/ed.,and the rabbit was scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and the dog was really[!] mad.,and the dog was really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,(and then they both) (then the rabbit) and the dog was still mad.,and then they both then the rabbit and the dog was still mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,the rabbit saw a guy with balloon/s[!].,the rabbit saw a guy with balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,so the rabbit ran there and (took) got a balloon.,so the rabbit ran there and took got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,and the balloon/s were five cent/s.,and the balloons were five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,but he had no money.,but he had no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,(then) : then both of them thought they were out of luck.,then then both of them thought they were out of luck +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,(and the) and the rabbit ran[-:] to his grandma : and ask/ed for five cent/s because he want/ed to buy one.,and the and the rabbit ran to his grandma and asked for five cents because he wanted to buy one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,so she got five cent/s.,so she got five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,they took it.,they took it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/834.slt,(and : the rabbit) and both[!] of them got a balloon.,and the rabbit and both of them got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,A giraffe and an elephant [EU].,A giraffe and an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the elephant is bounce/ing ball/s.,and the elephant is bouncing balls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,one of them go|go[EW:went] into the pool.,one of them go into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,he fell in and start/ed swimming.,he fell in and started swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,the elephant got the ball.,the elephant got the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and (he) the giraffe is soak/ed in the water.,and he the giraffe is soaked in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,the elephant has the ball.,the elephant has the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,she is hug/ing it.,she is hugging it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the giraffe is smile/ing and all wet.,and the giraffe is smiling and all wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,they see the pool.,they see the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(and she a) and there is a diving board.,and she a and there is a diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,she run/3s to the dive/ing board.,she runs to the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,she slip/3s.,she slips +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the giraffe is run/ing.,and the giraffe is running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and then she hurt/3s her knee.,and then she hurts her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the giraffe is run/ing to her.,and the giraffe is running to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,he is help/ing her.,he is helping her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(um) she is cry/ing.,um she is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(he) and the giraffe is help/ing her.,he and the giraffe is helping her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the lifeguard is come/ing : run/ing.,and the lifeguard is coming running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the lifeguard help/3s her.,and the lifeguard helps her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the giraffe is just look/ing.,and the giraffe is just looking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,the lifeguard just sat her on a chair.,the lifeguard just sat her on a chair +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the giraffe is look/ing at it.,and the giraffe is looking at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(she is) he is mad : at the elephant because she was run/ing.,she is he is mad at the elephant because she was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,She see/3s (an um) an airplane in the giraffe/z hand.,She sees an um an airplane in the giraffe's hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,the giraffe (is f um) is about to throw.,the giraffe is f um is about to throw +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and ( she is) she is worried.,and she is she is worried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(she gots|get[EW:gets] the plane) she gots|get[EW:gets] the plane.,she gots the plane she gots the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and she is happy.,and she is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the giraffe : is worry/ed.,and the giraffe is worried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,the elephant drop/ed the plane in the water.,the elephant dropped the plane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and it start/ed sink/ing.,and it started sinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and they are both just look/ing at it.,and they are both just looking at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,he is mad at her because (sh) she drop/ed (her plane i) his plane in the water.,he is mad at her because sh she dropped her plane i his plane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(he's) he is just look/ing.,he's he is just looking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(and the) and the elephant is try/ing to sneak away.,and the and the elephant is trying to sneak away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and : the : lifeguard is look/ing at it too.,and the lifeguard is looking at it too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(she) she is yell/ing (and to the li) at the lifeguard and tell/ing him.,she she is yelling and to the li at the lifeguard and telling him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and she is point/ing.,and she is pointing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the giraffe is just : look/ing at : the girl.,and the giraffe is just looking at the girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,the lifeguard is try/ing to get the plane out of the water.,the lifeguard is trying to get the plane out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and they are both look/ing at him.,and they are both looking at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(the) the giraffe is cry/ing.,the the giraffe is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the girl is : worry/ed.,and the girl is worried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the (j) lifeguard is : just stand/ing there.,and the j lifeguard is just standing there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(the) another (li) lifeguard came with a net.,the another li lifeguard came with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and now all of them are just : (l) look/ing at the net/s.,and now all of them are just l looking at the nets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and all of them are happy.,and all of them are happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,she gots[EW:has] the plane out of the water.,she gots the plane out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and (he is) the giraffe is really happy.,and he is the giraffe is really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,now : (sh) (they) (she) he will not let the girl play with it.,now sh they she he will not let the girl play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(uh) a dog is play/ing in the sandbox and build/ing a castle.,uh a dog is playing in the sandbox and building a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and a rabbit want/3s to help.,and a rabbit wants to help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(the) the dog is build/ing it.,the the dog is building it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the rabbit is grab/ing some sand.,and the rabbit is grabbing some sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,the : dog took off her hands.,the dog took off her hands +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the rabbit dump/ed : a lot of sand on the castle.,and the rabbit dumped a lot of sand on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,the dog is just look/ing at it.,the dog is just looking at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the bunny is worry/ed because it is all smush/ed.,and the bunny is worried because it is all smushed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,she is try/ing to build it back.,she is trying to build it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and she is cry/ing.,and she is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the bunny is just : (look/ing now) : look/ing at it.,and the bunny is just looking now looking at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,a bunny is (ru) run/ing (and) on the sidewalk.,a bunny is ru running and on the sidewalk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(and the dog has) they are go/ing for a picnic.,and the dog has they are going for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the dog is wave/ing.,and the dog is waving +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(the) the dog is take/ing her lunch.,the the dog is taking her lunch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the : rabbit is just : eat/ing it all.,and the rabbit is just eating it all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(the rab) the dog is eat/ing his lunch.,the rab the dog is eating his lunch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the rabbit is done his (lu) whole lunch.,and the rabbit is done his lu whole lunch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and he is pat/ing his stomach.,and he is patting his stomach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,the dog : is eat/ing still : and just look/ing at the bunny because : he is dizzy.,the dog is eating still and just looking at the bunny because he is dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(the uh) the bunny is just lay/ing there.,the uh the bunny is just laying there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the dog is come/ing to : (his) his mom.,and the dog is coming to his his mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(the) (he is) the bunny is still laying down there.,the he is the bunny is still laying down there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the : dog is pull/ing his mom.,and the dog is pulling his mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,the bunny is (um um) look/ing (at the) at the bunny.,the bunny is um um looking at the at the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,he is get/ing dizzy.,he is getting dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(the) the bunny is much better.,the the bunny is much better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the other bunny is bring/ing him home.,and the other bunny is bringing him home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the dog is (just smi) just smile/ing.,and the dog is just smi just smiling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,that is the end [+_bch].,that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,The doggy is pull/ing a wagon with a balloon in it.,The doggy is pulling a wagon with a balloon in it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the bunny is run/ing and (w s) wave/ing.,and the bunny is running and w s waving +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,he is go/ing to take the balloon.,he is going to take the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and she is look/ing at (him) the balloon.,and she is looking at him the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,he take/3s off the balloon.,he takes off the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and she is worry/ed.,and she is worried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,the balloon flie/3s up.,the balloon flies up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(they are both) they are both try/ing to reach it.,they are both they are both trying to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and they are both very worry/ed.,and they are both very worried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,the dog is very mad : at : him.,the dog is very mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and he is look/ing at the balloon go/ing up.,and he is looking at the balloon going up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,then (he s) she is mad.,then he s she is mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and then the bunny is run/ing to : another bunny that has a ton of balloon/s.,and then the bunny is running to another bunny that has a ton of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(she) (he asks) the bunny ask/3s [~_pronounced_'akses'] to buy one.,she he asks the bunny asks to buy one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,the girl is look/ing at the bunny.,the girl is looking at the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(it said five) the balloon said five cent/s.,it said five the balloon said five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and he did not have none[EW:any].,and he did not have none +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and he was look/ing in his pocket/s.,and he was looking in his pockets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the girl was run/ing.,and the girl was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(and the bunny was) the big (munny) bunny was mad.,and the bunny was the big munny bunny was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,the dog was look/ing at the man.,the dog was looking at the man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,the man was : happy.,the man was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and (the) : the bunny was sad.,and the the bunny was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(the nurse) the : big bunny came.,the nurse the big bunny came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and (the bunn) the bunny was run/ing to : her.,and the bunn the bunny was running to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the dog was just look/ing at the bunny run.,and the dog was just looking at the bunny run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,the bunny was point/ing to all the balloon/s.,the bunny was pointing to all the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and (the k) the dog was look/ing at (the mu) (the nu) the big bunny.,and the k the dog was looking at the mu the nu the big bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,the big : bunny (um) : was give/ing the other bunny : money for a balloon.,the big bunny um was giving the other bunny money for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and (they were both : yell/ing for) the dog and the bunny were yell/ing for a balloon.,and they were both yelling for the dog and the bunny were yelling for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,(the) the doggy was hug/ing his balloon.,the the doggy was hugging his balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the bunny was play/ing with his balloon.,and the bunny was playing with his balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,and the big rabbit was smile/ing.,and the big rabbit was smiling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/601.slt,that is the end [+_bch].,that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,(mmm like) : the moose is try/ing to get the ball/s in the swimming pool.,mmm like the moose is trying to get the balls in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and there is one : in the swimming pool.,and there is one in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and he is happy to go in : to get them.,and he is happy to go in to get them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and he is swim/ing : (and) to get it.,and he is swimming and to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and he fell.,and he fell +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and he got it.,and he got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,(and) and (he is got in to) he (s) : did it already.,and and he is got in to he s did it already +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and he did it.,and he did it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,so the elephant is proud.,so the elephant is proud +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,: that is a good one.,that is a good one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,elephant want/3s to (g) : jump in the swimming pool.,elephant wants to g jump in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and the elephant want/3s to go : there.,and the elephant wants to go there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then they run there.,and then they run there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then the elephant/z leg hurt/3s.,and then the elephant's leg hurts +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,(and) and the : other elephant came to : get a bandaid on.,and and the other elephant came to get a bandaid on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then : (her) (hers) (the gu) (the) the other elephant/s put a bandaid on.,and then her hers the gu the the other elephants put a bandaid on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then it felt better.,and then it felt better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then her/z stay/ed on.,and then her's stayed on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,the elephant want/3s to make a plane.,the elephant wants to make a plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then the horse (is l w) already have|have[EW:has] a plane.,and then the horse is l w already have a plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,(and) and then the horse (um) flied|fly[EW:flew] it around.,and and then the horse um flied it around +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,(and the) and the elephant got it.,and the and the elephant got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and the elephant (went) got it into the water.,and the elephant went got it into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,so the horse is so mad.,so the horse is so mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,so the : other (um) elephant came and (wh) see|see[EW:saw] what is happen/ing [EU].,so the other um elephant came and wh see what is happening +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,(and then) and the elephant (the) (its the) look/ed at the other elephant.,and then and the elephant the its the looked at the other elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then the : other elephant try/ed to reach it.,and then the other elephant tried to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and he can not.,and he can not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,(so) (so he) so the other elephant got a plan.,so so he so the other elephant got a plan +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,(and the) and (the other) the girl elephant (um) got a thing to get it out : and try/ed to get it.,and the and the other the girl elephant um got a thing to get it out and tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then her[EW:she] can[!] do it.,and then her can do it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then : her[EW:she] got[!] it.,and then her got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then the horse was so happy.,and then the horse was so happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,that is the end [+_bch].,that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,(um the) the bunny want/3s to make a castle.,um the the bunny wants to make a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then the bunny (w) help/ed.,and then the bunny w helped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then the bunny put sand on and make|make[EW:made] it worse.,and then the bunny put sand on and make it worse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then it went down.,and then it went down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then : the dog was try/ing (to make it bi) make it (um) just like it was.,and then the dog was trying to make it bi make it um just like it was +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,(but) but he can not.,but but he can not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,that is the end [+_bch].,that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,it is!,it is +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,yeah that is a sad one.,yeah that is a sad one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,the bunny (was go) want|want[EW:wants] to make a picnic.,the bunny was go want to make a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then he was so hungry.,and then he was so hungry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and he had a stomachache.,and he had a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then (he) he had a stomachache again.,and then he he had a stomachache again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then the doctor came : to see what happen/ed.,and then the doctor came to see what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then (the) (uh the de) the dog was pull/ing her.,and then the uh the de the dog was pulling her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then the doctor (her) was (s) say/ing something.,and then the doctor her was s saying something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,so : he was take/ing : (um) he[EW:him] to the other doctor/z.,so he was taking um he to the other doctor's +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,at the end [+_bch].,at the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,that was a good one.,that was a good one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,the (buh) puppy (was) had a balloon (on) on a wagon.,the buh puppy was had a balloon on on a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and the (um) bunny want/ed to take it : in his hand.,and the um bunny wanted to take it in his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then he was go/ing to take it off.,and then he was going to take it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then it flown|fly[EW:flew] away.,and then it flown away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then the dog : was so mad.,and then the dog was so mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,(and then) and (the dog) the bunny saw a man who had some balloon/s.,and then and the dog the bunny saw a man who had some balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then : the bunny said : can we have another balloon?,and then the bunny said can we have another balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,Our balloon is way up.,Our balloon is way up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,(and then the) and then the (uh) man is said there is only dollar/s [EU].,and then the and then the uh man is said there is only dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,(and then the uh) and then the : man was : go/ing away.,and then the uh and then the man was going away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,(and try) (he) and the bunny was go/ing to the other bunny.,and try he and the bunny was going to the other bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,it was a (w) doctor.,it was a w doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,and then (c) (and then the doctor s) and then (the o) the bunny he said the other bunny who said it is only dollar/s [EU].,and then c and then the doctor s and then the o the bunny he said the other bunny who said it is only dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,can you get it for us?,can you get it for us +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,(and then uh) (the) and then (and the c) the other bunny/s got money : (and then ha) (got) and then gave it to the man : and then got (a) the balloon/s.,and then uh the and then and the c the other bunnies got money and then ha got and then gave it to the man and then got a the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/574.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,(uh) [~_sighs] (a) a giraffe found a[EW:an] elephant and want/ed to play ball (with it) : with her : because she was bounce/ing her ball up and down.,uh a a giraffe found a elephant and wanted to play ball with it with her because she was bouncing her ball up and down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,: and then the ball fell in the water.,and then the ball fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,: so the giraffe : jump/ed in the water and went to get the ball.,so the giraffe jumped in the water and went to get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and then he got the ball and gave it to the (gir) elephant.,and then he got the ball and gave it to the gir elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,then the elephant was happy.,then the elephant was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and that is the end [+_bch].,and that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,(they) (uhm) : (the little elephant and giraffe want/ed to jump out) [~_well] the little elephant and giraffe want/ed to swim in the water.,they uhm the little elephant and giraffe wanted to jump out the little elephant and giraffe wanted to swim in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,(and there is a sign xxx) and there was a sign that said no run/ing.,and there is a sign x and there was a sign that said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,but[-:] the elephant ran[-:] to the diving board because she want/ed to jump off it.,but the elephant ran to the diving board because she wanted to jump off it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,: and then she slip/ed : and bonk/ed her knee.,and then she slipped and bonked her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,: and (then she) (he got the lifeguard to come) then the giraffe got the lifeguard to come.,and then she he got the lifeguard to come then the giraffe got the lifeguard to come +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and they put a bandaid on her knee.,and they put a bandaid on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,: and then she had to sit on the bench for a minute.,and then she had to sit on the bench for a minute +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and she got into trouble because (it) the sign said no run/ing.,and she got into trouble because it the sign said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and she ran.,and she ran +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,(the l) the elephant and[-:] the giraffe : were play/ing.,the l the elephant and the giraffe were playing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,then the giraffe was play/ing with his airplane[-:].,then the giraffe was playing with his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and the elephant want/ed to play with it too.,and the elephant wanted to play with it too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,(so) but first (the gira) the giraffe play/ed with it and zoom/ed it around in circle/s.,so but first the gira the giraffe played with it and zoomed it around in circles +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and the elephant want/ed to play[-:].,and the elephant wanted to play +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,then the elephant took it : and[-:] (zrro) zoom/ed it and zoom/ed it.,then the elephant took it and zrro zoomed it and zoomed it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and then[-:] : splat[!] it splash/ed in the water.,and then splat it splashed in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,: (then[-:] ) then the : giraffe got really mad[-:].,then then the giraffe got really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,: so the lifeguard came and try/ed to get the airplane.,so the lifeguard came and tried to get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,I do not see why they could not swim in the water.,I do not see why they could not swim in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,[~_well] (um) then the lifeguard came.,um then the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and the little elephant said I by accident : zoom/ed the plane around.,and the little elephant said I by accident zoomed the plane around +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and it fell in the water.,and it fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,: and then the lifeguard try/ed to reach the airplane.,and then the lifeguard tried to reach the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,but he could not.,but he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,: then : (the) the[-:] lifeguard/z[-:] (uh) wife came.,then the the lifeguard's uh wife came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,(and got) and she had a net.,and got and she had a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,so she got the airplane with the net.,so she got the airplane with the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,: [~_well] she try/ed[!] to get the airplane with the net.,she tried to get the airplane with the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,: then she got it back.,then she got it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,: and the giraffe was happy.,and the giraffe was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,(um) (there is two uh) there is (a bi) a bunny and : a dog.,um there is two uh there is a bi a bunny and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,the dog made a castle.,the dog made a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and the bunny want/3s to play with the dog.,and the bunny wants to play with the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,now : the bunny is try/ing to help make the castle bigger.,now the bunny is trying to help make the castle bigger +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,(uh) but he is pour/ing it on the castle.,uh but he is pouring it on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and the dog get/3s really worry/ed.,and the dog gets really worried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and then the castle is gone except for one little part.,and then the castle is gone except for one little part +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,then the bunny rabbit is (ss) sorry that he broke the castle.,then the bunny rabbit is ss sorry that he broke the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and the dog is very sad.,and the dog is very sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,the bunny sees the[-:] little dog again.,the bunny sees the little dog again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and they have picnic basket/s.,and they have picnic baskets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and[-:] the rabbit is really hungry.,and the rabbit is really hungry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,so he take/3s out all of his food : and : start/3s to eat.,so he takes out all of his food and starts to eat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and then he ate up all of his food really quick.,and then he ate up all of his food really quick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and he had nothing left.,and he had nothing left +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,then (he got really fel) he felt really sick (and).,then he got really fel he felt really sick and +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,I think you skip/ed a page [+_bch].,I think you skipped a page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and then the little : dog (got a doctor) found a doctor and want/ed (it to co) her to come and help.,and then the little dog got a doctor found a doctor and wanted it to co her to come and help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and she pull/ed[-:] her toward/3s the sick bunny.,and she pulled her towards the sick bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and then she found out that he had a stomachache.,and then she found out that he had a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,then he felt better because the doctor help/ed him.,then he felt better because the doctor helped him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,the bunny meet/3s the rabbit again.,the bunny meets the rabbit again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and the bunny has a wagon with a balloon tie/ed to the wheel.,and the bunny has a wagon with a balloon tied to the wheel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and : the rabbit want/3s to hold the balloon[-:].,and the rabbit wants to hold the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and (then[-:] : he untie/3s[-:] it) [~_well] he try/3s to tie it (on to the knot) in a knot.,and then he unties it he tries to tie it on to the knot in a knot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and : then the balloon actually fly/3s[!] away.,and then the balloon actually flies away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and the little dog get/3s really mad [~_child_growls_when_he_says_this].,and the little dog gets really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,(so they go) so the little rabbit go/3s to see the balloon man : so he can buy a balloon.,so they go so the little rabbit goes to see the balloon man so he can buy a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,but he do/3s not have any money.,but he does not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,he need/3s twenty five cent/s to buy a balloon.,he needs twenty five cents to buy a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,so they get really sad.,so they get really sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and then[-:] they find the same doctor and ask if they can have some money.,and then they find the same doctor and ask if they can have some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,: then the little rabbit point/3s to the balloon man and say/3s we want a balloon.,then the little rabbit points to the balloon man and says we want a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and then : she pay/3s the man.,and then she pays the man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,and they get a balloon.,and they get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/712.slt,: (and) and then they are happy.,and and then they are happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,once upon a time they were bounce/ing a ball.,once upon a time they were bouncing a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,but it land/ed in the water.,but it landed in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,he dived|dive[EW:dove] in and grab/ed it.,he dived in and grabbed it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,but he did got[EW:get] it : from his hand/s [EU].,but he did got it from his hands +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,and then[-:] : he was in love.,and then he was in love +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,once upon a time there was a zebra and his sister.,once upon a time there was a zebra and his sister +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,they said let us jump on there!,they said let us jump on there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,then she keeped|keep[EW:kept] on race/ing over there.,then she keeped on racing over there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,then[-:] : she hurt[!] her knee.,then she hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,the dad came over and said what is the matter!,the dad came over and said what is the matter +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,I hurt my knee!,I hurt my knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,the daddy put[!] the bandaid on her.,the daddy put the bandaid on her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,and then : she was able to walk.,and then she was able to walk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,you should never (wa) run over there ever again.,you should never wa run over there ever again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,no run/ing[!] said the sign.,no running said the sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,the end.,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,once upon a time there was a zebra and a[EW:an] elephant.,once upon a time there was a zebra and a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,they were play/ing with a[EW:an] airplane.,they were playing with a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,she went zoom!,she went zoom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,and then it fell[!] into the water.,and then it fell into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,the zebra was so[-:] angry.,the zebra was so angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,she telled|tell[EW:told] the lifeguard : that [~_high_pitched_voice] please help us because that : airplane is stuck in the water!,she telled the lifeguard that please help us because that airplane is stuck in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,The lifeguard (s) try/3s[!] to reach it.,The lifeguard s tries to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,then : they bringed|bring[EW:brought] it out.,then they bringed it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,she try/ed it with a net : then scoop/ed it up : and send it out of the water [EU].,she tried it with a net then scooped it up and send it out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,and he was so[-:][!] happy.,and he was so happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,once upon a time there was a bunny : and a doggy.,once upon a time there was a bunny and a doggy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,they were build/ing a castle[-:].,they were building a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,(he drop/ed some s) bunny dump/ed some sand on top of the castle.,he dropped some s bunny dumped some sand on top of the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,but it accidentally broke into one piece.,but it accidentally broke into one piece +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,then he had to pile it back up again.,then he had to pile it back up again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,once upon a time bunny was walk/ing : with his picnic basket.,once upon a time bunny was walking with his picnic basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,they were eat/ing their favourite stuff.,they were eating their favourite stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,soon : rabbit was full.,soon rabbit was full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,and then he was twirl/ing in his head.,and then he was twirling in his head +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,then : he runned|run[EW:ran] to : grandma and said : he is twirl/ing[!] in his head[!] said he.,then he runned to grandma and said he is twirling in his head said he +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,then she was : say/ing do not eat this carrot!,then she was saying do not eat this carrot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,and remember next time to not eat that carrot said the old lady.,and remember next time to not eat that carrot said the old lady +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,once upon a time bunny came over.,once upon a time bunny came over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,he found a balloon on his wagon.,he found a balloon on his wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,then : he thought of something.,then he thought of something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,he[-:] : untie/ed it from the wagon.,he untied it from the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,but then when it flew up : it pop/ed.,but then when it flew up it popped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,then they ran to the : balloon man : and buyed|buy[EW:bought] one of those balloon/s[!].,then they ran to the balloon man and buyed one of those balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,but then it said : five twenty nine dollar/s.,but then it said five twenty nine dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,then : they were sad : because they look/ed up : and one balloon went away.,then they were sad because they looked up and one balloon went away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,then the : puppy was stand/ing there.,then the puppy was standing there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,then : both guy/s were jump/ing[!] up because he was : hide/ing the balloon/s behind[-:] him.,then both guys were jumping up because he was hiding the balloons behind him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,then they got their own balloon/s.,then they got their own balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/511.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,They were bounce/ing the ball.,They were bouncing the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,Then they fell into the pool.,Then they fell into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,(and the) and they swimmed|swim[EW:swam] to go get it.,and the and they swimmed to go get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,And they (fe) get|get[EW:got] the ball.,And they fe get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,(and they) and the elephant was surprise/ed.,and they and the elephant was surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,And the end [+_bch].,And the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,they were laugh/ing at the pool[-:].,they were laughing at the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,then they were run/ing[-:].,then they were running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and (then they) then they were run/ing.,and then they then they were running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,(they were run) (they were) the elephant put/3s his toe up.,they were run they were the elephant puts his toe up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and then she got a[EW:an] owie.,and then she got a owie +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,then : a[EW:an] elephant came and[EW:to] fix her.,then a elephant came and fix her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and then she was cry/ing.,and then she was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and[-:] they were sit/ing on the bench.,and they were sitting on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and : (elephant w) the big elephant was mad at her.,and elephant w the big elephant was mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,(they were) (they were pl) they were laugh/ing.,they were they were pl they were laughing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and they had a[EW:an] airplane[-:].,and they had a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and then : they were play/ing with it.,and then they were playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,then she grab/ed it.,then she grabbed it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and it was in the swimming pool[-:].,and it was in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,(and they) and he was mad.,and they and he was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and then the big elephant came.,and then the big elephant came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,(an) and he said it fell in the water.,an and he said it fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,(then she try/ed) then he[!] try/ed to get it.,then she tried then he tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,but it was too far.,but it was too far +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and then they did not know what to do[-:].,and then they did not know what to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,then they got a net[-:].,then they got a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and then they : got it.,and then they got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,(and then) (then they w) then they just got it back.,and then then they w then they just got it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and then they love/ed it.,and then they loved it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,(um) they were play/ing sand.,um they were playing sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and they build|build[EW:built] a sandcastle.,and they build a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and (then they) then the rabbit wreck/ed it.,and then they then the rabbit wrecked it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and then they have to build it all over again.,and then they have to build it all over again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,then they try/ed to build it.,then they tried to build it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,but it was too hard.,but it was too hard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,they were walk/ing for a picnic.,they were walking for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,they were eat/ing.,they were eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and (then they got ti) (then they) then they got tire/ed.,and then they got ti then they then they got tired +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and then they felt sad because they ate too much[EW:many] goodie/s.,and then they felt sad because they ate too much goodies +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and (then they) then they saw their dad.,and then they then they saw their dad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and then they got the dad.,and then they got the dad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and then they were tire/ed again [~_whispers_last_word].,and then they were tired again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and (then the) then they went home.,and then the then they went home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and they were pull/ing a wagon that was tie/ed to a balloon.,and they were pulling a wagon that was tied to a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,then a rabbit came along and said what a nice balloon.,then a rabbit came along and said what a nice balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and then she try/ed to untie it.,and then she tried to untie it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,but then it went float/ed away [EU].,but then it went floated away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and (then) (then they were) then he was mad.,and then then they were then he was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and then they saw some more balloon/s.,and then they saw some more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,but can we buy a balloon please?,but can we buy a balloon please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and then they said no.,and then they said no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,(and then) : and then they were sad.,and then and then they were sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and then they did not until they got their dad to buy one.,and then they did not until they got their dad to buy one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and then dad bought one.,and then dad bought one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,(and) and said two cent/s please.,and and said two cents please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and they got two cent/s.,and they got two cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,and then they got (ba) two balloon/s.,and then they got ba two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/559.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,they bought candy.,they bought candy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,they are shout/ing.,they are shouting +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,they jump/ed in.,they jumped in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,[~_another_child's_voice_heard_in_background] and he want/3s : the gum.,and he wants the gum +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,then she is not let/ing him have it.,then she is not letting him have it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,they are scare/ed.,they are scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,they think there is a shark in there.,they think there is a shark in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,they are run/ing away.,they are running away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,she got a[EW:an] owie.,she got a owie +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,no I get to tell what I want [+_bch].,no I get to tell what I want +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and she was cry/ing.,and she was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and (she) he put a bandage on it.,and she he put a bandage on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and they are sit/ing at a bench.,and they are sitting at a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and somebody came over.,and somebody came over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,he found a[EW:an] airplane.,he found a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and he want/3s to keep it.,and he wants to keep it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and she stoled|steal[EW:stole] it from him.,and she stoled it from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and it fell in : front.,and it fell in front +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and it broke.,and it broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and : somebody came over.,and somebody came over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and they try/ed to take it out.,and they tried to take it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and he reach/ed over.,and he reached over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and they were sad.,and they were sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and : he could not get it out still.,and he could not get it out still +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and they pour/ed [EU].,and they poured +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,: [~_laughs] and he got it out.,and he got it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and they were happy.,and they were happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,they are play/ing in the sandbox.,they are playing in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,they are build/ing a castle.,they are building a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,he try/ed to break it.,he tried to break it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and it was cover/ed up.,and it was covered up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and he was cry/ing.,and he was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,they are walk/ing.,they are walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,they are eat/ing.,they are eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,he was eat/ing and drink/ing.,he was eating and drinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,she (wa) was rest/ing.,she wa was resting +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and (sh she) she was run/ing.,and sh she she was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and she was pull/ing on her shirt.,and she was pulling on her shirt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and then she got in a time out.,and then she got in a time out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and (sh) a stranger took her home.,and sh a stranger took her home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,he was bring/ing the wagon and a balloon.,he was bringing the wagon and a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and they were fight/ing over it.,and they were fighting over it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and he took his balloon.,and he took his balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and then it went up in the air.,and then it went up in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and it pop/ed.,and it popped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and : the balloon man came.,and the balloon man came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and : he ask/ed them if we want/ed another one.,and he asked them if we wanted another one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and he got one.,and he got one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and they all pop/ed.,and they all popped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and they went away.,and they went away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and he telled|tell[EW:told] his mother about it.,and he telled his mother about it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and then : his mother got some money for him.,and then his mother got some money for him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,and then they each got balloon/s.,and then they each got balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/449.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,a giraffe and a[EW:an] elephant are bounce/ing a ball.,a giraffe and a elephant are bouncing a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,but it roll/ed into (the) : a pool.,but it rolled into the a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,the cow jump/ed in to get it : and brang|bring[EW:brought] it back to the elephant.,the cow jumped in to get it and brang it back to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,the elephant said to the : giraffe thank you.,the elephant said to the giraffe thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,an elephant and a giraffe want/ed : to go on a diving board.,an elephant and a giraffe wanted to go on a diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,the elephant : start/ed run/ing over to it.,the elephant started running over to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,but the elephant slip/ed.,but the elephant slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,the giraffe (went to get to the) went to get the lifeguard.,the giraffe went to get to the went to get the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,the lifeguard : came and put a bandaid on it.,the lifeguard came and put a bandaid on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,: the elephant close/ed : her eye/s while he put the bandaid on : then : help/ed her go over to the bench.,the elephant closed her eyes while he put the bandaid on then helped her go over to the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,the lifeguard : said : the sign over there says no run/ing.,the lifeguard said the sign over there says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,a giraffe was hold/ing an airplane.,a giraffe was holding an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,: (and : he) :.,and he +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,: and he [+..].,and he +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,: let us try the next page?,let us try the next page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,okay [+_bch].,okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,and the : elephant took the : airplane away : from the giraffe.,and the elephant took the airplane away from the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,but it : fell : in the pool.,but it fell in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,the giraffe : got mad at the elephant for do/ing that.,the giraffe got mad at the elephant for doing that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,the lifeguard came over and said what is the matter?,the lifeguard came over and said what is the matter +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,the elephant explain/ed I took : a[EW:an] airplane : (t) from the giraffe.,the elephant explained I took a airplane t from the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,and it fell into the pool.,and it fell into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,the lifeguard try/ed to get it.,the lifeguard tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,but he could not.,but he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,the giraffe start/ed to cry because nobody could get it.,the giraffe started to cry because nobody could get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,a different lady came over : and : said that she could get : the airplane out with a net.,a different lady came over and said that she could get the airplane out with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,and she got it.,and she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,the giraffe said thank you to the lady.,the giraffe said thank you to the lady +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,and the elephant said : she would never do it again.,and the elephant said she would never do it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,a rabbit and a dog : went to the park and : play/ed in the sand box.,a rabbit and a dog went to the park and played in the sand box +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,and they built a : castle out of sand.,and they built a castle out of sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,the rabbit : want/ed to see what happen/ed if he : pour/ed : more sand on the castle.,the rabbit wanted to see what happened if he poured more sand on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,it : broked|broke[EW:broke] the castle when : the rabbit pour/ed the sand.,it broked the castle when the rabbit poured the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,so the dog fix/ed it back up.,so the dog fixed it back up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,a rabbit and a dog went for a picnic.,a rabbit and a dog went for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,: look at the picture/s.,look at the pictures +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,what do you think is happen/ing in the story?,what do you think is happening in the story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,the rabbit is (eat) : eat/ing.,the rabbit is eat eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,and : the rabbit got full.,and the rabbit got full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,but the dog did not.,but the dog did not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,: would you like to try the next page?,would you like to try the next page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,okay [+_bch].,okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,and the dog went to get : the rabbit/z mom because the rabbit could not get up.,and the dog went to get the rabbit's mom because the rabbit could not get up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,the dog (dra) : show/ed the rabbit/z mom where they had a picnic.,the dog dra showed the rabbit's mom where they had a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,: do you want to try the next page?,do you want to try the next page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,okay [+_bch].,okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,and : they went back home together.,and they went back home together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,a dog was : pull/ing his wagon with a balloon tie/ed onto it.,a dog was pulling his wagon with a balloon tied onto it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,a rabbit came and : want/ed the balloon.,a rabbit came and wanted the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,he try/ed to take the balloon off.,he tried to take the balloon off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,but it : float/ed up into the sky.,but it floated up into the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,soon they could not see it.,soon they could not see it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,and the dog got mad at the rabbit.,and the dog got mad at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,then the rabbit saw a : guy sell/ing balloon/s.,then the rabbit saw a guy selling balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,they came over.,they came over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,and the rabbit said I want that one.,and the rabbit said I want that one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,so : the balloon man gave : the balloon for five cent/s.,so the balloon man gave the balloon for five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,but the rabbit did not have any money.,but the rabbit did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,the rabbit went to ask her mom : if she could have some money.,the rabbit went to ask her mom if she could have some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,so her mom gave her some : and buyed|buy[EW:bought] two balloon/s.,so her mom gave her some and buyed two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/754.slt,and then they both had a balloon.,and then they both had a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,once upon a (di) time Giraffe saw Elephant play/ing ball in the swimming pool.,once upon a di time Giraffe saw Elephant playing ball in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Elephant : hit it off the edge and into the swimming pool.,Elephant hit it off the edge and into the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Giraffe went swim/ing for it.,Giraffe went swimming for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Elephant said thank/s.,Elephant said thanks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,: you are welcome said Giraffe.,you are welcome said Giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,once upon a time Giraffe and Elephant want/ed : to swim.,once upon a time Giraffe and Elephant wanted to swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,(Ele) (Elephant) giraffe look/ed at no run/ing.,Ele Elephant giraffe looked at no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Elephant want/ed to run.,Elephant wanted to run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,(Giraffe) Giraffe forgot to tell him about the sign.,Giraffe Giraffe forgot to tell him about the sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Elephant ran and slip/ed.,Elephant ran and slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,and Giraffe (wa) : was behind him.,and Giraffe wa was behind him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Elephant hurt his knee.,Elephant hurt his knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Giraffe went : say/ing : it is okay.,Giraffe went saying it is okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Giraffe told the lifeguard.,Giraffe told the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,the lifeguard put a bandage on it.,the lifeguard put a bandage on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,then : they made her sit down on a bench.,then they made her sit down on a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,he remind/ed her (no run/ing) no run/ing.,he reminded her no running no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,once upon a time Giraffe brought a plane to the swimming pool.,once upon a time Giraffe brought a plane to the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Elephant ask/ed if he could use it.,Elephant asked if he could use it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,he (play/ed) play/ed with it and show/ed him what to do.,he played played with it and showed him what to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Elephant : grab/ed it from him : and threw it up in the air.,Elephant grabbed it from him and threw it up in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,and it came back down crash/ing into the water.,and it came back down crashing into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Giraffe was mad.,Giraffe was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,and Elephant said sorry.,and Elephant said sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,then the lifeguard saw (it) it.,then the lifeguard saw it it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,he ask/ed elephant why it was in there.,he asked elephant why it was in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,the lifeguard : try/ed to reach for it.,the lifeguard tried to reach for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,he said how do we get it?,he said how do we get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,somebody came with a net.,somebody came with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,the swimming teacher got it out.,the swimming teacher got it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,thank you said giraffe.,thank you said giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,I[-:] : will not let you use it again.,I will not let you use it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,once upon a time there was this dog.,once upon a time there was this dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,and he had a friend name/ed Bunny.,and he had a friend named Bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,he said his friend Bunny could help build a sandcastle.,he said his friend Bunny could help build a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,he pour/ed a : pail of sand on it.,he poured a pail of sand on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,now look what you did Bunny.,now look what you did Bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,: I am sorry.,I am sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,once upon a time Dog was go/ing on a picnic.,once upon a time Dog was going on a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Bunny came too.,Bunny came too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Bunny brought : cake : cheese : chocolate bar : cookie/s carrot/s sandwich/s chip/s jam.,Bunny brought cake cheese chocolate bar cookies carrots sandwiches chips jam +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,and Dog only brought hardly anything.,and Dog only brought hardly anything +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Dog was eat/ing.,Dog was eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,and Bunny was full.,and Bunny was full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Dog keeped|keep[EW:kept] eat/ing.,Dog keeped eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,and then Bunny felt sick.,and then Bunny felt sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Dog ran to Bunny/z mom.,Dog ran to Bunny's mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Dog pull/ed (bunny) Bunny/z mom over.,Dog pulled bunny Bunny's mom over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,: Bunny/z : mom help/ed him.,Bunny's mom helped him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Bunny went home with his mom.,Bunny went home with his mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,and Dog stay/ed there.,and Dog stayed there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,once upon a time : Dog was go/ing to pick up one more balloon.,once upon a time Dog was going to pick up one more balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Bunny said : can I have one?,Bunny said can I have one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Dog said no do not.,Dog said no do not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,now look what you did.,now look what you did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,sorry.,sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Bunny watch/ed it.,Bunny watched it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,and dog look/ed very mad.,and dog looked very mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,there was a balloon seller man.,there was a balloon seller man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,(he) Bunny ask/ed if he could buy one.,he Bunny asked if he could buy one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Bunny look/ed for money.,Bunny looked for money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,it was five : cent/s.,it was five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Dog came : and said : we will not need one.,Dog came and said we will not need one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,Bunny/z mom : was stand/ing.,Bunny's mom was standing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,and Bunny went over there to ask for some money.,and Bunny went over there to ask for some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,he told his mother about the balloon/s.,he told his mother about the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,his mother paid the balloon man.,his mother paid the balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/744.slt,they each got a balloon.,they each got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,A (walk) walk back home[?] [EU].,A walk walk back home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,a bad bad girl : ball [EU].,a bad bad girl ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,and went in[?] [EU].,and went in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,a need up[?] [EU].,a need up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,and take tea [EU].,and take tea +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,all done [+_bch].,all done +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) go/ing swim/ing[?] [EU].,uh going swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) swim/ing[?] [EU].,uh swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) went play [EU].,uh went play +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) jump in pool [EU].,uh jump in pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) ow.,uh ow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,: (uh) bandaid [EU].,uh bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) go back home [EU].,uh go back home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) : tea : with mom [EU].,uh tea with mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,all done [+_bch].,all done +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) girl [EU].,uh girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,and : go back home [EU].,and go back home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,oh a plane [EU].,oh a plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) bad bad girl [EU].,uh bad bad girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) in water [EU].,uh in water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) man [EU].,uh man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) : bad bad girl [EU].,uh bad bad girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) no reach it [EU].,uh no reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) in water [EU].,uh in water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,mom[!] get it [EU].,mom get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,mom reach|reach[EW:reached] it.,mom reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(and back) : and : back home [EU].,and back and back home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,and it girl[?] [EU].,and it girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,all done [+_bch].,all done +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,Pop xx puppy be snow/ing[?] [EU].,Pop puppy be snowing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,and xx tire [EU].,and tire +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,a man [EU].,a man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,what else?,what else +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) more throw/ing[?] it on [EU].,uh more throwing it on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,a (man k) : man (k) [EU].,a man k man k +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,a tire [EU].,a tire +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,xxx.,x +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,anything more?,anything more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,uhuh [+_bch].,uhuh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(eat) eat nummy[c] [EU].,eat eat nummy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,and (te) (te) (te) : and tea too.,and te te te and tea too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,[EW:the] ball went up.,ball went up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh man) a man drink[?] [EU].,uh man a man drink +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,and (uh te) (te) tea [EU].,and uh te te tea +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) back home [EU].,uh back home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,Where *are we go/ing [EU]?,Where we going +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,a : big balloon [EU].,a big balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) back up [EU].,uh back up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,a mat[-:] [EU].,a mat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,and a bad bad go/ing [EU].,and a bad bad going +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,a more more : balloon [EU].,a more more balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) more more balloon [EU].,uh more more balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,a bad pull/ing[?] [EU].,a bad pulling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,a buy no balloon [EU].,a buy no balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,no.,no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) go/ing [EU].,uh going +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) : go/ing [EU].,uh going +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) want balloon [EU].,uh want balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,(uh) xx balloon.,uh balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/531.slt,all done [+_bch].,all done +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,a[EW:an] : elephant is bounce/ing : a ball by the pool.,a elephant is bouncing a ball by the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and then it go/3s in the water.,and then it goes in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and the horse : (um) swim/3s to go get it.,and the horse um swims to go get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and (it) the : horse : gave (i) it to the elephant.,and it the horse gave i it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and (it) she like/3s : the : horse.,and it she likes the horse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,(um the) they saw a diving board.,um the they saw a diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and they : want to : go on it.,and they want to go on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and the elephant run/3s to it.,and the elephant runs to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and she slip/3s.,and she slips +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and she hurt : her knee.,and she hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and : the lifeguard come/3s and : (um) put/3s a bandaid on.,and the lifeguard comes and um puts a bandaid on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and (then : it) (then it go) then the lifeguard (s) put/3s it on : her knee.,and then it then it go then the lifeguard s puts it on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,then : she sit/3s down : on the bench.,then she sits down on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and (she) (the el) the lifeguard : show/3s : to her : on the wall it says no run/ing.,and she the el the lifeguard shows to her on the wall it says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,the giraffe gots[EW:has] a : toy : airplane.,the giraffe gots a toy airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and (she) they like it a lot.,and she they like it a lot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and then : (sh) he fly/3s it.,and then sh he flies it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and the : girl elephant take it away : from him.,and the girl elephant take it away from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,him accidentally put : the toy elephant in the water.,him accidentally put the toy elephant in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and the : giraffe : was mad at her.,and the giraffe was mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and : the lifeguard come/3s and see/3s : what happen/ed.,and the lifeguard comes and sees what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,(and) : and (the lifeguard) (the : girl giraffe) the girl elephant : tell/3s what happen/ed to (the) : the airplane.,and and the lifeguard the girl giraffe the girl elephant tells what happened to the the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and the lifeguard try/3s to : (rea) get it.,and the lifeguard tries to rea get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and he could not get it.,and he could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,(and) and they can not get it.,and and they can not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and then another lady come/3s.,and then another lady comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and she has a net to get it.,and she has a net to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and then : she get/3s it : the : airplane : and (give es) give it to the giraffe.,and then she gets it the airplane and give es give it to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and then : (h) the elephant say/3s : sorry.,and then h the elephant says sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,(um) three : bunny/s are play/ing in : the sandbox.,um three bunnies are playing in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and they are build/ing a castle.,and they are building a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,the boy bunny is pour/ing sand on it.,the boy bunny is pouring sand on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,(and) : and the castle is broken.,and and the castle is broken +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and : they try/ed to fix it.,and they tried to fix it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,they are have/ing a picnic.,they are having a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and : the boy bunny (is ha) has lot/s of : goody/s.,and the boy bunny is ha has lots of goodies +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and : the bunny is full of food.,and the bunny is full of food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and he get/3s sick : of the food.,and he gets sick of the food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and : the doctor come/3s to fix him up.,and the doctor comes to fix him up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and the girl bunny is pull/ing the doctor : over to the picnic table.,and the girl bunny is pulling the doctor over to the picnic table +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and he (fix) fix/ing him.,and he fix fixing him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and (he is) he walk/3s : home : with the doctor.,and he is he walks home with the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,the girl has (a) a wagon on with a balloon.,the girl has a a wagon on with a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and the boy bunny (h) look/3s at the balloon.,and the boy bunny h looks at the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and (it tie) he (tie/3s) untie/3s it.,and it tie he ties unties it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and then it float/3s away.,and then it floats away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,then the girl bunny is : mad.,then the girl bunny is mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,then : the boy bunny is go/ing to [~_gonna] buy a new balloon.,then the boy bunny is going to buy a new balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,then : (he) : he buy/3s the balloon.,then he he buys the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,(and) but the balloon/s is[EW:are] fifty cent/s.,and but the balloons is fifty cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,he only got[EW:has] one dollar.,he only got one dollar +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and : they (w) are sad.,and they w are sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and then : (um) the nurse have|have[EW:has] (um) some money.,and then um the nurse have um some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and he is go/ing to (t) pay and have (s) ask : her to have some money.,and he is going to t pay and have s ask her to have some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,(and then she) and then she say/3s yes : to buy the balloon.,and then she and then she says yes to buy the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and (the) he buy|buy[EW:buy/3s] it : the balloon.,and the he buy it the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,and they got two balloon/s.,and they got two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/935.slt,they are happy.,they are happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,(um : that) : that elephant *is sad [EU].,um that that elephant sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,them pun[?] the lady [EU].,them pun the lady +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,the xx [~_sounds_like_/mI/] went in the water.,the went in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and[-:] and try/ing to (help) : help [EU].,and and trying to help help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,say thank you [EU].,say thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,(um) they want go in the water not [EU].,um they want go in the water not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and he get/3s in the water.,and he gets in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and they run from the cow.,and they run from the cow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and (the guy : fr um) the guy hurt him[EW:his] knee.,and the guy fr um the guy hurt him knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and it *is bleed/ing [EU].,and it bleeding +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and : he bite|bite[EW:bit] her.,and he bite her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and the bandaid [EU].,and the bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and he say|say[EW:said] bad boy.,and he say bad boy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,bad [EU].,bad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,tell me the story.,tell me the story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,bad [EU]!,bad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,once upon a time.,once upon a time +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,(once : in) : (in the).,once in in the +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,what can you see there?,what can you see there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,play/ing a[EW:an] airplane [EU].,playing a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,okay.,okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,(and he) and her dog say|say[EW:said] in the xx.,and he and her dog say in the +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and he grab|grab[EW:grabbed] airplane her [EU].,and he grab airplane her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,"and he [~_makes_sound_""grrr""].",and he +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and : her[EW:she] *is sad [EU].,and her sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and say hey [EU]!,and say hey +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,"keep go/ing, are you finish/ed that part, okay.",keep going are you finished that part okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and try/ing to get *the airplane [EU].,and trying to get airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and : xx him[EW:he] *is try/ing [EU].,and him trying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and them[EW:they] try/ed [trieded|tryEW:tried] to get it back.,and them tried to get it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,(um the) (the um) and them[EW:they] got the airplane.,um the the um and them got the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and they (ha) be happy they got the airplane [EU].,and they ha be happy they got the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and them[EW:they] *are happy [EU].,and them happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,the end [+_bch]!,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,(um) : do not take that xx [+_bch].,um do not take that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,(um) there was a sandbox.,um there was a sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and the boy build|build[EW:built] : *a castle [EU].,and the boy build castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,(and the) and (the p) the puppy maked|make[EW:made] [~_make-ed|makeEW:made] a mess.,and the and the p the puppy maked a mess +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and the pig you can make it again.,and the pig you can make it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,the xx have treat/s.,the have treats +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and the the doggy ate her sandwich.,and the the doggy ate her sandwich +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,(and the) : and her[EW:she] pull|pull[EW:pulled] [EU].,and the and her pull +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,(and) : and the puppy drank it.,and and the puppy drank it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,(and the) (and) (and) and them[EW:they] fall|fall[EW:fell] in the water.,and the and and and them fall in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,(and) : and (the um) : (the ch : uh) : the dog *is with the mommy [EU].,and and the um the ch uh the dog with the mommy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,them[EW:they] falls|fall[EW:fall][?].,them falls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and them[EW:they] (um) got (him um) him[EW:his] mom.,and them um got him um him mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,the end [+_bch]!,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,(uh) : them[Ew:they] *are pull/ing a wagon [EU].,uh them pulling a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,(and : and it) and (her) them[EW:they] gots[EW:have] something on it.,and and it and her them gots something on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,(and) and the tam[?] it bad [EU].,and and the tam it bad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and (and it) : my balloon [EU]!,and and it my balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,it blew away.,it blew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,him[EW:he] say|say[EW:says] [~_makes_noise_'grrr'] : like the dog.,him say like the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and (the) (that) that is where they ran[?] dog/z balloon/s [EU].,and the that that is where they ran dog's balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and : him[EW:he] like/3s the puppy.,and him likes the puppy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,the balloon *is back [EU].,the balloon back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,the man (mean) : *is mean [EU].,the man mean mean +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,the man : *is sad[?] [EU].,the man sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and the lady that backed him home [EU].,and the lady that backed him home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and he *is *a sad boy [EU].,and he sad boy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,and they hello [EU].,and they hello +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,(um) : them[EW:they] be happy [EU].,um them be happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/482.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the elephant is bounce/ing a ball.,the elephant is bouncing a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the ball went in the water[-:].,the ball went in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,(uh) the giraffe : swam to (the) get the ball.,uh the giraffe swam to the get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the : giraffe got the ball and bring|bring[EW:brought] it back to the elephant.,the giraffe got the ball and bring it back to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,(the elephant) : the elephant is : (thanks) thank/ing[~!__whispering] [EU].,the elephant the elephant is thanks thanking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,(the elephant) : the elephant want/3s to go swim/ing.,the elephant the elephant wants to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the elephant ran[-:].,the elephant ran +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the elephant slip/ed.,the elephant slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the elephant (hur) : (hurt her leg) hurt her knee.,the elephant hur hurt her leg hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,(uh) : giraffe call|call[EW:called] her dad.,uh giraffe call her dad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,elephant is cry/ing.,elephant is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,elephant has a bandaid now.,elephant has a bandaid now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,*the guy say/3s : no run/ing [EU].,guy says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the giraffe has a airplane.,the giraffe has a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,(the gi) the giraffe is play/ing with it.,the gi the giraffe is playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the elephant took it.,the elephant took it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the elephant drop/ed it : in the water.,the elephant dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the giraffe is mad at the elephant.,the giraffe is mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,elephant dad came [EU].,elephant dad came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,elephant : talk/ed to (the elephant) : the girl elephant.,elephant talked to the elephant the girl elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the : daddy elephant : reach/ed to get it.,the daddy elephant reached to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,giraffe cry/ed.,giraffe cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,(n) mommy elephant came.,n mommy elephant came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,(m) mommy elephant got it.,m mommy elephant got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,mommy elephant give|give[EW:gave] to the giraffe [EU].,mommy elephant give to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,(giraffe t oh uh) : giraffe hug/ed the airplane.,giraffe t oh uh giraffe hugged the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,(the bunny) : the bunny : (ma) made a sandcastle.,the bunny the bunny ma made a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,(the) : (the) : the dog : help/ed it.,the the the dog helped it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,: (the dog was make) the dog was make/ing it straight up.,the dog was make the dog was making it straight up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,(the) the bunny is (sh) get/ing some sand.,the the bunny is sh getting some sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,(the) : the bunny (pour some um) : pour|pour[EW:poured] some sand on the sandcastle.,the the bunny pour some um pour some sand on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the bunny is not happy.,the bunny is not happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the dog fix|fix[EW:fixed] it up.,the dog fix it up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,(the[-:]) they are go/ing to having[EW:have] a picnic.,the they are going to having a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,they are start/ing eat/ing [EU].,they are starting eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the bunny is full.,the bunny is full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the bunny is (day) : dizzy.,the bunny is day dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,a doctor came.,a doctor came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the dog (pull the) : pull|pull[EW:pulled] the doctor.,the dog pull the pull the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the doctor : (h) help/3s the bunny.,the doctor h helps the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,(the doctor : is) (um the) : the : mother help/3s her son.,the doctor is um the the mother helps her son +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,(the do) the dog is (w) walk/ing the wagon with a balloon on it.,the do the dog is w walking the wagon with a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the bunny is go/ing to[:_gonna] touch it.,the bunny is going to touch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the bunny untie|untie[EW:unties][-:] the knot.,the bunny untie the knot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,(the b) the balloon is fly/ing up.,the b the balloon is flying up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,(uh) : the dog is mad.,uh the dog is mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the bunny saw : (a uh) a[EW:an] other bunny with some balloon/s.,the bunny saw a uh a other bunny with some balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,and the bunny said can I have one of them[EW:those] balloon/s?,and the bunny said can I have one of them balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the man (give a) : (give a) : said : it cost[EW:costs] five dollar/s.,the man give a give a said it cost five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,(they) : they did not have no[EW:any] money.,they they did not have no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,(they saw) bunny saw (the) his mother.,they saw bunny saw the his mother +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the bunny went to his mother.,the bunny went to his mother +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the mother give/3s some money to the man.,the mother gives some money to the man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the dog and the rabbit : got : balloon/s.,the dog and the rabbit got balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/870.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,Once upon a time there was[EW:were] two funny animal/s.,Once upon a time there was two funny animals +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,(their) their ball fall|fall[EW:fell] down through the water.,their their ball fall down through the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,he was swim/ing.,he was swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,and : he got the ball.,and he got the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,now he was happy.,now he was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,there was no problem.,there was no problem +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,One day (they) they were : happy.,One day they they were happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,and they want to go swimming.,and they want to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,they *are run/ing to[~?_run_into] the pool [EU].,they running to the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,(then) then she trip/ed.,then then she tripped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,then she got a bruise.,then she got a bruise +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,then (the doctor) : [~_I_mean_I_mean] a lifeguard [EU].,then the doctor a lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,anything else?,anything else +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,that is it [+_bch].,that is it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,then he was try/ing to help.,then he was trying to help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,[~_sharp_intake_of_breath] she was feel/ing better.,she was feeling better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,[~_sharp_intake_of_breath] she should not have done that.,she should not have done that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,": Once upon a time : [~_makes_'tsk'_sound,_inhales_sharply] his friend just camed|come[EW:came].",Once upon a time his friend just camed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,(and) : (an) and she was happy to play right now[!].,and an and she was happy to play right now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,(and) and then he play|play[EW:played] with his airplane.,and and then he play with his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,: then she just take|take[EW:took] it away.,then she just take it away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,now it is in the water.,now it is in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,he was so mad.,he was so mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,(he) : then the lifeguard came.,he then the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,she ask/ed about : what happen/ed.,she asked about what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,the lifeguard try/3s to reach it.,the lifeguard tries to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,: he was so : sad.,he was so sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,(then) : then : the other girl just got a net.,then then the other girl just got a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,then she got it.,then she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,(she w) : he was very please/ed.,she w he was very pleased +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,he like/ed it so much.,he liked it so much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,Once upon a time : they were play/ing on the sandbox [EU].,Once upon a time they were playing on the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,they are both make/ing a sandcastle.,they are both making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,he pour/ed the whole thing.,he poured the whole thing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,one *of them did not liked|like[EW:like] it [EU].,one them did not liked it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,then they wreck/ed it.,then they wrecked it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,(then) then the other person cry/ed.,then then the other person cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,One day they were walk/ing in the forest.,One day they were walking in the forest +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,then they were have/ing a picnic.,then they were having a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,one of them were[EW:was] too full.,one of them were too full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,one of them have|have[EW:had] a tummyache.,one of them have a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,they ask/ed : (her) (some) the doctor.,they asked her some the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,I know what this mean/3s [+_bch].,I know what this means +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,he ask/ed.,he asked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,and : (he have|have[EW:has] a tummyache) the bunny have[EW:has] a tummyache.,and he have a tummyache the bunny have a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,because [~_whispers] I can see xx [+_bch].,because I can see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,the bunny said (um) are you okay?,the bunny said um are you okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,(then) then she feel|feel[EW:felt] good.,then then she feel good +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,Once upon a time : one of them have|have[EW:had] (a) a balloon (and[!]) and (a) a wagon.,Once upon a time one of them have a a balloon and and a a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,he like/ed it.,he liked it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,then he was try/ing to[:_tryna] unloose it [EU].,then he was trying to unloose it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,then it was gone.,then it was gone +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,now he was mad.,now he was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,they sawed|see[EW:saw] balloon/s.,they sawed balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,: he said can I have a balloon please?,he said can I have a balloon please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,(and) : and he like/ed it.,and and he liked it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,(then) then they ask/ed.,then then they asked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,then both of them were sad.,then both of them were sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,then they ask/ed the doctor how much : *do you[!] have [EU].,then they asked the doctor how much you have +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,"they ask/ed : we want one balloon, please.",they asked we want one balloon please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,the man said : yes.,the man said yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/817.slt,then they both like/ed it.,then they both liked it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,one day at the swimming pool : Elephant went over there.,one day at the swimming pool Elephant went over there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,and she brought her balloon.,and she brought her balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,she was bouncing it when : Giraffe came : over.,she was bouncing it when Giraffe came over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,: he ask/ed if he could play it [EU].,he asked if he could play it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,but then : it scare/ed Elephant.,but then it scared Elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,so she drop/ed the ball in : the pool.,so she dropped the ball in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,: Elephant did not know what to do.,Elephant did not know what to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,(so she a) so Giraffe want/ed to help.,so she a so Giraffe wanted to help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,he : jump/ed into the water : until he swam close to the balloon.,he jumped into the water until he swam close to the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,: he brought up : the ball : to Elephant.,he brought up the ball to Elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,Elephant was really please/ed that Giraffe help/ed him : find her ball : in the water.,Elephant was really pleased that Giraffe helped him find her ball in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,one day at the swimming pool Elephant and Giraffe want/ed to go in the water to go swim/ing.,one day at the swimming pool Elephant and Giraffe wanted to go in the water to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,: Elephant want/ed to go on the jump/ing board.,Elephant wanted to go on the jumping board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,she ran until she (fe) slip/ed on some water and fell.,she ran until she fe slipped on some water and fell +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,she cry/ed really loudly.,she cried really loudly +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,Giraffe came.,Giraffe came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,: the lifeguard saw it.,the lifeguard saw it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,so he came along.,so he came along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,he quickly got out a bandage and put it on Elephant.,he quickly got out a bandage and put it on Elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,the lifeguard help/ed her up and put her on the bench.,the lifeguard helped her up and put her on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,then the lifeguard told her that you can not run : in the swimming pool.,then the lifeguard told her that you can not run in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,when Giraffe came to the pool : Elephant (ss) saw him.,when Giraffe came to the pool Elephant ss saw him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,he had brought his new airplane toy.,he had brought his new airplane toy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,(hh) he show/ed her how : it could move.,hh he showed her how it could move +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,Elephant like/ed it a lot.,Elephant liked it a lot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,she grab/ed it from Giraffe.,she grabbed it from Giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,but then : she accidentally drop/ed it.,but then she accidentally dropped it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,Giraffe was really mad that she drop/ed it in the water : and was go/ing farther away [EU].,Giraffe was really mad that she dropped it in the water and was going farther away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,then the lifeguard came along.,then the lifeguard came along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,: Elephant told him what had happen/ed : and ask/ed if (they) he could help them reach it.,Elephant told him what had happened and asked if they he could help them reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,the lifeguard try/ed very hard.,the lifeguard tried very hard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,but he could not reach it.,but he could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,Giraffe was really sad until : they saw another[!] : elephant come/ing along.,Giraffe was really sad until they saw another elephant coming along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,(she kne) (thin) she thought she knew what happen/ed.,she kne thin she thought she knew what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,so she try/ed : to get out the airplane with her : net.,so she tried to get out the airplane with her net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,finally she got it out and gave it to Giraffe.,finally she got it out and gave it to Giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,Giraffe was please/ed.,Giraffe was pleased +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,and Elephant was happy that : he got it back.,and Elephant was happy that he got it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,a rabbit want/ed to help : a dog that made a sandcastle to finish it [EU].,a rabbit wanted to help a dog that made a sandcastle to finish it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,: and then : he : got a sandbox and put sand in it.,and then he got a sandbox and put sand in it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,the dog was already done.,the dog was already done +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,but the rabbit took the bucket and pour/ed the sand on the sandcastle.,but the rabbit took the bucket and poured the sand on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,(the cat uh) the rabbit was surprise/ed : what happen/ed [EU].,the cat uh the rabbit was surprised what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,he made the sandcastle fall down and turn/ed into a big clump like a mountain [EU].,he made the sandcastle fall down and turned into a big clump like a mountain +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,the dog try/ed to make it over again.,the dog tried to make it over again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,but it did not work.,but it did not work +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,Dog was plan/ing a picnic with Rabbit.,Dog was planning a picnic with Rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,: Rabbit took out his food : Dog saw that he had pack/ed too many thing/s.,Rabbit took out his food Dog saw that he had packed too many things +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,Rabbit ate too much.,Rabbit ate too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,and his tummy was full.,and his tummy was full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,and he got sick.,and he got sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,and then he felt : really bad.,and then he felt really bad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,Dog want/ed to help.,Dog wanted to help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,: a nurse was walk/ing on the road.,a nurse was walking on the road +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,Dog quickly ran to the nurse.,Dog quickly ran to the nurse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,come!,come +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,my friend has got a big tummyache.,my friend has got a big tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,I can help said the nurse.,I can help said the nurse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,he check/ed the body temperature.,he checked the body temperature +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,but then she knew that he was really sick.,but then she knew that he was really sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,but later soon he got better.,but later soon he got better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,and he got back up.,and he got back up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,and Dog was really happy that : he : was not sick anymore.,and Dog was really happy that he was not sick anymore +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,one day Dog was go/ing out with his wagon with a balloon tie/ed on it.,one day Dog was going out with his wagon with a balloon tied on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,Rabbit came along.,Rabbit came along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,Rabbit like/ed the balloon very much.,Rabbit liked the balloon very much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,he try/ed to take it off : and want/ed to keep it.,he tried to take it off and wanted to keep it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,when he took it off the balloon flew up in the sky.,when he took it off the balloon flew up in the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,Dog was mad because they could not catch it.,Dog was mad because they could not catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,then there was a balloon man.,then there was a balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,Rabbit went over to the balloon man.,Rabbit went over to the balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,can I have a balloon he ask/ed?,can I have a balloon he asked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,each balloon is five dollar/s : the man said.,each balloon is five dollars the man said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,they did not have any money.,they did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,so they were sad.,so they were sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,but then they saw the nurse that had money.,but then they saw the nurse that had money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,they ask/ed her if : they could : (borrow some of h) use (one of) some of her money : to buy two balloon/s.,they asked her if they could borrow some of h use one of some of her money to buy two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,the nurse gave him five dollar/s : (for each : of) for one for rabbit and one for dog.,the nurse gave him five dollars for each of for one for rabbit and one for dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/816.slt,: they were really happy and said thank yous[EW:you].,they were really happy and said thank yous +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,The : elephant is : bounce/ing a ball.,The elephant is bouncing a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,and the : giraffe : is say/ing : you are play/ing with a ball I think.,and the giraffe is saying you are playing with a ball I think +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,I guess the giraffe by accidentally knock/ed the : ball into the pool.,I guess the giraffe by accidentally knocked the ball into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the giraffe is : swim/ing : for the ball.,the giraffe is swimming for the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the giraffe get/3s[!] the ball for the elephant : and give/3s it to the elephant.,the giraffe gets the ball for the elephant and gives it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the elephant I guess like/3s[!] the[-:] giraffe now : I think.,the elephant I guess likes the giraffe now I think +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,(Uh) : I guess the elephant and the giraffe are go/ing to[:__gonna] : go : in[!] the pool.,Uh I guess the elephant and the giraffe are going to go in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the elephant is run/ing : toward the pool.,the elephant is running toward the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the elephant slip/3s.,the elephant slips +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the elephant hurt : his : knee.,the elephant hurt his knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,and then the : giraffe is try/ing to get help I think.,and then the giraffe is trying to get help I think +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the[-:] giraffe call/ed for help.,the giraffe called for help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,and the lifeguard is come/ing.,and the lifeguard is coming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the lifeguard is put/ing a : bandaid on : the elephant/z leg : or wound.,the lifeguard is putting a bandaid on the elephant's leg or wound +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,they[-:] get the elephant to sit on a bench.,they get the elephant to sit on a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the : lifeguard is (say/ing) point/ing to the sign : no run/ing.,the lifeguard is saying pointing to the sign no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,and the elephant is like whoopsies.,and the elephant is like whoopsies +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,(uh) : the : elephant : is talk/ing to the giraffe.,uh the elephant is talking to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the giraffe has a[EW:an] airplane and is play/ing with it.,the giraffe has a airplane and is playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the elephant steal/3s[!] the[-:] airplane away[!] from the giraffe.,the elephant steals the airplane away from the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the : elephant : (uh) I guess drop/ed the airplane into the pool.,the elephant uh I guess dropped the airplane into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the giraffe is mad at the elephant.,the giraffe is mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,and the[-:] plane is sink/ing.,and the plane is sinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the lifeguard is[-:] wonder/ing what happen/ed.,the lifeguard is wondering what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,and the : elephant is like what ?,and the elephant is like what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the elephant is explain/ing what happen/ed to the lifeguard.,the elephant is explaining what happened to the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the lifeguard is try/ing to reach for the[-:] airplane.,the lifeguard is trying to reach for the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the lifeguard : gave up.,the lifeguard gave up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,and the[-:] giraffe is cry/ing.,and the giraffe is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,(a pers) an elephant I guess : came with a[-:] net.,a pers an elephant I guess came with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,she is scoop/ing the airplane out.,she is scooping the airplane out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the elephant gave the[-:] airplane back to the[-:] : giraffe.,the elephant gave the airplane back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the giraffe is[-:] happy.,the giraffe is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,and the[-:] elephant is happy.,and the elephant is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,(uh) the father is a rabbit.,uh the father is a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,and : the kid is make/ing a : sandcastle in a sandbox.,and the kid is making a sandcastle in a sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,and the father say/3s (wow) nice castle.,and the father says wow nice castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,then the father help/3s : the son (make/3s) make the sandcastle.,then the father helps the son makes make the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the father dump/3s all[!] the sand on the castle.,the father dumps all the sand on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,I : think that is the father.,I think that is the father +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the father (I guess) made all the sand : into just a big pile.,the father I guess made all the sand into just a big pile +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the kid try/3s to rebuild it.,the kid tries to rebuild it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,but : it is like a little bit too mess/ed up.,but it is like a little bit too messed up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,they are go/ing for a picnic : the[-:] two rabbit/s.,they are going for a picnic the two rabbits +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,they sit down.,they sit down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,and one of the rabbit[EW:rabbits] is (are re) is really hungry.,and one of the rabbit is are re is really hungry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,so he unpack/ed his stuff really fast.,so he unpacked his stuff really fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,and I guess he is eat/ing a carrot.,and I guess he is eating a carrot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,(and) : [~_I_do_n(o)t_know_what_that_is].,and +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the guy that ate all that food really fast is really : lazy now I guess.,the guy that ate all that food really fast is really lazy now I guess +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,and then : he is really just lay/ing down try/ing to : get up.,and then he is really just laying down trying to get up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,[~_I_cannot_tell_what_that_is]., +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,[~_but] the[-:] guy ate that all the food (is) has got up now.,the guy ate that all the food is has got up now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,and the doctor came.,and the doctor came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,and the person that did not eat all their stuff really fast (um) got the doctor.,and the person that did not eat all their stuff really fast um got the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,and then : I guess he is bring/ing him over.,and then I guess he is bringing him over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,he is drag/ing him over to : meet the : guy that ate all his food up really fast.,he is dragging him over to meet the guy that ate all his food up really fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the doctor check/3s the guy that ate all the food really : fast.,the doctor checks the guy that ate all the food really fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the doctor take/3s away the : rabbit : I guess.,the doctor takes away the rabbit I guess +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,(um) the rabbit is come/ing to play with the other rabbit.,um the rabbit is coming to play with the other rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the rabbit that came is : say/ing hey a balloon.,the rabbit that came is saying hey a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the guy is try/ing to fix the balloon or take it off.,the guy is trying to fix the balloon or take it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,it was tooken|take[EW:taken] off.,it was tooken off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,and then the balloon sail/3s away.,and then the balloon sails away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the guy that had the balloon is really mad at the guy that took off the balloon.,the guy that had the balloon is really mad at the guy that took off the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,they see a guy sell/ing balloon/s.,they see a guy selling balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the guy that I guess : let go of the balloon is go/ing to buy one balloon for his friend again.,the guy that I guess let go of the balloon is going to buy one balloon for his friend again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,(uh) he has no money.,uh he has no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,so : it is five cent/s for a balloon.,so it is five cents for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,so I guess he can not pay for it.,so I guess he can not pay for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,(uh) they ask him if they can have a balloon for free I guess.,uh they ask him if they can have a balloon for free I guess +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,(they ask the doctor if they) they go to the doctor.,they ask the doctor if they they go to the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,and : I guess they are go/ing to ask him (something) for money I guess.,and I guess they are going to ask him something for money I guess +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,they ask the doctor (if they can buy) if he can buy a balloon : for them.,they ask the doctor if they can buy if he can buy a balloon for them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,the doctor buy/3s a balloon for both[!] of them.,the doctor buys a balloon for both of them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,they are both happy.,they are both happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/931.slt,and the doctor is : also happy.,and the doctor is also happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,once there was an (elephant and a) an elephant and a giraffe.,once there was an elephant and a an elephant and a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,one day the (eleph) the elephant was play/ing with a ball by the pool.,one day the eleph the elephant was playing with a ball by the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and the giraffe came along.,and the giraffe came along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and the giraffe said can I play?,and the giraffe said can I play +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and the elephant said sure.,and the elephant said sure +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,so the giraffe start/ed to bounce it.,so the giraffe started to bounce it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and it fell into the water.,and it fell into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,(so) and then the elephant start/ed to cry.,so and then the elephant started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,so the giraffe jump/ed in and start/ed to swim to get it.,so the giraffe jumped in and started to swim to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,he got it.,he got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and he gave it back to the elephant.,and he gave it back to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and then the elephant was really happy.,and then the elephant was really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,(One) the next day the elephant (went swim/ing again) went swim/ing again.,One the next day the elephant went swimming again went swimming again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,so the elephant was go/ing to jump in.,so the elephant was going to jump in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,but then she slip/ed : and hurt her knee.,but then she slipped and hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,then the lifeguard came along : and put a bandaid on it.,then the lifeguard came along and put a bandaid on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,it was a huge scratch.,it was a huge scratch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and the giraffe said are you okay?,and the giraffe said are you okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and then the lifeguard (told) show/ed the elephant the sign that said no run/ing.,and then the lifeguard told showed the elephant the sign that said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,The next day they went swim/ing again.,The next day they went swimming again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and the elephant told the giraffe a new game they could play : with the giraffe/z (a) airplane.,and the elephant told the giraffe a new game they could play with the giraffe's a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,the giraffe put the airplane high in the air.,the giraffe put the airplane high in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,then the elephant grab/ed it from him and was go/ing to [~_gonna] fly it on his own.,then the elephant grabbed it from him and was going to fly it on his own +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,then it fell into the water.,then it fell into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,the giraffe got so[!] mad at the elephant.,the giraffe got so mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,the lifeguard came along and said what is all the fuss about?,the lifeguard came along and said what is all the fuss about +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and the elephant (told) explain/ed that she had : put the airplane in the water.,and the elephant told explained that she had put the airplane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,so the lifeguard try/ed to reach over.,so the lifeguard tried to reach over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,but it was just too far.,but it was just too far +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,(so then) so then the lifeguard told her (he) she could not get it.,so then so then the lifeguard told her he she could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and the giraffe start/ed to cry.,and the giraffe started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,then[!] another elephant came along with a net[!] : and scoop/ed it out.,then another elephant came along with a net and scooped it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,the giraffe was so happy.,the giraffe was so happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,(and) (and sh) and he hug/ed and hugged the airplane.,and and sh and he hugged and hugged the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,one day (um) a rabbit was play/ing in the sandbox.,one day um a rabbit was playing in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and another rabbit came along and ask/ed can I play?,and another rabbit came along and asked can I play +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,(so the two rabbit/s start/ed) so the first rabbit said sure.,so the two rabbits started so the first rabbit said sure +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,so they start/ed to build a sandcastle.,so they started to build a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,they built and built for hour/s and hour/s.,they built and built for hours and hours +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and then the second rabbit broke it with too much sand.,and then the second rabbit broke it with too much sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and then (the) that first rabbit start/ed to cry.,and then the that first rabbit started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and the second rabbit felt really bad.,and the second rabbit felt really bad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,(then the next) and so (um) after (the next) that day that the second rabbit : broke the sandcastle the (first ra) first rabbit felt much better.,then the next and so um after the next that day that the second rabbit broke the sandcastle the first ra first rabbit felt much better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and then they went out for a walk together.,and then they went out for a walk together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and then they stop/ed for a picnic.,and then they stopped for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,the (s) first rabbit thought the second rabbit was a big pig.,the s first rabbit thought the second rabbit was a big pig +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and then the second rabbit got a huge stomachache.,and then the second rabbit got a huge stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,then : this first rabbit saw a doctor.,then this first rabbit saw a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and (she) she ran over tell him about the second rabbit.,and she she ran over tell him about the second rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,(and she) and she pull/ed (him over) her over to the second rabbit.,and she and she pulled him over her over to the second rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,(and then the s) and then the doctor (te) told the second rabbit not to eat so much next time.,and then the s and then the doctor te told the second rabbit not to eat so much next time +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and so she brung|bring[EW:brought] him: home so he could go to sleep.,and so she brung him home so he could go to sleep +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,so (one) the next day : the first rabbit was on a walk with his balloon.,so one the next day the first rabbit was on a walk with his balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and the second rabbit ran up to say hi.,and the second rabbit ran up to say hi +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,the second rabbit said what a beautiful balloon.,the second rabbit said what a beautiful balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and the first rabbit said stop stop because the second rabbit was untie/ing the balloon from her wagon.,and the first rabbit said stop stop because the second rabbit was untying the balloon from her wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,suddenly it float/ed up up up.,suddenly it floated up up up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,the first rabbit yell/ed come back balloon.,the first rabbit yelled come back balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,then the first rabbit got so mad at the second rabbit.,then the first rabbit got so mad at the second rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,but then there was a balloon seller.,but then there was a balloon seller +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,(and : gave) and the (f) second rabbit went over to the balloon seller.,and gave and the f second rabbit went over to the balloon seller +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and he bought[!] one of the other balloon/s.,and he bought one of the other balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,(and then he gave) (and then) but then he had no money.,and then he gave and then but then he had no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,so then the first rabbit came along.,so then the first rabbit came along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and then they saw the doctor again they had saw the other day.,and then they saw the doctor again they had saw the other day +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,(and they told them abou) and the second rabbit told : her about the balloon/s.,and they told them abou and the second rabbit told her about the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and she bought two balloon/s for the kid/s.,and she bought two balloons for the kids +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and then they were really happy.,and then they were really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/720.slt,and the second rabbit did not ever let his go.,and the second rabbit did not ever let his go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,once there were[EW:was] a giraffe and an elephant.,once there were a giraffe and an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,they were play/ing with the ball.,they were playing with the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and it fell in the water.,and it fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,the giraffe try/ed to go get it.,the giraffe tried to go get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and he did[-:].,and he did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and the elephant : was happy.,and the elephant was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,once there were[EW:was] a giraffe and an elephant.,once there were a giraffe and an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and they want/ed to go on the diving board.,and they wanted to go on the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,they ran[-:] to it.,they ran to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and the elephant slip/ed and scrape/ed her knee[-:].,and the elephant slipped and scraped her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,the lifeguard came.,the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,(and) (and she pu) and he put a bandaid on it.,and and she pu and he put a bandaid on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and she was all better.,and she was all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and (then she had) (and then she had to s) and then she sat down[-:].,and then she had and then she had to s and then she sat down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,once there were[EW:was] : an elephant and a giraffe.,once there were an elephant and a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and the giraffe had an airplane[-:].,and the giraffe had an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and the elephant took it.,and the elephant took it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and it fell in the water.,and it fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,the giraffe was mad at the elephant.,the giraffe was mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and then the lifeguard came[-:].,and then the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,(he) (the elephant said to the : lifeguard) he try/ed to reach it.,he the elephant said to the lifeguard he tried to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,but he could not.,but he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,then another lifeguard came[-:] : with a net.,then another lifeguard came with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,she scoop/ed it out.,she scooped it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and the giraffe was happy.,and the giraffe was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,once (there were : some) (there was) (there were bunny/s) there were[EW:was] a bunny and a dog.,once there were some there was there were bunnies there were a bunny and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,(and they were) and the dog was build/ing a sandcastle[-:].,and they were and the dog was building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and the bunny got some sand[-:].,and the bunny got some sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and he pour/ed it on the castle[-:].,and he poured it on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and it broke.,and it broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,the dog try/ed to make it again[-:].,the dog tried to make it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,once there was a bunny and a dog[-:].,once there was a bunny and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,they went for a picnic.,they went for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,the bunny ate all the stuff.,the bunny ate all the stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and he got a tummyache.,and he got a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,then the mom came.,then the mom came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,(and) and then she told : that the bunny (was) had a (tum) stomachache [EU].,and and then she told that the bunny was had a tum stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and the mom try/ed to fix it.,and the mom tried to fix it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and she did.,and she did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,there was a dog and a rabbit.,there was a dog and a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and they had a balloon.,and they had a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and the bunny want/ed to have it.,and the bunny wanted to have it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,the bunny try/ed to take it off[-:].,the bunny tried to take it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and he did.,and he did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and it flew away[-:].,and it flew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,the dog was mad[-:].,the dog was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,they saw some more balloon/s[-:].,they saw some more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,they decide/ed to buy one.,they decided to buy one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,but it was five[-:] dollar/s.,but it was five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and they wait/ed.,and they waited +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and then the mom came.,and then the mom came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and then he ask/ed (if they) (if she) if she had any money.,and then he asked if they if she if she had any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and they got one.,and they got one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/663.slt,and then they had their own balloon/s.,and then they had their own balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(uh : um uh : uh) a boy and a girl.,uh um uh uh a boy and a girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(oh uh she) (she try to) : a water there.,oh uh she she try to a water there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(and he) and (a) two friend/s are friend/s.,and he and a two friends are friends +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,a (ball) ball (fe) fell in the water.,a ball ball fe fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,a (donkey) donkey (uh um sw) swim in the water : and (catch) catch the ball [EU].,a donkey donkey uh um sw swim in the water and catch catch the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,a (donkey) donkey catch it and swim all back : (xxx) and (pick) pick a ball and to his donkey his hand/s [EU].,a donkey donkey catch it and swim all back x and pick pick a ball and to his donkey his hands +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(then) (then) then (don key[-:] get/ing) (donkey : get/ing) donkey (get) get (a) (at) (a) (a) (a) (a) a water [EU].,then then then don key getting donkey getting donkey get get a at a a a a a water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,a donkey and a[EW:an] elephant : (uh) are show[?] the water [EU].,a donkey and a elephant uh are show the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,and one (want) (want) want (get) get in the water [EU].,and one want want want get get in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,I do not know how.,I do not know how +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,a[EW:an] (elephant) (elephant) (elephant) elephant got (a) a[EW:an] idea.,a elephant elephant elephant elephant got a a idea +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,I (saw) saw something.,I saw saw something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,: (uh and) and something (jump) jump|jump[EW:jumped] on (d) it.,uh and and something jump jump on d it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,then : (el) elephant want/3s that (uh jump) jump in the water [EU].,then el elephant wants that uh jump jump in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(elephant) (elephant) elephant (hur) hurt|hurt[EW:hurts] hisself[EW:himself].,elephant elephant elephant hur hurt hisself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(uh) cry[?] [EU].,uh cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,and somebody come|come[EW:came].,and somebody come +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,somebody : (a : uh) another elephant.,somebody a uh another elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(another) another elephant (put) put a bandaid on.,another another elephant put put a bandaid on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(another) (another) another elephant[-:] is (re[-:] ) (real mad) (mad uh) real mad at another one.,another another another elephant is re real mad mad uh real mad at another one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(um) : a donkey and a[EW:an] elephant [EU].,um a donkey and a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(elephant) (elephant) elephant (ss) see|see[EW:saw] something donkey *was hold/ing [EU].,elephant elephant elephant ss see something donkey holding +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,the airplane.,the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(I grab) (I grab) I grab I (see) see xx and play with it [EU].,I grab I grab I grab I see see and play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,I (get) *will get in the water [EU].,I get get in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,and (donkey) (donkey) donkey get|get[EW:got] real mad.,and donkey donkey donkey get real mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,another elephant come|come[EW:came] along.,another elephant come along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,and another elephant (and talk) talk|talk[EW:talked] all (about thing[?]) : about they have thing[?] [EU].,and another elephant and talk talk all about thing about they have thing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(another) another elephant (um um) got (a) a[EW:an] idea.,another another elephant um um got a a idea +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(uh which) (which) which airplane [EU].,uh which which which airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,and no luck.,and no luck +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,and (uh plane) plane *is in the water [EU].,and uh plane plane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,another elephant came along : and got a net!,another elephant came along and got a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(ah another) (another elephant) another elephant (uh uh try) try|try[EW:tried] *to reach[!] that [EU].,ah another another elephant another elephant uh uh try try reach that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(and) (and) (and) (and) and (sh) she did it.,and and and and and sh she did it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(uh) got the plane back [EU].,uh got the plane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(uh donkey) (donkey) (donkey) (donkey) donkey (we) we sure *are happy [EU].,uh donkey donkey donkey donkey donkey we we sure happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,a rabbit (and) (and) and somebody else : are (saw) (saw) saw each other [EU].,a rabbit and and and somebody else are saw saw saw each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,they play in the sandbox.,they play in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(rabbit) (rabbit) rabbit (got) (got) got a (basket) whole bunch of sand.,rabbit rabbit rabbit got got got a basket whole bunch of sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(another) (another) another person (build) build a castle [EU].,another another another person build build a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(and) : and (ca) (castle) (castle) (castle) (castle) (castle is uh) he pour/ed a whole bunch of sand in there.,and and ca castle castle castle castle castle is uh he poured a whole bunch of sand in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(another) (another) another person is sad.,another another another person is sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,Rabbit (and) and somebody else [EU].,Rabbit and and somebody else +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,and (she) : (she) (she) she try/ed it again.,and she she she she tried it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,a guy go[EW:went] somewhere picnic [EU].,a guy go somewhere picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,a (rabbit) (rabbit) rabbit (got) got whole bunch of stuff : (and) and (the) (the) (the uh) (um) (in the) (in the) (in the um) in the basket [EU].,a rabbit rabbit rabbit got got whole bunch of stuff and and the the the uh um in the in the in the um in the basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(uh : uh rabbit) (rabbit) (rabbit) rabbit (ate) (eat) (eat) eat|eat[EW:ate] too much : and (get) (get) (get) (get) get|get[EW:got] a tummyache.,uh uh rabbit rabbit rabbit rabbit ate eat eat eat too much and get get get get get a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(and another) and another person (a saw) saw somebody (get) get her (a rabbit) (a) a doctor.,and another and another person a saw saw somebody get get her a rabbit a a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(another) another person[-:] (get) (get) (get) (get uh) (get uh uh) (get) get|get[EW:got] a doctor.,another another person get get get get uh get uh uh get get a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,and (doctor) (doctor she) (she) (she) (she) another rabbit was sick.,and doctor doctor she she she she another rabbit was sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(another) (another rabbit) another rabbit (um talk) talk|talk[EW:talked].,another another rabbit another rabbit um talk talk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(oh) but (I c) (he is um) (he is) (uh doctor) (doctor) doctor (say) say[EW:said] come here.,oh but I c he is um he is uh doctor doctor doctor say say come here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,I will (walk) walk all[!] back [EU].,I will walk walk all back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,a (rabbit) rabbit (and) and somebody else [EU].,a rabbit rabbit and and somebody else +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,and (she) (she) (she) (she) (she uh) (uh she) (she) (she) (she) she tire/ed[?] again [EU].,and she she she she she uh uh she she she she she tired again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,I (saw an) a (rabbit) rabbit (saw) saw somebody/z balloon [EU].,I saw an a rabbit rabbit saw saw somebody's balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(rabbit) (rabbit) (ra) (rabbit) (rabbit) rabbit (see) see[-:] balloon (saw) saw knot that there too and (try/ed) (try/ed) try/ed (get) get knot out loose[!] [EU].,rabbit rabbit ra rabbit rabbit rabbit see see balloon saw saw knot that there too and tried tried tried get get knot out loose +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,and (get) get|get[EW:got] more looser and more looser [EU].,and get get more looser and more looser +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,and (still) : still more looser[EW:loose].,and still still more looser +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,ah ah no not there!,ah ah no not there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(balloon) (balloon) (balloon) (balloon) balloon (float) float|float[EW:floated] away (up) up to in (the) the sky [EU].,balloon balloon balloon balloon balloon float float away up up to in the the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,another person[-:] (uh sh) (uh we) (we) (we) (we) (we get) (get) get|get[EW:got] real mad : at the rabbit.,another person uh sh uh we we we we we get get get real mad at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(rabbit) rabbit (she) she saw body (and) and (talk) (talk) (talk) (talk) (talk) talk somebody [EU].,rabbit rabbit she she saw body and and talk talk talk talk talk talk somebody +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(say) (say) (say uh um) (say) say you there (I want) (I want) (I want) (I want two) (two ba) I want one balloon.,say say say uh um say say you there I want I want I want I want two two ba I want one balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(a got) got one balloon (cost) cost five dollar/s [EU].,a got got one balloon cost cost five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,I (do not) do not have the money.,I do not do not have the money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,and (rabbit) (rabbit) (rabbit) rabbit get|get[EW:got] so mad.,and rabbit rabbit rabbit rabbit get so mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(another) person (come) come along real fast.,another person come come along real fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(she) (she) (she) (sh) another person (say) (say) (say) say[EW:said] (please) (please) (please) please I want *a balloon.,she she she sh another person say say say say please please please please I want balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,I just talk[EW:talked] about this[?].,I just talk about this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,I got[EW:have] money.,I got money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,another person (uh rabbit) rabbit show|show[EW:showed] somebody.,another person uh rabbit rabbit show somebody +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,you a doctor [EU].,you a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(doctor) (doctor) (doctor rabbit) and doctor (rabbit) (rabbit) rabbit (tell) tell xx somebody [EU].,doctor doctor doctor rabbit and doctor rabbit rabbit rabbit tell tell somebody +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,(I got) [~_whispers] : I got[EW:have] money : the doctor say|say[EW:said].,I got I got money the doctor say +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/529.slt,I (got) (got) (got) got (two) two balloon/s.,I got got got got two two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,once Giraffe and Elephant were[aux] play/ing ball.,once Giraffe and Elephant were playing ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,Elephant accidentally threw[ip] the ball in the water[!].,Elephant accidentally threw the ball in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,: Horse went[ip] to get it : [~_I_mean] (Giraffe).,Horse went to get it Giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,(um) then : Horse (uh) : gave[ip] the ball to : Elephant.,um then Horse uh gave the ball to Elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,(and they both got out) and Giraffe got[ip] out of the water.,and they both got out and Giraffe got out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,: and [+_bch] [+..].,and +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,one[!] day Giraffe and Elephant were[aux] play/ing beside the water[!].,one day Giraffe and Elephant were playing beside the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,Elephant[!] : was[aux] go/ing to : go in the water.,Elephant was going to go in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,then she slip/ed : and fell?,then she slipped and fell +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,she had[ip] a big scar.,she had a big scar +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,and it was[aux] (really) really hurt/ing.,and it was really really hurting +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,so Giraffe went[ip] to go get some help.,so Giraffe went to go get some help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,Elephant was[aux] cry/ing.,Elephant was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,so : Giraffe got[ip] the lifeguard.,so Giraffe got the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,she was[aux] cry/ing lot/s.,she was crying lots +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,and the lifeguard put a bandage on it so it would[modal] feel better.,and the lifeguard put a bandage on it so it would feel better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,she could[modal] not walk that good.,she could not walk that good +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,so Giraffe and the lifeguard help/ed her home.,so Giraffe and the lifeguard helped her home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,the lifeguard point/ed to the sign *that [EMORPH] *said[ip] [EV] no running [EU].,the lifeguard pointed to the sign no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,and that taught[ip] her a lesson.,and that taught her a lesson +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,once : Giraffe and Elephant were[aux] play/ing with : Giraffe/z (out) airplane.,once Giraffe and Elephant were playing with Giraffe's out airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,Giraffe was[aux] fly/ing it high[-:] : and over : Elephant/z head.,Giraffe was flying it high and over Elephant's head +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,so Elephant took[ip] it from Giraffe.,so Elephant took it from Giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,she accidentally threw[ip] it in the water[!].,she accidentally threw it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,Giraffe cwas[cop] (really) really mad at : Elephant.,Giraffe cwas really really mad at Elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,the lifeguard came[ip] : and : was[aux] go/ing to get it out.,the lifeguard came and was going to get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,so they explain/ed to him : what happen/ed (and) so he can[modal] get it out.,so they explained to him what happened and so he can get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,so : he was[aux] try/ing to reach for it.,so he was trying to reach for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,but he could[modal] not reach it.,but he could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,so : the lady lifeguard came[ip] with a net : and scoop/ed up the airplane : gave[ip] it back to Giraffe.,so the lady lifeguard came with a net and scooped up the airplane gave it back to Giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,and Giraffe cwas[cop] happy as can[modal] be.,and Giraffe cwas happy as can be +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,once there cwas[cop] (a) (a rabbit and a) [~_no] a girl rabbit and a : girl dog.,once there cwas a a rabbit and a a girl rabbit and a girl dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,they cwere[cop] really best friend/s.,they cwere really best friends +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,and they were[aux] play/ing in the sandbox together make/ing a : sandcastle.,and they were playing in the sandbox together making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,then : the : girl bunny dump/ed a whole bunch of sand on the sandcastle.,then the girl bunny dumped a whole bunch of sand on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,then : (she) (she um) : she got[ip] mad at herself because : she accidentally ruin/ed the whole thing[!].,then she she um she got mad at herself because she accidentally ruined the whole thing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,and then Dog start/3s cry/ing.,and then Dog starts crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,Bunny was[aux] look/ing up and : feel/ing (ba) embarrassed.,Bunny was looking up and feeling ba embarrassed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,(as bunny and) as Bunny and Dog walk/ed down the : street with their : basket/s : they walk/ed along and : had[ip] a picnic.,as bunny and as Bunny and Dog walked down the street with their baskets they walked along and had a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,while they were have/ing a picnic : Rabbit ate[ip] (all) most of the food.,while they were having a picnic Rabbit ate all most of the food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,Rabbit got[ip] full and had swirl/s around his head.,Rabbit got full and had swirls around his head +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,then : Dog went[ip] to go get (h) her mother.,then Dog went to go get h her mother +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,she pull/ed[-:] [OTHER] her way[-:] over where Bunny cwas[cop] [EU].,she pulled her way over where Bunny cwas +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,they[EW:it] [EPRONOUN] happen/ed to be that Bunny cwas[cop] sick [EU].,they happened to be that Bunny cwas sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,so : her mom (took her therm) took[ip] her temperature.,so her mom took her therm took her temperature +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,and : she cwas[cop] : sick.,and she cwas sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,so they went[ip] home.,so they went home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,once upon a time there cwas[cop][cnumerr][EW:cwere] [EV] Dog and Rabbit [EU].,once upon a time there cwas Dog and Rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,(rabbit had a) [~_I_mean] Dog had[ip] a : balloon tie/ed : to the wagon.,rabbit had a Dog had a balloon tied to the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,Rabbit untie/ed the : balloon off the wagon.,Rabbit untied the balloon off the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,(it) the balloon went[ip] (up) up and away!,it the balloon went up up and away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,Dog got[ip] mad because it cwas[cop] (her balloon) her favourite[!] balloon.,Dog got mad because it cwas her balloon her favourite balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,(and she could not) and she would[modal] not : stop get/ing mad at : Bunny.,and she could not and she would not stop getting mad at Bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,there cwere[cop] more balloon/s at : Mister Bunny/z : shop.,there cwere more balloons at Mister Bunny's shop +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,but she did[aux] not want a new one.,but she did not want a new one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,so Rabbit[!] got[ip] her one.,so Rabbit got her one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,Rabbit did[aux] not have enough money[!] to buy : a balloon (so) .,Rabbit did not have enough money to buy a balloon so +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,they look/ed up at Mister Rabbit and : walk/ed away.,they looked up at Mister Rabbit and walked away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,(rabbit) Little Rabbit point/ed at Mister Rabbit : and said[ip] : yay (our mom) my Mom is[aux] go/ing to give us money for the (ba) balloon/s!,rabbit Little Rabbit pointed at Mister Rabbit and said yay our mom my Mom is going to give us money for the ba balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,thanks Mom!,thanks Mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/838.slt,they both had balloon/s and would[modal] not let them go.,they both had balloons and would not let them go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,there is a[EW:an] [-:] elephant and a giraffe.,there is a elephant and a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,kid/s.,kids +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,they are play/ing by the pool.,they are playing by the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,then the ball bounce/3s in the pool.,then the ball bounces in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and the giraffe go/3s out to swim to get it.,and the giraffe goes out to swim to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and then he hand/3s it to the : elephant : kid.,and then he hands it to the elephant kid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,(and then he) and then she is like thank[!] you because it was her ball.,and then he and then she is like thank you because it was her ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and he was like [~_hee_hee_yaw][~!_laughing].,and he was like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,what is that expression ?,what is that expression +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,he is smile/ing[~!_laughs].,he is smiling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,(there is a girl and) : there is the elephant and a giraffe by the pool.,there is a girl and there is the elephant and a giraffe by the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and then the elephant want/3s to go on the diving[!] board.,and then the elephant wants to go on the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and then she slip/3s.,and then she slips +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and she hurt/3s herself.,and she hurts herself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and then she start/3s to cry.,and then she starts to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and the lifeguard come/3s.,and the lifeguard comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and then he put/3s a bandage on her.,and then he puts a bandage on her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and then he take/3s her to the bench.,and then he takes her to the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,then he is kind of mad at her because it says no run/ing on the sign.,then he is kind of mad at her because it says no running on the sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,there is the giraffe and the elephant.,there is the giraffe and the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and the giraffe has an airplane toy.,and the giraffe has an airplane toy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and then he is go/ing to fly it in the xx.,and then he is going to fly it in the +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and the elephant (uh) really want/3s to fly it too.,and the elephant uh really wants to fly it too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and then she take/3s it away from him.,and then she takes it away from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,then she accidentally drop/3s it in the water.,then she accidentally drops it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,then the giraffe get/3s really mad at her.,then the giraffe gets really mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and then she tell/3s the lifeguard : what happen/ed.,and then she tells the lifeguard what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and then : he got kind of worry/ed.,and then he got kind of worried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and she told him that she accidentally drop/ed it in the water.,and she told him that she accidentally dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,(so he try/3s) so the lifeguard try/3s to get it and reach for it.,so he tries so the lifeguard tries to get it and reach for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and the giraffe start/3s to cry.,and the giraffe starts to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and : the elephant is kind of : worry/ed.,and the elephant is kind of worried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and the lifeguard is like (m) I do not know what to do.,and the lifeguard is like m I do not know what to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,then the elephant/z mom come/3s with a net.,then the elephant's mom comes with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,then she get/3s the[-:] : airplane out : and give/3s it to the giraffe.,then she gets the airplane out and gives it to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and he is really happy.,and he is really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and so is the elephant girl.,and so is the elephant girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,there is a rabbit and a little mouse try/ing to build a sandcastle in the sandbox.,there is a rabbit and a little mouse trying to build a sandcastle in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and then the rabbit want/3s to (do s) take some sand out of the bucket too.,and then the rabbit wants to do s take some sand out of the bucket too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and he pour/3s it on the castle accidentally.,and he pours it on the castle accidentally +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and it wreck/3s the castle.,and it wrecks the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and the mouse is really sad.,and the mouse is really sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and the mouse try/3s to build it : again.,and the mouse tries to build it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,well there is a mouse and a rabbit (s) go/ing along.,well there is a mouse and a rabbit s going along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and they are walk/ing on the road : (for a) go/ing for a picnic.,and they are walking on the road for a going for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and then the rabbit is like eat/ing all of his food at once.,and then the rabbit is like eating all of his food at once +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and he got a really bad stomachache.,and he got a really bad stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and he is feel/ing really weird[~!_laughing].,and he is feeling really weird +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and then the mom get/3s mad at him and say/3s : you go home right now!,and then the mom gets mad at him and says you go home right now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and then she take/3s him home.,and then she takes him home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and then the mouse say/3s goodbye.,and then the mouse says goodbye +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,(there) : the : mouse is pull/ing her wagon (with the b) with a balloon hook/ed onto it.,there the mouse is pulling her wagon with the b with a balloon hooked onto it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and the rabbit is come/ing along.,and the rabbit is coming along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and he is say/ing can I hold it?,and he is saying can I hold it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and the mouse is say/ing okay[~!_laughing].,and the mouse is saying okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,so then he take/3s it off.,so then he takes it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and she is like [~_makes_exasperated_noise].,and she is like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and then he accidentally let/3s go of it.,and then he accidentally lets go of it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and it go/3s away.,and it goes away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,then she is really[!] mad at him.,then she is really mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and he is kind of sad and worry/ed.,and he is kind of sad and worried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,then there is a balloon man there.,then there is a balloon man there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and they go to see him.,and they go to see him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,then he ask/3s for a balloon [+_bch].,then he asks for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,he has what?,he has what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,then the bunny ask/3s for a balloon from the man.,then the bunny asks for a balloon from the man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,(but : he is) : but they are five cent/s.,but he is but they are five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and he do/3s not have any money.,and he does not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,so then he is just stand/ing there.,so then he is just standing there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and then they are really sad.,and then they are really sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,so they go back.,so they go back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and then the bunny/z mom is there.,and then the bunny's mom is there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and then he ask/3s for some money to get a balloon because he lost the mouse/z (money) : [~_I_mean] balloon.,and then he asks for some money to get a balloon because he lost the mouse's money balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,so then (he) the mom bunny give/3s the man some money.,so then he the mom bunny gives the man some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and they get a balloon.,and they get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and then they are say/ing thank you!,and then they are saying thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/722.slt,and the mom is like : you are welcome!,and the mom is like you are welcome +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(um) the elephant is play/ing with the ball[-:].,um the elephant is playing with the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,he lost his ball[-:] : on the water[-:].,he lost his ball on the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,the giraffe[-:] is get/ing the water[-:] [EU].,the giraffe is getting the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,now the giraffe give|give[EW:gave] the ball to the : elephant.,now the giraffe give the ball to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,the giraffe is happy and the : elephant too.,the giraffe is happy and the elephant too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,the giraffe and the : elephant[-:] [EU].,the giraffe and the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,the elephant want/3s to swim.,the elephant wants to swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,the elephant run|run[EW:ran].,the elephant run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,the elephant slip|slip[EW:slipped].,the elephant slip +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,and the elephant hurt : hisself[EW:himself].,and the elephant hurt hisself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,and the elephant cry|cry[EW:cried].,and the elephant cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(the) (the) (the other elephan) the other elephant give|give[EW:gave] (the) : the girl elephant : a bandaid.,the the the other elephan the other elephant give the the girl elephant a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,now[-:] the girl sit|sit[EW:sat] on the bench.,now the girl sit on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,: (and the other elephant is) : (and the elephant said) and the elephant point say/3s no run/ing [EU].,and the other elephant is and the elephant said and the elephant point says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,the giraffe got his airplane.,the giraffe got his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(and h) : (and he) and he now : fly|fly[EW:flies] it.,and h and he and he now fly it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(now the) (now) now the elephant : take/3s : the giraffe/z : toy back.,now the now now the elephant takes the giraffe's toy back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(the) (the) : the elephant (throwed|throw[EW:threw] the) throwed|throw[EW:threw] : the airplane on the water[-:] [EU].,the the the elephant throwed the throwed the airplane on the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,the giraffe is mad[-:].,the giraffe is mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(and) (and the man) : and the man : is go/ing *to catch the airplane [EU].,and and the man and the man is going catch the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(the man) : the elephant say/3s please[!] you catch the giraffe/z toy [EU]?,the man the elephant says please you catch the giraffe's toy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,and the elephant say|say[EW:says] yes.,and the elephant say yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,and he reach and reach and reach it [EU].,and he reach and reach and reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,now he can not[-:] : reach it.,now he can not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(I know the) I know the other elephant : got : a great idea a net.,I know the I know the other elephant got a great idea a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(an) and he got the net[-:].,an and he got the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,now he catch|cach[EW:catches] [-:] it.,now he catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,and now he give|give[EW:gives] *it to : (uh) the giraffe [EU].,and now he give to uh the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(and) and (there is) (: now) : now the giraffe is happy : (because he) because he has his airplane.,and and there is now now the giraffe is happy because he because he has his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,the bunny[-:] want|want[EW:wants] to make his castle : (while the) while the dog : is (um) : bark/ing : because he took his two sand/s to dig [EU].,the bunny want to make his castle while the while the dog is um barking because he took his two sands to dig +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(and) (and h) (and) and the bunny is like give me my[-:] : digger please.,and and h and and the bunny is like give me my digger please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,and now they are happy (because) : because : now the dog say/3s okay.,and now they are happy because because now the dog says okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,and (now) : (now) now (he has a) he can : make a sandcastle.,and now now now he has a he can make a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,and he dump|dump[EW:dumps] it : in.,and he dump it in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,and now the bunny dump|dump[EW:dumps] it in.,and now the bunny dump it in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,and now the sandcastle/s[EW:sandcastle] is ruin/ed[-:].,and now the sandcastles is ruined +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(a) and the dog is help/ing him : because the dog is cry/ing.,a and the dog is helping him because the dog is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,the dog and the : bunny[-:] : they are walk/ing for the picnic[-:] [EU].,the dog and the bunny they are walking for the picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(now) (now the[-:]) now : the : bunny *is eat/ing the sandwich and a carrot [EU].,now now the now the bunny eating the sandwich and a carrot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(and now the bunny) and (the) : the bunny (is) : he got *a full tummy[-:] [EU].,and now the bunny and the the bunny is he got full tummy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(and the) (and) (and) and the bunny : hold|hold[EW:holds] his tummy.,and the and and and the bunny hold his tummy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(and) (um an) (an) (and the dog : the dog/z bunny/z father) [~_I_mean] (the dog[-:]) (the) [~_no] (the doctor) : the dog runned|run[EW:ran] for the doctor and said doctor doctor (the rubby tummy is) the bunny/z tummy is full!,and um an an and the dog the dog's bunny's father the dog the the doctor the dog runned for the doctor and said doctor doctor the rubby tummy is the bunny's tummy is full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(now) (and now : he) and (now the) now the dog (pull him) pull|pull[EW:pulls] him.,now and now he and now the now the dog pull him pull him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(an) (an) (and he is) and the doctor said okay okay.,an an and he is and the doctor said okay okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(and now he) and now he is go/ing to save him.,and now he and now he is going to save him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(and now) and now the doctor is go/ing *to take him to the hospital [EU].,and now and now the doctor is going take him to the hospital +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,the (dog[-:] got the : uh game) [~_no] (uh) : the dog got the balloon.,the dog got the uh game uh the dog got the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,and the rabbit say/3s hi I like your balloon!,and the rabbit says hi I like your balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(an) (a) and he show|show[EW:shows] it.,an a and he show it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,and he is like this.,and he is like this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(and) (and he made a) oh I want to have it!,and and he made a oh I want to have it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,and he said oh yes : you can have it.,and he said oh yes you can have it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(and uh) and the dog is (like) like this ah do not take it off[-:]!,and uh and the dog is like like this ah do not take it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(and) and it flied|fly[EW:flew] [-:] away[-:].,and and it flied away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,and the dog is mad[-:].,and the dog is mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(and he) and the bunny want/3s the balloon.,and he and the bunny wants the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,and the dog too.,and the dog too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,and the dog get|get[EW:got] angry back there.,and the dog get angry back there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,and the bunny run|run[EW:runs] and say/3s : sir[-:] can I have balloon?,and the bunny run and says sir can I have balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,and the sir said yes you can.,and the sir said yes you can +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,and he said five[-:][!] dollar/s.,and he said five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(the xx) : (and) and he is like xx say/ing[?] that.,the and and he is like saying that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(oh and he) [~_his_teeth_are_right_there] (and) (and he said) (oh : uh) : and the bunny said oopsies I do not have money.,oh and he and and he said oh uh and the bunny said oopsies I do not have money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(and the dog) (and the) (and the[-:]) : and the[-:] bunny runned|run[EW:ran] for the doctor.,and the dog and the and the and the bunny runned for the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,(an) and he[?] say/3s doctor doctor I want a balloon!,an and he says doctor doctor I want a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,and the doctor said okay.,and the doctor said okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,"he said : here is the money[!][-:] [~_makes_sound_""ch_ch""].",he said here is the money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,and you can have the balloon : both of them.,and you can have the balloon both of them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,now they are happy.,now they are happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/570.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,(um) there was a cow.,um there was a cow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and there was an elephant.,and there was an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and they have a ball.,and they have a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then they had this on those brick/s.,and then they had this on those bricks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,(and then an ele) (and then) and then it got stuck in the swimming pool.,and then an ele and then and then it got stuck in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,(and then) and then the cow went to go get it.,and then and then the cow went to go get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then[-:] : he got the ball : back.,and then he got the ball back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then they play/ed with it.,and then they played with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,(um) there was a cow[-:] : and an elephant.,um there was a cow and an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,(they we) there was the balance beam.,they we there was the balance beam +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,the what?,the what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,the balance beam was in the front [+_bch].,the balance beam was in the front +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,(and) and the elephant want/ed to go in the water.,and and the elephant wanted to go in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,so did the cow.,so did the cow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,so they went to the : balance beam.,so they went to the balance beam +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and (then they[-:] ) (then) then the cow was run/ing (after the) to (the) (the) the elephant.,and then they then then the cow was running after the to the the the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then it was run/ing after it again.,and then it was running after it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,(and then it was run/ing after it again with the) [~_no] (then the other) then (the other elephant) he was run/ing after the other elephant.,and then it was running after it again with the then the other then the other elephant he was running after the other elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,(and then) and then he squeeze/ed her.,and then and then he squeezed her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,: and then they : carry/ed her to the bench.,and then they carried her to the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,: (and then they s) and (they h) (he) her[EW:she] sat[!] there.,and then they s and they h he her sat there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,(the cow and the moose they) [~_oopsie_#_I_forgot_the_moose] the cow and the elephant they want to go in the water.,the cow and the moose they the cow and the elephant they want to go in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,: then they broke their airplane.,then they broke their airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then the elephant want/ed to see : it.,and then the elephant wanted to see it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,(and then he throw|throw[EW:threw] it into the) and then he put it in the water.,and then he throw it into the and then he put it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,(and then they) (and then it) and then the cow was so mad at (that) (that) (that) that elephant.,and then they and then it and then the cow was so mad at that that that that elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then the other[!] elephant came.,and then the other elephant came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,: (and then he said) : and then the other elephant talk/ed to the cow.,and then he said and then the other elephant talked to the cow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,(and then it) and then it was try/ing to reach (that) (the) the airplane.,and then it and then it was trying to reach that the the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,(and then) (then it got soak/ed) then he got soak/ed.,and then then it got soaked then he got soaked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then he got a net.,and then he got a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,a what ?,a what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,a net [+_bch].,a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,"a net, oh.",a net oh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then he grab/ed[!] it : out of the water.,and then he grabbed it out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then he gave it to the cow.,and then he gave it to the cow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,(and) (and then he) and then he was so proud.,and and then he and then he was so proud +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,the rabbit want/ed to play in the sand.,the rabbit wanted to play in the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,: (and then he builded|build[EW:built] so) and then he put sand in the bucket.,and then he builded so and then he put sand in the bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then he[-:] tip/ed it all over his castle.,and then he tipped it all over his castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then he (ra) ruin/ed it.,and then he ra ruined it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then he build|build[EW:built] a new one.,and then he build a new one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,(um) the rabbit he brung|bring[EW:brought] his picnic basket.,um the rabbit he brung his picnic basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and so did the dog.,and so did the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then they ate some lunch.,and then they ate some lunch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,(and then he) (and then the) and then the rabbit got so stuff/ed.,and then he and then the and then the rabbit got so stuffed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,: and he got twirl twirl twirl/ed over his head.,and he got twirl twirl twirled over his head +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then the doctor came.,and then the doctor came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,doctor!,doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and he help/ed the rabbit.,and he helped the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,(and) and the rabbit said [~_creaky_voice] I live on a hundred and eighteenth street.,and and the rabbit said I live on a hundred and eighteenth street +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,I live on a hundred and eighteenth?,I live on a hundred and eighteenth +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,the rabbit did [+_bch].,the rabbit did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then the (rr) rabbit was so happy that he went with (the doc) the doctor rabbit.,and then the rr rabbit was so happy that he went with the doc the doctor rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,(um : the) the rabbit and the dog they pull/ed (the) the wagon.,um the the rabbit and the dog they pulled the the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and it tow/ed the balloon.,and it towed the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then it was get/ing shorter : and shorter.,and then it was getting shorter and shorter +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,(and sh) and then they could not reach it.,and sh and then they could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then it went higher : and higher.,and then it went higher and higher +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then the balloon man gave (it) him a new balloon.,and then the balloon man gave it him a new balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then he said thank you.,and then he said thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,(and then) and then they were so sad.,and then and then they were so sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,(and then they were ha) and then the rabbit/s were happy.,and then they were ha and then the rabbits were happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then the doctor rabbit came to go see the balloon man.,and then the doctor rabbit came to go see the balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then he gave him (five doll) two dollar/s.,and then he gave him five doll two dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/518.slt,and then the doctor paid him a balloon [EU].,and then the doctor paid him a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,(one) (one) (one) (as) (as um) [~_is_that_a__giraffe_#_probably] (as a) as one day a giraffe was walk/ing to the swimming pool he saw a girl with : a ball bounce/ing it up and down!,one one one as as um as a as one day a giraffe was walking to the swimming pool he saw a girl with a ball bouncing it up and down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the ball fell into the water.,the ball fell into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the girl : yell/ed yeeks!,the girl yelled yeeks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the giraffe jump/ed in : to save the ball for her!,the giraffe jumped in to save the ball for her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,he took it to the girl.,he took it to the girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,she said thank you.,she said thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,(they start/ed) : he got out of the pool.,they started he got out of the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,(and) and he said you are welcome.,and and he said you are welcome +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,she said you are so[!] brave.,she said you are so brave +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,you could do it anytime : when my ball fall/3s in.,you could do it anytime when my ball falls in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,as the elephant and the giraffe were walk/ing : they saw the big swim/ing pool.,as the elephant and the giraffe were walking they saw the big swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,and they saw a sign say/ing no run/ing.,and they saw a sign saying no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,(the dog) the elephant start/ed to run[!].,the dog the elephant started to run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,(the) (the guy) the giraffe was look/ing at her.,the the guy the giraffe was looking at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,he was go/ing to say no you should not run!,he was going to say no you should not run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,but she went anyway/3s!,but she went anyways +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,and he went too.,and he went too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,she fell down and hurt her knee on the cement by the pool.,she fell down and hurt her knee on the cement by the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,(the guy) the giraffe start/ed to (chase him) chase her (t) to where she fell.,the guy the giraffe started to chase him chase her t to where she fell +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,he call/ed the lifeguard[!].,he called the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,and he came for (h) help.,and he came for h help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,(she p) he put a bandaid on her knee that she scrape/ed.,she p he put a bandaid on her knee that she scraped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,they took her to a bench.,they took her to a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,and the lifeguard said : no run/ing.,and the lifeguard said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,he show/ed her the sign.,he showed her the sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,she made a frown.,she made a frown +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,and that is the end [+_bch].,and that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the giraffe and the elephant were play/ing together.,the giraffe and the elephant were playing together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the giraffe brought a[EW:an] airplane to play with the pool.,the giraffe brought a airplane to play with the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,he was play/ing with the airplane.,he was playing with the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,(the) the elephant got dizzy.,the the elephant got dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,she want/ed to play with it.,she wanted to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,so she took it away.,so she took it away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,she (thr) accidentally threw it in the water.,she thr accidentally threw it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the giraffe (got) he went yikes!,the giraffe got he went yikes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,and he got mad[!] at her.,and he got mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the lifeguard saw what happen/ed.,the lifeguard saw what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the elephant start/ed to say to the lifeguard I accidentally (dropped) drop/ed my friend/z : airplane into the water!,the elephant started to say to the lifeguard I accidentally dropped dropped my friend's airplane into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,so the lifeguard start/ed : to go after it : on the edge of the pool.,so the lifeguard started to go after it on the edge of the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,(he could not) he could not get it.,he could not he could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,(the gir) the giraffe start/ed to cry.,the gir the giraffe started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,a lady (she) she took a net.,a lady she she took a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,(sh) she start/ed to smile at them.,sh she started to smile at them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,(she) she took the net put it in the water to try to get out the plane.,she she took the net put it in the water to try to get out the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,she got the plane.,she got the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,she gave it back to the giraffe.,she gave it back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,he said thank[!] you.,he said thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,he gave it a big hug.,he gave it a big hug +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,and that is the end [+_bch].,and that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,as : the dog and the rabbit start/ed to play the rabbit ask/ed if he could (help) help the dog : build a sandcastle.,as the dog and the rabbit started to play the rabbit asked if he could help help the dog build a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the dog start/ed help/ing the rabbit.,the dog started helping the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the rabbit took a bucket and fill/ed it with sand!,the rabbit took a bucket and filled it with sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the rabbit took the bucket.,the rabbit took the bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,he put (it) all the sand on the sandcastle!,he put it all the sand on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the dog and the rabbit : they went yeek[!] together : all at the same time.,the dog and the rabbit they went yeek together all at the same time +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,(the d) the dog start/ed to cry.,the d the dog started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the rabbit felt shy.,the rabbit felt shy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,(rabbit had) rabbit *was start/ing to walking[EW:walk] the dog [EU].,rabbit had rabbit starting to walking the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the dog (start/ed) saw the rabbit walk/ing.,the dog started saw the rabbit walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,he said come along!,he said come along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,walk with me!,walk with me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the rabbit took out his picnic.,the rabbit took out his picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the dog only had a sandwich.,the dog only had a sandwich +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the rabbit had almost everything : to eat!,the rabbit had almost everything to eat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the dog had a : juice : and a sandwich.,the dog had a juice and a sandwich +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,he had not ated|eat[EW:ate] it yet.,he had not ated it yet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the rabbit ate everything[!].,the rabbit ate everything +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,he did not have a crumb left!,he did not have a crumb left +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the dog still was not eat/ing.,the dog still was not eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the rabbit start/ed to get dizzy.,the rabbit started to get dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the dog ran to the : rabbit/z Mom!,the dog ran to the rabbit's Mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,he said come for : help[!].,he said come for help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,he started pull/ing her and pull/ing her : to where the rabbit was.,he started pulling her and pulling her to where the rabbit was +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,(the wo) the rabbit/z : Mom said do not eat too much.,the wo the rabbit's Mom said do not eat too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,or else you will get a stomachache!,or else you will get a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,so she took him home to his own[!] place.,so she took him home to his own place +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,and that is the end [+_bch].,and that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,(when a) (when um) when Dog was walk/ing with his balloon (in his wheel) in his : [~_what_was_it_called_what_is_it__called_#_I_(wi)ll_just_say_wheelchair] : a (wagon) wagon Rabbit start/ed to walk along.,when a when um when Dog was walking with his balloon in his wheel in his a wagon wagon Rabbit started to walk along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,he said hello!,he said hello +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,Rabbit said what a nice balloon.,Rabbit said what a nice balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,so he look/ed at it.,so he looked at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,he want/ed to untie it.,he wanted to untie it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,and he did!,and he did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,(and the) and he let go.,and the and he let go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,and the balloon went up and up and up : and more up[!].,and the balloon went up and up and up and more up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,they could not catch it!,they could not catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the dog got so mad.,the dog got so mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,and the rabbit saw a another rabbit carry/ing : some balloon/s?,and the rabbit saw a another rabbit carrying some balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,he said can I have this one please?,he said can I have this one please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,and the guy said (f) balloon/s five cent/s.,and the guy said f balloons five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,and : the rabbit check/ed his pocket/s.,and the rabbit checked his pockets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,he had nothing.,he had nothing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,so : the dog and the rabbit they both went up.,so the dog and the rabbit they both went up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the rabbit with the balloon/s (he) he look/ed at them : down below!,the rabbit with the balloons he he looked at them down below +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the rabbit went to a doctor[!] and ask/ed for help.,the rabbit went to a doctor and asked for help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,he ask/ed (for) to the doctor : can you please : get a balloon for my friend?,he asked for to the doctor can you please get a balloon for my friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,(so she) so she paid : the rabbit five cent/s for two[!] balloon/s.,so she so she paid the rabbit five cents for two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,they both got one.,they both got one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,and they were happy!,and they were happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/836.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,(um) they are (um) play/ing with a ball[-:].,um they are um playing with a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,: and they are at the pool[-:].,and they are at the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,: and : it fell in the water.,and it fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,: and then : the (um) giraffe (uhm : m go um) swimmed|swim[EW:swam] and got it.,and then the um giraffe uhm m go um swimmed and got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and then he pass/ed it to the elephant.,and then he passed it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,: (and then he) and then she is (um) stand/ing all pretty.,and then he and then she is um standing all pretty +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,(um) : they are at the swimming pool.,um they are at the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,(and they are gonna) and they were just get/ing ready to do something.,and they are gonna and they were just getting ready to do something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and the (um) giraffe is chase/ing the elephant.,and the um giraffe is chasing the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and the elephant slip/3s.,and the elephant slips +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and he get/3s his knee scrape/ed.,and he gets his knee scraped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and then the (um) lifeguard run/3s : (and come/3s to um : ge) and come/3s to put a bandaid on it.,and then the um lifeguard runs and comes to um ge and comes to put a bandaid on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and then the bandaid was on.,and then the bandaid was on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and she felt okay.,and she felt okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and she was sit/ing on the bench.,and she was sitting on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,they were play/ing airplane.,they were playing airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,: and they were (um) zoom/ing it around.,and they were um zooming it around +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,(and then the) and then the (um) elephant (um) took it from the giraffe.,and then the and then the um elephant um took it from the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,: (and then she th) and then she accidentally threw it in the water.,and then she th and then she accidentally threw it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and then the giraffe got really mad.,and then the giraffe got really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,: and then the (um : uh) lifeguard came.,and then the um uh lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,: and he did not know how to get it out.,and he did not know how to get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,he try/ed to reach it.,he tried to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,: and[-:] : he did not know what to do still.,and he did not know what to do still +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,: and then the lady lifeguard came.,and then the lady lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and then she took it out with the (um) thing that you catch fish with.,and then she took it out with the um thing that you catch fish with +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and then : she gave it back to the giraffe.,and then she gave it back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and then he hug/ed it.,and then he hugged it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,(um) they were get/ing ready to build a (um) sandcastle in their sandbox.,um they were getting ready to build a um sandcastle in their sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and they already built one : on the other side.,and they already built one on the other side +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and (um) they were (um) put/ing (um) sand in the shovel.,and um they were um putting um sand in the shovel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,: and they dump/ed it all over the (um other sand) the (um) sandcastle.,and they dumped it all over the um other sand the um sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and (um) it all came into a pile of sand.,and um it all came into a pile of sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,: and they were cry/ing.,and they were crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,(um) they went out for a picnic.,um they went out for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,: and they (um) ate lot/s of food.,and they um ate lots of food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,: and then (the) they got full.,and then the they got full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,: and then (he did not) the (um) bunny did not eat any more.,and then he did not the um bunny did not eat any more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,: (and then their um teacher came ov) and then the doctor came over.,and then their um teacher came ov and then the doctor came over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,: and (um) the doggy pull/ed her over to where : the bunny is[EW:was].,and um the doggy pulled her over to where the bunny is +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,: and (um) the (um) doctor is try/ing to get (hi) the bunny better.,and um the um doctor is trying to get hi the bunny better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,: and then : he is all better again.,and then he is all better again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,(um) they have a wagon with a balloon on it.,um they have a wagon with a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and : they are (um) point/ing at the balloon.,and they are um pointing at the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and then they tie it on better.,and then they tie it on better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and then it fall/3s off the (um) wagon.,and then it falls off the um wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and they try to catch it.,and they try to catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and[-:] : one got really mad.,and one got really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and one got really sad.,and one got really sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and then they saw a guy with balloon/s.,and then they saw a guy with balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and then they (ask/ed for) ask/ed for one.,and then they asked for asked for one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,(and then : they got) and then they did not get[EW:have] enough money.,and then they got and then they did not get enough money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and then[-:] : they see him again.,and then they see him again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,: and (the doctor is uh) they see the doctor.,and the doctor is uh they see the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,: and the (um) bunny tell/3s the doctor where the balloon/s are.,and the um bunny tells the doctor where the balloons are +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and then the doctor give/3s the man money.,and then the doctor gives the man money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/516.slt,and then they all get a balloon.,and then they all get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(one) one day : a[EW:an] elephant was : go/ing to go swimming.,one one day a elephant was going to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and he was bounce/ing three ball/s at the exact same time.,and he was bouncing three balls at the exact same time +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(n then) and then[-:] the elephant : drop/ed : all of them in the pool.,n then and then the elephant dropped all of them in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,then the : guy went swim/ing for all of them.,then the guy went swimming for all of them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and they[-:] both play/ed ball together.,and they both played ball together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(and : the elephant) then they stop/ed play/ing.,and the elephant then they stopped playing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and the elephant (tooked|take[EW:took] it) took it.,and the elephant tooked it took it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(then) then the next day : the elephant went swim/ing again.,then then the next day the elephant went swimming again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,then she : ask/ed if she could go in the pool!,then she asked if she could go in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(I ee) then she start/ed run/ing.,I ee then she started running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,but then the other guy start/ed run/ing after her to tell her (to) : not to run.,but then the other guy started running after her to tell her to not to run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and then she fell down and hurt herself.,and then she fell down and hurt herself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and she start/ed to cry.,and she started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and then the lifeguard came.,and then the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and : he put a bandaid on her.,and he put a bandaid on her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(and then) and then she had to sit on the : bench.,and then and then she had to sit on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(and the li) and the lifeguard ask/ed what she was do/ing.,and the li and the lifeguard asked what she was doing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and she said she was run/ing.,and she said she was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and the lifeguard said can not you see the sign [EU]?,and the lifeguard said can not you see the sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,there is no[!] run/ing.,there is no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,that afternoon : (the) : the elephant/z friend came.,that afternoon the the elephant's friend came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and he brought a plane.,and he brought a plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and : the elephant said can I play with you?,and the elephant said can I play with you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and[-:] he said no.,and he said no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and he just kept on fly/ing it.,and he just kept on flying it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,then the elephant just took it away from him.,then the elephant just took it away from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and it fell in the water.,and it fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and (then) : then the elephant/z friend got mad.,and then then the elephant's friend got mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(and) and the elephant was guilty.,and and the elephant was guilty +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and the lifeguard (s) went in there to go (get) get it.,and the lifeguard s went in there to go get get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and the lifeguard ask/ed : (who) who did this?,and the lifeguard asked who who did this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(and the) and : the elephant said I did by accident.,and the and the elephant said I did by accident +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and : the lifeguard : try/ed to reach for it.,and the lifeguard tried to reach for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and (then) then : the elephant/z : friend was cry/ing for the plane.,and then then the elephant's friend was crying for the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,then the other[!] girl[!] lifeguard (came and got with it) came with : a net : to get it.,then the other girl lifeguard came and got with it came with a net to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and she got the plane for him.,and she got the plane for him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and (he was so) he was really happy.,and he was so he was really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and[-:] then they both play/ed together.,and then they both played together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,once upon a time there was a dog : build/ing a castle.,once upon a time there was a dog building a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and then (there) there came a rabbit.,and then there there came a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,he ask/ed (if he could help : the) if he could help the dog.,he asked if he could help the if he could help the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(and) and the dog said sure[!].,and and the dog said sure +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(and then the) and then the rabbit help/ed him.,and then the and then the rabbit helped him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and the dog was pat/ing (the s) the sand.,and the dog was patting the s the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,then the rabbit put sand all over the castle.,then the rabbit put sand all over the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and the castle broke.,and the castle broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(and the r) and the dog was happy.,and the r and the dog was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,but the rabbit (was : um) was mad.,but the rabbit was um was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and (then) then the : dog start/ed cry/ing.,and then then the dog started crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(and) : and the rabbit felt (guil) guilty.,and and the rabbit felt guil guilty +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,one day : when the rabbit and the dog were go/ing for a picnic : (they) (they saw) they : end/ed up : see/ing each other.,one day when the rabbit and the dog were going for a picnic they they saw they ended up seeing each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(then they) then they set out the blanket : and all the food.,then they then they set out the blanket and all the food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,the rabbit ate all the food.,the rabbit ate all the food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and (he w) he was really full.,and he w he was really full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and the dog only ate : his sandwich.,and the dog only ate his sandwich +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(and) and he drinked|drink[EW:drank] the juice.,and and he drinked the juice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(and then the) and then the rabbit : was sick.,and then the and then the rabbit was sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and he did not feel that good.,and he did not feel that good +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,then the dog went run/ing to a doctor : and said help help!,then the dog went running to a doctor and said help help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(there is a) my friend rabbit : is (sick) really sick!,there is a my friend rabbit is sick really sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(then) then the dog is pull/ing on her.,then then the dog is pulling on her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and (then) : then the doctor check/ed on[-:] the rabbit.,and then then the doctor checked on the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and he was (sick) really sick.,and he was sick really sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and then : the rabbit had to go to the hospital.,and then the rabbit had to go to the hospital +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,that is it [+_bch].,that is it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,he was : take/ing a wagon.,he was taking a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and he had a balloon in it.,and he had a balloon in it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and the rabbit ask/ed where did you get the balloon from?,and the rabbit asked where did you get the balloon from +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,he said I got it from : the : clown over there.,he said I got it from the clown over there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and then (the rabbit just) (he um) the dog said : do you want it?,and then the rabbit just he um the dog said do you want it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and then : the rabbit just took it.,and then the rabbit just took it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and then (the) the rabbit : let go of it.,and then the the rabbit let go of it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and then they both were jump/ing up for it.,and then they both were jumping up for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,then the dog got : mad.,then the dog got mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(and then they saw this) and then they saw the clown guy.,and then they saw this and then they saw the clown guy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and then[-:] the rabbit was happy.,and then the rabbit was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and he went to go get a balloon for the dog.,and he went to go get a balloon for the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(and) and she got : a blue one.,and and she got a blue one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(and it) and it was five cent/s : per balloon.,and it and it was five cents per balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(and he) and he did not have any money.,and he and he did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(and then) : and then they both were sad.,and then and then they both were sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and the dog stand|stand[EW:stood] right beside him.,and the dog stand right beside him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and then the rabbit went run/ing for the doctor.,and then the rabbit went running for the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(and) : and the rabbit call/ed for the doctor.,and and the rabbit called for the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(um) : then he said (that) that guy will not give us a balloon.,um then he said that that guy will not give us a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,(and I) and can (I) we have five cent/s?,and I and can I we have five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and (then) (then they were) : then the doctor gave : five cent/s.,and then then they were then the doctor gave five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,and then they got two balloon/s.,and then they got two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/842.slt,then they each got their own balloon/s.,then they each got their own balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,once upon a time there was a giraffe and a[EW:an] elephant were play/ing ball together [EU].,once upon a time there was a giraffe and a elephant were playing ball together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,: then the ball went in the water.,then the ball went in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,and then nobody could catch it.,and then nobody could catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,so[-:] : Jerome just keep go/ing (ca) catch/ing it [EU].,so Jerome just keep going ca catching it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,but he did not caught|catch[EW:catch] it.,but he did not caught it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,(then) then Jerome just gave it to : Adam.,then then Jerome just gave it to Adam +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,so Adam took the ball.,so Adam took the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,: (then) : then Jerome was in love.,then then Jerome was in love +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,which one is Jerome and which one is Adam?,which one is Jerome and which one is Adam +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,the elephant is Adam (and the Jerome is) and the Jerome is the giraffe [+_bch].,the elephant is Adam and the Jerome is and the Jerome is the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,once upon a time there was : Adam and Jerome.,once upon a time there was Adam and Jerome +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,they were try/ing to get in the water.,they were trying to get in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,(but they have) (and then) and then Adam has to tell his dad.,but they have and then and then Adam has to tell his dad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,then : he did not tell his dad.,then he did not tell his dad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,but (he) he forgot to (tell hi) tell his dad.,but he he forgot to tell hi tell his dad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,so he just went in the water.,so he just went in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,and he ran.,and he ran +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,and he ran.,and he ran +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,and he (slip/ed) slip/ed.,and he slipped slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,and then : (he just) (just) he (hurt her knee/s) hurt her[EW:his] knee/s.,and then he just just he hurt her knees hurt her knees +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,then : her dad came and see|see[EW:saw] what happen/ed to her.,then her dad came and see what happened to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,(then) : then : Adam just start/ed cry/ing.,then then Adam just started crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,"then dad just (put his) put a bandaid [pronounced_""danbaid""] on her.",then dad just put his put a bandaid on her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,put a what on her?,put a what on her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,a danbaid [+_bch].,a danbaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,then : it did not hurt any more.,then it did not hurt any more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,then : dad just put it in the room.,then dad just put it in the room +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,once upon a time there was Adam and Jerome again.,once upon a time there was Adam and Jerome again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,they were (go/ing) try/ing to play plane [EU].,they were going trying to play plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,and then : the plane (just : wen) just went way (up to) up in the sky.,and then the plane just wen just went way up to up in the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,(then) then Adam just took it and then play/ed and play/ed : and then jump/ed it in the water [EU].,then then Adam just took it and then played and played and then jumped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,then nobody can catch it.,then nobody can catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,(then) then Jerome was so mad.,then then Jerome was so mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,(and then) (and then) and then Adam/z dad came and *was try/ing to reach it [EU].,and then and then and then Adam's dad came and trying to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,but he did not reach it.,but he did not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,then Adam just explain/ed [~_pronounced_esplained] to his dad.,then Adam just explained to his dad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,spank/ed his dad ?,spanked his dad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,esplain/ed [+_bch].,esplained +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,"oh explain/ed, sorry.",oh explained sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,splain/ed to his dad [+_bch].,splained to his dad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,and then[-:] : dad could not reach it.,and then dad could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,so : (then) : then Jerome was cry/ing.,so then then Jerome was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,(and) and then : Adam/z dad did not know what to do.,and and then Adam's dad did not know what to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,so : Adam (told hi dad) told his dad to get mom.,so Adam told hi dad told his dad to get mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,mom just got a good idea.,mom just got a good idea +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,then mom just used a[?] rope to catch the plane.,then mom just used a rope to catch the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,and there it was.,and there it was +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,oh one more.,oh one more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,so then Jerome was so happy.,so then Jerome was so happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,he just got it back.,he just got it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,once upon a time (there was a : rabbit and) : [~_what_kind_of__animal_is_that] [~_okay_I_can_call_it_any_kind_of_animal] a cat and a rabbit were build/ing (a castle) a sandcastle.,once upon a time there was a rabbit and a cat and a rabbit were building a castle a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,and then they put some water inside it.,and then they put some water inside it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,(and then) : and then it was so beautiful.,and then and then it was so beautiful +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,(and then the rabbit) and then : (the c : uh) the cat was so scare/ed of the rabbit[~!_under_breath] break/ing the : thing[?].,and then the rabbit and then the c uh the cat was so scared of the rabbit breaking the thing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,now : the castle is all broken.,now the castle is all broken +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,once upon a time (there was a : okay) a dog and a rabbit were go/ing picnic [EU].,once upon a time there was a okay a dog and a rabbit were going picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,: and then the rabbit was so hungry he ate a full sandwich.,and then the rabbit was so hungry he ate a full sandwich +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,and (he ate a cra) and he ate (a) a carrot too : and a cake.,and he ate a cra and he ate a a carrot too and a cake +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,and then the dog was so hungry too (he) he just drank : juice.,and then the dog was so hungry too he he just drank juice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,and he ate some candy.,and he ate some candy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,then the rabbit was so full.,then the rabbit was so full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,(and even the ra) and even the dog was not so full either.,and even the ra and even the dog was not so full either +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,he was so hungry.,he was so hungry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,then : doctor rabbit came to see : rabbit.,then doctor rabbit came to see rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,(and then) : and then dog just pull/ed doctor rabbit and see|see[EW:saw] what is[EW:was] go/ing on (with :) with the rabbit [EU].,and then and then dog just pulled doctor rabbit and see what is going on with with the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,(then doctor rabbit) then (ro) doctor rabbit check/ed his head.,then doctor rabbit then ro doctor rabbit checked his head +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,then[!] doctor rabbit just tooked|take[EW:took] him (ho) to the doctor : and see|see[EW:saw] what is go/ing on with him [EU].,then doctor rabbit just tooked him ho to the doctor and see what is going on with him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,once upon a time there was : a[-:] : dog with a balloon.,once upon a time there was a dog with a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,and then the rabbit said can I have the balloon?,and then the rabbit said can I have the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,and then the dog said yes you can have it.,and then the dog said yes you can have it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,then the rabbit tooked|take[EW:took] : the balloon.,then the rabbit tooked the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,and then the rabbit said thank you.,and then the rabbit said thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,and then the dog said you are welcome.,and then the dog said you are welcome +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,then : the rabbit tooked|take[EW:took] it.,then the rabbit tooked it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,and then he took it home to see what is go/ing on with it [EU].,and then he took it home to see what is going on with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,so he show/ed it to his mom and then his dad and sister and his brother.,so he showed it to his mom and then his dad and sister and his brother +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,then he show/ed it.,then he showed it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,(and he was com) and then he came back.,and he was com and then he came back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,then he lost his balloon up in the air.,then he lost his balloon up in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,: (then the dog was) (and then the dog was so mad he went in the the) the rabbit she was stare/ing (at the) at the balloon.,then the dog was and then the dog was so mad he went in the the the rabbit she was staring at the at the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,(and one man wa du) and then : a balloon man was a bunny.,and one man wa du and then a balloon man was a bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,and : the dog and the rabbit just saw so many balloon/s.,and the dog and the rabbit just saw so many balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,(he) and then (the dog and the) the dog and the rabbit just took them.,he and then the dog and the the dog and the rabbit just took them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,then the rabbit said can I have one?,then the rabbit said can I have one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,can I have one?,can I have one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,so : the rabbit gave the man some money.,so the rabbit gave the man some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,and then the man just give|give[EW:gave] him (some) some balloon[EW:balloons].,and then the man just give him some some balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,(then : the man) then he gave[!] them the balloon/s.,then the man then he gave them the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,: then : doctor rabbit came walk/ing by[-:] .,then doctor rabbit came walking by +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,(then : the rabbit just show/ed doctor rabbit) there was a man did not (give us) give us : balloon/s said rabbit [EU].,then the rabbit just showed doctor rabbit there was a man did not give us give us balloons said rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,then the man just gave[-:][!] the (w) doctor rabbit some balloon/s.,then the man just gave the w doctor rabbit some balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,and then doctor rabbit just gave him (some) (some ba) some money.,and then doctor rabbit just gave him some some ba some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,and then doctor rabbit gave balloon/s to the kids.,and then doctor rabbit gave balloons to the kids +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,then : dog and rabbit got some balloon/s (the) except for doctor rabbit.,then dog and rabbit got some balloons the except for doctor rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/608.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,(Um) they meet up together.,Um they meet up together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,: the ball fell in the water.,the ball fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,he swimmed|swim[EW:swam] to get it.,he swimmed to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,he got it : and swam back : and got out.,he got it and swam back and got out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,They are go/ing swim/ing.,They are going swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,she want/3s to jump.,she wants to jump +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,she run/3s.,she runs +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,and she slip/3s and hurt/3s her knee and want/3s a doctor.,and she slips and hurts her knee and wants a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,and she put a bandaid on it.,and she put a bandaid on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,then she sat down.,then she sat down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,and then (she) he said get out.,and then she he said get out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,(Um) she want/ed to try out his airplane.,Um she wanted to try out his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,but : (sh) he show/ed her.,but sh he showed her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,and she[!] want/ed to try.,and she wanted to try +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,but it : fell in the : water.,but it fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,and it sunk.,and it sunk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,and then the lifeguard said : what is that?,and then the lifeguard said what is that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,it was his airplane.,it was his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,(but I) she said I just want/ed to try it.,but I she said I just wanted to try it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,but it fell in the water.,but it fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,but (sh) he try/ed to get it.,but sh he tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,but he could not reach.,but he could not reach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,and it sunk and sunk and sunk : until : a lady came in (with the) : and swoop/ed it up.,and it sunk and sunk and sunk until a lady came in with the and swooped it up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,and she try/ed to get it.,and she tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,(but she) and she got it.,but she and she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,and then he was happy.,and then he was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,(they) his little sister is make/ing a sandcastle.,they his little sister is making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,he help/3s her.,he helps her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,he make/3s it bigger.,he makes it bigger +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,it break/3s.,it breaks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,(hers) his sister cry/3s.,hers his sister cries +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,he met up with his friend.,he met up with his friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,they had a picnic.,they had a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,he was full.,he was full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,: his tummy hurt.,his tummy hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,he need/ed a doctor : because his tummy hurted|hurt[EW:hurt].,he needed a doctor because his tummy hurted +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,and : she came and help/ed him.,and she came and helped him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,then he was feel/ing better.,then he was feeling better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,he found his friend with a wagon.,he found his friend with a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,he want/ed her balloon.,he wanted her balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,(she) he untie/ed it.,she he untied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,and it flew away.,and it flew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,and (uh) she was mad at him.,and uh she was mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,and there was a clown : who had : balloon/s.,and there was a clown who had balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,it cost money.,it cost money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,but he did not have any money.,but he did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,then : he saw a doctor who maybe had money.,then he saw a doctor who maybe had money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,can we have money because my pocket/s are empty?,can we have money because my pockets are empty +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,sure.,sure +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,then they got balloon/s.,then they got balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/515.slt,(then they both) and then they were happy.,then they both and then they were happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,(uh : uh) : these two : animal/s were play/ing ball[-:].,uh uh these two animals were playing ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,(the) the ball fell into the water.,the the ball fell into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,one of the (ani) animal/s went swim/ing to get the ball.,one of the ani animals went swimming to get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,the animal/s (got) got the ball and play/ed with it.,the animals got got the ball and played with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,(they[-:]) (they ha) they (j) jump/ed.,they they ha they j jumped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,and (the la) the lady : (h) (ha) had the (um) ball[-:].,and the la the lady h ha had the um ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,now it is done [+_bch].,now it is done +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,these two animal/s went swim/ing.,these two animals went swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,these[-:] two : animal/s : went to walk to the diving board.,these two animals went to walk to the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,(one was) both of them were run/ing : down the : aisle.,one was both of them were running down the aisle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,(one of a) one of the : (um) animal/s : fell (and) : and cut his knee.,one of a one of the um animals fell and and cut his knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,both[-:] the (li) lifeguard came and put a bandage on it.,both the li lifeguard came and put a bandage on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,(he[-:]) she was : happy that she (ha) got (a uh) a bandaid.,he she was happy that she ha got a uh a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,she : (hu) (huddig) hug/ed the lifeguard.,she hu huddig hugged the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,she sat on a bench : scare/ed.,she sat on a bench scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,now [+_bch].,now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,(thee) these two[-:] kid/s : went swim/ing with a[EW:an] airplane.,thee these two kids went swimming with a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,they flew it.,they flew it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,they hold|hold[EW:held] it : and then flied|fly[EW:flew] it.,they hold it and then flied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,and then : they play/ed with it.,and then they played with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,then it fell in the (wa) (wa) water.,then it fell in the wa wa water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,and it broke.,and it broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,they[-:] both was[EW:were] scare/ed : of : the airplane.,they both was scared of the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,they tease/ed each other.,they teased each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,(bo) the lifeguard said no toy/s in the water.,bo the lifeguard said no toys in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,(these) (th) the two kid/s said sorry.,these th the two kids said sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,then the (li) (li) lifeguard jump/ed into the water and got it.,then the li li lifeguard jumped into the water and got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,(it) (the) (the airplane) : (wa) (co) the lifeguard could not get the airplane.,it the the airplane wa co the lifeguard could not get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,the mom[-:] got a net and then put it in (the) the water.,the mom got a net and then put it in the the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,she got the : net and put it on the airplane and got the plane.,she got the net and put it on the airplane and got the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,the mom gived|give[EW:gave] it back to (the) the animal fix/ed.,the mom gived it back to the the animal fixed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,he hug/ed it.,he hugged it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,now [+_bch].,now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,"okay, close that you said?",okay close that you said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,these two kid/s were play/ing in the sandbox.,these two kids were playing in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,these two kid/s made a sandcastle.,these two kids made a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,these kid/s put sand over top of the castle[?].,these kids put sand over top of the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,it broke.,it broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,they made a dinosaur kind of.,they made a dinosaur kind of +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,and now[?] [+_bch].,and now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,(these two[-:] : guy) this one guy was wait/ing for one of other of a kid [EU].,these two guy this one guy was waiting for one of other of a kid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,they play/ed[-:] with food[-:] .,they played with food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,they had a party : with food.,they had a party with food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,they drinked|drink[EW:drank] juice.,they drinked juice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,one of them got full.,one of them got full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,they ate candy.,they ate candy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,they threw all[-:] the candy stuff on the ground and never pick/ed it up.,they threw all the candy stuff on the ground and never picked it up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,they play/ed : with the sandbox.,they played with the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,the : dad[-:] went to get one of them.,the dad went to get one of them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,(he) they pull/ed the teeshirt.,he they pulled the teeshirt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,he said : open your mouth!,he said open your mouth +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,they walk/ed home[-:] (and : w) and walk/ed home in the bush/s.,they walked home and w and walked home in the bushes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,and now [+_bch] [EU].,and now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,these two[-:] guy/s were : (w) (w) (ride/ing a) : ride/ing a : wagon with a balloon on it.,these two guys were w w riding a riding a wagon with a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,they : wave/ed at somebody.,they waved at somebody +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,they untie/ed the balloon.,they untied the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,(it went) it went up in the : air.,it went it went up in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,it went in the : sky.,it went in the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,(a guy wa) a clown was sell/ing more balloon/s.,a guy wa a clown was selling more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,a guy said can I have that one?,a guy said can I have that one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,(the) (the) : the : clown said it is (five) : five cent/s.,the the the clown said it is five five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,(they) (they got : ta) (the) : (they) (the) they had both : money.,they they got ta the they the they had both money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,and : the clown did not give him (the) the balloon.,and the clown did not give him the the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,(they di) (went) they went to see a doctor after : and said : the clown did not gived|give[EW:give] me a balloon.,they di went they went to see a doctor after and said the clown did not gived me a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,then : they got : (two) two (m) money[EW:cents].,then they got two two m money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,then after they : hold[EW:held] it.,then after they hold it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/871.slt,and the end [+_bch].,and the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,one is doing a ball bounce [EU].,one is doing a ball bounce +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,: one threw the ball in the sand.,one threw the ball in the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,it got stuck.,it got stuck +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,one is dig/ing in : to get the ball.,one is digging in to get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,(one) the elephant is go/ing to help the giraffe.,one the elephant is going to help the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,[~_whee_sound] one is cry/ing.,one is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,they are go/ing to jump in the water.,they are going to jump in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,(w) : one is run/ing.,w one is running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,: (one is[-:] slip/ing) : one is slip/ing.,one is slipping one is slipping +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,(one hurt : the bandy) one hurt her knee.,one hurt the bandy one hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,one[-:] has to get a bandy [~_bandaid] on.,one has to get a bandy on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,[~_makes_noises_and_gestures] like that [+_bch].,like that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,tell me in words.,tell me in words +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,the elephant/z eye is like [~_makes_noise_/s/_and_closes_eye].,the elephant's eye is like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,like close/ed?,like closed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,uhhuh [+_bch].,uhhuh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,she is sit/ing on a bench (with a bandy) : [~_EXA:_with_a_what] with a bandy on.,she is sitting on a bench with a bandy with a bandy on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,she/z[EW:her] face is like [~_makes_face].,she's face is like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,like smile/ing?,like smiling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,"okay, thank you.",okay thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,(one) the giraffe has a[EW:an] airplane.,one the giraffe has a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,: he is go/ing to fly it.,he is going to fly it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,: the elephant is go/ing to bite it :.,the elephant is going to bite it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,go/ing what?,going what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,to bite it [+_bch].,to bite it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,[~_ooh_sound] it got stuck in the sand.,it got stuck in the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,got stuck in the sand still.,got stuck in the sand still +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,still[!] stuck in the sand.,still stuck in the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,still[!] stuck in the sand.,still stuck in the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,still stuck in the sand.,still stuck in the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,still : stuck in the sand.,still stuck in the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,still stuck in the (haa) [~_oooh_sound] sand [~_laughs].,still stuck in the haa sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,the elephant is go/ing to pull it out.,the elephant is going to pull it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,and the elephant got[!] it out.,and the elephant got it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,the elephant gave it to the giraffe.,the elephant gave it to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,very nice.,very nice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,very nice!,very nice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,uhhm [+_bch].,uhhm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,what was very nice?,what was very nice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,the elephant gave the airplane back [+_bch].,the elephant gave the airplane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,one is dig/ing.,one is digging +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,dig/ing again [EU].,digging again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,one : pour/ed sand on : the castle.,one poured sand on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,one was[-:] : sad.,one was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,one is[-:] kind of [:_kinda] happy.,one is kind of happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,they are walk/ing with food.,they are walking with food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,eat/ing [EU].,eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,the bunny is [+..] [EU].,the bunny is +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,sometime/s (a little) I am a little shy [+_bch].,sometimes a little I am a little shy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,oh you are a little shy.,oh you are a little shy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,this one is sleepy.,this one is sleepy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,he has a big tummy [~_makes_'eeee'_sound].,he has a big tummy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,a big what?,a big what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,tummy [+_bch].,tummy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,just like this [+_bch].,just like this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,"[~_makes_'ooh'_sound,_makes_sniffing_sounds] :.", +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,tell me so I know what the story is.,tell me so I know what the story is +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,one has a dress on.,one has a dress on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,: one man has glass/s on.,one man has glasses on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,one[-:] sticked|stick[EW:stuck] his tongue out.,one sticked his tongue out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,[~_makes_'ooooh'_sound] gross.,gross +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,[~_makes_'oooh'_sound] one is walk/ing.,one is walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,they have a balloon tie/ed on to the wagon.,they have a balloon tied on to the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,on to the what?,on to the what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,wagon tied on [+_bch] [EU].,wagon tied on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,oh the wagon is that what you said?,oh the wagon is that what you said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,they still have it tie/ed on.,they still have it tied on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,: one sticked|stick[EW:stuck] his tongue out.,one sticked his tongue out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,gross.,gross +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,(one) : the balloon is fly/ing away.,one the balloon is flying away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,: one is cry/ing.,one is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,they found balloon/s.,they found balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,what is that?,what is that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,they found balloon/s [+_bch].,they found balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,and one is go/ing to grab one.,and one is going to grab one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,:[~!_growly_voice] he got mad[-:].,he got mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,what?,what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,he got mad [+_bch].,he got mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,they all pop/ed out [EU].,they all popped out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,(there[-:]) one got caught.,there one got caught +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,: they are leave/ing.,they are leaving +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,: one is smile/ing.,one is smiling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,: (mm) shy [EU].,mm shy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,oh [+_bch].,oh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,are you talk/ing about yourself or the picture?,are you talking about yourself or the picture +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,talk/ing about the (sh) picture [+_bch].,talking about the sh picture +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/404.slt,one is shy on the picture [+_bch].,one is shy on the picture +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,There is an elephant.,There is an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,what is that [+_bch]?,what is that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,what is that?,what is that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,a horse.,a horse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,umhm.,umhm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,What is that [+_bch]?,What is that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,what is that?,what is that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,the line.,the line +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,umhm and what is happen/ing?,umhm and what is happening +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,look at the three ball/s.,look at the three balls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,umhm.,umhm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,"what do you see, picture?",what do you see picture +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,umhm.,umhm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,did you see three line/s.,did you see three lines +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,the dot is a line.,the dot is a line +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,umhm and what are they do/ing?,umhm and what are they doing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,they are go/ing back back.,they are going back back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,they are back back.,they are back back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,they are go/ing around the line.,they are going around the line +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,they are go/ing to drop some ball/s [~_whispers].,they are going to drop some balls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,(fall down) fall down one of the ball/s [EU].,fall down fall down one of the balls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,oops.,oops +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,he is go/ing to [~_gonna] pick them up.,he is going to pick them up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,oh dear.,oh dear +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,(I just) : I just go/ing to [~_gonna] throw the ball down [EU].,I just I just going to throw the ball down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,that is a great idea.,that is a great idea +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,then : I just (got a) : drew a picture and go home [EU].,then I just got a drew a picture and go home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,end [+_bch].,end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,Do you see the slide and the swimming pool?,Do you see the slide and the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,there is a horse : and an elephant : and the lino.,there is a horse and an elephant and the lino +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,and what is happen/ing?,and what is happening +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,and there is water.,and there is water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,she is got to [~_gotta] go in first [EU].,she is got to go in first +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,he is got to [~_gotta] go in first [EU].,he is got to go in first +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,then[!] (she) she is[!] got to [~_gotta] run : to the slide [EU].,then she she is got to run to the slide +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,she say|say[EW:say/3s] ouch!,she say ouch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,: her mother say oops[!].,her mother say oops +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,: she say|say[EW:say/3s] (ouch) ouch.,she say ouch ouch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,(that is not) that is not good.,that is not that is not good +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,look at that.,look at that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,look at that.,look at that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,is that her mother?,is that her mother +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,(you just) you just got an owee : said the mother.,you just you just got an owee said the mother +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,(but mother) : but her mother took her home.,but mother but her mother took her home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,you[!] : need to go into the swimming pool : said her mother.,you need to go into the swimming pool said her mother +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,she grab/ed her hand.,she grabbed her hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,(an) and away they went.,an and away they went +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,Horse can be [EU].,Horse can be +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,but : he want|want[EW:wants] to [~_wanna] talk to her father.,but he want to talk to her father +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,time again.,time again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,there is time is : swimming pool in the lino : and water [EU].,there is time is swimming pool in the lino and water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,time : elephant/z father gave a special idea [EU].,time elephant's father gave a special idea +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,how about we jumped|jump[EW:jump] in the swim/ing pool?,how about we jumped in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,ohoh.,ohoh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,(and that is the very and) : he can do something about this the airplane.,and that is the very and he can do something about this the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,finally : he scare/ed [EU].,finally he scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,the horse said[!] [EU].,the horse said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,you cannot[!] bury it all : said her mother.,you cannot bury it all said her mother +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,you can go into the swimming pool if you want.,you can go into the swimming pool if you want +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,but you can not drop to the airplane.,but you can not drop to the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,I want to pick it up said the elephant.,I want to pick it up said the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,Hey I need to do that : said the horse.,Hey I need to do that said the horse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,but he need/3s to reach it.,but he needs to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,then : he need/3s to reach.,then he needs to reach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,but : he can not reach at all.,but he can not reach at all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,it can not do anything to the swimming pool.,it can not do anything to the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,and : his father grab her hand [EU].,and his father grab her hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,and away they went.,and away they went +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,they go home.,they go home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,(they took) : they took that one : and said : : when[EW:where] are you go/ing?,they took they took that one and said when are you going +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,his mother : said : to my grandma[EW:grandma/z] house.,his mother said to my grandma house +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,(but I have) but I have[!] to catch it : she said.,but I have but I have to catch it she said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,here you go : said elephant/z mother.,here you go said elephant's mother +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,I will : touch it : said the elephant.,I will touch it said the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,and it could very soon.,and it could very soon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,and live/ed happily ever after [EU].,and lived happily ever after +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,I see a bunny and a sandcastle and a sandbox and a dog.,I see a bunny and a sandcastle and a sandbox and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,what is happen/ing?,what is happening +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,they are make/ing a sandcastle.,they are making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,this is a rabbit and a dog.,this is a rabbit and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,he is make/ing a sandcastle[!].,he is making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,(he) he is make/ing it easier.,he he is making it easier +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,oops[!].,oops +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,look at the rabbit.,look at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,he is scare/ed.,he is scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,he is scare/ed.,he is scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,the rabbit is all alone.,the rabbit is all alone +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,oops[!].,oops +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,(do all by it) he do it all by hisself[EW:himself] [EU].,do all by it he do it all by hisself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,They are bring/ing basket/s.,They are bringing baskets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,it is the rabbit and a dog.,it is the rabbit and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,they are have/ing a picnic : with the bunny and a dog.,they are having a picnic with the bunny and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,the rabbit is all finish/ed.,the rabbit is all finished +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,and so : the dog is eat/ing.,and so the dog is eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,"(the dog is really, real) the dog is really really scare/ed.",the dog is really real the dog is really really scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,and : the bunny rabbit is tire/ed.,and the bunny rabbit is tired +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,he really[?] need/3s to go home.,he really needs to go home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,and so does the dog.,and so does the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,because he need/3s to go home with his mother because the rabbit is sleep/ing.,because he needs to go home with his mother because the rabbit is sleeping +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,(he need/3s to buy him an) : this rabbit (i) is : woke up : because he need/3s to go home with his father [EU].,he needs to buy him an this rabbit i is woke up because he needs to go home with his father +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,this is a balloon.,this is a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,what color is it?,what color is it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,maybe yellow I think.,maybe yellow I think +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,and that is the bunny : and a wagon : and[!] a dog.,and that is the bunny and a wagon and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,can show[?] his balloon in a wagon [EU].,can show his balloon in a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,this is a bunny and a dog.,this is a bunny and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,he can sit down and sit with the balloon and the wagon.,he can sit down and sit with the balloon and the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,oops[!] he drop/ed the balloon.,oops he dropped the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,uhoh it fly|fly[EW:flew] away.,uhoh it fly away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,he found some more balloon/s.,he found some more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,he is go/ing to have a balloon.,he is going to have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,what do/3s it say [+_bch]?,what does it say +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,what do/3s it say [+_bch]?,what does it say +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,what do you think it say/3s?,what do you think it says +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,is that the five in the word/s?,is that the five in the words +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,umhm what is happen/ing?,umhm what is happening +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,look at the bunny and the dog and the wagon.,look at the bunny and the dog and the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,because he drop/ed the balloon.,because he dropped the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,and it fly|fly[EW:flew] away.,and it fly away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,they are go/ing to get a balloon.,they are going to get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,: because he need/3s to run.,because he needs to run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,he is got to go home.,he is got to go home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,uhoh he drop/ed the balloon/s.,uhoh he dropped the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,he is got to hold on to the balloon [EU].,he is got to hold on to the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,they are go/ing to hold onto balloon/s.,they are going to hold onto balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/527.slt,end [+_bch].,end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,a giraffe (um) and an elephant were play/ing : with a ball close to a swimming pool.,a giraffe um and an elephant were playing with a ball close to a swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and then : the ball got drop/ed in the water accidentally.,and then the ball got dropped in the water accidentally +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,the giraffe try/ed to get it.,the giraffe tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and finally he got it : and pass/ed it on to the elephant.,and finally he got it and passed it on to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and the elephant : look/ed like she had done it all by herself.,and the elephant looked like she had done it all by herself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,an elephant : and a giraffe were play/ing by : a nonrun/ing swimming pool.,an elephant and a giraffe were playing by a nonruning swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,the elephant said that she would : go onto the diving platform.,the elephant said that she would go onto the diving platform +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,she started run/ing to get there.,she started running to get there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and : the giraffe was start/ing to run too.,and the giraffe was starting to run too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,then the elephant slip/ed.,then the elephant slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and the giraffe kept on run/ing.,and the giraffe kept on running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,Giraffe try/ed to see (if he could help the e) if he could help the elephant.,Giraffe tried to see if he could help the e if he could help the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,(and the lifeguard came) and the lifeguard came.,and the lifeguard came and the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and the elephant start/ed cry/ing.,and the elephant started crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,the (let) lifeguard taught the elephant how to walk again.,the let lifeguard taught the elephant how to walk again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and then (he point/ed) the lifeguard point/ed to the : no run/ing sign.,and then he pointed the lifeguard pointed to the no running sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,(and the elephant said) and the elephant : try/ed (t) : to hide her face.,and the elephant said and the elephant tried t to hide her face +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,or I do not know [+_bch].,or I do not know +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,(um : a) a giraffe (was) and the elephant were playing at a pool : with an airplane.,um a a giraffe was and the elephant were playing at a pool with an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,the giraffe was play/ing with the airplane.,the giraffe was playing with the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,the elephant grab/ed the airplane : from the giraffe and start/ed play/ing with it.,the elephant grabbed the airplane from the giraffe and started playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,she drop/ed : it in the water.,she dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,the giraffe got really mad at the elephant.,the giraffe got really mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,the lifeguard came puzzle/ed.,the lifeguard came puzzled +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,the elephant explaine/ed what happen/ed.,the elephant explaineed what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,the lifeguard try/ed[!] to reach it.,the lifeguard tried to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,lifeguard could not.,lifeguard could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,the giraffe start/ed cry/ing.,the giraffe started crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,another elephant came.,another elephant came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,she try/ed scoop/ing up the airplane in her net.,she tried scooping up the airplane in her net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,she got it and pass/ed it back to the giraffe.,she got it and passed it back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and the giraffe was very happy to have it back.,and the giraffe was very happy to have it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and so was the elephant : because she could drop it in the water again.,and so was the elephant because she could drop it in the water again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,a rabbit and a dog were play/ing : with the sand : in the sandbox.,a rabbit and a dog were playing with the sand in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and the sandcastle was : by there.,and the sandcastle was by there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,(the) (the um :) the dog start/ed play/ing with the sandcastle as the : rabbit start/ed putt/ing sand in the bucket.,the the um the dog started playing with the sandcastle as the rabbit started putting sand in the bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,(the dog : put the sand) the (um) dog was surprise/ed when the rabbit : put a bucket of sand over the sandcastle.,the dog put the sand the um dog was surprised when the rabbit put a bucket of sand over the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,the dog : look/ed : (happy um) ready to play with it : while the rabbit look/ed surprise/ed.,the dog looked happy um ready to play with it while the rabbit looked surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,then the dog start/ed cry/ing.,then the dog started crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and the rabbit look/ed (like) as if he had done nothing.,and the rabbit looked like as if he had done nothing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,(um) a dog : was have/ing a picnic as a rabbit came along.,um a dog was having a picnic as a rabbit came along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,the dog start/ed to take out a sandwich while the rabbit took out everything in his bag.,the dog started to take out a sandwich while the rabbit took out everything in his bag +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,he ate it all just as : the dog was about [~_laughs] to (ss) (do one bite of his sand) have one bite of his sandwich.,he ate it all just as the dog was about to ss do one bite of his sand have one bite of his sandwich +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,the rabbit looked dizzy when the dog had only bitten into his : sandwich.,the rabbit looked dizzy when the dog had only bitten into his sandwich +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,the dog ran : to a nurse rabbit : and ask/ed : her if she could help the rabbit.,the dog ran to a nurse rabbit and asked her if she could help the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,(he) (he pull/ed) (she pull/ed him) she pull/ed : him over to the (um) rabbit.,he he pulled she pulled him she pulled him over to the um rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,the nurse said you bad : rabbit[~!_yelling] : and then took the rabbit out to eat her lunch.,the nurse said you bad rabbit and then took the rabbit out to eat her lunch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,a dog : had : a wheelbarrow and a balloon.,a dog had a wheelbarrow and a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and the rabbit came along.,and the rabbit came along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,(the r) the rabbit was amaze/ed : by the balloon.,the r the rabbit was amazed by the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and the dog look/ed happy.,and the dog looked happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,the rabbit start/ed untie/ing the balloon.,the rabbit started untying the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and the dog was surprise/ed.,and the dog was surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,the rabbit let go of the balloon.,the rabbit let go of the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and the balloon flew up.,and the balloon flew up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,the rabbit was amaze/ed by how the balloon float/ed up : so fast.,the rabbit was amazed by how the balloon floated up so fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and the dog was get/ing really mad at the rabbit.,and the dog was getting really mad at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,(then : a) then they saw (a guy) a dog : with a whole bunch of balloon/s.,then a then they saw a guy a dog with a whole bunch of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and (the) the rabbit ask/ed : if they could have one balloon.,and the the rabbit asked if they could have one balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,but the dog answer/ed : five cent/s for a balloon.,but the dog answered five cents for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,they look/ed : sad.,they looked sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,(and) : and the (um) dog said that will teach you not to : throw away balloon/s[~!_sternly]!,and and the um dog said that will teach you not to throw away balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,then they saw : the rabbit/z mom.,then they saw the rabbit's mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and (the rabbit ask/ed : if) the rabbit ask/ed his mom (if he could) if he could have : a[-:] balloon.,and the rabbit asked if the rabbit asked his mom if he could if he could have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,the rabbit paid the dog : (two five uh) two nickel/s.,the rabbit paid the dog two five uh two nickels +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and he gave : the rabbit and the dog each a balloon.,and he gave the rabbit and the dog each a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,: the dog : got a balloon.,the dog got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and he look/ed very happy.,and he looked very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and so did the rabbit.,and so did the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/849.slt,and so did the mom.,and so did the mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,one day there was an elephant and a giraffe.,one day there was an elephant and a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the elephant was bounce/ing (uh) a ball.,the elephant was bouncing uh a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the ball[-:] fell in the water[-:].,the ball fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,and the giraffe jump/ed in the water and (got) swam to the ball.,and the giraffe jumped in the water and got swam to the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,he got the ball and gave it to the elephant.,he got the ball and gave it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the elephant[-:] : said thank you.,the elephant said thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the : elephant and the (g) giraffe were look/ing in the water[-:].,the elephant and the g giraffe were looking in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the elephant was going to go off : the (um) : board[-:].,the elephant was going to go off the um board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the elephant slip/ed[-:] : and fell.,the elephant slipped and fell +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,she hurt her knee.,she hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the elephant start/ed to cry.,the elephant started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,so the lifeguard came and put a bandaid on it.,so the lifeguard came and put a bandaid on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the lifeguard[-:] telled|tell[EW:told] her to sit on the bench.,the lifeguard telled her to sit on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,(she : t) the lifeguard told the elephant : (to) not to run.,she t the lifeguard told the elephant to not to run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,one day there was an elephant and a giraffe.,one day there was an elephant and a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the giraffe had an airplane.,the giraffe had an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,he was : play/ing with it[-:].,he was playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the elephant took it away from him.,the elephant took it away from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,and the elephant drop/ed it in the water[!].,and the elephant dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the[-:] giraffe got very mad at the elephant.,the giraffe got very mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,and : the lifeguard came[-:] (to try to get) and look/ed at the airplane.,and the lifeguard came to try to get and looked at the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the elephant : was tell/ing the lifeguard about the airplane.,the elephant was telling the lifeguard about the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the lifeguard try/ed to get the airplane.,the lifeguard tried to get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,but the lifeguard could not get it.,but the lifeguard could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,so (a uh) a girl other elephant came with a net : and got the airplane out.,so a uh a girl other elephant came with a net and got the airplane out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,and the giraffe was very happy.,and the giraffe was very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,(and the elephant and the giraffe) : the giraffe hug/ed the (hair) airplane[-:].,and the elephant and the giraffe the giraffe hugged the hair airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,one day there was a bunny : and another bunny.,one day there was a bunny and another bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,they[-:] built a sandcastle.,they built a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,(they) the boy bunny put the big bucket of sand on the sandcastle.,they the boy bunny put the big bucket of sand on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,and the sandcastle broke.,and the sandcastle broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,and the girl[-:] : bunny start/ed to cry.,and the girl bunny started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the : boy[-:] bunny and the girl bunny went for a picnic.,the boy bunny and the girl bunny went for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,they[-:] found a spot near the tree/s.,they found a spot near the trees +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the boy bunny ate all the food.,the boy bunny ate all the food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,and he got sick.,and he got sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,so : (uh) the girl bunny went to get a doctor bunny.,so uh the girl bunny went to get a doctor bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the girl bunny pull/ed the doctor bunny to the boy bunny.,the girl bunny pulled the doctor bunny to the boy bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the doctor bunny told : the boy bunny : not to eat : lot/s of food.,the doctor bunny told the boy bunny not to eat lots of food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the (r uh) doctor bunny took the boy bunny : with her.,the r uh doctor bunny took the boy bunny with her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,one day there was the girl bunny.,one day there was the girl bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,she had a wagon with a balloon on it.,she had a wagon with a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the boy bunny : look/ed at the balloon.,the boy bunny looked at the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,and (h) the boy bunny took the balloon off.,and h the boy bunny took the balloon off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,and it (f) the balloon flew in the air.,and it f the balloon flew in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the girl bunny was mad at the boy bunny.,the girl bunny was mad at the boy bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,there[-:] was a man hold/ing : balloon/s.,there was a man holding balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,and the : boy bunny went to buy one.,and the boy bunny went to buy one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,he ask/ed for a balloon.,he asked for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,but he could not buy the balloon/s because they were five cent/s.,but he could not buy the balloons because they were five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,and he did not have any money.,and he did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the girl[-:] : bunny and the boy bunny were very sad.,the girl bunny and the boy bunny were very sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,(um) a : other bunny : was walk/ing down the path.,um a other bunny was walking down the path +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,and the boy bunny ask|ask[EW:asked] if the girl had any money to buy a balloon.,and the boy bunny ask if the girl had any money to buy a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,and the girl[-:] (b) : bunny gave : (the um) : the person with the balloon/s : the money (so that tho) so that the bunny/s could have (the) two balloon/s.,and the girl b bunny gave the um the person with the balloons the money so that tho so that the bunnies could have the two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/773.slt,the boy[-:] bunny and the girl bunny were very happy.,the boy bunny and the girl bunny were very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,a cow saw (um) : a[EW:an] elephant.,a cow saw um a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: and (um) : they want/ed to go in the pool[-:].,and um they wanted to go in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: and that : (um) : giraffe was try/ing to catch the ball.,and that um giraffe was trying to catch the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: and : (um) : the elephant catched|catch[EW:caught] the ball.,and um the elephant catched the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: and (um) : the elephant : want/ed to keep it.,and um the elephant wanted to keep it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,that is the whole story [+_bch].,that is the whole story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,(the ele*) the giraffe saw a pool[-:] :.,the ele the giraffe saw a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,they went there[-:] :.,they went there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,and the elephant ran :.,and the elephant ran +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,and the elephant scrape/ed his knee[-:] :.,and the elephant scraped his knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,and he was cry/ing :.,and he was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,and he need/ed help.,and he needed help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,so (h*) he put a (bandage on) bandaid on (hi*) her :.,so h he put a bandage on bandaid on hi her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,and (um) it was feel/ing better :.,and um it was feeling better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,so she sat on the bench.,so she sat on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,(um) : (the elephant) the giraffe want/ed to (play hi*) play with his plane.,um the elephant the giraffe wanted to play hi play with his plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: and : the elephant said no[!].,and the elephant said no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: and the elephant (um) want/ed to play with it.,and the elephant um wanted to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,so : she grab/ed it from the giraffe {makes high pitched sound} [/hU/].,so she grabbed it from the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,and the elephant (throw it) threw it (o*) in the water.,and the elephant throw it threw it o in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: and : the : giraffe trieded|try[EW:try/ed] to get it.,and the giraffe trieded to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,and *the elephant try/ed to : get it : [EU].,and elephant tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: and : he help/3s [-:].,and he helps +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: and he : (s*) decide/ed to get it.,and he s decided to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: and (um) : he try/ed to (get) get it.,and um he tried to get get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,and[-:] : the elephant try/ed.,and the elephant tried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,and the giraffe try/ed.,and the giraffe tried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,and (the : elephant did not ca* he the elephant) the : different[!] elephant want/ed to get it.,and the elephant did not ca he the elephant the different elephant wanted to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: and[-:] (ah) : the different elephant : got it.,and ah the different elephant got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: and[-:] the different elephant : got it.,and the different elephant got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: and the giraffe said thanks elephant.,and the giraffe said thanks elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,(the bunny the) ((who is this)) <> <> the bunny[-:] try/ed to : fix[-:] the : castle.,the bunny the who is this the bunny tried to fix the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,.,It is your story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,.,I can not see the pictures +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: and the bunny made a : castle.,and the bunny made a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: (the bunny) : the sand (w*) was dryed[EW:dry] [?].,the bunny the sand w was dryed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,(and the) : and her friend said {sharp intake of breath}.,and the and her friend said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: and the bunny said {sharp intake of breath} : let us make another one.,and the bunny said let us make another one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,(um) : the bunny and her friend went on a picnic.,um the bunny and her friend went on a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,and the bunny ate : food.,and the bunny ate food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,and the bunny was full.,and the bunny was full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,and the bunny : hit his head on the grass.,and the bunny hit his head on the grass +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,(and his mother said[-:] : in her) the bunny/z friend : went to his mother.,and his mother said in her the bunny's friend went to his mother +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,(and then : he said she said) he said come here.,and then he said she said he said come here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,and (sh*) she said : look at that round : thing[?].,and sh she said look at that round thing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,what?,what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,the round thing on his head [+_bch].,the round thing on his head +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,and : the bunny said goodbye to his friend.,and the bunny said goodbye to his friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,the[-:] bunny said hi to his friend.,the bunny said hi to his friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,he want/ed a balloon.,he wanted a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: and he took one.,and he took one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,and he stealed|steal[EW:stole] it.,and he stealed it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: (and he) and the bunny/z friend said {gasping sound}.,and he and the bunny's friend said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,and it blowed|blow[EW:blew] away.,and it blowed away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,and the bunny/z friend said {shrugs shoulders}.,and the bunny's friend said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,what was that?,what was that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,he said [+_bch].,he said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,what did he say?,what did he say +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,he said {shrugs shoulders} [+_bch].,he said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,oh shoulder/s up.,oh shoulders up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,(he s*) he was angry.,he s he was angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: and the bunny/z friend : want/ed a balloon again.,and the bunny's friend wanted a balloon again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,he want/ed to what?,he wanted to what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,he want/ed a balloon again [+_bch].,he wanted a balloon again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,oh balloon oh okay I was not sure what you said.,oh balloon oh okay I was not sure what you said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,(and the bunny/z frien*) the bunny : (um) show/ed what (one one/s) one it want/ed.,and the bunny's frien the bunny um showed what one ones one it wanted +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,and : it was number five.,and it was number five +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: (and the bunny said) and the bunny said no[!].,and the bunny said and the bunny said no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,and[-:] the bunny want/ed to have it.,and the bunny wanted to have it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,(but he she) and he change/ed it/z[EW:his] mind.,but he she and he changed it's mind +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: and then (her) his mother came.,and then her his mother came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,and they had two balloon/s.,and they had two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/502.slt,: and then : they got it.,and then they got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,(one) an elephant love/ed to play basketball.,one an elephant loved to play basketball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,and she was near a pool.,and she was near a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,she accidentally hit it with her nose.,she accidentally hit it with her nose +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,and it went bounce/ing into the water.,and it went bouncing into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,a giraffe came by (and swam into th) and swam into the water to get her ball.,a giraffe came by and swam into th and swam into the water to get her ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,the giraffe (got) got the ball and gave it to the (el) elephant.,the giraffe got got the ball and gave it to the el elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,the elephant said thank you.,the elephant said thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,(and they) and the giraffe really like/ed the elephant.,and they and the giraffe really liked the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,one day the giraffe and (the) the elephant (were watch/ing) (were um) (were look/ing) were laugh/ing at the pool because the pool was splash/ing all over the place.,one day the giraffe and the the elephant were watching were um were looking were laughing at the pool because the pool was splashing all over the place +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,the elephant (tr) was go/ing to run and jump (on) into the water.,the elephant tr was going to run and jump on into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,but she slip/ed.,but she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,and she fell on her knee.,and she fell on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,and she scrape/ed it.,and she scraped it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,and she start/ed cry/ing.,and she started crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,so the giraffe came over and : help/ed her (with her s scrape/ed) with her scrape/ed knee.,so the giraffe came over and helped her with her s scraped with her scraped knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,the lifeguard put a bandaid on it.,the lifeguard put a bandaid on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,and the giraffe held : the elephant/z hand.,and the giraffe held the elephant's hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,(eleph) (elephant) the elephant was okay.,eleph elephant the elephant was okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,(and and the giraffe gave her a) and the giraffe save/ed her a seat on a bench.,and and the giraffe gave her a and the giraffe saved her a seat on a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,(and the elephant) and the lifeguard got really mad at her because on a sign it said no run/ing.,and the elephant and the lifeguard got really mad at her because on a sign it said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,one day the giraffe got a new airplane.,one day the giraffe got a new airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,the giraffe start/ed break/ing and zoom/ed it all over the place and got the elephant really dizzy.,the giraffe started breaking and zoomed it all over the place and got the elephant really dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,(the elephant) the elephant got really jealous (and took hi) and took the giraffe/z airplane.,the elephant the elephant got really jealous and took hi and took the giraffe's airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,(the a) the (air) airplane slip/ed out of the elephant/z hand and drop/ed into the pool.,the a the air airplane slipped out of the elephant's hand and dropped into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,the giraffe got really mad at elephant and start/ed make/ing a mad grin at her.,the giraffe got really mad at elephant and started making a mad grin at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,the lifeguard (got really) (got :) was really : not too happy with elephant and the giraffe.,the lifeguard got really got was really not too happy with elephant and the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,the elephant ask/ed (the) the lifeguard to swim and go get the airplane.,the elephant asked the the lifeguard to swim and go get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,but the airplane was really really wet.,but the airplane was really really wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,the lifeguard try/ed to reach for it.,the lifeguard tried to reach for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,but he just could not reach.,but he just could not reach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,elephant (got really) got really sad.,elephant got really got really sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,and giraffe start/ed cry/ing.,and giraffe started crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,(the) the elephant/z mom came over with a net : because she was just fish/ing in : a lake.,the the elephant's mom came over with a net because she was just fishing in a lake +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,she pick/ed up the airplane : by the net and (gave it to the elephant) gave it to the giraffe.,she picked up the airplane by the net and gave it to the elephant gave it to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,the giraffe was really please/ed and happy : (for um) for that the elephant/z mom gave him the airplane.,the giraffe was really pleased and happy for um for that the elephant's mom gave him the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,and they play/ed with it together.,and they played with it together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,and they had fun.,and they had fun +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,bunny : (made) (was dig/ing in) was dig/ing in the sand and made a pail : of sand.,bunny made was digging in was digging in the sand and made a pail of sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,he dump/ed it on his little sister/z castle.,he dumped it on his little sister's castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,and his little sister got really mad.,and his little sister got really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,so she start/ed cry/ing.,so she started crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,one day : (the bunny/z little sister and he) the bunny and I were go/ing on a picnic.,one day the bunny's little sister and he the bunny and I were going on a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,(the) : (I) : (the bunny) (the bunny took a huge pic) the bunny took a huge snack : and was very full after that.,the I the bunny the bunny took a huge pic the bunny took a huge snack and was very full after that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,he had a big bump on his belly (and was ver) and had a really (s) bad stomachache.,he had a big bump on his belly and was ver and had a really s bad stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,he start/ed daze/ing off and went to sleep.,he started dazing off and went to sleep +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,then a doctor ran by.,then a doctor ran by +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,and his little sister : ask/ed the doctor if (sh) you could help my brother.,and his little sister asked the doctor if sh you could help my brother +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,and then the doctor said yeah.,and then the doctor said yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,so the doctor came and sat beside the bunny and help/ed him.,so the doctor came and sat beside the bunny and helped him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,(the) (the) the bunny was all right.,the the the bunny was all right +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,and the little sister was happy (that he did something right for) that she did something right for his brother.,and the little sister was happy that he did something right for that she did something right for his brother +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,one day : the bunny/z little sister : brang|bring[EW:brought] a bucket with a balloon on the side.,one day the bunny's little sister brang a bucket with a balloon on the side +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,(bunny got) bunny thought it was a really nice balloon : and start/ed grab/ing it.,bunny got bunny thought it was a really nice balloon and started grabbing it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,he untie/ed it.,he untied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,and it almost flew away.,and it almost flew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,but then after awhile : it flew (past their) (the) over their head/s.,but then after awhile it flew past their the over their heads +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,it was very gone.,it was very gone +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,(it) (it was) (it was) it was gone out of sight.,it it was it was it was gone out of sight +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,(and bu) and bunny/z little sister got really mad at the bunny.,and bu and bunny's little sister got really mad at the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,the bunny : ran over to (a balloon) a balloon man (and bought) (and bought the) (and bought s) and bought a balloon (um) that he got for his allowance from his mom and dad.,the bunny ran over to a balloon a balloon man and bought and bought the and bought s and bought a balloon um that he got for his allowance from his mom and dad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,the bunny pick/ed a yellow one because there was a yellow one (uh) beside : bunny/z little sister/z : (um) bucket.,the bunny picked a yellow one because there was a yellow one uh beside bunny's little sister's um bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,(and) : (and the balloon) (and the balloon) and the balloon was five cent/s.,and and the balloon and the balloon and the balloon was five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,but he only had three.,but he only had three +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,so then he could not get any balloon.,so then he could not get any balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,so he ran off : with no balloon until (he saw a doc) (um the) : (his) he saw his mom and ask/ed them if I could get a balloon for my little sister.,so he ran off with no balloon until he saw a doc um the his he saw his mom and asked them if I could get a balloon for my little sister +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,and she said : I might be able to get one.,and she said I might be able to get one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,(so she gave) so she gave the balloon man (uh) five cent/s.,so she gave so she gave the balloon man uh five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/970.slt,and they both share/ed a balloon.,and they both shared a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(fir) first there is an elephant that (um) see/3s a[-:] : giraffe.,fir first there is an elephant that um sees a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(and then) and the giraffe (ask) ask/3s (if the ele) if : the giraffe can play (with the elephant) (with his) with the elephant/z ball.,and then and the giraffe ask asks if the ele if the giraffe can play with the elephant with his with the elephant's ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(then they) then they accidentally throw it.,then they then they accidentally throw it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,and it land/3s (in the) in the[-:] swimming pool.,and it lands in the in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(then he dive) then the : (um) : giraffe dive/3s into the : swimming pool to grab the ball.,then he dive then the um giraffe dives into the swimming pool to grab the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(then) (but) (an) and then the giraffe give/3s the ball back (to) : to the elephant.,then but an and then the giraffe gives the ball back to to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(and then : he say) then he is say/ing you are welcome.,and then he say then he is saying you are welcome +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(after they) after : the : giraffe : got out of the pool : the giraffe dry/ed up.,after they after the giraffe got out of the pool the giraffe dried up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,then they : felt like go/ing for a swim.,then they felt like going for a swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,but they did not want to.,but they did not want to +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,then they want/ed to go off the diving board.,then they wanted to go off the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(so the eleph) so they both ran there.,so the eleph so they both ran there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,and the elephant start/ed to slip.,and the elephant started to slip +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,and the elephant slip/ed and scratch/ed : her knee.,and the elephant slipped and scratched her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,now the elephant is cry/ing.,now the elephant is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(and) and the lifeguard[-:] came.,and and the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,the lifeguard gave the elephant : a bandaid.,the lifeguard gave the elephant a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,then the (ele) lifeguard (s) : put the : elephant on the bench.,then the ele lifeguard s put the elephant on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,then the lifeguard was talk/ing : (to the) to the little elephant about no run/ing.,then the lifeguard was talking to the to the little elephant about no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,then the giraffe (bring) : go/3s home quickly and grab/3s an airplane and come/3s back to the swimming pool.,then the giraffe bring goes home quickly and grabs an airplane and comes back to the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(then they are play/ing) and : then the giraffe is play/ing with it.,then they are playing and then the giraffe is playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,and the elephant is watch/ing.,and the elephant is watching +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,then the elephant take/3s it (from) from the giraffe and start/3s (play) fly/ing it around.,then the elephant takes it from from the giraffe and starts play flying it around +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,then the elephant drop/3s it in the water.,then the elephant drops it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(then) now : the giraffe : is mad at the elephant : for drop/ing it in the water.,then now the giraffe is mad at the elephant for dropping it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,now the lifeguard come/3s : and ask/3s (what is wrong) what is wrong.,now the lifeguard comes and asks what is wrong what is wrong +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,then the lifeguard try/3s to reach it out of the water.,then the lifeguard tries to reach it out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,but the lifeguard could not get it.,but the lifeguard could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,and the (g) giraffe is cry/ing about his airplane.,and the g giraffe is crying about his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,then (the um[-:]) another elephant come/3s with a net : and (s) (try) is about to scoop it up.,then the um another elephant comes with a net and s try is about to scoop it up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(then the : el) then she scoop/3s it up.,then the el then she scoops it up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(and then : the giraffe) : (pl) (get/3s to play with his air) now the giraffe has his airplane back.,and then the giraffe pl gets to play with his air now the giraffe has his airplane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(now he) now he is hug/ing his airplane.,now he now he is hugging his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,first : (there wa : uh) there was a : rabbit and a dog play/ing in the sand make/ing a sandcastle.,first there wa uh there was a rabbit and a dog playing in the sand making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,then the rabbit fill/ed a bucket up with sand : (the) when the dog (was make) had a : really neat : castle.,then the rabbit filled a bucket up with sand the when the dog was make had a really neat castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(then the) : then the rabbit dump/3s all that sand[-:] on the : castle.,then the then the rabbit dumps all that sand on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,now the castle is ruin/ed.,now the castle is ruined +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(now this) : now the rabbit : is[-:] : confuse/ed.,now this now the rabbit is confused +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,and the dog is cry/ing.,and the dog is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,first there was a : dog and a rabbit go/ing for a picnic.,first there was a dog and a rabbit going for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(then there uh) and the rabbit has a whole bunch of food set down already.,then there uh and the rabbit has a whole bunch of food set down already +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,and the rabbit eat/3s it all up.,and the rabbit eats it all up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(now he is) now (he is) (s uh) he is sick.,now he is now he is s uh he is sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,then a doctor come/3s by.,then a doctor comes by +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,and the (dog so) dog go/3s run/ing toward/s the doctor to say that the rabbit is sick.,and the dog so dog goes running towards the doctor to say that the rabbit is sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(she) : now : the dog is try/ing to pull the doctor over to the rabbit.,she now the dog is trying to pull the doctor over to the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,now he is sick.,now he is sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,and the doctor give/3s him a pill.,and the doctor gives him a pill +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(then he feel) now they are walk/ing to the hospital for him to rest.,then he feel now they are walking to the hospital for him to rest +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,once there was a dog and a little rabbit.,once there was a dog and a little rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,and the dog had a balloon tie/ed to his (wheelbarrow : uh) [~_I_mean] wagon.,and the dog had a balloon tied to his wheelbarrow uh wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,and then : the rabbit untie/3s : the balloon off the : wagon.,and then the rabbit unties the balloon off the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,then : (the rabbit) : it slip/3s out of the rabbit/z hand.,then the rabbit it slips out of the rabbit's hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,and it fly/3s away.,and it flies away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(now the) : now the dog is mad at the rabbit.,now the now the dog is mad at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,and then they see (a balloon sale) (s) a balloon man sell/ing balloon/s.,and then they see a balloon sale s a balloon man selling balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,they ran over.,they ran over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(they ask if th) the rabbit ask/3s if he can have a balloon.,they ask if th the rabbit asks if he can have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(you need five c) the : balloon (sale) saler[EW:seller] say/3s you need five cent/s before you can have a balloon[-:].,you need five c the balloon sale saler says you need five cents before you can have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(then the dog come/3s and ask/3s) and then the dog come/3s.,then the dog comes and asks and then the dog comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,and they are : look/ing at : the balloon saler[EW:seller]: smile/ing.,and they are looking at the balloon saler smiling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,then they see the doctor again.,then they see the doctor again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(they come run/ing to) the rabbit go/3s run/ing to the doctor.,they come running to the rabbit goes running to the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(the doc) (the) (he) the rabbit ask/3s the (dos) doctor (if he) if the doctor can : (um) buy a balloon for the dog and : the rabbit.,the doc the he the rabbit asks the dos doctor if he if the doctor can um buy a balloon for the dog and the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(then) : then the : doctor give/3s the balloon saler[EW:seller]: some money.,then then the doctor gives the balloon saler some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,and then (they get) they both get (two balloon[EW:balloons]) one balloon.,and then they get they both get two balloon one balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/756.slt,(now they are hug/ing) now they are hang/ing onto their balloon/s so they do not fly away.,now they are hugging now they are hanging onto their balloons so they do not fly away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,(um) elephant and the giraffe want to go in the water[!].,um elephant and the giraffe want to go in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and then the balloon went in the water[!].,and then the balloon went in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and then the giraffe went to swim and get the balloon.,and then the giraffe went to swim and get the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and : then (the giraffe said : thank you to the uh) the (uh) : elephant said thank you to the giraffe.,and then the giraffe said thank you to the uh the uh elephant said thank you to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and he said I am not go/ing to get (the balloo) (wa um the) the ball in the water.,and he said I am not going to get the balloo wa um the the ball in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,(um) the giraffe : and the : elephant were : look/ing at the water.,um the giraffe and the elephant were looking at the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and she was : start/ing to run.,and she was starting to run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and then she fall|fall[EW:fell] down : and hurt herself.,and then she fall down and hurt herself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and (then) then the lifeguard comed|come[EW:came] and : look/ed at her knee.,and then then the lifeguard comed and looked at her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and then : she start|start[EW:started] to cry.,and then she start to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and then she put a bandage on.,and then she put a bandage on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and then (she said) the lifeguard said look at the sign.,and then she said the lifeguard said look at the sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,(there is) it say/3s no run/ing.,there is it says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,(um) the : giraffe has a[EW:an] airplane.,um the giraffe has a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and they want to play with the airplane.,and they want to play with the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and they play/ed with it.,and they played with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,(and she) and the : elephant grab/ed it from the giraffe.,and she and the elephant grabbed it from the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and then it (goed|go[EW:went] into) falled|fall[EW:fell] in the water.,and then it goed into falled in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and then the giraffe was very angry.,and then the giraffe was very angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and then a lifeguard camed|come[EW:came] : and : said could you help : me take this (uh) airplane out of the water?,and then a lifeguard camed and said could you help me take this uh airplane out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,(and) and the lifeguard could not reach it.,and and the lifeguard could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and (then) : then the : giraffe start/ed to cry.,and then then the giraffe started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and (then) : then the lady went to get the airplane.,and then then the lady went to get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and she : got it with a net.,and she got it with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and then she said thank you to the lady : the giraffe.,and then she said thank you to the lady the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and (then) then the : elephant smile/ed at him.,and then then the elephant smiled at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,A dog and a rabbit is[EW:are] talk/ing together.,A dog and a rabbit is talking together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,they are make/ing a sandcastle together.,they are making a sandcastle together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and they put sand on top of the sandcastle.,and they put sand on top of the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,(and) and it got smash/ed.,and and it got smashed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and then the : dog was try/ing to get it back together.,and then the dog was trying to get it back together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,(um shhh) he is meet/ing *a new friend [EU].,um shhh he is meeting new friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and they they are go/ing to have a picnic together.,and they they are going to have a picnic together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and then they got *a tummyache [EU].,and then they got tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,(one was um) the rabbit was sick.,one was um the rabbit was sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and the dog was not sick.,and the dog was not sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,(and : there is) and there was a lady.,and there is and there was a lady +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and the dog was try/ing to talk to the lady.,and the dog was trying to talk to the lady +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and she was pull/ing the lady to the rabbit.,and she was pulling the lady to the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and they were check/ing her.,and they were checking her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and then she : went with the doctor.,and then she went with the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,there is (the) the dog and the rabbit.,there is the the dog and the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and the dog got a balloon.,and the dog got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and the rabbit want|want[EW:wanted] a balloon.,and the rabbit want a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and (he was) (she) the rabbit was untie/ing it.,and he was she the rabbit was untying it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and then it flew in the air.,and then it flew in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and the dog was very angry.,and the dog was very angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,(and then they went) (and then I saw) and the rabbit and the dog saw a balloon man.,and then they went and then I saw and the rabbit and the dog saw a balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and the rabbit want|want[EW:wanted] a balloon.,and the rabbit want a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and he said do you have any money.,and he said do you have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and he said no.,and he said no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,so they could not get a balloon.,so they could not get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,(so they were) so they went to the lady and got a balloon.,so they were so they went to the lady and got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,(and she said could I) and the rabbit said could I have some money[?].,and she said could I and the rabbit said could I have some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and they gived|give[EW:gave] it to the balloon man.,and they gived it to the balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and then they got a balloon.,and then they got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/679.slt,and they were happy then.,and they were happy then +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,the giraffe and the elephant were have/ing fun *and were go/ing to [~__gonna] play tennis [EU].,the giraffe and the elephant were having fun were going to play tennis +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and their ball went into the swimming pool.,and their ball went into the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,they did not know they were at a swimming pool.,they did not know they were at a swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,they thought they were at a tennis court.,they thought they were at a tennis court +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,then the giraffe try/ed to go in.,then the giraffe tried to go in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,(and h) and he could not get it.,and h and he could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,(and the elephant got) and the giraffe got the ball.,and the elephant got and the giraffe got the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and the elephant : got it from the giraffe : and put it somewhere and help/ed the giraffe out of the pool.,and the elephant got it from the giraffe and put it somewhere and helped the giraffe out of the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,: and then the : elephant : was hug/ing her ball.,and then the elephant was hugging her ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and the giraffe was soak/ing wet.,and the giraffe was soaking wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,the giraffe and the elephant were go/ing to the swimming pool.,the giraffe and the elephant were going to the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,: elephant and the (gg) giraffe were (walk/ing to the pool) walk/ing on the part from the pool.,elephant and the gg giraffe were walking to the pool walking on the part from the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and the elephant was (ru) run/ing.,and the elephant was ru running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,she thought she was run/ing (on the pa) on the part to walk on.,she thought she was running on the pa on the part to walk on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and she was go/ing to[:_gonna] run into the pool while she was talk/ing.,and she was going to run into the pool while she was talking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and then the elephant slip/ed.,and then the elephant slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and the giraffe try/ed to catch her.,and the giraffe tried to catch her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and then she scrap/ed her knee.,and then she scraped her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,: and then the pool man came.,and then the pool man came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,: and he put a bandaid on her knee.,and he put a bandaid on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and then (she was) she felt better.,and then she was she felt better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and (then the) [<~_child_sighs]sigh[>~_child_sighs] then the elephant man at the pool said do not run.,and then the sigh then the elephant man at the pool said do not run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and he was mad.,and he was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and she was kind of[:_kindda] scare/ed.,and she was kind of scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,the giraffe went to the pool with his friend the elephant.,the giraffe went to the pool with his friend the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and he brought his plane with him.,and he brought his plane with him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,he try/ed to fly it.,he tried to fly it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and it fell into the pool.,and it fell into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and then : it did not actually fall into the pool.,and then it did not actually fall into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,they thought it would.,they thought it would +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and then (the giraffe caught it from the) [~_I_mean] the elephant caught it from the giraffe.,and then the giraffe caught it from the the elephant caught it from the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and then it fell into the pool.,and then it fell into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,: and then the giraffe was mad at the elephant.,and then the giraffe was mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and then the pool man came.,and then the pool man came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,then : (he) the pool man (wa) was scare/ed.,then he the pool man wa was scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,(and the elephant was tal) the girl elephant was talk/ing.,and the elephant was tal the girl elephant was talking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and the giraffe was just look/ing at his plane.,and the giraffe was just looking at his plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and the pool man try/ed to get it.,and the pool man tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,but he could not.,but he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,: and the giraffe was cry/ing.,and the giraffe was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,: (and then a) and then a lady at the pool had a net : and got it out for them.,and then a and then a lady at the pool had a net and got it out for them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,then she try/ed.,then she tried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,: and then she got it out.,and then she got it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and the giraffe was happy.,and the giraffe was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and the giraffe : was hug/ing it/z plane.,and the giraffe was hugging it's plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and the elephant was hug/ing [EU].,and the elephant was hugging +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and her hand/s were stuck together.,and her hands were stuck together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,the bunny and the dog (went for their) (went to the st) went to play in the sandbox.,the bunny and the dog went for their went to the st went to play in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and they build|build[EW:built] a sandcastle.,and they build a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,: and the bunny put more sand on it.,and the bunny put more sand on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and it fell down.,and it fell down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and there was only one part of the castle : there.,and there was only one part of the castle there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,: (then they built) and then the bunny try/ed to build it back.,then they built and then the bunny tried to build it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,the bunny and the dog went for a picnic.,the bunny and the dog went for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,the dog was go/ing somewhere else.,the dog was going somewhere else +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and the bunny was go/ing somewhere.,and the bunny was going somewhere +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,they both end up at the same place because they both were plan/ing to go somewhere.,they both end up at the same place because they both were planning to go somewhere +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,the dog thought he was go/ing somewhere else.,the dog thought he was going somewhere else +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,but they did not.,but they did not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,they went to the same place.,they went to the same place +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,oh I do not know this one [+_bch].,oh I do not know this one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,(um) : and the dog ate the sandwich.,um and the dog ate the sandwich +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and the dog had a drink.,and the dog had a drink +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and the bunny was full.,and the bunny was full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and then (th) there is a doctor.,and then th there is a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and the dog ask/ed the doctor to fix the bunny.,and the dog asked the doctor to fix the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and : the dog put all the doctor/z stuff on.,and the dog put all the doctor's stuff on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and then the doctor : fix/ed the bunny.,and then the doctor fixed the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and then they both went home.,and then they both went home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,the bunny and the dog (went) were go/ing to the park.,the bunny and the dog went were going to the park +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and they had a balloon on their wagon : the dog.,and they had a balloon on their wagon the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,the bunny want/ed to bite the string off the balloon.,the bunny wanted to bite the string off the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and the bunny try/ed to.,and the bunny tried to +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and then the balloon went up in the sky.,and then the balloon went up in the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and they lost it.,and they lost it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and they can only see the string.,and they can only see the string +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and the dog was mad.,and the dog was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,a bunny had more balloon/s.,a bunny had more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and they want/ed to get one.,and they wanted to get one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and the bunny (to) told the man what happen/ed.,and the bunny to told the man what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and it was five cent/s.,and it was five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,: and the bunny said I do not have that much.,and the bunny said I do not have that much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,: and then they did not get one.,and then they did not get one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,the doctor came.,the doctor came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,(the doctor gave) the doctor : had fun.,the doctor gave the doctor had fun +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,had what?,had what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,"[~_whispers] had fun, fun [+_bch].",had fun fun +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,the doctor gave the man : money (so the two) so the bunny and the dog could get some balloon/s.,the doctor gave the man money so the two so the bunny and the dog could get some balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and the doctor was happy.,and the doctor was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and the dog was happy.,and the dog was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/616.slt,and the bunny was happy.,and the bunny was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,the guy was walk/ing.,the guy was walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,and : him[EW:he] saw the ball.,and him saw the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,him[EW:he] fell down in the water.,him fell down in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,him[EW:he] (can not) can not get up.,him can not can not get up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,he got up.,he got up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,(um) him[EW:he] was not come/ing in.,um him was not coming in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,him[EW:he] did not come in.,him did not come in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,and it was (the k) the elephant jump/ed in [EU].,and it was the k the elephant jumped in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,and the elephant was scare/ed.,and the elephant was scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,and the elephant was walk/ing and close[EW:closing] hims[EW:his] eyes.,and the elephant was walking and close hims eyes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,and (um um) hims[EW:his] feet hurted|hurt[EW:hurt].,and um um hims feet hurted +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,(um) and (him) him[EW:he] want/ed to go home.,um and him him wanted to go home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,him[EW:he] was sitted|sit[EW:sitting] on a : chair.,him was sitted on a chair +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,him[EW:he] stay/ed there.,him stayed there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,(um) him[EW:he] was laugh/ing[-:] .,um him was laughing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,him[EW:he] had an airplane.,him had an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,and him[EW:he] was fly/ing it.,and him was flying it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,(and him) and him[EW:he] put it in the water.,and him and him put it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,and him[EW:he] was float/ing down.,and him was floating down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,and him[EW:he] was mad.,and him was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,and : he can not swim in there.,and he can not swim in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,him[EW:he] was try/ing to catch it.,him was trying to catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,(him wa) him[EW:he] was sad.,him wa him was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,him[EW:he] was try/ing to catch a fish.,him was trying to catch a fish +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,him[EW:he] was try/ing to get (the uh) (um the) (um the um) helicopter.,him was trying to get the uh um the um the um helicopter +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,(um) him[EW:he] (uh) got it.,um him uh got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,(him uh was uh) him[EW:he] was sleep/ing.,him uh was uh him was sleeping +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,end [+_bch].,end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,him[EW:he] was : make/ing a castle.,him was making a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,him[EW:he] was make/ing : a house.,him was making a house +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,him[EW:he] was go/ing to[:_gonna] make a : castle with a building.,him was going to make a castle with a building +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,him[EW:he] breaked|break[EW:broke] it.,him breaked it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,him[EW:he] make[EW:made] a different one.,him make a different one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,the guy was (walk/ing with snow) : make/ing a castle with (ca um) snow.,the guy was walking with snow making a castle with ca um snow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,sit/ing [EU].,sitting +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,make castle/s to put snow [EU].,make castles to put snow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,(um) carry/ing it walk/ing [EU].,um carrying it walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,and stay/ing [EU].,and staying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,(um) : fell down [EU].,um fell down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,walk/ing [EU].,walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,(the : uh) him[EW:he] was pull/ing the sled[~?_shried].,the uh him was pulling the sled +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,(and) and the balloon *was stay/ing [EU].,and and the balloon staying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,and him[EW:he] was hold/ing the balloon.,and him was holding the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,and the balloon flied|fly[EW:flew] away.,and the balloon flied away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,and it poppeded|pop[EW:popped].,and it poppeded +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,and the guy made more balloon/s.,and the guy made more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,him gived|give[EW:gave] it to the : bunny rabbit.,him gived it to the bunny rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,(and) : and : the guy is : mad.,and and the guy is mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,and he had no more balloon/s left.,and he had no more balloons left +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,him[EW:he] was go/ing back home.,him was going back home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,him[EW:he] was : get/ing more balloon/s.,him was getting more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,him[EW:he] got two balloon/s.,him got two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,him got xxx.,him got x +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,and they fly away.,and they fly away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/450.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(one[!] uh) : once upon a time there was : (t) one boy and one girl !,one uh once upon a time there was t one boy and one girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(w) one was name[EW:named] longneck.,w one was name longneck +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(and was) : and one was : name/ed longnose.,and was and one was named longnose +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(um : well) well longnose (w) drop/ed her balloon in the water.,um well well longnose w dropped her balloon in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(and then) : and then she was cry/ing help somebody help me !,and then and then she was crying help somebody help me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,my balloon fell in the water !,my balloon fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(so then[-:]) : (then) so then longneck (was) : was[-:] go/ing to get it.,so then then so then longneck was was going to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and (then[-:]) (when) : so then : longneck got it for : longnose.,and then when so then longneck got it for longnose +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and (then l) : (long) : then : longnose was very : happy.,and then l long then longnose was very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(and[-:] long) and[-:] longneck : was very brave.,and long and longneck was very brave +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,when they was[EW:were](uh) : in the pool : (they[-:]) they want/ed to jump in the water.,when they wasuh in the pool they they wanted to jump in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(so[-:]) so[-:] : longnose was run/ing : toward the water.,so so longnose was running toward the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and she slip/ed.,and she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and she scrape/ed her knee.,and she scraped her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and then she was : cry/ing.,and then she was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,then the lifeguard came.,then the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and then so he gave longnose a bandaid.,and then so he gave longnose a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and then (they wa) : (they) (he wa) she was not cry/ing any more.,and then they wa they he wa she was not crying any more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(and then) : and then the lifeguard said see the sign?,and then and then the lifeguard said see the sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,no run/ing.,no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and (he was very) : (he was very um) : she forgot about that.,and he was very he was very um she forgot about that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,once upon a time there was : (two) one boy and one girl.,once upon a time there was two one boy and one girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,they were friend/s !,they were friends +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(and[-:] uh) : (and[-:] : um) : (and l) : and Longneck : (had a) : had a[EW:an] airplane.,and uh and um and l and Longneck had a had a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,he was fly/ing and fly/ing !,he was flying and flying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and[-:] : Longnose : want/ed to try it.,and Longnose wanted to try it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,so he grab/ed[!] it out of her hand and was fly/ing it.,so he grabbed it out of her hand and was flying it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and he said no no no.,and he said no no no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and then : she accidentally drop/ed it in the water.,and then she accidentally dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,uhoh.,uhoh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and so (he wa) (he was) he got so[!] mad that he said : what is wrong with you ?,and so he wa he was he got so mad that he said what is wrong with you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,why do you do that ?,why do you do that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and she was so[!] sad.,and she was so sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(and then) : and then the lifeguard : came and said : do not be xx.,and then and then the lifeguard came and said do not be +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,what is wrong ?,what is wrong +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and so then (h um) : Longnose was walk/ing toward him : and told him all[-:] about what happen/ed.,and so then h um Longnose was walking toward him and told him all about what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and so he was try/ing to dive in the water to get it.,and so he was trying to dive in the water to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,but : it was sink/ing.,but it was sinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(and then) : and then Longneck was[-:] (so) : so sad that he was cry/ing.,and then and then Longneck was so so sad that he was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and then (longnose mom : wa) Longnose mom (was) : got a net : and was try/ing to get[!] it.,and then longnose mom wa Longnose mom was got a net and was trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(and) and she got[!] it !,and and she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(yay[-:] to the) yay to (longnose[-:]) : (long) [~__yeah] Longnose mom.,yay to the yay to longnose long Longnose mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and : Longnose mom[!] : gave it back[!] to : (long) : Longneck.,and Longnose mom gave it back to long Longneck +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and they were all[!] friend/s again.,and they were all friends again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(once a) : once upon a time there was a rabbit and a dog.,once a once upon a time there was a rabbit and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,the rabbit (was play/ing) : was[-:] make/ing : a sandcastle.,the rabbit was playing was making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and the dog was help/ing.,and the dog was helping +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,but then : (one) : (the) : the rabbit : pour/ed the sand : (in the[-:]) (on the k) on the dog/z castle.,but then one the the rabbit poured the sand in the on the k on the dog's castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and then[-:] the rabbit : got very[!] mad because : it broke.,and then the rabbit got very mad because it broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and so then : (the) the puppy : name/ed : cereal (um) : was fix/ing it all over again and was cry/ing.,and so then the the puppy named cereal um was fixing it all over again and was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and[-:] : (miss) miss : stewart (um was very) : (was very : um) : was very[-:] : (uh um) sad.,and miss miss stewart um was very was very um was very uh um sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,one[!] day there was : a little girl : name/ed : Cookie : and[-:] (a[-:]) : a little boy name/ed : Carrot.,one day there was a little girl named Cookie and a a little boy named Carrot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,they[-:] were have/ing a picnic.,they were having a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and[-:] Cookie : took out all[-:][!] her food.,and Cookie took out all her food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,but then : Rabbit was get/ing so[!] hungry that he ate the carrot/s.,but then Rabbit was getting so hungry that he ate the carrots +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,but then : (when) when[-:] Cookie was eat/ing her sandwich and drink/ing juice : (th) : Carrot : was : very full (and very[-:]).,but then when when Cookie was eating her sandwich and drinking juice th Carrot was very full and very +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and (um hi) his stomach really hurted|hurt[EW:hurt].,and um hi his stomach really hurted +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,but then : Cookie realize/ed that (um she could ge) she should get a doctor because she does not want : Carrot to : get very sick.,but then Cookie realized that um she could ge she should get a doctor because she does not want Carrot to get very sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,so (when she was) (when) when : she saw a doctor walk down she xx[?].,so when she was when when she saw a doctor walk down she +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and she yell/ed doctor doctor : please help my friend : Carrot.,and she yelled doctor doctor please help my friend Carrot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(he w) he is very sick.,he w he is very sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,so[-:] : (cookie grab/ed hi) Cookie grab/ed : his coat and ran back : to the picnic.,so cookie grabbed hi Cookie grabbed his coat and ran back to the picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(and h) and[-:] the doctor check/ed.,and h and the doctor checked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,he said uhoh you have been eat/ing too much food.,he said uhoh you have been eating too much food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(we) (we) this is important.,we we this is important +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,so then : (the) the[-:] doctor (m) (mister : um) : mister : Bookyabye[c] : (um : he took) (he) he[-:] (fix/ed up : um) : fix/ed up Carrot.,so then the the doctor m mister um mister Bookyabye um he took he he fixed up um fixed up Carrot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and : (uh) they were all friend/s.,and uh they were all friends +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and they walk/ed home.,and they walked home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,one[!] : interesting day (um : peanut bu) : Peanut : (w) had a balloon on her wagon[!].,one interesting day um peanut bu Peanut w had a balloon on her wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(and) : and[-:] (jelly) : Jelly saw it.,and and jelly Jelly saw it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,so she *was wander/ing[EW:wonder/ing] : if she could take it off!,so she wandering if she could take it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(but then) : but then : (p) Peanut : said no!,but then but then p Peanut said no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(so[-:]) : so (h) (h) he got very[!] mad that (h) (h).,so so h h he got very mad that h h +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,so then he took : off the balloon : on the wagon.,so then he took off the balloon on the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and[-:] the balloon (f) flew away.,and the balloon f flew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and they were all try/ing to get it.,and they were all trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and then : (when : jelly was try/ing to) when Jelly was try/ing to catch it : Peanut got very[!] mad[-:] at her.,and then when jelly was trying to when Jelly was trying to catch it Peanut got very mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,but then they saw a lot of balloon/s.,but then they saw a lot of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(so[-:] : pean) : so Peanut was try/ing to : buy some.,so pean so Peanut was trying to buy some +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and he said oh look.,and he said oh look +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,this is wonderful!,this is wonderful +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,I think I am go/ing to buy one : for : Peanut!,I think I am going to buy one for Peanut +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,but (it was only f) : the balloon/s : was[EW:were] only five cent/s.,but it was only f the balloons was only five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and so : (um) Jelly (was try/ing to) : was look/ing for some (m) : in her[-:] in her pocket.,and so um Jelly was trying to was looking for some m in her in her pocket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,but there was no money.,but there was no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(but then) : and then they were all stare/ing at the balloon/s.,but then and then they were all staring at the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(h) and they saw another[!] doctor (who came) : (who was) who was just stand/ing there[?] still.,h and they saw another doctor who came who was who was just standing there still +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and : Peanut was : walk/ing toward him.,and Peanut was walking toward him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,(he ask/ed if he) (if) : (he ask if he could) (he) (he ask if he) [~_sighs] : he ask[EW:asked] if : he could buy : them a balloon.,he asked if he if he ask if he could he he ask if he he ask if he could buy them a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,so he said okay.,so he said okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and then : so he gave them the two last balloon/s.,and then so he gave them the two last balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/932.slt,and they were all[!] friend/s again.,and they were all friends again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,One day : a little : elephant : and : giraffe went to see[!] each other.,One day a little elephant and giraffe went to see each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and they say good morning.,and they say good morning +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,they saw : a little : pool.,they saw a little pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and they (s) decide/ed to go in[!] it.,and they s decided to go in it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,but they[!] did not have their : bathing suit/s to get that little ball out.,but they did not have their bathing suits to get that little ball out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,so the giraffe[-:] : jump/ed[!] in.,so the giraffe jumped in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,splash!,splash +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,then : (he) he swam (i) in the pool.,then he he swam i in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and he almost got it.,and he almost got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and then he got it at last.,and then he got it at last +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,he gave it (to) to the elephant.,he gave it to to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and the elephant said thank you.,and the elephant said thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,thank you.,thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,this is so[-:] great.,this is so great +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and then : she walk/ed home : to : find her momma.,and then she walked home to find her momma +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,(um this : oh f) One day : the : giraffe and : the : elephant came back to the pool.,um this oh f One day the giraffe and the elephant came back to the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and then[!] they[!] went swim/ing.,and then they went swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,so they[!] : jump/ed in : and swam.,so they jumped in and swam +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,: (and) and the elephant said come on.,and and the elephant said come on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,come on.,come on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,let us go over there so we can jump : higher[-:].,let us go over there so we can jump higher +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,so they ran.,so they ran +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and they ran[!] to it.,and they ran to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,(and it) (it) and the little : elephant : said waa!,and it it and the little elephant said waa +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,it is too slippery!,it is too slippery +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,then she fell right in.,then she fell right in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and then she hurt[!] : her knee.,and then she hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,she was cry/ing so loud (that) that she (could not) could not even stop cry/ing.,she was crying so loud that that she could not could not even stop crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and the doctor came and look/ed at her.,and the doctor came and looked at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,(she was so) (so : um) [~_wait_I_have_to_start_that__again] (she) : she was hurt badly.,she was so so um she she was hurt badly +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,(and sh) : and the doctor : put her on the bench.,and sh and the doctor put her on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and[!] then (she) she was sit/ing on the bench.,and then she she was sitting on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and then[!] she got a bandaid on.,and then she got a bandaid on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,(the oof) : and the doctor was so angry with her.,the oof and the doctor was so angry with her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and then : he point/ed his finger : somewhere (that) (that she) : at the sign.,and then he pointed his finger somewhere that that she at the sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,: and the sign said no[!] run/ing.,and the sign said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and that is the end of the story [+_bch].,and that is the end of the story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,[<~_makes_sound_'ffff']And then[!][>~_makes_sound_'ffff'] (what) what am I think/ing [+_bch] ?,And then what what am I thinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,one day (the) the little elephant and giraffe came back[!] to the swimming pool.,one day the the little elephant and giraffe came back to the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and there was a little cookie on the floor.,and there was a little cookie on the floor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and there was : a little plane : that was sit/ing on the floor.,and there was a little plane that was sitting on the floor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,(he[!]) (the little) : the little airplane : made smoke.,he the little the little airplane made smoke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,(and) : and (the : ze) (giraffe said) the giraffe did [~_makes_'raspberry'_sound].,and and the ze giraffe said the giraffe did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and then : the little : elephant : grab/ed it from him.,and then the little elephant grabbed it from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and then she[!] start/ed to fly it : because she thought it was so[-:] funny.,and then she started to fly it because she thought it was so funny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and then[!] : the little airplane went in the swimming pool.,and then the little airplane went in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,"[~_says_under_breath] ah, my xx is come/ing off [+_bch].",ah my is coming off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and then the giraffe got so angry at the little : elephant.,and then the giraffe got so angry at the little elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and the doctor[!] came back again.,and the doctor came back again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,(a) (and the doc) and the doctor elephant : did not know what she did.,a and the doc and the doctor elephant did not know what she did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and she said : I did not (throw) throw that in.,and she said I did not throw throw that in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,so he try/ed to reach it.,so he tried to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,but he could not reach.,but he could not reach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,then nobody could reach it.,then nobody could reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,maybe I could reach that thing.,maybe I could reach that thing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and then : a pretty : woman came in the swimming pool.,and then a pretty woman came in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,(and she) and she[!] could catch everything that was in the swimming pool.,and she and she could catch everything that was in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,(a) and then she[!] came.,a and then she came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and : she said I could : catch (that) that airplane for you.,and she said I could catch that that airplane for you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,she was go/ing to [~_gonna] give it : to the : little : elephant.,she was going to give it to the little elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,she try/ed to.,she tried to +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,but it was not go/ing in.,but it was not going in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,I am go/ing baseball/ing tomorrow I think so [+_bch].,I am going baseballing tomorrow I think so +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and the : lady : gave it to the giraffe.,and the lady gave it to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and they[!] : were friend/s.,and they were friends +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,One day : two little bunny/s went to the beach and builded|build[EW:built] a (sand) sandcastle.,One day two little bunnies went to the beach and builded a sand sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and they were : play/ing with the sandcastle a lot.,and they were playing with the sandcastle a lot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,(and) and : then they were go/ing to go (in the beach) (in the) in the water [~_I_mean].,and and then they were going to go in the beach in the in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,sand boom[!].,sand boom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,they : pour/ed the sand : on top : of[!] the : sandcastle.,they poured the sand on top of the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,boomerang[!].,boomerang +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,the castle : blew into bit/s.,the castle blew into bits +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and then they could not make it : again.,and then they could not make it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,One day (the) the two little : bunny/s went for a walk (to) to find some carrot/s (f) with their little basket/s.,One day the the two little bunnies went for a walk to to find some carrots f with their little baskets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and then they had a little bit of picnic.,and then they had a little bit of picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,then (they) they were so[!] hungry that they could not even wait.,then they they were so hungry that they could not even wait +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,then[-:] the hungriest[!] one : ate : all : of the : food.,then the hungriest one ate all of the food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,then he got dizzy[!].,then he got dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and the other bunny was drink/ing and eat/ing.,and the other bunny was drinking and eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,then (ma) : mama came.,then ma mama came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,(and) (and the) and the rabbit : [~_sniffs] ran to mama as fast as he can : and pull/ed[!] : her shirt : to see what have|have[EW:had] (ha) happen/ed.,and and the and the rabbit ran to mama as fast as he can and pulled her shirt to see what have ha happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and then mama said : we have to take you to the doctor : and get your stomach : feel better.,and then mama said we have to take you to the doctor and get your stomach feel better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and then[!] little rabbit came with mama.,and then little rabbit came with mama +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,one day : a little rabbit was : going to take (a) a little cart.,one day a little rabbit was going to take a a little cart +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and there was a balloon on it.,and there was a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and (the li) the other rabbit was (p) pull/ing it.,and the li the other rabbit was p pulling it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and the other rabbit was : walk/ing by behind him.,and the other rabbit was walking by behind him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and then[!] : the bunny stop/ed : and said wow look at this : big forest.,and then the bunny stopped and said wow look at this big forest +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,: and then : the balloon almost goed|go[EW:went] off.,and then the balloon almost goed off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,(and he is) and the rabbit try/ed to fix it.,and he is and the rabbit tried to fix it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,but it was not good.,but it was not good +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,[~_sound_effects_'wam_wa'] there it go/3s : said the bunny/s.,there it goes said the bunnies +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and they could not reach it as long.,and they could not reach it as long +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,then it start/ed to pop.,then it started to pop +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,then[!] the balloon[-:] man : start/ed to come.,then the balloon man started to come +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,(and he is) and he gave one of the bunny/s some of those balloon/s.,and he is and he gave one of the bunnies some of those balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and then[!] : the bunny said can I have (one of the) one of those balloon/s?,and then the bunny said can I have one of the one of those balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,(and the) and the man said sure.,and the and the man said sure +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and then he was so[!] happy.,and then he was so happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,then he had to give him five[-:] buck/s.,then he had to give him five bucks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,then (he) they had no[!] : money.,then he they had no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,so they were so sad.,so they were so sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and (the bunny got to stay) (that[!] bunny got to st) the little bunny got to stay with the balloon man.,and the bunny got to stay that bunny got to st the little bunny got to stay with the balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,and then[!] mama gave him : the right buck : for the two bunny/s.,and then mama gave him the right buck for the two bunnies +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,then they got : one each (for the b) for the little : (b) boy and girl.,then they got one each for the b for the little b boy and girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/539.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,there was a giraffe and a[EW:an] elephant (that) that was[EW:were] play/ing ball : near the pond.,there was a giraffe and a elephant that that was playing ball near the pond +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,but the ball fell in.,but the ball fell in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,the giraffe : splash/ed in.,the giraffe splashed in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,but (it) he could not swim.,but it he could not swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,but : he got the ball.,but he got the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,(he help/ed : the) he help/ed : out.,he helped the he helped out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,(there w :) there : was : a giraffe and a[EW:an] elephant.,there w there was a giraffe and a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,(there was) she (went into :) want/ed to go on the diving board.,there was she went into wanted to go on the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,but she was so run/ing too fast that the giraffe could not catch up [EU].,but she was so running too fast that the giraffe could not catch up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,but she fell and hurt herself.,but she fell and hurt herself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,and she cry/ed.,and she cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,but another elephant came : and put her on the bench : and : was mad at her.,but another elephant came and put her on the bench and was mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,once upon a time : there was : a giraffe and a[EW:an] elephant.,once upon a time there was a giraffe and a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,they were play/ing with a[EW:an] airplane.,they were playing with a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,but : the girl stole it away.,but the girl stole it away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,but it : drownded|drown[EW:drowned]: into the water.,but it drownded into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,the giraffe was mad at her.,the giraffe was mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,the elephant : came.,the elephant came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,(she w) (she s) she said : that it was : drownding[EW:drowning].,she w she s she said that it was drownding +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,but : the elephant try/ed to (got) get it.,but the elephant tried to got get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,but (she) he could not.,but she he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,he did not know what to do.,he did not know what to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,(so he had to) a girl came : and had a net.,so he had to a girl came and had a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,she try/ed to get it out.,she tried to get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,but it did not work.,but it did not work +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,then it did.,then it did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,so : he love/ed that girl.,so he loved that girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,there was a bunny and a dog.,there was a bunny and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,he help/ed make a sandcastle.,he helped make a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,but the bunny pour/ed sand all over it : and broke it.,but the bunny poured sand all over it and broke it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,he had to fix it fast.,he had to fix it fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,once upon a time : there was a dog and a bunny (that were have/ing).,once upon a time there was a dog and a bunny that were having +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,both of them were have/ing a picnic.,both of them were having a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,but they were so hungry.,but they were so hungry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,(they) (that) the bunny (all) ate all the stuff : but was too full to eat any more.,they that the bunny all ate all the stuff but was too full to eat any more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,but a doctor came : and pull/ed and pull/ed on her : and went to see what was happen/ing.,but a doctor came and pulled and pulled on her and went to see what was happening +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,"oh, you miss/ed one.",oh you missed one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,(a bunny) the bunny was feel/ing better.,a bunny the bunny was feeling better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,once upon a time there was a dog and a bunny.,once upon a time there was a dog and a bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,(that) the dog had a wagon : that had one white balloon on it.,that the dog had a wagon that had one white balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,and the bunny want/ed to : take it from : the wagon.,and the bunny wanted to take it from the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,but the bunny took it off : and let go.,but the bunny took it off and let go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,it was go/ing up and up and up.,it was going up and up and up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,there was more over there.,there was more over there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,can I have a white one : he said?,can I have a white one he said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,five dollar/s.,five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,oh.,oh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,then you can not have it.,then you can not have it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,he runned|run[EW:ran] off to the doctor.,he runned off to the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,he did not have any money.,he did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,so he gave her (mo) money.,so he gave her mo money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,so he got (one) one each a balloon.,so he got one one each a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/538.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,the guy think/3s he can go in : and juggle them.,the guy thinks he can go in and juggle them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,but he end/3s up throw/ing them in the water.,but he ends up throwing them in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,he go/3s in there : and *is try/ing to get it [EU].,he goes in there and trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,the elephant is sad.,the elephant is sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and he might sink.,and he might sink +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,then : he get/3s it for the elephant.,then he gets it for the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and she is happy[!] : for him.,and she is happy for him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,she is : go/ing to[:_gonna] go try and jump in the water.,she is going to go try and jump in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,she run/3s to there : to the high dive.,she runs to there to the high dive +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,she run/3s really fast.,she runs really fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and she fall/3s [-:] and hurt/3s her knee.,and she falls and hurts her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,then she cry/3s.,then she cries +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and a man come/3s : to : rescue her.,and a man comes to rescue her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and then : they put a bandaid on her.,and then they put a bandaid on her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,(then they) then they sit her on a bench for awhile.,then they then they sit her on a bench for awhile +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and then : they are happy.,and then they are happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,she think/3s she is happy.,she thinks she is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,but she is not happy.,but she is not happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,(he fly/3s) he is go/ing to [~_gonna] fly the plane.,he flies he is going to fly the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,(he try/3s to s) he is go/ing to throw it.,he tries to s he is going to throw it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,then : she take/3s it from him : throw/3s it in the water [EU].,then she takes it from him throws it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and they can not get it.,and they can not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,he is mad at her.,he is mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,so they try and get it.,so they try and get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,but they can not[-:].,but they can not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and they try and reach[!] it.,and they try and reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,but they can not reach it.,but they can not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and he start/3s cry/ing.,and he starts crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and then they grab a net[-:].,and then they grab a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and they get it.,and they get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and (then x) : then he is happy.,and then x then he is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,so he hug/3s : the toy.,so he hugs the toy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,the : rabbit build/3s a castle.,the rabbit builds a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,then he[!] come/3s along with some sand[-:] : pour/3s the sand on the castle : and break/3s the castle.,then he comes along with some sand pours the sand on the castle and breaks the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and she is sad[-:].,and she is sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,the rabbit come/3s along for a picnic.,the rabbit comes along for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,he eat/3s : her food (and all his[-:]) : and all her/z.,he eats her food and all his and all her's +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,(then he get/3s) : then he eat/3s it all.,then he gets then he eats it all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,but then he get/3s full.,but then he gets full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and his tummy hurt/3s : like mine was once.,and his tummy hurts like mine was once +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and (then) : then he get/3s dizzied[EW:dizzy].,and then then he gets dizzied +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and then a doctor come/3s.,and then a doctor comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and : the dog ask/3s [~_pronounced_'askis'] for the doctor/z help.,and the dog asks for the doctor's help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and the doctor come/3s : and help/3s : him.,and the doctor comes and helps him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and he is back to normal[?].,and he is back to normal +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,a rabbit come/3s along.,a rabbit comes along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and he see/3s the balloon[-:].,and he sees the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and he want/3s the balloon.,and he wants the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,but it is the dog/z : balloon.,but it is the dog's balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and then he try/3s and reach/3s it.,and then he tries and reaches it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and the dog is still there watch/ing him.,and the dog is still there watching him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and the dog come/3s along (and try/3s to).,and the dog comes along and tries to +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,(then the rabbit still) : then the rabbit untie/3s[-:] it.,then the rabbit still then the rabbit unties it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and then it fly/3s away[-:].,and then it flies away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and then they see it go up.,and then they see it go up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,(the rabbit is mad at the rabbit) [~_no] the dog is : mad at the rabbit.,the rabbit is mad at the rabbit the dog is mad at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,they see a : rabbit with balloon/s : a whole bunch of them.,they see a rabbit with balloons a whole bunch of them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and they ask him for a balloon[-:].,and they ask him for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,but he tell/3s them one for seven cent/s.,but he tells them one for seven cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,(so : he ask/3s) so he : check/3s his pocket/s for money.,so he asks so he checks his pockets for money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,but he do/3s not have any.,but he does not have any +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,so they are sadder[!] still [EU].,so they are sadder still +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and then the doctor is there[~!_laughing] : the big doctor.,and then the doctor is there the big doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,(and then they see) then they tell him that (their rabbit) (there is) balloon/s : were there.,and then they see then they tell him that their rabbit there is balloons were there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and they get them.,and they get them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,and they are happy.,and they are happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/671.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,a giraffe and an elephant were play/ing ball by a pool.,a giraffe and an elephant were playing ball by a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,the elephant accidentally drop/ed the ball in the pool.,the elephant accidentally dropped the ball in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and the giraffe went in and got it : and gave it back to the elephant.,and the giraffe went in and got it and gave it back to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and the elephant was really really happy.,and the elephant was really really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,the elephant and the giraffe were get/ing ready to swim in the pool.,the elephant and the giraffe were getting ready to swim in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and the : elephant (starting) start/ed run/ing.,and the elephant starting started running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and she slip/ed.,and she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and she hurt her knee.,and she hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and then the giraffe went and got the lifeguard.,and then the giraffe went and got the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and the lifeguard came run/ing to help.,and the lifeguard came running to help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and the lifeguard put a bandage over her cut : and help/ed her to a seat.,and the lifeguard put a bandage over her cut and helped her to a seat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and the lifeguard said look at the sign.,and the lifeguard said look at the sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and : she look/ed at the sign.,and she looked at the sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and it said no run/ing.,and it said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,the elephant and the giraffe were play/ing together with an airplane.,the elephant and the giraffe were playing together with an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and the elephant took it from the giraffe.,and the elephant took it from the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and the giraffe got really mad : and drop/ed it in the water.,and the giraffe got really mad and dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and then : the : elephant : said sorry.,and then the elephant said sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and then the giraffe start/ed yell/ing at the elephant.,and then the giraffe started yelling at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and then the lifeguard came and try/ed to get it out of the water.,and then the lifeguard came and tried to get it out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,but he could not get it.,but he could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and he almost fell in the water when he was try/ing to get it.,and he almost fell in the water when he was trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and the giraffe start/ed to cry.,and the giraffe started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and : the[-:] elephant had (a fff) a : sad face on her.,and the elephant had a fff a sad face on her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and (another one came with) another lifeguard came with a net : and try/ed to get it out of the water.,and another one came with another lifeguard came with a net and tried to get it out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and[-:] she got it.,and she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and the giraffe was really happy.,and the giraffe was really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and he was hug/ing his airplane.,and he was hugging his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and : the elephant was hug/ing herself.,and the elephant was hugging herself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,a bunny : and his friend were make/ing castle/s in a sand pit.,a bunny and his friend were making castles in a sand pit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and the : bunny took the[-:] : little pail from (the) : his best friend and start/ed make/ing a sandcastle.,and the bunny took the little pail from the his best friend and started making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and it got really really big.,and it got really really big +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and then : he pour/ed sand over the sandcastle.,and then he poured sand over the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and it got wreck/ed.,and it got wrecked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and then his friend start/ed cry/ing.,and then his friend started crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and : he had his hand/s behind his back.,and he had his hands behind his back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,the rabbit and his best friend went out for a picnic in the afternoon.,the rabbit and his best friend went out for a picnic in the afternoon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,the[-:] rabbit brang|bring[EW:brought] pickle/s chip/s : cake and sandwich/s.,the rabbit brang pickles chips cake and sandwiches +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and he ate it all.,and he ate it all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and he start/ed to (gr) turn green.,and he started to gr turn green +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and he did not feel well.,and he did not feel well +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,so then (his friend got) his friend got worry/ed : and ran to the nurse.,so then his friend got his friend got worried and ran to the nurse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and the nurse came run/ing.,and the nurse came running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and : (he seen) she seen|see[EW:saw] that he was really really green.,and he seen she seen that he was really really green +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,(and he walk/ed him home) and : she walk/ed him home.,and he walked him home and she walked him home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,there was big race.,there was big race +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and (the :) the rabbit/z best friend was in it.,and the the rabbit's best friend was in it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and he had a balloon on his cart so he would go fast.,and he had a balloon on his cart so he would go fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and the rabbit took it off.,and the rabbit took it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and it went fly/ing.,and it went flying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and they both try/ed to grab it.,and they both tried to grab it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and then his best friend got really mad at him.,and then his best friend got really mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and then he seen|see[EW:saw] : a big rabbit with a bunch of balloon/s.,and then he seen a big rabbit with a bunch of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and they were five cent/s each.,and they were five cents each +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and : the rabbit ask/ed for one.,and the rabbit asked for one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and he seen|see[EW:saw] [-:] that it was five cent/s.,and he seen that it was five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,he ran up : to the nurse.,he ran up to the nurse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and the nurse bought them one.,and the nurse bought them one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and the nurse was really happy.,and the nurse was really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,[~_sighs] and : the dog was happy too because he got a balloon back.,and the dog was happy too because he got a balloon back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and (the rab) (the girl) the nurse paid the guy for the two balloon/s.,and the rab the girl the nurse paid the guy for the two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and then they were hug/ing their balloon/s.,and then they were hugging their balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/914.slt,and the nurse was really happy.,and the nurse was really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,once upon time there was a : giraffe : with two leg/s and[-:] an elephant.,once upon time there was a giraffe with two legs and an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and[-:] : they were both stand/ing on two leg/s which they were suppose/ed to be stand/ing on four.,and they were both standing on two legs which they were supposed to be standing on four +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,the elephant was use/ing : one to balance and : the other one to bounce the ball.,the elephant was using one to balance and the other one to bounce the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,the giraffe was watch/ing[!] : just as tall as he could like this [~__stands_on_one_leg_with_arms_above_head].,the giraffe was watching just as tall as he could like this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and then[!] the ball splash/ed into the water.,and then the ball splashed into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,the : giraffe with two leg/s swam[!] out to get the ball : and then gave (it) the ball to the elephant : with two leg/s.,the giraffe with two legs swam out to get the ball and then gave it the ball to the elephant with two legs +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and the elephant hug/ed it : so[-:] much.,and the elephant hugged it so much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and then she start/ed bounce/ing it again.,and then she started bouncing it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,once upon a time there was : an elephant and a giraffe.,once upon a time there was an elephant and a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,but : there was another elephant too somewhere.,but there was another elephant too somewhere +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and they saw a diving board in a swimming pool!,and they saw a diving board in a swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,they thought how fun it would be to go swim/ing.,they thought how fun it would be to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,but then : the elephant ran so[!] fast in : that she went to the bottom and scrape/ed her knee and swam back up.,but then the elephant ran so fast in that she went to the bottom and scraped her knee and swam back up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,she was run/ing : around : because she was hurt [~_okay].,she was running around because she was hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and she had scrape/ed her knee.,and she had scraped her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,(two elephant/s : went to help) : [~_I_mean] an elephant and a giraffe went to help.,two elephants went to help an elephant and a giraffe went to help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,(and : one of) and the other elephant gave : her a bandage.,and one of and the other elephant gave her a bandage +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and the other elephant : (was act) was not just a[EW:an] ordinary elephant.,and the other elephant was act was not just a ordinary elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,know what it was?,know what it was +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,*a lifeguard [EU].,lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and then they : try/ed walk/ing.,and then they tried walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and : she was sit/ing on the bench.,and she was sitting on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and : the lifeguard said no run/ing!,and the lifeguard said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and he was point/ing to the sign : that said no run/ing.,and he was pointing to the sign that said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,once upon a time there was a giraffe and an elephant.,once upon a time there was a giraffe and an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and there was the lifeguard : on the side.,and there was the lifeguard on the side +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,the : giraffe was play/ing with his airplane.,the giraffe was playing with his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,the : elephant : was : watch/ing in surprise.,the elephant was watching in surprise +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and she ask/ed could I try?,and she asked could I try +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and he said no!,and he said no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,but the elephant snatch/ed[-:] it.,but the elephant snatched it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and then she threw[!] it.,and then she threw it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and guess where the airplane land/ed?,and guess where the airplane landed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,in the water.,in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,they call/ed the lifeguard.,they called the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and : the giraffe was mad[-:].,and the giraffe was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,the lifeguard came and saw the airplane.,the lifeguard came and saw the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and : the elephant said I accidentally threw : the giraffe/z airplane inside the water.,and the elephant said I accidentally threw the giraffe's airplane inside the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,the lifeguard try/ed to get it with his hand/s.,the lifeguard tried to get it with his hands +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,but nope : he need/ed a net.,but nope he needed a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,(so he went) so he went to get a net.,so he went so he went to get a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,(and then) : (and then he came back with a n) and there was a woman[!] who came with a net.,and then and then he came back with a n and there was a woman who came with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and : then[!] she[!] got the airplane.,and then she got the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,the : lady try/ed to get it out.,the lady tried to get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,but it was too hard.,but it was too hard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,but then she finally got it out.,but then she finally got it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and : the giraffe : like/ed it.,and the giraffe liked it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and : they live/ed happily ever after.,and they lived happily ever after +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and : the : giraffe : like/ed : his airplane the best.,and the giraffe liked his airplane the best +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and he would never let anyone try it again.,and he would never let anyone try it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,once upon a time : there was a dog and a bunny.,once upon a time there was a dog and a bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and they were build/ing a sandcastle.,and they were building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,then (the) : the[-:] dog was pat/ing it.,then the the dog was patting it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and the : rabbit was build/ing it.,and the rabbit was building it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,then[-:] the rabbit pour/ed[-:] (re) lot/s of sand onto the sandcastle.,then the rabbit poured re lots of sand onto the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and he wreck/ed[!] the sandcastle by do/ing that.,and he wrecked the sandcastle by doing that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and he (s) said oh no!,and he s said oh no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,the dog was cry/ing.,the dog was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and : the rabbit was like [~_makes_facial_expression] : with his ears down.,and the rabbit was like with his ears down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,once upon a time there was a dog and a rabbit once again.,once upon a time there was a dog and a rabbit once again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,(and then the rab) and they are both go/ing : to hunt for easter egg/s : outside!,and then the rab and they are both going to hunt for easter eggs outside +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,they found a picnic.,they found a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and they wonder/ed who[EW:whose] it was.,and they wondered who it was +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,they never knew.,they never knew +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,(su) so they thought it was for them.,su so they thought it was for them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and they ate so so much : that the rabbit/z[-:] tummy was a big ball like a cannon ball.,and they ate so so much that the rabbit's tummy was a big ball like a cannon ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and the dog was still eat/ing.,and the dog was still eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,the rabbit felt dizzy.,the rabbit felt dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and he : did not : look : like he was feel/ing well.,and he did not look like he was feeling well +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,the : dog look/ed[!] at him.,the dog looked at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and[-:] the : rabbit look/ed at him back.,and the rabbit looked at him back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,the dog was : run/ing to his mom.,the dog was running to his mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and : the mom heard him.,and the mom heard him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,the mom went to see.,the mom went to see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and then[!] : he pull/ed her so : much.,and then he pulled her so much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and then : she was actually a doctor!,and then she was actually a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and she help/ed : the rabbit.,and she helped the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,[~_sighs] the rabbit was feel/ing much better.,the rabbit was feeling much better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and they live/ed happily ever after.,and they lived happily ever after +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,once upon a time there was a little doggy and a rabbit.,once upon a time there was a little doggy and a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and[-:] the : dog was push/ing : a wagon with a balloon[!] in it.,and the dog was pushing a wagon with a balloon in it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,the rabbit ran by.,the rabbit ran by +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and : he saw the balloon.,and he saw the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,he said where did you get that?,he said where did you get that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,he said : I got it from this man!,he said I got it from this man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,let us go and get one for me he said.,let us go and get one for me he said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,okay.,okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,but you do not know where it is.,but you do not know where it is +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,well can not you show me (he) the rabbit ask/ed [EU]?,well can not you show me he the rabbit asked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,(so) : but the rabbit : just stole his[!].,so but the rabbit just stole his +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,so the : dog had to go back to the man and (got) get his[!].,so the dog had to go back to the man and got get his +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,but : now they need to get two : because : guess what?,but now they need to get two because guess what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,the other[!] balloon flew in!,the other balloon flew in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,the : puppy was mad[-:].,the puppy was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and the rabbit : was : discourage/ed.,and the rabbit was discouraged +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,then they went : to the bunny rabbit so they could get : new balloon/s[!].,then they went to the bunny rabbit so they could get new balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,then the rabbit saw : which one he[!] want/ed.,then the rabbit saw which one he wanted +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,(and[-:] he did not) but he did not have any money.,and he did not but he did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,(and : the balloon even said) and it said balloon/s five cent/s.,and the balloon even said and it said balloons five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and (the puppy/z) : the puppy and the rabbit were sad[-:] .,and the puppy's the puppy and the rabbit were sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,but then : the rabbit went to a doctor.,but then the rabbit went to a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and she ask/ed : the doctor if : she could give them some money.,and she asked the doctor if she could give them some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and he said to the : doctor : that mean old guy will not let us have a balloon!,and he said to the doctor that mean old guy will not let us have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,(they are all eight cent/s) [~_I_mean] they are five cent/s.,they are all eight cents they are five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,so the doctor gave : the man : five cent/s each for the puppy and the[-:] : rabbit.,so the doctor gave the man five cents each for the puppy and the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,and they both had a balloon of their own.,and they both had a balloon of their own +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/664.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,a giraffe is talk/ing to an elephant who is bounce/ing a ball.,a giraffe is talking to an elephant who is bouncing a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,the ball fly/3s into the pool.,the ball flies into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,(so) (so the) and the giraffe and the elephant are look/ing at it.,so so the and the giraffe and the elephant are looking at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,the giraffe jump/3s into the water and try/3s to save the ball.,the giraffe jumps into the water and tries to save the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,and the elephant is cover/ing her eye/s.,and the elephant is covering her eyes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,(the elephant grab/3s the ball) the giraffe give/3s the elephant the ball.,the elephant grabs the ball the giraffe gives the elephant the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,and he is smile/ing.,and he is smiling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,(and the giraffe) and the (um) : elephant is now happy.,and the giraffe and the um elephant is now happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,the elephant like/3s the giraffe.,the elephant likes the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,The giraffe and the elephant again.,The giraffe and the elephant again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,(are) the giraffe is hold/ing a cloth.,are the giraffe is holding a cloth +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,and they are stare/ing at the pool.,and they are staring at the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,(the) the elephant look/3s like if she is going to jump in.,the the elephant looks like if she is going to jump in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,she slip/3s : and hurt/3s her knee.,she slips and hurts her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,the giraffe come/3s.,the giraffe comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,and the lifeguard is run/ing also to : the elephant.,and the lifeguard is running also to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,(they s) (they) the lifeguard put/3s a bandaid on the elephant/z knee : and sit/3s her down on the bench.,they s they the lifeguard puts a bandaid on the elephant's knee and sits her down on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,he point/3s at the sign.,he points at the sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,(And the) : and then the elephant (feel/3s all) [~_how_do__you_say_it] : feel/3s ashame/ed : you could say.,And the and then the elephant feels all feels ashameed you could say +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,that is it [+_bch].,that is it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,The giraffe and the elephant are play/ing with a model : (um) airplane.,The giraffe and the elephant are playing with a model um airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,the giraffe hold/3s it up (and) and make/3s it spin around.,the giraffe holds it up and and makes it spin around +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,the elephant take/3s it away from his hand.,the elephant takes it away from his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,and the giraffe is like what !,and the giraffe is like what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,the elephant drop/3s it into the pool.,the elephant drops it into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,the giraffe is very angry with the elephant.,the giraffe is very angry with the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,now the lifeguard is just stare/ing at the elephant and the giraffe.,now the lifeguard is just staring at the elephant and the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,then the elephant talk/3s to the lifeguard about what happen/ed.,then the elephant talks to the lifeguard about what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,the lifeguard try/3s to save it.,the lifeguard tries to save it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,but it is too far.,but it is too far +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,(so the ele) so the giraffe start/3s cry/ing.,so the ele so the giraffe starts crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,and the elephant[-:] is ashame/ed of herself.,and the elephant is ashameed of herself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,then[!] another elephant which is a lady : (um) come/3s with a big net.,then another elephant which is a lady um comes with a big net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,she scoop/3s up the airplane : and (gi) hand/3s it to the giraffe.,she scoops up the airplane and gi hands it to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,the giraffe is happy.,the giraffe is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,(he l) he : is not mad at the elephant.,he l he is not mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,he is hug/ing his airplane.,he is hugging his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,the rabbit is smile/ing : same with the dog because they made a big sandcastle.,the rabbit is smiling same with the dog because they made a big sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,they are add/ing more to it.,they are adding more to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,the bunny is scoop/ing up sand.,the bunny is scooping up sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,and the doggy is pat/ing down the sand onto the sandcastle.,and the doggy is patting down the sand onto the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,the rabbit pour/3s all the sand onto the castle.,the rabbit pours all the sand onto the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,and the dog : feel/3s like she do/3s not believe what she is see/ing.,and the dog feels like she does not believe what she is seeing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,the rabbit feel/3s all weird because (he) (it see/3s) he see/3s that it did not break the castle.,the rabbit feels all weird because he it sees he sees that it did not break the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,now the dog is cry/ing because all the sand got mush/ed together.,now the dog is crying because all the sand got mushed together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,and the rabbit feel/3s all[!] : stupid inside.,and the rabbit feels all stupid inside +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,The dog (is wav) is wave/ing hello to the rabbit (who).,The dog is wav is waving hello to the rabbit who +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,and they are both carry/ing basket/s.,and they are both carrying baskets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,they end/ed up being picnic[!] basket/s.,they ended up being picnic baskets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,(and the) and the rabbit is just munch/ing away on his lunch while the dog quietly take/3s out her picnic.,and the and the rabbit is just munching away on his lunch while the dog quietly takes out her picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,the rabbit is full by the time the dog has just start/ed.,the rabbit is full by the time the dog has just started +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,he feel/3s all woozy.,he feels all woozy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,and the dog (feel/3s all s) (all nice because the rab) feel/3s perfect.,and the dog feels all s all nice because the rab feels perfect +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,but the rabbit has eaten too fast.,but the rabbit has eaten too fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,so he feel/3s sick.,so he feels sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,so the dog run/3s to go get a doctor : and pull/3s[!] her over to the bunny.,so the dog runs to go get a doctor and pulls her over to the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,the doctor : (um does not um) fix/3s him up with (um) medical tool/s and stuff : and pick/3s him up and takes him away.,the doctor um does not um fixes him up with um medical tools and stuff and picks him up and takes him away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,the dog is hold/ing a cart with a wagon.,the dog is holding a cart with a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,and again (the bun) the rabbit is walk/ing down the road and says hello.,and again the bun the rabbit is walking down the road and says hello +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,the rabbit admire/3s the balloon.,the rabbit admires the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,he untie/3s it.,he unties it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,the dog is surprise/ed.,the dog is surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,he let/3s go.,he lets go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,the dog try/3s to catch it.,the dog tries to catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,but it is too late.,but it is too late +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,she is really[!] mad with the rabbit.,she is really mad with the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,then she see/3s (a balloo) (a um) a rabbit hold/ing a bunch of balloon/s.,then she sees a balloo a um a rabbit holding a bunch of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,the rabbit go/3s to buy one.,the rabbit goes to buy one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,they are five cent/s.,they are five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,but he do/3s not have any money.,but he does not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,so[-:] the rabbit : and the dog : are sad : because they can not afford another one.,so the rabbit and the dog are sad because they can not afford another one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,she buy/3s two balloon/s and give/3s one to each of the : young one/s.,she buys two balloons and gives one to each of the young ones +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,they each have a balloon.,they each have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/937.slt,and they are happy.,and they are happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,(um) this one girl is bounce/ing a ball.,um this one girl is bouncing a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,can you take your finger/s out of your mouth?,can you take your fingers out of your mouth +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and the ball it : went inside the pool thing.,and the ball it went inside the pool thing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and then (this) (the) the one boy : got it for her.,and then this the the one boy got it for her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and then : the one boy gave it to her.,and then the one boy gave it to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and then the one boy was soak/ing wet.,and then the one boy was soaking wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,(um) : this one girl : was try/ing to[:_tryna] run in the pool.,um this one girl was trying to run in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,(um : she :) (she was run/ing in the) : (she) the one boy was hold/ing her towel.,um she she was running in the she the one boy was holding her towel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and (she s) (she sl) she slip/ed.,and she s she sl she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,she has a booboo on her knee.,she has a booboo on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,one of the guy/s came and ran for her.,one of the guys came and ran for her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and they gave her a bandage.,and they gave her a bandage +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and then she felt better.,and then she felt better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and then : no run/ing.,and then no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,this one boy was play/ing with his airplane.,this one boy was playing with his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,(sh) he was fly/ing it.,sh he was flying it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and the one girl took it away.,and the one girl took it away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and it fell in the pool.,and it fell in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,the one boy was mad at her.,the one boy was mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and : the one girl was try/ing to cry.,and the one girl was trying to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and (the) this one guy he was an elephant.,and the this one guy he was an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and (sh sh) the girl : was talk/ing to him.,and sh sh the girl was talking to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and : that guy was try/ing to get the airplane.,and that guy was trying to get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and the one boy was cry/ing.,and the one boy was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and : the girl : got a (net) net.,and the girl got a net net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and she got it.,and she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,she gave it back to (hi) him.,she gave it back to hi him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and then : (sh) (he said) he had a smiley face.,and then sh he said he had a smiley face +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,(this one) this one : girl was make/ing a sandcastle.,this one this one girl was making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,the one : boy : was help/ing her.,the one boy was helping her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and : the one boy dump/ed the sand on the sandcastle.,and the one boy dumped the sand on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,the sandcastle was wreck/ed.,the sandcastle was wrecked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,the one girl was cry/ing.,the one girl was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,(this) (that guy was carry/ing a bas) this one girl was carry/ing a basket of food.,this that guy was carrying a bas this one girl was carrying a basket of food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,(um this one boy ate) this one boy ate food.,um this one boy ate this one boy ate food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and he was full.,and he was full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,he was dizzy.,he was dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,(he) (he) the girl found a doctor.,he he the girl found a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,the doctor came.,the doctor came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,(the) : (the doctor :) the doctor : took out this stick thing.,the the doctor the doctor took out this stick thing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and he felt better.,and he felt better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,(this one bu had) this one boy had a wagon.,this one bu had this one boy had a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,and he had a balloon tie/ed to the side.,and he had a balloon tied to the side +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,(this) the one girl : (um) look|look[EW:looked] at the balloon.,this the one girl um look at the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,the one boy : untie/ed it.,the one boy untied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,(it was) the balloon went up.,it was the balloon went up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,it was gone.,it was gone +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,(um) there was a balloon man.,um there was a balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,(the girl) the boy want/ed a balloon.,the girl the boy wanted a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,: and : the boy did not have no[EW:any] money.,and the boy did not have no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,(the man :) the man was : hold/ing the balloon/s.,the man the man was holding the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,the girl was stand/ing beside the man.,the girl was standing beside the man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,the nurse came : and bought the balloon.,the nurse came and bought the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,(they both had) the boy and the girl had the balloon.,they both had the boy and the girl had the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/630.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,They are looking at ball/s.,They are looking at balls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,And now there is this one.,And now there is this one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,And now it roll/ed off.,And now it rolled off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,(And it) and the cow is come/ing to get it.,And it and the cow is coming to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,The what is?,The what is +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,The cow [+_bch].,The cow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,oh yeah.,oh yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,And he caught it.,And he caught it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,And they were happy again.,And they were happy again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,They are go/ing swim/ing.,They are going swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,And it is a deep pool.,And it is a deep pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,And now they are go/ing to jump right now.,And now they are going to jump right now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,So they did.,So they did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,And they got hurt.,And they got hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,They should not have ran.,They should not have ran +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,And now another elephant is there.,And now another elephant is there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,And it is take/ing it to the bench and put a bandaid on it.,And it is taking it to the bench and put a bandaid on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,She had to stay there.,She had to stay there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,Anything else ?,Anything else +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,"Okay, super.",Okay super +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,They are go/ing to fly a[EW:an] airplane over the water.,They are going to fly a airplane over the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,(And he lif) and the cow lift[EW:lift/ed] it up.,And he lif and the cow lift it up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,(and the :) and (the) and the elephant grab/ed it.,and the and the and the elephant grabbed it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,And it land/ed : kaboom[!] in the water.,And it landed kaboom in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,Now they are angry.,Now they are angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,And the lifeguard came : and said do not do that.,And the lifeguard came and said do not do that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,And then he try/ed : go there [EU].,And then he tried go there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,But he could not.,But he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,And then it was xxx.,And then it was x +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,Then : (an) (an) another lifeguard : came with a net : in his hand.,Then an an another lifeguard came with a net in his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,And he took (the) the net and put it in the water : and got the airplane.,And he took the the net and put it in the water and got the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,And then they were happy.,And then they were happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,And now they had the airplane [EU].,And now they had the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,they are dig/ing : and make/ing a sandbox.,they are digging and making a sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,they are : mix/ing up sand.,they are mixing up sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,now they are dump/ing it on a sandcastle.,now they are dumping it on a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,now the sandcastle is all broken.,now the sandcastle is all broken +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,and now they are fix/ing it up again.,and now they are fixing it up again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,they are chop/ing.,they are chopping +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,they are have/ing a picnic now.,they are having a picnic now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,now it is all done.,now it is all done +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,now : they have a stomachache.,now they have a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,: now they are : go/ing to the doctor.,now they are going to the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,and now they are pull/ing the doctor over there[~!_whispers].,and now they are pulling the doctor over there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,and now the doctor is look/ing.,and now the doctor is looking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,and now the doctor is take/ing her.,and now the doctor is taking her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,now they are : pull/ing a wagon.,now they are pulling a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,now they are not.,now they are not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,there is a balloon on the wagon.,there is a balloon on the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,now : they are untie/ing it.,now they are untying it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,: and it is fly/ing away.,and it is flying away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,and now they are angry.,and now they are angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,but they are go/ing to[:_gonna] buy a new one.,but they are going to buy a new one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,and they did.,and they did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,and he was mean.,and he was mean +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,he did not let them have one.,he did not let them have one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,now they are run/ing off to another [EU].,now they are running off to another +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,to where?,to where +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,(Oh) What are you pointing at?,Oh What are you pointing at +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,can you tell me what it is?,can you tell me what it is +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,a rabbit [+_bch].,a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,(Oh) okay.,Oh okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,(and) and another rabbit : is do/ing that.,and and another rabbit is doing that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,(another rabbit) and there was (a nus) [~_I_mean] a bone.,another rabbit and there was a nus a bone +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,(and a) (and) and this rabbit [~_pointing] : made him get[!] a balloon[?] [~_pronounced_/babon/].,and a and and this rabbit made him get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/407.slt,they got their own.,they got their own +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,There was a giraffe and a[EW:an] elephant.,There was a giraffe and a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,the giraffe saw a ball.,the giraffe saw a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,but then the elephant was scare/ed.,but then the elephant was scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,then the giraffe : went swim/ing to get the ball.,then the giraffe went swimming to get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,but the elephant got the ball.,but the elephant got the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,and she was : nice to the giraffe.,and she was nice to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,(Oh) it is the same one.,Oh it is the same one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,There was a giraffe and an elephant who went to the pool.,There was a giraffe and an elephant who went to the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,the elephant is go/ing to go to the water.,the elephant is going to go to the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,but the elephant slip/ed.,but the elephant slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,then she had a[EW:an] owee.,then she had a owee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,(then she lo) (got) and then the giraffe call/ed the lifeguard.,then she lo got and then the giraffe called the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,then she put a bandaid.,then she put a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,and it is all better now.,and it is all better now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,and it is feel/ing better and better and better and better.,and it is feeling better and better and better and better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,There was a giraffe and a[EW:an] elephant.,There was a giraffe and a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,(the gi) and the giraffe was have/ing (a um) a plane.,the gi and the giraffe was having a um a plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,and he was fly/ing it.,and he was flying it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,(ahs) and then (um) the elephant saw some string.,ahs and then um the elephant saw some string +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,then the elephant try/ed it.,then the elephant tried it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,but then it went in the water.,but then it went in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,but then[!] the giraffe got mad.,but then the giraffe got mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,and the elephant was sad.,and the elephant was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,then the lifeguard : look/ed at the plane.,then the lifeguard looked at the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,then the girl said [~_high_pitched_voice] I did not do that.,then the girl said I did not do that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,[~_high_pitched_voice] it was just an accident.,it was just an accident +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,so the lifeguard get|get[EW:got] it.,so the lifeguard get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,"so the elephant did not got|get[EW:get] it, the lifeguard [~_I_guess].",so the elephant did not got it the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,but then : (um) a girl : came : to get the airplane.,but then um a girl came to get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,then she just got it.,then she just got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,(and there) and then she got it.,and there and then she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,(and then sh) (there was a) then he had the plane back.,and then sh there was a then he had the plane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,there was a bunny.,there was a bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,and a little girl made a sandcastle.,and a little girl made a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,then the bunny and the dog made some (sa uh) sandcastle/s.,then the bunny and the dog made some sa uh sandcastles +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,but then the rabbit put some sand on the sandcastle.,but then the rabbit put some sand on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,but then it got ruin/ed.,but then it got ruined +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,then she built it up again.,then she built it up again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,there was a bunny : and a dog.,there was a bunny and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,(but he use/ed) and (he had) the bunny has (a) a basket.,but he used and he had the bunny has a a basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,and the dog had the basket.,and the dog had the basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,then they had a picnic.,then they had a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,then the bunny got full.,then the bunny got full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,and : he had a stomachache.,and he had a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,but (then[!] : some um grandmother) (then the : mom) then (the dentist) [~_no_no_ahh_what_was_it_#_yeah] the dentist came.,but then some um grandmother then the mom then the dentist the dentist came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,(and his) and (then he) then the dog pull/ed the dentist.,and his and then he then the dog pulled the dentist +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,then it is right there.,then it is right there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,this look/s like a doctor.,this looks like a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,then he got all better.,then he got all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,there was a dog and bunny.,there was a dog and bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,and the dog had a stroller and a balloon.,and the dog had a stroller and a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,(then he was go/ing to look at) then he was (gra) almost go/ing to [~_gonna] grab the balloon.,then he was going to look at then he was gra almost going to grab the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,and then he tie/ed the balloon off.,and then he tied the balloon off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,but then it flew.,but then it flew +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,then he got angry : the dog.,then he got angry the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,then there was[EW:were] some more[!] balloon/s.,then there was some more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,(and) and he said can I have one balloon please?,and and he said can I have one balloon please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,and he said sure.,and he said sure +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,and there was (f) balloon/s five cent/s [EU].,and there was f balloons five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,then : they did not have any balloon/s.,then they did not have any balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,there was a dentist.,there was a dentist +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,said can I have one cent please [EU]?,said can I have one cent please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,(and she) and sure (I) I can give you some [EU].,and she and sure I I can give you some +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,and there was[EW:were] some balloon/s : for each : other.,and there was some balloons for each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,and they both had balloon/s.,and they both had balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/717.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,(um) : he found *an orange [EU].,um he found orange +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,he found a[EW:an] orange in the water.,he found a orange in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,he fell in the water.,he fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,he pick/ed up a[EW:an] orange.,he picked up a orange +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,he came out of the water.,he came out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,start/ed to slide : in the water [EU].,started to slide in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,(um) : run/ing go in the water [EU].,um running go in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,he[-:] went out of the water.,he went out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and he hurt his knee!,and he hurt his knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and [~_coughs] he had *an owie [EU].,and he had owie +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and gave him (a) : a bandaid [EU].,and gave him a a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and[-:] : (um) : he sit|sit[EW:sat] down.,and um he sit down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and : (uh) : he sit|sit[EW:sat] down again.,and uh he sit down again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,(um) : he pick/ed up the airplane.,um he picked up the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,(the) he was float/ing the airplane.,the he was floating the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,(um) : now he is[!] : hold/ing the airplane.,um now he is holding the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,now it fell in the water.,now it fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,it : went down the water [EU].,it went down the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,(um) [-:] : it was not float/ing down the water.,um it was not floating down the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,(um) : (it) it said uhoh!,um it it said uhoh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and then he fell down.,and then he fell down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,he went to get it.,he went to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and he did not get it.,and he did not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,he get|get[EW:got] back in the deep [EU].,he get back in the deep +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,we are go/ing to [~_gonna] go get it.,we are going to go get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and he got it!,and he got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and he[!] was happy!,and he was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,(um) and he[!] : hug/ed it.,um and he hugged it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,(uh) the end [+_bch].,uh the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,(um) [-:] he is go/ing to[:_gonna] make a sandcastle.,um he is going to make a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and he made a sandcastle.,and he made a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,he dump/ed water on his sandcastle.,he dumped water on his sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,he broke it.,he broke it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and he was go/ing to fix it.,and he was going to fix it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,(um[-:]) : he is go/ing to walk for a picnic.,um he is going to walk for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,he is already at the picnic.,he is already at the picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,he spill/ed all[!] his food.,he spilled all his food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and he laugh/ed.,and he laughed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and : he cry/ed.,and he cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and they were done their picnic.,and they were done their picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and[-:] then he laugh/ed.,and then he laughed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and[-:] then they were still at the picnic.,and then they were still at the picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and then they walk/ed[!] home.,and then they walked home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,(um[-:]) he has a wagon with a balloon on it.,um he has a wagon with a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,(um um) : they stopp/ed.,um um they stopped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and they[-:] sit|sit[EW:sat] down.,and they sit down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and they were go/ing to[:_gonna] get the balloon.,and they were going to get the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,but the balloon pop/ed.,but the balloon popped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and : he want/ed to get another balloon.,and he wanted to get another balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and he got another balloon.,and he got another balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and (um) [-:] he look/ed down.,and um he looked down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and[-:] they look/ed up.,and they looked up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and[-:] he runned|run[EW:ran].,and he runned +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and (um) [-:] they stop/ed.,and um they stopped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and : they gave him (a ticket) : a money [EU].,and they gave him a ticket a money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,and then they got two balloon/s.,and then they got two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/468.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,they were say/ing hello.,they were saying hello +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,(uh) and the giraffe and the (gir) elephant are bounce/ing some ball/s.,uh and the giraffe and the gir elephant are bouncing some balls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,the ball fell into : a swamp.,the ball fell into a swamp +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,the giraffe went : into the water and got it.,the giraffe went into the water and got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,(and the gir) and the : elephant : (he said) he said thank you to the giraffe.,and the gir and the elephant he said he said thank you to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,(the um) : the elephant is : keep/ing the ball to hisself[EW:himself].,the um the elephant is keeping the ball to hisself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,(he) the elephant and the giraffe are : in their bathing suit/s.,he the elephant and the giraffe are in their bathing suits +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and : they are ready to jump in the pool.,and they are ready to jump in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,the[-:] : elephant is go/ing to jump in the pool.,the elephant is going to jump in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,then she slip/3s.,then she slips +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,she hurt/3s her knee.,she hurts her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,the lifeguard come/3s and see/3s what is wrong.,the lifeguard comes and sees what is wrong +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,the lifeguard put/3s a bandaid on it.,the lifeguard puts a bandaid on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,it is all better.,it is all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,she sitted|sit[EW:sat] on the bench.,she sitted on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,(um) the giraffe and the elephant meets[EW:meet] again.,um the giraffe and the elephant meets again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and the giraffe has a toy.,and the giraffe has a toy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and I think the toy is a[EW:an]: airplane.,and I think the toy is a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and (the elephant) the elephant is go/ing wow!,and the elephant the elephant is going wow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,the elephant has it now.,the elephant has it now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and she is drive/ing it around.,and she is driving it around +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,now it is in the pool.,now it is in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and they can not get it.,and they can not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,so the giraffe is mad at the (um : uh) : elephant (that he put it) that she threw it in the : pool [EU].,so the giraffe is mad at the um uh elephant that he put it that she threw it in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,now they go and get the lifeguard.,now they go and get the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and : the lifeguard can not do anything about it.,and the lifeguard can not do anything about it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,so[-:] the lifeguard think/3s and think/3s.,so the lifeguard thinks and thinks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,but he can not do anything.,but he can not do anything +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,so the lifeguard (s) (reach) reach/3s out his hand.,so the lifeguard s reach reaches out his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,but he can not still reach it.,but he can not still reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,(someone come/3s up with a net : and they) : someone come/3s up with a net.,someone comes up with a net and they someone comes up with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and they go wow !,and they go wow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and the person with the net they[-:] stretch[EW:stretches] the net out.,and the person with the net they stretch the net out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and then (uh) : she get/3s it.,and then uh she gets it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and she said here you go giraffe.,and she said here you go giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,here is your (pla) airplane.,here is your pla airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and[-:] the giraffe hug/ed his airplane.,and the giraffe hugged his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,there is[EW:are] (a bunny and) : two bunny/s.,there is a bunny and two bunnies +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and (they are) they are play/ing in the sandbox.,and they are they are playing in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,(the uh) (the bun) the first bunny make/3s : a sandcastle.,the uh the bun the first bunny makes a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and : the second bunny is fill/ing up a bucket.,and the second bunny is filling up a bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and that second bunny is : pour/ing the sand on the sandcastle.,and that second bunny is pouring the sand on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,(that) : then the sandcastle was wreck/ed.,that then the sandcastle was wrecked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and : the first bunny : he was cry/ing.,and the first bunny he was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and he try/ed to fix it.,and he tried to fix it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,but he could not.,but he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,(the bunny meet/3s) (the) the first bunny meet/3s the second bunny.,the bunny meets the the first bunny meets the second bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and they are walk/ing with : (a picnic) a picnic basket.,and they are walking with a picnic a picnic basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and then they sit down.,and then they sit down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,(and they are uh) the : first bunny is just munch/ing away : on (their f) his food.,and they are uh the first bunny is just munching away on their f his food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,(and) and then he get/3s very very very[!] full.,and and then he gets very very very full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,he start/3s burp/ing (and) and all that.,he starts burping and and all that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and the other bunny is just : have/ing his juice box and sandwich.,and the other bunny is just having his juice box and sandwich +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,(then they meet) then they call the doctor.,then they meet then they call the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,the doctor arrive/ed.,the doctor arrived +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,doctor doctor : (he :) my friend ate too much.,doctor doctor he my friend ate too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,then they pull/ed the doctor over to the picnic.,then they pulled the doctor over to the picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,(and he said) and : the bunny was just lay/ing there.,and he said and the bunny was just laying there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,then the doctor sat down on the blanket.,then the doctor sat down on the blanket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and : he said ah.,and he said ah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,then the second bunny open/ed his mouth.,then the second bunny opened his mouth +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and : the doctor put the stick in his mouth.,and the doctor put the stick in his mouth +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,after the doctor was done he was all better.,after the doctor was done he was all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,the first bunny was pull/ing (a basket) (the) the wagon with : a balloon on it.,the first bunny was pulling a basket the the wagon with a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,he meet/3s the second bunny.,he meets the second bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,the second bunny look/3s up.,the second bunny looks up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,he saw the balloon.,he saw the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,he point/3s at it.,he points at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,(the se) the second bunny try/ed to untied[EW:untie] it.,the se the second bunny tried to untied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,the second bunny untie/ed it.,the second bunny untied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and they runned|run[EW:ran] for the balloon.,and they runned for the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,now the first bunny is mad mad mad at the : second bunny.,now the first bunny is mad mad mad at the second bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,(the) there is a man sell/ing balloon/s.,the there is a man selling balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,(they) they think : and think.,they they think and think +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,maybe we have enough money to buy one.,maybe we have enough money to buy one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,they check their pocket/s.,they check their pockets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,(it) it said five cent/s a balloon.,it it said five cents a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,they did not have five cent/s.,they did not have five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,so : they : were mad.,so they were mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,there was a man : stand/ing in the middle of the road.,there was a man standing in the middle of the road +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,he will not give us a balloon.,he will not give us a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,they cost five cent/s.,they cost five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,and (we do not) we only have one cent.,and we do not we only have one cent +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,so the man buy/s two balloon/s : for the two : little children.,so the man buys two balloons for the two little children +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,the man say/3s there you go.,the man says there you go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/767.slt,are you happy?,are you happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,once upon a time there was an elephant and a giraffe.,once upon a time there was an elephant and a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,the : elephant and the giraffe were play/ing ball.,the elephant and the giraffe were playing ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and then the ball fell in the water.,and then the ball fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and then : the : giraffe went to swim in the water and get it.,and then the giraffe went to swim in the water and get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and then : he brung|bring[EW:brought] it back to the elephant.,and then he brung it back to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and then (the giraffe like/ed the eleph) [~_I_mean] the elephant like/ed the giraffe.,and then the giraffe liked the eleph the elephant liked the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,that is all [+_bch].,that is all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,once upon a time the giraffe met the elephant.,once upon a time the giraffe met the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,(and wanted) and they want/ed to go swim/ing.,and wanted and they wanted to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,can you talk louder?,can you talk louder +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,(and they) (they) and the elephant ran[-:] : to the swimming pool.,and they they and the elephant ran to the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and then she slip/ed and : hurt her knee.,and then she slipped and hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,(and the giraffe went) [~_I_mean] (the) the elephant that was guard/ing the swimming pool came to (get) see her and then put : a bandage on her.,and the giraffe went the the elephant that was guarding the swimming pool came to get see her and then put a bandage on her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and then she felt better.,and then she felt better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,(and then : sh) and then he (sai) told her [~_stern__voice] no run/ing.,and then sh and then he sai told her no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,once upon a time : the giraffe had a[EW:an] airplane to show to the elephant.,once upon a time the giraffe had a airplane to show to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,(and they) and he play/ed with : it a lot.,and they and he played with it a lot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and she like/ed[!] : the airplane.,and she liked the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,so she took it away from him.,so she took it away from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and she start/ed play/ing with it too.,and she started playing with it too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and then it fell into the water.,and then it fell into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and the giraffe was very mad.,and the giraffe was very mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,so then the lifeguard came.,so then the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and the elephant explain/ed to the lifeguard what happen/ed.,and the elephant explained to the lifeguard what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,then[!] he try/ed to reach out and get[!] it.,then he tried to reach out and get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,but he could not do that.,but he could not do that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and he told them he could not do that.,and he told them he could not do that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and the giraffe start/ed cry/ing.,and the giraffe started crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,so then a lady came with a net.,so then a lady came with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and she : (s um) put the net inside the water and : got it.,and she s um put the net inside the water and got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and she gave it to the giraffe.,and she gave it to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and the giraffe was really happy.,and the giraffe was really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,then he hug/ed it.,then he hugged it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and they play/ed with it again.,and they played with it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,once upon a time : a bunny met his bestest[EW:best] friend : a[-:] dog.,once upon a time a bunny met his bestest friend a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,the dog and the bunny want/ed to make a castle.,the dog and the bunny wanted to make a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and the bunny was put/ing all the sand inside the bucket.,and the bunny was putting all the sand inside the bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,then [+/]^,then +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,can you talk louder?,can you talk louder +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,then he dump/ed it all on the sandcastle.,then he dumped it all on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and then : (the) the bunny look/ed at the sandcastle and the dog.,and then the the bunny looked at the sandcastle and the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,(and the dog start/ed to : cr) and the dog start/ed to : cry.,and the dog started to cr and the dog started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and the bunny was feel/ing : sad because (he) he accidentally dump/ed it on the sandcastle.,and the bunny was feeling sad because he he accidentally dumped it on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,once upon a time the bunny met : his friend the dog.,once upon a time the bunny met his friend the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,can you talk louder?,can you talk louder +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and : the bunny : had a picnic with the dog : and ate lot/s of stuff.,and the bunny had a picnic with the dog and ate lots of stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,(and then the) : and the dog : look/ed at the bunny.,and then the and the dog looked at the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and the bunny was eat/ing.,and the bunny was eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,he was messy at eat/ing.,he was messy at eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,(then the) then the bunny did not feel very good.,then the then the bunny did not feel very good +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and then : the dog went to tell his mom that he was not feel/ing good.,and then the dog went to tell his mom that he was not feeling good +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and he brung|bring[EW:brought] her to (get) see (him) the bunny.,and he brung her to get see him the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and then : look/3s like a mom or a doctor [EU].,and then looks like a mom or a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,(um okay then) I will have to say it is a doctor.,um okay then I will have to say it is a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,the doctor try/ed to : fix the bunny (up) : up.,the doctor tried to fix the bunny up up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and then the mom took the bunny back home.,and then the mom took the bunny back home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,that is the end [+_bch].,that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,once upon a time [~_the_same_thing] the bunny met[~!_laughs] the dog.,once upon a time the bunny met the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and the dog had a balloon.,and the dog had a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,the dog show/ed the bunny his balloon.,the dog showed the bunny his balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and he untie/ed it from the wagon.,and he untied it from the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,then the balloon flew away.,then the balloon flew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and then the dog was mad[!] at the bunny.,and then the dog was mad at the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,then the bunny went to get another balloon[!] for him.,then the bunny went to get another balloon for him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,but he did not have any money.,but he did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,so (he) (he) : he look/ed in his pocket/s.,so he he he looked in his pockets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and he did not have any money : still[!].,and he did not have any money still +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,then (he) he was sad.,then he he was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and the dog was sad too.,and the dog was sad too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,but then[!] he went to tell his mom[!] to give him money.,but then he went to tell his mom to give him money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and then : she went to get him some money.,and then she went to get him some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and then they were very happy.,and then they were very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,and they both have a balloon.,and they both have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/636.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,one day : George and his friend : Suzanne were play/ing by the pool with their ball.,one day George and his friend Suzanne were playing by the pool with their ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,but then accidentally : they drop/ed it in the pool.,but then accidentally they dropped it in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,but then George went in to get it.,but then George went in to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and then they were both happy.,and then they were both happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and : then they were play/ing with the ball again.,and then they were playing with the ball again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,then George was embarrass/ed.,then George was embarrassed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,George and (sh) Sharon were at the swimming pool.,George and sh Sharon were at the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,(sh uh um) : then they want/ed to go on the diving board.,sh uh um then they wanted to go on the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,but then Sharon was run/ing.,but then Sharon was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and she was not suppose/ed to.,and she was not supposed to +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and then she fell and hurt herself.,and then she fell and hurt herself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,George went to go and get a lifeguard.,George went to go and get a lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and then the lifeguard help/ed her.,and then the lifeguard helped her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,then he put a bandage on her : knee.,then he put a bandage on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and then George was happy.,and then George was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,but Sharon was still surprise/ed.,but Sharon was still surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,but then the lifeguard said no run/ing.,but then the lifeguard said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,one beautiful day : (um) George brought his airplane to play with Sharon.,one beautiful day um George brought his airplane to play with Sharon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,he was play/ing with it twist/ing around in the air.,he was playing with it twisting around in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and then Sharon had a turn.,and then Sharon had a turn +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,but then Sharon accidentally drop/ed it in the water.,but then Sharon accidentally dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and then they did not know what to do.,and then they did not know what to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,they got a lifeguard.,they got a lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,the lifeguard did not know what to do.,the lifeguard did not know what to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,he try/ed reach/ing over to grab the airplane.,he tried reaching over to grab the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,but then they still did not know what to do.,but then they still did not know what to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and George was cry/ing still.,and George was crying still +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,then : another lady came with a big net.,then another lady came with a big net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and she grab/ed the airplane out with the net.,and she grabbed the airplane out with the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,she gave it to (the) George.,she gave it to the George +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and then George was happy again.,and then George was happy again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,he love/ed his airplane.,he loved his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,once upon a time there was one bunny name/ed : Sarah and a dog : name/ed : Aaron.,once upon a time there was one bunny named Sarah and a dog named Aaron +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,they went to the park to play in the sand.,they went to the park to play in the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,they made a sandcastle of wet sand : and then dump/ed sand all over the castle.,they made a sandcastle of wet sand and then dumped sand all over the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,then they were all : surprise/ed to see the castle was broken.,then they were all surprised to see the castle was broken +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and then they start/ed to cry.,and then they started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,one day Bunny and Rabbit : had a picnic.,one day Bunny and Rabbit had a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and they met each other : on the road.,and they met each other on the road +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,then they sat down.,then they sat down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and : Bunny ate (most of all of) most of all the food (of) like the candy.,and Bunny ate most of all of most of all the food of like the candy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and then : Bunny ate all the treat/s.,and then Bunny ate all the treats +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and then : Dog (was) was healthy.,and then Dog was was healthy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,so he ate the sandwich/s.,so he ate the sandwiches +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,then after Bunny felt really sick.,then after Bunny felt really sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and then : Dog did not know what to do.,and then Dog did not know what to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,then he had an idea.,then he had an idea +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and he ran to (bun) Bunny/z mom which[EW:who] is a doctor.,and he ran to bun Bunny's mom which is a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and (then she pull/ed) then : she pull/ed Bunny/z mom to Bunny.,and then she pulled then she pulled Bunny's mom to Bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and then : Bunny/z mom got really mad at him.,and then Bunny's mom got really mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and then : he sent him home.,and then he sent him home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,then : they went home together instead.,then they went home together instead +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,one day Bunny and Dog met each other (at) : on the road.,one day Bunny and Dog met each other at on the road +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,Bunny saw a balloon stuck to : Dog/z : (uh) wagon.,Bunny saw a balloon stuck to Dog's uh wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and (uh) he thought it was neat.,and uh he thought it was neat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,he try/ed take/ing it off.,he tried taking it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,but it would not : come off.,but it would not come off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,but then when it came off : bunny did not know what to do.,but then when it came off bunny did not know what to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,so he let go of the string.,so he let go of the string +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,then they watch/ed it go up.,then they watched it go up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and : Dog was really mad at Bunny.,and Dog was really mad at Bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,(on the way) : on the way home Bunny : saw (balloons) a bunny man sell/ing balloon/s.,on the way on the way home Bunny saw balloons a bunny man selling balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,he want/ed to buy a balloon.,he wanted to buy a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,the balloon/s were fifty cent/s.,the balloons were fifty cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,but Bunny : had no : money.,but Bunny had no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and then they stare/ed at the man.,and then they stared at the man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,(the) bunny went to (her) his mom.,the bunny went to her his mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,(and then) : and then : Bunny/z mom gave them : money.,and then and then Bunny's mom gave them money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,first he explaine/ed it to his mom.,first he explaineed it to his mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and then : Bunny/z mom : bought a balloon for each of them.,and then Bunny's mom bought a balloon for each of them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,they both like/ed their balloon/s.,they both liked their balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/847.slt,and that is the end [+_bch].,and that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,there was a giraffe and a[EW:an] elephant a friend.,there was a giraffe and a elephant a friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and then the ball went in the water.,and then the ball went in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and then the horse went for swim/ing [EU].,and then the horse went for swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and then : the elephant show/ed the ball to the horse.,and then the elephant showed the ball to the horse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and then the horse get|get[EW:got] wet.,and then the horse get wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,(there was a ho) there was a horse and a[EW:an] elephant.,there was a ho there was a horse and a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and they saw a jump where you jump (in) in the pool and then you dive.,and they saw a jump where you jump in in the pool and then you dive +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,(and then they) and the elephant said let us go there.,and then they and the elephant said let us go there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,(and then) and then the elephant runned|run[EW:ran].,and then and then the elephant runned +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and then the elephant bang/ed her knee (in the) in the floor [EU].,and then the elephant banged her knee in the in the floor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,: (and then one kinda pers) (and) and he had a whistle.,and then one kinda pers and and he had a whistle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,(and then) and then put the bandaid.,and then and then put the bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and then she stop/ed.,and then she stopped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and then : she (wa) sit|sit[EW:sat] (in the) in the bench [EU].,and then she wa sit in the in the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,(um) there was a giraffe and a[EW:an] elephant.,um there was a giraffe and a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,"(and) and it had a[EW:an] airplane, the horse.",and and it had a airplane the horse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,(and) and the elephant borrow/ed it.,and and the elephant borrowed it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and then it went in the pool.,and then it went in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,(an) and then they did not know how to get it.,an and then they did not know how to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and then : the one with the whistle saw it in the pool.,and then the one with the whistle saw it in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,there was not allow/ed airplane/s there.,there was not allowed airplanes there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and then (the elephant : has to) : the one with the whistle try/ed to get the airplane.,and then the elephant has to the one with the whistle tried to get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,(and the) and she[-:] try/ed to get it.,and the and she tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,but she can[EW:could] not.,but she can not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,(ss) : (and) and (th) the elephant got the idea.,ss and and th the elephant got the idea +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,just (got it) got the net.,just got it got the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and she scoop/ed it.,and she scooped it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and she take|take[EW:took] it out.,and she take it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and he give|give[EW:gave] it to the horse.,and he give it to the horse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and the horse get|get[EW:got] it.,and the horse get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,there was a rabbit (and a) and a[EW:an] elephant.,there was a rabbit and a and a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and then they scoop a sand and make a sandcastle : and pour some sand.,and then they scoop a sand and make a sandcastle and pour some sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and then it broked|break[EW:broke].,and then it broked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and they did not know how to fix it.,and they did not know how to fix it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,there was a friend with a[EW:an] elephant and a bunny rabbit.,there was a friend with a elephant and a bunny rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and (th) they eat|eat[EW:ate].,and th they eat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and what?,and what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,they eat|eat[EW:ate] [+_bch].,they eat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and : the elephant eat|eat[EW:ate].,and the elephant eat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and the rabbit got too full.,and the rabbit got too full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,(and he saw) and the elephant saw : his mommy.,and he saw and the elephant saw his mommy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and then : the (f) elephant pull/ed his mommy/z shirt.,and then the f elephant pulled his mommy's shirt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and then the (mo) mommy got the popsicle stick.,and then the mo mommy got the popsicle stick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,there was a[EW:an] elephant and a bunny rabbit.,there was a elephant and a bunny rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and (it had the wa) it has a handle and has a balloon in it/z wagon.,and it had the wa it has a handle and has a balloon in it's wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,(and it) and the bunny rabbit said wow.,and it and the bunny rabbit said wow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,(and) and the elephant drop/ed the handle.,and and the elephant dropped the handle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and then the rabbit tie/ed more tighter [EU].,and then the rabbit tied more tighter +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and then it went up.,and then it went up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,: and then they did not know how to get it.,and then they did not know how to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,so they asked one guy that had a lot/s of balloon/s.,so they asked one guy that had a lots of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and then he said if he could get that.,and then he said if he could get that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,(but he ss) but he did not have any money.,but he ss but he did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,: (so) so they just look/ed at it.,so so they just looked at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and (wo) the rabbit went away.,and wo the rabbit went away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,(and) and then they point at that guy.,and and then they point at that guy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and they ask/ed (if he) if they could get all (the) the balloon/s.,and they asked if he if they could get all the the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and then they give him money.,and then they give him money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/522.slt,and then they had one.,and then they had one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,once there was a horse and a[EW:an] elephant.,once there was a horse and a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,the elephant was play/ing : (with) : with some balloon/s.,the elephant was playing with with some balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,(the b) one balloon fell (into the wa) into the pool.,the b one balloon fell into the wa into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,the horse jump/ed in to get it.,the horse jumped in to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,the horse got it and hand/ed it (to) to the elephant.,the horse got it and handed it to to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,the elephant hug/ed it.,the elephant hugged it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,Once there was (a um) a horse and a[EW:an] elephant.,Once there was a um a horse and a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,(let us) the elephant said let us jump into the pool.,let us the elephant said let us jump into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,the horse said instead let us have a race.,the horse said instead let us have a race +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,the elephant fell.,the elephant fell +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,the lifeguard came : and put (a band) a bandaid on.,the lifeguard came and put a band a bandaid on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,I think it was her right.,I think it was her right +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,(and) and it hurt to sit down.,and and it hurt to sit down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,Once : there was a cow and an elephant.,Once there was a cow and an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,(the c) the horse : flied|fly[EW:flew] his airplane.,the c the horse flied his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,the elephant grab/ed it from him.,the elephant grabbed it from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,then he drop/ed it into the swimming pool.,then he dropped it into the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,(the) the horse got mad at the girl.,the the horse got mad at the girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,the lifeguard came along : (and) : (and tried to get) and talk/ed about : get/ing : the airplane out.,the lifeguard came along and and tried to get and talked about getting the airplane out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,the lifeguard try/ed to get it.,the lifeguard tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,but he could not.,but he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,a lady came with a net : and got the airplane out.,a lady came with a net and got the airplane out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,(h) she hand/ed it (to the m) to the horse : and hug/ed it very tight.,h she handed it to the m to the horse and hugged it very tight +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,Once there was a bunny and a girl bunny.,Once there was a bunny and a girl bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,they made sandcastle/s.,they made sandcastles +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,the boy : (um) put sand (in this) in a bucket : and pour/ed it onto the sandcastle.,the boy um put sand in this in a bucket and poured it onto the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,: the girl got mad at him.,the girl got mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,and the girl cry/ed.,and the girl cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,(There sh um) the girl (s) saw the same bunny go/ing for a picnic.,There sh um the girl s saw the same bunny going for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,she was too.,she was too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,they had a picnic together.,they had a picnic together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,the bunny ate too much junk food : and had a tummyache.,the bunny ate too much junk food and had a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,the doctor came.,the doctor came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,the girl pull/ed[!] the doctor.,the girl pulled the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,(he) he check/ed : the boy.,he he checked the boy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,the boy was all right.,the boy was all right +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,once there was a girl : with a wagon.,once there was a girl with a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,and a balloon was tie/ed to the wagon.,and a balloon was tied to the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,(the boy) the boy want/ed to touch : the balloon.,the boy the boy wanted to touch the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,instead he tie/ed it off : and let it go by accident.,instead he tied it off and let it go by accident +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,the girl got very[!] mad at him.,the girl got very mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,the balloon man was still there.,the balloon man was still there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,(the) : the boy wanted two[!] balloon/s.,the the boy wanted two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,he (had to pay some cent/s) : had to pay five[!] cent/s.,he had to pay some cents had to pay five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,: he had no five cent/s[EW:money].,he had no five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,the doctor was still[!] there.,the doctor was still there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,and the boy ask/ed for some money.,and the boy asked for some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,the doctor gave : the balloon man some money.,the doctor gave the balloon man some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,(and they) and they both got a[?] balloon.,and they and they both got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/649.slt,and they hug/ed them.,and they hugged them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,(uh) : there once was a girl who was at a swimming pool.,uh there once was a girl who was at a swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and she was play/ing with some ball/s.,and she was playing with some balls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,she accidentally threw one of the ball/s in the water.,she accidentally threw one of the balls in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,so[-:] this other guy went to go get it for her.,so this other guy went to go get it for her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and then he got it.,and then he got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,then she was happy.,then she was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and then (um) : [+_bch].,and then um +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,do you have anything to say about that page ?,do you have anything to say about that page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,then after that she like/ed him.,then after that she liked him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,(um) : there was a girl at a swimming pool.,um there was a girl at a swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and she want/ed to : go on the diving board.,and she wanted to go on the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,so she : : ran over there to the diving board.,so she ran over there to the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,then she ran all the way there.,then she ran all the way there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,then she accidentally fell.,then she accidentally fell +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and she scrape/ed her knee.,and she scraped her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,so then the lifeguard came : to her : to help her.,so then the lifeguard came to her to help her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and the lifeguard put a bandage on her knee.,and the lifeguard put a bandage on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and : they help/ed her to the bench to sit down.,and they helped her to the bench to sit down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and the lifeguard point/ed to a sign that said no run/ing.,and the lifeguard pointed to a sign that said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,there once was a girl who was[-:] at a swimming pool.,there once was a girl who was at a swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and she seen|see[EW:saw] this boy that had an airplane.,and she seen this boy that had an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,when he was fly/ing it around (she lik/ed it) she start/ed to like it.,when he was flying it around she liked it she started to like it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,so then she : start/ed fly/ing it too.,so then she started flying it too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and then she accidentally got it stuck in the water.,and then she accidentally got it stuck in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,so then the other guy got sort of mad at her : because it was in the water.,so then the other guy got sort of mad at her because it was in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,so then the lifeguard came.,so then the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and then the girl told the lifeguard it was an accident.,and then the girl told the lifeguard it was an accident +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,so then the lifeguard try/ed reach/ing for it.,so then the lifeguard tried reaching for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,but they could not.,but they could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and then : that guy was cry/ing because he want/ed his airplane.,and then that guy was crying because he wanted his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,so then this other lady came with a net thing to[-:] try to get the airplane out.,so then this other lady came with a net thing to try to get the airplane out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and then she got[!] it.,and then she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,(she start/ed to) and then she gave it to the little boy.,she started to and then she gave it to the little boy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,(and then he like/ed) then he was happy because he got his airplane back.,and then he liked then he was happy because he got his airplane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,there once was[-:] a girl play/ing at the park build/ing a sandcastle.,there once was a girl playing at the park building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and then this other boy came (ch) and start/ed to help her build it.,and then this other boy came ch and started to help her build it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and then he start/ed dumping sand all over it.,and then he started dumping sand all over it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and then the tower broke.,and then the tower broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and then she was cry/ing.,and then she was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,so she start/ed to try fix/ing it back.,so she started to try fixing it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,there were these two people walk/ing down the trail to go for a picnic.,there were these two people walking down the trail to go for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and also they both had a picnic together.,and also they both had a picnic together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and : the rabbit he ate lot/s and lot/s of food.,and the rabbit he ate lots and lots of food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and then after he ate all the food he felt sick.,and then after he ate all the food he felt sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and then he felt real dizzy.,and then he felt real dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,so then the other friend told this nurse.,so then the other friend told this nurse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,(and then :) and then she came to help him.,and then and then she came to help him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and then : she (uh) : ask/ed him how many finger/s she is point/ing.,and then she uh asked him how many fingers she is pointing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and then after that (they went) (she drop/ed) she (wa) walk/ed with him around.,and then after that they went she dropped she wa walked with him around +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,there once was a girl who had a wagon.,there once was a girl who had a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and she had a balloon tie/ed to it.,and she had a balloon tied to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,then she met this other boy.,then she met this other boy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and then he like/ed her balloon.,and then he liked her balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,so then he start/ed try/ing to untie the balloon off her wagon.,so then he started trying to untie the balloon off her wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and then he : put it up in the air.,and then he put it up in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and it went float/ing in the air.,and it went floating in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and then the other : girl got mad because her balloon was gone.,and then the other girl got mad because her balloon was gone +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,so then she seen|see[EW:saw] this other guy with a whole bunch of balloon/s sell/ing balloon/s.,so then she seen this other guy with a whole bunch of balloons selling balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and then the rabbit ask/ed : the man (if he could buy) if he could have a balloon.,and then the rabbit asked the man if he could buy if he could have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and then : he said balloon/s are fifty cent/s.,and then he said balloons are fifty cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,but he did not have enough money or any money.,but he did not have enough money or any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,then (um) : he want/ed a balloon really bad.,then um he wanted a balloon really bad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and then there was this other lady.,and then there was this other lady +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,so : the other guy start/ed walk/ing up to her.,so the other guy started walking up to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and (he ask/ed her) he ask/ed the lady if : she could (um) give five cent/s for a balloon.,and he asked her he asked the lady if she could um give five cents for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,so then the lady gave the man five cent/s.,so then the lady gave the man five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and they got two[!] balloon/s.,and they got two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/906.slt,and then they each had one balloon.,and then they each had one balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,: she is bouncing a [+_bch] [+..].,she is bouncing a +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,(and the gym teacher) (and the gym) (and the gym person) [~_no] and the gym guy is walking [+_bch].,and the gym teacher and the gym and the gym person and the gym guy is walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,then he sees him [+_bch].,then he sees him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and (he says) and he is think/ing that that girl is good [+__bch].,and he says and he is thinking that that girl is good +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,so he wants him to be on his team [+_bch].,so he wants him to be on his team +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,or I know another story [+_bch].,or I know another story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,(or he wants to learn or) this kid want/3s to learn.,or he wants to learn or this kid wants to learn +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,(and) and he want/3s to play with the ball too.,and and he wants to play with the ball too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,there is[EW:are] two story/s [+_bch].,there is two stories +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,umhm.,umhm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,: then he take/3s it away from her.,then he takes it away from her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,then it bounce/3s to the water.,then it bounces to the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,(then she) (then she is) then she is sad.,then she then she is then she is sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and he go/3s in and swim/3s (to get th) [~_sounds_like_mic_drops] to get it.,and he goes in and swims to get th to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and he give/3s her back the ball.,and he gives her back the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,: and she like/3s him.,and she likes him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,: oh then they want to go swim/ing.,oh then they want to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,then she want/3s to be the first one in.,then she wants to be the first one in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,so she is run/ing.,so she is running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,but then she slip/3s.,but then she slips +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and he come/3s to help her.,and he comes to help her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,then she hurt/3s her knee/s and cry/3s.,then she hurts her knees and cries +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and : the : watcher : came : over to help her too.,and the watcher came over to help her too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,she is cry/ing.,she is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,she is give/ing (him) her a bandaid.,she is giving him her a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,(and she sa) and he say/3s to her (sh) you should not run.,and she sa and he says to her sh you should not run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,she is sit/ing on : the rest : get better [EU].,she is sitting on the rest get better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,but then he say/3s no run/ing.,but then he says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,(he want/3s) she want/3s to play with his airplane.,he wants she wants to play with his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,: and (sh) he : will not let him.,and sh he will not let him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,(and she is try) and he is try/ing to show off.,and she is try and he is trying to show off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,then she take/3s it from her.,then she takes it from her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and then she get/3s happy and start/3s play/ing with it.,and then she gets happy and starts playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and (he) : she drop/3s it into the water.,and he she drops it into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and he get/3s mad at her.,and he gets mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,: (then) then she is kind of worry/ed because he is mad at : (hi) her.,then then she is kind of worried because he is mad at hi her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and the lifeguard come/3s to see what is happen/ing.,and the lifeguard comes to see what is happening +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and she is say/ing to the lifeguard I did not do it and all that stuff.,and she is saying to the lifeguard I did not do it and all that stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and he go/3s and try/3s to get it.,and he goes and tries to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and he can not.,and he can not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,so then he is cry/ing.,so then he is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,"then she[!] come/3s, another lifeguard.",then she comes another lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and she is go/ing to[:_gonna] take the thing and get the paper airplane out.,and she is going to take the thing and get the paper airplane out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and she get/3s it out.,and she gets it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,(and she has it for) (and he ge) and he gets happy xx.,and she has it for and he ge and he gets happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and he smile/3s at her : and laugh/3s at her.,and he smiles at her and laughs at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,a rabbit and a dog [EU].,a rabbit and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and the dog is : play/ing in the sandbox make/ing a castle.,and the dog is playing in the sandbox making a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and the rabbit : see/3s him and : say/3s can I play?,and the rabbit sees him and says can I play +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and they start play/ing.,and they start playing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and they make the castle.,and they make the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,(and) (and he ma) and he pour/3s a whole bunch of dirt on and ruin/3s it.,and and he ma and he pours a whole bunch of dirt on and ruins it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,: then she is a little [+//]>,then she is a little +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,: why is she happy [+_bch]?,why is she happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,"why is she happy, what is happen/ing?",why is she happy what is happening +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,[~_oh_-:] because now it look/3s like (a castle) a[EW:an] underground castle.,because now it looks like a castle a underground castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,: [~_oh] now she is go/ing to[:_gonna] try to make it again.,now she is going to try to make it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,they are go/ing for a picnic.,they are going for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and he meet/3s his friend.,and he meets his friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,: and : (he only get/3s a little bit of s) he only get/3s a sandwich.,and he only gets a little bit of s he only gets a sandwich +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,he get/3s (all) all yummy stuff.,he gets all all yummy stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,(and he is) (and he is) and he want/3s some.,and he is and he is and he wants some +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,but he eat/3s it all.,but he eats it all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,so (he is try/ing to eat it : to see) (to show[-:] him) [~_no] he is happy because he got a stomachache from that.,so he is trying to eat it to see to show him he is happy because he got a stomachache from that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,: (he) : (he) he got knock/ed out.,he he he got knocked out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and he go/3s and tell/3s the lady that is walk/ing : by that (ee) guy.,and he goes and tells the lady that is walking by that ee guy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and it is a doctor.,and it is a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,: she see/3s him knock/ed out.,she sees him knocked out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,then the doctor get/3s worry/ed.,then the doctor gets worried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and he is carry/ing : her over (to).,and he is carrying her over to +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,now she is see/ing what is the problem.,now she is seeing what is the problem +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and (then) then she fix/3s his problem.,and then then she fixes his problem +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and he is all right.,and he is all right +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and he go/3s back home.,and he goes back home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,[~_hey] a dog is in there : and a rabbit.,a dog is in there and a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,Okay C go ahead and start now.,Okay C go ahead and start now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,: she is (um) take/ing (a ca um) a cart : to (pl) (play[-:] something) to play.,she is um taking a ca um a cart to pl play something to play +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,she is roll/ing the cart.,she is rolling the cart +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,then he has a balloon.,then he has a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,(and) and : he show/3s it.,and and he shows it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,then he get/3s : (um) : happy [EU].,then he gets um happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and he want/3s to (take) grab the balloon off.,and he wants to take grab the balloon off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,he try/3s (to) : it.,he tries to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,but he scream/3s : no.,but he screams no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,: and it fly/3s away.,and it flies away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and (then) then she get/3s angry.,and then then she gets angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,(then) (then there is a balloon man) then there is a balloon man (sel) sell/ing balloon/s.,then then there is a balloon man then there is a balloon man sel selling balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and he is run/ing to get some for her.,and he is running to get some for her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,(then) : then he is ask/ing the balloon man if he can have some.,then then he is asking the balloon man if he can have some +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,: (and) : and he has no change.,and and he has no change +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,: then he get/3s sad.,then he gets sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and they look xx.,and they look +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,: then he go/3s : to see : a doctor.,then he goes to see a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,: and he say/3s to the doctor (bo) this girl she is really sad : because (she can not : finish) she do/3s not have any money.,and he says to the doctor bo this girl she is really sad because she can not finish she does not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,so he ask/3s [~_pronounced_'askes'] him if he could have some money.,so he asks him if he could have some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,and he give/3s them [EU].,and he gives them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,then they both get balloon/s.,then they both get balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/831.slt,: then they are all happy.,then they are all happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,"there is (a piggy and a elephant) : [~_EXA:_whoops,_sorry] a giraffe and a[EW:an] elephant.",there is a piggy and a elephant a giraffe and a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,: What are they do/ing ?,What are they doing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,they are play/ing ball.,they are playing ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and the ball : go|go[EW:goes] in the water[-:] .,and the ball go in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,(And the) and the giraffe : swim|swim[EW:swims] and swim|swim[EW:swims].,And the and the giraffe swim and swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and the (gi) giraffe is go/ing to sink.,and the gi giraffe is going to sink +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and he did not.,and he did not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,he got up.,he got up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,The end [+_bch].,The end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,there is a thing xx in the water.,there is a thing in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,(and the) and the elephant and the giraffe were go/ing to go in the water.,and the and the elephant and the giraffe were going to go in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and then the elephant is go/ing to go.,and then the elephant is going to go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and he slip/ed.,and he slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and he hurt her[EW:his] knee.,and he hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,(and then) (and the) and the elephant came.,and then and the and the elephant came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and the elephant cry|cry[EW:cried].,and the elephant cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and she had a rest.,and she had a rest +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and the elephant is mad.,and the elephant is mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,(and) (an uh) and she run|run[EW:ran] and run|run[EW:ran] and run|run[EW:ran] because she hurt her knee.,and an uh and she run and run and run because she hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,there is an elephant and a giraffe.,there is an elephant and a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and the giraffe has a[EW:an] airplane.,and the giraffe has a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and the airplane go|go[EW:went].,and the airplane go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and it have|have[EW:has] a string.,and it have a string +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,(and it) and it flie/3s.,and it and it flies +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and the airplane go|go[EW:went] to the water.,and the airplane go to the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and it is go/ing to [~_gonna] go down and down and down and down and down.,and it is going to go down and down and down and down and down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,(And the kid/s) and the kid/s look/ed at the swim/ing elephant.,And the kids and the kids looked at the swimming elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and (the elephant) (elephant) the airplane is go/ing to [~_gonna] fall.,and the elephant elephant the airplane is going to fall +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and he can get[!] it.,and he can get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,he could because he can.,he could because he can +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,I think someone need/3s to get that airplane.,I think someone needs to get that airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and the elephant girl : [~_high_pitched_voice] I[!] will get it.,and the elephant girl I will get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,she could.,she could +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and she could get it.,and she could get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,[~_whispers] and she could get it.,and she could get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,she got it.,she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and she is go/ing to get it.,and she is going to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and she got it.,and she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and the elephant girl kid smile|smile[EW:smiled].,and the elephant girl kid smile +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,The end [+_bch].,The end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,(a dog) : (a mouse) (a dog) a dog and (a mo) a bunny [EU].,a dog a mouse a dog a dog and a mo a bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,: and they are at the beach.,and they are at the beach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and the rabbit and the dog : are[-:] build/ing the something else.,and the rabbit and the dog are building the something else +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,the bunny is go/ing to[:_gonna] put something (on the) on the castle.,the bunny is going to put something on the on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,(and the cas) : and the bunny said oh dear.,and the cas and the bunny said oh dear +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,(and) and the girl : made another one because they have got a melt[?] [EU].,and and the girl made another one because they have got a melt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,they are go/ing for a picnic.,they are going for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,(the) they are eat/ing[-:] .,the they are eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and the bunny is full.,and the bunny is full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,the bunny has a big tummy[-:] .,the bunny has a big tummy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,(and mister bunny) : and mister bunny has a bag.,and mister bunny and mister bunny has a bag +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,(then the doctor said) then the puppy said : doctor : the bunny is full[-:] .,then the doctor said then the puppy said doctor the bunny is full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,(and) and he tongue stick out [EU].,and and he tongue stick out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,he *is happy [EU].,he happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,he *is go/ing to[:_gonna] go home and see he[EW:his] mama [EU].,he going to go home and see he mama +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,The end [+_bch].,The end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,the doggy has a wagon[-:] .,the doggy has a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and there is a balloon[-:] .,and there is a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and it is go/ing to go away.,and it is going to go away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and it is gone.,and it is gone +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and it pop/3s!,and it pops +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and there is a more balloon [EU].,and there is a more balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and the balloon is one right here [EU].,and the balloon is one right here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,the balloon is what?,the balloon is what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,right here [+_bch].,right here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,then : there is a balloon right here beside the man [~_pronounced__/men/].,then there is a balloon right here beside the man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and : he have|have[EW:has] lot/s of balloon[EW:balloon/s].,and he have lots of balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,(and) and (mister) mister nurse : is here.,and and mister mister nurse is here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,(mister) : mister nurse doctor : is go/ing somewhere else.,mister mister nurse doctor is going somewhere else +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,and mister doctor go (to the) to the balloon man [EU].,and mister doctor go to the to the balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,(and the bun) and the (s) nurse doctor (s) smile|smile[EW:smile/ed].,and the bun and the s nurse doctor s smile +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/415.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,(um) an elephant is play/ing with a giraffe.,um an elephant is playing with a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and she is bounce/ing the ball with her trunk.,and she is bouncing the ball with her trunk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,but then (the ball) (they see a) the ball go/3s into the water.,but then the ball they see a the ball goes into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and the : giraffe go/3s and try/3s to catch it.,and the giraffe goes and tries to catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,but the elephant look/3s really worry/ed.,but the elephant looks really worried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and then they catch the ball.,and then they catch the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and they are both really happy.,and they are both really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and then she hug/3s[!] the ball.,and then she hugs the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,(and the) and (the um) the giraffe look/3s really really happy[!].,and the and the um the giraffe looks really really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and so do/3s the girl.,and so does the girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,(um) the elephant and the giraffe again [EU].,um the elephant and the giraffe again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,(they) they see a sign that say/3s no run/ing.,they they see a sign that says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,[~_well] it say/3s no run/ing.,it says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,but I do not think they see it.,but I do not think they see it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and they are look/ing into the water.,and they are looking into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,but then : the[-:] elephant[!] start/3s run/ing.,but then the elephant starts running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and : she do/3s not see the sign.,and she does not see the sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,but then it is really slippery.,but then it is really slippery +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and she fall/3s.,and she falls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,(and she) : and her friend : ran right past her.,and she and her friend ran right past her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and he did not see her.,and he did not see her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and : then : he saw her.,and then he saw her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and she scrape/ed her knee.,and she scraped her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,so he went and got the lifeguard.,so he went and got the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and : now she is cry/ing hold/ing her knee.,and now she is crying holding her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,so : he put cream [EU].,so he put cream +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and then he put a bandaid on it.,and then he put a bandaid on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and then (th) she try/ed to walk over to the bench.,and then th she tried to walk over to the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,but she could not.,but she could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,so they had to kind of [~_kinda] help her.,so they had to kind of help her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and then she sat down look/ing kind of [~_kinda] : embarrass/ed because : then the lifeguard just point/ed out : the sign[~!__laughing] that said no run/ing to her.,and then she sat down looking kind of embarrassed because then the lifeguard just pointed out the sign that said no running to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,the giraffe (he) he has (a[EW:an] airplane and) like a toy airplane.,the giraffe he he has a airplane and like a toy airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and the elephant see/3s it.,and the elephant sees it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and she is like oh cool(*2) (can you) can you fly it!,and she is like oh cool cool can you can you fly it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,so he is like well l will try it.,so he is like well l will try it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and so he twirl/3s it and twirl/3s it.,and so he twirls it and twirls it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and he is try/ing to make it fly.,and he is trying to make it fly +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and the elephant is like [~_sharp_intake_of_breath] that is cool!,and the elephant is like that is cool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and then (she) instead of ask/ing she just snatch/3s from him [EU].,and then she instead of asking she just snatches from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and then he look/3s really mad[!] at her.,and then he looks really mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,but she look/3s happy.,but she looks happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and then (she) she is try/ing to fly it.,and then she she is trying to fly it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,but she drop/3s it in the water.,but she drops it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,so he get|get[EW:gets] super[-:][!] mad.,so he get super mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and she look/3s really scare/ed.,and she looks really scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and he go/3s [~_makes_angry_sound]!,and he goes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and then : the lifeguard come/3s and look/3s.,and then the lifeguard comes and looks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and they are both really scare/ed.,and they are both really scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,they are on the other side of the pool.,they are on the other side of the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and then (the) the : elephant look/3s and look/3s.,and then the the elephant looks and looks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,(the elephant) the girl elephant say/3s oh I am really really sorry.,the elephant the girl elephant says oh I am really really sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,I just accidentally did this blah [blahblah]!,I just accidentally did this blah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and the lifeguard say/3s well that is okay I guess.,and the lifeguard says well that is okay I guess +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,so then he try/3s to reach it.,so then he tries to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,"(and) but he can not reach yet, not yet.",and but he can not reach yet not yet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,so it is stuck in there now.,so it is stuck in there now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and the : giraffe start/3s cry/ing.,and the giraffe starts crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,but then a girl elephant like I think it is the little girl elephant/z mom : she come/3s.,but then a girl elephant like I think it is the little girl elephant's mom she comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and she has a net.,and she has a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,so : then she (s) grab/3s the plane and[-:] (um) : scoop/3s it up in the net and give/3s it back to him.,so then she s grabs the plane and um scoops it up in the net and gives it back to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and then : he is really happy.,and then he is really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and so is the girl.,and so is the girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,[~_(o)kay] there is[EW:are] two rabbit/s.,there is two rabbits +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,(one) the girl (is name/ed) is Amanda.,one the girl is named is Amanda +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and the boy/z name is Mark.,and the boy's name is Mark +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and they[-:] are at the beach.,and they are at the beach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and they decide to build a sandcastle!,and they decide to build a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,but then (Mark he) they build it.,but then Mark he they build it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and then Mark he take/3s it.,and then Mark he takes it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and he just dump/3s all[!] the sand over top of it.,and he just dumps all the sand over top of it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,so now all they have is just a big clump of (snow) [~_I_mean] sand.,so now all they have is just a big clump of snow sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and then Amanda start/3s cry/ing!,and then Amanda starts crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,the end : I think [+_bch].,the end I think +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,there is (um) an elephant and a rabbit.,there is um an elephant and a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and they are each carry/ing picnic basket/s.,and they are each carrying picnic baskets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and they meet each other out in the wood/s.,and they meet each other out in the woods +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,(and so they de) and they decide to have a picnic!,and so they de and they decide to have a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,but then the rabbit he is like ah this stuff is so[-:] good!,but then the rabbit he is like ah this stuff is so good +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,(and the mon) and (the monkey) [~_well_actually] the rabbit (he just) he just bring/3s : junk[!] food.,and the mon and the monkey the rabbit he just he just brings junk food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,like there is like a big[!] really big cake.,like there is like a big really big cake +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and he is like ah I love junk food!,and he is like ah I love junk food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,while [<~_well]the other[>~_well] the elephant is like [~_well] he is just looking at him you should eat some healthy food too[!].,while the other the elephant is like he is just looking at him you should eat some healthy food too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,so then : the elephant is eat/ing a nice sandwich and drink/ing some juice.,so then the elephant is eating a nice sandwich and drinking some juice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,but the rabbit he just : shove/3s all this stuff and just leave/3s it a mess!,but the rabbit he just shoves all this stuff and just leaves it a mess +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and then : he is pat/ing his big fat tummy because he ate too much.,and then he is patting his big fat tummy because he ate too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,but then he feel/3s really dizzy.,but then he feels really dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and it look/3s like he is go/ing to[:_gonna] get sick.,and it looks like he is going to get sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,but then he faint/3s.,but then he faints +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,so : just out of the blue come/3s a doctor.,so just out of the blue comes a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and the : elephant say/3s doctor doctor my friend over there ate too much junk food and faint/ed!,and the elephant says doctor doctor my friend over there ate too much junk food and fainted +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,so she just pull/3s[!] him right over there.,so she just pulls him right over there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and the : guy is still (fainted) like really dizzy.,and the guy is still fainted like really dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and there is still a mess.,and there is still a mess +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,(so he is like) so the doctor : check/3s it/z throat and everything.,so he is like so the doctor checks it's throat and everything +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and he finally wake/3s up.,and he finally wakes up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and the doctor is like oh[-:] you should not eat so much junk food!,and the doctor is like oh you should not eat so much junk food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,but then : they take a little walk just to make sure he is okay while : the : (um) elephant (clean/3s it up) clean/3s the mess up.,but then they take a little walk just to make sure he is okay while the um elephant cleans it up cleans the mess up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and there is a rabbit : the same one who ate too much junk food.,and there is a rabbit the same one who ate too much junk food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,(named) : let us call him John.,named let us call him John +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and[-:] the[-:] girl named Jennifer (has a little balloon) has a wagon.,and the girl named Jennifer has a little balloon has a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and there is a balloon tie/ed to it!,and there is a balloon tied to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and (the) John is like well what is that balloon for?,and the John is like well what is that balloon for +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and Jennifer explain/3s well I am not sure yet [~_laughs].,and Jennifer explains well I am not sure yet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,so then he is like well why do not we rip it off and : throw it up in the air?,so then he is like well why do not we rip it off and throw it up in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and it can like drift up to heaven and stuff.,and it can like drift up to heaven and stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and the bird/s can you know eat it.,and the birds can you know eat it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and (she is like) no no no said Jennifer!,and she is like no no no said Jennifer +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,he is like well I will try and undo it still.,he is like well I will try and undo it still +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,while she went away he try/ed to undo it.,while she went away he tried to undo it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and then : he let it go on purpose!,and then he let it go on purpose +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and he is like oh Jennifer Jennifer!,and he is like oh Jennifer Jennifer +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,he lie/ed to Jennifer.,he lay to Jennifer +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,he is like Jennifer Jennifer (the) (um the) the balloon it drift/ed away!,he is like Jennifer Jennifer the um the the balloon it drifted away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and Jennifer is like oh man it drift/ed away!,and Jennifer is like oh man it drifted away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,that was my favourite balloon!,that was my favourite balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,so then (she is gets) she is like (you did that) you did that!,so then she is gets she is like you did that you did that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and she get/3s all[-:] mad[!].,and she gets all mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,like oh I am just go/ing to[:_gonna] hurt you!,like oh I am just going to hurt you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,so then : a guy come/3s along with some more[!] balloon/s.,so then a guy comes along with some more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and they get an idea.,and they get an idea +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,[~_well] John get/3s an idea.,John gets an idea +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,but : Jennifer is too mad to even notice[!].,but Jennifer is too mad to even notice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,John is like : hi mister can I have some balloon/s!,John is like hi mister can I have some balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and Jennifer is like huh what the heck is he do/ing?,and Jennifer is like huh what the heck is he doing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,so then : he get/3s out (um) : ten cent/s.,so then he gets out um ten cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,(um) and (the) : (the um) : (the) [~__whatyoumacallit] the balloon person say/3s sorry they are for five cent/s only!,um and the the um the the balloon person says sorry they are for five cents only +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,if you do not have five cent/s you can not have a balloon.,if you do not have five cents you can not have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,(so the guy is like) so then the guy is like hm you can not have a balloon.,so the guy is like so then the guy is like hm you can not have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and the both of the people are like please please please said John and Jennifer!,and the both of the people are like please please please said John and Jennifer +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,so then : (um) : the doctor[!] came along.,so then um the doctor came along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,(and he is like) and then John run/3s up to him and : say/3s he will not give us no[EW:any] balloon/s (h) (cuz) just because I have ten cent/s.,and he is like and then John runs up to him and says he will not give us no balloons h cuz just because I have ten cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and the balloons are only for five.,and the balloons are only for five +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,he will not give us no[EW:any] balloon/s.,he will not give us no balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,so : then the doctor has two five centses [EU].,so then the doctor has two five centses +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,so she give/3s it to them.,so she gives it to them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and they get two balloon/s.,and they get two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,and then they hug them and squeeze them and everything.,and then they hug them and squeeze them and everything +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,but they do not pop yet.,but they do not pop yet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/844.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,it look/3s like (the elephant and the giraffe are) [~_no] the elephant is (um) dribble/ing the ball.,it looks like the elephant and the giraffe are the elephant is um dribbling the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and the giraffe is watch/ing.,and the giraffe is watching +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and the ball fell into the swimming pool.,and the ball fell into the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and the giraffe is (in um) in the swimming pool go/ing to get it.,and the giraffe is in um in the swimming pool going to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and now (that) (sh) the giraffe gave the ball to (um) the elephant.,and now that sh the giraffe gave the ball to um the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and he is happy.,and he is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and now (um) : they are both happy.,and now um they are both happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,(um) the giraffe and the elephant are (um) beside the pool wait/ing to jump in I think.,um the giraffe and the elephant are um beside the pool waiting to jump in I think +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,(um) now the elephant is run/ing to the diving board.,um now the elephant is running to the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and the giraffe is hold/ing the towel.,and the giraffe is holding the towel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and now (the) it look/3s like the elephant is start/ing to slip.,and now the it looks like the elephant is starting to slip +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and now she bang/ed her knee.,and now she banged her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and she is cry/ing.,and she is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,(um uh) and (the giraffe told) : now I think the giraffe told the lifeguard.,um uh and the giraffe told now I think the giraffe told the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and the lifeguard is come/ing.,and the lifeguard is coming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and the lifeguard put a bandaid on her knee.,and the lifeguard put a bandaid on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,now (um) the lifeguard : is help/ing the elephant to a bench.,now um the lifeguard is helping the elephant to a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and now the lifeguard is make/ing her sit on the bench.,and now the lifeguard is making her sit on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,(um the gira) [~_I_mean_yeah] the giraffe has a plane.,um the gira the giraffe has a plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and the elephant is look/ing at it.,and the elephant is looking at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,(um) the giraffe is play/ing with the plane.,um the giraffe is playing with the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and now the elephant has (um) grab/ed the plane out of the giraffe/z hand.,and now the elephant has um grabbed the plane out of the giraffe's hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and now it fell into the : water.,and now it fell into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,now the giraffe is mad at the elephant.,now the giraffe is mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,now : (uh) the lifeguard come/3s.,now uh the lifeguard comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and : the lifeguard is talk/ing to the elephant.,and the lifeguard is talking to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,now the lifeguard is try/ing to get it.,now the lifeguard is trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,but he can not.,but he can not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and now the giraffe is cry/ing.,and now the giraffe is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and now : (the uh) a : lady elephant gets a net.,and now the uh a lady elephant gets a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and she get/3s the plane out.,and she gets the plane out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and she give/3s it to the giraffe.,and she gives it to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and : the giraffe is happy.,and the giraffe is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and : now he is really happy.,and now he is really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and the elephant is : look/ing at him again too.,and the elephant is looking at him again too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,it look/3s like (um uh) a girl is play/ing in the sand.,it looks like um uh a girl is playing in the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and a boy come/3s.,and a boy comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and now the : girl is make/ing the sandcastle.,and now the girl is making the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and the boy is (hel) help/ing.,and the boy is hel helping +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and now the boy dump|dump[EW:dumped] a pail of sand (on the) on the castle : that she built.,and now the boy dump a pail of sand on the on the castle that she built +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and now (it) it fell down.,and now it it fell down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and they are all look/ing at it.,and they are all looking at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and now the : girl is cry/ing and try/ing to make it up.,and now the girl is crying and trying to make it up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,it look/3s like a rabbit is come/ing up the lane.,it looks like a rabbit is coming up the lane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and his friend is wave/ing.,and his friend is waving +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,(and) and now the rabbit is eat/ing all the food.,and and now the rabbit is eating all the food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and the friend is take/ing out a sandwich.,and the friend is taking out a sandwich +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,now the rabbit is full.,now the rabbit is full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and he can not eat any more.,and he can not eat any more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and his friend is still eat/ing.,and his friend is still eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and now it look/3s like the rabbit is[EW:has] got a tummyache.,and now it looks like the rabbit is got a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,now (um) : the : girl come/3s to : a doctor.,now um the girl comes to a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and I think she tell/3s her : what happen/ed.,and I think she tells her what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,now she is take/ing the doctor to : the rabbit.,now she is taking the doctor to the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and : the doctor is (try/ing) : tell/ing the rabbit something.,and the doctor is trying telling the rabbit something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and now the doctor is take/ing the rabbit : that ate too much.,and now the doctor is taking the rabbit that ate too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,(i uh uh) it look/3s like a rabbit is come/ing down the lane.,i uh uh it looks like a rabbit is coming down the lane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and another girl : has a wagon.,and another girl has a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and a balloon is tie/ed to it.,and a balloon is tied to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,now (the rabbit is try) (I think she) I think the rabbit is try/ing to get the balloon.,now the rabbit is try I think she I think the rabbit is trying to get the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and the rabbit is untie/ing the balloon.,and the rabbit is untying the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and the balloon float/ed away.,and the balloon floated away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and they are try/ing to grab it.,and they are trying to grab it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,but it : float/3s away.,but it floats away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and now the : girl is very mad.,and now the girl is very mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and they see a balloon man.,and they see a balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and so : the rabbit go/3s to him.,and so the rabbit goes to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,(and) (and) and the balloon/s are five cent/s.,and and and the balloons are five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,(so) and he do/3s not have five cent/s.,so and he does not have five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,(now he g) and so they are both (um) at (the rab um um) the man who is sell/ing the balloon/s.,now he g and so they are both um at the rab um um the man who is selling the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and now they see a : lady[-:].,and now they see a lady +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and the rabbit go/3s up to her.,and the rabbit goes up to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,(and she ask/3s) and he ask/3s if : she has any money.,and she asks and he asks if she has any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,(and um) and the : lady give/3s (the um) the balloon man five cent/s.,and um and the lady gives the um the balloon man five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,(and they get) and (uh) I think she[?] give/3s them the balloon.,and they get and uh I think she gives them the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/853.slt,and now they both got a balloon.,and now they both got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,There is an elephant and a : horse.,There is an elephant and a horse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,And they see a big bubble : in the swimming pool.,And they see a big bubble in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,"(um) he is go/ing to pop it, the horse.",um he is going to pop it the horse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,(it was a ball I think) it was a ball.,it was a ball I think it was a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,He what?,He what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,It was a ball [+_bch].,It was a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,Okay.,Okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,(um :) elephant was happy.,um elephant was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,A horse is (um) go/ing to jump into the pool.,A horse is um going to jump into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,But the elephant was go/ing to jump off the edge.,But the elephant was going to jump off the edge +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,But he slip/ed.,But he slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,He got an owie.,He got an owie +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,(uh) the [~_?] horse came.,uh the horse came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,And the other (um) elephant came.,And the other um elephant came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,And : they sit[EW:sat] on a bench.,And they sit on a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,And (they) : (and the ele) (um elephant) no run/ing on the sign.,And they and the ele um elephant no running on the sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,There is a sign [~_whispers].,There is a sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,The horse (um : uhh : is) has a[EW:an] airplane in his hand.,The horse um uhh is has a airplane in his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,And he is fly/ing it.,And he is flying it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,And elephant took it from his hand.,And elephant took it from his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,And it fell in the water.,And it fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,And the horse was mad.,And the horse was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,And (it was floa) (it was come/ing) it was float/ing.,And it was floa it was coming it was floating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,and[-:] (uhh) : it was sink/ing.,and uhh it was sinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,The boy was try/ing to reach it.,The boy was trying to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,But he could not.,But he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,(And he) and then the girl (um) got (a) a net.,And he and then the girl um got a a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,(And he) (and she uhm : got it) : and she got it.,And he and she uhm got it and she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,And she gave it back.,And she gave it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,and then he was happy.,and then he was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,(um) they are build/ing (a sandcastle) a sandcastle.,um they are building a sandcastle a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,the bunny and[!] the dog are still build/ing it.,the bunny and the dog are still building it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,they are go/ing to[:_gonna] (um) put a pail on it.,they are going to um put a pail on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,and it broke.,and it broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,and : the dog was cry/ing.,and the dog was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,that is short [+_bch].,that is short +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,(um) they are go/ing to pick some : [~_I_don't_know].,um they are going to pick some +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,Pardon me?,Pardon me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,I don't know what they are go/ing to pick [+_bch].,I don't know what they are going to pick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,okay.,okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,should I turn?,should I turn +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,(they picked) they pick/ed (um) a sandwich and all kinds of stuff.,they picked they picked um a sandwich and all kinds of stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,(and they) (and the boy) and the bunny was full.,and they and the boy and the bunny was full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,and[-:] he[-:] : was dizzy.,and he was dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,(And) : (and the bunny um was um : um) and (his mom) the doctor was come/ing.,And and the bunny um was um um and his mom the doctor was coming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,and[-:] the dog was pull/ing her.,and the dog was pulling her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,and : she was go/ing to[:_gonna] (check her) : check him : the bunny.,and she was going to check her check him the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,and they were go/ing back home.,and they were going back home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,(um) they are (pull/ing a balloon onto a) (a little) [~_interruption_of_someone_coming_in_room] [~_EXA_oh_go_ahead] pull/ing a balloon on (a) : a little thingy.,um they are pulling a balloon onto a a little pulling a balloon on a a little thingy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,on what?,on what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,a little thingy [+_bch].,a little thingy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,okay a little thingy.,okay a little thingy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,and : it is get/ing smaller.,and it is getting smaller +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,(um) actually it was (um) get/ing undone [EU].,um actually it was um getting undone +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,but it (um) float/ed up to the sky.,but it um floated up to the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,and the dog was very mad.,and the dog was very mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,and : a guy was bring/ing lots of balloon/s.,and a guy was bringing lots of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,and they pick/ed one.,and they picked one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,and they : got number five.,and they got number five +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,and : it float/ed up again.,and it floated up again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,and : then it just came again [EU].,and then it just came again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,and then (um) the bunny said (to the) just wugwug[c] [EU].,and then um the bunny said to the just wugwug +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,this guy has a lot of balloon/s.,this guy has a lot of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,and she got one.,and she got one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/409.slt,(and she) and they (got one) both got one each.,and she and they got one both got one each +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,I am play/ing with you giraffe said.,I am playing with you giraffe said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,no[!] said a[EW:an] elephant.,no said a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,a ball is : oopsy daisy said : a zebra.,a ball is oopsy daisy said a zebra +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,I *will get it [EU].,I get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,I *will spray (m) your[EW:my] trunk : at you[!] giraffe [EU].,I spray m your trunk at you giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,and he did.,and he did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,and (he) he fall|fall[EW:fell] in the water.,and he he fall in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,(and) and the hippo is sad.,and and the hippo is sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,(and then : he) : grab[!] it grab|grab[EW:grabbed][!] it : said the elephant.,and then he grab it grab it said the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,thank you giraffe said.,thank you giraffe said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,where *is my hat [EU]?,where my hat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,www.,www +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,what is that giraffe said.,what is that giraffe said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,(um) a pull said the hippo.,um a pull said the hippo +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,And then (ha a ha) we get the ball.,And then ha a ha we get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,next[!] we get the towel.,next we get the towel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,and (look) look over there.,and look look over there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,look said the giraffe.,look said the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,and the elephant *is run/ing [EU].,and the elephant running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,please slip those [~_coughs][EU].,please slip those +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,do not run said the giraffe wag/ing them[EW:their] tail[tails] around.,do not run said the giraffe wagging them tail around +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,elephant be (quick) quick like the giraffe.,elephant be quick quick like the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,(and he) ow* (I bruise/ed my) call the doctor he said.,and he ow I bruised my call the doctor he said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,supervisor said are you all right girl : hippo?,supervisor said are you all right girl hippo +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,and he said (ah) [~_argh].,and he said ah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,(that) the supervisor telled|tell[EW:told] the giraffe come quickly.,that the supervisor telled the giraffe come quickly +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,you (do not) do not run : he said.,you do not do not run he said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,I play a[EW:an] airplane [EU].,I play a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,no hippo said.,no hippo said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,I am play/ing with it.,I am playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,no fair said the elephant.,no fair said the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,turn the page [+_bch].,turn the page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,[~_high_pitched_voice] I am fly/ing.,I am flying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,[~_deep_voice] he zoom|zoom[EW:zooms] it : said the elephant.,he zoom it said the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,hm [~_makes_sound] I : xx [EU].,hm I +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,[~_high_pitched_voice] your turn.,your turn +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,[~_deep_voice] you have it.,you have it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,xxx xxx for.,x x for +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,[~_high_pitched_voice] give it back said the giraffe.,give it back said the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,and then [~_makes_crying_sound_'waah'].,and then +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,you *are sorry said elephant [EU].,you sorry said elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,you apologize to me[!] said elephant.,you apologize to me said elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,sorry said elephant : ground/ing his face at : him [EU].,sorry said elephant grounding his face at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,you ruin/ed my airplane.,you ruined my airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,and I want xx to play with it : any more [EU].,and I want to play with it any more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,and (uh) : an airplane and hippo (sl) : slide : on the mat.,and uh an airplane and hippo sl slide on the mat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,(and) and [~_high_pitched_voice] help.,and and help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,and suddenly [+//]>,and suddenly +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,www.,www +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,thank you.,thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,[~_high_pitched_voice] (I p) I put it in the (s) pool.,I p I put it in the s pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,[~_high_pitched_voice] and (he give it) I grab/ed it to him[!] [EU].,and he give it I grabbed it to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,[~_makes_sounds] said the supervisor.,said the supervisor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,turn the page [+_bch].,turn the page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,and he *did not get it [EU].,and he not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,and : he *was wet and wet and wet and wet [EU].,and he wet and wet and wet and wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,he said : I *will give it [~_makes_sound] [EU].,he said I give it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,then xx [~_?_elly] said [~_makes_growling_sound].,then said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,: [~_high_pitched_voice] thank you said : mommy : happily.,thank you said mommy happily +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,[~_high_pitched_voice] my new airplane.,my new airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,said : yeah[!] [EU].,said yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,(um xx) (you : do not : said) do not[!] said the rabbit [EU].,um you do not said do not said the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,do not break my castle.,do not break my castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,I have built it.,I have built it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,I *will pat it down [EU].,I pat it down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,(do not) do not hurt it.,do not do not hurt it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,(I) my mother said no.,I my mother said no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,too much sand (said) said the dog.,too much sand said said the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,no rabbit.,no rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,you broken|broke[EW:broke] my : sandcastle : said the dog.,you broken my sandcastle said the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,that mine : idea [EU].,that mine idea +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,"we *will buy : another one [~_coughs,_EXA_gives_him_tissue;__continues_on_track_62] [EU].",we buy another one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,: what is happen/ing?,what is happening +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,(um : so many) you ruin/ed mine : said the cow.,um so many you ruined mine said the cow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,we are go/ing : *on a picnic said : dog [EU].,we are going a picnic said dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,we *are pack/ing : pine cone/s [EU].,we packing pine cones +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,my mother!,my mother +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,ayeaye Captain : Hook said the dog.,ayeaye Captain Hook said the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,you have a snack.,you have a snack +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,then we *will go said : the rabbit [EU].,then we go said the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,(uh) said rabbit : munch/ing him[EW:his] whole food up [EU].,uh said rabbit munching him whole food up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,I have a : full tummyache.,I have a full tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,you tell my mom please [EU].,you tell my mom please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,[~_makes_various_noises]., +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,then : wake up!,then wake up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,xxx.,x +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,a what?,a what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,(doctor) (doctor) (doctor rabbit) doctor rabbit.,doctor doctor doctor rabbit doctor rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,help me.,help me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,help me.,help me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,turn the page [+_bch].,turn the page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,(help me) (help) help him.,help me help help him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,help him.,help him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,[~_heavy_breathing] (I your m) I *am your[!] mother [EU].,I your m I your mother +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,I *will get my mother [EU].,I get my mother +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,xxx.,x +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,he mess him [EU].,he mess him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,snack[?] up and : went home [EU].,snack up and went home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,hello said : a girl dog.,hello said a girl dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,hello : you come and pick [EU].,hello you come and pick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,go with *the circus : said rabbit?,go with circus said rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,no thank you.,no thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,(wo) a cool balloon [EU].,wo a cool balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,we buy them on (sale) saleman[!] [EU].,we buy them on sale saleman +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,what is a saleman?,what is a saleman +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,what is a saleman?,what is a saleman +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,and then the dog (uh) play/ing : a rabbit [EU].,and then the dog uh playing a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,where is that balloon : go said rabbit : jump/ing high [EU].,where is that balloon go said rabbit jumping high +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,[~_makes_'grrr'_sound] (said) said dog : walk/ing away [EU].,said said dog walking away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,rabbit : tell him : up here.,rabbit tell him up here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,hello (I have) I have : got : xx xx.,hello I have I have got +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,dog : wagon : him hide [EU].,dog wagon him hide +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,and then : (he is) suddenly a man come|come[EW:came] up.,and then he is suddenly a man come up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,and : aha *can I have those balloon/s please [EU].,and aha I have those balloons please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,one and you [EU].,one and you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,okay.,okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,write : a number : a five on it okay?,write a number a five on it okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,good.,good +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,and he went and went and went and went and went.,and he went and went and went and went and went +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,and him[EW:his] wagon *was full[!] of : balloon/s [EU].,and him wagon full of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,he [~_makes_crying_sounds] dad [EU]!,he dad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,mom!,mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,dad!,dad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,mom!,mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,dad : said doctor.,dad said doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,one *is not there : said doctor [EU].,one not there said doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,(xx) they needed cent/s : (said) [EU].,they needed cents said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,yay(*4)!,yay yay yay yay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,we have balloon/s!,we have balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,we have balloon/s!,we have balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/729.slt,(um) cost [EU].,um cost +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,Is playing bubbles [EU].,Is playing bubbles +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,it big bubble/s come/ing [EU].,it big bubbles coming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is throw[EW:throwing] them down [EU].,is throw them down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is : say[EW:saying] thank you [EU].,is say thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,happy [EU].,happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,Is go/ing swim/ing [EU].,Is going swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is swim/ing [EU].,is swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is go/ing down [EU].,is going down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is slippery [EU].,is slippery +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is ow owie [EU].,is ow owie +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is hurt [EU].,is hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is cry/ing [EU].,is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,there the ask her[EU].,there the ask her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,what did you say ?,what did you say +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,(um) because he was cry/ing because sad [EU].,um because he was crying because sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,(now is) now is not hurt [EU].,now is now is not hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is mad [EU].,is mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,go away.,go away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,Is happy [EU].,Is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is play/ing [EU].,is playing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is like it [EU].,is like it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,(it bro[-:]) it is under the water.,it bro it is under the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,say : [~_makes_growling_sound] I : mad [EU].,say I mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,because : hmm [EU].,because hmm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,what did it (um) you [EU].,what did it um you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is : scream/ing [EU].,is screaming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is[-:] do[EW:doing] it [EU].,is do it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,can not do it [EU].,can not do it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,I : got it.,I got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,[~_makes_growling_sound] I got it.,I got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,thank you.,thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,so happy [EU].,so happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,(Is) is like[EW:liking] her [EU].,Is is like her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,that *is his friend [EU].,that his friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is play/ing [EU].,is playing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is all done [EU].,is all done +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,it is full.,it is full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is cry/ing [EU].,is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is go/ing [EU].,is going +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,(is eat/ing) is eat/ing [EU].,is eating is eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,: what is happen/ing?,what is happening +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is eat/ing *a sandwich [EU].,is eating sandwich +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is (drink/ing) drink/ing juice [EU].,is drinking drinking juice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is xx her.,is her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is : move/ing [EU].,is moving +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is : (hur) hurt ear/s [EU].,is hur hurt ears +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,say goodbye.,say goodbye +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,Is have balloon [EU].,Is have balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,: anything else?,anything else +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,balloon : that : a big[-:] [EU].,balloon that a big +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,it is fun.,it is fun +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is[-:] (um) take[EW:taking] it [EU].,is um take it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,can not do it [EU].,can not do it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,it is (g) go/ing up to *the sky[-:] [EU].,it is g going up to sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,(is) is go[EW:going](*3) high [EU].,is is go go go high +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,hopper[?] lost the balloon.,hopper lost the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is mad [EU].,is mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,he (s) want|want[EW:wants] the balloon.,he s want the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,it is five dollar/s.,it is five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,(is) (is) : balloon is hold[EW:holding] it [EU].,is is balloon is hold it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is here that doctor [~_pronounced_'dotger'] [EU].,is here that doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,here balloon [EU].,here balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,is say[EW:saying] thank you [EU].,is say thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,balloon is happy [EU].,balloon is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/427.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,(um) there is a[EW:an][-:] elephant in a pool.,um there is a elephant in a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and she is bounce/ing a ball.,and she is bouncing a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and it go/3s in the water.,and it goes in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and (the security guard) [~_I_mean] the guy that watch/3s if somebody drown/3s come/3s and : (um) try/3s to get the ball.,and the security guard the guy that watches if somebody drowns comes and um tries to get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,he go/3s swim/ing.,he goes swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and she is like almost cry/ing.,and she is like almost crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and then he get/3s it.,and then he gets it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and then she is really happy.,and then she is really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,she walk/3s away.,she walks away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and that is the end [+_bch].,and that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,the two[-:] people again.,the two people again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and (um) they are look/ing at the water.,and um they are looking at the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,(um) she is run/ing : the elephant.,um she is running the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and she is still run/ing.,and she is still running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,(and the other) and the (s) security guy is run/ing after her.,and the other and the s security guy is running after her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,she hurt/3s her knee.,she hurts her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,(um) another security guard come/3s.,um another security guard comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,she is cry/ing.,she is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and (they are try/ing to fig) and he put/3s a bandaid on her knee.,and they are trying to fig and he puts a bandaid on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,(and sh) (then sh) and she is walk/ing now.,and sh then sh and she is walking now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and the security guard is mad now.,and the security guard is mad now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and that is the end [+_bch].,and that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,(um the two) the security guard and the elephant are there.,um the two the security guard and the elephant are there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and (um) she (s) look/3s surprise/ed.,and um she s looks surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,(he got a pl) the security guy got a plane.,he got a pl the security guy got a plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and she is almost fall/ing.,and she is almost falling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and she grab/3s it from him.,and she grabs it from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,she drop/3s it in the water.,she drops it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and now the security guard is really mad.,and now the security guard is really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and it is sink/ing.,and it is sinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,(um) the other security guard come/3s.,um the other security guard comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,they all look at it.,they all look at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and she explain/3s to the other security guard (and um) what happen/ed.,and she explains to the other security guard and um what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and (he tri) and the security guard try/3s to get it.,and he tri and the security guard tries to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,but he can not reach.,but he can not reach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and now the other security guard is cry/ing.,and now the other security guard is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and they can not get it.,and they can not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and then another lady come/3s and has a net.,and then another lady comes and has a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and she try/s to catch it.,and she tries to catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and she got it.,and she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and the (se) other security guard is happy now.,and the se other security guard is happy now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and that is the end [+_bch].,and that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,(um) a rabbit make/ing a sandcastle [EU].,um a rabbit making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and then there is (a) a girl and a boy like a girl rabbit and a boy rabbit.,and then there is a a girl and a boy like a girl rabbit and a boy rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and the boy rabbit : has a weird look/ing face.,and the boy rabbit has a weird looking face +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and they start make/ing the sandcastle.,and they start making the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,(um) (the) the boy rabbit pour/3s (um) more sand on the castle.,um the the boy rabbit pours um more sand on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and it break/3s.,and it breaks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and the girl rabbit cry/3s.,and the girl rabbit cries +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and that is the end [+_bch].,and that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,the two rabbit/s again.,the two rabbits again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,but (um) the girl rabbit is come/ing walk/ing.,but um the girl rabbit is coming walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and they (say hello) : wave hello.,and they say hello wave hello +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,(um) then they start eat/ing because they are on a picnic.,um then they start eating because they are on a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,(um) the boy rabbit is really full.,um the boy rabbit is really full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and[-:] all the food is gone.,and all the food is gone +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and the girl rabbit is still eat/ing.,and the girl rabbit is still eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and the boy rabbit is (um : uh) dizzy.,and the boy rabbit is um uh dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and then they see a doctor.,and then they see a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,(and he go) and the : girl rabbit go/3s run/ing to her.,and he go and the girl rabbit goes running to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,pull/3s on her arm.,pulls on her arm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,the doctor check/3s him.,the doctor checks him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and then he is better.,and then he is better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and that is the end [+_bch].,and that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,(um) the two rabbit/s again except the girl one has a balloon on her wagon.,um the two rabbits again except the girl one has a balloon on her wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and she is pull/ing it.,and she is pulling it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and the boy rabbit run/3s to her.,and the boy rabbit runs to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and then they both go on a walk (with).,and then they both go on a walk with +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and he say/3s : (um) I like your balloon.,and he says um I like your balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,(and she pull) and he tie/3s it off.,and she pull and he ties it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and (she has a) she is scare/ed that it will go up up and away.,and she has a she is scared that it will go up up and away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and it do/3s.,and it does +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and then she is really mad at him.,and then she is really mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and they are sell/ing more balloon/s.,and they are selling more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,(and) and they are go/ing to walk to him.,and and they are going to walk to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,but she is still mad.,but she is still mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,(she buy/3s one) [~_I_mean] he buy/3s one.,she buys one he buys one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,they cost five cent/s.,they cost five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,he do/3s not have five cent/s.,he does not have five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,he can not buy one.,he can not buy one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,so (he) he see/3s the doctor.,so he he sees the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,(and he s) and he point/3s at (the) the guy with the balloon/s.,and he s and he points at the the guy with the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and she buy/3s them one.,and she buys them one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and they both happy now.,and they both happy now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/974.slt,and that is the end [+_bch].,and that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,there was a little : (um :) [~_what_is_that] [~_EXA:_what_do__you_think] (hmm) : a[EW:an] elephant bounce/ing three ball/s[-:].,there was a little um hmm a elephant bouncing three balls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,now they falled|fall[EW:fell] in the dirt or water.,now they falled in the dirt or water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then the : other animal falled|fall[EW:fell] in the dirt.,then the other animal falled in the dirt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,[~_actually_uh_no] and the elephant help/ed him up : with the ball.,and the elephant helped him up with the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,: and[-:] (um) : they are happy.,and um they are happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,(now : he) now the elephant want/ed to go jump/ing in the water[-:].,now he now the elephant wanted to go jumping in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then he was run/ing[!] in the water.,then he was running in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then he was try/ing to run.,then he was trying to run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then he slip/ed[-:].,then he slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then he hurt hisself[EW:himself][-:].,then he hurt hisself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then the guard[!] comed|come[EW:came].,then the guard comed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then : (h) hurted|hurt[EW:hurt] real[!] bad [EU].,then h hurted real bad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then he sitted|sit[EW:sat] on the bench.,then he sitted on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,and he got a bandaid.,and he got a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,(and he) and he got mad.,and he and he got mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,and he [~_points] [+/]^,and he +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,: you are point/ing.,you are pointing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,mhm they got mad and : he is point/ing!,mhm they got mad and he is pointing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,he is point/ing that way.,he is pointing that way +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,the end [+_bch]!,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,(now they are say/ing) now the little sheep (um) said do not play with my airplane !,now they are saying now the little sheep um said do not play with my airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,now it flied|fly[EW:flew] [-:][!] around.,now it flied around +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then he[!] try/ed it out : the (um) elephant did.,then he tried it out the um elephant did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then it went in the water[-:] !,then it went in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then : he got mad !,then he got mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then the guard said [~_puts_hands_on_hips] [+..] [EU].,then the guard said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,hmm he is stand/ing with his hand/s on his hip/s.,hmm he is standing with his hands on his hips +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,yeah [+_bch].,yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then : nobody could not get it out [EU].,then nobody could not get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then : (he[!] could not) : guard could not.,then he could not guard could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then[-:] : they are think/ing of let/ing [+//]>,then they are thinking of letting +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,do/3s this (um) : get my voice [+_bch].,does this um get my voice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,yeah it do/3s.,yeah it does +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,oh [+_bch].,oh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,everything XX.,everything XX +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,"is that that page, okay.",is that that page okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,now there is a different elephant that had a shape/ed thing [~__gestures_to_indicate_shape].,now there is a different elephant that had a shaped thing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then he got[!] it with[-:] his shape/ed thing [~_gestures_to_indicate__shape].,then he got it with his shaped thing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,yeah and both time/s you have shown me that with your hand/s.,yeah and both times you have shown me that with your hands +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then he said thank you !,then he said thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,: then they[-:] did not play with it ever again.,then they did not play with it ever again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,and they are : build/ing[!] a sandcastle there.,and they are building a sandcastle there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,and he[-:] carefully touch/ed it[-:].,and he carefully touched it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then he pour/ed some more dirt[-:].,then he poured some more dirt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then it broke[-:][!] down[-:][!] : half of it.,then it broke down half of it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then he was sad[-:].,then he was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,they are walk/ing around and have/ing a picnic.,they are walking around and having a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then they got carrot/s and all (s) kind[EW:kinds] of stuff.,then they got carrots and all s kind of stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,and they *are all full [EU].,and they all full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,and the bunny rabbit was full.,and the bunny rabbit was full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then he was[-:] : really super full.,then he was really super full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,he was really what?,he was really what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,(his[-:] stomach) his stomach was fat.,his stomach his stomach was fat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,oh okay I did not understand what you said.,oh okay I did not understand what you said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,speak a little bit louder okay?,speak a little bit louder okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,okay [+_bch].,okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,he was run/ing.,he was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,and when he left the bunny [EU].,and when he left the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,and : there was a different[!] bunny that had glass/s.,and there was a different bunny that had glasses +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,and he was have/ing a picnic too.,and he was having a picnic too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,and you show/ed me the glass/s too.,and you showed me the glasses too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then : he drag/ed him over here.,then he dragged him over here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then he check/ed out him[-:] [EU].,then he checked out him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then he live/ed happy[EW:happily] ever after.,then he lived happy ever after +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,the end [+_bch]!,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,(they are ha) and (the bunny rabbit uh) the little[-:] girl bunny rabbit had a balloon.,they are ha and the bunny rabbit uh the little girl bunny rabbit had a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then : the boy[-:][!] one : want/ed to try it.,then the boy one wanted to try it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then she said no!,then she said no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then it flied|fly[EW:flew] [-:] away!,then it flied away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,I think the balloon pop/ed (or it) or it flied|fly[EW:flew] off the[-:] (um) : string.,I think the balloon popped or it or it flied off the um string +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,mhm is that it for that page?,mhm is that it for that page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,now they saw a balloon[!] man.,now they saw a balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,they ask/ed for one.,they asked for one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,and he said only if a (one[-:] dollar) : (one doll) five[-:] cent/s actually [EU].,and he said only if a one dollar one doll five cents actually +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,(then) : then they saw a guy.,then then they saw a guy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,and they runned|run[EW:ran]!,and they runned +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,and[-:] is that my bell [+_bch]?,and is that my bell +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,no.,no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,: okay [+_bch].,okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,nothing on this page?,nothing on this page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,and he said [~_high_pitched_voice] I want a balloon the little baby me [EU]!,and he said I want a balloon the little baby me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,(and he said) and he gived|give[EW:gave] him two[!] buck/s.,and he said and he gived him two bucks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,then they : live/ed happy[EW:happily] ever after.,then they lived happy ever after +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/414.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,(she) : she is[-:] by the pool.,she she is by the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and she see/3s her friend.,and she sees her friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and she get/3s scare/ed because there is a ball in the water.,and she gets scared because there is a ball in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,then : her friend : go/3s into the water and get/3s it : because she drop/ed it.,then her friend goes into the water and gets it because she dropped it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and then she got it back.,and then she got it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,(and then) and then she is happy.,and then and then she is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,she is by the : pool.,she is by the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,(um) she want/3s to go in it.,um she wants to go in it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and she is[-:] run/ing.,and she is running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and she get/3s a ball.,and she gets a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and then she fall/3s[-:].,and then she falls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and then she get/3s a bandaid.,and then she gets a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and then she sit/3s on a bench.,and then she sits on a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and the guy is say/ing no run/ing.,and the guy is saying no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,her friend is hold/ing an airplane.,her friend is holding an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and : he is show/ing her what it can do.,and he is showing her what it can do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and she want/3s to try it.,and she wants to try it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,but then it fall/3s in the water.,but then it falls in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and then he get/3s angry.,and then he gets angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,(and) and then the guy get/3s mad because there is a toy in the (rw) water.,and and then the guy gets mad because there is a toy in the rw water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and then : she is tell/ing : him : what she was try/ing to do.,and then she is telling him what she was trying to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and then he try/3s to get it.,and then he tries to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,but he do/3s not get it.,but he does not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and[-:] a girl (with a net) has a net.,and a girl with a net has a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and she is like I[!] could probably get it.,and she is like I could probably get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and then she get/3s it.,and then she gets it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and she give/3s it to : the girl/z friend.,and she gives it to the girl's friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and (he) he is hug/ing it.,and he he is hugging it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,(they) : they are play/ing in the sand.,they they are playing in the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and the bunny has a shovel.,and the bunny has a shovel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and they make a castle.,and they make a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and he dump/3s sand[-:] on it.,and he dumps sand on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and then it fall/3s[-:].,and then it falls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and then they have to build it again.,and then they have to build it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,they[-:] both have basket/s.,they both have baskets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and they are walk/ing.,and they are walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and they are go/ing to[:_gonna] have a picnic together.,and they are going to have a picnic together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and then : they get full.,and then they get full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and he get/3s dizzy too[~!_laughing].,and he gets dizzy too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and then the doctor was walk/ing by.,and then the doctor was walking by +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and (the) (the) his friend : call/3s the doctor because the guy is (on the carpet) on the blanket.,and the the his friend calls the doctor because the guy is on the carpet on the blanket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and then the doctor (go/3s t) go/3s to check him.,and then the doctor goes t goes to check him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,then he make/3s him better.,then he makes him better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,(um) : the guy is pull/ing a wagon.,um the guy is pulling a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and his friend see/3s him : with a balloon [~_laughs].,and his friend sees him with a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and then he like/3s the balloon.,and then he likes the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and he is untie/ing it[-:].,and he is untying it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,(and then) and (it) then it go/3s away.,and then and it then it goes away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and then : he get/3s : mad.,and then he gets mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and then they see the guy with more balloon/s left.,and then they see the guy with more balloons left +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and he give/3s one to him.,and he gives one to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and it says five cent/s on it : (cause).,and it says five cents on it cause +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and then he doe/3s not want to[:_wanna] get it.,and then he does not want to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,(um) : and then they go away.,um and then they go away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and then he ask/3s the doctor if he can get one with five cent/s.,and then he asks the doctor if he can get one with five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and[-:] then he get/3s five cent/s to get two balloon/s for both of them.,and then he gets five cents to get two balloons for both of them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/665.slt,and then[-:] they are both happy.,and then they are both happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,he is (pl) playing *with that ball with his bathing suit on [EU].,he is pl playing that ball with his bathing suit on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,[~_clears_throat] but the ball *is in the water [EU].,but the ball in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,he is swim/ing in it.,he is swimming in it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,and he got it.,and he got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,and he is all wet.,and he is all wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,that is all [+_bch].,that is all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,(he is) he is look/ing at the water.,he is he is looking at the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,he is run/ing to the diving board.,he is running to the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,slip/ed [EU].,slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,hurt the knee [EU].,hurt the knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,he is run/ing.,he is running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,and her[EW:she] *is sit/ing there [EU].,and her sitting there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,and they put a bandaid on it.,and they put a bandaid on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,and he is get/ing cranky.,and he is getting cranky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,that is all [+_bch].,that is all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,play/ing a plane (with) near the pool [EU].,playing a plane with near the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,(it is) it is start/ing to fly.,it is it is starting to fly +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,and she is hold/ing on to it.,and she is holding on to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,and it fell in the pool.,and it fell in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,and it is start/ing to drowned [EU].,and it is starting to drowned +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,and it is float/ing.,and it is floating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,and it is still float/ing.,and it is still floating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,and (he) she is try/ing to reach it.,and he she is trying to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,can not get it [EU].,can not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,and he is lose/ing the net.,and he is losing the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,and they got it.,and they got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,and then he took it out.,and then he took it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,and they are happy.,and they are happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,that is all [+_bch].,that is all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,make/ing a sandcastle [EU].,making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,fill/ing it up [EU].,filling it up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,(um) spill/ing it on the castle [EU].,um spilling it on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,it is wreck/ed.,it is wrecked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,cry/ing [EU].,crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,that is all [+_bch].,that is all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,have/ing a picnic [EU].,having a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,eat/ing [EU].,eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,(f) nice and full [EU].,f nice and full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,what was that?,what was that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,full [+_bch].,full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,(um) he *is dizzy [EU].,um he dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,(um he is try) (um) he is run/ing.,um he is try um he is running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,he is try/ing to talk.,he is trying to talk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,he is : get/ing dizzy again.,he is getting dizzy again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,walk/ing with[?] each other [EU].,walking with each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,that is all [+_bch].,that is all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,balloon on a wagon [EU].,balloon on a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,he is stand/ing there watch/ing the balloon.,he is standing there watching the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,he is (on) take/ing it off.,he is on taking it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,it is blow/ing away.,it is blowing away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,(it is) it is go/ing up higher.,it is it is going up higher +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,got lot/s of balloon/s [EU].,got lots of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,he is point/ing at the lots of balloon/s [EU].,he is pointing at the lots of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,he is look/ing at the ground.,he is looking at the ground +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,(um) he is sad.,um he is sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,(um) he is walk/ing away.,um he is walking away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,he is : point/ing (where) what he is not suppose/ed to do [EU].,he is pointing where what he is not supposed to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,(um) he has (t) two balloon/s.,um he has t two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,(um) they both have balloon/s.,um they both have balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/680.slt,that is all [+_bch].,that is all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,(he was : talk/ing) : he was talk/ing to (the) : the girl elephant.,he was talking he was talking to the the girl elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and he was : look/ing at something.,and he was looking at something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and then he was : crash/ing.,and then he was crashing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and then (he was get/ing out) : he was : get/ing out.,and then he was getting out he was getting out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,(he was) : he was ask/ing[!].,he was he was asking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,(um) he was : talk/ing.,um he was talking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,(um) he was : look/ing.,um he was looking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,look/ing?,looking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,(he) she was : point/ing.,he she was pointing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and she was crash/ing!,and she was crashing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,she breaked|break[EW:broke] his knee.,she breaked his knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,(he wa) she was cry/ing!,he wa she was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and[-:] she[-:] was[-:] : look/ing at him.,and she was looking at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and he was : all better.,and he was all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and he was : put/ing on something.,and he was putting on something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,he was : ask/ing.,he was asking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,he was : fly/ing an airplane.,he was flying an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,(he was : hold/ing an airplane) [EXA:_he_was_what] (he was) he was hold/ing an airplane.,he was holding an airplane he was he was holding an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,(but he could not) : but he could not let[!] her.,but he could not but he could not let her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and he put it into the water.,and he put it into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,he was mad[!] at him.,he was mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and then (he was : um) he was[-:] : ask/ing.,and then he was um he was asking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and he was : ask/ing again.,and he was asking again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,he was : get/ing his airplane.,he was getting his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and then he was : cry/ing.,and then he was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,(he) : she was : hold/ing a shovel.,he she was holding a shovel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,he was : pick/ing up an airplane.,he was picking up an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,(he was) : he was : give/ing it.,he was he was giving it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,(um : she was) : he was let/ing her have an airplane.,um she was he was letting her have an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,he is [-:] dig/ing.,he is digging +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,(he is) he is finish/ed.,he is he is finished +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,he is dump/ing it out.,he is dumping it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,he is?,he is +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,dump/ing it out [+_bch].,dumping it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and[-:] it break|break[EW:broke].,and it break +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,it break|break[EW:broke]?,it break +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and he was cry/ing.,and he was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,(he is walk/ing along) he is walk/ing along.,he is walking along he is walking along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and (he is) : (he is eat/ing) he is go/ing to eat.,and he is he is eating he is going to eat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and he is full.,and he is full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,he had a big tummyache.,he had a big tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and he was whistle/ing.,and he was whistling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and he was hold/ing [EU].,and he was holding +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,(uh) he was fall/ing.,uh he was falling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,fall/ing [+_bch].,falling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and he was all right.,and he was all right +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,he is[-:] talk/ing.,he is talking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,he is[-:] look/ing.,he is looking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,look/ing?,looking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,he is[-:] : pop/ing.,he is popping +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,[~_or] he is take/ing it out.,he is taking it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,he is take/ing it out?,he is taking it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,[~_yeah] and he is go/ing to pop it.,and he is going to pop it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,it is float/ing up.,it is floating up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and he popp/ed it.,and he popped it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and he get|get[EW:got] some more balloon/s.,and he get some more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,he is : bring/ing them.,he is bringing them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and[-:] pop/ing [EU].,and popping +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and he got some more balloon/s.,and he got some more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and they pop/ed.,and they popped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,and he got some more balloon/s.,and he got some more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,but they pop/ed.,but they popped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,but what?,but what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,but they pop/ed [+_bch].,but they popped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,he bring|bring[EW:brought] some more balloon/s.,he bring some more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,they got two of them.,they got two of them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,they got two of them.,they got two of them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,he is hold/ing it.,he is holding it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/475.slt,they are all hold/ing it.,they are all holding it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,(um) : a : giraffe is : play/ing (uh) ball[-:] with : (a girl by a p) : a[EW:an] elephant (by a) : by a pool[-:].,um a giraffe is playing uh ball with a girl by a p a elephant by a by a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,then the ball go/3s in the water.,then the ball goes in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and they are kind of[~!_laughing] frighten/ed.,and they are kind of frightened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and (they s) he swim/3s out to the ball to get it.,and they s he swims out to the ball to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,(um) : the giraffe give/3s the ball to the : elephant.,um the giraffe gives the ball to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then[-:] (she is : happy with the eleph : um) the elephant is happy with the giraffe (t) for get/ing (h) : her ball (for him) : from[?] him.,and then she is happy with the eleph um the elephant is happy with the giraffe t for getting h her ball for him from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,they are[-:] go/ing to [~_gonna] : go in the water.,they are going to go in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and (the) there is a sign.,and the there is a sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and it say/3s no run/ing.,and it says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,she start/3s to run to go in the water : the elephant.,she starts to run to go in the water the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then the elephant slip/3s.,and then the elephant slips +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and[-:] then she is hold/ing her knee.,and then she is holding her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then the giraffe come/3s and see|see[EW:sees] what is : wrong with her.,and then the giraffe comes and see what is wrong with her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,then the lifeguard come/3s.,then the lifeguard comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and : he come/3s.,and he comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and (um) : he : see/3s the elephant down on the ground.,and um he sees the elephant down on the ground +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and he put/3s [EW:a] bandaid on her knee.,and he puts bandaid on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and she is close/ing her eye/s.,and she is closing her eyes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then when she open/ed her eye/s : (um) she saw a bandaid on her knee.,and then when she opened her eyes um she saw a bandaid on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,(th[-:]) : then she kind of look/3s[~!_laughing] embarass/ed because the lifeguard is tell/ing her that the sign say/3s no run/ing.,th then she kind of looks embarassed because the lifeguard is telling her that the sign says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and she was run/ing.,and she was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,the : elephant see/3s that the giraffe has an : airplane.,the elephant sees that the giraffe has an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and (he) : (he) (they are) I think she is ask/ing if : (um) : she could play with it with him.,and he he they are I think she is asking if um she could play with it with him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and I think he say/3s no.,and I think he says no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,then he start/3s play/ing (with) with : it[?].,then he starts playing with with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,(uh) and : the elephant is watch/ing him.,uh and the elephant is watching him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then she (snap/3s) : (um sna um) take/3s the : airplane out of the giraffe/z hand[-:].,and then she snaps um sna um takes the airplane out of the giraffe's hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then it go/3s into the : pool.,and then it goes into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then the : giraffe get/3s kind of mad at her because I think that might be his favorite (um) : airplane.,and then the giraffe gets kind of mad at her because I think that might be his favorite um airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then the lifeguard (come/3s and seen) : come/3s to see[-:] what was go/ing on.,and then the lifeguard comes and seen comes to see what was going on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and[-:] (then : she um) : then the lifeguard talk/3s with the elephant.,and then she um then the lifeguard talks with the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and[-:] the giraffe kind of look/3s like he is a bit worry/ed.,and the giraffe kind of looks like he is a bit worried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and[-:] the lifeguard is try/ing to get the airplane.,and the lifeguard is trying to get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,but (I do not) he can not.,but I do not he can not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,(then the) : (then uh).,then the then uh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,(did I) did I turn it too soon?,did I did I turn it too soon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,no [+_bch].,no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then the giraffe start/3s to cry.,and then the giraffe starts to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and[-:] : then : I think the elephant : really look/3s kind of like she is sorry for the : (um g) giraffe.,and then I think the elephant really looks kind of like she is sorry for the um g giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,but then a girl come/3s with a (net) net.,but then a girl comes with a net net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and they are all like what the!,and they are all like what the +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then : (she scoop/3s out the air) she is scoop/ing out the airplane.,and then she scoops out the air she is scooping out the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then she gots|get[EW:gets] the airplane out.,and then she gots the airplane out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and she give/3s it to the giraffe.,and she gives it to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and the giraffe is happy.,and the giraffe is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and he is hug/ing[~!_laughing] the airplane.,and he is hugging the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,(um[-:]) : I think it is a dog (um) : and a rabbit.,um I think it is a dog um and a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,the character/s are the dog and the rabbit.,the characters are the dog and the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and[-:] the dog is (s) : build/ing a sandcastle.,and the dog is s building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and : (he is fillding um) he is (um : uh) kind of (uh) : fill/ing a bucket with sand.,and he is fillding um he is um uh kind of uh filling a bucket with sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,(and sh) : the dog is : (um) try/ing to like make sure it does not fall down the sandcastle.,and sh the dog is um trying to like make sure it does not fall down the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then the : bunny put/3s sand on top of the : castle.,and then the bunny puts sand on top of the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then it knock/3s down the castle.,and then it knockes down the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,the dog is kind of : look/ing like he did not want that to happen.,the dog is kind of looking like he did not want that to happen +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and : the bunny felt really (s um) sad.,and the bunny felt really s um sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and (they) he try/ed : the dog try/ed to : put it back up.,and they he tried the dog tried to put it back up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,but (h) : he could not.,but h he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and that is the end [+_bch].,and that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,(um) : the rabbit and the dog are have/ing a picnic together.,um the rabbit and the dog are having a picnic together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and[-:] : (the) : the rabbit pack/ed too much : lunch.,and the the rabbit packed too much lunch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and[~!_laughing] the : dog pack/ed like only a bit because he did not : want to [~_wanna] get a stomachache[~!_laughing].,and the dog packed like only a bit because he did not want to get a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then (he um) the rabbit ate all he had.,and then he um the rabbit ate all he had +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then : he kind of [~_kinda] look/3s a bit fat[~!_laughing].,and then he kind of looks a bit fat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then he start/3s getting dizzy because he ate too much food.,and then he starts getting dizzy because he ate too much food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then (um) : the dog see/3s a : doctor on the road come/ing by.,and then um the dog sees a doctor on the road coming by +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then he (told him) : told her that (there um) the character that is (um) lay/ing down is kind of dizzy.,and then he told him told her that there um the character that is um laying down is kind of dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,(so : um he).,so um he +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,you tell me to turn when I need to.,you tell me to turn when I need to +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,(um) : but : she (um) : need/3s : to : kind of [~_kinda] help him.,um but she um needs to kind of help him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,you can turn now [+_bch].,you can turn now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,(um) then : he is : show/ing : the doctor (where h) : where he is lay/ing down and tell/ing her : (how) what happen/ed.,um then he is showing the doctor where h where he is laying down and telling her how what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then he : (te) tell/3s : the bunny to stick his tongue out.,and then he te tells the bunny to stick his tongue out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and he stick/3s his tongue out[~!_laughing].,and he stickes his tongue out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then (h) : he is walk/ing home with (um) : the doctor.,and then h he is walking home with um the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and that is the end [+_bch].,and that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,(um[-:]) the dog (is ha) is pull/ing a balloon.,um the dog is ha is pulling a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and he has a balloon (um) tie/ed on to : his wheel of the wagon.,and he has a balloon um tied on to his wheel of the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,(and he um) : and then the rabbit come/3s.,and he um and then the rabbit comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then he want/3s the balloon.,and then he wants the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and so he is like grab/ing out to take it.,and so he is like grabbing out to take it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then he untie/3s it from the wheel.,and then he unties it from the wheel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and (then : the) : then it go/3s off of the : wagon.,and then the then it goes off of the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,(and then they) and[-:] then the : bunny is kind of [~__kinda] taller.,and then they and then the bunny is kind of taller +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and so (he a) : he is try/ed to : (um) : reach it.,and so he a he is tried to um reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,but he can not reach it.,but he can not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then : the dog is kind of : angry at (the : um) the rabbit : for lose/ing his balloon by go/ing : up in the air.,and then the dog is kind of angry at the um the rabbit for losing his balloon by going up in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then : a : bunny that is hold/ing balloon/s come/3s by.,and then a bunny that is holding balloons comes by +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and he is just walk/ing.,and he is just walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then the : bunny kind of [~_kinda] has a[EW:an] idea that he could buy a new balloon for him.,and then the bunny kind of has a idea that he could buy a new balloon for him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then he : (um) : said how much (um) do those balloon/s cost?,and then he um said how much um do those balloons cost +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,(um) : and then he take/3s down a balloon.,um and then he takes down a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and it say/3s : balloon/s (f[-:]) : five cent/s.,and it says balloons f five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and (he) he do/3s not have any five cent/s.,and he he does not have any five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,so he could not buy : a balloon.,so he could not buy a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,but then he see/3s the doctor.,but then he sees the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then (she) he is run/ing to ask if she has five cent/s.,and then she he is running to ask if she has five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and[-:] (um : he) she is kind of [~_kinda] look/ing : (this) this way.,and um he she is kind of looking this this way +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and[-:] (sh) she just probably look/ing at the scene/s of the park.,and sh she just probably looking at the scenes of the park +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then he is talk/ing to her about what happen/ed.,and then he is talking to her about what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,(and : he) : (sh) (she um : want) and the : dog want/3s a balloon.,and he sh she um want and the dog wants a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,except he does not have enough money to buy one for the dog.,except he does not have enough money to buy one for the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and then (he give/3s him) : she give/3s him two five cent/s for the : bunny and the dog.,and then he gives him she gives him two five cents for the bunny and the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and they : got the : two balloon/s.,and they got the two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and they both were : play/ing with their balloon/s.,and they both were playing with their balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,and they : had a lot of fun with them.,and they had a lot of fun with them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,the : doctor is smile/ing[~!_laughing].,the doctor is smiling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/726.slt,that is the end [+_bch].,that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(um) there is one giraffe and a[EW:an] elephant.,um there is one giraffe and a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(the) (the) (the) the elephant is bounce/ing a ball.,the the the the elephant is bouncing a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and then : (the) the ball fell in the water[-:].,and then the the ball fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and the giraffe swimmed|swim[EW:swam] *to get it [EU].,and the giraffe swimmed get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and then the giraffe got it.,and then the giraffe got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and elephant was surprise/ed.,and elephant was surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and then that is the end [+_bch].,and then that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,one (elepha) elephant (was) was look/ing at the water[-:] : and was go/ing to go in it : with the jump/ing board.,one elepha elephant was was looking at the water and was going to go in it with the jumping board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and then[-:] she said I will go to the jump/ing board.,and then she said I will go to the jumping board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and then (she will) she was run/ing.,and then she will she was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(and then) and then the giraffe said stop.,and then and then the giraffe said stop +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and then she bang/ed her : leg[-:].,and then she banged her leg +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(and) : and she was cry/ing.,and and she was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(and) and the (other) other elephant gave her a bandage.,and and the other other elephant gave her a bandage +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(that is the) (and the) (and then she did not) and the lifeguard whack/ed her.,that is the and the and then she did not and the lifeguard whacked her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and that is the end [+_bch].,and that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,there is one elephant and the giraffe.,there is one elephant and the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(ha) and the giraffe (has a) : had a[EW:an] airplane.,ha and the giraffe has a had a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and then the giraffe : (um um) : flied|fly[EW:flew] it with his hand/s[-:].,and then the giraffe um um flied it with his hands +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and the elephant : said I want to [~_wanna] have a try.,and the elephant said I want to have a try +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(and do not) and do not aim it at the water (the) (the gir) (the) the giraffe said.,and do not and do not aim it at the water the the gir the the giraffe said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and then she aim/ed it at the water.,and then she aimed it at the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(and then) and it almost sunk.,and then and it almost sunk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(and then the) and then the giraffe was angry.,and then the and then the giraffe was angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(and) : and the elephant (was) : was so impress/ed.,and and the elephant was was so impressed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and then the lifeguard : look/ed at it.,and then the lifeguard looked at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and it was float/ing along[-:].,and it was floating along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(and) and then : what : would : we do : (said) said the elephant.,and and then what would we do said said the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and the lifeguard (will) (will) (is) is go/ing to[:_gonna] reach it.,and the lifeguard will will is is going to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and then he could not reach it.,and then he could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(and then) (and then) : (and then) : (and then : uh) and the giraffe was cry/ing.,and then and then and then and then uh and the giraffe was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and the elephant was impress/ed.,and the elephant was impressed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and : then everyone was impress/ed.,and then everyone was impressed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(and then : a lady got um) and then a lady got : (uh a ke) a net to catch it.,and then a lady got um and then a lady got uh a ke a net to catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and then (she) she got it[-:].,and then she she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and then she gave it back[-:].,and then she gave it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and that was the end [+_bch].,and that was the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(one) : one little doggy make/3s : (a p) a sandcastle.,one one little doggy makes a p a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and : then he say/3s let us make some more.,and then he says let us make some more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and then : she make/3s[-:] it.,and then she makes it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and then she pour/3s it on : the sandcastle.,and then she pours it on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,then (it is : uh) her sandcastle is ruin/ed.,then it is uh her sandcastle is ruined +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and : the boy did not want his sandcastle ruin/ed[!].,and the boy did not want his sandcastle ruined +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(um) : one doggy and one rabbit : *are go/ing for a picnic [EU].,um one doggy and one rabbit going for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and[-:] the rabbit : (is) is go/ing to[:_gonna] eat : a sandwich and carrot/s.,and the rabbit is is going to eat a sandwich and carrots +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(and) : and the doggy : (drink/3s) *is eat/ing some sandwich/s and juice [EU].,and and the doggy drinks eating some sandwiches and juice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(and) (and) and then the bunny has a tummyache.,and and and then the bunny has a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and then (it is) the bunny is get/ing (a little) a little wiggly.,and then it is the bunny is getting a little a little wiggly +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(and[-:]) and the puppy (do) dog is is just : drink/ing juice still.,and and the puppy do dog is is just drinking juice still +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and : (the) : the puppy dog ask/3s his grandma to come.,and the the puppy dog asks his grandma to come +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and : (she) she did not want to come[-:].,and she she did not want to come +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(and : the) : and then : she tell|tell[EW:tells] them : about eating too much food[!].,and the and then she tell them about eating too much food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and that is the end [+_bch].,and that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(um) : one little boy has a wagon with a balloon[-:].,um one little boy has a wagon with a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and one bunny cames|come[EW:came] over.,and one bunny cames over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and he say/3s that : balloon is great.,and he says that balloon is great +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and now : the bunny was go/ing to take it off.,and now the bunny was going to take it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and the doggy said no[!].,and the doggy said no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and it float/ed away[-:].,and it floated away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and the puppy was angry.,and the puppy was angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(and) and the rabbit watch/ed (it fly) : fly up.,and and the rabbit watched it fly fly up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and (they went) they went to get : a balloon from that balloon man.,and they went they went to get a balloon from that balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(and) and the bunny said : can I have one balloon please?,and and the bunny said can I have one balloon please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and then : he said that one is five dollar/s.,and then he said that one is five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(and then he) and then (he got) : (the) the big guy with the balloon/s got encouraged.,and then he and then he got the the big guy with the balloons got encouraged +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and then (they went away t) they went to their mother : (and) : and ask/ed her if we can have a balloon[-:] [EU].,and then they went away t they went to their mother and and asked her if we can have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,(and) and she got a little : couraged too [EU].,and and she got a little couraged too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and then she gave him : a dollar and gave : them a balloon[!].,and then she gave him a dollar and gave them a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/463.slt,and that is the end[!] [+_bch].,and that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,here[-:] is a (s) real[EW:really] [-:] bouncy ball[-:].,here is a s real bouncy ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,: and then it went[-:] in the (water[-:]) : swimming pool.,and then it went in the water swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then (he is gr) : he is get/ing[-:] it.,and then he is gr he is getting it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and he got it[-:].,and he got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,(and they are) : and he : give|give[EW:gave] it to a girl.,and they are and he give it to a girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and the guy is too (s) messedy[EW:mess/ed] up.,and the guy is too s messedy up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,(still) : (he still) his shirt is wet.,still he still his shirt is wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,(and his sh) (and his t) and his shoe/s are wet.,and his sh and his t and his shoes are wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and his shirt and (his) his pant/s[-:] wet.,and his shirt and his his pants wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and his hair is wet.,and his hair is wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,then[-:] : he is ready go in the swimming pool[-:].,then he is ready go in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,: ready to turn?,ready to turn +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and (her say) her[EW:she] *is step/ing[-:] : in[-:] : the swimming pool [EU].,and her say her stepping in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then (her w) her[EW:she] runned|run[EW:ran][-:].,and then her w her runned +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then her[EW:she] have|have[EW:has] a[EW:an] owie.,and then her have a owie +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then (her) : her[EW:she] is cry/ing.,and then her her is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and a boy[-:] : say[EW:say/3s] it hurt/3s.,and a boy say it hurts +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,got a bandage.,got a bandage +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then it is : not allow/ed[-:] to go in the swimming pool with the bandaid.,and then it is not allowed to go in the swimming pool with the bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,(uh I got) : no more run/ing[-:].,uh I got no more running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then (he) : he got (a real[-:][!]) : (um : maybe) : maybe (a real[-:]) : (a real) : a real airplane[-:].,and then he he got a real um maybe maybe a real a real a real airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,(and he) and he say[EW:say/3s] : vroom[-:] vroom[-:]!,and he and he say vroom vroom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,(and he) : and[-:] then[-:] the girl grab|grab[EW:grab/3s] at the boy[-:].,and he and then the girl grab at the boy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,then : it go/3s in the : water[-:].,then it goes in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then : he be[EW:is] mad[-:][!].,and then he be mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then his airplane stuck.,and then his airplane stuck +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then here ask.,and then here ask +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then what ?,and then what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,(he) he have|have[EW:has] to get it.,he he have to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and he can not.,and he can not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then[-:][!] : the good (gir) : girl (wanna pass[-:] it) : want/3s to give it.,and then the good gir girl wanna pass it wants to give it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,(her) (him) he cry/ed.,her him he cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and they give it to (the) the boy[-:].,and they give it to the the boy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then he : love/ed it : ever after.,and then he loved it ever after +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,(and : then : he) and then : he built a (sss) (castle[-:]) sandcastle.,and then he and then he built a sss castle sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,can you use your loud voice?,can you use your loud voice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,sandcastle [+_bch].,sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,yeah I heard that yeah tell me about this page.,yeah I heard that yeah tell me about this page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,then[-:] : he put some sand in a sand bucket.,then he put some sand in a sand bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,(and he dump/ed it) : and (uh) he dump/ed it.,and he dumped it and uh he dumped it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then (he) : (he[-:]) (he broked|broke[EW:broke]) : (he broked|broke[EW:broke] the girl/z) (girl/z) (he br) he broke (s) the rabbit/z castle he made.,and then he he he broked he broked the girl's girl's he br he broke s the rabbit's castle he made +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then (he) (her br) he broke the (girl/z) girl/z sandcastle (he) her[EW:she] made[-:].,and then he her br he broke the girl's girl's sandcastle he her made +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,(and) and the rabbit walk/ed.,and and the rabbit walked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,(and he) and he : pack/ed[-:] lunch[-:].,and he and he packed lunch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,(and) and he ate all[-:] : his sandwich.,and and he ate all his sandwich +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,xxx.,x +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then : (he) he ate all[-:] the food.,and then he he ate all the food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and he get|get[EW:got] a stomachache.,and he get a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,(and) (and then the) : (and the rabbit/z mom[-:]) : and the rabbit/z mommy.,and and then the and the rabbit's mom and the rabbit's mommy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,(and then) (the here[?]) the (girl/z) (girl) girl/z mommy[-:] use salt [EU].,and then the here the girl's girl girl's mommy use salt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and now he is a little rabbit.,and now he is a little rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and (he is) a new rabbit walk/ed[-:].,and he is a new rabbit walked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then (he) the girl got a new wagon and a balloon[-:].,and then he the girl got a new wagon and a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then he saw the balloon[-:].,and then he saw the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,(her s) he saw it.,her s he saw it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then[-:] : her[EW:she] yell/ed.,and then her yelled +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then : the boy : (is p) (pull) is tie/ing it off.,and then the boy is p pull is tying it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then it tie/ed[-:] off.,and then it tied off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then : her[EW:she] had none.,and then her had none +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,maybe her[EW:she] be|be[EW:is] (ma) mad[-:].,maybe her be ma mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,they all *are mad [EU].,they all mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,okay louder voice.,okay louder voice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then (her s) : he saw the balloon man.,and then her s he saw the balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then : he want/3s to have a balloon.,and then he wants to have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,then : you see in his (pocket/s) : pocket/s.,then you see in his pockets pockets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then they are line up [EU].,and then they are line up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then [~_EXA:_loud_voice] (he saw) : he saw his mother[-:] and (his) her mother : and (a balloon[-:]) : a balloon.,and then he saw he saw his mother and his her mother and a balloon a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then her[EW:she] give|give[EW:gave] (her) him a[EW:the] money.,and then her give her him a money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,and then : they are have a balloon[-:] [EU].,and then they are have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/567.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,(um the) : a pig : and a girl pig *are : look/ing at the : (three) : three pie[EW:pies] [EU].,um the a pig and a girl pig looking at the three three pie +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,: the boy saw one big egg[?].,the boy saw one big egg +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,then the boy swim|swim[EW:swam].,then the boy swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,then he got it.,then he got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,then he give|give[EW:gave] it to the girl.,then he give it to the girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,the boy : he saw the diving board.,the boy he saw the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,no run/ing.,no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,: the girl runned|run[EW:ran].,the girl runned +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,: then a girl (ss) slip|slip[EW:slipped].,then a girl ss slip +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,then a girl hurt her knee.,then a girl hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,then (a swimming : is) : the swimming (pe) man is taking a bandaid [EU].,then a swimming is the swimming pe man is taking a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,then it all came [EU].,then it all came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,: then he read the sign no run/ing.,then he read the sign no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,the boy : is stand/ing with the girl.,the boy is standing with the girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,: the boy got a[EW:an] airplane.,the boy got a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,and the girl (t) take|take[EW:took] a[EW:an] airplane off his hand [EU].,and the girl t take a airplane off his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,(then a g) then he fell in the water.,then a g then he fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,then a boy is angry.,then a boy is angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,then a swimming man is [<~?_washing]watching[>~?_washing].,then a swimming man is watching +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,then swimming man is : talk/ing with the girl.,then swimming man is talking with the girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,the swimming man is : try/ing to get it.,the swimming man is trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,then[-:] is go/ing it down [EU].,then is going it down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,then a swimming girl try/ed to get it.,then a swimming girl tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,and the swimming girl did get it.,and the swimming girl did get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,and the swimming girl gave it to the boy.,and the swimming girl gave it to the boy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,(then a swimming girl) and (then) then the boy (is) is happy.,then a swimming girl and then then the boy is is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,there is a : boy and a girl : build/ing the (castle) sandcastle.,there is a boy and a girl building the castle sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,the boy is dig|dig[EW:digging] more sand.,the boy is dig more sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,and the girl build|build[EW:builds] it.,and the girl build it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,then a boy put all the sand on top of the sandcastle.,then a boy put all the sand on top of the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,then the sandcastle is broke[EW:broken] all (day) down.,then the sandcastle is broke all day down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,and one is still up.,and one is still up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,then he build|build[EW:builds] it back.,then he build it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,the boy and the girl *are walk/ing down to buy stuff [EU].,the boy and the girl walking down to buy stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,they *are going to [~_gonna] *a picnic [EU].,they going to picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,the boy got a carrot and the : (uh : uh sss) sandwich : and a juice.,the boy got a carrot and the uh uh sss sandwich and a juice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,and he *was hungry [EU].,and he hungry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,: then he *was fat [EU].,then he fat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,: then (he stand) (he s) he try/ed to stand up.,then he stand he s he tried to stand up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,except he (not) is about[?] to stand up.,except he not is about to stand up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,: (then he da) then a doctor (he) a girl ran to him.,then he da then a doctor he a girl ran to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,hey : like this.,hey like this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,(then) : (then) then he pull/ed the doctor (where) where the boy is fat.,then then then he pulled the doctor where where the boy is fat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,: then a doctor try/ed to fix him.,then a doctor tried to fix him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,: then (he) a boy walk|walk[EW:walked] : (to hi) to : him.,then he a boy walk to hi to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,the girl (get : go) go with his store[?] [EU].,the girl get go go with his store +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,and a boy ran there.,and a boy ran there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,then (the girl ff) a boy try/ed to get a balloon.,then the girl ff a boy tried to get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,then a girl *was stand/ing [EU].,then a girl standing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,then a boy go [<~_no]under the[>~_no] (ss) beside it : and try/ed to put *it up [EU].,then a boy go under the ss beside it and tried to put up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,the balloon went up.,the balloon went up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,and the girl is bad.,and the girl is bad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,there is[EW:are] more balloon[EW:balloons].,there is more balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,: and a boy ran.,and a boy ran +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,and he (ff) got it.,and he ff got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,then he tell|tell[EW:told] the man I have one balloon?,then he tell the man I have one balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,: if I (ff) (balla) bill five dollar [EU].,if I ff balla bill five dollar +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,: and : (uh) then the xx is boy next time [EU].,and uh then the is boy next time +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,(then the) then there is a doctor for the story.,then the then there is a doctor for the story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,"(ask/ed) (he ask/ed) he ask/ed the doctor (dd) do you (take the) take him and xx [~_sounds_like_""top_so""] [EU].",asked he asked he asked the doctor dd do you take the take him and +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,and what?,and what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,and : he did.,and he did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,then he get[EW:gave] him (five) : five dollar/s.,then he get him five five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,: then he got two balloon[EW:balloons].,then he got two balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/727.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,a giraffe met the elephant.,a giraffe met the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the elephant drop/ed (a) the ball in a : pool.,the elephant dropped a the ball in a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the giraffe went to get the ball.,the giraffe went to get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the giraffe got the ball.,the giraffe got the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the elephant was happy.,the elephant was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the giraffe and the elephant want/ed to go swim/ing.,the giraffe and the elephant wanted to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the elephant point/ed over there.,the elephant pointed over there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,she ran.,she ran +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,she fell and hurt her knee.,she fell and hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the lifeguard came run/ing.,the lifeguard came running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,he put a bandaid on the (s) scar.,he put a bandaid on the s scar +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,he put her down on a bench.,he put her down on a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,he said you should not have been run/ing.,he said you should not have been running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the giraffe met the elephant.,the giraffe met the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,he was play/ing with an airplane.,he was playing with an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the elephant snatch/ed the airplane.,the elephant snatched the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,she threw it.,she threw it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,and it land/ed in the pool.,and it landed in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the giraffe got very mad.,the giraffe got very mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the lifeguard came.,the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the elephant told him what happen/ed.,the elephant told him what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,he could not reach.,he could not reach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,he shrug/ed his shoulder/s.,he shrugged his shoulders +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,(then another l) then a woman came by and (got a) has a net.,then another l then a woman came by and got a has a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,she grab/ed : the airplane with (a) the net.,she grabbed the airplane with a the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,she gave it back to the giraffe.,she gave it back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the giraffe was happy.,the giraffe was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,a bunny met the dog and want/ed to play in the sandbox.,a bunny met the dog and wanted to play in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,they start/ed build/ing a sandcastle together.,they started building a sandcastle together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the bunny pour/ed sand on : the sandcastle : which broke the sandcastle.,the bunny poured sand on the sandcastle which broke the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,(the pup) the dog was very sad.,the pup the dog was very sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,and the rabbit felt bad too.,and the rabbit felt bad too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the rabbit and the dog met each other again.,the rabbit and the dog met each other again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,they start/ed to have a picnic.,they started to have a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,that rabbit ate too much.,that rabbit ate too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,then the rabbit got sick.,then the rabbit got sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the dog went to : (the um) a doctor nearby.,the dog went to the um a doctor nearby +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,he pull/ed the doctor to the rabbit.,he pulled the doctor to the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the doctor help/ed the rabbit.,the doctor helped the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,she took the rabbit back home.,she took the rabbit back home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,and the rabbit felt a lot better.,and the rabbit felt a lot better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the rabbit met the dog again.,the rabbit met the dog again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the dog was pull/ing a wagon with a balloon attach/ed to it.,the dog was pulling a wagon with a balloon attached to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the rabbit untie/ed the balloon.,the rabbit untied the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the balloon float/ed away.,the balloon floated away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the dog got very angry.,the dog got very angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,(they saw a man) the rabbit saw a man sell/ing balloon/s.,they saw a man the rabbit saw a man selling balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,he ask|ask[EW:asked] if he could have one of the balloon/s.,he ask if he could have one of the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the man said no they cost five cent/s.,the man said no they cost five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,and the rabbit did not have any money.,and the rabbit did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,(he went up) (and they both were) the rabbit was very sad.,he went up and they both were the rabbit was very sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,he went up to : the doctor.,he went up to the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,he asked if he could have (um se) five cent/s.,he asked if he could have um se five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,she gave him five cent/s.,she gave him five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,and they got (the) some balloon/s.,and they got the some balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/851.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,there was this elephant bounce/ing a balloon.,there was this elephant bouncing a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,and then : there was a giraffe (com) come/ing by.,and then there was a giraffe com coming by +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,and then : (he wan) he want/ed to see (the) (the) the rubber ball for a minute.,and then he wan he wanted to see the the the rubber ball for a minute +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,: and then : it fell (into the water) (into this) (into) into a pool.,and then it fell into the water into this into into a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,: and the giraffe was swim/ing for it.,and the giraffe was swimming for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,and then : he got it.,and then he got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,: and (then her) : (the) the elephant said thank you.,and then her the the elephant said thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,and her[EW:she] got back : the ball.,and her got back the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(um) there was a giraffe and a[EW:an] elephant : want/ing to run.,um there was a giraffe and a elephant wanting to run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(and then : he) and then they were start/ing to run.,and then he and then they were starting to run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,and then they what?,and then they what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,and then they start/ed to run [+_bch].,and then they started to run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(and then) : and they runned|run[EW:ran] [-:].,and then and they runned +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,: (and) and then (th) : the elephant that want/ed to go : for the run (got a b) he got a booboo [~_laughs].,and and then th the elephant that wanted to go for the run got a b he got a booboo +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(an) and then : there was a guy : what came at it [EU].,an and then there was a guy what came at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(and then) and she was cry/ing.,and then and she was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,and the guy was put/ing on the bandage.,and the guy was putting on the bandage +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,: and then : they put on the bandage.,and then they put on the bandage +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,: (and) and then : they got in trouble (because it) because there was a sign that said do not run.,and and then they got in trouble because it because there was a sign that said do not run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(th) there was this giraffe that had a[EW:an] airplane.,th there was this giraffe that had a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(and) and there was a[EW:an] elephant that want/ed it.,and and there was a elephant that wanted it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,and he was (sort of : and) pretend/ing he was throw[EW:throwing] it in the sky.,and he was sort of and pretending he was throw it in the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(and then) and then the elephant took it.,and then and then the elephant took it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,: (and then) and then it fell into the water.,and then and then it fell into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,: (and then) : and then the giraffe got mad at the elephant.,and then and then the giraffe got mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(and then) (and then) : and the elephant (got) : (try/ed) try/ed to : get it.,and then and then and the elephant got tried tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(an) : (and he was) : and then the (elephant : yuar) yardgirl elephant told the boy elephant (tha) that it went into the water.,an and he was and then the elephant yuar yardgirl elephant told the boy elephant tha that it went into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,and he was try/ing to get it.,and he was trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,: (and then the eleph) and (then gira) (the gir) the giraffe was cry/ing[-:].,and then the eleph and then gira the gir the giraffe was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,and then : a lady come/3s along.,and then a lady comes along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(and try/ed to ge) she was try/ing to get it.,and tried to ge she was trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,: and her[EW:she] got it.,and her got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,and (gave it to) and : (her) her[EW:she] gave it to : the giraffe again.,and gave it to and her her gave it to the giraffe again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(and then) and then he hug/ed the airplane.,and then and then he hugged the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,once upon a time there was this dog make/ing a castle.,once upon a time there was this dog making a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,: and the dog was hold/ing it still[!].,and the dog was holding it still +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,: (and) and the bunny pour/ed some sand on it.,and and the bunny poured some sand on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,: and then (it) it wreck/ed (his) his castle.,and then it it wrecked his his castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,and then : (he wa) he was cry/ing.,and then he wa he was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,there was this bunny go/ing for a picnic.,there was this bunny going for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,and (there was : a) there was a doggy that said hi to him.,and there was a there was a doggy that said hi to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,and (he want/ed to go for a pic) he want/ed (to) : to go with him.,and he wanted to go for a pic he wanted to to go with him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(and then the) (and then got to his) and he[?] had a picnic.,and then the and then got to his and he had a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(and then) : and then (th) the bunny ate all the food : (and) and kind of got dizzy or something.,and then and then th the bunny ate all the food and and kind of got dizzy or something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,: and then (there was this guy come/ing along) there was a doctor come/ing along.,and then there was this guy coming along there was a doctor coming along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(and the) (and) and the doggy was pull/ing him.,and the and and the doggy was pulling him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,: (and then) (and he gots :) : and he got to the bunny.,and then and he gots and he got to the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(and) : and (he) he got (him better) that bunny better.,and and he he got him better that bunny better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(um) there was this dog pull/ing : a wagon with a balloon on it.,um there was this dog pulling a wagon with a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(and the bunny) and there was a bunny come/ing along.,and the bunny and there was a bunny coming along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,and (he wan) he want/ed to have the balloon.,and he wan he wanted to have the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,and then (he was) (he) he (untie/ed it) was untie/ing it.,and then he was he he untied it was untying it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,and then it went away.,and then it went away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(and) and the dog got mad at the bunny.,and and the dog got mad at the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,and then they went back to the balloon stand : (where) where the balloon was taken from.,and then they went back to the balloon stand where where the balloon was taken from +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(and) (and the bunny) : (and the bun) and then the bunny said (I want) I want a balloon.,and and the bunny and the bun and then the bunny said I want I want a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,and : then he (pul) pull/ed down and said five cent/s or something.,and then he pul pulled down and said five cents or something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(and then) (and then) : (and) and then the bunny did not have five cent/s.,and then and then and and then the bunny did not have five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(and then the) and then the doctor come/3s along.,and then the and then the doctor comes along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(and) (and) (and) and the bunny said : I want one of those balloon/s [~_laughing].,and and and and the bunny said I want one of those balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,the bunny said what?,the bunny said what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,I want one of those balloon/s [+_bch].,I want one of those balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,(and) and then the doctor paid for the balloon/s.,and and then the doctor paid for the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,and then (they got the) (they got one of the balloon) he got two balloon/s both of them.,and then they got the they got one of the balloon he got two balloons both of them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/520.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,(one day) : [~_I_do_n(o)t_know_if_that_(i)s_a_coach_or_what] : one day : two friend/s met each other at the pool.,one day one day two friends met each other at the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and then a ball went in the pool[-:].,and then a ball went in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,(and they) and then they look/ed surprise/ed after it fell in.,and they and then they looked surprised after it fell in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,so one of them jump/ed in and went to : catch the ball.,so one of them jumped in and went to catch the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and one of them were[EW:was] cry/ing.,and one of them were crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,(and then the) and then the person that swam in : got the ball.,and then the and then the person that swam in got the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,(and sh) and then when : she got it back the girl : (she) she was really happy.,and sh and then when she got it back the girl she she was really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,so (then) : then the boy climb/ed out of the pool : and start/ed smile/ing too.,so then then the boy climbed out of the pool and started smiling too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,one day : some people were look/ing at the pool.,one day some people were looking at the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and they want/ed to jump (in um) in the pool on the : springboard.,and they wanted to jump in um in the pool on the springboard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,so the girl ran over to it.,so the girl ran over to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and the boy was run/ing after her.,and the boy was running after her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,but then she fell and hurt her knee and start/ed cry/ing.,but then she fell and hurt her knee and started crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and : the lifeguard heard : her cry/ing.,and the lifeguard heard her crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,(so she) : so the lifeguard (came and) : came look/ing at it : and : put a bandaid on it.,so she so the lifeguard came and came looking at it and put a bandaid on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and (then put her) and : then they put her on the bench.,and then put her and then they put her on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and then the lifeguard : point/ed at the no run/ing sign.,and then the lifeguard pointed at the no running sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and she look/ed embarrasse/ed.,and she looked embarrasseed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,one day : the friend/s met each other.,one day the friends met each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,(and : the) and (the friend) : the giraffe said : I got an airplane.,and the and the friend the giraffe said I got an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,do you want to fly it with me ?,do you want to fly it with me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and the girl said yes.,and the girl said yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,(and then she) and then she start/ed look/ing at it when the boy flied|fly[EW:flew] it.,and then she and then she started looking at it when the boy flied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and then the girl (lo) : took it away from him.,and then the girl lo took it away from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and : the boy start/ed get/ing freak/ed.,and the boy started getting freaked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and then the girl drop/ed it in the pool[-:].,and then the girl dropped it in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and the boy look/ed a little sad.,and the boy looked a little sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and then the boy start/ed get/ing mad at the girl.,and then the boy started getting mad at the girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and the girl was : start/ing to get a little sad.,and the girl was starting to get a little sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,so the lifeguard came[-:] and : look/ed at : it.,so the lifeguard came and looked at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and : both of them were : a little bit cry/ing.,and both of them were a little bit crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and then (the gir) the elephant told (the other elephant) the life (gald) guard : that (the) (the) she was fly/ing the airplane.,and then the gir the elephant told the other elephant the life gald guard that the the she was flying the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and the airplane flew in the : pool[-:].,and the airplane flew in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,so the lifeguard (tri) try/ed to catch it.,so the lifeguard tri tried to catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and he did.,and he did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,but then (he) it went a little farther : after he touch/ed it.,but then he it went a little farther after he touched it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and then : another person came : and had a net to catch it.,and then another person came and had a net to catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,so the other : person that came [~_yawns] put the net in and caught it : and then gave it back to the person that it belong/ed[!] to.,so the other person that came put the net in and caught it and then gave it back to the person that it belonged to +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,so then : he was really happy.,so then he was really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and the girl was too.,and the girl was too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,one day two friend/s : the : dog and the rabbit met each other at the park.,one day two friends the dog and the rabbit met each other at the park +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,(and they) and the dog ask/ed (the) : the rabbit do you want to [~_wanna] make a : [~_I_do_n(o)t_know_what_they_(a)re_gonna] sandcastle with me?,and they and the dog asked the the rabbit do you want to make a sandcastle with me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,so they made a sandcastle : with a bucket (and the) and[-:] : a spoon.,so they made a sandcastle with a bucket and the and a spoon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and the (dog wa) dog was pat/ing it down.,and the dog wa dog was patting it down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and then the rabbit put sand all over it.,and then the rabbit put sand all over it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and the rabbit broke it when she did that.,and the rabbit broke it when she did that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and then the : dog start/ed cry/ing.,and then the dog started crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and the : bunny look/ed embarrasse/ed.,and the bunny looked embarrasseed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,one[-:] day[-:] the dog and the rabbit met each other.,one day the dog and the rabbit met each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and they were both go/ing on a picnic.,and they were both going on a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,so they had their picnic together.,so they had their picnic together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and the dog did not have that much.,and the dog did not have that much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,but the rabbit did.,but the rabbit did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,the rabbit got too full.,the rabbit got too full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,the dog did not.,the dog did not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,the rabbit had cake and all that.,the rabbit had cake and all that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and then he start/ed get/ing a stomachache.,and then he started getting a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,(the rabbit) and the dog was still sit/ing there eat/ing his sandwich and : drink/ing his drink.,the rabbit and the dog was still sitting there eating his sandwich and drinking his drink +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and then[-:] the dog (ra) saw a doctor and ran to the doctor and told : him that (the[-:]) the rabbit was feel/ing sick.,and then the dog ra saw a doctor and ran to the doctor and told him that the the rabbit was feeling sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and the doctor was a rabbit : too.,and the doctor was a rabbit too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,so the dog start/ed pull/ing the rabbit over to her.,so the dog started pulling the rabbit over to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and the : rabbit check/ed the rabbit.,and the rabbit checked the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and : it did not look like[~!_yawning] (he) she was feel/ing very well.,and it did not look like he she was feeling very well +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,so : the doctor took (the) the rabbit : to home or the doctor place.,so the doctor took the the rabbit to home or the doctor place +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,one day (the) a rabbit and a dog : met each other.,one day the a rabbit and a dog met each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and the : dog had a balloon on his wagon.,and the dog had a balloon on his wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and[-:] the rabbit ask/ed what is that?,and the rabbit asked what is that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and then the dog told : him it is a balloon.,and then the dog told him it is a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and then the rabbit want/ed to untie it to put it on him.,and then the rabbit wanted to untie it to put it on him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,the dog was get/ing freak/ed.,the dog was getting freaked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and then it went up.,and then it went up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and they both start/ed try/ing to get it.,and they both started trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and then the dog got really[!] really mad.,and then the dog got really really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and the rabbit was still look/ing at it [~_yawns].,and the rabbit was still looking at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,but there was other balloon/s because the guy was hold/ing them.,but there was other balloons because the guy was holding them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and the dog was still back : there mad at the rabbit.,and the dog was still back there mad at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,but the rabbit was look/ing at the balloon/s.,but the rabbit was looking at the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,so the rabbit went over there and ask/ed if they could have (a) two balloon/s.,so the rabbit went over there and asked if they could have a two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and then : (he) he said you can not have one unless you pay me : ten cent/s because you are get/ing two balloon/s.,and then he he said you can not have one unless you pay me ten cents because you are getting two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,so (th) they both felt sad because they (weren) could not get one.,so th they both felt sad because they weren could not get one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and the person was really (hapn) happy that was (get/ing) give/ing the balloon/s away.,and the person was really hapn happy that was getting giving the balloons away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and then the doctor[!] was there.,and then the doctor was there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and the rabbit start/ed run/ing to the doctor.,and the rabbit started running to the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and the rabbit ask/ed the doctor can you buy us a : balloon[~!__yawning]?,and the rabbit asked the doctor can you buy us a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and the doctor said okay.,and the doctor said okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and then they were both really really really happy.,and then they were both really really really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and they like/ed their balloon/s so much.,and they liked their balloons so much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/945.slt,and the doctor was really happy.,and the doctor was really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,he is play/ing ball with her.,he is playing ball with her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,the ball fall/3s down[-:].,the ball falls down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,he is go/ing to jump in.,he is going to jump in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,(he) he jump/ed in.,he he jumped in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,and he got the ball.,and he got the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,he gave the ball to her : the elephant.,he gave the ball to her the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,then the elephant : was in love with him.,then the elephant was in love with him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,they are go/ing to the diving board.,they are going to the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,she want/3s to run to the diving board?,she wants to run to the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,she trip/3s : and fell[-:] [EU].,she trips and fell +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,and she got hurt.,and she got hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,and she got a bruise[-:].,and she got a bruise +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,and the lifeguard gave her a bandage.,and the lifeguard gave her a bandage +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,and she sat down.,and she sat down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,and the lifeguard was mad.,and the lifeguard was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,[~_(o)kay] he is go/ing to play with his airplane with her.,he is going to play with his airplane with her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,he is play/ing with it.,he is playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,she take/3s it.,she takes it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,and she play/3s with it.,and she plays with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,then she : throwed|throw[EW:threw] it.,then she throwed it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,and it fell in the water.,and it fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,then he got mad.,then he got mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,then the lifeguard came.,then the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,then she told him : the matter [EU].,then she told him the matter +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,and he try/ed to reach it.,and he tried to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,but he could not.,but he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,and there was no way how[-:] : to [EU].,and there was no way how to +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,but she[-:] got the : stick that : bring/3s thing/s out.,but she got the stick that brings things out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,and she brought it out.,and she brought it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,she brought it out.,she brought it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,and he want|want[EW:wants] [-:] to play with it again.,and he want to play with it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,and he play/ed with it.,and he played with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,the rabbit and the dog want to make a sandcastle.,the rabbit and the dog want to make a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,and he start/ed shovel/ing.,and he started shoveling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,and he start/ed build/ing.,and he started building +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,and he dump/ed [EU].,and he dumped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,and it mess/ed up.,and it messed up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,then he try/ed to rebuild it.,then he tried to rebuild it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,but : (i) he could not.,but i he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,they were go/ing to have a picnic.,they were going to have a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,and the : rabbit brought lot/s of stuff instead of the dog [EU].,and the rabbit brought lots of stuff instead of the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,but then he got a stomachache.,but then he got a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,then : he got dizzy.,then he got dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,(then he call) then he brought the nurse to[-:] help him.,then he call then he brought the nurse to help him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,then the nurse was go/ing to help him.,then the nurse was going to help him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,then she help/ed him.,then she helped him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,then he walk/ed with him back.,then he walked with him back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,he was go/ing to have a balloon sale.,he was going to have a balloon sale +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,and the dog want/ed one.,and the dog wanted one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,and the rabbit took it off.,and the rabbit took it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,but then he try/ed to reach it the dog [EU].,but then he tried to reach it the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,then he got mad[-:].,then he got mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,then he was go/ing to get a balloon [-].,then he was going to get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,then he want/ed the twenty five cent one [EU]?,then he wanted the twenty five cent one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,(um) but he could not get it.,um but he could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,then he ran : off[-:].,then he ran off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,(then he was go/ing to get another) then he was go/ing get the nurse.,then he was going to get another then he was going get the nurse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,then he told[-:] her.,then he told her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,then he gave her it.,then he gave her it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/657.slt,then they got balloon/s.,then they got balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,I see an elephant : stand/ing by a giraffe bounce/ing a ball : by a swimming pool.,I see an elephant standing by a giraffe bouncing a ball by a swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then[-:] the ball (go) fall/3s into the water.,then the ball go falls into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then the giraffe hop/3s in and try/3s to swim for it.,then the giraffe hops in and tries to swim for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then the giraffe give/3s the elephant the ball.,then the giraffe gives the elephant the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then : the : giraffe get/3s out.,then the giraffe gets out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and the elephant is happy.,and the elephant is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,(They are) the giraffe and elephant is[EW:are] stand/ing by the pool.,They are the giraffe and elephant is standing by the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and : there is a no run/ing sign.,and there is a no running sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then : the : elephant : start/3s : to run : and (sh) (g) go/3s faster and[-:] start/3s to slip.,then the elephant starts to run and sh g goes faster and starts to slip +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,(then she) then the elephant fall/3s.,then she then the elephant falls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and she hurt her : knee.,and she hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and then : the giraffe come/3s run/ing.,and then the giraffe comes running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then : the lifeguard come/3s.,then the lifeguard comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and the (gi) : giraffe and elephant are sit/ing down.,and the gi giraffe and elephant are sitting down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,the lifeguard put/3s a bandage : on : the elephant/z knee.,the lifeguard puts a bandage on the elephant's knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then the lifeguard : pull/3s her up to a bench so she can rest.,then the lifeguard pulls her up to a bench so she can rest +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then the lifeguard point/3s to the no run/ing sign.,then the lifeguard points to the no running sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and the elephant : look/3s kind of embarrasse/ed.,and the elephant looks kind of embarrasseed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,The elephant is stand/ing by the pool with : her friend the giraffe.,The elephant is standing by the pool with her friend the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and he is hold/ing a[-:] toy airplane.,and he is holding a toy airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then the giraffe start/3s move/ing the airplane : around.,then the giraffe starts moving the airplane around +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and the elephant look/3s surprise/ed.,and the elephant looks surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then the elephant grab/3s the[-:] airplane out of : the[-:] giraffe/z hand/s.,then the elephant grabs the airplane out of the giraffe's hands +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then she drop/3s it in the water.,then she drops it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and[-:] the giraffe look/3s kind of : upset : and surprise/ed.,and the giraffe looks kind of upset and surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then it start/3s to sink.,then it starts to sink +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and the giraffe look/3s really upset.,and the giraffe looks really upset +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and : the[-:] elephant would kind of be like : (um) embarrasse/ed and :[-:] kind of[-:] mad at herself.,and the elephant would kind of be like um embarrasseed and kind of mad at herself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then the lifeguard come/3s.,then the lifeguard comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and he see/3s[-:] the airplane sink/ing.,and he sees the airplane sinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then : the : elephant start/3s talk/ing : to the lifeguard.,then the elephant starts talking to the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,the lifeguard try/3s to reach it.,the lifeguard tries to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,but he can not.,but he can not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,so[-:] : then : the giraffe start/3s cry/ing because : it was : a toy of his.,so then the giraffe starts crying because it was a toy of his +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and : he really like/ed it.,and he really liked it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then : another elephant come/3s by with (a) : a net : that has a long pole attach/ed to it.,then another elephant comes by with a a net that has a long pole attached to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then she (s) : try/3s to scoop the airplane up in it.,then she s tries to scoop the airplane up in it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,she get/3s the airplane out of the water.,she gets the airplane out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and : the giraffe look/3s very happy.,and the giraffe looks very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,now he is hold/ing his airplane.,now he is holding his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and[-:] he : look/3s very happy.,and he looks very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,there is a : dog sit/ing in a sandbox that is build[EW:building] a : sandcastle.,there is a dog sitting in a sandbox that is build a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and then a rabbit come/3s.,and then a rabbit comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then the rabbit start/3s build/ing : his own sandcastle : as the dog work/3s on her/z.,then the rabbit starts building his own sandcastle as the dog works on her's +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then the rabbit take/3s a bucket of sand and pour/3s it over : the dog/z castle.,then the rabbit takes a bucket of sand and pours it over the dog's castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,now the castle is ruin/ed.,now the castle is ruined +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and they both look upset.,and they both look upset +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,the dog is cry/ing because : it is ruin/ed.,the dog is crying because it is ruined +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and : the rabbit look/3s : like she[-:] : did not mean to do it on purpose.,and the rabbit looks like she did not mean to do it on purpose +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,but : she is kind of embarrasse/ed and sad.,but she is kind of embarrasseed and sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,there is[-:] a rabbit and a dog : look/ing for a picnic site.,there is a rabbit and a dog looking for a picnic site +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and they have picnic basket/s in their hand.,and they have picnic baskets in their hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then they : sit down.,then they sit down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and the rabbit is eat/ing all this stuff and has all this stuff.,and the rabbit is eating all this stuff and has all this stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and the dog just got out a sandwich.,and the dog just got out a sandwich +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,now the rabbit is finish/ed eat/ing and look/3s very stuff/ed.,now the rabbit is finished eating and looks very stuffed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and the dog just start/3s eat/ing.,and the dog just starts eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,the rabbit is not feel/ing too well now : and : do/3s not look too good.,the rabbit is not feeling too well now and does not look too good +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then[-:] a nurse come/3s along.,then a nurse comes along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and the dog : tell/3s her that : his friend need/3s help.,and the dog tells her that his friend needs help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and : then she start/3s pull/ing the nurse over to their picnic basket lunch place.,and then she starts pulling the nurse over to their picnic basket lunch place +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then the nurse start/3s : take/ing his temperature as he lie/3s down.,then the nurse starts taking his temperature as he lies down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,now the rabbit is better.,now the rabbit is better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and : they are go/ing back home.,and they are going back home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,there is[-:] a : dog pull/ing a : wagon : with a balloon tie/ed onto it.,there is a dog pulling a wagon with a balloon tied onto it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and : a rabbit is come/ing.,and a rabbit is coming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,he look/3s at the balloon.,he looks at the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,: and : the : dog look/3s curious.,and the dog looks curious +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then the : rabbit start/3s untie/ing the balloon from the wagon.,then the rabbit starts untying the balloon from the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then the balloon float/3s away as they try to reach it.,then the balloon floats away as they try to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,now the : dog is very mad at the rabbit.,now the dog is very mad at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,(then the ss) then the rabbit see/3s : a : man sell/ing more balloon/s.,then the ss then the rabbit sees a man selling more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then : the : rabbit : want/3s to buy one from him.,then the rabbit wants to buy one from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and then he see/3s that they are five cent/s.,and then he sees that they are five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and : the rabbit do/3s not have any money.,and the rabbit does not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,so : they can not buy any balloon/s.,so they can not buy any balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and : (the) they both look sad.,and the they both look sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,then the rabbit : go/3s to see the nurse.,then the rabbit goes to see the nurse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and the dog stand/3s by the man sell/ing balloon/s.,and the dog stands by the man selling balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,: the rabbit point/3s to the man sell/ing balloon/s and : tell/3s the nurse : that they do not have any money and they can not buy one.,the rabbit points to the man selling balloons and tells the nurse that they do not have any money and they can not buy one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and then the nurse pay/3s : for : the balloon/s.,and then the nurse pays for the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and : she bought one for both of them.,and she bought one for both of them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,now they both have their own balloon/s.,now they both have their own balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/941.slt,and they are happy.,and they are happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,I do not know [+_bch]!,I do not know +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,I do not know that one [+_bch].,I do not know that one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,What happen/3s in this story ?,What happens in this story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,I do not know [+_bch].,I do not know +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,I do not know [+_bch].,I do not know +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,"I guess there is no story in this book at all then, eh.",I guess there is no story in this book at all then eh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,Empty page/s?,Empty pages +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,I do not know this [~_pages_are_being_turned] [+_bch].,I do not know this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,I guess that the end of that one.,I guess that the end of that one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,He is : go/ing to the diving board.,He is going to the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,and (they star) she is walk/ing.,and they star she is walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,(and she sl) (sh) (its) and it is slippery!,and she sl sh its and it is slippery +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,and she fell and hurt her knee.,and she fell and hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,(and he xxxx) (and : she) it was a bandaid/s [EU].,and he and she it was a bandaids +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,(sh) (the) (there is a bandaid) and there is : a (ta) bandaid on her foot.,sh the there is a bandaid and there is a ta bandaid on her foot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,and (she is) she is sit/ing on the bench.,and she is she is sitting on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,(he) he gots[EW:has] a[EW:an] airplane.,he he gots a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,and he is go/ing to[:_gonna] throw it at the water.,and he is going to throw it at the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,(and he) (and he is) and (he is) she is[!] go/ing to[:__gonna] throw.,and he and he is and he is she is going to throw +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,and it is at the water!,and it is at the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,and it is wet !,and it is wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,and he[!] was : in it.,and he was in it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,and his airplane : was : not.,and his airplane was not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,it was snow/ing!,it was snowing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,(and) and his boat was in the water.,and and his boat was in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,and he can not reach[!] it.,and he can not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,and how they reach : with the net [EU].,and how they reach with the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,the net will help.,the net will help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,(he gots) (he gots his airplane) (and he) and he gots|got[EW:got] his airplane back.,he gots he gots his airplane and he and he gots his airplane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,One time (wh) when they : >,One time wh when they +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,I can not see the picture/s : one day [+..].,I can not see the pictures one day +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,do not know [~_!] [+_bch].,do not know +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,okay let us try the next page.,okay let us try the next page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,: What happen/3s in the story?,What happens in the story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,I do not know[!] [+_bch].,I do not know +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,: do you want me to turn the page again?,do you want me to turn the page again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,yeah [+_bch].,yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,: I do not know [+_bch].,I do not know +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,: I do not [+_bch].,I do not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,Look at the picture/s and tell me what you think is happen/ing in the story.,Look at the pictures and tell me what you think is happening in the story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,sit/ing there in[?] to the castle [EU].,sitting there in to the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,it come|come[EW:came] down.,it come down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,he is fix/ing the castle.,he is fixing the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,and then : no picture/s [+_bch].,and then no pictures +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,"[~_child_not_responsive,_continually_repeated_I_don't_know,_the_examiner_is_on_the_second_page_at_this_point].", +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,"it is your story, you get to decide what is in there.",it is your story you get to decide what is in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,They are eat/ing.,They are eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,The other one has a tummyache.,The other one has a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,he got sick[?] (sh).,he got sick sh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,he got tire/ed and sick.,he got tired and sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,I do not know.,I do not know +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,I do not know[!] [+_bch].,I do not know +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,I do not know [+_bch].,I do not know +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,I do not know [+_bch].,I do not know +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,I do not know [+_bch].,I do not know +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,what happen/3s in the story?,what happens in the story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,I do not know [+_bch].,I do not know +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,(he is pulli) (he is pu) she is pull/ing the wagon.,he is pulli he is pu she is pulling the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,there is a balloon on the wagon.,there is a balloon on the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,and it is tie/ed up.,and it is tied up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,and that balloon got up to the sky.,and that balloon got up to the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,he is look/ing up to the sky.,he is looking up to the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,and there is[EW:are] more[!] balloon/s.,and there is more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,and there is a balloon/s[EW:balloon].,and there is a balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,but there ibe[EW:are] two.,but there ibe two +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,and he just : pocket/s [EU].,and he just pockets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,and went : that number five [~_!] [EU].,and went that number five +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,the balloon/s that blow it up to the sky [EU].,the balloons that blow it up to the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,(and the) (and the) he xx work/ed with that.,and the and the he wrought with that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,(ah : uh).,ah uh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,anything on this page?,anything on this page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,(ah uh) I do not know [+_bch].,ah uh I do not know +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,there was[EW:were] two balloon/s left [~_!].,there was two balloons left +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/573.slt,(there is a) they got a balloon.,there is a they got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,There was a giraffe and an elephant play/ing.,There was a giraffe and an elephant playing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,(and the) and the elephant : was bounce/ing a ball.,and the and the elephant was bouncing a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and the ball fell in the pool.,and the ball fell in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and the zebra try/ed to catch the ball.,and the zebra tried to catch the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,so zebra gave it to the elephant.,so zebra gave it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and the elephant was happy at the zebra.,and the elephant was happy at the zebra +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,The giraffe and elephant left was seen the pool [EU].,The giraffe and elephant left was seen the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and (he is) elephant was sad.,and he is elephant was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and he want/3s to go on the jump thing.,and he wants to go on the jump thing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and he like ran.,and he like ran +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and he hurt hisself[EW:himself].,and he hurt hisself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,but the sign say/3s no run/ing.,but the sign says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,so (he) (the) the lifeguard came.,so he the the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and then the zebra fell in the xx.,and then the zebra fell in the +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and the elephant was start/ing to cry.,and the elephant was starting to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,then he said youch.,then he said youch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,"then he put *on a bandaid, the lifeguard [EU].",then he put a bandaid the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and he felt much better.,and he felt much better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,(and he) and he look/ed at the sign no run/ing.,and he and he looked at the sign no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,The zebra and elephant (were have/ing) were start/ing to have fun.,The zebra and elephant were having were starting to have fun +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,then (they use/ed) [~_I_mean] (giraffe) : (they use/ed) he found a[EW:an] airplane.,then they used giraffe they used he found a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,so he play/ed with it.,so he played with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and then elephant took it (from el um) from zebra.,and then elephant took it from el um from zebra +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and it fell in the water and start/ed to sink.,and it fell in the water and started to sink +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and it sinked|sink[EW:sunk] more.,and it sinked more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and zebra was get/ing mad.,and zebra was getting mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and the lifeguard came and said (theys no) there is[EW:are] no toy/s in this pool allow/ed.,and the lifeguard came and said theys no there is no toys in this pool allowed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and then they said (uh) : it is not as if we did it by accident.,and then they said uh it is not as if we did it by accident +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,so the lifeguard start/ed to get it.,so the lifeguard started to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,he still did not get it.,he still did not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,then they[?] used a net : [~_no] the elephant.,then they used a net the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and (it) (it) it almost got it.,and it it it almost got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and it did got[EW:get] it.,and it did got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,so (he) (he gave it) he gave it to the giraffe.,so he he gave it he gave it to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,then he start/ed to play with it again.,then he started to play with it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,Bunny and : giraffe were build/ing a sandcastle.,Bunny and giraffe were building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,(bunny and) (and his) and bunny and rabbit were build/ing it more.,bunny and and his and bunny and rabbit were building it more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and rabbit put more about the whole sand on it.,and rabbit put more about the whole sand on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,then it brokes|broke[EW:broke].,then it brokes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,the bunny made a mistake.,the bunny made a mistake +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,he said oops.,he said oops +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and then bunny said I am sorry.,and then bunny said I am sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,there was,there was +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,they are look/ing for berry/s.,they are looking for berries +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,(and) but they did not look for berry/s.,and but they did not look for berries +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,they look/ed for food.,they looked for food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,then they got full.,then they got full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,then rabbit ate more.,then rabbit ate more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,so he got dizzy.,so he got dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and then there was a other rabbit.,and then there was a other rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,(he said) he said (uh) can you help my other rabbit?,he said he said uh can you help my other rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and she pull/ed him.,and she pulled him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and : she said that he ate too much.,and she said that he ate too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,rabbit and bunny live/ed together.,rabbit and bunny lived together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,but the other rabbit did not.,but the other rabbit did not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,there is,there is +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,they are (pu) put/ing a balloon on their wagon.,they are pu putting a balloon on their wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,(the) the (bunny) bunny love/ed the balloon.,the the bunny bunny loved the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,then he start/ed to took|take[EW:take] it off.,then he started to took it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,then it flew up in the sky.,then it flew up in the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,then (bunny) (rabbit got) rabbit got mad.,then bunny rabbit got rabbit got mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,then a balloon man came.,then a balloon man came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and he said (do you) (can I) do you want some?,and he said do you can I do you want some +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,then (bunny) rabbit said yes.,then bunny rabbit said yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,it is five dollar/s.,it is five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,so he : did not have money.,so he did not have money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,but he only had (um) only five[!] cent/s.,but he only had um only five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and he did not get a balloon.,and he did not get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and then he start/ed to ask the other : person (if he) if he has money.,and then he started to ask the other person if he if he has money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,and he said : I want to [~_wanna] buy those balloon/s.,and he said I want to buy those balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,then he gave them change.,then he gave them change +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,then he (st) (they) : rabbit and bunny start/ed to play with them.,then he st they rabbit and bunny started to play with them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/721.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,these[-:] two people : a giraffe and a[EW:an] elephant : were go/ing : into the swimming pool and play/ed ball [EU].,these two people a giraffe and a elephant were going into the swimming pool and played ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,then[-:] they cry/ed : because the ball went : down in the river.,then they cried because the ball went down in the river +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,then : the giraffe : went to swim and got[!] it [EU].,then the giraffe went to swim and got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,then : they were : play/ing ball again.,then they were playing ball again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and then they : were : happy as : a[EW:an] elephant can be.,and then they were happy as a elephant can be +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,(they[-:]) these people want to : go swim/ing : in the lake.,they these people want to go swimming in the lake +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,then they found a : jump/ing board.,then they found a jumping board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and they jump/ed in.,and they jumped in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,then : the elephant went swim/ing.,then the elephant went swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and then : (he) : he : run|run[EW:ran].,and then he he run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and then he fell down and made a scrape [EU].,and then he fell down and made a scrape +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,then : he : found a (lifedo) (life) lifeguard.,then he found a lifedo life lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and he put a bandaid/s on it [EU].,and he put a bandaids on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and the elephant cry/ed.,and the elephant cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and : it was over.,and it was over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,then : he : walk/ed[-:].,then he walked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,then[-:] : he : said : to sit down.,then he said to sit down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,that is it [+_bch].,that is it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,these[-:] people went : to swim with : a : toy.,these people went to swim with a toy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,they were fly/ing it.,they were flying it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and : they : flied|fly[EW:flew] it.,and they flied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and then it fell in the lake.,and then it fell in the lake +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and (then it was ss) : then it was (swinking) sink/ing.,and then it was ss then it was swinking sinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and the lifeguard : was try/ing to get it.,and the lifeguard was trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,then : he : got it.,then he got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,then he try/ed[-:] to get it.,then he tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,then : the : giraffe was cry/ing.,then the giraffe was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,then : the : lifeguard : got a net and catched|catch[EW:cought] it.,then the lifeguard got a net and catched it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,then they were happy.,then they were happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,then they got it out.,then they got it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,then[-:] (they) (he) the giraffe was hug/ing it.,then they he the giraffe was hugging it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,two little baby/s were : play/ing in the : sandbox.,two little babies were playing in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and : the other baby was make/ing (a : sun) a sandcastle.,and the other baby was making a sun a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and the : other bunny : spill/ed : little bit : of : sand on the sandcastle.,and the other bunny spilled little bit of sand on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and it broke : in piece/s.,and it broke in pieces +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,then : the : little baby : was try/ing to fix it and see[?].,then the little baby was trying to fix it and see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,then it can not [EU].,then it can not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,two[-:] little : mans[EW:men] went walk/ing with : basket/s.,two little mans went walking with baskets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and : they (ea) ate : food : from the basket.,and they ea ate food from the basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,(then they were) : then they were full[-:].,then they were then they were full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and then they were dizzy.,and then they were dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,they met : a : doctor.,they met a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and : the : man : was : pull/ing : on the doctor/z jacket.,and the man was pulling on the doctor's jacket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and : the doctor said ah.,and the doctor said ah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,(then[-:]) : then they went walk/ing : home.,then then they went walking home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,two[-:] little : people went : to the parade : and with a wagon.,two little people went to the parade and with a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,they[-:] : walk/ed and walk/ed : with the wagon.,they walked and walked with the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and they got tire/ed.,and they got tired +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,the other one stop/ed to tie a balloon onto the : wagon.,the other one stopped to tie a balloon onto the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,but the balloon flew away.,but the balloon flew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and : then the string was only left : til[-:][?] : they found : another : balloon : and : ask/ed [~_pronounced_'axed'] the mans[EW:man] if (h) he can have another : balloon.,and then the string was only left til they found another balloon and asked the mans if h he can have another balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,balloon[-:] : five cents[-:] [EU].,balloon five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and : he did not have five cent/s.,and he did not have five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and[-:] they were sad.,and they were sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and[-:] : they went home.,and they went home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,then[-:] : they stop|stop[EW:stopped] at (another) : another : balloon person.,then they stop at another another balloon person +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and they want/ed to buy a : balloon.,and they wanted to buy a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and then the doctor bought two balloon/s for five cent/s.,and then the doctor bought two balloons for five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/872.slt,and they had their own balloon.,and they had their own balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,once upon a time an elephant and his friend the giraffe were playing with : the elephant/z purple bouncy ball.,once upon a time an elephant and his friend the giraffe were playing with the elephant's purple bouncy ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,(she accidentally drop/ed) when she was bounce/ing the ball she drop/ed it into the swimming pool.,she accidentally dropped when she was bouncing the ball she dropped it into the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,the giraffe was a very good swimmer.,the giraffe was a very good swimmer +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,so he swam up : out and grab/ed the ball.,so he swam up out and grabbed the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,he swam over to the elephant : and : gave it (to the) to her.,he swam over to the elephant and gave it to the to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,and then they decide/ed to play some more.,and then they decided to play some more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,one day the elephant and her friend the giraffe decide/ed to go swim/ing.,one day the elephant and her friend the giraffe decided to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,the elephant ran to the diving board.,the elephant ran to the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,and the giraffe just decide/ed to walk (cause she) because he saw the sign that said no run/ing.,and the giraffe just decided to walk cause she because he saw the sign that said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,the elephant continue/ed run/ing.,the elephant continued running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,then he start/ed run/ing after her.,then he started running after her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,when he[EW:she] was run/ing the elephant slip/ed and scrape/ed her knee.,when he was running the elephant slipped and scraped her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,(uh) the giraffe call/ed the lifeguard.,uh the giraffe called the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,and : he ran over.,and he ran over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,he put a bandage on the mark.,he put a bandage on the mark +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,(and) and then he left (to k) to solve another problem.,and and then he left to k to solve another problem +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,the lifeguard sat her on the bench.,the lifeguard sat her on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,and : the giraffe sat down beside her.,and the giraffe sat down beside her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,(the other) the other lifeguard (dec) : decide/ed to kick her out because she has a bandage on.,the other the other lifeguard dec decided to kick her out because she has a bandage on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,one day the elephant met : (her) : her friend the giraffe at the swimming pool.,one day the elephant met her her friend the giraffe at the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,he was play/ing with his airplane.,he was playing with his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,and the elephant : got hypnotize/ed.,and the elephant got hypnotized +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,she grab/ed it from his hand : and : drop/ed it in the[-:] pool.,she grabbed it from his hand and dropped it in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,(uh) the giraffe got mad at her.,uh the giraffe got mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,(and she :) and she froze solid.,and she and she froze solid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,the giraffe : got so mad : that he push/ed her.,the giraffe got so mad that he pushed her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,the lifeguard try/ed to reach the : airplane.,the lifeguard tried to reach the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,but : it was too far out.,but it was too far out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,the elephant told the lifeguard (that it was a) that it was an accident and (sh) that (she would nev) she will not do it again.,the elephant told the lifeguard that it was a that it was an accident and sh that she would nev she will not do it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,the lifeguard try/ed again.,the lifeguard tried again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,but it got : farther and farther out.,but it got farther and farther out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,then the other lifeguard came (with the) with a pool scooper (and deci) and try/ed to reach it.,then the other lifeguard came with the with a pool scooper and deci and tried to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,the first time (she tri) she try/ed she did not (re) reach it.,the first time she tri she tried she did not re reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,(and she) and then she was talk/ing to the kid/s.,and she and then she was talking to the kids +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,and then she (um) was talk/ing to the other lifeguard.,and then she um was talking to the other lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,she try/ed a second time.,she tried a second time +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,she got the airplane and gave it back to the giraffe.,she got the airplane and gave it back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,the giraffe : smile/ed very firmly : (and decide/ed) (and) (and um) and never went swim/ing with his airplane again.,the giraffe smiled very firmly and decided and and um and never went swimming with his airplane again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,when they were done they decide/ed to play in the playpen with the airplane instead of near the pool.,when they were done they decided to play in the playpen with the airplane instead of near the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,one day : a bunny and his friend the dragon decide/ed to go to the : sandbox and (b) build a sandcastle.,one day a bunny and his friend the dragon decided to go to the sandbox and b build a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,(when they were still mold/ing) when they were (s) add/ing on to the : castle (the) (the rab) the rabbit : was hog/ing the sand in the pail.,when they were still molding when they were s adding on to the castle the the rab the rabbit was hogging the sand in the pail +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,(when) when he was done : he pour/ed : all the sand on the sandcastle.,when when he was done he poured all the sand on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,and then the sandcastle was ruin/ed.,and then the sandcastle was ruined +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,when : the dragon : was try/ing to mold it again (she did) she (s) was still cry/ing.,when the dragon was trying to mold it again she did she s was still crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,one day : the rabbit and the : dragon : were walk/ing down the street.,one day the rabbit and the dragon were walking down the street +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,and they saw each other with picnic basket/s.,and they saw each other with picnic baskets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,(since the rab) since the rabbit had : cake : sub/s and sandwich/s : (they decided to have) and chip/s they decide/ed to have (um) a picnic together.,since the rab since the rabbit had cake subs and sandwiches they decided to have and chips they decided to have um a picnic together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,when they were done the rabbit was sick.,when they were done the rabbit was sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,and he look/ed like he was go/ing to[:_gonna] throw up.,and he looked like he was going to throw up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,(he got) he was get/ing dizzy.,he got he was getting dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,and (onl) the dragon only had a juice box and two sandwich/s.,and onl the dragon only had a juice box and two sandwiches +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,(the) when the doctor was walk/ing by : (he um) the dragon ran over to her and said that her friend : was : sick.,the when the doctor was walking by he um the dragon ran over to her and said that her friend was sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,the dragon decide/ed to drag her : to her friend the rabbit : because he was (v) very sick.,the dragon decided to drag her to her friend the rabbit because he was v very sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,the doctor : tap/ed his head.,the doctor tapped his head +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,and he faint/ed.,and he fainted +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,(then : the) : then (the) the doctor took him home.,then the then the the doctor took him home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,(and) and he had (uh um some) lot/s of carrot/s and vitamin/s.,and and he had uh um some lots of carrots and vitamins +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,one day : (uh the) (the) the rabbit/z friend the dragon : was walk/ing with her wagon : with a balloon tie/ed to the wheel.,one day uh the the the rabbit's friend the dragon was walking with her wagon with a balloon tied to the wheel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,(the) her friend the rabbit ask/ed where did you get that balloon?,the her friend the rabbit asked where did you get that balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,and she said from the big old clown over there.,and she said from the big old clown over there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,the rabbit was try/ing to untie it from the wheel.,the rabbit was trying to untie it from the wheel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,and the dragon got mad at him.,and the dragon got mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,the balloon flew away.,the balloon flew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,and : they were both jump/ing for it.,and they were both jumping for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,the dragon got so mad (at the) at the rabbit : that she burst off (in a r) (in a fla) into a big red flame.,the dragon got so mad at the at the rabbit that she burst off in a r in a fla into a big red flame +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,then : the rabbit (saw the b) saw the (cl) clown and decide/ed to run over and get a balloon.,then the rabbit saw the b saw the cl clown and decided to run over and get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,he pick/ed an orange balloon.,he picked an orange balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,and : (uh the) the clown said : five cent/s please.,and uh the the clown said five cents please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,and the bunny/z pocket/s were empty.,and the bunny's pockets were empty +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,(uh he) the rabbit got sad.,uh he the rabbit got sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,and the dragon ran over.,and the dragon ran over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,(and he) and she had no money either.,and he and she had no money either +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,the doctor came by.,the doctor came by +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,(and the) but the rabbit ran over : to her : (and said) and said : do you have any money?,and the but the rabbit ran over to her and said and said do you have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,I will pay you back.,I will pay you back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,and she paid : the clown (t) : ten cent/s for two balloon/s.,and she paid the clown t ten cents for two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/854.slt,and when : they got the balloon/s : they were happy once again.,and when they got the balloons they were happy once again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,one day (the elephant/s) (when me) I was the elephant.,one day the elephants when me I was the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and I was so surprise/ed because I got some candy.,and I was so surprised because I got some candy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then : my brother : (he got) he found a balloon in the water.,and then my brother he got he found a balloon in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then : (I said) the elephant said that hey that is my balloon!,and then I said the elephant said that hey that is my balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,then my brother gave the balloon to me.,then my brother gave the balloon to me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then : the elephant said thank you to my brother.,and then the elephant said thank you to my brother +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,The end [+_bch].,The end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,one day they[EW:we] were go/ing for a swim : me and my brother.,one day they were going for a swim me and my brother +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then (I was so scare/ed of) [~_I_mean] my brother told me that (um) it is very deep.,and then I was so scared of my brother told me that um it is very deep +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,so you have to be with me : because I am bigger than you.,so you have to be with me because I am bigger than you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then : when she dip/ed : her feet in the water and (uh) she thought it was too cold and she was walk/ing for her : towel (she slip/ed) I slip/ed.,and then when she dipped her feet in the water and uh she thought it was too cold and she was walking for her towel she slipped I slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then she hurt her knee.,and then she hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then she need/ed a bandaid.,and then she needed a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then she got one.,and then she got one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then : she rest/ed.,and then she rested +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then she was okay.,and then she was okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,so she went back in the pool.,so she went back in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,The end [+_bch].,The end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,one day : me and my brother went swim/ing.,one day me and my brother went swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and it was okay.,and it was okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,so the elephant : was surprise/ed.,so the elephant was surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then (she brou) my brother brought an airplane in the water.,and then she brou my brother brought an airplane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then (sh uh) the elephant took the airplane away.,and then sh uh the elephant took the airplane away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,that is when I was two : and he was nine.,that is when I was two and he was nine +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then (she) the elephant drop/ed it in the water.,and then she the elephant dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then : (my um) the brother was so mad.,and then my um the brother was so mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and he could not go in the water because it is only for two year old/s.,and he could not go in the water because it is only for two year olds +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then : (um) : one of the elephant/s : (um) came and get|get[EW:got] the plane.,and then um one of the elephants um came and get the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then (he) (the) the elephant try/ed it.,and then he the the elephant tried it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,but : the plane was float/ing away.,but the plane was floating away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then : (um) it went down and down.,and then um it went down and down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then my brother was cry/ing.,and then my brother was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then he (tr) try/ed it with (um) a butterfly thing.,and then he tr tried it with um a butterfly thing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then he got it.,and then he got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then (he was) : he was get/ing happy[EW:happier] and happier.,and then he was he was getting happy and happier +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then they gave it back.,and then they gave it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and he was so happy.,and he was so happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,(and then he[-:] was so) and then my brother was so happy.,and then he was so and then my brother was so happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and the end [+_bch].,and the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,(Um) me and my brother : were play/ing in the sandbox.,Um me and my brother were playing in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then I[!] took (the sa) all the sand because that was when I was a little baby.,and then I took the sa all the sand because that was when I was a little baby +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then I took all the sand too.,and then I took all the sand too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,we share/ed : the sand.,we shared the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then we made a sandcastle.,and then we made a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,then : (we) we made it high.,then we we made it high +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then it fell down.,and then it fell down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,so we got sad.,so we got sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,And then : we (um) came out of the sandbox.,And then we um came out of the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then we went back in our house.,and then we went back in our house +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,we went for a picnic.,we went for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then we ate.,and then we ate +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,then we went out to play.,then we went out to play +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then (my broth) me and my brother.,and then my broth me and my brother +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,"(my) me, I was not finish/ed my juice and my sandwich.",my me I was not finished my juice and my sandwich +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then my brother was.,and then my brother was +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and he was fat [~_laughs].,and he was fat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then he got loose[?] and looser[?] [~_laughs] [EU].,and then he got loose and looser +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,pardon?,pardon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,he was (es) go/ing to get hungry[EW:hungrier] and hungrier.,he was es going to get hungry and hungrier +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then he said hey what are you do/ing?,and then he said hey what are you doing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,that was my dad.,that was my dad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then : (um : I said that) to my dad I said that if we could go swim/ing.,and then um I said that to my dad I said that if we could go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,[~!_laughing] I had a nice bathing suit on.,I had a nice bathing suit on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,(and then we said) My dad said no[!] tomorrow.,and then we said My dad said no tomorrow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,let us go because it is the next day.,let us go because it is the next day +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,The end [+_bch].,The end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,(w) when we were done our : party we went for (a) : another party.,w when we were done our party we went for a another party +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and we got (from) a balloon from our : first party.,and we got from a balloon from our first party +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then : it was get/ing smaller and smaller.,and then it was getting smaller and smaller +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then (um it was get/ing) it was go/ing to pop because it was not on there well : the wagon.,and then um it was getting it was going to pop because it was not on there well the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then it flied|fly[EW:flew] away.,and then it flied away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then it pop/ed.,and then it popped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then the man gave us (new) lot/s of new : balloon/s.,and then the man gave us new lots of new balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then he gave it to us right now.,and then he gave it to us right now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then (they) it pop/ed.,and then they it popped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and (i) they were sad again.,and i they were sad again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then : the man said that : he is go/ing to get us brand new balloon/s[~!_laughing].,and then the man said that he is going to get us brand new balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then (um) : he got : new balloon/s.,and then um he got new balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and : one of them pop/ed already.,and one of them popped already +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then : he got one more that is brand new.,and then he got one more that is brand new +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and (uh) if it pop/3s (then I ca) the man said that (I) he could not get any more because he is hungry.,and uh if it pops then I ca the man said that I he could not get any more because he is hungry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then (um : he) : he ask/ed the man if he could have one of : the dad/z cookie/s.,and then um he he asked the man if he could have one of the dad's cookies +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and then : he did not have any more.,and then he did not have any more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,and (the man was) [~_I_mean] the man gave (um the bun) me and my brother new balloon/s.,and the man was the man gave um the bun me and my brother new balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/557.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,The elephant (s) see|see[EW:saw] a garden.,The elephant s see a garden +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,see what?,see what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,see[EW:saw] a garden [+_bch].,see a garden +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,(see a) see a water [EU].,see a see a water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and (s) the elephant see|see[EW:saw] a ball.,and s the elephant see a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,that is not the ball.,that is not the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,that is a balloon/s[EW:balloon]!,that is a balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,he get|get[EW:got] the balloon/s.,he get the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,(and) : and he is all wet.,and and he is all wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,The elephant jump/ed this [EU].,The elephant jumped this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and : the elephant walk|walk[EW:walked] there.,and the elephant walk there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,(and) : and the : elephant run|run[EW:ran].,and and the elephant run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and : elephant (s) stomp/ed the : ex [EU].,and elephant s stomped the ex +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and what happen/ed?,and what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,(he) (he is) he can not run.,he he is he can not run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,he is hurt.,he is hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,oh[-:].,oh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,he is hurt.,he is hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,he has the bandage on.,he has the bandage on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and she is much better!,and she is much better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and : he is mad!,and he is mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,mad : Amber [EU].,mad Amber +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,And (he) he *is go/ing to fly the airplane [EU].,And he he going to fly the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and she is fly/ing!,and she is flying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,do you see us fly/ing?,do you see us flying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and : uhoh.,and uhoh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,the airplane fall|fall[EW:fell] in the water.,the airplane fall in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and : the elephant : get/3s the airplane.,and the elephant gets the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,the mommy dad : get|get[EW:got] the airplane [EU].,the mommy dad get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,(and) : and (the mm) the daddy mommy get|get[EW:got] the airplane [EU].,and and the mm the daddy mommy get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and[-:] : the mommy dad get/3s the airplane [EU].,and the mommy dad gets the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,(and) and the mommy dad/s get/3s the airplane [EU].,and and the mommy dads gets the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and (the mo) he *is go/ing *to catch : the : airplane [EU]!,and the mo he going catch the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,the mommy take|take[EW:took] it the airplane.,the mommy take it the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,(and) and : mommy got the airplane[-:]!,and and mommy got the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and we did[!] find the airplane[-:]!,and we did find the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,Once upon a time : the puppy and the kitty *were go/ing in the sandbox [EU].,Once upon a time the puppy and the kitty going in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,the puppy and kitty : builded|build[EW:built] the castle[!].,the puppy and kitty builded the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and[-:] the puppy and the kitty to build a house [EU].,and the puppy and the kitty to build a house +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,the : kitty and the puppy : drop/ed the castle.,the kitty and the puppy dropped the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,the puppy to sad the : (uh) castle [EU].,the puppy to sad the uh castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,The dog and the kitty go shop/ing.,The dog and the kitty go shopping +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,the kitty and the dog go to eat their lunch.,the kitty and the dog go to eat their lunch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,the puppy and the kitty go have : stomachache [EU].,the puppy and the kitty go have stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and (the puppy is) (the) the rabbit : get/3s sick.,and the puppy is the the rabbit gets sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,the puppy and the kitty goes|go[EW:go] to work.,the puppy and the kitty goes to work +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,the puppy and the kitty (k) untie/ed the hand/s.,the puppy and the kitty k untied the hands +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and the puppy and the (ki) kitty (and the) is[EW:are] sick.,and the puppy and the ki kitty and the is sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,(and the : rabbit) and the rabbit and the puppy say goodbye.,and the rabbit and the rabbit and the puppy say goodbye +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,"(The) (the) (the rabbit s) the dog tie/ed [~_""tiedy""] up the balloon/s.",The the the rabbit s the dog tied up the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and the : balloon/s (s) *are : small [EU].,and the balloons s small +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and the balloon/s *are small too [EU].,and the balloons small too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and the balloon/s (f f) *are up in the sky [EU].,and the balloons f f up in the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,look he is fall/ing.,look he is falling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,he can not reach.,he can not reach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,(and the string) and the puppy and the rabbit : can not : get the balloon/s.,and the string and the puppy and the rabbit can not get the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and [~_sharp_intake_of_breath] the rabbit and the dog see lot/s[!] of balloon/s and lot/s.,and the rabbit and the dog see lots of balloons and lots +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and we will try and like[?] it.,and we will try and like it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,(the rabbit) the grandma to get the balloon/s [EU].,the rabbit the grandma to get the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and[-:] he take|take[EW:took] one balloon/s[EW:balloon] xx.,and he take one balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and the balloon/s : are not tie/ed to hand/s [EU].,and the balloons are not tied to hands +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and : (the) he is go away [EU].,and the he is go away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and the xx balloon/s.,and the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and she see|see[EW:saw] two balloon/s.,and she see two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,and he (take) : untie/ed the balloon/s.,and he take untied the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/535.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,there was a cow and a[EW:an] elephant.,there was a cow and a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,but : the elephant drop/ed the ball to the water [EU].,but the elephant dropped the ball to the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and then the cow had to [~_hadda] come to swim to get it.,and then the cow had to come to swim to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and the cow got it.,and the cow got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and then the cow was soak/ing wet.,and then the cow was soaking wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,(th[-:]) the cow and the elephant were look/ing at the : swimming pool.,th the cow and the elephant were looking at the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,the elephant was not watch/ing where he was : go/ing.,the elephant was not watching where he was going +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and : she slip/ed : and hurted|hurt[EW:hurt] : her : knee.,and she slipped and hurted her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,then the lifeguard come|come[EW:came] over.,then the lifeguard come over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,then the lifeguard put a bandaid on there : and then[-:] let her to rest for a little while.,then the lifeguard put a bandaid on there and then let her to rest for a little while +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and the lifeguard show|show[EW:showed] her the sign no run/ing.,and the lifeguard show her the sign no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,(uh) the elephant saw the cow had a[EW:an] airplane.,uh the elephant saw the cow had a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,: and : the elephant was surprise/ed.,and the elephant was surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,so she grab/ed it.,so she grabbed it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and then she throwed|throw[EW:threw] it in the water by accident.,and then she throwed it in the water by accident +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and then the cow was mad at her.,and then the cow was mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,the lifeguard come|come[EW:came] over.,the lifeguard come over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,(and splaining to) and the elephant was explain/ing to the : lifeguard what happen/ed.,and splaining to and the elephant was explaining to the lifeguard what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and[-:] lifeguard was try/ing to reach it.,and lifeguard was trying to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,but : the lifeguard could not reach it.,but the lifeguard could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and then : another : lifeguard came over : and got it.,and then another lifeguard came over and got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and then he was happy.,and then he was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and he was : glad that he got his airplane back.,and he was glad that he got his airplane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,(a) : there was[EW:were] : (b) bunny/s.,a there was b bunnies +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and one made a sandcastle.,and one made a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,so one animal want/ed to join her.,so one animal wanted to join her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and[-:] he was make/ing a sandcastle (wi) : like her [EU].,and he was making a sandcastle wi like her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,but (it) he drop/ed it on the girl with : a sandcastle.,but it he dropped it on the girl with a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and then it was a pile[-:].,and then it was a pile +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and then she had to [~_hadda] start all over again.,and then she had to start all over again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,(uh) : two of (th) the bunny rabbit/s were go/ing on a picnic.,uh two of th the bunny rabbits were going on a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,but one : was eat/ing faster than the other one : that[EW:then] he got full.,but one was eating faster than the other one that he got full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and then he got sick.,and then he got sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and then the doctor came over.,and then the doctor came over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and then the girl was : (hold/ing) : push/ing him over : and check/ing him[-:].,and then the girl was holding pushing him over and checking him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and he was : better.,and he was better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,she[-:] had a balloon tie/ed onto her wagon.,she had a balloon tied onto her wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and : the other bunny rabbit was look/ing at it : and untie/ing it : and let/ing it go up into the air.,and the other bunny rabbit was looking at it and untying it and letting it go up into the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and then the girl was mad at him.,and then the girl was mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and then there was[EW:were] lot/s of [~_lotsa] balloon/s.,and then there was lots of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and then[-:] : the boy (ra) rabbit : (wa) want/ed one for the girl.,and then the boy ra rabbit wa wanted one for the girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and : he had to [~_hadda] pay five buck/s.,and he had to pay five bucks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and then they were sad.,and then they were sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,: but then : this boy rabbit : was go/ing to the doctor : and tell/ing : about something : to : give him five buck/s.,but then this boy rabbit was going to the doctor and telling about something to give him five bucks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/739.slt,and then they were happy.,and then they were happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,[~_yeah_but_I_love_telling_stories_to_big_womans] one time the elephant was bounce/ing a ball.,one time the elephant was bouncing a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(um) the elephant bounce/ed it in the water.,um the elephant bounced it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(the giraffe : ran) the giraffe swam to get the ball.,the giraffe ran the giraffe swam to get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then the giraffe : got it.,and then the giraffe got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then he gave it to the balloon[EW:elephant].,and then he gave it to the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(and its and the and the) and the[-:] elephant said you are so kind!,and its and the and the and the elephant said you are so kind +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then the giraffe was like [~_facial_expression] : that is so incredible.,and then the giraffe was like that is so incredible +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then the (uh) elephant was like [~_facial_expression].,and then the uh elephant was like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,one day : (the) the giraffe was go/ing to[:_gonna] take a swim in the pool.,one day the the giraffe was going to take a swim in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,then the elephant went first.,then the elephant went first +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then he was like : whoa!,and then he was like whoa +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and (he just) : he just : hurt his knee.,and he just he just hurt his knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,then he was sad.,then he was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then the brother (el) elephant : (was) was run/ing.,and then the brother el elephant was was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then : he gave the sister a bandage.,and then he gave the sister a bandage +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then the brother help/ed her walk.,and then the brother helped her walk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(and then he made) (and then he) and then he stood her up.,and then he made and then he and then he stood her up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(and then) : and then he let her see her bandage.,and then and then he let her see her bandage +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(and then) : and then the elephant said : no girl/s allow/ed.,and then and then the elephant said no girls allowed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,only girl [EU].,only girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(one day the uh) (the) : one day the giraffe (was) was go/ing to play : (with his p) with his airplane.,one day the uh the one day the giraffe was was going to play with his p with his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,he was go/ing to fly with it.,he was going to fly with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,but then the elephant took it away.,but then the elephant took it away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and he was like [~_puzzled_expression].,and he was like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(and they) and the giraffe was like [~_facial_expression] (what the) what are you take/ing it for?,and they and the giraffe was like what the what are you taking it for +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then the elephant drop/ed[!] it in the pool.,and then the elephant dropped it in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then the giraffe was mad at her.,and then the giraffe was mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,she was like oh[-:] [~_standing_up_with_arms_above_head_and_mad__expression_on_her_face].,she was like oh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,I am sorry.,I am sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,then the giraffe told the brother.,then the giraffe told the brother +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(and he did not) and he was think/ing hmm.,and he did not and he was thinking hmm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,how do I get that airplane out of the pool?,how do I get that airplane out of the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,I have never seen an airplane in the pool.,I have never seen an airplane in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(and then) : and then the sister told the brother that : she did not even do it.,and then and then the sister told the brother that she did not even do it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then : the airplane : start/ed to sink.,and then the airplane started to sink +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then the girl (was) : was put/ing on a swimming suit.,and then the girl was was putting on a swimming suit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then she got (a) : a net to catch (the) : the airplane.,and then she got a a net to catch the the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,then she got it (with) with the net.,then she got it with with the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then (the eleph) (the[-:] ) the girl elephant (gave it) gave the airplane to the giraffe.,and then the eleph the the girl elephant gave it gave the airplane to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then : the giraffe : was hold/ing the airplane to : his cheek.,and then the giraffe was holding the airplane to his cheek +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(um uh) once the girl dog was make/ing a (sa) sandcastle.,um uh once the girl dog was making a sa sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,then the rabbit start/ed : to make a big big big : pile : of sand : in a bucket.,then the rabbit started to make a big big big pile of sand in a bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then he pour/ed it all over the sandcastle.,and then he poured it all over the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(and then he) (and then he went) and then he was scare/ed.,and then he and then he went and then he was scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(and then the) and then the dog was like [~_makes_a_face__with_big_open_eyes].,and then the and then the dog was like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,once the rabbit (was) was run/ing along with a basket in his hand.,once the rabbit was was running along with a basket in his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(and then he) and then : the dog had a sandwich.,and then he and then the dog had a sandwich +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and a rabbit had (a salad) a salad bun and (a sss) and a carrot : and another salad bun : (and) : (and) [~_uh_hm_I__do-n't_know_what_it_is_called].,and a rabbit had a salad a salad bun and a sss and a carrot and another salad bun and and +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and he ate it all.,and he ate it all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and he felt full.,and he felt full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and he laid down.,and he laid down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,then he bonk/ed his head.,then he bonked his head +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(and went) and he went [~_motioning_with_his_head_as_if_it_were__spinning_around].,and went and he went +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,that is so hilarious.,that is so hilarious +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then his father come/3s along.,and then his father comes along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then the baby rabbit go/3s (hey where is) hey where is : big rabbit?,and then the baby rabbit goes hey where is hey where is big rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(and then the mother) and then the baby (just gro) just pull/ed the mother/z jacket.,and then the mother and then the baby just gro just pulled the mother's jacket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(and then : he) and then the mother (just) just : check/ed his throat (with um) with a tube thingy.,and then he and then the mother just just checked his throat with um with a tube thingy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then he felt better.,and then he felt better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then he walk/ed with his mom.,and then he walked with his mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and the baby stay/ed there.,and the baby stayed there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,once the : rabbit was run/ing along.,once the rabbit was running along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and he saw his baby pull/ing a wagon : with a balloon on it.,and he saw his baby pulling a wagon with a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and he said that is just the kind of balloon I want!,and he said that is just the kind of balloon I want +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and the baby was like : you are go/ing to take the balloon off my wagon?,and the baby was like you are going to take the balloon off my wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then he was like [~_look_of_surprise].,and then he was like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then (he just) he just (um) let go of the balloon.,and then he just he just um let go of the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and the balloon float/ed up into the air.,and the balloon floated up into the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and the baby and the brother could not : touch it.,and the baby and the brother could not touch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and (then) (then the bab) then the balloon : pop/ed.,and then then the bab then the balloon popped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then the baby got mad at the brother.,and then the baby got mad at the brother +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then the big balloon maker guy : this guy [~_pointing_at__picture_on_page].,and then the big balloon maker guy this guy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,those two guy/s (uh uh) a full made of balloon/s.,those two guys uh uh a full made of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(and he said) (and he) and the brother said those are balloon/s that I need.,and he said and he and the brother said those are balloons that I need +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and he said uhuh (because you have a).,and he said uhuh because you have a +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,[~_what_the] he has a hole in his pant/s.,he has a hole in his pants +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,that silly rabbit.,that silly rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(and then) and then the baby came over.,and then and then the baby came over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,then he was like [~_facial_expression].,then he was like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,then the man was like [~_facial_expression].,then the man was like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,[~_what_the] and then the mother came over again.,and then the mother came over again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and the baby was like [~_facial_expression].,and the baby was like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and the brother was run/ing over to the mother.,and the brother was running over to the mother +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(then the moth) and (then the brother told the) (the) and then the brother told the mother what had happen/ed : what the man (who may who) who make/3s homemade balloon/s.,then the moth and then the brother told the the and then the brother told the mother what had happened what the man who may who who makes homemade balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,: (he told the) the brother told the mom : what the man had said to him.,he told the the brother told the mom what the man had said to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,oh that book keep/3s fall/ing down [+_bch].,oh that book keeps falling down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,number number twenty number twenty one [~_reading_number_off_back__of_previous_page] [+_bch].,number number twenty number twenty one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(and then uh) and then the guy went.,and then uh and then the guy went +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and the mother gave the guy : (ffff um) (ffff) two (buck/s) buck/s for the balloon/s so that the children could have them.,and the mother gave the guy ffff um ffff two bucks bucks for the balloons so that the children could have them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,(and then) : and then the children were play/ing with them.,and then and then the children were playing with them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then I do not know how.,and then I do not know how +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/552.slt,and then nothing else [+_bch].,and then nothing else +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,: One really hot July : a boy name/ed : Jordan and a girl name/ed : Keesha went to a swimming pool.,One really hot July a boy named Jordan and a girl named Keesha went to a swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Keesha drop/ed : a ball that she was bounce/ing at the swimming pool into the water.,Keesha dropped a ball that she was bouncing at the swimming pool into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Jordan dove in to go get it.,Jordan dove in to go get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Jordan came back with the ball.,Jordan came back with the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Keesha was happy.,Keesha was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Jordan was proud.,Jordan was proud +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,and : Keesha thought he was cool.,and Keesha thought he was cool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Then after Jordan and Keesha got their ball back : Jordan[-:] saw the diving board : same with Keesha.,Then after Jordan and Keesha got their ball back Jordan saw the diving board same with Keesha +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Keesha want/ed to go onto the diving board.,Keesha wanted to go onto the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Keesha and Jordan were run/ing.,Keesha and Jordan were running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,and a sign[-:] said no run/ing.,and a sign said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Keisha slip/ed and scrape/ed[-:] her knee.,Keisha slipped and scraped her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Jordan call/ed the lifeguard.,Jordan called the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,the lifeguard : patch/ed up (um) Keesha/z knee.,the lifeguard patched up um Keesha's knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,the lifeguard sat Keesha down.,the lifeguard sat Keesha down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Jordan comfort|comfort[EW:comforted] her.,Jordan comfort her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,the lifeguard told her to be more careful : around the pool.,the lifeguard told her to be more careful around the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Jordan and Keesha are here again : in the pool.,Jordan and Keesha are here again in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Jordan has a : airplane.,Jordan has a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,he is pretend/ing to fly.,he is pretending to fly +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Keesha is[-:] stare/ing at him.,Keesha is staring at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Keesha took the plane from Jordan without ask/ing : and drop/ed it in the water by accident.,Keesha took the plane from Jordan without asking and dropped it in the water by accident +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Jordan was a little bit mad.,Jordan was a little bit mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,then[-:] Jordan got really[!] mad : at Keesha for drop/ing his toy plane into the water.,then Jordan got really mad at Keesha for dropping his toy plane into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,the lifeguard came over.,the lifeguard came over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,and[-:] : Keesha kind of (s[-:]) : ran away.,and Keesha kind of s ran away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,then[!] Keesha told the lifeguard it was an accident.,then Keesha told the lifeguard it was an accident +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,the lifeguard try/ed to get it.,the lifeguard tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,he could not reach it.,he could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Jordan was really[-:] upset.,Jordan was really upset +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,then[!] a lady with a net came.,then a lady with a net came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Jordan was happy that the net is go/ing to get it out.,Jordan was happy that the net is going to get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,the lady got the plane.,the lady got the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,but it would not fit into the net.,but it would not fit into the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,"[~_oh] : then[-:] : on her second try, she did get it in.",then on her second try she did get it in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Jordan was really happy.,Jordan was really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Keesha said she would be more careful with friend/z toy/s and would ask before use/ing : Jordan/z toy.,Keesha said she would be more careful with friend's toys and would ask before using Jordan's toy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,one bright sunny afternoon : a boy named Joe came over to his friend/z : Arlene/z house.,one bright sunny afternoon a boy named Joe came over to his friend's Arlene's house +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Arlene had built a sandcastle in her sandbox.,Arlene had built a sandcastle in her sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Joe want/ed to go in : to the sandbox.,Joe wanted to go in to the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Joe dump/ed the sand on Arlene/z sandcastle.,Joe dumped the sand on Arlene's sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Arlene look/ed at it strangely.,Arlene looked at it strangely +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,then Joe : got all scare/ed.,then Joe got all scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Joe felt : innocent.,Joe felt innocent +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,well that is what he thought he was.,well that is what he thought he was +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,then[-:] Arlene and Joe : went for a walk in the forest.,then Arlene and Joe went for a walk in the forest +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Joe had a brought a picnic basket and same with Arlene.,Joe had a brought a picnic basket and same with Arlene +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Joe took out all[!] of his food/s and : got really[!] ready to gobble it up.,Joe took out all of his foods and got really ready to gobble it up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Arlene just sat and watch/ed him.,Arlene just sat and watched him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Arlene slowly bit into her sandwich.,Arlene slowly bit into her sandwich +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Joe stuff/ed himself with his food.,Joe stuffed himself with his food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,: quickly Joe/z : stomach start/ed to rumble.,quickly Joe's stomach started to rumble +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Arlene look/ed at Joe.,Arlene looked at Joe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Arlene found a doctor.,Arlene found a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,: Joe was still sit/ing at the picnic table.,Joe was still sitting at the picnic table +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Arlene said (there) Joe was still at the picnic.,Arlene said there Joe was still at the picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,and he was really[!] sick.,and he was really sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,so Arlene pull/ed[-:] the doctor over : so he could : make Joe a little bit better.,so Arlene pulled the doctor over so he could make Joe a little bit better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,the doctor took a stick out of his bag : and[-:] said : to Joe you should not eat so fast.,the doctor took a stick out of his bag and said to Joe you should not eat so fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,the doctor was : go/ing to bring Joe : to his emergency room to get him : all[-:] better.,the doctor was going to bring Joe to his emergency room to get him all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,after Joe got better : (he went) he : went back to Arlene/z place.,after Joe got better he went he went back to Arlene's place +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Arlene was pull/ing a wagon around : with a balloon attach/ed to it.,Arlene was pulling a wagon around with a balloon attached to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Joe thought the balloon look/ed cool.,Joe thought the balloon looked cool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Arlene said no do not untie it.,Arlene said no do not untie it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,but it (wa) was too late.,but it wa was too late +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Joe had untie/ed it.,Joe had untied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,and it flew up.,and it flew up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Arlene try/ed to catch it.,Arlene tried to catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Arlene got really[-:] mad.,Arlene got really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Joe just stare/ed at the balloon think/ing he was innocent.,Joe just stared at the balloon thinking he was innocent +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,then : a man came walk/ing down the path : with a couple of balloon/s.,then a man came walking down the path with a couple of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Joe start/ed to run towards him.,Joe started to run towards him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Joe ask/ed for a balloon.,Joe asked for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,the man said the balloon/s were five cent/s.,the man said the balloons were five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,and Joe was flat broke.,and Joe was flat broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,so Arlene came.,so Arlene came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,and Joe was still look/ing at the man with the balloon/s.,and Joe was still looking at the man with the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Joe had said he did not have five cent/s.,Joe had said he did not have five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,so he went back to the doctor that had help/ed him.,so he went back to the doctor that had helped him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Joe ask/ed for five cent/s : for the balloon.,Joe asked for five cents for the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,the doctor stare/ed at Joe : and said yes.,the doctor stared at Joe and said yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Arlene was happy same with Joe because he got a balloon too.,Arlene was happy same with Joe because he got a balloon too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/913.slt,Joe said he should be more careful with his friend/z toy/s.,Joe said he should be more careful with his friend's toys +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,A giraffe is play/ing with an elephant.,A giraffe is playing with an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the ball that they were play/ing with went into (s) a pool of water.,the ball that they were playing with went into s a pool of water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the giraffe dove down (and[-:]) swim/ing towards the ball.,the giraffe dove down and swimming towards the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,he grab/ed the ball and gave it to the elephant.,he grabbed the ball and gave it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the elephant is happy with the giraffe.,the elephant is happy with the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,(um) The giraffe and the elephant[-:] are[-:] go/ing to swim in a pool.,um The giraffe and the elephant are going to swim in a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the elephant start/3s run/ing towards the pool.,the elephant starts running towards the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,she slip/3s : because she was run/ing.,she slips because she was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,she fell and hurt her knee.,she fell and hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the giraffe and lifeguard come to see if she is okay.,the giraffe and lifeguard come to see if she is okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,(the) the[-:] elephant[-:] lifeguard put a bandage on her knee.,the the elephant lifeguard put a bandage on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,she is okay.,she is okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,and she is sit/ing on a bench.,and she is sitting on a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the lifeguard is mad at her because she was run/ing.,the lifeguard is mad at her because she was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,(The ele) [~_or] the giraffe has : (a t plane) a toy plane.,The ele the giraffe has a t plane a toy plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,and the elephant : is happy.,and the elephant is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the giraffe is show/ing the elephant what it can do.,the giraffe is showing the elephant what it can do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the elephant is surprise/ed.,the elephant is surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the elephant grab/ed the plane away from the giraffe.,the elephant grabbed the plane away from the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the giraffe is : unhappy.,the giraffe is unhappy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the elephant (um f) drop/ed the plane into the pool.,the elephant um f dropped the plane into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the giraffe got mad at the elephant.,the giraffe got mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the lifeguard see/3s that the plane is sink/ing into the pool.,the lifeguard sees that the plane is sinking into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,and[-:] he is upset with them.,and he is upset with them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the elephant explain/3s to the lifeguard what happen/ed.,the elephant explains to the lifeguard what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the lifeguard try/3s to reach the plane before it sink/3s.,the lifeguard tries to reach the plane before it sinks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the lifeguard can not get it.,the lifeguard can not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,and the giraffe is cry/ing.,and the giraffe is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,a[-:] lady elephant come/3s with the net and[-:] is go/ing to grab the plane.,a lady elephant comes with the net and is going to grab the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,she try/3s.,she tries +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,and she almost got it.,and she almost got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,and the : giraffe stop/3s cry/ing.,and the giraffe stops crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,she get/3s the plane and give/3s it to the giraffe.,she gets the plane and gives it to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,(the giraffe is n) the giraffe is now happy.,the giraffe is n the giraffe is now happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the giraffe[-:] : is happy because he got his plane back.,the giraffe is happy because he got his plane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,[<~_or_#_yeah]um a little[-:] kangaroo[>~_or_#_yeah] : a kangaroo is : play/ing in the sand.,um a little kangaroo a kangaroo is playing in the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,and a rabbit come/3s.,and a rabbit comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the kangaroo and rabbit are make/ing a sandcastle.,the kangaroo and rabbit are making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the rabbit dump/ed sand on top of the sandcastle.,the rabbit dumped sand on top of the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,and the kangaroo is not so happy.,and the kangaroo is not so happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the[-:] sandcastle fall/3s down.,the sandcastle falls down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,and it fell down on the kangaroo.,and it fell down on the kangaroo +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the kangaroo is try/ing to push : back up the sandcastle while : the[-:] rabbit is stand/ing there[-:] like he did not do anything.,the kangaroo is trying to push back up the sandcastle while the rabbit is standing there like he did not do anything +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the rabbit met the kangaroo (while he) with a basket.,the rabbit met the kangaroo while he with a basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,and the kangaroo has a basket as well.,and the kangaroo has a basket as well +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,they are have/ing a picnic.,they are having a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,(um) and the rabbit is eat/ing[-:] lot/s.,um and the rabbit is eating lots +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,and he is full while the kangaroo is still eat/ing.,and he is full while the kangaroo is still eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the[-:] rabbit now is dizzy and has a stomachache.,the rabbit now is dizzy and has a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,and the kangaroo is worry/ing.,and the kangaroo is worrying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the kangaroo go/3s to a older rabbit : which is a doctor.,the kangaroo goes to a older rabbit which is a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,(and she is say/3s) : and she ask/3s for help.,and she is says and she asks for help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the doctor is : give/ing[-:] the rabbit a checkup.,the doctor is giving the rabbit a checkup +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the : little rabbit is now better.,the little rabbit is now better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the kangaroo has a wagon with (a balloon on it) a balloon on it.,the kangaroo has a wagon with a balloon on it a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,and the rabbit is[-:] come/ing : and say/ing hi to the kangaroo.,and the rabbit is coming and saying hi to the kangaroo +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the rabbit see/3s the balloon and start/3s grab/ing for it.,the rabbit sees the balloon and starts grabbing for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the rabbit is try/ing to take the balloon off the wagon : while the[-:] kangaroo : do/3s not want him to.,the rabbit is trying to take the balloon off the wagon while the kangaroo does not want him to +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the rabbit let/3s go of the balloon.,the rabbit lets go of the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,and the kangaroo and the rabbit start reach/ing for it.,and the kangaroo and the rabbit start reaching for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the kangaroo is mad at the rabbit because he could not get the balloon back.,the kangaroo is mad at the rabbit because he could not get the balloon back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,the rabbit see/3s a man sell/ing some balloon/s.,the rabbit sees a man selling some balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,and then he start/3s walk/ing (towards it) towards him.,and then he starts walking towards it towards him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,he ask/3s to buy a balloon for his friend.,he asks to buy a balloon for his friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,(um) the salesman : is not go/ing to sell a balloon to the : rabbit for his friend.,um the salesman is not going to sell a balloon to the rabbit for his friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,he ask/3s the doctor rabbit to come[-:] talk to the salesman.,he asks the doctor rabbit to come talk to the salesman +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/909.slt,now both the rabbit and the kangaroo have a balloon.,now both the rabbit and the kangaroo have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,once upon a time the elephant was play/ing with a ball.,once upon a time the elephant was playing with a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the (gi) giraffe came by.,and the gi giraffe came by +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,(the giraffe wa) [~_no] the : elephant pass/ed the : giraffe the ball.,the giraffe wa the elephant passed the giraffe the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the ball fell in the water.,and the ball fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,the giraffe was swim/ing in the water to get the ball.,the giraffe was swimming in the water to get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the : elephant was happy.,and the elephant was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,(and the) : (um : there was) : and the : elephant was happy.,and the um there was and the elephant was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,(the kay) the end [+_bch].,the kay the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,one day (the) : the elephant and the : giraffe : was[EW:were] : go/ing to have a swim in the pool[!].,one day the the elephant and the giraffe was going to have a swim in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,the elephant run|run[EW:ran] to the : trampoline : for the water [EU].,the elephant run to the trampoline for the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the elephant slip|slip[EW:slipped][!].,and the elephant slip +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,the elephant hurt : (his leg) : her leg.,the elephant hurt his leg her leg +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the zebra was run/ing : behind him.,and the zebra was running behind him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,(the gi) [~_I_mean] (the gi) the giraffe : was take/ing care of the elephant.,the gi the gi the giraffe was taking care of the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the[EW:a] different elephant : come|come[EW:came] to help her!,and the different elephant come to help her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,the elephant put a bandaid [EU].,the elephant put a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,it hurt/3s.,it hurts +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,the elephant : was okay.,the elephant was okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and (the) they : was[EW:were] happy.,and the they was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and : (the lifeguard) : the lifeguard said : no run/ing.,and the lifeguard the lifeguard said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the end [+_bch].,and the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,once upon a time the giraffe have|have[EW:had] a[EW:an] airplane.,once upon a time the giraffe have a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the elephant was happy.,and the elephant was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,one day (the el) : the : giraffe was play/ing with : the airplane.,one day the el the giraffe was playing with the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the : elephant look/ed.,and the elephant looked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the elephant took it away from (gi) : giraffe.,and the elephant took it away from gi giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and she accident[EW:accidentally] drop|drop[EW:dropped] it [~_whispers_something_to_self].,and she accident drop it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and (the) : the giraffe was mad.,and the the giraffe was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,the lifeguard saw the airplane in the water.,the lifeguard saw the airplane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and he[-:] : was talk/ing to the elephant.,and he was talking to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and (he is try/ing to) he try/ed to reach it.,and he is trying to he tried to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and he did not.,and he did not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the : giraffe was cry/ing.,and the giraffe was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and : [<~_no]the elephant don not know how[>~_no] the elephant do|do[EW:does] not know how you take it out.,and the elephant don not know how the elephant do not know how you take it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,a girl elephant : got a net (and take it awa) and[-:] : go|go[EW:went] (to ge) to get it.,a girl elephant got a net and take it awa and go to ge to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,(and) : and she is[-:] [~_no] she is try/ing to get it.,and and she is she is trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and she got it.,and she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and she was so happy.,and she was so happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,she give[EW:gave] it to the giraffe.,she give it to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the giraffe was so happy.,and the giraffe was so happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,(and) : and (the giraffe was : so) (the giraffe was so) (is ha) : the giraffe is happy.,and and the giraffe was so the giraffe was so is ha the giraffe is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,once upon a time : a rabbit : and a dog : was[EW:were] make/ing a sandcastle.,once upon a time a rabbit and a dog was making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,the dog : made a (ca) castle.,the dog made a ca castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the rabbit : made : a different sandcastle.,and the rabbit made a different sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,(the) : (the) : the rabbit : put : the : sand over the castle.,the the the rabbit put the sand over the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the castle broke because the rabbit : throw|throw[EW:threw] the sand in the : castle [EU].,and the castle broke because the rabbit throw the sand in the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,(and[-:]) : and the : dog cry/ed.,and and the dog cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the : rabbit do|do[EW:did] nothing.,and the rabbit do nothing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the end [+_bch].,and the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,once upon a time : (her frien) (her) her friend dog : *was walk/ing : on the sidewalk [EU].,once upon a time her frien her her friend dog walking on the sidewalk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and : the rabbit came along.,and the rabbit came along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,(the rabbit) : [~_no] the dog : went on the grass and eat|eat[EW:ate] thing/s.,the rabbit the dog went on the grass and eat things +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the rabbit : eat|eat[EW:ate] a lot.,and the rabbit eat a lot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and : the : rabbit got a stomachache.,and the rabbit got a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the rabbit (feel) : feel|feel[EW:felt] dizzy.,and the rabbit feel feel dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and (the girl) : [~_no] the dog was scare/ed.,and the girl the dog was scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and : the dog ran to a doctor (and) : to get some help.,and the dog ran to a doctor and to get some help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,(the dog) [~_I_mean_yeah] (the) (the) the dog took the doctor to : (where) where is the rabbit was lay/ing down.,the dog the the the dog took the doctor to where where is the rabbit was laying down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,the doctor took : a stick and put it (his) : in his mouth.,the doctor took a stick and put it his in his mouth +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,(the ra) (the rabbit) : the doctor help/ed the rabbit.,the ra the rabbit the doctor helped the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the rabbit feel|feel[EW:felt] good.,and the rabbit feel good +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the end [+_bch].,and the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,once upon a time : the girl dog : was carry/ing a balloon.,once upon a time the girl dog was carrying a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the (radit) rabbit (come) came by.,and the radit rabbit come came by +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,the rabbit saw the balloon.,the rabbit saw the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the dog saw the balloon.,and the dog saw the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and the : rabbit *was go/ing to hold the balloon [EU].,and the rabbit going to hold the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and : he is try/ing to get the knot : undone.,and he is trying to get the knot undone +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,(and the r) and the : balloon : was fly/ing in the air[-:].,and the r and the balloon was flying in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,(the) the girl dog : was mad because : the bunny : let it go.,the the girl dog was mad because the bunny let it go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,the rabbit was run/ing to the : balloon guy.,the rabbit was running to the balloon guy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and : the : rabbit ask|ask[EW:asked] : he allow/ed to have one [EU].,and the rabbit ask he allowed to have one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and : it cost five (s) : cent/s.,and it cost five s cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,(they was so) : (sc) they was[EW:were] sad.,they was so sc they was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,(they) the rabbit came : to the doctor : and ask/3s for some money [EU].,they the rabbit came to the doctor and asks for some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,(and they) : and : the rabbit took the doctor to get : a balloon.,and they and the rabbit took the doctor to get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and : the : doctor give|give[EW:gave] them : (uh two uh) five cent/s : for : two balloon/s.,and the doctor give them uh two uh five cents for two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,and they was[EW:were] happy.,and they was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/874.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,(um) the giraffe[-:] is say/ing hi.,um the giraffe is saying hi +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then she is bounce/ing the ball.,and then she is bouncing the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and she is go/ing hi too.,and she is going hi too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,hi.,hi +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,she is what ?,she is what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,she is say/ing hi [+_bch].,she is saying hi +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then : she is bounce/ing the ball.,and then she is bouncing the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and she say/3s hi again.,and she says hi again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then : the ball go/3s into the water.,and then the ball goes into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and they are go/ing oh no[!].,and they are going oh no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then the giraffe swim/3s to it : and get/3s the ball.,and then the giraffe swims to it and gets the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,: and then : (sh) the giraffe give/3s it to the elephant.,and then sh the giraffe gives it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,: and they smile back at each other.,and they smile back at each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then she[-:] : say/3s thank you.,and then she says thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and : she has the : love in her eye/s[~!_softly_laughing].,and she has the love in her eyes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,(um) she want/3s to[-:] go over on the diving board.,um she wants to go over on the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,: and she[-:] is run/ing to the diving board now.,and she is running to the diving board now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,: and (she[-:] is) she slip/ed on the water.,and she is she slipped on the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,: and now she is cry/ing.,and now she is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,now she has a : booboo on her (uhm) kneecap.,now she has a booboo on her uhm kneecap +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,: and now the lifeguard is come/ing : to help her.,and now the lifeguard is coming to help her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and now the lifeguard put/3s on a bandage.,and now the lifeguard puts on a bandage +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,: and : they are put/ing her on the bench.,and they are putting her on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,: and she has a smile.,and she has a smile +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and he has a hm [~_child_making_a_face] like that.,and he has a hm like that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,[~_okay] she is say/ing[-:] hi to the giraffe.,she is saying hi to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and he is say/ing hi back.,and he is saying hi back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and the giraffe is play/ing with his airplane.,and the giraffe is playing with his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and the elephant is look/ing at the airplane.,and the elephant is looking at the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then the elephant take/3s it away from the giraffe.,and then the elephant takes it away from the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and he is go/ing hey[!].,and he is going hey +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then the elephant drop/3s it into the water.,and then the elephant drops it into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and now they are all : worry/ed.,and now they are all worried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then the giraffe get/3s all mad at the elephant.,and then the giraffe gets all mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and she is go/ing : ooh (I) am I bad ?,and she is going ooh I am I bad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then the lifeguard (s) come/3s again.,and then the lifeguard s comes again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then she is kind of like : walk/ing away.,and then she is kind of like walking away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then he is just stand/ing there : with a smile on the side of the face.,and then he is just standing there with a smile on the side of the face +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,(and then the lifeguard ask/3s) : (I think the guard) (lifeguard he) she is go/ing [~_high_pitched_voice] well I[!] did not do it.,and then the lifeguard asks I think the guard lifeguard he she is going well I did not do it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,(and she is go/ing) and the giraffe is go/ing like that [~_child__raises_her_eyebrows].,and she is going and the giraffe is going like that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,"oh, raise/ing his eyebrow/s, uhhm.",oh raising his eyebrows uhhm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then the lifeguard is try/ing to get the airplane.,and then the lifeguard is trying to get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,but he can not.,but he can not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and the giraffe and the elephant are just stand/ing back go/ing (I hope I get my) I hope I get my airplane back.,and the giraffe and the elephant are just standing back going I hope I get my I hope I get my airplane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then the giraffe is cry/ing.,and then the giraffe is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and (like) she is upset.,and like she is upset +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,(and the elephant is go/ing) the lifeguard is say/ing well I[!] could not get it.,and the elephant is going the lifeguard is saying well I could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,: (and then : I think that[-:]) well I think it is another lifeguard or something or a friend or something.,and then I think that well I think it is another lifeguard or something or a friend or something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,(that) she has a net to get the airplane.,that she has a net to get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and (sh) in this picture she is get/ing it.,and sh in this picture she is getting it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and they have a smile on their face/*s.,and they have a smile on their face +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and now : he[!] has a big[!] smile on his face.,and now he has a big smile on his face +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and she is[-:] give/ing it to him.,and she is giving it to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,now : they are both : happy.,now they are both happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,(um) the rabbit is saying hi.,um the rabbit is saying hi +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and it look/3s like a dog.,and it looks like a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and she or he is say/ing hi.,and she or he is saying hi +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,: and then : those two are play/ing.,and then those two are playing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,the rabbit has a bucket.,the rabbit has a bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and he is fill/ing it up with the sand.,and he is filling it up with the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and she is or he is make/ing a (castle) sandcastle.,and she is or he is making a castle sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then : the rabbit is put/ing the sand that he has in the bucket onto the sandcastle.,and then the rabbit is putting the sand that he has in the bucket onto the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and (she is worry/ing) she is worry/ed that the first sandcastle is go/ing to [~_gonna] break.,and she is worrying she is worried that the first sandcastle is going to break +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,: and : the sandcastle break/3s.,and the sandcastle breaks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and he is go/ing [~_sharp_intake_of_breath] oh no did I wreck it?,and he is going oh no did I wreck it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,(and then he) (she is cry/ing) and she is sadly cry/ing and (put/ing) try/ing to put it back together while he is go/ing : uhoh what did I do?,and then he she is crying and she is sadly crying and putting trying to put it back together while he is going uhoh what did I do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,(sh) the[-:] : dog : is say/ing hi to the rabbit.,sh the dog is saying hi to the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then the rabbit is : eat/ing.,and then the rabbit is eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,but he has all his food.,but he has all his food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and : his tongue is just (ta) stick/ing out.,and his tongue is just ta sticking out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and the rabbit ate all his food really really fast.,and the rabbit ate all his food really really fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,then the : dog : still is eat/ing her sandwich and juice box.,then the dog still is eating her sandwich and juice box +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and : he has a sick feel/ing in his stomach.,and he has a sick feeling in his stomach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and she is worry/ing.,and she is worrying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and the doctor come/3s by.,and the doctor comes by +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and the dog go get/3s the doctor.,and the dog go gets the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then (she is say/ing) (she is pull/ing the) the dog is pull/ing the (doc) doctor or nurse to see the rabbit.,and then she is saying she is pulling the the dog is pulling the doc doctor or nurse to see the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,then the nurse : check/3s the : rabbit : and *is say/ing that you have a bad cold.,then the nurse checks the rabbit and saying that you have a bad cold +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,: (and she) (and the rab) both the rabbit/s are walk/ing by while the dog is stay/ing there.,and she and the rab both the rabbits are walking by while the dog is staying there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,(um) the dog has the balloon on : (her) his wagon.,um the dog has the balloon on her his wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and the rabbit is come/ing by again.,and the rabbit is coming by again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,(and say/ing) they are both say/ing hi.,and saying they are both saying hi +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and the rabbit is go/ing to go touch the balloon.,and the rabbit is going to go touch the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then he is untie/ing it.,and then he is untying it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and she is go/ing oh no please do not do that.,and she is going oh no please do not do that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then the rabbit let/3s go of it.,and then the rabbit lets go of it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and : they are try/ing to catch it.,and they are trying to catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,but they can not catch it.,but they can not catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,then the dog is really really really[!] mad at the rabbit : while he is look/ing up.,then the dog is really really really mad at the rabbit while he is looking up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then : all of a sudden they see : a : balloon person.,and then all of a sudden they see a balloon person +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,well I think that the rabbit see/3s a balloon person while the girl dog is still mad at him.,well I think that the rabbit sees a balloon person while the girl dog is still mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then he is say/ing how much for one of those please?,and then he is saying how much for one of those please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,(five) and it has five dollar/s [EU].,five and it has five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,(but they do not have) but he do/3s not have five dollar/s.,but they do not have but he does not have five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and they are all worry/ing : while he is stand/ing up : still hold/ing the balloon/s.,and they are all worrying while he is standing up still holding the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then they see (the doc) the nurse again.,and then they see the doc the nurse again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,(and the rabbit is gonna) and the rabbit is run/ing over there.,and the rabbit is gonna and the rabbit is running over there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and (he is ask/ing her : do you have any) (uh) he is probably say/ing I am broke.,and he is asking her do you have any uh he is probably saying I am broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,so I was wonder/ing if you can buy me and her a balloon please.,so I was wondering if you can buy me and her a balloon please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and (then she give/3s) then she buy/3s : the balloon/s for them.,and then she gives then she buys the balloons for them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and then they both are happy.,and then they both are happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/902.slt,and so is she.,and so is she +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,once there was an elephant and a giraffe : at a swimming pool.,once there was an elephant and a giraffe at a swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then the giraffe (saw) saw a ball in the water and want/ed to go in.,then the giraffe saw saw a ball in the water and wanted to go in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then the giraffe ran in and try/ed to swim.,then the giraffe ran in and tried to swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,the elephant was worry/ed.,the elephant was worried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then : the elephant gave the giraffe another balloon so he would get out of the water.,then the elephant gave the giraffe another balloon so he would get out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then : the elephant when he was just about to (take it) give it to the giraffe he took it back.,then the elephant when he was just about to take it give it to the giraffe he took it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,once there was : a giraffe and a[EW:an] : elephant.,once there was a giraffe and a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,they walk/ed past a balloon.,they walked past a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,and then the elephant saw a diving board that look/ed like fun.,and then the elephant saw a diving board that looked like fun +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then he start/ed run/ing to it.,then he started running to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,and the giraffe follow/ed behind.,and the giraffe followed behind +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then (the) the elephant trip/ed and fell and hurt herself.,then the the elephant tripped and fell and hurt herself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then the lifeguard came : and stitch/ed up (the ban) the wound.,then the lifeguard came and stitched up the ban the wound +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then the lifeguard help/ed her get back up.,then the lifeguard helped her get back up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,and then she was sit/ing down (at this) by the sign that said no run/ing.,and then she was sitting down at this by the sign that said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,once there was an elephant and a giraffe.,once there was an elephant and a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,the giraffe was play/ing with : a toy airplane.,the giraffe was playing with a toy airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then the elephant snatch/ed it out of the giraffe/z hand/s.,then the elephant snatched it out of the giraffe's hands +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then the giraffe drop/ed it in the pool.,then the giraffe dropped it in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,and the (ele) giraffe was mad : very mad.,and the ele giraffe was mad very mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,and then the lifeguard saw : the giraffe and the elephant and the toy airplane in the water.,and then the lifeguard saw the giraffe and the elephant and the toy airplane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,the elephant try/ed to explain to the lifeguard.,the elephant tried to explain to the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,but he could not.,but he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,(he) he (was) was not understand/ing what she was say/ing.,he he was was not understanding what she was saying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then (she finally) he finally understood what she was say/ing.,then she finally he finally understood what she was saying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,and he try/ed to get it out of the water.,and he tried to get it out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then he could not make it.,then he could not make it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,and the giraffe was cry/ing.,and the giraffe was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then an elephant : came with : a little catcher thing to get the toy airplane out of the water.,then an elephant came with a little catcher thing to get the toy airplane out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then (she) she was try/ing to get it out.,then she she was trying to get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then she got it out.,then she got it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,and the giraffe was happy.,and the giraffe was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,and then the giraffe : held it in her hand/s close.,and then the giraffe held it in her hands close +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,once there was : a bunny and a : dog.,once there was a bunny and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,one day when the dog was make/ing a sandcastle : the bunny was play/ing beside him.,one day when the dog was making a sandcastle the bunny was playing beside him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,she was scoop/ing sand out of a bucket.,she was scooping sand out of a bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then : when she thought she was done (she) she took the sand that was left in the bucket and : pour/ed it on the dog/z : sandcastle.,then when she thought she was done she she took the sand that was left in the bucket and poured it on the dog's sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,that made the dog : mad and the bunny : funny.,that made the dog mad and the bunny funny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then the dog start/ed cry/ing.,then the dog started crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,once there was : just (a) : a bunny and a dog.,once there was just a a bunny and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,(they were) they were go/ing out on a picnic.,they were they were going out on a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,when the dog had barely taken out anything just his sandwich : he saw the bunny pig/ing out on treat/s.,when the dog had barely taken out anything just his sandwich he saw the bunny pigging out on treats +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,after (the) the dog finish/ed his sandwich and drink/3s some juice : the bunny had already finish/ed all his lunch with an upset stomach.,after the the dog finished his sandwich and drinks some juice the bunny had already finished all his lunch with an upset stomach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,when the dog was still eat/ing : it look/ed like the bunny ate more.,when the dog was still eating it looked like the bunny ate more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,and (now he had) : now he had star/s go/ing around his head.,and now he had now he had stars going around his head +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then the dog went to the doctor bunny.,then the dog went to the doctor bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,and : he ask/ed her to come to (the) : the other bunny.,and he asked her to come to the the other bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then he made her come closer.,then he made her come closer +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then : (the bun) the doctor bunny gave : the bunny : medicine.,then the bun the doctor bunny gave the bunny medicine +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then the bunny took him home.,then the bunny took him home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,once there was : a dog pull/ing a wagon when a bunny came along.,once there was a dog pulling a wagon when a bunny came along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,the bunny told him to look : away.,the bunny told him to look away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then : the bunny took the balloon off the dog/z wagon.,then the bunny took the balloon off the dog's wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,and : when he got it up he let go.,and when he got it up he let go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,and then it went float/ing away.,and then it went floating away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then the dog was really mad at the bunny.,then the dog was really mad at the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then : a sale/s (ba) balloon bunny was sell/ing (boo) balloon/s over by where the dog and the bunny were.,then a sales ba balloon bunny was selling boo balloons over by where the dog and the bunny were +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then : the bunny ask/ed the : sale/s person balloon bunny for a balloon.,then the bunny asked the sales person balloon bunny for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,(but) but then he found out (that) that they were five cent/s.,but but then he found out that that they were five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,and he had no money.,and he had no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,so then (the) the dog : and (the ba) the : bunny were mad.,so then the the dog and the ba the bunny were mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,then : the bunny found his mom : and ask/ed for five cents for the balloon.,then the bunny found his mom and asked for five cents for the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,he gave : him five cent/s.,he gave him five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,and they each got a balloon.,and they each got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/969.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,Once there was a giraffe named George and an elephant named Martha.,Once there was a giraffe named George and an elephant named Martha +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,and they were best friend/s.,and they were best friends +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,one day they were play/ing ball.,one day they were playing ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,and the ball fell into a swimming pool.,and the ball fell into a swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,George went to the swimming pool and swimmed|swim[EW:swam] and got the ball.,George went to the swimming pool and swimmed and got the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,Martha was very happy : to get her ball back.,Martha was very happy to get her ball back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,(and then the next) and then they play/ed for the rest of the day and talk/ed.,and then the next and then they played for the rest of the day and talked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,One day George and Martha saw a swimming pool.,One day George and Martha saw a swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,and they want/ed to go swim/ing.,and they wanted to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,: then Martha ask/ed : George if he want/ed to go swim/ing with her.,then Martha asked George if he wanted to go swimming with her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,then she was run/ing.,then she was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,and she slip/ed.,and she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,she : got a big scratch on her knee.,she got a big scratch on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,and then she was cry/ing.,and then she was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,the lifeguard came and try/ed to help.,the lifeguard came and tried to help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,the lifeguard put a bandaid on Martha/z knee.,the lifeguard put a bandaid on Martha's knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,(then Marth) but Martha was still cry/ing.,then Marth but Martha was still crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,after a little while she felt better.,after a little while she felt better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,then the lifeguard told her to not run ever again.,then the lifeguard told her to not run ever again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,One day George and Martha was[EW:were] : play/ing : with George/z : airplane toy.,One day George and Martha was playing with George's airplane toy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,: Martha really like/ed : the toy.,Martha really liked the toy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,and Martha grab/ed it away from George and start/ed play/ing with it.,and Martha grabbed it away from George and started playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,then she drop/ed it into the swimming pool.,then she dropped it into the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,George was very mad at Martha.,George was very mad at Martha +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,suddenly the lifeguard came.,suddenly the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,: Martha said she drop/ed the (air) toy airplane in the pool.,Martha said she dropped the air toy airplane in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,and she was really sorry.,and she was really sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,then the lifeguard try/ed to reach it.,then the lifeguard tried to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,but he could not.,but he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,then : George became really sad.,then George became really sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,and then another lifeguard came : and had a net.,and then another lifeguard came and had a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,she used the net : and : got the airplane out of the water.,she used the net and got the airplane out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,George became happy again.,George became happy again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,then George and Martha share/ed the airplane.,then George and Martha shared the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,once there was : a puppy : and a bunny.,once there was a puppy and a bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,they like/ed to go the park and build sandcastle/s together.,they liked to go the park and build sandcastles together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,one day they were build/ing a sandcastle.,one day they were building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,and they were happy.,and they were happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,and suddenly : by accident : all : the sand that bunny had in his bucket accidentally pour/ed on the sandcastle they were make/ing.,and suddenly by accident all the sand that bunny had in his bucket accidentally poured on the sandcastle they were making +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,they were both very surprise/ed.,they were both very surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,puppy was cry/ing.,puppy was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,One day puppy and bunny were go/ing : for a picnic.,One day puppy and bunny were going for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,: bunny was make/ing a pig of himself.,bunny was making a pig of himself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,and puppy was star/ing at him.,and puppy was staring at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,: after a little while puppy start/ed eat/ing her lunch.,after a little while puppy started eating her lunch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,then bunny got a very very bad stomachache.,then bunny got a very very bad stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,then puppy saw a doctor and call/ed her to come over : to where their picnic spot was.,then puppy saw a doctor and called her to come over to where their picnic spot was +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,puppy kept on grab/ing the doctor to come : over.,puppy kept on grabbing the doctor to come over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,then the doctor saw : bunny.,then the doctor saw bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,and : (sh) she was look/ing at him : and try/ing to figure out what was (a) the matter with him.,and sh she was looking at him and trying to figure out what was a the matter with him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,the doctor thought he had a stomachache.,the doctor thought he had a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,so she took him : home and put him to bed.,so she took him home and put him to bed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,one day puppy : had a balloon in her wagon.,one day puppy had a balloon in her wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,and suddenly bunny came.,and suddenly bunny came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,bunny want/ed to take the balloon and touch it.,bunny wanted to take the balloon and touch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,then he (untie/ed the) : untie/ed the balloon from the wagon.,then he untied the untied the balloon from the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,(and) : and the balloon float/ed away.,and and the balloon floated away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,they were all try/ing to catch it.,they were all trying to catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,then puppy got really really angry at bunny.,then puppy got really really angry at bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,then : they saw a : man hold/ing lot/s of balloon/s.,then they saw a man holding lots of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,(the bunny) bunny ask/ed the man if he could have : some : of the balloon/s.,the bunny bunny asked the man if he could have some of the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,but he did not have any money.,but he did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,puppy and bunny were really disappoint/ed.,puppy and bunny were really disappointed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,then they saw the doctor.,then they saw the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,and bunny went run/ing to : her.,and bunny went running to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,he asked her if : she could get them some : balloon/s.,he asked her if she could get them some balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,then the doctor paid for : two balloon/s.,then the doctor paid for two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/809.slt,then puppy and bunny were happy again.,then puppy and bunny were happy again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,A cow[!] and the elephant want to [~_wanna] play baseball.,A cow and the elephant want to play baseball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and (the cow jus um) the cow just throwed|throw[EW:threw] it in the water xx his hand[?].,and the cow jus um the cow just throwed it in the water his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and I do not know what else [+_bch].,and I do not know what else +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,then he[!] just start/ed [EU].,then he just started +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,he just want/ed to get that ball !,he just wanted to get that ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,[~_well_#_well] she[!] got[!] it.,she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,the cow just got it.,the cow just got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and she just threw it to her.,and she just threw it to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,now she was do/ing everything to the boy.,now she was doing everything to the boy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,She just want/ed to bounce on here and swim.,She just wanted to bounce on here and swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,she wanted?,she wanted +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,can you say that again?,can you say that again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,she just want/ed to bounce on there and swim [+_bch].,she just wanted to bounce on there and swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,then she run|run[EW:ran].,then she run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and she just run|run[EW:ran] and running [EU].,and she just run and running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,then (she was) she want|want[EW:wanted] too many tricks through this one and this one [EU].,then she was she want too many tricks through this one and this one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,she hurt herself.,she hurt herself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,now she was cry/ing [EU].,now she was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,then he just put a bandaid on her.,then he just put a bandaid on her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,now she can not swim.,now she can not swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,I mean the cow and the elephant [EU].,I mean the cow and the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,now he *is mad at her [EU].,now he mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and then the end [+_bch].,and then the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,A cow : was have/ing a[EW:an] airplane : for flying here [EU].,A cow was having a airplane for flying here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and then he : just want/ed to fly.,and then he just wanted to fly +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,then she[!] got it.,then she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,then it went in there.,then it went in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,he just want/ed to eat the xx bit.,he just wanted to eat the bit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,he was mad at her because (sh) her[EW:she] just throwed|throw[EW:threw] it in there.,he was mad at her because sh her just throwed it in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and then : she was so : sad because : he was sad too because her[EW:she] was sad too because it was slip/ed in.,and then she was so sad because he was sad too because her was sad too because it was slipped in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,xxx.,x +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,then (it) I would[!] get (it) : it : [~_EXA:_what_(i)s_in__the_story] because it was sink/ing into the ground.,then it I would get it it because it was sinking into the ground +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,she is so[!] mad.,she is so mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and then?,and then +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and then : he was so sad and cry/ing from that airplane [EU].,and then he was so sad and crying from that airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,"okay L, what happened next L?",okay L what happened next L +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,then he got back.,then he got back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and then she pick|pick[EW:picked] it up and give|give[EW:gave] it to him.,and then she pick it up and give it to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,: and then?,and then +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and then she was try/ing to get it.,and then she was trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,: and then?,and then +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and then she got it !,and then she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,: and then?,and then +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and then : he was so happy and her too.,and then he was so happy and her too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and then [+/]^,and then +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and then the end [+_bch].,and then the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,He just want/ed to play with her.,He just wanted to play with her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,the castle [EU].,the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,(duh) he just play/ed with the bunny.,duh he just played with the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and it was go/ing to[:_gonna] break.,and it was going to break +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,he just put lot/s of sand in there.,he just put lots of sand in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and it is go/ing to[:_gonna] break.,and it is going to break +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and : that is the day it broked|broke[EW:broke].,and that is the day it broked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and now how are they go/ing to[:_gonna][?] fix it?,and now how are they going to fix it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,how?,how +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,(ah) they was[EW:were] walk/ing.,ah they was walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,they were go/ing to have a beach.,they were going to have a beach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,they were go/ing to[:_gonna] have a party.,they were going to have a party +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,oh they already had a party.,oh they already had a party +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and the bunny just want/ed to eat a carrot.,and the bunny just wanted to eat a carrot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,now he is fat[!] [~_giggles].,now he is fat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and (he is sad like :) he is sad.,and he is sad like he is sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and (she) he is happy now.,and she he is happy now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,now he happy.,now he happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,(he) she want|want[EW:wanted] to go there.,he she want to go there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,(toin da) what does she want?,toin da what does she want +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,he was try/ing to licking[EW:lick] his tongue [EU].,he was trying to licking his tongue +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,he was what?,he was what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,she want/ed to lick on her tongue [+_bch].,she wanted to lick on her tongue +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,(hmm but then he is) and then : she was take/ing her walk/ing.,hmm but then he is and then she was taking her walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,they were going for a walk.,they were going for a walk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and the end [+_bch].,and the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,Now they was[EW:were] go/ing for *a walk again [EU].,Now they was going for walk again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,they got a balloon.,they got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and they was[EW:were] walk/ing.,and they was walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,then they just want/ed to float away.,then they just wanted to float away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and it jump/ed right off the air [EU].,and it jumped right off the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and they just want/ed it.,and they just wanted it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,(they got so) he was so mad.,they got so he was so mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,there was a moo.,there was a moo +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and he was hold/ing some more balloon/s : for them!,and he was holding some more balloons for them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and he just jump/ed right up there.,and he just jumped right up there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and the man want/ed to give him a balloon for the wagon.,and the man wanted to give him a balloon for the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,(five :) five number on the balloon [EU].,five five number on the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and the guy there was so mad and happy.,and the guy there was so mad and happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and (he was so) those two was[EW:were] happy.,and he was so those two was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and they decid/ed to do everything.,and they decided to do everything +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,now he is happy.,now he is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and then he just want/ed to give them a balloon right now.,and then he just wanted to give them a balloon right now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,then (he) he was so sick.,then he he was so sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,then (the doctor was the) : the hospital guy was just wanted[EW:wanting] to check him with the doctor.,then the doctor was the the hospital guy was just wanted to check him with the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,he just want/ed a balloon right now.,he just wanted a balloon right now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,I can take this off and put it on [+_bch].,I can take this off and put it on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,I can put it back on [+_bch].,I can put it back on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,be careful.,be careful +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and then what?,and then what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,then (he) he just give|give[EW:gave] him a (quarter) (quarter) quarter.,then he he just give him a quarter quarter quarter +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,then they was[EW:were] so happy because they got a balloon.,then they was so happy because they got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/423.slt,and then the end [+_bch].,and then the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,(okay um) : the giraffe and the elephant are[-:] at : a beach party.,okay um the giraffe and the elephant are at a beach party +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and[-:] they are play/ing with a ball.,and they are playing with a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,suddenly (the ball) : the[-:] elephant drop/3s the ball into the pool.,suddenly the ball the elephant drops the ball into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,so the giraffe : go/3s to get it[?] [~_disk_skips].,so the giraffe goes to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,the elephant look/3s worry/ed because the pool is very deep.,the elephant looks worried because the pool is very deep +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and the[-:] giraffe might drowned|drown[EW:drown].,and the giraffe might drowned +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and[-:] : the giraffe does not drowned|drown[EW:drown] : because (he is very long) his neck is very long and : give/3s the ball : to the elephant [EU].,and the giraffe does not drowned because he is very long his neck is very long and gives the ball to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and[-:] (um) : then the : giraffe feel/3s very proud of himself.,and um then the giraffe feels very proud of himself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and the elephant think/3s he (is) look/3s[-:] cute that way.,and the elephant thinks he is looks cute that way +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,(um) : the giraffe and : the[-:] (uh) : elephant are at the pool again : because they are have/ing swimming lessons.,um the giraffe and the uh elephant are at the pool again because they are having swimming lessons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and : the elephant : is run/ing : into the pool.,and the elephant is running into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,suddenly she slip/3s : and[-:] fall/3s.,suddenly she slips and falls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,then the giraffe see/3s her cry/ing : because she has : an owie on her knee.,then the giraffe sees her crying because she has an owie on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,he call/3s the lifeguard.,he calls the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and the lifeguard come/3s run/ing.,and the lifeguard comes running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,he put/3s a bandage on : the : elephant.,he puts a bandage on the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and : she think/3s it is go/ing to hurt.,and she thinks it is going to hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,but it : do/3s not.,but it does not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and then he put/3s the elephant onto the bench for her to sit for awhile.,and then he puts the elephant onto the bench for her to sit for awhile +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,the lifeguard point/3s to a sign say/ing no run/ing.,the lifeguard points to a sign saying no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and she (is) [-:] : will not do it ever again.,and she is will not do it ever again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,the giraffe brought a new toy to : the swimming pool.,the giraffe brought a new toy to the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and the elephant really like/3s it.,and the elephant really likes it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,he play/3s with the airplane.,he plays with the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and : has a really cool string at the end.,and has a really cool string at the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,the elephant[!] snatch/3s it away from the giraffe : and think/3s it is really : cool!,the elephant snatches it away from the giraffe and thinks it is really cool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and she is fly/ing it around.,and she is flying it around +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,but then it : drop/3s into the pool.,but then it drops into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and it/z : flinger thing break/3s.,and it's flinger thing breaks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and what?,and what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and the[-:] (um) propeller thing : break/3s off [+_bch].,and the um propeller thing breaks off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,oh okay.,oh okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and it go/3s deeper deeper into the water.,and it goes deeper deeper into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and the giraffe is really mad at the elephant.,and the giraffe is really mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,but : she[-:] make/3s an (in) innocent face on her : face.,but she makes an in innocent face on her face +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,(the life) (she) the (um) : giraffe call/3s the lifeguard.,the life she the um giraffe calls the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and : he : come/3s to[-:] the pool and find/3s : the : airplane in the pool.,and he comes to the pool and finds the airplane in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,the elephant is explain/ing[!] to the lifeguard what happen/ed.,the elephant is explaining to the lifeguard what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and she[-:] feel/3s really sorry.,and she feels really sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,so the lifeguard try/3s to : get : the : airplane : and give|give[EW:gives] it back to the : giraffe.,so the lifeguard tries to get the airplane and give it back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,the giraffe : is cry/ing : because it goes deeper deeper into the water.,the giraffe is crying because it goes deeper deeper into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and : (the : lifeguard) the other lifeguard with the net come/3s and : (give/3s it) (um) : get/3s the : plane.,and the lifeguard the other lifeguard with the net comes and gives it um gets the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and the giraffe : has one more tear.,and the giraffe has one more tear +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,but then it go/3s.,but then it goes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and[-:] everyone feel/3s happy.,and everyone feels happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,the giraffe has no more tear/s and : is smile/ing.,the giraffe has no more tears and is smiling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,the lifeguard[!] is smile/ing too : and give/3s the plane back : to the : giraffe.,the lifeguard is smiling too and gives the plane back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,the giraffe hug/3s : the plane.,the giraffe hugs the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and (um) : the (el) elephant is happy again.,and um the el elephant is happy again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,the kangaroo : was build/ing a sandcastle.,the kangaroo was building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and then : her friend rabbit[!] came along.,and then her friend rabbit came along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,he put : some sand into : a big bucket : and : start/ed to build something.,he put some sand into a big bucket and started to build something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,(then the dog realize/ed) then (the um) : the kangaroo realize/ed that : the bunny was make/ing a sandcastle : right : in front of it.,then the dog realized then the um the kangaroo realized that the bunny was making a sandcastle right in front of it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,but it spill/ed all over the castle.,but it spilled all over the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,the[-:] mountain of sand : cover/ed half of the castle.,the mountain of sand covered half of the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and only a little bit was left.,and only a little bit was left +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,the : kangaroo start/ed cry/ing.,the kangaroo started crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and the bunny (felt) : made an innocent face on his face.,and the bunny felt made an innocent face on his face +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,bunny was go/ing down to the forest (to) for a picnic.,bunny was going down to the forest to for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and : he saw : (uh um) kangaroo there too.,and he saw uh um kangaroo there too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,they said hi and : found a place for their picnic.,they said hi and found a place for their picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,(bunny) [~_I_mean] (um) : kangaroo never (really li) realiz/ed (what is) : how big of a[EW:an] eater bunny was.,bunny um kangaroo never really li realized what is how big of a eater bunny was +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and : he pack/ed : no food but just junk food.,and he packed no food but just junk food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,after he was done : he look/ed like an enormous pig : because his belly was : big.,after he was done he looked like an enormous pig because his belly was big +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and : (dog was : drink) (um bun uh) kangaroo was drink/ing : her juice and eat/ing her sandwich.,and dog was drink um bun uh kangaroo was drinking her juice and eating her sandwich +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,then (s) : bunny start/ed hicup/ing : and : burp/ing (ca) : and had a (s) tummyache.,then s bunny started hicuping and burping ca and had a s tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and : kangaroo just realize/ed that!,and kangaroo just realized that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,she start/ed run/ing : (to[-:] bunny/z) (to the doctor) : to doctor bunny : and : said my friend look/3s like he is very sick.,she started running to bunny's to the doctor to doctor bunny and said my friend looks like he is very sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,(she) (sh) (she) (she drag/ed) : she pull/ed (miss) doctor bunny there.,she sh she she dragged she pulled miss doctor bunny there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and : (um : she) : doctor bunny start/ed look/ing at : bunny.,and um she doctor bunny started looking at bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,she said you have been eat/ing too much[EW:many] sweet/s (candy) : and candy : and not enough healthy (nutrent) : nutritious stuff.,she said you have been eating too much sweets candy and candy and not enough healthy nutrent nutritious stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,you should : eat your dessert after but only a little[!] bit of dessert.,you should eat your dessert after but only a little bit of dessert +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,or else you will feel very sick.,or else you will feel very sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,so doctor bunny (took : bunny home to) : took bunny home (to her) : to his mother.,so doctor bunny took bunny home to took bunny home to her to his mother +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and : he told her all[!] about the thing/s : that he ate and did : today.,and he told her all about the things that he ate and did today +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,one day : (kangaroo was in) : Joey the kangaroo was in the forest.,one day kangaroo was in Joey the kangaroo was in the forest +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and bunny : saw her with her balloon : tuck/ed : onto (her) : the wheel of her : wagon.,and bunny saw her with her balloon tucked onto her the wheel of her wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,he said : hey I really like that!,he said hey I really like that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,is there any more around?,is there any more around +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,kangaroo said I do not know.,kangaroo said I do not know +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,the balloon man might be : somewhere far from here.,the balloon man might be somewhere far from here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,(um) and[-:] bunny try/ed to take it off : for[-:] him[!].,um and bunny tried to take it off for him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,but : kangaroo said hey that is mine.,but kangaroo said hey that is mine +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and I really like it.,and I really like it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,it is my favorite color.,it is my favorite color +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and : then : bunny : realize/ed that he was not alone.,and then bunny realized that he was not alone +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,he look/ed very[!] nervous.,he looked very nervous +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,suddenly he let go of the balloon!,suddenly he let go of the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,bunny : realize/ed that the : balloon was : high up in the sky.,bunny realized that the balloon was high up in the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and no one could catch it because it was go/ing high : too fast!,and no one could catch it because it was going high too fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,kangaroo look/ed very[!] mad at bunny.,kangaroo looked very mad at bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,then[!] they saw the balloon man : with (all) : more (of bunny) of kangaroo/z favorite color/s[!] and bunny/z too : purple and blue.,then they saw the balloon man with all more of bunny of kangaroo's favorite colors and bunny's too purple and blue +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,bunny ask/ed for a blue : balloon.,bunny asked for a blue balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,the man said : that would be (ten[-:]) [~_I_mean] : one dollar please.,the man said that would be ten one dollar please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,bunny look/ed in his pocket/s.,bunny looked in his pockets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,(but) : [~_oh_no] that is five cent/s for a balloon.,but that is five cents for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,[~_oh] (um uh) bunny look/ed in his pocket/s!,um uh bunny looked in his pockets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and he only kept his money at home.,and he only kept his money at home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,then : mister bunny : said well I guess you can not buy a : balloon if you do not have five cent/s.,then mister bunny said well I guess you can not buy a balloon if you do not have five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,then they saw a doctor[-:] bunny there : and[-:] said : miss bunny : (can we) can me and my friend please have five cent/s each?,then they saw a doctor bunny there and said miss bunny can we can me and my friend please have five cents each +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,we really want a purple and blue : balloon.,we really want a purple and blue balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,bunny point/ed it out and : lift/ed up his pocket/s.,bunny pointed it out and lifted up his pockets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,oh[!] you have no money said : miss : bunny.,oh you have no money said miss bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,I guess I will have to give you five cent/s each.,I guess I will have to give you five cents each +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,so she gave the man five cent/s.,so she gave the man five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and (they both got) : bunny got a blue balloon.,and they both got bunny got a blue balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and : kangaroo got : a purple one.,and kangaroo got a purple one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,thank[!] you said the man for the coin/s.,thank you said the man for the coins +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and they : both play/ed with their : balloon/s.,and they both played with their balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,and : miss bunny said make sure you tie it somewhere safe : (a) so it do/3s not get loose and float : away.,and miss bunny said make sure you tie it somewhere safe a so it does not get loose and float away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/818.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,an elephant and a giraffe [EU].,an elephant and a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and the elephant is : bounce/ing the ball[-:].,and the elephant is bouncing the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,then the ball go/3s in the water[-:].,then the ball goes in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,then the : giraffe jump/3s in the water and (start/3s swimming[-:]) : start/3s (sw) swimming.,then the giraffe jumps in the water and starts swimming starts sw swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and the elephant is : like this [~_pointing_to_the_pictures_on__page].,and the elephant is like this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,remember I can not see the picture/s.,remember I can not see the pictures +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,then the : giraffe got the ball and pass/ed it back to the elephant.,then the giraffe got the ball and passed it back to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,then she is so happy.,then she is so happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,I see the : elephant and the giraffe.,I see the elephant and the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and the (giras) : giraffe is all dry[-:].,and the giras giraffe is all dry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,then the[-:] elephant start/3s run/ing : look/ing at the giraffe.,then the elephant starts running looking at the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,then she slip/3s on some water[-:].,then she slips on some water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and then she fall/3s on her knee and get/3s hurt[-:].,and then she falls on her knee and gets hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and then : one of (the : thing/s that) the guard/3s come|come[EW:comes] with a bandage[-:].,and then one of the things that the guards come with a bandage +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and then he put/3s it on.,and then he puts it on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and she gots[EW:has] her eye/s close/ed[-:].,and she gots her eyes closed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,she is sit/ing on a bench[-:].,she is sitting on a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and : he told her : to look at that sign.,and he told her to look at that sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,(and sawed) and she sawed|see[EW:saw] no run/ing.,and sawed and she sawed no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,he has a plane[-:].,he has a plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,(and) and she is talk/ing to him.,and and she is talking to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and then he make/3s it fly.,and then he makes it fly +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and then she is : look/ing at it.,and then she is looking at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,(and) : (and) and she never sawed|see[EW:saw] one before.,and and and she never sawed one before +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,then she grab/3s it from him.,then she grabs it from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,(and he is) and he say/3s hey[-:].,and he is and he says hey +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,then she accident[EW:accidentally] drop/ed it.,then she accident dropped it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and it land/3s in the water[-:].,and it lands in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,then he get/3s mad at the elephant.,then he gets mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,then the : guard : come/3s.,then the guard comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,(and she) and he see/3s the plane in the water[-:].,and she and he sees the plane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and the elephant is walk/ing.,and the elephant is walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,then she tell/3s (the) : the (s) guard[-:] (that) : what happen/ed.,then she tells the the s guard that what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,(and) and the giraffe is like just stand/ing look/ing at his airplane.,and and the giraffe is like just standing looking at his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,then the : guard try/3s to get it.,then the guard tries to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,but he can not[-:].,but he can not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and (then he) then the giraffe start/3s cry/ing.,and then he then the giraffe starts crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and he is on his knees[-:].,and he is on his knees +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,then a girl elephant come/3s with a net and : try/3s to get it out.,then a girl elephant comes with a net and tries to get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and she gots|get[EW:gets] it.,and she gots it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and she is : pull/ing[-:].,and she is pulling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,(and) and he is : start/ing to stop cry/ing [EU].,and and he is starting to stop crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and then he stop/ed.,and then he stopped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and he is so happy.,and he is so happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,then he is hug/ing it.,then he is hugging it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and the elephant is : like this [~_wraps_arms_around_self].,and the elephant is like this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,I see a rabbit[-:] and a dog[-:].,I see a rabbit and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,(and) : (and the) and (he) (she) the dog : made a sandcastle.,and and the and he she the dog made a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and the rabbit want/3s to help too[-:].,and the rabbit wants to help too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,(then he puts) : then he get/3s the bucket and fill/3s it up with sand.,then he puts then he gets the bucket and fills it up with sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,(then he says) and then he is go/ing to dump it on the sandcastle.,then he says and then he is going to dump it on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,(then) (then the sandcas) (then all the sand is : on) (and all the san) (and all) and the sandcastle is burry/ed.,then then the sandcas then all the sand is on and all the san and all and the sandcastle is burryed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,(and the dog is) : (and the) : and the : rabbit is like : with his mouth open : look/ing at the sandcastle.,and the dog is and the and the rabbit is like with his mouth open looking at the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,the dog is : look/ing at the sandcastle on his knees[-:].,the dog is looking at the sandcastle on his knees +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,then the dog has to make the sandcastle again.,then the dog has to make the sandcastle again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and the rabbit is stand/ing look/ing : up.,and the rabbit is standing looking up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and the dog is cry/ing.,and the dog is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,I see a dog in the forest with a picnic basket.,I see a dog in the forest with a picnic basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and the same with the rabbit.,and the same with the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and the dog is like : look/ing to see how far.,and the dog is like looking to see how far +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and (then) : then when the dog get/3s there : the rabbit is there[-:].,and then then when the dog gets there the rabbit is there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,(then the dog) : then the : rabbit finish/ed eat/ing.,then the dog then the rabbit finished eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and he is : pat/ing his tummy : with his mouth open.,and he is patting his tummy with his mouth open +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and the dog : is just eat/ing a sandwich.,and the dog is just eating a sandwich +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,(then he) then the rabbit get/3s sick.,then he then the rabbit gets sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,(and) and then the dog stop/3s drink/ing and stop/3s eat/ing.,and and then the dog stops drinking and stops eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,then he run/3s to a nurse[-:] : and tell/3s the nurse[-:].,then he runs to a nurse and tells the nurse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,(then) (then sh) (sh) then the dog (pull/ed[-:]) pull/ed the nurse over.,then then sh sh then the dog pulled pulled the nurse over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,(and he che) and the nurse check/ed : at the rabbit [EU].,and he che and the nurse checked at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and then he feel/3s better.,and then he feels better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and the dog is stand/ing.,and the dog is standing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,I see a dog.,I see a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and : the dog (w) *is hold/ing a wagon [EU].,and the dog w holding a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and a balloon is tie/ed to the wagon.,and a balloon is tied to the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and the rabbit is : wave/ing.,and the rabbit is waving +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and the dog is look/ing at the rabbit.,and the dog is looking at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,then the : rabbit say/3s what a nice balloon.,then the rabbit says what a nice balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and he is : get/ing his (con) hand close to it.,and he is getting his con hand close to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and (then the) (then) then the dog is look/ing at the balloon/s smile/ing.,and then the then then the dog is looking at the balloons smiling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,then the rabbit untie/3s it.,then the rabbit unties it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and the dog stop/3s smile/ing.,and the dog stops smiling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and he go/3s [~_gasps].,and he goes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,then the balloon go/3s up up in the sky[-:].,then the balloon goes up up in the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and (then it is get/ing clo) then it : disappear/ed in the sky.,and then it is getting clo then it disappeared in the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and the : dog is so mad at the rabbit.,and the dog is so mad at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,(then they went to buy an) then the rabbit went to buy a new[!] balloon.,then they went to buy an then the rabbit went to buy a new balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and he said : can I have one of those balloon/s?,and he said can I have one of those balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and he said five cent/s.,and he said five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and he did not have no[EW:any] money.,and he did not have no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and then the rabbit had an idea.,and then the rabbit had an idea +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,but he was sad.,but he was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,(and) : and then he : (l) turn/ed around and went walk/ing.,and and then he l turned around and went walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and then he got the nurse[-:].,and then he got the nurse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and (then the) : then (it th) (he was) (he got it) (he) : he was still walk/ing.,and then the then it th he was he got it he he was still walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and then he got the nurse[-:].,and then he got the nurse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and then he said : (I letted go of t) (of her) I untie/ed her : balloon!,and then he said I letted go of t of her I untied her balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and then it went up up in the sky.,and then it went up up in the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,and then I can not buy a new one because I have no money.,and then I can not buy a new one because I have no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,(then) : (then she) (then) : then she buyed|buy[EW:bought] two[!] balloon/s one for each.,then then she then then she buyed two balloons one for each +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,(and[-:] the do) one for the dog and one for the rabbit.,and the do one for the dog and one for the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/654.slt,then they are so happy now.,then they are so happy now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,the boy said ooh cool!,the boy said ooh cool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and (the elephant) the elephant play|play[EW:played] with *a soccer ball (umhm)[EU].,and the elephant the elephant play with soccer ball umhm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see the giraffe is sorry to take the elephant [EU].,and see the giraffe is sorry to take the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and (that is : and the) see and he catch|catch[EW:caught] it all the way he can long [EU].,and that is and the see and he catch it all the way he can long +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,he (went) got[!] long [EU].,he went got long +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,long can not[?] [EU].,long can not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,he got little arm [EU].,he got little arm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and he swim|swim[EW:swam].,and he swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,he can not swim.,he can not swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and he catch|catch[EW:caught] the[?] ball.,and he catch the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,he give|give[EW:gave] it to : (the um) the elephant.,he give it to the um the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and give|give[EW:gave] it back[?].,and give it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see?,and see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,(he is ha) he gived|give[EW:gave] : the ball to giraffe.,he is ha he gived the ball to giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see : and this is done [+_bch].,and see and this is done +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see him.,and see him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and (he) he is happy!,and he he is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,a long time ago he is go/ing swimming pool [EU].,a long time ago he is going swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and (he) the sign said no run/ing : because it is slippery[!].,and he the sign said no running because it is slippery +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,a long time he is go/ing in the pool[!] : and splash/ing in the pool [EU].,a long time he is going in the pool and splashing in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and he slip|slip[EW:slipped].,and he slip +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,"(and he hurt heself[EW:himself] and uh) and he hurt himself [~_pronounced_""heself""].",and he hurt heself and uh and he hurt himself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and he got[EW:had] no blood.,and he got no blood +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,he got a little owie on [EU].,he got a little owie on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,he got a bandaid.,he got a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and : see this girl gave a bandaid on there [EU].,and see this girl gave a bandaid on there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and (the mom) the elephant *is sad[!] oh dear yeah [EU].,and the mom the elephant sad oh dear yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and he said ow(*3).,and he said ow ow ow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and this [EU].,and this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,(and hes) and the elephant *is get/ing up [EU].,and hes and the elephant getting up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and : the strong[?] man : get|get[EW:got] the leg up (umhm).,and the strong man get the leg up umhm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and (he said) : he said the man is : too bad [EU].,and he said he said the man is too bad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,(the man he) the man got a plane : (umhm).,the man he the man got a plane umhm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and (the) the elephant said wow.,and the the elephant said wow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see?,and see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,(the giraffe said : to the) : and see the giraffe want/3s the plane back : because the giraffe is this[!] plane : because the elephant that[!] is yours (umhm) [EU].,the giraffe said to the and see the giraffe wants the plane back because the giraffe is this plane because the elephant that is yours umhm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and (he is) the elephant threw it in the pool!,and he is the elephant threw it in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,: oh.,oh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,"can you uncover your hands so I can hear you better, thank you.",can you uncover your hands so I can hear you better thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see a long time : the elephant said sorry [EU]!,and see a long time the elephant said sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see the giraffe is too mad.,and see the giraffe is too mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see?,and see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see this man can not catch us (uhuh).,and see this man can not catch us uhuh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,a long time : elephant can not do it [EU].,a long time elephant can not do it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,the big[!] elephant *is strong [EU].,the big elephant strong +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,oh no he can not reach it.,oh no he can not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,nope!,nope +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,yeah.,yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and a long time : (the giraffe is) the giraffe is too sad [EU].,and a long time the giraffe is the giraffe is too sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see him?,and see him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,a catcher man : know|know[EW:knows] to do it [EU].,a catcher man know to do it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and he catch|catch[EW:caught] it.,and he catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and he knew.,and he knew +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and the long time he catch it : far away [EU].,and the long time he catch it far away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,he give|give[EW:gave] it back there the giraffe.,he give it back there the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and he said : thank you.,and he said thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see the elephant too happy [EU].,and see the elephant too happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,(the dog) the dog make|make[EW:made] a castle.,the dog the dog make a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,(and he) (the rabbit say/3s) the rabbit shovel|shovel[EW:shovels].,and he the rabbit says the rabbit shovel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and the rabbit : share/ed the dog [EU].,and the rabbit shared the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and the rabbit is shovel[EW:shovelling].,and the rabbit is shovel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,(and the see) and see him?,and the see and see him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,the dog is not happy : because the rabbit (do) (pour/ed um) pour/ed (the) the sand on the castle.,the dog is not happy because the rabbit do poured um poured the the sand on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,(and) (and the dog) and the dog is not happy.,and and the dog and the dog is not happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,(and the dog is) and the rabbit is not happy too[EW:either].,and the dog is and the rabbit is not happy too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and : see is one castle [EU].,and see is one castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,then xx the way there (umhm).,then the way there umhm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,(and : there) and see?,and there and see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and the dog fix|fix[EW:fixed] it all week.,and the dog fix it all week +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and the dog is sad.,and the dog is sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and the rabbit said : (um) not sorry [EU].,and the rabbit said um not sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and he do|do[EW:did] this.,and he do this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,(and do) (and the) (he) the dog just keep do/ing it [EU].,and do and the he the dog just keep doing it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,it is almost done (umhm).,it is almost done umhm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,the rabbit is have/ing a picnic.,the rabbit is having a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,then the dog is have/ing a picnic.,then the dog is having a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and : see the dog.,and see the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,the dog is (se) hungry.,the dog is se hungry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see the rabbit is hungry.,and see the rabbit is hungry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,(and the do) the rabbit said : (uh) too full.,and the do the rabbit said uh too full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and the dog is not too full.,and the dog is not too full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,no.,no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and (the) the rabbit is too full.,and the the rabbit is too full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,the dog (is) is[!] drink/ing.,the dog is is drinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see the rabbit is (got) eat/ing a lots[EW:lot] of food.,and see the rabbit is got eating a lots of food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and the doctor said [~_high_pitched_voice] help help doctor.,and the doctor said help help doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,[~_high_pitched_voice] (see uh) see the rabbit has got too full.,see uh see the rabbit has got too full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,[~_high_pitched_voice] (come come the um come come come come s come and) come to see what (the do) the rabbit done : (umhm)[EU].,come come the um come come come come s come and come to see what the do the rabbit done umhm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see?,and see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,the lady do|do[EW:did] fix (the dog um) the rabbit (umhm).,the lady do fix the dog um the rabbit umhm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see?,and see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,(the ra) it is suppose/ed to xx the rabbit.,the ra it is supposed to the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,(mhm) and see him?,mhm and see him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,the rabbit : *is take/ing (the doctor from) the doctor from be[?] : (umhm) [EU].,the rabbit taking the doctor from the doctor from be umhm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,see?,see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,along time the rabbit come|come[EW:came] and said hi [EU].,along time the rabbit come and said hi +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see.,and see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,the dog said hi.,the dog said hi +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,(and the dog) and the rabbit wrap/ed his balloon (umhm).,and the dog and the rabbit wrapped his balloon umhm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and (see he said) (he) (the dog) see the rabbit push/ed the dog.,and see he said he the dog see the rabbit pushed the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and : the rabbit (doing t) : *is pop/ing the balloon (umhm) [EU].,and the rabbit doing t popping the balloon umhm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see?,and see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and[-:] the dog is come/ing all day.,and the dog is coming all day +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see?,and see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,the rabbit *is take/ing this : thing off [EU].,the rabbit taking this thing off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see the dog is (not) not happy.,and see the dog is not not happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see?,and see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and the long time the rabbit catch|catch[EW:caught] it [EU].,and the long time the rabbit catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and the dog : will catch it (umhm).,and the dog will catch it umhm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see?,and see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,the dog is too mad.,the dog is too mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and see the rabbit is not too (mad) mad because he chew/ed gently (umhm).,and see the rabbit is not too mad mad because he chewed gently umhm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and he get[EW:got] another balloon : (uhhm yeah).,and he get another balloon uhhm yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and he said [~_high_pitched_voice] we have a balloon (yeah umhm)?,and he said we have a balloon yeah umhm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and he said [~_low_pitched_voice] (um) no you have no money change : now [EU].,and he said um no you have no money change now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and he said : oh dear.,and he said oh dear +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and he said [~_low_pitched_voice] no.,and he said no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,no change[?] (umhm).,no change umhm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,(and the doctor : thought) (the rabbit said hm) (the doctor said) : (the) the doctor said [~_high_pitched_voice] hurry get the doctor.,and the doctor thought the rabbit said hm the doctor said the the doctor said hurry get the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and the doctor got the change.,and the doctor got the change +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,[~_high_pitched_voice] (we have) you give[?] balloon to us [EU]?,we have you give balloon to us +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,yes : and he said he got change (yep umhm).,yes and he said he got change yep umhm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,he is happy and change [EU].,he is happy and change +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and a long time ago : the rabbit give|give[EW:gave] change to the rabbit (umhm).,and a long time ago the rabbit give change to the rabbit umhm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,and he is happy he get|get[EW:got] *a balloon[-:] (umhm) [EU].,and he is happy he get balloon umhm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/480.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,the elephant was bounce/ing the ball.,the elephant was bouncing the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the zebra was watch/ing.,and the zebra was watching +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,(the ele) the elephant : got the ball : into the water[-:].,the ele the elephant got the ball into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then the (z) elephant was so sad.,and then the z elephant was so sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the zebra : was try/ing to get the ball.,and the zebra was trying to get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,the[-:] zebra got her ball.,the zebra got her ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,then : the zebra : gave her her ball.,then the zebra gave her her ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then : the elephant was so happy.,and then the elephant was so happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the : zebra was happy.,and the zebra was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,the[-:] elephant : want/ed to : go into the water.,the elephant wanted to go into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,but it was so[!] deep.,but it was so deep +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then she ran[-:].,and then she ran +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then she slip/ed.,and then she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then she got a cut.,and then she got a cut +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the : zebra was so[!] : sad.,and the zebra was so sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the : elephant was really[!] sad.,and the elephant was really sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then the elephant cry/ed.,and then the elephant cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then the lifeguard : went : to her.,and then the lifeguard went to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then : the lifeguard put a bandaid on : the elephant.,and then the lifeguard put a bandaid on the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then she just sit|sit[EW:sat] down on the bench.,and then she just sit down on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then it was start/ing to hurt.,and then it was starting to hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,she was so[-:] : silly.,she was so silly +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,the zebra[-:] : was happy with his airplane in his hand/s.,the zebra was happy with his airplane in his hands +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the elephant was happy too.,and the elephant was happy too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then the[-:] : elephant (was) : was : (um) : kind of : sad.,and then the elephant was was um kind of sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and[-:] the zebra was play/ing with his airplane.,and the zebra was playing with his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then the zebra was sad because the : elephant took : his airplane away.,and then the zebra was sad because the elephant took his airplane away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and she was happy.,and she was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then it (f) : went into the water.,and then it f went into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,it was go/ing to sink.,it was going to sink +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the zebra : was so mad.,and the zebra was so mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the lifeguard : was : sad.,and the lifeguard was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the : elephant was sad.,and the elephant was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the zebra was sad because it was sink/ing.,and the zebra was sad because it was sinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then he could not get his : airplane.,and then he could not get his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,the lifeguard was try/ing to get : (it/z airplane) his airplane.,the lifeguard was trying to get it's airplane his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,but she was so sad.,but she was so sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the zebra was cry/ing.,and the zebra was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then : someone got a net.,and then someone got a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,(and got) (and) : and she : put it in the water and got it.,and got and and she put it in the water and got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then : she gave : the airplane to the zebra.,and then she gave the airplane to the zebra +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then he was so[!] happy again.,and then he was so happy again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the : elephant was so happy again too.,and the elephant was so happy again too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,(um) : the : both kid/s[-:] are make/ing a sandcastle : with sand.,um the both kids are making a sandcastle with sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then[-:] : the rabbit : and the dog [EU].,and then the rabbit and the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,the dog was make/ing the sandcastle.,the dog was making the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the rabbit was put/ing sand into a bucket[!].,and the rabbit was putting sand into a bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then[-:] : the rabbit[-:] pour/ed it onto the sandcastle.,and then the rabbit poured it onto the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the dog (fel) felt (um) : cross/ed[EW:cross] : with the dog.,and the dog fel felt um crossed with the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then[-:] : the dog : almost smile|smile[EW:smiled].,and then the dog almost smile +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the : rabbit was scare/ed.,and the rabbit was scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then the dog cry/ed.,and then the dog cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then : the dog said (um) : sorry!,and then the dog said um sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,you have to build it : again!,you have to build it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,the dog and rabbit : saw each other : on a[-:] path.,the dog and rabbit saw each other on a path +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,(and they s) (and the) and they want to have a picnic.,and they s and the and they want to have a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and so[-:] the rabbit want|want[EW:wants] to eat : everything in : (it) his basket [~_pronounced_/baesIk/].,and so the rabbit want to eat everything in it his basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,(and) and the dog did not.,and and the dog did not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and he took one thing at a time.,and he took one thing at a time +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then the rabbit was full.,and then the rabbit was full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then : he did not want to eat nothing[EW:anything] else : because he was full.,and then he did not want to eat nothing else because he was full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then the dog[-:] : ran to the : doctor : (and) : and grab/ed her (to the little) : (to) : (to) to the : blanket.,and then the dog ran to the doctor and and grabbed her to the little to to to the blanket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then the doctor was : check/ing the rabbit.,and then the doctor was checking the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then[-:] the doctor took him home : without the basket.,and then the doctor took him home without the basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,the dog[-:] had a wagon with a balloon on it.,the dog had a wagon with a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,the rabbit want|want[EW:wanted] to have it.,the rabbit want to have it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the dog : (um) : did not hold (onto the) : (on the) : on[-:] it.,and the dog um did not hold onto the on the on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the rabbit took it off.,and the rabbit took it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and : he was so happy.,and he was so happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then he[-:] : tie/ed off of it.,and then he tied off of it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and he let goed[EW:go] of it.,and he let goed of it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the dog was sad.,and the dog was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then[-:] : the rabbit was : sad.,and then the rabbit was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the dog was mad[-:][!].,and the dog was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then the dog[-:] was (re) so mad of the rabbit [EU].,and then the dog was re so mad of the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,(and : he wa) and the rabbit was happy (to) (saw) he saw : balloon/s.,and he wa and the rabbit was happy to saw he saw balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the rabbit want/ed a balloon (from the : rabbit) from the big rabbit.,and the rabbit wanted a balloon from the rabbit from the big rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then : the rabbit did not have any money.,and then the rabbit did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then : (he could not get any of ba) (not a balloon) he can not get a balloon.,and then he could not get any of ba not a balloon he can not get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then they were both sad.,and then they were both sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,(and then : he were) (and he was) and the rabbit was happy.,and then he were and he was and the rabbit was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then the dog stay/ed by the rabbit.,and then the dog stayed by the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the rabbit went over to the doctor.,and the rabbit went over to the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and the rabbit said to the doctor : (um) : he want/ed a balloon.,and the rabbit said to the doctor um he wanted a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and[-:] : the doctor gave some money : to the : rabbit.,and the doctor gave some money to the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then the : rabbit : (um) : give|give[EW:gave] the balloon/s to the : rabbit and the dog.,and then the rabbit um give the balloons to the rabbit and the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/774.slt,and then they both each got a balloon from the : rabbit because the : doctor : had some money[-:].,and then they both each got a balloon from the rabbit because the doctor had some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,once upon a time (there was a little : uh :) a little : elephant came along : and saw (a g) : (uh a girl with um) : a boy with lot/s of ball/s.,once upon a time there was a little uh a little elephant came along and saw a g uh a girl with um a boy with lots of balls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then : one went in!,and then one went in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and[-:] : she accidentally : push/ed him in.,and she accidentally pushed him in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,so : (um) : he dived|dive[EW:dove] under the water and got the ball and give|give[EW:gave] it back to her.,so um he dived under the water and got the ball and give it back to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,(and then he) (and then he : um) and then she like/ed him a lot.,and then he and then he um and then she liked him a lot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,once upon a time there was : a little boy and a girl want/ing to go swim/ing.,once upon a time there was a little boy and a girl wanting to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then : (um um) she point/ed to the pool.,and then um um she pointed to the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then : she dived|dive[EW:dove] in.,and then she dived in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and she hurt herself : bad.,and she hurt herself bad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then : she jump/ed up.,and then she jumped up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and she was cry/ing.,and she was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then the life (gua) guard came along : and then put a bandaid on.,and then the life gua guard came along and then put a bandaid on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,(and then) : and then : he made her (: um) sit on a bench for awhile : until it did not stop : to sting.,and then and then he made her um sit on a bench for awhile until it did not stop to sting +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then : the lifeguard : came along and : said : nobody sit/3s in the middle.,and then the lifeguard came along and said nobody sits in the middle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,once upon a time (um : um) : a boy came up from the pool with his toy airplane : that he can play in the pool.,once upon a time um um a boy came up from the pool with his toy airplane that he can play in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,(and then) and then : (um) he : just pop/ed up and scare/ed the elephant girl.,and then and then um he just popped up and scared the elephant girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then he : flewed|flew[EW:flew] around and stuck his tongue out.,and then he flewed around and stuck his tongue out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,(and she) and she went : like that [~_sticks_out_tongue].,and she and she went like that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,(and then : she) and then she got a little embarrass/ed[!].,and then she and then she got a little embarrassed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then she just grab/ed the airplane from him and took off with it.,and then she just grabbed the airplane from him and took off with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then : she (um : um) accidentally put it in : (um) the water : by accident.,and then she um um accidentally put it in um the water by accident +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then : it accidentally sinked|sink[EW:sunk].,and then it accidentally sinked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then : the cow got very angry with her.,and then the cow got very angry with her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then the lifeguard came along.,and then the lifeguard came along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and : she said it look/3s like (she) I am in trouble!,and she said it looks like she I am in trouble +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,so he try/3s to go in and reach it.,so he tries to go in and reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,: [~_well] : then (: um) : he start/ed to cry because he like/ed that airplane.,then um he started to cry because he liked that airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then : the girl[!] lifeguard came along : and said here is something that : you can try to get it with.,and then the girl lifeguard came along and said here is something that you can try to get it with +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then : she got it for him.,and then she got it for him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then she said there is your toy airplane back.,and then she said there is your toy airplane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,but do not put it back in.,but do not put it back in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and make sure that girl do/3s not : dive it back in again.,and make sure that girl does not dive it back in again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,so : (um) he was so happy to see his airplane again.,so um he was so happy to see his airplane again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,once upon a time : there was a little[!] : bunny.,once upon a time there was a little bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,he came along : and said : hey we have the same one.,he came along and said hey we have the same one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,but : mine is bigger!,but mine is bigger +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,can I play with you!,can I play with you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,so : and then they start/ed to play.,so and then they started to play +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then : he : pour/ed that on to make (an) a different one that could look (bret) better.,and then he poured that on to make an a different one that could look bret better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then he wreck/ed the castle.,and then he wrecked the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and he feeled|feel[EW:felt] bad.,and he feeled bad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then : she was start/ing to cry.,and then she was starting to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,well he was embarrass/ed.,well he was embarrassed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,once upon a time : (a little) a little girl dog (came : um um) came along while a bunny came along.,once upon a time a little a little girl dog came um um came along while a bunny came along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,they both had basket/s.,they both had baskets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,but (they were um) : one was go/ing this way.,but they were um one was going this way +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and one was go/ing that way.,and one was going that way +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then : they start/ed to have a snack.,and then they started to have a snack +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,but (he) he was suppose/ed to leave that for his grandma : out in the wood/s.,but he he was supposed to leave that for his grandma out in the woods +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then : he drank it.,and then he drank it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and he was get/ing with (a) : a big fat tummy : from eat/ing all that junk.,and he was getting with a a big fat tummy from eating all that junk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then he : was not feel/ing very good.,and then he was not feeling very good +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then (sh) she call/ed for her dad.,and then sh she called for her dad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then : the dad came and fix/ed him : and : point/ed that way.,and then the dad came and fixed him and pointed that way +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then he felt better again.,and then he felt better again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,once upon a time : a little girl came : along with her wagon and tie/ed a balloon to : the wheel to it.,once upon a time a little girl came along with her wagon and tied a balloon to the wheel to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then a boy : bunny rabbit came along : and said hey can I have that balloon.,and then a boy bunny rabbit came along and said hey can I have that balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and she said of course you can!,and she said of course you can +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then he took it.,and then he took it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then he hurt himself : because he got a little tire/ed.,and then he hurt himself because he got a little tired +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then : he got it.,and then he got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and (he did not know) they did not know it was go/ing to [~__gonna] float up in the air.,and he did not know they did not know it was going to float up in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,but (the) at least the girl did.,but the at least the girl did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,(um) but he did not know that very good[EW:well].,um but he did not know that very good +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,so he try/ed to get it back.,so he tried to get it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,but he could not reach.,but he could not reach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then all that was left of it : was half a string.,and then all that was left of it was half a string +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then they went : to go and get another one from the balloon man.,and then they went to go and get another one from the balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,but that cost : five dollar/s.,but that cost five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and he[!] said could we get another two[!] balloon/s please?,and he said could we get another two balloons please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,: five buck/s kid!,five bucks kid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and he said but : sir I do not have five buck/s.,and he said but sir I do not have five bucks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,could we just get them for free please?,could we just get them for free please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then they went to go and ask the dad : of those kid/s.,and then they went to go and ask the dad of those kids +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and he[?] said do you have five dollar/s : to get another balloon for us dad?,and he said do you have five dollars to get another balloon for us dad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,so he did.,so he did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then : they both got a balloon.,and then they both got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then he paid.,and then he paid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/564.slt,and then : he smile/ed at the kid/s : and said you are welcome.,and then he smiled at the kids and said you are welcome +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,Two kid/s *are meet/ing each other [EU].,Two kids meeting each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,two kid/s had a ball.,two kids had a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,and it fell in the water.,and it fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,one of the kid/s went to go get the ball in the water.,one of the kids went to go get the ball in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,he gave the ball to the other kid.,he gave the ball to the other kid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,"and when the (kid) other kid was wet, the other kid did not want to [~_wanna] go close.",and when the kid other kid was wet the other kid did not want to go close +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,Two kid/s[-:] are about to jump in the diving pool.,Two kids are about to jump in the diving pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,one kid : say/3s no : because she do/3s not want to[:_wanna] get wet.,one kid says no because she does not want to get wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,the other one run/3s away : when the sign say/3s no run/ing.,the other one runs away when the sign says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,she fell down because she did not see the sign.,she fell down because she did not see the sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,she had this big scratch on her knee.,she had this big scratch on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,then her head start/ed to hurt.,then her head started to hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,then : they put her on a bench : to let her knee heal.,then they put her on a bench to let her knee heal +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,the lifeguard point/ed : to the sign no run/ing.,the lifeguard pointed to the sign no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,One girl *is scream/ing [EU].,One girl screaming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,and the other kid *is laugh/ing [EU].,and the other kid laughing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,one kid *is play/ing with the airplane [EU].,one kid playing with the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,and the other kid *is just : stare/ing at him [EU].,and the other kid just staring at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,then the other kid steal/3s the airplane away from : the boy.,then the other kid steals the airplane away from the boy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,then : the airplane fell in the water.,then the airplane fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,then it start/ed to sink.,then it started to sink +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,then the lifeguard came.,then the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,and the lifeguard talk/ed to them what happen/ed [EU].,and the lifeguard talked to them what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,the lifeguard try/ed to reach the airplane in the water.,the lifeguard tried to reach the airplane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,but he could not reach it.,but he could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,so he got a fish/ing net.,so he got a fishing net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,he use/ed the fish/ing net : to get : the airplane out of the water.,he used the fishing net to get the airplane out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,(he) she got the airplane out.,he she got the airplane out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,now they were both happy.,now they were both happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,two kid/s *are play/ing in the sandbox [EU].,two kids playing in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,two of the kid/s *are try/ing to build a sandcastle [EU].,two of the kids trying to build a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,the other kid dump/3s sand on the sandcastle to ruin it.,the other kid dumps sand on the sandcastle to ruin it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,then the sandcastle break/3s.,then the sandcastle breaks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,the kid is sad now.,the kid is sad now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,two kid/s : *are take/ing a jog to : have picnic [EU].,two kids taking a jog to have picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,the one kid is eat/ing like a pig.,the one kid is eating like a pig +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,and the other is just take/ing out a sandwich.,and the other is just taking out a sandwich +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,the other one is full while the other one is still eat/ing.,the other one is full while the other one is still eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,the other one : is still full.,the other one is still full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,and the other one (is) start/3s to worry about the : other kid.,and the other one is starts to worry about the other kid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,then : the other kid (start/3s to ask a lad) start/3s to ask a nurse : to help him.,then the other kid starts to ask a lad starts to ask a nurse to help him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,the nurse help/3s (the) the kid (um) : with his full stomach.,the nurse helps the the kid um with his full stomach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,she tell/3s the kid to open his mouth.,she tells the kid to open his mouth +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,the kid is okay now.,the kid is okay now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,one kid *is walk/ing with a wagon [EU].,one kid walking with a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,and the other one *is try/ing to catch up [EU].,and the other one trying to catch up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,the other one *is try/ing to grab the balloon [EU].,the other one trying to grab the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,the other kid try/3s to untie the balloon from the wagon.,the other kid tries to untie the balloon from the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,the balloon fly/3s away.,the balloon flies away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,the kid get/3s mad.,the kid gets mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,and the other one just stare/3s at the balloon fly/ing in the air.,and the other one just stares at the balloon flying in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,(a) another person is hold/ing a bunch of balloon/s for sale.,a another person is holding a bunch of balloons for sale +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,he is ask/ing (to go) : to give one of the balloon/s to the kid because the other kid lost his balloon.,he is asking to go to give one of the balloons to the kid because the other kid lost his balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,the man show/ed (the balloon) that the balloon/s are five cent/s.,the man showed the balloon that the balloons are five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,they did not get a balloon because they did not have any money.,they did not get a balloon because they did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,then : a doctor came.,then a doctor came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,they ran to the doctor (to get) and ask/ed the doctor to buy them a balloon.,they ran to the doctor to get and asked the doctor to buy them a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,the doctor bought them a balloon.,the doctor bought them a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/737.slt,they were both happy.,they were both happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,: (um) the elephant was play/ing ball.,um the elephant was playing ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,(the gira) (an) (a) and then it fell into the swimming pool.,the gira an a and then it fell into the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,(and) (and then) the giraffe (an) (an) and then he was swim/ing.,and and then the giraffe an an and then he was swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,and then he got the ball.,and then he got the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,: (an) (an) (and) and then the elephant love/ed it.,an an and and then the elephant loved it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,(um) this say/3s : no run/ing allow/ed in this town.,um this says no running allowed in this town +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,(an) and then (the) the elephant want/ed to jump in the swimming pool.,an and then the the elephant wanted to jump in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,(a) and then she was run/ing.,a and then she was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,(a) and then she hurted|hurt[EW:hurt] herself.,a and then she hurted herself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,and then she need/ed a bandaid.,and then she needed a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,then she cry/ed.,then she cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,(and) (and) and then she stop/ed.,and and and then she stopped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,(and) : and then she was do/ing this [~_child_making_some_kind_of__unknown_gesture].,and and then she was doing this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,done [+_bch].,done +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,(um) her owie feeled|feel[EW:felt] better.,um her owie feeled better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,(an) : and then : there was a[EW:an] airplane.,an and then there was a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,: (an) and that was her airplane : to fly it.,an and that was her airplane to fly it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,then it felled|fell[EW:fell] in the pool.,then it felled in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,: and then[-:] it was start/ing to sink.,and then it was starting to sink +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,(um) and then the airplane almost sinked|sink[EW:sank] down.,um and then the airplane almost sinked down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,then it was sink/ing more.,then it was sinking more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,and then the man was try/ing to get it.,and then the man was trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,: then it would be stuck there.,then it would be stuck there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,and she[!] will get it.,and she will get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,: she got[!] it.,she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,: she even (ga) gave it to the boy.,she even ga gave it to the boy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,: and then (that was) that was the giraffe/z.,and then that was that was the giraffe's +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,(um) they are build/ing a sandcastle.,um they are building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,and : maybe they like to do it.,and maybe they like to do it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,: (a) and the bunny is (pu) put/ing the sand in the bucket.,a and the bunny is pu putting the sand in the bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,then pour all this sand on the castle.,then pour all this sand on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,then it fell down.,then it fell down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,: (and then there is al) : and then she need/ed to build it again.,and then there is al and then she needed to build it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,they are go/ing to a picnic.,they are going to a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,(and) and the bunny rabbit is have/ing a carrot and a hot dog.,and and the bunny rabbit is having a carrot and a hot dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,(an he) and the bunny rabbit was full.,an he and the bunny rabbit was full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,(and) and the doggy was not disappoint/ed.,and and the doggy was not disappointed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,and : (th) the bunny rabbit : (he) (he) he was lay/ing down : on the picnic.,and th the bunny rabbit he he he was laying down on the picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,then : (he[-:] ) the doggy was pull/ing the doctor.,then he the doggy was pulling the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,and the little bunny rabbit was sick.,and the little bunny rabbit was sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,and he feeled|feel[EW:felt] better.,and he feeled better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,(um) the doggy was pull/ing the wagon.,um the doggy was pulling the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,(an) : and the bunny rabbit saw a balloon[-:] (on) on the wagon.,an and the bunny rabbit saw a balloon on on the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,and : the bunny was try/ing to get it off.,and the bunny was trying to get it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,then it float/ed away.,then it floated away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,then it was gone.,then it was gone +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,and then there was another guy with more balloon/s.,and then there was another guy with more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,(and) and then the little bunny rabbit ask/ed for a balloon.,and and then the little bunny rabbit asked for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,: (he) and then the bunny rabbit did not have any money.,he and then the bunny rabbit did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,they did not get any balloon/s.,they did not get any balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,(th) and then they need/ed (to) (to) (to wait) to wait for another man[-:] : with balloon/s.,th and then they needed to to to wait to wait for another man with balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,(and) (and) (and it) and (then) (the) then they would get a balloon.,and and and it and then the then they would get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,and then : the guy would give them balloon/s[-:].,and then the guy would give them balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/547.slt,: (um) and then they got them.,um and then they got them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,(um) a[EW:an] elephant (s) (was) was play/ing ball/s [EU].,um a elephant s was was playing balls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And a giraffe is there too.,And a giraffe is there too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And then one of the ball/s (are) is in the water.,And then one of the balls are is in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And they want to get it.,And they want to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And then the horse jump/ed in the water and swam to it.,And then the horse jumped in the water and swam to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And then (what um) (the hor) the (gir) horse got it and gave it to (um) the elephant.,And then what um the hor the gir horse got it and gave it to um the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And then (um) the elephant look/3s like a girlfriend.,And then um the elephant looks like a girlfriend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And the horse (r) (r) look/3s like a boyfriend to me.,And the horse r r looks like a boyfriend to me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And that is the end [+_bch].,And that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,(um) there is a sign that said no run/ing.,um there is a sign that said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and the elephant : want/ed to go on the jumping board.,and the elephant wanted to go on the jumping board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and : he start/ed to run.,and he started to run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then (he s) he said let us go there.,and then he s he said let us go there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then giraffe said : (um) there is a sign that say/3s no run/ing.,and then giraffe said um there is a sign that says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,(co) oh come on.,co oh come on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then she runned|run[EW:ran].,and then she runned +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and she was afraid that she will hurt herself [EU].,and she was afraid that she will hurt herself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,but the (gira) the horse was try/ing to catch up to her : and help.,but the gira the horse was trying to catch up to her and help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then she start/ed to cry.,and then she started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and : the guard came and put a bandaids[EW:bandaid] on her.,and the guard came and put a bandaids on her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then : it hurt a little bit.,and then it hurt a little bit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and he said : that will fix it up a little.,and he said that will fix it up a little +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and (then she) then he said see that said no run/ing.,and then she then he said see that said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and the giraffe was right.,and the giraffe was right +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,(um) The giraffe : that had a[EW:an] airplane [EU].,um The giraffe that had a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And (he) that elephant said can I play with it in the water.,And he that elephant said can I play with it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,(And he said :) he was think/ing about it.,And he said he was thinking about it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,Then he said yes.,Then he said yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And he thought it will not sink.,And he thought it will not sink +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,But it did[!] sink.,But it did sink +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And then (the uh) the (gira) giraffe play/ed with it : right there : in his spot.,And then the uh the gira giraffe played with it right there in his spot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And then (um the) the elephant was crazy.,And then um the the elephant was crazy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,Turn the page [+_bch].,Turn the page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,Okay.,Okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And then (the el) the elephant had it.,And then the el the elephant had it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And (he put) the elephant put it in : the water.,And he put the elephant put it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And it sinked|sink[EW:sunk].,And it sinked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And : giraffe : did not know what he can do because the giraffe did not like go/ing in that water.,And giraffe did not know what he can do because the giraffe did not like going in that water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And then he was (ang :) mad at the : elephant.,And then he was ang mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And then the guard came.,And then the guard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And : the guard was try/ing to reach it.,And the guard was trying to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,Then he said : what is wrong with this?,Then he said what is wrong with this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And then the elephant told him (um) like : giraffe gave me that.,And then the elephant told him um like giraffe gave me that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And then (: um) I put it in the water she said.,And then um I put it in the water she said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And then the guard try/ed to reach it.,And then the guard tried to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And then : (the) the giraffe was sad.,And then the the giraffe was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And then : (um) another elephant came and hadded|has[EW:had] a net.,And then um another elephant came and hadded a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And (he) she caught it.,And he she caught it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And : the giraffe was not sad any more.,And the giraffe was not sad any more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And : they were happy : now.,And they were happy now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,(and then the) and then the elephant say/3s good job (to) to that big elephant.,and then the and then the elephant says good job to to that big elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And then giraffe was happy : again.,And then giraffe was happy again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,Once there was a rabbit and a dog.,Once there was a rabbit and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And the dog was build/ing a sandcastle : with the bunny.,And the dog was building a sandcastle with the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And the bunny said hmm maybe that is a little too big for us.,And the bunny said hmm maybe that is a little too big for us +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And then (the) the dog said no way!,And then the the dog said no way +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And then : they made it a little bit bigger than that : and then : a little bit bigger.,And then they made it a little bit bigger than that and then a little bit bigger +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,(And this) (the dog was a little bit : too) and it was a little bit too[!] big.,And this the dog was a little bit too and it was a little bit too big +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,The bunny said is this all right?,The bunny said is this all right +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,(um) okay : I think it is okay : the dog said.,um okay I think it is okay the dog said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And then the castle was broked|broke[EW:broken].,And then the castle was broked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And : the dog hadded|has[EW:had] to built[EW:build] it all over again.,And the dog hadded to built it all over again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And the dog was sad.,And the dog was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,And that is the end [+_bch].,And that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,once there was a dog : look/ing for some berry/s.,once there was a dog looking for some berries +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and the bunny was look/ing for some carrot/s.,and the bunny was looking for some carrots +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and he hop/ed along by beautiful butterfly/s.,and he hopped along by beautiful butterflies +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,because brother : I saw the butterfly was jump/ing on his back one time at the summer [+_bch].,because brother I saw the butterfly was jumping on his back one time at the summer +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,then they hadded|has[EW:had] a picnic with the food they found.,then they hadded a picnic with the food they found +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then they were almost all done.,and then they were almost all done +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then they were already done.,and then they were already done +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then the bunny was sick.,and then the bunny was sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and the dog look/ed at him.,and the dog looked at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and he thinked|think[EW:thought] he was[!] sick.,and he thinked he was sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then : he bump/ed his head (on the) (on the ta) on the picnic table at the forest [EU].,and then he bumped his head on the on the ta on the picnic table at the forest +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and (da) then (the) a doctor was come/ing by.,and da then the a doctor was coming by +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,"and he said doctor, doctor : that guy ate too much food.",and he said doctor doctor that guy ate too much food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then the doctor said hmm maybe I should go over there.,and then the doctor said hmm maybe I should go over there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then he went over there.,and then he went over there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and he said see?,and he said see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,not (do) too bad the doctor said.,not do too bad the doctor said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then he feeled|feel[EW:felt] his head.,and then he feeled his head +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and he tap/ed it.,and he tapped it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then : (his) (he) he tap/ed it.,and then his he he tapped it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and he said aw.,and he said aw +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and the doctor said : say aw.,and the doctor said say aw +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then bunny (this) (put) bump/ed his head on the picnic table again.,and then bunny this put bumped his head on the picnic table again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then he was better.,and then he was better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,that is the end [+_bch].,that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,(um) the dog was carry/ing a balloon.,um the dog was carrying a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and the bunny said : can I : see it.,and the bunny said can I see it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,(And then he was h) and then the dog said yes.,And then he was h and then the dog said yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and he (talked) walk/ed toward/3s it.,and he talked walked towards it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and he accidentally pop/ed it.,and he accidentally popped it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then (he) he cry/ed.,and then he he cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then (the) : (the) they hadded|has[EW:had] to get a new balloon : at their home.,and then the the they hadded to get a new balloon at their home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,but they did not know which way was their home.,but they did not know which way was their home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and it float/ed up in the sky when they got the other balloon.,and it floated up in the sky when they got the other balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then : the dog was angry at the bunny.,and then the dog was angry at the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then there is a balloon seller : guy.,and then there is a balloon seller guy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then they went towards him.,and then they went towards him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and he choosed|choose[EW:chose] another balloon.,and he choosed another balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then he said : it is five dollar/s.,and then he said it is five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then the bunny : open/ed up his pocket.,and then the bunny opened up his pocket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and : he had no money.,and he had no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and : that guy said : do you have money?,and that guy said do you have money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,(dog said) and the dog said (um) only (a um) a quarter.,dog said and the dog said um only a um a quarter +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,good then you can have a balloon.,good then you can have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and your friend can.,and your friend can +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,so they both had a balloon.,so they both had a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then the doctor came along.,and then the doctor came along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,(and he said : um can we) and then the doctor said which beautiful color/s balloon/s [EU]?,and he said um can we and then the doctor said which beautiful colors balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then he took (um) all of the balloon/s.,and then he took um all of the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and the kid/s were sad.,and the kids were sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then : he buyed|buy[EW:bought] some for the kid/s.,and then he buyed some for the kids +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and he buyed|buy[EW:bought] some for the other kid/s at the doctor [EU].,and he buyed some for the other kids at the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,and then they both play/ed with them.,and then they both played with them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/401.slt,that is the end [+_bch].,that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,once there was a dog and a[EW:an] elephant who were friend/s.,once there was a dog and a elephant who were friends +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,and they want/ed to go swim/ing.,and they wanted to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,they found a ball.,they found a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,and giraffe want/ed to get it.,and giraffe wanted to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,so he jump/ed into the pool.,so he jumped into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,(eleph) elephant grab/ed the ball and : said yay[~!_laughing] : (um) : and then help/ed giraffe out.,eleph elephant grabbed the ball and said yay um and then helped giraffe out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,and giraffe was very proud of himself.,and giraffe was very proud of himself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,giraffe and elephant want/ed to go for a swim.,giraffe and elephant wanted to go for a swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,elephant want/ed to jump off the diving board.,elephant wanted to jump off the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,so she ran really fast : and (slip/ed on) : her knee got scrape/ed.,so she ran really fast and slipped on her knee got scraped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,the lifeguard came run/ing : and help/ed : and put a bandage on : elephant/z[~!_laughing] knee.,the lifeguard came running and helped and put a bandage on elephant's knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,elephant was feel/ing much better.,elephant was feeling much better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,and then she had a time out for no run/ing.,and then she had a time out for no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,giraffe and elephant were back[~!_laughing] at the swimming pool.,giraffe and elephant were back at the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,and they were fly/ing an airplane.,and they were flying an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,elephant grab/ed the airplane : and : accidentally drop/ed it in the pool.,elephant grabbed the airplane and accidentally dropped it in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,giraffe was very mad at elephant.,giraffe was very mad at elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,and then the lifeguard came (and look/ed at) and look/ed at the airplane.,and then the lifeguard came and looked at and looked at the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,elephant explain/ed what happen/ed.,elephant explained what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,the lifeguard try/ed to grab it.,the lifeguard tried to grab it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,but his hand was : too small.,but his hand was too small +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,and he said I do not know what[~!_laughing] to do.,and he said I do not know what to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,(a la) and then a lady came with a net : and try/ed grab/ing the airplane.,a la and then a lady came with a net and tried grabbing the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,and she gave the airplane back to giraffe.,and she gave the airplane back to giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,giraffe was very please/ed and said thank you.,giraffe was very pleased and said thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,once there was[EW:were] two friend/s.,once there was two friends +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,and they decide/ed to build a sandcastle together.,and they decided to build a sandcastle together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,a bunny was (small) smaller than that dog [~_I_think_he_(i)s_a__dog].,a bunny was small smaller than that dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,and he spill/ed the sand on top.,and he spilled the sand on top +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,and it was all crash/ed.,and it was all crashed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,bunny was very : (um s) scare/ed.,bunny was very um s scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,(um) : dog : try/ed to build it back.,um dog tried to build it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,rabbit and dog were go/ing on a picnic together.,rabbit and dog were going on a picnic together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,rabbit was very hungry.,rabbit was very hungry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,so they start/ed to eat.,so they started to eat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,rabbit ate (all) practically all[~!_laughing] (hi) the food : and got sick.,rabbit ate all practically all hi the food and got sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,and dog ran up to (a lady) : [~_oh] that is a doctor : and said to come here.,and dog ran up to a lady that is a doctor and said to come here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,the doctor saw rabbit and was very scare/ed : and took rabbit : (to) to his mom.,the doctor saw rabbit and was very scared and took rabbit to to his mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,(ra) rabbit and : dog were : go/ing to [~_gonna] have a ride in the wagon.,ra rabbit and dog were going to have a ride in the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,rabbit show/ed dog his nice balloon tie/ed[!] to the wagon.,rabbit showed dog his nice balloon tied to the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,rabbit try/ed to get it off to let : dog hold it.,rabbit tried to get it off to let dog hold it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,but then it slip/ed out of rabbit/z hand/s.,but then it slipped out of rabbit's hands +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,(um) : rabbit was very sad.,um rabbit was very sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,and : dog was very mad.,and dog was very mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,so they went to a (n) guy sell/ing balloon/s and ask/ed.,so they went to a n guy selling balloons and asked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,can we have one of your balloon/s said rabbit.,can we have one of your balloons said rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,[~_sighs] the : guy who was sell/ing balloon/s say/3s you need five cent/s.,the guy who was selling balloons says you need five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,rabbit did not have any.,rabbit did not have any +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,so then : rabbit went up to ask again but act as if he was different.,so then rabbit went up to ask again but act as if he was different +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,and then rabbit ran to : a : doctor : and said : (um) : to come here.,and then rabbit ran to a doctor and said um to come here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,the : doctor paid the : balloon guy money for the balloon.,the doctor paid the balloon guy money for the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/971.slt,and they each got their own balloon.,and they each got their own balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,there is an : elephant and a : giraffe.,there is an elephant and a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and the elephant was bounce/ing her ball.,and the elephant was bouncing her ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and it fell in the river.,and it fell in the river +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and she was sad.,and she was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and the giraffe went : towards it : and got it out for her.,and the giraffe went towards it and got it out for her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and she was happy.,and she was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,there was an elephant and : (the) a zebra.,there was an elephant and the a zebra +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and : the elephant want/ed to go in the pool and was run/ing.,and the elephant wanted to go in the pool and was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and she slip/ed.,and she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and she fell and bruise/ed her knee.,and she fell and bruised her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,the lifeguard ran towards her : and put a bandaid on it.,the lifeguard ran towards her and put a bandaid on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and (she) he was not feel/ing okay.,and she he was not feeling okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,: and : the lifeguard was mad.,and the lifeguard was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,there is an elephant and a zebra.,there is an elephant and a zebra +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and : the zebra was play/ing with his : toy plane.,and the zebra was playing with his toy plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and the elephant grab/ed it from him.,and the elephant grabbed it from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and it drop/ed in the water.,and it dropped in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and he was very angry at her.,and he was very angry at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and the lifeguard look/ed at them.,and the lifeguard looked at them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and : she (s) : was talk/ing to the lifeguard.,and she s was talking to the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and the lifeguard try/ed to grab it.,and the lifeguard tried to grab it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,but he could not.,but he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and the giraffe was cry/ing.,and the giraffe was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and then (an uh) a lady elephant came with a net : and took it out (with it) with the fish net : and gave it back.,and then an uh a lady elephant came with a net and took it out with it with the fish net and gave it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and he was happy.,and he was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,there is (a rabbit and a) a rabbit and it/z friend.,there is a rabbit and a a rabbit and it's friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,they made a castle.,they made a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and the bunny pour/ed : sand over top of it.,and the bunny poured sand over top of it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,the dog was sad.,the dog was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and the bunny was sad.,and the bunny was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,the dog was cry/ing : try/ing to fix his castle.,the dog was crying trying to fix his castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,the bunny and the dog were take/ing picnic basket/s somewhere.,the bunny and the dog were taking picnic baskets somewhere +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,they found a nice place to eat.,they found a nice place to eat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and they start/ed eat/ing.,and they started eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,the bunny got full and fell.,the bunny got full and fell +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,(the dog went) the dog was sad.,the dog went the dog was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,he ran : to (a) a doctor bunny : and pull/ed : her.,he ran to a a doctor bunny and pulled her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and (she :) she look/ed at the boy bunny lay/ing on the ground : and took him to the hospital.,and she she looked at the boy bunny laying on the ground and took him to the hospital +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,the dog and the rabbit were run/ing.,the dog and the rabbit were running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and the bunny : said look I have got a balloon.,and the bunny said look I have got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,(the) the dog want/ed one.,the the dog wanted one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and the bunny was try/ing to untie his balloon.,and the bunny was trying to untie his balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,xxx [~_says_something_under_breath].,x +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and it : went up into the sky.,and it went up into the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and they could not reach it.,and they could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and the dog was angry.,and the dog was angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,then they : both saw : a bunny rabbit with balloon/s.,then they both saw a bunny rabbit with balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and the bunny said I want that one.,and the bunny said I want that one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,it is fifty cent/s.,it is fifty cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,they both did not have any money.,they both did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and they both want/ed one.,and they both wanted one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,then they saw the doctor again.,then they saw the doctor again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,they ran : to her and said they do not have any money.,they ran to her and said they do not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,but they want a balloon.,but they want a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and (she gave : each : of) (sh) she gave the bunny (he) : ten cent/s.,and she gave each of sh she gave the bunny he ten cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and they each got a balloon.,and they each got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,and they were happy.,and they were happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/634.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,yay[-:] this is my new ball/s[EW:ball] : giraffe!,yay this is my new balls giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,yay we can play with it!,yay we can play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,uhoh it went in the : swimming pool!,uhoh it went in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,oh no we should have play/ing with it outside [EU]!,oh no we should have playing with it outside +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,I can get it!,I can get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,I can swim [~_makes_sound_like_jumping_into_water]!,I can swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,oh no[~!_laughing].,oh no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,: here is your ball.,here is your ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,thank you !,thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,"[~_laughs_""hee_hee_hee_hee""] oh my lovely ball!",oh my lovely ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,oh[-:] let us[!] play in the swimming pool.,oh let us play in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,goodie goodie gosh.,goodie goodie gosh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,: come on let us go to the diving board.,come on let us go to the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,yipee.,yipee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,oh(*3)[-:] [~_oomf] : take it easy.,oh oh oh take it easy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,: ow[-:]!,ow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,oh no there is a no run/ing sign!,oh no there is a no running sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,"[~_makes_sounds_""mmm_-:_pup_pup_pup""].", +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,you remember I can not see the picture/s.,you remember I can not see the pictures +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,"[~_makes_sounds_""eee__maaa] it is okay.",it is okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,now I am go/ing to put on the bench [EU].,now I am going to put on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,remember it is slippery.,remember it is slippery +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,so walk.,so walk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,now I will tell you the rule/s.,now I will tell you the rules +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,[~_laughs] (ah) now look there is a no run/ing sign.,ah now look there is a no running sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,so no run/ing.,so no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,oops [~_laughs].,oops +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,(t) hi want to [~_wanna] play with my new plane?,t hi want to play with my new plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,[~_high_pitched_voice] of course[-:]!,of course +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,[~_growly_voice] (hm my) now[!] let us see[-:].,hm my now let us see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,"[~_makes_sound_effects_""pphh_ooo_-:""] : [~_high_pitched_voice] hey gimme!",hey gimme +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,I want to[:_wanna] try [~_inhales_sharply]!,I want to try +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,"[~_makes_sounds_""ooo""] oops!",oops +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,oh[-:].,oh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,: now I can never play with it.,now I can never play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,"[~_makes_sounds_""errr__ooo_-:""].", +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,okay.,okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,"[~_makes_sound_""errr""] [~_growly_voice] give me back my plane!",give me back my plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,"[~_makes_sounds_""hm_hmmm_-:""] oh[-:] boy.",oh boy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,okay what is happen/ing in the story?,okay what is happening in the story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,I can not see the picture/s remember.,I can not see the pictures remember +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,[~_high_pitched_voice] (uh I was play/ing) we were play/ing with the toy plane!,uh I was playing we were playing with the toy plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,[~_high_pitched_voice] and I accidentally drop/ed it in the water!,and I accidentally dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,"[~_makes_sound_""errr""] [~_growly_voice] I can not reach it!",I can not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,[~_makes_crying_sounds]., +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,[~_growly_voice] oh well[-:] let us see.,oh well let us see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,: sink(*3) [EU].,sink sink sink +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,hm I have got the handy dandy thing a[-:] net.,hm I have got the handy dandy thing a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,[~_growly_voice] (uh[-:]) is she go/ing to fish it out of there?,uh is she going to fish it out of there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,[~_makes_sound_effects] [~_growly_voice] yay she got it!,yay she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,[~_inhales_sharply] [~_high_pitched_voice] my plane.,my plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,there you go.,there you go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,: oh[-:] [~_laughs] yay[-:]!,oh yay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,Doggy said[-:] : come and play with me in the sand box : to Rabbit.,Doggy said come and play with me in the sand box to Rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,Rabbit said okay.,Rabbit said okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,they made[-:] a sand castle.,they made a sand castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,Rabbit fill/ed the bucket with a shovel.,Rabbit filled the bucket with a shovel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,he dump/ed the bucket onto Doggy/z[-:] sandcastle.,he dumped the bucket onto Doggy's sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,Rabbit (wa) said oh no I broke your castle!,Rabbit wa said oh no I broke your castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,Doggy said it is okay.,Doggy said it is okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,but then he got sad.,but then he got sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,and he try/ed to make it : again.,and he tried to make it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,Rabbit sigh/ed.,Rabbit sighed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,Doggy said hi[!].,Doggy said hi +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,let us have a picnic in the wood/s.,let us have a picnic in the woods +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,Rabbit was so[-:] hungry.,Rabbit was so hungry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,he took out all the food in his picnic (bak) basket and start/ing *to eat it [EU].,he took out all the food in his picnic bak basket and starting eat it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,Doggy ate a few!,Doggy ate a few +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,and Rabbit ate all[-:] of his thing/s.,and Rabbit ate all of his things +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,when he was done he got a big tummyache.,when he was done he got a big tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,(ra) Dog said you should not eat so much Rabbit.,ra Dog said you should not eat so much Rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,save some for your dinner!,save some for your dinner +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,"[~_makes_moaning_sound,_laughs] said rabbit.",said rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,Doggy (g) ran[-:] to the nurse rabbit.,Doggy g ran to the nurse rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,he said quick : my friend Rabbit has a big tummyache from eat/ing too much!,he said quick my friend Rabbit has a big tummyache from eating too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,she drag/ed the nurse to the picnic basket.,she dragged the nurse to the picnic basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,she said now now.,she said now now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,(you need) I need to take your temperature!,you need I need to take your temperature +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,and then : we will see : how you feel!,and then we will see how you feel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,Rabbit felt all better when the nurse had[EW:was] done.,Rabbit felt all better when the nurse had done +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,Dog was so happy he told [EU].,Dog was so happy he told +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,it is so funny[~!_whispering].,it is so funny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,hi Rabbit!,hi Rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,let us play!,let us play +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,I have a new balloon!,I have a new balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,ooh it is pretty!,ooh it is pretty +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,I want to[:_wanna] play with it!,I want to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,uhoh.,uhoh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,"[~_makes_noise_'aaaah',_grunts] now we just have to untie this knot.",now we just have to untie this knot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,and then we can play with it!,and then we can play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,huh oh no I should not have untie/ed the knot!,huh oh no I should not have untied the knot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,[~_makes_sound_'aaah'] my balloon!,my balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,"[~_makes_noise_""errr""][-:] oops.",oops +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,: (mmm) oh I know.,mmm oh I know +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,I will get some more balloon/s from the balloon man.,I will get some more balloons from the balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,"[~_makes_noise_""err"",_waves_and_gestures_with_arm].", +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,remember I can not see the picture/s.,remember I can not see the pictures +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,you have to tell me.,you have to tell me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,I know [+_bch].,I know +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,balloon man can I have a balloon!,balloon man can I have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,hm [~_laughs]?,hm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,(um) : [~_creaky_voice] do we have any five cent/s[EW:money]!,um do we have any five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,[~_creaky_voice] they are five cent/s!,they are five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,oh[-:] boy[!].,oh boy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,(hm : hmmm) if he can not buy it who can?,hm hmmm if he can not buy it who can +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,"[~_makes_noises_""ooo_doo_doo_hm""] [~_high_pitched_voice] missus nurse : can you help : us get a balloon?",missus nurse can you help us get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,[~_high_pitched_voice] the balloon doggy got float/ed away [EU]!,the balloon doggy got floated away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,[~_high_pitched_voice] please[-:] .,please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,[~_high_pitched_voice] (the) the balloon man is right there.,the the balloon man is right there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,okay.,okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,[~_creaky_voice] here you go!,here you go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,thank you[-:]!,thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/648.slt,[~_high_pitched_voice] yay[-:] our balloon/s [~_laughs]!,yay our balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,A girl elephant was play/ing with a ball.,A girl elephant was playing with a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,the ball went in a pool.,the ball went in a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,(a gira) a baby giraffe (ca) came to get it.,a gira a baby giraffe ca came to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,he got it and gave it to the : girl.,he got it and gave it to the girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,the girl like/ed the[-:] giraffe.,the girl liked the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,They look/ed at the pool.,They looked at the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,the elephant was run/ing in the pool.,the elephant was running in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,the elephant slip/ed : and hurt her knee.,the elephant slipped and hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,a lifeguard came.,a lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,the lifeguard gave her a bandaid.,the lifeguard gave her a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,they sat on the chair.,they sat on the chair +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,the lifeguard (poi) point/ed at the sign.,the lifeguard poi pointed at the sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,A girl was happy.,A girl was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,a plane hit her.,a plane hit her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,the girl got the plane.,the girl got the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,and she put it on the water.,and she put it on the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,(the water sank) [~_no] the plane sank.,the water sank the plane sank +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,the lifeguard came.,the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,: the lifeguard saw the plane : and try/ed to get it.,the lifeguard saw the plane and tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,it sank.,it sank +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,a girl lifeguard had a net.,a girl lifeguard had a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,the girl lifeguard got the : plane.,the girl lifeguard got the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,the girl lifeguard gave it to the boy.,the girl lifeguard gave it to the boy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,the boy hug/ed the plane.,the boy hugged the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,a girl play/ed in the sandbox.,a girl played in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,a rabbit came to play.,a rabbit came to play +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,the rabbit broke : the girl/z sandcastle.,the rabbit broke the girl's sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,(the rabb) the girl was mad at the rabbit.,the rabb the girl was mad at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,the girl was cry/ing.,the girl was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,a girl was go/ing to[-:] a picnic.,a girl was going to a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,a[-:] boy came : (to) with her.,a boy came to with her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,the boy was (ff) so full.,the boy was ff so full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,he got the[EW:a] stomachache.,he got the stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,a doctor came.,a doctor came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,the girl pull/ed the doctor.,the girl pulled the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,"the doctor look/ed [~_pronounced_""look-ed""] at the boy.",the doctor looked at the boy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,he felt okay and came with the doctor.,he felt okay and came with the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,a girl had a wagon with a balloon on it.,a girl had a wagon with a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,the boy : try/ed to get the balloon.,the boy tried to get the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,the boy untie/ed the balloon.,the boy untied the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,it went up into the air.,it went up into the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,the girl was mad at the rabbit.,the girl was mad at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,: a guy had lot/s of balloon/s.,a guy had lots of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,the rabbit asked the man if he could get : a balloon.,the rabbit asked the man if he could get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,the balloon cost five cent/s.,the balloon cost five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,he did not have five cent/s.,he did not have five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,a doctor came.,a doctor came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,(and) and the (rab) boy rabbit ask/ed the doctor (if) : to come to the balloon/s.,and and the rab boy rabbit asked the doctor if to come to the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,(the doctor bi) buyed|buy[EW:bought] balloon/s.,the doctor bi buyed balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/709.slt,(for) the doctor gave balloon/s to both of them.,for the doctor gave balloons to both of them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,(uh) : it is a giraffe look/ing and play/ing with a[EW:an] : elephant.,uh it is a giraffe looking and playing with a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,(they lo) they lost the ball (in the) in a boat.,they lo they lost the ball in the in a boat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,now the giraffe dived|dive[EW:dove] in and get[EW:got] it.,now the giraffe dived in and get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,then he got the ball.,then he got the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,then they play/ed.,then they played +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,(They were aas) : (going to uh) cow is go/ing to run.,They were aas going to uh cow is going to run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,cow is go/ing to run into the pool.,cow is going to run into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,then they slip/ed.,then they slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,and then they fall in and hurt her knee [EU].,and then they fall in and hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,: it was hurt.,it was hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,put a bandaid on.,put a bandaid on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,okay.,okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,no[!] run/ing.,no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,They was[EW:were] go/ing to [~_gonna] play with a[EW:an] airplane.,They was going to play with a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,(they try/ed) (they n tr) (they try/ed to um) they[-:] try/ed to play with it.,they tried they n tr they tried to um they tried to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,(and then they) : (and then they) and then they was[EW:were] try/ing to fly it.,and then they and then they and then they was trying to fly it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,then it land/ed in the water.,then it landed in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,then he got mad.,then he got mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,(and then they) and then (the) (the) : (the : um) : they was[EW:were] scare/ed.,and then they and then the the the um they was scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,(and then they[-:] help pu) and then they got some help.,and then they help pu and then they got some help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,(the) then (they) (they try) the guy got to try got it [EU].,the then they they try the guy got to try got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,(and then they) and then they could not get it out.,and then they and then they could not get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,then the girl came and got it.,then the girl came and got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,: and then she caught it.,and then she caught it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,: and then she got it.,and then she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,and that is the end [+_bch].,and that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,a dog and a[-:] : bunny were go/ing to play together.,a dog and a bunny were going to play together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,and then (he) (the) : the bunny was go/ing to[:_gonna] : make one.,and then he the the bunny was going to make one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,and then the bunny (was) pour/ed the sand on the castle.,and then the bunny was poured the sand on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,and then it fall/3s apart.,and then it falls apart +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,and then the dog got some : cry [EU].,and then the dog got some cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,The dog and the bunny (met) met.,The dog and the bunny met met +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,(hm) the bunny start/ed to eat.,hm the bunny started to eat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,(and then he b) (and) and then he was finish/ed.,and then he b and and then he was finished +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,he was (ti) poop/ed out.,he was ti pooped out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,(and[-:] his) : and she ask/ed [~_pronounced_'axed'] the doctor to help : the fever.,and his and she asked the doctor to help the fever +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,he ate too much candy.,he ate too much candy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,and then he[-:] was all better.,and then he was all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,the dog and the rabbit met.,the dog and the rabbit met +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,(and then he) and then he try/ed to get a balloon.,and then he and then he tried to get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,and then he try/ed to tie it : off.,and then he tried to tie it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,and then it went way up into the air.,and then it went way up into the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,and then it pop/ed[!].,and then it popped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,then she got mad.,then she got mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,and then it was some more[!] balloon/s [EU].,and then it was some more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,(: and then sh) and the bunny ask/ed him if he could give him a bunny.,and then sh and the bunny asked him if he could give him a bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,(uh) : and five dollar/s [EU].,uh and five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,so they could not get a balloon.,so they could not get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,so they ask/ed [~_pronounced_'axed'] their mom.,so they asked their mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,and he said could you give me a[-:] : balloon for five dollar/s?,and he said could you give me a balloon for five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,and then she gave the money to the man.,and then she gave the money to the man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/637.slt,(and then she) and then they both got a balloon.,and then she and then they both got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,what do you see?,what do you see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,you could start the story with once upon a time.,you could start the story with once upon a time +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,can you see the pictures what do you see?,can you see the pictures what do you see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,you know what my tape recorder can not see point/ing remember my tape recorder has to hear words.,you know what my tape recorder can not see pointing remember my tape recorder has to hear words +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,what is that?,what is that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,apple.,apple +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,then what happened?,then what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,apple falled|fall[EW:fell].,apple falled +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,got a[EW:an] apple.,got a apple +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,got a[EW:an] apple [~_new_page].,got a apple +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,what is the last thing you say?,what is the last thing you say +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,: start with once upon a time.,start with once upon a time +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,: should I turn the page?,should I turn the page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,: tell me this.,tell me this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,got a shot.,got a shot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,"that is right, okay : tell so my tape recorder can hear what happened.",that is right okay tell so my tape recorder can hear what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,"use words : remember my tape recorder can not see, you use words.",use words remember my tape recorder can not see you use words +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,got a[EW:an] owie [EU].,got a owie +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,got a[EW:an] owie [EU].,got a owie +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,got a : bandaid [EU].,got a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,got a bandaid on her knee [EU].,got a bandaid on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,and sit/ing on a bench [EU].,and sitting on a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,(um) got an airplane [EU].,um got an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,: got a[EW:an] airplane [EU].,got a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,got a[EW:an] airplane [EU].,got a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,: plane falled|fall[EW:fell] [EU].,plane falled +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,a plane sanked|sank[EW:sunk].,a plane sanked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,a plane sanked|sank[EW:sunk].,a plane sanked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,a plane sanked|sank[EW:sunk].,a plane sanked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,a plane : sanked|sank[EW:sunk].,a plane sanked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,a plane sank.,a plane sank +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,a plane sank.,a plane sank +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,a plane is go/ing to [~_gonna] pick up a[EW:an] airplane.,a plane is going to pick up a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,pardon me?,pardon me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,pick up a[EW:an] airplane [+_bch].,pick up a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,(um) got a[EW:an] airplane [EU].,um got a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,got a[EW:an] airplane [EU].,got a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,and the end [+_bch].,and the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,make/ing a castle [EU].,making a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,make/ing a castle [EU].,making a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,make/ing a castle [EU].,making a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,the castle fall/3s.,the castle falls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,make/ing a castle up.,making a castle up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,walk/ing [EU].,walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,got a : carrot.,got a carrot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,: go/ing to [~_gonna] put all of them back in the packsack [EU].,going to put all of them back in the packsack +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,it falled|fall[EW:fell].,it falled +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,and it walk|walk[EW:walked] away.,and it walk away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,going to [~_gonna] grab his (sh) coat.,going to grab his sh coat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,and gonna xxx [~_said_very_quietly].,and gonna x +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,xxx.,x +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,them[EW:they] pick up [EW:the]dish.,them pick up dish +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,the end [+_BCH].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,(um) go/ing to [~_gonna] put that on the : wagon.,um going to put that on the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,look at that on the wagon.,look at that on the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,look at that on the wagon.,look at that on the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,xxx.,x +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,it flied|fly[EW:flew] away.,it flied away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,it is[EW:has] pop/ed.,it is popped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,it has got five balloon/s.,it has got five balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,I am go/ing to [~_gonna] get one.,I am going to get one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,I am go/ing to [~_gonna] get one.,I am going to get one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,I am go/ing to [~_gonna] pop the xx.,I am going to pop the +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,it is go/ing to [~_gonna] get more balloon/s.,it is going to get more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,I am go/ing to [~_gonna] get : more balloon/s.,I am going to get more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,I am go/ing to [~_gonna] get more balloon/s.,I am going to get more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,I am get/ing more balloon/s.,I am getting more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/478.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,(um) [-:] an elephant is bounce/ing a ball[-:].,um an elephant is bouncing a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,the ball get/3s in the water.,the ball gets in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,the horse swim/3s : to try to get it : and got it.,the horse swims to try to get it and got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,(uh : the other) the elephant is thankful.,uh the other the elephant is thankful +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,(uh) the horse and elephant want to[:_wanna] go swim/ing[-:] on the diving board[-:] [EU] .,uh the horse and elephant want to go swimming on the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,(uh) the elephant run/3s[-:].,uh the elephant runs +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,and she slip/3s[-:] : and get/3s a sore knee[-:].,and she slips and gets a sore knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,(uh) the lifeguard (s) come/3s[-:] : and give/3s her a bandaid.,uh the lifeguard s comes and gives her a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,(uh l sh) she is sit/ing on a bench.,uh l sh she is sitting on a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,lifeguard told : her[-:] no run/ing.,lifeguard told her no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,elephant and a horse meet[-:].,elephant and a horse meet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,and they[-:] : want to[:_wanna] play.,and they want to play +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,(s) : the horse is play/ing with his : airplane.,s the horse is playing with his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,the elephant play/3s with it too[-:].,the elephant plays with it too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,it go/3s into the water.,it goes into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,the horse get/3s angry.,the horse gets angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,(uh) the lifeguard see/3s it.,uh the lifeguard sees it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,the elephant : told the lifeguard.,the elephant told the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,lifeguard try/3s to reach it.,lifeguard tries to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,he could not reach it.,he could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,(he) : someone got a net : and fish/ed it out : and got the plane and gave it to the horse.,he someone got a net and fished it out and got the plane and gave it to the horse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,: and a horse[-:] : hugg/ed it.,and a horse hugged it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,(uh) the rabbit and the dog meet each other to play with the castle.,uh the rabbit and the dog meet each other to play with the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,the dog : fix/3s the castle.,the dog fixes the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,and the rabbit put/3s sand in a bucket.,and the rabbit puts sand in a bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,the rabbit dump/3s the sand on the castle.,the rabbit dumps the sand on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,the castle got wreck/ed[-:].,the castle got wrecked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,and dog try/ed to[-:] build it back.,and dog tried to build it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,the dog and[-:] rabbit meet each other.,the dog and rabbit meet each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,they both have a picnic.,they both have a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,the rabbit : ate too much[-:].,the rabbit ate too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,the rabbit got dizzy.,the rabbit got dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,the dog got the doctor.,the dog got the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,the doctor came[-:] : and help/ed the rabbit.,the doctor came and helped the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,and now the rabbit is more better [EU].,and now the rabbit is more better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,the rabbit and dog (meech) : meet each other.,the rabbit and dog meech meet each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,and the dog has a wagon and a balloon.,and the dog has a wagon and a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,(uh) : the rabbit : (thought) told him that (he could pl) he could play with it.,uh the rabbit thought told him that he could pl he could play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,the rabbit untie/ed it.,the rabbit untied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,the balloon flew up in the air.,the balloon flew up in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,dog got angry.,dog got angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,they saw a : person who is sell/ing balloon/s [EU].,they saw a person who is selling balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,the : rabbit told if he can buy one [EU].,the rabbit told if he can buy one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,he said that they are five cent/s each[-:].,he said that they are five cents each +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,they did not have any money[-:].,they did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,(they went an) they went to someone.,they went an they went to someone +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,and they told if : she could (get) pay them money [EU].,and they told if she could get pay them money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,and[-:] : she did[-:].,and she did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/856.slt,now they are happy with the balloon/s.,now they are happy with the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,One[-:] day[-:] a giraffe : saw an elephant play/ing with a basketball.,One day a giraffe saw an elephant playing with a basketball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,: but then[-:] : the ball bounce/ed into : the water.,but then the ball bounced into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,the giraffe : (swim) swam (and try/ed) and try/ed to get it.,the giraffe swim swam and tried and tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and he got the ball back.,and he got the ball back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and the elephant was happy.,and the elephant was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,One day (the zebra) [~_I_mean] the giraffe and the elephant decide/ed to go swimming.,One day the zebra the giraffe and the elephant decided to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,the elephant want/ed to go on the diving board.,the elephant wanted to go on the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,: she was run/ing over there.,she was running over there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and she slip/ed.,and she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,then she fell and bonk/ed her knee.,then she fell and bonked her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,the lifeguard came run/ing over.,the lifeguard came running over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,(he ask/ed her) he put on a bandaid for it.,he asked her he put on a bandaid for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,then he sat her down on the bench.,then he sat her down on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,(then he) then he told her to look at the sign/s.,then he then he told her to look at the signs +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,One day Elephant and Zebra[-:] (met) met at the swimming pool.,One day Elephant and Zebra met met at the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,: (um) Zebra had an airplane.,um Zebra had an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,Elephant grab/ed the airplane away from Zebra.,Elephant grabbed the airplane away from Zebra +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,(and she) and she accidentally drop/ed it in the water.,and she and she accidentally dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,then Zebra got mad at Elephant.,then Zebra got mad at Elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,then the lifeguard came.,then the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and (uh) the elephant said : I accidentally drop/ed : Zebra/z airplane in the water.,and uh the elephant said I accidentally dropped Zebra's airplane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,the lifeguard try/ed to reach the airplane.,the lifeguard tried to reach the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,but he could not.,but he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,then another lifeguard came with a net.,then another lifeguard came with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,(and she h) and she pick/ed up the airplane.,and she h and she picked up the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and Zebra had it back.,and Zebra had it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and they could play with it again.,and they could play with it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,(These) these two little animal/s are play/ing in a sandbox.,These these two little animals are playing in a sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and they are build/ing a sandcastle.,and they are building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and then : the rabbit pour/3s some sand on the sandcastle.,and then the rabbit pours some sand on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and the sandcastle break|break[EW:breaks] and fall/3s down.,and the sandcastle break and falls down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and they have to build it up again.,and they have to build it up again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,one day the rabbit and the dog (ment) went for a picnic together.,one day the rabbit and the dog ment went for a picnic together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and the rabbit was eat/ing everything like messy [EU].,and the rabbit was eating everything like messy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,(and when he was f) and when he was finish/ed : he was all full.,and when he was f and when he was finished he was all full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and then he got a headache.,and then he got a headache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and then the dog had to call the doctor.,and then the dog had to call the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and the doctor came over.,and the doctor came over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and the doctor : said stay still.,and the doctor said stay still +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and then he was all better again.,and then he was all better again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,one day the dog was : pull/ing a wagon with a balloon on it.,one day the dog was pulling a wagon with a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and Rabbit want/ed it.,and Rabbit wanted it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and Rabbit (tied) try/ed to untie the balloon from the wagon.,and Rabbit tied tried to untie the balloon from the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and the balloon float/ed away.,and the balloon floated away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and the dog got really mad at the rabbit.,and the dog got really mad at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,then they saw a balloon man.,then they saw a balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,then the rabbit ask/ed for a balloon.,then the rabbit asked for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and then the man said balloons five dollar/s.,and then the man said balloons five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,but they did not have enough money.,but they did not have enough money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,(s) so they ask/ed[~!_laughs] the doctor.,s so they asked the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,(and the doctor said) and the bunny said we do not have enough money to buy a balloon.,and the doctor said and the bunny said we do not have enough money to buy a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,so the doctor paid the balloon man for two balloon/s.,so the doctor paid the balloon man for two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/651.slt,and then they each had a balloon.,and then they each had a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,one day there were two friend/s : mister giraffe and missus elephant.,one day there were two friends mister giraffe and missus elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,they were at the beach.,they were at the beach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and (mi) missus elephant was play/ing with a ball when mister giraffe ask/ed if he could play too.,and mi missus elephant was playing with a ball when mister giraffe asked if he could play too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,but then he bounce/ed it and bounce/ed it.,but then he bounced it and bounced it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and then it went into the water.,and then it went into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,so mister giraffe went into the water to get it.,so mister giraffe went into the water to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and then he gave it to missus elephant.,and then he gave it to missus elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and : they both smile/ed [~_laughs].,and they both smiled +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and then she really really really like/ed him[?].,and then she really really really liked him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,one day mister giraffe and missus elephant : want/ed to go for a swim.,one day mister giraffe and missus elephant wanted to go for a swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and there was a sign that said no[!] run/ing.,and there was a sign that said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,so (she) she was run/ing to the dive/ing board : so she could dive into the water.,so she she was running to the diving board so she could dive into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,but then she was run/ing and run/ing.,but then she was running and running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and then she all of a sudden slip/ed.,and then she all of a sudden slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and she really hurt her (near) knee when mister giraffe went to get a lifeguard.,and she really hurt her near knee when mister giraffe went to get a lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,the lifeguard came run/ing to see what was go/ing on.,the lifeguard came running to see what was going on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,he put a bandaid on missus elephant/z knee.,he put a bandaid on missus elephant's knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and then she sat on the bench : when mister giraffe was say/ing all[!] better.,and then she sat on the bench when mister giraffe was saying all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and then the lifeguard point/ed to the sign that said no run/ing.,and then the lifeguard pointed to the sign that said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,once mister giraffe and missus elephant (s met) met at the pool again.,once mister giraffe and missus elephant s met met at the pool again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,(he) mister giraffe show/ed missus elephant his new airplane.,he mister giraffe showed missus elephant his new airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,he was show/ing her how high it could fly when she was just stare/ing at it.,he was showing her how high it could fly when she was just staring at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,[~_said_under_breath] how high it could fly.,how high it could fly +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,so then she just : took it from him.,so then she just took it from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and mister giraffe was like hey!,and mister giraffe was like hey +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and then she accidentally : threw it to see if it could go higher.,and then she accidentally threw it to see if it could go higher +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and it land/ed right into the water.,and it landed right into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and he was really really really mad at her.,and he was really really really mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,(and she s) and she said whoops.,and she s and she said whoops +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,then the lifeguard (was) was not really happy.,then the lifeguard was was not really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,but he still try/ed to get the plane.,but he still tried to get the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,she was tell/ing (him all about it) (all about) the lifeguard all about the plane.,she was telling him all about it all about the lifeguard all about the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and then the lifeguard (s) said that is okay.,and then the lifeguard s said that is okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,I will try and get it.,I will try and get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,so he try/ed and try/ed and try/ed.,so he tried and tried and tried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,but he could not reach it.,but he could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,so then mister giraffe was start/ing to cry.,so then mister giraffe was starting to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,missus elephant was : think/ing.,missus elephant was thinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and the lifeguard (was) said he do/3s not know how they can get it.,and the lifeguard was said he does not know how they can get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,but then another : lifeguard came with a net to get the plane.,but then another lifeguard came with a net to get the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,(she) she stretch/ed the net (to get) into the water to get the plane.,she she stretched the net to get into the water to get the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and then she got the plane and gave it back to mister giraffe.,and then she got the plane and gave it back to mister giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,mister giraffe (was very) [+/]^,mister giraffe was very +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,am I suppose/ed to turn ?,am I supposed to turn +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,"[+,] was very very very happy to have the plane back.",was very very very happy to have the plane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,once upon a time there was a little dog : who built a really good (castle) sandcastle.,once upon a time there was a little dog who built a really good castle sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and the bunny said : he could make one.,and the bunny said he could make one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,but he said : why do not you make one in the other sandbox?,but he said why do not you make one in the other sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,but he said he want/3s to make it right beside his.,but he said he wants to make it right beside his +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,he filled the bucket to build a tower : (while the) while the little dog was : build/ing : the rest of his castle.,he filled the bucket to build a tower while the while the little dog was building the rest of his castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,but then he pour/ed (the) all the sand in the bucket onto : the dog/z castle.,but then he poured the all the sand in the bucket onto the dog's castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and the dog got really : mad at the bunny.,and the dog got really mad at the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and the bunny : was say/ing : he never meant to.,and the bunny was saying he never meant to +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,but then the little dog had to do it all[!] over again.,but then the little dog had to do it all over again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,once upon a time (the little) a little dog : saw his friend rabbit come/ing down the road.,once upon a time the little a little dog saw his friend rabbit coming down the road +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,she ask/ed him if he want/ed a (s) picnic with[!] him.,she asked him if he wanted a s picnic with him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,so they decide/ed to have a picnic.,so they decided to have a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,the bunny had a cake sandwich/s : pickle/s : carrot/s : chip/s.,the bunny had a cake sandwiches pickles carrots chips +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and he was all eat/ing it as fast as he could.,and he was all eating it as fast as he could +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and when he had everything out : the little dog only had a sandwich out.,and when he had everything out the little dog only had a sandwich out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,so then (he start) he start/ed eat/ing it and eat/ing it and eat/ing it : when the dog : was still eat/ing her sandwich take/ing her first bite.,so then he start he started eating it and eating it and eating it when the dog was still eating her sandwich taking her first bite +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,then he felt not very good.,then he felt not very good +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,he had a big stomachache.,he had a big stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,so she decide/ed to go (get) find someone : to help him.,so she decided to go get find someone to help him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,try not to play with that.,try not to play with that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,he found (a girl) a woman : (with) kind of[:_kinda] like a doctor with a case : and the thing/3s that go (on your) on the doctor/z ear/s and listen to [EU].,he found a girl a woman with kind of like a doctor with a case and the things that go on your on the doctor's ears and listen to +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,so the little dog ran up to her (to tell her) to tell her.,so the little dog ran up to her to tell her to tell her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,so he started pull/ing the doctor : to the rabbit.,so he started pulling the doctor to the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,so she help/ed the rabbit.,so she helped the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and she said that he had ate too much too fast.,and she said that he had ate too much too fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and then he felt better.,and then he felt better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,once there was a little dog and a rabbit.,once there was a little dog and a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,the little dog was happily play/ing with a wagon with a balloon tie/ed to it.,the little dog was happily playing with a wagon with a balloon tied to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,then the rabbit said hi and went up to it.,then the rabbit said hi and went up to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,the rabbit : was talk/ing about the balloon and say/ing how much he want/ed it : when the dog was just listen/ing.,the rabbit was talking about the balloon and saying how much he wanted it when the dog was just listening +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,then he untie/ed the balloon.,then he untied the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and the dog was : amaze/ed that he would do that.,and the dog was amazed that he would do that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,then they : both try/ed to catch the balloon when it was go/ing into the air.,then they both tried to catch the balloon when it was going into the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,she was so mad at him.,she was so mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,she was shake/ing all around.,she was shaking all around +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,then : the rabbit saw a balloon man who was sell/ing balloon/s.,then the rabbit saw a balloon man who was selling balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,he walk/ed up to him and ask/ed for the same colour balloon.,he walked up to him and asked for the same colour balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,but (h) he said they are five cent/s.,but h he said they are five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,but he said he did not have any money.,but he said he did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,so he could not get one.,so he could not get one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and the little dog was come/ing.,and the little dog was coming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and what?,and what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,the little dog was come/ing [+_bch].,the little dog was coming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,then they both ask/ed for a free one because (his we) her/z went up in the air by him [EU].,then they both asked for a free one because his we her's went up in the air by him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,they ask/ed for a free one.,they asked for a free one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,they what?,they what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,they asked for a free balloon [+_bch].,they asked for a free balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and then (the) the rabbit saw (the doctor) a doctor that help/ed him[!].,and then the the rabbit saw the doctor a doctor that helped him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,so he decide/ed to ask her : if she had any money to get another balloon.,so he decided to ask her if she had any money to get another balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,he told her.,he told her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,she said okay.,she said okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,she paid him : ten cent/s.,she paid him ten cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and they each got their own balloon.,and they each got their own balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,and they both play/ed with them for a long time.,and they both played with them for a long time +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/867.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,it look/3s like (um) two : (people or) animal/s : play/ing with (a r kw uh) a ball : by the : pool.,it looks like um two people or animals playing with a r kw uh a ball by the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,(um) it look/3s like : the girl : has (um) accidentally : not caught the ball : when she had bounce/ed it.,um it looks like the girl has um accidentally not caught the ball when she had bounced it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and it bounce/ed into the pool.,and it bounced into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,it look/3s like the boy : was swim/ing : out to go and get the ball for her.,it looks like the boy was swimming out to go and get the ball for her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the boy is give/ing the ball to the girl.,the boy is giving the ball to the girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and the girl is really happy.,and the girl is really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the boy (is like) think/3s he is quite charm/ing.,the boy is like thinks he is quite charming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and the girl : think/3s he is cute.,and the girl thinks he is cute +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,it look/3s like a boy and girl (want) *are look/ing at the water like ooh I really want to dive in here [EU].,it looks like a boy and girl want looking at the water like ooh I really want to dive in here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the girl is like come on.,the girl is like come on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,let us run over to the diving board and get in : the water.,let us run over to the diving board and get in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,she is run/ing over.,she is running over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,she is slip/ing on some : water : that has came up.,she is slipping on some water that has came up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,she fell and scrape/ed her knee : (while) after she : was run/ing.,she fell and scraped her knee while after she was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the lifeguard is come/ing over : to give her a bandaid : (while : sh) while (um) the boy is try/ing to comfort her.,the lifeguard is coming over to give her a bandaid while sh while um the boy is trying to comfort her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the lifeguard is put/ing on a bandaid.,the lifeguard is putting on a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and she is feel/ing a lot of pain : while the boy is try/ing to comfort her.,and she is feeling a lot of pain while the boy is trying to comfort her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the lifeguard is : (help) help/ing her get down.,the lifeguard is help helping her get down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,same with the boy onto a bench.,same with the boy onto a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the lifeguard is (um) : discipline/ing the girl : (look) it look/3s like.,the lifeguard is um disciplining the girl look it looks like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,it look/3s like a boy and girl (play/ing with a) and a model airplane.,it looks like a boy and girl playing with a and a model airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the boy is (fling) go/ing zoom zoom (with) with his tongue and make/ing it (sw) swiff[c] and swirl all around.,the boy is fling going zoom zoom with with his tongue and making it sw swiff and swirl all around +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and the girl is : amaze/ed by it.,and the girl is amazed by it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the (b) girl take/3s it away and play/3s with it.,the b girl takes it away and plays with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and the boy is like [~_high_pitched_voice] what ?,and the boy is like what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,[~_high_pitched_voice] what are you do/ing ?,what are you doing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,[~_high_pitched_voice] that is my toy !,that is my toy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,[~_high_pitched_voice] I am go/ing to go crazy !,I am going to go crazy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and she drop/3s it down into the pool.,and she drops it down into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the boy is like : [~_high_pitched_voice] now look what you have done.,the boy is like now look what you have done +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,[~_high_pitched_voice] my plane is gone forever !,my plane is gone forever +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,then the lifeguard come/3s over.,then the lifeguard comes over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and he is like what is happen/ing : or something like that.,and he is like what is happening or something like that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the girl explain/3s to the lifeguard that she took it away from him.,the girl explains to the lifeguard that she took it away from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and : it drop/ed into the water.,and it dropped into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the lifeguard try/3s to reach out for it.,the lifeguard tries to reach out for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,(but it sail/3s) but it sail/3s away (because of the wind) because of the : (um) wind is make/ing little wave/s that push it away.,but it sails but it sails away because of the wind because of the um wind is making little waves that push it away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the boy is really really sad.,the boy is really really sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and the girl is like well I did not do anything.,and the girl is like well I did not do anything +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and the lifeguard is like : I am sorry.,and the lifeguard is like I am sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,but I can not get at it.,but I can not get at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,a girl with : a scoop is : go/ing to (um) : get it out.,a girl with a scoop is going to um get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,"and the boy, the girl, and the : lifeguard are all amaze/ed by what they are see/ing.",and the boy the girl and the lifeguard are all amazed by what they are seeing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,she is reach/ing out with the scoop : get/ing it.,she is reaching out with the scoop getting it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the lifeguard is quite surprise/ed.,the lifeguard is quite surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and : the little boy is (um) still a bit sad about it.,and the little boy is um still a bit sad about it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and now the : lady is : give/ing : the airplane to him.,and now the lady is giving the airplane to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and the boy is quite happy.,and the boy is quite happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,he is : hold/ing the airplane really tight in his arm/s.,he is holding the airplane really tight in his arms +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,(and the girl) : and (it) the girl : supposedly is (a a) ask/ing to play with it.,and the girl and it the girl supposedly is a a asking to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,it is a boy and a girl that have just finish/ed create/ing[?] a nice sandcastle.,it is a boy and a girl that have just finished creating a nice sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the boy is take/ing out sand : because he want/3s to help the girl out with the sandcastle.,the boy is taking out sand because he wants to help the girl out with the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the boy is dump/ing the sand.,the boy is dumping the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the girl is like oh no you are go/ing to ruin it.,the girl is like oh no you are going to ruin it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and the boy is like oopsies!,and the boy is like oopsies +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and the girl is like what did you do?,and the girl is like what did you do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,then the girl is cry/ing.,then the girl is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and the boy is like I did not do anything.,and the boy is like I did not do anything +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,a boy and a girl are go/ing off for a picnic with two picnic basket/s.,a boy and a girl are going off for a picnic with two picnic baskets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the girl and the boy have unload/ed all their : stuff.,the girl and the boy have unloaded all their stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,well the boy has.,well the boy has +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and it is (all) mostly junk food.,and it is all mostly junk food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,he has eaten it all by himself : quite fast.,he has eaten it all by himself quite fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,he is get/ing drowsy dizzy : get/ing a stomachache : (get/ing) probably get/ing pain/s in his side/s.,he is getting drowsy dizzy getting a stomachache getting probably getting pains in his sides +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the girl is run/ing over to a paramedic : (who) (whose um) who has came over for what look/3s like : an outdoor lunch.,the girl is running over to a paramedic who whose um who has came over for what looks like an outdoor lunch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the girl is drag/ing her to the : boy.,the girl is dragging her to the boy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the paramedic is open/ing up her bag and : take/ing one of those thing/s that (they) you put in their mouth and check/ing (all the) (all of his) all the temperature and stuff.,the paramedic is opening up her bag and taking one of those things that they you put in their mouth and checking all the all of his all the temperature and stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and she is take/ing him home.,and she is taking him home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and the girl feel/3s happy that : she has help/ed him.,and the girl feels happy that she has helped him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,it look/3s like a girl with a balloon on her wagon that is like oh I love this balloon.,it looks like a girl with a balloon on her wagon that is like oh I love this balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and she is see/ing (her boy) her (um) friend.,and she is seeing her boy her um friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,(they are both) the boy is look/ing up at the balloon : and say/ing : I want this balloon.,they are both the boy is looking up at the balloon and saying I want this balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the boy is (unt) try/ing to untie it.,the boy is unt trying to untie it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and the girl is like what are you do/ing?,and the girl is like what are you doing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,(um) the boy and the girl are reach/ing up for the balloon while it is soar/ing off into the air.,um the boy and the girl are reaching up for the balloon while it is soaring off into the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the boy is like oopsies.,the boy is like oopsies +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and the girl is like now look what you have done you little pee hole or something like that.,and the girl is like now look what you have done you little pee hole or something like that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,"you little what, I do not know that word.",you little what I do not know that word +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,butt hole [+_bch].,butt hole +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,"oh you said bee hole, okay.",oh you said bee hole okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and then the boy see/3s (um) someone : with a whole bunch of balloon/s.,and then the boy sees um someone with a whole bunch of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and he is walk/ing over.,and he is walking over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,the girl is still really angry.,the girl is still really angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and then (um) : the boy is like can I have that balloon?,and then um the boy is like can I have that balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and the girl is like huh?,and the girl is like huh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,what is he do/ing?,what is he doing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and then he show/3s balloon/s five cent/s each.,and then he shows balloons five cents each +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and then (he) the boy do/3s not have any money.,and then he the boy does not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and then they are both : like oh dang we do not have any money.,and then they are both like oh dang we do not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and (um) they are run/ing over to the doctor.,and um they are running over to the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,they are ask/ing the doctor (if) or maybe their mother if they can have : (um five cent/s) five or ten cent/s for some balloon/s.,they are asking the doctor if or maybe their mother if they can have um five cents five or ten cents for some balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and the doctor is give/ing : the : balloon man some money : while the kid/s are get/ing their balloon/s.,and the doctor is giving the balloon man some money while the kids are getting their balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and the : doctor or their mom is really happy.,and the doctor or their mom is really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/910.slt,and the two kid/s are : happy too.,and the two kids are happy too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,there was[EW:were] : two friends (that) : (that).,there was two friends that that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and the elephant had a ball.,and the elephant had a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and they want/ed to go swim/ing.,and they wanted to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then the ball fell into the water.,and then the ball fell into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then (he) : the : horse swimmed|swim[EW:swam] after it.,and then he the horse swimmed after it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then they got it back.,and then they got it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then : (sh) she thank/ed her.,and then sh she thanked her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,she what?,she what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then : (he) she (thank/ed her) : thank/ed him [+_bch].,and then he she thanked her thanked him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,(there was) : they were look/ing into the pool[-:].,there was they were looking into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and there was a diving board in there.,and there was a diving board in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,(and sh) and the girl jump/ed in.,and sh and the girl jumped in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,then she slip/ed.,then she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then she hurt her knee.,and then she hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then the lifeguard came.,and then the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,(and then she p) and then he put a bandaid on it.,and then she p and then he put a bandaid on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then they went to the bench.,and then they went to the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then they made her feel better.,and then they made her feel better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and (th) : the lifeguard point/ed[~!_laughing] at her to go somewhere.,and th the lifeguard pointed at her to go somewhere +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,they were play/ing with a[EW:an] airplane by the pool.,they were playing with a airplane by the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,(the) and he was drive/ing it.,the and he was driving it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and (go/ing) : (go/ing with his hands) he was go/ing [EU].,and going going with his hands he was going +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and (uh) the girl was look/ing.,and uh the girl was looking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,(and then : they) : and then : the girl took it from him and then try/ed it.,and then they and then the girl took it from him and then tried it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then it fell into the pool.,and then it fell into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then it sank.,and then it sank +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then he was mad at her.,and then he was mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then a lifeguard came.,and then a lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then : they explain/ed what happen/ed.,and then they explained what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then : he reach|reach[EW:reached] for it.,and then he reach for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,but he could not get it.,but he could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,(and then somebody) : and then they were sad.,and then somebody and then they were sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then somebody came with a net : and got it.,and then somebody came with a net and got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,(and then they) and then she gave it back to him.,and then they and then she gave it back to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,(and then) (and then he like) : and then he hug/ed it.,and then and then he like and then he hugged it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,(they) they want/ed to build a sandcastle.,they they wanted to build a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and they builded|build[EW:built] one.,and they builded one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,(and then) : (and then they were) : and then they put some sand into a bucket.,and then and then they were and then they put some sand into a bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,(and then they) and then he pour/ed it on.,and then they and then he poured it on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then it broke.,and then it broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then : (he) : he stand|stand[EW:stood] there like he did not do anything.,and then he he stand there like he did not do anything +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and he try/ed to fix it.,and he tried to fix it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,they want/ed to go for lunch[-:].,they wanted to go for lunch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,(they) : they had a lunch.,they they had a lunch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,they were so full.,they were so full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and he felt sick.,and he felt sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then : he went to a lady.,and then he went to a lady +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then (he) : he want/ed : something.,and then he he wanted something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,some what?,some what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,(some) something : or some help [+_bch].,some something or some help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then she help/ed.,and then she helped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,(and then) : and then she took her with him.,and then and then she took her with him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,they were : play/ing a wagon with a balloon on it [EU].,they were playing a wagon with a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,(it) (then) : and then he want/ed to hold the balloon.,it then and then he wanted to hold the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then he untie/ed it.,and then he untied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then it float/ed away.,and then it floated away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,(and then he wa) : and then she was angry at him.,and then he wa and then she was angry at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then they went to another balloon stand : where there is[EW:were] (another[EW:other] balloon/s) : more balloon/s.,and then they went to another balloon stand where there is another balloons more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,then they said can : we have one.,then they said can we have one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,(and) but they are (fifty cent/s) five cent/s.,and but they are fifty cents five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then they want it.,and then they want it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,but she would not let them.,but she would not let them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,and then they went to a girl and see if (they) they would give (him) : them five cent/s.,and then they went to a girl and see if they they would give him them five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,(and she) : and they said (wo) can you give me five cent/s for a balloon?,and she and they said wo can you give me five cents for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,my balloon float/ed away.,my balloon floated away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,(and sh) and she did.,and sh and she did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/622.slt,then they had their own balloon/s.,then they had their own balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,(um : two um) : two animal/s are play/ing (with a) with a (bla) ball.,um two um two animals are playing with a with a bla ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,then it go/3s into a pool.,then it goes into a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,(then the guy is) then he jump/3s.,then the guy is then he jumps +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,and he start/3s to get it.,and he starts to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,she[?] get|get[EW:got] it.,she get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,then he pass/3s it back up.,then he passes it back up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,and then (um) he get/3s out of the water.,and then um he gets out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,(um) : two animal/s see : a diving board.,um two animals see a diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,they (um) want to go over there.,they um want to go over there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,they start to run.,they start to run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,and one slip/3s : fall/3s down and hurt/3s herself.,and one slips falls down and hurts herself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,and then a lifeguard come/3s over and see/3s that she is cry/ing.,and then a lifeguard comes over and sees that she is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,(then she put/3s) then he put/3s a[-:] : bandaid on.,then she puts then he puts a bandaid on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,then she sit/3s down on the (bens) bench.,then she sits down on the bens bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,then (um : he) one of the (uh) guy/s point|point[EW:points] to (um) the no run/ing sign.,then um he one of the uh guys point to um the no running sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,(um) : one animal has a plane.,um one animal has a plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,he (um) throw/3s it up and down.,he um throws it up and down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,then the other one grab/3s it from him : and (s) drop/3s it in a pool.,then the other one grabs it from him and s drops it in a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,then it start/3s to sink.,then it starts to sink +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,and he is mad at her.,and he is mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,and then a lifeguard come/3s over : and see/3s that it is in the water.,and then a lifeguard comes over and sees that it is in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,so he try/3s to get it.,so he tries to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,and (he) he can not get it.,and he he can not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,and the other one start/3s to cry.,and the other one starts to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,and then : another lifeguard come/3s over with a net : and[-:] pick/3s it up : and give/3s it back to him.,and then another lifeguard comes over with a net and picks it up and gives it back to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,and he is all happy.,and he is all happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,(um) : they are build/ing[!] a sandcastle two dog/s.,um they are building a sandcastle two dogs +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,(and[-:] the) : (th) and one is : take/ing a shovel and put/ing some on.,and the th and one is taking a shovel and putting some on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,and[-:] he put/3s a lot on.,and he puts a lot on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,and then he ruin/3s the castle.,and then he ruins the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,then one start/3s to cry.,then one starts to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,(um) : a dog and a rabbit are run/ing over to each other.,um a dog and a rabbit are running over to each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,then they have a picnic : one with eat and everything [EU].,then they have a picnic one with eat and everything +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,(then he gets) then one get/3s full : really really full[~!__laughing].,then he gets then one gets full really really full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,and then[-:] (um) (wha) the other one go/3s over to a doctor : and bring/3s her over to him.,and then um wha the other one goes over to a doctor and brings her over to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,then she (um) : try/3s to fix him.,then she um tries to fix him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,and then she do/3s.,and then she does +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,(um) : (one[-:]) the dog has (um) : a wagon with a balloon on it.,um one the dog has um a wagon with a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,and a rabbit come/3s over to see it.,and a rabbit comes over to see it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,and then he untie/3s it.,and then he unties it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,and it go/3s up in the air.,and it goes up in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,(then) (then the o) then the other one get/3s mad at him.,then then the o then the other one gets mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,and then he sees[-:] a guy with all kind/s of balloon/s.,and then he sees a guy with all kinds of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,he go/3s over and want/3s to get one.,he goes over and wants to get one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,but he do/3s not have any money.,but he does not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,the balloon/s cost five cent/s.,the balloons cost five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,so then the other one come/3s over.,so then the other one comes over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,then they go to (the) a lady : and ask if they can get a balloon.,then they go to the a lady and ask if they can get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,and she give/3s them five cent/s.,and she gives them five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/865.slt,and they get : a balloon.,and they get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,once there was a[EW:an] elephant : play/ing with : a ball.,once there was a elephant playing with a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and she was bounce/ing it.,and she was bouncing it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and a giraffe come/3s along and say/3s can I play?,and a giraffe comes along and says can I play +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,then they both start bounce/ing the ball.,then they both start bouncing the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and the ball fall/3s inside a pool.,and the ball falls inside a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,the giraffe go/3s into the pool to get (the) : the ball.,the giraffe goes into the pool to get the the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and the elephant is very worry/ed.,and the elephant is very worried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,then the giraffe get/3s the ball out from the water and give/3s it to the elephant.,then the giraffe gets the ball out from the water and gives it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,then the elephant : say/3s thank you.,then the elephant says thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,(and start).,and start +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,(there is a little um) two friend/s are at the pool.,there is a little um two friends are at the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and they see : a diving board.,and they see a diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and they want to jump on it.,and they want to jump on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and then they start.,and then they start +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and then the elephant tell/3s the giraffe let us go on the diving board.,and then the elephant tells the giraffe let us go on the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,so they start run/ing.,so they start running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and the little elephant slip/3s!,and the little elephant slips +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and she hurt/3s her knee really bad.,and she hurts her knee really bad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,then the lifeguard come/3s along : and see/3s what is the matter.,then the lifeguard comes along and sees what is the matter +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and he put/3s a bandaid on the little elephant/z knee.,and he puts a bandaid on the little elephant's knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and then the elephant is : feel/ing better.,and then the elephant is feeling better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and then the life (guad) guard remind/3s her no run/ing.,and then the life guad guard reminds her no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and then the lifeguard : show/3s her the sign on the wall.,and then the lifeguard shows her the sign on the wall +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and it says no run/ing.,and it says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,(there is) two friend/s are at the swimming pool.,there is two friends are at the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and one of them has a : new toy.,and one of them has a new toy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and they like it very much.,and they like it very much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and he start/3s : pretend/ing he is inside the : airplane and start/3s move/ing it around and make/ing noise/s.,and he starts pretending he is inside the airplane and starts moving it around and making noises +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,then the little elephant grab/3s the plane and try/s to play with it.,then the little elephant grabs the plane and tries to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and then she accidentally drop/3s it in the water.,and then she accidentally drops it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,(and the life) and then the little : giraffe get/3s angry at her because (she) : she drop/ed the : airplane in the water.,and the life and then the little giraffe gets angry at her because she she dropped the airplane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,then the lifeguard come/3s over.,then the lifeguard comes over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,the little elephant tell/3s the lifeguard what happen/ed.,the little elephant tells the lifeguard what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,the lifeguard try/3s to : get the airplane out of the water.,the lifeguard tries to get the airplane out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,(but he is) but it is too far to reach.,but he is but it is too far to reach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,then the giraffe get/3s upset.,then the giraffe gets upset +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and so do/3s the little elephant.,and so does the little elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and the : lifeguard do/3s not know what to do.,and the lifeguard does not know what to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,but then another lifeguard come/3s over with a net.,but then another lifeguard comes over with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and she said she can get it out.,and she said she can get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and she get/3s it out with the net.,and she gets it out with the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and then : the little elephant say/3s thank you to the lifeguard.,and then the little elephant says thank you to the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and then : the little elephant : (um say/3s you are welcome because) say/3s can I play with your little : airplane ?,and then the little elephant um says you are welcome because says can I play with your little airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,once there was a little puppy.,once there was a little puppy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and a little rabbit come/3s to play with him.,and a little rabbit comes to play with him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,the little puppy tell/3s the rabbit that he is make/ing a sandcastle.,the little puppy tells the rabbit that he is making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and the rabbit ask/3s if he can : make one too.,and the rabbit asks if he can make one too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,so the rabbit fill/3s a big : pail of sand and pour/3s it onto the sandcastle.,so the rabbit fills a big pail of sand and pours it onto the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and the puppy get|get[Ew:gets] very worry/ed.,and the puppy get very worried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and so does the rabbit.,and so does the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and then the little puppy start/3s get/ing upset because : the rabbit ruin/ed his sandcastle.,and then the little puppy starts getting upset because the rabbit ruined his sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,once there was a little puppy.,once there was a little puppy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and he was go/ing to (take) : make a picnic.,and he was going to take make a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and then a rabbit come/3s along and ask/3s if he can join[!] him.,and then a rabbit comes along and asks if he can join him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and the little puppy start/3s unload/ing.,and the little puppy starts unloading +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and the rabbit start/s to eat lot/s and lot/s of food/s[EW:food].,and the rabbit starts to eat lots and lots of foods +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,then the : puppy get/3s very worry/ed.,then the puppy gets very worried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and the : rabbit get/3s very full.,and the rabbit gets very full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and his stomach is very big.,and his stomach is very big +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,then : the[-:] rabbit (s) get/3s a headache.,then the rabbit s gets a headache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,(and start/3s to) and his stomach start/3s to growl.,and starts to and his stomach starts to growl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,then the puppy find/3s a doctor and ask/3s him : if she can : help him because his friend is very sick.,then the puppy finds a doctor and asks him if she can help him because his friend is very sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,(so the) (so he) so the doctor come/3s (o) over to see what was[EW:is] wrong.,so the so he so the doctor comes o over to see what was wrong +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and the doctor find/3s out that : the : little rabbit has a stomachache.,and the doctor finds out that the little rabbit has a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and he has eaten too much.,and he has eaten too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and then the doctor take/3s him to the (ho) hospital to make him feel better.,and then the doctor takes him to the ho hospital to make him feel better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,there was a little puppy : who had a : balloon on his wagon.,there was a little puppy who had a balloon on his wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and a rabbit come/3s by to say hello.,and a rabbit comes by to say hello +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and then : the : bunny see/3s the balloon and want/3s : to keep it.,and then the bunny sees the balloon and wants to keep it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and then : the bunny start/3s to untie the : balloon from the wagon.,and then the bunny starts to untie the balloon from the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and the : little doggy is very surprise/ed.,and the little doggy is very surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and then the balloon fly/3s away.,and then the balloon flies away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and they are both very mad because : they do not have a balloon.,and they are both very mad because they do not have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,then (the little : um) : the little dog get/3s angry at the rabbit because he lost his balloon.,then the little um the little dog gets angry at the rabbit because he lost his balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,then they all see : a man with lot/s of balloon/s and think they can get one.,then they all see a man with lots of balloons and think they can get one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and then the little rabbit ask/3s for a balloon.,and then the little rabbit asks for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and the : man say/3s (there) you need to : pay for one.,and the man says there you need to pay for one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,(and the little : man) and the little bunny (does not have) try/3s to check his pocket/s.,and the little man and the little bunny does not have tries to check his pockets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and there is nothing in them.,and there is nothing in them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,then they are both upset because they do not have anything to buy a balloon with.,then they are both upset because they do not have anything to buy a balloon with +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,then the little rabbit see/3s (a) a : lady.,then the little rabbit sees a a lady +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and he go/3s to ask him for some money.,and he goes to ask him for some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,and he tell/3s the lady why he want/3s a : balloon.,and he tells the lady why he wants a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,but he do/3s not have any : money.,but he does not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,then (the l) the lady give/3s : the man five cent/s so that they can buy a balloon.,then the l the lady gives the man five cents so that they can buy a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,then they are both happy because they have a balloon to play with.,then they are both happy because they have a balloon to play with +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/760.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,[~_all_right] : there was an elephant and a cow.,there was an elephant and a cow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,they were not : very nice to each other.,they were not very nice to each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,they were yell/ing : at each other.,they were yelling at each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,they : saw : something.,they saw something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,but they did not know what it was!,but they did not know what it was +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,(so) : so : the cow : swimmed|swim[EW:swam] to it.,so so the cow swimmed to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and he grab/ed it.,and he grabbed it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,(but it) : (it) but he : let go of it.,but it it but he let go of it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and he squeez/ed it.,and he squeezed it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and it was : a ball.,and it was a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,he came out[!] of the water.,he came out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,(now) and[-:] : (it do/3s) : they : went : all[-:] the way[-:] together[!].,now and it does they went all the way together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,they were go/ing swim/ing.,they were going swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,but they did not know what to do[!].,but they did not know what to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,so : they : went off and jump/ed into the water quickly[!].,so they went off and jumped into the water quickly +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,they were mad.,they were mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,they were not do/ing what they were suppose/ed to do.,they were not doing what they were supposed to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,they chase/ed[!] each other.,they chased each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and they hit[!] each other.,and they hit each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,(and he) and the elephant : fell : on his knee.,and he and the elephant fell on his knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and it hurt.,and it hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,it was : hurt/ing.,it was hurting +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,it was : hurt/ing a lot.,it was hurting a lot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,he did not like that.,he did not like that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and his friend came and help/ed him.,and his friend came and helped him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,it was a[EW:an] elephant.,it was a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and he put a bandage on him.,and he put a bandage on him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and it start/ed : to[-:] go.,and it started to go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and they sit|sit[EW:sat] down.,and they sit down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,happily ever after.,happily ever after +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,[~_sighs] : they were jump/ing in the water : (with the ball) with : the airplane.,they were jumping in the water with the ball with the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and they : did something wrong.,and they did something wrong +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,they broke the airplane.,they broke the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,so they fix/ed[!] it : all up.,so they fixed it all up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,then : it flyed|fly[EW:flew][-:].,then it flyed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and it was by itself.,and it was by itself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,did not got[EW:have] a control [EU].,did not got a control +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,it had a mouth.,it had a mouth +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,(and it) : (and he) and it did not do it anymore.,and it and he and it did not do it anymore +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,(but) : but the elephant : grab/ed the airplane from : the cow.,but but the elephant grabbed the airplane from the cow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,(he) they drop/ed it.,he they dropped it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and it swimmed|swim[EW:swam] away.,and it swimmed away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,it sunk !,it sunk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and they were mad[-:].,and they were mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,they said help help!,they said help help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,: we do not know what to do!,we do not know what to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,it sunk very long [EU].,it sunk very long +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and it was almost down[!].,and it was almost down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,it flew.,it flew +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,it floated : up in the sky.,it floated up in the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,(they did[?]) it was almost down to the bottom.,they did it was almost down to the bottom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,it swimmed|swim[EW:swam][!] : away.,it swimmed away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,it was not very cold.,it was not very cold +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,they got a thing.,they got a thing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,(but it) but they were go/ing to get it.,but it but they were going to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,(th) and they got it[!] : almost.,th and they got it almost +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,but they did not want to get it.,but they did not want to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,it was gone[-:].,it was gone +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and they got it!,and they got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and they gaved|give[EW:gave] it back.,and they gaved it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,so he hug/ed[!] it.,so he hugged it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,the end [+__bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,once they were : play/ing in the sandbox.,once they were playing in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and she (made) : made *a sandcastle [EU].,and she made made sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and she was make/ing[!] it.,and she was making it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,the little boy start/ed : to touch it.,the little boy started to touch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,she put some more sand on[-:].,she put some more sand on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and it fell[-:].,and it fell +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,(and he was) and she was very mad at him.,and he was and she was very mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,(then she) : then he touch/ed it.,then she then he touched it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,then : he made a hand print.,then he made a hand print +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,they met each other with picnic/s[-:].,they met each other with picnics +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and they were have/ing a picnic together.,and they were having a picnic together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,once they were eat/ing and drink/ing.,once they were eating and drinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,he[-:] was fat.,he was fat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,he got a really good : think [EU].,he got a really good think +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and they were[-:] pack/ing up for the beach.,and they were packing up for the beach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,they were go/ing to the beach.,they were going to the beach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,but they : forgot about : their friend/s.,but they forgot about their friends +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,they forgot about them because he was sick[-:].,they forgot about them because he was sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,maybe he was[!] go/ing to[:_gonna] come out.,maybe he was going to come out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,but he did!,but he did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,he was : bring/ing his wagon.,he was bringing his wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and he went into the snow with a balloon.,and he went into the snow with a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,he ran.,he ran +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and he : met his friend.,and he met his friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and he said : do you like this balloon[!].,and he said do you like this balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and he said yes.,and he said yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,but he untie/ed[!] it.,but he untied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and it flew away.,and it flew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and it was gone[!].,and it was gone +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,he was go/ing to[:_gonna] find another[!] balloon.,he was going to find another balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,he found a guy with some balloon/s.,he found a guy with some balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,he (w) : ask/ed if we can have them [EU].,he w asked if we can have them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,then : he can : have : balloon [EU].,then he can have balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,he ask/ed[!] it [EU].,he asked it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,so : he : point/ed at : (the) : the one that has the cloth on.,so he pointed at the the one that has the cloth on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,not the x[l] with the banana.,not the x with the banana +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,he : punched down : the five.,he punched down the five +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and he want/ed that[!] one.,and he wanted that one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,(he gave it to hi) he did not give[!] it to him.,he gave it to hi he did not give it to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,so : he ran away.,so he ran away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and from now on : they did not : went together again [EU].,and from now on they did not went together again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and they : ran together again : with them.,and they ran together again with them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and they were happy!,and they were happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,he chase/ed them.,he chased them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,(and they gave) and he gave them : all the balloon/s.,and they gave and he gave them all the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,and : the story went : more[-:] out [EU]!,and the story went more out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,so they start/ed : it all[-:] day [EU].,so they started it all day +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/465.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,[~_okay] the giraffe and the elephant are bounce/ing a ball.,the giraffe and the elephant are bouncing a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,it go/3s into the pool.,it goes into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,(the) the (uh) [~_giggles] [+..] [EU].,the the uh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,[~_prompt] it'is your story.,it'is your story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,the (uh) cowlike thing go/3s in the pool and get/3s the ball.,the uh cowlike thing goes in the pool and gets the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and then he bring/3s it out to the elephant.,and then he brings it out to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and then (the) (they) they are play/ing with it again.,and then the they they are playing with it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,okay (the) the elephant and the giraffe_like thing is[EW:are] go/ing to[:__gonna] go for a swim.,okay the the elephant and the giraffe like thing is going to go for a swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,the elephant want/3s to go off the diving board.,the elephant wants to go off the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,(she slips : and :) she slip/3s.,she slips and she slips +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,she fell.,she fell +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and she : hurt her knee.,and she hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and now the lifeguard come/3s rush/ing over.,and now the lifeguard comes rushing over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and the lifeguard put/3s a bandaid on it.,and the lifeguard puts a bandaid on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and then the elephant walk/3s over to the bench.,and then the elephant walks over to the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and then the lifeguard point/3s to the no run/ing sign.,and then the lifeguard points to the no running sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,[~_okay] the giraffe thing has the airplane.,the giraffe thing has the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and they are play/ing with it.,and they are playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and the giraffe guy is pretend/ing that it is do/ing loopdeloop/s and stuff.,and the giraffe guy is pretending that it is doing loopdeloops and stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and the elephant snatch/3s it from him and want/3s to play with it.,and the elephant snatches it from him and wants to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and then the elephant drop/3s it in the pool.,and then the elephant drops it in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,then the giraffe is mad.,then the giraffe is mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and the lifeguard : see/3s the plane in the water.,and the lifeguard sees the plane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and the elephant explain/3s what happened.,and the elephant explains what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and the lifeguard try/3s to stretch out and get it.,and the lifeguard tries to stretch out and get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,but then[-:] he could not reach it.,but then he could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and the giraffe is cry/ing.,and the giraffe is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,And then : this woman (come/3s along with a net and) she come/3s along with a net.,And then this woman comes along with a net and she comes along with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and she grab/3s the plane out with the net.,and she grabs the plane out with the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and then she give/3s it back to the giraffe.,and then she gives it back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and then the giraffe hug/3s it.,and then the giraffe hugs it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,the bunny and the[-:] : (uh) animal [~_giggles] (uh) want to be together.,the bunny and the uh animal uh want to be together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,(uh) they (uh) start/ed (uh) build/ing this (cas) sandcastle.,uh they uh started uh building this cas sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,the bunny pour/3s sand all over the sandcastle.,the bunny pours sand all over the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and then the sandcastle (is) : it collapse/ed.,and then the sandcastle is it collapsed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and now the other animal is cry/ing.,and now the other animal is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,(uh) : the animal see/3s the rabbit.,uh the animal sees the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and he is wave/ing.,and he is waving +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,they decide to have a picnic together.,they decide to have a picnic together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and (the) the rabbit eat/3s too much.,and the the rabbit eats too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,so now he has a tummyache.,so now he has a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and : now the rabbit feel/3s really bad.,and now the rabbit feels really bad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and now the doctor come/3s.,and now the doctor comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and : the animal is pull/ing the doctor to the rabbit.,and the animal is pulling the doctor to the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and the doctor is take/ing the rabbit/z temperature.,and the doctor is taking the rabbit's temperature +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and then he is all better.,and then he is all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,(uh) the rabbit see/3s the animal with a balloon.,uh the rabbit sees the animal with a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and he wave/3s.,and he waves +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,the rabbit is (gett/ing) grab/ing the balloon.,the rabbit is getting grabbing the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and now the rabbit is play/ing with the balloon.,and now the rabbit is playing with the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and[-:] by accident he let go of it.,and by accident he let go of it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and now it is way up in the sky.,and now it is way up in the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and then they see a man with balloon/s.,and then they see a man with balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and the bunny[-:] ask/3s if he can get one.,and the bunny asks if he can get one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,(and then ther f) and then the (g) guy say/3s (the) they are five cent/s.,and then ther f and then the g guy says the they are five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and then he frown/3s because he do/3s not have any money.,and then he frowns because he does not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and then he run/3s to his : dad or his mom or whatever.,and then he runs to his dad or his mom or whatever +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and he ask/3s her to buy him a balloon.,and he asks her to buy him a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and she buy/3s both of them a balloon.,and she buys both of them a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/843.slt,and then (they) they are play/ing with the balloon/s.,and then they they are playing with the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,the (gir) the giraffe and a[EW:an] elephant [EU].,the gir the giraffe and a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the elephant is grab/ing a ball (from his ba) from this tube.,and the elephant is grabbing a ball from his ba from this tube +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,(the : elephant[-:] uh) the giraffe put it in the water.,the elephant uh the giraffe put it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the elephant is : sad.,and the elephant is sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,the[-:] giraffe jump/ed in the water.,the giraffe jumped in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the elephant is go/ing like [~_hands_on_his_cheeks].,and the elephant is going like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and he was try/ing to get the ball.,and he was trying to get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,he is swim/ing.,he is swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,the (um) giraffe[-:] got (the : uh) the ball.,the um giraffe got the uh the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and he gave it to the elephant.,and he gave it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,(the eleph) the giraffe is like stand/ing like this [~_hands__on_his_hips].,the eleph the giraffe is like standing like this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the : (um) elephant is go/ing like [~_imitates_hugging_the__ball] with the ball.,and the um elephant is going like with the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,they are look/ing in the pool.,they are looking in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,the elephant is point/ing to the diving board.,the elephant is pointing to the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the[-:] giraffe has a towel.,and the giraffe has a towel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,the elephant slip/ed.,the elephant slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the giraffe is run/ing.,and the giraffe is running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,(the giraffe fell[-:] in the) [~_no] the elephant fell in.,the giraffe fell in the the elephant fell in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the giraffe is run/ing still.,and the giraffe is running still +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and it is (the) the lifeguard is run/ing to her [EU].,and it is the the lifeguard is running to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,(and) and it say/3s no run/ing.,and and it says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,the[-:] lifeguard put a bandaid on.,the lifeguard put a bandaid on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the (um) elephant was like [~_look_of_pain_on_his_face].,and the um elephant was like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,(and the) (uh) and the lifeguard put (um) : her on the bench.,and the uh and the lifeguard put um her on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the lifeguard point/ed to the (um) no run/ing sign.,and the lifeguard pointed to the um no running sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the elephant is like [~_funny_look_on_face].,and the elephant is like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,"(the giraffe gots[EW:has]) [~_no,_yeah] the giraffe gots[EW:has] a plane.",the giraffe gots the giraffe gots a plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and he was go/ing like this [~_frowns].,and he was going like this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the[-:] elephant is go/ing like [~_funny_look_on_face].,and the elephant is going like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the giraffe : *is swing/ing it around [EU].,and the giraffe swinging it around +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,(and the gir) and the (um) elephant is like [~_facial__expression].,and the gir and the um elephant is like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,(and the elephant is) and the elephant grab/ed it away from him.,and the elephant is and the elephant grabbed it away from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and (um she got) (she) the elephant gots[EW:has] the airplane.,and um she got she the elephant gots the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and she is hold/ing it.,and she is holding it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the giraffe is like [~_facial_expression].,and the giraffe is like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,(and : the gir) and the elephant drop/ed it in the[-:] pool.,and the gir and the elephant dropped it in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the : giraffe is like [~_mad_face].,and the giraffe is like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the elephant is like [~_scared_look].,and the elephant is like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the giraffe is like [~_mad_look].,and the giraffe is like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the elephant is like [~_scared_look].,and the elephant is like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,remember I can not see the pictures so you have to tell me the story.,remember I can not see the pictures so you have to tell me the story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,"(he is) : (uh the lifeguard) [~_no,_yeah] the lifeguard (he is um) : he is like at the edge?",he is uh the lifeguard the lifeguard he is um he is like at the edge +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,he is go/ing like this [~_facial_expression].,he is going like this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and (um the gir) the elephant is like [~_facial_expression].,and um the gir the elephant is like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and then the : giraffe is[-:] just stand/ing there.,and then the giraffe is just standing there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and then the (um) lifeguard is (like) go/ing like [~_facial_expression].,and then the um lifeguard is like going like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the elephant is like [~_facial_expression].,and the elephant is like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the lifeguard is try/ing to get it.,and the lifeguard is trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,(and the : giraffe is) : and the : giraffe : is like (cry) on his knees.,and the giraffe is and the giraffe is like cry on his knees +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and he is like cry/ing.,and he is like crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the elephant is like [~_facial_expression].,and the elephant is like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the lifeguard is like [~_facial_expression].,and the lifeguard is like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,(and) and this other elephant she gots[EW:has] this thing?,and and this other elephant she gots this thing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and she is go/ing like this [~_reaching_with_arms]?,and she is going like this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and she is go/ing to [:_gonna] get it.,and she is going to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and she got it.,and she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and then (the) (she) (he) the[-:] (um) elephant gave it to the giraffe.,and then the she he the um elephant gave it to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and then the giraffe is like [~_happy_expression].,and then the giraffe is like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the elephant is like [~_happy_expression].,and the elephant is like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,the[-:] bunny is play/ing.,the bunny is playing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,(with a) he see/3s another bunny.,with a he sees another bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,now they are start/ing to play together.,now they are starting to play together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,now (they are) like (um p) (the other bunny) the (b) other bunny is put/ing sand somewhere.,now they are like um p the other bunny the b other bunny is putting sand somewhere +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,(the other bunny is um) the : sand fell on the castle : I think.,the other bunny is um the sand fell on the castle I think +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the other bunny is try/ing to fix the castle.,and the other bunny is trying to fix the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,(th) (the um) : the bunny see/3s another bunny with a basket.,th the um the bunny sees another bunny with a basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,they are eat/ing (at) at a picnic place.,they are eating at at a picnic place +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,the[-:] bunny is full.,the bunny is full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and he is like [~_blows_up_cheeks].,and he is like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and he is tap/ing his tummy because like : his tummy hurt/3s.,and he is tapping his tummy because like his tummy hurts +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and then[-:] these swirl/s come (on) (out of his head) : on top of his head actually.,and then these swirls come on out of his head on top of his head actually +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and then the other bunny (um) : see/3s the doctor and run/3s to him : there.,and then the other bunny um sees the doctor and runs to him there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and (the other bunny) (n) the same bunny (um) : not the sick one (uh) : drived|drive[EW:drove] (the um) : the[-:] doctor to the (b) other bunny.,and the other bunny n the same bunny um not the sick one uh drived the um the doctor to the b other bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and then the doctor was like : point/ing.,and then the doctor was like pointing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and : the other bunny was like [~_points_to_picture_in_book].,and the other bunny was like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,remember I can not see the picture.,remember I can not see the picture +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,I know [+_bch].,I know +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,yeah he was like that[!].,yeah he was like that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,the (b um) bunny see/3s the other bunny with the wagon and a balloon.,the b um bunny sees the other bunny with the wagon and a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,the other bunny (i) is go/ing like this [~_motions_with_arm_in__the_air] to the string.,the other bunny i is going like this to the string +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,he is try/ing to get it.,he is trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,he is try/ing to untie it.,he is trying to untie it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,(the[-:]) (there) : he (uh um) let it go.,the there he uh um let it go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and it is float/ing up.,and it is floating up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the other bunny (with) : (that one) (that) that is like : try/ing to get it [EU].,and the other bunny with that one that that is like trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the other bunny is (w) like that [~_points_to_the_picture__in_storybook].,and the other bunny is w like that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,(the) the bunny is like this.,the the bunny is like this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the other bunny is like [~_pointing_to_pictures_and_making__faces].,and the other bunny is like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,remember I can not see the pictures.,remember I can not see the pictures +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,I know [+_bch].,I know +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,so you have to tell me the story.,so you have to tell me the story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,I know that is what I am [+_bch].,I know that is what I am +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and there is this guy with (um) balloon/s.,and there is this guy with um balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and : the[-:] bunny is look/ing at him.,and the bunny is looking at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,but the other bunny is mad with the wagon [EU].,but the other bunny is mad with the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,(and the w) and now the bunny without the wagon is (try) go/ing to[:_gonna] buy a balloon.,and the w and now the bunny without the wagon is try going to buy a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,(an) but (the other) the one with the wagon : is : like behind him right there.,an but the other the one with the wagon is like behind him right there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,(na) (and he do/3s not) the (one) one that he pick/ed (ha) is five cent/s.,na and he does not the one one that he picked ha is five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and he do/3s not have any money.,and he does not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,(so like) and both of them came to the man.,so like and both of them came to the man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the man was stand/ing.,and the man was standing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,(and the rab) and the bunny saw (the) the doctor.,and the rab and the bunny saw the the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,the : bunny (ask/ed the doctor to) : he was check/ing his pocket/s.,the bunny asked the doctor to he was checking his pockets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and he was show/ing the pockets to : the doctor.,and he was showing the pockets to the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and (um) : he point/ed to the : man and (um) : to the doctor.,and um he pointed to the man and um to the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the doctor is like [~_puts_head_to_the_side__trying_to_look_uninterested].,and the doctor is like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and the doctor pay/3s money.,and the doctor pays money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/658.slt,and now the both of the bunny/s got[EW:have] : balloon/s [EU].,and now the both of the bunnies got balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,There is a[EW:an] elephant dress/ed like a girl.,There is a elephant dressed like a girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,a[EW:an] elephant *is swim/ing barenaked [EU].,a elephant swimming barenaked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,elephant *is play/ing with a ball [EU].,elephant playing with a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,horse *is in the water [EU].,horse in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,the (horse) horse *is steal/ing : the ball from the elephant [EU].,the horse horse stealing the ball from the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,(horse) the horse is dress/ed like a girl.,horse the horse is dressed like a girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,(horse is) a[?] horse is push/ing a[EW:an][?] elephant into the water.,horse is a horse is pushing a elephant into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,elephant is run/ing.,elephant is running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,: (s) fell and scrape/ed her knee [EU].,s fell and scraped her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,: cry/ed [EU].,cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,: (um) : go/ing home [EU].,um going home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,went swim/ing again [EU].,went swimming again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,: his dad got mad at him.,his dad got mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,(uh : Elephant) elephant is push/ing the horse.,uh Elephant elephant is pushing the horse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,dive/ing off the diving board [EU].,diving off the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,(the horse is) : the horse is : hit/ing him.,the horse is the horse is hitting him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,hit/ing : yeah [+_bch].,hitting yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,(horse) horse : put his airplane into the water.,horse horse put his airplane into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,horse *is play/ing a game [EU].,horse playing a game +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,(uh ) : elephant *is go/ing to get (the) the (um) plane in the water [EU].,uh elephant going to get the the um plane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,he got it.,he got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,got mad at it.,got mad at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,: horse cry/ed.,horse cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,: elephant got it.,elephant got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,: (got it) got it with his : fishing rod.,got it got it with his fishing rod +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,got his airplane back.,got his airplane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,hug/ed it.,hugged it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,a rabbit is play/ing with a mouse in a sandbox.,a rabbit is playing with a mouse in a sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,the mouse is play/ing with the rabbit build/ing the sandcastle.,the mouse is playing with the rabbit building the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,(the rabbit) : the rabbit : breaked|break[EW:broke] it.,the rabbit the rabbit breaked it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,: the mouse got mad.,the mouse got mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,he built it again.,he built it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,(The mouse is) the rabbit is follow/ing the mouse : to a picnic.,The mouse is the rabbit is following the mouse to a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,he is eat/ing a sandwich.,he is eating a sandwich +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,he got dizzy.,he got dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,look/3s like a doctor [EU].,looks like a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,push/ed him [EU].,pushed him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,(g) and : he : eat|eat[EW:ate] all the lunch.,g and he eat all the lunch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,: walk/ing with the doctor [EU].,walking with the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,the mouse is push/ing : a cart with a balloon on it.,the mouse is pushing a cart with a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,and the rabbit is follow/ing (him) him.,and the rabbit is following him him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,now : the rabbit is push/ing.,now the rabbit is pushing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,(and then) and (the) the mouse[!] is follow/ing him.,and then and the the mouse is following him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,(took) he took the balloon off.,took he took the balloon off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,let it go.,let it go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,it pop/ed.,it popped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,: he saw some more.,he saw some more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,got another one.,got another one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,: was not allow/ed to get one.,was not allowed to get one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,he got mad.,he got mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,(stole) stole all of them [EU].,stole stole all of them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,said look there is[EW:are] those balloon/s.,said look there is those balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,talk/ed : to a doctor [EU].,talked to a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/543.slt,(he got a) he got one balloon.,he got a he got one balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,once upon a time there was a[EW:an] elephant and a giraffe.,once upon a time there was a elephant and a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,: the elephant had a ball.,the elephant had a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,: it fell in the water.,it fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,: (th) the[-:] giraffe went (uh) in and swam to it : and gave it back to the elephant.,th the giraffe went uh in and swam to it and gave it back to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,and the elephant took it away (from the cow) from the[-:] : giraffe.,and the elephant took it away from the cow from the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,once upon a time there was : an elephant and a giraffe.,once upon a time there was an elephant and a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,they were : at : a pool.,they were at a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,: the elephant (ra) (ran) : ran.,the elephant ra ran ran +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,: and she slip/ed.,and she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,she stub/ed her knee.,she stubbed her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,and the giraffe came run/ing.,and the giraffe came running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,: (the) and the giraffe call/ed the lifeguard.,the and the giraffe called the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the lifeguard put a bandaid on the elephant/z knee.,the lifeguard put a bandaid on the elephant's knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,and she felt all better.,and she felt all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,then the lifeguard show/ed her the sign : that said no run/ing.,then the lifeguard showed her the sign that said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,once there was a[EW:an] elephant and a giraffe.,once there was a elephant and a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the giraffe had a plane.,the giraffe had a plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,: the elephant took it away from him.,the elephant took it away from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,and it fell in the water.,and it fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the giraffe got mad at the elephant.,the giraffe got mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the lifeguard came.,the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the elephant told the lifeguard something.,the elephant told the lifeguard something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the lifeguard try/ed to reach (in it) : (i) in to get it.,the lifeguard tried to reach in it i in to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,: the lifeguard could not get it.,the lifeguard could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,and the giraffe start/ed cry/ing.,and the giraffe started crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,a lady came with a net.,a lady came with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,she got it out.,she got it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,and : she gave it back to the giraffe.,and she gave it back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the giraffe : like/ed have/ing it back.,the giraffe liked having it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,once there was a rabbit and a : puppy.,once there was a rabbit and a puppy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,: the : rabbit and the puppy were make/ing a sandcastle.,the rabbit and the puppy were making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the rabbit put water on it.,the rabbit put water on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,: it melt/ed.,it melted +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,: the puppy start/ed cry/ing.,the puppy started crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,one day : there was a : puppy and a rabbit.,one day there was a puppy and a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the rabbit had a big lunch.,the rabbit had a big lunch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,and the puppy had a small one.,and the puppy had a small one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the rabbit : ate quickly : with it/z lunch.,the rabbit ate quickly with it's lunch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,and the puppy : ate slowly.,and the puppy ate slowly +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the rabbit got dizzy.,the rabbit got dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,: the puppy ran to get a doctor.,the puppy ran to get a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the doctor went with the puppy.,the doctor went with the puppy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the[-:] doctor (uh) : took care of the rabbit.,the doctor uh took care of the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,: the : doctor got the rabbit to feel better.,the doctor got the rabbit to feel better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,one day : a puppy had a balloon.,one day a puppy had a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the rabbit saw the balloon.,the rabbit saw the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the rabbit untie/ed it (from hi) from the puppy/z (wago) wagon.,the rabbit untied it from hi from the puppy's wago wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the balloon float/ed in the air.,the balloon floated in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the puppy got mad at the rabbit.,the puppy got mad at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,a rabbit : came around with a whole bunch of balloon/s.,a rabbit came around with a whole bunch of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,: (a little) the little rabbit : ask/ed if he could have a balloon.,a little the little rabbit asked if he could have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the guy said no because he has no money.,the guy said no because he has no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the puppy and the rabbit (wer) were sad.,the puppy and the rabbit wer were sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the rabbit saw a doctor.,the rabbit saw a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the (d) rabbit ask/ed the doctor if she has any money.,the d rabbit asked the doctor if she has any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,the doctor said yes : (she s) and said that she will pay for it.,the doctor said yes she s and said that she will pay for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/666.slt,and the puppy and rabbit had their own balloon/s.,and the puppy and rabbit had their own balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,I saw a giraffe and a[EW:an] elephant.,I saw a giraffe and a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(that) : that is it [+_bch].,that that is it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,I saw an elephant go swim/ing.,I saw an elephant go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(I saw eleph) I saw the (g) giraffe and the elephant (s) drop *the ball in the pool [EU].,I saw eleph I saw the g giraffe and the elephant s drop ball in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,I saw giraffe swim/ing in the pool to get that ball.,I saw giraffe swimming in the pool to get that ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,the giraffe got[EW:has] to get out of that pool.,the giraffe got to get out of that pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,the[?] giraffe always get|get[EW:gets] wet.,the giraffe always get wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,that is the end [+_bch].,that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(The) (the giraffe) : the boy is gone.,The the giraffe the boy is gone +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,"(the) the elephant *is go/ing to jump in the pool, *and make it splash [EU].",the the elephant going to jump in the pool make it splash +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(then the) and that giraffe is work/ing get/ing the (uh) xx.,then the and that giraffe is working getting the uh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,elephant hurt his leg.,elephant hurt his leg +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,elephant cry|cry[EW:cried]!,elephant cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,elephant lose|lose[EW:lost] his eye[?].,elephant lose his eye +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,elephant sit|sit[EW:sat] down : and get|get[EW:got] *a bandaid [EU].,elephant sit down and get bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(eh elephant lo look) the elephant : sit|sit[EW:sat] down.,eh elephant lo look the elephant sit down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,that is the end [+_bch].,that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,The giraffe talk|talk[EW:talks] with xx giraffe.,The giraffe talk with giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,the giraffe play|play[EW:plays] with a plane.,the giraffe play with a plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,elephant (l) get|get[EW:gets] the plane.,elephant l get the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,and : he get|get[EW:gets] it.,and he get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(he) (he) he hold|hold[EW:holds] it.,he he he hold it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,the elephant drop/ed the plane in the water.,the elephant dropped the plane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(the p) (the) (the) ( the) that giraffe xx the elephant.,the p the the the that giraffe the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(that) (hm m) (that) (uh uh) that giraffe look|look[EW:looks] at that plane and (look) swim/3s in the pool.,that hm m that uh uh that giraffe look at that plane and look swims in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(uh : uh) that elephant look|look[EW:looks] at that : elephant.,uh uh that elephant look at that elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(that eleph) that elephant look|look[EW:looks] at that plane in the water.,that eleph that elephant look at that plane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(and) (and that) and that giraffe cry|cry[EW:cries] !,and and that and that giraffe cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(and tha) and there is[EW:are] three elephant/s.,and tha and there is three elephants +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,what is happen/ing ?,what is happening +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(uh) that elephant *is go/ing to pick the plane out of the pool [EU].,uh that elephant going to pick the plane out of the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,he get|get[EW:got] it out.,he get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,he got it.,he got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,he got it (for) for (the) the giraffe.,he got it for for the the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,that is the end [+_bch].,that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(The) (th this) (the) (the) (the) (the) (the) the guy : *is make/ing a sandcastle [EU].,The th this the the the the the the guy making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,and that rabbit *is make/ing a sandcastle too [EU].,and that rabbit making a sandcastle too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,he spill/ed on : that guy/z castle.,he spilled on that guy's castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,it is all broken.,it is all broken +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(th) (that) that[!] guy cry|cry[EW:cries].,th that that guy cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,that is the end [+_bch].,that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(Ah) this guy and this rabbit are go/ing *to eat : outside [EU].,Ah this guy and this rabbit are going eat outside +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,they *are eat/ing some food [EU].,they eating some food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(the) that guy *is hav/ing a drink [EU].,the that guy having a drink +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,that rabbit is full.,that rabbit is full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,that rabbit : is done that.,that rabbit is done that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,this guy hold|hold[EW:holds] rabbit/z jacket.,this guy hold rabbit's jacket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(an) and this guy : is sick.,an and this guy is sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,that rabbit *is go/ing *to take him to the hospital [EU].,that rabbit going take him to the hospital +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,that is the end [+_bch].,that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(uh) that guy get[EW:gets] *a balloon for a rabbit [EU].,uh that guy get balloon for a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,that rabbit *is go/ing *to get the balloon [EU].,that rabbit going get the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(the) then (that) (that) that rabbit *is go/ing *to tie the balloon off [EU].,the then that that that rabbit going tie the balloon off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(an) and the rabbit *is go/ing *to hold it [EU].,an and the rabbit going hold it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,and it flew up to the sky.,and it flew up to the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,it flewed|fly[EW:flew] up.,it flewed up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,and that guy is mad because she is let it up to the sky [EU].,and that guy is mad because she is let it up to the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(an) (and this) and this guy have|have[EW:has] lot/s of balloon/s.,an and this and this guy have lots of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,and that rabbit want[EW:wants] this[!] one.,and that rabbit want this one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(he want) he want [EU].,he want he want +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,look at his pant/s.,look at his pants +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,xxx.,x +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,then rabbit do|do[EW:does] not want a balloon.,then rabbit do not want a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(uh) not going to [:_gonna] xx xx that rabbit.,uh not going to that rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(that guy c) (that w) that rabbit want|want[EW:wants] a balloon.,that guy c that w that rabbit want a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,and (he is) he is go/ing *to (get) get some money and get a balloon [EU]!,and he is he is going get get some money and get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,(he) (he get) he hold|hold[EW:holds] it.,he he get he hold it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/420.slt,that is the end [+_bch].,that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(uh) there is an elephant .,uh there is an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(And there is a) and there is a giraffe .,And there is a and there is a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,the elephant and the giraffe look/ed at a (sss) stone .,the elephant and the giraffe looked at a sss stone +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,but (they) they thought it was a balloon .,but they they thought it was a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(Then they were) (and) (and) and they were swim/ing for it .,Then they were and and and they were swimming for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(And) (and then he got) and then the elephant got it .,And and then he got and then the elephant got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,and they are play/ing soccer with it .,and they are playing soccer with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,The end [+_bch] .,The end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(They are go/ing) they are go/ing to swim in there.,They are going they are going to swim in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,But they have to jump from the diving board.,But they have to jump from the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(She go/3s first) the elephant go/3s first.,She goes first the elephant goes first +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,And (then) then they were xxx whos[EW:who] go/3s first [EU].,And then then they were x whos goes first +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,And (they) the giraffe was go/ing to go first.,And they the giraffe was going to go first +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,And then the elephant goed|go[EW:went] ahead of him .,And then the elephant goed ahead of him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(Then he) then he was race/ing : to get the elephant (to go) to jump in the dive/ing board [EU].,Then he then he was racing to get the elephant to go to jump in the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(then) Then she hurt her knee.,then Then she hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,Then give/ing her a bandaid : [EU].,Then giving her a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,[~_LONG_PAUSE] Then what happen/ed ?,Then what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(uh uh) She was cry/ing.,uh uh She was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,She bringed|bring[EW:brought] her : to : the giraffe.,She bringed her to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,he was go/ing to hug her.,he was going to hug her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,And (then) (then) then she had a time out.,And then then then she had a time out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,And she was run/ing on the deck.,And she was running on the deck +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,that is not allow/ed.,that is not allowed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,And she was go/ing to go on a time out [EU].,And she was going to go on a time out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,The end [+_bch].,The end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(uh) they told[EW:asked] question/s.,uh they told questions +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(They found a elephant in his pock uh) they found (a) a plane in his pocket.,They found a elephant in his pock uh they found a a plane in his pocket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,And then the elephant grab/ed it : without say/ing please.,And then the elephant grabbed it without saying please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(and then she was go/ing throw) (She throwed|throw[EW:threw] the) (i) (she) it slip/ed out of her hand.,and then she was going throw She throwed the i she it slipped out of her hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,And it goed|go[EW:went] in the water.,And it goed in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,And it was sink/ing.,And it was sinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(then) (then the) then the man it[EW:he] was go/ing to swim.,then then the then the man it was going to swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,He said why is that airplane in the pool?,He said why is that airplane in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(she said) (i) and it slip/ed out of his hand she said [EU].,she said i and it slipped out of his hand she said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(then sh) (and then) (and then she thought) : she was try/ing to get it .,then sh and then and then she thought she was trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,But he was go/ing to fall in the water .,But he was going to fall in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,Then he was (too scare/ed) too[?] scare/ed.,Then he was too scared too scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,Then he was go/ing to catch it.,Then he was going to catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,The girl : and mommy : [EU].,The girl and mommy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,What do you see ?,What do you see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(uh) She caught it.,uh She caught it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,: And then what happen/ed ?,And then what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,She gave it to him .,She gave it to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,Then they were happy.,Then they were happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,They were happy ?,They were happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,The end [+_BCH].,The end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(uh) the bunny rabbit/s are dig/ing.,uh the bunny rabbits are digging +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(the) (the bunny) the bunny/s are make/ing a sandcastle.,the the bunny the bunnies are making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,they are dump/ing it on.,they are dumping it on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,and he : no no [EU]!,and he no no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(hm) they are make/ing a new castle.,hm they are making a new castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,The end [+_bch].,The end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,they are go/ing on a walk.,they are going on a walk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,they are eat/ing too much[EW:many] thing/s.,they are eating too much things +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,he has a stomachache.,he has a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(hmm) his eye/s are flutter/ing.,hmm his eyes are fluttering +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,they are have/ing to work.,they are having to work +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,he is hold/ing his hand.,he is holding his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(he) (he) now he[!] has a stomachache.,he he now he has a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(uh) the little boy is go/ing home.,uh the little boy is going home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,The end [+_bch].,The end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(they are) (they are) (they are pull/ing this) they are pull/ing the wagon.,they are they are they are pulling this they are pulling the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,they are pull/ing the wagon?,they are pulling the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(They were) they found a balloon.,They were they found a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,they tie/ed it on the wagon.,they tied it on the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,it flied|fly[EW:flew] away.,it flied away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,and they were really mad.,and they were really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(then) then the man comed|come[EW:came] : with balloon/s.,then then the man comed with balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,he point/ed which one he want/ed [EU].,he pointed which one he wanted +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,but he had a stomachache.,but he had a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,here come/3s another one.,here comes another one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,and he said do you[!] want a balloon?,and he said do you want a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(he) and he runned|run[EW:ran] back.,he and he runned back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(um) he telled|tell[EW:told] him what was wrong.,um he telled him what was wrong +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(then) (and then) and then : they said we want a balloon.,then and then and then they said we want a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,(and he) and then they had a balloon.,and he and then they had a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/403.slt,The end [+_bch].,The end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,A giraffe and a[EW:an] elephant : are play/ing : basketball [~_/baesIkbal/].,A giraffe and a elephant are playing basketball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and the basketball fell in the water.,and the basketball fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and the giraffe swimmed|swim[EW:swam] to it : to get the basketball.,and the giraffe swimmed to it to get the basketball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and (the elephant) the giraffe[-:] : (hand it) hand|hand[EW:handed] it : to the elephant.,and the elephant the giraffe hand it hand it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and the elephant was surprise/ed.,and the elephant was surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,The giraffe and the elephant want/ed to jump in the water.,The giraffe and the elephant wanted to jump in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and (gir) elephant went first.,and gir elephant went first +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,then elephant was dance/ing.,then elephant was dancing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and the elephant got hurt.,and the elephant got hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,"and the giraffe help/ed her, the elephant.",and the giraffe helped her the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and the elephant cry/ed.,and the elephant cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and (the) the other elephant got a bandaid and put it on his owee.,and the the other elephant got a bandaid and put it on his owee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,the other elephant said no run/ing.,the other elephant said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,(The giraffe and the) the : giraffe and the elephant was[EW:were] happy.,The giraffe and the the giraffe and the elephant was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,the giraffe was play/ing with a[EW:an] airplane.,the giraffe was playing with a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and the elephant took the plane and play/*ed with it [EU].,and the elephant took the plane and play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and : elephant drop/ed it in the water.,and elephant dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and giraffe was mad : (uh) at the elephant.,and giraffe was mad uh at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,(and the other elephant is).,and the other elephant is +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,what [+_bch]?,what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,what is he do/ing [+_bch]?,what is he doing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,what is he doing?,what is he doing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,(he was do/ing) : (like[-:] he was).,he was doing like he was +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,what is happen/ing?,what is happening +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,elephant and giraffe was[EW:were] look/ing at the elephant.,elephant and giraffe was looking at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,(the ele) (the first ele) the girl elephant : look|look[EW:looked] at the airplane.,the ele the first ele the girl elephant look at the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and the other elephant try/ed to get it.,and the other elephant tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and the (uh) giraffe : elephant and the other elephant was sad.,and the uh giraffe elephant and the other elephant was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,the : third elephant : can get the airplane.,the third elephant can get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and (the elep) the other elephant get|get[EW:got] out the airplane.,and the elep the other elephant get out the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and the other third (ele) elephant give|give[EW:gave] it to the giraffe.,and the other third ele elephant give it to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and the giraffe said thank you.,and the giraffe said thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and giraffe was so happy.,and giraffe was so happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,bunny and a dog was[EW:were] make/ing a sandcastle.,bunny and a dog was making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and[-:] the bunny and the dog was[EW:were] make/ing a big (s) sandcastle.,and the bunny and the dog was making a big s sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and : rabbit : (w) was not : do/ing the right thing.,and rabbit w was not doing the right thing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and[-:] rabbit broke the sandcastle.,and rabbit broke the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and one part left.,and one part left +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and the dog was so[-:] : sad.,and the dog was so sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,the dog and the bunny was[EW:were] go/ing for a snack.,the dog and the bunny was going for a snack +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and the rabbit got a cake : cookie/s mustard : carrot/s : and a hot dog.,and the rabbit got a cake cookies mustard carrots and a hot dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and the bunny was too full.,and the bunny was too full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and the bunny was too[-:] stuff/ed.,and the bunny was too stuffed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and the dog said : are you a nurse?,and the dog said are you a nurse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,please help : my friend.,please help my friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,(here is) : here she is.,here is here she is +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,the nurse said : you are get/ing sick.,the nurse said you are getting sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and (a nurse said to go) the nurse said you have to go home and go to your bed and : sleep awhile.,and a nurse said to go the nurse said you have to go home and go to your bed and sleep awhile +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,(The dog w) (and the bunny were going to have[-:]) (to go for) (go) (want/ed) the dog want/ed to go to the park.,The dog w and the bunny were going to have to go for go wanted the dog wanted to go to the park +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,the bunny said how you got|get[EW:get] that balloon [EU]?,the bunny said how you got that balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,what is that [~_noises] [+_bch]?,what is that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,just somebody next door.,just somebody next door +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,(the bunny : put) (the bunny) the bunny (inti) untie/ed the balloon.,the bunny put the bunny the bunny inti untied the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and the balloon went away.,and the balloon went away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and : the dog : was too mad.,and the dog was too mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,the[-:] balloon man had (lo) : (fi) nine balloon/s.,the balloon man had lo fi nine balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,the balloon man said do you want a balloon?,the balloon man said do you want a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,yes please.,yes please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,balloon (five) : five cent/s please.,balloon five five cents please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and the bunny did not have any money : to buy a balloon.,and the bunny did not have any money to buy a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,and[-:] the nurse bunny said *do you have any money [EU]?,and the nurse bunny said you have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,I want to have a balloon.,I want to have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,it is okay.,it is okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,you can have a balloon.,you can have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,yes.,yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/733.slt,thank you nursey.,thank you nursey +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,There was this giraffe and this elephant : who want/ed to swim.,There was this giraffe and this elephant who wanted to swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,but the elephant : was[-:] play/ing ball.,but the elephant was playing ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and : the ball went into the water.,and the ball went into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and the elephant did not want[!] to go swim/ing.,and the elephant did not want to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the giraffe : went to get the ball.,the giraffe went to get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and the elephant was scare/ed.,and the elephant was scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the elephant : help/3s the giraffe out (with the balloon) with the ball .,the elephant helps the giraffe out with the balloon with the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and : the elephant was glad.,and the elephant was glad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and : the elephant : start/ed to play with the giraffe : with the ball .,and the elephant started to play with the giraffe with the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,The[-:] giraffe want/ed to (tea) teach the elephant how to swim.,The giraffe wanted to tea teach the elephant how to swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,but then the elephant just want/ed to jump in.,but then the elephant just wanted to jump in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the giraffe : said okay.,the giraffe said okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,but then the elephant start/ed to run.,but then the elephant started to run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and the giraffe : said you can not run.,and the giraffe said you can not run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the elephant slip/ed and : hit her knee : on the : side : of the pool .,the elephant slipped and hit her knee on the side of the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the giraffe saw a lifeguard and call/ed him over.,the giraffe saw a lifeguard and called him over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the lifeguard start/ed to heal : her.,the lifeguard started to heal her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,(it h) he put a bandaid on her knee.,it h he put a bandaid on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and : it hurt her.,and it hurt her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,then when she : got up : it did not hurt any more .,then when she got up it did not hurt any more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,then the lifeguard got mad and said can not you read the sign [EU]?,then the lifeguard got mad and said can not you read the sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,The elephant : said to the giraffe I want to play with the : airplane too!,The elephant said to the giraffe I want to play with the airplane too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the giraffe said no I want : to play by myself.,the giraffe said no I want to play by myself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the elephant just snatch/ed (the) : the airplane away.,the elephant just snatched the the airplane away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and the : giraffe got mad.,and the giraffe got mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the[-:] elephant accidentally drop/ed the : airplane in the pool.,the elephant accidentally dropped the airplane in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the giraffe got really mad.,the giraffe got really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and : she : did not mean it.,and she did not mean it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the elephant saw a lifeguard : and : ask/ed him to get it out.,the elephant saw a lifeguard and asked him to get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and then he said okay.,and then he said okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,he start/ed to reach for it.,he started to reach for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,but he could not reach it.,but he could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the giraffe start/ed to cry.,the giraffe started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,there was this other[!] elephant.,there was this other elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,she said I will[!] get it for you guy/s.,she said I will get it for you guys +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,(she) she went to get a net and start/ed to get the : airplane.,she she went to get a net and started to get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,she got the airplane and gave it to the giraffe.,she got the airplane and gave it to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the giraffe was happy .,the giraffe was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and : he was sorry for yell/ing at the elephant .,and he was sorry for yelling at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,There were these two animal/s : a bunny and : a[-:] dog : who decide/ed to play in the sandbox.,There were these two animals a bunny and a dog who decided to play in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,they start/ed to make a sandcastle.,they started to make a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the rabbit : pour/ed sand on : the sandcastle.,the rabbit poured sand on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and the dog got : disappoint/ed.,and the dog got disappointed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and then : the dog : made a pile.,and then the dog made a pile +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and the rabbit got mad.,and the rabbit got mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and then the dog : cry/ed.,and then the dog cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and then : the bunny : was : just mind/ing his own business.,and then the bunny was just minding his own business +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,there was this dog and this bunny : that decide/ed to go on a picnic.,there was this dog and this bunny that decided to go on a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the rabbit start/ed to eat : lot/s.,the rabbit started to eat lots +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and : the : dog : just look/ed at him.,and the dog just looked at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,then the rabbit laid down.,then the rabbit laid down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and : he burp/ed while the dog : was eat/ing.,and he burped while the dog was eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and then the bunny : start/ed to get sick.,and then the bunny started to get sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and the dog did not know what to do.,and the dog did not know what to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,(he ran) : (the) then they saw : a nurse.,he ran the then they saw a nurse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and the dog ran : to call the nurse.,and the dog ran to call the nurse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,he pull/ed the nurse to the bunny : and said : to the nurse that : the bunny was sick.,he pulled the nurse to the bunny and said to the nurse that the bunny was sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the doctor : check/ed the bunny : (an) to see what is wrong with him.,the doctor checked the bunny an to see what is wrong with him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,she gave him some medicine.,she gave him some medicine +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and the bunny was better.,and the bunny was better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and the dog was glad.,and the dog was glad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,There : was a dog and a bunny.,There was a dog and a bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and the dog had a wagon : with a balloon.,and the dog had a wagon with a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and the bunny came and said what : are you do/ing?,and the bunny came and said what are you doing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the dog said : I am go/ing to : go in the wagon and : go down the hill : and see what would happen.,the dog said I am going to go in the wagon and go down the hill and see what would happen +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the : bunny start/ed to untie the : balloon.,the bunny started to untie the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and the dog got mad.,and the dog got mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the bunny : let go of the balloon.,the bunny let go of the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and then they all scream/ed and try/ed to chase it.,and then they all screamed and tried to chase it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,(the) : the bunny just look/ed up (and) to see the balloon go[EW:going] away.,the the bunny just looked up and to see the balloon go away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and the dog got really mad.,and the dog got really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the bunny saw a man : with lot/s of balloon/s.,the bunny saw a man with lots of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and he : want/ed to get one for the dog.,and he wanted to get one for the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,he ask/ed the man for one balloon : and brought it to the dog.,he asked the man for one balloon and brought it to the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the man said the balloon/s were for five cent/s.,the man said the balloons were for five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and (he) the bunny said that he had no money left.,and he the bunny said that he had no money left +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,then the dog came : and ask/ed what he was do/ing.,then the dog came and asked what he was doing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the bunny : said that he want/ed to get another balloon.,the bunny said that he wanted to get another balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and then he saw : this[-:] : other : bunny : that look/ed : like : (a) : (a) : a banker.,and then he saw this other bunny that looked like a a a banker +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,(he) (she) (he) the bunny told the other bunny that : he had no money to buy a balloon for his friend.,he she he the bunny told the other bunny that he had no money to buy a balloon for his friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,the woman gave : ten cent/s to the man to buy two balloon/s for each of them.,the woman gave ten cents to the man to buy two balloons for each of them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/866.slt,and then : the bunny said sorry to the dog.,and then the bunny said sorry to the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,(um) one day I went over to my friend.,um one day I went over to my friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,(um) she was play/ing with her ball : (ll) [~_continuation_of__final_word].,um she was playing with her ball ll +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,the ball fell into the pool beside the place where she was play/ing.,the ball fell into the pool beside the place where she was playing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,so I swam over (er) [~_continuation_of_over] and got the ball.,so I swam over er and got the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,I swam back to her and gave her the ball : (ll) [~_continuation__of_final_word].,I swam back to her and gave her the ball ll +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,she was happy.,she was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,(hmm) : one day me and my friend were by the pool.,hmm one day me and my friend were by the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,: she want/ed to jump off the diving board.,she wanted to jump off the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,so she ran over to it.,so she ran over to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,while she was run/ing (she fff) she slip/ed and hurt her knee : (ee) [~_continuation_of_final_word].,while she was running she fff she slipped and hurt her knee ee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,(yu) I call/ed the lifeguard.,yu I called the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,he put a bandaid on it (iii) [~_continuation_of_final_word].,he put a bandaid on it iii +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,then she felt much better.,then she felt much better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,he told her not to run : because it says no run/ing.,he told her not to run because it says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,there is a sign right there.,there is a sign right there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,one day I was play/ing with my airplane with my friend by the pool : (ll) [~_continuation_of_last_word].,one day I was playing with my airplane with my friend by the pool ll +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,she saw the airplane.,she saw the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,and then she took it from me.,and then she took it from me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,(an) and she drop/ed it in the pool.,an and she dropped it in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,I was angry with her.,I was angry with her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,(she) he call/ed the lifeguard (rd rd) [~_continuation_of__last_word].,she he called the lifeguard rd rd +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,she show/ed him the plane that was in the pool.,she showed him the plane that was in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,he could not reach it.,he could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,: then I start/ed cry/ing.,then I started crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,(nn) then a lady came over with a net.,nn then a lady came over with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,she got the airplane.,she got the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,she gave it back to me.,she gave it back to me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,then I was happy.,then I was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,(um um) once I was play/ing in the sandbox with my friend.,um um once I was playing in the sandbox with my friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,and we were play/ing with our shovel/s : (ulz).,and we were playing with our shovels ulz +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,we dug up lot/s of sand (nd) and put them in pail/s and made a sandcastle (ll).,we dug up lots of sand nd and put them in pails and made a sandcastle ll +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,(we) we dump/ed sand over : the sandcastle.,we we dumped sand over the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,the sandcastle : broke.,the sandcastle broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,and we had a heap of sand : (nd).,and we had a heap of sand nd +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,and then my friend start/ed : cry/ing because I dump/ed the sand on it : because he want/ed to keep the sandcastle.,and then my friend started crying because I dumped the sand on it because he wanted to keep the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,I went on a picnic with my friend one day.,I went on a picnic with my friend one day +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,and[-:] we had lot/s to eat.,and we had lots to eat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,(um) : I had a lot in my basket.,um I had a lot in my basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,my friend had a little bit.,my friend had a little bit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,I ate so much that I got a tummyache.,I ate so much that I got a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,(it) : it hurted|hurt[EW:hurt] so bad.,it it hurted so bad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,and : my friend told the doctor (er).,and my friend told the doctor er +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,(and) (and) and the doctor made me feel much better.,and and and the doctor made me feel much better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,(wer) : and then she took me home.,wer and then she took me home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,and my friend : ate the rest of her part of the picnic.,and my friend ate the rest of her part of the picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,one day I saw my friend.,one day I saw my friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,she had a wagon with a balloon tie/ed to it.,she had a wagon with a balloon tied to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,I came over.,I came over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,and (she) he show/ed me the balloon.,and she he showed me the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,(um) but then I untie/ed it.,um but then I untied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,and it float/ed away.,and it floated away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,my friend was mad.,my friend was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,(uh) but then I saw the balloon seller.,uh but then I saw the balloon seller +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,(uh) and I ask/ed for one balloon.,uh and I asked for one balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,(um) and : he (ssa) told me that the balloon/s were five cent/s : (ss).,um and he ssa told me that the balloons were five cents ss +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,then[-:] my friend came over.,then my friend came over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,and[-:] [~_let_me_see] she had five cent/s.,and she had five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,then we saw[-:] : the doctor.,then we saw the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,: and then she[!] came over.,and then she came over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,and she gave us five cent/s.,and she gave us five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/708.slt,and then she bought us each a balloon.,and then she bought us each a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,One day : a : giraffe saw : a[Ew:an] elephant : play/ing : with some ball/s.,One day a giraffe saw a elephant playing with some balls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,the giraffe : was play/ing with one.,the giraffe was playing with one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,but (the) (it f) (while) the ball fell down.,but the it f while the ball fell down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and : (the) : Missus Elephant (felt : ve) felt sad.,and the Missus Elephant felt ve felt sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and : then : Mister Giraffe : went into the swimming pool : and was get/ing : the ball [EU].,and then Mister Giraffe went into the swimming pool and was getting the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,the giraffe gave the ball to : Missus Elephant.,the giraffe gave the ball to Missus Elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,Missus Elephant likeded|like[EW:liked] Mister Giraffe.,Missus Elephant likeded Mister Giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,One day Mister Giraffe want/ed to go on the swimming pool [EU].,One day Mister Giraffe wanted to go on the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,also : Missus Elephant [EU].,also Missus Elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,Missus Elephant said let us go in the swimming pool.,Missus Elephant said let us go in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,Mister Elephant said okay.,Mister Elephant said okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,Missus Elephant said yay[!].,Missus Elephant said yay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and Mister : Giraffe said yay too.,and Mister Giraffe said yay too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,(m) Missus Giraffe fell down and hurt her knee.,m Missus Giraffe fell down and hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and : Mister Giraffe told the lifeguard.,and Mister Giraffe told the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and : then the lifeguard put : a bandaid on Missus : Giraffe/z knee[!].,and then the lifeguard put a bandaid on Missus Giraffe's knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,"Missus Giraffe was happy, also the lifeguard (and Mister) and Mister : Giraffe.",Missus Giraffe was happy also the lifeguard and Mister and Mister Giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,the lifeguard was very mad : about no run/ing.,the lifeguard was very mad about no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,One day (Mister Giraffe) (Missus Elephant) Missus Elephant want/ed to play with Mister Giraffe.,One day Mister Giraffe Missus Elephant Missus Elephant wanted to play with Mister Giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,then : Mister Giraffe play/ed with his airplane.,then Mister Giraffe played with his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and he pretend/ed it was fly/ing.,and he pretended it was flying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and then : Giraffe was : play/ing with it.,and then Giraffe was playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and then : Missus Elephant took it away : and was[!] play/ing with it.,and then Missus Elephant took it away and was playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and then : (she) they xxx xxx.,and then she they x x +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,it fell down in the swimming pool.,it fell down in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and Mister Giraffe was really mad.,and Mister Giraffe was really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,also Missus : Elephant said oops [~_!].,also Missus Elephant said oops +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,the lifeguard was very angry.,the lifeguard was very angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,(Missus) Missus Elephant said : he brought a toy.,Missus Missus Elephant said he brought a toy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and then Mister Elephant was try/ing to get it.,and then Mister Elephant was trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,(then he) then : Mister Giraffe was cry/ing.,then he then Mister Giraffe was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and then Missus[-:] Lifeguard (had a) was hold/ing a capture : and caught the airplane.,and then Missus Lifeguard had a was holding a capture and caught the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and then : Missus Elephant gave the airplane to : Mister Giraffe.,and then Missus Elephant gave the airplane to Mister Giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and then : Mister Giraffe was really happy.,and then Mister Giraffe was really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,One day Mister Rabbit : want/ed to play with Missus : Rabbit.,One day Mister Rabbit wanted to play with Missus Rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,Missus Rabbit was (in the sand) (the sand) in the sand.,Missus Rabbit was in the sand the sand in the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,Mister Rabbit and Missus : Rabbit (was[EW:were] play/ing) was[EW:were] make/ing a sandcastle.,Mister Rabbit and Missus Rabbit was playing was making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,Mister (s) Rabbit was put/ing lot/s of sand on the sandcastle.,Mister s Rabbit was putting lots of sand on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and : Missus Rabbit was very : embarrass/ed.,and Missus Rabbit was very embarrassed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and then it fell down.,and then it fell down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,(then) (wu) then Mister : Rabbit : was very (s) : upset about he did that [EU].,then wu then Mister Rabbit was very s upset about he did that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and Missus Rabbit found another piece.,and Missus Rabbit found another piece +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,Missus Rabbit was : cry/ing (because it) (because Mister Rabbit) : because Mister Rabbit put (sand : uh) lot/s of sand in the sandcastle.,Missus Rabbit was crying because it because Mister Rabbit because Mister Rabbit put sand uh lots of sand in the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,The end [+_bch].,The end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,One day Missus Rabbit (s) (was in ha) was look/ing for strawberrie/s.,One day Missus Rabbit s was in ha was looking for strawberries +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,also Mister Rabbit [EU].,also Mister Rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,(Missus Ra) Mister Rabbit (ate : a) (ate a[-:]) ate a carrot.,Missus Ra Mister Rabbit ate a ate a ate a carrot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and then : he[-:] : (w) was sweat/ing.,and then he w was sweating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,then Mister Rabbit was very full because he ate all of his : food.,then Mister Rabbit was very full because he ate all of his food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,(Missus Rabbit :) [~_I_mean] Mister Rabbit (was very very) had a tummyache.,Missus Rabbit Mister Rabbit was very very had a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,(Mis) : Doctor Rabbit came over.,Mis Doctor Rabbit came over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and Missus Rabbit said my brother has a tummyache.,and Missus Rabbit said my brother has a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and then : Missus Rabbit was pull/ing : the doctor.,and then Missus Rabbit was pulling the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,the doctor said : you better not eat more food.,the doctor said you better not eat more food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and then Mister Doctor took Mister Rabbit : to the doctor/z.,and then Mister Doctor took Mister Rabbit to the doctor's +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,One day : Mister Rabbit (sa) said hi.,One day Mister Rabbit sa said hi +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,Missus Rabbit said hi too.,Missus Rabbit said hi too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,Mister Rabbit want/ed to have the balloon.,Mister Rabbit wanted to have the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,Missus Rabbit : did not want him to : pop[!] it.,Missus Rabbit did not want him to pop it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,then : Missus Rabbit said do not do that.,then Missus Rabbit said do not do that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and then[!] Mister Rabbit was hold/ing it.,and then Mister Rabbit was holding it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and then he let go.,and then he let go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and then the balloon (fell : up) : went up.,and then the balloon fell up went up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,then Missus Rabbit was so angry.,then Missus Rabbit was so angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,then (the) the balloon man had (another) (another) : lot/s of balloon/s.,then the the balloon man had another another lots of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and then Missus Rabbit was happy.,and then Missus Rabbit was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and then : Missus[-:] Rabbit was get/ing one.,and then Missus Rabbit was getting one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,then (this) (the mis) : the rabbit said you can not have one.,then this the mis the rabbit said you can not have one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and then (he gave the one) he did not gave the one to (the) : Mister Rabbit or Missus Rabbit [EU].,and then he gave the one he did not gave the one to the Mister Rabbit or Missus Rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,(doctor ra) doctor Rabbit : (was uh) was walk/ing.,doctor ra doctor Rabbit was uh was walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and then Mister Rabbit (was : s) was (get/ing a) (a) get/ing : her (because) to let her to get the balloon [EU].,and then Mister Rabbit was s was getting a a getting her because to let her to get the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and then : she said (uh : sh) Mister Rabbit said (the s) the balloon : rabbit [EU].,and then she said uh sh Mister Rabbit said the s the balloon rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and then : Missus Rabbit : gave[!] the balloon to two of the (ki) kid/s.,and then Missus Rabbit gave the balloon to two of the ki kids +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,and then : Mister[-:] Rabbit and Missus : Rabbit got a balloon.,and then Mister Rabbit and Missus Rabbit got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/617.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,giraffe sawed|see[EW:saw] elephant (with) with her ball!,giraffe sawed elephant with with her ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,hey that is cool.,hey that is cool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,can I try it?,can I try it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,sure!,sure +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,but do not get in the water.,but do not get in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,all right.,all right +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,I throwed|throw[EW:threw] it in the water said elephant.,I throwed it in the water said elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,oh my gosh I will get it : for you elephant said giraffe.,oh my gosh I will get it for you elephant said giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,: (I) I almost got it.,I I almost got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,( I am) I can not watch.,I am I can not watch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,I got it.,I got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,I got it [~_said_twice_for_emphasis]!,I got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,and he was keep/ing on go/ing [EU].,and he was keeping on going +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,I got it!,I got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,here.,here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,there elephant I got it for you.,there elephant I got it for you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,thank/s.,thanks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,thank you.,thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,thank you giraffe.,thank you giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,[~_hee] I am wet[?] okay?,I am wet okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,all right.,all right +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,byebye.,byebye +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,see you.,see you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,giraffe and elephant were go/ing swim/ing.,giraffe and elephant were going swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,(and they saw the pool) and they saw a pool [~_I_mean].,and they saw the pool and they saw a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,: (I will go jump in the p) I will go on the[-:] : jump/ing board.,I will go jump in the p I will go on the jumping board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,and I will go[-:] in the water[-:] and splash okay?,and I will go in the water and splash okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,all right : said giraffe.,all right said giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,: do not run!,do not run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,walk!,walk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,(all right I[-:]) okay I will walk.,all right I okay I will walk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,: ow I run.,ow I run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,now I : hurt my : knee!,now I hurt my knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,ouch.,ouch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,ow!,ow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,I am come/ing!,I am coming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,do not worry!,do not worry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,: the lifeguard is come/ing now.,the lifeguard is coming now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,: she get/3s (hur[-:]) (hurt uh) : *a bruise there on her knee [EU].,she gets hur hurt uh bruise there on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,and : lifeguard [+..] [EU].,and lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,: there you go child.,there you go child +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,now you can walk.,now you can walk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,you have to walk safe.,you have to walk safe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,do not run.,do not run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,or you might slip : and hurt you[EW:yourself].,or you might slip and hurt you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,so go play along.,so go play along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,: no run/ing allow/ed!,no running allowed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,see the sign?,see the sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,yeah.,yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,go[?].,go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,okay.,okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,let us go swim/ing okay?,let us go swimming okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,all right let us go!,all right let us go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,grab a[EW:an] (b) airplane.,grab a b airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,let us go!,let us go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,: because I do not want to go in the pool with my airplane.,because I do not want to go in the pool with my airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,so let us go!,so let us go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,[~_child_makes_airplane_noises] that is a good toy airplane.,that is a good toy airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,thank/s.,thanks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,I got it from yesterday [~_child_makes_airplane_noises].,I got it from yesterday +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,hey can I try?,hey can I try +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,sure!,sure +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,be careful!,be careful +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,[~_child_makes_airplane_noises] cool!,cool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,[~_child_makes_airplane_noises] : (whuh) whoopsadaisy I drop/ed it in the water.,whuh whoopsadaisy I dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,so you have to get it.,so you have to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,all right.,all right +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,here I go.,here I go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,: I can not!,I can not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,you did that [~_makes_grrr_sound]!,you did that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,I am mad at you!,I am mad at you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,whoopsadaisy I am sorry.,whoopsadaisy I am sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,: (hmm) a toy huh *is in that pool [EU].,hmm a toy huh in that pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,whose is it said the lifeguard?,whose is it said the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,: it was mine!,it was mine +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,and she drop/ed it in!,and she dropped it in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,(I) you was[EW:were] just play/ing with it first.,I you was just playing with it first +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,(and I) (I) then (I just uhm) : (may) (I just) I was try/ing to make it fly.,and I I then I just uhm may I just I was trying to make it fly +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,but it falled|fall[EW:fell] in the water (sai) said elephant talk/ing to the lifeguard.,but it falled in the water sai said elephant talking to the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,: the lifeguard was get/ing it.,the lifeguard was getting it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,(and he is) and he is go/ing to [~_gonna] get it.,and he is and he is going to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,: oh I can not get it.,oh I can not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,oh my gosh I am sad now.,oh my gosh I am sad now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,I am sorry : giraffe.,I am sorry giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,: [~_makes_a_sound] (then a woman go) and then a woman was here.,then a woman go and then a woman was here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,and she got a net to catch it.,and she got a net to catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,(huh) the three of them said huh?,huh the three of them said huh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,I got it!,I got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,[~_child_pretends_to_cry] I am cry/ing.,I am crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,now it is go/ing to [~_gonna] be broken said giraffe.,now it is going to be broken said giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,here.,here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,(have) thank you : said giraffe.,have thank you said giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,(hm[-:] ) I want you to be back.,hm I want you to be back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,( I am s) I am happy too.,I am s I am happy too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,[~_makes_sound_effects_'ooh_ahh'] that is okay.,that is okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,I will keep *an eye on it forever ever and ever [EU].,I will keep eye on it forever ever and ever +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,one rabbit and (uh[-:]) one[-:] : mouse (: were b) [EU].,one rabbit and uh one mouse were b +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,(he) the rabbit want/ed to help the mouse.,he the rabbit wanted to help the mouse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,she made : a : sandcastle[!] in her backyard : in her sandbox.,she made a sandcastle in her backyard in her sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,and he help/ed the : mouse build it.,and he helped the mouse build it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,and he put sand on it.,and he put sand on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,and she was gee [EU].,and she was gee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,and then she said [~_makes_gasping_sound]!,and then she said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,: and he said uhoh I am in big trouble.,and he said uhoh I am in big trouble +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,and she was sad.,and she was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,she cry/ed.,she cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,and she was do/ing it all by herself.,and she was doing it all by herself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,(and he) and the rabbit (was watch) was look/ing at hisself[EW:himself].,and he and the rabbit was watch was looking at hisself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,(uh) the puppy : was go/ing for a picnic.,uh the puppy was going for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,and the rabbit was go/ing for the picnic too.,and the rabbit was going for the picnic too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,and they said hi.,and they said hi +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,and they eat|eat[EW:ate] and ate and ate : and ate (and he) and[-:] ate.,and they eat and ate and ate and ate and he and ate +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,(and they a) and the rabbit was full.,and they a and the rabbit was full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,but : the dog was keep/ing on eat/ing [EU].,but the dog was keeping on eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,he was worry/ed and sick : but not the dog.,he was worried and sick but not the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,she was not sick.,she was not sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,she call/ed for the nurse : who was come/ing by.,she called for the nurse who was coming by +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,and she said (doc) nurse nurse (um) my friend bunny is sick.,and she said doc nurse nurse um my friend bunny is sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,and he ate too much food.,and he ate too much food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,come come come [~_repeated_for_emphasis] : right now!,come come come right now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,he is feel/ing sick!,he is feeling sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,all right I will come.,all right I will come +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,[~_child_making__sounds_'aaahh'] and he woked|woke[EW:woke] up.,and he woked up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,now : you should never eat too much food!,now you should never eat too much food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,thank/s : because I like that.,thanks because I like that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,I am not sick any more.,I am not sick any more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,(she had a ga) (a : hm hm) : she had a[-:] wheel (barre) barrel with a balloon on it.,she had a ga a hm hm she had a wheel barre barrel with a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,she was walk/ing.,she was walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,then she sawed|saw[EW:saw] (um) : bunny : again.,then she sawed um bunny again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,he said cool!,he said cool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,cool : puppy.,cool puppy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,that is cool.,that is cool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,where do you get it?,where do you get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,(sh) she said no do not take it off please!,sh she said no do not take it off please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,(oka) why : said (ra) bunny?,oka why said ra bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,he tie/ed it out [EU].,he tied it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,then it flied|fly[EW:flew] up into the sky.,then it flied up into the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,and she was worry/ed.,and she was worried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,and he was try/ing to get it.,and he was trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,and they were try/ing to get it.,and they were trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,and she got mad at the bunny.,and she got mad at the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,[~_angry_voice] you tie/ed it out!,you tied it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,[~_angry_voice] and now I am angry at you!,and now I am angry at you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,I am go/ing to [~_gonna] beat you up.,I am going to beat you up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,: ah there is one.,ah there is one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,hey I can get one for you.,hey I can get one for you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,let me get one : okay?,let me get one okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,and (I will tie it back) I will tie one back on that.,and I will tie it back I will tie one back on that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,okay?,okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,[~_makes_sound_'hhrr'] she was still mad.,she was still mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,: hey can I have that for my friend please?,hey can I have that for my friend please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,sure said the man.,sure said the man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,it is : twenty buck/s.,it is twenty bucks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,all right.,all right +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,I have twenty buck/s.,I have twenty bucks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,bye.,bye +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,five cent/s.,five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,I do not have five cent/s.,I do not have five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,so long my rabbit[?] friend.,so long my rabbit friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,: I got[EW:have] to [~_gotta] ask the nurse.,I got to ask the nurse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,I got[EW:have] to [~_gotta] ask her (so she can) does she have (one) : five cent/s.,I got to ask her so she can does she have one five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,do you have five cent/s nurse?,do you have five cents nurse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,I think so : said the nurse.,I think so said the nurse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,five cent/s.,five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,thank you madam.,thank you madam +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,yay!,yay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,[~_child_makes_a_sound_'whee'] and they were happy : at last.,and they were happy at last +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/735.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,(um) an elephant is dribble/ing a ball.,um an elephant is dribbling a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and a (hh) giraffe or horse is watch/ing.,and a hh giraffe or horse is watching +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and[-:] : the ball[-:] go/3s into the water.,and the ball goes into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and the horse [~_laughing] or (g) giraffe (um) swim/3s to get it.,and the horse or g giraffe um swims to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and he (hands it) hand/3s it back to the : elephant.,and he hands it hands it back to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and[-:] the elephant is happy [~_laughs].,and the elephant is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,(um) the elephant and I guess the giraffe are look/ing into the : pool.,um the elephant and I guess the giraffe are looking into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and the elephant start/3s run/ing : on the dock.,and the elephant starts running on the dock +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and the elephant slip/3s : and hit/3s her knee.,and the elephant slips and hits her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and the lifeguard come/3s run/ing over [~_laughs].,and the lifeguard comes running over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and he put/3s a bandaid on it.,and he puts a bandaid on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and then they go to a bench.,and then they go to a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and then the lifeguard point/3s her off [~_laughs] [EU].,and then the lifeguard points her off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,an elephant and (giraffe) the giraffe (um) are talk/ing.,an elephant and giraffe the giraffe um are talking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and giraffe pick/3s up a plane and start/3s play/ing with it.,and giraffe picks up a plane and starts playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and[-:] the elephant take/3s it away.,and the elephant takes it away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,(and it gets) : (and it) and the elephant drop/ed it into the water by accident.,and it gets and it and the elephant dropped it into the water by accident +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and the giraffe is mad at the elephant.,and the giraffe is mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and the lifeguard come/3s.,and the lifeguard comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and (the li) (lifegua) the lifeguard and the elephant talk.,and the li lifegua the lifeguard and the elephant talk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,he try/3s to reach for it.,he tries to reach for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,but he can not reach it.,but he can not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and then the giraffe cry/3s.,and then the giraffe cries +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and then : (um) another lifeguard come/3s with a net.,and then um another lifeguard comes with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and : she[-:] scoop/3s (it) up (with) the airplane with the net.,and she scoops it up with the airplane with the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and she hand/3s it (pac) back to the : giraffe.,and she hands it pac back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,(um[-:]) : a rabbit and a dog are play/ing in the sand.,um a rabbit and a dog are playing in the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,(uh) : and rabbit is help/ing the dog make a sandcastle.,uh and rabbit is helping the dog make a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and then the rabbit : by accident pour/3s all the sand over the castle.,and then the rabbit by accident pours all the sand over the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and then the rabbit (uh : lo) [~_laughs] look/3s sorry.,and then the rabbit uh lo looks sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,(uh) : the rabbit and the dog are have/ing a picnic.,uh the rabbit and the dog are having a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and the rabbit start/3s stuff/ing his[-:] face [~_laughs].,and the rabbit starts stuffing his face +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and[-:] : the rabbit burp/3s [~_laughs].,and the rabbit burps +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and he get/3s sick.,and he gets sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and there is a doctor run/ing by.,and there is a doctor running by +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and the dog : go/3s to get him.,and the dog goes to get him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and the dog pull/3s him towards the sick rabbit.,and the dog pulls him towards the sick rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and the doctor[-:] give|give[EW:gave] the rabbit medicine.,and the doctor give the rabbit medicine +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,(um) the dog is push/ing (a c) a[-:] cart with a balloon on it.,um the dog is pushing a c a cart with a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and the rabbit come/3s run/ing up to her.,and the rabbit comes running up to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and the rabbit look/3s at : the balloon.,and the rabbit looks at the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and he start/3s to untie it.,and he starts to untie it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and by accident he let it go.,and by accident he let it go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and then the dog is really mad at him.,and then the dog is really mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and then he sees a (uh) person sell/ing balloon/s.,and then he sees a uh person selling balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,he run/3s up and point/3s to a balloon.,he runs up and points to a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,but he do/3s not have five cent/s.,but he does not have five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and then they[-:] look sad.,and then they look sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and then they run up to a person : and ask : if he could buy her a balloon.,and then they run up to a person and ask if he could buy her a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and she go/3s up to the guy : and buy/3s two balloon/s.,and she goes up to the guy and buys two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/857.slt,and they both have their own balloon/s now.,and they both have their own balloons now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,[~_kay] (once upon a time) [~_no] long long ago (in) in a deep deep forest there live/ed : a giraffe and (a) an elephant.,once upon a time long long ago in in a deep deep forest there lived a giraffe and a an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,they were : very[!] good friend/s.,they were very good friends +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and so then one day they want/ed to go swim/ing.,and so then one day they wanted to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,the giraffe/z name was Timmy.,the giraffe's name was Timmy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,the elephant/z name was : Veronica.,the elephant's name was Veronica +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and so then : Timmy went *to trying[EW:try] to swimming[EW:swim] in a pool [EU].,and so then Timmy went trying to swimming in a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,but (he) he was try/ing so hard to get the ball that they were go/ing to play [EU].,but he he was trying so hard to get the ball that they were going to play +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and Veronica was shut/ing her eye/s.,and Veronica was shutting her eyes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,then Timmy got the ball.,then Timmy got the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and she gave it to Veronica.,and she gave it to Veronica +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and then they were both very[!] better[EW:good][!] friends.,and then they were both very better friends +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and Timmy was soak/ing wet.,and Timmy was soaking wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(once upon a) okay (then) okay (it is on) (it is) [~_like_let_(u)s_say] it is a tap broke [~_okay] [EU].,once upon a okay then okay it is on it is it is a tap broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and then the next day they went there again.,and then the next day they went there again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(and[-:] : then) : and then : Veronica want/ed to go swim/ing.,and then and then Veronica wanted to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,so she (jump/ed) hop/ed in.,so she jumped hopped in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,but she slip/ed.,but she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and she is like whoa[-:]!,and she is like whoa +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and Timmy is like run/ing after her.,and Timmy is like running after her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,then she fell and hit her knee and got a big big owie.,then she fell and hit her knee and got a big big owie +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,then she start/ed to cry because it really hurt.,then she started to cry because it really hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,she got a huge scratch.,she got a huge scratch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and then : the lifeguard came.,and then the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and the lifeguard was an elephant.,and the lifeguard was an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(his name was) : (um) his name was : Kyle.,his name was um his name was Kyle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and he want/ed to help her.,and he wanted to help her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,so he got out his safety[-:] box.,so he got out his safety box +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,so then he (g) took out the bandage and got it out.,so then he g took out the bandage and got it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and then : Veronica was sit/ing on the bench.,and then Veronica was sitting on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and then it was heal/ing.,and then it was healing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(so then : she) and then : the lifeguard said : (something really : like) no run/ing.,so then she and then the lifeguard said something really like no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and she was run/ing again.,and she was running again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(then) : and then (on the third chapter they are) Timmy and Veronica[-:] on the third day came to the swimming pool again.,then and then on the third chapter they are Timmy and Veronica on the third day came to the swimming pool again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,this time Timmy brought a little (um) : toy plane.,this time Timmy brought a little um toy plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(and it) and it could not go in the water.,and it and it could not go in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and then : Veronica was so happy.,and then Veronica was so happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(and so she) and then Timmy letted|let[EW:let] her borrow it to play with for a little while.,and so she and then Timmy letted her borrow it to play with for a little while +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(but) : and then she want/ed to see it first : fly.,but and then she wanted to see it first fly +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(and then he made it) (and then he) and then he like went [~_makes_sound_'nerrrooo']!,and then he made it and then he and then he like went +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(and then) : (and then he : accidentally) : and then he accidentally : like : threw it over to Monica.,and then and then he accidentally and then he accidentally like threw it over to Monica +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and then (mo) Veronica want/ed to : see it.,and then mo Veronica wanted to see it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(so he let) and he is like what !,so he let and he is like what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,so then Veronica want/ed to try.,so then Veronica wanted to try +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,but she accidentally threw it into the water.,but she accidentally threw it into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,then Timmy got very[!] mad.,then Timmy got very mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,he was so mad that he want/ed to : like : break up with her.,he was so mad that he wanted to like break up with her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and she was like oh[-:] !,and she was like oh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,but then the lifeguard (s) : look/ed.,but then the lifeguard s looked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(and he is like) : and Timmy is look/ing down.,and he is like and Timmy is looking down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(and) and Veronica is (like) like go/ing back from the lifeguard because he was on the other side of Timmy.,and and Veronica is like like going back from the lifeguard because he was on the other side of Timmy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and she was : (beside) in the middle of both of them.,and she was beside in the middle of both of them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and he is like what is go/ing on here ?,and he is like what is going on here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and Timmy is like sad.,and Timmy is like sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,but (then he) : then Veronica explaine/ed [~_high_pitched_voice] I was just go/ing to see !,but then he then Veronica explaineed I was just going to see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,[~_high_pitched_voice] and Timmy let me!,and Timmy let me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,[~_high_pitched_voice] but : I accidentally threw it into the water!,but I accidentally threw it into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,[~_high_pitched_voice] and it is not suppose/ed to!,and it is not supposed to +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,then the : lifeguard try/ed to reach it.,then the lifeguard tried to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(and he) (and then) : (and then he finally) and then he finally : try/ed[-:].,and he and then and then he finally and then he finally tried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and he almost fell in.,and he almost fell in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and so : he almost gave up.,and so he almost gave up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,but then Timmy start/ed to go on his knee/s and cry.,but then Timmy started to go on his knees and cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,but then : (uh : Veronica/z mom) [~_or_no] the lifeguard/z : wife came.,but then uh Veronica's mom the lifeguard's wife came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and she had a net with her.,and she had a net with her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(she) and then : she scoop/ed : out the plane.,she and then she scooped out the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and then she gave it back to Timmy.,and then she gave it back to Timmy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and he was so happy (that he would not) that he still would be Veronica/z friend.,and he was so happy that he would not that he still would be Veronica's friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and then he hug/ed her.,and then he hugged her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and Veronica did not want to catch it any more.,and Veronica did not want to catch it any more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,one day[-:] there was a : little rabbit and a little dog.,one day there was a little rabbit and a little dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,they were good friend/s.,they were good friends +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,the dog was a girl.,the dog was a girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and her name was Jennifer.,and her name was Jennifer +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,the boy rabbit was Tim.,the boy rabbit was Tim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and : he was : a boy.,and he was a boy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and so then one day they want/ed to go in (Jen) Jennifer/z : (play : um) : sand place.,and so then one day they wanted to go in Jen Jennifer's play um sand place +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,they made a castle.,they made a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,they made (uh) : lot/s of stuff.,they made uh lots of stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(they dug) (they made) like probably soup[-:] they made out of a barrel [EU].,they dug they made like probably soup they made out of a barrel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and they made lots of stuff like a castle.,and they made lots of stuff like a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and they probably even made little : people.,and they probably even made little people +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and so then one day : Tim got a little excite/ed because they were so happy.,and so then one day Tim got a little excited because they were so happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and so then he pour/ed (his) his (bottle of) : bottle of sand onto (Veronic) [~_I_mean] Jennifer/z : castle.,and so then he poured his his bottle of bottle of sand onto Veronic Jennifer's castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(uh) and then : all that was left was a pile : and then a little steeple (with) (with um) : with a little bit of sand on it.,uh and then all that was left was a pile and then a little steeple with with um with a little bit of sand on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and it look/ed like a (poin) finger point/ing out of the : thing.,and it looked like a poin finger pointing out of the thing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(and) : and Timmy was so sorry.,and and Timmy was so sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and he is like almost cry/ing.,and he is like almost crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and Veronica/z like oh[-:] !,and Veronica's like oh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and then Veronica went cry/ing again.,and then Veronica went crying again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and then : Timmy is like huh[-:]!,and then Timmy is like huh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and he never did that again.,and he never did that again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(one day) and then the next day they went to pick berry/s[!].,one day and then the next day they went to pick berries +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and so then they went along a nice good summer path.,and so then they went along a nice good summer path +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(and then : one day they) and then they had also a picnic : in one basket and : like other kind of food in a other.,and then one day they and then they had also a picnic in one basket and like other kind of food in a other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and so they also found[!] some berry/s and food.,and so they also found some berries and food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,so they made a picnic!,so they made a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(and) : and (like) : the dog was like just take/ing stuff out.,and and like the dog was like just taking stuff out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(and) : (and) : and the rabbit was just like gobble/ing up the carrot/s and all.,and and and the rabbit was just like gobbling up the carrots and all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,so then the rabbit soon ate all the stuff except for like a piece of bread.,so then the rabbit soon ate all the stuff except for like a piece of bread +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and the poor dog only got a little piece (of bread) of a sandwich.,and the poor dog only got a little piece of bread of a sandwich +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,but then : the rabbit Jennifer she got a very[!] bad tummyache.,but then the rabbit Jennifer she got a very bad tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,so she is like [~_makes_moaning_sounds].,so she is like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(but then) : but then Tim race/ed[!] up to Jennifer/z Mom and said your daughter has got a cold!,but then but then Tim raced up to Jennifer's Mom and said your daughter has got a cold +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,your daughter has got a cold!,your daughter has got a cold +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and she is like oh dear!,and she is like oh dear +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and then : he pull/ed[-:] her until she went : to (Jenn) Jennifer.,and then he pulled her until she went to Jenn Jennifer +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and then she check/ed : Jennifer.,and then she checked Jennifer +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and she said you have got a stomachache.,and she said you have got a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,you have got to go home and sleep.,you have got to go home and sleep +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and so then : Jennifer was walk/ing home.,and so then Jennifer was walking home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and she became happy : to get a rest.,and she became happy to get a rest +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and same with Timmy.,and same with Timmy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,then (the next day) on the third day they went along a nice snowy path.,then the next day on the third day they went along a nice snowy path +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and they were go/ing to (give) like go and like just travel.,and they were going to give like go and like just travel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and if they saw some (like) like something they would like hook it onto to the wheel/s.,and if they saw some like like something they would like hook it onto to the wheels +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,or if it was something that you could not hook on (you would) they would just put it (on : to) into the barrel.,or if it was something that you could not hook on you would they would just put it on to into the barrel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and they had a balloon.,and they had a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(and then : Tim want/ed) [~_I_mean] and then (um) : Tim [~_yeah] he want/ed to see it!,and then Tim wanted and then um Tim he wanted to see it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,so then (he) he grab/ed the balloon.,so then he he grabbed the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and : (Veroni) [~_I_mean] Jennifer would let him.,and Veroni Jennifer would let him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,so then : (he[-:]) (he let) she let him grab it.,so then he he let she let him grab it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and then : (Veronica) Jennifer (she) : she let Tim : like : go and : (t) like see it and : hold it.,and then Veronica Jennifer she she let Tim like go and t like see it and hold it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,but then Tim (he) he try/ed to untie it.,but then Tim he he tried to untie it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and she is like what[!].,and she is like what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and then Tim accidentally untie/ed it and forgot to hold onto it.,and then Tim accidentally untied it and forgot to hold onto it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and then (it went) : it went (um) : a little up.,and then it went it went um a little up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and then Jennifer got (a li) really mad.,and then Jennifer got a li really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and then Timmy is like oh look there is a balloon man!,and then Timmy is like oh look there is a balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,we can get (balloon/s) balloon/s!,we can get balloons balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,but then (h) they : went and ask/ed.,but then h they went and asked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and Jennifer is like what is he do/ing?,and Jennifer is like what is he doing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and Tim is like could we have one?,and Tim is like could we have one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and then : the guy is like where is your money?,and then the guy is like where is your money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,it cost five cent/s!,it cost five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(but) : but he did not have any money.,but but he did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,he check/ed in his pocket/s.,he checked in his pockets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,but he did not have any[!] money.,but he did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(and then he is like) and then he is like well : you kid/s go run along then.,and then he is like and then he is like well you kids go run along then +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and so then : they were sad walk/ing away.,and so then they were sad walking away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,but then : (Timmy) [~_I_mean_yeah] Tim : (he) he saw his mother.,but then Timmy Tim he he saw his mother +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and his mother was : a rabbit like him.,and his mother was a rabbit like him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and so then (they) : (he got them to) he try/ed to like (get them to pay) : get her to pay for both of them.,and so then they he got them to he tried to like get them to pay get her to pay for both of them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and so then (she is like) he is like mommy get us a balloon!,and so then she is like he is like mommy get us a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,mommy get us a balloon!,mommy get us a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,so then she paid him ten cent/s for them each to have one balloon.,so then she paid him ten cents for them each to have one balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,(and then they both were happily) and then they all were very happily with their balloon/s.,and then they both were happily and then they all were very happily with their balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/848.slt,and same with the mother.,and same with the mother +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,an elephant was play/ing with the ball at the swimming pool.,an elephant was playing with the ball at the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and then : she drop/ed the ball into the pool.,and then she dropped the ball into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and then the horse went to get it.,and then the horse went to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and he got it for her.,and he got it for her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and she was very happy.,and she was very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,[~_oh_this_one_(i)s_a_little_hard] (hmmm) : elephant and : horse went to the swimming pool.,hmmm elephant and horse went to the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and elephant want/ed to go on the diving board.,and elephant wanted to go on the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,so she ran there.,so she ran there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and she slip/ed.,and she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and she hurt her knee.,and she hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and : (uh) horse went to get the lifeguard.,and uh horse went to get the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,the lifeguard came : to see it she was all right [EU].,the lifeguard came to see it she was all right +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and the lifeguard put a bandaid on her knee.,and the lifeguard put a bandaid on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,then she sat down for a little bit.,then she sat down for a little bit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and the lifeguard said : no run/ing in the swimming pool.,and the lifeguard said no running in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,elephant and : horse were at the swimming pool.,elephant and horse were at the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,(eleph) [~_I_mean] horse show/ed elephant : his airplane : that he brought.,eleph horse showed elephant his airplane that he brought +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and then elephant just grab/ed it out of his hand/s.,and then elephant just grabbed it out of his hands +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and then it fell in the water.,and then it fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and then horse was very mad.,and then horse was very mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,then the lifeguard came.,then the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and then : elephant said : the airplane fell in the water by accident.,and then elephant said the airplane fell in the water by accident +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,she drop/ed it by accident.,she dropped it by accident +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and the lifeguard try/ed to reach it.,and the lifeguard tried to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,but (his) his arm/s were too short.,but his his arms were too short +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and then horse was cry/ing.,and then horse was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and then this : other girl came with a net.,and then this other girl came with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and : she try/ed to get it out.,and she tried to get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and she got the airplane out.,and she got the airplane out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and then horse was very happy.,and then horse was very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and (he) he was glad he had his airplane.,and he he was glad he had his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,rabbit : and dog were play/ing in the sandbox.,rabbit and dog were playing in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and rabbit made a very nice castle.,and rabbit made a very nice castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and then rabbit dug up some sand and put it in his bucket : and dump/ed it all over the castle.,and then rabbit dug up some sand and put it in his bucket and dumped it all over the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and then : he was : (um : he) he did not mean to put the : sand on the : castle.,and then he was um he he did not mean to put the sand on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and then dog was cry/ing.,and then dog was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,one day dog and rabbit went to have a picnic.,one day dog and rabbit went to have a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,rabbit was very[!] hungry.,rabbit was very hungry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and he ate (all of : the stuff) all of the food.,and he ate all of the stuff all of the food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,then he got a tummyache.,then he got a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and then : a doctor[!] came (and) down the road.,and then a doctor came and down the road +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and then dog came to get her.,and then dog came to get her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and dog pull/ed her and pull/ed her to come see rabbit.,and dog pulled her and pulled her to come see rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and the rabbit check/ed her and said that she had a tummyache.,and the rabbit checked her and said that she had a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and then (she said) the doctor said : to rabbit go home and have a nice nap.,and then she said the doctor said to rabbit go home and have a nice nap +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,one day dog had a balloon.,one day dog had a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and rabbit came : to see him.,and rabbit came to see him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and then : rabbit show/ed : dog the balloon.,and then rabbit showed dog the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and then the rabbit untie/ed it.,and then the rabbit untied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,then the balloon flew away.,then the balloon flew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and then : dog was angry.,and then dog was angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and then they saw a man with balloon/s.,and then they saw a man with balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and rabbit ask/ed could I have one of those balloon/s please?,and rabbit asked could I have one of those balloons please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and the man said balloon/s are five cent/s.,and the man said balloons are five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and rabbit said I do not have any money.,and rabbit said I do not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and then (sh) rabbit saw the doctor : and ask/ed can you get me one of those balloon/s please?,and then sh rabbit saw the doctor and asked can you get me one of those balloons please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,so[-:] she got some money out and : gave the man the money.,so she got some money out and gave the man the money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/769.slt,and then : dog and[!] rabbit had a balloon [EU].,and then dog and rabbit had a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,once there was : a little giraffe and an elephant who was bounce/ing a ball.,once there was a little giraffe and an elephant who was bouncing a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the giraffe drop/ed : the ball into a pool.,the giraffe dropped the ball into a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,he jump/ed in and swam to get the ball.,he jumped in and swam to get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,he gave the ball back to the little elephant.,he gave the ball back to the little elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,she said thank/s.,she said thanks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the giraffe smile/ed.,the giraffe smiled +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,once there was a giraffe and an elephant who want/ed to go swim/ing.,once there was a giraffe and an elephant who wanted to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the elephant walk/ed over to the pool.,the elephant walked over to the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,but she slip/ed.,but she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,she got a cut on her knee.,she got a cut on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the giraffe ran to get a lifeguard.,the giraffe ran to get a lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the lifeguard came over to help the little elephant.,the lifeguard came over to help the little elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,she cry/ed while the lifeguard put a bandaid on her knee.,she cried while the lifeguard put a bandaid on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the lifeguard and the little giraffe : help/ed her walk : out to a bench.,the lifeguard and the little giraffe helped her walk out to a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the lifeguard said no more run/ing while you are in the pool.,the lifeguard said no more running while you are in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,once there was : a giraffe and a[EW:an] elephant play/ing with a toy plane by a pool.,once there was a giraffe and a elephant playing with a toy plane by a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the giraffe : pretend/ed the plane could really fly and try/ed to get it as high : up in the air as he could.,the giraffe pretended the plane could really fly and tried to get it as high up in the air as he could +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the elephant want/ed to see : the airplane.,the elephant wanted to see the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,so she grab/ed it from the giraffe : and start/ed to play with it.,so she grabbed it from the giraffe and started to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,but she accidentally threw the plane in the water.,but she accidentally threw the plane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the giraffe got mad at her.,the giraffe got mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the lifeguard came : over to see what was the matter.,the lifeguard came over to see what was the matter +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the little elephant told the lifeguard what had happen/ed.,the little elephant told the lifeguard what had happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,so he try/ed to get the plane.,so he tried to get the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,but he could not reach.,but he could not reach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,so the little giraffe start/ed to cry.,so the little giraffe started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,he want/ed his plane back.,he wanted his plane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,so : the little elephant/z mom got a fishing net and : scoop/ed up the plane.,so the little elephant's mom got a fishing net and scooped up the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,she gave it back to the little giraffe.,she gave it back to the little giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the little giraffe was so[!] happy he gave : the little elephant/z mom a big hug.,the little giraffe was so happy he gave the little elephant's mom a big hug +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,once upon a time there was : a bunny : and a puppy.,once upon a time there was a bunny and a puppy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,and one day they went to the beach and made a sandcastle.,and one day they went to the beach and made a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,but then the bunny dump/ed a huge bucket of sand all over the sandcastle.,but then the bunny dumped a huge bucket of sand all over the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the sandcastle was ruin/ed.,the sandcastle was ruined +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the little puppy cry/ed because he like/ed the sandcastle a lot.,the little puppy cried because he liked the sandcastle a lot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,but the bunny pretend/ed he did not do it.,but the bunny pretended he did not do it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,one day (the) : there was a puppy : and : a bunny.,one day the there was a puppy and a bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,and they decide/ed to go for : a walk.,and they decided to go for a walk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,they walk/ed through a park and : sat down and had a picnic.,they walked through a park and sat down and had a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the bunny ate lot/s and lot/s and lot/s and lot/s.,the bunny ate lots and lots and lots and lots +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,but the puppy only ate a little bit.,but the puppy only ate a little bit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the bunny got sick because he ate way too much.,the bunny got sick because he ate way too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,and the puppy look/ed at him in a weird way.,and the puppy looked at him in a weird way +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,then the puppy went over to : a lady who was walk/ing down the path.,then the puppy went over to a lady who was walking down the path +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,he beg/ed her to come over to help his friend.,he begged her to come over to help his friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,she : help/ed him.,she helped him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,and he got better.,and he got better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,then they went home.,then they went home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,once upon a time there was a puppy and : a bunny who had a wagon with a balloon tie/ed on it.,once upon a time there was a puppy and a bunny who had a wagon with a balloon tied on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the bunny want/ed the balloon.,the bunny wanted the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,he try/ed to untie the balloon off the wagon.,he tried to untie the balloon off the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the puppy smile/ed.,the puppy smiled +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,but the bunny let go of the balloon.,but the bunny let go of the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,it float/ed way way up.,it floated way way up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the puppy got mad at the bunny.,the puppy got mad at the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,so the : bunny ran over to buy a balloon.,so the bunny ran over to buy a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,he : bought a red one.,he bought a red one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the balloon was five cent/s.,the balloon was five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the bunny did not have any money.,the bunny did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the : puppy came over to see what was happen/ing.,the puppy came over to see what was happening +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the bunny look/ed at the salesman with his hand in his pocket/s.,the bunny looked at the salesman with his hand in his pockets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,so he ran over to a lady.,so he ran over to a lady +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,he said that there was : a man with a balloon.,he said that there was a man with a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,and his puppy friend want/ed : a balloon for his wagon.,and his puppy friend wanted a balloon for his wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the : lady : paid the man.,the lady paid the man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,and the puppy and the bunny both got a balloon.,and the puppy and the bunny both got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,they play/ed with the balloon/s.,they played with the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/963.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,(um) they are have/ing basketball player/s [EU].,um they are having basketball players +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and it fall|fall[EW:fell] : into the : water.,and it fall into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and he swimmed|swim[EW:swam].,and he swimmed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and he swimmed|swim[EW:swam].,and he swimmed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and he swimmed|swim[EW:swam].,and he swimmed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and he catch|catch[EW:caught] the ball!,and he catch the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and he[!] is his best[!] friend.,and he is his best friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,(um) they want to : go on the swimming pool [EU].,um they want to go on the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and he[!] want/3s to go on the swimming pool [EU].,and he wants to go on the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and she : runned|run[EW:ran]!,and she runned +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and she bonk/ed her knee.,and she bonked her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,she bonk/ed her knee!,she bonked her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and the teacher said you have a swim.,and the teacher said you have a swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,you have to sit there.,you have to sit there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,he : said : go.,he said go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,that is the end [+_bch]!,that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,he has a[EW:an] airplane.,he has a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and look!,and look +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and it go/3s [~_makes_raspberry_sound].,and it goes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and she got it too!,and she got it too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and it falled|fall[EW:fell] into the water.,and it falled into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and he said [~_makes_growling_sound].,and he said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and : the teacher is try/ing to get it.,and the teacher is trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,uhoh but she did it on purpose with my airplane.,uhoh but she did it on purpose with my airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and the teacher is try/ing to get it.,and the teacher is trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,I do not know how.,I do not know how +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,it is go/ing : (uh) down.,it is going uh down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,(da) well go[!] there.,da well go there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and he said : mommy can you get the airplane?,and he said mommy can you get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and she get|get[EW:got] it [~_repeats_4_times_without_sentence_final__intonation].,and she get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,she got it!,she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,oops sorry [+_bch].,oops sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,(and : do/3s : the) : (he) the mom found his airplane.,and does the he the mom found his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,that is the end [+_bch].,that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,(um) there is[!] a castle.,um there is a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,but he made the castle.,but he made the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,(and he : put) and the bunny : pick/3s up some sand.,and he put and the bunny picks up some sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and he throwed|throw[EW:threw] it into the sandbox.,and he throwed it into the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and it say/3s pour*2.,and it says pour pour +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and that mean/3s pour!,and that means pour +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,that mean/3s pour.,that means pour +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,: anything more on this page?,anything more on this page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,(um) they : broke the castle!,um they broke the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,he made another one.,he made another one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and he take|take[EW:took] all the sand off.,and he take all the sand off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,that is the end [+_bch].,that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,they want to : go to a picnic.,they want to go to a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and he ate a lot of food.,and he ate a lot of food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and he still : has a tummyache!,and he still has a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and he is still growl/ing.,and he is still growling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and he : like to see the doctor [EU].,and he like to see the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and he [~_high_pitched_voice] quick quick [EU]!,and he quick quick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,he said come here.,he said come here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,come here.,come here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,he said he has a fever.,he said he has a fever +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,(he) he is go/ing to take care[!] of him.,he he is going to take care of him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,that is the end [+_bch].,that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,(um he) he said : he has a balloon.,um he he said he has a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,(and it fa) and he has a balloon.,and it fa and he has a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and he : try/ed to get it off.,and he tried to get it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and it flew up to the air!,and it flew up to the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and he saw : two balloon/s.,and he saw two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and here is[EW:are] some more[!] balloon/s.,and here is some more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,some more balloon/s.,some more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,he get/3s : more balloon/s!,he gets more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,he get/3s balloon/s.,he gets balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,he get/3s the balloon/s.,he gets the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and he walk/ed.,and he walked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and he walk/ed.,and he walked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,(and).,and +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,do you hear me on this [~_talking_about_mic] [+_bch]?,do you hear me on this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,"yeah, we have it on.",yeah we have it on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,(um : um) I do not know this one [+_bch].,um um I do not know this one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and they say they need a balloon.,and they say they need a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,and he has a balloon.,and he has a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/576.slt,the end [+_bch]!,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,One day an elephant was bounce/ing : a ball.,One day an elephant was bouncing a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then a giraffe came : over and said want to [~_wanna] play basketball?,and then a giraffe came over and said want to play basketball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then the elephant said sure.,and then the elephant said sure +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,let us do it over there.,let us do it over there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,okay said the giraffe.,okay said the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then they hit the ball into the pool : where it was.,and then they hit the ball into the pool where it was +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and the giraffe went swim/ing for it.,and the giraffe went swimming for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and he got it and return/ed it back to the elephant.,and he got it and returned it back to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then they start/ed to play again.,and then they started to play again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,One day the elephant and the giraffe want/ed to go swim/ing.,One day the elephant and the giraffe wanted to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,so then the elephant start/ed to run to the diving board.,so then the elephant started to run to the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and the giraffe start/ed walk/ing.,and the giraffe started walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,then all of the sudden the elephant slip/ed.,then all of the sudden the elephant slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and the giraffe hurry/ed to get her.,and the giraffe hurried to get her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then the elephant start/ed cry/ing because she had big booboo.,and then the elephant started crying because she had big booboo +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,so then the giraffe went to get the lifeguard.,so then the giraffe went to get the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and the lifeguard gave the elephant a bandaid.,and the lifeguard gave the elephant a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then they went to sit down on a bench.,and then they went to sit down on a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then the lifeguard show/ed her the sign that said no[!] run/ing.,and then the lifeguard showed her the sign that said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,One day the elephant and the giraffe were : go/ing to fly the giraffe/z plane.,One day the elephant and the giraffe were going to fly the giraffe's plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then when the giraffe let the plane go : it : flew off.,and then when the giraffe let the plane go it flew off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then the elephant caught it.,and then the elephant caught it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then the elephant drop/ed it into the water.,and then the elephant dropped it into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then the giraffe got so angry at the elephant.,and then the giraffe got so angry at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and the lifeguard came over and ask/ed what was[EW:had] happen/ed.,and the lifeguard came over and asked what was happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and the giraffe said that she : drop/ed his plane into the water.,and the giraffe said that she dropped his plane into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,so then the : elephant and the : lifeguard start/ed to have an argument.,so then the elephant and the lifeguard started to have an argument +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and it never end/ed.,and it never ended +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,(so then the) so when it was finish/ed the : lifeguard try/ed to go and : get it.,so then the so when it was finished the lifeguard tried to go and get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,but then he did not.,but then he did not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then another elephant came over.,and then another elephant came over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and she had a net with her.,and she had a net with her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then she scoop/ed it up.,and then she scooped it up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then she gave it back to the giraffe.,and then she gave it back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,then giraffe start/ed to hug it.,then giraffe started to hug it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,one day there was : (um) : a small dragon and a rabbit.,one day there was um a small dragon and a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and they were play/ing in their sandbox.,and they were playing in their sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,"and then the rabbit start/ed to : make a sandcastle [~_pronounced__""candsassle""].",and then the rabbit started to make a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then the dragon broke it.,and then the dragon broke it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then : the rabbit built it again.,and then the rabbit built it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then he : put some sand all over.,and then he put some sand all over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then he put water in it.,and then he put water in it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then : the : dragon smash/ed it again[!].,and then the dragon smashed it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then (he is) the dragon start/ed build/ing it.,and then he is the dragon started building it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and he was cry/ing because it was so much work.,and he was crying because it was so much work +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,one day a rabbit came : hunt/ing for egg/s.,one day a rabbit came hunting for eggs +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and (a) a bear came with him.,and a a bear came with him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then they decide/ed that they would go buy some food and eat it for a picnic.,and then they decided that they would go buy some food and eat it for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then the : rabbit ate so fast that he : ate lot/s and lot/s.,and then the rabbit ate so fast that he ate lots and lots +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then he start/ed to get fat.,and then he started to get fat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then he got so dizzy : while the : bear was drink/ing his lemonade.,and then he got so dizzy while the bear was drinking his lemonade +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,so then a doctor came by.,so then a doctor came by +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and : the bear went to get him.,and the bear went to get him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then : the bear drag/ed him all the way there.,and then the bear dragged him all the way there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then : the doctor saw him : asleep.,and then the doctor saw him asleep +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,so then he gave : him some medicine.,so then he gave him some medicine +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,then he felt so better he could walk home.,then he felt so better he could walk home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,one day the bear : was walk/ing down with his wagon.,one day the bear was walking down with his wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and there is a balloon on it.,and there is a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then all of a sudden rabbit came jog/ing by.,and then all of a sudden rabbit came jogging by +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,so then the rabbit said hey nice balloon.,so then the rabbit said hey nice balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,would you trade it for something?,would you trade it for something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then the bear said sure what you got?,and then the bear said sure what you got +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,then the rabbit untie/ed the balloon : and then gave him : three dollar/s.,then the rabbit untied the balloon and then gave him three dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,but then all of a sudden the rabbit let go of the balloon.,but then all of a sudden the rabbit let go of the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and it went up into the sky.,and it went up into the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,then the bear got so angry he start/ed to charge at him.,then the bear got so angry he started to charge at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then on the other side of the street : (some) a rabbit was sell/ing some more balloon/s.,and then on the other side of the street some a rabbit was selling some more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,so then the rabbit went over and bought some.,so then the rabbit went over and bought some +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and he got about : six because the balloon/s were about fifty cent/s per one.,and he got about six because the balloons were about fifty cents per one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then : the bear came over and : bought one.,and then the bear came over and bought one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then : they both went home nice and quietly : with a balloon.,and then they both went home nice and quietly with a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,then when they got[!] home : they[-:] took their balloon/s and start/ed dance/ing.,then when they got home they took their balloons and started dancing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then all of a sudden they pop/ed.,and then all of a sudden they popped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,so then they had to go get new one/s.,so then they had to go get new ones +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/716.slt,and then when they got the new one/s they put them in their shirt/s.,and then when they got the new ones they put them in their shirts +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(there w) I saw a[EW:an] elephant (down) on the sidewalk.,there w I saw a elephant down on the sidewalk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,: we saw a ball in the water.,we saw a ball in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(and) and : I went (uh) swim/ing in the water.,and and I went uh swimming in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and they got the ball.,and they got the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and I was all wet.,and I was all wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(uh) I was look/ing at the water.,uh I was looking at the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,: (and) : and the elephant (wa) was go/ing to[:_gonna] jump inside the water.,and and the elephant wa was going to jump inside the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and she was run/ing.,and she was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and she hurted|hurt[EW:hurt] her knee.,and she hurted her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,: and she start|start[EW:started] cry/ing.,and she start crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(and : she is i) and we gived|give[EW:gave] her a bandaid.,and she is i and we gived her a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(and then her) and then (she) she was happy[-:].,and then her and then she she was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(and zhen) and then : her dad was mad.,and zhen and then her dad was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(uh) the elephant (an) and I was[EW:were] happy.,uh the elephant an and I was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and we were fly/ing my plane.,and we were flying my plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and : the elephant took it away : from me.,and the elephant took it away from me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and : she throwed|throw[EW:threw] it in the water.,and she throwed it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(and) and I was mad at her.,and and I was mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and then there is[EW:are] : two : elephant/s.,and then there is two elephants +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(and) and her brother was talk/ing to her.,and and her brother was talking to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(and she) and he try/ed to : get it.,and she and he tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and he did not.,and he did not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and he try/ed to get it so hard : that he did not get it.,and he tried to get it so hard that he did not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(but h) but : the mom had : a net in her hand to go get it.,but h but the mom had a net in her hand to go get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and she got it.,and she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(and h) (and) and I was happy.,and h and and I was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and I was hug/ing it.,and I was hugging it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,we were play/ing in the sand.,we were playing in the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,: and we made a castle.,and we made a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and we pour/ed sand on it.,and we poured sand on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and it broke.,and it broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(and) (and it w) and I was sad.,and and it w and I was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(we) I bringed|bring[EW:brought] a snack.,we I bringed a snack +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(an) and we eated|eat[EW:ate] it.,an and we eated it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(and we) and I was drink/ing.,and we and I was drinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(and I got a) (and) and the rabbit got a[EW:an] owie.,and I got a and and the rabbit got a owie +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and then it was : the rabbit/z mom.,and then it was the rabbit's mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(and) and I was grab/ing her coat.,and and I was grabbing her coat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(and) : and : she was talk/ing to her : son.,and and she was talking to her son +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(and) (and they were) and they (were) went home.,and and they were and they were went home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,I was bring/ing a balloon.,I was bringing a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,: (and) (and) and the rabbit was happy.,and and and the rabbit was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and he was : take/ing it off.,and he was taking it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(and) (and they we) and he let go.,and and they we and he let go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and it flied|fly[EW:flew] (in) : up in the sky.,and it flied in up in the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and then we could not get it.,and then we could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and then there was (a) a balloon guy.,and then there was a a balloon guy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and we went to go get one.,and we went to go get one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and : we got a number five.,and we got a number five +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and we did not get any balloon/s.,and we did not get any balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(and her mo) and then the rabbit/z mom was here.,and her mo and then the rabbit's mom was here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(and) and he was (ll kk) ask/ing for his mom for money.,and and he was ll kk asking for his mom for money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,(and) and the mom give|give[EW:gave] : him some money.,and and the mom give him some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,and then they both had (s) balloon/s.,and then they both had s balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/545.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,(w) once upon a time there was : a donkey and elephant.,w once upon a time there was a donkey and elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and elephant was bounce/ing : a ball.,and elephant was bouncing a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,but then : the ball accidentally fell in (the) the water.,but then the ball accidentally fell in the the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the donkey and the : elephant stare/ed at the : ball.,the donkey and the elephant stared at the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,(the) the donkey (sw) jump/ed into the pool and swam[-:][!] to the ball.,the the donkey sw jumped into the pool and swam to the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the elephant look/ed at him.,the elephant looked at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and then the donkey got : the ball[-:] to the elephant.,and then the donkey got the ball to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the elephant was happy.,the elephant was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and then : (the) : the elephant : probably (look/ed) [~__no] : (uh) told the : donkey (that) : thank/s for : (take/ing) (get) get/ing my ball back.,and then the the elephant probably looked uh told the donkey that thanks for taking get getting my ball back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,(there) (there) (the donkey and the elephant) [~_okay] once upon a time there was a donkey and the elephant.,there there the donkey and the elephant once upon a time there was a donkey and the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,they went to the swimming pool.,they went to the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,but then : the elephant was : tell/ing the donkey something.,but then the elephant was telling the donkey something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,but then (he s) the elephant start/ed run/ing.,but then he s the elephant started running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,(he) : she slip/ed and fell and hurt her knee.,he she slipped and fell and hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,(the don) the donkey came run/ing after her.,the don the donkey came running after her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and then the lifeguard came.,and then the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the : elephant was hurt.,the elephant was hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,she was cry/ing[!].,she was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the donkey was at her side.,the donkey was at her side +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,then the (li) lifeguard gave her a bandaid to (s) make sure (it felt better) her : knee felt better.,then the li lifeguard gave her a bandaid to s make sure it felt better her knee felt better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the donkey was just stare/ing at her.,the donkey was just staring at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,then the lifeguard : made[-:] the : elephant (s) sit on (the : uh) a chair so : she can feel better.,then the lifeguard made the elephant s sit on the uh a chair so she can feel better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,(the) the donkey was (r) at her side.,the the donkey was r at her side +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,then the lifeguard (told) : (l) look/ed at the sign and (point/ed at it) point/ed at it.,then the lifeguard told l looked at the sign and pointed at it pointed at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and elephant looked at it too.,and elephant looked at it too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,then she (knew) : knew a new thing.,then she knew knew a new thing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,do not run on : deck/s.,do not run on decks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,once upon a time there was : an elephant and the donkey.,once upon a time there was an elephant and the donkey +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the donkey had an airplane.,the donkey had an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the donkey was fly/ing[!] the airplane.,the donkey was flying the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the elephant want/ed the airplane (w) because it was cool[!].,the elephant wanted the airplane w because it was cool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,(the) : but the elephant took : the plane away from the donkey : and start/ed play/ing with it.,the but the elephant took the plane away from the donkey and started playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the donkey was upset.,the donkey was upset +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,but then it fell in the water[-:].,but then it fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and the donkey and the elephant just : stare/ed at it.,and the donkey and the elephant just stared at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the donkey got so[!] mad because it : fell[!] in the water.,the donkey got so mad because it fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the : elephant said uhoh.,the elephant said uhoh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and then the lifeguard stare/ed at both of them.,and then the lifeguard stared at both of them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and they both stare/ed back.,and they both stared back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,then the elephant told the lifeguard there is a plane[!] in the water.,then the elephant told the lifeguard there is a plane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,(I accidentally) it accidentally went into the (wa) : water.,I accidentally it accidentally went into the wa water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and (the) the donkey is sad !,and the the donkey is sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,then the : lifeguard try/ed to get the : plane.,then the lifeguard tried to get the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,but it was too hard to reach.,but it was too hard to reach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,then the donkey start/ed cry/ing.,then the donkey started crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,(the elephant just stare/ed at the ba) : the elephant and the lifeguard just stare/ed at (the) the[-:] : plane.,the elephant just stared at the ba the elephant and the lifeguard just stared at the the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,then (a) (ano) an elephant girl[!] came[-:] with a net[!].,then a ano an elephant girl came with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,(the) the three of them stare/ed at her.,the the three of them stared at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,(the) the elephant : put the net in the water.,the the elephant put the net in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,(it) and (it touch/ed the) : (it went in t) the plane went into the net.,it and it touched the it went in t the plane went into the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the elephant gave : the plane to : the donkey.,the elephant gave the plane to the donkey +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the donkey was happy[!].,the donkey was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,now both of them are happy because he : got : his plane back.,now both of them are happy because he got his plane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,once upon a time[-:] there was : a dog and a rabbit.,once upon a time there was a dog and a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,(they were) they were go/ing to play in the sandbox.,they were they were going to play in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,(they[-:]) : the rabbit (um) : he got a pail of sand.,they the rabbit um he got a pail of sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and he put a shovel in it to try I think to mix : the : sand.,and he put a shovel in it to try I think to mix the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and the dog was : pat/ing (it) : the sand.,and the dog was patting it the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and then the rabbit : dump/ed the bucket on the sand.,and then the rabbit dumped the bucket on the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and then : he got upset because he wreck/ed the sandcastle.,and then he got upset because he wrecked the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,but : (that) the dog did not look that upset.,but that the dog did not look that upset +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and then he start/ed cry/ing and try/ing to put it back together.,and then he started crying and trying to put it back together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,but the : rabbit (he just) : he look/ed like he was lazy.,but the rabbit he just he looked like he was lazy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and he did not want to [~_wanna] help fix it.,and he did not want to help fix it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,once upon a time there was : a dog and a rabbit.,once upon a time there was a dog and a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,they were go/ing on a picnic in the wood/s.,they were going on a picnic in the woods +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,(they[-:]) : they found a : perfect spot in the shade.,they they found a perfect spot in the shade +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and : they start/ed to take out : all their food.,and they started to take out all their food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,start/ed to what?,started to what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,take out all their food [+_bch].,take out all their food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and but the rabbit ate up all the food.,and but the rabbit ate up all the food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,but the dog only (ha) had some[!] of it.,but the dog only ha had some of it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,(and) but then the dog look/ed at the rabbit.,and but then the dog looked at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,he look/ed sick[!].,he looked sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,so he went : to find : a doctor.,so he went to find a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and : he found a doctor.,and he found a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,so he told him to come here.,so he told him to come here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the doctor look at the rabbit.,the doctor look at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and : he look/ed really sick.,and he looked really sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and then the doctor : was try/ing to (m) make the rabbit feel[!] better.,and then the doctor was trying to m make the rabbit feel better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,but then (h) (na) (he made him) the doctor made him feel[!] better.,but then h na he made him the doctor made him feel better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and the dog is happy too.,and the dog is happy too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,(um there) once upon a time there was : a rabbit and a dog.,um there once upon a time there was a rabbit and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,they had (a) a balloon : tape/ed onto a wagon.,they had a a balloon taped onto a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the rabbit[!] want/ed to take a look at the balloon.,the rabbit wanted to take a look at the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the rabbit (untie) : took the tape off the : balloon.,the rabbit untie took the tape off the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and (he w) (he w) he : (got) (took on) holded|hold[EW:held] onto it.,and he w he w he got took on holded onto it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,but then he let go of it.,but then he let go of it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and : the : balloon (took off) : took off.,and the balloon took off took off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and then the dog was so[!] upset because (he) (thi) that was his[!] balloon.,and then the dog was so upset because he thi that was his balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,but the rabbit was just (look/ing up) stare/ing up at the balloon.,but the rabbit was just looking up staring up at the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,they saw a balloon guy sell/ing balloon/s[!].,they saw a balloon guy selling balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the rabbit : look/ed at the balloon guy.,the rabbit looked at the balloon guy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and the dog was still mad.,and the dog was still mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the (r) : rabbit ask/ed the balloon guy can I have a balloon?,the r rabbit asked the balloon guy can I have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,but the balloon/s were five cent/s.,but the balloons were five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,he did not have any money[!].,he did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,so : he was just stand/ing there.,so he was just standing there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and both of them came and : look/ed at him.,and both of them came and looked at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,but then he saw the same doctor[!] in the[~!_laughing] other story.,but then he saw the same doctor in the other story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the rabbit went to the doctor.,the rabbit went to the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and the rabbit ask : the doctor : that : he want/ed a balloon because his other one took off[-:].,and the rabbit ask the doctor that he wanted a balloon because his other one took off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,(so h) but he did not have any money.,so h but he did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,so : he want/ed the doctor to : (buy) buy a balloon for him.,so he wanted the doctor to buy buy a balloon for him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the doctor bought a : (b) balloon for both[!] of them.,the doctor bought a b balloon for both of them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,and they were happy[!].,and they were happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,they both have a balloon now.,they both have a balloon now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,now they are really[!] happy.,now they are really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/916.slt,the end[~!_whispering] [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,there was : an elephant : who had a ball.,there was an elephant who had a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,: and then it fell in the water.,and then it fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,so : change change [~_asking_examiner_to_turn_the_page] [+_bch].,so change change +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,so : (what is that animal : is call/ed) what kind of animal is that [+_bch]?,so what is that animal is called what kind of animal is that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,oh it is your story you can make it up.,oh it is your story you can make it up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,[~_well] : a horse (wen) grab/ed the ball : and gave it back to the elephant.,a horse wen grabbed the ball and gave it back to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,and she was so proud : she got her ball back.,and she was so proud she got her ball back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,there was an elephant : who want/ed to jump off : a jumping board.,there was an elephant who wanted to jump off a jumping board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,so she ran over there.,so she ran over there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,change the page [+_bch].,change the page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,and she ran and she ran until she fell and (got her) got a booboo.,and she ran and she ran until she fell and got her got a booboo +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,so another elephant came and ran to her (and gave[-:]) and gave her a bandage.,so another elephant came and ran to her and gave and gave her a bandage +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,and she wipe/ed her tears.,and she wiped her tears +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,: (and she felt a little be) [~_well] : it kind of stinged|sting[EW:stung] her a little bit.,and she felt a little be it kind of stinged her a little bit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,what?,what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,stinged|sting[EW:stung] her [+_bch].,stinged her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,and she felt better.,and she felt better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,there was a horse : who had a plane.,there was a horse who had a plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,: he flew it around.,he flew it around +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,: but then the elephant grab/ed it.,but then the elephant grabbed it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,: but then the elephant drop/ed it in the water.,but then the elephant dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,and then : the horse got mad at the elephant.,and then the horse got mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,so the other elephant came and see|see[EW:saw] what the problem was.,so the other elephant came and see what the problem was +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,and so (sh) the other elephant said : I accidentally drop/ed it in the water.,and so sh the other elephant said I accidentally dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,so (he) the elephant try/ed to reach it.,so he the elephant tried to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,but[!] he could not reach it.,but he could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,so the horse cry/ed.,so the horse cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,: but then there is another[!] elephant (who gra) who : had a stick to grab it.,but then there is another elephant who gra who had a stick to grab it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,"a stick to grab it, uhhm.",a stick to grab it uhhm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,and then she put her stick in there.,and then she put her stick in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,and she grab/ed it.,and she grabbed it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,then (h) he (ho) grab/ed his plane.,then h he ho grabbed his plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,: and : (h) he holded|hold[EW:held] it tight to his : (t) : tummy.,and h he holded it tight to his t tummy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,there was[-:] a dog who[-:] was[-:] go/ing to[:_gonna] make a sandcastle.,there was a dog who was going to make a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,made a sandcastle [EU].,made a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,so they put more sand to make it bigger.,so they put more sand to make it bigger +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,but when he put more sand on it : it broke!,but when he put more sand on it it broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,: and he accidentally broke it.,and he accidentally broke it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,and the dog was (cr) cry/ing sad [EU].,and the dog was cr crying sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,there[-:] was a rabbit and a dog.,there was a rabbit and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,: so (they ate) they had a picnic and ate their food.,so they ate they had a picnic and ate their food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,: later the rabbit got really full : from : eat/ing.,later the rabbit got really full from eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,(ss) well he kind of[:_kinda] fell asleep.,ss well he kind of fell asleep +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,: and then the dog : ran for help.,and then the dog ran for help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,and so she came over.,and so she came over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,: and (she said) : (sh) : (he) so she open/ed his mouth.,and she said sh he so she opened his mouth +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,: and then : (h) : she took him home.,and then h she took him home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,and then he felt more better [EU].,and then he felt more better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,there was a dog and : a rabbit.,there was a dog and a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,: the dog had a balloon.,the dog had a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,but the rabbit want/ed to hold it.,but the rabbit wanted to hold it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,the rabbit what?,the rabbit what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,want/ed to hold it [+_bch].,wanted to hold it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,(the) the rabbit : untie/ed it from[-:] : a little cart.,the the rabbit untied it from a little cart +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,but then when he letted|let[EW:let] it go.,but then when he letted it go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,it flew up in the air.,it flew up in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,and the dog got mad.,and the dog got mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,but there was[EW:were] other balloon/s[-:].,but there was other balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,so[-:] the[-:] rabbit ask/ed the man if he could have a balloon.,so the rabbit asked the man if he could have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,but he need/ed five[-:] dollar/s : to pay for the balloon.,but he needed five dollars to pay for the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,but : (he had) he had no money.,but he had he had no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,so : there was a lady (who stand over) who was stand/ing on a corner.,so there was a lady who stand over who was standing on a corner +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,so the rabbit ran to her : and said I can not (buy a) buy a balloon.,so the rabbit ran to her and said I can not buy a buy a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,so the lady came over : and said to the man : I will (bu) buy two balloon/s (and) for five[-:] buck/s.,so the lady came over and said to the man I will bu buy two balloons and for five bucks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/610.slt,then they each got a balloon.,then they each got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,an elephant ask/ed (if) : if the giraffe want/3s to play with her and her ball.,an elephant asked if if the giraffe wants to play with her and her ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and[-:] it bounce/3s into a pool.,and it bounces into a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and the giraffe go/3s to get it.,and the giraffe goes to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and then[-:] he give/3s it back to her.,and then he gives it back to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and she is happy.,and she is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and then the giraffe : and the elephant want to play again.,and then the giraffe and the elephant want to play again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and then she say/3s do you : want to go on the diving board?,and then she says do you want to go on the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and she slip/3s[-:] : and hurt/3s her knee.,and she slips and hurts her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,the giraffe go/3s and get/3s a lifeguard.,the giraffe goes and gets a lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and[-:] (the) (the uh) : the lifeguard put/3s a bandage on it.,and the the uh the lifeguard puts a bandage on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and (uh) she feel/3s (uh) : better.,and uh she feels uh better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and (uh uh[-:]) : the lifeguard say/3s[-:] to her no run/ing.,and uh uh the lifeguard says to her no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,the elephant want/3s to play with the giraffe and the plane.,the elephant wants to play with the giraffe and the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and[-:] (uh) he swing/3s the (pl) plane.,and uh he swings the pl plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and then[-:] (the) : the elephant take/3s it from him.,and then the the elephant takes it from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and then she accidentally drop/3s it in the water.,and then she accidentally drops it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and the giraffe get/3s mad at her[-:].,and the giraffe gets mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and the lifeguard (is) : come/3s.,and the lifeguard is comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and[-:] (uh) she tell/3s him what happen/ed.,and uh she tells him what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and[-:] he try/3s to get it.,and he tries to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,but he can not.,but he can not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,(uh) and then the giraffe is cry/ing.,uh and then the giraffe is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and then[-:] (uh) : another elephant come/3s : with a net : and (uh get uh) scoop/3s it out and give/3s it back to the giraffe.,and then uh another elephant comes with a net and uh get uh scoops it out and gives it back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and the giraffe is happy.,and the giraffe is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,(nuh) : a[-:] rabbit ask/3s[-:] someone if he could build a castle with him.,nuh a rabbit asks someone if he could build a castle with him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,(and they) and he say/3s yes.,and they and he says yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and they start build/ing it.,and they start building it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,he put/3s sand on top of the castle.,he puts sand on top of the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and it break/3s.,and it breaks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and the guy is try/ing to make it again.,and the guy is trying to make it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,the[-:] guy again[-:] ask/3s if he can have a picnic with him.,the guy again asks if he can have a picnic with him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and they start to eat.,and they start to eat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and[-:] : the rabbit eat/3s a lot.,and the rabbit eats a lot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and he get/3s full.,and he gets full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and then he get/3s sick.,and then he gets sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and then[-:] the other guy come/3s and get/3s a doctor : and tell/3s her that (uh) he is sick.,and then the other guy comes and gets a doctor and tells her that uh he is sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and she[-:] (uh) help/3s him.,and she uh helps him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,(and he) : and she take/3s him to her office.,and he and she takes him to her office +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,the rabbit again come/3s to play with him.,the rabbit again comes to play with him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and then he see/3s the balloon.,and then he sees the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and he untie/3s it because he want/3s to [~_wantsa] hold it.,and he unties it because he wants to hold it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and it fly/3s away.,and it flies away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and then[-:] (the[-:]) watch/ing the other guy get/3s mad at him [EU].,and then the watching the other guy gets mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and then (the[-:]) he see/3s a balloon guy.,and then the he sees a balloon guy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and (he go/3s ask/3s) : he[-:] (uh) go/3s to see him.,and he goes asks he uh goes to see him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,(uh) and he ask/3s for a balloon.,uh and he asks for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and then (nn) they need five cent/s to buy one.,and then nn they need five cents to buy one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,(andb the) and then the other guy come/3s.,andb the and then the other guy comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and then they go to see the doctor again : and ask if (they) she can get them a balloon.,and then they go to see the doctor again and ask if they she can get them a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and then she (pay/3s and) : paid for : two.,and then she pays and paid for two +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/951.slt,and then they both (uh) are happy.,and then they both uh are happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,the giraffe went : close talk to (the um) : the[-:] : elephant [EU].,the giraffe went close talk to the um the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and do you want to play with me?,and do you want to play with me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and (he) the giraffe say/3s yes.,and he the giraffe says yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,you want : to play with the ball?,you want to play with the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,he say|say[EW:says] yes.,he say yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and the ball : went go over there : and went to the water.,and the ball went go over there and went to the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : the giraffe and the elephant yell/ed.,and the giraffe and the elephant yelled +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and (the um) the giraffe (um f) : (got the um) : got the ball : close.,and the um the giraffe um f got the um got the ball close +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : the giraffe : got the ball and give|give[EW:gave] *it to (um : the) : the elephant [EU].,and the giraffe got the ball and give to um the the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and (the) the elephant (t) say|say[EW:said] thank you.,and the the elephant t say thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and the giraffe say|say[EW:said] you are welcome.,and the giraffe say you are welcome +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(um) : thank you[-:] giraffe!,um thank you giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(and he) and he said you are welcome.,and he and he said you are welcome +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(um : the) : the elephant and the : giraffe : (I) : is (no uh ju) no run/ing : in the : water [EU].,um the the elephant and the giraffe I is no uh ju no running in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and[-:] : I like to go swim/ing.,and I like to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(you want) that is it [+_bch].,you want that is it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and the giraffe (and the um) : and the : elephant said : do you want to go to the diving board.,and the giraffe and the um and the elephant said do you want to go to the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(said um) : yes please said the giraffe : and no run/ing : in the (um) : xx.,said um yes please said the giraffe and no running in the um +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(and he[-:]) and the : giraffe saw the : elephant.,and he and the giraffe saw the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,no run/ing.,no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(he slip) she slip/ed : down and : (um) got blade[?] in her (um) : leg [EU].,he slip she slipped down and um got blade in her um leg +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(and the) : and giraffe saw the : elephant.,and the and giraffe saw the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,no run/ing.,no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(and) : and : she[-:] bump/ed there [EU].,and and she bumped there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,down is bleed/ing [EU].,down is bleeding +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and (she) : she yell/ed and hurt/ing [EU].,and she she yelled and hurting +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : (she is try/ing) (the) : (the elephant is try/ing) : she is cry/ing.,and she is trying the the elephant is trying she is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and the : giraffe said : (um) you are okay.,and the giraffe said um you are okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(and the) : and the (e) elephant said no.,and the and the e elephant said no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and (the um elephant) the diving man : went : by him to : (get) : get a bandaid.,and the um elephant the diving man went by him to get get a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(and the) : and the : elephant : it be[EW:was] hurt and : put a bandaid on her [EU].,and the and the elephant it be hurt and put a bandaid on her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and (s) see it never hurt.,and s see it never hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(and it) and giraffe said : and that is okay.,and it and giraffe said and that is okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(is nn) is no run/ing in there [EU].,is nn is no running in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and[-:] I am sorry about that.,and I am sorry about that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(um) : (the gira) the giraffe say|say[EW:said] hello (to the um) : to the elephant.,um the gira the giraffe say hello to the um to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(I got) : I got a new : airplane.,I got I got a new airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,I want to [~_wanna] play with it.,I want to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : (gi) giraffe say|say[EW:said] yes.,and gi giraffe say yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(and[-:] the) : and giraffe say|say[EW:said] : (um) I want to play[-:] on (my) : my airplane [EU].,and the and giraffe say um I want to play on my my airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and he start[EW:started] to (s um) spit : and say brr[?].,and he start to s um spit and say brr +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(and) : and the elephant say|say[EW:said] : that is cool.,and and the elephant say that is cool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and the giraffe : [~_high_pitched_voice] hey (do not) (do not st) : do not grab from me [EU]!,and the giraffe hey do not do not st do not grab from me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,I want to play with it too[!] : said the (um) : elephant.,I want to play with it too said the um elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : ( I am) : ( I am sorry) (I) (the) : the : elephant said I am sorry I am : drop/ed to : the (um) nother[?] (air) airplane giraffe said [EU].,and I am I am sorry I the the elephant said I am sorry I am dropped to the um nother air airplane giraffe said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and[-:] the giraffe is very angry.,and the giraffe is very angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : (you) : (you) : you drop/ed my (um) airplane in the water.,and you you you dropped my um airplane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,I am sorry about that : said the[-:] : elephant.,I am sorry about that said the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and (the diving man said : air) : why is the toy over there said the (um) diving man.,and the diving man said air why is the toy over there said the um diving man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : (is my[-:]) that is mine[EW:my] [-:] : airplane said the : little giraffe.,and is my that is mine airplane said the little giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,( I am) and the : elephant said : (um) : I did it by accident and drop/ed giraffe/z airplane.,I am and the elephant said um I did it by accident and dropped giraffe's airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : it is right there.,and it is right there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and I drop/ed it.,and I dropped it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,I drop/ed (the um : airplane) : (his) giraffe/z : airplane.,I dropped the um airplane his giraffe's airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and[-:] : I am sorry[?] disappoint[?] you [EU].,and I am sorry disappoint you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(I can not) I can not : go to the water in there.,I can not I can not go to the water in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : he try/ed to (um) : grabbed|grab[EW:grab] it.,and he tried to um grabbed it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(and) : and I can not reach it very far [EU].,and and I can not reach it very far +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,I am not allow/ed to go (to) in the water : said the (um) diving man.,I am not allowed to go to in the water said the um diving man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(and the[-:] : giraffe said : where[-:]) (I) (I) [~__gulps] : and the giraffe said : well you can not reach it!,and the giraffe said where I I and the giraffe said well you can not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(and the) : and (the : elephant) oopsie said the elephant[?].,and the and the elephant oopsie said the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and the giraffe (s) : he is cry/ing to lost (his) : his airplane [EU].,and the giraffe s he is crying to lost his his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(and[-:] the) : and the elephant girl : (she) : she say/3s sorry (I) (for) : (I) : for : (the) : dropped[EW:dropping] the airplane (s) said the : elephant.,and the and the elephant girl she she says sorry I for I for the dropped the airplane s said the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and the diving man can not reach it.,and the diving man can not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(it is) : it is too far from me.,it is it is too far from me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and (the lady) : the lady : grab/ed (that) the airplane right there in the water.,and the lady the lady grabbed that the airplane right there in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(and try/ing) (I) : I got : that : airplane.,and trying I I got that airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and (he) she got that : airplane right there.,and he she got that airplane right there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : the giraffe (s) is cry/ing for (that) his airplane.,and the giraffe s is crying for that his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(and the lady) : and : (the : air) : the : giraffe : said : thank you for (my) : got[EW:getting] my airplane.,and the lady and the air the giraffe said thank you for my got my airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and the lady say[EW:said] : you are welcome.,and the lady say you are welcome +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and[-:] the giraffe : is happy get (my) (his) : his airplane [EU].,and the giraffe is happy get my his his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : the (el) elephant (he is happy) she is happy : for : it.,and the el elephant he is happy she is happy for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,I am sorry about that drop : (the) : your airplane : (said) : said the : [~_sighs] elephant [EU].,I am sorry about that drop the your airplane said said the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(um) : a rabbit [EU].,um a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,some help (with the) (um) with the[-:] : dog [EU].,some help with the um with the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : he want/3s some help (to) with me : to know how to make a sandcastle.,and he wants some help to with me to know how to make a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(and he um) the rabbit make|make[EW:made] a sandcastle.,and he um the rabbit make a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : the rabbit dump|dump[EW:dumped] all the sand to (the) : the sandcastle [EU].,and the rabbit dump all the sand to the the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : (he is) (he) that accidentally[?] [~__pronounced_'sadently'] (um) : broke (his) (the dog/z) : the dog[EW:dog/z] : sandcastle.,and he is he that accidentally um broke his the dog's the dog sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : (he) : the dog never[-:] (um) make|make[EW:made] a sandcastle.,and he the dog never um make a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and he cry/ed.,and he cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and there[EW:the] bunny rabbit : (um) : be[EW:was] sorry (that he).,and there bunny rabbit um be sorry that he +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,one day (um) : a dog : say|say[EW:said] (um) hello to the rabbit.,one day um a dog say um hello to the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(an) and : he : you want to[:_wanna] come with me [EU]?,an and he you want to come with me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,he said yes.,he said yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and the rabbit *was so hungry to eat [EU].,and the rabbit so hungry to eat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and (the um) the dog : saw him eat/ing : very good.,and the um the dog saw him eating very good +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and[-:] the rabbit is very full.,and the rabbit is very full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : the : dog is : (very) eat/ing his sandwich and : his[-:] apple juice.,and the dog is very eating his sandwich and his apple juice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : the dog eat|eat[EW:ate] his : sandwich and (his) : his apple juice.,and the dog eat his sandwich and his his apple juice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : the rabbit : is very full.,and the rabbit is very full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and one day (um the) : the dog (um) went by with : the (um) rabbit.,and one day um the the dog um went by with the um rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : the rabbit is lay/ing down and : saw the doctor.,and the rabbit is laying down and saw the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and one day (um) : the doctor (went) : went close to the rabbit.,and one day um the doctor went went close to the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(and) : and : the dog pull/ed the (um) lady : to the rabbit.,and and the dog pulled the um lady to the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and (one) : the rabbit said : you are very sick.,and one the rabbit said you are very sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : you are full[-:].,and you are full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and that is it [+_bch].,and that is it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and the (um) rabbit (went to the um) : went to the doctor (w) and get[EW:got] something.,and the um rabbit went to the um went to the doctor w and get something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and the dog : said (um) : come back too soon [EU].,and the dog said um come back too soon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(um) : one day (um) the dog : seed|see[EW:saw] the rabbit and went to closer : and seed|see[EW:saw] the balloon [EU].,um one day um the dog seed the rabbit and went to closer and seed the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : he said : I want that balloon.,and he said I want that balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : (he said um) the dog said : (um) : yes if you (want to) want to[:_wanna] see it.,and he said um the dog said um yes if you want to want to see it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and the : dog (said) he yell/3s.,and the dog said he yells +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and the rabbit (um : um) take[EW:took] the balloon : off and see|see[EW:saw] the balloon.,and the rabbit um um take the balloon off and see the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : that is it [+_bch].,and that is it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and the (um) dog said (um) : my balloon is (um) : flied[EW:flying].,and the um dog said um my balloon is um flied +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : the rabbit can not (reas) reach it.,and the rabbit can not reas reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and one day (the) : (the) : the dog is very angry.,and one day the the the dog is very angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and (the um) : the rabbit is so : sorry to get the balloon up there.,and the um the rabbit is so sorry to get the balloon up there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and the dog said he is very angry.,and the dog said he is very angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and (the) : (um : the) : the rabbit went : closer (get the) buy (uh) : a balloon [EU].,and the um the the rabbit went closer get the buy uh a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and (he said) (the) (the rab) [~_no] the dog is wait/ing for (the balloon) his balloon.,and he said the the rab the dog is waiting for the balloon his balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and the : rabbit said I want that balloon.,and the rabbit said I want that balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,then you have to buy it.,then you have to buy it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : (I do not have) (I do not have) it is : five cent/s.,and I do not have I do not have it is five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and I no have money [EU].,and I no have money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : sorry (you have) you do not have money.,and sorry you have you do not have money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and the dog went (do um) close.,and the dog went do um close +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : that is no[EW:not] fair.,and that is no fair +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and (the um) : (the lady doctor) (she) (she went) the rabbit went : closer (with the) (talk) talk to the : lady [EU].,and the um the lady doctor she she went the rabbit went closer with the talk talk to the lady +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(you) (you) *will you buy a : balloon for me and[-:] the dog too [EU]?,you you you buy a balloon for me and the dog too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : I want a balloon.,and I want a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(an) and I do not have money.,an and I do not have money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,it is five cent/s.,it is five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and (the) : that is it [+_bch].,and the that is it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and (the) : the : lady : give|give[EW:gave] two : five cent/s for the man.,and the the lady give two five cents for the man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,(the) : and : (the) the dog and the rabbit want (two[-:]) : two balloon/s.,the and the the dog and the rabbit want two two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and (I) I like my balloon.,and I I like my balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and me too!,and me too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/673.slt,and : (I) : thank you for buy/ing the balloon[EW:balloons] for us.,and I thank you for buying the balloon for us +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,I see : (a) a camel.,I see a a camel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,And I see an elephant bounce/ing a ball really fast.,And I see an elephant bouncing a ball really fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,[~_!_Coughs] That hurt/3s my voice when I do that [+_bch].,That hurts my voice when I do that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,And the ball got stuck in the beach.,And the ball got stuck in the beach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,And the camel was swim/ing for it.,And the camel was swimming for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,That is pretty silly.,That is pretty silly +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,And the camel got the ball.,And the camel got the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,(And she) and the elephant was so happy to have her ball back.,And she and the elephant was so happy to have her ball back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,I did it [+_bch].,I did it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,they are go/ing in the water.,they are going in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and she want/3s to just dive in.,and she wants to just dive in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,she slip/ed[!] : and hurt her knee.,she slipped and hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,(and) and the camel got another elephant.,and and the camel got another elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and (the other) the boy elephant put a bandaid on.,and the other the boy elephant put a bandaid on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,then the girl elephant was better.,then the girl elephant was better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and the boy elephant said do not slip again.,and the boy elephant said do not slip again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,The boy camel had a[EW:an] airplane.,The boy camel had a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,He made funny noise/s with it though.,He made funny noises with it though +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,And then the girl elephant took it away from him.,And then the girl elephant took it away from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,And then she drop/ed it in the water.,And then she dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,And then the : camel was mad !,And then the camel was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,And then : the boy camel got this elephant to get it.,And then the boy camel got this elephant to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,[~_coughs] (And the) and the girl elephant explain/ed what happen/ed.,And the and the girl elephant explained what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and then he dived|dive[EW:dove] in to get it.,and then he dived in to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,but he did not get it.,but he did not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and then the boy camel got another girl camel to fetch it with something.,and then the boy camel got another girl camel to fetch it with something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and she got[!] it.,and she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and there was his plane.,and there was his plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,he was happy again !,he was happy again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and then he : like/ed it so much.,and then he liked it so much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,The end [+_bch].,The end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,I see a rabbit and a dog build/ing a sandcastle.,I see a rabbit and a dog building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and the rabbit is build/ing a sand block[!] castle.,and the rabbit is building a sand block castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and the rabbit dump/ed[!] it on the sandcastle.,and the rabbit dumped it on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and then the sandcastle did not look like one no[EW:any] more.,and then the sandcastle did not look like one no more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and then the : dog try/ed to build it all over again.,and then the dog tried to build it all over again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,they are fetch/ing some food and basket/s.,they are fetching some food and baskets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and the rabbit caught : (a) : a carrot and : a big long thing.,and the rabbit caught a a carrot and a big long thing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and the rabbit was too full from all that.,and the rabbit was too full from all that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and then all that food made him so dizzy.,and then all that food made him so dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and then the dog[-:] went to get : the mother rabbit.,and then the dog went to get the mother rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and the dog was pull/ing the mother rabbit.,and the dog was pulling the mother rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,[~!_laughs] that is so silly.,that is so silly +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and then the mother rabbit saw that : (his) her son was so dizzy.,and then the mother rabbit saw that his her son was so dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and then (sh) the : mother rabbit bring|bring[EW:brought] him with her.,and then sh the mother rabbit bring him with her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,the boy[-:] dog[-:] was push/ing (the) this with a balloon on it.,the boy dog was pushing the this with a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and the rabbit was try/ing to get it off.,and the rabbit was trying to get it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,but no way.,but no way +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,the dog did not let him.,the dog did not let him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,(and he) and the rabbit was tie/ing it off.,and he and the rabbit was tying it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and the : dog was so scare/ed (that) (that it would just).,and the dog was so scared that that it would just +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,I will rope it off.,I will rope it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and it float/ed away.,and it floated away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and then the dog was mad[-:][!].,and then the dog was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and the rabbit was hold/ing a whole[-:] bunch of them.,and the rabbit was holding a whole bunch of them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and he point/ed right[!] at the same one he had.,and he pointed right at the same one he had +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,: (it) but it was too much money.,it but it was too much money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,but he want/ed to pick one what was the same : money as the other[!] one was.,but he wanted to pick one what was the same money as the other one was +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,(and he) and he did not get one.,and he and he did not get one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and the rabbit was say/ing his mother to : buy him : the same one [EU].,and the rabbit was saying his mother to buy him the same one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and the : son rabbit was point/ing right[-:] at this balloon.,and the son rabbit was pointing right at this balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,(and) and she had enough money to buy[!] him one.,and and she had enough money to buy him one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,and then they both[!] got one.,and then they both got one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/509.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the alligator and : the elephant (has) : have some ball/s.,the alligator and the elephant has have some balls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,one ball went in the swimming pool.,one ball went in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and they are look/ing at it.,and they are looking at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,(th) the : alligator is try/ing to get the ball.,th the alligator is trying to get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the elephant is[-:] close/ing her eye/s.,and the elephant is closing her eyes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the elephant got her ball.,the elephant got her ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the (al) alligator is climb/ing back up.,and the al alligator is climbing back up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,is what ?,is what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,I did not hear the word.,I did not hear the word +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,is climb/ing back up [+_bch].,is climbing back up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,(the alligator : and the elephant : w) the alligator was smile/ing.,the alligator and the elephant w the alligator was smiling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the elephant was not.,and the elephant was not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the elephant gots|get[EW:got] the ball.,and the elephant gots the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,(uh) : the sign say/3s no : run/ing.,uh the sign says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the elephant (i) and the alligator are happy.,and the elephant i and the alligator are happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the elephant is tell/ing the alligator look over there.,the elephant is telling the alligator look over there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,there is a jump/ing : thing.,there is a jumping thing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,(and they are) : and they are walk/ing towards it.,and they are and they are walking towards it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the elephant is run/ing.,the elephant is running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the alligator is walk/ing.,and the alligator is walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the elephant got an[EW:a]: bruise.,the elephant got an bruise +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the alligator is sad.,and the alligator is sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,(the alligator) : the elephant (um : and to) and the grownup elephant came and : help/ed the baby elephant.,the alligator the elephant um and to and the grownup elephant came and helped the baby elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and : the alligator is look/ing.,and the alligator is looking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the big elephant putted|put[EW:put] a bandage on.,the big elephant putted a bandage on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the other elephant is cry/ing.,and the other elephant is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the alligator is sad.,and the alligator is sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the (um e) elephant is sit/ing on a bench : because (she got) she can not walk because she gots[EW:has] an owie.,the um e elephant is sitting on a bench because she got she can not walk because she gots an owie +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and (um) : the elephant is[-:] : carry/ing her.,and um the elephant is carrying her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the : alligator is help/ing.,and the alligator is helping +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the elephant : is talk|talk[EW:talking] to the girl.,the elephant is talk to the girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,(um) the alligator and the elephant are smile/ing.,um the alligator and the elephant are smiling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the alligator (i) has (a : pape) : (a paper) a toy airplane.,the alligator i has a pape a paper a toy airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the elephant is look/ing at it.,and the elephant is looking at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the elephant took it away from the alligator.,the elephant took it away from the alligator +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the alligator say/3s hey!,and the alligator says hey +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and then : (she) : she is play/ing with it.,and then she she is playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and then the alligator is mad because she drop/ed it in the swimming pool.,and then the alligator is mad because she dropped it in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the elephant said : I do|do[EW:did] not mean to.,and the elephant said I do not mean to +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and then the alligator got really mad.,and then the alligator got really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,then the grownup elephant said what are you kid/s still do/ing here?,then the grownup elephant said what are you kids still doing here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and then the alligator and the : elephant is[EW:are] [-:] : mad.,and then the alligator and the elephant is mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the elephant is talk/ing loud to the big elephant.,the elephant is talking loud to the big elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the alligator is watch/ing.,and the alligator is watching +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the big elephant is try/ing to get it.,the big elephant is trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,(and) but he can not.,and but he can not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,so : they are mad.,so they are mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the big elephant is : mad[-:] also because he can not reach it.,the big elephant is mad also because he can not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and : the alligator is : cry/ing.,and the alligator is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and : the elephant is : sad.,and the elephant is sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,(the ele) (the ele um) the : little elephant is : take/ing a rod to : pull it in.,the ele the ele um the little elephant is taking a rod to pull it in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and : the alligator : and the (two : um) : two : elephant/s are : watch/ing with the alligator.,and the alligator and the two um two elephants are watching with the alligator +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,she pull/ed it in.,she pulled it in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the alligator was happy with the other/s.,and the alligator was happy with the others +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and when she gaved|give[EW:gave] it back to the alligator (sh) the alligator was happy.,and when she gaved it back to the alligator sh the alligator was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the alligator : and the : elephant live/ed happily ever after.,and the alligator and the elephant lived happily ever after +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,there is[-:] the bunny and a dog make/ing a castle.,there is the bunny and a dog making a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,there is : the dog and bunny : (make/ing) (make/ing) : make/ing it bigger.,there is the dog and bunny making making making it bigger +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,there is the bunny and : the dog (um) : dump/ing sand on it.,there is the bunny and the dog um dumping sand on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the bunny is mad because the dog broke the castle.,the bunny is mad because the dog broke the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the dog is try/ing to help build it.,the dog is trying to help build it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,there is : the dog and bunny go/ing on a (picnit) picnic.,there is the dog and bunny going on a picnit picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the bunny is eat/ing a sandwich and carrot.,the bunny is eating a sandwich and carrot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the dog (s) : has[-:] a sandwich.,and the dog s has a sandwich +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the dog is eat/ing a sandwich and have/ing some juice.,the dog is eating a sandwich and having some juice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and[-:] the bunny is lay/ing down.,and the bunny is laying down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the bunny : (i) has a tummyache.,the bunny i has a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the dog is look/ing at him.,and the dog is looking at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,(the) : (the) the dog is run/ing after the bunny.,the the the dog is running after the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the dog got the bunny.,the dog got the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the dog gots[EW:has] [-:] a tummyache.,the dog gots a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the dog and bunny : is[EW:are] walk/ing.,and the dog and bunny is walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,(um the) the dog is pull/ing : (um) : a wagon with a balloon.,um the the dog is pulling um a wagon with a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the bunny is walk/ing : towards him.,and the bunny is walking towards him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,(the) : (the dog : and the ra) the rabbit is : try/ing to get the balloon.,the the dog and the ra the rabbit is trying to get the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the dog is look/ing.,and the dog is looking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the bunny untie/ed : the balloon.,the bunny untied the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and : the dog is happy.,and the dog is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the balloon went up in the air.,the balloon went up in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,(and the dog is) : and the dog is not happy.,and the dog is and the dog is not happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the bunny is try/ing to get it.,and the bunny is trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the dog is angry and left with his : (um) wagon.,the dog is angry and left with his um wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the (bunny is) : bunny is sad.,and the bunny is bunny is sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,(the) (some) (a guy i) a bunny is sell/ing balloon/s.,the some a guy i a bunny is selling balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the dog and : the bunny are go/ing towards him.,and the dog and the bunny are going towards him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the[-:] bunny is buy/ing : some balloon/s.,the bunny is buying some balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the dog is wait/ing.,and the dog is waiting +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,(the bunny : is) : the big bunny is say/ing : it cost five cent/s.,the bunny is the big bunny is saying it cost five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and : the : bunny (s) : do/3s not have any money.,and the bunny s does not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and[-:] the : dog is come/ing.,and the dog is coming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,(the bunny) : the dog and bunny are not happy.,the bunny the dog and bunny are not happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the : big bunny is : hold/ing the balloon/s.,and the big bunny is holding the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the puppy and (big um) : big (uh) : guy is : hold/ing the balloon/s.,the puppy and big um big uh guy is holding the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,one balloon is going up in the air.,one balloon is going up in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the bunny is walk/ing toward/3s a grownup.,and the bunny is walking towards a grownup +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the : bunny is tell/ing the grownup look over there.,the bunny is telling the grownup look over there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and the dog and : the (b) other bunny is : wait/ing.,and the dog and the b other bunny is waiting +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,(the : big) the : dog and bunny are happy because they got two balloon/s.,the big the dog and bunny are happy because they got two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,and : the grownup is pay/ing.,and the grownup is paying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/732.slt,the grownup (s) : is mad because they just : want/ed him to buy a balloon.,the grownup s is mad because they just wanted him to buy a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,once : there was an : elephant : play/ing with a ball.,once there was an elephant playing with a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,the ball fell into the pool.,the ball fell into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,horse (went and) went and get|get[EW:got] it : for : elephant.,horse went and went and get it for elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,she said thank you.,she said thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,my hero.,my hero +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,once there was an elephant who want/ed to go swim/ing.,once there was an elephant who wanted to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,and she : said I was go/ing to [~_gonna] go to the diving board.,and she said I was going to go to the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,she was run/ing.,she was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,and she slip/ed.,and she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,and she : had an owee[-:].,and she had an owee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,the coach came : and gave her a[-:] : bandaid.,the coach came and gave her a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,so[-:] he put it on.,so he put it on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,and she was scare/ed it was go/ing to [~_gonna] be hurt/ing a lot.,and she was scared it was going to be hurting a lot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,see : it does not hurt.,see it does not hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,can not you see the sign no run/ing.,can not you see the sign no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,once there was a[-:] : (um) : a giraffe play/ing with : his plane.,once there was a um a giraffe playing with his plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,there was an elephant.,there was an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,can I see your plane?,can I see your plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,he said okay hold on.,he said okay hold on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,(I) I want to : test flied|fly[EW:fly] it.,I I want to test flied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,she just snatch/ed[!] it away.,she just snatched it away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,(it fl) it went into the pool.,it fl it went into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,giraffe was very angry[!] with her.,giraffe was very angry with her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,coach (came) : came : and see|see[EW:saw] : what happen/ed.,coach came came and see what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,(he) : he said : (uh) : giraffe was play/ing with (her boat) (um) : his[-:] plane.,he he said uh giraffe was playing with her boat um his plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,and : I snatch/ed it.,and I snatched it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,and then it flew into the : pool.,and then it flew into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,coach try/ed to get it.,coach tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,but he was too short.,but he was too short +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,he could not (g) get it.,he could not g get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,giraffe start/ed to cry.,giraffe started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,[~_sighs] there was a girl : who got a fish/ing net.,there was a girl who got a fishing net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,and : she took it out.,and she took it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,she got the plane : and then give|give[EW:gave] it to giraffe.,she got the plane and then give it to giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,and : (h) he : hug/ed the plane.,and h he hugged the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,one time there was : a dog and a rabbit : play/ing together.,one time there was a dog and a rabbit playing together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,they were build/ing a sandcastle.,they were building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,and the rabbit : put sand : on the castle.,and the rabbit put sand on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,and : turn the page [+_bch].,and turn the page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,and then it broke.,and then it broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,and then the dog try/ed to : fix it.,and then the dog tried to fix it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,and the : bunny was just : (s) (s) stand/ing.,and the bunny was just s s standing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,one time there was : a dog and a bunny.,one time there was a dog and a bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,they were have/ing a picnic.,they were having a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,the bunny ate all[-:] the food.,the bunny ate all the food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,and (he) : (he) he got full.,and he he he got full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,he got a stomachache : by eat/ing all the food.,he got a stomachache by eating all the food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,he feeled|feel[EW:felt] dizzy[!].,he feeled dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,and the dog : call/ed : (a den) a doctor.,and the dog called a den a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,and the doctor : came!,and the doctor came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,the dog was pull/ing : (her) : the shirt of the doctor/z [EU].,the dog was pulling her the shirt of the doctor's +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,the doctor say/3s : go look if : there is something.,the doctor says go look if there is something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,get me that : (um) stick.,get me that um stick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,he was all better.,he was all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,one time : a bunny said hi dog.,one time a bunny said hi dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,and : dog had a wagon : and (a) : a balloon attach/ed to it.,and dog had a wagon and a a balloon attached to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,hey : do you have a balloon : (s) said rabbit?,hey do you have a balloon s said rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,yes.,yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,rabbit (uh) want/ed to took[EW:take] it off : by : (um) : tie/ing : off the knot.,rabbit uh wanted to took it off by um tying off the knot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,it flew up and up and up.,it flew up and up and up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,dog got : very very angry[!].,dog got very very angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,and rabbit saw more balloon/s.,and rabbit saw more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,and : rabbit want/ed to buy her one.,and rabbit wanted to buy her one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,he said can I have one of those balloon/s?,he said can I have one of those balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,five dollar/s please.,five dollars please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,he did not have : money.,he did not have money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,so : (he is) : the balloon keeper said to go find money.,so he is the balloon keeper said to go find money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,(and go : buy um) : then you can buy a balloon.,and go buy um then you can buy a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,(he) : rabbit : came to a doctor.,he rabbit came to a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,and he said : I want a balloon.,and he said I want a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,I need five dollar/s.,I need five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,so : the doctor gave the : balloon keeper some money[!].,so the doctor gave the balloon keeper some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/620.slt,and then they both[!] got balloon/s.,and then they both got balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,It is a[EW:an] elephant play/ing ball.,It is a elephant playing ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,: she threw the ball in the water.,she threw the ball in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,: the giraffe : try/3s to get it.,the giraffe tries to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the giraffe got the ball for the elephant.,the giraffe got the ball for the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,(the) the elephant say/3s thank you.,the the elephant says thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,They are look/ing at the water.,They are looking at the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the elephant want/3s to go in.,the elephant wants to go in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,she walk/3s away.,she walks away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,and the giraffe follow/3s her.,and the giraffe follows her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,she was run/ing.,she was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,and she slip/ed on her knee.,and she slipped on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,she got hurt.,she got hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,another elephant came and put a bandaid on her.,another elephant came and put a bandaid on her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,and then the elephant said do not run any more.,and then the elephant said do not run any more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,you should not run.,you should not run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,or else you will slip and fall and hurt your knee again.,or else you will slip and fall and hurt your knee again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,(They) : the giraffe brought a helicopter to the pool.,They the giraffe brought a helicopter to the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,he want/3s to fly it.,he wants to fly it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the elephant take/3s it away from the giraffe.,the elephant takes it away from the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the elephant drop/3s it in the water.,the elephant drops it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the giraffe get/3s mad at the elephant.,the giraffe gets mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the lifeguard come/3s.,the lifeguard comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the elephant say/3s I accidentally drop/ed the : plane in the water.,the elephant says I accidentally dropped the plane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the lifeguard try/3s to get it.,the lifeguard tries to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,but he can not reach.,but he can not reach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the giraffe start/3s to cry.,the giraffe starts to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,another girl elephant come/3s.,another girl elephant comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,and she has a net.,and she has a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,she will try to catch the plane.,she will try to catch the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,she got the plane.,she got the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,she gave it to the giraffe.,she gave it to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the giraffe said thank you.,the giraffe said thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,and : then the giraffe said (do not throw it) do not throw it in the water again.,and then the giraffe said do not throw it do not throw it in the water again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,and do not grab it from me again.,and do not grab it from me again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,a dog is play/ing in a sandbox.,a dog is playing in a sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,a rabbit come/3s.,a rabbit comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the rabbit want/3s to help.,the rabbit wants to help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the rabbit throw/3s sand in the castle.,the rabbit throws sand in the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the rabbit say/3s uhoh.,the rabbit says uhoh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,and then the dog start/3s to cry.,and then the dog starts to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,The rabbit come/3s walk/ing with a picnic basket.,The rabbit comes walking with a picnic basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,and the dog : (s) saw him and said hi.,and the dog s saw him and said hi +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,they have[EW:had] : a picnic together.,they have a picnic together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the rabbit is fat.,the rabbit is fat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,and the dog is : not fat [~_laughs].,and the dog is not fat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the rabbit start/3s to get a stomachache.,the rabbit starts to get a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the dog run/3s to (a rabbit) another rabbit : and say/3s : my friend rabbit (is) has a big stomachache [~_pronounced_'stomyache'].,the dog runs to a rabbit another rabbit and says my friend rabbit is has a big stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,so she pull/3s (the rabb) the girl rabbit : and say/3s come.,so she pulls the rabb the girl rabbit and says come +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,(the rabbit) : the girl rabbit said (the boy) the little boy rabbit ate too much.,the rabbit the girl rabbit said the boy the little boy rabbit ate too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,after she help/ed it the rabbit felt all better.,after she helped it the rabbit felt all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,The dog is : pull/ing a wagon with a balloon on it.,The dog is pulling a wagon with a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the rabbit come/3s run/ing.,the rabbit comes running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the rabbit say/3s that is a nice balloon.,the rabbit says that is a nice balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the rabbit take/3s it off.,the rabbit takes it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,and the dog say/3s do not!,and the dog says do not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the balloon fly/3s up into the air.,the balloon flies up into the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the dog get/3s really mad at the rabbit.,the dog gets really mad at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,a big bunny come/3s.,a big bunny comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,and : the rabbit see/3s him.,and the rabbit sees him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,and the little bunny say/3s : can I have a balloon?,and the little bunny says can I have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the man said : sorry.,the man said sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,but the balloon/s cost five cent/s.,but the balloons cost five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,and then the dog come/3s.,and then the dog comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,then (a lady) a lady : bunny : is stand/ing near them.,then a lady a lady bunny is standing near them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the rabbit say/3s there is[EW:are] balloon/s.,the rabbit says there is balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,they cost five cent/s.,they cost five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,could you buy one?,could you buy one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,the lady bought two of them.,the lady bought two of them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/813.slt,they both had two balloon/s.,they both had two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,One day a : guy was bounce/ing : a bouncy ball : with his friend.,One day a guy was bouncing a bouncy ball with his friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,they were by[-:] a pool.,they were by a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,and it fell in the pool.,and it fell in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,one guy went to swim for it.,one guy went to swim for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,he got the ball.,he got the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,and they were very happy.,and they were very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,(um : then : ah :) then : she[-:] : let her friend try her[?].,um then ah then she let her friend try her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,One[-:] day two friend/s went swim/ing.,One day two friends went swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,they jump/ed in the pool.,they jumped in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,but before they jump/ed (they slip/ed) one slip/ed : and hurt her knee.,but before they jumped they slipped one slipped and hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,the other friend went got a lifeguard.,the other friend went got a lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,and the lifeguard came and help/ed.,and the lifeguard came and helped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,the lifeguard put a bandaid on it.,the lifeguard put a bandaid on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,and (she) (she) : she was better.,and she she she was better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,then the lifeguard said (no) : no run/ing.,then the lifeguard said no no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,One day a friend had[-:] his[-:] remote control airplane.,One day a friend had his remote control airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,he turn/ed it on.,he turned it on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,(and it) : and it went : all over the place.,and it and it went all over the place +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,his friend caught it.,his friend caught it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,and then it slip/ed and fell in the pool.,and then it slipped and fell in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,the guy was very mad : because it was new.,the guy was very mad because it was new +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,the (l) : lifeguard (um) got mad kind of too.,the l lifeguard um got mad kind of too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,she told the story.,she told the story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,"and then[-:] (he) : he[-:] (ah) [~_sighs,_says_oops] thought it was okay.",and then he he ah thought it was okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,he : try/ed to grab the : airplane out of the water.,he tried to grab the airplane out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,they could not get it.,they could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,: a lady had a net.,a lady had a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,and she was go/ing to : get it with the net.,and she was going to get it with the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,she got it.,she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,she gave the (ai) : remote control airplane to : the owner.,she gave the ai remote control airplane to the owner +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,the owner was happy that : he had his airplane back.,the owner was happy that he had his airplane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,(um) one[-:] day two friend/s (went : and) : (w) went to play in their sandbox.,um one day two friends went and w went to play in their sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,they built a sandcastle.,they built a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,(um : the um : th) they pour/ed sand on it.,um the um th they poured sand on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,it fell down.,it fell down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,and[-:] : they were sad.,and they were sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,(they try/ed) one of them try/ed to build another : sandcastle.,they tried one of them tried to build another sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,one day two friend/s : went on a picnic.,one day two friends went on a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,they had : lot/s of yummy : food/s.,they had lots of yummy foods +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,when they were finish/ed they were (s) really full.,when they were finished they were s really full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,and[-:] : they could not eat any more.,and they could not eat any more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,(and then : he f) (the) they were too full.,and then he f the they were too full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,they fell down.,they fell down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,and then[-:] they found a doctor.,and then they found a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,they ask/ed the doctor to help.,they asked the doctor to help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,the doctor help/ed : them : get better.,the doctor helped them get better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,and they were all better [+_bch].,and they were all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,one day : (um) : a guy[-:] was walk/ing.,one day um a guy was walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,and he saw his friend.,and he saw his friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,(he) he had a balloon.,he he had a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,so (he sh) he show/ed it to his friend.,so he sh he showed it to his friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,his friend like/ed it.,his friend liked it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,and then he untie/ed it.,and then he untied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,and it flew : away.,and it flew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,(they) (he) the : guy who had the balloon was mad : because his balloon flew away.,they he the guy who had the balloon was mad because his balloon flew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,but then he saw : a[-:] person sell/ing balloon/s.,but then he saw a person selling balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,he ask/ed if he could (had) have a balloon.,he asked if he could had have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,he paid (the doll) : the money and took the balloon.,he paid the doll the money and took the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,: (hm : um) : it flew away.,hm um it flew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,so : they had to go back.,so they had to go back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,they got another balloon and : saw[-:] another person.,they got another balloon and saw another person +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,: (uh) : they[-:] : show/ed the person the balloon/s.,uh they showed the person the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,she bought a balloon too.,she bought a balloon too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,and she bought them for those people.,and she bought them for those people +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/915.slt,and : they were happy.,and they were happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,(uh) an elephant has a bathing suit on.,uh an elephant has a bathing suit on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and : she is bounce/ing a ball.,and she is bouncing a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and there is a giraffe too.,and there is a giraffe too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,: and[-:] (uh) the elephant/z : ball fall/3s in the : pool.,and uh the elephant's ball falls in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and they (uh) have (like) a (like) go/ing like : thing [~_child_opens_mouth] [EU].,and they uh have like a like going like thing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,"like open/ing their mouth, [~_CHI:_yeah] oh.",like opening their mouth oh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and (uh) the giraffe is swim/ing to get the ball.,and uh the giraffe is swimming to get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and he get/3s it for (um) the elephant in the bathing suit.,and he gets it for um the elephant in the bathing suit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and (uh) she is happy.,and uh she is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,(um) it is the elephant and the giraffe again.,um it is the elephant and the giraffe again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and they are stand/ing by the pool.,and they are standing by the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,(uh) and it say/3s (no[-:]) no run/ing.,uh and it says no no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,: but (uh she) (she) she was run/ing.,but uh she she she was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,: then she slip/ed.,then she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and she get/3s away with it.,and she gets away with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and then the giraffe is run/ing after her.,and then the giraffe is running after her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and then she got (hu) a hurt on her knee.,and then she got hu a hurt on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and the giraffe keep/3s on run/ing : to see her.,and the giraffe keeps on running to see her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,"and a lifeguard come/3s, an elephant one [~_an_elephant_lifeguard].",and a lifeguard comes an elephant one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and on it/z teeshirt it say/3s lifeguard.,and on it's teeshirt it says lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and he put/3s a bandage on it.,and he puts a bandage on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,: and they carry her to a bench.,and they carry her to a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,: and the lifeguard is show/ing her the sign that says no run/ing.,and the lifeguard is showing her the sign that says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,the[-:] elephant is talk/ing to[-:] the giraffe friend.,the elephant is talking to the giraffe friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and : he has a[EW:an] airplane.,and he has a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and I think that the elephant want/3s to play with it.,and I think that the elephant wants to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,(um : the gir) the giraffe is make/ing (it uh) (his thing uh) his airplane fly around.,um the gir the giraffe is making it uh his thing uh his airplane fly around +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,: and (uh) the elephant girl just grab/3s it.,and uh the elephant girl just grabs it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,: and she drop/3s it in the water.,and she drops it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and[-:] the giraffe is mad : and angry.,and the giraffe is mad and angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,the lifeguard come/3s in the other story.,the lifeguard comes in the other story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,he try/3s to catches[EW:catch] it.,he tries to catches it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,but he can not : (um) because it is too far away.,but he can not um because it is too far away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,: and the giraffe is cry/ing.,and the giraffe is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and then (ca) here come/3s another lifeguard : except she is a girl with hair.,and then ca here comes another lifeguard except she is a girl with hair +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,: and she use/3s her net to get it.,and she uses her net to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and she give/3s it to the giraffe.,and she gives it to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and he is happy.,and he is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,: and the girl elephant is happy too.,and the girl elephant is happy too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,(um there is) I think it is a dog and a rabbit.,um there is I think it is a dog and a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and the dog is build/ing a sandcastle.,and the dog is building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and[-:] the rabbit is go/ing to help her.,and the rabbit is going to help her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,(he) : (he um) his bucket is full of sand.,he he um his bucket is full of sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and he throw/3s it on top.,and he throws it on top +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and : the dog look/3s worry/ed.,and the dog looks worried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and it break/3s.,and it breaks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and[-:] she is cry/ing.,and she is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and she is try/ing to build it again.,and she is trying to build it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,(um) the dog and the rabbit are go/ing for a picnic.,um the dog and the rabbit are going for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and the rabbit eat/s too much food.,and the rabbit eats too much food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,he has a tummyache.,he has a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,: (uh) he do/3s not feel really good.,uh he does not feel really good +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,(uh) the dog is go/ing to : get the doctor that is walk/ing on the road.,uh the dog is going to get the doctor that is walking on the road +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and she is a rabbit.,and she is a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and she (um) quickly pull/3s her : over to the other rabbit.,and she um quickly pulls her over to the other rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and she check/3s him.,and she checks him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and then I think (uh) she is go/ing to [~_gonna] take him to the hospital.,and then I think uh she is going to take him to the hospital +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,(um the girl) the dog : she (s um) has a wagon.,um the girl the dog she s um has a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and there is a balloon tie/ed to it.,and there is a balloon tied to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and (the bu) the bunny come/3s along.,and the bu the bunny comes along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,he want/3s to hold the balloon.,he wants to hold the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and[-:] : he take/3s it off.,and he takes it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and it fly/3s[-:] away.,and it flies away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and the dog is really mad.,and the dog is really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,(um he is) the rabbit see/3s a (um) rabbit with balloon/s for sale.,um he is the rabbit sees a um rabbit with balloons for sale +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,(but they are) he ask/s for some.,but they are he asks for some +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,but they are (five[-:] ) : five cent/s each.,but they are five five cents each +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and he do/3s not have any money.,and he does not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,he run/3s to see the doctor that help/ed him before.,he runs to see the doctor that helped him before +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,she pay/3s.,she pays +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and (they ge) (she pay/3s sh um) the rabbit (uh) ask/3s her.,and they ge she pays sh um the rabbit uh asks her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and she pay/3s for one each.,and she pays for one each +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and[-:] the kid/3s are really happy.,and the kids are really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/706.slt,and so is the doctor.,and so is the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,once upon a time there was a[EW:an] elephant and a giraffe.,once upon a time there was a elephant and a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,they were bounce/ing ball/s.,they were bouncing balls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,the ball got in the mud.,the ball got in the mud +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,a[?] horse swam in the mud to get it.,a horse swam in the mud to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,thank you cry/ed the elephant.,thank you cried the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,I love you.,I love you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,once upon a time they saw a diving_board.,once upon a time they saw a diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,they decid/ed if they want/ed to go on.,they decided if they wanted to go on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,lookit there is a diving_board.,lookit there is a diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,ooh and she almost fell in.,ooh and she almost fell in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,ouch she stub/ed her knee.,ouch she stubbed her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,(the) (the) the teacher that own/ed that place came to help.,the the the teacher that owned that place came to help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,owie owie.,owie owie +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,are you okay?,are you okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,let me help.,let me help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,and (you are) I am angry at you.,and you are I am angry at you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,once upon a time there was a[EW:an] elephant and a giraffe.,once upon a time there was a elephant and a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,you want to [~_wanna] go swim cry/ed the giraffe?,you want to go swim cried the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,lookit I got a[EW:an] airplane.,lookit I got a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,[~_high_pitched_voice] oh no the airplane is going blast off!,oh no the airplane is going blast off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,oh no it got wreck/ed.,oh no it got wrecked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,[~_growl_sound]., +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,[~_deep_voice] what did I tell you?,what did I tell you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,[~_high_pitched_voice] but it was not my : do[?] [EU].,but it was not my do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,[~_high_pitched_voice] it just flew off by itself.,it just flew off by itself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,[~_sound_effects] he is try/ing to get it.,he is trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,[~_high_pitched_voice] it is sink/ing!,it is sinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,[~_high_pitched_voice] it is sink/ing!,it is sinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,[~_crying_sounds] well I can go get it.,well I can go get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,(that is him mama) that is his mama.,that is him mama that is his mama +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,do some kid/s (leave) (left) leave their sticker/s [+_bch]?,do some kids leave left leave their stickers +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,no they all take them.,no they all take them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,I got it.,I got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,[~_high_pitched_voice] thank you.,thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,you are welcome.,you are welcome +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,[~_high_pitched_voice] (hm) I love you.,hm I love you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,that is the end [+_bch].,that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,once upon a time there was a dog and a rabbit.,once upon a time there was a dog and a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,they were play/ing in the sand.,they were playing in the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,maybe you can speak up a little louder.,maybe you can speak up a little louder +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,they put sand (in the) into : a bucket.,they put sand in the into a bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,and they made (a sa) a sandcastle.,and they made a sa a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,they put the window on and the flag on.,they put the window on and the flag on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,the castle got wreck/ed.,the castle got wrecked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,the dog had to fix it.,the dog had to fix it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,but it was too late.,but it was too late +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,(it did not) it did not get fix/ed.,it did not it did not get fixed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,that is the end [+_bch].,that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,once[EW:one] time : there was : a puppy and a rabbit.,once time there was a puppy and a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,they were go/ing for a picnic.,they were going for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,they met each other.,they met each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,he had : ice cream/s bread : sandwich/s : and all that kind of stuff.,he had ice creams bread sandwiches and all that kind of stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,(he) rabbit ate too much.,he rabbit ate too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,he was get/ing a stomachache.,he was getting a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,but the dog was not.,but the dog was not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,he did not eat so much.,he did not eat so much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,the rabbit got bonk/ed on the head with : a ball.,the rabbit got bonked on the head with a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,(he) the rabbit pretend/ed (he was : a) he was a girl.,he the rabbit pretended he was a he was a girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,come on rabbit shout/ed the dog.,come on rabbit shouted the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,(I should) I should fix you up rabbit.,I should I should fix you up rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,let us go home now.,let us go home now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,and that is the end [+_bch].,and that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,this one/z the rabbit and the dog too [+_bch]?,this one's the rabbit and the dog too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,umhm.,umhm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,one time there was a rabbit : and a dog.,one time there was a rabbit and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,the dog was (p) carry/ing his wagon.,the dog was p carrying his wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,he met the rabbit : come/ing along.,he met the rabbit coming along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,lookit there is a balloon!,lookit there is a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,do not tie it off [EU]!,do not tie it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,and it flew away.,and it flew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,the dog was get/ing mad.,the dog was getting mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,the balloon man he had lot/s of balloon/s.,the balloon man he had lots of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,so he decide/ed to give him another one.,so he decided to give him another one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,I would like a blue one.,I would like a blue one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,[~_deep_voice] do you have any money?,do you have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,[~_high_voice] no I do not.,no I do not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,[~_deep_voice] you are naughty.,you are naughty +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,(they) [~_high_voice] goodbye.,they goodbye +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,(hm) [~_high_voice] mama mama do you have any money?,hm mama mama do you have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,[~_high_voice] I want (a new) another balloon : from that balloon man.,I want a new another balloon from that balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,[~_deep_voice] do you think so[?]?,do you think so +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,[~_high_voice] yes.,yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/439.slt,: and they both got one.,and they both got one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,there is a giraffe and a[EW:an] elephant.,there is a giraffe and a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,the giraffe jump/3s into the water.,the giraffe jumps into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,and he try/3s to get the ball.,and he tries to get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,then : the : giraffe swim/3s over to the elephant.,then the giraffe swims over to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,and the elephant : give/3s the giraffe another ball.,and the elephant gives the giraffe another ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,then[!] : the elephant get/3s her own ball.,then the elephant gets her own ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,there is the giraffe and the elephant.,there is the giraffe and the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,the elephant point/3s to the dive/ing board.,the elephant points to the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,the elephant run/3s to it.,the elephant runs to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,the elephant hurt her knee.,the elephant hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,another elephant come/3s along.,another elephant comes along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,the lifeguard put/3s a bandaid on the elephant.,the lifeguard puts a bandaid on the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,and then the elephant look/3s at it.,and then the elephant looks at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,and then the lifeguard say/3s do not run.,and then the lifeguard says do not run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,the giraffe has a[EW:an] : airplane.,the giraffe has a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,the elephant look/3s at it.,the elephant looks at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,and then the elephant fly/3s it.,and then the elephant flies it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,then : she drop/3s it in the pool.,then she drops it in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,then : she says uhoh.,then she says uhoh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,and the giraffe is very mad.,and the giraffe is very mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,the lifeguard say/3s : uhoh.,the lifeguard says uhoh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,the elephant say/3s : could you get it out?,the elephant says could you get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,the lifeguard try/3s to reach it.,the lifeguard tries to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,: but he could not.,but he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,: then : the giraffe is very sad.,then the giraffe is very sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,and then another elephant come/3s along : with a net.,and then another elephant comes along with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,then she get/3s it.,then she gets it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,then she give/3s it to the giraffe.,then she gives it to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,and the giraffe stop/ed cry/ing.,and the giraffe stopped crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,then (the) the giraffe hug/3s it : because he miss/ed it if it was in the water all the time [EU].,then the the giraffe hugs it because he missed it if it was in the water all the time +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,there is a rabbit look/ing at a dog.,there is a rabbit looking at a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,there is a dog : build/ing a sandcastle.,there is a dog building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,a rabbit is pour/ing the sand onto the sandcastle.,a rabbit is pouring the sand onto the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,and it fall/3s down into a big pile.,and it falls down into a big pile +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,the dog is very sad.,the dog is very sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,there is a dog that see/3s a rabbit.,there is a dog that sees a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,the dog : share/3s his : lunch with the rabbit.,the dog shares his lunch with the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,they have a delightful picnic.,they have a delightful picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,then the rabbit is very full.,then the rabbit is very full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,: the dog : call/3s the doctor.,the dog calls the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,and then the doctor : (um) come/3s to the rabbit.,and then the doctor um comes to the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,and then : the dog pull/3s the doctor really close to the picnic basket.,and then the dog pulls the doctor really close to the picnic basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,and she : look/3s at him.,and she looks at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,and she say/3s : you ate too much food.,and she says you ate too much food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,then : he is all better again.,then he is all better again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,the dog has a balloon (on) on it/z wagon.,the dog has a balloon on on it's wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,the rabbit : grab/3s it.,the rabbit grabs it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,then the rabbit untie/3s it.,then the rabbit unties it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,then the rabbit (let/3s uh) let/3s go of it.,then the rabbit lets uh lets go of it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,then the dog is very mad.,then the dog is very mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,then a : rabbit with a moustache come/3s along.,then a rabbit with a moustache comes along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,then : he give/3s the rabbit a very new balloon.,then he gives the rabbit a very new balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,then he take/3s it : and put/3s it in the rabbit/z hand.,then he takes it and puts it in the rabbit's hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,and then : the : (um) dog is very happy.,and then the um dog is very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,: then there is a doctor.,then there is a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,(um) the rabbit say/3s could you get a balloon?,um the rabbit says could you get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,then she get/3s one.,then she gets one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/443.slt,then : she give/3s it to the rabbit : and then another one to the dog.,then she gives it to the rabbit and then another one to the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,it look/3s like (um) the elephant want/3s a ball.,it looks like um the elephant wants a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,they got a ball.,they got a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,but they got it in the mud.,but they got it in the mud +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,then the giraffe got in the mud.,then the giraffe got in the mud +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,and now (the : um) they got the ball.,and now the um they got the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,and now the giraffe got out of the mud.,and now the giraffe got out of the mud +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,(um) they see (um) a pool.,um they see um a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,they see a pool with a little : place where you jump off : into the pool.,they see a pool with a little place where you jump off into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,she is run/ing.,she is running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,then she skin/ed her knee.,then she skinned her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,then : (um) somebody came : and put a bandaid on it : and sitted|sit[EW:sat] on the bench with her.,then um somebody came and put a bandaid on it and sitted on the bench with her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,and then she feeled|feel[EW:felt] a little[!] bit better.,and then she feeled a little bit better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,it looks like they have a little airplane.,it looks like they have a little airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,and the elephant is happy.,and the elephant is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,(um) the giraffe : have|have[EW:has] it in his hand/s.,um the giraffe have it in his hands +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,then the elephant took it from him.,then the elephant took it from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,she had it.,she had it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,but then she drop/ed it in the water.,but then she dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,then (he) they can not reach it.,then he they can not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,so they are call/ing in their friend.,so they are calling in their friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,their friend can not reach it either.,their friend can not reach it either +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,so they are a little bit disappoint/ed.,so they are a little bit disappointed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,so (their fri) the lifeguard can not reach it.,so their fri the lifeguard can not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,and (they jus) it is a little bit sink/ing.,and they jus it is a little bit sinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,and the lifeguard can not reach it.,and the lifeguard can not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,all of them can not reach it.,all of them can not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,so then (the girl) the elephant got (um) : a net.,so then the girl the elephant got um a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,then she : was try/ing to get it.,then she was trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,then she got it out of the water.,then she got it out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,and then the (um) giraffe was happy.,and then the um giraffe was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,it look/3s like they are make/ing a castle in the sandbox.,it looks like they are making a castle in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,now : the bunny is get/ing a scoop of sand and the : shovel : and is pour/ing it so the castle will break.,now the bunny is getting a scoop of sand and the shovel and is pouring it so the castle will break +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,and the (um) bunny was a little bit angry.,and the um bunny was a little bit angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,so then they start/ed to build it up.,so then they started to build it up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,and : they : did not : do it up well.,and they did not do it up well +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,look/3s like they are walk/ing : to find a good spot for their picnic.,looks like they are walking to find a good spot for their picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,now they are eat/ing their picnic.,now they are eating their picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,then the bunny is a little bit too full.,then the bunny is a little bit too full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,and he feel/3s a little bit sick.,and he feels a little bit sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,he got the doctor.,he got the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,he is pull/ing his coat.,he is pulling his coat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,now : the : (um) doctor is give/ing him some medicine.,now the um doctor is giving him some medicine +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,and now he feel/3s better.,and now he feels better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,look/3s like they are pull/ing a wagon with a balloon.,looks like they are pulling a wagon with a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,now the bunny is a little bit happy.,now the bunny is a little bit happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,now the dog is not that happy.,now the dog is not that happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,the balloon came off.,the balloon came off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,now the dog has : a bow on his tail.,now the dog has a bow on his tail +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,now (the person) there is a person with a hat that has some balloon/s.,now the person there is a person with a hat that has some balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,(and) : and the bunny is say/ing can we please have a balloon?,and and the bunny is saying can we please have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,and : say/3s no.,and says no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,and they are a little bit angry.,and they are a little bit angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,and they got the doctor.,and they got the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,(and the doctor) they said (um) doctor he will not let us have any balloon/s.,and the doctor they said um doctor he will not let us have any balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,so he gave us (oo) some of his money for a balloon.,so he gave us oo some of his money for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/563.slt,and they got a balloon for their wagon.,and they got a balloon for their wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,Once (there) (there w) there was an elephant who was play/ing with a ball.,Once there there w there was an elephant who was playing with a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then the (ba) ball fell : into a pool.,then the ba ball fell into a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then the elephant/z : friend (tr) try/ed to catch the ball.,then the elephant's friend tr tried to catch the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,his friend then got it.,his friend then got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then the elephant : thank/ed : his friend for get/ing his ball.,then the elephant thanked his friend for getting his ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,Once there was an elephant.,Once there was an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,(and) (and) and then (he) he was run/ing.,and and and then he he was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then the elephant accidentally slip/ed.,then the elephant accidentally slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then (he) he start/ed cry/ing because (he) he fell down and bump/ed his knee.,then he he started crying because he he fell down and bumped his knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then his friend (try) try/ed (to) to help him.,then his friend try tried to to help him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then the lifeguard put a bandaid on.,then the lifeguard put a bandaid on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then he felt much better.,then he felt much better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then the lifeguard (sa) told him that there is no run/ing allow/ed.,then the lifeguard sa told him that there is no running allowed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,another elephant story [+_bch].,another elephant story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,another elephant story ?,another elephant story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,"okay, go ahead and begin.",okay go ahead and begin +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,Once there was an elephant.,Once there was an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,the elephant had a (fr) friend that had an airplane that : he like/ed to play with.,the elephant had a fr friend that had an airplane that he liked to play with +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then the elephant just : grab/ed the plane : from : his friend/z hand.,then the elephant just grabbed the plane from his friend's hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then the elephant accidentally drop/ed the plane into the water.,then the elephant accidentally dropped the plane into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,and then his friend got (ve) : very angry at him.,and then his friend got ve very angry at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then the lifeguard : came : and saw that there was : a toy (p) plane (in) in the pool.,then the lifeguard came and saw that there was a toy p plane in in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,(then the l) then the little elephant told the lifeguard what he accidentally did.,then the l then the little elephant told the lifeguard what he accidentally did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then the lifeguard try/ed to get it by (rea) reach/ing (ou) out his hand.,then the lifeguard tried to get it by rea reaching ou out his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then his friend start/ed cry/ing.,then his friend started crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then another elephant came.,then another elephant came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,(a) : and she had : something (that) : (that) that had a handle that was very long.,a and she had something that that that had a handle that was very long +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,and it had : something : like a hooped[EW:hoop] to get the plane.,and it had something like a hooped to get the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then the elephant got it.,then the elephant got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then his friend : was very happy that : he had his plane.,then his friend was very happy that he had his plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then the elephant/z (fr) : friend : start/ed to play (with) (with) with his : plane again.,then the elephant's fr friend started to play with with with his plane again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,once there was a bunny.,once there was a bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,: the bunny was help/ing his friend : make a castle in the sand.,the bunny was helping his friend make a castle in the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then his friend got very worry/ed (be) because the bunny (ha) had been throw/ing sand on his castle.,then his friend got very worried be because the bunny ha had been throwing sand on his castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then his friend was very sad because the bunny had wreck/ed his castle.,then his friend was very sad because the bunny had wrecked his castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then his friend start/ed cry/ing.,then his friend started crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,once there was a bunny.,once there was a bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,(with) and he had a friend.,with and he had a friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,(the) the bunny had (so) so much food that he was so hungry that he start/ed eat/ing already.,the the bunny had so so much food that he was so hungry that he started eating already +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then the bunny was very full.,then the bunny was very full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then the bunny start/ed (f) feel/ing : (a b) a bit dizzy.,then the bunny started f feeling a b a bit dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,(then) : then his friend (found) saw a doctor.,then then his friend found saw a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,and his friend (called the) rush/ed to the doctor : and told the doctor what had happen/ed to the bunny.,and his friend called the rushed to the doctor and told the doctor what had happened to the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,his friend : was pull/ing : the doctor/z : coat : (to try) to try and get him (to) to come and see what had happen/ed to the bunny.,his friend was pulling the doctor's coat to try to try and get him to to come and see what had happened to the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,and then the doctor found out : what had happen/ed (to) to the bunny.,and then the doctor found out what had happened to to the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then the bunny (fel) felt much better.,then the bunny fel felt much better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,once there (wa) was a bunny that had a friend (who was) who was pull/ing a wagon (that) (that) that had a balloon on it.,once there wa was a bunny that had a friend who was who was pulling a wagon that that that had a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,and the bunny love/ed balloon/s.,and the bunny loved balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,so he try/ed to get the balloon.,so he tried to get the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,(then) then the bunny/z : friend (was very) was very (s) worry/ed about (hi) his balloon.,then then the bunny's friend was very was very s worried about hi his balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,the bunny try/ed to get the balloon because it had slip/ed out of his finger/s (and) and float/ed (in) into the air.,the bunny tried to get the balloon because it had slipped out of his fingers and and floated in into the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then his friend got very angry (a) : at the bunny.,then his friend got very angry a at the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then the bunny saw : a man that had (a) lot/s of balloon/s in his hand.,then the bunny saw a man that had a lots of balloons in his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then the bunny told the man which balloon he want/ed.,then the bunny told the man which balloon he wanted +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,: (the) the man : said that (ea) each balloon is five cent/s.,the the man said that ea each balloon is five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then the man just standed|stand[EW:stood] there.,then the man just standed there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,and the bunny/z friend and himself : just look/ed at the balloon/s.,and the bunny's friend and himself just looked at the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then the bunny saw a doctor.,then the bunny saw a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,the bunny said to the (do) doctor that his friend want/ed a balloon (that) that he could not get.,the bunny said to the do doctor that his friend wanted a balloon that that he could not get +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,then (a) the doctor (pay/3s) paid for (the) the balloon/s.,then a the doctor pays paid for the the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/513.slt,(then) then both of them each had one balloon.,then then both of them each had one balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,Me and my friend were play/ing : ball.,Me and my friend were playing ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,[~_laughs] then the ball fell into (the lake or) a swimming pool.,then the ball fell into the lake or a swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,so I jump/ed in to go and get it.,so I jumped in to go and get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and I brang|bring[EW:brought] it back to my friend.,and I brang it back to my friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,(hm) (um) : and then she thought I was brave or something [~_laughs].,hm um and then she thought I was brave or something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,Me and my friend were go/ing to : swim.,Me and my friend were going to swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,my friend told me she was go/ing to go on the dive/ing board.,my friend told me she was going to go on the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,but she start/ed run/ing and slip/ed : and hurt her knee.,but she started running and slipped and hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,then I went over to see if she was okay.,then I went over to see if she was okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and the lifeguard came.,and the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,then the lifeguard put a bandaid on it.,then the lifeguard put a bandaid on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and then she took a break.,and then she took a break +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and then the lifeguard got mad at her for run/ing.,and then the lifeguard got mad at her for running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,Me and my friend were go/ing to play with my new airplane.,Me and my friend were going to play with my new airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and I was : fly/ing it around and make/ing funny noise/s [~_laughs].,and I was flying it around and making funny noises +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and then she took it away and start/ed play/ing with it.,and then she took it away and started playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and then it fell into the pool.,and then it fell into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and I got really mad at her.,and I got really mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and the lifeguard came.,and the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,then my friend ask/ed : if the lifeguard could get the plane out.,then my friend asked if the lifeguard could get the plane out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,he was try/ing to reach it.,he was trying to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,but the water was push/ing it away.,but the water was pushing it away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and the lifeguard said I can not get it.,and the lifeguard said I can not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and then : her mom came with a net : and took the airplane out.,and then her mom came with a net and took the airplane out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and I said a big thank you [~_laughs].,and I said a big thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and I was really really happy [~_laughs].,and I was really really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,my friend and I were play/ing at the park : make/ing a sandcastle.,my friend and I were playing at the park making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,we were just make/ing just a few little minor[-:] touch/s [~_laughs].,we were just making just a few little minor touches +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,then I dump/ed *a huge pail of sand on it [EU].,then I dumped huge pail of sand on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and I broke it [~_laughs].,and I broke it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and I was feel/ing really bad : while my friend was make/ing a huge other one.,and I was feeling really bad while my friend was making a huge other one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,(Me and my friend) my friend and I : were go/ing : on a picnic.,Me and my friend my friend and I were going on a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,we were eat/ing and eat/ing.,we were eating and eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,or I was eat/ing and eat/ing [~_laughs].,or I was eating and eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,until I got really really stuff/ed.,until I got really really stuffed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and then she start/ed eat/ing just really slow.,and then she started eating just really slow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and I got dizzy and sick.,and I got dizzy and sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,then my friend went to go get a doctor.,then my friend went to go get a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and she was pull/ing and pull/ing over to the (puh) picnic : thing.,and she was pulling and pulling over to the puh picnic thing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,the doctor was check/ing me out.,the doctor was checking me out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and then : I think she was take/ing : me over : to walk slowly and : take out some of my lunch.,and then I think she was taking me over to walk slowly and take out some of my lunch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,(um) my friend was : (um) (carry/ing) pull/ing a : wagon with a balloon on it.,um my friend was um carrying pulling a wagon with a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and I came.,and I came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and I said nice balloon [~_laughs].,and I said nice balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and I was try/ing to take it off.,and I was trying to take it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,then it float/ed up into the air.,then it floated up into the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and we could not reach it.,and we could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,my friend got really really mad at me.,my friend got really really mad at me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,then we saw a guy with (a) lot/s of balloon/s.,then we saw a guy with a lots of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,(so I) and I went over to see if I could get a balloon.,so I and I went over to see if I could get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and I did not have any money [~_laughs].,and I did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,(um[-:]) then I think we were just beg/ing for one.,um then I think we were just begging for one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,then the doctor came back.,then the doctor came back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and we ask/ed if : we could borrow five dollar/s.,and we asked if we could borrow five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and he said okay.,and he said okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and we got : a balloon each.,and we got a balloon each +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/801.slt,and we said thank you.,and we said thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,(the) the elephant was bounce/ing some ball/s.,the the elephant was bouncing some balls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and the giraffe want/ed to too.,and the giraffe wanted to too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then : he (um) falled|fall[EW:fell] over.,and then he um falled over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and he fell in the water.,and he fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then : the elephant gave him a ball in the water.,and then the elephant gave him a ball in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,then he got out.,then he got out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,(the) the elephant : (was) was : look/ing at the water.,the the elephant was was looking at the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and so was the giraffe.,and so was the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and : then the elephant was go/ing to dive : off the board.,and then the elephant was going to dive off the board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,but then she trip/ed.,but then she tripped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and she falled|fall[EW:fell].,and she falled +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and she get|get[EW:got] a[EW:an] owie on her knee.,and she get a owie on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then : her : dad come|come[EW:came] run/ing.,and then her dad come running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,(and she got) and she look/ed at it.,and she got and she looked at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and she put a bandaid on it.,and she put a bandaid on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and[-:] then : they are sit/ing on a bench.,and then they are sitting on a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and : then the : dad got mad at the : little kid because she : could bend her leg.,and then the dad got mad at the little kid because she could bend her leg +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and she said she could not.,and she said she could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,the giraffe had a[EW:an] airplane.,the giraffe had a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,(and then he fli) and then he was fly/ing it.,and then he fli and then he was flying it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then the elephant grab/ed it away from him : and throwed|throw[EW:threw] it in the water.,and then the elephant grabbed it away from him and throwed it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then : the giraffe got mad at her.,and then the giraffe got mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then : (um) his dad got mad at her.,and then um his dad got mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then he try/ed to get it out : with his hand/s.,and then he tried to get it out with his hands +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,then he try/ed to get it out with a net.,then he tried to get it out with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and he got it out.,and he got it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,(and : he) and then they went back in the water.,and he and then they went back in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then he got it out again.,and then he got it out again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then he gave it to the giraffe.,and then he gave it to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then he hug/ed it.,and then he hugged it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,(the kid) the little kid was make/ing a sandcastle.,the kid the little kid was making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then the other kid broke it.,and then the other kid broke it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and he pour/ed sand on it.,and he poured sand on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,then there was a big pile of sand.,then there was a big pile of sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then he cry/ed.,and then he cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,(the) the kid was walk/ing.,the the kid was walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,then he find|find[EW:found] (des hin) his friend.,then he find des hin his friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then they have picnic.,and then they have picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then : the bunny was too full.,and then the bunny was too full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,(and) and (he : go/3s) he was put/ing his hand/s on his tummy.,and and he goes he was putting his hands on his tummy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then he seed|see[EW:saw] his mom.,and then he seed his mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,so (he get her) he get|get[EW:got] her.,so he get her he get her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,(and h) and then she help/ed his kid.,and h and then she helped his kid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,(and) : (and) and they had to take him to doctor/z.,and and and they had to take him to doctor's +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and : then they walk/ed home.,and then they walked home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,the little kid was push/ing his stroller.,the little kid was pushing his stroller +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,then (sh) he seed|see[EW:saw] the bunny.,then sh he seed the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and the bunny he try/ed to grab the balloon from the stroller.,and the bunny he tried to grab the balloon from the stroller +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then he tie/ed it off.,and then he tied it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then it went up to the sky.,and then it went up to the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,then she got mad at him.,then she got mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then the guy had more balloon/s.,and then the guy had more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then : he gave it to the bunny.,and then he gave it to the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and : he got some money.,and he got some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then : they did not give him any balloon/s : because he did not want to.,and then they did not give him any balloons because he did not want to +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,then they seed|see[EW:saw] : their mom.,then they seed their mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then he point/ed at a girl.,and then he pointed at a girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and : then the guy did not give him any balloon/s.,and then the guy did not give him any balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and he only had two.,and he only had two +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,and then they got them.,and then they got them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/532.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,(um) : a giraffe and a[EW:an] elephant [EU].,um a giraffe and a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,another giraffe and a[EW:an] elephant [EU].,another giraffe and a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,elephant [EU].,elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,elephant with a ball hold/ing it [EU].,elephant with a ball holding it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,a[EW:an] elephant : and a giraffe [EU].,a elephant and a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,a[EW:an] elephant and a giraffe [EU].,a elephant and a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,a[EW:an] elephant and a giraffe again [EU].,a elephant and a giraffe again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,elephant and giraffe again [EU].,elephant and giraffe again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,a[EW:an] elephant and a giraffe : again [EU].,a elephant and a giraffe again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,a[EW:an] elephant (uh) again [EU].,a elephant uh again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,two elephant/s and (a) one giraffe [EU].,two elephants and a one giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,a[EW:an] elephant [EU].,a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,two elephant/s and one giraffe [EU].,two elephants and one giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,two elephant/s and one giraffe [EU].,two elephants and one giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,two only (e) elephant/s [EU].,two only e elephants +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,a[EW:an] elephant and a giraffe.,a elephant and a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,a[EW:an] elephant and a giraffe.,a elephant and a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,elephant and a giraffe [EU].,elephant and a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,a[EW:an] elephant and a giraffe with a[EW:an] airplane in the water [EU].,a elephant and a giraffe with a airplane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,a[EW:an] : elephant and a giraffe with a[EW:an] airplane in the water [EU].,a elephant and a giraffe with a airplane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,two elephant/s and one giraffe [EU].,two elephants and one giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,two elephant/s and one giraffe [EU].,two elephants and one giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,two elephant/s : one giraffe [EU].,two elephants one giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,two elephant/s and one giraffe [EU].,two elephants and one giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,(two elephant/s) : three elephant/s one : giraffe [EU].,two elephants three elephants one giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,three elephant/s : and one giraffe [EU].,three elephants and one giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,only (one) : (one) : one giraffe and one elephant [EU].,only one one one giraffe and one elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,(um) a bunny : and (a : um :) another bunny : and a sandcastle [EU].,um a bunny and a um another bunny and a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,two bunny/s are hold/ing some xx.,two bunnies are holding some +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,a bunny *is make/ing a sandcastle [EU].,a bunny making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,the bunny dump/ed it on the sandcastle.,the bunny dumped it on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,broke the sandcastle [EU].,broke the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,fix/ed the sandcastle [EU].,fixed the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,(um) a basket [EU].,um a basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,and the bunny is hold/ing the basket.,and the bunny is holding the basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,the carrot/s[-:] [EU].,the carrots +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,: the food[-:] [EU].,the food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,more food [EU].,more food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,more food [EU].,more food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,more food [EU].,more food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,more food [EU].,more food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,more [EU].,more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,more [EU].,more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,a bunny and a balloon[-:] [EU].,a bunny and a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,a scooter and a bunny *are come/ing [EU].,a scooter and a bunny coming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,and a bunny [EU].,and a bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,and a balloon *is on the scooter [EU].,and a balloon on the scooter +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,a balloon *is on the scooter [EU].,a balloon on the scooter +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,the balloon fell off and flew away.,the balloon fell off and flew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,the balloon broked|break[EW:broke] [~_pronounced_'broke-ed'].,the balloon broked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,and : more balloon/s [EU].,and more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,more balloon/s [EU].,more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,more balloon/s [EU].,more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,more balloon/s [EU].,more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,more balloon/s [EU].,more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,more [EU].,more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,more [EU].,more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,only two[-:] [EU].,only two +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/452.slt,(um) : two balloon/s [EU].,um two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,The elephant and the giraffe (are go/ing) are play/ing basketball.,The elephant and the giraffe are going are playing basketball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,the ball went into the pool.,the ball went into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,the giraffe swim/3s to get[!] the ball.,the giraffe swims to get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,: I can not really explain that one [~_laughing] [+_bch].,I can not really explain that one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,(ah : oh) the giraffe is give/ing the ball to the elephant.,ah oh the giraffe is giving the ball to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,the elephant love/3s the giraffe.,the elephant loves the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,The elephant and the giraffe are go/ing to go swim/ing.,The elephant and the giraffe are going to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,the elephant (got) and the giraffe : are go/ing to[:_gonna] jump in.,the elephant got and the giraffe are going to jump in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,the elephant and : the giraffe are run/ing.,the elephant and the giraffe are running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,and the elephant slip/ed.,and the elephant slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,and she stab/ed her knee on the side.,and she stabbed her knee on the side +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,okay is this an outdoor pool [+_bch]?,okay is this an outdoor pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,"it does not matter, it is up to you.",it does not matter it is up to you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,[~_okay] (she s) she hurt her knee on the sidewalk.,she s she hurt her knee on the sidewalk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,she is cry/ing.,she is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,: (and) and the lifeguard gave her a bandage.,and and the lifeguard gave her a bandage +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,he[EW:she] is all better now.,he is all better now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,and now he[EW:she] should not run.,and now he should not run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,The elephant (uh) and the giraffe are go/ing to go[-:] play : in the swimming pool.,The elephant uh and the giraffe are going to go play in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,(the elephant and gir) (and the giraffe : is play/ing with) and the giraffe is play/ing with his airplane.,the elephant and gir and the giraffe is playing with and the giraffe is playing with his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,the elephant grab/3s[!] it from him.,the elephant grabs it from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,: and the airplane go/3s in the water.,and the airplane goes in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,now the giraffe is mad.,now the giraffe is mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,and the lifeguard (s) come/3s along and try/3s to get it out of there.,and the lifeguard s comes along and tries to get it out of there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,(and) and the elephant explain/3s it.,and and the elephant explains it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,and now the lifeguard is try/ing to get it.,and now the lifeguard is trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,but the elephant and giraffe : and the lifeguard can not[!] get it.,but the elephant and giraffe and the lifeguard can not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,but (an) (an) a girl[!] lifeguard come/3s with a net and get/3s it.,but an an a girl lifeguard comes with a net and gets it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,: and now the airplane is safe.,and now the airplane is safe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,and the (e) giraffe is happy now.,and the e giraffe is happy now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,and the elephant and giraffe are all happy.,and the elephant and giraffe are all happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,The rabbit and the kangaroo[-:] are build/ing a sandcastle.,The rabbit and the kangaroo are building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,the rabbit : (put/3s some sand to make the sa) get/3s some sand to make the sandcastle.,the rabbit puts some sand to make the sa gets some sand to make the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,the rabbit : crush/3s the sandcastle.,the rabbit crushes the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,"the rabbit (and) [~_asks_what's_that_other_thing,_E_asks_him__what_he_thinks,_C_says_'just_call_them_as_bunnies'] and the bunny is[EW:are] mad.",the rabbit and and the bunny is mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,and now the bunny can not build it up again.,and now the bunny can not build it up again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,The rabbit and the kangaroo : are go/ing for a picnic.,The rabbit and the kangaroo are going for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,the rabbit : has[-:] more stuff than the kangaroo.,the rabbit has more stuff than the kangaroo +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,: the kangaroo think/3s the rabbit is silly.,the kangaroo thinks the rabbit is silly +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,he has a tummyache.,he has a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,: the kangaroo is run/ing to the bunny/z : mom.,the kangaroo is running to the bunny's mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,and : (she) she is say/ing he is too full.,and she she is saying he is too full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,and[-:] she try/3s to help.,and she tries to help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,and it did.,and it did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,The rabbit meet/3s the kangaroo one day.,The rabbit meets the kangaroo one day +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,and[-:] the kangaroo has : (a) : a wagon.,and the kangaroo has a a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,(and : the rabbit tie/3s a balloo) and the rabbit see/3s a balloon on the wagon.,and the rabbit ties a balloo and the rabbit sees a balloon on the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,and he take/3s it off.,and he takes it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,and the balloon fly/3s away.,and the balloon flies away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,and now the rabbit is mad : [~_I_mean] the kangaroo.,and now the rabbit is mad the kangaroo +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,and a balloon man come/3s (and get/3s some mo) and has some more balloon/s.,and a balloon man comes and gets some mo and has some more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,(and the balloon) and the rabbit ask/3s for a balloon.,and the balloon and the rabbit asks for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,and he pay/3s[!] the man.,and he pays the man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,(and) (and) but he could not pay him because he did not have (a m) that much money.,and and but he could not pay him because he did not have a m that much money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,so he did not get the balloon back.,so he did not get the balloon back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,(and) (and the rabbit/z mom[-:] : come/3s by and buy/3s) (and) and the rabbit/z mom come/3s by : and buy/3s : a balloon.,and and the rabbit's mom comes by and buys and and the rabbit's mom comes by and buys a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,and the balloon and the rabbit and the kangaroo are happy.,and the balloon and the rabbit and the kangaroo are happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/541.slt,and now they both[!] have a balloon.,and now they both have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,a[EW:an] elephant was bounce/ing *a ball by a pool [EU].,a elephant was bouncing ball by a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and the ball fall/3s in the water.,and the ball falls in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,(and) and a giraffe swim/3s and get/3s it.,and and a giraffe swims and gets it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and the elephant get/3s the ball.,and the elephant gets the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and the elephant thank/3s the[-:] giraffe.,and the elephant thanks the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,the elephant saw : a diving board.,the elephant saw a diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and she ran to it.,and she ran to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and she slip/ed.,and she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and she : scrape/ed her knee.,and she scraped her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and she start/3s cry/ing.,and she starts crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and they put a bandaid on : then sit her on a bench : and show/ed the sign.,and they put a bandaid on then sit her on a bench and showed the sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,the giraffe has a[-:] plane.,the giraffe has a plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and (she) he show/3s it to the elephant.,and she he shows it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and the elephant grab/3s it : and drop/3s it in the water.,and the elephant grabs it and drops it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and the giraffe is mad at the elephant.,and the giraffe is mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,(and) and them[EW:they] can not get it.,and and them can not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and she try/s to : tell them : that it was a[EW:an] accident.,and she tries to tell them that it was a accident +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and them[EW:they] try to reach it.,and them try to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,but them[EW:they] can not.,but them can not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and then : (the) : the giraffe start/3s to cry.,and then the the giraffe starts to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and then : another elephant come/3s in : get/3s it : with a net.,and then another elephant comes in gets it with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and the giraffe is happy (and :) and do/3s not let the elephant touch it.,and the giraffe is happy and and does not let the elephant touch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,a rabbit was play/ing in the sandbox.,a rabbit was playing in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and then a different rabbit come/3s : and dump/3s some sand on top.,and then a different rabbit comes and dumps some sand on top +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,then the sandcastle is broken.,then the sandcastle is broken +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and the other rabbit start/3s to cry.,and the other rabbit starts to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,two rabbit/s go for a picnic.,two rabbits go for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,(and) (and a ra) and the rabbit eat/3s all the food.,and and a ra and the rabbit eats all the food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and he get/3s dizzy.,and he gets dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,: [~_EXA:_anything_for_this_page] and he is very dizzy.,and he is very dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,then the other rabbit get/3s the doctor : and pull/3s the doctor over there.,then the other rabbit gets the doctor and pulls the doctor over there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and the doctor check/3s the rabbit.,and the doctor checks the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and then : the doctor and the rabbit go home.,and then the doctor and the rabbit go home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,a rabbit was push/ing a wagon with a balloon.,a rabbit was pushing a wagon with a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and a other rabbit came : and took the balloon.,and a other rabbit came and took the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and it flew away.,and it flew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,the rabbit is mad at the other rabbit.,the rabbit is mad at the other rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,then the rabbit see/3s (the) the guy who sell/3s balloon/s.,then the rabbit sees the the guy who sells balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and the rabbit is buy/ing one.,and the rabbit is buying one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,but he gots[EW:has] no money.,but he gots no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,so them[EW:they] can not get one.,so them can not get one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and them[EW:they] find (a) a doctor.,and them find a a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,"and them[EW:they] ask/ed [~_pronounced_""axt""] the doctor.",and them asked the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,and the doctor buy/3s them one.,and the doctor buys them one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/736.slt,then them[EW:they] both have a balloon.,then them both have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,one day (there is :) (there um) there was[EW:were] two friend/s : Polka Dot/s and : (Long) Long Neck.,one day there is there um there was two friends Polka Dots and Long Long Neck +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,they want/ed to go swim/ing together.,they wanted to go swimming together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,they found a ball.,they found a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,but then before even Polka Dot jump/ed in : Long Neck jump/ed in first and grab/ed it.,but then before even Polka Dot jumped in Long Neck jumped in first and grabbed it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,then : Long Neck (swa) swam back : to the shore and got it for Polka Dot.,then Long Neck swa swam back to the shore and got it for Polka Dot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and she smile/ed.,and she smiled +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and : Long Neck smile/ed back.,and Long Neck smiled back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,one day : (there) (there) Long Neck and : Polka Dot : want/ed to go on the diving board.,one day there there Long Neck and Polka Dot wanted to go on the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,so Polka Dot said let us go on the diving board.,so Polka Dot said let us go on the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and (she) she went.,and she she went +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,she ran : very fast : and fell.,she ran very fast and fell +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,she was cry/ing.,she was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,so the : lifeguard : quickly came over.,so the lifeguard quickly came over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and so he gave her a bandaid : and : put her on : a bench.,and so he gave her a bandaid and put her on a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,(and said now n) and the lifeguard said no run/ing allow/ed.,and said now n and the lifeguard said no running allowed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,one day : Polka Dot and Long Neck : were talk/ing together.,one day Polka Dot and Long Neck were talking together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,Long Neck brang along his plane.,Long Neck brang along his plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and Polka Dot : was really surprise/ed.,and Polka Dot was really surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and then Polka Dot grab/ed it out of Long Neck/z : hand.,and then Polka Dot grabbed it out of Long Neck's hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and she start/ed play/ing with it.,and she started playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,but then it fell into the water.,but then it fell into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,Polka Dot was really sorry.,Polka Dot was really sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and then Long Neck : got really mad.,and then Long Neck got really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and (sh) she felt really : sad.,and sh she felt really sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,so the lifeguard came over : and saw what they were do/ing.,so the lifeguard came over and saw what they were doing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,(he) and so Polka Dot told the story to the lifeguard.,he and so Polka Dot told the story to the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and the lifeguard reach/ed over to get it.,and the lifeguard reached over to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and (he) he could not get it.,and he he could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and then Polka Dot/z mother came and had : a net.,and then Polka Dot's mother came and had a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,she : took the net put it in the water and try/ed to get it.,she took the net put it in the water and tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,then (mom um) Polka Dot/z mom got it : for Long Neck.,then mom um Polka Dot's mom got it for Long Neck +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and Polka Dot and Long Neck were happy.,and Polka Dot and Long Neck were happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,(once) one day : Rabbit and : Puppy went outside play/ing in the sandbox.,once one day Rabbit and Puppy went outside playing in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,Puppy (made) made (um) a : sandcastle.,Puppy made made um a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and Bunny (um) started put/ing sand into a bucket.,and Bunny um started putting sand into a bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,Bunny pour/ed a big full : (sand) (sand um : box) sandbox : on top of the (sand) sandcastle.,Bunny poured a big full sand sand um box sandbox on top of the sand sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and it ruin/ed puppy/z sandcastle.,and it ruined puppy's sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and bunny : was really sorry.,and bunny was really sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and then puppy start/ed to cry.,and then puppy started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,one day : Puppy and Bunny went walk/ing down : (the) (the) : the sidewalk : to find a place for a picnic.,one day Puppy and Bunny went walking down the the the sidewalk to find a place for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,they laid their blanket down and took out the food.,they laid their blanket down and took out the food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,Bunny (mo) ate most of it really fast.,Bunny mo ate most of it really fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and Puppy ate slow.,and Puppy ate slow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,Bunny was really really full.,Bunny was really really full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,Puppy saw : (a b) a nurse.,Puppy saw a b a nurse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,(he) Puppy grab/ed the nurse brang|bring[EW:brought] it over to Bunny [EU].,he Puppy grabbed the nurse brang it over to Bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and the nurse : said lay down so I can check you.,and the nurse said lay down so I can check you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and the nurse : said let us go home.,and the nurse said let us go home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,the end [~_whispered] [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,one day Puppy and Bunny went walk/ing down : the sidewalk.,one day Puppy and Bunny went walking down the sidewalk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,Puppy was : take/ing : behind : (um) a wagon with (um) with a balloon on it.,Puppy was taking behind um a wagon with um with a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,(Bu) Bunny saw the balloon and said could I hold it?,Bu Bunny saw the balloon and said could I hold it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,Puppy said no when Bunny (ju) just about took it off.,Puppy said no when Bunny ju just about took it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,then bunny let go.,then bunny let go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and it flew up into the air.,and it flew up into the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,Puppy got really mad.,Puppy got really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and Bunny felt sorry.,and Bunny felt sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,(then puppy saw) then Bunny saw : more balloon/s : while Puppy was mad.,then puppy saw then Bunny saw more balloons while Puppy was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,so he ran over.,so he ran over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,he gave some money to the : balloon man and got a balloon.,he gave some money to the balloon man and got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and so the balloon man : (told him : here : to) gave him a balloon.,and so the balloon man told him here to gave him a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,(and sa) and then : the balloon man (sai) said : you could give her this.,and sa and then the balloon man sai said you could give her this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and then the bunny saw the nurse again.,and then the bunny saw the nurse again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,the bunny told the nurse (th) (could I) could I have some money?,the bunny told the nurse th could I could I have some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and so the : nurse gave (h) him some money.,and so the nurse gave h him some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/746.slt,and Bunny and Puppy had their own.,and Bunny and Puppy had their own +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,(um the giraffe and the elephant) the elephant is (playing) (juggling) (jug um) [-:] : dribble/ing (on[-:] the sss) on the sidewalk.,um the giraffe and the elephant the elephant is playing juggling jug um dribbling on the sss on the sidewalk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and the giraffe see/3s her.,and the giraffe sees her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and : then I think it got out of control and fall|fall[EW:fell] into the water.,and then I think it got out of control and fall into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and the giraffe had to swim for it.,and the giraffe had to swim for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and giraffe got it.,and giraffe got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and : then the elephant was happy play/ing with it.,and then the elephant was happy playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,(um) : the giraffe and the elephant want to go swim.,um the giraffe and the elephant want to go swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and : oh that is it [+_bch].,and oh that is it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and (giraffe) the elephant went to run.,and giraffe the elephant went to run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and : the giraffe just wait/ed there : smile/ing?,and the giraffe just waited there smiling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and then the giraffe walk/ed.,and then the giraffe walked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and the elephant ran.,and the elephant ran +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and she slip/ed : and hurt her knee.,and she slipped and hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,there is[-:] no run/ing.,there is no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and the lifeguard came : (with) when the elephant was cry/ing.,and the lifeguard came with when the elephant was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,(um) the lifeguard see|see[EW:saw] if she was okay and (gave) put on her (a) a bandaid.,um the lifeguard see if she was okay and gave put on her a a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and then she was all[-:] good.,and then she was all good +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and the lifeguard show/ed : her no run/ing.,and the lifeguard showed her no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,(um) the giraffe brought a[EW:an] airplane : and met the elephant at the water.,um the giraffe brought a airplane and met the elephant at the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and then giraffe was fly/ing with it.,and then giraffe was flying with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and then the elephant took it : and flied|fly[EW:flew] it into the water.,and then the elephant took it and flied it into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and then the giraffe got real mad at her.,and then the giraffe got real mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and the : (um) : lifeguard saw.,and the um lifeguard saw +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and the elephant : told him : something.,and the elephant told him something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and the lifeguard reach/ed over the pool and try/ed to get it.,and the lifeguard reached over the pool and tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and then the lifeguard did not know what to do.,and then the lifeguard did not know what to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,a lady lifeguard got a net : and pull/ed it in with that net.,a lady lifeguard got a net and pulled it in with that net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and (then giraffe) then the giraffe was really happy.,and then giraffe then the giraffe was really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and he hug|hug[EW:hugged] the airplane.,and he hug the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,(um) : this rabbit is : go/ing to : play in the sand with (this dog) the girl dog.,um this rabbit is going to play in the sand with this dog the girl dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,(um) and they made a : castle.,um and they made a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and[-:] (uh) : the rabbit is play/ing (with sand) (in) (uh hi) this bucket and : his shovel : with sand in it.,and uh the rabbit is playing with sand in uh hi this bucket and his shovel with sand in it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and then the rabbit pour/ed the sand : on the dog/z castle.,and then the rabbit poured the sand on the dog's castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and it : broke.,and it broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and they (tr) try/ed to make : it : again.,and they tr tried to make it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,(um the) this dog[-:] and the rabbit : see each other.,um the this dog and the rabbit see each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and they both have a picnic basket.,and they both have a picnic basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and I think they are go/ing to : a picnic.,and I think they are going to a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,(um) and the dog is (sorta um) (I think ready) the rabbit [~_I_mean] is ready to eat.,um and the dog is sorta um I think ready the rabbit is ready to eat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and : when he is done he is[-:] : full.,and when he is done he is full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,(um) [-:] and he is dizzy I think?,um and he is dizzy I think +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and then the : dog ran (to) I think (um) to this girl rabbit I think : the doctor.,and then the dog ran to I think um to this girl rabbit I think the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and the dog pull/ed : on : her jacket.,and the dog pulled on her jacket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and then (f) when she got there : she bent down to help (the dog) the[-:] rabbit.,and then f when she got there she bent down to help the dog the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and then she went : with[-:] the rabbit home I think.,and then she went with the rabbit home I think +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,(um) the[-:] : dog : see/3s the rabbit.,um the dog sees the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and : the dog has a[-:] wagon with a balloon.,and the dog has a wagon with a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,the rabbit see/3s the balloon.,the rabbit sees the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,he (uns) he is try/ing to untie it.,he uns he is trying to untie it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and he untie/3s it.,and he unties it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,it float/3s away.,it floats away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,then the : dog get/3s real mad at him.,then the dog gets real mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and then (the dog : see/3s : more balloon/s) [~_no_I_mean] the rabbit see/3s more balloon/s.,and then the dog sees more balloons the rabbit sees more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and then the rabbit ask/3s : can I have a[-:] : balloon?,and then the rabbit asks can I have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and : he does not have five cent/s.,and he does not have five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,(and) : and[-:] then[-:] they are : disappoint/ed I think.,and and then they are disappointed I think +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and the rabbit went to see[-:] a girl rabbit.,and the rabbit went to see a girl rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and : the rabbit is try/ing to get the girl rabbit to go with him : to pay the[-:] balloon man.,and the rabbit is trying to get the girl rabbit to go with him to pay the balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/659.slt,and (when she paid : he got) when she paid[-:] ten cent/s for : two (um) she got two[-:] balloon/s for each.,and when she paid he got when she paid ten cents for two um she got two balloons for each +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,(Um) (two : people) (two) an elephant and (a zebra) [~_no] (a) : a giraffe are talk/ing.,Um two people two an elephant and a zebra a a giraffe are talking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and (they look) (they are go/ing) it look/3s like they are (go/ing) : go/ing swim/ing.,and they look they are going it looks like they are going going swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the elephant : is talk/ing to the : giraffe.,and the elephant is talking to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the elephant : (sort of) probably[?] throw/3s the ball into the : water.,and the elephant sort of probably throws the ball into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and she is shock/ed.,and she is shocked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,(and he is) and the giraffe is just : calm.,and he is and the giraffe is just calm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,(he is) (he is) (he is) look/3s like he is go/ing to dive in and go get it.,he is he is he is looks like he is going to dive in and go get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and he start/3s to swim toward/3s the ball.,and he starts to swim towards the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,he is swim/ing toward/3s the ball.,he is swimming towards the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and then the elephant : (um) do/3s not want to watch because he think/3s he is probably pretty scare/ed.,and then the elephant um does not want to watch because he thinks he is probably pretty scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,he get/3s it.,he gets it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and he swim/3s back.,and he swims back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the elephant is pretty happy.,and the elephant is pretty happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and now she is hug/ing the ball.,and now she is hugging the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and (the gir um) the giraffe is just smile/ing.,and the gir um the giraffe is just smiling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,(um) the elephant and the giraffe[-:] [EU].,um the elephant and the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,(um) the giraffe is (uh) hold/ing (a) this towel.,um the giraffe is uh holding a this towel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,(and the) and the elephant is hold/ing her hand/s like that.,and the and the elephant is holding her hands like that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,(she is) and the elephant is point/ing to the water.,she is and the elephant is pointing to the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,she is point/ing to the water.,she is pointing to the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and she is take/ing a step toward/3s the water.,and she is taking a step towards the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,(she is look/3s like) she look/3s like she start/3s to run.,she is looks like she looks like she starts to run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and she slip/3s.,and she slips +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and then the giraffe start/3s run/ing after.,and then the giraffe starts running after +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and she get/3s hurt.,and she gets hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and then she start/3s to run to get help it look/3s like.,and then she starts to run to get help it looks like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,she start/3s to cry.,she starts to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and then the (uh) giraffe is try/ing to comfort her.,and then the uh giraffe is trying to comfort her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the lifeguard (um her) start/3s to come.,and the lifeguard um her starts to come +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,(the) now the lifeguard start/3s to comfort her.,the now the lifeguard starts to comfort her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and she stop/3s cry/ing.,and she stops crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,the lifeguard bring/3s a bandaid and put/3s it on the knee.,the lifeguard brings a bandaid and puts it on the knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,(and she is start/3s) and she open/3s her eye/s.,and she is starts and she opens her eyes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and she sit/3s down on the bench.,and she sits down on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the lifeguard is point/ing to no run/ing.,and the lifeguard is pointing to no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,The elephant is talk/ing to (zebra) [~_no] the giraffe.,The elephant is talking to zebra the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the giraffe is hold/ing this plane.,and the giraffe is holding this plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,he is pretend/ing that it is fly/ing.,he is pretending that it is flying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the elephant is watch/ing.,and the elephant is watching +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,now[-:] : (um) the elephant take/3s the plane.,now um the elephant takes the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the (ze) giraffe is not that happy.,and the ze giraffe is not that happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,the plane fall/3s in the water.,the plane falls in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and (every) they are both look/ing at it.,and every they are both looking at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,the giraffe (s) is pretty mad at the elephant.,the giraffe s is pretty mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,the lifeguard : (um) come/3s.,the lifeguard um comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and (he say/3s what is the) he is probably say/ing what is the matter or something.,and he says what is the he is probably saying what is the matter or something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the plane start/3s to sink.,and the plane starts to sink +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the elephant is explain/ing what happpen/ed.,and the elephant is explaining what happpened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,the lifeguard is try/ing to reach the plane.,the lifeguard is trying to reach the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,it is too far.,it is too far +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,it is too far in the water.,it is too far in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,so he can not get it.,so he can not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,(and so) and someone go/3s to fetch a net so they can just scoop the plane up.,and so and someone goes to fetch a net so they can just scoop the plane up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,(she get/3s) she[-:] get/3s the plane in the net.,she gets she gets the plane in the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and then : the giraffe is happy again.,and then the giraffe is happy again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,he is hug/ing the plane.,he is hugging the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the elephant smile/3s.,and the elephant smiles +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,the bunny is talk/ing to the dog.,the bunny is talking to the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and (the dog/z um) the dog has made a sandcastle.,and the dog's um the dog has made a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the bunny is (pre um) pretty amaze/ed that it look/3s pretty good.,and the bunny is pre um pretty amazed that it looks pretty good +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the bunny ask/3s if (she) he can help him.,and the bunny asks if she he can help him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,(the) the dog say/3s sure.,the the dog says sure +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,(um) the bunny pour/3s sand on the : castle.,um the bunny pours sand on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the dog (do/3s not sound that) do/3s not look that happy.,and the dog does not sound that does not look that happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,it turn/3s into a big pile.,it turns into a big pile +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the bunny is shock/ed.,and the bunny is shocked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,the dog start/3s to cry.,the dog starts to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the bunny is just : say/ing it was an accident.,and the bunny is just saying it was an accident +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,the (bu) (um they are both) the bunny is walk/ing down the road.,the bu um they are both the bunny is walking down the road +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and then the dog meet/3s (um) the bunny.,and then the dog meets um the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,they stop for a picnic down on the lawn.,they stop for a picnic down on the lawn +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,the bunny is eat/ing a lot.,the bunny is eating a lot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the dog has not ate[EW:eaten] that much yet.,and the dog has not ate that much yet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,the bunny is stuff/ed.,the bunny is stuffed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the dog is[EW:has] just start/ed to eat.,and the dog is just started to eat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,it look/3s like he is pretty dizzy.,it looks like he is pretty dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and : (um) the dog call/3s the doctor.,and um the dog calls the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the doctor come/3s to see what is the problem with the bunny.,and the doctor comes to see what is the problem with the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,(and the dog) (and she is tug/ing it i) and she is (tug/ing the doc) pull/ing the doctor as hard as she : can : to him to see what is the matter.,and the dog and she is tugging it i and she is tugging the doc pulling the doctor as hard as she can to him to see what is the matter +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and she is look/ing at the bunny and point/ing.,and she is looking at the bunny and pointing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the doctor walk/3s away with the bunny.,and the doctor walks away with the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,the dog is pull/ing the wagon : (and the bunny/z) with a balloon tie/ed to it.,the dog is pulling the wagon and the bunny's with a balloon tied to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the bunny is walk/ing down the road.,and the bunny is walking down the road +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,the bunny is point/ing to the balloon.,the bunny is pointing to the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and it look/3s like he is go/ing to [~_gonna] grab it.,and it looks like he is going to grab it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,(he un) he is untie/ing it.,he un he is untying it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,(and he release/3s it) and he release/3s it.,and he releases it and he releases it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and (it go/3s) it start/3s to rise.,and it goes it starts to rise +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,it is too high for them to reach.,it is too high for them to reach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and the dog is pretty mad.,and the dog is pretty mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and there is (: um) a bunny sell/ing balloon/s.,and there is um a bunny selling balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,(um) and the bunny look/s like he is go/ing to [~_gonna] buy some.,um and the bunny looks like he is going to buy some +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,but he has no money.,but he has no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,so he can not buy : any balloon/s.,so he can not buy any balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and[-:] it look/3s like : he is talk/ing to them.,and it looks like he is talking to them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and (the) they look/ed (that) pretty puzzle/ed and stuff.,and the they looked that pretty puzzled and stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and (there is a) the bunny start/3s run/ing toward/3s a doctor.,and there is a the bunny starts running towards a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and (she uh) [~_no] (his mom and the) (mom) (the mom : um) the bunny ask/3s his mom if she can buy some balloon/s.,and she uh his mom and the mom the mom um the bunny asks his mom if she can buy some balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,she : says sure.,she says sure +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and she buy/3s (t) him two[!] balloon/3s.,and she buys t him two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/718.slt,and they are hug/ing the balloon/s.,and they are hugging the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,: (Deena and Nathan bought some) : Deena and Nathan : met (at) at each other on the road.,Deena and Nathan bought some Deena and Nathan met at at each other on the road +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,and Deena had a ball.,and Deena had a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,but Deena/z ball fell in the water.,but Deena's ball fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,so[-:] Nathan went to get the ball for her because he was an excellent swimmer.,so Nathan went to get the ball for her because he was an excellent swimmer +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,"and when he came back to give the ball to : Deena, : Deena was really happy.",and when he came back to give the ball to Deena Deena was really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,and she thank/ed Nathan for get/ing her ball.,and she thanked Nathan for getting her ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,Deena and Nathan : went to the pool.,Deena and Nathan went to the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,Deena spot/ed a diving board.,Deena spotted a diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,so they ran to go on the diving board.,so they ran to go on the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,(but) : but Deena fell and hurt her knee.,but but Deena fell and hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,and she start/ed cry/ing.,and she started crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,and the lifeguard came.,and the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,the lifeguard start/ed to put a bandaid on her.,the lifeguard started to put a bandaid on her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,and then her knee was all better.,and then her knee was all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,: but the lifeguard was kind of mad at her because : she broke a rule.,but the lifeguard was kind of mad at her because she broke a rule +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,and that was no run/ing.,and that was no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,Deena and Nathan went to the pool.,Deena and Nathan went to the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,and this time Nathan brought a toy airplane.,and this time Nathan brought a toy airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,Nathan : zoom/ed the plane around.,Nathan zoomed the plane around +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,and it got Deena kind of dizzy.,and it got Deena kind of dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,then Deena : like/ed the airplane.,then Deena liked the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,and she took it right away from Nathan.,and she took it right away from Nathan +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,but then Deena drop/ed the airplane in the pool.,but then Deena dropped the airplane in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,Nathan was really mad at Deena because (he did that :) she did that.,Nathan was really mad at Deena because he did that she did that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,the lifeguard came.,the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,Deena told the lifeguard that she drop/ed (his) Nathan/z : airplane in the pool.,Deena told the lifeguard that she dropped his Nathan's airplane in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,so the lifeguard try/ed to reach it.,so the lifeguard tried to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,but the lifeguard could not get it.,but the lifeguard could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,and Nathan start/ed cry/ing.,and Nathan started crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,then this lady came by with a net.,then this lady came by with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,she try/ed to scoop the airplane out of the pool.,she tried to scoop the airplane out of the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,(and she got it) and she got it for Nathan.,and she got it and she got it for Nathan +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,Nathan was so[-:] happy that he got his airplane back.,Nathan was so happy that he got his airplane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,: Bill and Sally (want/ed) were go/ing to play in the sand pit.,Bill and Sally wanted were going to play in the sand pit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,and they want/ed to build a sandcastle.,and they wanted to build a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,so : Bill start/ed : put/ing lot/s of sand in the bucket : for make/ing a sandcastle.,so Bill started putting lots of sand in the bucket for making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,then he dump/ed the : bucket of sand on (the) the sandcastle.,then he dumped the bucket of sand on the the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,but he wreck/ed the whole sandcastle : because he put the bucket too early.,but he wrecked the whole sandcastle because he put the bucket too early +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,then Sally start/ed to cry because it was her best sandcastle that she ever made.,then Sally started to cry because it was her best sandcastle that she ever made +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,: John and Megan want/ed to go for a walk to pick : flower/s.,John and Megan wanted to go for a walk to pick flowers +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,but they decide/ed to not pick flower/s and have a picnic instead.,but they decided to not pick flowers and have a picnic instead +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,(when) : when : Megan took out some food : John already ate his food.,when when Megan took out some food John already ate his food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,and he felt really sick.,and he felt really sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,he felt really dizzy after he ate all that : food.,he felt really dizzy after he ate all that food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,then Megan ran to go get some help.,then Megan ran to go get some help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,Megan : ask/ed the woman (if) : if she could : help : John.,Megan asked the woman if if she could help John +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,John was lucky because the woman : was a doctor.,John was lucky because the woman was a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,so she help/ed him.,so she helped him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,and John felt better after the woman help/ed him.,and John felt better after the woman helped him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,: Kate and Kerrick were go/ing on a walk.,Kate and Kerrick were going on a walk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,and Kate had a nice balloon on her wagon.,and Kate had a nice balloon on her wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,Kerrick want/ed the balloon.,Kerrick wanted the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,so he start/ed (to) (to) to pick it up.,so he started to to to pick it up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,he was try/ing to pick it up.,he was trying to pick it up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,and : Kate start/ed scream/ing.,and Kate started screaming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,then Kerrick unloose/ed[EW:untied] it.,then Kerrick unloosed it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,(and) and the balloon start/ed fly/ing away.,and and the balloon started flying away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,Kate was really mad at : Kerrick because : she really like/ed that balloon.,Kate was really mad at Kerrick because she really liked that balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,and it was her favorite color.,and it was her favorite color +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,and : Kerrick saw a balloon : seller.,and Kerrick saw a balloon seller +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,and he had a great idea.,and he had a great idea +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,he went and bought Kate : her favorite color.,he went and bought Kate her favorite color +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,(and) and : (he) : he got Kate : her favorite color.,and and he he got Kate her favorite color +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,but he had no money.,but he had no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,(then Kerrick) then Kerrick was sad because he could not buy : Kate the balloon.,then Kerrick then Kerrick was sad because he could not buy Kate the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,then Kerrick went to Kate/z mom for some money.,then Kerrick went to Kate's mom for some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,and : he told : Kate/z mom the whole story about how he lost Kate/z (balloo) balloon.,and he told Kate's mom the whole story about how he lost Kate's balloo balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,so : Kate/z mom bought : them both a balloon.,so Kate's mom bought them both a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/919.slt,(and) and it was their favorite color.,and and it was their favorite color +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,There is a cow say/ing can I have one of those balloon/s?,There is a cow saying can I have one of those balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then one of them fall|fall[EW:fell] into the river.,And then one of them fall into the river +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then the cow go/3s in.,And then the cow goes in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,: (and : take/3s) (and try/3s to get the balloon) (and try/3s to get the balloon) [~_interruption_of__someone_coming_into_the_room] and then the cow try/3s to get the balloon.,and takes and tries to get the balloon and tries to get the balloon and then the cow tries to get the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,(and then he) and then she say/3s thank/s[!].,and then he and then she says thanks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And how is the cow go/ing to get out?,And how is the cow going to get out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,and then he got out.,and then he got out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,No more page/s [+_bch].,No more pages +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And there is a pool and only walk/ing allow/ed.,And there is a pool and only walking allowed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,no run/ing.,no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then he say/3s I am go/ing go.,And then he says I am going go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,and then the elephant say/3s I am go/ing to go in[!] there.,and then the elephant says I am going to go in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,and then I do not know what he is do/ing [+_bch].,and then I do not know what he is doing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,what do/3s it look like he is do/ing?,what does it look like he is doing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,he is run/ing[!].,he is running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,okay.,okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,No run/ing allow/ed on[EW:in] the pool.,No running allowed on the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then she fall/3s and hurt/3s herself.,And then she falls and hurts herself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then the coach come/3s and get/3s her.,And then the coach comes and gets her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And cow come/3s.,And cow comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then she go/3s eek.,And then she goes eek +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then she get/3s a bandaid on her knee of a hole [EU].,And then she gets a bandaid on her knee of a hole +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,and then she is all better.,and then she is all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And the coach is mad.,And the coach is mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,He say/3s [~_makes_angry_face].,He says +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,No more page/s [+_bch].,No more pages +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,(um : he) (he is ga um) the cow is go/ing to put (um the) the (uh) airplane into the water : pool.,um he he is ga um the cow is going to put um the the uh airplane into the water pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,and then he go/3s [~_makes_airplane_sounds].,and then he goes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,and then (um uh) the elephant grab/3s it out of the cow/z hand.,and then um uh the elephant grabs it out of the cow's hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then it sank into the pool.,And then it sank into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then the cow said [~_makes_frustrated_sound].,And then the cow said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then the coach : say/3s hmm ?,And then the coach says hmm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,He look/3s into the pool.,He looks into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,(And then) and then the elephant say/3s [~_high_pitched_voice] I am sorry.,And then and then the elephant says I am sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then the coach try/3s : to get it : with his hand/s and his trunk.,And then the coach tries to get it with his hands and his trunk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,and then the cow is cry/ing on his knee/s.,and then the cow is crying on his knees +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And he go/3s [~_makes_giggling_sounds].,And he goes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,(And then) (and then :) (and then she) (and then the elephant come/3s) : and then another elephant come/3s.,And then and then and then she and then the elephant comes and then another elephant comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,(and um) and they say hmmm?,and um and they say hmmm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then : she try/3s to get it out.,And then she tries to get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,He is try/ing to get it out.,He is trying to get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And the : cow (st) try/3s to stop cry/ing.,And the cow st tries to stop crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And the elephant/s are happy.,And the elephants are happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,But one is sad.,But one is sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then she got it.,And then she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,She is come/ing out of the pool.,She is coming out of the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then : he is glad to have it back.,And then he is glad to have it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,two bunny/s on the picture : and a sandcastle.,two bunnies on the picture and a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,and : one bunny is dig/ing.,and one bunny is digging +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,and one bunny is break/ing the sandcastle.,and one bunny is breaking the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,and that is mean.,and that is mean +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,then the next[!] bunny destroy/3s his[!] sandcastle.,then the next bunny destroys his sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,and he was go/ing not destroy his.,and he was going not destroy his +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,but he pour/ed (a) a sandcastle on top of it.,but he poured a a sandcastle on top of it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,but then : one of the bunny/s said Oh[!] our sandcastle is wreck/ed.,but then one of the bunnies said Oh our sandcastle is wrecked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,and then the other dog laugh/3s : has a smile on it.,and then the other dog laughs has a smile on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,the what?,the what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,a smile on it [+_bch].,a smile on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,and : then one doggy is cry/ing.,and then one doggy is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,and the bunny (is) is just stand/ing there think/ing.,and the bunny is is just standing there thinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,that is the last page [+_bch].,that is the last page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,(um) they are have/ing a picnic.,um they are having a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,(um) one bunny is have/ing a carrot.,um one bunny is having a carrot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,and the doggy is watch/ing.,and the doggy is watching +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,his eyeball/s are look/ing : together.,his eyeballs are looking together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then the bunny : is so full (that he) that this [~_pointing__to_her_tummy_bulging_out] [~_laughs].,And then the bunny is so full that he that this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,Then the bunny/z : head is spin/ing.,Then the bunny's head is spinning +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And the other doggy is drink/ing something.,And the other doggy is drinking something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And he xxx.,And he x +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,He what sorry?,He what sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,(he) he is drink/ing something.,he he is drinking something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then he : find/3s another rabbit that is a doctor.,And then he finds another rabbit that is a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,The doggy come/3s to him.,The doggy comes to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,(And the xxx) (and xxx) and then : he pull/3s him.,And the x and x and then he pulls him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then they are try/ing to walk/ing[EW:walk].,And then they are trying to walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then the doctor say/3s oh man.,And then the doctor says oh man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then : he take/3s him to the hospital.,And then he takes him to the hospital +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,Exactly the same.,Exactly the same +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,But now (the) the doggy that went to the hospital (he is) the balloon is under his tray.,But now the the doggy that went to the hospital he is the balloon is under his tray +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And the bunny (sai) wave/3s.,And the bunny sai waves +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,(um) : (here is m) here is my balloon say/3s the bunny.,um here is m here is my balloon says the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then : he tie/3s it off and say/3s you can have it.,And then he ties it off and says you can have it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,That is nice.,That is nice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,: And then they let go.,And then they let go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And they scream [~_aaah].,And they scream +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then there is just a line.,And then there is just a line +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,and they can not see the balloon.,and they can not see the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then : they see more[!] balloon/s.,And then they see more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And they want to take it.,And they want to take it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And that is the end of that one [+_bch].,And that is the end of that one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,(they) They ask/ed : for one more.,they They asked for one more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,But I do not know what he say/3s.,But I do not know what he says +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,You do not know?,You do not know +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,not talk/ing [+_bch].,not talking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,and then : one : hundred balloon[EW:balloon/s] they give : I think [EU].,and then one hundred balloon they give I think +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And then : (he is) the bunny say/3s I do not have any.,And then he is the bunny says I do not have any +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,could we still give it away?,could we still give it away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,and he says hmm : no.,and he says hmm no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,But then he find/3s (another doctor) the doctor.,But then he finds another doctor the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,And he has no balloon/s.,And he has no balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,but maybe he can make one.,but maybe he can make one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,and then the bunny say/3s : (um) I do not have no[EW:any] money.,and then the bunny says um I do not have no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,and he is still not give/ing me a balloon[!].,and he is still not giving me a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,and then : they gave one cent/s[EW:cent] (to the bun) for the balloon.,and then they gave one cents to the bun for the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,(and then : when he) [~_turn_the_page] and then they got their own balloon/s.,and then when he and then they got their own balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/507.slt,No more page/s [+_bch].,No more pages +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,(um) there was a girl name/ed Melanie who was an elephant : and a boy named Chris who was a giraffe.,um there was a girl named Melanie who was an elephant and a boy named Chris who was a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,they like/ed to go swim/ing [~_laughs].,they liked to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,(the) Chris the giraffe : drop/ed the ball into the water.,the Chris the giraffe dropped the ball into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,he went and swam for the ball.,he went and swam for the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,he got it and gave it to Melanie.,he got it and gave it to Melanie +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,they live happily ever after.,they live happily ever after +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,there was a girl name/ed Melanie and Chris.,there was a girl named Melanie and Chris +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,and they were at the swimming pool.,and they were at the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,they want/ed to go dive/ing.,they wanted to go diving +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,and they were run/ing to the board.,and they were running to the board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,Melanie slip/ed and fell.,Melanie slipped and fell +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,she scrape/ed her knee : and was cry/ing.,she scraped her knee and was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,Chris went to see her.,Chris went to see her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,and the lifeguard went too.,and the lifeguard went too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,(she s) the lifeguard put a bandaid on her knee.,she s the lifeguard put a bandaid on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,Melanie was walk/ing again.,Melanie was walking again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,(and this) and then she got in trouble because the sign said no run/ing.,and this and then she got in trouble because the sign said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,Melanie : was an elephant.,Melanie was an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,and Chris was a giraffe.,and Chris was a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,they : were swim/ing.,they were swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,(with) and they had a plane.,with and they had a plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,Melanie was play/ing with the plane.,Melanie was playing with the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,she accidentally drop/ed it into the water.,she accidentally dropped it into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,Melanie could not reach it.,Melanie could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,and Chris is get/ing mad at her.,and Chris is getting mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,the lifeguard saw the : plane in the water.,the lifeguard saw the plane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,(the) the lifeguard : was stare/ing at Melanie.,the the lifeguard was staring at Melanie +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,and Melanie was tell/ing what happen/ed.,and Melanie was telling what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,the lifeguard could not reach it either.,the lifeguard could not reach it either +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,Chris was cry/ing.,Chris was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,(ma) (a swi) a lady that was swim/ing there got a net.,ma a swi a lady that was swimming there got a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,and she got the plane out of the water : and gave it to Chris.,and she got the plane out of the water and gave it to Chris +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,Chris was happy.,Chris was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,Chris really love/3s his plane.,Chris really loves his plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,there was (a ra) a rabbit : and a dog.,there was a ra a rabbit and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,they like/ed to build lot/s of sandcastle/s.,they liked to build lots of sandcastles +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,the rabbit accidentally pour/ed some sand on the sandcastle.,the rabbit accidentally poured some sand on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,and : the : dog was surprise/ed.,and the dog was surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,dog start/ed to cry.,dog started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,there was a rabbit and a dog.,there was a rabbit and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,they were go/ing on a picnic.,they were going on a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,(the d) the rabbit had to eat lot/s because he was hungry.,the d the rabbit had to eat lots because he was hungry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,(the dog) [~_I_mean] the rabbit got really really full.,the dog the rabbit got really really full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,his stomach start/ed to ache.,his stomach started to ache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,the dog went and got : a : doctor rabbit.,the dog went and got a doctor rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,the doctor came to see the boy.,the doctor came to see the boy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,she said that he had a fever.,she said that he had a fever +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,(um) and the rabbit/s walk/ed away happily.,um and the rabbits walked away happily +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,there was a dog and a rabbit.,there was a dog and a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,the dog had a balloon.,the dog had a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,the rabbit want/ed to see[!] the balloon.,the rabbit wanted to see the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,the rabbit (un) accidentally untie/ed their balloon.,the rabbit un accidentally untied their balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,the balloon flew into the sky.,the balloon flew into the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,the dog was really mad at the rabbit.,the dog was really mad at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,then they saw (another sta) (another) : another guy with balloon/s.,then they saw another sta another another guy with balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,the rabbit want/ed some.,the rabbit wanted some +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,the balloon/s are five cent/s.,the balloons are five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,but the rabbit did not have any money.,but the rabbit did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,so the man would not let them have any balloon/s.,so the man would not let them have any balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,(the rabb) the rabbit ran over to the doctor rabbit and ask/ed for some money.,the rabb the rabbit ran over to the doctor rabbit and asked for some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,so she gave him money.,so she gave him money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,and they bought two balloon/s.,and they bought two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/962.slt,and they both like/ed their balloon/s.,and they both liked their balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,now he is go/ing to say aah no(*7).,now he is going to say aah no no no no no no no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,I am not go/ing *to take those balls : home : to his raygie[c] [~_/regi/] [EU].,I am not going take those balls home to his raygie +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,what ?,what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,raygie[c] [~_/regi/] [+_bch].,raygie +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,that day that[EW:the] balls got stuck.,that day that balls got stuck +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,and he said oh(*2).,and he said oh oh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,and the lady call/ed away and said ah I am going to get that ball.,and the lady called away and said ah I am going to get that ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,(um) and they said uhoh the choochoo train is coming.,um and they said uhoh the choochoo train is coming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,: that way he swimmed|swim[EW:swam] to the ball.,that way he swimmed to the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,and now (he said) : oh he cry/ed and cry/ed and cry/ed.,and now he said oh he cried and cried and cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,(um) : now he help/ed him to get that ball.,um now he helped him to get that ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,and then now he help/ed to get him up.,and then now he helped to get him up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,and he could not get up : now.,and he could not get up now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,now he get[EW:got] the ball.,now he get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,and he was so excited.,and he was so excited +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,but : he was always day long [EU].,but he was always day long +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,he was what what ?,he was what what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,always day long [+_bch].,always day long +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,once upon a time there was a little girl : walk/ing down the street.,once upon a time there was a little girl walking down the street +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,and there was[EW:were] bridge/s all[-:] over the (p) car.,and there was bridges all over the p car +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,now he said go in there.,now he said go in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,go in there.,go in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,he said [~_aaah_sound] no(*3) I am not go/ing in there.,he said no no no I am not going in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,so he ran to the room and got dress/ed (and goed) and got[EW:went] there again.,so he ran to the room and got dressed and goed and got there again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,: said ow(*15) [EU].,said ow ow ow ow ow ow ow ow ow ow ow ow ow ow ow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,he said I will get you a bandaid.,he said I will get you a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,said what?,said what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,I will get you a bandaid [+_bch].,I will get you a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,so (that day) (that day was always) he put a bandaid on him.,so that day that day was always he put a bandaid on him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,and now : he said ow that still hurt/3s.,and now he said ow that still hurts +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,that still hurt/3s.,that still hurts +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,now he said : you have to go and sit down.,now he said you have to go and sit down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,: (now they are go/ing to) : (now you get there) and I will get you there (all) all the time [EU].,now they are going to now you get there and I will get you there all all the time +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,that day that one he said aah that one die/ed.,that day that one he said aah that one died +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,I am go/ing to : that one.,I am going to that one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,I got the airplane now.,I got the airplane now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,it is not go/ing far away now.,it is not going far away now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,so please*3 I will get the airplane.,so please please please I will get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,no I will fight with the airplane.,no I will fight with the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,: so all the day (his long) it always day [EU].,so all the day his long it always day +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,so[-:] he was start/ed to be (eh) always day or long [EU].,so he was started to be eh always day or long +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,so that day he paint/ed his nails.,so that day he painted his nails +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,and he : threw him back to the car and : got his car[-:] .,and he threw him back to the car and got his car +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,so he : said uhoh there is[EW:are] two elephant/s and one giraffe.,so he said uhoh there is two elephants and one giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,now I am go/ing to be no(*3) [EU].,now I am going to be no no no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,I am go/ing to be this uhoh oh [EU].,I am going to be this uhoh oh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,(so no I think) so not go/ing to do it anymore because it is my page [EU].,so no I think so not going to do it anymore because it is my page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,I am not go/ing to.,I am not going to +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,so he stand[EW:stood] (to tay) to say goodbye.,so he stand to tay to say goodbye +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,and he was always there for awhile.,and he was always there for awhile +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,so (he was start to be) he was start/ing get/ing that [EU].,so he was start to be he was starting getting that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,and he saw it and get[EW:got] it.,and he saw it and get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,and he was done xx.,and he was done +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,so he put the airplane in there.,so he put the airplane in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,and he got him : all the day [EU].,and he got him all the day +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,: so please : I will not help you.,so please I will not help you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,please(*2) I will not.,please please I will not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,that little day he[-:][!] was always inside it [EU].,that little day he was always inside it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,please do not do that.,please do not do that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,always[-:] do everything what I want to[:_wanna] do [EU].,always do everything what I want to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,so I want to do please please [~_repeated_for_emphasis] all my xx [EU].,so I want to do please please all my +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,please I do not want you.,please I do not want you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,ah yes I want [EU].,ah yes I want +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,okay I will be that.,okay I will be that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,that way he was always do/ing those [EU].,that way he was always doing those +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,so he was always do/ing the second page second page and second page [EU].,so he was always doing the second page second page and second page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,that day he was : try/ing to go to the picnic.,that day he was trying to go to the picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,that day he was go/ing to ride a picnic [EU].,that day he was going to ride a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,that day he will have in a mess [EU].,that day he will have in a mess +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,that day he clean/ed it all up.,that day he cleaned it all up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,that day he droom back to the car [EU].,that day he droom back to the car +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,that day he help/ed him up.,that day he helped him up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,that day he slam/ed right down again.,that day he slammed right down again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,that day : he got[EW:has] a mess again.,that day he got a mess again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,he did what?,he did what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,got a mess now [+_bch].,got a mess now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,that day he was : get/ing the wagon.,that day he was getting the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,get/ing the what?,getting the what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,get/ing the wagon [+_bch].,getting the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,that day he zoom/ed back.,that day he zoomed back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,did what?,did what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,get zoom back [+_bch].,get zoom back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,that day he got dress/ed.,that day he got dressed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,that day he reach/ed for the balloon (but).,that day he reached for the balloon but +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,reach/ed for what?,reached for what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,he reach/ed for the balloon [+_bch].,he reached for the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,that day he broke off the string.,that day he broke off the string +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,that day he zoom/ed back : to this thing.,that day he zoomed back to this thing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,that day he (gr) gived|give[EW:gave] them more balloon/s.,that day he gr gived them more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,now he pop/ed all the balloon/s.,now he popped all the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,(now he got his) now he got his (um) balloon back.,now he got his now he got his um balloon back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,now he did not want him any more.,now he did not want him any more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,and he said I want them please.,and he said I want them please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,and he give[EW:gave] them back.,and he give them back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,(and that is) : and that day (he) (he got) they all got excit/ed.,and that is and that day he he got they all got excited +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/406.slt,so they had them [EU].,so they had them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,the elephant : and giraffe are play/ing ball.,the elephant and giraffe are playing ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,the ball went in the water.,the ball went in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,the giraffe went and get it [EU].,the giraffe went and get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,the giraffe gave the ball to the elephant.,the giraffe gave the ball to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,the elephant said thank you.,the elephant said thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,(um) : they were look/ing in the water.,um they were looking in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,they saw the diving board.,they saw the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,she was run/ing.,she was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,then she hurt her knee.,then she hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,there was : a lifeguard : (h) help/ing.,there was a lifeguard h helping +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,(she gave) the lifeguard gave him a bandaid.,she gave the lifeguard gave him a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,(he) the[-:] lifeguard : elephant : were[EW:was] sit/ing in the bench [EU].,he the lifeguard elephant were sitting in the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,and[-:] the lifeguard say/3s no run/ing.,and the lifeguard says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,the giraffe had a[EW:an] airplane[-:].,the giraffe had a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,the giraffe was try/ing to fly it.,the giraffe was trying to fly it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,the elephant want/ed to fly it too.,the elephant wanted to fly it too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,(the el) (the[-:]) : the airplane went in the water.,the el the the airplane went in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,(they didnt) they do not know how to get it out.,they didnt they do not know how to get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,(they) : they call/ed the lifeguard to get it.,they they called the lifeguard to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,the lifeguard : did not took|take[EW:take] it.,the lifeguard did not took it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,the lifeguard try/ed to get it.,the lifeguard tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,but : it was (f) too far.,but it was f too far +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,the lifeguard did not know how to get it back.,the lifeguard did not know how to get it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,(the) (there come) the girl had a net to get the airplane.,the there come the girl had a net to get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,she got the airplane.,she got the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,she gave it back to the giraffe.,she gave it back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,the giraffe was happy that he had his airplane back.,the giraffe was happy that he had his airplane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,the dog and the rabbit were make/ing a (k) sandcastle.,the dog and the rabbit were making a k sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,the[-:] : rabbit was put/ing some more sand [EU].,the rabbit was putting some more sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,(he put) he dump/ed the sand on the sandcastle.,he put he dumped the sand on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,and the sandcastle broke down.,and the sandcastle broke down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,(then the rabbit) : then : the dog was sad.,then the rabbit then the dog was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,the dog and the rabbit went for a picnic.,the dog and the rabbit went for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,the rabbit ate too much.,the rabbit ate too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,he got[EW:was] full.,he got full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,he got a tummyache.,he got a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,"the dog : ask/ed [~_pronounced_""axed""] the doctor : to help the rabbit.",the dog asked the doctor to help the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,and the rabbit say/3s do not eat too much food.,and the rabbit says do not eat too much food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,and then the doctor took the : rabbit home.,and then the doctor took the rabbit home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,the dog had a wagon : with a balloon.,the dog had a wagon with a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,the rabbit like/ed the balloon.,the rabbit liked the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,he untie/ed the balloon.,he untied the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,it flewed|fly[EW:flew] away.,it flewed away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,the dog got angry.,the dog got angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,"they[-:] ask/ed [~_pronounced_""axed""] the balloon man.",they asked the balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,"the rabbit ask/ed [~_pronounced_""axed""] for another balloon.",the rabbit asked for another balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,it was five cent/s.,it was five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,but he did not have any five cent/s [EU].,but he did not have any five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,(they) : they were sad that they do not have a balloon.,they they were sad that they do not have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,"they ask/ed [~_pronounced_""axed""] the doctor : to (have) : give some five cent/s [EU].",they asked the doctor to have give some five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,"the rabbit ask/ed [~_pronounced_""axed""] (the ra) the : doctor : can we have a balloon?",the rabbit asked the ra the doctor can we have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,(she) the doctor gave (the[-:]) : the balloon man five cent/s.,she the doctor gave the the balloon man five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/777.slt,they were happy.,they were happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,(Once upon a time there was an elephant and a goat) [~_asks_to__start_again] Once upon a time there was : a giraffe and a[EW:an] elephant.,Once upon a time there was an elephant and a goat Once upon a time there was a giraffe and a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and the giraffe : was play/ing basketball.,and the giraffe was playing basketball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,(then) then the basketball : (went) it went into the water.,then then the basketball went it went into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,(and) and the giraffe jump/ed into the water and swam after the ball.,and and the giraffe jumped into the water and swam after the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,(but then the) but then the giraffe (got it) got it for the elephant.,but then the but then the giraffe got it got it for the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,then the elephant : made fun (of) of the giraffe.,then the elephant made fun of of the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,And then that is the end [+_bch].,And then that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,Once upon a time (it was call/ed) a giraffe and the elephant (were) were almost go/ing to go dive/ing.,Once upon a time it was called a giraffe and the elephant were were almost going to go diving +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,Then the elephant said (giraffe/s) giraffe do you want to go to the diving board.,Then the elephant said giraffes giraffe do you want to go to the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,(and the elephant) and the giraffe said yes[!].,and the elephant and the giraffe said yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,And then the elephant ran off (to) (to the) to the diving board.,And then the elephant ran off to to the to the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,Then she (hurt) hurt her knee.,Then she hurt hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,Then the elephant start/ed to cry.,Then the elephant started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,And the giraffe try/ed to help her.,And the giraffe tried to help her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,(then) (then) then the parent (gave) gave the elephant a bandaid/s[EW:bandaid].,then then then the parent gave gave the elephant a bandaids +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,And then the giraffe said see?,And then the giraffe said see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,Cut/s are not that bad.,Cuts are not that bad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,"And then the chief said yes, they are not that bad.",And then the chief said yes they are not that bad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,And then the chief said no run/ing.,And then the chief said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,And that is the end [+_bch].,And that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,Once upon a time an elephant and a giraffe were play/ing airplane.,Once upon a time an elephant and a giraffe were playing airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and the giraffe : went boom : right when the airplane was fly/ing.,and the giraffe went boom right when the airplane was flying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and then the elephant took it away from the giraffe.,and then the elephant took it away from the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and then she flew it through the air.,and then she flew it through the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and then it fell in the pool.,and then it fell in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and (then) (then) then the giraffe got mad at the elephant.,and then then then the giraffe got mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and (then) (then the) (then) then the chief saw it.,and then then the then then the chief saw it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,(Then the el) then the elephant saw it.,Then the el then the elephant saw it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,(then) then the giraffe saw it.,then then the giraffe saw it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,"(Then they try/ed) then the elephant said please chief, please chief : can you get that airplane out of the water?",Then they tried then the elephant said please chief please chief can you get that airplane out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,Then the : chief try/ed to reach it.,Then the chief tried to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,But he could not.,But he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,"Until he said no, I can not get it.",Until he said no I can not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,Until the girl (uh) chief came along with a net.,Until the girl uh chief came along with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,Then she got it out.,Then she got it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,Then she gave it (to) to the giraffe.,Then she gave it to to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,Then elephant (was) was happy.,Then elephant was was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,And the giraffe was happy.,And the giraffe was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,That is the end [+_bch].,That is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,once upon a time : a bunny and a rat were play/ing together.,once upon a time a bunny and a rat were playing together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and they made a sandcastle.,and they made a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,the bunny had digged|dig[EW:dug] up some sand and put it in his bucket.,the bunny had digged up some sand and put it in his bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,then he dump/ed it onto the castle.,then he dumped it onto the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,(then the bunny) then the bunny was not that happy.,then the bunny then the bunny was not that happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and (then) then the rat was cry/ing.,and then then the rat was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,that is the end [+_bch].,that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,once a [+//]>,once a +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,this is the same story [+_bch].,this is the same story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,are you sure?,are you sure +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,(it has) it has the same character/s [+_bch].,it has it has the same characters +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,same character/s?,same characters +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,that other red book [+_bch].,that other red book +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,okay.,okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,once upon a time (there) a rat was go/ing picnic/ing.,once upon a time there a rat was going picnicking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and a bunny was go/ing picnic/ing.,and a bunny was going picnicking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,they had a nice meal.,they had a nice meal +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and the bunny got so stuff/ed.,and the bunny got so stuffed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,they could not eat any more.,they could not eat any more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,then he got very : very sick.,then he got very very sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and (then) : then the bunny was asleep.,and then then the bunny was asleep +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and rat went to the doctor.,and rat went to the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,(and) (and) (and) and the rat pull/ed the doctor closer and closer.,and and and and the rat pulled the doctor closer and closer +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and (the) (the bunny said) (the) (the) the doctor said open wide.,and the the bunny said the the the doctor said open wide +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and : then the bunny open/ed his mouth wide.,and then the bunny opened his mouth wide +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and (then) : then the doctor went (with the bunny) with the bunny rabbit.,and then then the doctor went with the bunny with the bunny rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,that is the end [+_bch].,that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,once upon a time there were[EW:was] a bunny and a rat.,once upon a time there were a bunny and a rat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,a bunny was (run) run/ing along the path.,a bunny was run running along the path +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,the rat was carry/ing her carriage with some balloon[EW:balloon/s](and a win) (an) and a window.,the rat was carrying her carriage with some balloonand a win an and a window +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,then the bunny said : can I have that balloon?,then the bunny said can I have that balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and then the rat said no.,and then the rat said no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and then : the rabbit untie/ed it from the carriage.,and then the rabbit untied it from the carriage +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and (then) (then a) then the balloon flew off.,and then then a then the balloon flew off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and the rat got very mad.,and the rat got very mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,(Then) (then) then the balloon storekeeper : (come) come/ing along the path [EU].,Then then then the balloon storekeeper come coming along the path +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and then the storekeeper might[!] give : him one.,and then the storekeeper might give him one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,he did not.,he did not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,(but) but the storekeeper said it is five dollar/s.,but but the storekeeper said it is five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and then the bunny check/ed his pocket/s.,and then the bunny checked his pockets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,he did not have any money.,he did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and then they were sad that they (did not give any) did not get any.,and then they were sad that they did not give any did not get any +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,then they walk/ed away.,then they walked away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and then the bunny came to the doctor : again.,and then the bunny came to the doctor again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,(and) : and he said doctor can you help me get a balloon?,and and he said doctor can you help me get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,the doctor said maybe.,the doctor said maybe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,: and then (um) they got a balloon.,and then um they got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,(the) the doctor had some money.,the the doctor had some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,(and it gave) and it gave him the money.,and it gave and it gave him the money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and (then) then they both got a balloon.,and then then they both got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/503.slt,and the end [+_bch].,and the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,once upon a time : there was (a giraffe and uh um :) (and a uh :) a giraffe and an elephant.,once upon a time there was a giraffe and uh um and a uh a giraffe and an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and the elephant was bounce/ing a ball[-:].,and the elephant was bouncing a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then it went into the water[-:].,and then it went into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then the giraffe was try/ed[EW:try/ing] to get it.,and then the giraffe was tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and he caught it for her.,and he caught it for her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and : he was happy.,and he was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then : (the) (the um) : the elephant was happy because : the giraffe got her ball back.,and then the the um the elephant was happy because the giraffe got her ball back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,once upon a time : the giraffe was : go/ing to[:_gonna] (s) go in the water.,once upon a time the giraffe was going to s go in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then she said hey do you want to [~_wanna] go in there?,and then she said hey do you want to go in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,(and she said) and the giraffe said okay.,and she said and the giraffe said okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then they went[-:].,and then they went +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,but then she hurted|hurt[EW:hurt] her knee.,but then she hurted her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then : another elephant came.,and then another elephant came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then : it put a bandage on.,and then it put a bandage on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then it was okay.,and then it was okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then [~_no] (he) the other guy came.,and then he the other guy came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,no run/ing.,no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,once upon a time : the giraffe was play/ing with his airplane.,once upon a time the giraffe was playing with his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and he was play/ing it for a long time[-:].,and he was playing it for a long time +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then the girl play/ed with it.,and then the girl played with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then the giraffe said ah!,and then the giraffe said ah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,then it went into the water and almost sank[-:].,then it went into the water and almost sank +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and the giraffe was mad at the elephant[-:].,and the giraffe was mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then : the other elephant came and saw the airplane[-:].,and then the other elephant came and saw the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then he went ooh!,and then he went ooh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then : he try/ed to get it.,and then he tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and he could not[-:].,and he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then they were wait/ing.,and then they were waiting +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and they were hot[-:].,and they were hot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then a girl came[-:] : and caught the airplane[-:].,and then a girl came and caught the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then : she brought it to (the uh) the giraffe.,and then she brought it to the uh the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and he said thank/s.,and he said thanks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then he play/ed with it again[-:].,and then he played with it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,once upon a time the bunny made a castle in his sandbox with the dog.,once upon a time the bunny made a castle in his sandbox with the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then they want/ed to make a bigger one.,and then they wanted to make a bigger one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,so they (go) add/ed more sand.,so they go added more sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then : they put sand on top of the castle.,and then they put sand on top of the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then it : broke.,and then it broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and the bunny said aw[-:]!,and the bunny said aw +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then they were go/ing to [~_gonna] make it again.,and then they were going to make it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,once upon a time the bunny was get/ing some raspberry/s.,once upon a time the bunny was getting some raspberries +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and the dog was get/ing raspberry/s.,and the dog was getting raspberries +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,they walk/ed : until they had a party.,they walked until they had a party +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and (they could not) (he) the bunny could not eat all of his : stuff.,and they could not he the bunny could not eat all of his stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,he was too[-:] full.,he was too full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then : his tummy got big[!].,and then his tummy got big +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,then : he got big like a[EW:an] old man.,then he got big like a old man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then : the dog holded|hold[EW:held] on to the : big man : (um) the doctor.,and then the dog holded on to the big man um the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then he help/ed the bunny.,and then he helped the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then : he said come home with me [~_laughs].,and then he said come home with me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,once upon a time : there was a guy with a balloon : with a little wagon.,once upon a time there was a guy with a balloon with a little wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and (he uh) the bunny said hey where did you get that balloon from?,and he uh the bunny said hey where did you get that balloon from +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then he was (go/ing to) : start/ing on it.,and then he was going to starting on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,start/ing a [+..].,starting a +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,(fa) : and then : (the) the bunny was try/ing to untie it.,fa and then the the bunny was trying to untie it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and the dog was like hey do not!,and the dog was like hey do not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then it flew away.,and then it flew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then the dog was really mad at the bunny.,and then the dog was really mad at the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and the bunny was look/ing at the balloon.,and the bunny was looking at the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then they saw a clown.,and then they saw a clown +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,they took a balloon.,they took a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then : (they) he had money.,and then they he had money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then they were sad because they could not take a balloon.,and then they were sad because they could not take a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then they saw a doctor.,and then they saw a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and they said he is not let/ing us have a balloon.,and they said he is not letting us have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,: and then (sh) the doctor gave it to : the clown.,and then sh the doctor gave it to the clown +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/561.slt,and then they got to have a balloon.,and then they got to have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,this one look/3s a little harder [+_bch].,this one looks a little harder +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,[~_okay_oop_there] look/3s like a giraffe (and a) and an elephant are : go/ing to[:_gonna] go for a swim in the pool.,looks like a giraffe and a and an elephant are going to go for a swim in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and it look/3s like they are friend/s.,and it looks like they are friends +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and they see a ball[!] in there.,and they see a ball in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and I think they want to[:_wanna] play.,and I think they want to play +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,they : jump into the water.,they jump into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,(and the) and the : (uh) giraffe start/3s swim/ing for it.,and the and the uh giraffe starts swimming for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and : then he give/3s it (to) to his friend (the e) the elephant.,and then he gives it to to his friend the e the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and[-:] then it look/3s : like they are really good friend/s now.,and then it looks like they are really good friends now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,look/3s like the giraffe and the elephant (are) see the diving board.,looks like the giraffe and the elephant are see the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and they want to[:_wanna] go off it.,and they want to go off it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,so the elephant : (ru) rush/3s to the : diving board.,so the elephant ru rushes to the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,(and[-:] she run) and she run/3s really really fast.,and she run and she runs really really fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and she (f) slip/3s and : cut/3s her knee.,and she f slips and cuts her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and so the lifeguard come/3s to help.,and so the lifeguard comes to help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,so (he) he put/3s a bandaid on her knee.,so he he puts a bandaid on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,(and[-:]) : and it look/3s like she is confuse/ed.,and and it looks like she is confused +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,it look/3s like she has never seen a bandaid before.,it looks like she has never seen a bandaid before +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and then it look/3s like the lifeguard is mad at her : for run/ing : break/ing one of the rule/s.,and then it looks like the lifeguard is mad at her for running breaking one of the rules +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and there is a sign there that says no run/ing.,and there is a sign there that says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,[~_okay] there is the elephant : and the giraffe again.,there is the elephant and the giraffe again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and it look/3s like she is : look/ing at the giraffe/z new toy plane.,and it looks like she is looking at the giraffe's new toy plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and he start/3s play/ing with it.,and he starts playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,then she snatch/3s[!] it away from him.,then she snatches it away from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and then she accidentally drop/3s it in the pool.,and then she accidentally drops it in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and it start/3s drownding[EW:drowning].,and it starts drownding +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,(and) and the : giraffe is really mad at her.,and and the giraffe is really mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,then the lifeguard see/3s.,then the lifeguard sees +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and : he look/3s like he is going to[:_gonna] try and help.,and he looks like he is going to try and help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and the elephant is explain/ing what happen/ed.,and the elephant is explaining what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and (he) the lifeguard try/3s and reach/3s for the plane.,and he the lifeguard tries and reaches for the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and : the giraffe is sad because he could not grab it.,and the giraffe is sad because he could not grab it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,so it : look/3s like (the li) the : elephant/z mom come/3s and has a net.,so it looks like the li the elephant's mom comes and has a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,so she get/3s it.,so she gets it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and : the giraffe stop/3s cry/ing.,and the giraffe stops crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and he is really happy now.,and he is really happy now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and[-:] he is happy that he has his toy back.,and he is happy that he has his toy back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,(there is : uh) (there is) look/3s like it is a little dog that is play/ing in the sandbox.,there is uh there is looks like it is a little dog that is playing in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and it made a really cool sandcastle.,and it made a really cool sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and a rabbit come/3s along and want/3s to help.,and a rabbit comes along and wants to help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,so : they : start work/ing together.,so they start working together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,(and the) : and the bunny (scoop) scoop/3s up a lot of sand.,and the and the bunny scoop scoops up a lot of sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and : he dump/3s it all : onto the sandcastle.,and he dumps it all onto the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and it bury/3s[!] it.,and it buries it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,(and) : and he is (r) really mad : because : (he a) he accidentally : put (the) : the sand on.,and and he is r really mad because he a he accidentally put the the sand on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,he thought it would help.,he thought it would help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and : then the : little dog start/3s cry/ing.,and then the little dog starts crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,there is the dog and the bunny again.,there is the dog and the bunny again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,they are go/ing to [~_gonna] go on a picnic together.,they are going to go on a picnic together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and[-:] the bunny : bring/3s a lot of : food.,and the bunny brings a lot of food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,(and he) and he : eat/3s like a pig.,and he and he eats like a pig +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and he get/3s (r) really big and fat.,and he gets r really big and fat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and he is : sick : because he ate too much.,and he is sick because he ate too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,(and the do) and the dog is worry/ed.,and the do and the dog is worried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,(and) : and the bunny is (ro) look/ing really sick.,and and the bunny is ro looking really sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,he has got circle/s around his head.,he has got circles around his head +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and then the dog spot/3s (a n) a nurse.,and then the dog spots a n a nurse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and she come/3s to help.,and she comes to help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,so she do/3s[!] help.,so she does help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,so she look/3s (wha) what is[-:] wrong.,so she looks wha what is wrong +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and she find/3s out what it is.,and she finds out what it is +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and then she make/3s him all better.,and then she makes him all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and he : walk/3s home happily.,and he walks home happily +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,(uh) the dog and the bunny : (co) comes|come[EW:came] along again.,uh the dog and the bunny co comes along again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,(and) : and the : dog is pull/ing a wagon around.,and and the dog is pulling a wagon around +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,(and[-:] the) and the bunny is (s um) see/3s : a balloon on there.,and the and the bunny is s um sees a balloon on there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and he is really amaze/ed.,and he is really amazed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,so he want/3s to touch[!] it.,so he wants to touch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,so he accidentally untie/3s[!] it : because he think|think[EW:thinks] (it) something will happen.,so he accidentally unties it because he think it something will happen +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and it is really cool!,and it is really cool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,but he accidentally : let/3s it away.,but he accidentally lets it away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and they rush for it.,and they rush for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,but they can not get it.,but they can not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,(the uh) the dog is really steam/ed[!] (an) : and is show/ing her teeth.,the uh the dog is really steamed an and is showing her teeth +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,(and) : and the bunny is look/ing up.,and and the bunny is looking up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,(an) : and he is like uhoh.,an and he is like uhoh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,then they spot a balloon[!] man who is sell/ing balloon/s[!].,then they spot a balloon man who is selling balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and then he think/3s (he) he can buy[!] a balloon.,and then he thinks he he can buy a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,so he go/3s over there.,so he goes over there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,so he : ask/3s for a balloon.,so he asks for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,(and the) [~_okay] : (and then : the) and then (um) the bunny (think/3s) say/3s that he do/3s not have any money.,and the and then the and then um the bunny thinks says that he does not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,but he can not have one : because they are five cent/s.,but he can not have one because they are five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,so he is get/ing sad.,so he is getting sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,(um : there is a) both of them are : disappoint/ed that they can not get one : because they do not have any money.,um there is a both of them are disappointed that they can not get one because they do not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and then the bunny spot/3s his mom[!].,and then the bunny spots his mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,(an he) and he ask/3s for (f) five cent/s.,an he and he asks for f five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and she give/3s it to him.,and she gives it to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,she pay/3s the : man.,she pays the man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and they get two[!] balloon/s.,and they get two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/918.slt,and they are really happy because they got two of them.,and they are really happy because they got two of them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,(um) an elephant *was bounce/ing a ball [EU].,um an elephant bouncing a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,and a giraffe *was watch/ing [EU].,and a giraffe watching +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the ball *was in the water [EU].,the ball in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,and they are both stare/ing.,and they are both staring +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,and it look/3s like they are scream/ing.,and it looks like they are screaming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,(uh) the giraffe : *is in the pool[-:] get/ing the ball [EU].,uh the giraffe in the pool getting the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the elephant *is surprise/ed.,the elephant surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the giraffe *is give/ing the ball to the elephant.,the giraffe giving the ball to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the elephant like/3s what he do/3s.,the elephant likes what he does +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,and : he smile/3s.,and he smiles +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the[-:] elephant and giraffe : *are look/ing at the water [EU].,the elephant and giraffe looking at the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,(uh) they go to the jumping board.,uh they go to the jumping board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the elephant run/3s.,the elephant runs +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,and the giraffe walk/3s.,and the giraffe walks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the elephant get/3s hurt.,the elephant gets hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,and the giraffe do/3s not.,and the giraffe does not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the giraffe wonder/3s if the elephant is okay.,the giraffe wonders if the elephant is okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the : in charged[EW:charge] elephant[?] : wonder/3s what is wrong.,the in charged elephant wonders what is wrong +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,: put/3s a bandaid on [EU].,puts a bandaid on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,: (uh) : take/3s her to a bench [EU].,uh takes her to a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,: show/3s her the sign [EU].,shows her the sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,then she is surprise/ed[~!_laughing].,then she is surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,no run/ing[-:] the sign say/3s.,no running the sign says +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,[~_sighs] the[-:] elephant[-:] decide/3s : that : they should play with the toy airplane.,the elephant decides that they should play with the toy airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the[-:] : (um[-:]) giraffe : got it first.,the um giraffe got it first +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,and the elephant[~!_laughing] wonder/3s if she could do it.,and the elephant wonders if she could do it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,and she do/3s it way too fast : drop/s it in the water accidentally [EU].,and she does it way too fast drops it in the water accidentally +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the[-:] giraffe get/3s mad at her.,the giraffe gets mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the[-:] in charged[EW:charge] elephant come/3s.,the in charged elephant comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the[-:] : other elephant : tell/3s him what : happen/ed.,the other elephant tells him what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,he try/3s and get/3s it.,he tries and gets it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,he do/3s not know how.,he does not know how +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,then[-:] his wife come/3s : get/3s it with the (s) fishing[-:] net sort of : and give/3s it back to the giraffe.,then his wife comes gets it with the s fishing net sort of and gives it back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,giraffe like/3s the airplane[~!_laughing].,giraffe likes the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the[-:] rabbit ask/3s if he can play with the dog[-:].,the rabbit asks if he can play with the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the : dog is make/ing something.,the dog is making something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the rabbit is dig/ing a big bucket of sand : dump/s it right where the castle is suppose/ed to be : and[-:] : mean/3s it to make : a[-:] sort of (a) : a thing like this [EU].,the rabbit is digging a big bucket of sand dumps it right where the castle is supposed to be and means it to make a sort of a a thing like this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,and[-:] : it wreck/3s the castle.,and it wrecks the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,remember I can not see the picture.,remember I can not see the picture +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,I know [+_bch].,I know +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,and he try/3s to fix it.,and he tries to fix it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,[~_I_mean] the dog try/3s to [EU].,the dog tries to +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the[-:] : rabbit come/3s for a picnic with the dog.,the rabbit comes for a picnic with the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the[-:] (ra) rabbit eat/3s too much[EW:many] carrot/s and[-:] : bun/s.,the ra rabbit eats too much carrots and buns +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,and the dog do/3s not.,and the dog does not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,he get/3s[-:] sort of sick : I think.,he gets sort of sick I think +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,he get/3s a real (stomach) : headache.,he gets a real stomach headache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the[-:] dog run/3s to gets[EW:get] his mother.,the dog runs to gets his mother +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,: pull/3s her over [EU].,pulls her over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the[-:] mother rabbit : talk/3s : to her son to leave now [EU].,the mother rabbit talks to her son to leave now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,and[-:] the[-:] rabbit do/3s with his mother [EU].,and the rabbit does with his mother +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the dog is happy.,the dog is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the dog is play/ing with the wagon with a balloon on it.,the dog is playing with the wagon with a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,and the rabbit come/3s again.,and the rabbit comes again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,he want/3s the balloon.,he wants the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,he[-:] untie/3s it.,he unties it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the balloon float/3s away.,the balloon floats away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,: go/3s higher [EU].,goes higher +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the dog is mad.,the dog is mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,then they see a balloon seller.,then they see a balloon seller +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,(they ask) they tell him : that[-:] one of the balloon/s goes|go[EW:went] : into the[-:] sky.,they ask they tell him that one of the balloons goes into the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,and[-:] (they ask) : he[-:] tell/3s them that (it is : fi) five cent/s [EU].,and they ask he tells them that it is fi five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,hmm I could get one of those [~_CHI_talking_about_self].,hmm I could get one of those +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,here I have more than five cent/s [~_CHI_talking_about_self].,here I have more than five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,[~_laughs] and the rabbit do/3s not have any : money.,and the rabbit does not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,the rabbit go/3s to get : his mother.,the rabbit goes to get his mother +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,: says that he want/3s a balloon [EU].,says that he wants a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,and he has no money.,and he has no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,gives him five cent/s [EU].,gives him five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/650.slt,: and give/3s them both a balloon.,and gives them both a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,one day a brother and a sister were : play/ing outside in their back yard : by their pool.,one day a brother and a sister were playing outside in their back yard by their pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and (the[-:]) : the sister was bounce/ing the ball.,and the the sister was bouncing the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,but then it fell in the water.,but then it fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,(and then he went) and then the brother went to go swim : for the ball.,and then he went and then the brother went to go swim for the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and then he gave it back.,and then he gave it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and then she was happy.,and then she was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,one day (a) a brother and a sister were[-:] : by their swimming pool.,one day a a brother and a sister were by their swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,the sister want/ed to go swimming!,the sister wanted to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,she ran : really fast.,she ran really fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and she slip/ed.,and she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,(and she br) and she hurt her knee.,and she br and she hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and then the brother came.,and then the brother came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and then the lifeguard came.,and then the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and they (um : gave um) gave them a bandage.,and they um gave um gave them a bandage +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,[~_I_mean] (they um) they clean/ed it.,they um they cleaned it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and (then gave them a bandage) then they gave the sister a bandage.,and then gave them a bandage then they gave the sister a bandage +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,(and then they help/ed them walk to the be) and then they help/ed her walk to the bench.,and then they helped them walk to the be and then they helped her walk to the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and then the lifeguard said go[!].,and then the lifeguard said go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,one day there was a brother and a sister.,one day there was a brother and a sister +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,(and they) and the brother said : do you want to play with my plane?,and they and the brother said do you want to play with my plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and the sister said okay.,and the sister said okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,(then h) then he show/ed her how to : (um) use it.,then h then he showed her how to um use it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and then she went ah.,and then she went ah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and then she took it.,and then she took it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and she try/ed.,and she tried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,(and it) and when she[!] threw (it) it fell in the water!,and it and when she threw it it fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and then he got really[!] mad.,and then he got really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and she was cry/ing.,and she was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and the lifeguard : look/3s puzzle/ed[-:].,and the lifeguard looks puzzled +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and : (the d) the sister said : I threw the plane.,and the d the sister said I threw the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and it fell in the water.,and it fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and then the lifeguard (try/ed to get it) try/ed to get it.,and then the lifeguard tried to get it tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and he could not get it.,and he could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and then (the br) the brother was cry/ing.,and then the br the brother was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and then the mom came.,and then the mom came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and she had a net.,and she had a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and she scoop/ed the plane up with the net.,and she scooped the plane up with the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,(and he s) (he was) and (the boy) the brother was happy again.,and he s he was and the boy the brother was happy again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,(the) the end [+_bch].,the the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,there was a bunny and a dog : I guess.,there was a bunny and a dog I guess +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,dog was build/ing a sandcastle.,dog was building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and the : rabbit was (goin) was try/ing to help.,and the rabbit was goin was trying to help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,but when he pour/ed the pail of sand on it it broke the sandcastle.,but when he poured the pail of sand on it it broke the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and then : the dog : was (um) : puzzle/ed : I guess.,and then the dog was um puzzled I guess +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and then he start/ed to cry.,and then he started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and the rabbit felt sorry.,and the rabbit felt sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,one fine day there was : a dog and a rabbit.,one fine day there was a dog and a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and they were go/ing for a picnic!,and they were going for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,the rabbit had lot/3s of food.,the rabbit had lots of food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and the (um) dog had a sandwich : and a juice box.,and the um dog had a sandwich and a juice box +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and the rabbit : was full[-:].,and the rabbit was full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and the dog was still eat/ing.,and the dog was still eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,(uh) : and : the dog just finish/ed eat/ing.,uh and the dog just finished eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and the rabbit had a (tum) stomachache.,and the rabbit had a tum stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,the dog went to go get a doctor.,the dog went to go get a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,the doctor came.,the doctor came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,the doctor (um check/ed) check/ed the rabbit.,the doctor um checked checked the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,(the) (the rabbit) [~_okay] the doctor : took the rabbit.,the the rabbit the doctor took the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,once[-:] (the) there was a dog.,once the there was a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,(and he was using) and he was : use/ing his wheelbarrel.,and he was using and he was using his wheelbarrel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,(and it was) and there was a balloon tie/ed to his wheelbarrel.,and it was and there was a balloon tied to his wheelbarrel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,(and then the ra) and then a rabbit saw the balloon.,and then the ra and then a rabbit saw the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and he[!] want/ed it.,and he wanted it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,so he untie/ed the balloon.,so he untied the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and it sail/ed up.,and it sailed up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and it sail/ed up.,and it sailed up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and then[-:] they saw a balloon man.,and then they saw a balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,but (he said can I have) the rabbit said can I have one?,but he said can I have the rabbit said can I have one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,(the) (the r) the balloon man said five[!] cent/s.,the the r the balloon man said five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,(so they s) (so they wen) so they left.,so they s so they wen so they left +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and then they found a doctor.,and then they found a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,(and he) and they said can I have (fi) five cent/s?,and he and they said can I have fi five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and then : (he gave) the doctor gave him ten cent/s so they both[!] could have a balloon.,and then he gave the doctor gave him ten cents so they both could have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,and they both had balloon/s.,and they both had balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/840.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,(the elephant) one morning the elephant went to the pool and bounce/ed the ball.,the elephant one morning the elephant went to the pool and bounced the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,(and want) and the giraffe saw : the elephant bounce/ing the ball.,and want and the giraffe saw the elephant bouncing the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then : the elephant/z ball went in the pool.,then the elephant's ball went in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then the giraffe : was get/ing it.,then the giraffe was getting it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then the giraffe gave it to : the elephant.,then the giraffe gave it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then : the : [+..] [EU].,then the +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,nothing for that page?,nothing for that page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,yeah [+_bch].,yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,the[-:] elephant (wa) was stand/ing by the pool.,the elephant wa was standing by the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then she want/3s to go : on the diving board.,then she wants to go on the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then (she) she ran and slip/ed : and hurt her : knee.,then she she ran and slipped and hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then the lifeguard : went[-:] to[-:] (the rescue) the rescue.,then the lifeguard went to the rescue the rescue +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then the lifeguard put a bandaids[EW:bandaid] on the elephant/z knee.,then the lifeguard put a bandaids on the elephant's knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then she sat on the (bench) bench.,then she sat on the bench bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,: then the lifeguard (so) show/ed : her the sign : say/3s no run/ing.,then the lifeguard so showed her the sign says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,The giraffe got his airplane and : got it from his house.,The giraffe got his airplane and got it from his house +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then bring|bring[EW:brought] it to the pool [EU].,then bring it to the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then he : flewed|fly[EW:flew] it.,then he flewed it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then she[-:] : (um) : let go.,then she um let go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,and then the airplane went : into the pool.,and then the airplane went into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then the giraffe got mad to the elephant [EU].,then the giraffe got mad to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then the lifeguard came.,then the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,(and) (and the elephant was ask/ing how) : the lifeguard : said how did that get in there?,and and the elephant was asking how the lifeguard said how did that get in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then the lifeguard : was try/ing to reach the airplane : for the kid/s.,then the lifeguard was trying to reach the airplane for the kids +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then the giraffe is : cry/ing.,then the giraffe is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then[-:] : the catcher elephant : is get/ing the airplane.,then the catcher elephant is getting the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,there is nothing [+_bch].,there is nothing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,anything for this one?,anything for this one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,no [+_bch].,no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then she gave it (to the toy) to the giraffe.,then she gave it to the toy to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then the giraffe was happy again.,then the giraffe was happy again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,the : dog was play/ing in the sandbox.,the dog was playing in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,and the rabbit came.,and the rabbit came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,and then the rabbit (wa) got out a pail : and put sand in the pail.,and then the rabbit wa got out a pail and put sand in the pail +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then she put the sand on the sandcastle.,then she put the sand on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then[-:] : the rabbit broke the sandcastle.,then the rabbit broke the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then the dog cry/ed.,then the dog cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,the dog was wait/ing for the rabbit : for a picnic.,the dog was waiting for the rabbit for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then the rabbit start/ed to eat.,then the rabbit started to eat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then he ate a lot.,then he ate a lot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,(and the) and : the rabbit got a stomachache.,and the and the rabbit got a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then the dog : went to : a doctor.,then the dog went to a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,(then : the do) then the dog pull/ed (the rabbit to the : rabbit) the doctor to the rabbit.,then the do then the dog pulled the rabbit to the rabbit the doctor to the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then : the doctor is check/ing on the : rabbit.,then the doctor is checking on the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,the dog (is) : is pull/ing the wagon.,the dog is is pulling the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,and the rabbit came.,and the rabbit came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then the rabbit (w) want|want[EW:wanted] to touch the balloon.,then the rabbit w want to touch the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then the rabbit (wa) is (inty) untie/ing the balloon.,then the rabbit wa is inty untying the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then the balloon flewed|float[EW:flew] away.,then the balloon flewed away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then the dog : got mad.,then the dog got mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then they want the balloon.,then they want the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then they saw : a rabbit carry/ing the balloon/s.,then they saw a rabbit carrying the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then the rabbit : ask/ing for two balloon/s [EU].,then the rabbit asking for two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,and it cost/3s five cent/s.,and it costs five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,and : the rabbit do/3s not have : any : money.,and the rabbit does not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then : that is it [+_bch].,then that is it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then the rabbit saw the doctor again.,then the rabbit saw the doctor again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,(then) : then the rabbit ask/ed for a balloon.,then then the rabbit asked for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/878.slt,then : the doctor : gave them money to the : balloon carrier [EU].,then the doctor gave them money to the balloon carrier +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,once upon a time there were two friend/s a : giraffe (and a zeb a) (and) and an elephant.,once upon a time there were two friends a giraffe and a zeb a and and an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,the elephant was play/ing ball : by the pool.,the elephant was playing ball by the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and then by accident she drop/ed it in the pool.,and then by accident she dropped it in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,the ball bounce/ed into the pool.,the ball bounced into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and : (they) : they did not know what to do.,and they they did not know what to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,but then the (gira) giraffe : thought of an idea and jump/ed into the pool : and swam to get the ball.,but then the gira giraffe thought of an idea and jumped into the pool and swam to get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and he did.,and he did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and the elephant and : giraffe were very happy.,and the elephant and giraffe were very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and the elephant : (was very very very) like/ed the : giraffe for get/ing her ball.,and the elephant was very very very liked the giraffe for getting her ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,once[-:] (there) : there were two friend/s.,once there there were two friends +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and : they : were (by the swimming) by a swimming pool.,and they were by the swimming by a swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and : the elephant want/ed to go : to the diving board.,and the elephant wanted to go to the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and she was start/ing to run there.,and she was starting to run there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and then she slip/ed[!] : and fell and scratch/ed herself.,and then she slipped and fell and scratched herself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and then the : lifeguard came over : and gave her a bandaid : and told her to (sit) (take a) sit down on the bench (and said) : (and show/ed her) and point/ed to the sign : that said no run/ing.,and then the lifeguard came over and gave her a bandaid and told her to sit take a sit down on the bench and said and showed her and pointed to the sign that said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,once[-:] there were two friend/s.,once there were two friends +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,: and they were by the swimming pool.,and they were by the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and : the giraffe[-:] (um) had a (air) toy airplane.,and the giraffe um had a air toy airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and (he want/ed) he said do you want to play with me?,and he wanted he said do you want to play with me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and : he was play/ing with his airplane : and made it go loop[!] and then up.,and he was playing with his airplane and made it go loop and then up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and then the elephant : got really dizzy : and grab/ed it away from him.,and then the elephant got really dizzy and grabbed it away from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and : (he) the giraffe was (ver) very nervous.,and he the giraffe was ver very nervous +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and then by accident : the elephant drop/ed it into the : pool.,and then by accident the elephant dropped it into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and (the) the (um) giraffe got very mad at her.,and the the um giraffe got very mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and the lifeguard : seen|see[EW:saw] that : (the) : [~_says_under_breath] (the thing) the airplane was in the water.,and the lifeguard seen that the the thing the airplane was in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and the elephant told (her) him that : she need/ed his help : to get the airplane.,and the elephant told her him that she needed his help to get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,but it was too far for him.,but it was too far for him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,so he could not get it.,so he could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and he did not know what to do.,and he did not know what to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,so : he told them : to find somebody else.,so he told them to find somebody else +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and then : (the) a woman with a net : came over : and said she would get it.,and then the a woman with a net came over and said she would get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and : she put the net in the water.,and she put the net in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and she got the airplane.,and she got the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,(and he was) and[-:] the : (zebra um) giraffe was very happy.,and he was and the zebra um giraffe was very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,the endbch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,once upon a time (there was : a rabbit) there were two friend/s : a rabbit and a dog.,once upon a time there was a rabbit there were two friends a rabbit and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,the dog want/ed to make a sandcastle (but the) with (the) her friend.,the dog wanted to make a sandcastle but the with the her friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,(and : so) and so they did.,and so and so they did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,but : when the rabbit got his shovel and pail : then : he start/ed help/ing[!] : the dog[!] : (her) his friend.,but when the rabbit got his shovel and pail then he started helping the dog her his friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and : he (um) : put the sand in his pail and : (ss um) : was (flatn) (flatteni) flatten/ing the sand down.,and he um put the sand in his pail and ss um was flatn flatteni flattening the sand down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and then : he pour/ed it over (the sandca) the castle.,and then he poured it over the sandca the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and the dog : look/ed terrify/ed because (it did) (it) that was not how it was suppose/ed to go.,and the dog looked terrified because it did it that was not how it was supposed to go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and then : the rabbit : (look) seen|see[EW:saw] that he broke the sandcastle and : said it was an accident.,and then the rabbit look seen that he broke the sandcastle and said it was an accident +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and I did not mean to.,and I did not mean to +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and the dog (try/ed to m) made the sandcastle again.,and the dog tried to m made the sandcastle again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,(the) : [~_let_(u)s_think] (the) (the) (the two frie) there were two friend/s : the rabbit and a dog.,the the the the two frie there were two friends the rabbit and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,they went for a picnic lunch.,they went for a picnic lunch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and : they went in the forest.,and they went in the forest +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,then : the rabbit : had a whole picnic.,then the rabbit had a whole picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,(and : he) : and it was a little too much.,and he and it was a little too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,so : he look/ed (little) a little dizzy.,so he looked little a little dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and : he fell down because he ate (all) (all) (all of the food) almost all the food.,and he fell down because he ate all all all of the food almost all the food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and : he : was full.,and he was full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and he decide/ed to get dizzy : and then : look|look[EW:looked] really sick.,and he decided to get dizzy and then look really sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and then : (the rabbit/z mother came) a doctor came.,and then the rabbit's mother came a doctor came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and (the) the dog : ran up to her and : told her that her friend : (fel) was really dizzy and got knock/ed out.,and the the dog ran up to her and told her that her friend fel was really dizzy and got knocked out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and : the dog pull/ed her all the way over : to the rabbit.,and the dog pulled her all the way over to the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and (the) : she : help/ed him.,and the she helped him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,(she) : and then : the doctor : (um) brung|bring[EW:brought] him over to the : (um) [~_what_is_it] (uh) : the center.,she and then the doctor um brung him over to the um uh the center +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,there was[EW:were] two friend/s a rabbit and a dog.,there was two friends a rabbit and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,the dog had a balloon.,the dog had a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and (the rabbit was) the dog went for a walk with : her balloon.,and the rabbit was the dog went for a walk with her balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,the rabbit came : along.,the rabbit came along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and (the) the (f) rabbit : seen|see[EW:saw] the balloon.,and the the f rabbit seen the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and : he want/ed to take it off.,and he wanted to take it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and[-:] so[-:] : he untie/ed it.,and so he untied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and : the balloon flew away.,and the balloon flew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and : they were very (uh) scare/ed.,and they were very uh scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and the dog was very mad at the rabbit.,and the dog was very mad at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and : the rabbit : seen|see[EW:saw] [-:] : a balloon man and : went over : and : said can I have one of those balloon/s!,and the rabbit seen a balloon man and went over and said can I have one of those balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,but : the balloon man show/ed him (wa) how much (i) they were.,but the balloon man showed him wa how much i they were +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,but : he did not have any money.,but he did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,(so the balloon man uh) : so the balloon man did not give (hi) them one.,so the balloon man uh so the balloon man did not give hi them one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and : the rabbit seen|see[EW:saw] the doctor : and told her that : he need/ed some money : (for) : for a balloon.,and the rabbit seen the doctor and told her that he needed some money for for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and : the : doctor (um) : got two balloon/s (and) : instead of one.,and the doctor um got two balloons and instead of one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and she paid him ten cent/s.,and she paid him ten cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,and they were all very happy.,and they were all very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/846.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,An elephant and a : horse are play/ing.,An elephant and a horse are playing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,(the ball) (the ball went into) (the ball went in) [~_E:_go_ahead] the ball went into : the swimming pool.,the ball the ball went into the ball went in the ball went into the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,and (the) the horse jump/3s in to go get the ball.,and the the horse jumps in to go get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,the horse : give/3s the ball to the elephant.,the horse gives the ball to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,the horse is give/ing : the elephant a happy face.,the horse is giving the elephant a happy face +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,and the elephant is do/ing the exact same.,and the elephant is doing the exact same +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,They are go/ing to have a race.,They are going to have a race +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,then they change/ed their mind/s.,then they changed their minds +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,and they are go/ing to go on the jumping board.,and they are going to go on the jumping board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,they were run/ing.,they were running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,and elephant slip/ed.,and elephant slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,elephant hurt (her) her knee.,elephant hurt her her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,the lifeguard come/3s.,the lifeguard comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,the lifeguard put/3s a bandaid on.,the lifeguard puts a bandaid on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,now elephant is happy.,now elephant is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,lifeguard is point/ing to the sign no run/ing.,lifeguard is pointing to the sign no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,They are talk/ing together.,They are talking together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,and one of them has a[EW:an] (pa) airplane.,and one of them has a pa airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,the airplane (brea) break/3s.,the airplane brea breaks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,and he throw/3s it in the swimming pool.,and he throws it in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,then they fix it.,then they fix it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,then it fall/3s into the swimming pool.,then it falls into the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,then it go/3s : into the swimming pool (s) : into down(*3) [EU].,then it goes into the swimming pool s into down down down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,now the lifeguard is mad at Elephant and Horse.,now the lifeguard is mad at Elephant and Horse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,(lifeguard) Elephant told the lifeguard : that we were play/ing with it : airplane.,lifeguard Elephant told the lifeguard that we were playing with it airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,Lifeguard can not reach it.,Lifeguard can not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,Horse cry/3s.,Horse cries +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,elephant : lifeguard come/3s : to get the paper airplane.,elephant lifeguard comes to get the paper airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,she gets it and pick/3s it out of the water.,she gets it and picks it out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,and she give/3s it to Horse.,and she gives it to Horse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,Horse is happy and Elephant [EU].,Horse is happy and Elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,(they are build/ing a castle) dog is build/ing a castle.,they are building a castle dog is building a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,and bunny rabbit want/3s to help.,and bunny rabbit wants to help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,and dog say/3s bunny rabbit can help.,and dog says bunny rabbit can help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,bunny rabbit : dig/3s some sand up.,bunny rabbit digs some sand up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,and dog : (tri) prepare/3s the castle.,and dog tri prepares the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,dog is mad because bunny rabbit dump/ed the sand on (ca) (castle) : on the castle.,dog is mad because bunny rabbit dumped the sand on ca castle on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,the castle is broken.,the castle is broken +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,dog and bunny rabbit are sad.,dog and bunny rabbit are sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,dog is cry/ing.,dog is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,(bunny rabbit) : dog is try/ing to make a new (wa) castle.,bunny rabbit dog is trying to make a new wa castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,bunny rabbit is stand/ing up : go/ing like this [~_makes_a__face].,bunny rabbit is standing up going like this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,dog is go/ing for a (pic) picnic.,dog is going for a pic picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,bunny rabbit is come/ing : with dog : with a picnic basket.,bunny rabbit is coming with dog with a picnic basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,: dog unpack/3s the picnic.,dog unpacks the picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,bunny rabbit : go/3s likes[EW:like] this : stare/ing at a carrot.,bunny rabbit goes likes this staring at a carrot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,dog is : eat/ing and drink/ing.,dog is eating and drinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,bunny rabbit is full.,bunny rabbit is full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,he ate too much.,he ate too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,bunny rabbit is get/ing a tummyache.,bunny rabbit is getting a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,dog is go/ing to get a doctor.,dog is going to get a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,dog pull/3s the doctor to picnic.,dog pulls the doctor to picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,doctor help/3s bunny rabbit.,doctor helps bunny rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,doctor : walk/3s with bunny rabbit.,doctor walks with bunny rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,and dog stay/3s and pick/3s up the picnic.,and dog stays and picks up the picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,dog is push/ing : (um) : a coat.,dog is pushing um a coat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,and bunny rabbit is go/ing to get into the trailer.,and bunny rabbit is going to get into the trailer +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,and dog [+//]>,and dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,oh no [+_bch].,oh no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,nothing [+_bch].,nothing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,and bunny rabbit try/3s to get the balloon off : (of tra) of the trailer.,and bunny rabbit tries to get the balloon off of tra of the trailer +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,(dog go/3s) : dog (go/3s) : shout/3s.,dog goes dog goes shouts +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,and bunny rabbit : try/3s to untie the balloon.,and bunny rabbit tries to untie the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,(dog and bunny : are try/ing) : bunny untie/ed the balloon.,dog and bunny are trying bunny untied the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,and it went up in the air.,and it went up in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,dog and bunny are try/ing to get the balloon.,dog and bunny are trying to get the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,dog (go) got very very mad at bunny rabbit.,dog go got very very mad at bunny rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,a store man with a whole bunch of balloon/s.,a store man with a whole bunch of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,bunny come/3s and get/3s one and tie/3s it (to : trailer/s) (trailer) to the trailer.,bunny comes and gets one and ties it to trailers trailer to the trailer +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,bunny : ask/3s : for : a balloon.,bunny asks for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,: this is five bill/s.,this is five bills +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,and bunny has no money.,and bunny has no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,: then dog come/3s.,then dog comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,and (ask) they both ask : for : a balloon.,and ask they both ask for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,then bunny rabbit run/3s off to doctor.,then bunny rabbit runs off to doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,(doctor) : bunny rabbit ask/3s doctor : if he can have some money to buy a balloon.,doctor bunny rabbit asks doctor if he can have some money to buy a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,doctor buy/3s a balloon for bunny rabbit (do) and dog.,doctor buys a balloon for bunny rabbit do and dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/705.slt,now (bun) dog and bunny rabbit are happy at doctor [EU].,now bun dog and bunny rabbit are happy at doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,there is a[EW:an] elephant talk/ing to a horse and play/ing basketball.,there is a elephant talking to a horse and playing basketball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then he drop/ed it in a pile in the mud.,then he dropped it in a pile in the mud +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then he falled|fall[EW:fell] in the mud.,then he falled in the mud +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then he help/ed him.,then he helped him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then he (um) : went to the[-:] park and play|play[EW:played].,then he um went to the park and play +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,he (um) jump/ed in the water.,he um jumped in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then he (um) push/ed him in.,then he um pushed him in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then he falled|fall[EW:fell] in the water.,then he falled in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then he laugh/ed.,then he laughed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then he (um) : runned|run[EW:ran] to the race.,then he um runned to the race +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then he smile/ed.,then he smiled +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then he : sit|sit[EW:sat] on the chair.,then he sit on the chair +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then (um) he[-:] (um) was cold.,then um he um was cold +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,(one the) once upon a time (then) (um) there was (um) a lion.,one the once upon a time then um there was um a lion +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then he flied|fly[EW:flew] the airplane.,then he flied the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then he fight|fight[EW:fought].,then he fight +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then he[-:] (um) drop/ed his airplane in the water.,then he um dropped his airplane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then (he um) it was gone in.,then he um it was gone in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then (um he) they can not find it.,then um he they can not find it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then[-:] they were so mad.,then they were so mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then (they k) they are try/ing to reach the airplane.,then they k they are trying to reach the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then (they) (they) they can not reach it.,then they they they can not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then (they catched|catch[EW:caught]) they are go/ing to catch it with a (um) : refire[c].,then they catched they are going to catch it with a um refire +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then they catched|catch[EW:caught] it.,then they catched it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then they (k um) catched|catch[EW:caught] : it.,then they k um catched it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then : he could fly it again.,then he could fly it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,(um they) they maked|make[EW:made] a castle.,um they they maked a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then the rabbit : (um) help/ed him.,then the rabbit um helped him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then he put/3s on lots of sand.,then he puts on lots of sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then it broke.,then it broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then they have to make it again.,then they have to make it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,(um) once upon a time they had a picnic.,um once upon a time they had a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then they (um) eat everything.,then they um eat everything +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,(then they) then their [~_coughs] tummy[EW:tummy/s] was[EW:were] big.,then they then their tummy was big +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,(then) [~_coughs] then (um) they were all full.,then then um they were all full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then : they help/ed him.,then they helped him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then they pull/ed his shirt : because (um) they were eat/ing lots of jam.,then they pulled his shirt because um they were eating lots of jam +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then (they) he got better.,then they he got better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,once upon a time he pull/ed a wagon with a balloon.,once upon a time he pulled a wagon with a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then (he) (um some) someone stole the balloon.,then he um some someone stole the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then it (um) : fly|fly[EW:flew] at the sky.,then it um fly at the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then (um) they can not reach it.,then um they can not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then (um they) : they pop/ed it.,then um they they popped it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then they had lots of balloons.,then they had lots of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then they gived|give[EW:gave] lots of balloon/s.,then they gived lots of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then : (um) they drop/ed it again[!].,then um they dropped it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then he flied|fly[EW:flew] it.,then he flied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,(then he almost) : then he give|give[EW:gave] it to them.,then he almost then he give it to them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then (um[-:]) he[-:] give|give[EW:gave] it to them.,then um he give it to them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,then : they had another balloon from him and him.,then they had another balloon from him and him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/456.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,There is (a b) : a[EW:an] elephant and a giraffe.,There is a b a elephant and a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,the elephant is play/ing with a ball.,the elephant is playing with a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,but then : the ball is in the water.,but then the ball is in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,so then (hor) giraffe : get/3s the ball.,so then hor giraffe gets the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,look/3s like a cow *is get/ing the ball [EU].,looks like a cow getting the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then the giraffe give/3s him the ball.,then the giraffe gives him the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,They are swim/ing.,They are swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,they are go/ing swim/ing.,they are going swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,"but then[!] she say/3s [~_makes_noises_""mm_mm'].",but then she says +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,and this one : [~_makes_noises_'mm_mm'].,and this one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,he get/3s a towel for her.,he gets a towel for her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then : she slip/3s on : something.,then she slips on something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then she hurt her knee.,then she hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then : one man came.,then one man came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then she was cry/ing.,then she was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then : (she[EW:he] help/ed her) he[!] help/ed her put on a bandage.,then she helped her he helped her put on a bandage +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then : she was okay.,then she was okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then she sit|sit[EW:sat] on the couch.,then she sit on the couch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,Then he[!] has a[EW:an] airplane in his hand.,Then he has a airplane in his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,she want/3s to play with the airplane.,she wants to play with the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,but then she[!] play/3s with the airplane.,but then she plays with the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then it go/3s in the water.,then it goes in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then : he get/3s[!] angry.,then he gets angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then the manager get/3s impossible [EU].,then the manager gets impossible +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then she[!] talk/3s to him[!] : and try/3s to get it.,then she talks to him and tries to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,but he could not get it.,but he could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then she was responsible for it.,then she was responsible for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,I think : another girl can catch it.,I think another girl can catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,so she catched|catch[EW:caught] it.,so she catched it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,and she[!] catched|catch[EW:caught] it.,and she catched it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,and she catched|catch[EW:caught] it.,and she catched it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,and she catched|catch[EW:caught] it for him.,and she catched it for him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,and then he play/ed with it.,and then he played with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,there is a bunny : and a : hopperoo.,there is a bunny and a hopperoo +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,looks like a hopperoo.,looks like a hopperoo +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then they all[-:] make a castle.,then they all make a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then : bunny : ruin/ed the castle.,then bunny ruined the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,(now) : now : she is very sad.,now now she is very sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then she cry/ed because (him) : (he[!] did it) : the bunny did it.,then she cried because him he did it the bunny did it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,I see bunny and kangaroo : have/ing a good dinner.,I see bunny and kangaroo having a good dinner +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,but then : bunny get/3s full because he ate too much.,but then bunny gets full because he ate too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then he get/3s a stomachache.,then he gets a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then (hm) : doctor came.,then hm doctor came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,and then : she said some of these days [~_mutters_inaudibly] [EU].,and then she said some of these days +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,so he look/3s.,so he looks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,she look/3s.,she looks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then xxx.,then x +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,can you say that again?,can you say that again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then he look/3s at the bubble/s.,then he looks at the bubbles +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then he make/3s him better.,then he makes him better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,she has a puzzle.,she has a puzzle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,and he come/3s back.,and he comes back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then he look/3s.,then he looks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,(he) she has a (bubble) balloon.,he she has a bubble balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then : he take/3s off the balloon.,then he takes off the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then it fly/3s away.,then it flies away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then she is angry.,then she is angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then there is[EW:are] no : more balloon/s.,then there is no more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,so he pick|pick[EW:picked] a balloon first.,so he pick a balloon first +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,: then he has no money.,then he has no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,: then they look at the balloon/s : and take : one balloon.,then they look at the balloons and take one balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then he ask/3s [~_pronounced_'askis'] (the doctor) the doctor [~__whispers].,then he asks the doctor the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,why is it do/ing that [+_bch]?,why is it doing that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then he show/ed him.,then he showed him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,then : he gave him a dollar.,then he gave him a dollar +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,they got two balloon/s.,they got two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/625.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,(um) there was a horse and an elephant.,um there was a horse and an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,: and they saw a ball in the water.,and they saw a ball in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,[~_no] (um) : and the horse (ran) swam to it.,um and the horse ran swam to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and he gave it to the elephant.,and he gave it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and the elephant was : happy.,and the elephant was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and : (the horse) [~_I_think_that_(i)s_a_bull_#_no] the horse : [~_I_(wi)ll_just_call_it_a_horse] was smile/ing.,and the horse the horse was smiling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,there was a horse and an elephant.,there was a horse and an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and they saw water.,and they saw water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and they were : there[?].,and they were there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and they ran (fo) to the water.,and they ran fo to the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and the elephant ran fast.,and the elephant ran fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and the horse was right behind it.,and the horse was right behind it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and the elephant trip/ed and hurted|hurt[EW:hurt] herself.,and the elephant tripped and hurted herself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and the : lifeguard elephant ran[-:] toward/s them.,and the lifeguard elephant ran towards them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and : he check/ed if she was okay.,and he checked if she was okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and : he put a bandaid on[-:] her cut and sat her down on a bench.,and he put a bandaid on her cut and sat her down on a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and she was on the bench smile/ing.,and she was on the bench smiling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,there was a : horse with a plane and an elephant that was : happy.,there was a horse with a plane and an elephant that was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and the : horse (was : try/ing to mm) he was play/ing with the : plane.,and the horse was trying to mm he was playing with the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and the elephant was watch/ing.,and the elephant was watching +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and the elephant grab/ed the plane and (sh) try/ed to play with it.,and the elephant grabbed the plane and sh tried to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and the elephant threw it.,and the elephant threw it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and it went in the water.,and it went in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and the horse was mad at the elephant.,and the horse was mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and a lifeguard came.,and a lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and : (uh) he saw the plane in the water.,and uh he saw the plane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and he try/ed to reach it.,and he tried to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and : the horse start/ed to cry.,and the horse started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and (the) : (a lady) a lady elephant came with a fish/ing net.,and the a lady a lady elephant came with a fishing net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and she : got it out for him.,and she got it out for him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and she[-:] gave it to him.,and she gave it to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and he was happy.,and he was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,(um) : there was[EW:were] two bunny/s in a sandbox.,um there was two bunnies in a sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and they built a sandcastle.,and they built a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and the one[!] : put lot/s of sand in a[-:] : pail.,and the one put lots of sand in a pail +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and he dump/ed it over the sandcastle.,and he dumped it over the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and he : scream/ed when the sandcastle broke.,and he screamed when the sandcastle broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,(and the other o) and : the other bunny was cry/ing.,and the other o and the other bunny was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and the : other bunny was stand/ing up : (l) look/ing up.,and the other bunny was standing up l looking up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and they stop/ed for a picnic.,and they stopped for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and one was : hungry.,and one was hungry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and then he got full : and : then : dizzy.,and then he got full and then dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and the other one ran for help.,and the other one ran for help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and she pull/ed the lady[-:] : toward/s him.,and she pulled the lady towards him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,[~_oh] : that was a doctor.,that was a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,(uh) : and : she said he is dizzy I think.,uh and she said he is dizzy I think +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,I do not know [+_bch].,I do not know +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and[-:] he was okay.,and he was okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,he was[!] okay.,he was okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,(um) there was[EW:were] two bunny/s pull/ing a wagon.,um there was two bunnies pulling a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,(and the : uh) and that is all [+_bch].,and the uh and that is all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and : the boy bunny was go/ing to [~_gonna] to grab the balloon.,and the boy bunny was going to to grab the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and he untie/ed it.,and he untied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and the other : girl bunny was yell/ing.,and the other girl bunny was yelling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and he let it go.,and he let it go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and he was try/ing to grab it.,and he was trying to grab it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,then the : other one was mad.,then the other one was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and they saw : (another) a guy hold/ing balloon/s.,and they saw another a guy holding balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and : the boy (bun) rabbit (ra) ran up to him and : told[EW:ask/ed] him if he could have a balloon.,and the boy bun rabbit ra ran up to him and told him if he could have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,(and he had no) and : he had no money.,and he had no and he had no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and : they were sad.,and they were sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and : the other bunny saw : a lady stand/ing there.,and the other bunny saw a lady standing there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and he ask/ed her if she has|have[EW:had] enough to buy a : balloon.,and he asked her if she has enough to buy a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and : she did.,and she did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/764.slt,and : they were happy.,and they were happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,a giraffe and the elephant (want) were play/ing : ball.,a giraffe and the elephant want were playing ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and (um) : the ball fell into the water.,and um the ball fell into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and the (um) giraffe : went in to get the ball.,and the um giraffe went in to get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and then the giraffe gave it to the elephant.,and then the giraffe gave it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and (then um) : then they play/ed (um) : ball.,and then um then they played um ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,(um) : the elephant and the giraffe want/ed to go in the pool[-:].,um the elephant and the giraffe wanted to go in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and the elephant was run/ing.,and the elephant was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and she (um) : was run/ing too fast.,and she um was running too fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and then she fell and (hur) (hur) hurt her knee.,and then she fell and hur hur hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and then the coach came.,and then the coach came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and then (um) a lifeguard put a bandaid on.,and then um a lifeguard put a bandaid on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and the coach (um) : help/ed her go on the bench.,and the coach um helped her go on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and then the coach was mad because the sign said no run/ing.,and then the coach was mad because the sign said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,(um) : the giraffe[-:] want/ed to fly his airplane.,um the giraffe wanted to fly his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and he did.,and he did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and then the elephant took it from him.,and then the elephant took it from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and she threw it in the water.,and she threw it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and : the giraffe was mad at her.,and the giraffe was mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and[-:] the coach : came.,and the coach came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and the coach look/ed at it.,and the coach looked at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and the lifeguard try/ed to get it.,and the lifeguard tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and the (um) : lifeguard (tr) could not get it.,and the um lifeguard tr could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and then (um) this other : elephant : got (um) : a net.,and then um this other elephant got um a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and : she got it.,and she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and : she gave it to the (um) : giraffe.,and she gave it to the um giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and then : the giraffe was happy again.,and then the giraffe was happy again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,there was a dog make/ing (um) a sandcastle (and : a) and a bunny.,there was a dog making um a sandcastle and a and a bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,(mmm) the bunny was (um) : take/ing the (s) sand[-:].,mmm the bunny was um taking the s sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,then he dump/ed it on the sandcastle.,then he dumped it on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and[-:] the bunny : was (um) : surprise/ed.,and the bunny was um surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and : the dog was cry/ing.,and the dog was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,a dog and a bunny were go/ing to make a picnic.,a dog and a bunny were going to make a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and the bunny : (um) was eat/ing.,and the bunny um was eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and the bunny was full.,and the bunny was full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and he was dizzy.,and he was dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,(his mo) : (the) : the bunny/z mom came.,his mo the the bunny's mom came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and : the dog was pull/ing the mom.,and the dog was pulling the mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and (the bunny[-:] : uh) : the mom : saw : the bunny.,and the bunny uh the mom saw the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and then she point/ed to her head.,and then she pointed to her head +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and then the bunny and the mom went home.,and then the bunny and the mom went home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,the dog and the bunny[-:] were go/ing (to) : to get (a) balloon/s.,the dog and the bunny were going to to get a balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,the bunny : was go/ing to get the balloon.,the bunny was going to get the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,the bunny was take/ing it off.,the bunny was taking it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and then : they were try/ing to get the balloon.,and then they were trying to get the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and then : the dog was mad.,and then the dog was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and (um) : there is a man with balloon/s.,and um there is a man with balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and then (the bunny) the bunny bought one.,and then the bunny the bunny bought one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and : he was get/ing out the money.,and he was getting out the money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and he did not have any money.,and he did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and his mom came.,and his mom came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and then (um : the) the bunny said to his mom : could you buy me a balloon?,and then um the the bunny said to his mom could you buy me a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and then the mom did.,and then the mom did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/652.slt,and then the dog and the bunny had a balloon.,and then the dog and the bunny had a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,(Um : um : okay) the elephant and the giraffe they want to play ball.,Um um okay the elephant and the giraffe they want to play ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and (he) maybe he say/3s yes : or no.,and he maybe he says yes or no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,oh no [EX]!,oh no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and it fall[*ip] down in the pool.,and it fall down in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and the giraffe was go/ing to (get it and swim it) get it and swim : and give it to elephant.,and the giraffe was going to get it and swim it get it and swim and give it to elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and he said[ip] [~_high_pitched_voice] thank you[!].,and he said thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and he said[ip] [~_high_pitched_voice] I love[!] you.,and he said I love you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,That again [+_bch] [EX].,That again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,(okay) *the elephant and the giraffe are all done to [EU].,okay elephant and the giraffe are all done to +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,they see the porch and (not to do in the) (no) (no running in the swim/ing)[EARG] no running [EU].,they see the porch and not to do in the no no running in the swimming no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and[-:] he want/*3s to go on the (be) bouncy thing and go down *in the water [EU].,and he want to go on the be bouncy thing and go down the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and maybe the giraffe say[*i3] yes.,and maybe the giraffe say yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,(and the) and elephant slip/ed.,and the and elephant slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,(and) and the giraffe is[aux] go/ing to get her not to fall down [EU].,and and the giraffe is going to get her not to fall down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,the elephant cis[cop] hurt.,the elephant cis hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and the elephant he is[aux] cry/ing.,and the elephant he is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,(and the giraffe) and the giraffe is[aux] help/ing (her) her.,and the giraffe and the giraffe is helping her her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,daddy is[aux] come/ing to her.,daddy is coming to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,(he is hurt) he cis[cop] a little hurt.,he is hurt he cis a little hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,(and) and he come[*ip] to him.,and and he come to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,it hurt/3s.,it hurts +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and it hold/*3s still.,and it hold still +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,it will[modal] not hurt.,it will not hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and (it) who cis[cop] (this) this giraffe Mikey.,and it who cis this this giraffe Mikey +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and he came[ip].,and he came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and he look/ed at it.,and he looked at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and it was[aux] bleed/ing.,and it was bleeding +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,: and (the giraffe) (elephant) (giraffe) (elephant) (the giraffe is his) Mikey he cwas[cop] the Mikey giraffe [EU].,and the giraffe elephant giraffe elephant the giraffe is his Mikey he cwas the Mikey giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,he was[aux] (helping) help/ing get the elephant home.,he was helping helping get the elephant home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and that said[ip] no run/ing in the sliping [EU].,and that said no running in the sliping +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,do not slip up.,do not slip up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,do not run no.,do not run no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,(And : the elephant was try/ing to di) (he wen) : and Mikey said[ip] : you want to [~_wanna] play airplane ?,And the elephant was trying to di he wen and Mikey said you want to play airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and the elephant said[ip] yes.,and the elephant said yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,: and it fly/3s up(*3) the air [EU].,and it flies up up up the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,: and Mikey said[ip] no(*3) (you are gonna grab) you grab it!,and Mikey said no no no you are gonna grab you grab it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,I am[aux] tell/ing my dad on you!,I am telling my dad on you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,[~_childish_voice] whoops : now you put it (on the) on the water.,whoops now you put it on the on the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,[~_childish_voice] I am[aux] go/ing to[:_gonna] get it.,I am going to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,you get it.,you get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and he got[ip] mad.,and he got mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,he cis[cop] not happy.,he cis not happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and he said[ip] I cam[cop] not be[ninfl] your best friend ever : (and) LaLa [EU].,and he said I cam not be your best friend ever and LaLa +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and the guy said[ip] : [~_deep_voice] (wh) why *did[aux] [EV] you drop that (el) : LaLa [EU]?,and the guy said wh why you drop that el LaLa +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,[~_childish_voice] (um) I was[aux] grab/ing it and : make/*ing him mad.,um I was grabbing it and make him mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,[~_childish_voice] he will[modal] not be my best friend : Mikey.,he will not be my best friend Mikey +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,[~_childish_voice] and I drop|drop/*ed it on the water.,and I drop it on the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,[~_deep_voice] and that cis[cop] not very nice.,and that cis not very nice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,[~_childish_voice] and because I just drop/*ed it will go down under water [EU].,and because I just drop it will go down under water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,[~_childish_voice] and : what happen/ed.,and what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,[~_childish_voice] I did[aux] not do it.,I did not do it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,[~_childish_voice] Mikey cis[cop] not my best friend no[EW:any] more : okay?,Mikey cis not my best friend no more okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,[~_deep_voice] I can[modal] not reach it.,I can not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and Mikey is[aux] cry/ing.,and Mikey is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and (ul) LaLa put it on the water.,and ul LaLa put it on the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and now we can[modal] not reach it.,and now we can not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and : elephant mother came/ed[*ip] : to get (the elephant) : (uh) Mikey/z plane.,and elephant mother cameed to get the elephant uh Mikey's plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and her[EW:she] (gr) came[ip] [EARG] grab it and give[*ip] it to Mikey [EU].,and her gr came grab it and give it to Mikey +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and [~_adult_voice] give[*ip] to Mikey [EU].,and give to Mikey +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,[~_childish_voice] it cis[cop] already : on your hand.,it cis already on your hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and Mikey said[ip] : do[aux] not grab my toy.,and Mikey said do not grab my toy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,ask first.,ask first +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and : the elephant said[ip] [~_childish_voice] : *can[modal] I play *with your plane please [EU]?,and the elephant said I play your plane please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,No [~_!] and (you dr) you drop/*ed my plane.,No and you dr you drop my plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,oh : okay : you can[modal] play awhile.,oh okay you can play awhile +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and you give it back.,and you give it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,a kangaroo and a bunny rabbit : they want to play sandcastle/s.,a kangaroo and a bunny rabbit they want to play sandcastles +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and the bunny rabbit is[aux] build/ing his own castle.,and the bunny rabbit is building his own castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and maybe (the :) (the) (mi um) his name cis[cop] : (s) Dina.,and maybe the the mi um his name cis s Dina +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,that cis[cop] a boy name.,that cis a boy name +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and her name cis[cop] (Di) Darling.,and her name cis Di Darling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,okay [EX].,okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and : Darling maybe he is[aux] go/ing to[:_gonna] knock [+//]>,and Darling maybe he is going to knock +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,but : what do[aux] you call the bunny/z name [+_bch]?,but what do you call the bunny's name +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,I think you call/ed it Darling.,I think you called it Darling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,No I call/ed that[!] Darling [+_bch].,No I called that Darling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,Darwin [EX].,Darwin +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,yeah [+_bch] [EX].,yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,Darwin [EX].,Darwin +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,Darwin : (maybe Da) maybe her[EW:she] is[aux] go/ing to[:_gonna] knock (bunny) (Darwin) bunny/z castle down.,Darwin maybe Da maybe her is going to knock bunny Darwin bunny's castle down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and (Darling : who is get/ing) and bunny rabbit *is[aux] just put/ing the sand on Darling/z castle [EU].,and Darling who is getting and bunny rabbit just putting the sand on Darling's castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,: (and) : and I said[ip] sorry[!].,and and I said sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and Darling was[aux] cry/ing.,and Darling was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,(and her sai) and maybe I said[ip] sorry.,and her sai and maybe I said sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,(i) maybe we *can build another one [EU].,i maybe we build another one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,(Um) Darling cis[cop] : *a six year old kid [EU].,Um Darling cis six year old kid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and the bunny rabbit cis[cop] : eight.,and the bunny rabbit cis eight +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,(um no) bunny rabbit cis[cop] nine.,um no bunny rabbit cis nine +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,I forgot[ip] : I made[ip] an accident [+_bch].,I forgot I made an accident +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,that cis[cop] okay.,that cis okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,you can[modal] turn the page [+_bch].,you can turn the page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and Darling :*is[aux] put/ing the picnic in her own space [EU].,and Darling putting the picnic in her own space +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and bunnyrabbit silly want/*3s to eat a lot [EU].,and bunnyrabbit silly want to eat a lot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and (he) bunny rabbit has[aux] got a (big) big tummyache.,and he bunny rabbit has got a big big tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and the bunny rabbit is[aux] go/ing to be throw/ing up.,and the bunny rabbit is going to be throwing up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and Darling is[aux] call/ing the doctor.,and Darling is calling the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,bunny rabbit cis[cop] in danger.,bunny rabbit cis in danger +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,he do[*i3] not feel good.,he do not feel good +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and the bunnyrabbit is[aux] so feel/ing not good [EU].,and the bunnyrabbit is so feeling not good +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and he is[aux] feel/ing sick.,and he is feeling sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and the bunnyrabbit is[aux] feel/ing not sick (he) because he has[aux] got sick about : now cis[cop] his birthday now [EU].,and the bunnyrabbit is feeling not sick he because he has got sick about now cis his birthday now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and bunny rabbit : he say[*i3] hi.,and bunny rabbit he say hi +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,( I am not) I cam[cop] [~_counts_from_one_to_nine].,I am not I cam +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,(nine) I cam[cop] nine : ( I am) because I had[ip] my birthday.,nine I cam nine I am because I had my birthday +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,"(and) and Darling, her[EW:she] cis[cop] : eight now.",and and Darling her cis eight now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,(wow) nice big balloon.,wow nice big balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,(almost is) the balloon is (gonna) almost[!] go/ing to[:__gonna] pop!,almost is the balloon is gonna almost going to pop +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and tick(*10).,and tick tick tick tick tick tick tick tick tick tick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,no(*3) Darling said.,no no no Darling said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,do not take that out.,do not take that out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,that will fly away again.,that will fly away again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,no[-:]!,no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,[~_makes_'grrr'sound] (and her got) and Darling has got mad.,and her got and Darling has got mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,: get your own balloon.,get your own balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,I am get/ing my balloon.,I am getting my balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and I am get/ing my balloon.,and I am getting my balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,I have two balloon[EW:balloons].,I have two balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,okay.,okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,your wish.,your wish +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,go.,go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,: you five cent/s [EU].,you five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,: well you can have one.,well you can have one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,you do not have one.,you do not have one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,you do not get money.,you do not get money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,you do not get one.,you do not get one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,: and the bunny rabbit said doctor you have money?,and the bunny rabbit said doctor you have money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,five cent/s [EU].,five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,I am go/ing to[:_gonna] get (a balloon) two balloon/s.,I am going to get a balloon two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,and he give|give[EW:gave] him one.,and he give him one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,now (hi) all balloon/s are gone.,now hi all balloons are gone +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,it fly/3s away.,it flies away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,(ye) and they have : two of them.,ye and they have two of them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/609.slt,they have one.,they have one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,One day there was a girl.,One day there was a girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and (she boun) she was bounce/ing her ball on the street.,and she boun she was bouncing her ball on the street +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and she met her friend.,and she met her friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,(then the) then her ball tumble/ed into the pool.,then the then her ball tumbled into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,so her friend jump/ed into the pool and start/ed swim/ing after it.,so her friend jumped into the pool and started swimming after it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and he brought it back to the girl.,and he brought it back to the girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,(then he said) then the girl said thank you very much.,then he said then the girl said thank you very much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,One day the two friend/s were at the pool.,One day the two friends were at the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and they decide/ed to go swim/ing.,and they decided to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,then the girl said let us go on the diving board : and start/ed run/ing towards it.,then the girl said let us go on the diving board and started running towards it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,she fell and hurt her knee.,she fell and hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,then the lifeguard came.,then the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and he put on a bandaid.,and he put on a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,then he sat her down on the bench.,then he sat her down on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and he point/ed to the sign that said no run/ing.,and he pointed to the sign that said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,One day[-:] the two friend/s were at the pool.,One day the two friends were at the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and (one) the boy had (an ai) an airplane with him.,and one the boy had an ai an airplane with him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and he start/ed to make it fly with sound effect/s.,and he started to make it fly with sound effects +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,the girl was so dazzle/ed that she grab/ed it away from him and start/ed play/ing with it.,the girl was so dazzled that she grabbed it away from him and started playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and then she drop/ed it into the pool.,and then she dropped it into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,the boy got very mad at her.,the boy got very mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,then the lifeguard came.,then the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and they explain/ed what happen/ed.,and they explained what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,the lifeguard try/ed to reach for the plane.,the lifeguard tried to reach for the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,but it was too far (out in the wa) (of the wa) in the water for him to reach.,but it was too far out in the wa of the wa in the water for him to reach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and (the : life) (the) the lifeguard did not know what to do.,and the life the the lifeguard did not know what to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and neither did anyone else.,and neither did anyone else +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,the giraffe start/ed to cry.,the giraffe started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,then[!] a lady came by with a net[!].,then a lady came by with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and she reach/ed in and got the airplane out.,and she reached in and got the airplane out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,the boy was happy again.,the boy was happy again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,(he hug/ed) he hug/ed the airplane.,he hugged he hugged the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,once upon a time there were two bunny/s play/ing at the beach.,once upon a time there were two bunnies playing at the beach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and they built a sandcastle.,and they built a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,the other bunny start/ed add/ing a lot.,the other bunny started adding a lot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,they add/ed a lot onto their sandcastle.,they added a lot onto their sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and they were enjoy/ing their time.,and they were enjoying their time +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,(then) then (the bunny) one of the bunny/s (accidentally) [~_no] dump/3s a pile of sand onto the sandcastle : which made it fall down.,then then the bunny one of the bunnies accidentally dumps a pile of sand onto the sandcastle which made it fall down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,(the) (the bunny) the girl bunny was really upset.,the the bunny the girl bunny was really upset +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and she start/ed to cry.,and she started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,one morning two bunny/s were walk/ing in the wood/s with two picnic basket/s.,one morning two bunnies were walking in the woods with two picnic baskets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,(one) once they found a nice spot they start/ed to unpack their lunch/s.,one once they found a nice spot they started to unpack their lunches +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,(the s) (the) one of the bunny/s ate his lunch very very quickly.,the s the one of the bunnies ate his lunch very very quickly +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and he had a terrible stomachache.,and he had a terrible stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,(then he) and the girl bunny ran to the doctor : and pull/ed her over towards : her friend.,then he and the girl bunny ran to the doctor and pulled her over towards her friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,(the doctor said) the doctor point/ed : towards his head and said he must have a terrible headache or a stomachache.,the doctor said the doctor pointed towards his head and said he must have a terrible headache or a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,but when the boy felt better the doctor (took her) took him with her.,but when the boy felt better the doctor took her took him with her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,once upon a time : (there was a girl bu) there was a girl walk/ing : a pull/ing a wagon with a balloon tie/ed to one of the wheel/s.,once upon a time there was a girl bu there was a girl walking a pulling a wagon with a balloon tied to one of the wheels +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and then she met her friend come/ing by.,and then she met her friend coming by +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,he saw the balloon.,he saw the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and (he re) he got really excite/ed.,and he re he got really excited +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,then he try/ed to untie the balloon.,then he tried to untie the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and the balloon flew up high because they could not hang onto it.,and the balloon flew up high because they could not hang onto it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,then the girl got very very mad at her friend.,then the girl got very very mad at her friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and they saw a balloon salesman : come/ing by.,and they saw a balloon salesman coming by +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,so the boy stroll/ed up to him : and ask/ed for a balloon.,so the boy strolled up to him and asked for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,(then the) (then the balloon) then the balloon man said that the balloon/s were five cent/s each.,then the then the balloon then the balloon man said that the balloons were five cents each +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,they both came (up to) up to him and look/ed at the balloon/s (with wide) with wide open eye/s.,they both came up to up to him and looked at the balloons with wide with wide open eyes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,(then they saw uh) then they saw the doctor.,then they saw uh then they saw the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and the boy went up to her.,and the boy went up to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and he said can we get some balloon/s?,and he said can we get some balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and the doctor gave the man ten cent/s so they could each get one balloon.,and the doctor gave the man ten cents so they could each get one balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/927.slt,and then they were both happy.,and then they were both happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,(uh) a giraffe and a[EW:an] elephant are : (uh) go/ing swim/ing.,uh a giraffe and a elephant are uh going swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,but the : elephant is play/ing with her ball.,but the elephant is playing with her ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,then the elephant by accident drop/3s it into the water.,then the elephant by accident drops it into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and[-:] (uh : the : uh) there is no dive/ing allow/ed in the water[-:].,and uh the uh there is no diving allowed in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and then the[-:] : (uh) : giraffe swim/3s in the water and grab/3s the ball.,and then the uh giraffe swims in the water and grabs the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and then : the giraffe give/3s the ball back to the elephant.,and then the giraffe gives the ball back to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and[-:] (um) : the giraffe is all wet.,and um the giraffe is all wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and (sh) the[-:] elephant is happy.,and sh the elephant is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,(um) the elephant and the giraffe : finds|find[EW:find](uh) a diving board.,um the elephant and the giraffe finds a diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,the elephant want/3s to go on the diving board.,the elephant wants to go on the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,so do/3s the giraffe.,so does the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,(um) the elephant slip/3s.,um the elephant slips +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,but the giraffe do/3s not.,but the giraffe does not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,the elephant (hurt/3s) : hurt/3s itself.,the elephant hurts hurts itself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and : the giraffe is (um : um) : nervous.,and the giraffe is um um nervous +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,the giraffe : (and) : is with the elephant.,the giraffe and is with the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and the lifeguard elephant came to see what was the matter with the girl elephant.,and the lifeguard elephant came to see what was the matter with the girl elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,the : lifeguard put a bandaid on the elephant/z knee.,the lifeguard put a bandaid on the elephant's knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and : the lifeguard take/3s (um) the elephant to a bench.,and the lifeguard takes um the elephant to a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and the : lifeguard show/3s : (um) the girl elephant : the[-:] no run/ing sign.,and the lifeguard shows um the girl elephant the no running sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,done [+_bch].,done +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,(um) the giraffe : brang|bring[EW:brought] a[EW:an]: airplane to play with.,um the giraffe brang a airplane to play with +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and the elephant : is happy to see the giraffe.,and the elephant is happy to see the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,the giraffe is play/ing with his (uh) plane.,the giraffe is playing with his uh plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and : the elephant is just stand/ing there : stare/ing at the plane.,and the elephant is just standing there staring at the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,then the elephant scoop/3s the[-:] plane out of the giraffe/z hand : and[-:] (uh) : start/3s play/ing with it.,then the elephant scoops the plane out of the giraffe's hand and uh starts playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,the elephant : and the giraffe is[EW:are] worry/ed that the plane would sink at the bottom : of the pool.,the elephant and the giraffe is worried that the plane would sink at the bottom of the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,(um) the giraffe is : (uh) angry at the elephant.,um the giraffe is uh angry at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,the lifeguard come/3s : and[-:] see/3s what is[-:] the matter.,the lifeguard comes and sees what is the matter +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,the[-:] : girl elephant tell/3s (h) : the lifeguard everything.,the girl elephant tells h the lifeguard everything +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and the lifeguard is like hmm ?,and the lifeguard is like hmm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and then the lifeguard try/3s to get the airplane[-:].,and then the lifeguard tries to get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and the giraffe and[-:] : the[-:] : elephant are : worry/ed he would not sink.,and the giraffe and the elephant are worried he would not sink +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and then the : giraffe is cry/ing for his airplane back.,and then the giraffe is crying for his airplane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and then this : (gi) other : elephant : with (um) a fishing net : come/3s and give/3s them a hand.,and then this gi other elephant with um a fishing net comes and gives them a hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and (the girl uh) the[-:] : big girl elephant scoop/3s the airplane up.,and the girl uh the big girl elephant scoops the airplane up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and[-:] the giraffe is still cry/ing.,and the giraffe is still crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,then the giraffe is happy : that (the : girl eleph) the big girl elephant : got the plane back for him.,then the giraffe is happy that the girl eleph the big girl elephant got the plane back for him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and : then (um) : the : giraffe was love/ing his (pl) airplane again.,and then um the giraffe was loving his pl airplane again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,(um) there is a rabbit.,um there is a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and[-:] there is something [~_I_do_n(o)t_know_what_it_is] : has a funny nose.,and there is something has a funny nose +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,but the rabbit and that : little guy are dig/ing[!].,but the rabbit and that little guy are digging +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and : the little guy (is make/ing a san) made a sandcastle.,and the little guy is making a san made a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,then the : bunny : had a pail (with) : and dig (um) : sand into the pail [EU].,then the bunny had a pail with and dig um sand into the pail +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and (the[-:]) : it look/3s like the dog : (um are) is (make/ing a) (still make/3s) try/ing to make a sandcastle.,and the it looks like the dog um are is making a still makes trying to make a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,now the bunny was pour/ing (um) : the[-:] (uh) sand onto the dog/z sandcastle.,now the bunny was pouring um the uh sand onto the dog's sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and the dog is : wonder/ing what he is : do/ing.,and the dog is wondering what he is doing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,then : (um : uh) the bunny is like (um) : worry/ed.,then um uh the bunny is like um worried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,he thought that (um) the whole entire sandcastle would be destroy/ed.,he thought that um the whole entire sandcastle would be destroyed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,but the : dog is like [~_makes_sound_'huh_ya']!,but the dog is like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,(um) the dog is cry/ing.,um the dog is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and the bunny is like : [~_hums] : try/ing to ignore it.,and the bunny is like trying to ignore it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,finish/ed [+_bch].,finished +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,(um) once upon a time there is (uh) : the dog and the rabbit go/ing for a picnic.,um once upon a time there is uh the dog and the rabbit going for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,the[-:] : rabbit brang|bring[EW:brought] a whole bunch of junk food.,the rabbit brang a whole bunch of junk food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,the dog[-:] (um) brang|bring[EW:brought] (s) (norm) : healthy food.,the dog um brang s norm healthy food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,(um) : the rabbit got stuff/ed.,um the rabbit got stuffed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and the dog is still eat/ing.,and the dog is still eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and the : rabbit do/3s not feel so good.,and the rabbit does not feel so good +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and the dog is worry/ed what happen/ed to him.,and the dog is worried what happened to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and then : the dog find/3s a doctor : because the rabbit ain't[EW:is][EW:not] feel/ing so good.,and then the dog finds a doctor because the rabbit ain't feeling so good +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and the dog pull/3s the doctor to the rabbit.,and the dog pulls the doctor to the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and (the rabbit) : the[-:] doctor check/3s what is wrong with the rabbit.,and the rabbit the doctor checks what is wrong with the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and : the rabbit get/3s tooken|take[EW:taken] to the hospital.,and the rabbit gets tooken to the hospital +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,(um) the dog : is pull/ing his wagon : with the balloon tie/ed to it.,um the dog is pulling his wagon with the balloon tied to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and[-:] the dog seen|see[EW:saw] the rabbit.,and the dog seen the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,the dog still had (his wagon) : [~_I_mean] her wagon.,the dog still had his wagon her wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and the balloon was was still on there.,and the balloon was was still on there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and then the : dog is like yell/ing at the rabbit for try/ing to take off : the[-:] dog/z balloon.,and then the dog is like yelling at the rabbit for trying to take off the dog's balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and the balloon float/s away.,and the balloon floats away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and the : dog and the rabbit are try/ing to get the balloon.,and the dog and the rabbit are trying to get the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,(um) the dog is angry[-:] at the rabbit : and very mad.,um the dog is angry at the rabbit and very mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and then the rabbit see/3s (um) : a[-:] bigger rabbit with balloon/s.,and then the rabbit sees um a bigger rabbit with balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,the rabbit ask/3s if he can have a balloon.,the rabbit asks if he can have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,but : he could not buy one for the dog.,but he could not buy one for the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,the balloon/s were five cent/s.,the balloons were five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and the rabbit did not have any money on him.,and the rabbit did not have any money on him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,the (r) dog and the rabbit were worry/ed they would not get a balloon.,the r dog and the rabbit were worried they would not get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,then the rabbit saw that (doc) : doctor rabbit again : and[-:] (um) [-:] ask/ed : the doctor rabbit if she can buy : the dog and the rabbit a balloon.,then the rabbit saw that doc doctor rabbit again and um asked the doctor rabbit if she can buy the dog and the rabbit a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,(and) : and she : bought (uh) the dog and the rabbit (uh) : a balloon for both of them.,and and she bought uh the dog and the rabbit uh a balloon for both of them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,and then the rabbit and the dog were happy.,and then the rabbit and the dog were happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/953.slt,so was the[-:] doctor.,so was the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,the elephant is : play/ing[-:] basketball.,the elephant is playing basketball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,the : ball go|go[EW:go/3s] [?] in the water.,the ball go in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,and : (uh) : (catched|catch[EW:catch]) : catch the : ball in the water.,and uh catched catch the ball in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,and (the : uh) he give|give[EW:gave] it *to the elephant [EU].,and the uh he give it the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,and[-:] he get up : in the water [EU].,and he get up in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,(um : jump/ed uh) : jump in the water.,um jumped uh jump in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,sorry what did you say?,sorry what did you say +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,jump in the water [+_bch].,jump in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,oh okay can you use your loud voice?,oh okay can you use your loud voice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,yeah [+_bch].,yeah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,fall[-:][?] off.,fall off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,run.,run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,and the : elephant : [EU].,and the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,anything more or shall I turn?,anything more or shall I turn +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,turn [+_bch].,turn +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,okay.,okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,fall off.,fall off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,her[EW:she] cry|cry[EW:cry/3s].,her cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,put *on a bandaid [EU].,put a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,sit on the : bench.,sit on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,and the elephant : is mad.,and the elephant is mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,he got a toy.,he got a toy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,"did you want to turn them yourself, okay [~_referring_to_pages].",did you want to turn them yourself okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,(uh) : he is fly/ing with the : airplane.,uh he is flying with the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,(and the w) and the elephant take|take[EW:took] away the airplane.,and the w and the elephant take away the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,and it go|go[EW:went] in the water[-:].,and it go in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,it is go/ing : in the side the water [EU].,it is going in the side the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,it is inside the water.,it is inside the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,(what)[~!_whispering] : *the plane is go/ing down [EU].,what plane is going down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,(this) the elephant is try/ing to get it.,this the elephant is trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,(the) : he is cry/ing.,the he is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,catch with a net [EU].,catch with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,it is : got it [EU].,it is got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,and : the elephant give|give[EW:gave] it [EU].,and the elephant give it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,him[EW:he] *was happy [EU].,him happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,they are make/ing a sandcastle[-:].,they are making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,do you want to turn?,do you want to turn +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,and he put some more sand.,and he put some more sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,and[-:] : more sand : the window [EU].,and more sand the window +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,and it fall|fall[EW:fell] down.,and it fall down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,and try/ing make it again [EU].,and trying make it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,end [+_bch].,end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,they are have/ing food.,they are having food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,they are eat/ing : *a sandwich [EU].,they are eating sandwich +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,they are : is full [EU].,they are is full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,(his belly is get/ing) : [~_EXA:_what_(i)s_that] his belly is get/ing : bigger.,his belly is getting his belly is getting bigger +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,oh can you use your loud voice?,oh can you use your loud voice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,(uh) he is the doctor.,uh he is the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,and (the) : it is not help/ing.,and the it is not helping +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,hm?,hm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,help/ing [+_bch].,helping +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,: help.,help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,: (she) he is eat/ing lot/s of food.,she he is eating lots of food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,and he go|go[EW:go/3S] with the doctor.,and he go with the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,they are[-:] : got a balloon [EU].,they are got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,and they are : want to [~_wanna] fly it with the balloon [EU].,and they are want to fly it with the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,they let it go : in the sky.,they let it go in the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,and one is try/ing get it [EU].,and one is trying get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,well : pop.,well pop +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,and so get a other one [EU].,and so get a other one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,and : he was said no [EU].,and he was said no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,what is that.,what is that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,said no [+_bch].,said no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,and : get dollar [EU].,and get dollar +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,one more.,one more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,and that is : it.,and that is it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,and : go with the doctor.,and go with the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,and (get) the doctor will[?] get other[EW:another] balloon[?].,and get the doctor will get other balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,more money [EU].,more money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/568.slt,the (uh) : one : got two : balloon/s[-:].,the uh one got two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,a giraffe *is play/ing with a[EW:an] elephant [EU].,a giraffe playing with a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,like they are play/ing with the ball.,like they are playing with the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and it fell into the pool.,and it fell into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,(and) and then (the g) (the) the zebra (uh s) swam to get it.,and and then the g the the zebra uh s swam to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,(and the) (the) (and the gira) (and) and the giraffe got it and gave it to the elephant.,and the the and the gira and and the giraffe got it and gave it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and (um) the elephant was okay.,and um the elephant was okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,but the giraffe was all wet.,but the giraffe was all wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,the zebra and the elephant went to the pool again.,the zebra and the elephant went to the pool again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,(and they wanted to s) and the elephant want/ed to swim : til : it kick/ed it/z face.,and they wanted to s and the elephant wanted to swim til it kicked it's face +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and the : giraffe ran after it.,and the giraffe ran after it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,(and at last) and the giraffe just ran somewhere.,and at last and the giraffe just ran somewhere +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,(uh) but the elephant hurt it/z knee.,uh but the elephant hurt it's knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and she was cry/ing so much that the elephant stop/ed run/ing (when an elephant) when another[!] elephant came : and said what is wrong?,and she was crying so much that the elephant stopped running when an elephant when another elephant came and said what is wrong +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,she scratch/ed me.,she scratched me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,ow.,ow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,so : I could get a bandaid.,so I could get a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and : (you should not know that) (you should not) no[!] run/ing.,and you should not know that you should not no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,the elephant and the giraffe went to the pool again.,the elephant and the giraffe went to the pool again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and then : (they) they play/ed with a little plane.,and then they they played with a little plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,but the elephant took it from the giraffe!,but the elephant took it from the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,(and they) and they drop/ed into the pool [EU].,and they and they dropped into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and the giraffe was so mad to[EW:at] the elephant that : the elephant was too scare/ed to get it.,and the giraffe was so mad to the elephant that the elephant was too scared to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,when : (the) the other elephant came and said what is go/ing on around here[!].,when the the other elephant came and said what is going on around here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and the (f) other elephant answer/ed we are play/ing with the plane.,and the f other elephant answered we are playing with the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,(but it) but it drop/ed into the pool.,but it but it dropped into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,I could get it[!] the other elephant said.,I could get it the other elephant said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,it is no use.,it is no use +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,I could not (the) the elephant said.,I could not the the elephant said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,then another elephant came over and said what is the problem?,then another elephant came over and said what is the problem +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,(the net) the plane : drop/ed into the pool [~_different__speaking_voice].,the net the plane dropped into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,well I got a net to catch it [~_different_speaking_voice]!,well I got a net to catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,(and she did) and (she) she did (ju) just that.,and she did and she she did ju just that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,I got : the plane for you.,I got the plane for you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,oh thank you the giraffe said.,oh thank you the giraffe said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,giraffe : hug/ed it.,giraffe hugged it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and the elephant was a little happy again.,and the elephant was a little happy again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,a rabbit and a dog were : play/ing in the sand and build/ing a sandcastle.,a rabbit and a dog were playing in the sand and building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and the dog like/ed to : make the (sand) sandcastle.,and the dog liked to make the sand sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and the bunny : like/ed to help.,and the bunny liked to help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and he put some on.,and he put some on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and the dog was too frighten/ed to talk.,and the dog was too frightened to talk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,[~_right] (and it was) and it was ruin/ed (the) the bunny said after he did it.,and it was and it was ruined the the bunny said after he did it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and : the : rabbit did not say another : word.,and the rabbit did not say another word +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and the dog : cried a little.,and the dog cried a little +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,the dog and the bunny were have/ing a picnic today.,the dog and the bunny were having a picnic today +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and they start/ed to eat.,and they started to eat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and the bunny *was sweated|sweat[EW:sweating] : and fell to : the ground [EU].,and the bunny sweated and fell to the ground +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,(but) but the dog was still eat/ing.,but but the dog was still eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,ah I can not take it any more the bunny said.,ah I can not take it any more the bunny said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and then the mother bunny came : and said what is the matter little one?,and then the mother bunny came and said what is the matter little one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and the dog said : he *was sweated|sweat[EW:sweating] and fell to the ground [EU].,and the dog said he sweated and fell to the ground +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,oh my goodness [~_high_pitched_voice].,oh my goodness +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,are you all right little one [~_high_pitched_voice]?,are you all right little one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,I am okay [~_high_pitched_voice].,I am okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,let us go home okay [~_high_pitched_voice]?,let us go home okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,goodbye [~_high_pitched_voice].,goodbye +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,the bunny and the dog had a wagon that had (uh uh uh a big bunny's uh) a big bunny/z balloon.,the bunny and the dog had a wagon that had uh uh uh a big bunny's uh a big bunny's balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and : they like/ed it so much that (they) he play/ed with it.,and they liked it so much that they he played with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,but then : they try/ed to pull[?] it easily.,but then they tried to pull it easily +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and the dog almost : *was sweated|sweat[EW:sweating] all the time [EU].,and the dog almost sweated all the time +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and the balloon flew away.,and the balloon flew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and they both try/ed to get it.,and they both tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,but they could not.,but they could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,(and they are so) and the dog was so angry.,and they are so and the dog was so angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,when they saw the big bunny (with) hold/ing some balloon/s.,when they saw the big bunny with holding some balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,[~_high_voice] hey big one.,hey big one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,(have you) (we) we just had a wagon that had one of your balloon/s.,have you we we just had a wagon that had one of your balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,[~_deep_voice] oh?,oh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,"[~_deep_voice,_menacing_tone] (you y y you) and where did you put it?",you y y you and where did you put it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,[~_high_voice] well it flew away.,well it flew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,[~_makes_growling_sound_'errrr']., +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,[~_high_voice] it is okay.,it is okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,[~_high_voice] how come : there is[EW:are] two?,how come there is two +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,[~_high_voice] oh that is just my friend.,oh that is just my friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and then the mother came again and : said what is up now [~__different_speaking_voice]?,and then the mother came again and said what is up now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,oh we just found a balloon man.,oh we just found a balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,and we had one of his balloon/s.,and we had one of his balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,oh [~_different_speaking_voice].,oh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,(and and) and (uh) he had a balloon that said : five balloon/s.,and and and uh he had a balloon that said five balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,(but he) (he) but he just had four because we had one of them.,but he he but he just had four because we had one of them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,but it is okay he said.,but it is okay he said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,: (because) and he gave both of them a balloon.,because and he gave both of them a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/445.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the elephant is play/ing ball.,the elephant is playing ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the ball fall/3s in the water.,the ball falls in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the cow fall/3s in the water.,the cow falls in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the elephant (grab/3s) grab/3s the ball.,the elephant grabs grabs the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the elephant hug/3s the ball.,the elephant hugs the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the elephant is : look/ing at the water.,the elephant is looking at the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the elephant is : run/ing in the water.,the elephant is running in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the elephant is : slip/ing.,the elephant is slipping +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the elephant : hurt her knee.,the elephant hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the elephant is cry/ing.,the elephant is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the[-:] lifeguard is try/ing to help her.,the lifeguard is trying to help her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the lifeguard tell/3s her to stay right there.,the lifeguard tells her to stay right there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the lifeguard tell/3s her not to run.,the lifeguard tells her not to run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the cow has the airplane.,the cow has the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the cow[-:] buzz/3s the airplane.,the cow buzzes the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the elephant grab/3s the airplane.,the elephant grabs the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the elephant drop/3s the airplane.,the elephant drops the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the cow is mad at the elephant.,the cow is mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the (life) the guard see/3s the : airplane.,the life the guard sees the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the : elephant : tell/3s her all about it.,the elephant tells her all about it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the lifeguard try/3s to reach it.,the lifeguard tries to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,it is no use.,it is no use +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,(the[-:]) : a lady elephant (c) try/3s to catch it.,the a lady elephant c tries to catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,she catch/3s it.,she catches it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,she give/3s it to the cow.,she gives it to the cow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the cow grab/3s it.,the cow grabs it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the dog is make/ing a sandcastle.,the dog is making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the rabbit want/3s to make it too.,the rabbit wants to make it too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the rabbit put/3s more sand on it.,the rabbit puts more sand on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the rabbit wreck/3s the sandcastle.,the rabbit wrecks the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the rabbit what?,the rabbit what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the rabbit wreck/3s the sandcastle [+_bch].,the rabbit wrecks the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,oh wreck/3s.,oh wrecks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,(uh) the dog is sad.,uh the dog is sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the rabbit and the dog have : bug catcher/s.,the rabbit and the dog have bug catchers +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the rabbit : eat/3s : all the food.,the rabbit eats all the food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the rabbit (get/3s f) (have a) get/3s a tummyache.,the rabbit gets f have a gets a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the rabbit : do/3s not feel well.,the rabbit does not feel well +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,(the rabbit) [~_I_mean] the dog go/3s (tell) to tell the : mommy rabbit.,the rabbit the dog goes tell to tell the mommy rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the mommy rabbit come/3s.,the mommy rabbit comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,she tell/3s her to not eat too many[EW:much] food.,she tells her to not eat too many food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,she tell/3s her to go home.,she tells her to go home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the dog is pull/ing a wagon with a balloon tie/ed to it.,the dog is pulling a wagon with a balloon tied to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the rabbit (s) see/3s the balloon.,the rabbit s sees the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,she try/3s to untie it.,she tries to untie it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,it fly/3s away.,it flies away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the string is the only thing left.,the string is the only thing left +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,string/s do not even?,strings do not even +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,thing left [+_bch].,thing left +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,can you use your loud voice?,can you use your loud voice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the balloon man come/3s by.,the balloon man comes by +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,(he ask/ed) the bunny ask/ed if they could have another balloon.,he asked the bunny asked if they could have another balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,(the) (the) the balloon man give/3s them another balloon.,the the the balloon man gives them another balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,and (he) he tell/3s them not to untie them.,and he he tells them not to untie them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,he give/3s : them no balloon/s.,he gives them no balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,they go walk/ing home sad.,they go walking home sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,they ask/ed if they can have a balloon.,they asked if they can have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,she (pa) pay/3s for one.,she pa pays for one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,(sh) they both get one.,sh they both get one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/544.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,(um a) : an elephant and : a (l) zebra [EU].,um a an elephant and a l zebra +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,a[EW:an] elephant and a zebra xxx a balloon.,a elephant and a zebra x a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then he throwed|throw[EW:threw] it in the water and try/ed to get it.,and then he throwed it in the water and tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then the elephant was get/ing it.,and then the elephant was getting it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,: and then the elephant got it : gave it to him.,and then the elephant got it gave it to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,: and then he say|say[EW:said] please.,and then he say please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then : (he) he gave it to him.,and then he he gave it to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then they want/ed to go swim[EW:swimming] together.,and then they wanted to go swim together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then come on let us go swim/ing.,and then come on let us go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,that might be a good idea.,that might be a good idea +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then : they were run/ing.,and then they were running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then they were go/ing to get through to (um) eat : to have a picnic.,and then they were going to get through to um eat to have a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then she hurt her leg [~_sad_voice].,and then she hurt her leg +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,: (and then : the brother camed) (and then) [~_EXA:_and__what] and then (the b) (the other b) the boy elephant (ca) came.,and then the brother camed and then and then the b the other b the boy elephant ca came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then : he cry/ed okay I will get a bandaid.,and then he cried okay I will get a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then she had a bandaid.,and then she had a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,that/z a little bit better now.,that's a little bit better now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then : you *have got to[:_gotta] sit [EU].,and then you got to sit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then : if it feel/3s better you can walk.,and then if it feels better you can walk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then both of them (um um) fly the airplane.,and then both of them um um fly the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,I hope it does not fall in the water[-:] .,I hope it does not fall in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,(if it falls in) and then he was go/ing to[:_gonna] do it :.,if it falls in and then he was going to do it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then : she taked|take[EW:took] it away from his hand (to her) for her to fly it.,and then she taked it away from his hand to her for her to fly it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then : it cross/ed : in : the : water [EU].,and then it crossed in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then : it is your fault [~_said_with_emphasis]!,and then it is your fault +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,you did it!,you did it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,(xxx) what is the matter with : you guy/s?,x what is the matter with you guys +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then (um) he (um um) xx them the airplane in the water [EU].,and then um he um um them the airplane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,I will try to get it.,I will try to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,: and then he was try/ing to get it.,and then he was trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then he could not reach.,and then he could not reach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then : (he) they were very cry/ing [EU].,and then he they were very crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then : I[!] will try to catch it with that[!].,and then I will try to catch it with that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,how ?,how +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and she caught it.,and she caught it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,: there you go.,there you go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,thank you.,thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,: and then : thank you very much.,and then thank you very much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,I want you to undo that xx again.,I want you to undo that again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,which one of you build|build[EW:built] a castle?,which one of you build a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,to put in sand in there : people [EU].,to put in sand in there people +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and to put in some more sand on there [EU].,and to put in some more sand on there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then it *was wreck/ed [EU].,and then it wrecked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then he is go/ing to[:_gonna] put it back up.,and then he is going to put it back up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then he was : sad.,and then he was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,they are go/ing to have a picnic.,they are going to have a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,: (they are go) they are eat/ing lunch.,they are go they are eating lunch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,: and then he is full.,and then he is full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then he what?,and then he what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then the rabbit is full [+_bch].,and then the rabbit is full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,: and then he has a stomyache[c].,and then he has a stomyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then : the mailman was bunny rabbit [EU].,and then the mailman was bunny rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then (could we) you *have got to[:_gotta] come with me [EU].,and then could we you got to come with me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then : cry/ing [EU].,and then crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then : you had a picnic.,and then you had a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and you had a stomyache[c].,and you had a stomyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,a balloon [EU].,a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,: and : it is go/ing away.,and it is going away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,: and then he is put/ing it back on.,and then he is putting it back on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then : the balloon is up the sky.,and then the balloon is up the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then : the puppy is (ba uhm) mad.,and then the puppy is ba uhm mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,(the bunny rabbit) [~_EXA:_What] the puppy is mad because (um) he did not (um) have his balloon back.,the bunny rabbit the puppy is mad because um he did not um have his balloon back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then he had the other balloon.,and then he had the other balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then : can we have one?,and then can we have one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,just one.,just one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and one for you and one for him.,and one for you and one for him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then : : if you fight no more balloons.,and then if you fight no more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then he is happy.,and then he is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then : there is every (bau) balloon [EU].,and then there is every bau balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,there is what?,there is what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,there is every balloon[-:] [+_bch] [EU].,there is every balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then : there is[EW:are] two left.,and then there is two left +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/408.slt,and then : they both had their own[!] balloon.,and then they both had their own balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,the giraffe saw a pool.,the giraffe saw a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,it : had a ball.,it had a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,he want/ed to play in there and catch it.,he wanted to play in there and catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,he could not.,he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,and the elephant : gave him a new ball.,and the elephant gave him a new ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,the : giraffe went to the pool.,the giraffe went to the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,(he s) the elephant said to the giraffe come in the pool.,he s the elephant said to the giraffe come in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,so the elephant kick/ed the ball.,so the elephant kicked the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,and the elephant got : hurt.,and the elephant got hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,so the other elephant came : and put a bandaid for her [EU].,so the other elephant came and put a bandaid for her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,then the giraffe said come here.,then the giraffe said come here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,so : the elephant sit|sit[EW:sat] : on the bench.,so the elephant sit on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,the giraffe got a[EW:an] airplane.,the giraffe got a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,he want/ed to play with it in the pool.,he wanted to play with it in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,he : drop/ed it in the pool.,he dropped it in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,and it got wet.,and it got wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,and : he tri/ed to took|take[EW:take] it out.,and he tried to took it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,and it flew to : the other side.,and it flew to the other side +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,the giraffe try/ed to took|take[EW:take] it (because the ele).,the giraffe tried to took it because the ele +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,and the man elephant was try/ing to took|take[EW:take] it.,and the man elephant was trying to took it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,but it was too far away.,but it was too far away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,so the mama elephant (got) use it with a net [EU].,so the mama elephant got use it with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,(and she got) and she did not got|get[EW:get] it still.,and she got and she did not got it still +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,and she got it.,and she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,and the giraffe took the airplane.,and the giraffe took the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,the rabbit want|want[EW:wanted] to play with the dog.,the rabbit want to play with the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,he took some sand in a bucket.,he took some sand in a bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,then he pour/ed on the sandcastle [EU].,then he poured on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,and it fell down.,and it fell down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,and he want|want[EW:wanted] to make it again.,and he want to make it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,the rabbit saw the dog.,the rabbit saw the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,the rabbit said I am hungry.,the rabbit said I am hungry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,the rabbit ate the carrot.,the rabbit ate the carrot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,and he got bonk/ed.,and he got bonked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,and the : dog said go away rabbit.,and the dog said go away rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,and the dog hold|hold[EW:held] the rabbit.,and the dog hold the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,(the) (the rabbit) the mother rabbit said (to the rab um) to the : baby rabbit (: go home) : go home.,the the rabbit the mother rabbit said to the rab um to the baby rabbit go home go home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,the rabbit saw the dog.,the rabbit saw the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,he got one balloon.,he got one balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,the rabbit (try) try|try[EW:tried] to took|take[EW:take] it off.,the rabbit try try to took it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,and it flew up.,and it flew up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,the rabbit said : to the dog sorry.,the rabbit said to the dog sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,then the dog saw a : man that was sell/ing lots of balloon/s.,then the dog saw a man that was selling lots of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,then the rabbit want/ed one balloon.,then the rabbit wanted one balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,and the : rabbit took one.,and the rabbit took one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,and he drop/ed it in the air [EU].,and he dropped it in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,and he got[EW:has] no more money : to buy the balloon.,and he got no more money to buy the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,then he went home with his mommy.,then he went home with his mommy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,then his mom gave him more coin[EW:coins].,then his mom gave him more coin +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/472.slt,and they : buy one more balloon.,and they buy one more balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,once upon a time : there was a giraffe : and an elephant.,once upon a time there was a giraffe and an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,(they were play/ing : with) and they were (pl) play/ing with a ball.,they were playing with and they were pl playing with a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,but the elephant bounce/ed the ball too hard.,but the elephant bounced the ball too hard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and it fell into (the wa) the pool.,and it fell into the wa the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,so the giraffe dove in and : went to get the ball.,so the giraffe dove in and went to get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,but the elephant was scare/ed that he would drown.,but the elephant was scared that he would drown +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,but then the giraffe came back with the ball.,but then the giraffe came back with the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and the elephant was happy.,and the elephant was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,(and : then : the elephant w) : (the zebra was drip/ing) and the (gir) giraffe was drip/ing wet.,and then the elephant w the zebra was dripping and the gir giraffe was dripping wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,but the elephant (was still ha) was happy that he brought the ball back.,but the elephant was still ha was happy that he brought the ball back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,one day an elephant and a giraffe want/ed : to : go on the diving board.,one day an elephant and a giraffe wanted to go on the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,(the :) the elephant said : (let us go) let us go quick before anybody else : get/3s on it.,the the elephant said let us go let us go quick before anybody else gets on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,(but) and the elephant start/ed to run over to the diving board.,but and the elephant started to run over to the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,but she[-:] slip/ed and fell and hurt her knee.,but she slipped and fell and hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and[-:] so the giraffe went to get the lifeguard.,and so the giraffe went to get the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,the elephant was scare/ed because[-:] : she thought (she would) it would hurt when the lifeguard was help/ing her.,the elephant was scared because she thought she would it would hurt when the lifeguard was helping her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,but the lifeguard did not hurt her.,but the lifeguard did not hurt her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,(and) and then she was : surprise/ed.,and and then she was surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,then[-:] she was embarrass/ed because the lifeguard told her : not to run.,then she was embarrassed because the lifeguard told her not to run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,one day an elephant and a giraffe (: were) were play/ing together.,one day an elephant and a giraffe were were playing together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,the giraffe (pl) : brought out his airplane.,the giraffe pl brought out his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,the giraffe[-:] was fly/ing the plane.,the giraffe was flying the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and the elephant want/ed : to play with it too.,and the elephant wanted to play with it too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,so she grab/ed it from him.,so she grabbed it from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and she was play/ing with it.,and she was playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,then she drop/ed it in the water.,then she dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and they could not get it back.,and they could not get it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,(so the) and the giraffe got angry at the elephant.,so the and the giraffe got angry at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,(but the) and the elephant (phant) was scare/ed.,but the and the elephant phant was scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,but then the lifeguard came : (and help/ed them) and try/ed to help them to get the[-:] plane back.,but then the lifeguard came and helped them and tried to help them to get the plane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,(but he could not) but he could not.,but he could not but he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,xxx.,x +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,turn?,turn +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,so the elephant explain/ed it to him.,so the elephant explained it to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and the lifeguard try/ed to help.,and the lifeguard tried to help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,but he could not reach the airplane.,but he could not reach the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,it was too far in the pool.,it was too far in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,so[-:] the giraffe start/ed to cry.,so the giraffe started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,the elephant (was sad for him) was sad for him.,the elephant was sad for him was sad for him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and the : lifeguard did not know what to do.,and the lifeguard did not know what to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,but then someone with a net came along.,but then someone with a net came along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and then : she[!] : help/ed them get the airplane back.,and then she helped them get the airplane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,she try/ed.,she tried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and she try/ed.,and she tried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and she got the plane.,and she got the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and then the giraffe was happy again.,and then the giraffe was happy again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and so was the elephant.,and so was the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,so they got to play with the plane again.,so they got to play with the plane again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,one day a rabbit (and a) and a dog were play/ing in a sandbox.,one day a rabbit and a and a dog were playing in a sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,the dog had built : a sandcastle.,the dog had built a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,the rabbit want/ed to help the dog.,the rabbit wanted to help the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,so : he came in : and help/ed her.,so he came in and helped her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,but he dump/ed too much sand on the sandcastle.,but he dumped too much sand on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and[!] : he bury/ed the sandcastle.,and he buried the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and the : dog was : sad.,and the dog was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and the rabbit was surprise/ed.,and the rabbit was surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and the dog : was build/ing the : sandcastle again.,and the dog was building the sandcastle again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,(and) and (the) the dog built the sandcastle again.,and and the the dog built the sandcastle again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,(and the) but the rabbit did not help this time.,and the but the rabbit did not help this time +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,one day a dog and a rabbit : were walk/ing through the wood/s.,one day a dog and a rabbit were walking through the woods +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,they were go/ing on a picnic.,they were going on a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,the rabbit was very hungry.,the rabbit was very hungry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,(and :) and the dog was still unpack/ing the food.,and and the dog was still unpacking the food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,(so) (and he ate all the food and all the rab) (all) so the rabbit ate all the food.,so and he ate all the food and all the rab all so the rabbit ate all the food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and (all the dog) all that the dog had left : was a juice box and a sandwich.,and all the dog all that the dog had left was a juice box and a sandwich +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,then the rabbit felt sick.,then the rabbit felt sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and the dog did not know what to do.,and the dog did not know what to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,then the dog saw a doctor and ran over to the doctor and : told her the story.,then the dog saw a doctor and ran over to the doctor and told her the story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,after the dog told the doctor the story : she brought her over to the rabbit.,after the dog told the doctor the story she brought her over to the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,the doctor look/ed at : the rabbit.,the doctor looked at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and[-:] he was still sick : though.,and he was still sick though +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,but then the rabbit felt better because : the doctor made him feel better.,but then the rabbit felt better because the doctor made him feel better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,one day a dog and a rabbit (were walk/ing) (were) were walk/ing together.,one day a dog and a rabbit were walking were were walking together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,they met.,they met +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and : the dog had a balloon attach/ed to her wagon.,and the dog had a balloon attached to her wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,the rabbit want/ed to hold the balloon.,the rabbit wanted to hold the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and the dog said it was okay.,and the dog said it was okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,but then he was go/ing to untie the balloon.,but then he was going to untie the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and she did not : want him to do that.,and she did not want him to do that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,(but the) and the rabbit held it.,but the and the rabbit held it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,but he let go of it by accident.,but he let go of it by accident +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and it was too high for them to reach.,and it was too high for them to reach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,it (f) : slowly float/ed away.,it f slowly floated away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and the : dog was angry at the rabbit.,and the dog was angry at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and the rabbit : was still watch/ing the balloon float.,and the rabbit was still watching the balloon float +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,then they saw a balloon man.,then they saw a balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and they went over to buy a balloon.,and they went over to buy a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,the rabbit point/ed to a shiny green one : and want/ed it.,the rabbit pointed to a shiny green one and wanted it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,(but) and (it) (they) the balloon/s were five cent/s.,but and it they the balloons were five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,but the rabbit did not have any money.,but the rabbit did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,the dog and the rabbit were sad.,the dog and the rabbit were sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,then they saw someone : (across) not too far from them.,then they saw someone across not too far from them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,they went over to her and ask/ed (for them) for her to buy them a balloon.,they went over to her and asked for them for her to buy them a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,so after (they said they) they ask/ed her : she said okay.,so after they said they they asked her she said okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,she bought a balloon for both of them.,she bought a balloon for both of them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/738.slt,and then they both were happy because both of them had a balloon.,and then they both were happy because both of them had a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,once upon a time[-:] there was a[EW:an] elephant and a zebra : play/ing ball[-:] : until it fell (t) into the sand[-:] and into the water.,once upon a time there was a elephant and a zebra playing ball until it fell t into the sand and into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then she felled|fall[EW:fell] in the water too[-:].,and then she felled in the water too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,(and they) (and she c) : and she gave him the ball[-:].,and they and she c and she gave him the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,(and then after that : she) (she) (she) (she) because she wanted the ball[-:] [+..] [EU].,and then after that she she she she because she wanted the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,(and[-:] then[-:] ) [~_what_happened_next_oh_yeah] and then they went home.,and then and then they went home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,once upon a time[-:] : there is a[EW:an] elephant : and[-:] a giraffe : scare/ed to go on the water [EU].,once upon a time there is a elephant and a giraffe scared to go on the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and : she was walk/ing[-:] to the water.,and she was walking to the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,(and : then[-:] ) [~_and_I_do_n(o)t] and then they went in the water.,and then and then they went in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then she slip/ed.,and then she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and[-:] then she felled|fall[EW:fell] in the water[-:] .,and then she felled in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and she hurt shes[EW:her] knee.,and she hurt shes knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then they heard a watched[-:][?] [EU].,and then they heard a watched +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then she put a bandage on it[-:].,and then she put a bandage on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then it feeled|feel[EW:felt] better[-:] .,and then it feeled better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,(and then : shes) (and then) and then the lifeguard said : (no) (no : s stay) (no[-:]) no accident/s ever again on you [EU].,and then shes and then and then the lifeguard said no no s stay no no accidents ever again on you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,that is the end [+_bch].,that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,once upon a time[-:] : they want to fly[-:] the airplane over the water[-:].,once upon a time they want to fly the airplane over the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then : she put[!] it out in the air[-:].,and then she put it out in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then : she grab/ed it from him[-:].,and then she grabbed it from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then it felled|fall[EW:fell] in the water[-:].,and then it felled in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,(till[-:]) : (till the zebra) until the giraffe was angry [EU].,till till the zebra until the giraffe was angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,until they got to get that airplane[-:].,until they got to get that airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,until : (she[-:] ) (she got it) (the) the zebra[!] got it [EU].,until she she got it the the zebra got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,I had it first.,I had it first +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,so she[!] must get it.,so she must get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then : she try/ed[!] to.,and then she tried to +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,but she just can not reach[!] it.,but she just can not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,till[-:] she got a net and go/ing to [~_gonna] get : the airplane.,till she got a net and going to get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,(until she) (she tr) and she got[!] it.,until she she tr and she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then they were save/ed.,and then they were saved +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then[-:] : that is the end [+_bch].,and then that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,once upon a time[-:] : there was : a bunny and[-:] a mouse : play/ing in the sandbox.,once upon a time there was a bunny and a mouse playing in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and[-:] they were build/ing a sandcastle[-:].,and they were building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and after that : he put some sand on the sandcastle[-:].,and after that he put some sand on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then it broked|broke[EW:broke].,and then it broked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then they build|build[EW:built] it up again.,and then they build it up again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then that is the end of the story [+_bch].,and then that is the end of the story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,once upon a time[-:] there was a cheetah and[-:] a[EW:an] elephant : walk/ing.,once upon a time there was a cheetah and a elephant walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then[-:] : (uh) [~_I_do_n(o)t_know_what_the_next_page_is] well[-:] : they went to the dinosaur country[-:] : for a picnic.,and then uh well they went to the dinosaur country for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then : they heard a sound of a tyrannosaur rex : coming beheads[c] them [EU].,and then they heard a sound of a tyrannosaur rex coming beheads them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and they[-:] : runned|run[EW:ran] away : all away[-:] (to s) to their mommy[-:].,and they runned away all away to s to their mommy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then (they) (they) they soon[-:] : got to home[-:] [EU].,and then they they they soon got to home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then[-:] : [~_oh] so they lost their way to home[-:] [EU].,and then so they lost their way to home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,so they *are lost at the dinosaur country [EU].,so they lost at the dinosaur country +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then : (they) (they) (they) they had a nap.,and then they they they they had a nap +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then they got home.,and then they got home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,once upon a time[-:] (they were) they were two baby velociraptor/s[-:].,once upon a time they were they were two baby velociraptors +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and[-:] they start/ed to go down the hill[-:].,and they started to go down the hill +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and[-:] : they were scare/ed on the hill[-:].,and they were scared on the hill +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,so then : (the b) the balloon went up.,so then the b the balloon went up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,(and) and the velociraptor/s try/ed to get it.,and and the velociraptors tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then : a terrible [~_makes_explosion_noise_'bth'] : boom.,and then a terrible boom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and the balloon pop/ed.,and the balloon popped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,(and then : they gots[EW:have]) (and then) : and then the tyrannosaurus rex gave them more[!] balloon/s.,and then they gots and then and then the tyrannosaurus rex gave them more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then : they want/ed[-:] a balloon[-:].,and then they wanted a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,so then they pick/ed one[-:].,so then they picked one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and[-:] : then they want/ed it.,and then they wanted it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,(sss) so then : the Teerex said (they) they can not have a balloon.,sss so then the Teerex said they they can not have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and[-:] then[-:] she ask/ed (if she c) if they have place they could have a balloon [EU].,and then she asked if she c if they have place they could have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,(and then they) and then the other velociraptor : was run/ing to his mommy.,and then they and then the other velociraptor was running to his mommy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then she said (she) she will not give us any balloon/s.,and then she said she she will not give us any balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then : she give/3s him some dollar/s.,and then she gives him some dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then she give|give[EW:gave] him (some) some balloon/s[-:].,and then she give him some some balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and[-:] then : they had balloon/s[-:].,and then they had balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/461.slt,and then that is the end [+_bch].,and then that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,(um) : the elephant : is bounce/ing : (bl) ball/s.,um the elephant is bouncing bl balls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the elephant : say|say[EW:says] : the ball (in) is in the : (um) swimming pool.,the elephant say the ball in is in the um swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the : moose : was swim/ing in the water so he can get the (bee) ball.,the moose was swimming in the water so he can get the bee ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the elephant : say|say[EW:says] thank you moose.,the elephant say thank you moose +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the elephant : look/ed at him.,the elephant looked at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,(um) : the elephant : *is watch/ing the wave/s [EU].,um the elephant watching the waves +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the elephant : run/ing : on the thing and : almost fall in [EU].,the elephant running on the thing and almost fall in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the elephant : soup : her feet/s [EU].,the elephant soup her feets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the elephant : close|close[EW:closes] her eye/s.,the elephant close her eyes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the elephant : fall|fall[EW:fell] down and got a scrape.,the elephant fall down and got a scrape +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the security[?] guard : help|help[EW:helped] her and put a bandaid on.,the security guard help her and put a bandaid on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,and then the elephant (slll) : sit|sit[EW:sat] on the bench.,and then the elephant slll sit on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the elephant was okay.,the elephant was okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the elephant : was fine.,the elephant was fine +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,and : she took the bandaid off.,and she took the bandaid off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,(the) the moose was (finly) find/ing the plane.,the the moose was finly finding the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the elephant : took the plane away from the moose.,the elephant took the plane away from the moose +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the (moo) the plane went in the water.,the moo the plane went in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,moose was mad at the elephant.,moose was mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,(the security guard) the lifeguard came to check : on the elephant and the moose.,the security guard the lifeguard came to check on the elephant and the moose +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,(the security guard) the lifeguard was mad.,the security guard the lifeguard was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,he try/ed to catch (the plee) the plane.,he tried to catch the plee the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,but he could not.,but he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the plane was : go/ing deeper and deeper.,the plane was going deeper and deeper +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the plane was : go/ing deeper and deeper.,the plane was going deeper and deeper +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,(the plane) (the) then (the eleph) the lifeguard came and pick|pick[EW:picked] the plane up.,the plane the then the eleph the lifeguard came and pick the plane up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,(then the moose : put the pla) then the elephant gave : the moose his plane back.,then the moose put the pla then the elephant gave the moose his plane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the moose say/3s thank you.,the moose says thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,(the elephant) the kangaroo was : build/ing a sandcastle.,the elephant the kangaroo was building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the bunny and the : kangaroo was[EW:were] make/ing a sandcastle.,the bunny and the kangaroo was making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the bunny put some (s) more sand on the castle.,the bunny put some s more sand on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the bunny : look/ed : at the sandcastle.,the bunny looked at the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,(it) it was broken.,it it was broken +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,(then) : then : the : kangaroo was sad.,then then the kangaroo was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,there is (two bunny/s : go/ing to) : one kangaroo and one bunny go/ing for : a picnic.,there is two bunnies going to one kangaroo and one bunny going for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the bunny and the kangaroo went : to eat.,the bunny and the kangaroo went to eat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the bunny is full : now.,the bunny is full now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the bunny[EW:bunny/z] : tummy was big.,the bunny tummy was big +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the (um) doctor bunny came.,the um doctor bunny came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the doctor bunny : moose : came to see the rabbit.,the doctor bunny moose came to see the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the rabbit look/ed at the : moose rabbit.,the rabbit looked at the moose rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the doctor bringed|bring[EW:brought] the rabbit : to (the) : the : hospital.,the doctor bringed the rabbit to the the hospital +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the kangaroo had a balloon on the : wagon.,the kangaroo had a balloon on the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,and the bunny was run/ing.,and the bunny was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,(the kang) the bunny try/ed to reach the balloon.,the kang the bunny tried to reach the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,(the) the bunny go/ing get the balloon [EU].,the the bunny going get the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the balloon go away [EU].,the balloon go away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the balloon fly|fly[EW:flies] : in the sky.,the balloon fly in the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,then : (the) the balloon guy came back : and give/3s them a balloon.,then the the balloon guy came back and gives them a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the bunny/s : say one please.,the bunnies say one please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,the : balloon say five cent/s [EU].,the balloon say five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,(the bunny s) (the) the [~_whispers:_what's_his_name] guard said : you can not have a : balloon.,the bunny s the the guard said you can not have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,(so) : so the : kangaroo : goed|go[EW:went] : with the balloon.,so so the kangaroo goed with the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,(the rabbit) the doctor said : could I have a balloon?,the rabbit the doctor said could I have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,(the doctor : gived|give[EW:gave] some) his mom gived|give[EW:gave] some money.,the doctor gived some his mom gived some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/973.slt,then : he got a balloon.,then he got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,once there was an elephant and a horse.,once there was an elephant and a horse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,and they went to a beach.,and they went to a beach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the elephant had a brand[!] new ball.,the elephant had a brand new ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,(when the) once the elephant said do you want to[:_wanna] see my biggest bounce?,when the once the elephant said do you want to see my biggest bounce +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,sure said the horse.,sure said the horse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the elephant bounce/ed it much too high.,the elephant bounced it much too high +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,and it land/ed in the water.,and it landed in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the horse : want/ed to try it too.,the horse wanted to try it too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,so he went in the water to save elephant/z brand new ball.,so he went in the water to save elephant's brand new ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,when (uh) horse got the ball she gave it to the elephant.,when uh horse got the ball she gave it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,"the elephant said oh thank you, thank you!",the elephant said oh thank you thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,(when the elephant was sa) the elephant was so happy she decide/ed to give the : horse a try of her new ball.,when the elephant was sa the elephant was so happy she decided to give the horse a try of her new ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,(wo) once there was a horse and an elephant.,wo once there was a horse and an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,(there was a) they went to the beach.,there was a they went to the beach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,and there was a sign that said no run/ing.,and there was a sign that said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the elephant want/ed to go and swim and dive off the diving board.,the elephant wanted to go and swim and dive off the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,and she was run/ing.,and she was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,(the elephant was) while (sh) the elephant was run/ing she slip/ed and fell.,the elephant was while sh the elephant was running she slipped and fell +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,she scrape/ed her knee.,she scraped her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,(and) but the horse came run/ing after her (and) : and took care of her.,and but the horse came running after her and and took care of her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the lifeguard came and : was very proud of the horse.,the lifeguard came and was very proud of the horse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the lifeguard put a bandaid on it.,the lifeguard put a bandaid on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,(the) : the horse : said : (I) are you all right?,the the horse said I are you all right +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the elephant said : I am okay.,the elephant said I am okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the lifeguard was mad.,the lifeguard was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the elephant was sad.,the elephant was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,once there was an elephant and a horse.,once there was an elephant and a horse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,and the horse had a brand new airplane.,and the horse had a brand new airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the brand new red airplane was red.,the brand new red airplane was red +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,and the horse (l) like/ed it a lot.,and the horse l liked it a lot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the elephant was surprise/ed.,the elephant was surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,she want/ed it too.,she wanted it too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,so the elephant grab/ed it from the horse.,so the elephant grabbed it from the horse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,and the horse said please give me it back.,and the horse said please give me it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,when the elephant try/ed it out it land/ed in the water.,when the elephant tried it out it landed in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the horse was very mad.,the horse was very mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,and the elephant was scare/ed.,and the elephant was scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,they call/ed the lifeguard.,they called the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,and the lifeguard said what is the matter now?,and the lifeguard said what is the matter now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,my plane went in the water said the horse.,my plane went in the water said the horse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the elephant said : I threw it in the water.,the elephant said I threw it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,(I) I am really sorry.,I I am really sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the lifeguard try/ed to get it.,the lifeguard tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,but he could not.,but he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the lifeguard said I can not get it.,the lifeguard said I can not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the horse was very very sad.,the horse was very very sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,(the) (the) (an) a lady who had a net (caught it with) got it with a[?] net.,the the an a lady who had a net caught it with got it with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,and the horse stop/ed cry/ing a little.,and the horse stopped crying a little +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,when the : lady got it out : the horse was very happy.,when the lady got it out the horse was very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,and : the elephant was happy that the horse got it back.,and the elephant was happy that the horse got it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,there was : (um) a dog play/ing in the sandbox.,there was um a dog playing in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,(in) (and a bun) and a bunny rabbit came along.,in and a bun and a bunny rabbit came along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the dog said I am build/ing a sandcastle.,the dog said I am building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,do you want to[:_wanna] help me?,do you want to help me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the bunny said sure.,the bunny said sure +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,so when the bunny : put a lot of sand on the sandcastle : it fell.,so when the bunny put a lot of sand on the sandcastle it fell +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the dog was sad.,the dog was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,and the bunny : apologize/ed.,and the bunny apologized +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,a dog (uh) and a bunny went for a picnic one beautiful day.,a dog uh and a bunny went for a picnic one beautiful day +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the bunny pack/ed a lot and a lot of food.,the bunny packed a lot and a lot of food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the bunny ate[!] too much and ate too quick.,the bunny ate too much and ate too quick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the dog did not eat too much and not too quick.,the dog did not eat too much and not too quick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,and the bunny got very very sick.,and the bunny got very very sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,there was a nurse come/ing down the road : past them.,there was a nurse coming down the road past them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,and the dog went for help.,and the dog went for help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,she (pull) pull/ed her over to the bunny.,she pull pulled her over to the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the doctor said : you should not eat too much any more.,the doctor said you should not eat too much any more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,soon the bunny was : not feel/ing so sick.,soon the bunny was not feeling so sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,and the dog was very happy.,and the dog was very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,once there was a bunny and a dog.,once there was a bunny and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,and the dog had a wagon with a balloon on it.,and the dog had a wagon with a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the bunny really like/ed the dog/z balloon.,the bunny really liked the dog's balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,she want/ed to take it off.,she wanted to take it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,when the dog said no : the bunny did not listen.,when the dog said no the bunny did not listen +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the bunny accidentally let go.,the bunny accidentally let go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,and the dog : (was very very) was try/ing to catch it.,and the dog was very very was trying to catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the dog was very very mad.,the dog was very very mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,and the bunny : was very scare/ed.,and the bunny was very scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,then they saw : (ball) a balloon person carry/ing a bunch of balloon/s.,then they saw ball a balloon person carrying a bunch of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the bunny went up to him and ask/ed could I have a balloon?,the bunny went up to him and asked could I have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the : balloon said five dollar/s.,the balloon said five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,and the bunny did not have any.,and the bunny did not have any +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the bunny and the dog were very sad.,the bunny and the dog were very sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,and they saw (a lady :) a grown up lady : stand/ing on the street.,and they saw a lady a grown up lady standing on the street +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the bunny : (uh) went up to her.,the bunny uh went up to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,and (she) he ask/ed her : could we have five dollar/s to get a balloon?,and she he asked her could we have five dollars to get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,the : lady gave : him : ten dollar/s for the bunny and the : rabbit.,the lady gave him ten dollars for the bunny and the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/859.slt,(the) and then the bunny and the dog were happy.,the and then the bunny and the dog were happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,he is take/ing a ball[-:] .,he is taking a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and then it went in the water[-:] .,and then it went in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,then : the cow went in the water and *was try/ing to get it [EU].,then the cow went in the water and trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,(and he went) and he is try/ing to get up : with the ball.,and he went and he is trying to get up with the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and then : he got out.,and then he got out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and they were happy.,and they were happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and that is all [+_bch].,and that is all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,he[-:] want/3s to go in the : water.,he wants to go in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,then : he is go/ing into the water[-:] .,then he is going into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and he slip/ed[-:] .,and he slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and he bonk/ed her : knee.,and he bonked her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and he got hurt.,and he got hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and then he said are you okay?,and then he said are you okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,then her[EW:she] put a : bandage on.,then her put a bandage on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and then : (um it did) : (i i) he said is it okay now?,and then um it did i i he said is it okay now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,then he was mad.,then he was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,so he : push/ed [?] go that way [EU].,so he pushed go that way +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,that is all [+_bch].,that is all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,he was play/ing with a[EW:an] : airplane.,he was playing with a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and he was play/ing it go/ing up : and a twist [EU].,and he was playing it going up and a twist +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,then[-:] : (um um) the elephant got it.,then um um the elephant got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,then her[EW:she] put it in the water[-:].,then her put it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,then (the) (the thing) the guy was mad[-:] again.,then the the thing the guy was mad again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and the thing was mad[-:].,and the thing was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,(and the) (and the guy wa) and another guy was mad too[-:].,and the and the guy wa and another guy was mad too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,(and then) and then (he) he was still happy.,and then and then he he was still happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and he was try/ing to get it.,and he was trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,but he was cry/ing[-:] .,but he was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and then the elephant (did) had : the head catcher.,and then the elephant did had the head catcher +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,then he got it[-:] : for him.,then he got it for him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and then : her[EW:she] gived|give[EW:gave] it back (to) : to (thing) the guy.,and then her gived it back to to thing the guy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and he love/ed it again.,and he loved it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,that is all [+_bch].,that is all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,[~_no_it_(i)s_not_the_same_picture_story] it is the rabbit (and) and [~_what_(i)s_that_-_oh] a dog.,it is the rabbit and and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,(and) : and they are play/ing in the sand[-:] .,and and they are playing in the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,then they (ma) made a (ca) sandcastle.,then they ma made a ca sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and the other guy was try/ing to.,and the other guy was trying to +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,(and) [~_turn_the_page] (he is) (and then) and then the bunny put : more (on) on the sandcastle.,and he is and then and then the bunny put more on on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,then it breaked|break[EW:broke][-:].,then it breaked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and then he is try/ing to fix it again.,and then he is trying to fix it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,then that is all [+_bch].,then that is all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,he is come/ing : to a picnic.,he is coming to a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,then he : brought lots of : stuff.,then he brought lots of stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and then he could not eat all of it.,and then he could not eat all of it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and then he had a tummyache.,and then he had a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,then he was dizzy *and had a tummyache [EU].,then he was dizzy had a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,then : her bunny comed|come[EW:came].,then her bunny comed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,(and then) (and then) : (then that is) (and) (and) and (uh : ul) the guy (fou um : um) had it.,and then and then then that is and and and uh ul the guy fou um um had it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,(and her) and (her[EW:she] pull/ed) : her[EW:she] pull/ed only.,and her and her pulled her pulled only +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,(and then) then : (he was) : he was : fix/ing him.,and then then he was he was fixing him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,but he is done already.,but he is done already +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,that is all [+_bch].,that is all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,the guy had (a um) a wagon.,the guy had a um a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and he had a balloon[-:].,and he had a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and then : he said wow[-:].,and then he said wow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and he want/ed to take it off[-:].,and he wanted to take it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,then it let go[-:].,then it let go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and up in the sky[-:] [EU].,and up in the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and then : he was mad at him.,and then he was mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,then he got lots of balloon/s[-:].,then he got lots of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,then (he take/3s) (taked|take[EW:took] one) he saw some and taked|take[EW:took] one.,then he takes taked one he saw some and taked one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and then he : had (none) : none[EW:no] (um) : money.,and then he had none none um money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,but : he is check/ing his pocket/s.,but he is checking his pockets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and then he saw the doctor again.,and then he saw the doctor again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,(can) and then he said can I have some money because I do not have any.,can and then he said can I have some money because I do not have any +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and then he : had five dollar/s.,and then he had five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,so : he can have (some) : a balloon.,so he can have some a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and then he got two[-:].,and then he got two +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/457.slt,and then that is all [+_bch].,and then that is all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,(um) he is play/ing basketball.,um he is playing basketball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,(he[-:]) he put/3s it in the water.,he he puts it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,(he[-:] um) he was try/ing to [~_tryna] swim.,he um he was trying to swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,(um) : he gotted|got[EW:got] the ball.,um he gotted the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,(um) [-:] now they are all go/ing to play : basketball.,um now they are all going to play basketball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,(um) : he had a backpack.,um he had a backpack +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,he was try/ing to get the backpack.,he was trying to get the backpack +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,he was run/ing.,he was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,he[-:] was silly.,he was silly +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,he[-:] cry/ed.,he cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and : he was angry.,and he was angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,(and[-:]) and then[-:] he got a bandaid.,and and then he got a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and then[-:] it was better.,and then it was better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,(um) he had a tail.,um he had a tail +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and[-:] he was fly/ing a[EW:an] airplane.,and he was flying a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and[-:] he was jump/ing.,and he was jumping +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,(um) he was float/ing[-:] the plane[-:] [~_pronounced_/fleIn/].,um he was floating the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and[-:] he was angry.,and he was angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and he was happy.,and he was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,(and[-:]) : and he had a nose right.,and and he had a nose right +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and he was try/ing to get it.,and he was trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and he was sad.,and he was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and he was cry/ing.,and he was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and : he was try/ing to get (the p) : the plane.,and he was trying to get the p the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and he was : try/ing to : get it and go in the swim/ing pool.,and he was trying to get it and go in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and[-:] he gotted|got[EW:got] it.,and he gotted it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and he was happy.,and he was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,a rabbit [EU].,a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,he[-:] was make/ing a castle.,he was making a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,he[-:] was[-:] (um) build/ing it by heself[EW:himself].,he was um building it by heself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,(and[-:]) and his friend : (um) breaked|break[EW:broke] it.,and and his friend um breaked it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and he was not happy : because he was sad[-:].,and he was not happy because he was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,there is one rabbit.,there is one rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,he (wa) had a basket [~_pronounced_/baesIk/].,he wa had a basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and he eated|eat[EW:ate] all he[EW:his] stuff.,and he eated all he stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and[-:] : he had a tummyache.,and he had a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and[-:] he[-:] was not happy.,and he was not happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and (he) : (the) the rabbit was [~_makes_vocalizations]!,and he the the rabbit was +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and[-:] the rabbit was pull/ing the rabbit.,and the rabbit was pulling the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and the rabbit was not happy because : he was angry : and because : he was sad[-:].,and the rabbit was not happy because he was angry and because he was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,the end [~_laughs] [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and[-:] he had (uh : um) a stroller (xx) : and a window and his balloon.,and he had uh um a stroller and a window and his balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and he was happy : again.,and he was happy again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and so he want/ed another one.,and so he wanted another one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and he could not because his (um) balloon was fly/ing[-:].,and he could not because his um balloon was flying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and[-:] : it was gone.,and it was gone +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and he pick/ed another balloon.,and he picked another balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and : he said I want another balloon.,and he said I want another balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and his pant/3s were rip/ing [~_laughs].,and his pants were ripping +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and[-:] he was happy again.,and he was happy again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and he want/ed another balloon.,and he wanted another balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and[-:] the mother rabbit was sad[-:].,and the mother rabbit was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,and then he get[EW:got] it back again.,and then he get it back again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,(um[-:] he) they both had another balloon.,um he they both had another balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/464.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,(it) this look/3s like a love[!] story because she is bounce/ing[!] her ball.,it this looks like a love story because she is bouncing her ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and she say/3s hey do you want to play.,and she says hey do you want to play +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and (she) she pass/3s[!] it to the giraffe.,and she she passes it to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and the giraffe : can not[!] catch it because she pass/3s it really fast.,and the giraffe can not catch it because she passes it really fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and it go/3s into the pool.,and it goes into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and the giraffe say/3s do not[!] worry.,and the giraffe says do not worry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,I will get it.,I will get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,so : the giraffe swim/3s[!] into the pool.,so the giraffe swims into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and : he grab/3s[!] the ball and give/3s it : to[-:] the[-:] elephant.,and he grabs the ball and gives it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and the elephant : is in love with the giraffe now.,and the elephant is in love with the giraffe now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,(she) they say they are go/ing to[:_gonna] go : take a : dive on the diving board.,she they say they are going to go take a dive on the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and she say/3s hey let us go over to the diving board really fast!,and she says hey let us go over to the diving board really fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,come on!,come on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and[-:] so : she run/3s.,and so she runs +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and she slip/3s!,and she slips +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and she bang/3s her knee.,and she bangs her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and she hurt/3s it really bad.,and she hurts it really bad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and the lifeguard[!] come/3s over.,and the lifeguard comes over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and she is all[-:] : cry/ing.,and she is all crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and give/3s her a[-:] bandaid[!] : and then put/3s her on the bench : and[-:] : say/3s you will be okay.,and gives her a bandaid and then puts her on the bench and says you will be okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,then : (sh) he point/3s to the no run/ing sign.,then sh he points to the no running sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and she say/3s okay I will not run next time.,and she says okay I will not run next time +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,(the giraffe say/3s) : (the) the elephant say/3s hey[!] nice plane.,the giraffe says the the elephant says hey nice plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and the giraffe say/3s cool you want to[:_wanna] : play with me ?,and the giraffe says cool you want to play with me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,(so[-:]) so the giraffe go/3s [~_makes_sound_effects_'prrfff'].,so so the giraffe goes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,(and) and she go/3s wow !,and and she goes wow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,so she take/3s it.,so she takes it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,she go/3s [~_makes_sound_effects_'prrfff'].,she goes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and the giraffe go/3s cool[-:].,and the giraffe goes cool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and then she accidentally : get/3s it in the water.,and then she accidentally gets it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and he go/3s oh[-:] that was my favourite plane !,and he goes oh that was my favourite plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,why did you do that !,why did you do that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and : she go/3s to tell the lifeguard if she can get it out[!].,and she goes to tell the lifeguard if she can get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,(and the life) and : she go/3s to tell[~!_laughing] the lifeguard if[~!_laughing] he can get it out.,and the life and she goes to tell the lifeguard if he can get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and the lifeguard try/3s[!] to reach.,and the lifeguard tries to reach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,but he can not.,but he can not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,so : the giraffe[!] start/3s to cry.,so the giraffe starts to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and the girl is like that.,and the girl is like that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,(and the gi) and the lifeguard say/3s I[-:] do not know what we can do about it.,and the gi and the lifeguard says I do not know what we can do about it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and a lady[!] come/3s by with a big net.,and a lady comes by with a big net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and then she say/3s hey do you want me get it out ?,and then she says hey do you want me get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,they say sure.,they say sure +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,so she : take/3s the net[!] put/3s[!] it in the water and grab/3s the plane : give/3s[!] the plane back : to[-:] the giraffe.,so she takes the net puts it in the water and grabs the plane gives the plane back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and the giraffe say/3s ooh I got my favourite plane back.,and the giraffe says ooh I got my favourite plane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and now all the people are happy.,and now all the people are happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,the bunny[!] meet/3s up with the[-:] : dog I guess and say/3s hey do you want to build sandcastle/s?,the bunny meets up with the dog I guess and says hey do you want to build sandcastles +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and[-:] so they are build/ing[!] the sandcastle/s.,and so they are building the sandcastles +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and the bunny has got a big bucket (and[-:]) full of sand.,and the bunny has got a big bucket and full of sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and he is scoop/ing it up.,and he is scooping it up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and he take/3s[!] the big bucket[!] of sand.,and he takes the big bucket of sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and he dump/3s it over her sandcastle.,and he dumps it over her sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and now[!] (the) (the whole sandcastle) the whole castle is now bury/ed[!] in a bunch of sand and broken[!].,and now the the whole sandcastle the whole castle is now buried in a bunch of sand and broken +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,so she start/3s to cry.,so she starts to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and the bunny just mind/3s his own business.,and the bunny just minds his own business +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,the[-:] : dog and the bunny are on a picnic.,the dog and the bunny are on a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,they are go/ing on a picnic.,they are going on a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,so[-:] they meet up in the park.,so they meet up in the park +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and they set up all their stuff.,and they set up all their stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and the bunny bring/3s a bunch of carrot/s and sub/s and[-:] all this stuff that is not good[!] for you.,and the bunny brings a bunch of carrots and subs and all this stuff that is not good for you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and he start/s eat/ing it all.,and he starts eating it all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and he go/3s aw[-:] I am full.,and he goes aw I am full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and then he feel/3s queasy and woozy and he [~_makes_sound_'ooo'].,and then he feels queasy and woozy and he +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,(so the) : so the : dog : run/3s over to a bunny doctor that is just across the[-:] street : and bring/3s him over to the queasy : bunny.,so the so the dog runs over to a bunny doctor that is just across the street and brings him over to the queasy bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and she say/3s you should not have (s) eat that.,and she says you should not have s eat that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and he say/3s you should eat what is good for you.,and he says you should eat what is good for you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,one[!] day the bunny and the dog met up in the park.,one day the bunny and the dog met up in the park +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and : the dog had brought her wagon and her favourite balloon.,and the dog had brought her wagon and her favourite balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and the bunny said hi[!] (can) can I see your balloon?,and the bunny said hi can can I see your balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and the dog said sure.,and the dog said sure +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,so the bunny take/3s the balloon and untie/3s it.,so the bunny takes the balloon and unties it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and the dog say/3s : hey what are you do/ing?,and the dog says hey what are you doing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,(and) (and he) and : the dog distract/3s the bunny and accidentally let/3s go of the balloon.,and and he and the dog distracts the bunny and accidentally lets go of the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and : now the dog[!] is really mad at the bunny[!].,and now the dog is really mad at the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,(and he s) and then the bunny see/3s (a) : a balloon[-:] : stand guy with a bunch of balloon/s.,and he s and then the bunny sees a a balloon stand guy with a bunch of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and he say/3s can I have one of those balloon/s?,and he says can I have one of those balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and the guy say/s balloon/s five cent/s.,and the guy saies balloons five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,(and then) and then he is all aw[-:] : okay.,and then and then he is all aw okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and then they see the bunny[!] doctor.,and then they see the bunny doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,and the bunny doctor say/3s : she need/3s a balloon because her favourite balloon (w) is gone.,and the bunny doctor says she needs a balloon because her favourite balloon w is gone +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,so the : bunny doctor take/3s out her change purse and give/3s her five cent/s.,so the bunny doctor takes out her change purse and gives her five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/957.slt,(and they both[!] get : g) and they both get balloon/s.,and they both get g and they both get balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,(um) once upon a time there were two animal/s (play/ing) bounce/ing a ball.,um once upon a time there were two animals playing bouncing a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,then the ball fell in the water.,then the ball fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,then (um) one of the animal/s went to go get the ball.,then um one of the animals went to go get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,they got it back for : them.,they got it back for them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,and then she was thrill/ed.,and then she was thrilled +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,(um) one time two animal/s were play/ing.,um one time two animals were playing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,and then one of them were[EW:was] run/ing.,and then one of them were running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,then : she was run/ing some more.,then she was running some more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,and she almost fell over.,and she almost fell over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,then she fell over and scrape/ed her knee.,then she fell over and scraped her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,then the lifeguard came to come and help.,then the lifeguard came to come and help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,they put a bandage over the : scrape.,they put a bandage over the scrape +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,she was all better.,she was all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,the lifeguard : said no run/ing.,the lifeguard said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,(um) one time (a girl) a[EW:an]: elephant girl want/ed to play : with an airplane.,um one time a girl a elephant girl wanted to play with an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,then there was another animal that (um) was play/ing with it.,then there was another animal that um was playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,and the other (um) one like/ed it.,and the other um one liked it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,then (um) the girl grab/ed it.,then um the girl grabbed it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,and now she was play/ing it.,and now she was playing it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,then she drop/ed it in the water.,then she dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,then the guy got mad.,then the guy got mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,then the lifeguard came.,then the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,(um) the girl told the lifeguard what happen/ed.,um the girl told the lifeguard what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,the lifeguard could not reach.,the lifeguard could not reach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,the lifeguard did not know what to do.,the lifeguard did not know what to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,then (um) someone got a scoop : and got it out.,then um someone got a scoop and got it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,and then (um) she gave it back to the boy.,and then um she gave it back to the boy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,the boy was happy.,the boy was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,one time a little girl was make/ing a sandcastle.,one time a little girl was making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,then (um ) a[EW:an] other person came to come and help.,then um a other person came to come and help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,(she) he dump/ed (a) a bucket of sand on the sandcastle.,she he dumped a a bucket of sand on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,and the sandcastle broke.,and the sandcastle broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,she try/ed to fix it.,she tried to fix it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,one time two : people were go/ing to [~_gonna] have a picnic.,one time two people were going to have a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,the rabbit want/ed to eat lot/s.,the rabbit wanted to eat lots +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,and he did[!] eat lot/s.,and he did eat lots +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,he was stuff/ed.,he was stuffed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,then he : went to sleep.,then he went to sleep +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,and (um) : I think the other person thought he was dead.,and um I think the other person thought he was dead +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,so he went to go get a : grownup.,so he went to go get a grownup +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,(she) (he) she pull/ed her towards the : rabbit : and made her wake up.,she he she pulled her towards the rabbit and made her wake up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,then they were happy again.,then they were happy again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,(uh w) one day a boy had a : balloon.,uh w one day a boy had a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,then another person came.,then another person came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,(he) (he was tie) (tying) he was untie/ing the balloon.,he he was tie tying he was untying the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,and then it went up fly/ing high.,and then it went up flying high +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,the girl got angry.,the girl got angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,and then : the other (b) guy (got ano) (got a) found a balloon : person.,and then the other b guy got ano got a found a balloon person +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,and he want/ed one balloon.,and he wanted one balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,and he had (to pay) to pay five cent/s.,and he had to pay to pay five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,but he did not have the money.,but he did not have the money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,then they : beg/ed the guy.,then they begged the guy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,(then : he) then : [~_clears_throat] the rabbit went to go get their mom.,then he then the rabbit went to go get their mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,and he ask/ed for five cent/s.,and he asked for five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,and he got five cent/s.,and he got five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/968.slt,and he got a balloon.,and he got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,(Okay) one day an elephant was walk/ing down the street bounce/ing a ball.,Okay one day an elephant was walking down the street bouncing a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and he ran into his friend.,and he ran into his friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,(but) and they went to the swimming pool together.,but and they went to the swimming pool together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,but[!] : all of a sudden : their ball fell into the pool.,but all of a sudden their ball fell into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and so they had to go swim/ing to get it.,and so they had to go swimming to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and so : the friend hand/ed the elephant the ball.,and so the friend handed the elephant the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and she said thank you.,and she said thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,(and then they decide/ed to go s) and they decide/ed to go and : bounce the ball again.,and then they decided to go s and they decided to go and bounce the ball again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,(Okay) so one day two friend[EW:friends] decide/ed to go to the pool.,Okay so one day two friend decided to go to the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and one said whoa look at that diving board.,and one said whoa look at that diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,that would be lot/s of fun.,that would be lots of fun +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and so they start run/ing towards the diving board.,and so they start running towards the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,but the elephant slip/3s.,but the elephant slips +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and she really hurt/3s her (nu) knee.,and she really hurts her nu knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,owie she say/3s I have got a cut on my knee.,owie she says I have got a cut on my knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,it hurt/3s.,it hurts +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and the lifeguard come/3s run/ing.,and the lifeguard comes running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and the lifeguard put/3s a bandaid on it.,and the lifeguard puts a bandaid on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and she walk/3s back to (the) a bench.,and she walks back to the a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and the lifeguard tell/3s her not to run : at the pool.,and the lifeguard tells her not to run at the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and he point/3s to a sign that says no run/ing.,and he points to a sign that says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,so one day these two friend/s decide/ed to go to a pool.,so one day these two friends decided to go to a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and one of them was carry/ing a toy airplane.,and one of them was carrying a toy airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and : she decide/ed to play with her toy airplane.,and she decided to play with her toy airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and : (this) (there fr) her friend grab/ed it : and said wow[!] I like this airplane.,and this there fr her friend grabbed it and said wow I like this airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,but she drop/ed it.,but she dropped it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and it fell into the pool.,and it fell into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and : the friend got mad (at her fr) at their friend.,and the friend got mad at her fr at their friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and they ask/ed the lifeguard if (sh) he[!] could get the : airplane out.,and they asked the lifeguard if sh he could get the airplane out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and she said [~_high_pitched_voice] please please our airplane is in the water !,and she said please please our airplane is in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,[~_high_pitched_voice] it might not float!,it might not float +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and so he go/3s.,and so he goes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and he try/3s to get it.,and he tries to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,but he can not reach it.,but he can not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,it is a little bit too far away.,it is a little bit too far away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and this guy start/3s cry/ing because he can not get his airplane back.,and this guy starts crying because he can not get his airplane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,but then[!] (this) this other[!] person comes along with a net.,but then this this other person comes along with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,(and she fish/3s) and she try/3s to fish the airplane out of the water.,and she fishes and she tries to fish the airplane out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and she get/3s it for him.,and she gets it for him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and he say/3s thank you!,and he says thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and he say/3s oh my airplane.,and he says oh my airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,I am so glad it is back to me!,I am so glad it is back to me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,One time two friend/s were play/ing in a sandbox.,One time two friends were playing in a sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and they decide/ed to make some sandcastle/s.,and they decided to make some sandcastles +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and (the) then (this) (the other) this friend said why do not we put some sand on it to make it even bigger?,and the then this the other this friend said why do not we put some sand on it to make it even bigger +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,but[!] : it burry/ed the castle.,but it burryed the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and it fell over.,and it fell over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and the friend who made it was like oh my poor castle.,and the friend who made it was like oh my poor castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,I want it back.,I want it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,one time two friend/s met on the road.,one time two friends met on the road +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and they are plan/ing to have a picnic.,and they are planning to have a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and so they get to where they are have/ing the picnic.,and so they get to where they are having the picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and it turn/ed out that one of the friend/s was a rabbit.,and it turned out that one of the friends was a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,but he was really hungry.,but he was really hungry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and he got a really fat stomach after eat/ing all that.,and he got a really fat stomach after eating all that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and he said oh I do not feel very good.,and he said oh I do not feel very good +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,I think I ate too much.,I think I ate too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and then : the friend said oh dear.,and then the friend said oh dear +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,I will quickly fetch the doctor.,I will quickly fetch the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and so he went to get the doctor.,and so he went to get the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and he pull/ed the doctor and said [~_high_pitched_voice] please come quick.,and he pulled the doctor and said please come quick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,[~_high_pitched_voice] I think he do/3s not feel well.,I think he does not feel well +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and the doctor come/3s and say/3s : well[!] : you better not eat that much food.,and the doctor comes and says well you better not eat that much food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,it make/3s you sick.,it makes you sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and so they go home.,and so they go home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,One time two friend/s met.,One time two friends met +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and : one was pull/ing a wagon with a balloon.,and one was pulling a wagon with a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and he said wow look at that balloon.,and he said wow look at that balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,(I think) : look how (f) high it float/3s.,I think look how f high it floats +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and he try/3s to untie the balloon.,and he tries to untie the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,but it float/3s away!,but it floats away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and they want to get it back.,and they want to get it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and the friend get/3s really mad at the other friend because he want/3s his balloon back.,and the friend gets really mad at the other friend because he wants his balloon back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,but[!] they see a balloon man down the road sell/ing balloon/s.,but they see a balloon man down the road selling balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and they say oh we want another balloon.,and they say oh we want another balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and : the man say/3s well : the balloon/s are five cent/s.,and the man says well the balloons are five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and they say well we do not have any money.,and they say well we do not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,(and) but they see : someone down the road.,and but they see someone down the road +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and they think maybe (they) she would lend them money.,and they think maybe they she would lend them money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and they say we want to [~_wanna] buy a balloon.,and they say we want to buy a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,can you please (ha) give us some money?,can you please ha give us some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and so she give/3s them some money.,and so she gives them some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and they get a balloon.,and they get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and they both[!] get a balloon.,and they both get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,and they said well is not this nice.,and they said well is not this nice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/714.slt,now we both get a balloon.,now we both get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(um) : take/ing a ball out [EU].,um taking a ball out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,the ball got dirty.,the ball got dirty +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,and : the boy (got) : falled|fall[EW:fell] in the water.,and the boy got falled in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(um) : the girl help/ed him get up.,um the girl helped him get up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,and they play/ed basketball.,and they played basketball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,and that is the end again [+_bch].,and that is the end again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(um : they) (they s) they did not jump in the water.,um they they s they did not jump in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,and the girl is go/ing to [~_gonna] jump in the water.,and the girl is going to jump in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(um a) : a girl was (um) : run/ing.,um a a girl was um running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,girl hurt herself [EU].,girl hurt herself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,she start/ed to cry.,she started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(s um : that) the boy is give/ing her a bandaid.,s um that the boy is giving her a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(uh : well) she had to sit down so it could feel[!] better.,uh well she had to sit down so it could feel better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,and the boy said are you fine.,and the boy said are you fine +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,that is the end [+_bch].,that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(uh) the little girl is make/ing a funny face.,uh the little girl is making a funny face +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(um) the boy was (um) fly/ing the airplane.,um the boy was um flying the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,and now the girl try/ed to fly the airplane.,and now the girl tried to fly the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,and (now) now the girl (um) drop/ed it in the water.,and now now the girl um dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(now) now the boy got mad.,now now the boy got mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(now) (now the) (now the) now the girl got scare/ed of (the) the boy.,now now the now the now the girl got scared of the the boy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(uh now) (now) now the girl got scare/ed again.,uh now now now the girl got scared again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,now (the) the coach was try/ing to get it.,now the the coach was trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,now the coach (tri um) try/ed to get it.,now the coach tri um tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(and it um) and then the coach did not get it.,and it um and then the coach did not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,now the girl : try/ed to get it with the net.,now the girl tried to get it with the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(um) the girl almost got it.,um the girl almost got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(now) now the girl gived|give[EW:gave] it to the boy.,now now the girl gived it to the boy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(now) now the boy was happy.,now now the boy was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,and that is the end [+_bch].,and that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,mouse is dig/ing.,mouse is digging +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,put/ing it in the bucket [EU].,putting it in the bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(um) dump/ing it on the castle [EU].,um dumping it on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,it : broke.,it broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,make/ing it [EU].,making it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(um) : mouse is go/ing on a field[!] trip.,um mouse is going on a field trip +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,mouse is have/ing a picnic.,mouse is having a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(um) : they (s) spill/ed all the juice.,um they s spilled all the juice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(um) : they : broke their juice.,um they broke their juice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,mommy comed|come[EW:came].,mommy comed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(um : um uh : um) mommy took the : baby away.,um um uh um mommy took the baby away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(um : um) the mommy took the[-:] : baby away again.,um um the mommy took the baby away again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,and : they went back home.,and they went back home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(um) that is the end [+_bch].,um that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,take/ing the balloon for a ride [EU].,taking the balloon for a ride +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,and the : boy is take/ing the balloon away.,and the boy is taking the balloon away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(um) : he is (um) pull/ing the balloon off.,um he is um pulling the balloon off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,the balloon is fly/ing away.,the balloon is flying away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(um) the boy got mad[!].,um the boy got mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(um) : daddy : gived|give[EW:gave] them some more (um) balloon/s.,um daddy gived them some more um balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,and then : daddy gived|give[EW:gave] (um) the boy some balloon/s.,and then daddy gived um the boy some balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(and) : and (then) then the boy got one.,and and then then the boy got one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(then) : and the baby[!] got one too.,then and the baby got one too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,and mommy was (uh) : look/ing that way.,and mommy was uh looking that way +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,and : (that) (that) the boy got : the : balloon/s.,and that that the boy got the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,and (um the) the daddy give|give[EW:gave] the : mommy some money.,and um the the daddy give the mommy some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,and then : (that um) the baby has got some balloon/s.,and then that um the baby has got some balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/454.slt,(that) that is the end [+_bch].,that that is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,once upon a time there was a giraffe and a[EW:an] elephant.,once upon a time there was a giraffe and a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,and they were play/ing basketball.,and they were playing basketball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,: but then the basketball went into the water.,but then the basketball went into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,and the elephant had a swimming suit on.,and the elephant had a swimming suit on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,so I think she went to go get it.,so I think she went to go get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,: instead the giraffe went to go get it.,instead the giraffe went to go get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,: and then the giraffe gave the ball back to the elephant.,and then the giraffe gave the ball back to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,: but then the giraffe was : wet.,but then the giraffe was wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,once upon a time there was : a : giraffe and a[EW:an] elephant who want/ed to go swim.,once upon a time there was a giraffe and a elephant who wanted to go swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,: then the elephant runned|run[EW:ran].,then the elephant runned +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,: then the elephant slip/ed.,then the elephant slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,and : then the giraffe run/3s to help her.,and then the giraffe runs to help her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,and then : she fall/3s down.,and then she falls down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,and she scrape/3s her knee.,and she scrapes her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,: then the lifeguard run/3s to her.,then the lifeguard runs to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,: then the lifeguard had some bandage/s.,then the lifeguard had some bandages +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,and : the lifeguard putted|put[EW:put] a bandage on her knee.,and the lifeguard putted a bandage on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,(then : her) then she could not walk very well because her knee was really hurt.,then her then she could not walk very well because her knee was really hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,then the lifeguard told her : to : not run and stay there.,then the lifeguard told her to not run and stay there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,once upon a time there was : a[EW:an] elephant and a giraffe.,once upon a time there was a elephant and a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,and the giraffe had a[EW:an] airplane.,and the giraffe had a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,the giraffe was play/ing with the airplane.,the giraffe was playing with the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,and he made the : airplane make a sound.,and he made the airplane make a sound +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,then the elephant grab/ed it from him.,then the elephant grabbed it from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,and the giraffe said hey[!].,and the giraffe said hey +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,then : the elephant accidentally drop/ed the : airplane into the water.,then the elephant accidentally dropped the airplane into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,then the giraffe was so mad at her.,then the giraffe was so mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,: then the lifeguard maked|make[EW:made] a really funny face.,then the lifeguard maked a really funny face +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,: then the lifeguard made a really strange face that look/ed like oh I do not know.,then the lifeguard made a really strange face that looked like oh I do not know +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,then the lifeguard try/ed to get it.,then the lifeguard tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,: the giraffe was really sad.,the giraffe was really sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,then a lady[-:] came with : a : [~_C_asks_what_'that'_is;_E_tells__C_to_describe_it] a net (that um) to get the airplane.,then a lady came with a a net that um to get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,the lady got it.,the lady got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,then the giraffe was happy.,then the giraffe was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,then (the) the giraffe was really really happy.,then the the giraffe was really really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,once upon a time there was : a bunny rabbit and another animal.,once upon a time there was a bunny rabbit and another animal +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,(they are going) and they were go/ing to make a sandcastle.,they are going and they were going to make a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,and then they made the sandcastle.,and then they made the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,but then : it rain/ed.,but then it rained +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,and then the sandcastle broke.,and then the sandcastle broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,and then : the : other animal was sad.,and then the other animal was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,once upon a time there was a bunny and a : different kind of animal.,once upon a time there was a bunny and a different kind of animal +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,and they are go/ing for a picnic.,and they are going for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,then they went to a picnic.,then they went to a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,and : the bunny had lot/s of : yummy stuff to eat.,and the bunny had lots of yummy stuff to eat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,and some of it was not good food.,and some of it was not good food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,then : when the bunny was done eat/ing he was fat.,then when the bunny was done eating he was fat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,then he had a stomachache.,then he had a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,and then another bunny came.,and then another bunny came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,and : the : (weird um) weird animal : came and got the : bunny and told him something about the kid bunny.,and the weird um weird animal came and got the bunny and told him something about the kid bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,and then : the big bunny was happy.,and then the big bunny was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,: and then : he had a fever.,and then he had a fever +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,then the big bunny took him to the doctor.,then the big bunny took him to the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,once upon a time there was a little girl who had a balloon.,once upon a time there was a little girl who had a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,and a bunny came.,and a bunny came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,: then the bunny saw the balloon[-:].,then the bunny saw the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,and then the bunny try/ed to take it off the wagon.,and then the bunny tried to take it off the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,then it went up into the air by accident.,then it went up into the air by accident +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,then he could not reach it.,then he could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,so the girl was really mad.,so the girl was really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,but then they saw (a man) : a bunny man who : had balloon/s.,but then they saw a man a bunny man who had balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,: then : the bunny : try/ed to tell him (what it) what kind of balloon he want/ed.,then the bunny tried to tell him what it what kind of balloon he wanted +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,: but then the balloon/s cost five cent/s.,but then the balloons cost five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,and he did not have five cent/s.,and he did not have five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,: then : the kids were sad.,then the kids were sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,then (he) : (these) the bunny saw : a doctor : who had money.,then he these the bunny saw a doctor who had money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,what was that?,what was that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,who had money [+_bch].,who had money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,: and then : the boy ask/ed : the doctor : for : some money.,and then the boy asked the doctor for some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,then the doctor gave : some money to the man for (a) two balloon/s.,then the doctor gave some money to the man for a two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/612.slt,then they each got a balloon.,then they each got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,the giraffe see/3s an elephant.,the giraffe sees an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the elephant is : bounce/ing a ball.,and the elephant is bouncing a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the ball fell in the water.,and the ball fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the giraffe see/3s it.,and the giraffe sees it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the giraffe go/3s in the water (and : tr) and try/3s to get (it) the ball.,and the giraffe goes in the water and tr and tries to get it the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and then the giraffe got to the ball and give/3s it to the elephant.,and then the giraffe got to the ball and gives it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the elephant thank/ed him.,and the elephant thanked him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,the elephant want/3s[?] to see the water.,the elephant wants to see the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and she want/3s to go (on) in it.,and she wants to go on in it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and she would not.,and she would not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and she ask/ed the diving coach (if he) if she could go.,and she asked the diving coach if he if she could go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and he said yes.,and he said yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,then she (runned|run[EW:ran]) ran.,then she runned ran +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and she is not supposed to.,and she is not supposed to +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,so she just ran.,so she just ran +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and then she slip/ed.,and then she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,(then she) then the giraffe saw her.,then she then the giraffe saw her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,he[EW:she] cut her knee.,he cut her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,(then there is another) then the giraffe coach and the elephant coach came.,then there is another then the giraffe coach and the elephant coach came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,(and) and there is a sign say/ing no run/ing.,and and there is a sign saying no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and then the elephant put/3s a bandaid on her knee.,and then the elephant puts a bandaid on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,(and then he) then that is all [+_bch].,and then he then that is all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and then she sit/3s on the bench.,and then she sits on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and her knee do/3s not hurt that much any more.,and her knee does not hurt that much any more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and (the :) the elephant coach point/ed to the sign.,and the the elephant coach pointed to the sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and it said no run/ing.,and it said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and she was like [~_makes_a_face].,and she was like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,she make/3s a face.,she makes a face +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,(um) the girl see/3s the giraffe with a toy airplane.,um the girl sees the giraffe with a toy airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,(and the) : (and the) and the giraffe : is play/ing with the toy airplane.,and the and the and the giraffe is playing with the toy airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the girl see/3s the airplane.,and the girl sees the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the girl snatch/ed *it from (the) the giraffe [EU].,and the girl snatched from the the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the giraffe said hey!,and the giraffe said hey +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,then the girl accidentally splash/ed it in the water [EU].,then the girl accidentally splashed it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and now : and that is all [+_bch].,and now and that is all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and then the giraffe was mad at the elephant.,and then the giraffe was mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and (the) the elephant coach came over.,and the the elephant coach came over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the giraffe was sad.,and the giraffe was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the little elephant explain/ed : how it happen/ed.,and the little elephant explained how it happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and then the coach elephant try/ed to get it.,and then the coach elephant tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,but he could not reach it.,but he could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and then the giraffe start/ed cry/ing.,and then the giraffe started crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,then a coach girl elephant came over.,then a coach girl elephant came over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and (ha) she had a net to get the airplane.,and ha she had a net to get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and (then she got the air) then she put it in.,and then she got the air then she put it in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,(got) and she got the airplane.,got and she got the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and she gave it back to the giraffe.,and she gave it back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the giraffe was very happy.,and the giraffe was very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,(and the giraffe) : and the elephant was very happy that he got it back.,and the giraffe and the elephant was very happy that he got it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,a puppy and a rabbit [EU].,a puppy and a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,(are) the rabbit see/3s a puppy and say/3s can I play with you?,are the rabbit sees a puppy and says can I play with you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the puppy say/3s yes.,and the puppy says yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and so they build a sandcastle.,and so they build a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and they start build/ing a sandcastle.,and they start building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the rabbit has a : bucket with sand in it and a shovel.,and the rabbit has a bucket with sand in it and a shovel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and he is scoop/ing sand out of it.,and he is scooping sand out of it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,(and then he pour/3s it) and then the rabbit pour/3s it on the sandcastle.,and then he pours it and then the rabbit pours it on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the dog/z : eyes are twist/ed [~_laughs].,and the dog's eyes are twisted +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and (then) then the rabbit (was like) (he he) he saw the sandcastle *was broken [EU].,and then then the rabbit was like he he he saw the sandcastle broken +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,(and the dog) and the rabbit was like [~_makes_a_face].,and the dog and the rabbit was like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,"you are make/ing a face, mmhm.",you are making a face mmhm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the dog was cry/ing.,and the dog was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the rabbit (um) was embarrass/ed.,and the rabbit um was embarrassed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,(the dog) the rabbit was walk/ing down the path.,the dog the rabbit was walking down the path +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the rabbit see/3s the dog.,and the rabbit sees the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the dog say/3s hi.,and the dog says hi +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and then they go sit down on the grass.,and then they go sit down on the grass +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the rabbit start/3s eat/ing.,and the rabbit starts eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and his tongue is stick/ing out [~_laughs].,and his tongue is sticking out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,(the dog um) the rabbit is get/ing full and full : and fuller.,the dog um the rabbit is getting full and full and fuller +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the dog is just drink/ing it/z juice.,and the dog is just drinking it's juice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and then the dog see/3s a doctor and say/3s help.,and then the dog sees a doctor and says help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,my friend is hurt.,my friend is hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and then the dog pull/3s her over (to) so she can see the : little rabbit.,and then the dog pulls her over to so she can see the little rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and then the : (uh) doctor rabbit look/3s at him.,and then the uh doctor rabbit looks at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and (he is) (she is p) she is point/ing to something.,and he is she is p she is pointing to something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and (the) then the doctor take/3s the rabbit with (hi) her.,and the then the doctor takes the rabbit with hi her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,the rabbit see/3s the dog with : a wagon with a balloon tie/ed on it.,the rabbit sees the dog with a wagon with a balloon tied on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the dog see/3s the rabbit.,and the dog sees the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and then the rabbit say/3s hey : (can I) can I look at your balloon?,and then the rabbit says hey can I can I look at your balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,the dog say/3s yes.,the dog says yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,(then the b) then the rabbit take/3s the balloon off.,then the b then the rabbit takes the balloon off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the dog is like [~_makes_a_face].,and the dog is like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,you made a face again.,you made a face again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,(and then the balloo) and then the rabbit let go of (it) the balloon.,and then the balloo and then the rabbit let go of it the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the balloon fly/3s away.,and the balloon flies away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the balloon go/3s up and up.,and the balloon goes up and up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the dog is mad.,and the dog is mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,(then they see um) then the dog is mad at the rabbit.,then they see um then the dog is mad at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and then the rabbit (go/3s) see/3s (um) a rabbit with : balloon/s.,and then the rabbit goes sees um a rabbit with balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and then he go/3s over to him : and say/3s hey can I have that balloon?,and then he goes over to him and says hey can I have that balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and then : the man say/3s : do you have five dollar/s?,and then the man says do you have five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the rabbit check/3s his pocket.,and the rabbit checks his pocket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,no [~_shaking_his_head].,no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,then the man stand/3s up there.,then the man stands up there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and those two are sad.,and those two are sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and they pull the same (doc) girl over to (the) the balloon stand.,and they pull the same doc girl over to the the balloon stand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and so : the rabbit say/3s (can) can you get us a balloon?,and so the rabbit says can can you get us a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and the rabbit say/3s yes.,and the rabbit says yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and (then) (then the guy) then the rabbit (sa) (put) put money in his hand.,and then then the guy then the rabbit sa put put money in his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,and then they got two balloon/s.,and then they got two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/632.slt,they were so happy.,they were so happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,(uh) once upon a times[EW:time][-:] a[EW:an] elephant was get/ing : a[EW:an][-:] octopus.,uh once upon a times a elephant was getting a octopus +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,and then (they t) : (they always) : they splash[-:][!] the ball in the water.,and then they t they always they splash the ball in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,and (that) : he swimmed|swim[EW:swam] and swimmed|swim[EW:swam].,and that he swimmed and swimmed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,and he could not breathe.,and he could not breathe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,and then (he) (he) he got the ball to him!,and then he he he got the ball to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,and then they got all[-:] wet.,and then they got all wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,the end [+_bch] !,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,once upon a time[-:] : they[-:] did it again!,once upon a time they did it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,(tomorrow) tomorrow we will get the ball.,tomorrow tomorrow we will get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,(today) today we can not get the ball.,today today we can not get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,goodbye(*3).,goodbye goodbye goodbye +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,goodbye(*3).,goodbye goodbye goodbye +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,ow(*3).,ow ow ow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,bounce(*3)!,bounce bounce bounce +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,[~_makes_sound_effect_'doing'_3_times]., +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,ow(*3).,ow ow ow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,thank you(*3)!,thank you you you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,no more [+_bch].,no more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,(um) [-:] : he bounce/ed on his nose [EU].,um he bounced on his nose +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,he cut his nose.,he cut his nose +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,he saw the airplane!,he saw the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,he drop/ed it on the floor!,he dropped it on the floor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,he almost drop/ed it in the water.,he almost dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,but he did[~!_laughing].,but he did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,uhoh you should : get it tomorrow[-:]!,uhoh you should get it tomorrow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,and I am mad at you now !,and I am mad at you now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,[~_makes_sound_effect_'doing']., +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,splash(*3).,splash splash splash +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,goodbye(*7)!,goodbye goodbye goodbye goodbye goodbye goodbye goodbye +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,thank you(*4).,thank you you you you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,you are welcome(*2).,you are welcome welcome +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,catch it catch it for a tide or two [~_singsong_voice] [EU].,catch it catch it for a tide or two +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,catch it [EU].,catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,I love you forever[!].,I love you forever +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,next time[-:] come back[!] [EU].,next time come back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,love you forever again[~!_laughing] [EU].,love you forever again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,I love you (f) xxx.,I love you f x +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,a bunny : was mad at the nother[EW:other] dog[-:].,a bunny was mad at the nother dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,a bunny[~!_laughing] was happy[!] at the dog now [EU].,a bunny was happy at the dog now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,the bunny was sad[-:].,the bunny was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,the bunny was happy!,the bunny was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,the bunny was angry!,the bunny was angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,the end[-:] [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,(um) : that guy is go/ing to[:_gonna] get that guy.,um that guy is going to get that guy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,and they are go/ing to bump[~!_laughing] into each other.,and they are going to bump into each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,and this one is sillier.,and this one is sillier +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,then (he) he took his nail off.,then he he took his nail off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,ooh[-:] he took his carrot.,ooh he took his carrot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,(he) (he) he chokeded|choke[EW:choked].,he he he chokeded +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,he is sad.,he is sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,he is happy!,he is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,he is : long.,he is long +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,he is long to walk [EU]!,he is long to walk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,he is long to : get up because the mom was so sad.,he is long to get up because the mom was so sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,oh[-:][!] (then she went with the mom) then he went with the mom.,oh then she went with the mom then he went with the mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,and there[-:] go/3s : the friend[!].,and there goes the friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,and the end [+_bch].,and the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,[~_I_I_I_do_n(o)t_say_once_upon_a_time_but_but_I_say_um] once upon a time[-:] there is[-:] (a : uh um) a bunny who *is running[~!__laughing] into a bunny [EU].,once upon a time there is a uh um a bunny who running into a bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,(um one crashed) they crash/ed into each other.,um one crashed they crashed into each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,and they bonk/ed their head/s.,and they bonked their heads +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,and they falled|fall[EW:fell] down upside down!,and they falled down upside down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,and then[!] the balloon was broken.,and then the balloon was broken +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,then they got more[!] balloon/s.,then they got more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,then they were happy.,then they were happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,he said goodbye[!].,he said goodbye +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,let us have a good time!,let us have a good time +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,someday/s you will come to me.,somedays you will come to me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,sometime/s you will not.,sometimes you will not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,sometime/s you will come to my house and be Santa!,sometimes you will come to my house and be Santa +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,sometime/s you *will be happy[!] to come to my house [EU].,sometimes you be happy to come to my house +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,then their mother/s came.,then their mothers came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/466.slt,(the end) the end [+_bch].,the end the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,they are at the swimming pool.,they are at the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,: (bu) but : (they do not know) : they do not know : how to swim.,bu but they do not know they do not know how to swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,zebra try/3s : to.,zebra tries to +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,(but) and he (gets a : s) (tr) try/3s to.,but and he gets a s tr tries to +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,(but) : and he got the ball.,but and he got the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,he is wet.,he is wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,they meet again.,they meet again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,: but this time (she is) she is go/ing into the pool.,but this time she is she is going into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,but she slip/3s : and[-:] : fall/3s : and is cry/ing.,but she slips and falls and is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,: the lifeguard come/3s : and (sh) : help/3s : the : scrape on her knee get better.,the lifeguard comes and sh helps the scrape on her knee get better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,: (she can : s) he say/3s she has to sit down.,she can s he says she has to sit down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,: he point/3s to the sign and say/3s (n) that say/3s no run/ing.,he points to the sign and says n that says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,her knee is better.,her knee is better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,: he has a plane.,he has a plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,she snatch/3s it from him.,she snatches it from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,she drop/3s it in the water.,she drops it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,it sink/3s.,it sinks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,: the lifeguard : tell/3s her to get it.,the lifeguard tells her to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,: she tell/3s the truth.,she tells the truth +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,he try/3s to get it.,he tries to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,but he can not.,but he can not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,he is sad.,he is sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,but someone else come/3s with a net : and scoop/3s it up : (but) : and give/3s it back to (her) him.,but someone else comes with a net and scoops it up but and gives it back to her him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,he is happy.,he is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,one of the : animal/s spill/ed his sandcastle.,one of the animals spilled his sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,bunny want/3s to help.,bunny wants to help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,he spill/3s it on.,he spills it on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,: (zz) this woman (is) she is sad.,zz this woman is she is sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,and then she cry/3s.,and then she cries +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,they are there : again.,they are there again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,he is eat/ing a carrot.,he is eating a carrot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,and (she) (he has all) he is eat/ing all the yummy stuff.,and she he has all he is eating all the yummy stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,and all she has is a sandwich.,and all she has is a sandwich +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,and then he is full.,and then he is full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,: (d) dizzy.,d dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,then : she run/3s : (back) : back up : to get the doctor.,then she runs back back up to get the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,: and : the doctor (sa um) : tell/3s the bunny (tha) do not eat too much.,and the doctor sa um tells the bunny tha do not eat too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,and then : the doctor take/3s the bunny : to the : doctor/z office.,and then the doctor takes the bunny to the doctor's office +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,(she) she has a balloon and wagon.,she she has a balloon and wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,(she is point/ing at it) he is point/ing at it.,she is pointing at it he is pointing at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,(he w) he want/3s : to untie it.,he w he wants to untie it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,it fly/3s away.,it flies away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,and then she get/3s mad.,and then she gets mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,(ss[-:]) : someone is sell/ing balloon/s.,ss someone is selling balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,: and he ask/3s for another one for her.,and he asks for another one for her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,: he do/3s not have any money.,he does not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,: he tell/3s (the bu) : her.,he tells the bu her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,so : she might have money.,so she might have money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,they ask someone else for five (ss) penny/s : for a balloon.,they ask someone else for five ss pence for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,: there is[EW:are] two left.,there is two left +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,: he want/3s his to pop : and fly away maybe.,he wants his to pop and fly away maybe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/903.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,There is a giraffe that is play/ing with the elephant.,There is a giraffe that is playing with the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then (one) (one balloon was um) something fell in the water.,and then one one balloon was um something fell in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,the giraffe was try/ing to catch it.,the giraffe was trying to catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and (he's) he was almost there.,and he's he was almost there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then (he k) the elephant already gots[EW:has] one.,and then he k the elephant already gots one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then the elephant was happy that he got it.,and then the elephant was happy that he got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,(Um) there : the giraffe and the elephant is[EW:are] together.,Um there the giraffe and the elephant is together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and : the elephant is run/ing to go to the big thing that you : jump on?,and the elephant is running to go to the big thing that you jump on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,(and then the) : and then the elephant is run/ing : and the giraffe too.,and then the and then the elephant is running and the giraffe too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then the elephant slip/ed : and then : (break um) had an owie on her knee.,and then the elephant slipped and then break um had an owie on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then the lifeguard came.,and then the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then : the giraffe told everything what happen/ed.,and then the giraffe told everything what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then : the elephant is (mak) cheer/ing the other elephant up.,and then the elephant is mak cheering the other elephant up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then : he put a (bla) bandaid on it.,and then he put a bla bandaid on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,"and then : the (: um) lifeguard show/ed no running, the sign.",and then the um lifeguard showed no running the sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,The elephant is talk/ing to the giraffe about something.,The elephant is talking to the giraffe about something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,(the : gira) the giraffe is (um) play/ing with his plane in the (um ss um) waterpark.,the gira the giraffe is um playing with his plane in the um ss um waterpark +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then he gave it to the elephant to see.,and then he gave it to the elephant to see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then : the elephant accidentally (put) sinked|sink[EW:sunk] it in the water [EU].,and then the elephant accidentally put sinked it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then it was sink/ing.,and then it was sinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then the : giraffe was get/ing mad at the elephant.,and then the giraffe was getting mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,(and) and the lifeguard came.,and and the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then : he is say/ing what is happen/ing.,and then he is saying what is happening +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then (the little) the giraffe told *him everything [EU].,and then the little the giraffe told everything +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then (the) : the elephant is try/ing to say (um that) what happen/ed after the giraffe.,and then the the elephant is trying to say um that what happened after the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and the lifeguard is try/ing to get the airplane.,and the lifeguard is trying to get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then : the little : giraffe is cry/ing because it is sink/ing.,and then the little giraffe is crying because it is sinking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then there was this lady who gots[EW:has] a net.,and then there was this lady who gots a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then : she is go/ing to catch the plane.,and then she is going to catch the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then she is try/ing to catch it.,and then she is trying to catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then she caught it.,and then she caught it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then : they were both happy.,and then they were both happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,There is (um) a kangaroo : that is play/ing and build/ing a castle in the sand.,There is um a kangaroo that is playing and building a castle in the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and (there's) there is a bunny rabbit who : is ask/ing if she can play too.,and there's there is a bunny rabbit who is asking if she can play too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,the bunny rabbit is try/ing to make a castle (like) just like the kangaroo/z.,the bunny rabbit is trying to make a castle like just like the kangaroo's +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,the rabbit is start/ing to pour it on the castle.,the rabbit is starting to pour it on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then the : bunny : rabbit is cry/ing.,and then the bunny rabbit is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then : now (it is gone) the castle is gone : because of the rabbit.,and then now it is gone the castle is gone because of the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then the little : (um) puppy is cry/ing.,and then the little um puppy is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,There is a little puppy.,There is a little puppy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and there is a rabbit carry/ing some food.,and there is a rabbit carrying some food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,(and there) and then the little : bunny (is) had a lot of food than the puppy [EU].,and there and then the little bunny is had a lot of food than the puppy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then the bunny rabbit is dizzy because he ate all those[EW:that] stuff.,and then the bunny rabbit is dizzy because he ate all those stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then the little puppy : is drink/ing juice.,and then the little puppy is drinking juice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then the little bunny rabbit is dizzy.,and then the little bunny rabbit is dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then (there is) the (pu) little puppy is call/ing for the doctor.,and then there is the pu little puppy is calling for the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then : (the doctor is) the puppy is pull/ing the doctor to see : to help.,and then the doctor is the puppy is pulling the doctor to see to help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,the bunny rabbit : (i) is dizzy.,the bunny rabbit i is dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then the doctor is clear/ing him [EU].,and then the doctor is clearing him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then : the doctor is take/ing him to (is) his office.,and then the doctor is taking him to is his office +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,There is this little puppy who is carry/ing : a wagon.,There is this little puppy who is carrying a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then it has a balloon on it.,and then it has a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and the bunny rabbit : is say/ing hello.,and the bunny rabbit is saying hello +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then the puppy (is try/ing) : is say/ing that he has a balloon on his wagon.,and then the puppy is trying is saying that he has a balloon on his wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then : the bunny rabbit is look/ing at it.,and then the bunny rabbit is looking at it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then : the bunny rabbit is take/ing off the balloon on the wagon.,and then the bunny rabbit is taking off the balloon on the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,(and) and then : the puppy (is) is almost go/ing to cry : if it is go/ing to blow up in the sky.,and and then the puppy is is almost going to cry if it is going to blow up in the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then the bunny rabbit is try/ing to catch it.,and then the bunny rabbit is trying to catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,(and the puppy) and then he could not reach it.,and the puppy and then he could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then it was all the way up to the sky.,and then it was all the way up to the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then the little puppy was gett/ing mad.,and then the little puppy was getting mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and there was this bunny rabbit clown : who : was carry/ing lots of balloon/s.,and there was this bunny rabbit clown who was carrying lots of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then : (the bun) the little bunny rabbit was go/ing to him.,and then the bun the little bunny rabbit was going to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then : the little puppy is still mad.,and then the little puppy is still mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then (he's) the little rabbit is ask/ing for a balloon.,and then he's the little rabbit is asking for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then it : says five cent/s.,and then it says five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,but the little bunny rabbit does not have any (um : mm) five cent/s [EU].,but the little bunny rabbit does not have any um mm five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then : the little puppy and the little rabbit : is[EW:are] try/ing : to tell him that (he) they want a balloon.,and then the little puppy and the little rabbit is trying to tell him that he they want a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and there was (this doctor who was try/ing) (thi) this doctor.,and there was this doctor who was trying thi this doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then the little rabbit is try/ing to : go to the doctor.,and then the little rabbit is trying to go to the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then the doctor was stand/ing.,and then the doctor was standing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then the doctor said what (s) is it?,and then the doctor said what s is it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then the little rabbit point/ed to what is the problem [EU].,and then the little rabbit pointed to what is the problem +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then (the little balloon) (the rabb) the doctor is pay/ing the : man.,and then the little balloon the rabb the doctor is paying the man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then they each got one.,and then they each got one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/605.slt,and then they were happy.,and then they were happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,Once an elephant met a [~_I_forget_what_that_animal_is] [~_EXA:_what__do_you_think_it_is] giraffe [+_bch].,Once an elephant met a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,Once an elephant met with a giraffe.,Once an elephant met with a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,(the) the elephant was play/ing with his ballie.,the the elephant was playing with his ballie +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and then the elephant accidentally threw the ball into the water.,and then the elephant accidentally threw the ball into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and then the giraffe had to go swim in the water to get it.,and then the giraffe had to go swim in the water to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and then the elephant thank/ed (the um) : the : giraffe for get/ing it.,and then the elephant thanked the um the giraffe for getting it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and then : the elephant was very happy.,and then the elephant was very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,Once upon a time (there a) there was an elephant and a giraffe.,Once upon a time there a there was an elephant and a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,they were very happy to be together : at a swimming pool.,they were very happy to be together at a swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,the elephant want/ed to go swimming on the dive/ing board.,the elephant wanted to go swimming on the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,but she trip/ed.,but she tripped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,(and) and the giraffe came run/ing after (her) her.,and and the giraffe came running after her her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,(she) she had a scab on her knee.,she she had a scab on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and she was cry/ing.,and she was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,the lifeguard came and saw it was just a bruise.,the lifeguard came and saw it was just a bruise +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,(and) and her friend had to take her home.,and and her friend had to take her home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and she cry/ed mostly[EW:most] of the afternoon.,and she cried mostly of the afternoon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,the lifeguard put a bandaid on her.,the lifeguard put a bandaid on her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,now she was all better.,now she was all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and she sat on a bench.,and she sat on a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and the lifeguard got mad at her.,and the lifeguard got mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,Once a giraffe met a[EW:an] : elephant.,Once a giraffe met a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,but : the giraffe like/ed : fly/ing stuff.,but the giraffe liked flying stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and the : elephant did not like it.,and the elephant did not like it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,it made her dizzy.,it made her dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and then she just grab/ed it and try/ed (and) : make/ing it fly.,and then she just grabbed it and tried and making it fly +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,but it fell into the pool.,but it fell into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,then the giraffe got mad at the elephant.,then the giraffe got mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and : they told the lifeguard.,and they told the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and the elephant told the lifeguard what have|have[EW:had] happen/ed.,and the elephant told the lifeguard what have happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and then the lifeguard lean/ed : over the water and try/ed to get it.,and then the lifeguard leaned over the water and tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,but he could not get it because he was too (b) far.,but he could not get it because he was too b far +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,but then a lady with a net (had) had : almost got it.,but then a lady with a net had had almost got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and she probably said she would.,and she probably said she would +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,(she p) she almost got it.,she p she almost got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,(but) : but I think she did not.,but but I think she did not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and she did[!] get it and gave it back to the : giraffe.,and she did get it and gave it back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,the giraffe was happy at[EW:with] the elephant.,the giraffe was happy at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,Once a bunny (ma) met a baby dog.,Once a bunny ma met a baby dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,he want/ed to make a sandcastle just like the dog.,he wanted to make a sandcastle just like the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and then he almost broke it by pour/ing the whole box of (ss) sand on the sandcastle.,and then he almost broke it by pouring the whole box of ss sand on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and then it was broken.,and then it was broken +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and then the : dog start/ed cry/ing.,and then the dog started crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and the bunny was : feel/ing really weird.,and the bunny was feeling really weird +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,once a bunny met the dog.,once a bunny met the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,they want/ed to have a picnic.,they wanted to have a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,but the bunny ate all the stuff : and had (a f) a tummyache.,but the bunny ate all the stuff and had a f a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,(but) and he fell down and hurt his tummy again.,but and he fell down and hurt his tummy again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,(and) and the dog ran and got : a doctor.,and and the dog ran and got a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,the doctor try/ed help/ing the [+_bch] [+/]^,the doctor tried helping the +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,www.,www +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,(um) (he tr) the doctor try/ed[!] help/ing.,um he tr the doctor tried helping +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,but it did not quite work.,but it did not quite work +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,but it did[!] work.,but it did work +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and the bunny had to go home with the doctor.,and the bunny had to go home with the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,once : a bunny met a dog with a wagon with a (red um) red balloon.,once a bunny met a dog with a wagon with a red um red balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,the bunny want/ed the red balloon.,the bunny wanted the red balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,but the dog did not want to give it to him.,but the dog did not want to give it to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,he try/ed screw/ing it off : and try/ed cut/ing it off.,he tried screwing it off and tried cutting it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,but it still (stuck : to the red) sticked|stick[EW:stuck] to the red wagon.,but it still stuck to the red sticked to the red wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and then it flew away because he got it.,and then it flew away because he got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and then the dog got really mad at the bunny.,and then the dog got really mad at the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,but the balloon man (with lot/s of balloon/s) with lot/s of red balloon/s (came) was there.,but the balloon man with lots of balloons with lots of red balloons came was there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,(so) so he ask/ed for one balloon.,so so he asked for one balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and it was five cent/s.,and it was five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,but he did not have any.,but he did not have any +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,so : they got really sad and wait/ed until (ah) their mommy came.,so they got really sad and waited until ah their mommy came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and then their mommy : came.,and then their mommy came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,(and asked) and then they ask/ed him for (ten cent/s) [~_or] five cent/s.,and asked and then they asked him for ten cents five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,(and so) (and they) and the bunny told the whole story.,and so and they and the bunny told the whole story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,(and) (and they) and she help/ed them : and gave them : some cents[EW:money].,and and they and she helped them and gave them some cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,www.,www +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and then they both got a balloon : from : their mommy.,and then they both got a balloon from their mommy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/653.slt,and they said thank you.,and they said thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,one day (there was a pe sh) a girl was bounce/ing a ball by the pool.,one day there was a pe sh a girl was bouncing a ball by the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and she was have/ing lot/s of fun with it.,and she was having lots of fun with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,her friend came by and : look/ed like he like/ed it too.,her friend came by and looked like he liked it too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,then it land/ed in the pool right beside them.,then it landed in the pool right beside them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,the (um) boy that (met her) met the girl with the ball : went into pool and swam and got the ball : gave it back to the girl.,the um boy that met her met the girl with the ball went into pool and swam and got the ball gave it back to the girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and the girl was very happy that : he did.,and the girl was very happy that he did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and then : (they :) she was very thankful and : said : would you like to : play with the ball too ?,and then they she was very thankful and said would you like to play with the ball too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,there was once (two boys) one girl and one : boy that were in swim suit/s.,there was once two boys one girl and one boy that were in swim suits +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and they were go/ing : swim/ing.,and they were going swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,then the girl thought it would be a good idea to go off the diving board.,then the girl thought it would be a good idea to go off the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and she start/ed run/ing to it.,and she started running to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,she slip/ed : when she was run/ing.,she slipped when she was running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,she hurt her knee.,she hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,the other boy had to go get : the lifeguard to help her.,the other boy had to go get the lifeguard to help her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,he put a bandage on it.,he put a bandage on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and it help/ed.,and it helped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,then the : lifeguard told her do not run in the swimming pool.,then the lifeguard told her do not run in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,it is slippery.,it is slippery +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and you can fall.,and you can fall +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,: and show/ed her the no run/ing sign.,and showed her the no running sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,one day there was a boy and girl.,one day there was a boy and girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and they were both by the pool in swim suit/s.,and they were both by the pool in swim suits +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,(w) one of them had an airplane that he was play/ing with.,w one of them had an airplane that he was playing with +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,he was have/ing lot/s of fun with it.,he was having lots of fun with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and the girl thought it look/ed fun too.,and the girl thought it looked fun too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,she grab/ed it away from him and start/ed play/ing with it.,she grabbed it away from him and started playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,it land/ed in the pool by accident.,it landed in the pool by accident +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,the boy was really mad at the girl.,the boy was really mad at the girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,(then the life) then they call/ed the lifeguard over.,then the life then they called the lifeguard over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,they told him what happen/ed.,they told him what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and (he) he thought he might be able to get it out.,and he he thought he might be able to get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,he reach/ed.,he reached +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,but he could not get it.,but he could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,the lifeguard thought it was impossible to get.,the lifeguard thought it was impossible to get +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,then a lady with a net came by.,then a lady with a net came by +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,(she) they told her what happen/ed.,she they told her what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and she fish/ed it out of the pool with her net (: gave it) and gave it back to the boy.,and she fished it out of the pool with her net gave it and gave it back to the boy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,the boy love/ed his plane so much.,the boy loved his plane so much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and he thank/ed the woman.,and he thanked the woman +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,there was[EW:were] two boy/s one day.,there was two boys one day +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,(they) one of them thought to build a sandcastle in the sandbox.,they one of them thought to build a sandcastle in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,so he did.,so he did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,the other one fill/ed a pail with the sand just as : the other boy was finish/ed.,the other one filled a pail with the sand just as the other boy was finished +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,but then he pour/ed it (o) all over the boy/z sandcastle.,but then he poured it o all over the boy's sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,(the) he was not : too happy about it.,the he was not too happy about it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,but : he could (um) : understand it I guess.,but he could um understand it I guess +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,but the other boy start/ed to cry (because).,but the other boy started to cry because +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and then the other boy knew that he had done something wrong after that.,and then the other boy knew that he had done something wrong after that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,one day two boy/s were go/ing on a picnic.,one day two boys were going on a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,they both thought it was go/ing to be the best idea of the day.,they both thought it was going to be the best idea of the day +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,one pack/ed : so big of a lunch.,one packed so big of a lunch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,he thought he was really hungry.,he thought he was really hungry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,the other one only pack/ed a little lunch.,the other one only packed a little lunch +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,but the one that pack/ed the big lunch : had (um) : a very big stomachache after he ate all he had.,but the one that packed the big lunch had um a very big stomachache after he ate all he had +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,then the one with the littler lunch : thought that he was (si) really sick.,then the one with the littler lunch thought that he was si really sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and he was.,and he was +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,so she (call/ed) went for help (to um) on the side of the road where a woman was walk/ing.,so she called went for help to um on the side of the road where a woman was walking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and she took her because she was a doctor.,and she took her because she was a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and : (he went) (she went) the doctor went to : help the boy that ate too much.,and he went she went the doctor went to help the boy that ate too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and she told him do not eat too much any more : and took him away so (he) she could fix him up a little better.,and she told him do not eat too much any more and took him away so he she could fix him up a little better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,one day a boy went with a wagon with a balloon tie/ed to the : wheel of it.,one day a boy went with a wagon with a balloon tied to the wheel of it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and he met his best friend on the path.,and he met his best friend on the path +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and : his friend thought it was a really neat balloon : and reach/ed for it.,and his friend thought it was a really neat balloon and reached for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,he trie/ed untie/ing it.,he tried untying it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and the boy was surprise/ed that he did.,and the boy was surprised that he did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,then the boy that try/ed to untie it let go of the other boy/z balloon.,then the boy that tried to untie it let go of the other boy's balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and it flew up into the air.,and it flew up into the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,the boy that the balloon was : was very angry at his friend [EU].,the boy that the balloon was was very angry at his friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,then : the boy that : let it up in the air saw : a balloon man hold/ing : lot/s of : more balloon/s.,then the boy that let it up in the air saw a balloon man holding lots of more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,he ask/ed for one from the man.,he asked for one from the man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,he check/ed in his pocket because they were five cent/s.,he checked in his pocket because they were five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and he did not have any money.,and he did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,so they both look/ed very sad because : they both knew that : they had no five cent/s and that the balloon was gone.,so they both looked very sad because they both knew that they had no five cents and that the balloon was gone +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,then they ask/ed : (um) a doctor on the side of the road.,then they asked um a doctor on the side of the road +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,(sh um) : she look/ed surprise/ed when the boy ask/ed her.,sh um she looked surprised when the boy asked her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,but the lady gave (h) him five cent/s (and the boys got) ten cent/s.,but the lady gave h him five cents and the boys got ten cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and both boy/s got balloon/s.,and both boys got balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/964.slt,and they were (very) very thankful to the woman on the side of the road.,and they were very very thankful to the woman on the side of the road +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,once there was a little elephant : who was practice/ing : to (um) blow up (three[-:]) : three[-:] nut/s : at a time.,once there was a little elephant who was practicing to um blow up three three nuts at a time +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,: but then : (the) one sunk.,but then the one sunk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,and then : she had a big bump in her nose.,and then she had a big bump in her nose +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,[~_high_pitched_voice] : oh no what are you do/ing?,oh no what are you doing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,[~_high_pitched_voice] I can not eat that.,I can not eat that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,[~_high_pitched_voice] there is poison in the water!,there is poison in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,oh I am so wet.,oh I am so wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,thank/s for the ball anyway/s.,thanks for the ball anyways +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,[~_low_pitched_voice] : I will have it now.,I will have it now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,[~_low_pitched_voice] let us play pass : over there[-:].,let us play pass over there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,one day : (eleph) little elephant : and little giraffe said look.,one day eleph little elephant and little giraffe said look +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,there is water!,there is water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,there is a diving : board!,there is a diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,let us go jump off of it [~_high_voice]!,let us go jump off of it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,: I will go first [~_low_voice].,I will go first +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,hold my towel [~_low_voice].,hold my towel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,: aaaah : I am trip/ing [~_high_voice].,aaaah I am tripping +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,I will help you [~_high_voice].,I will help you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,splash.,splash +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,(with some) (wit) the towel went in the water.,with some wit the towel went in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,oh no look what you did [~_high_voice]!,oh no look what you did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,(and look what you) and look what I (d) : have [~_high__voice]!,and look what you and look what I d have +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,I have : an owie [~_high_voice].,I have an owie +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,and my towel is in the water [~_high_voice].,and my towel is in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,how will that dry me off [~_high_voice]?,how will that dry me off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,: owie [~_whiny_voice].,owie +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,then (um : his) her dad came along.,then um his her dad came along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,and little giraffe told : little elephant/z dad all about it.,and little giraffe told little elephant's dad all about it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,and little elephant went home.,and little elephant went home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,: now let us put a little[-:] bandaid on it.,now let us put a little bandaid on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,: now just sit here and rest.,now just sit here and rest +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,: now do not run next time.,now do not run next time +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,then she said : today my owie is all better.,then she said today my owie is all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,: how about we play : pass with your nose?,how about we play pass with your nose +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,you can be the bat.,you can be the bat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,and I will[-:] be the ball[-:].,and I will be the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,well I will throw the ball.,well I will throw the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,: oops : I think the ball sunk.,oops I think the ball sunk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,: what did you : do to my ball ?,what did you do to my ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,: [~_deep_voice] (you) I told you not to play by the swimming pool unless you are in[!] the swimming pool.,you I told you not to play by the swimming pool unless you are in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,[~_high_pitched_voice] I am sorry daddy.,I am sorry daddy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,[~_high_pitched_voice] we just were : play/ing pass over there.,we just were playing pass over there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,[~_high_pitched_voice] but it hit so far.,but it hit so far +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,": [~_makes_sound_of_exasperation,_speaks_in_deep_voice] I guess[!] I can get it.",I guess I can get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,: well : I think that your ball : is[EW:has] drown/ed.,well I think that your ball is drowned +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,[~_high_pitched_voice] aah.,aah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,: then her mother came along and said here is something you could use.,then her mother came along and said here is something you could use +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,: and she fish/ed it out.,and she fished it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,: and then : she gave it back.,and then she gave it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,: then he hug/ed it so much.,then he hugged it so much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,and he hug/ed : her.,and he hugged her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,and he hug/ed (um) : little elephant too to have her cell phone and call her mother and bye.,and he hugged um little elephant too to have her cell phone and call her mother and bye +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,once there was a little : baby kangaroo.,once there was a little baby kangaroo +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,(and he was) : and she was (um) build/ing a sandcastle of a castle.,and he was and she was um building a sandcastle of a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,: and then (a ll) a bunny came along and said can I help?,and then a ll a bunny came along and said can I help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,sure!,sure +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,what are you do/ing?,what are you doing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,you are pour/ing all this sand over the sandcastle?,you are pouring all this sand over the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,that is not help/ing.,that is not helping +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,that is wreck/ing it.,that is wrecking it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,: ah : I am sorry [~_very_high_voice].,ah I am sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,it is gone [~_very_high_voice].,it is gone +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,: well goodbye.,well goodbye +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,once there was[EW:were]: two bunny/s.,once there was two bunnies +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,and (they were) they were not just[!] bunny/s.,and they were they were not just bunnies +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,(they were) they do not just hop.,they were they do not just hop +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,they were the kind that walk and have picnic/s.,they were the kind that walk and have picnics +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,and it was the bunny/s/z picnic today.,and it was the bunnies picnic today +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,I think I will take all this food.,I think I will take all this food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,and you can just have the basket.,and you can just have the basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,hey where is all the food go?,hey where is all the food go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,I am suppose/ed to have some too.,I am supposed to have some too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,sorry : I ate it all.,sorry I ate it all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,that is why I am call/ed Munchy.,that is why I am called Munchy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,then : came rabbit/z : mother.,then came rabbit's mother +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,and then : rabbit ran over to rabbit/z mother.,and then rabbit ran over to rabbit's mother +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,rabbit/z mother rabbit/z mother rabbit ate all of my food that I brought for the picnic.,rabbit's mother rabbit's mother rabbit ate all of my food that I brought for the picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,and he did not save anything but the basket.,and he did not save anything but the basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,well let us go see.,well let us go see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,come on come on come on.,come on come on come on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,hurry up hurry up.,hurry up hurry up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,now do not you do that again.,now do not you do that again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,let us go home.,let us go home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,ha that is over.,ha that is over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,I guess you (le) leaved|leave[EW:left] some crumb/s for me.,I guess you le leaved some crumbs for me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,once there was (um) a little kangaroo : with a wagon and a balloon tie/ed on the wheel.,once there was um a little kangaroo with a wagon and a balloon tied on the wheel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,and then her friend came along.,and then her friend came along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,hey do you think you could hop in?,hey do you think you could hop in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,(and I will) and I will (pu) pull you.,and I will and I will pu pull you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,sure!,sure +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,oh (maybe I will) (I will) maybe we will just walk.,oh maybe I will I will maybe we will just walk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,and we will both push it.,and we will both push it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,ah what are you do/ing to the balloon?,ah what are you doing to the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,why are you screw/ing it off?,why are you screwing it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,that is not how you do it.,that is not how you do it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,you keep it on.,you keep it on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,ah[-:] hey look what you did now!,ah hey look what you did now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,you made it (fall) fly away.,you made it fall fly away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,[~_growling_sound] why did you make my balloon fly away?,why did you make my balloon fly away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,: hey look.,hey look +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,there is the balloon man.,there is the balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,let us go get one.,let us go get one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,so : they pick/ed : two.,so they picked two +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,but the judge said only one.,but the judge said only one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,one dollar.,one dollar +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,I am sorry.,I am sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,but I can not give (all) (all) all these balloon/s to you.,but I can not give all all all these balloons to you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,you will (fly) float away.,you will fly float away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,you are too little to hold them.,you are too little to hold them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,you will float away.,you will float away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,but not me because I am big[-:][!].,but not me because I am big +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,(maybe that) maybe I said the wrong thing.,maybe that maybe I said the wrong thing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,mommy*5 : you know what?,mommy mommy mommy mommy mommy you know what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,the balloon man will not let me have any balloon/s at all.,the balloon man will not let me have any balloons at all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,: oh my*3!,oh my my my +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,and you know what?,and you know what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,I pop/ed her balloon.,I popped her balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,two balloon/s!,two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,two penny/s please.,two pence please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,there you go you guy/s.,there you go you guys +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/551.slt,but do not put your teeth on them bunny.,but do not put your teeth on them bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,they are : bounce/ing a ball : on the sidewalk.,they are bouncing a ball on the sidewalk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,: (and) : and the ball fall|fall[EW:fell] in the water.,and and the ball fall in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,(and the mo) (and the moose) : (then) then the moose cross/ed the lake to get it.,and the mo and the moose then then the moose crossed the lake to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,(and) (and um) and (um) moose get|get[EW:got] it.,and and um and um moose get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,(and a) and it feel|feel[EW:felt] happy.,and a and it feel happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and then everyone (be s) be[EW:is] shy.,and then everyone be s be shy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,: they are : stand/ing on the (sw um) [~_I_mean] the swimming pool.,they are standing on the sw um the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,[~_sneezes_loudly] and the elephant went and (jump on the um) : (in the) jump[EW:jumped] in the swimming pool.,and the elephant went and jump on the um in the jump in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,(then[-:]) then the elephant : climb|climb[EW:climbed] up here and dance|dance[EW:danced].,then then the elephant climb up here and dance +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,: (then) (then him fa) then him[EW:he] fall|fall[EW:fell] and hurt himself.,then then him fa then him fall and hurt himself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,(and then) and the moose : come|come[EW:came] back (and) with the elephant.,and then and the moose come back and with the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and the elephant : (um) fix|fix[EW:fixed] [~?_pronounced_fit] her knee.,and the elephant um fix her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,"can you say that again, the elephant [+..].",can you say that again the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,fit her knee [+_bch].,fit her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and then her[EW:she] can not swim.,and then her can not swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,: and no run/ing across : the swimming pool.,and no running across the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and (they) : they feel happy.,and they they feel happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and (then) (then) then the (um) happy couple tee[EW:take] [~__maybe_means_take] off.,and then then then the um happy couple tee off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,(then) and then the elephant (um) catch|catch[EW:caught] it.,then and then the elephant um catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,(and the) and the elephant : plop|plop[EW:plopped] him in the water.,and the and the elephant plop him in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,then (it sinked|sink[EW:sank]) (th) : the (um) airplane sinked|sink[EW:sank] into the water.,then it sinked th the um airplane sinked into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and then the diver : saw.,and then the diver saw +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,(and) : (and then) : [+_bch].,and and then +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,do you want me to turn?,do you want me to turn +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and then they feel mad.,and then they feel mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and the diver (um) reach|reach[EW:reached] : up to see.,and the diver um reach up to see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and then he can not do it.,and then he can not do it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,(and then) (and then) (and) and then the elephant : got (um) a fish thing to catch fish.,and then and then and and then the elephant got um a fish thing to catch fish +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and (then) then he pull|pull[EW:pulled] up [EU].,and then then he pull up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,(and the a) and the : airplane : lift|lift[EW:lifted] up.,and the a and the airplane lift up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,(and then) and (then) then the elephant fix|fix[EW:fixed] [~?_fit] him back [EU].,and then and then then the elephant fix him back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,then him[EW:he] feel|feel[EW:feels] happy.,then him feel happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,they are make/ing a sandcastle.,they are making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and the baby (um) : mussed her castle [EU].,and the baby um mussed her castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,(and then) and then him[EW:he] : put more sand on it.,and then and then him put more sand on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and then : the castle fall|fall[EW:fell] down.,and then the castle fall down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and he feel|feel[EW:felt] sad.,and he feel sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,they are : walk/ing in the : forest.,they are walking in the forest +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and they make/ing (um) : a picnic [EU].,and they making um a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and the bunny feel|feel[EW:felt] : sick.,and the bunny feel sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and then : he feel|feel[EW:felt] really really dizzy.,and then he feel really really dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and then the doctor : run|run[EW:ran] : to him.,and then the doctor run to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,help help!,help help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,everybody : (f um) : full [EU].,everybody f um full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,(and the) : and the doctor : fix|fix[EW:fixed] him.,and the and the doctor fix him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and he feel|feel[EW:felt] better.,and he feel better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,they are pull/ing (a) : a wagon.,they are pulling a a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and the bunny : (he wa) he want|want[EW:wanted] some help.,and the bunny he wa he want some help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,look look [~_said_twice_for_effect] a balloon.,look look a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,well take it.,well take it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and (him) (him) him[EW:he] untie|untie[EW:untied] it.,and him him him untie it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,(and) : and the bunny : tie[EW:untied] him [EU].,and and the bunny tie him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and the balloon take|take[EW:took] off.,and the balloon take off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and the dog feel|feel[EW:felt] mad [~_makes_growling_sound].,and the dog feel mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and the clown : got[EW:has] a lot of balloon/s.,and the clown got a lot of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,can I have one please?,can I have one please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and he did [EU].,and he did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,[<~?_I_got]it cost[>~?_I_got] five dollar/s.,it cost five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,please please can we have one for free?,please please can we have one for free +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,nope.,nope +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,and a train come|come[EW:came] to : him [EU].,and a train come to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,can you buy me one of these : please?,can you buy me one of these please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,: then he did.,then he did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/829.slt,then he feel|feel[EW:felt] happy.,then he feel happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,(Hmm) I do not know this story [+_bch].,Hmm I do not know this story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,well tell me what is happen/ing.,well tell me what is happening +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the elephant is grab/ing a ball.,the elephant is grabbing a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the : elephant threw[-:] the ball in the pool.,the elephant threw the ball in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the giraffe went in[!] to get the ball.,the giraffe went in to get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,(the) the giraffe got it.,the the giraffe got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,and : he swam back.,and he swam back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,and the elephant got it.,and the elephant got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the giraffe is all wet now.,the giraffe is all wet now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,The giraffe is all dry now.,The giraffe is all dry now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the elephant is happy.,the elephant is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the elephant is go/ing to the diving board.,the elephant is going to the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the elephant is go/ing to slip.,the elephant is going to slip +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the elephant hurt her knee.,the elephant hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the coach came.,the coach came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the coach put on a bandaid.,the coach put on a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,she *is feel/ing better now [EU].,she feeling better now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the coach is mad at her now.,the coach is mad at her now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,The giraffe has an airplane.,The giraffe has an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the giraffe is go/ing to [~_gonna] : fly it.,the giraffe is going to fly it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the elephant got his : airplane.,the elephant got his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the elephant threw it in the water.,the elephant threw it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,now : the giraffe is mad at her.,now the giraffe is mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,(now : the coa) now the (el) elephant is sad.,now the coa now the el elephant is sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the coach is : a little[!] mad.,the coach is a little mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,and : the : elephant is apologize/ing.,and the elephant is apologizing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the coach is try/ing to get : the airplane.,the coach is trying to get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the giraffe is cry/ing now.,the giraffe is crying now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,(um) : what is that girl [+_bch]?,um what is that girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,what do you think she is?,what do you think she is +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,(Hm) : I do not know [+_bch].,Hm I do not know +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,well you tell me what is happen/ing.,well you tell me what is happening +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,(hm) the airplane is sink/ing now.,hm the airplane is sinking now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the girl elephant (nt) is try/ing to get it out now.,the girl elephant nt is trying to get it out now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the girl elephant got it out now.,the girl elephant got it out now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,she (ga) gave it back to the giraffe now.,she ga gave it back to the giraffe now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the giraffe is happy.,the giraffe is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,he got his : airplane back.,he got his airplane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the dog : is in the sandbox.,the dog is in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the rabbit is not in the sandbox.,the rabbit is not in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the rabbit is dig/ing : in the bucket.,the rabbit is digging in the bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the rabbit pour/ed the sand : on the sandcastle.,the rabbit poured the sand on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the : rabbit is : kind of (s) mad now.,the rabbit is kind of s mad now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,and the dog is happy.,and the dog is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the dog is sad now.,the dog is sad now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,(he is cry/ing) she is cry/ing.,he is crying she is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,The dog and the rabbit are go/ing on a picnic in the wood/s.,The dog and the rabbit are going on a picnic in the woods +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the : rabbit : like/3s the carrot.,the rabbit likes the carrot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the rabbit is full now.,the rabbit is full now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the dog is : not[!] full.,the dog is not full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,(he is) she is still hungry.,he is she is still hungry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,her : mom came : into the wood/s.,her mom came into the woods +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,(th) the dog is drag/ing her mom : to the picnic blanket.,th the dog is dragging her mom to the picnic blanket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,[~_no] it is the doctor!,it is the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,silly me [+_bch].,silly me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the doctor look/ed at : the rabbit.,the doctor looked at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,(now the doctor is feel/ing better) now the : bunny is feel/ing better [~_not_the_doctor].,now the doctor is feeling better now the bunny is feeling better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the dog has a balloon.,the dog has a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the rabbit has nothing.,the rabbit has nothing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the rabbit : like/3s the balloon.,the rabbit likes the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,he want/3s it.,he wants it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the rabbit is take/ing it off : the wagon.,the rabbit is taking it off the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the balloon went up into the sky.,the balloon went up into the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the balloon is gone now.,the balloon is gone now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the dog is mad at the rabbit now.,the dog is mad at the rabbit now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the rabbit : is : not : mad because there is[EW:are] more balloon/s.,the rabbit is not mad because there is more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the rabbit want/3s a balloon.,the rabbit wants a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,here this : balloon : belong/3s to you.,here this balloon belongs to you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,now the dog want/3s a balloon.,now the dog wants a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,(they) : but rabbit did not get a balloon.,they but rabbit did not get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,rabbit ask/ed his mom : can I please have a balloon mom?,rabbit asked his mom can I please have a balloon mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the (r) mommy rabbit gave the money to the : store man.,the r mommy rabbit gave the money to the store man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,now they both got[EW:have] a balloon.,now they both got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/641.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,The piggy (and) and the brother and the sister was[EW:were] try/ing to play : a circus.,The piggy and and the brother and the sister was trying to play a circus +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,And they got mad.,And they got mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,I went to a circus [+_bch].,I went to a circus +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,Did you ?,Did you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,"You can tell me after the story all about it, okay ?",You can tell me after the story all about it okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,okay [+_bch].,okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,And (then : they) then he just want/ed (to) : to do something funner [EU].,And then they then he just wanted to to do something funner +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,They went to : (a) a beach without the mommy.,They went to a a beach without the mommy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,And that is bad because the mommy died and all their family.,And that is bad because the mommy died and all their family +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,So they : have to do everything.,So they have to do everything +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,They had to.,They had to +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,And then : he : swimmed|swim[EW:swam] in the water to get his balloon.,And then he swimmed in the water to get his balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,And then he got (his) (his) her ball.,And then he got his his her ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,And she said thank you[!].,And she said thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,All done [+_bch].,All done +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,we read this one [+_bch].,we read this one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,Is it the same?,Is it the same +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,It will be different.,It will be different +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,You tell me what you see happen/ing.,You tell me what you see happening +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and then they had to do something else.,and then they had to do something else +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(her) (her purse) her purse drop/ed into (the) the lake.,her her purse her purse dropped into the the lake +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,it was way down on the bottom.,it was way down on the bottom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(And then they) and then they rush/ed into the water : and jump/ed right into the water.,And then they and then they rushed into the water and jumped right into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and then she bonk/ed her knee (on the) on the side wall.,and then she bonked her knee on the on the side wall +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and then she cry/ed for (her) her daddy.,and then she cried for her her daddy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and then her daddy come/3s along (and) and put[EW:puts] a bandaids[EW:bandaid] on it.,and then her daddy comes along and and put a bandaids on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(and then) and then that was pretty xx.,and then and then that was pretty +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,but (they had) she had to got[EW:go] to the hospital.,but they had she had to got to the hospital +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and then (she) (she) her daddy said no more play/ing at the park.,and then she she her daddy said no more playing at the park +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(They) her knee almost bump/ed [EU].,They her knee almost bumped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,but she got up.,but she got up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,"and she did not have a owee, only on her nose[?].",and she did not have a owee only on her nose +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and : the daddy did not come because : he was angry last time.,and the daddy did not come because he was angry last time +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(and then) : and then : she found the airplane that was : her little brother/z.,and then and then she found the airplane that was her little brother's +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,she took it out of his hand.,she took it out of his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,the brother said (look) look what you just did.,the brother said look look what you just did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,he was angry at his sister.,he was angry at his sister +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and then : it sinked|sink[EW:sunk] into the water.,and then it sinked into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,down below it comed [EU].,down below it comed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and then they could not get it because it was too deep.,and then they could not get it because it was too deep +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,the daddy could not get it because it was too deep too.,the daddy could not get it because it was too deep too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,Daddy try/ed to reach it.,Daddy tried to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,but : he could not.,but he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(the daddy : said : why) (why : does) (the) (the sist) the daddy said why did you do that sister?,the daddy said why why does the the sist the daddy said why did you do that sister +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(h) why did you do that to your little brother?,h why did you do that to your little brother +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and then (he[!] tried) she[!] try/ed to catch it with the net.,and then he tried she tried to catch it with the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and then she almost got it.,and then she almost got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,but : she did got[EW:get] it almost.,but she did got it almost +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,but : that is okay because : (one of : her other) one of his other sister/s comed|come[EW:came] and : got it.,but that is okay because one of her other one of his other sisters comed and got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and that was : the end of : their story [+_bch].,and that was the end of their story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and then : tomorrow she got it.,and then tomorrow she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,that was the end of the story [+_bch].,that was the end of the story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,they are play/ing in a sand box.,they are playing in a sand box +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(and) and (they) they are try/ing to make a castle.,and and they they are trying to make a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(and the) and they are try/ing to.,and the and they are trying to +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and they make one castle.,and they make one castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,but then the : castle broke down.,but then the castle broke down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(and they are) and they were mad at each other.,and they are and they were mad at each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(and) (the) and then the castle broke only one side.,and the and then the castle broke only one side +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and then (he) they got mad at each other again.,and then he they got mad at each other again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and then they made another castle.,and then they made another castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,end?,end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,That is the end [+_bch].,That is the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(uh) : they are walk/ing around to have a picnic.,uh they are walking around to have a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and they : got[EW:have] lot/s of stuff.,and they got lots of stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and they are eat/ing : (their) their lunch first.,and they are eating their their lunch first +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,the bunny had a stomachache.,the bunny had a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(He had a) : and then : they had to go home.,He had a and then they had to go home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,"and he had to rest, the bunny.",and he had to rest the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and then the mother come[EW:came] to : get them.,and then the mother come to get them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(and then the money) and then the kid pull/ed her shirt (an) [~_coughs] and said come here.,and then the money and then the kid pulled her shirt an and said come here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(and then : they) (this) and then the mother took : (his) (her t) his teeth[?].,and then they this and then the mother took his her t his teeth +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(And then) and then the mother brought him home.,And then and then the mother brought him home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,they are play/ing along with (their) their (brothers) sisters.,they are playing along with their their brothers sisters +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(And their) and their sister is push/ing the wagon around.,And their and their sister is pushing the wagon around +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,he was try/ing to catch up.,he was trying to catch up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and he want/ed to go in the wagon.,and he wanted to go in the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,but (it is too sm) he is too big.,but it is too sm he is too big +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and then (he) he found a balloon.,and then he he found a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and it almost blowed|blow[EW:blew] away off the : wagon.,and it almost blowed away off the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,that (s) xxx that.,that s x that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and then : (they) (he tie/ed off the) (he tie/ed off) he tie/ed the balloon off of the wagon.,and then they he tied off the he tied off he tied the balloon off of the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and (then : he) (he just) (then he he just) they were try/ing to catch the balloon.,and then he he just then he he just they were trying to catch the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,why did he do that I do not know.,why did he do that I do not know +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(and then the) and then the sister got mad.,and then the and then the sister got mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and then the guy broughts[EW:brought] more balloon/s for them : to put (on the) on the wagon.,and then the guy broughts more balloons for them to put on the on the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(and then : the guy) (and then the bunny) the bunny rabbit of : (the) : the brother was ask/ing if : he could have another balloon for the wagon.,and then the guy and then the bunny the bunny rabbit of the the brother was asking if he could have another balloon for the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and then : he said no.,and then he said no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,no for the wagon.,no for the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and he said probably tomorrow.,and he said probably tomorrow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and then : he did say tomorrow.,and then he did say tomorrow +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,he said yes.,he said yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(And then he) and then : the (bunny rabbit said) brother said : we want a balloon.,And then he and then the bunny rabbit said brother said we want a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,and he did not give us a balloon.,and he did not give us a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,the mother said probably tomorrow he will give you some.,the mother said probably tomorrow he will give you some +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(they give them) (they) he give[EW:gave] them two to each one.,they give them they he give them two to each one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/411.slt,(and then) and then they both got a balloon.,and then and then they both got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,There is a girl : (um) elephant go/3s swim/ing [EU].,There is a girl um elephant goes swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,the ball fall/3s into the water.,the ball falls into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,(the guy) the : horse swim/3s after it.,the guy the horse swims after it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,he pass/3s the ball up : to the girl elephant.,he passes the ball up to the girl elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,the : horse : is all wet!,the horse is all wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,The elephant and the horse are look/ing at the water.,The elephant and the horse are looking at the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,the girl : elephant start/3s to walk toward/s it.,the girl elephant starts to walk towards it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,she : run/3s away.,she runs away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,she (bou) fell down and hurts|hurt[EW:hurt] her knee.,she bou fell down and hurts her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,(ssh) (sh) : the horse and another[!] elephant came along.,ssh sh the horse and another elephant came along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,and they put a bandaid : on her knee.,and they put a bandaid on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,and : they help her : walk.,and they help her walk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then : she sit/3s on the bench.,then she sits on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,The girl is look/ing : at : the horse and the water.,The girl is looking at the horse and the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,the horse (is f) (f) is fly/ing a plane.,the horse is f f is flying a plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,the girl : take/3s it : and : start/3s fly/ing it.,the girl takes it and starts flying it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,and then it fall/3s into the water.,and then it falls into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,it sink/3s down to[EW:into] *the water [EU].,it sinks down to water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,and the horse get/3s mad.,and the horse gets mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,and then[!] it sink/3s deeper and deeper into the water.,and then it sinks deeper and deeper into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then she say/3s sorry : to the : elephant.,then she says sorry to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,(then they) then he jump/3s in and get/3s it.,then they then he jumps in and gets it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,and then : the horse : is cry/ing.,and then the horse is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then : a girl came along and had a net with her.,then a girl came along and had a net with her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,and : she holded|hold[EW:held] it by the water.,and she holded it by the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,she took[!] it out.,she took it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then : the horse was happy again.,then the horse was happy again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then he said thank you.,then he said thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,The rabbit is play/ing in the sandbox.,The rabbit is playing in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,and then a boy come/3s along.,and then a boy comes along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,they play together : and have fun.,they play together and have fun +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then the rabbit pour/3s sand all over her castle.,then the rabbit pours sand all over her castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then it break/3s.,then it breaks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,and he[!] say/3s sorry.,and he says sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then the girl start/3s cry/ing.,then the girl starts crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,The girl meet/3s a boy.,The girl meets a boy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,they are both go/ing to [~_gonna] have a picnic.,they are both going to have a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,they have a picnic together.,they have a picnic together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then : (when the) when they are both done eat/ing (th) (th) the boy bunny : gets : full.,then when the when they are both done eating th th the boy bunny gets full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then : he say/3s he has a stomachache.,then he says he has a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then a doctor come/3s along.,then a doctor comes along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then : the girl pull/3s him (t be) toward/s the boy bunny.,then the girl pulls him t be towards the boy bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then the doctor talk/3s to him.,then the doctor talks to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then he is all better.,then he is all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,(the) the girl come/3s (sa) along with her wagon with a balloon.,the the girl comes sa along with her wagon with a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,and (the) : the boy rabbit come/3s along.,and the the boy rabbit comes along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then[!] he say/3s I want that balloon.,then he says I want that balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then he hold/3s it.,then he holds it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then[!] he let/3s it go[!].,then he lets it go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,and (the g) they start run/ing after it.,and the g they start running after it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then the girl come/3s back.,then the girl comes back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,and then[!] : a guy came along with more balloon/s.,and then a guy came along with more balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then the boy say/3s can I have one of those balloon/s.,then the boy says can I have one of those balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,and *he let him have one.,and let him have one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,but he did not have no[EW:any] money.,but he did not have no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,so then the girl : was sad.,so then the girl was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then the boy rabbit : (um) walk/ed away.,then the boy rabbit um walked away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,so did the girl.,so did the girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,she ran.,she ran +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,(then : the doctor said) (and then) and then the boy rabbit told[!] the doctor that she was sad.,then the doctor said and then and then the boy rabbit told the doctor that she was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then the doctor pay/3s[!] for the balloon/s.,then the doctor pays for the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,then they both[!] have a balloon.,then they both have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/761.slt,and then they are happy.,and then they are happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,once there was an elephant (and a donk) and a giraffe.,once there was an elephant and a donk and a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,they had a : bubble.,they had a bubble +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and : then : she said can you watch over my bubble/s?,and then she said can you watch over my bubbles +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,but then the bubble hop/ed into the pool.,but then the bubble hopped into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and then the elephant was scare/ed of the balloon.,and then the elephant was scared of the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,she thought it might pop.,she thought it might pop +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and so then she said to the giraffe please can you go get my (bub) (bu) bubble?,and so then she said to the giraffe please can you go get my bub bu bubble +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,(then the : ver) then the giraffe went into the pool and start/ed swim/ing.,then the ver then the giraffe went into the pool and started swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,he got really tire/ed.,he got really tired +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and he did not think he could (sw) swim (that) that more.,and he did not think he could sw swim that that more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,but then he got : the (um) bubble : then hand/ed it to the elephant.,but then he got the um bubble then handed it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and (he) she was really proud.,and he she was really proud +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,then : she was really happy.,then she was really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and then (the) (the) the giraffe was really happy too.,and then the the the giraffe was really happy too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,once : a giraffe and a[EW:an] elephant was[EW:were] at a pool.,once a giraffe and a elephant was at a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and she said come on.,and she said come on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,let us race (to the) (the) to the diving board.,let us race to the the to the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,she slip/ed : and fell.,she slipped and fell +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,she hurt her knee.,she hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and then the guard came.,and then the guard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,(sh) he got a bandaid for her.,sh he got a bandaid for her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and then (she) (she p) (sh) he put her on the bench.,and then she she p sh he put her on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and she could not swim in the pool any more.,and she could not swim in the pool any more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and then the : (um) lifeguard : said : should not you look at the sign before you start run/ing?,and then the um lifeguard said should not you look at the sign before you start running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,once there was a giraffe and a[EW:an] elephant.,once there was a giraffe and a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and they : (w) was[EW:were] at the pool.,and they w was at the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and the giraffe had his favorite toy plane.,and the giraffe had his favorite toy plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,the giraffe (f) (f) flied|fly[EW:flew] it.,the giraffe f f flied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and the (um) elephant wish/ed that she could fly it too.,and the um elephant wished that she could fly it too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and so she ask/ed if she could : (um) try and fly the plane too.,and so she asked if she could um try and fly the plane too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,but then (she) she took it : and threw it off.,but then she she took it and threw it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and she did not know it would fall in the pool.,and she did not know it would fall in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and it fell in the pool.,and it fell in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and then : she (was) felt really bad.,and then she was felt really bad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and then the giraffe was really really angry.,and then the giraffe was really really angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and then the lifeguard came.,and then the lifeguard came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,(and then they said) but : then the elephant said : (I) I just want/ed to try fly/ing the plane.,and then they said but then the elephant said I I just wanted to try flying the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,but : then : it accidentally went in the pool.,but then it accidentally went in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and then my friend got angry at me.,and then my friend got angry at me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and the lifeguard said well do you know what would be a good idea?,and the lifeguard said well do you know what would be a good idea +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,if you could maybe scoop it up with a net.,if you could maybe scoop it up with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,then the lifeguard try/ed to reach for it.,then the lifeguard tried to reach for it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,but : (she could not) he could not because it was too far away.,but she could not he could not because it was too far away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,then she felt really bad.,then she felt really bad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,then : the : lady had (a um) (a catch) a net.,then the lady had a um a catch a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and so she try/ed to catch it.,and so she tried to catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and it was really heavy.,and it was really heavy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,but she got it : and gave it to him.,but she got it and gave it to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and then : (she was) the giraffe was really happy.,and then she was the giraffe was really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,there was a little : (um) : doggy who is make/ing a sandcastle.,there was a little um doggy who is making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and then (th) (the) the bunny dig/3s in : the bucket.,and then th the the bunny digs in the bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and then he start/ed pour/ing on the little : doggy/z sandcastle.,and then he started pouring on the little doggy's sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and the doggy felt really sad.,and the doggy felt really sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and then the bunny saw what he (s) has done to his friend/z sandcastle.,and then the bunny saw what he s has done to his friend's sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,he felt really bad.,he felt really bad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and then he try/ed to keep it (um) that he was sorry.,and then he tried to keep it um that he was sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,but he did not really mean it.,but he did not really mean it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,once a doggy and a bunny was[EW:were] go/ing on a picnic.,once a doggy and a bunny was going on a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,bunny was really hungry.,bunny was really hungry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,so he ate all the food.,so he ate all the food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and he got a stomachache.,and he got a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,then : puppy saw that he look/ed pretty sick.,then puppy saw that he looked pretty sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,then he[?] call/ed the : doctor.,then he called the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and the puppy said doctor doctor come quick.,and the puppy said doctor doctor come quick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,(co) and the doctor came quick.,co and the doctor came quick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and he saw that he had a really bad stomachache.,and he saw that he had a really bad stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and then he said you know what?,and then he said you know what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,you should have no more food for quite awhile.,you should have no more food for quite awhile +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and then took him to the doctor.,and then took him to the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and the puppy felt good that (s um) he took care of the bunny.,and the puppy felt good that s um he took care of the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,(once upon uh) once : (um) a little doggy and a bunny : had a balloon and a wagon.,once upon uh once um a little doggy and a bunny had a balloon and a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,(the dog uh) the balloon was the dog/z balloon.,the dog uh the balloon was the dog's balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and (um) rabbit (ll) like/ed to get in a lot of trouble.,and um rabbit ll liked to get in a lot of trouble +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,so : he decide/ed he want/ed the balloon too.,so he decided he wanted the balloon too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and so (th) then : (they) he start/ed to reach out for it : and untie/ed the balloon.,and so th then they he started to reach out for it and untied the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and it went away.,and it went away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and then the doggy was really really mad at him.,and then the doggy was really really mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,then they saw another balloon : person.,then they saw another balloon person +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,can I have one of your balloon/s please said the bunny.,can I have one of your balloons please said the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,you have to have some money.,you have to have some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,but I do not have any money said the rabbit.,but I do not have any money said the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,that is the rule/s (of) (of the um) of the rabbit/z : balloon (um) money maker rule/s.,that is the rules of of the um of the rabbit's balloon um money maker rules +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,then the doctor (said) : came (by) pass/ing by.,then the doctor said came by passing by +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and then they race/ed to the doctor.,and then they raced to the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,that : man that is sell/ing balloon/s will not give me a balloon.,that man that is selling balloons will not give me a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and I have no money.,and I have no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,well that is the rule/s.,well that is the rules +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,you have[!] to have money.,you have to have money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,well : I will pay for the money[EW:balloons].,well I will pay for the money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,so (the : man got) (gave him two quar) the doctor gave two quarter/s.,so the man got gave him two quar the doctor gave two quarters +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and (the) they each got a balloon.,and the they each got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,then they each[!] had a balloon.,then they each had a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/571.slt,and they were very happy with them.,and they were very happy with them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,There once was a boy and a girl.,There once was a boy and a girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and the girl is bounce/ing her favoritest[EW:favorite] ball.,and the girl is bouncing her favoritest ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,she drop/ed it in the water.,she dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,she did not want to go in.,she did not want to go in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,so something happen/ed.,so something happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,so the : boy swam to the ball and got it for her.,so the boy swam to the ball and got it for her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and she was so happy : that (sh) she did not go by the pool no[EW:any] more and bouncing[EW:bounce] it.,and she was so happy that sh she did not go by the pool no more and bouncing it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,(and) : and she smile/ed at the boy and said thank you for get/ing my lovely ball.,and and she smiled at the boy and said thank you for getting my lovely ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,(um) there once was a boy and a girl again.,um there once was a boy and a girl again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and : they were go/ing : to jump into the pool.,and they were going to jump into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,So they both ran to the jumper.,So they both ran to the jumper +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and (they would have) they would have seen the sign that said no (ru) run/ing.,and they would have they would have seen the sign that said no ru running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,but they did not.,but they did not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and she scrape/ed her knee.,and she scraped her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and he came run/ing after.,and he came running after +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and then the manager he came : and saw her : (on the) on the floor.,and then the manager he came and saw her on the on the floor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and he took a bandaid and put it on her : knee.,and he took a bandaid and put it on her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and then (he s) he said no more run/ing.,and then he s he said no more running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,you can hurt yourself again.,you can hurt yourself again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,because there is such a sign say/ing no run/ing.,because there is such a sign saying no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,so you should listen to the sign/s.,so you should listen to the signs +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,or else you would[EW:could] hurt yourself.,or else you would hurt yourself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,There once was a boy and a girl.,There once was a boy and a girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,(with a) and the boy had an airplane : which he want/ed to play : with.,with a and the boy had an airplane which he wanted to play with +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,so he play/ed with it.,so he played with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and then : she[!] : said ooh[!].,and then she said ooh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and then[!] he gaved|give[EW:gave] it to her.,and then he gaved it to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,she play/ed with it.,she played with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and he was not that happy.,and he was not that happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,she threw it.,she threw it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and : it land/ed in the : pool.,and it landed in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and he was very very mad : at her.,and he was very very mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and he went you drop/ed (my) (my favorite) favoritest[EW:favorite] toy.,and he went you dropped my my favorite favoritest toy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and I am angry[!] at you.,and I am angry at you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,so (the) : the manager came again : saw the two fight/ing.,so the the manager came again saw the two fighting +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and he[!] said what is (m) the problem?,and he said what is m the problem +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,(and he) and then the boy[!] said : she drop/ed my airplane in the water.,and he and then the boy said she dropped my airplane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and I can not get it.,and I can not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and she explain/ed that it was an accident.,and she explained that it was an accident +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and he is like I[!] can get that.,and he is like I can get that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and he try/ed.,and he tried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and he try/ed.,and he tried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,but he could not.,but he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,he reach/ed it as far as he could.,he reached it as far as he could +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,but he was about to fall in.,but he was about to fall in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,then (he cry/ed) the boy cry/ed to bit/s [EU].,then he cried the boy cried to bits +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,Then what?,Then what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,Then the little boy cry/ed to bit/s [+_bch] [EU].,Then the little boy cried to bits +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,then the girl[!] manager came.,then the girl manager came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and she ask/ed what was the problem [~_?] [EU].,and she asked what was the problem +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,she had a net.,she had a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,so she could get it.,so she could get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,she reach/ed as far as she can with it [EU].,she reached as far as she can with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and she got it : in the net.,and she got it in the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and (he) she[!] said never play around with toy/s : (wu) at the side of the : pool.,and he she said never play around with toys wu at the side of the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,or else the toy/s will get stuck again.,or else the toys will get stuck again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and (he : would not) he would not play with his toy (at) at the side of the pool any more.,and he would not he would not play with his toy at at the side of the pool any more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,so (they both learnt a p) (ay) they both learn/ed something for (um) drop/ing toy/s into the water : and get/ing hurt [EU].,so they both learnt a p ay they both learned something for um dropping toys into the water and getting hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,there once was a boy and a girl.,there once was a boy and a girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,they were make/ing a (sandcastle) (sa) sandcastle in the sand.,they were making a sandcastle sa sandcastle in the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,so they both help/ed.,so they both helped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and[-:][!] something bad happen/ed.,and something bad happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,that the boy dump/ed all[!] the sand on top.,that the boy dumped all the sand on top +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and something happen/ed again.,and something happened again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,the (s) (the sand wa) the sandcastle only had one thing stick/ing up.,the s the sand wa the sandcastle only had one thing sticking up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and : the rest of the sand was on top of everything else.,and the rest of the sand was on top of everything else +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and he put it back up.,and he put it back up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and she was just[!] wait/ing and wait/ing.,and she was just waiting and waiting +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,there was a boy and a girl again.,there was a boy and a girl again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and they were go/ing to have a picnic.,and they were going to have a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,so they set off to play : someplace.,so they set off to play someplace +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and he ate lot/s and lot/s of stuff.,and he ate lots and lots of stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and then[!] something terrible[!] happen/ed to him.,and then something terrible happened to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,he got stuff/ed : dizzy : and he need|need[EW:needed] a doctor.,he got stuffed dizzy and he need a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,he went wibbly[c] wobbly.,he went wibbly wobbly +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and his stomach was growl/ing.,and his stomach was growling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and his stomach was really big too.,and his stomach was really big too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,so she got a doctor.,so she got a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and then she pull/ed (him) her all of the way to him.,and then she pulled him her all of the way to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and she said doctor doctor I need you really badly.,and she said doctor doctor I need you really badly +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,there is someone who need/3s your help.,there is someone who needs your help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,so she said : say ah : and never knew it again when she was done [EU].,so she said say ah and never knew it again when she was done +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,so she brought him to : the nurse : at the nurse/z place : so : he can lay down and (ha) have a rest.,so she brought him to the nurse at the nurse's place so he can lay down and ha have a rest +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,there once was a boy and a girl again.,there once was a boy and a girl again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,(who had a balloon) the girl had a balloon.,who had a balloon the girl had a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,(and : sh) and the boy said can I see your lovely balloon?,and sh and the boy said can I see your lovely balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and he try/ed to get the balloon.,and he tried to get the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,but : he untie/ed it.,but he untied it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and she said do not(*3) do that.,and she said do not not not do that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,or else : it would float away.,or else it would float away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and she was very mad at him.,and she was very mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,so she got steam/ed up.,so she got steamed up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and he was still look/ing.,and he was still looking +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and she was very very angry.,and she was very very angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,(and they saw) : and he[!] saw a balloon : saler[EW:seller].,and they saw and he saw a balloon saler +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,she was still steam/ing mad : at him.,she was still steaming mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,He was still run/ing.,He was still running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and : she was hold/ing on to her wagon.,and she was holding on to her wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,he was (g) say/ing : to get that : balloon.,he was g saying to get that balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,but[!] : it was : [EW:a]balloon for five cent/s.,but it was balloon for five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and he only had : five buck/s.,and he only had five bucks +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,so[!] he said if you do not have enough (you sh) you can not get a balloon.,so he said if you do not have enough you sh you can not get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and they saw the doctor.,and they saw the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,so they ran to her[!] and ask/ed if (we can have some) if they can have five cent/s : because they want/ed a balloon for her because : she lost one.,so they ran to her and asked if we can have some if they can have five cents because they wanted a balloon for her because she lost one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,because he want/ed to pay her back.,because he wanted to pay her back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,so[!] : (she) (he paid her) (he) she[!] paid him[!].,so she he paid her he she paid him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and they got the (two bal) two balloon/s.,and they got the two bal two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,and they hug/ed it and did not let it float away.,and they hugged it and did not let it float away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/880.slt,The end [+_bch].,The end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the elephant has a ball.,the elephant has a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,and : (uh) the elephant is bounce/ing it fast.,and uh the elephant is bouncing it fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,and the zebra want/3s to play.,and the zebra wants to play +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the ball bounce/3s into the water.,the ball bounces into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the zebra is go/ing to get (it) the ball.,the zebra is going to get it the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the zebra (got) get/3s the ball.,the zebra got gets the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,and : he give/3s it to the elephant.,and he gives it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the elephant is so happy : because of : the giraffe.,the elephant is so happy because of the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,(uh) the elephant and the zebra are at the swimming pool.,uh the elephant and the zebra are at the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,(the s) : (the z) the elephant want/3s to jump off the diving board.,the s the z the elephant wants to jump off the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the elephant is run/ing.,the elephant is running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,and so is the zebra.,and so is the zebra +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the sign says no run/ing.,the sign says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,and : the elephant hurt her knee.,and the elephant hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,and : the zebra is come/ing to help her.,and the zebra is coming to help her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,(uh) : the lifeguard is come/ing : to give her a bandaid.,uh the lifeguard is coming to give her a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,(the z) the lifeguard is put/ing on the bandaid.,the z the lifeguard is putting on the bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the sign say/3s no run/ing.,the sign says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,and : she is go/ing to sit on the bench.,and she is going to sit on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,he is say/ing look at the sign.,he is saying look at the sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,it says no run/ing said the lifeguard.,it says no running said the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,and the elephant said sorry[!].,and the elephant said sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the elephant and the zebra are at : the swimming pool.,the elephant and the zebra are at the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,and the zebra has an airplane.,and the zebra has an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,(the z) the zebra is make/ing airplane sound/s and fly/ing the airplane.,the z the zebra is making airplane sounds and flying the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the elephant grab/3s the airplane.,the elephant grabs the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,she drop/3s it in the water.,she drops it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the zebra get/3s mad.,the zebra gets mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the lifeguard come/3s to help.,the lifeguard comes to help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,(uh he is ask/ing : the li) she is ask/ing the lifeguard if : he can get the : airplane.,uh he is asking the li she is asking the lifeguard if he can get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,(uh) he can not get the airplane.,uh he can not get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the zebra start/3s to cry.,the zebra starts to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,this lady come/3s with a net to get the airplane.,this lady comes with a net to get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,she is go/ing to get the airplane.,she is going to get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,she get/3s the airplane and give/3s it back : to the zebra.,she gets the airplane and gives it back to the zebra +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the zebra is happy : that he got his airplane back.,the zebra is happy that he got his airplane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,and so is the elephant for him get/ing his airplane back.,and so is the elephant for him getting his airplane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,(uh) the dog meet/3s the rabbit who want/3s to help the dog build (the cas) a sandcastle.,uh the dog meets the rabbit who wants to help the dog build the cas a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the rabbit : got sand in the pail.,the rabbit got sand in the pail +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,he is go/ing to take some out.,he is going to take some out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the rabbit dump/3s the pail on the castle.,the rabbit dumps the pail on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,(the) the dog is : get/ing sad.,the the dog is getting sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the dog is cry/ing.,the dog is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the dog meet/3s the rabbit that is go/ing on a picnic.,the dog meets the rabbit that is going on a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the rabbit : brought too much stuff.,the rabbit brought too much stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,then (the dog) : [~_page_is_turned] the rabbit ate it all.,then the dog the rabbit ate it all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,and he had a stomachache.,and he had a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,he felt weary.,he felt weary +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the dog went to get a doctor.,the dog went to get a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the doctor came over to see what was the matter.,the doctor came over to see what was the matter +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the rabbit : was sick.,the rabbit was sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the doctor was : go/ing : to help the rabbit.,the doctor was going to help the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the doctor brought the rabbit home.,the doctor brought the rabbit home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the dog had a balloon tie/ed on it/z wagon.,the dog had a balloon tied on it's wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the rabbit is go/ing to take it off.,the rabbit is going to take it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the rabbit (took) take/3s it off.,the rabbit took takes it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the balloon float/3s away[-:].,the balloon floats away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the rabbit is look/ing at the balloon.,the rabbit is looking at the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,and the dog is really angry.,and the dog is really angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,(the dog is :) the rabbit see/3s a man sell/ing balloon/s that are (ow) okay.,the dog is the rabbit sees a man selling balloons that are ow okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the rabbit say/3s can we have two balloon/s please?,the rabbit says can we have two balloons please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the balloon salesman say/3s (for a balloons[EW:balloon]) balloon/s five cent/s each.,the balloon salesman says for a balloons balloons five cents each +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,but (the) they did not have any money.,but the they did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,so they could not buy it.,so they could not buy it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the rabbit ask/3s his mom for : ten cent/s.,the rabbit asks his mom for ten cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,(uh) he want/3s to buy two balloon/s[-:].,uh he wants to buy two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,his mom pay/3s for the balloon/s[-:].,his mom pays for the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,(they both have the s) they both have a balloon.,they both have the s they both have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/826.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,once there was a girl elephant : and[-:] a : giraffe who was[EW:were] play/ing with a bouncy ball : by a swimming pool.,once there was a girl elephant and a giraffe who was playing with a bouncy ball by a swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,the ball[-:] : was in the pool.,the ball was in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and : they were : disappoint/ed.,and they were disappointed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,the giraffe : was swim/ing : to the ball : (and) : as fast as he could.,the giraffe was swimming to the ball and as fast as he could +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,(a elephant was uh) that girl elephant was very : happy : to see the ball.,a elephant was uh that girl elephant was very happy to see the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the giraffe : was very happy too.,and the giraffe was very happy too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the girl : elephant : was : surprise/ed that she got : the ball.,and the girl elephant was surprised that she got the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the elephant was surprise/ed too.,and the elephant was surprised too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,once : there was a[EW:an] elephant : (who : was run/ing) (who was w) who want/ed to go on the jumping board.,once there was a elephant who was running who was w who wanted to go on the jumping board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,she was (wa) run/ing to the jumping board[-:].,she was wa running to the jumping board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and suddenly she slip/ed!,and suddenly she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and then she start/ed cry/ing.,and then she started crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the giraffe : came run/ing to her.,and the giraffe came running to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and : the lifeguard : was : (k) come/ing : and : said what is all (thi) the fuss.,and the lifeguard was k coming and said what is all thi the fuss +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,the (bi) girl elephant : was : cry/ing : so hard that : it hurted|hurt[EW:hurt].,the bi girl elephant was crying so hard that it hurted +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and then : she : had to : sit on the bench.,and then she had to sit on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the lifeguard said no run/ing in the hall/s.,and the lifeguard said no running in the halls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,once : the elephant : was watch/ing the giraffe : fly/ing (a) his airplane.,once the elephant was watching the giraffe flying a his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,the : elephant was look/ing : sad because : the giraffe was have/ing fun with his airplane.,the elephant was looking sad because the giraffe was having fun with his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the elephant : (took) grab/ed the : airplane from the giraffe.,and the elephant took grabbed the airplane from the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and she start/ed to play with it.,and she started to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and (the) the elephant (acci) accidentally : put : threw the : airplane in the pool.,and the the elephant acci accidentally put threw the airplane in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,the giraffe got very : angry at the elephant.,the giraffe got very angry at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the lifeguard came and said what is all this fuss ?,and the lifeguard came and said what is all this fuss +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and : the elephant said : I accidentally[-:] put : (the gi) : (his) : (the giraffe/z) : his airplane in the pool.,and the elephant said I accidentally put the gi his the giraffe's his airplane in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,I can not reach it.,I can not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,then the : giraffe start/ed to cry : for his airplane.,then the giraffe started to cry for his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the : girl elephant : got a net : and : start/ed to get (it) the airplane.,and the girl elephant got a net and started to get it the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and she pull/ed as hard[?] [EU].,and she pulled as hard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and she got it !,and she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the : giraffe was very happy to see it.,and the giraffe was very happy to see it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,once there was a dog who build|build[EW:built] : a castle.,once there was a dog who build a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and a bunny rabbit ask|ask[EW:asked] dog if : (he) she can help.,and a bunny rabbit ask dog if he she can help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the dog said sure[!].,and the dog said sure +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,the rabbit : took a (bi) bucket and put (lot/s) some sand in it.,the rabbit took a bi bucket and put lots some sand in it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the dog was fix/ing the castle.,and the dog was fixing the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the rabbit : put the sand on the castle.,and the rabbit put the sand on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the rabbit was : disappoint/ed that he did that.,and the rabbit was disappointed that he did that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and he said sorry : dog.,and he said sorry dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the dog : was : very sad because (the) : the castle was broken.,and the dog was very sad because the the castle was broken +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,once[-:] upon a time : the rabbit : came to see the dog for a picnic.,once upon a time the rabbit came to see the dog for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,(they both) they both : brought basket/s.,they both they both brought baskets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,the[-:] : bunny took lot/s of stuff like chip/s pickle/s large[?] sandwich/s carrot/s cake/s : cheese : cookie/s.,the bunny took lots of stuff like chips pickles large sandwiches carrots cakes cheese cookies +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,the dog[!] just took (uh) : a sandwich and more stuff : juice[-:] and[-:] : cookie/s.,the dog just took uh a sandwich and more stuff juice and cookies +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,the rabbit : ate all of it.,the rabbit ate all of it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and he (got) start/ed to get sick.,and he got started to get sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,the dog : ate his sandwich and : cookie/s and : drank his juice.,the dog ate his sandwich and cookies and drank his juice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the rabbit start/ed to get dizzy.,and the rabbit started to get dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the rabbit said : oh no!,and the rabbit said oh no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the dog : came : to get the doctor.,and the dog came to get the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the doctor said hmm.,and the doctor said hmm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,(a) (an) and the dog (carry/ed the) : took the doctor and pull/ed and pull/ed : and said (the r) the rabbit is sick because he ate too much.,a an and the dog carried the took the doctor and pulled and pulled and said the r the rabbit is sick because he ate too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the doctor took (his) her stuff and : took out a (s) popsicle stick and said the rabbit say ah.,and the doctor took his her stuff and took out a s popsicle stick and said the rabbit say ah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and (the : rabbit) : the doctor : (she) she took the : rabbit : to the hospital.,and the rabbit the doctor she she took the rabbit to the hospital +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the : dog (said) was very happy.,and the dog said was very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,once : the dog (was) had a balloon.,once the dog was had a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the rabbit came along and said oh[-:][!] you have a : nice red : shiny balloon!,and the rabbit came along and said oh you have a nice red shiny balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,(he) : (he want/ed) the rabbit want/ed to see the : bright nice : shiny (balloo) : balloon.,he he wanted the rabbit wanted to see the bright nice shiny balloo balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and[-:] : the dog (was) said no!,and the dog was said no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,but the rabbit said I am just go/ing to [~_gonna] see it!,but the rabbit said I am just going to see it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and : the rabbit : lost the string.,and the rabbit lost the string +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the : dog was very mad.,and the dog was very mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the rabbit was disappoint/ed (that).,and the rabbit was disappointed that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,the rabbit saw : a balloon : person.,the rabbit saw a balloon person +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and : he went over to the balloon person.,and he went over to the balloon person +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and he said : mister : can I have one of these balloon/s please?,and he said mister can I have one of these balloons please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,(it) (do not y) can not you read [EU]?,it do not y can not you read +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,it cost/3s : balloon/s : for five cent/s [EU].,it costs balloons for five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and : the : rabbit was very sad.,and the rabbit was very sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,(and the) : and he saw the doctor : again.,and the and he saw the doctor again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and he said : (m) doctor (can) (we : want two) we want balloon/s.,and he said m doctor can we want two we want balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the doctor : gave them : (t) : two five cent/s.,and the doctor gave them t two five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,and the balloon man gave them (two balloon/s) : two blue balloon/s.,and the balloon man gave them two balloons two blue balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,they were very happy because the doctor gave them two balloon/s.,they were very happy because the doctor gave them two balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/926.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,A giraffe and a[EW:an]: elephant : meet at a swimming pool.,A giraffe and a elephant meet at a swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and the elephant is scare/ed.,and the elephant is scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,it is because the[-:] egg *is fall/ing [EU]?,it is because the egg falling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and the giraffe dived|dive[EW:dove] in the water and try/ed to get the egg.,and the giraffe dived in the water and tried to get the egg +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then the giraffe : gave the egg to the elephant.,and then the giraffe gave the egg to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then the elephant like/ed (the) the giraffe.,and then the elephant liked the the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,It is the same as the other one [+_bch].,It is the same as the other one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,(mmm) I do not know what like this [+_bch].,mmm I do not know what like this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,I do not know xxx [+_bch].,I do not know x +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,just start it any way you want.,just start it any way you want +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,the elephant and the giraffe are[-:] [+//]>,the elephant and the giraffe are +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,I do not know [+_bch].,I do not know +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,I do not get this page [+_bch].,I do not get this page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,can you tell me what happen/ing?,can you tell me what happening +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,they are happy.,they are happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,then the elephant (went in the water) [~_no] *is go/ing to the jump/ing thing [~_what_it_(i)s_called] and slip/3s [EU].,then the elephant went in the water going to the jumping thing and slips +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then the giraffe is run/ing to help her.,and then the giraffe is running to help her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,then she slip/ed on the ground.,then she slipped on the ground +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and she hurt her knee.,and she hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then the giraffe help/ed her try/ed to.,and then the giraffe helped her tried to +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then[-:] xxx what is his name is call/ed [+//]>,and then x what is his name is called +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,I do not know what the name is call/ed [+_bch].,I do not know what the name is called +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,Are you done?,Are you done +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then (he put) he put a bandaid on[-:] the cut.,and then he put he put a bandaid on the cut +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then the giraffe help/ed her up.,and then the giraffe helped her up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then the elephant is happy.,and then the elephant is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and the other elephant was mad.,and the other elephant was mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,The giraffe and the elephant [EU].,The giraffe and the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and the giraffe got a toy airplane.,and the giraffe got a toy airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and[-:] the elephant is happy.,and the elephant is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,the : giraffe is fly/ing it in his hand.,the giraffe is flying it in his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and the elephant is [+//]>,and the elephant is +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,I do not know what it is call/ed [+_bch].,I do not know what it is called +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,then the elephant took the plane away from the : giraffe.,then the elephant took the plane away from the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then the elephant (ac) accidentally[?] drop/ed the plane in the water.,and then the elephant ac accidentally dropped the plane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and now the (gilaf) giraffe is mad at the elephant.,and now the gilaf giraffe is mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then[-:] : the other elephant : is look/ing at the plane in the water.,and then the other elephant is looking at the plane in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and I do not know whatever it is call/ed [+_bch].,and I do not know whatever it is called +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then the elephant is explain/ing to the other elephant.,and then the elephant is explaining to the other elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and the giraffe did not know what : she was say/ing.,and the giraffe did not know what she was saying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then : the (ele) other elephant was try/ing to reach the plane.,and then the ele other elephant was trying to reach the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and (then then) : then the giraffe was sad.,and then then then the giraffe was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,then (uh) the other elephant got a net and took it out.,then uh the other elephant got a net and took it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,she reach/ed to get the plane.,she reached to get the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and (gira) the giraffe was happy.,and gira the giraffe was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then giraffe : never gave it to the elephant.,and then giraffe never gave it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,The bunny and the : dog : met each other.,The bunny and the dog met each other +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then (there were) they were build/ing a castle together.,and then there were they were building a castle together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,then[-:] the bunny drop/ed all the sand in the bucket on the castle.,then the bunny dropped all the sand in the bucket on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and[-:] the dog was nervous.,and the dog was nervous +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and the bunny was[-:] scare/ed.,and the bunny was scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then the dog was sad.,and then the dog was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,a dog and a bunny were go/ing on a picnic.,a dog and a bunny were going on a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and[-:] the bunny took all his food out and[-:] was hungry.,and the bunny took all his food out and was hungry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and the bunny ate : all : of his food.,and the bunny ate all of his food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then[-:] whatever it is call/ed (ahh) ate too much.,and then whatever it is called ahh ate too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and he was sick.,and he was sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then the dog went to the bunny/z mom : and[-:] telled|tell[EW:told] *her that (his) her baby is sick [EU].,and then the dog went to the bunny's mom and telled that his her baby is sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and the dog was pull/ing her to (the baby) [~_I_mean] boy.,and the dog was pulling her to the baby boy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then[-:] the mom : look/ed at the boy.,and then the mom looked at the boy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and[-:] the mom walk/ed the boy back home.,and the mom walked the boy back home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,guy has a wagon and the balloon.,guy has a wagon and the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and the bunny is come/ing.,and the bunny is coming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and the bunny try/ed to get the balloon.,and the bunny tried to get the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and the bunny took it off of the : wagon.,and the bunny took it off of the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then the dog try/ed to get the balloon back in the bunny [EU].,and then the dog tried to get the balloon back in the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then the dog was (ma) mad at the bunny.,and then the dog was ma mad at the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then[-:] a guy with lot/s of balloon/s : (uh[-:]) the bunny saw it.,and then a guy with lots of balloons uh the bunny saw it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then the bunny : said can I have one of those balloon/s?,and then the bunny said can I have one of those balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and he gave one.,and he gave one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,he has five cent/s [~_laughs].,he has five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,(he did not have) he did not have any change.,he did not have he did not have any change +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,so he was nervous.,so he was nervous +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and[-:] the bunny went to[-:] the doctor and ask/ed [~_pronounced__'axed'] if he had any five cent/s.,and the bunny went to the doctor and asked if he had any five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then the bunny ask/ed the doctor (if he could get one) if he could have five cent/s for the balloon for my[-:] friend.,and then the bunny asked the doctor if he could get one if he could have five cents for the balloon for my friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and : the[-:] doctor gave two dollar/s.,and the doctor gave two dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and he got lot/s of balloon/s.,and he got lots of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/701.slt,and then the bunny and the dog were happy.,and then the bunny and the dog were happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,(um[-:] : me uh) some : little girl and : a friend : are play/ing with a ball around (the) : a little lake : that you can swim in.,um me uh some little girl and a friend are playing with a ball around the a little lake that you can swim in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and[-:] they accidentally drop the ball into the water.,and they accidentally drop the ball into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and (the[-:]) (her friend) : the girl/z friend go/3s in and get/3s it : and pass/3s it to her.,and the her friend the girl's friend goes in and gets it and passes it to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and he is all wet.,and he is all wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and she is all happy.,and she is all happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and she is all smiley[-:].,and she is all smiley +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and : he is all wet.,and he is all wet +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,(um) : it is the same girl with her friend.,um it is the same girl with her friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and they want to[:_wanna] go swim/ing.,and they want to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,(i) : and[-:] : it say/3s no run/ing.,i and it says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and they just want to go (swim/ing[-:]) swim/ing.,and they just want to go swimming swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and the girl want/3s to run and jump in.,and the girl wants to run and jump in +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,but she is not suppose/ed to run.,but she is not supposed to run +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and she run/3s.,and she runs +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and she slip/3s and fall/3s[-:].,and she slips and falls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,she hurt/3s her knee.,she hurts her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and she start/3s cry/ing.,and she starts crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and her friend come/3s run/ing for her.,and her friend comes running for her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and then : a lifeguard come/3s : (after him c) : (after) when she fall/3s because : (she hear/3s) he hear/3s it.,and then a lifeguard comes after him c after when she falls because she hears he hears it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and then he : put/3s some : stuff on.,and then he puts some stuff on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and then he put/3s a bandaid on.,and then he puts a bandaid on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and there is still a sign that says no run/ing.,and there is still a sign that says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,she has to sit out on the bench.,she has to sit out on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and her friend is[-:] : kind of smiley.,and her friend is kind of smiley +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and so[-:] she is[-:] kind of[:_kinda] : in trouble because (she i) there is a sign that says no run/ing.,and so she is kind of in trouble because she i there is a sign that says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and the lifeguard point/3s to the sign.,and the lifeguard points to the sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and she is[-:] kind of : worry/ed.,and she is kind of worried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,(um : um) : there is[EW:are] [-:] : the two friend/s again.,um um there is the two friends again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,(and[-:]) : (um and one of) and her friend : has a toy[-:].,and um and one of and her friend has a toy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and she is[-:] all surprise/ed and stuff.,and she is all surprised and stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and he is play/ing with it.,and he is playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and she is just look/ing at it : get/ing dizzy : sort of.,and she is just looking at it getting dizzy sort of +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and then she grab/3s the toy : away from him : (and she want/3s) because she want/3s to play with it.,and then she grabs the toy away from him and she wants because she wants to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,she accidentally drop/3s it in the water.,she accidentally drops it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and it start/ing to kind of[:_kinda] sink.,and it starting to kind of sink +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and (the) her friend is get/ing mad at her.,and the her friend is getting mad at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,(that) she (s) go/3s to get the lifeguard.,that she s goes to get the lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and the lifeguard look/3s at the toy.,and the lifeguard looks at the toy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and she is : say/ing[-:] can you get that please : it look/3s like.,and she is saying can you get that please it looks like +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and the lifeguard try/3s to (rea) reach.,and the lifeguard tries to rea reach +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,but it is too far.,but it is too far +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and now he is cry/ing[-:] : because the lifeguard could not get it.,and now he is crying because the lifeguard could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and then : a[-:] person bring/3s a net so she can try to get it.,and then a person brings a net so she can try to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and she get/3s it for him.,and she gets it for him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and now he is happy : that he got his toy back.,and now he is happy that he got his toy back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and now : she is happy that he is happy.,and now she is happy that he is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and he is all : snuggle/ed up to his toy.,and he is all snuggled up to his toy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,me and my friend Alana : (um) go/ing to the park to play : in the sandbox.,me and my friend Alana um going to the park to play in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,(us make/ing a s) me and my friend Alana make/ing (a sandbox) a sandcastle [~_I_mean].,us making a s me and my friend Alana making a sandbox a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,(um) pour/ing a whole bunch of sand on it.,um pouring a whole bunch of sand on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and Alana get/ing a little mad.,and Alana getting a little mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and[-:] the sandcastle break/3s (cause I pour : s) because we pour/ed sand on it.,and the sandcastle breaks cause I pour s because we poured sand on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and[-:] : us try/ing to build it again [EU].,and us trying to build it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,me : and my friend *are go/ing on a picnic [EU].,me and my friend going on a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,my friend *is eat/ing : all the food [EU].,my friend eating all the food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,my friend *is get/ing kind of sick[!] (and[-:]) because he ate all the food [EU].,my friend getting kind of sick and because he ate all the food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,he is get/ing even sicker.,he is getting even sicker +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,he see/3s a nurse walk/ing down the road.,he sees a nurse walking down the road +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and (he run/3s to go get the nurse) : [~_well] I run to go get the nurse.,and he runs to go get the nurse I run to go get the nurse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and I pull him to (the[-:] uh) my friend who is kind of sick from eat/ing all the food.,and I pull him to the uh my friend who is kind of sick from eating all the food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and then she is[-:] (give/ing[-:] hi[-:]) take/ing his temperature and give/ing him some medicine.,and then she is giving hi taking his temperature and giving him some medicine +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and her[EW:she] *is make/ing him feel a little bit better [EU].,and her making him feel a little bit better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,(um : m) me and my friend *are walk/ing down the street with a wagon [EU].,um m me and my friend walking down the street with a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and I have : a balloon tie/ed to my wagon.,and I have a balloon tied to my wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,my friend is look/ing at it and say/ing how wonderful the balloon is.,my friend is looking at it and saying how wonderful the balloon is +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,my friend want/3s to hold it.,my friend wants to hold it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and he untie/3s it.,and he unties it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and he let/3s it go.,and he lets it go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and it fly/3s away.,and it flies away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and I get all mad at him because my balloon is gone.,and I get all mad at him because my balloon is gone +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and it was my favourite balloon.,and it was my favourite balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and (we see a balloon man) [~_well] he see/3s a balloon man down the : other side of the street.,and we see a balloon man he sees a balloon man down the other side of the street +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and he ask/3s if he can get one of the balloon/s.,and he asks if he can get one of the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,but his pocket/s are empty.,but his pockets are empty +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and he has no money.,and he has no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and : (he um) : we are just stand/ing there and look/ing at the balloon/s.,and he um we are just standing there and looking at the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and then (we see the nurse) [~_well] he see/3s the nurse down the road.,and then we see the nurse he sees the nurse down the road +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and he show/3s her where the balloon man is.,and he shows her where the balloon man is +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and : he give/3s : the man : ten cent/s because the balloon/s are five cent/s so they could each get a balloon.,and he gives the man ten cents because the balloons are five cents so they could each get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and now they each got their own balloon.,and now they each got their own balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and now : I am[-:] smile/ing.,and now I am smiling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/949.slt,and I am happy with my friend.,and I am happy with my friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,once upon a time there was a giraffe.,once upon a time there was a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,he saw (a) : a[EW:an] elephant bounce/ing a ball.,he saw a a elephant bouncing a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,(i) (i) the elephant lost control.,i i the elephant lost control +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,and it went into the water.,and it went into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,the zebra (ran in to get) swam in to get it.,the zebra ran in to get swam in to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,the zebra gave it back to the elephant.,the zebra gave it back to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,the elephant look/ed at him and smile/ed.,the elephant looked at him and smiled +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,that was easy [+_bch].,that was easy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,(um) once upon a time there was a giraffe and an elephant.,um once upon a time there was a giraffe and an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,(she saw) : she want/ed to go (on) off the diving board.,she saw she wanted to go on off the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,so she ran over (it) to it.,so she ran over it to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,the giraffe said (no run/ing) the sign say/3s no run/ing.,the giraffe said no running the sign says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,she fell and hurt her knee.,she fell and hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,see I told[!] you.,see I told you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,the lifeguard came to help her.,the lifeguard came to help her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,he put a bandaid on : and help/ed her up.,he put a bandaid on and helped her up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,they went to : sit down.,they went to sit down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,the lifeguard said : the sign say/3s no run/ing : just for next time so you know.,the lifeguard said the sign says no running just for next time so you know +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,(there) there was an elephant and a giraffe.,there there was an elephant and a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,the elephant saw : what a nice airplane you have.,the elephant saw what a nice airplane you have +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,he said look it even fly/3s too.,he said look it even flies too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,(the giraffe stole it) [~_no_#_no] the elephant stole it from the giraffe.,the giraffe stole it the elephant stole it from the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,(she) it slip/ed out of her hand and went into the water.,she it slipped out of her hand and went into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,the giraffe was very very mad at the elephant.,the giraffe was very very mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,the lifeguard came to see and said well I will go get the thing.,the lifeguard came to see and said well I will go get the thing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,the page just pull/ed out [~_page_came_loose_from_the_binder] [+__bch].,the page just pulled out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,(she s) he said well why would you do that ?,she s he said well why would you do that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,and she said : it slip/ed out of my hand/s.,and she said it slipped out of my hands +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,the lifeguard try/ed to get it.,the lifeguard tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,but he could not.,but he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,he said well : I do not know how you get it.,he said well I do not know how you get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,a lady came along with a big : (fi) fishing net.,a lady came along with a big fi fishing net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,and she got it out.,and she got it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,it was very hard.,it was very hard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,but : she got it.,but she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,she gave it back to the zebra.,she gave it back to the zebra +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,the zebra was very very happy.,the zebra was very very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,after that (the) the elephant was happy that (gira) the giraffe got it.,after that the the elephant was happy that gira the giraffe got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,and the giraffe was very happy.,and the giraffe was very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,once there was a bunny name/ed : Peter and a dog name/ed : Rosie.,once there was a bunny named Peter and a dog named Rosie +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,and Rosie was build/ing : a castle.,and Rosie was building a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,and : Peter came along and said can I help you?,and Peter came along and said can I help you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,(um) Peter help/ed : her make the castle.,um Peter helped her make the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,but (uh) Peter decide/ed to dump the sand all over the castle.,but uh Peter decided to dump the sand all over the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,and he broke it.,and he broke it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,(um) Rosie got mad at Peter.,um Rosie got mad at Peter +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,and : Peter said sorry.,and Peter said sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,Rosie try/ed to build it again.,Rosie tried to build it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,once upon a time (there was a bunny name/ed[-:]) : there was a bunny.,once upon a time there was a bunny named there was a bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,and he was walk/ing along.,and he was walking along +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,and he saw a dog and said can I walk with you?,and he saw a dog and said can I walk with you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,they decide/ed to have a picnic together.,they decided to have a picnic together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,at the end the rabbit was : so full that he got very fat.,at the end the rabbit was so full that he got very fat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,(um) : he got : so fat that he could not walk home.,um he got so fat that he could not walk home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,(um) the dog found a doctor and said come over.,um the dog found a doctor and said come over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,come over.,come over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,my friend is hurt.,my friend is hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,so she : pull/ed him over.,so she pulled him over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,and : the doctor start/ed to look.,and the doctor started to look +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,the doctor said you should not have ate so much food.,the doctor said you should not have ate so much food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,and you would not have got sick.,and you would not have got sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,the doctor help/ed (um) the bunny back (uh) home.,the doctor helped um the bunny back uh home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,once upon a time there was a dog.,once upon a time there was a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,and (she) she was pull/ing a wagon.,and she she was pulling a wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,behind her she saw a bunny.,behind her she saw a bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,the bunny said what a nice balloon.,the bunny said what a nice balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,can I hold it for you?,can I hold it for you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,he tie/ed it to his arm.,he tied it to his arm +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,and they start/ed off on their way.,and they started off on their way +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,(it) (it ca) it unloosen/ed and went off the bunny/z hand.,it it ca it unloosened and went off the bunny's hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,and it float/ed into the sky.,and it floated into the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,the dog was very mad : at the bunny.,the dog was very mad at the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,(uh) down the road the bunny saw : a balloon man.,uh down the road the bunny saw a balloon man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,and he said what a nice surprise.,and he said what a nice surprise +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,I will just buy one and give it back to her.,I will just buy one and give it back to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,he said how much do they cost?,he said how much do they cost +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,(the) the guy said twenty five cent/s.,the the guy said twenty five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,(um) so he bought one.,um so he bought one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,(and) : (and um) : and he gave it to : the dog.,and and um and he gave it to the dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,(um) : the dog saw the : rabbit : buy/ing one.,um the dog saw the rabbit buying one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,he saw the : doctor and ran to him.,he saw the doctor and ran to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,the : doctor said you do not have enough to buy one of those.,the doctor said you do not have enough to buy one of those +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,how much money do you need?,how much money do you need +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,he gave : the guy enough money to buy two balloon/s so that they could each have one.,he gave the guy enough money to buy two balloons so that they could each have one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,the dog was very happy.,the dog was very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,so was the bunny.,so was the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/956.slt,and they thank/ed : the doctor and went off.,and they thanked the doctor and went off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,one day there was an elephant and a giraffe.,one day there was an elephant and a giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,they were go/ing to go swim/ing.,they were going to go swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,they threw a ball into the water.,they threw a ball into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,the giraffe went and got it.,the giraffe went and got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,: [~_sighs] (and instead the) and then the giraffe got it and gave it to the elephant.,and instead the and then the giraffe got it and gave it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,the elephant was so happy that she squeeze/ed the ball.,the elephant was so happy that she squeezed the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,it almost pop/ed.,it almost popped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,one : day there was an elephant and the giraffe.,one day there was an elephant and the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,they were go/ing swim/ing.,they were going swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,the elephant[!] saw a diving[!] board.,the elephant saw a diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,(she wan) she ran to the diving board.,she wan she ran to the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,she almost slip/ed.,she almost slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,she hurt her knee very[!] badly.,she hurt her knee very badly +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,(the lifeguar) the lifeguard saw her : cry/ing.,the lifeguar the lifeguard saw her crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,(he) she got a big[-:] bandaid.,he she got a big bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,and then she could not swim.,and then she could not swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,so she had to sit on the bench.,so she had to sit on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,(the) : the lifeguard : said (she) you did not see the sign that says no[-:] run/ing.,the the lifeguard said she you did not see the sign that says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,one day there was an elephant and the giraffe.,one day there was an elephant and the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,they were go/ing to go swim/ing with their airplane.,they were going to go swimming with their airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,the giraffe : flew his airplane.,the giraffe flew his airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,and it was : come/ing : almost (uh uh) : out of his hands.,and it was coming almost uh uh out of his hands +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,the elephant[!] caught it though.,the elephant caught it though +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,the elephant accidentally threw it into the water.,the elephant accidentally threw it into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,(the life) the giraffe was very[!] angry at her.,the life the giraffe was very angry at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,the lifeguard saw it in the water.,the lifeguard saw it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,the elephant said : [~_high_pitched_voice] he said I threw it in the water.,the elephant said he said I threw it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,[~_high_pitched_voice] and I did not really!,and I did not really +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,(the) the lifeguard could not[!] catch it.,the the lifeguard could not catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,he shrug/ed his shoulders and said I do not know a way to get it!,he shrugged his shoulders and said I do not know a way to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,and then : a lady came with a big[-:] net.,and then a lady came with a big net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,she try/ed to fetch the airplane out of the water.,she tried to fetch the airplane out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,she caught it!,she caught it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,the giraffe thank/ed her very[!] much.,the giraffe thanked her very much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,the giraffe was so[-:] happy he squeez/ed it.,the giraffe was so happy he squeezed it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,and it almost slip/ed out of his hand/s.,and it almost slipped out of his hands +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,and (th) the elephant was so happy that : they got it out of the water.,and th the elephant was so happy that they got it out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,she squeeze/ed her hands.,she squeezed her hands +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,and they were almost pitch red.,and they were almost pitch red +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,one day there was a rabbit and a doggy[!].,one day there was a rabbit and a doggy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,the doggy was make/ing a sandcastle.,the doggy was making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,the rabbit : got (a big[!]) some big scoop/s : from his shovel into the pail : of sand.,the rabbit got a big some big scoops from his shovel into the pail of sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,he got[!] the sand : and : dump/ed it all[-:] over his castle.,he got the sand and dumped it all over his castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,the castle[!] (went) : fell over.,the castle went fell over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,the dog was very[!] sad.,the dog was very sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,the bunny was surprise/ed.,the bunny was surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,one day there were[EW:was] a puppy and a rabbit.,one day there were a puppy and a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,they were go/ing to go on a picnic.,they were going to go on a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,the rabbit and the puppy got all the food out.,the rabbit and the puppy got all the food out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,(the rab) (the dog) the doggy was very[!] surprise/ed how much food[!] the rabbit brought.,the rab the dog the doggy was very surprised how much food the rabbit brought +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,he said are you sure you are go/ing to eat all that!,he said are you sure you are going to eat all that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,the rabbit said yes[-:] I am.,the rabbit said yes I am +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,the rabbit ate every single bite!,the rabbit ate every single bite +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,he was very[!] fat after that.,he was very fat after that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,he almost faint/ed!,he almost fainted +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,he was very very fat.,he was very very fat +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,and then he did[!] faint.,and then he did faint +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,and the puppy ran : (and) (the) into a doctor.,and the puppy ran and the into a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,he said doctor doctor my friend the rabbit ate too much junk[!] food!,he said doctor doctor my friend the rabbit ate too much junk food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,he try/ed[!] to pull the doctor over to his friend the rabbit.,he tried to pull the doctor over to his friend the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,then (sh) she came over.,then sh she came over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,and she lift/ed up his head.,and she lifted up his head +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,and she said you ate too much junk food!,and she said you ate too much junk food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,then the doctor carefully[!] : put her hand on the back of his back : and walk/ed him home.,then the doctor carefully put her hand on the back of his back and walked him home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,one day there was a puppy and a rabbit.,one day there was a puppy and a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,the puppy had a balloon attach/ed to his wagon.,the puppy had a balloon attached to his wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,the rabbit was very interest/ed in the balloon.,the rabbit was very interested in the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,he try/ed to untie it.,he tried to untie it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,but it was just too[!] tight on [EU].,but it was just too tight on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,and then he got it.,and then he got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,(an) except he did not hold onto to very (tight) tight.,an except he did not hold onto to very tight tight +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,his hand/s slip/ed off the string.,his hands slipped off the string +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,and it (float) float/ed up in the sky.,and it float floated up in the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,the puppy was very[!] mad.,the puppy was very mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,all that was left that they could see is a little bit of the string!,all that was left that they could see is a little bit of the string +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,then they saw a big : rabbit with lot/s[!] of balloon/s.,then they saw a big rabbit with lots of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,(they were very[!] uh) little rabbit was very interest/ed in them.,they were very uh little rabbit was very interested in them +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,he said I would like that big yellow[!] one please.,he said I would like that big yellow one please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,he did not have any money though.,he did not have any money though +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,(he s) the balloon keeper said : you have to have some money to buy the balloon.,he s the balloon keeper said you have to have some money to buy the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,(the ver) the puppy was very[!] surprise/ed.,the ver the puppy was very surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,and so was the rabbit.,and so was the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,then they saw the doctor again!,then they saw the doctor again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,(they said) bunny said doctor doctor we need some of your money to buy a balloon[-:]!,they said bunny said doctor doctor we need some of your money to buy a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,we need some of your money!,we need some of your money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,I lost my balloon because : he untie/ed it : off my wagon said the puppy.,I lost my balloon because he untied it off my wagon said the puppy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,(and then : he) : (and then she gave the man two) and then she gave the man : ten cent/s.,and then he and then she gave the man two and then she gave the man ten cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,: and the balloon/s : all float/ed away[-:].,and the balloons all floated away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,except there was[EW:were] only two[!] left one for the puppy and one for the rabbit.,except there was only two left one for the puppy and one for the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,they were both very[!] happy.,they were both very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/670.slt,they thank/ed the doctor very[!] much.,they thanked the doctor very much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,once upon a time there was a girl.,once upon a time there was a girl +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,(and the moose) : and the giraffe came : (and s) and saw[!] the thing.,and the moose and the giraffe came and s and saw the thing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,(and she) and he said what are you doing ?,and she and he said what are you doing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,(and) and the other one said oh I am bounce/ing a ball.,and and the other one said oh I am bouncing a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,: (and then the ball) and then the ball went into the : water.,and then the ball and then the ball went into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and then no one could : get it.,and then no one could get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,but then (the) (the cam) the giraffe (dropped uh) swimmed|swim[EW:swam] in and almost got the ball.,but then the the cam the giraffe dropped uh swimmed in and almost got the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,: (and then) and then he said thank you.,and then and then he said thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,: (and then) and then the other one said : [~_sighs] no problem.,and then and then the other one said no problem +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,once (huh) an (ah) [+//]>,once huh an ah +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,what does this say I can not understand that [+_bch].,what does this say I can not understand that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,what do you think ?,what do you think +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,(what) (what is this) what is this on the picture [+_bch]?,what what is this what is this on the picture +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,I will let you decide.,I will let you decide +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,no run/ing in the pool?,no running in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,(and then) and then the : want/ed to go for a swim [EU].,and then and then the wanted to go for a swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and he said watch out.,and he said watch out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and she actually slip/ed into the water.,and she actually slipped into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,: and then she got a scrape.,and then she got a scrape +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,: (and then) and then he call/ed the teacher (to see) to see how the scrape was go/ing.,and then and then he called the teacher to see to see how the scrape was going +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,: and then it really hurt so bad that he had to put a bandage on.,and then it really hurt so bad that he had to put a bandage on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and it was go/ing to be okay.,and it was going to be okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,: (and then the rest of) and then the sign said no run/ing.,and then the rest of and then the sign said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,that/z what happen/ed [+_bch].,that's what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,once upon a time (there was) (there was) : [~_I_I_keep__forgetting_the_boy's_name] : there was a giraffe and a[EW:an] elephant.,once upon a time there was there was there was a giraffe and a elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,said can I hold your airplane please [EU]?,said can I hold your airplane please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,(and then) (and then he s) and then he said sure.,and then and then he s and then he said sure +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,but (just) just let me show you what it does.,but just just let me show you what it does +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and it zoom/ed around.,and it zoomed around +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,: and then she took it from him.,and then she took it from him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and then she zoom/ed it.,and then she zoomed it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,(and then she almost) and (the) then she drop/ed it in the water.,and then she almost and the then she dropped it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,(and then the cam)(and then the oh) and then the giraffe got very angry at the elephant because[~_xxx;_EXA_asks_cause_what] she went like this[~_makes_sound_effect_agh].,and then the camand then the oh and then the giraffe got very angry at the elephant because she went like this +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,(xx and then) and then no one can do about it [EU].,and then and then no one can do about it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and then she said you have[!] to because (the) the airplane is his.,and then she said you have to because the the airplane is his +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,so what are we go/ing to[:_gonna] do about it ?,so what are we going to do about it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,we can not just swim in there.,we can not just swim in there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,: he try/ed to reach it.,he tried to reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,but he could not.,but he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,(so he got a nn) and then she cry/ed because noth/ing can we doed|do[EW:do] about it [EU].,so he got a nn and then she cried because nothing can we doed about it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,: (and then the) and then the catcher came (and) and catched|catch[EW:caught] the thing.,and then the and then the catcher came and and catched the thing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,: (and then) and then he put his tear/s away.,and then and then he put his tears away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,put his what away ?,put his what away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,tear/s cause his tears go/ing [+_bch].,tears cause his tears going +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and then he said thank you.,and then he said thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and then he said no problem.,and then he said no problem +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and that was the end of the story [+_bch].,and that was the end of the story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,one day they were build/ing a sandcastle.,one day they were building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,(and the bunny) and the other bunny : was go/ing to[:_gonna] play with [~_I_forget_that_part] [+//]>,and the bunny and the other bunny was going to play with +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and then he[!] want/ed to build a sandcastle.,and then he wanted to build a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,: (and then he went) (the tower) : (and then) and then he got mad.,and then he went the tower and then and then he got mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and then she got[EW:was] sad.,and then she got sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,(and) : and the other person cry/ed.,and and the other person cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,once upon a time : (uh) (the bunny met) the bunny met (um) his friend (at the) with the picnic basket.,once upon a time uh the bunny met the bunny met um his friend at the with the picnic basket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,: and then (they all had a pi) they all had the picnic.,and then they all had a pi they all had the picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and then he was so full that he can[EW:could] barely eat anything else.,and then he was so full that he can barely eat anything else +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,: and then he got a stomyache[c].,and then he got a stomyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,but he has bubble/s.,but he has bubbles +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,I do not know what that is [~_child's_comment_about__picture] [+_bch].,I do not know what that is +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,(so then he wen) (he went) then the friend went to : his mother/z house (and) : (and um) and said (uhh) your son is not feel/ing well.,so then he wen he went then the friend went to his mother's house and and um and said uhh your son is not feeling well +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and then : she pull/ed her (to where) to where the friend was lie/ing down.,and then she pulled her to where to where the friend was lying down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,(and then he w) (and then the doctor) and then his mother (um) quickly was go/ing to[:_gonna] check him.,and then he w and then the doctor and then his mother um quickly was going to check him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and then they went happily ever after at home [EU].,and then they went happily ever after at home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,one day when he walk/ed to his friend : (she) (he wa) she was : hold/ing : a cart [~_oh_I_do_n(o)t_know_how_to_say_that] : with a balloon on top.,one day when he walked to his friend she he wa she was holding a cart with a balloon on top +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,: (and then he s) (and then the friend) and then the other[!] friend said : your thing is amazing.,and then he s and then the friend and then the other friend said your thing is amazing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,: (and then) : (and then um) : (and then most) (and then) and then she (twun) (twun) tie/ed the balloon off.,and then and then um and then most and then and then she twun twun tied the balloon off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and then the balloon : fell out of the[EW:his] hand.,and then the balloon fell out of the hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,(and then) and then it flew away.,and then and then it flew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,: and then the girl got so[!] angry : that she never[?] will get the cart.,and then the girl got so angry that she never will get the cart +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and then there was[EW:were] some new[!] balloon/s.,and then there was some new balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,(andthen ) and he want|want[EW:wants] to buy one for the cart.,andthen and he want to buy one for the cart +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and then : can I have a red balloon?,and then can I have a red balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,: and then he said : this red balloon?,and then he said this red balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and then he said : all (this costs) this cost/s (um) [+//]>,and then he said all this costs this costs um +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,can you say this one word : nine nine xxx [+_bch].,can you say this one word nine nine x +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,okay I can not read that balloon [+_bch].,okay I can not read that balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,that's okay.,that's okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,(and) and then : would you like to buy another balloon : he said?,and and then would you like to buy another balloon he said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and then he ran and said doctor(*2) I need some money (and then) : to buy a red balloon (he).,and then he ran and said doctor doctor I need some money and then to buy a red balloon he +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and then the mother said : oh no you can not buy one of those : (because xx).,and then the mother said oh no you can not buy one of those because +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and then each of them got (t two) two red balloon/s.,and then each of them got t two two red balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,and then they were so happy.,and then they were so happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,then the other one : can have one (for his) (for his um) for his cart.,then the other one can have one for his for his um for his cart +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/412.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,once there was a giraffe and an elephant.,once there was a giraffe and an elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,(th) they are play/ing bouncy ball or something.,th they are playing bouncy ball or something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: they accidentally drop/ed the ball into the water.,they accidentally dropped the ball into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: and so the giraffe went and swam in to get it.,and so the giraffe went and swam in to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: and (he got it out) he got it out : gave it to the elephant [EU].,and he got it out he got it out gave it to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,(and : um) and elephant was happy to get her ball back.,and um and elephant was happy to get her ball back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,(okay) elephant and the giraffe were by a pool.,okay elephant and the giraffe were by a pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: and they did not see [EW:the]no run/ing sign : the elephant did not [~__okay] [~_child_clarifying_that_the_elephant_didn't_see_the_sign].,and they did not see no running sign the elephant did not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,and then so (she ran) she start/ed run/ing.,and then so she ran she started running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: (then) and then she slip/ed.,then and then she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,she fell : and hurt her knee.,she fell and hurt her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: and the giraffe came to help her.,and the giraffe came to help her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,she was cry/ing.,she was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,and a : lifeguard came : to : put a bandaid on it.,and a lifeguard came to put a bandaid on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,and then : lifeguard told her it is go/ing to[:_gonna] be okay.,and then lifeguard told her it is going to be okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,and then lifeguard got mad and show/ed her the no run/ing sign.,and then lifeguard got mad and showed her the no running sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,the giraffe and the elephant : were play/ing with a plane.,the giraffe and the elephant were playing with a plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: and they were have/ing a lot of fun[-:] .,and they were having a lot of fun +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: and then the elephant took it away from the giraffe.,and then the elephant took it away from the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: he got mad.,he got mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,(and um) and then it fell into the pool.,and um and then it fell into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: and the giraffe got mad at the elephant.,and the giraffe got mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: and the lifeguard came : and ask/ed what was wrong.,and the lifeguard came and asked what was wrong +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,and then the elephant told him : that they were play/ing with the : plane and it fell into the pool.,and then the elephant told him that they were playing with the plane and it fell into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: and lifeguard try/ed to get it.,and lifeguard tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,but he could not reach it.,but he could not reach it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: so then the giraffe was cry/ing (cause he) because no one could get it.,so then the giraffe was crying cause he because no one could get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: and a lady came and : got : a net.,and a lady came and got a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: and then (she got it out) : she was try/ing to get it.,and then she got it out she was trying to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,she got it.,she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,she gave it to the giraffe.,she gave it to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,the giraffe was (ha) happy.,the giraffe was ha happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,(he was) he was like laugh/ing in joy : sort of.,he was he was like laughing in joy sort of +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,and : (um) he hug/ed his plane.,and um he hugged his plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,and the elephant was happy too.,and the elephant was happy too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,there was (an) an elephant and a dog.,there was an an elephant and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,(were play/ing) (er pla) (make/ing a sandcastle) they made a sandcastle.,were playing er pla making a sandcastle they made a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,(and then : they start/ed) and then the bunny came and help/ed (the) because he was not really do/ing anything.,and then they started and then the bunny came and helped the because he was not really doing anything +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,he (came to help and um) : came to help too.,he came to help and um came to help too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,and then he dump/ed the whole bucket on.,and then he dumped the whole bucket on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,(and it) (oh I mean he made a pile) (um thought) [~_I__mean] he made a pile.,and it oh I mean he made a pile um thought he made a pile +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,(cause) : I thought he was dump/ing it on the castle.,cause I thought he was dumping it on the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: [~_oh] she wreck/ed it.,she wrecked it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,yeah I just could not see it [+_bch].,yeah I just could not see it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,[~_okay] he dump/ed it on[-:] .,he dumped it on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,she got mad[-:] .,she got mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,and (she is r) now she is cry/ing.,and she is r now she is crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,(okay) rabbit and dog (were go/ing) were walk/ing down the road to have a picnic.,okay rabbit and dog were going were walking down the road to have a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: rabbit (um go) was hot and : was really hungry.,rabbit um go was hot and was really hungry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,so (he ate) he ate all his food really fast.,so he ate he ate all his food really fast +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,he got sick.,he got sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,and then (dog went : because) dog saw a doctor and (went) (went to her) ask/ed for help.,and then dog went because dog saw a doctor and went went to her asked for help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,and then (um) dog (grab/ed) (like) brang|bring[EW:brought] (the rabbit) [~_I_mean] doctor over.,and then um dog grabbed like brang the rabbit doctor over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: and then she help/ed him.,and then she helped him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: (and then she) and the doctor had a talk with him.,and then she and the doctor had a talk with him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,and the end [+_bch].,and the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,(um) : dog and rabbit were : (um) : walk/ing down the road.,um dog and rabbit were um walking down the road +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: they found a balloon.,they found a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,and then rabbit try/ed to take it away.,and then rabbit tried to take it away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,(then it flew) then it (um) flew into the air.,then it flew then it um flew into the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,dog got really mad.,dog got really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: and she was still mad.,and she was still mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,but then : rabbit saw : (um) a man hold/ing a whole bunch of balloon/s.,but then rabbit saw um a man holding a whole bunch of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: and then he ask/ed for a balloon.,and then he asked for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: (um) but he did not have enough money.,um but he did not have enough money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: (it was) so then : they were sit/ing there wonder/ing what they could do.,it was so then they were sitting there wondering what they could do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,and then rabbit saw the angel.,and then rabbit saw the angel +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: and he told her what was wrong.,and he told her what was wrong +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,: she bought (them a balloon) : them both a balloon.,she bought them a balloon them both a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/806.slt,and they were happy.,and they were happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,(uhm) there is a giraffe and an elephant (that) (that have) that have three ball/s[-:].,uhm there is a giraffe and an elephant that that have that have three balls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and (then the giraffe and the elephant see another ball) they see (their) one of their ball/s in the water.,and then the giraffe and the elephant see another ball they see their one of their balls in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,: so the giraffe swim/3s to get it.,so the giraffe swims to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,: and then he bring/3s it back to the elephant.,and then he brings it back to the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,: and then the[-:] elephant hug/3s it and everything.,and then the elephant hugs it and everything +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,(um well : um) there is the giraffe and the elephant again.,um well um there is the giraffe and the elephant again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and it has a sign that says no run/ing.,and it has a sign that says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,: and then : the elephant start/3s run/ing : or something.,and then the elephant starts running or something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,: and then he slip/3s.,and then he slips +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,: and then he hurt/3s (hi) herself[EW:himself].,and then he hurts hi herself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,: so a lifeguard come/3s : (and put) and put/3s on a bandaid.,so a lifeguard comes and put and puts on a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and the elephant : look/3s like (he) she is about to cry.,and the elephant looks like he she is about to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,: but she notice/3s that it do/3s not hurt at all.,but she notices that it does not hurt at all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,: and then the lifeguard point/3s to the sign.,and then the lifeguard points to the sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and the elephant see/3s (it and) the sign that say/3s no run/ing.,and the elephant sees it and the sign that says no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,(um) this giraffe has an airplane in his hand.,um this giraffe has an airplane in his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,then he is try/ing to fly everywhere.,then he is trying to fly everywhere +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,: (but) and the elephant grab/3s it.,but and the elephant grabs it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and then she drop/3s it in the water accidentally.,and then she drops it in the water accidentally +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and (um) the giraffe get/3s really mad at the elephant.,and um the giraffe gets really mad at the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and then a lifeguard come/3s and see/3s the airplane.,and then a lifeguard comes and sees the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,: and then (the) : the elephant try/3s to explain why it is in the water.,and then the the elephant tries to explain why it is in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,so the lifeguard try/3s to get it out.,so the lifeguard tries to get it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and then : the giraffe start/3s to cry.,and then the giraffe starts to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,so a lady come/3s along with a net.,so a lady comes along with a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and she try/3s to grab it out of the water with the net.,and she tries to grab it out of the water with the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and then she give/3s it back to the giraffe.,and then she gives it back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and then he start/3s hug/ing it.,and then he starts hugging it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,there is a bunny and a puppy (who are) who are make/ing a sandcastle.,there is a bunny and a puppy who are who are making a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,[~_no_wait] the puppy already made the sandcastle.,the puppy already made the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,: and then he is try/ing to fix it up kind of to make it look a little better.,and then he is trying to fix it up kind of to make it look a little better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and then the bunny start/3s pour/ing sand : (on) on the sandcastle.,and then the bunny starts pouring sand on on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and the sand is all over it.,and the sand is all over it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and the puppy start/3s wipe/ing off the : sand.,and the puppy starts wiping off the sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,there is a puppy and a bunny that is[EW:are] go/ing for a (picic) picnic.,there is a puppy and a bunny that is going for a picic picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and then they are eat/ing.,and then they are eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and the bunny is eat/ing a lot.,and the bunny is eating a lot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and then she is really really full[-:].,and then she is really really full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and then (um) the puppy notice/3s that she is really really full.,and then um the puppy notices that she is really really full +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,so the puppy go/3s and get/3s this doctor that he[-:] found on the path.,so the puppy goes and gets this doctor that he found on the path +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and he bring/3s : the doctor over to the bunny.,and he brings the doctor over to the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and then the doctor : try/3s to help the bunny.,and then the doctor tries to help the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and then the bunny feel/3s a little better.,and then the bunny feels a little better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,there is a puppy and a bunny : who have a wagon with a balloon tie/ed to it.,there is a puppy and a bunny who have a wagon with a balloon tied to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and the bunny : see/3s the balloon.,and the bunny sees the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and then she try/3s to take it off.,and then she tries to take it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and then she took it off.,and then she took it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and it is float/ing away.,and it is floating away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and then the puppy get/3s really mad at the bunny.,and then the puppy gets really mad at the bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and then there is (an) (a) (a : bu) another bunny that has : balloon/s in (they) in his hand.,and then there is an a a bu another bunny that has balloons in they in his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and the bunny see/3s : the other bunny.,and the bunny sees the other bunny +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and then the bunny say/3s that he want/ed one of the balloon/s.,and then the bunny says that he wanted one of the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and then the balloon/s are suppose/ed to be fifty cent/s.,and then the balloons are supposed to be fifty cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,but the bunny has no money.,but the bunny has no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,so (then) : then they feel all sad and everything.,so then then they feel all sad and everything +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and then they see : (um) a doctor.,and then they see um a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and the bunny ask/3s : (if) if the doctor could pay for them for one of the balloon/s.,and the bunny asks if if the doctor could pay for them for one of the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,so the doctor do/3s.,so the doctor does +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/810.slt,and then : they each have a balloon.,and then they each have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,A long time ago there was a little elephant name/ed Ella.,A long time ago there was a little elephant named Ella +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and she was play/ing (with) with her best friend Gerome the giraffe.,and she was playing with with her best friend Gerome the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,they were play/ing along the swimming pool.,they were playing along the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,"and as they were play/ing pass with the ball, the ball went inside the pool.",and as they were playing pass with the ball the ball went inside the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(and they were shock/ed) (and they were) (and they were) and they were very shock/ed.,and they were shocked and they were and they were and they were very shocked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,Ella the elephant did not know how to swim.,Ella the elephant did not know how to swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,so Gerome the giraffe had to go in and try to get the ball.,so Gerome the giraffe had to go in and try to get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,when he got the ball he gave it to Ella the elephant.,when he got the ball he gave it to Ella the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(Ella wa) (E) Ella was very happy.,Ella wa E Ella was very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,Gerome was also very happy because he like/ed Ella.,Gerome was also very happy because he liked Ella +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and Ella now really like/ed him.,and Ella now really liked him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,A long time ago there were two friend/s.,A long time ago there were two friends +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,there was Rachelle the elephant and Bob the giraffe.,there was Rachelle the elephant and Bob the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(and they) and they were go/ing to have a swim in the swimming pool.,and they and they were going to have a swim in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,but then they saw a sign that said no run/ing.,but then they saw a sign that said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,but (um) Rachelle the elephant did not recognize it.,but um Rachelle the elephant did not recognize it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,so she start/ed run/ing along the swimming pool then.,so she started running along the swimming pool then +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(she) then when she was run/ing she slip/ed and fell.,she then when she was running she slipped and fell +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and she skin/ed her knee.,and she skinned her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and she start/ed to cry.,and she started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,Gerome came run/ing to see what had happen/ed.,Gerome came running to see what had happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(a) after he start/ed to care for her the lifeguard came (and check/ed) and check/ed (what was) what was wrong.,a after he started to care for her the lifeguard came and checked and checked what was what was wrong +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and he saw (that) that (Rachelle) Rachelle the elephant was run/ing and she slip/ed and that she did not see the sign and that she hurt herself.,and he saw that that Rachelle Rachelle the elephant was running and she slipped and that she did not see the sign and that she hurt herself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,the lifeguard put a big bandage on where she skin/ed her knee.,the lifeguard put a big bandage on where she skinned her knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and Rachelle felt much better.,and Rachelle felt much better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,"(as Rachelle was) as the lifeguard carry/ed Rachelle back to the bench, (Gerome) Gerome comfort/ed her.",as Rachelle was as the lifeguard carried Rachelle back to the bench Gerome Gerome comforted her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and then the lifeguard spot/ed the sign.,and then the lifeguard spotted the sign +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and he told her Rachelle that the sign was there and she miss/ed the sign and that she should never run again.,and he told her Rachelle that the sign was there and she missed the sign and that she should never run again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,Here we are again with Rachelle the elephant and Bob the giraffe.,Here we are again with Rachelle the elephant and Bob the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(Bob) (Bob) Bob was show/ing off his new airplane that he got from his grandma for his birthday.,Bob Bob Bob was showing off his new airplane that he got from his grandma for his birthday +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(ra) Rachelle was very happy.,ra Rachelle was very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(she thought) she thought that it was very interesting.,she thought she thought that it was very interesting +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,so when they start/ed to play with it Gerome show/ed her a trick (that he found) that he found out with the airplane.,so when they started to play with it Gerome showed her a trick that he found that he found out with the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,Rachelle was very shock/ed and surprise/ed.,Rachelle was very shocked and surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,Rachelle like/ed it so much that she stole it out of Bob/z hand/s and start/ed to play with it herself.,Rachelle liked it so much that she stole it out of Bob's hands and started to play with it herself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(Bob) Bob did not know what was happen/ing.,Bob Bob did not know what was happening +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,"but when she play/ed with it, it fell inside the swimming pool.",but when she played with it it fell inside the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,Bob got kind of sad.,Bob got kind of sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(but then he) (not) not only did he get sad : but he got really mad at Rachelle.,but then he not not only did he get sad but he got really mad at Rachelle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and he said Rachelle now you have to go get it.,and he said Rachelle now you have to go get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,but Rachelle did not know how to swim.,but Rachelle did not know how to swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,so they called (ov) over the lifeguard to go get it because Rachelle did not know how to swim [<~_I_mean]and Gerome thought[>~_I_mean] and Bob thought that it was only fair that she had to get it because she threw it into the pool.,so they called ov over the lifeguard to go get it because Rachelle did not know how to swim and Gerome thought and Bob thought that it was only fair that she had to get it because she threw it into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(the lifeguard) the lifeguard said (well you are not) why did you throw it into the pool ?,the lifeguard the lifeguard said well you are not why did you throw it into the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and Rachelle said it is just an accident.,and Rachelle said it is just an accident +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and the lifeguard said (well why) (why did you) why did you take it out of Bob/z hand anyway ?,and the lifeguard said well why why did you why did you take it out of Bob's hand anyway +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,she said well it was really interesting.,she said well it was really interesting +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,I just want to see it.,I just want to see it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,the next time you should ask.,the next time you should ask +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(and) and Rachelle said can you please please[!] get it ?,and and Rachelle said can you please please get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,so he try/ed to get it.,so he tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and he try/ed and try/ed.,and he tried and tried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,but he could not get it.,but he could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,Gerome start/ed to feel sad that he would never get it again.,Gerome started to feel sad that he would never get it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,so finally : (um) Rachelle/z mother came and had a big long net.,so finally um Rachelle's mother came and had a big long net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(and she) and she was about to get it.,and she and she was about to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and she got[!] it : with the big net.,and she got it with the big net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,she got the airplane all safe and sound no broken piece/s.,she got the airplane all safe and sound no broken pieces +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,so then she gave it to Bob.,so then she gave it to Bob +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and Bob start/ed to get very happy and very excite/ed that he could play with it again.,and Bob started to get very happy and very excited that he could play with it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,he hug/ed and hug/ed it so much.,he hugged and hugged it so much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and now Rachelle was happy that he had it back.,and now Rachelle was happy that he had it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(a couple of da) last week (there were) there was a bunny name/ed (um) Babs and a dog name/ed : Michelle.,a couple of da last week there were there was a bunny named um Babs and a dog named Michelle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(they) (they were) (Babs) Babs was walk/ing (on her way to) just on a walk.,they they were Babs Babs was walking on her way to just on a walk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and she saw Michelle (play) play/ing in a sandbox and build/ing a sandcastle.,and she saw Michelle play playing in a sandbox and building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,she thought it would be fun.,she thought it would be fun +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and she want/ed to play too.,and she wanted to play too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,so Michelle let her play with it.,so Michelle let her play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(and they) and they were make/ing sandcastle/s and : all different kind/s of animal/s.,and they and they were making sandcastles and all different kinds of animals +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,so then when Babs pour/ed her bucket of sand all over the top of the castle : it broke it.,so then when Babs poured her bucket of sand all over the top of the castle it broke it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,Michelle was so sad.,Michelle was so sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,so was Babs.,so was Babs +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(she thought) she thought it would make it better.,she thought she thought it would make it better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,but instead it made it worse.,but instead it made it worse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,Michelle start/ed to cry.,Michelle started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and she start/ed to fine her sandcastle again [EU].,and she started to fine her sandcastle again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,but (it was all) it was all coat/ed with sand (but) by the big bucket of sand.,but it was all it was all coated with sand but by the big bucket of sand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(Babs look/ed) (Babs look/ed) Babs look/ed embarrasse/ed because (it) she broke it.,Babs looked Babs looked Babs looked embarrasseed because it she broke it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and now her friend was cry/ing.,and now her friend was crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,here we are again with Babs and Michelle.,here we are again with Babs and Michelle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(Bab) Babs was walk/ing along in the forest (when) when she caught up with Michelle.,Bab Babs was walking along in the forest when when she caught up with Michelle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,they were go/ing on a walk to a picnic.,they were going on a walk to a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,Michelle said oh look at the perfect view.,Michelle said oh look at the perfect view +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(and) and (um Mich) Babs said it is so beautiful.,and and um Mich Babs said it is so beautiful +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(why do not) (why don't we) why do not we have a picnic here?,why do not why don't we why do not we have a picnic here +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,so they did.,so they did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and (Bab) (Babs ate) (Babs) Babs brought a lot.,and Bab Babs ate Babs Babs brought a lot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,he brought a cake submarine sandwich pickle/s cheese chip/s : and almost anything you could think of.,he brought a cake submarine sandwich pickles cheese chips and almost anything you could think of +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and : Michelle only brought a couple thing/s only thing/s she need/ed.,and Michelle only brought a couple things only things she needed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,Babs was eat/ing everything.,Babs was eating everything +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(after Babs) after Michelle was finish/ing her juice and her sandwich : Babs was done everything.,after Babs after Michelle was finishing her juice and her sandwich Babs was done everything +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,he had a gigantic stomach (and start/ed) (and) and start/ed to burp the ABC/s.,he had a gigantic stomach and started and and started to burp the ABCs +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,Babs got really dizzy (and) and felt sleepy.,Babs got really dizzy and and felt sleepy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(when) when Michelle was just[!] about to finish her juice and sandwich : (Babs) Babs fell asleep.,when when Michelle was just about to finish her juice and sandwich Babs Babs fell asleep +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,so when he was sleep/ing : (Michelle) (Michelle saw) Michelle phone/ed the doctor because he was really dizzy.,so when he was sleeping Michelle Michelle saw Michelle phoned the doctor because he was really dizzy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(and he) (and he did not) and he did not look very good.,and he and he did not and he did not look very good +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,so when the doctor came she hurry/ed over (and told) and told the doctor to come and see what was wrong.,so when the doctor came she hurried over and told and told the doctor to come and see what was wrong +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(she) : Michelle kept drag/ing her over.,she Michelle kept dragging her over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,but : when they were just a few feet away the doctor said he just sleep/ing.,but when they were just a few feet away the doctor said he just sleeping +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(and he ate) and he ate too much.,and he ate and he ate too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(do not) do not worry.,do not do not worry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,he will just be a couple minute/s (when he) when he will get better.,he will just be a couple minutes when he when he will get better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,but she said but he do/3s not look very good.,but she said but he does not look very good +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,you should come and see.,you should come and see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,but she did not want to come and see.,but she did not want to come and see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,so she did.,so she did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and when she tap/ed him on the head (he start/ed) (he start/ed to bark) he start/ed to bark even though he was a rabbit.,and when she tapped him on the head he started he started to bark he started to bark even though he was a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,the doctor thought something was wrong.,the doctor thought something was wrong +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,but then : when she check/ed him : he was just right.,but then when she checked him he was just right +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,all he did was eat a little too many : chip/s.,all he did was eat a little too many chips +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(last) last year (about) in the middle of the spring time (there was) there was a dog name/ed : Sarah (and a) and a rabbit name/ed Christopher.,last last year about in the middle of the spring time there was there was a dog named Sarah and a and a rabbit named Christopher +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(as they were) as (um) Sarah was walk/ing with her new wagon : (she) (that she got from a parade) that she won from a parade with a balloon that she also got from the parade : (she was walk/ing) she was walk/ing and play/ing with it.,as they were as um Sarah was walking with her new wagon she that she got from a parade that she won from a parade with a balloon that she also got from the parade she was walking she was walking and playing with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,when Christopher saw it he want/ed to play too.,when Christopher saw it he wanted to play too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,he love/ed the balloon.,he loved the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,he thought it was the best part of everything.,he thought it was the best part of everything +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,he want/ed to see it even closer because (it was) it was high in the sky.,he wanted to see it even closer because it was it was high in the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,so when he want/ed to untie it just so he see a (leettle) little more (um Sarah) Sarah thought he should not do it.,so when he wanted to untie it just so he see a leettle little more um Sarah Sarah thought he should not do it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,but then she thought maybe I will get to see it closer too.,but then she thought maybe I will get to see it closer too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,but when he let go : the balloon start/ed to sail way up high in the sky.,but when he let go the balloon started to sail way up high in the sky +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(Sarah) Sarah start/ed to feel sad and that she would never see it again.,Sarah Sarah started to feel sad and that she would never see it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(and that) and Christopher (was) was very sad because he[!] want/ed to see it even closer.,and that and Christopher was was very sad because he wanted to see it even closer +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,but : he did not get it because he let it off.,but he did not get it because he let it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,but then Sarah got really[!] mad at Christopher because he let her favorite balloon off.,but then Sarah got really mad at Christopher because he let her favorite balloon off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and she started to throw a fit.,and she started to throw a fit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,then[!] (a guy from) a guy was walk/ing down the street with billion/s of balloon/s.,then a guy from a guy was walking down the street with billions of balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(while) while Sarah was still be/ing mad at Christopher Christopher spot/ed him.,while while Sarah was still being mad at Christopher Christopher spotted him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(and he w) and he thought maybe he should buy a balloon for her.,and he w and he thought maybe he should buy a balloon for her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,so he said can I have (one balloo) one of those balloon/s?,so he said can I have one balloo one of those balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and can I have a purple one?,and can I have a purple one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,he said sure.,he said sure +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and the purple one was the biggest one.,and the purple one was the biggest one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and he gave it to her.,and he gave it to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(and as) (and as he) (and when) (and as) and as he was walk/ing Sarah start/ed to feel a little happier because he bought a balloon for her.,and as and as he and when and as and as he was walking Sarah started to feel a little happier because he bought a balloon for her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,at least she thought so.,at least she thought so +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(but when) (but when he) but when he look/ed in his pocket to buy[!] a balloon he did not have any money.,but when but when he but when he looked in his pocket to buy a balloon he did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,so then the guy that own/ed the balloons said you can not have it because you have no money.,so then the guy that owned the balloons said you can not have it because you have no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,so Sarah start/ed to walk towards him.,so Sarah started to walk towards him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(so) so : (um) Christopher put his hand/s in his pocket still try/ing to find something.,so so um Christopher put his hands in his pocket still trying to find something +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and the guy said well you know what?,and the guy said well you know what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,just because you let her balloon off (and) and since you are my grandson[!] : I will let you have a balloon for free.,just because you let her balloon off and and since you are my grandson I will let you have a balloon for free +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,but then he change/ed his mind again because he thought well even though he let it off he should still buy it for her.,but then he changed his mind again because he thought well even though he let it off he should still buy it for her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,so then[!] they saw : his mom walk/ing down the street.,so then they saw his mom walking down the street +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and she said mom can I have five cent/s?,and she said mom can I have five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(and she) and she did not hear him.,and she and she did not hear him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and so she said it again.,and so she said it again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,he said I need five cent/s.,he said I need five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,but I have none because I let Sarah/z balloon go.,but I have none because I let Sarah's balloon go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and she really want/3s another one.,and she really wants another one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,so the lady pay/ed the man (five cent/s) ten cent/s actually so that they could both have a balloon.,so the lady paid the man five cents ten cents actually so that they could both have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,they were really happy.,they were really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and (they hug/ed them and) they hug/ed the balloon/s a lot.,and they hugged them and they hugged the balloons a lot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,(and then they said) and they said thank you to Christopher/z mom.,and then they said and they said thank you to Christopher's mom +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/905.slt,and then they went off to play again.,and then they went off to play again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,two friend/s met again.,two friends met again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,they had a ball.,they had a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,the ball drop/ed in the river.,the ball dropped in the river +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,and then the (friend) friend (s : uh) swam into the river to get the ball.,and then the friend friend s uh swam into the river to get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,he gave back the ball.,he gave back the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,(and then he look/ed very) : and then she look/ed very happy.,and then he looked very and then she looked very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,two friend/s met[!] again.,two friends met again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,(uh) one friend want/ed to (go) go off the diving board.,uh one friend wanted to go go off the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,(she ran down the hallway and sli) and : she ran down the hallway.,she ran down the hallway and sli and she ran down the hallway +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,(she ran to) : and she slip/ed.,she ran to and she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,the lifeguard came : and gave her a (um) : bandaid.,the lifeguard came and gave her a um bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,then she (sat) : sat on the bench.,then she sat sat on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,and then the lifeguard (real) got really mad because there was a sign that said no run/ing.,and then the lifeguard real got really mad because there was a sign that said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,the two friend/s met again.,the two friends met again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,he (had) was play/ing with a[EW:an] airplane.,he had was playing with a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,the other friend took the airplane away.,the other friend took the airplane away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,and it fell into the water[!].,and it fell into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,the one friend got really[!] mad.,the one friend got really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,the lifeguard saw it.,the lifeguard saw it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,and (they all look/ed) they all look/ed unhappy.,and they all looked they all looked unhappy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,and then (the uh) the friend explain/ed what happen/ed.,and then the uh the friend explained what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,and the lifeguard look/ed : kind of surprise/ed.,and the lifeguard looked kind of surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,so the lifeguard reach/ed out to get it.,so the lifeguard reached out to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,but : he could not.,but he could not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,so the friend cry/ed.,so the friend cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,a lady with a pole : came over.,a lady with a pole came over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,and she fish/ed out the airplane : and gave it back.,and she fished out the airplane and gave it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,and (he) they both look/ed very[!] happy.,and he they both looked very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,two kid/s met (at uh) in the sand box.,two kids met at uh in the sand box +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,they built a castle.,they built a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,(uh) : one of the friend/s pour/ed (um) sand onto the castle.,uh one of the friends poured um sand onto the castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,the castle broke (ss).,the castle broke ss +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,one of the friend/s got really sad.,one of the friends got really sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,(two f) the two friend/s met again.,two f the two friends met again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,(they) : (they) : they ate a picnic.,they they they ate a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,one of the friend/s ate too much and got a stomachache.,one of the friends ate too much and got a stomachache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,[~_whispers:_let_(u)s_see] : (it got even) : it got even worse.,it got even it got even worse +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,(then the) : then there was (a lady on the road) a doctor on the road.,then the then there was a lady on the road a doctor on the road +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,and (the) : one of the friend/s went to get the doctor.,and the one of the friends went to get the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,(the : girl) : (the) one of friend/s pull/ed the doctor (to the) : to the other friend.,the girl the one of friends pulled the doctor to the to the other friend +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,the doctor look/ed at him.,the doctor looked at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,and after that he felt really happy.,and after that he felt really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,the two friend/s met again.,the two friends met again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,(uh) the one friend (ask/ed) ask/ed her what : (if he could have the) if he could take off the balloon.,uh the one friend asked asked her what if he could have the if he could take off the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,so he : was untie/ing the balloon.,so he was untying the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,and the balloon flew away[!].,and the balloon flew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,(the) : the friend got really[!] mad at him.,the the friend got really mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,then he saw (some) a man with balloon/s.,then he saw some a man with balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,he ask/ed for one.,he asked for one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,five cent/s each.,five cents each +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,and they both look/ed very sad.,and they both looked very sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,(then came) : then came a lady.,then came then came a lady +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,and they ask/ed her for some money.,and they asked her for some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,so she paid him five cent/s.,so she paid him five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/947.slt,and they got each one balloon!,and they got each one balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,Today we meet Ella elephant and George giraffe.,Today we meet Ella elephant and George giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,Ella was play/ing : with a ball.,Ella was playing with a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,and : she threw it in the pool that George and Ella were at.,and she threw it in the pool that George and Ella were at +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,while Ella was stand/ing there George : swam in (and got) and try/ed to get Ella/z ball.,while Ella was standing there George swam in and got and tried to get Ella's ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,George got Ella/z ball and swam : back to her.,George got Ella's ball and swam back to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,Ella was very (ha) happy with George.,Ella was very ha happy with George +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,George was very proud of himself.,George was very proud of himself +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,(Percy and Bob are) [~_I_mean] (um) Ella and George are still at the pool.,Percy and Bob are um Ella and George are still at the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,(um) and they are look/ing into the water.,um and they are looking into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,Ella want/3s to go off the diving board.,Ella wants to go off the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,George and Ella (run) try to run to the diving board.,George and Ella run try to run to the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,but Ella slip/3s.,but Ella slips +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,Ella hurt/3s her knee and start/3s to cry.,Ella hurts her knee and starts to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,George help/3s her.,George helps her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,and (the life elephant) the lifeguard elephant (came) come/3s to help.,and the life elephant the lifeguard elephant came comes to help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,the lifeguard elephant put/3s a bandage on Ella/z knee.,the lifeguard elephant puts a bandage on Ella's knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,the lifeguard elephant also help/3s Ella up on a bench.,the lifeguard elephant also helps Ella up on a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,George try/3s to help/3s[EW:help] too.,George tries to helps too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,Ella did not see the no run/ing sign at the first page of this story.,Ella did not see the no running sign at the first page of this story +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,and the lifeguard elephant get/3s angry.,and the lifeguard elephant gets angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,George and Ella are still[!] at the pool.,George and Ella are still at the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,George has a[EW:an] : airplane with him.,George has a airplane with him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,George is make/ing the airplane do trick/s in front of Ella.,George is making the airplane do tricks in front of Ella +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,and Ella is look/ing a little bit strange.,and Ella is looking a little bit strange +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,then Ella grab/3s the airplane from George and look/3s at it constantly.,then Ella grabs the airplane from George and looks at it constantly +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,then Ella : accidentally drop/3s (the : pap) the plane in the pool.,then Ella accidentally drops the pap the plane in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,and George do/3s not look very happy.,and George does not look very happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,George get/3s very very angry at Ella for drop/ing the plane in the pool.,George gets very very angry at Ella for dropping the plane in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,the lifeguard elephant (look/3s at Ella) (look/3s) [~_I__mean] look/3s at the airplane.,the lifeguard elephant looks at Ella looks looks at the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,and so do/3s George while Ella try/3s to sneak away.,and so does George while Ella tries to sneak away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,(George) : but (the life elephant) : the lifeguard elephant stop/3s her and want/3s : Ella to explain what happen/ed to the airplane.,George but the life elephant the lifeguard elephant stops her and wants Ella to explain what happened to the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,the lifeguard elephant try/3s (to get) to reach over the pool and get the airplane for George.,the lifeguard elephant tries to get to reach over the pool and get the airplane for George +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,when he cannot reach it (Geo) George get/3s on his knee/s and start/3s to cry.,when he cannot reach it Geo George gets on his knees and starts to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,: Ella/z : mother come/3s (to) with a pool : net.,Ella's mother comes to with a pool net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,and I think she is try/ing to get the : airplane.,and I think she is trying to get the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,Ella/z mom is really really close to get/ing it.,Ella's mom is really really close to getting it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,and (George is) (Ella) the lifeguard elephant is look/ing happy.,and George is Ella the lifeguard elephant is looking happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,and George (is) still has a few tear/s in his eye/s.,and George is still has a few tears in his eyes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,when Ella/z mom get/3s George/z airplane for him : George is really happy.,when Ella's mom gets George's airplane for him George is really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,now George : has his airplane back.,now George has his airplane back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,and they are : look/ing more playful.,and they are looking more playful +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,once upon a time (there was a little : um) (there were a) there was a little dog and a little rabbit.,once upon a time there was a little um there were a there was a little dog and a little rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,the little dog/z name was Percy.,the little dog's name was Percy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,and the rabbit/z name was Bob.,and the rabbit's name was Bob +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,Bob and Percy were make/ing a sandcastle near a lake or an ocean.,Bob and Percy were making a sandcastle near a lake or an ocean +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,Bob dump/ed (sa) sand all over : Percy/z sandcastle.,Bob dumped sa sand all over Percy's sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,(um) Bob and Percy were both shock/ed about the sandcastle.,um Bob and Percy were both shocked about the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,Percy start/ed cry/ing and try/ed to rebuild it while : Bob was think/ing about what he did.,Percy started crying and tried to rebuild it while Bob was thinking about what he did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,once upon a time : there was Bob and Percy got back together for a picnic.,once upon a time there was Bob and Percy got back together for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,Bob had pack/ed lot/s of food that he thought : was very good.,Bob had packed lots of food that he thought was very good +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,but Percy only had a very simple picnic (like sandwich) like a sandwich and juice.,but Percy only had a very simple picnic like sandwich like a sandwich and juice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,while Percy was eat/ing Bob start/ed to feel sick.,while Percy was eating Bob started to feel sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,Bob pass/ed out.,Bob passed out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,and Percy went to get : (doctor[-:]) : Doctor Peter.,and Percy went to get doctor Doctor Peter +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,Percy pull/ed Doctor Peter toward/3s Bob.,Percy pulled Doctor Peter towards Bob +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,Doctor Peter check/ed out the way Bob was feel/ing.,Doctor Peter checked out the way Bob was feeling +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,and Bob got back up.,and Bob got back up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,Doctor Peter made Bob feel : (a lot better) : a lot better.,Doctor Peter made Bob feel a lot better a lot better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,once upon a time Percy and Bob got together again.,once upon a time Percy and Bob got together again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,Percy was pull/ing (a w) a : blue wagon with a balloon tie/ed to it.,Percy was pulling a w a blue wagon with a balloon tied to it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,Bob want/ed to see the balloon.,Bob wanted to see the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,(Bob untie) (try/ed t) (is try) Bob (tr) try/ed to untie the balloon from Percy/z wagon.,Bob untie tried t is try Bob tr tried to untie the balloon from Percy's wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,Bob succeed/ed on do/ing it.,Bob succeeded on doing it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,and the balloon float/ed away.,and the balloon floated away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,while Bob was look/ing up Percy got really mad at him.,while Bob was looking up Percy got really mad at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,while Percy was be/ing angry (and) : Bob (walk/ed) saw that a balloon bunny was stand/ing : on the sidewalk.,while Percy was being angry and Bob walked saw that a balloon bunny was standing on the sidewalk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,and he walk/ed over to him.,and he walked over to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,Percy start/ed look/ing at Bob while he pick/ed out another balloon for Percy.,Percy started looking at Bob while he picked out another balloon for Percy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,(but he) but now he notice/ed that the balloon/s were five cent/s.,but he but now he noticed that the balloons were five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,and he did not have any money.,and he did not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,"while Percy came up behind him and start/ed look/ing at the balloon/s [~_note:_seems_to_be_separate_sentence,_not_connected_to__previous_or_next_utterance_judging_from_intonation_or_meaning].",while Percy came up behind him and started looking at the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,: Bob (ra) saw that Doctor Peter was : (he) on the sidewalk and ran over to her.,Bob ra saw that Doctor Peter was he on the sidewalk and ran over to her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,Bob (point/ed to the balloon bunny) point/ed to Doctor Peter (at) to the balloon bunny and Percy.,Bob pointed to the balloon bunny pointed to Doctor Peter at to the balloon bunny and Percy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,: Doctor Peter paid for two balloon/s one for Percy and one for Bob.,Doctor Peter paid for two balloons one for Percy and one for Bob +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/711.slt,: now Percy : and Bob are happy.,now Percy and Bob are happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,once upon a time there was (a) an elephant that was play/ing with her ball.,once upon a time there was a an elephant that was playing with her ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and : it went into the water.,and it went into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and : so the : giraffe : said I will get it for you.,and so the giraffe said I will get it for you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,so he swam and swam to get the ball.,so he swam and swam to get the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and then he got it for the elephant.,and then he got it for the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and the elephant was happy.,and the elephant was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and she was (happy that) so happy that (she was) she was blush/ing.,and she was happy that so happy that she was she was blushing +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,one day (an) the same elephant and the same zebra came to the pool again.,one day an the same elephant and the same zebra came to the pool again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and : the elephant want/ed to go in the pool.,and the elephant wanted to go in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,so she ran to the diving board.,so she ran to the diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and she slip/ed : and fell : and got a scrape.,and she slipped and fell and got a scrape +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,so the zebra went to get a lifeguard.,so the zebra went to get a lifeguard +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and the lifeguard gave her a bandage.,and the lifeguard gave her a bandage +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and she was cry/ing and cry/ing.,and she was crying and crying +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,(so she) so as soon as the lifeguard put a bandaid on it : she felt better.,so she so as soon as the lifeguard put a bandaid on it she felt better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and then she could not go in the water because : it will come off.,and then she could not go in the water because it will come off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and it will hurt again.,and it will hurt again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,so she just stay/ed.,so she just stayed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and she just wait/ed on : the bench.,and she just waited on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and the lifeguard said no run/ing.,and the lifeguard said no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,one day (the zebra) and the elephant came to the pool [~_I__mean] the giraffe.,one day the zebra and the elephant came to the pool the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and then the giraffe flew the airplane.,and then the giraffe flew the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and : he try/ed to toward/s it : away from the pool [EU].,and he tried to towards it away from the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,try/ed to what?,tried to what +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,towards it [+_bch].,towards it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,make it not go onto the side where the pool was.,make it not go onto the side where the pool was +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and the elephant just grab/ed it out of (the) his hand.,and the elephant just grabbed it out of the his hand +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and : he was sad.,and he was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and the elephant was happy.,and the elephant was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and the elephant by accidentally: threw it into the water.,and the elephant by accidentally threw it into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and the : giraffe was mad because she by accidentally threw it in the water.,and the giraffe was mad because she by accidentally threw it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,but the lifeguard said it is okay.,but the lifeguard said it is okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,it will not get wreck/ed.,it will not get wrecked +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,(I) someone could get it.,I someone could get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,so : the elephant ask/ed the (i) lifeguard how to get it.,so the elephant asked the i lifeguard how to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and the lifeguard told her.,and the lifeguard told her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and the lifeguard try/ed to get it.,and the lifeguard tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,but he could not get it.,but he could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,it was too far.,it was too far +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,then (the) the giraffe was : sad.,then the the giraffe was sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and the elephant was embarrass/ed.,and the elephant was embarrassed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,so : an elephant came along : and got something that would get : that toy out of the water.,so an elephant came along and got something that would get that toy out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and then : it would come out.,and then it would come out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and she got it.,and she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and : she try/ed : to keep it in the net.,and she tried to keep it in the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,but it went into the net.,but it went into the net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and she got it out.,and she got it out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,"and the giraffe was happy, so happy (he was) his face went red.",and the giraffe was happy so happy he was his face went red +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and : the elephant was happy too.,and the elephant was happy too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,one day : a little doggie : found a friend that was a rabbit.,one day a little doggie found a friend that was a rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and he built a castle.,and he built a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and : the rabbit said could I help?,and the rabbit said could I help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and the doggie said yes.,and the doggie said yes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,(and the) and the rabbit built a castle.,and the and the rabbit built a castle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and it turn/ed out to be bigger.,and it turned out to be bigger +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,(and) : and the doggie was so happy that : he : was almost go/ing to [~_gonna] cry.,and and the doggie was so happy that he was almost going to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,but then it fell over.,but then it fell over +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and then the doggie cry/ed.,and then the doggie cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,one day the doggie and the rabbit met up together.,one day the doggie and the rabbit met up together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and they were go/ing to [~_gonna] have a picnic.,and they were going to have a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and then rabbit took : a lot/s of thing/s.,and then rabbit took a lots of things +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and the doggie did not.,and the doggie did not +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,so the doggie just ate a sandwich and a juice.,so the doggie just ate a sandwich and a juice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and then the rabbit was too full to play.,and then the rabbit was too full to play +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and then (the doggie was) [~_I_mean] the rabbit was so full he felt like he was go/ing to [~_gonna] puke.,and then the doggie was the rabbit was so full he felt like he was going to puke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,so then he ran to the doctor.,so then he ran to the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and : the doctor said let me see him.,and the doctor said let me see him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and : the doggie pull/ed the doctor so quick that the doctor could not even walk.,and the doggie pulled the doctor so quick that the doctor could not even walk +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and the doctor was : look/ing at the rabbit.,and the doctor was looking at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and the rabbit was sick.,and the rabbit was sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and it had a high fever.,and it had a high fever +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and then (the) : she made him feel all better.,and then the she made him feel all better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and the doggie was still at the picnic.,and the doggie was still at the picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,(once) one day the doggie was go/ing for a birthday party.,once one day the doggie was going for a birthday party +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and the rabbit came and said hey could I come?,and the rabbit came and said hey could I come +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and (the ra) the rabbit grab/ed the balloon so (he) he could go in the wagon.,and the ra the rabbit grabbed the balloon so he he could go in the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,but : it came off.,but it came off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,so he tie/ed it back on.,so he tied it back on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,but then the knot was too loose.,but then the knot was too loose +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,it flew away.,it flew away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,(but) and the doggie was really really mad and did not even go to the party.,but and the doggie was really really mad and did not even go to the party +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,but a rabbit sold lot/s of balloon/s that were the exact same.,but a rabbit sold lots of balloons that were the exact same +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and the rabbit was really happy.,and the rabbit was really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and it got one for the doggie.,and it got one for the doggie +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and (the) the (um) rabbit said yes you could have one.,and the the um rabbit said yes you could have one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and : he said thank you.,and he said thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,but it costed|cost[EW:cost] five dollar/s.,but it costed five dollars +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and the rabbit did not have any money at all.,and the rabbit did not have any money at all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,so : he did not give (an) neither one of them any balloon[EW:balloons].,so he did not give an neither one of them any balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,but there was (um : um) a doctor.,but there was um um a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,(and :) and the rabbit went to the doctor.,and and the rabbit went to the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and the doctor was just look/ing at something else.,and the doctor was just looking at something else +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and it did not even know that there was[EW:were] balloon/s over there.,and it did not even know that there was balloons over there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and then the rabbit told the rabbit that : the doctor could : ask for five dollar/s to get a balloon.,and then the rabbit told the rabbit that the doctor could ask for five dollars to get a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and : the rabbit said yes you could have five dollar/s for the balloon.,and the rabbit said yes you could have five dollars for the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and the rabbit was happy to give each of them one.,and the rabbit was happy to give each of them one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,so they both got one.,so they both got one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,and they were really happy.,and they were really happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/770.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,they went swim/ing.,they went swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,they drop/ed the ball in the pool!,they dropped the ball in the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,he swam to get it.,he swam to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,then she got the ball[-:].,then she got the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,then she was happy.,then she was happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,they went swim/ing.,they went swimming +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,she runned|run[EW:ran].,she runned +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,she slip/ed.,she slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,she got a[EW:an] owie.,she got a owie +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,then she (got a bit) got help.,then she got a bit got help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,she got a bandaid.,she got a bandaid +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,she sat on the bench.,she sat on the bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,then he had to talk : about the sign no run/ing.,then he had to talk about the sign no running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,they went swim/ing with a[EW:an] airplane.,they went swimming with a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,then they flew it.,then they flew it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,then she[!] want/ed to try the airplane.,then she wanted to try the airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,then she threw it in the water.,then she threw it in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,he got angry.,he got angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,then he[!] came.,then he came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,he said what happen/ed?,he said what happened +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,he try/ed to get it.,he tried to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,he could not get (ca) (ca) catch it.,he could not get ca ca catch it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,he start/ed to cry.,he started to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,(she) she had a net.,she she had a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,she want/ed to catch it for him.,she wanted to catch it for him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,she got[!] it.,she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,thank you.,thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,she is my hero!,she is my hero +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,thank you.,thank you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,they build a sandcastle.,they build a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,(they made a) and they got sand in the sand bucket.,they made a and they got sand in the sand bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,they poured it on the sandcastle.,they poured it on the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,it : broke.,it broke +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,he cry/ed.,he cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,they went for a picnic.,they went for a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,they ate and ate.,they ate and ate +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,he got (filled) sick.,he got filled sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,then he got sicker.,then he got sicker +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,he went to the doctor.,he went to the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,he told[-:] what was a[EW:the] matter to him [EU].,he told what was a matter to him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,(he) : (he) she look/ed at him.,he he she looked at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,then he was kind of[:_kinda] feel/ing better.,then he was kind of feeling better +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,they went for a walk with their wedding and balloon[!].,they went for a walk with their wedding and balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,he want/ed to touch the balloon.,he wanted to touch the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,he pull/ed[-:] the balloon.,he pulled the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,the balloon went in the air.,the balloon went in the air +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,they got sad.,they got sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,then he got very angry.,then he got very angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,then they saw another : balloon.,then they saw another balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,they want/ed to get[!] one.,they wanted to get one +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,he got one for his wedding!,he got one for his wedding +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,then : he[-:] said where is your money?,then he said where is your money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,but he had no[-:] money.,but he had no money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,they got sad : together[!].,they got sad together +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,then they went to their mommy doctor : to ask for a balloon.,then they went to their mommy doctor to ask for a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,she gave them (mon) money.,she gave them mon money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,and : then she got a balloon for both[!].,and then she got a balloon for both +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,then they play/ed.,then they played +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/669.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,one[-:][!] day[-:] (uh) a girl elephant name/ed[-:] : (uh) Sally was bounce/ing (uh) : a ball[-:] near a swimming pool.,one day uh a girl elephant named uh Sally was bouncing uh a ball near a swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(uh the) I was not done on that second page [+_bch].,uh the I was not done on that second page +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,you were not done okay.,you were not done okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and then (be) a zebra came.,and then be a zebra came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and : he was so surprise/ed[!].,and he was so surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(he) he like/ed : the ball.,he he liked the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and he want/ed to play with it.,and he wanted to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(uh) (and it) and when he was play/ing with it : it actually got stuck in the swimming pool.,uh and it and when he was playing with it it actually got stuck in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and the elephant said oh[-:][!] no[-:][!] said Sally.,and the elephant said oh no said Sally +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,do not worry I can probably : try to get it said : (ja) Joan.,do not worry I can probably try to get it said ja Joan +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,what is his name ?,what is his name +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(j) April [+_bch].,j April +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,oh okay.,oh okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(he swam and swam) April swam and swam.,he swam and swam April swam and swam +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,he swam hard as he can [EU].,he swam hard as he can +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and he : just[-:] reach/ed it.,and he just reached it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(when) when he[?] came back and gave her the ball Sally[!] : was so surprise/ed.,when when he came back and gave her the ball Sally was so surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and : they became friend/s.,and they became friends +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,Sally said thank you for get/ing my ball !,Sally said thank you for getting my ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and then : she gave him a kiss.,and then she gave him a kiss +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,one[-:][!] day[-:] : Sally and April : were come/ing to swim at the same swimming pool : before (w uh) the ball problem.,one day Sally and April were coming to swim at the same swimming pool before w uh the ball problem +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(there) (they s) they want/ed to swim!,there they s they wanted to swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and sally was so surprise/ed.,and sally was so surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(he) : he look/ed : at the water.,he he looked at the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and he said look a diving board!,and he said look a diving board +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,we can use that!,we can use that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,but a sign said : no (run/ing) : run/ing on : the : rink.,but a sign said no running running on the rink +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,he slip/ed!,he slipped +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and she did the split/s when he came down.,and she did the splits when he came down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(and he) : and April came to help.,and he and April came to help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,Sally cry/ed[-:] because she : hurt her leg.,Sally cried because she hurt her leg +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(and) : and April said are you okay?,and and April said are you okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,are you okay!,are you okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,then the lifeguard came : and said Sally : are you hurt?,then the lifeguard came and said Sally are you hurt +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and she said yes[-:][!] I am!,and she said yes I am +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(so she) : so the lifeguard went back : (and) to get some bandaid/s.,so she so the lifeguard went back and to get some bandaids +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,when : he came back he put the bandaid on.,when he came back he put the bandaid on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and he said : (and : uh) there we go.,and he said and uh there we go +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,oh : see that sign over there?,oh see that sign over there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,no run/ing on a rack[?].,no running on a rack +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,make sure you do not do that again.,make sure you do not do that again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(well I try again) (just make sure to) then the lifeguard said : want to[:_wanna] try again?,well I try again just make sure to then the lifeguard said want to try again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(you could) (you could) (do not put) (no run/ing) no run/ing though.,you could you could do not put no running no running though +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,or you will be kick/ed out.,or you will be kicked out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(uh : but I am) : you[-:] should have seen that sign[-:][!] before.,uh but I am you should have seen that sign before +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(uh) : and Sally said I am sorry.,uh and Sally said I am sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,one[-:][!] day[-:] when April came : April the zebra : actually the[-:] : (uh) zebra actually [EU].,one day when April came April the zebra actually the uh zebra actually +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and : (he) (she) he had a[EW:an] airplane.,and he she he had a airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,Sally was surprise/ed.,Sally was surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,this toy[!] : is call/ed the airplane (said) : said April.,this toy is called the airplane said said April +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(it) (uh) (I) April[-:] : the giraffe : was (play) : show/ing her (how) what it do/3s !,it uh I April the giraffe was play showing her how what it does +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(it was like) and Sally was like [~_makes_sound_'woo_-:'] can I play with it ?,it was like and Sally was like can I play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and : she grab|grab[EW:grabbed] [!] it away.,and she grab it away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(and) : and she began to play with it.,and and she began to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and he said hey[-:] that is mine !,and he said hey that is mine +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,he was like you got to[:_gotta] get me.,he was like you got to get me +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(you[!]) : and Sally drop/ed it.,you and Sally dropped it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(and he said) and he felt[?] so sad.,and he said and he felt so sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,he said : you[-:][!] drop/ed it in the swimming pool.,he said you dropped it in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,oops : said Sally.,oops said Sally +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,[~_makes_sound_'rrr'] April was like so mad : (when) : at Sally.,April was like so mad when at Sally +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,he say/3s I am really sorry.,he says I am really sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,I I I am !,I I I am +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,lifeguard : (said) : said (I) what is the matter : with you ?,lifeguard said said I what is the matter with you +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(a) April said : (sa) Sally drop/ed my airplane in the swimming pool !,a April said sa Sally dropped my airplane in the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,I was really sorry said Sally !,I was really sorry said Sally +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,I was !,I was +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(well) : well April said he did on purpose though.,well well April said he did on purpose though +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,all right we *will try to get it the lifeguard said.,all right we try to get it the lifeguard said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,when he try/ed[-:] : he could not get it.,when he tried he could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and April said oh rat/s I : cannot get my toy again.,and April said oh rats I cannot get my toy again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and[-:] Sally said : (uh uh) I will look so sorry.,and Sally said uh uh I will look so sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(the zebra) : the zebra was so[-:] sad.,the zebra the zebra was so sad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,he cry/ed.,he cried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and : Sally said I am really really really really really really sorry.,and Sally said I am really really really really really really sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and[-:] I could probably give you a kiss.,and I could probably give you a kiss +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,no[-:] you did that really on purpose now.,no you did that really on purpose now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,lifeguard (di) could not do anything.,lifeguard di could not do anything +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,: then[-:] : the lady who work/ed for : the build/ing : came and : had a net.,then the lady who wrought for the building came and had a net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,yay[-:][!] hip hip hooray (all) they all : said.,yay hip hip hooray all they all said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and : he try/ed it.,and he tried it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,she got[!] it.,she got it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and then he scoop/ed it.,and then he scooped it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(and they all) (and they all[-:]) and the (airplane barely) toy airplane (land) came out of the swimming pool.,and they all and they all and the airplane barely toy airplane land came out of the swimming pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and April had it back.,and April had it back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,he was really (s) happy now.,he was really s happy now +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(he s) : when the lady : who work/ed for the building name/ed : (uh) (sa uh) : (sal) (Sally) actually Sally/z (mo) mother : who work/ed for the building : (ap) (he) she gave : April (her) her airplane.,he s when the lady who wrought for the building named uh sa uh sal Sally actually Sally's mo mother who wrought for the building ap he she gave April her her airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and April was so[-:] happy.,and April was so happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and Sally said that is okay.,and Sally said that is okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,I do not want to play with it no[EW:any] more !,I do not want to play with it no more +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,giraffe (uh lo) (hug/ed it) love/ed it the rest : of the day.,giraffe uh lo hugged it loved it the rest of the day +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,one[!] day (a rabbit) : a dog (was take)[?] was build/ing a sandcastle.,one day a rabbit a dog was take was building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(name/ed) and he was name/ed : (ra) (uh ra) Billy.,named and he was named ra uh ra Billy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and a rabbit came.,and a rabbit came +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(he) his : name was Easter.,he his name was Easter +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,Easter want/ed to : play in the sandbox too.,Easter wanted to play in the sandbox too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(uh) what was : the dog/z name [+_bch]?,uh what was the dog's name +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,your story you make it up.,your story you make it up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,john [+_bch].,john +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and : he[-:] let him play in[-:] the sandbox.,and he let him play in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,Easter (wan) (was) was : put/ing sand in the bucket : (and) and[-:] (sh) when : John : (was : make/ing) was still build/ing a sandcastle.,Easter wan was was putting sand in the bucket and and sh when John was making was still building a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and Easter dump/ed : the : bucket of sand on top (of) : of John/z sandcastle.,and Easter dumped the bucket of sand on top of of John's sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,she was very angry[-:] at him.,she was very angry at him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,he was very sad[-:] actually.,he was very sad actually +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and she cry/ed my sandcastle my sandcastle is all gone!,and she cried my sandcastle my sandcastle is all gone +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and he just said sorry[-:].,and he just said sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,one[!] day : easter rabbit was (come/ing) walk/ing down the road when (he seed[EW:saw] johnny) (he see) he saw John.,one day easter rabbit was coming walking down the road when he seed johnny he see he saw John +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(hey) hi John!,hey hi John +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,hi Easter!,hi Easter +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,want to have a picnic today?,want to have a picnic today +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,all right!,all right +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(pic) Easter had a lot of stuff.,pic Easter had a lot of stuff +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,he had : carrot/s : cake chocolate : (um) jam : cookie/s : and chip/s.,he had carrots cake chocolate um jam cookies and chips +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,oh sure that is a lot of stuff said john.,oh sure that is a lot of stuff said john +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,I have a sandwich and some juice.,I have a sandwich and some juice +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,that is all.,that is all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,well (you) you should eat a lot : said easter.,well you you should eat a lot said easter +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,so : I will : eat all this stuff in one minute (sa) he said.,so I will eat all this stuff in one minute sa he said +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(I) : and he eat|eat[EW:ate] it.,I and he eat it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and he got a tummyache.,and he got a tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,I got a big[?] tummyache [~_sneezes].,I got a big tummyache +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,I feel sick.,I feel sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,I feel real[!][-:] sick.,I feel real sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,I think I *am go/ing to [~_gonna] eat for a week.,I think I going to eat for a week +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and then a doctor was walk/ing (uh) by the way : along : [~__sneezes] the path [~_sneezes].,and then a doctor was walking uh by the way along the path +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and (he) : (uh) : John went up to the doctor.,and he uh John went up to the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,doctor doctor : can you help a friend (of mi) of mine [~__sneezes]!,doctor doctor can you help a friend of mi of mine +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,sure said the doctor.,sure said the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(so he went) : so he went.,so he went so he went +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,it is (o) over here over here : (said the) (said) said John.,it is o over here over here said the said said John +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,someone gots[EW:has] a tummyache : said the doctor.,someone gots a tummyache said the doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,let us see.,let us see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(he sh) I should take his temperature.,he sh I should take his temperature +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(sh) he is really hot.,sh he is really hot +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(ne) (then the doctor) I think (I need/3s) he need/3s an appointment.,ne then the doctor I think I needs he needs an appointment +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,come on!,come on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,oh come on.,oh come on +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(you) (we got to have a br) (you uh got have) (you got) (you can have a) you have brain surgery too.,you we got to have a br you uh got have you got you can have a you have brain surgery too +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,make sure you do not eat next time okay?,make sure you do not eat next time okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,or you will get sick.,or you will get sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,okay!,okay +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,hello[!] Easter said to John.,hello Easter said to John +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,I got a wagon : with a balloon[!][-:] on it!,I got a wagon with a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,hey can I have the balloon!,hey can I have the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,sure you can.,sure you can +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(I cut[?] off) : (l) [~_no] (s) look at that[-:].,I cut off l s look at that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,it is got a balloon[-:] !,it is got a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,that is the balloon!,that is the balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,oh!,oh +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,I never seen|see[EW:saw] one of these in age/s.,I never seen one of these in ages +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,can I have it?,can I have it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,oh sure you can.,oh sure you can +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(it is really) so he try/ed to tie it off.,it is really so he tried to tie it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and he did.,and he did +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,but it fell away[-:] !,but it fell away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,it float/ed away.,it floated away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and : they both could not get it.,and they both could not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,now what *am I go/ing to [~_gonna] do.,now what I going to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,it float|float[EW:floated] away.,it float away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and : John was so[!] angry.,and John was so angry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,he want/ed his balloon back.,he wanted his balloon back +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,do not worry.,do not worry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,do not worry.,do not worry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,I will try to get it.,I will try to get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,look : over there!,look over there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,there is a (b) balloon man : (said) : said John.,there is a b balloon man said said John +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,I *am go/ing to [~_gonna] get (one o) (t) probably two over there.,I going to get one o t probably two over there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,can I have one of those balloon/s please?,can I have one of those balloons please +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,oh sure you can.,oh sure you can +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(but you got) : (k) and he said (k uh) but you got[EW:have] to pay (fi) : five cent/s for the balloon/s.,but you got k and he said k uh but you got to pay fi five cents for the balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(uh) and he is check/ing his pocket/s.,uh and he is checking his pockets +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,he gots[EW:has] no money left.,he gots no money left +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,oh man.,oh man +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(and what are w) then : (april : and) [~_actually] John and Easter : did not know what to do.,and what are w then april and John and Easter did not know what to do +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,so there was a doctor stand/ing by.,so there was a doctor standing by +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and (uh) he said I will go ask her : for some money.,and uh he said I will go ask her for some money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(co) and he went there.,co and he went there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and he said can I have some money please for two of those balloon/s!,and he said can I have some money please for two of those balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and he is like oh sure you can!,and he is like oh sure you can +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and he paid for them : five cent/s.,and he paid for them five cents +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and they said hip hip hooray[-:] : (they all shout/ed) (k) (the) April and Easter shout/ed.,and they said hip hip hooray they all shouted k the April and Easter shouted +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,and they (both had their balloon/s) both had balloon/s.,and they both had their balloons both had balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,(all) [-:] and they play/ed with their balloon/s all[-:] day.,all and they played with their balloons all day +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/922.slt,the end [+_bch].,the end +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,(Um) there is an elephant and a giraffe play/ing with (a balloon) : [~_or] a ball.,Um there is an elephant and a giraffe playing with a balloon a ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and then the ball fall/3s into : the water.,and then the ball falls into the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,so the giraffe try/3s to : swim out and get it.,so the giraffe tries to swim out and get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and the elephant is worry/ed.,and the elephant is worried +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,then the giraffe give/3s the elephant back her ball.,then the giraffe gives the elephant back her ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and the elephant is happy.,and the elephant is happy +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,(ah) then (a) the giraffe get/3s out of the water.,ah then a the giraffe gets out of the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and the elephant : will not let him have the ball.,and the elephant will not let him have the ball +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,(Um) they are stand/ing by the pool.,Um they are standing by the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and it look/3s like they are ready to swim.,and it looks like they are ready to swim +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and (a) the elephant look/3s really excite/ed to go in the water.,and a the elephant looks really excited to go in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,so she run/3s across the edge of the pool.,so she runs across the edge of the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and then she slip/3s and fall/3s.,and then she slips and falls +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and the giraffe is really scare/ed.,and the giraffe is really scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,then the lifeguard come/3s to help the elephant and the giraffe.,then the lifeguard comes to help the elephant and the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and then he put/3s a bandaid on the elephant/z knee.,and then he puts a bandaid on the elephant's knee +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,(um) the elephant has to sit down on a bench.,um the elephant has to sit down on a bench +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and it look/3s like she is being told that she should not run on (the) the side of the pool.,and it looks like she is being told that she should not run on the the side of the pool +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and then she feel/3s really ashame/ed of herself for run/ing.,and then she feels really ashameed of herself for running +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,(ah) the elephant and the giraffe : are stand/ing by the pool again.,ah the elephant and the giraffe are standing by the pool again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and the giraffe has an airplane.,and the giraffe has an airplane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and he is play/ing around with it.,and he is playing around with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and the elephant look/3s really surprise/ed.,and the elephant looks really surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,so the elephant grab/3s it away from the giraffe.,so the elephant grabs it away from the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and she start/3s to play with it.,and she starts to play with it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and then it fall/3s in the water.,and then it falls in the water +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and the elephant : look/3s like she is kind of scare/ed : because she do/3s not want the giraffe to get angry at her.,and the elephant looks like she is kind of scared because she does not want the giraffe to get angry at her +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and then the giraffe start/3s to get really mad.,and then the giraffe starts to get really mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and the elephant is start/ing to get (um) : a little scare/ed.,and the elephant is starting to get um a little scared +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and then the lifeguard come/3s.,and then the lifeguard comes +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and the elephant and the giraffe : (uh looks) look like surprise/ed.,and the elephant and the giraffe uh looks look like surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and then the elephant is explain/ing to the lifeguard what happen/ed : with the plane.,and then the elephant is explaining to the lifeguard what happened with the plane +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,so the lifeguard try/3s to grab the plane : away.,so the lifeguard tries to grab the plane away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and he can not get it.,and he can not get it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,so the giraffe start/3s to cry.,so the giraffe starts to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and the : elephant (um) : look/3s really : ashame/ed.,and the elephant um looks really ashameed +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and she is[EW:has] got a little net.,and she is got a little net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and (then she scoop/3s out the) then she scoop/3s out the plane with her net.,and then she scoops out the then she scoops out the plane with her net +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and it look/3s like : they are a little relieve/ed.,and it looks like they are a little relieved +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and then she give/3s the plane back to : the giraffe.,and then she gives the plane back to the giraffe +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and then the giraffe is really happy again.,and then the giraffe is really happy again +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and so is the elephant.,and so is the elephant +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,there is[EW:are]: two rabbit/s.,there is two rabbits +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and they are play/ing in the sandbox.,and they are playing in the sandbox +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and they made a sandcastle.,and they made a sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,(oh) [~_I_mean] a rabbit and a dog.,oh a rabbit and a dog +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and (uh) the dog is : finish/ing make/ing the sandcastle.,and uh the dog is finishing making the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and the rabbit is : play/ing with sand in a bucket.,and the rabbit is playing with sand in a bucket +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,then he dump/3s the sand on top of (the castle) the sandcastle.,then he dumps the sand on top of the castle the sandcastle +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and (a) the rabbit it look/3s like oh no [EU].,and a the rabbit it looks like oh no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and the dog is sit/ing there.,and the dog is sitting there +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and he look/3s really surprise/ed.,and he looks really surprised +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,then the dog start/3s to cry.,then the dog starts to cry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and the rabbit : look/3s like he is try/ing to say that (oh) I am really sorry.,and the rabbit looks like he is trying to say that oh I am really sorry +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,I did not mean to do that.,I did not mean to do that +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,the : dog and the rabbit (are) it look/3s like they are go/ing to a picnic.,the dog and the rabbit are it looks like they are going to a picnic +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and they sit down.,and they sit down +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and : the dog is eat/ing his food.,and the dog is eating his food +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and the rabbit has all this : food out.,and the rabbit has all this food out +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and he is just : eat/ing it all.,and he is just eating it all +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,(and the dog just) and the dog continue/3s eat/ing.,and the dog just and the dog continues eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and then the rabbit is really full : like he is go/ing to : burst.,and then the rabbit is really full like he is going to burst +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,then the rabbit start/3s to get really sick.,then the rabbit starts to get really sick +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and the dog is just still eat/ing.,and the dog is just still eating +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,then (um) the dog rush/3s for help.,then um the dog rushes for help +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and she find/3s another rabbit.,and she finds another rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and then she pull/3s the other rabbit towards (the ah) (the) rabbit that ate too much.,and then she pulls the other rabbit towards the ah the rabbit that ate too much +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and then she (help/3s) help/3s (the) the rabbit that ate too much because she is a doctor.,and then she helps helps the the rabbit that ate too much because she is a doctor +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and then she take/3s the : rabbit home.,and then she takes the rabbit home +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,[~_like] : she just take/3s him.,she just takes him +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,the rabbit is walk/ing down the road.,the rabbit is walking down the road +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and the dog has : (a cart and) (a w) a wagon with a balloon on it.,and the dog has a cart and a w a wagon with a balloon on it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and then the rabbit is : point/ing to the balloon like he really want/3s it.,and then the rabbit is pointing to the balloon like he really wants it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and then he try/3s to untie it off of the wagon.,and then he tries to untie it off of the wagon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and then the dog look/3s like she is try/ing to say no.,and then the dog looks like she is trying to say no +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,no do not take it off.,no do not take it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,then the rabbit take/3s it off.,then the rabbit takes it off +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and it fly/3s away.,and it flies away +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and the dog and the rabbit try to grab it.,and the dog and the rabbit try to grab it +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and then the dog get/3s really angry at the rabbit.,and then the dog gets really angry at the rabbit +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and (um) the dog is still mad.,and um the dog is still mad +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and the rabbit see/3s : someone who is sell/ing balloon/s.,and the rabbit sees someone who is selling balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,so he ask/3s the : person who is sell/ing balloon/s if he could have a balloon.,so he asks the person who is selling balloons if he could have a balloon +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,but he do/3s not have any money.,but he does not have any money +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and : the guy say/3s that it is five cent/s for balloon/s.,and the guy says that it is five cents for balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,so the dog come/3s up.,so the dog comes up +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and he see/3s the rabbit sit/ing there by the balloon : seller.,and he sees the rabbit sitting there by the balloon seller +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and the doctor rabbit is stand/ing in the middle of the road.,and the doctor rabbit is standing in the middle of the road +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and the rabbit come/3s to see.,and the rabbit comes to see +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,then he tell/3s the doctor that (um) there is[EW:are] balloon/s.,then he tells the doctor that um there is balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,and she give/3s the balloon man money for balloon/s.,and she gives the balloon man money for balloons +/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/data/ENNI_SALT/train/929.slt,then the dog and the rabbit are really happy because they both have balloon/s.,then the dog and the rabbit are really happy because they both have balloons diff --git a/enni_processing_results.json b/enni_processing_results.json new file mode 100644 index 0000000000000000000000000000000000000000..ff17db2132f8c92af075aea16e557d0619a09871 --- /dev/null +++ b/enni_processing_results.json @@ -0,0 +1,25 @@ +{ + "SLI": { + "total_files": 66, + "processed_files": 65, + "failed_files": 1, + "total_cunits": 6795, + "total_ignored_boundaries": 436, + "average_processing_time": 50.25714593945128, + "failed_files_list": [ + "572.mp3" + ] + }, + "TD": { + "total_files": 287, + "processed_files": 285, + "failed_files": 2, + "total_cunits": 26378, + "total_ignored_boundaries": 1465, + "average_processing_time": 42.55078182818582, + "failed_files_list": [ + "509.mp3", + "439.mp3" + ] + } +} \ No newline at end of file diff --git a/environment_sate_1.5.yml b/environment_sate_1.5.yml new file mode 100644 index 0000000000000000000000000000000000000000..f6045e4284198fe2c2cf72051308dbd7d7edae41 --- /dev/null +++ b/environment_sate_1.5.yml @@ -0,0 +1,188 @@ +name: SATEv1.5 +channels: + - conda-forge + - defaults + - https://repo.anaconda.com/pkgs/main + - https://repo.anaconda.com/pkgs/r +dependencies: + - _libgcc_mutex=0.1=main + - _openmp_mutex=5.1=1_gnu + - bzip2=1.0.8=h5eee18b_6 + - ca-certificates=2025.8.3=hbd8a1cb_0 + - expat=2.7.1=h6a678d5_0 + - ffmpeg=4.3.2=hca11adc_0 + - freetype=2.10.4=h0708190_1 + - gmp=6.2.1=h58526e2_0 + - gnutls=3.6.13=h85f3911_1 + - lame=3.100=h7f98852_1001 + - ld_impl_linux-64=2.40=h12ee557_0 + - libffi=3.4.4=h6a678d5_1 + - libgcc-ng=11.2.0=h1234567_1 + - libgomp=11.2.0=h1234567_1 + - libpng=1.6.37=h21135ba_2 + - libstdcxx-ng=11.2.0=h1234567_1 + - libuuid=1.41.5=h5eee18b_0 + - libxcb=1.17.0=h9b100fa_0 + - ncurses=6.5=h7934f7d_0 + - nettle=3.6=he412f7d_0 + - openh264=2.1.1=h780b84a_0 + - openssl=3.0.17=h5eee18b_0 + - pip=25.1=pyhc872135_2 + - pthread-stubs=0.3=h0ce48e5_1 + - python=3.10.18=h1a3bd86_0 + - readline=8.2=h5eee18b_0 + - setuptools=78.1.1=py310h06a4308_0 + - sqlite=3.50.2=hb25bd0a_1 + - tk=8.6.14=h993c535_1 + - wheel=0.45.1=py310h06a4308_0 + - x264=1!161.3030=h7f98852_1 + - xorg-libx11=1.8.12=h9b100fa_1 + - xorg-libxau=1.0.12=h9b100fa_0 + - xorg-libxdmcp=1.1.5=h9b100fa_0 + - xorg-xorgproto=2024.1=h5eee18b_1 + - xz=5.6.4=h5eee18b_1 + - zlib=1.2.13=h5eee18b_1 + - pip: + - adapters==1.2.0 + - aiohappyeyeballs==2.6.1 + - aiohttp==3.12.15 + - aiosignal==1.4.0 + - alembic==1.16.4 + - antlr4-python3-runtime==4.9.3 + - asteroid-filterbanks==0.4.0 + - async-timeout==5.0.1 + - attrs==25.3.0 + - audioread==3.0.1 + - blinker==1.9.0 + - cached-property==2.0.1 + - certifi==2025.8.3 + - cffi==1.17.1 + - charset-normalizer==3.4.2 + - click==8.2.1 + - colorlog==6.9.0 + - contourpy==1.3.2 + - cycler==0.12.1 + - decorator==5.2.1 + - docopt==0.6.2 + - einops==0.8.1 + - emoji==2.14.1 + - ffmpeg-python==0.2.0 + - filelock==3.18.0 + - flask==3.1.1 + - fonttools==4.59.0 + - frozenlist==1.7.0 + - fsspec==2025.7.0 + - future==1.0.0 + - greenlet==3.2.3 + - hf-xet==1.1.5 + - huggingface-hub==0.34.3 + - hyperpyyaml==1.2.2 + - idna==3.10 + - itsdangerous==2.2.0 + - jinja2==3.1.6 + - joblib==1.5.1 + - julius==0.2.7 + - kiwisolver==1.4.8 + - lazy-loader==0.4 + - librosa==0.11.0 + - lightning==2.5.2 + - lightning-utilities==0.15.1 + - llvmlite==0.44.0 + - mako==1.3.10 + - markdown-it-py==3.0.0 + - markupsafe==3.0.2 + - matplotlib==3.10.5 + - mdurl==0.1.2 + - mosestokenizer==1.2.1 + - mpmath==1.3.0 + - msgpack==1.1.1 + - multidict==6.6.3 + - networkx==3.4.2 + - nltk==3.9.1 + - numba==0.61.2 + - numpy==2.2.6 + - nvidia-cublas-cu12==12.6.4.1 + - nvidia-cuda-cupti-cu12==12.6.80 + - nvidia-cuda-nvrtc-cu12==12.6.77 + - nvidia-cuda-runtime-cu12==12.6.77 + - nvidia-cudnn-cu12==9.5.1.17 + - nvidia-cufft-cu12==11.3.0.4 + - nvidia-cufile-cu12==1.11.1.6 + - nvidia-curand-cu12==10.3.7.77 + - nvidia-cusolver-cu12==11.7.1.2 + - nvidia-cusparse-cu12==12.5.4.2 + - nvidia-cusparselt-cu12==0.6.3 + - nvidia-nccl-cu12==2.26.2 + - nvidia-nvjitlink-cu12==12.6.85 + - nvidia-nvtx-cu12==12.6.77 + - omegaconf==2.3.0 + - openfile==0.0.7 + - optuna==4.4.0 + - packaging==25.0 + - pandas==2.3.1 + - pillow==11.3.0 + - platformdirs==4.3.8 + - pooch==1.8.2 + - prettytable==3.16.0 + - primepy==1.3 + - propcache==0.3.2 + - protobuf==6.31.1 + - pyannote-audio==3.3.2 + - pyannote-core==5.0.0 + - pyannote-database==5.1.3 + - pyannote-metrics==3.2.1 + - pyannote-pipeline==3.0.1 + - pycparser==2.22 + - pygments==2.19.2 + - pyinflect==0.5.1 + - pyparsing==3.2.3 + - python-dateutil==2.9.0.post0 + - pytorch-lightning==2.5.2 + - pytorch-metric-learning==2.8.1 + - pytz==2025.2 + - pyyaml==6.0.2 + - regex==2025.7.34 + - requests==2.32.4 + - rich==14.1.0 + - ruamel-yaml==0.18.14 + - ruamel-yaml-clib==0.2.12 + - safetensors==0.5.3 + - scikit-learn==1.7.1 + - scipy==1.15.3 + - seaborn==0.13.2 + - semver==3.0.4 + - sentencepiece==0.2.0 + - shellingham==1.5.4 + - six==1.17.0 + - skops==0.12.0 + - sortedcontainers==2.4.0 + - soundfile==0.13.1 + - soxr==0.5.0.post1 + - speechbrain==1.0.3 + - sqlalchemy==2.0.42 + - stanza==1.10.1 + - sympy==1.14.0 + - tabulate==0.9.0 + - tensorboardx==2.6.4 + - threadpoolctl==3.6.0 + - tokenizers==0.21.4 + - tomli==2.2.1 + - toolwrapper==2.1.0 + - torch==2.7.1 + - torch-audiomentations==0.12.0 + - torch-pitch-shift==1.2.5 + - torchaudio==2.7.1 + - torchmetrics==1.8.0 + - tqdm==4.67.1 + - transformers==4.51.3 + - triton==3.3.1 + - typer==0.16.0 + - typing-extensions==4.14.1 + - tzdata==2025.2 + - uctools==1.3.0 + - urllib3==2.5.0 + - wcwidth==0.2.13 + - werkzeug==3.1.3 + - wtpsplit==2.1.6 + - yarl==1.20.1 +prefix: /home/easgrad/shuweiho/workspace/miniconda3/envs/SATEv1.5 diff --git a/eval_morpheme.py b/eval_morpheme.py new file mode 100644 index 0000000000000000000000000000000000000000..83257604986cb26934935ceb0696de6705388340 --- /dev/null +++ b/eval_morpheme.py @@ -0,0 +1,140 @@ +import csv +import os +from collections import Counter +from morpheme.morpheme_stanza_v1 import extract_inflectional_morphemes + +# Morpheme mappings +MORPHEME_NUM_MAP = { + "Plural": "1", + "Possessive": "2", + "3rd Person Singular": "3", + "Past Tense": "4", + "Progressive": "6" +} +MORPHEME_LABEL_MAP = {v: k for k, v in MORPHEME_NUM_MAP.items()} +ALL_MORPHEME_LABELS = list(MORPHEME_NUM_MAP.keys()) + +class Detector: + def analyze(self, text): + annotations = extract_inflectional_morphemes(text) + print(f"\n🔎 DEBUG: Analyzing utterance: '{text}'") + for i, ann in enumerate(annotations): + print(f" Annotation {i}: {ann}") + filtered = [] + for a in annotations: + morph = a.get("inflectional_morpheme") + word = a.get("word") + if morph in MORPHEME_NUM_MAP and word: + filtered.append((word.lower(), morph)) + else: + print(f" Skipping invalid annotation: {a}") + print(f" Filtered predictions: {filtered}") + return filtered + +def to_morpheme_string(morpheme_list, utterance): + tokens = utterance.strip().split() + token_tags = ['0'] * len(tokens) + lowered_tokens = [t.lower() for t in tokens] + + for word, morph in morpheme_list: + matches = [i for i, tok in enumerate(lowered_tokens) if tok == word] + if matches: + token_tags[matches[0]] = MORPHEME_NUM_MAP[morph] + else: + print(f"⚠ Word '{word}' not found in utterance: '{utterance}'") + return ''.join(token_tags) + +def eval_morpheme(dataset_path, morpheme_detector): + output_dir = "benchmark_result/morpheme" + os.makedirs(output_dir, exist_ok=True) + output_path = os.path.join(output_dir, "result.csv") + + with open(dataset_path, newline='', encoding='utf-8') as f: + reader = csv.DictReader(f) + data = list(reader) + + results = [] + TP_counter = Counter() + FP_counter = Counter() + FN_counter = Counter() + + for i, row in enumerate(data): + print("\n=== NEW SAMPLE ===") + utterance = row["cleaned_transcription"] + gold_str = row.get("morpheme_code", "") + print(f"Row {i}: {utterance}") + print(f"Raw GOLD code: '{gold_str}'") + + gold = [] + if gold_str: + gold_numbers = [x.strip() for x in gold_str.split()] + gold = [MORPHEME_LABEL_MAP.get(num) for num in gold_numbers if num in MORPHEME_LABEL_MAP] + print(f"Parsed GOLD labels: {gold}") + + pred_morphemes = morpheme_detector.analyze(utterance) + + gold_set = set(gold) + pred_set = set([m for (_, m) in pred_morphemes]) + + TP = gold_set & pred_set + FP = pred_set - gold_set + FN = gold_set - pred_set + + if TP: print(f" TP: {TP}") + if FP: print(f"⚠ FP: {FP}") + if FN: print(f" FN: {FN}") + if not TP and not FP and not FN: print("No match — check formatting.") + + for m in TP: + TP_counter[m] += 1 + for m in FP: + FP_counter[m] += 1 + for m in FN: + FN_counter[m] += 1 + + predicted_str = to_morpheme_string(pred_morphemes, utterance) + token_count = len(utterance.strip().split()) + gold_str_fixed = ''.join(gold_str.split()).ljust(token_count, '0')[:token_count] + + results.append({ + "utterance": utterance, + "gold": gold_str_fixed, + "predicted": predicted_str, + }) + + with open(output_path, "w", newline='', encoding='utf-8') as f: + writer = csv.DictWriter(f, fieldnames=["utterance", "gold", "predicted"]) + writer.writeheader() + writer.writerows(results) + + # METRICS + print("\n\n=== Evaluation Metrics ===") + observed_labels = {m for m in TP_counter.keys() | FP_counter.keys() | FN_counter.keys()} + if "Comparative" in observed_labels: + eval_labels = ALL_MORPHEME_LABELS + else: + eval_labels = [m for m in ALL_MORPHEME_LABELS if m != "Comparative"] + + macro_p, macro_r, macro_f1 = 0, 0, 0 + for label in eval_labels: + TP = TP_counter[label] + FP = FP_counter[label] + FN = FN_counter[label] + precision = TP / (TP + FP) if TP + FP > 0 else 0 + recall = TP / (TP + FN) if TP + FN > 0 else 0 + f1 = 2 * precision * recall / (precision + recall) if precision + recall > 0 else 0 + macro_p += precision + macro_r += recall + macro_f1 += f1 + print(f"{MORPHEME_NUM_MAP[label]} ({label}): Precision={precision:.3f}, Recall={recall:.3f}, F1={f1:.3f}") + + n = len(eval_labels) + print("\n-- Macro-Averaged Metrics --") + print(f"Precision: {macro_p / n:.3f}") + print(f"Recall: {macro_r / n:.3f}") + print(f"F1 Score: {macro_f1 / n:.3f}") + +if __name__ == "__main__": + dataset_path = "./data/enni_salt_for_morpheme/test.csv" + morpheme_detector = Detector() + eval_morpheme(dataset_path, morpheme_detector) diff --git a/eval_segmentation.py b/eval_segmentation.py new file mode 100644 index 0000000000000000000000000000000000000000..60d69514d52f27cfdda2db346a7d373282289b26 --- /dev/null +++ b/eval_segmentation.py @@ -0,0 +1,126 @@ +import ast +import os +import re +import pandas as pd +from sklearn.metrics import precision_recall_fscore_support +from segmentation import segment_batchalign +from segmentation import segment_SaT +from segmentation import segment_SaT_cunit_3l +from segmentation import segment_SaT_cunit_12l +from segmentation import segment_SaT_cunit_3l_r32a64 +from segmentation import segment_SaT_cunit_3l_r64a128 +from segmentation import segment_SaT_cunit_3l_no_shuffle + +from tqdm import tqdm + +def clean_text(text): + return re.sub(r"[^\w\s]", "", text.lower()).strip() + + +def eval_segmentation(dataset_path, segmentation_model, model_name="unknown", chunk_num=10): + os.makedirs("benchmark_result/segmentation", exist_ok=True) + + df = pd.read_csv(dataset_path) + results = [] + + for i in tqdm(range(0, len(df), chunk_num), desc="Evaluating chunks"): + chunk = df.iloc[i:i + chunk_num] + if len(chunk) < chunk_num: + continue + + word_sequence = [] + gt_label_sequence = [] + + for row in chunk["cleaned_transcription"]: + if pd.isna(row): + continue + cleaned = clean_text(row) + words = cleaned.split() + if not words: + continue + word_sequence.extend(words) + gt_label_sequence.extend([0] * (len(words) - 1) + [1]) + + input_text = " ".join(word_sequence) + predicted_labels = segmentation_model(input_text) + + if len(predicted_labels) != len(gt_label_sequence): + print(f"Label length mismatch at chunk {i}. Skipping...") + continue + + results.append({ + "word_sequence": input_text, + "gt_label_sequence": " ".join(map(str, gt_label_sequence)), + "predict_label_sequence": " ".join(map(str, predicted_labels)) + }) + + result_df = pd.DataFrame(results) + result_df.to_csv(f"benchmark_result/segmentation/{model_name}_results.csv", index=False) + + all_gt = [] + all_pred = [] + + for row in results: + all_gt.extend(map(int, row["gt_label_sequence"].split())) + all_pred.extend(map(int, row["predict_label_sequence"].split())) + + tp = sum((g == 1 and p == 1) for g, p in zip(all_gt, all_pred)) + fp = sum((g == 0 and p == 1) for g, p in zip(all_gt, all_pred)) + fn = sum((g == 1 and p == 0) for g, p in zip(all_gt, all_pred)) + + precision, recall, f1, _ = precision_recall_fscore_support(all_gt, all_pred, average='binary', zero_division=0) + + print(f"{model_name} - TP: {tp}, FP: {fp}, FN: {fn}") + print(f"{model_name} - Precision: {precision:.3f}, Recall: {recall:.3f}, F1: {f1:.3f}") + + return precision, recall, f1 + + +if __name__ == "__main__": + dataset_path = "./data/enni_salt_for_segmentation/test.csv" + + # print("Evaluating BatchAlign segmentation model...") + # batchalign_precision, batchalign_recall, batchalign_f1 = eval_segmentation( + # dataset_path, segment_batchalign, "batchalign" + # ) + + print("\nEvaluating SaT segmentation model...") + sat_precision, sat_recall, sat_f1 = eval_segmentation( + dataset_path, segment_SaT, "SaT" + ) + + print("\nEvaluating SaT_cunit_3l segmentation model...") + sat_cunit_3l_precision, sat_cunit_3l_recall, sat_cunit_3l_f1 = eval_segmentation( + dataset_path, segment_SaT_cunit_3l, "SaT_cunit_3l" + ) + + print("\nEvaluating SaT_cunit_12l segmentation model...") + sat_cunit_12l_precision, sat_cunit_12l_recall, sat_cunit_12l_f1 = eval_segmentation( + dataset_path, segment_SaT_cunit_12l, "SaT_cunit_12l" + ) + + print("\nEvaluating SaT_cunit_3l_r32a64 segmentation model...") + sat_cunit_3l_r32a64_precision, sat_cunit_3l_r32a64_recall, sat_cunit_3l_r32a64_f1 = eval_segmentation( + dataset_path, segment_SaT_cunit_3l_r32a64, "SaT_cunit_3l_r32a64" + ) + + print("\nEvaluating SaT_cunit_3l_r64a128 segmentation model...") + sat_cunit_3l_r64a128_precision, sat_cunit_3l_r64a128_recall, sat_cunit_3l_r64a128_f1 = eval_segmentation( + dataset_path, segment_SaT_cunit_3l_r64a128, "SaT_cunit_3l_r64a128" + ) + + print("\nEvaluating SaT_cunit_3l_no_shuffle segmentation model...") + sat_cunit_3l_no_shuffle_precision, sat_cunit_3l_no_shuffle_recall, sat_cunit_3l_no_shuffle_f1 = eval_segmentation( + dataset_path, segment_SaT_cunit_3l_no_shuffle, "SaT_cunit_3l_no_shuffle" + ) + + print("\n" + "="*80) + print("COMPARISON RESULTS:") + print("="*80) + # print(f"BatchAlign - Precision: {batchalign_precision:.3f}, Recall: {batchalign_recall:.3f}, F1: {batchalign_f1:.3f}") + print(f"SaT - Precision: {sat_precision:.3f}, Recall: {sat_recall:.3f}, F1: {sat_f1:.3f}") + print(f"SaT_cunit_3l - Precision: {sat_cunit_3l_precision:.3f}, Recall: {sat_cunit_3l_recall:.3f}, F1: {sat_cunit_3l_f1:.3f}") + print(f"SaT_cunit_12l - Precision: {sat_cunit_12l_precision:.3f}, Recall: {sat_cunit_12l_recall:.3f}, F1: {sat_cunit_12l_f1:.3f}") + print(f"SaT_cunit_3l_r32a64 - Precision: {sat_cunit_3l_r32a64_precision:.3f}, Recall: {sat_cunit_3l_r32a64_recall:.3f}, F1: {sat_cunit_3l_r32a64_f1:.3f}") + print(f"SaT_cunit_3l_r64a128 - Precision: {sat_cunit_3l_r64a128_precision:.3f}, Recall: {sat_cunit_3l_r64a128_recall:.3f}, F1: {sat_cunit_3l_r64a128_f1:.3f}") + print(f"SaT_cunit_3l_no_shuffle - Precision: {sat_cunit_3l_no_shuffle_precision:.3f}, Recall: {sat_cunit_3l_no_shuffle_recall:.3f}, F1: {sat_cunit_3l_no_shuffle_f1:.3f}") \ No newline at end of file diff --git a/main_socket.py b/main_socket.py new file mode 100644 index 0000000000000000000000000000000000000000..358542c2f139e2a288da095e181eeab6b43f2ba1 --- /dev/null +++ b/main_socket.py @@ -0,0 +1,74 @@ +import os +import tempfile +import json +from flask import Flask, request, jsonify +from werkzeug.utils import secure_filename + +from transcription import translate_audio_file + +from segmentation import segment_batchalign +from segmentation import reorganize_transcription_c_unit +from annotation import annotate_maze_for_mazewhisper +from morpheme import stanza_v1 +from morpheme import annotate_morpheme + + + +app = Flask(__name__) + + +@app.route('/process', methods=['POST']) +def process_audio(): + if 'audio_file' not in request.files: + return jsonify({'error': 'Missing audio file '}), 400 + audio_file = request.files['audio_file'] + filename = secure_filename(audio_file.filename) + + suffix = os.path.splitext(filename)[1] or '.wav' + with tempfile.NamedTemporaryFile(delete=False, suffix=suffix) as tmp: + audio_path = tmp.name + audio_file.save(audio_path) + + device = request.form.get('device', 'cuda') + pause_threshold = float(request.form.get('pause_threshold', 0.5)) + num_speakers = int(request.form.get('num_speakers', 2)) + + app.logger.info(f"Processing uploaded audio: {audio_path}") + + result, session_id = translate_audio_file(model="mazeWhisper", audio_path = audio_path, device=device, original_filename=filename) + + cunit_count, ignored_count = reorganize_transcription_c_unit(session_id, segment_batchalign) + print(f"Created {cunit_count} C-units, ignored {ignored_count} boundaries") + + annotate_maze_for_mazewhisper(session_id) + + annotate_morpheme(session_id = session_id, morpheme_function = stanza_v1) + + + # annotate_pauses(session_id, pause_threshold) + # annotate_repetitions(session_id) + # # annotate_syllables(session_id) + # annotate_fillerwords(session_id) + # # annotate_transcript(session_id) + # annotate_morpheme(session_id) + # annotate_morpheme_omission(session_id) + + + + json_path = f"session_data/{session_id}/transcription_cunit.json" + if not os.path.isfile(json_path): + return jsonify({'error': f"Annotation file {json_path} not found"}), 500 + + with open(json_path, 'r', encoding='utf-8') as f: + transcription = json.load(f) + + try: + os.remove(audio_path) + except OSError: + pass + + return jsonify(transcription), 200 + + +if __name__ == "__main__": + app.run(host="0.0.0.0", port=7860, debug=True) diff --git a/morpheme/__init__.py b/morpheme/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..ef775d7aabae8db1ad461dacef215f4d7376a914 --- /dev/null +++ b/morpheme/__init__.py @@ -0,0 +1,2 @@ +from .morpheme_stanza_v1 import extract_inflectional_morphemes as stanza_v1 +from .morpheme_annotation import annotate_morpheme \ No newline at end of file diff --git a/morpheme/morpheme_annotation.py b/morpheme/morpheme_annotation.py new file mode 100644 index 0000000000000000000000000000000000000000..6ed6e0c58f99048425aaf3d5c6c68608114ba812 --- /dev/null +++ b/morpheme/morpheme_annotation.py @@ -0,0 +1,111 @@ +import os +import json + + +def create_text_clean(text_token: str): + tokens = text_token.split() + + final_tokens = [] + removed_count_map = [] + + skip_rep = skip_rev = False + word_index = 0 + + for token in tokens: + if token == "": + skip_rep = True + continue + if token == "": + skip_rep = False + continue + if token == "": + skip_rev = True + continue + if token == "": + skip_rev = False + continue + + is_special = token.startswith("<") and token.endswith(">") + + if not is_special: + if not (skip_rep or skip_rev): + final_tokens.append(token) + removed_count_map.append(word_index) + word_index += 1 + + text_clean = " ".join(final_tokens) + return text_clean, removed_count_map + + + +def restore_index_to_text(cleaned_index, removed_count_map): + """ + Restore index from text_clean back to original text index. + + Args: + cleaned_index (int): Index in the cleaned text + removed_count_map (list): Mapping from clean index to original text index + + Returns: + int: Original text index + """ + if 0 <= cleaned_index < len(removed_count_map): + return removed_count_map[cleaned_index] + else: + # Fallback to original index if out of bounds + return cleaned_index + + +def annotate_morpheme(session_id, morpheme_function, base_dir="session_data"): + """ + Annotate morphemes in transcription data. + + Args: + session_id (str): Session identifier + morpheme_function (callable): Function to extract morphemes from text + base_dir (str): Base directory containing session data + """ + base_dir = base_dir or os.getcwd() + json_file = os.path.join(base_dir, f"{session_id}/transcription_cunit.json") + + if not os.path.exists(json_file): + raise FileNotFoundError(f"{json_file} not found – make sure transcription step ran first.") + + with open(json_file, "r", encoding="utf-8") as f: + data = json.load(f) + + segments = data.get("segments", data) if isinstance(data, dict) else data + + for seg in segments: + text_token = seg.get("text_token", "") + + # Create text_clean by processing text_token + text_clean, removed_count_map = create_text_clean(text_token) + seg["text_clean"] = text_clean + + # Extract morphemes from text_clean using provided function + morphemes = morpheme_function(text_clean) + + # Restore morpheme indices to original text indices + for morpheme in morphemes: + cleaned_index = morpheme["index"] + original_index = restore_index_to_text(cleaned_index, removed_count_map) + morpheme["index"] = original_index + + seg["morphemes"] = morphemes + + with open(json_file, "w", encoding="utf-8") as f: + json.dump(data, f, ensure_ascii=False, indent=2) + + +if __name__ == "__main__": + # Example usage with morpheme_stanza_v1 + from morpheme_stanza_v1 import extract_inflectional_morphemes + + # Test the annotation function + session_id = "000367" # Replace with actual session ID + try: + annotate_morpheme(session_id, extract_inflectional_morphemes) + print(f"Morpheme annotation completed for session {session_id}") + except FileNotFoundError as e: + print(f"Error: {e}") \ No newline at end of file diff --git a/morpheme/morpheme_stanza_v1.py b/morpheme/morpheme_stanza_v1.py new file mode 100644 index 0000000000000000000000000000000000000000..2ee62e24c2087711a883cd62a9c970cd0b6f49b4 --- /dev/null +++ b/morpheme/morpheme_stanza_v1.py @@ -0,0 +1,205 @@ +# Morpheme Detector from SATE v1 + +import os +import json +import stanza +import re + +nlp = stanza.Pipeline( + lang="en", + processors="tokenize,pos,lemma", + tokenize_pretokenized=False, +) + +_EXPECTED_SUFFIXES = { + "Plural": {"s", "es"}, + "Possessive": {"'s", "s"}, + "Comparative": {"er"}, + "Superlative": {"est"}, + "3rd Person Singular": {"s", "es"}, + "Past Tense": {"ed"}, + "Past Participle": {"ed", "en", "n"}, + "Progressive": {"ing"}, + "Gerund": {"ing"}, +} + +_CONTRACTION_PARTICLES = { + "'ll": "will", # we'll, he'll + "'d": "would/had", # I'd, she'd + "'ve": "have", # we've, they've + "'re": "are", # you're, they're + "'m": "am", # I'm + "n't": "not", # isn't, didn't + "'s": "is/has", # what's, she's +} + +_S_TOKENS = {"'s", "’s"} + + +def is_possessive_candidate(tok): + return tok.text in _S_TOKENS and tok.upos == "PART" + + +def lcp(a: str, b: str) -> str: + i = 0 + while i < min(len(a), len(b)) and a[i].lower() == b[i].lower(): + i += 1 + return a[:i] + + +def strip_doubling(lemma: str, suf: str) -> str: + if suf and len(suf) >= 2 and suf[0] == lemma[-1]: + cand = suf[1:] + if any(cand in v for v in _EXPECTED_SUFFIXES.values()): + return cand + return suf + + +def get_suffix(lemma: str, surface: str) -> str: + return strip_doubling(lemma, surface[len(lcp(lemma, surface)):]) + + +def normalize_suffix(lemma: str, raw_suf: str, expected_set: set) -> str | None: + if raw_suf in expected_set: + return raw_suf + if lemma.lower().endswith("y") and raw_suf.startswith("i"): + alt = raw_suf[1:] + if alt in expected_set: + return alt + return None + + +def preprocess_text(text: str) -> tuple[str, list[int]]: + + original_words = text.split() + + position_map = [] # position_map[original_index] = cleaned_index + cleaned_words = [] + + for i, word in enumerate(original_words): + if re.match(r'\[.*\]', word): + position_map.append(-1) + else: + position_map.append(len(cleaned_words)) + cleaned_words.append(word) + + cleaned_text = ' '.join(cleaned_words) + return cleaned_text, position_map + + +def calculate_adjusted_index(cleaned_index: int, position_map: list[int]) -> int: + + for original_index, cleaned_pos in enumerate(position_map): + if cleaned_pos == cleaned_index: + return original_index + + + return cleaned_index + + +def extract_inflectional_morphemes(text: str): + cleaned_text, position_map = preprocess_text(text) + + doc = nlp(cleaned_text) + results = [] + + for sent in doc.sentences: + words = sent.words + i = 0 + while i < len(words): + w = words[i] + surf, lem, pos = w.text, w.lemma, w.upos + feats = {k: v for k, v in (f.split("=", 1) for f in (w.feats or "").split("|") if "=" in f)} + low_txt = surf.lower() + + if is_possessive_candidate(w) and i > 0: + prev = words[i - 1] + + if prev.upos in {"NOUN", "PROPN"}: + results.append({ + "word": prev.text + surf, + "lemma": prev.lemma, + "index": calculate_adjusted_index(i - 1, position_map), + "inflectional_morpheme": "Possessive", + "morpheme_form": "'/s", + }) + else: + results.append({ + "word": prev.text + surf, + "lemma": prev.lemma, + "index": calculate_adjusted_index(i - 1, position_map), + "inflectional_morpheme": "Contraction", + "morpheme_form": "'/s", + }) + i += 1 + continue + + if low_txt in _CONTRACTION_PARTICLES and i > 0: + prev = words[i - 1] + results.append({ + "word": prev.text + surf, + "lemma": prev.lemma, + "index": calculate_adjusted_index(i - 1, position_map), + "inflectional_morpheme": "Contraction", + "morpheme_form": low_txt, + }) + i += 1 + continue + + if feats.get("Poss") == "Yes" and pos in {"PRON", "DET"}: + low_lem, low_surf = lem.lower(), surf.lower() + suf = get_suffix(low_lem, low_surf) + morpheme_form = "/s" if suf in {"s", "es"} and low_lem + suf == low_surf else "" + results.append({ + "word": surf, + "lemma": lem, + "index": calculate_adjusted_index(i, position_map), + "inflectional_morpheme": "Possessive", + "morpheme_form": morpheme_form, + }) + i += 1 + continue + + inflect_type = None + if pos == "NOUN" and feats.get("Number") == "Plur": + inflect_type = "Plural" + elif pos == "ADJ" and feats.get("Degree") == "Cmp": + inflect_type = "Comparative" + elif pos == "ADJ" and feats.get("Degree") == "Sup": + inflect_type = "Superlative" + elif pos == "VERB" and feats.get("VerbForm") == "Fin" and feats.get("Tense") == "Pres" and feats.get("Person") == "3": + inflect_type = "3rd Person Singular" + elif pos == "VERB" and feats.get("VerbForm") == "Fin" and feats.get("Tense") == "Past": + inflect_type = "Past Tense" + elif pos == "VERB" and feats.get("VerbForm") == "Part": + if feats.get("Tense") == "Past" or w.xpos == "VBN": + inflect_type = "Past Participle" + elif feats.get("Tense") == "Pres" or w.xpos == "VBG": + inflect_type = "Progressive" + + if inflect_type: + if surf.lower() == lem.lower() and inflect_type not in {"Possessive", "Comparative", "Superlative"}: + i += 1 + continue + + raw_suffix = get_suffix(lem, low_txt) + canon = normalize_suffix(lem, raw_suffix, _EXPECTED_SUFFIXES[inflect_type]) + morpheme_form = f"/{canon}" if canon else "" + results.append({ + "word": surf, + "lemma": lem, + "index": calculate_adjusted_index(i, position_map), + "inflectional_morpheme": inflect_type, + "morpheme_form": morpheme_form, + }) + + i += 1 + + return results + + +if __name__ == "__main__": + print("First Test") + print(extract_inflectional_morphemes("I see that the elephant is a bounce bounceing three balls at a ball")) + print("Second Test") + print(extract_inflectional_morphemes("I see that the elephant is bounceing a ball")) \ No newline at end of file diff --git a/process_enni_dataset.py b/process_enni_dataset.py new file mode 100644 index 0000000000000000000000000000000000000000..c606d9d11c31aa11066ce54a3a0f299b020dc5c2 --- /dev/null +++ b/process_enni_dataset.py @@ -0,0 +1,236 @@ +#!/usr/bin/env python3 +""" +Script to process all MP3 files in ENNI SLI and TD datasets +Performs transcription and C-unit segmentation, then provides statistics +""" +import os +import glob +import json +import time +from pathlib import Path +from typing import Dict, List, Tuple + +from transcription import translate_audio_file +from segmentation import segment_batchalign +from segmentation.segment import reorganize_transcription_c_unit + + +def find_mp3_files(base_paths: List[str]) -> Dict[str, List[str]]: + """Find all MP3 files in the given directories""" + all_files = {} + + for base_path in base_paths: + if not os.path.exists(base_path): + print(f"Warning: Path does not exist: {base_path}") + continue + + mp3_files = glob.glob(os.path.join(base_path, "**/*.mp3"), recursive=True) + dataset_name = os.path.basename(base_path) + all_files[dataset_name] = mp3_files + print(f"Found {len(mp3_files)} MP3 files in {dataset_name}") + + return all_files + + +def process_single_audio(audio_path: str, device: str = "cuda") -> Tuple[int, int, bool]: + """ + Process a single audio file and return C-unit statistics + Returns: (cunit_count, ignored_boundary_count, success) + """ + try: + print(f"\nProcessing: {os.path.basename(audio_path)}") + + # Transcription + result_data, session_id = translate_audio_file( + model="mazeWhisper", + audio_path=audio_path, + device=device, + enable_alignment=True, + align_language="en" + ) + + # C-unit segmentation + cunit_count, ignored_count = reorganize_transcription_c_unit( + session_id, + segment_batchalign + ) + + print(f" → {cunit_count} C-units, {ignored_count} ignored boundaries") + return cunit_count, ignored_count, True + + except Exception as e: + print(f" → Error processing {audio_path}: {str(e)}") + return 0, 0, False + + +def process_dataset(dataset_files: Dict[str, List[str]], device: str = "cuda") -> Dict[str, Dict]: + """Process all files in the dataset and collect statistics""" + + results = {} + + for dataset_name, file_list in dataset_files.items(): + print(f"\n{'='*60}") + print(f"Processing {dataset_name} dataset ({len(file_list)} files)") + print(f"{'='*60}") + + dataset_stats = { + 'total_files': len(file_list), + 'processed_files': 0, + 'failed_files': 0, + 'total_cunits': 0, + 'total_ignored_boundaries': 0, + 'processing_times': [], + 'failed_files_list': [] + } + + for i, audio_path in enumerate(file_list, 1): + start_time = time.time() + + print(f"[{i}/{len(file_list)}] Processing: {os.path.basename(audio_path)}") + + cunit_count, ignored_count, success = process_single_audio(audio_path, device) + + processing_time = time.time() - start_time + dataset_stats['processing_times'].append(processing_time) + + if success: + dataset_stats['processed_files'] += 1 + dataset_stats['total_cunits'] += cunit_count + dataset_stats['total_ignored_boundaries'] += ignored_count + else: + dataset_stats['failed_files'] += 1 + dataset_stats['failed_files_list'].append(audio_path) + + print(f" → Time: {processing_time:.2f}s") + + results[dataset_name] = dataset_stats + + return results + + +def print_statistics(results: Dict[str, Dict]): + """Print comprehensive statistics""" + + print(f"\n{'='*80}") + print("COMPREHENSIVE STATISTICS") + print(f"{'='*80}") + + total_files = 0 + total_processed = 0 + total_failed = 0 + total_cunits = 0 + total_ignored = 0 + + for dataset_name, stats in results.items(): + print(f"\n{dataset_name.upper()} DATASET:") + print(f" Total files: {stats['total_files']}") + print(f" Successfully processed: {stats['processed_files']}") + print(f" Failed: {stats['failed_files']}") + print(f" Success rate: {(stats['processed_files']/stats['total_files']*100):.1f}%") + print(f" Total C-units: {stats['total_cunits']}") + print(f" Total ignored boundaries: {stats['total_ignored_boundaries']}") + + if stats['processing_times']: + avg_time = sum(stats['processing_times']) / len(stats['processing_times']) + print(f" Average processing time: {avg_time:.2f}s per file") + + if stats['processed_files'] > 0: + avg_cunits = stats['total_cunits'] / stats['processed_files'] + print(f" Average C-units per file: {avg_cunits:.1f}") + + if stats['failed_files_list']: + print(f" Failed files:") + for failed_file in stats['failed_files_list']: + print(f" - {os.path.basename(failed_file)}") + + total_files += stats['total_files'] + total_processed += stats['processed_files'] + total_failed += stats['failed_files'] + total_cunits += stats['total_cunits'] + total_ignored += stats['total_ignored_boundaries'] + + print(f"\nGLOBAL STATISTICS:") + print(f" Total files across all datasets: {total_files}") + print(f" Total successfully processed: {total_processed}") + print(f" Total failed: {total_failed}") + print(f" Overall success rate: {(total_processed/total_files*100):.1f}%") + print(f" Total C-units generated: {total_cunits}") + print(f" Total ignored boundaries: {total_ignored}") + + if total_processed > 0: + print(f" Average C-units per processed file: {total_cunits/total_processed:.1f}") + print(f" Average ignored boundaries per processed file: {total_ignored/total_processed:.1f}") + + +def save_results(results: Dict[str, Dict], output_file: str = "enni_processing_results.json"): + """Save results to JSON file""" + + # Remove non-serializable data + clean_results = {} + for dataset_name, stats in results.items(): + clean_results[dataset_name] = { + 'total_files': stats['total_files'], + 'processed_files': stats['processed_files'], + 'failed_files': stats['failed_files'], + 'total_cunits': stats['total_cunits'], + 'total_ignored_boundaries': stats['total_ignored_boundaries'], + 'average_processing_time': sum(stats['processing_times']) / len(stats['processing_times']) if stats['processing_times'] else 0, + 'failed_files_list': [os.path.basename(f) for f in stats['failed_files_list']] + } + + with open(output_file, 'w', encoding='utf-8') as f: + json.dump(clean_results, f, indent=2, ensure_ascii=False) + + print(f"\nResults saved to: {output_file}") + + +def main(): + """Main processing function""" + + # Define dataset paths + dataset_paths = [ + "/home/easgrad/shuweiho/workspace/volen/data/ENNI/SLI", + "/home/easgrad/shuweiho/workspace/volen/data/ENNI/TD" + ] + + print("ENNI Dataset Processing Script") + print("="*50) + + # Find all MP3 files + print("Searching for MP3 files...") + dataset_files = find_mp3_files(dataset_paths) + + if not any(dataset_files.values()): + print("No MP3 files found in the specified directories!") + return + + total_files = sum(len(files) for files in dataset_files.values()) + print(f"\nTotal MP3 files found: {total_files}") + + # Ask for confirmation + response = input(f"\nProceed with processing {total_files} files? (y/N): ") + if response.lower() != 'y': + print("Processing cancelled.") + return + + # Process all files + device = "cuda" # Change to "cpu" if needed + print(f"\nUsing device: {device}") + + start_time = time.time() + results = process_dataset(dataset_files, device) + total_time = time.time() - start_time + + # Print statistics + print_statistics(results) + + print(f"\nTotal processing time: {total_time/60:.1f} minutes") + + # Save results + save_results(results) + + print("\nProcessing complete!") + + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..8bc64cf18ef4182f86f3064826b52a20b1da7642 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,23 @@ +torch>=1.9.0 +torchaudio>=0.9.0 +numpy>=1.21.0 +transformers>=4.20.0 +stanza>=1.4.0 +nltk>=3.6.0 +pyinflect>=0.5.0 +soundfile>=0.10.0 +pyannote.audio>=2.0.0 +pyannote.core>=4.0.0 +wtpsplit +pandas>=1.3.0 +flask>=2.0.0 +werkzeug>=2.0.0 +scikit-learn>=1.0.0 +tqdm>=4.60.0 +huggingface_hub>=0.8.0 +librosa>=0.8.0 +scipy>=1.7.0 +matplotlib>=3.3.0 +seaborn>=0.11.0 + +# install ffmpeg \ No newline at end of file diff --git a/segmentation/__init__.py b/segmentation/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..183c43efdd2383b0a8b0cc09352b20db985b6eed --- /dev/null +++ b/segmentation/__init__.py @@ -0,0 +1,9 @@ +from .segmentation_batchalign import segment_batchalign +from .segmentation_SaT_orig_3lsm import segment_SaT +from .segmentation_SaT_cunit_3l_lora import segment_SaT as segment_SaT_cunit_3l +from .segmentation_SaT_cunit_12l_lora import segment_SaT as segment_SaT_cunit_12l +from .segmentation_SaT_cunit_3l_r32a64_lora import segment_SaT as segment_SaT_cunit_3l_r32a64 +from .segmentation_SaT_cunit_3l_r64a128_lora import segment_SaT as segment_SaT_cunit_3l_r64a128 +from .segmentation_SaT_cunit_3l_no_shuffle_lora import segment_SaT as segment_SaT_cunit_3l_no_shuffle + +from .segment import reorganize_transcription_c_unit \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/check_newlines.py b/segmentation/models/SaT_cunit_with_maze/check_newlines.py new file mode 100644 index 0000000000000000000000000000000000000000..4d1695065f8c300dfbedcc1316bf3bf664e2db76 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/check_newlines.py @@ -0,0 +1,84 @@ +#!/usr/bin/env python3 +""" +Check for newline characters in the ENNI SALT dataset +""" + +import torch +import os + + +def check_newlines_in_dataset(dataset_path: str) -> None: + """ + Check for newline characters in the dataset + + Args: + dataset_path: Path to the .pth dataset file + """ + if not os.path.exists(dataset_path): + print(f"Error: Dataset file not found at {dataset_path}") + return + + print(f"Loading dataset from {dataset_path}") + try: + dataset = torch.load(dataset_path) + print("Dataset loaded successfully!") + except Exception as e: + print(f"Error loading dataset: {e}") + return + + # Navigate through the dataset structure + total_sentences = 0 + sentences_with_newlines = 0 + newline_examples = [] + + for lang_code, lang_data in dataset.items(): + print(f"\nChecking language: {lang_code}") + + if "sentence" in lang_data: + for dataset_name, dataset_info in lang_data["sentence"].items(): + print(f" Dataset: {dataset_name}") + + # Check training data + if "meta" in dataset_info and "train_data" in dataset_info["meta"]: + train_data = dataset_info["meta"]["train_data"] + print(f" Training sentences: {len(train_data)}") + + for i, sentence in enumerate(train_data): + total_sentences += 1 + if '\n' in sentence or '\r' in sentence: + sentences_with_newlines += 1 + if len(newline_examples) < 5: # Store first 5 examples + newline_examples.append(f"Train[{i}]: {repr(sentence)}") + + # Check test data + if "data" in dataset_info: + test_data = dataset_info["data"] + print(f" Test sentences: {len(test_data)}") + + for i, sentence in enumerate(test_data): + total_sentences += 1 + if '\n' in sentence or '\r' in sentence: + sentences_with_newlines += 1 + if len(newline_examples) < 5: # Store first 5 examples + newline_examples.append(f"Test[{i}]: {repr(sentence)}") + + # Print results + print(f"\n{'='*50}") + print(f"NEWLINE CHECK RESULTS:") + print(f"{'='*50}") + print(f"Total sentences checked: {total_sentences}") + print(f"Sentences with newlines: {sentences_with_newlines}") + print(f"Percentage with newlines: {sentences_with_newlines/total_sentences*100:.2f}%" if total_sentences > 0 else "N/A") + + if sentences_with_newlines > 0: + print(f"\nWARNING: Found {sentences_with_newlines} sentences containing newline characters!") + print(f"Examples of sentences with newlines:") + for example in newline_examples: + print(f" {example}") + else: + print(f"\n✓ No newline characters found in the dataset!") + + +if __name__ == "__main__": + dataset_path = "enni-salt-dataset.pth" + check_newlines_in_dataset(dataset_path) \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/lora_12l.sh b/segmentation/models/SaT_cunit_with_maze/lora_12l.sh new file mode 100755 index 0000000000000000000000000000000000000000..b2f566709e4a0d05a84caefa3156f938363d9f59 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/lora_12l.sh @@ -0,0 +1,12 @@ +#!/bin/bash +source ~/workspace/miniconda3/etc/profile.d/conda.sh + +conda activate SaTpy10 + +export CUDA_VISIBLE_DEVICES=1 +export PYTHONPATH="/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/segmentation/models/SaT_cunit_with_maze/wtpsplit:$PYTHONPATH" + + +CONFIG_FILE="lora_sat_12l.json" + +python wtpsplit/wtpsplit/train/train_lora.py "$CONFIG_FILE" diff --git a/segmentation/models/SaT_cunit_with_maze/lora_3l.sh b/segmentation/models/SaT_cunit_with_maze/lora_3l.sh new file mode 100755 index 0000000000000000000000000000000000000000..8e390bfb745b409dac856b1527efbb9c57eb786e --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/lora_3l.sh @@ -0,0 +1,12 @@ +#!/bin/bash +source ~/workspace/miniconda3/etc/profile.d/conda.sh + +conda activate SaTpy10 + +export CUDA_VISIBLE_DEVICES=0 +export PYTHONPATH="/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/segmentation/models/SaT_cunit_with_maze/wtpsplit:$PYTHONPATH" + + +CONFIG_FILE="lora_sat_3l.json" + +python wtpsplit/wtpsplit/train/train_lora.py "$CONFIG_FILE" \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/lora_3l_no_shuffle.sh b/segmentation/models/SaT_cunit_with_maze/lora_3l_no_shuffle.sh new file mode 100755 index 0000000000000000000000000000000000000000..7682131aee0cb4c45ed55249a5ad5577f4fcb8e2 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/lora_3l_no_shuffle.sh @@ -0,0 +1,12 @@ +#!/bin/bash +source ~/workspace/miniconda3/etc/profile.d/conda.sh + +conda activate SaTpy10 + +export CUDA_VISIBLE_DEVICES=0 +export PYTHONPATH="/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/segmentation/models/SaT_cunit_with_maze/wtpsplit:$PYTHONPATH" + + +CONFIG_FILE="lora_sat_3l_no_shuffle.json" + +python wtpsplit/wtpsplit/train/train_lora.py "$CONFIG_FILE" \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/lora_3l_r32a64.sh b/segmentation/models/SaT_cunit_with_maze/lora_3l_r32a64.sh new file mode 100755 index 0000000000000000000000000000000000000000..5643c6ca00d3174ada5abf75d0c0b94ab2c4d83e --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/lora_3l_r32a64.sh @@ -0,0 +1,12 @@ +#!/bin/bash +source ~/workspace/miniconda3/etc/profile.d/conda.sh + +conda activate SaTpy10 + +export CUDA_VISIBLE_DEVICES=0 +export PYTHONPATH="/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/segmentation/models/SaT_cunit_with_maze/wtpsplit:$PYTHONPATH" + + +CONFIG_FILE="lora_sat_3l_r32a64.json" + +python wtpsplit/wtpsplit/train/train_lora.py "$CONFIG_FILE" \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/lora_3l_r64a128.sh b/segmentation/models/SaT_cunit_with_maze/lora_3l_r64a128.sh new file mode 100755 index 0000000000000000000000000000000000000000..340a98305420f360b0f5c9f61912c7f682b7fb1b --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/lora_3l_r64a128.sh @@ -0,0 +1,12 @@ +#!/bin/bash +source ~/workspace/miniconda3/etc/profile.d/conda.sh + +conda activate SaTpy10 + +export CUDA_VISIBLE_DEVICES=0 +export PYTHONPATH="/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/segmentation/models/SaT_cunit_with_maze/wtpsplit:$PYTHONPATH" + + +CONFIG_FILE="lora_sat_3l_r64a128.json" + +python wtpsplit/wtpsplit/train/train_lora.py "$CONFIG_FILE" \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/lora_sat_12l.json b/segmentation/models/SaT_cunit_with_maze/lora_sat_12l.json new file mode 100644 index 0000000000000000000000000000000000000000..fd4035b831b782ae3c1db896e8ab159162e1615c --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/lora_sat_12l.json @@ -0,0 +1,39 @@ +{ + "model_name_or_path": "segment-any-text/sat-12l", + "output_dir": "./model_finetuned/sat-12l_lora_ENNI", + "text_path": "./enni-salt-dataset.pth", + "block_size": 256, + "eval_stride": 128, + "do_train": true, + "do_eval": true, + "per_device_train_batch_size": 64, + "per_device_eval_batch_size": 32, + "gradient_accumulation_steps": 1, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 1, + "preprocessing_num_workers": 1, + "learning_rate": 3e-4, + "fp16": false, + "num_train_epochs": 30, + "logging_steps": 50, + "report_to": "wandb", + "wandb_project": "sentence", + "save_steps": 100000000, + "remove_unused_columns": false, + "one_sample_per_line": false, + "do_sentence_training": true, + "do_auxiliary_training": false, + "warmup_ratio": 0.1, + "non_punctuation_sample_ratio": null, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600, + "use_subwords": true, + "custom_punctuation_file": "punctuation_xlmr_unk.txt", + "log_level": "warning", + "adapter_config": "lora[r=16,alpha=32,intermediate_lora=True]", + "weight_decay": 0.0, + "auxiliary_remove_prob": 0.0, + "train_adapter": true, + "subsample": false +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/lora_sat_3l.json b/segmentation/models/SaT_cunit_with_maze/lora_sat_3l.json new file mode 100644 index 0000000000000000000000000000000000000000..d29f3100461adbfb78ab805f39c55cc5ca703f17 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/lora_sat_3l.json @@ -0,0 +1,39 @@ +{ + "model_name_or_path": "segment-any-text/sat-3l", + "output_dir": "./model_finetuned/sat-3l_lora_ENNI", + "text_path": "./enni-salt-dataset.pth", + "block_size": 256, + "eval_stride": 128, + "do_train": true, + "do_eval": true, + "per_device_train_batch_size": 64, + "per_device_eval_batch_size": 32, + "gradient_accumulation_steps": 1, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 1, + "preprocessing_num_workers": 1, + "learning_rate": 3e-4, + "fp16": false, + "num_train_epochs": 30, + "logging_steps": 50, + "report_to": "wandb", + "wandb_project": "sentence", + "save_steps": 100000000, + "remove_unused_columns": false, + "one_sample_per_line": false, + "do_sentence_training": true, + "do_auxiliary_training": false, + "warmup_ratio": 0.1, + "non_punctuation_sample_ratio": null, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600, + "use_subwords": true, + "custom_punctuation_file": "punctuation_xlmr_unk.txt", + "log_level": "warning", + "adapter_config": "lora[r=16,alpha=32,intermediate_lora=True]", + "weight_decay": 0.0, + "auxiliary_remove_prob": 0.0, + "train_adapter": true, + "subsample": false +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/lora_sat_3l_no_shuffle.json b/segmentation/models/SaT_cunit_with_maze/lora_sat_3l_no_shuffle.json new file mode 100644 index 0000000000000000000000000000000000000000..2b80ecebd79e6c2d19dfa44b29a494d70461ac6c --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/lora_sat_3l_no_shuffle.json @@ -0,0 +1,40 @@ +{ + "model_name_or_path": "segment-any-text/sat-3l", + "output_dir": "./model_finetuned/sat-3l_no_shuffle_lora_ENNI", + "text_path": "./enni-salt-dataset.pth", + "block_size": 256, + "eval_stride": 128, + "do_train": true, + "do_eval": true, + "per_device_train_batch_size": 64, + "per_device_eval_batch_size": 32, + "gradient_accumulation_steps": 1, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 1, + "preprocessing_num_workers": 1, + "learning_rate": 3e-4, + "fp16": false, + "num_train_epochs": 30, + "logging_steps": 50, + "report_to": "wandb", + "wandb_project": "sentence", + "save_steps": 100000000, + "remove_unused_columns": false, + "one_sample_per_line": false, + "do_sentence_training": true, + "do_auxiliary_training": false, + "warmup_ratio": 0.1, + "non_punctuation_sample_ratio": null, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600, + "use_subwords": true, + "custom_punctuation_file": "punctuation_xlmr_unk.txt", + "log_level": "warning", + "adapter_config": "lora[r=16,alpha=32,intermediate_lora=True]", + "weight_decay": 0.0, + "auxiliary_remove_prob": 0.0, + "train_adapter": true, + "subsample": false, + "shuffle": false +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/lora_sat_3l_r32a64.json b/segmentation/models/SaT_cunit_with_maze/lora_sat_3l_r32a64.json new file mode 100644 index 0000000000000000000000000000000000000000..f584075ac23fde604cd02da89dbef608ddacc1bd --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/lora_sat_3l_r32a64.json @@ -0,0 +1,39 @@ +{ + "model_name_or_path": "segment-any-text/sat-3l", + "output_dir": "./model_finetuned/sat-3l_r32a64_lora_ENNI", + "text_path": "./enni-salt-dataset.pth", + "block_size": 256, + "eval_stride": 128, + "do_train": true, + "do_eval": true, + "per_device_train_batch_size": 64, + "per_device_eval_batch_size": 32, + "gradient_accumulation_steps": 1, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 1, + "preprocessing_num_workers": 1, + "learning_rate": 3e-4, + "fp16": false, + "num_train_epochs": 30, + "logging_steps": 50, + "report_to": "wandb", + "wandb_project": "sentence", + "save_steps": 100000000, + "remove_unused_columns": false, + "one_sample_per_line": false, + "do_sentence_training": true, + "do_auxiliary_training": false, + "warmup_ratio": 0.1, + "non_punctuation_sample_ratio": null, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600, + "use_subwords": true, + "custom_punctuation_file": "punctuation_xlmr_unk.txt", + "log_level": "warning", + "adapter_config": "lora[r=32,alpha=64,intermediate_lora=True]", + "weight_decay": 0.0, + "auxiliary_remove_prob": 0.0, + "train_adapter": true, + "subsample": false +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/lora_sat_3l_r64a128.json b/segmentation/models/SaT_cunit_with_maze/lora_sat_3l_r64a128.json new file mode 100644 index 0000000000000000000000000000000000000000..276d292c601f892f34c661e40f58befa535e9969 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/lora_sat_3l_r64a128.json @@ -0,0 +1,39 @@ +{ + "model_name_or_path": "segment-any-text/sat-3l", + "output_dir": "./model_finetuned/sat-3l_r64a128_lora_ENNI", + "text_path": "./enni-salt-dataset.pth", + "block_size": 256, + "eval_stride": 128, + "do_train": true, + "do_eval": true, + "per_device_train_batch_size": 64, + "per_device_eval_batch_size": 32, + "gradient_accumulation_steps": 1, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 1, + "preprocessing_num_workers": 1, + "learning_rate": 3e-4, + "fp16": false, + "num_train_epochs": 30, + "logging_steps": 50, + "report_to": "wandb", + "wandb_project": "sentence", + "save_steps": 100000000, + "remove_unused_columns": false, + "one_sample_per_line": false, + "do_sentence_training": true, + "do_auxiliary_training": false, + "warmup_ratio": 0.1, + "non_punctuation_sample_ratio": null, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600, + "use_subwords": true, + "custom_punctuation_file": "punctuation_xlmr_unk.txt", + "log_level": "warning", + "adapter_config": "lora[r=64,alpha=128,intermediate_lora=True]", + "weight_decay": 0.0, + "auxiliary_remove_prob": 0.0, + "train_adapter": true, + "subsample": false +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/sat_12l_full.sh b/segmentation/models/SaT_cunit_with_maze/sat_12l_full.sh new file mode 100755 index 0000000000000000000000000000000000000000..a8fc4a5b53e662c72cfc79872a76dee936edb1c1 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/sat_12l_full.sh @@ -0,0 +1,19 @@ +#!/bin/bash + +# SaT 12-layer Full Parameter Fine-tuning Script +# Author: Generated for ENNI dataset fine-tuning + +echo "Starting SaT 12-layer full parameter fine-tuning..." + +source ~/workspace/miniconda3/etc/profile.d/conda.sh +conda activate SaTpy10 + +# Set CUDA device (adjust if needed) +export CUDA_VISIBLE_DEVICES=0 +export PYTHONPATH="/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/segmentation/models/SaT_cunit_with_maze/wtpsplit:$PYTHONPATH" + +# Run training with full parameter fine-tuning using our custom script +python wtpsplit/wtpsplit/train/train_full_param.py sat_12l_full_finetune.json + +echo "SaT 12-layer full fine-tuning completed!" +echo "Model saved to: ./model_finetuned/sat-12l_full_ENNI" \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/sat_12l_full_finetune.json b/segmentation/models/SaT_cunit_with_maze/sat_12l_full_finetune.json new file mode 100644 index 0000000000000000000000000000000000000000..9422967af0b676ae1eebb6e2902e52387016b169 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/sat_12l_full_finetune.json @@ -0,0 +1,43 @@ +{ + "model_name_or_path": "segment-any-text/sat-12l", + "base_model": "xlm-roberta-base", + "output_dir": "./model_finetuned/sat-12l_full_ENNI", + "text_path": "./enni-salt-dataset.pth", + "include_languages": ["en"], + "num_hidden_layers": 12, + "block_size": 256, + "overflow_size": 16, + "eval_stride": 128, + "loss_margin": 0.5, + "use_subwords": true, + "do_train": true, + "do_eval": true, + "evaluation_strategy": "steps", + "per_device_train_batch_size": 8, + "per_device_eval_batch_size": 8, + "gradient_accumulation_steps": 8, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 4, + "preprocessing_num_workers": 4, + "learning_rate": 2e-5, + "save_strategy": "steps", + "fp16": false, + "num_train_epochs": 10, + "save_steps": 1000, + "eval_steps": 500, + "logging_steps": 50, + "report_to": "wandb", + "wandb_project": "sentence", + "remove_unused_columns": false, + "one_sample_per_line": false, + "do_sentence_training": true, + "do_auxiliary_training": false, + "warmup_ratio": 0.1, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600, + "log_level": "warning", + "weight_decay": 0.01, + "shuffle": true, + "subsample": null +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/sat_3l_full.sh b/segmentation/models/SaT_cunit_with_maze/sat_3l_full.sh new file mode 100755 index 0000000000000000000000000000000000000000..beefbb72b90641bda9691ae67193de25cbb355de --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/sat_3l_full.sh @@ -0,0 +1,19 @@ +#!/bin/bash + +# SaT 3-layer Full Parameter Fine-tuning Script +# Author: Generated for ENNI dataset fine-tuning + +echo "Starting SaT 3-layer full parameter fine-tuning..." + +source ~/workspace/miniconda3/etc/profile.d/conda.sh +conda activate SaTpy10 + +# Set CUDA device (adjust if needed) +export CUDA_VISIBLE_DEVICES=0 +export PYTHONPATH="/home/easgrad/shuweiho/workspace/volen/SATE_v1.5/segmentation/models/SaT_cunit_with_maze/wtpsplit:$PYTHONPATH" + +# Run training with full parameter fine-tuning using our custom script +python wtpsplit/wtpsplit/train/train_full_param.py sat_3l_full_finetune.json + +echo "SaT 3-layer full fine-tuning completed!" +echo "Model saved to: ./model_finetuned/sat-3l_full_ENNI" \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/sat_3l_full_finetune.json b/segmentation/models/SaT_cunit_with_maze/sat_3l_full_finetune.json new file mode 100644 index 0000000000000000000000000000000000000000..58218bf2ad6f021537845842d7204761b3f49adb --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/sat_3l_full_finetune.json @@ -0,0 +1,43 @@ +{ + "model_name_or_path": "segment-any-text/sat-3l", + "base_model": "xlm-roberta-base", + "output_dir": "./model_finetuned/sat-3l_full_ENNI", + "text_path": "./enni-salt-dataset.pth", + "include_languages": ["en"], + "num_hidden_layers": 3, + "block_size": 256, + "overflow_size": 16, + "eval_stride": 128, + "loss_margin": 0.5, + "use_subwords": true, + "do_train": true, + "do_eval": true, + "evaluation_strategy": "steps", + "per_device_train_batch_size": 16, + "per_device_eval_batch_size": 16, + "gradient_accumulation_steps": 4, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 4, + "preprocessing_num_workers": 4, + "learning_rate": 3e-5, + "save_strategy": "steps", + "fp16": false, + "num_train_epochs": 15, + "save_steps": 1000, + "eval_steps": 500, + "logging_steps": 50, + "report_to": "wandb", + "wandb_project": "sentence", + "remove_unused_columns": false, + "one_sample_per_line": false, + "do_sentence_training": true, + "do_auxiliary_training": false, + "warmup_ratio": 0.1, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600, + "log_level": "warning", + "weight_decay": 0.01, + "shuffle": true, + "subsample": null +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/training_data_ENNI.py b/segmentation/models/SaT_cunit_with_maze/training_data_ENNI.py new file mode 100644 index 0000000000000000000000000000000000000000..595e07e4b1ee3a82eda1f3b3d7063d29c77211d2 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/training_data_ENNI.py @@ -0,0 +1,117 @@ +#!/usr/bin/env python3 +""" +Convert ENNI SALT segmentation data to wtpsplit format for LoRA training +""" + +import pandas as pd +import torch +import os +import re +from typing import List + + +def clean_text(text: str) -> str: + """Clean text by removing punctuation and converting to lowercase""" + return re.sub(r"[^\w\s]", "", text.lower()).strip() + + +def load_enni_data(csv_path: str) -> List[str]: + """ + Load ENNI SALT data from CSV and return cleaned sentences + + Args: + csv_path: Path to the CSV file + + Returns: + List of cleaned sentences + """ + print(f"Loading data from {csv_path}") + df = pd.read_csv(csv_path) + + sentences = [] + for _, row in df.iterrows(): + if pd.notna(row['cleaned_transcription']): + cleaned = clean_text(row['cleaned_transcription']) + if cleaned.strip(): # Only add non-empty sentences + sentences.append(cleaned) + + print(f"Loaded {len(sentences)} sentences") + return sentences + + +def create_wtpsplit_dataset(train_csv_path: str, output_path: str, + train_ratio: float = 0.8) -> None: + """ + Create wtpsplit dataset format from ENNI CSV data + + Args: + train_csv_path: Path to the train.csv file + output_path: Path to save the .pth file + train_ratio: Ratio of data to use for training (rest goes to test) + """ + # Load all sentences + all_sentences = load_enni_data(train_csv_path) + + # Split into train and test + split_idx = int(len(all_sentences) * train_ratio) + train_sentences = all_sentences[:split_idx] + test_sentences = all_sentences[split_idx:] + + print(f"Train sentences: {len(train_sentences)}") + print(f"Test sentences: {len(test_sentences)}") + + # Create wtpsplit format + dataset = { + "en": { # English language code + "sentence": { + "enni-salt": { + "meta": { + "train_data": train_sentences, + }, + "data": test_sentences + } + } + } + } + + # Save dataset + print(f"Saving dataset to {output_path}") + torch.save(dataset, output_path) + print("Dataset saved successfully!") + + # Print some statistics + print(f"\nDataset Statistics:") + print(f"- Language: en") + print(f"- Dataset name: enni-salt") + print(f"- Training samples: {len(train_sentences)}") + print(f"- Test samples: {len(test_sentences)}") + print(f"- Total samples: {len(all_sentences)}") + + # Show first few examples + print(f"\nFirst 3 training examples:") + for i, sent in enumerate(train_sentences[:3], 1): + print(f"{i}. {sent}") + + print(f"\nFirst 3 test examples:") + for i, sent in enumerate(test_sentences[:3], 1): + print(f"{i}. {sent}") + + +if __name__ == "__main__": + # Paths + script_dir = os.path.dirname(os.path.abspath(__file__)) + base_dir = os.path.join(script_dir, "..", "..", "..") + train_csv = os.path.join(base_dir, "data", "enni_salt_for_segmentation", "train.csv") + output_file = os.path.join(script_dir, "enni-salt-dataset.pth") + + # Check if input file exists + if not os.path.exists(train_csv): + print(f"Error: Train CSV file not found at {train_csv}") + exit(1) + + # Create dataset + create_wtpsplit_dataset(train_csv, output_file, train_ratio=0.8) + + print(f"\nDataset created successfully!") + print(f"You can now use this dataset for wtpsplit LoRA training:") + print(f"Dataset file: {output_file}") \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/.gitignore b/segmentation/models/SaT_cunit_with_maze/wtpsplit/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..637bb077fb749583d8a71f96b2b57261e202ceec --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/.gitignore @@ -0,0 +1,23 @@ +wandb +output* +data +!data/iwslt_2012 +.vscode +__pycache__ +.ipynb_checkpoints +external +*.egg-info +notebooks +final_outputs +.cache* +data_subset/** +*.pth +*.zip +*.bin +*.html +*.csv +*.png +*.txt +*.log +xlmr-*/** +**/checkpoint-*/** \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/LICENSE b/segmentation/models/SaT_cunit_with_maze/wtpsplit/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..56e70848080c43a4b3bf0e4cabdd1f8a01b780cf --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 Benjamin Minixhofer, Markus Frohmann, Igor Sterner + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/README.md b/segmentation/models/SaT_cunit_with_maze/wtpsplit/README.md new file mode 100644 index 0000000000000000000000000000000000000000..a1218a5045cc6e3dfd085d59f5f892557e993bef --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/README.md @@ -0,0 +1,427 @@ +

wtpsplit🪓

+

Segment any Text - Robustly, Efficiently, Adaptably⚡

+ +This repository allows you to segment text into sentences or other semantic units. It implements the models from: + +- **SaT** — [Segment Any Text: A Universal Approach for Robust, Efficient and Adaptable Sentence Segmentation](https://arxiv.org/abs/2406.16678) by Markus Frohmann, Igor Sterner, Benjamin Minixhofer, Ivan Vulić and Markus Schedl (**state-of-the-art, encouraged**). +- **WtP** — [Where’s the Point? Self-Supervised Multilingual Punctuation-Agnostic Sentence Segmentation](https://aclanthology.org/2023.acl-long.398/) by Benjamin Minixhofer, Jonas Pfeiffer and Ivan Vulić (*previous version, maintained for reproducibility*). + +The namesake WtP is maintained for consistency. Our new followup SaT provides robust, efficient and adaptable sentence segmentation across 85 languages at higher performance and less compute cost. Check out the **state-of-the-art** results in 8 distinct corpora and 85 languages demonstrated in our [Segment any Text paper](https://arxiv.org/abs/2406.16678). + +![System Figure](./configs/system-fig.png) + +## Installation + +```bash +pip install wtpsplit +``` +Or one of the following for ONNX support: +```bash +pip install wtpsplit[onnx-gpu] +pip install wtpsplit[onnx-cpu] +``` + +## Usage + +```python +from wtpsplit import SaT + +sat = SaT("sat-3l") +# optionally run on GPU for better performance +# also supports TPUs via e.g. sat.to("xla:0"), in that case pass `pad_last_batch=True` to sat.split +sat.half().to("cuda") + +sat.split("This is a test This is another test.") +# returns ["This is a test ", "This is another test."] + +# do this instead of calling sat.split on every text individually for much better performance +sat.split(["This is a test This is another test.", "And some more texts..."]) +# returns an iterator yielding lists of sentences for every text + +# use our '-sm' models for general sentence segmentation tasks +sat_sm = SaT("sat-3l-sm") +sat_sm.half().to("cuda") # optional, see above +sat_sm.split("this is a test this is another test") +# returns ["this is a test ", "this is another test"] + +# use trained lora modules for strong adaptation to language & domain/style +sat_adapted = SaT("sat-3l", style_or_domain="ud", language="en") +sat_adapted.half().to("cuda") # optional, see above +sat_adapted.split("This is a test This is another test.") +# returns ['This is a test ', 'This is another test'] +``` + +## ONNX Support + +🚀 You can now enable even faster ONNX inference for `sat` and `sat-sm` models! 🚀 + +```python +sat = SaT("sat-3l-sm", ort_providers=["CUDAExecutionProvider", "CPUExecutionProvider"]) +``` + +```python +>>> from wtpsplit import SaT +>>> texts = ["This is a sentence. This is another sentence."] * 1000 + +# PyTorch GPU +>>> model_pytorch = SaT("sat-3l-sm") +>>> model_pytorch.half().to("cuda"); +>>> %timeit list(model_pytorch.split(texts)) +# 144 ms ± 252 μs per loop (mean ± std. dev. of 7 runs, 10 loops each) +# quite fast already, but... + +# onnxruntime GPU +>>> model_ort = SaT("sat-3l-sm", ort_providers=["CUDAExecutionProvider", "CPUExecutionProvider"]) +>>> %timeit list(model_ort.split(texts)) +# 94.9 ms ± 165 μs per loop (mean ± std. dev. of 7 runs, 10 loops each +# ...this should be ~50% faster! (tested on RTX 3090) +``` + +If you wish to use LoRA in combination with an ONNX model: + +- Run `scripts/export_to_onnx_sat.py` with `use_lora: True` and an appropriate `output_dir: `. + - If you have a local LoRA module, use `lora_path`. + - If you wish to load a LoRA module from the HuggingFace hub, use `style_or_domain` and `language`. +- Load the ONNX model with merged LoRA weights: + `sat = SaT(, onnx_providers=["CUDAExecutionProvider", "CPUExecutionProvider"])` + +## Available Models + +If you need a general sentence segmentation model, use `-sm` models (e.g., `sat-3l-sm`) +For speed-sensitive applications, we recommend 3-layer models (`sat-3l` and `sat-3l-sm`). They provide a great tradeoff between speed and performance. +The best models are our 12-layer models: `sat-12l` and `sat-12l-sm`. + +| Model | English Score | Multilingual Score | +| :--------------------------------------------------------------------------- | ------------: | -----------------: | +| [sat-1l](https://huggingface.co/segment-any-text/sat-1l) | 88.5 | 84.3 | +| [sat-1l-sm](https://huggingface.co/segment-any-text/sat-1l-sm) | 88.2 | 87.9 | +| [sat-3l](https://huggingface.co/segment-any-text/sat-3l) | 93.7 | 89.2 | +| [sat-3l-lora](https://huggingface.co/segment-any-text/sat-3l/tree/main/loras) | 96.7 | 94.8 | +| [sat-3l-sm](https://huggingface.co/segment-any-text/sat-3l-sm) | 96.5 | 93.5 | +| [sat-6l](https://huggingface.co/segment-any-text/sat-6l) | 94.1 | 89.7 | +| [sat-6l-sm](https://huggingface.co/segment-any-text/sat-6l-sm) | 96.9 | 95.1 | +| [sat-9l](https://huggingface.co/segment-any-text/sat-9l) | 94.3 | 90.3 | +| [sat-12l](https://huggingface.co/segment-any-text/sat-12l) | 94.0 | 90.4 | +| [sat-12l-lora](https://huggingface.co/segment-any-text/sat-12l/tree/main/loras) | 97.3 | 95.9 | +| [sat-12l-sm](https://huggingface.co/segment-any-text/sat-12l-sm) | 97.4 | 96.0 | + +The scores are macro-average F1 score across all available datasets for "English", and macro-average F1 score across all datasets and languages for "Multilingual". "adapted" means adapation via LoRA; check out the [paper](https://arxiv.org/abs/2406.16678) for details. + +For comparison, here the English scores of some other tools: + +| Model | English Score | +| :------------------------------------------------------- | ------------: | +| PySBD | 69.6 | +| SpaCy (sentencizer; monolingual) | 92.9 | +| SpaCy (sentencizer; multilingual) | 91.5 | +| Ersatz | 91.4 | +| Punkt (`nltk.sent_tokenize`) | 92.2 | +| [WtP (3l)](https://huggingface.co/benjamin/wtp-canine-s-3l) | 93.9 | + +Note that this library also supports previous [`WtP`](https://arxiv.org/abs/2305.18893) models. +You can use them in essentially the same way as `SaT`models: + +```python +from wtpsplit import WtP + +wtp = WtP("wtp-bert-mini") +# similar functionality as for SaT models +wtp.split("This is a test This is another test.") +``` + +For more details on WtP and reproduction details, see the [WtP doc](./README_WTP.md). + +## Paragraph Segmentation + +Since SaT are trained to predict newline probablity, they can segment text into paragraphs in addition to sentences. + +```python +# returns a list of paragraphs, each containing a list of sentences +# adjust the paragraph threshold via the `paragraph_threshold` argument. +sat.split(text, do_paragraph_segmentation=True) +``` + +## Adaptation + +SaT can be domain- and style-adapted via LoRA. We provide trained LoRA modules for Universal Dependencies, OPUS100, Ersatz, and TED (i.e., ASR-style transcribed speecjes) sentence styles in 81 languages for `sat-3l`and `sat-12l`. Additionally, we provide LoRA modules for legal documents (laws and judgements) in 6 languages, code-switching in 4 language pairs, and tweets in 3 languages. For details, we refer to our [paper](https://arxiv.org/abs/2406.16678). + +We also provided verse segmentation modules for 16 genres for `sat-12-no-limited-lookahead`. + +Load LoRA modules like this: + +```python + +# requires both lang_code and style_or_domain +# for available ones, check the /loras folder +sat_lora = SaT("sat-3l", style_or_domain="ud", language="en") +sat_lora.split("Hello this is a test But this is different now Now the next one starts looool") +# now for a highly distinct domain +sat_lora_distinct = SaT("sat-12l", style_or_domain="code-switching", language="es-en") +sat_lora_distinct.split("in the morning over there cada vez que yo decía algo él me decía algo") +``` + +You can also freely adapt the segmentation threshold, with a higher threshold leading to more conservative segmentation: + +```python + +sat.split("This is a test This is another test.", threshold=0.4) +# works similarly for lora; but thresholds are higher +sat_lora.split("Hello this is a test But this is different now Now the next one starts looool", threshold=0.7) +``` + +## Advanced Usage + +### Get the newline or sentence boundary probabilities for a text: + +```python +# returns newline probabilities (supports batching!) +sat.predict_proba(text) +``` + +### Load a SaT model in [HuggingFace `transformers`](https://github.com/huggingface/transformers): + +```python +# import library to register the custom models +import wtpsplit.models +from transformers import AutoModelForTokenClassification + +model = AutoModelForTokenClassification.from_pretrained("segment-any-text/sat-3l-sm") # or some other model name; see https://huggingface.co/segment-any-text +``` + +### Adapt to your own corpus via LoRA + +Our models can be efficiently adapted via LoRA in a powerful way. Only 10-100 training segmented training sentences should already improve performance considerably. To do so: + +Clone the repository and install requirements: + +``` +git clone https://github.com/segment-any-text/wtpsplit +cd wtpsplit +pip install -r requirements.txt +pip install adapters==0.2.1 --no-dependencies +cd .. +``` + +1. Create data in this format: + +```python +import torch + +torch.save( + { + "language_code": { + "sentence": { + "dummy-dataset": { + "meta": { + "train_data": ["train sentence 1", "train sentence 2"], + }, + "data": [ + "test sentence 1", + "test sentence 2", + ] + } + } + } + }, + "dummy-dataset.pth" +) +``` + +Note that there should not be any newlines within individual sentences! This now raises an error. Instead, each entry of a list should be a sentence, and there should be no "\n" characters. So your corpus should already be well-split. + +2. Create/adapt config; provide base model via `model_name_or_path` and training data .pth via `text_path`: + +`configs/lora/lora_dummy_config.json` + +We recommend starting using this config, and adapting `model_name_or_path`, `output_dir`, and `text_path` if needed. +You may also wish to adapt other aspects such as `adapter_config` and batch sizes, but this is more experimental. + +3. Train LoRA: + +``` +python3 wtpsplit/train/train_lora.py configs/lora/lora_dummy_config.json +``` + +4. Once training is done, provide your saved module's path to SaT: + +```python + +sat_lora_adapted = SaT("model-used", lora_path="dummy_lora_path") +sat_lora_adapted.split("Some domains-specific or styled text") +``` + +Adjust the dataset name, language and model in the above to your needs. + +## Reproducing the paper + +`configs/` contains the configs for the runs from the paper for base and sm models as well as LoRA modules. Launch training for each of them like this: + +``` +python3 wtpsplit/train/train.py configs/.json +python3 wtpsplit/train/train_sm.py configs/.json +python3 wtpsplit/train/train_lora.py configs/.json +``` + +In addition: + +- `wtpsplit/data_acquisition` contains the code for obtaining evaluation data and raw text from the mC4 corpus. +- `wtpsplit/evaluation` contains the code for: + - evaluation (i.e. sentence segmentation results) via `intrinsic.py`. + - short-sequence evaluation (i.e. sentence segmentation results for pairs/k-mers of sentences) via `intrinsic_pairwise.py`. + - LLM baseline evaluation (`llm_sentence.py`), legal baseline evaluation (`legal_baselines.py`) + - baseline (PySBD, nltk, etc.) evaluation results in `intrinsic_baselines.py` and `intrinsic_baselines_multi.py` + - Raw results in JSON format are also in `evaluation_results/` + - Statistical significane testing code and results ara in `stat_tests/` + - punctuation annotation experiments in `punct_annotation.py` and `punct_annotation_wtp.py` (WtP only) + - extrinsic evaluation on Machine Translation in `extrinsic.py` (WtP only) + +Ensure to install packages from `requirements.txt` beforehand. + +## Supported Languages + +
+ Table with supported languages + +| iso | Name | +| :-- | :-------------- | +| af | Afrikaans | +| am | Amharic | +| ar | Arabic | +| az | Azerbaijani | +| be | Belarusian | +| bg | Bulgarian | +| bn | Bengali | +| ca | Catalan | +| ceb | Cebuano | +| cs | Czech | +| cy | Welsh | +| da | Danish | +| de | German | +| el | Greek | +| en | English | +| eo | Esperanto | +| es | Spanish | +| et | Estonian | +| eu | Basque | +| fa | Persian | +| fi | Finnish | +| fr | French | +| fy | Western Frisian | +| ga | Irish | +| gd | Scottish Gaelic | +| gl | Galician | +| gu | Gujarati | +| ha | Hausa | +| he | Hebrew | +| hi | Hindi | +| hu | Hungarian | +| hy | Armenian | +| id | Indonesian | +| ig | Igbo | +| is | Icelandic | +| it | Italian | +| ja | Japanese | +| jv | Javanese | +| ka | Georgian | +| kk | Kazakh | +| km | Central Khmer | +| kn | Kannada | +| ko | Korean | +| ku | Kurdish | +| ky | Kirghiz | +| la | Latin | +| lt | Lithuanian | +| lv | Latvian | +| mg | Malagasy | +| mk | Macedonian | +| ml | Malayalam | +| mn | Mongolian | +| mr | Marathi | +| ms | Malay | +| mt | Maltese | +| my | Burmese | +| ne | Nepali | +| nl | Dutch | +| no | Norwegian | +| pa | Panjabi | +| pl | Polish | +| ps | Pushto | +| pt | Portuguese | +| ro | Romanian | +| ru | Russian | +| si | Sinhala | +| sk | Slovak | +| sl | Slovenian | +| sq | Albanian | +| sr | Serbian | +| sv | Swedish | +| ta | Tamil | +| te | Telugu | +| tg | Tajik | +| th | Thai | +| tr | Turkish | +| uk | Ukrainian | +| ur | Urdu | +| uz | Uzbek | +| vi | Vietnamese | +| xh | Xhosa | +| yi | Yiddish | +| yo | Yoruba | +| zh | Chinese | +| zu | Zulu | + +
+ +For details, please see our [Segment any Text paper](https://arxiv.org/abs/2406.16678). + +## Citations + +For the `SaT` models, please kindly cite our paper: + +``` +@inproceedings{frohmann-etal-2024-segment, + title = "Segment Any Text: A Universal Approach for Robust, Efficient and Adaptable Sentence Segmentation", + author = "Frohmann, Markus and + Sterner, Igor and + Vuli{\'c}, Ivan and + Minixhofer, Benjamin and + Schedl, Markus", + editor = "Al-Onaizan, Yaser and + Bansal, Mohit and + Chen, Yun-Nung", + booktitle = "Proceedings of the 2024 Conference on Empirical Methods in Natural Language Processing", + month = nov, + year = "2024", + address = "Miami, Florida, USA", + publisher = "Association for Computational Linguistics", + url = "https://aclanthology.org/2024.emnlp-main.665", + pages = "11908--11941" +} + +``` + +For the library and the WtP models, please cite: + +``` +@inproceedings{minixhofer-etal-2023-wheres, + title = "Where{'}s the Point? Self-Supervised Multilingual Punctuation-Agnostic Sentence Segmentation", + author = "Minixhofer, Benjamin and + Pfeiffer, Jonas and + Vuli{\'c}, Ivan", + booktitle = "Proceedings of the 61st Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers)", + month = jul, + year = "2023", + address = "Toronto, Canada", + publisher = "Association for Computational Linguistics", + url = "https://aclanthology.org/2023.acl-long.398", + pages = "7215--7235" +} +``` + +## Acknowledgments + +This research was funded in whole or in part by the Austrian Science Fund (FWF): P36413, P33526, and DFH-23, and by the State of Upper Austria and the Federal Ministry of Education, Science, and Research, through grants LIT-2021-YOU-215. In addition, Ivan Vulic and Benjamin Minixhofer have been supported through the Royal Society University Research Fellowship ‘Inclusive and Sustainable Language Technology for a Truly Multilingual World’ (no 221137) awarded to Ivan Vulić. This research has also been supported with Cloud TPUs from Google’s TPU Research Cloud (TRC). This work was also supported by compute credits from a Cohere For AI Research Grant, these grants are designed to support academic partners conducting research with the goal of releasing scientific artifacts and data for good projects. We also thank Simone Teufel for fruitful discussions. + +--- + +For any questions, please create an issue or send an email to markus.frohmann@gmail.com, and I will get back to you as soon as possible. diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/README_WTP.md b/segmentation/models/SaT_cunit_with_maze/wtpsplit/README_WTP.md new file mode 100644 index 0000000000000000000000000000000000000000..832a0db30c837c4365412ef526c112fc8404c2a1 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/README_WTP.md @@ -0,0 +1,326 @@ +# WtP usage in wtpsplit (Legacy) + +This doc details how to use the old `WtP` models. You should probably use [SaT](./README.md) instead. + +## Usage + +```python +from wtpsplit import WtP + +wtp = WtP("wtp-bert-mini") +# optionally run on GPU for better performance +# also supports TPUs via e.g. wtp.to("xla:0"), in that case pass `pad_last_batch=True` to wtp.split +wtp.half().to("cuda") + +# returns ["Hello ", "This is a test."] +wtp.split("Hello This is a test.") + +# returns an iterator yielding a lists of sentences for every text +# do this instead of calling wtp.split on every text individually for much better performance +wtp.split(["Hello This is a test.", "And some more texts..."]) + +# if you're using a model with language adapters, also pass a `lang_code` +wtp.split("Hello This is a test.", lang_code="en") + +# depending on your usecase, adaptation to e.g. the Universal Dependencies style may give better results +# this always requires a language code +wtp.split("Hello This is a test.", lang_code="en", style="ud") +``` + +## ONNX support + +You can enable ONNX inference for the `wtp-bert-*` models: + +```python +wtp = WtP("wtp-bert-mini", onnx_providers=["CUDAExecutionProvider"]) +``` + +This requires `onnxruntime` and `onnxruntime-gpu`. It should give a good speedup on GPU! + +```python +>>> from wtpsplit import WtP +>>> texts = ["This is a sentence. This is another sentence."] * 1000 + +# PyTorch GPU +>>> model = WtP("wtp-bert-mini") +>>> model.half().to("cuda") +>>> %timeit list(model.split(texts)) +272 ms ± 16.1 ms per loop (mean ± std. dev. of 7 runs, 1 loop each) + +# onnxruntime GPU +>>> model = WtP("wtp-bert-mini", ort_providers=["CUDAExecutionProvider"]) +>>> %timeit list(model.split(texts)) +198 ms ± 1.36 ms per loop (mean ± std. dev. of 7 runs, 1 loop each) +``` + +Notes: +- The `wtp-canine-*` models are currently not supported with ONNX because the pooling done by CANINE is not trivial to export. Ideas to solve this are very welcome! +- This does not work with Python 3.7 because `onnxruntime` does not support the opset we need for py37. + + +## Available Models + +Pro tips: I recommend `wtp-bert-mini` for speed-sensitive applications, otherwise `wtp-canine-s-12l`. The `*-no-adapters` models provide a good tradeoff between speed and performance. You should *probably not* use `wtp-bert-tiny`. + +| Model | English Score | English Score
(adapted) | Multilingual Score | Multilingual Score
(adapted) | +|:-----------------------------------------------------------------------|-----:|-----:|-----:|-----:| +| [wtp-bert-tiny](https://huggingface.co/benjamin/wtp-bert-tiny) | 83.8 | 91.9 | 79.5 | 88.6 | +| [wtp-bert-mini](https://huggingface.co/benjamin/wtp-bert-mini) | 91.8 | 95.9 | 84.3 | 91.3 | +| [wtp-canine-s-1l](https://huggingface.co/benjamin/wtp-canine-s-1l) | 94.5 | 96.5 | 86.7 | 92.8 | +| [wtp-canine-s-1l-no-adapters](https://huggingface.co/benjamin/wtp-canine-s-1l-no-adapters) | 93.1 | 96.4 | 85.1 | 91.8 | +| [wtp-canine-s-3l](https://huggingface.co/benjamin/wtp-canine-s-3l) | 94.4 | 96.8 | 86.7 | 93.4 | +| [wtp-canine-s-3l-no-adapters](https://huggingface.co/benjamin/wtp-canine-s-3l-no-adapters) | 93.8 | 96.4 | 86 | 92.3 | +| [wtp-canine-s-6l](https://huggingface.co/benjamin/wtp-canine-s-6l) | 94.5 | 97.1 | 87 | 93.6 | +| [wtp-canine-s-6l-no-adapters](https://huggingface.co/benjamin/wtp-canine-s-6l-no-adapters) | 94.4 | 96.8 | 86.4 | 92.8 | +| [wtp-canine-s-9l](https://huggingface.co/benjamin/wtp-canine-s-9l) | 94.8 | 97 | 87.7 | 93.8 | +| [wtp-canine-s-9l-no-adapters](https://huggingface.co/benjamin/wtp-canine-s-9l-no-adapters) | 94.3 | 96.9 | 86.6 | 93 | +| [wtp-canine-s-12l](https://huggingface.co/benjamin/wtp-canine-s-12l) | 94.7 | 97.1 | 87.9 | 94 | +| [wtp-canine-s-12l-no-adapters](https://huggingface.co/benjamin/wtp-canine-s-12l-no-adapters) | 94.5 | 97 | 87.1 | 93.2 | + +The scores are macro-average F1 score across all available datasets for "English", and macro-average F1 score across all datasets and languages for "Multilingual". "adapted" means adapation via WtP Punct; check out the paper for details. + +For comparison, here's the English scores of some other tools: + +| Model | English Score +|:-----------------------------------------------------------------------|-----:| +| SpaCy (sentencizer) | 86.8 | +| PySBD | 69.8 | +| SpaCy (dependency parser) | 93.1 | +| Ersatz | 91.6 | +| Punkt (`nltk.sent_tokenize`) | 92.5 | + +### Paragraph Segmentation + +Since WtP models are trained to predict newline probablity, they can segment text into paragraphs in addition to sentences. + +```python +# returns a list of paragraphs, each containing a list of sentences +# adjust the paragraph threshold via the `paragraph_threshold` argument. +wtp.split(text, do_paragraph_segmentation=True) +``` + +### Adaptation + +WtP can adapt to the Universal Dependencies, OPUS100 or Ersatz corpus segmentation style in many languages by punctuation adaptation (*preferred*) or threshold adaptation. + +#### Punctuation Adaptation + +```python +# this requires a `lang_code` +# check the paper or `wtp.mixtures` for supported styles +wtp.split(text, lang_code="en", style="ud") +``` + +This also allows changing the threshold, but inherently has higher thresholds values since it is not newline probablity anymore being thresholded: + +```python +wtp.split(text, lang_code="en", style="ud", threshold=0.7) +``` + +To get the default threshold for a style: +```python +wtp.get_threshold("en", "ud", return_punctuation_threshold=True) +``` + +#### Threshold Adaptation +```python +threshold = wtp.get_threshold("en", "ud") + +wtp.split(text, threshold=threshold) +``` + +### Advanced Usage + +__Get the newline or sentence boundary probabilities for a text:__ + +```python +# returns newline probabilities (supports batching!) +wtp.predict_proba(text) + +# returns sentence boundary probabilities for the given style +wtp.predict_proba(text, lang_code="en", style="ud") +``` + +__Load a WtP model in [HuggingFace `transformers`](https://github.com/huggingface/transformers):__ + +```python +# import wtpsplit.models to register the custom models +# (character-level BERT w/ hash embeddings and canine with language adapters) +import wtpsplit.models +from transformers import AutoModelForTokenClassification + +model = AutoModelForTokenClassification.from_pretrained("benjamin/wtp-bert-mini") # or some other model name +``` + +__** NEW ** Adapt to your own corpus using WtP_Punct:__ + +Clone the repository: + +``` +git clone https://github.com/bminixhofer/wtpsplit +cd wtpsplit +``` + +Create your data: +```python +import torch + +torch.save( + { + "en": { + "sentence": { + "dummy-dataset": { + "meta": { + "train_data": ["train sentence 1", "train sentence 2"], + }, + "data": [ + "test sentence 1", + "test sentence 2", + ] + } + } + } + }, + "dummy-dataset.pth" +) +``` + +Run adaptation: + +``` +python3 wtpsplit/evaluation/adapt.py --model_path=benjamin/wtp-bert-mini --eval_data_path dummy-dataset.pth --include_langs=en +``` + +This should print something like + +``` +en dummy-dataset U=0.500 T=0.667 PUNCT=0.667 +100%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 1/1 [00:00<00:00, 30.52it/s] +Wrote mixture to /Users/bminixhofer/Documents/wtpsplit/wtpsplit/.cache/wtp-bert-mini.skops +Wrote results to /Users/bminixhofer/Documents/wtpsplit/wtpsplit/.cache/wtp-bert-mini_intrinsic_results.json +``` + +i.e. run adaptation on your data and save the mixtures and evaluation results. You can then load and use the mixture like this: + +```python +from wtpsplit import WtP +import skops.io as sio + +wtp = WtP( + "wtp-bert-mini", + mixtures=sio.load( + "wtpsplit/.cache/wtp-bert-mini.skops", + ["numpy.float32", "numpy.float64", "sklearn.linear_model._logistic.LogisticRegression"], + ), +) + +wtp.split("your text here", lang_code="en", style="dummy-dataset") +``` + +... and adjust the dataset name, language and model in the above to your needs. + +## Reproducing the paper + +`configs/` contains the configs for the runs from the paper. We trained on a TPUv3-8. Launch training like this: + +``` +python wtpsplit/train/train.py configs/.json +``` + +In addition: +- `wtpsplit/data_acquisition` contains the code for obtaining evaluation data and raw text from the mC4 corpus. +- `wtpsplit/evaluation` contains the code for: + - intrinsic evaluation (i.e. sentence segmentation results) via `adapt.py`. The raw intrinsic results in JSON format are also at `evaluation_results/` + - extrinsic evaluation on Machine Translation in `extrinsic.py` + - baseline (PySBD, nltk, etc.) intrinsic evaluation in `intrinsic_baselines.py` + - punctuation annotation experiments in `punct_annotation.py` and `punct_annotation_wtp.py` + +## Supported Languages + +| iso | Name | +|:----|:-----------------------| +| af | Afrikaans | +| am | Amharic | +| ar | Arabic | +| az | Azerbaijani | +| be | Belarusian | +| bg | Bulgarian | +| bn | Bengali | +| ca | Catalan | +| ceb | Cebuano | +| cs | Czech | +| cy | Welsh | +| da | Danish | +| de | German | +| el | Greek | +| en | English | +| eo | Esperanto | +| es | Spanish | +| et | Estonian | +| eu | Basque | +| fa | Persian | +| fi | Finnish | +| fr | French | +| fy | Western Frisian | +| ga | Irish | +| gd | Scottish Gaelic | +| gl | Galician | +| gu | Gujarati | +| ha | Hausa | +| he | Hebrew | +| hi | Hindi | +| hu | Hungarian | +| hy | Armenian | +| id | Indonesian | +| ig | Igbo | +| is | Icelandic | +| it | Italian | +| ja | Japanese | +| jv | Javanese | +| ka | Georgian | +| kk | Kazakh | +| km | Central Khmer | +| kn | Kannada | +| ko | Korean | +| ku | Kurdish | +| ky | Kirghiz | +| la | Latin | +| lt | Lithuanian | +| lv | Latvian | +| mg | Malagasy | +| mk | Macedonian | +| ml | Malayalam | +| mn | Mongolian | +| mr | Marathi | +| ms | Malay | +| mt | Maltese | +| my | Burmese | +| ne | Nepali | +| nl | Dutch | +| no | Norwegian | +| pa | Panjabi | +| pl | Polish | +| ps | Pushto | +| pt | Portuguese | +| ro | Romanian | +| ru | Russian | +| si | Sinhala | +| sk | Slovak | +| sl | Slovenian | +| sq | Albanian | +| sr | Serbian | +| sv | Swedish | +| ta | Tamil | +| te | Telugu | +| tg | Tajik | +| th | Thai | +| tr | Turkish | +| uk | Ukrainian | +| ur | Urdu | +| uz | Uzbek | +| vi | Vietnamese | +| xh | Xhosa | +| yi | Yiddish | +| yo | Yoruba | +| zh | Chinese | +| zu | Zulu | diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/RELEASE.md b/segmentation/models/SaT_cunit_with_maze/wtpsplit/RELEASE.md new file mode 100644 index 0000000000000000000000000000000000000000..a72215aeb481695a7c3b6fe0b7b2d778236cdc83 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/RELEASE.md @@ -0,0 +1,5 @@ +# Release process for wtpsplit + +1. Bump version in `wtpsplit/__init__.py` and `setup.py`, e.g. https://github.com/segment-any-text/wtpsplit/commit/0945744ef30420f4982aa9429ebf0908ca0e0666 +2. Wait for the Github CI Actions to pass. +3. Run `bash release.sh` to create a new release on PyPI. \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/SM/sat_sm_12l.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/SM/sat_sm_12l.json new file mode 100644 index 0000000000000000000000000000000000000000..d24358a9fced78720b17c91f39a91b9d89d720a7 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/SM/sat_sm_12l.json @@ -0,0 +1,22 @@ +{ + "output_dir": "sat_sm_12l", + "lim_lookahead": false, + "block_size": 256, + "no_sm_corruption": false, + "overwrite_output_dir": true, + "evaluation_strategy": "steps", + "eval_steps": 250, + "report_to": "wandb", + "learning_rate": 0.00003, + "warmup_steps": 500, + "per_device_train_batch_size": 128, + "per_device_eval_batch_size": 128, + "weight_decay": 0.01, + "push_to_hub": false, + "save_total_limit": 1, + "save_strategy": "steps", + "save_steps": 1000, + "load_best_model_at_end": false, + "max_steps": 20000, + "num_layers": 12 +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/SM/sat_sm_12l_ll.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/SM/sat_sm_12l_ll.json new file mode 100644 index 0000000000000000000000000000000000000000..deb73db631668dbb6328372dff8a74489cf1c108 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/SM/sat_sm_12l_ll.json @@ -0,0 +1,22 @@ +{ + "output_dir": "sat_sm_12l", + "lim_lookahead": true, + "block_size": 256, + "no_sm_corruption": false, + "overwrite_output_dir": true, + "evaluation_strategy": "steps", + "eval_steps": 250, + "report_to": "wandb", + "learning_rate": 0.00003, + "warmup_steps": 500, + "per_device_train_batch_size": 128, + "per_device_eval_batch_size": 128, + "weight_decay": 0.01, + "push_to_hub": false, + "save_total_limit": 1, + "save_strategy": "steps", + "save_steps": 1000, + "load_best_model_at_end": false, + "max_steps": 20000, + "num_layers": 12 +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/SM/sat_sm_12l_no-pretraining.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/SM/sat_sm_12l_no-pretraining.json new file mode 100644 index 0000000000000000000000000000000000000000..38000346cf9a5ad3ccc5d54862f9887f260fbdee --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/SM/sat_sm_12l_no-pretraining.json @@ -0,0 +1,23 @@ +{ + "output_dir": "sat_sm_12l", + "lim_lookahead": true, + "block_size": 256, + "no_sm_corruption": false, + "without_pretraining" : true, + "overwrite_output_dir": true, + "evaluation_strategy": "steps", + "eval_steps": 250, + "report_to": "wandb", + "learning_rate": 0.00003, + "warmup_steps": 500, + "per_device_train_batch_size": 128, + "per_device_eval_batch_size": 128, + "weight_decay": 0.01, + "push_to_hub": false, + "save_total_limit": 1, + "save_strategy": "steps", + "save_steps": 1000, + "load_best_model_at_end": false, + "max_steps": 20000, + "num_layers": 12 +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/SM/sat_sm_12l_only_clean.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/SM/sat_sm_12l_only_clean.json new file mode 100644 index 0000000000000000000000000000000000000000..8c59c3167dad43a0caf96dce62bdae96a4e0e378 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/SM/sat_sm_12l_only_clean.json @@ -0,0 +1,22 @@ +{ + "output_dir": "sat_sm_12l", + "lim_lookahead": true, + "block_size": 256, + "no_sm_corruption": true, + "overwrite_output_dir": true, + "evaluation_strategy": "steps", + "eval_steps": 250, + "report_to": "wandb", + "learning_rate": 0.00003, + "warmup_steps": 500, + "per_device_train_batch_size": 128, + "per_device_eval_batch_size": 128, + "weight_decay": 0.01, + "push_to_hub": false, + "save_total_limit": 1, + "save_strategy": "steps", + "save_steps": 1000, + "load_best_model_at_end": false, + "max_steps": 20000, + "num_layers": 12 +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/SM/sat_sm_1l.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/SM/sat_sm_1l.json new file mode 100644 index 0000000000000000000000000000000000000000..9aa99e3147fb40d1f497d4252f19ba40fecb2931 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/SM/sat_sm_1l.json @@ -0,0 +1,22 @@ +{ + "output_dir": "sat_sm_1l", + "lim_lookahead": false, + "block_size": 256, + "no_sm_corruption": false, + "overwrite_output_dir": true, + "evaluation_strategy": "steps", + "eval_steps": 250, + "report_to": "wandb", + "learning_rate": 0.00003, + "warmup_steps": 500, + "per_device_train_batch_size": 128, + "per_device_eval_batch_size": 128, + "weight_decay": 0.01, + "push_to_hub": false, + "save_total_limit": 1, + "save_strategy": "steps", + "save_steps": 1000, + "load_best_model_at_end": false, + "max_steps": 20000, + "num_layers": 1 +} diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/SM/sat_sm_3l.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/SM/sat_sm_3l.json new file mode 100644 index 0000000000000000000000000000000000000000..3e6cc462e27d39449e634d9600c5d84724ae879c --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/SM/sat_sm_3l.json @@ -0,0 +1,22 @@ +{ + "output_dir": "sat_sm_3l", + "lim_lookahead": false, + "block_size": 256, + "no_sm_corruption": false, + "overwrite_output_dir": true, + "evaluation_strategy": "steps", + "eval_steps": 250, + "report_to": "wandb", + "learning_rate": 0.00003, + "warmup_steps": 500, + "per_device_train_batch_size": 128, + "per_device_eval_batch_size": 128, + "weight_decay": 0.01, + "push_to_hub": false, + "save_total_limit": 1, + "save_strategy": "steps", + "save_steps": 1000, + "load_best_model_at_end": false, + "max_steps": 20000, + "num_layers": 3 +} diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/SM/sat_sm_6l.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/SM/sat_sm_6l.json new file mode 100644 index 0000000000000000000000000000000000000000..bf58e2e676490ab94391e9f6f3e26ca5987f9b64 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/SM/sat_sm_6l.json @@ -0,0 +1,22 @@ +{ + "output_dir": "sat_sm_6l", + "lim_lookahead": false, + "block_size": 256, + "no_sm_corruption": false, + "overwrite_output_dir": true, + "evaluation_strategy": "steps", + "eval_steps": 250, + "report_to": "wandb", + "learning_rate": 0.00003, + "warmup_steps": 500, + "per_device_train_batch_size": 128, + "per_device_eval_batch_size": 128, + "weight_decay": 0.01, + "push_to_hub": false, + "save_total_limit": 1, + "save_strategy": "steps", + "save_steps": 1000, + "load_best_model_at_end": false, + "max_steps": 20000, + "num_layers": 6 +} diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/SM/sat_sm_9l.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/SM/sat_sm_9l.json new file mode 100644 index 0000000000000000000000000000000000000000..b0423fb2f8d73008ef6630e6e7be0ebf20b26f01 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/SM/sat_sm_9l.json @@ -0,0 +1,22 @@ +{ + "output_dir": "sat_sm_9", + "lim_lookahead": false, + "block_size": 256, + "no_sm_corruption": false, + "overwrite_output_dir": true, + "evaluation_strategy": "steps", + "eval_steps": 250, + "report_to": "wandb", + "learning_rate": 0.00003, + "warmup_steps": 500, + "per_device_train_batch_size": 128, + "per_device_eval_batch_size": 128, + "weight_decay": 0.01, + "push_to_hub": false, + "save_total_limit": 1, + "save_strategy": "steps", + "save_steps": 1000, + "load_best_model_at_end": false, + "max_steps": 20000, + "num_layers": 9 +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/bertchar_mini_stratify_0.1.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/bertchar_mini_stratify_0.1.json new file mode 100644 index 0000000000000000000000000000000000000000..be4e740fa8f9b2667a92f537afec0d10bdb7ca51 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/bertchar_mini_stratify_0.1.json @@ -0,0 +1,39 @@ +{ + "model_name_or_path": "prajjwal1/bert-mini", + "output_dir": "output_bertchar", + "train_text_path": "data/sentence/train.parquet", + "valid_text_path": "data/sentence/valid.parquet", + "block_size": 512, + "use_bert": true, + "do_train": true, + "do_eval": true, + "evaluation_strategy": "steps", + "per_device_train_batch_size": 64, + "per_device_eval_batch_size": 32, + "gradient_accumulation_steps": 1, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 4, + "preprocessing_num_workers": 6, + "learning_rate": 1e-4, + "save_strategy": "steps", + "fp16": false, + "max_steps": 2000000, + "save_steps": 100000, + "eval_steps": 5000, + "logging_steps": 50, + "report_to": "wandb", + "is_decoder": false, + "remove_unused_columns": false, + "lookahead": null, + "one_sample_per_line": false, + "do_sentence_training": true, + "do_auxiliary_training": true, + "warmup_steps": 5000, + "adapter_warmup_steps": 0, + "adapter_lr_multiplier": 1, + "ngram_order": 1, + "non_punctuation_sample_ratio": 0.1, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600 +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/bertchar_tiny_stratify_0.1.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/bertchar_tiny_stratify_0.1.json new file mode 100644 index 0000000000000000000000000000000000000000..aa373f678e79527ef655a90d4cdc6ad8367da3ac --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/bertchar_tiny_stratify_0.1.json @@ -0,0 +1,39 @@ +{ + "model_name_or_path": "prajjwal1/bert-tiny", + "output_dir": "output_bertchar", + "train_text_path": "data/sentence/train.parquet", + "valid_text_path": "data/sentence/valid.parquet", + "block_size": 512, + "use_bert": true, + "do_train": true, + "do_eval": true, + "evaluation_strategy": "steps", + "per_device_train_batch_size": 64, + "per_device_eval_batch_size": 32, + "gradient_accumulation_steps": 1, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 4, + "preprocessing_num_workers": 6, + "learning_rate": 1e-4, + "save_strategy": "steps", + "fp16": false, + "max_steps": 2000000, + "save_steps": 100000, + "eval_steps": 5000, + "logging_steps": 50, + "report_to": "wandb", + "is_decoder": false, + "remove_unused_columns": false, + "lookahead": null, + "one_sample_per_line": false, + "do_sentence_training": true, + "do_auxiliary_training": true, + "warmup_steps": 5000, + "adapter_warmup_steps": 0, + "adapter_lr_multiplier": 1, + "ngram_order": 1, + "non_punctuation_sample_ratio": 0.1, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600 +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_no_stratify_3layers.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_no_stratify_3layers.json new file mode 100644 index 0000000000000000000000000000000000000000..d6fab0cb00f30e40176fc4f341ec5ba91415553b --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_no_stratify_3layers.json @@ -0,0 +1,40 @@ +{ + "model_name_or_path": "google/canine-s", + "output_dir": "output_margin_sentence_only", + "train_text_path": "data/sentence/train.parquet", + "valid_text_path": "data/sentence/valid.parquet", + "block_size": 512, + "do_train": true, + "do_eval": true, + "evaluation_strategy": "steps", + "per_device_train_batch_size": 64, + "per_device_eval_batch_size": 32, + "gradient_accumulation_steps": 1, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 4, + "preprocessing_num_workers": 6, + "learning_rate": 1e-4, + "save_strategy": "steps", + "fp16": false, + "max_steps": 400000, + "save_steps": 50000, + "eval_steps": 5000, + "logging_steps": 50, + "report_to": "wandb", + "is_decoder": false, + "remove_unused_columns": false, + "lookahead": null, + "num_hidden_layers": 3, + "language_adapter": "shared", + "one_sample_per_line": false, + "do_sentence_training": true, + "do_auxiliary_training": true, + "warmup_steps": 5000, + "adapter_warmup_steps": 5000, + "adapter_lr_multiplier": 1, + "ngram_order": 1, + "non_punctuation_sample_ratio": null, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600 +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_12layers_long.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_12layers_long.json new file mode 100644 index 0000000000000000000000000000000000000000..348100aa3da5f2b77a8b3512cd2bc717df0ad604 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_12layers_long.json @@ -0,0 +1,40 @@ +{ + "model_name_or_path": "google/canine-s", + "output_dir": "output_margin_sentence_only", + "train_text_path": "data/sentence/train.parquet", + "valid_text_path": "data/sentence/valid.parquet", + "block_size": 512, + "do_train": true, + "do_eval": true, + "evaluation_strategy": "steps", + "per_device_train_batch_size": 32, + "per_device_eval_batch_size": 32, + "gradient_accumulation_steps": 2, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 4, + "preprocessing_num_workers": 6, + "learning_rate": 1e-4, + "save_strategy": "steps", + "fp16": false, + "max_steps": 400000, + "save_steps": 50000, + "eval_steps": 5000, + "logging_steps": 50, + "report_to": "wandb", + "is_decoder": false, + "remove_unused_columns": false, + "lookahead": null, + "num_hidden_layers": 12, + "language_adapter": "on", + "one_sample_per_line": false, + "do_sentence_training": true, + "do_auxiliary_training": true, + "warmup_steps": 5000, + "adapter_warmup_steps": 5000, + "adapter_lr_multiplier": 1, + "ngram_order": 1, + "non_punctuation_sample_ratio": 0.1, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600 +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_12layers_long_no_la.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_12layers_long_no_la.json new file mode 100644 index 0000000000000000000000000000000000000000..38b0e2abb1c7ea230dd439f13c3d293bea16a79f --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_12layers_long_no_la.json @@ -0,0 +1,40 @@ +{ + "model_name_or_path": "google/canine-s", + "output_dir": "output_margin_sentence_only", + "train_text_path": "data/sentence/train.parquet", + "valid_text_path": "data/sentence/valid.parquet", + "block_size": 512, + "do_train": true, + "do_eval": true, + "evaluation_strategy": "steps", + "per_device_train_batch_size": 32, + "per_device_eval_batch_size": 32, + "gradient_accumulation_steps": 2, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 4, + "preprocessing_num_workers": 6, + "learning_rate": 1e-4, + "save_strategy": "steps", + "fp16": false, + "max_steps": 400000, + "save_steps": 50000, + "eval_steps": 5000, + "logging_steps": 50, + "report_to": "wandb", + "is_decoder": false, + "remove_unused_columns": false, + "lookahead": null, + "num_hidden_layers": 12, + "language_adapter": "off", + "one_sample_per_line": false, + "do_sentence_training": true, + "do_auxiliary_training": true, + "warmup_steps": 5000, + "adapter_warmup_steps": 5000, + "adapter_lr_multiplier": 1, + "ngram_order": 1, + "non_punctuation_sample_ratio": 0.1, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600 +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_1layer_long.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_1layer_long.json new file mode 100644 index 0000000000000000000000000000000000000000..c1e6187179e5979e74373bb2ad76596f71c84fa0 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_1layer_long.json @@ -0,0 +1,40 @@ +{ + "model_name_or_path": "google/canine-s", + "output_dir": "output_margin_sentence_only", + "train_text_path": "data/sentence/train.parquet", + "valid_text_path": "data/sentence/valid.parquet", + "block_size": 512, + "do_train": true, + "do_eval": true, + "evaluation_strategy": "steps", + "per_device_train_batch_size": 64, + "per_device_eval_batch_size": 32, + "gradient_accumulation_steps": 1, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 4, + "preprocessing_num_workers": 6, + "learning_rate": 1e-4, + "save_strategy": "steps", + "fp16": false, + "max_steps": 400000, + "save_steps": 50000, + "eval_steps": 5000, + "logging_steps": 50, + "report_to": "wandb", + "is_decoder": false, + "remove_unused_columns": false, + "lookahead": null, + "num_hidden_layers": 1, + "language_adapter": "on", + "one_sample_per_line": false, + "do_sentence_training": true, + "do_auxiliary_training": true, + "warmup_steps": 5000, + "adapter_warmup_steps": 5000, + "adapter_lr_multiplier": 1, + "ngram_order": 1, + "non_punctuation_sample_ratio": 0.1, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600 +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_1layer_long_no_la.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_1layer_long_no_la.json new file mode 100644 index 0000000000000000000000000000000000000000..28cfc9615c4c614ea110c716334ea065ea6c0379 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_1layer_long_no_la.json @@ -0,0 +1,40 @@ +{ + "model_name_or_path": "google/canine-s", + "output_dir": "output_margin_sentence_only", + "train_text_path": "data/sentence/train.parquet", + "valid_text_path": "data/sentence/valid.parquet", + "block_size": 512, + "do_train": true, + "do_eval": true, + "evaluation_strategy": "steps", + "per_device_train_batch_size": 64, + "per_device_eval_batch_size": 32, + "gradient_accumulation_steps": 1, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 4, + "preprocessing_num_workers": 6, + "learning_rate": 1e-4, + "save_strategy": "steps", + "fp16": false, + "max_steps": 400000, + "save_steps": 50000, + "eval_steps": 5000, + "logging_steps": 50, + "report_to": "wandb", + "is_decoder": false, + "remove_unused_columns": false, + "lookahead": null, + "num_hidden_layers": 1, + "language_adapter": "off", + "one_sample_per_line": false, + "do_sentence_training": true, + "do_auxiliary_training": true, + "warmup_steps": 5000, + "adapter_warmup_steps": 5000, + "adapter_lr_multiplier": 1, + "ngram_order": 1, + "non_punctuation_sample_ratio": 0.1, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600 +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_3layers_long.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_3layers_long.json new file mode 100644 index 0000000000000000000000000000000000000000..138d743d60fe377edecf681f8466ea394eb71c55 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_3layers_long.json @@ -0,0 +1,40 @@ +{ + "model_name_or_path": "google/canine-s", + "output_dir": "output_margin_sentence_only", + "train_text_path": "data/sentence/train.parquet", + "valid_text_path": "data/sentence/valid.parquet", + "block_size": 512, + "do_train": true, + "do_eval": true, + "evaluation_strategy": "steps", + "per_device_train_batch_size": 64, + "per_device_eval_batch_size": 32, + "gradient_accumulation_steps": 1, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 4, + "preprocessing_num_workers": 6, + "learning_rate": 1e-4, + "save_strategy": "steps", + "fp16": false, + "max_steps": 400000, + "save_steps": 50000, + "eval_steps": 5000, + "logging_steps": 50, + "report_to": "wandb", + "is_decoder": false, + "remove_unused_columns": false, + "lookahead": null, + "num_hidden_layers": 3, + "language_adapter": "on", + "one_sample_per_line": false, + "do_sentence_training": true, + "do_auxiliary_training": true, + "warmup_steps": 5000, + "adapter_warmup_steps": 5000, + "adapter_lr_multiplier": 1, + "ngram_order": 1, + "non_punctuation_sample_ratio": 0.1, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600 +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_3layers_long_no_la.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_3layers_long_no_la.json new file mode 100644 index 0000000000000000000000000000000000000000..136f35f4ebb0e3990403d2e8c38c43b3dcc8412b --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_3layers_long_no_la.json @@ -0,0 +1,40 @@ +{ + "model_name_or_path": "google/canine-s", + "output_dir": "output_margin_sentence_only", + "train_text_path": "data/sentence/train.parquet", + "valid_text_path": "data/sentence/valid.parquet", + "block_size": 512, + "do_train": true, + "do_eval": true, + "evaluation_strategy": "steps", + "per_device_train_batch_size": 64, + "per_device_eval_batch_size": 32, + "gradient_accumulation_steps": 1, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 4, + "preprocessing_num_workers": 6, + "learning_rate": 1e-4, + "save_strategy": "steps", + "fp16": false, + "max_steps": 400000, + "save_steps": 50000, + "eval_steps": 5000, + "logging_steps": 50, + "report_to": "wandb", + "is_decoder": false, + "remove_unused_columns": false, + "lookahead": null, + "num_hidden_layers": 3, + "language_adapter": "off", + "one_sample_per_line": false, + "do_sentence_training": true, + "do_auxiliary_training": true, + "warmup_steps": 5000, + "adapter_warmup_steps": 5000, + "adapter_lr_multiplier": 1, + "ngram_order": 1, + "non_punctuation_sample_ratio": 0.1, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600 +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_3layers_long_subsample25.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_3layers_long_subsample25.json new file mode 100644 index 0000000000000000000000000000000000000000..21f02074738e0f7e744b9fa132c27d2761c60a7b --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_3layers_long_subsample25.json @@ -0,0 +1,40 @@ +{ + "model_name_or_path": "google/canine-s", + "output_dir": "output_margin_sentence_only", + "train_text_path": "data/sentence/train_25.parquet", + "valid_text_path": "data/sentence/valid.parquet", + "block_size": 512, + "do_train": true, + "do_eval": true, + "evaluation_strategy": "steps", + "per_device_train_batch_size": 64, + "per_device_eval_batch_size": 32, + "gradient_accumulation_steps": 1, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 4, + "preprocessing_num_workers": 6, + "learning_rate": 1e-4, + "save_strategy": "steps", + "fp16": false, + "max_steps": 400000, + "save_steps": 50000, + "eval_steps": 5000, + "logging_steps": 50, + "report_to": "wandb", + "is_decoder": false, + "remove_unused_columns": false, + "lookahead": null, + "num_hidden_layers": 3, + "language_adapter": "on", + "one_sample_per_line": false, + "do_sentence_training": true, + "do_auxiliary_training": true, + "warmup_steps": 5000, + "adapter_warmup_steps": 5000, + "adapter_lr_multiplier": 1, + "ngram_order": 1, + "non_punctuation_sample_ratio": 0.1, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600 +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_3layers_long_subsample50.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_3layers_long_subsample50.json new file mode 100644 index 0000000000000000000000000000000000000000..7bfe19b7167dc64843f74da3e632ec4fc99b0d6e --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_3layers_long_subsample50.json @@ -0,0 +1,40 @@ +{ + "model_name_or_path": "google/canine-s", + "output_dir": "output_margin_sentence_only", + "train_text_path": "data/sentence/train_50.parquet", + "valid_text_path": "data/sentence/valid.parquet", + "block_size": 512, + "do_train": true, + "do_eval": true, + "evaluation_strategy": "steps", + "per_device_train_batch_size": 64, + "per_device_eval_batch_size": 32, + "gradient_accumulation_steps": 1, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 4, + "preprocessing_num_workers": 6, + "learning_rate": 1e-4, + "save_strategy": "steps", + "fp16": false, + "max_steps": 400000, + "save_steps": 50000, + "eval_steps": 5000, + "logging_steps": 50, + "report_to": "wandb", + "is_decoder": false, + "remove_unused_columns": false, + "lookahead": null, + "num_hidden_layers": 3, + "language_adapter": "on", + "one_sample_per_line": false, + "do_sentence_training": true, + "do_auxiliary_training": true, + "warmup_steps": 5000, + "adapter_warmup_steps": 5000, + "adapter_lr_multiplier": 1, + "ngram_order": 1, + "non_punctuation_sample_ratio": 0.1, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600 +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_3layers_long_subsample75.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_3layers_long_subsample75.json new file mode 100644 index 0000000000000000000000000000000000000000..4c88dbd7546d9a42dfc150ea82ffe18c1e2b27df --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_3layers_long_subsample75.json @@ -0,0 +1,40 @@ +{ + "model_name_or_path": "google/canine-s", + "output_dir": "output_margin_sentence_only", + "train_text_path": "data/sentence/train_75.parquet", + "valid_text_path": "data/sentence/valid.parquet", + "block_size": 512, + "do_train": true, + "do_eval": true, + "evaluation_strategy": "steps", + "per_device_train_batch_size": 64, + "per_device_eval_batch_size": 32, + "gradient_accumulation_steps": 1, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 4, + "preprocessing_num_workers": 6, + "learning_rate": 1e-4, + "save_strategy": "steps", + "fp16": false, + "max_steps": 400000, + "save_steps": 50000, + "eval_steps": 5000, + "logging_steps": 50, + "report_to": "wandb", + "is_decoder": false, + "remove_unused_columns": false, + "lookahead": null, + "num_hidden_layers": 3, + "language_adapter": "on", + "one_sample_per_line": false, + "do_sentence_training": true, + "do_auxiliary_training": true, + "warmup_steps": 5000, + "adapter_warmup_steps": 5000, + "adapter_lr_multiplier": 1, + "ngram_order": 1, + "non_punctuation_sample_ratio": 0.1, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600 +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_3layers_no_aux.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_3layers_no_aux.json new file mode 100644 index 0000000000000000000000000000000000000000..0ec4691623865470046bf9f37d252a1b920ae852 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_3layers_no_aux.json @@ -0,0 +1,40 @@ +{ + "model_name_or_path": "google/canine-s", + "output_dir": "output_margin_sentence_only", + "train_text_path": "data/sentence/train.parquet", + "valid_text_path": "data/sentence/valid.parquet", + "block_size": 512, + "do_train": true, + "do_eval": true, + "evaluation_strategy": "steps", + "per_device_train_batch_size": 64, + "per_device_eval_batch_size": 32, + "gradient_accumulation_steps": 1, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 4, + "preprocessing_num_workers": 6, + "learning_rate": 1e-4, + "save_strategy": "steps", + "fp16": false, + "max_steps": 400000, + "save_steps": 50000, + "eval_steps": 5000, + "logging_steps": 50, + "report_to": "wandb", + "is_decoder": false, + "remove_unused_columns": false, + "lookahead": null, + "num_hidden_layers": 3, + "language_adapter": "on", + "one_sample_per_line": false, + "do_sentence_training": true, + "do_auxiliary_training": false, + "warmup_steps": 5000, + "adapter_warmup_steps": 5000, + "adapter_lr_multiplier": 1, + "ngram_order": 1, + "non_punctuation_sample_ratio": 0.1, + "prediction_loss_only": true, + "use_auxiliary": false, + "ddp_timeout": 3600 +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_3layers_no_aux_training.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_3layers_no_aux_training.json new file mode 100644 index 0000000000000000000000000000000000000000..a4730afdaaeb76f70e11fafa3204dd833c1a2f7c --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_3layers_no_aux_training.json @@ -0,0 +1,40 @@ +{ + "model_name_or_path": "google/canine-s", + "output_dir": "output_margin_sentence_only", + "train_text_path": "data/sentence/train.parquet", + "valid_text_path": "data/sentence/valid.parquet", + "block_size": 512, + "do_train": true, + "do_eval": true, + "evaluation_strategy": "steps", + "per_device_train_batch_size": 64, + "per_device_eval_batch_size": 32, + "gradient_accumulation_steps": 1, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 4, + "preprocessing_num_workers": 6, + "learning_rate": 1e-4, + "save_strategy": "steps", + "fp16": false, + "max_steps": 400000, + "save_steps": 50000, + "eval_steps": 5000, + "logging_steps": 50, + "report_to": "wandb", + "is_decoder": false, + "remove_unused_columns": false, + "lookahead": null, + "num_hidden_layers": 3, + "language_adapter": "on", + "one_sample_per_line": false, + "do_sentence_training": true, + "do_auxiliary_training": false, + "warmup_steps": 5000, + "adapter_warmup_steps": 5000, + "adapter_lr_multiplier": 1, + "ngram_order": 1, + "non_punctuation_sample_ratio": 0.1, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600 +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_3layers_shared_lang_adapter.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_3layers_shared_lang_adapter.json new file mode 100644 index 0000000000000000000000000000000000000000..21ab2ff33b28f6e06898b113db971b31b0b89939 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_3layers_shared_lang_adapter.json @@ -0,0 +1,40 @@ +{ + "model_name_or_path": "google/canine-s", + "output_dir": "output_margin_sentence_only", + "train_text_path": "data/sentence/train.parquet", + "valid_text_path": "data/sentence/valid.parquet", + "block_size": 512, + "do_train": true, + "do_eval": true, + "evaluation_strategy": "steps", + "per_device_train_batch_size": 64, + "per_device_eval_batch_size": 32, + "gradient_accumulation_steps": 1, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 4, + "preprocessing_num_workers": 6, + "learning_rate": 1e-4, + "save_strategy": "steps", + "fp16": false, + "max_steps": 400000, + "save_steps": 50000, + "eval_steps": 5000, + "logging_steps": 50, + "report_to": "wandb", + "is_decoder": false, + "remove_unused_columns": false, + "lookahead": null, + "num_hidden_layers": 3, + "language_adapter": "shared", + "one_sample_per_line": false, + "do_sentence_training": true, + "do_auxiliary_training": true, + "warmup_steps": 5000, + "adapter_warmup_steps": 5000, + "adapter_lr_multiplier": 1, + "ngram_order": 1, + "non_punctuation_sample_ratio": 0.1, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600 +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_6layers_long.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_6layers_long.json new file mode 100644 index 0000000000000000000000000000000000000000..8794ffe5abf110f1e58641e56e15b9449a555e78 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_6layers_long.json @@ -0,0 +1,40 @@ +{ + "model_name_or_path": "google/canine-s", + "output_dir": "output_margin_sentence_only", + "train_text_path": "data/sentence/train.parquet", + "valid_text_path": "data/sentence/valid.parquet", + "block_size": 512, + "do_train": true, + "do_eval": true, + "evaluation_strategy": "steps", + "per_device_train_batch_size": 64, + "per_device_eval_batch_size": 32, + "gradient_accumulation_steps": 1, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 4, + "preprocessing_num_workers": 6, + "learning_rate": 1e-4, + "save_strategy": "steps", + "fp16": false, + "max_steps": 400000, + "save_steps": 50000, + "eval_steps": 5000, + "logging_steps": 50, + "report_to": "wandb", + "is_decoder": false, + "remove_unused_columns": false, + "lookahead": null, + "num_hidden_layers": 6, + "language_adapter": "on", + "one_sample_per_line": false, + "do_sentence_training": true, + "do_auxiliary_training": true, + "warmup_steps": 5000, + "adapter_warmup_steps": 5000, + "adapter_lr_multiplier": 1, + "ngram_order": 1, + "non_punctuation_sample_ratio": 0.1, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600 +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_6layers_long_no_la.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_6layers_long_no_la.json new file mode 100644 index 0000000000000000000000000000000000000000..802773ac66569d25e376c0d860e97f41709aeff0 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_6layers_long_no_la.json @@ -0,0 +1,40 @@ +{ + "model_name_or_path": "google/canine-s", + "output_dir": "output_margin_sentence_only", + "train_text_path": "data/sentence/train.parquet", + "valid_text_path": "data/sentence/valid.parquet", + "block_size": 512, + "do_train": true, + "do_eval": true, + "evaluation_strategy": "steps", + "per_device_train_batch_size": 64, + "per_device_eval_batch_size": 32, + "gradient_accumulation_steps": 1, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 4, + "preprocessing_num_workers": 6, + "learning_rate": 1e-4, + "save_strategy": "steps", + "fp16": false, + "max_steps": 400000, + "save_steps": 50000, + "eval_steps": 5000, + "logging_steps": 50, + "report_to": "wandb", + "is_decoder": false, + "remove_unused_columns": false, + "lookahead": null, + "num_hidden_layers": 6, + "language_adapter": "off", + "one_sample_per_line": false, + "do_sentence_training": true, + "do_auxiliary_training": true, + "warmup_steps": 5000, + "adapter_warmup_steps": 5000, + "adapter_lr_multiplier": 1, + "ngram_order": 1, + "non_punctuation_sample_ratio": 0.1, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600 +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_9layers_long.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_9layers_long.json new file mode 100644 index 0000000000000000000000000000000000000000..606959f2036b6a2d7fa69fa83ec6d1304557d3fe --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_9layers_long.json @@ -0,0 +1,40 @@ +{ + "model_name_or_path": "google/canine-s", + "output_dir": "output_margin_sentence_only", + "train_text_path": "data/sentence/train.parquet", + "valid_text_path": "data/sentence/valid.parquet", + "block_size": 512, + "do_train": true, + "do_eval": true, + "evaluation_strategy": "steps", + "per_device_train_batch_size": 64, + "per_device_eval_batch_size": 32, + "gradient_accumulation_steps": 1, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 4, + "preprocessing_num_workers": 6, + "learning_rate": 1e-4, + "save_strategy": "steps", + "fp16": false, + "max_steps": 400000, + "save_steps": 50000, + "eval_steps": 5000, + "logging_steps": 50, + "report_to": "wandb", + "is_decoder": false, + "remove_unused_columns": false, + "lookahead": null, + "num_hidden_layers": 9, + "language_adapter": "on", + "one_sample_per_line": false, + "do_sentence_training": true, + "do_auxiliary_training": true, + "warmup_steps": 5000, + "adapter_warmup_steps": 5000, + "adapter_lr_multiplier": 1, + "ngram_order": 1, + "non_punctuation_sample_ratio": 0.1, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600 +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_9layers_long_no_la.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_9layers_long_no_la.json new file mode 100644 index 0000000000000000000000000000000000000000..c062f0cdeaae1d626dca2e5629ccd071b84523f3 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_9layers_long_no_la.json @@ -0,0 +1,40 @@ +{ + "model_name_or_path": "google/canine-s", + "output_dir": "output_margin_sentence_only", + "train_text_path": "data/sentence/train.parquet", + "valid_text_path": "data/sentence/valid.parquet", + "block_size": 512, + "do_train": true, + "do_eval": true, + "evaluation_strategy": "steps", + "per_device_train_batch_size": 32, + "per_device_eval_batch_size": 32, + "gradient_accumulation_steps": 2, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 4, + "preprocessing_num_workers": 6, + "learning_rate": 1e-4, + "save_strategy": "steps", + "fp16": false, + "max_steps": 400000, + "save_steps": 50000, + "eval_steps": 5000, + "logging_steps": 50, + "report_to": "wandb", + "is_decoder": false, + "remove_unused_columns": false, + "lookahead": null, + "num_hidden_layers": 9, + "language_adapter": "off", + "one_sample_per_line": false, + "do_sentence_training": true, + "do_auxiliary_training": true, + "warmup_steps": 5000, + "adapter_warmup_steps": 5000, + "adapter_lr_multiplier": 1, + "ngram_order": 1, + "non_punctuation_sample_ratio": 0.1, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600 +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_debug.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_debug.json new file mode 100644 index 0000000000000000000000000000000000000000..eececc7a90dc1ebb10a55d5eb2f2465ea2b63453 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/WtP/canine_stratify_0.1_debug.json @@ -0,0 +1,38 @@ +{ + "model_name_or_path": "google/canine-s", + "output_dir": "output_margin_sentence_only", + "train_text_path": "data/sentence/valid.parquet", + "valid_text_path": "data/sentence/valid.parquet", + "block_size": 512, + "do_train": true, + "do_eval": true, + "evaluation_strategy": "steps", + "per_device_train_batch_size": 4, + "per_device_eval_batch_size": 16, + "gradient_accumulation_steps": 1, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 4, + "preprocessing_num_workers": 1, + "learning_rate": 1e-4, + "save_strategy": "steps", + "fp16": false, + "max_steps": 100000, + "save_steps": 10000, + "eval_steps": 50, + "logging_steps": 50, + "report_to": "none", + "is_decoder": false, + "remove_unused_columns": false, + "lookahead": null, + "num_hidden_layers": 3, + "language_adapter": "on", + "one_sample_per_line": false, + "do_sentence_training": true, + "warmup_steps": 5000, + "adapter_warmup_steps": 5000, + "adapter_lr_multiplier": 1, + "ngram_order": 1, + "non_punctuation_sample_ratio": 0.1, + "prediction_loss_only": true, + "use_auxiliary": true +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/lora/lora_12l.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/lora/lora_12l.json new file mode 100644 index 0000000000000000000000000000000000000000..6a268ada5d6ce721084bb0cd8604578c42d9ede8 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/lora/lora_12l.json @@ -0,0 +1,38 @@ +{ + "model_name_or_path": "segment-any-text/sat-12l", + "output_dir": "sat-12l-LL_lora", + "block_size": 256, + "eval_stride": 128, + "do_train": true, + "do_eval": true, + "per_device_train_batch_size": 64, + "per_device_eval_batch_size": 32, + "gradient_accumulation_steps": 1, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 1, + "preprocessing_num_workers": 1, + "learning_rate": 3e-4, + "fp16": false, + "num_train_epochs": 30, + "logging_steps": 50, + "report_to": "wandb", + "wandb_project": "sentence", + "save_steps": 100000000, + "remove_unused_columns": false, + "one_sample_per_line": false, + "do_sentence_training": true, + "do_auxiliary_training": false, + "warmup_ratio": 0.1, + "non_punctuation_sample_ratio": null, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600, + "use_subwords": true, + "custom_punctuation_file": "punctuation_xlmr_unk.txt", + "log_level": "warning", + "adapter_config": "lora[r=16,alpha=32,intermediate_lora=True]", + "weight_decay": 0.0, + "auxiliary_remove_prob": 0.0, + "train_adapter": true, + "subsample": 10000 +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/lora/lora_3l.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/lora/lora_3l.json new file mode 100644 index 0000000000000000000000000000000000000000..cf4a4065e5c7a7691d92547ebf92ab6ecdeed8c8 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/lora/lora_3l.json @@ -0,0 +1,38 @@ +{ + "model_name_or_path": "segment-any-text/sat-3l", + "output_dir": "sat-3l-LL_lora", + "block_size": 256, + "eval_stride": 128, + "do_train": true, + "do_eval": true, + "per_device_train_batch_size": 64, + "per_device_eval_batch_size": 32, + "gradient_accumulation_steps": 1, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 1, + "preprocessing_num_workers": 1, + "learning_rate": 3e-4, + "fp16": false, + "num_train_epochs": 30, + "logging_steps": 50, + "report_to": "wandb", + "wandb_project": "sentence", + "save_steps": 100000000, + "remove_unused_columns": false, + "one_sample_per_line": false, + "do_sentence_training": true, + "do_auxiliary_training": false, + "warmup_ratio": 0.1, + "non_punctuation_sample_ratio": null, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600, + "use_subwords": true, + "custom_punctuation_file": "punctuation_xlmr_unk.txt", + "log_level": "warning", + "adapter_config": "lora[r=16,alpha=32,intermediate_lora=True]", + "weight_decay": 0.0, + "auxiliary_remove_prob": 0.0, + "train_adapter": true, + "subsample": 10000 +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/lora/lora_dummy_config.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/lora/lora_dummy_config.json new file mode 100644 index 0000000000000000000000000000000000000000..3858bec82288dc0343bb358b383eee72873fabd8 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/lora/lora_dummy_config.json @@ -0,0 +1,39 @@ +{ + "model_name_or_path": "segment-any-text/sat-12l", + "output_dir": "sat-12l_lora_DUMMY-EXAMPLE", + "text_path": "wtpsplit/utils/dummy-dataset.pth", + "block_size": 256, + "eval_stride": 128, + "do_train": true, + "do_eval": true, + "per_device_train_batch_size": 64, + "per_device_eval_batch_size": 32, + "gradient_accumulation_steps": 1, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 1, + "preprocessing_num_workers": 1, + "learning_rate": 3e-4, + "fp16": false, + "num_train_epochs": 30, + "logging_steps": 50, + "report_to": "wandb", + "wandb_project": "sentence", + "save_steps": 100000000, + "remove_unused_columns": false, + "one_sample_per_line": false, + "do_sentence_training": true, + "do_auxiliary_training": false, + "warmup_ratio": 0.1, + "non_punctuation_sample_ratio": null, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600, + "use_subwords": true, + "custom_punctuation_file": "punctuation_xlmr_unk.txt", + "log_level": "warning", + "adapter_config": "lora[r=16,alpha=32,intermediate_lora=True]", + "weight_decay": 0.0, + "auxiliary_remove_prob": 0.0, + "train_adapter": true, + "subsample": 10000 +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/lora/lora_lyrics.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/lora/lora_lyrics.json new file mode 100644 index 0000000000000000000000000000000000000000..e89689946264ed7ccfd66b69120eb80c21f23c92 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/lora/lora_lyrics.json @@ -0,0 +1,42 @@ +{ + "model_name_or_path": "segment-any-text/sat-12l", + "output_dir": "sat-12l-no-LL_lora_lyrics", + "block_size": 512, + "eval_stride": 256, + "do_train": true, + "do_eval": true, + "per_device_train_batch_size": 64, + "per_device_eval_batch_size": 32, + "gradient_accumulation_steps": 1, + "eval_accumulation_steps": 8, + "evaluation_strategy": "epoch", + "dataloader_num_workers": 1, + "preprocessing_num_workers": 1, + "learning_rate": 3e-4, + "fp16": false, + "num_train_epochs": 30, + "logging_steps": 50, + "report_to": "wandb", + "wandb_project": "sentence", + "save_steps": 100000000, + "remove_unused_columns": false, + "one_sample_per_line": true, + "do_sentence_training": true, + "do_auxiliary_training": false, + "warmup_ratio": 0.1, + "non_punctuation_sample_ratio": null, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600, + "use_subwords": true, + "custom_punctuation_file": "punctuation_xlmr_unk.txt", + "log_level": "warning", + "adapter_config": "lora[r=16,alpha=32,intermediate_lora=True]", + "weight_decay": 0.0, + "auxiliary_remove_prob": 0.0, + "text_path": "data/lyrics.pth", + "skip_eval_loss": false, + "shuffle": false, + "train_adapter": true, + "subsample": 10000 +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/lora/lora_lyrics_no_pretraining.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/lora/lora_lyrics_no_pretraining.json new file mode 100644 index 0000000000000000000000000000000000000000..17b7d8166ebd80813366c5db3092f3377a1f5cca --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/lora/lora_lyrics_no_pretraining.json @@ -0,0 +1,42 @@ +{ + "model_name_or_path": "xlm-roberta-base", + "output_dir": "xlmr-12l_lora_lyrics", + "block_size": 512, + "eval_stride": 256, + "do_train": true, + "do_eval": true, + "per_device_train_batch_size": 64, + "per_device_eval_batch_size": 32, + "gradient_accumulation_steps": 1, + "eval_accumulation_steps": 8, + "evaluation_strategy": "epoch", + "dataloader_num_workers": 1, + "preprocessing_num_workers": 1, + "learning_rate": 3e-4, + "fp16": false, + "num_train_epochs": 30, + "logging_steps": 50, + "report_to": "wandb", + "wandb_project": "sentence", + "save_steps": 100000000, + "remove_unused_columns": false, + "one_sample_per_line": true, + "do_sentence_training": true, + "do_auxiliary_training": false, + "warmup_ratio": 0.1, + "non_punctuation_sample_ratio": null, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600, + "use_subwords": true, + "custom_punctuation_file": "punctuation_xlmr_unk.txt", + "log_level": "warning", + "adapter_config": "lora[r=16,alpha=32,intermediate_lora=True]", + "weight_decay": 0.0, + "auxiliary_remove_prob": 0.0, + "text_path": "data/lyrics.pth", + "skip_eval_loss": false, + "shuffle": false, + "train_adapter": true, + "subsample": 10000 +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/lora/lora_no_pretraining.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/lora/lora_no_pretraining.json new file mode 100644 index 0000000000000000000000000000000000000000..ca56e255274a09888a8707b0596d0721429dfdc7 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/lora/lora_no_pretraining.json @@ -0,0 +1,38 @@ +{ + "model_name_or_path": "xlm-roberta-base", + "output_dir": "xlmr-12l_lora", + "block_size": 256, + "eval_stride": 128, + "do_train": true, + "do_eval": true, + "per_device_train_batch_size": 64, + "per_device_eval_batch_size": 32, + "gradient_accumulation_steps": 1, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 1, + "preprocessing_num_workers": 1, + "learning_rate": 3e-4, + "fp16": false, + "num_train_epochs": 30, + "logging_steps": 50, + "report_to": "wandb", + "wandb_project": "sentence", + "save_steps": 100000000, + "remove_unused_columns": false, + "one_sample_per_line": false, + "do_sentence_training": true, + "do_auxiliary_training": false, + "warmup_ratio": 0.1, + "non_punctuation_sample_ratio": null, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600, + "use_subwords": true, + "custom_punctuation_file": "punctuation_xlmr_unk.txt", + "log_level": "warning", + "adapter_config": "lora[r=16,alpha=32,intermediate_lora=True]", + "weight_decay": 0.0, + "auxiliary_remove_prob": 0.0, + "train_adapter": true, + "subsample": 10000 +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/lora/lora_tweets.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/lora/lora_tweets.json new file mode 100644 index 0000000000000000000000000000000000000000..5db21a889bbaf6064a6086972589d9ce8a382df0 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/lora/lora_tweets.json @@ -0,0 +1,42 @@ +{ + "model_name_or_path": "segment-any-text/sat-12l", + "output_dir": "sat-12l_lora_tweets", + "block_size": 256, + "eval_stride": 128, + "do_train": true, + "do_eval": true, + "per_device_train_batch_size": 64, + "per_device_eval_batch_size": 32, + "gradient_accumulation_steps": 1, + "eval_accumulation_steps": 8, + "evaluation_strategy": "epoch", + "dataloader_num_workers": 1, + "preprocessing_num_workers": 1, + "learning_rate": 3e-4, + "fp16": false, + "num_train_epochs": 30, + "logging_steps": 50, + "report_to": "wandb", + "wandb_project": "sentence", + "save_steps": 100000000, + "remove_unused_columns": false, + "one_sample_per_line": true, + "do_sentence_training": true, + "do_auxiliary_training": false, + "warmup_ratio": 0.1, + "non_punctuation_sample_ratio": null, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600, + "use_subwords": true, + "custom_punctuation_file": "punctuation_xlmr_unk.txt", + "log_level": "warning", + "adapter_config": "lora[r=16,alpha=32,intermediate_lora=True]", + "weight_decay": 0.0, + "auxiliary_remove_prob": 0.0, + "text_path": "data/all_data_tweets_cleaned.pth", + "skip_eval_loss": false, + "shuffle": false, + "train_adapter": true, + "subsample": 10000 +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/sat_12l.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/sat_12l.json new file mode 100644 index 0000000000000000000000000000000000000000..d526663cf0c832dd9f5658ce4233664c2312001c --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/sat_12l.json @@ -0,0 +1,46 @@ +{ + "model_name_or_path": "xlm-roberta-base", + "output_dir": "sat-12l", + "num_hidden_layers": 12, + "lookahead": 48, + "block_size": 256, + "eval_stride": 128, + "corrupt_entire_chunk_prob": 0.1, + "auxiliary_remove_prob": 0.2, + "use_bert": true, + "do_train": true, + "do_eval": true, + "evaluation_strategy": "steps", + "per_device_train_batch_size": 64, + "per_device_eval_batch_size": 64, + "gradient_accumulation_steps": 1, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 4, + "preprocessing_num_workers": 32, + "learning_rate": 1e-4, + "save_strategy": "steps", + "fp16": false, + "max_steps": 200000, + "save_steps": 50000, + "eval_steps": 10000, + "logging_steps": 50, + "report_to": "wandb", + "is_decoder": false, + "remove_unused_columns": false, + "one_sample_per_line": false, + "do_sentence_training": true, + "do_auxiliary_training": true, + "warmup_steps": 5000, + "adapter_warmup_steps": 0, + "adapter_lr_multiplier": 1, + "ngram_order": 1, + "non_punctuation_sample_ratio": 0.1, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600, + "use_subwords": true, + "custom_punctuation_file": "punctuation_xlmr_unk.txt", + "train_text_path": "data/sentence/train.parquet", + "valid_text_path": "data/sentence/valid.parquet", + "log_level": "warning" +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/sat_12l_no_ll.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/sat_12l_no_ll.json new file mode 100644 index 0000000000000000000000000000000000000000..47bf27190e651db503856dc08c7f0448d03a8909 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/sat_12l_no_ll.json @@ -0,0 +1,46 @@ +{ + "model_name_or_path": "xlm-roberta-base", + "output_dir": "sat-12l-no-limited-lookahead", + "num_hidden_layers": 12, + "lookahead": null, + "block_size": 256, + "eval_stride": 128, + "corrupt_entire_chunk_prob": 0.1, + "auxiliary_remove_prob": 0.2, + "use_bert": true, + "do_train": true, + "do_eval": true, + "evaluation_strategy": "steps", + "per_device_train_batch_size": 64, + "per_device_eval_batch_size": 64, + "gradient_accumulation_steps": 1, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 4, + "preprocessing_num_workers": 32, + "learning_rate": 1e-4, + "save_strategy": "steps", + "fp16": false, + "max_steps": 200000, + "save_steps": 50000, + "eval_steps": 10000, + "logging_steps": 50, + "report_to": "wandb", + "is_decoder": false, + "remove_unused_columns": false, + "one_sample_per_line": false, + "do_sentence_training": true, + "do_auxiliary_training": true, + "warmup_steps": 5000, + "adapter_warmup_steps": 0, + "adapter_lr_multiplier": 1, + "ngram_order": 1, + "non_punctuation_sample_ratio": 0.1, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600, + "use_subwords": true, + "custom_punctuation_file": "punctuation_xlmr_unk.txt", + "train_text_path": "data/sentence/train.parquet", + "valid_text_path": "data/sentence/valid.parquet", + "log_level": "warning" +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/sat_12l_only_clean.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/sat_12l_only_clean.json new file mode 100644 index 0000000000000000000000000000000000000000..6ccd08c06cc62da9df9921e83d309464a489297c --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/sat_12l_only_clean.json @@ -0,0 +1,46 @@ +{ + "model_name_or_path": "xlm-roberta-base", + "output_dir": "sat-12l_only_clean", + "num_hidden_layers": 12, + "lookahead": 48, + "block_size": 256, + "eval_stride": 128, + "corrupt_entire_chunk_prob": 0.0, + "auxiliary_remove_prob": 0.2, + "use_bert": true, + "do_train": true, + "do_eval": true, + "evaluation_strategy": "steps", + "per_device_train_batch_size": 64, + "per_device_eval_batch_size": 64, + "gradient_accumulation_steps": 1, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 4, + "preprocessing_num_workers": 32, + "learning_rate": 1e-4, + "save_strategy": "steps", + "fp16": false, + "max_steps": 200000, + "save_steps": 50000, + "eval_steps": 10000, + "logging_steps": 50, + "report_to": "wandb", + "is_decoder": false, + "remove_unused_columns": false, + "one_sample_per_line": false, + "do_sentence_training": true, + "do_auxiliary_training": true, + "warmup_steps": 5000, + "adapter_warmup_steps": 0, + "adapter_lr_multiplier": 1, + "ngram_order": 1, + "non_punctuation_sample_ratio": 0.1, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600, + "use_subwords": true, + "custom_punctuation_file": "punctuation_xlmr_unk.txt", + "train_text_path": "data/sentence/train.parquet", + "valid_text_path": "data/sentence/valid.parquet", + "log_level": "warning" +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/sat_1l.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/sat_1l.json new file mode 100644 index 0000000000000000000000000000000000000000..70c54687053b7cba6491cd9a9dc18ec9a254998d --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/sat_1l.json @@ -0,0 +1,46 @@ +{ + "model_name_or_path": "xlm-roberta-base", + "output_dir": "sat-1l", + "num_hidden_layers": 1, + "lookahead": 48, + "block_size": 256, + "eval_stride": 128, + "corrupt_entire_chunk_prob": 0.1, + "auxiliary_remove_prob": 0.2, + "use_bert": true, + "do_train": true, + "do_eval": true, + "evaluation_strategy": "steps", + "per_device_train_batch_size": 64, + "per_device_eval_batch_size": 64, + "gradient_accumulation_steps": 1, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 4, + "preprocessing_num_workers": 32, + "learning_rate": 1e-4, + "save_strategy": "steps", + "fp16": false, + "max_steps": 200000, + "save_steps": 50000, + "eval_steps": 10000, + "logging_steps": 50, + "report_to": "wandb", + "is_decoder": false, + "remove_unused_columns": false, + "one_sample_per_line": false, + "do_sentence_training": true, + "do_auxiliary_training": true, + "warmup_steps": 5000, + "adapter_warmup_steps": 0, + "adapter_lr_multiplier": 1, + "ngram_order": 1, + "non_punctuation_sample_ratio": 0.1, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600, + "use_subwords": true, + "custom_punctuation_file": "punctuation_xlmr_unk.txt", + "train_text_path": "data/sentence/train.parquet", + "valid_text_path": "data/sentence/valid.parquet", + "log_level": "warning" +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/sat_1l_no_ll.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/sat_1l_no_ll.json new file mode 100644 index 0000000000000000000000000000000000000000..6a47576ee432b79253e739a1d3b71aed8e0de35b --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/sat_1l_no_ll.json @@ -0,0 +1,46 @@ +{ + "model_name_or_path": "xlm-roberta-base", + "output_dir": "sat-1l-no-limited-lookahead", + "num_hidden_layers": 1, + "lookahead": 48, + "block_size": 256, + "eval_stride": 128, + "corrupt_entire_chunk_prob": 0.1, + "auxiliary_remove_prob": 0.2, + "use_bert": true, + "do_train": true, + "do_eval": true, + "evaluation_strategy": "steps", + "per_device_train_batch_size": 64, + "per_device_eval_batch_size": 64, + "gradient_accumulation_steps": 1, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 4, + "preprocessing_num_workers": 32, + "learning_rate": 1e-4, + "save_strategy": "steps", + "fp16": false, + "max_steps": 200000, + "save_steps": 50000, + "eval_steps": 10000, + "logging_steps": 50, + "report_to": "wandb", + "is_decoder": false, + "remove_unused_columns": false, + "one_sample_per_line": false, + "do_sentence_training": true, + "do_auxiliary_training": true, + "warmup_steps": 5000, + "adapter_warmup_steps": 0, + "adapter_lr_multiplier": 1, + "ngram_order": 1, + "non_punctuation_sample_ratio": 0.1, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600, + "use_subwords": true, + "custom_punctuation_file": "punctuation_xlmr_unk.txt", + "train_text_path": "data/sentence/train.parquet", + "valid_text_path": "data/sentence/valid.parquet", + "log_level": "warning" +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/sat_3l.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/sat_3l.json new file mode 100644 index 0000000000000000000000000000000000000000..29e1cf85b221de6808bbf74d4853182012cc6c97 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/sat_3l.json @@ -0,0 +1,46 @@ +{ + "model_name_or_path": "xlm-roberta-base", + "output_dir": "sat-3l", + "num_hidden_layers": 3, + "lookahead": 48, + "block_size": 256, + "eval_stride": 128, + "corrupt_entire_chunk_prob": 0.1, + "auxiliary_remove_prob": 0.2, + "use_bert": true, + "do_train": true, + "do_eval": true, + "evaluation_strategy": "steps", + "per_device_train_batch_size": 64, + "per_device_eval_batch_size": 64, + "gradient_accumulation_steps": 1, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 4, + "preprocessing_num_workers": 32, + "learning_rate": 1e-4, + "save_strategy": "steps", + "fp16": false, + "max_steps": 200000, + "save_steps": 50000, + "eval_steps": 10000, + "logging_steps": 50, + "report_to": "wandb", + "is_decoder": false, + "remove_unused_columns": false, + "one_sample_per_line": false, + "do_sentence_training": true, + "do_auxiliary_training": true, + "warmup_steps": 5000, + "adapter_warmup_steps": 0, + "adapter_lr_multiplier": 1, + "ngram_order": 1, + "non_punctuation_sample_ratio": 0.1, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600, + "use_subwords": true, + "custom_punctuation_file": "punctuation_xlmr_unk.txt", + "train_text_path": "data/sentence/train.parquet", + "valid_text_path": "data/sentence/valid.parquet", + "log_level": "warning" +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/sat_3l_no_ll.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/sat_3l_no_ll.json new file mode 100644 index 0000000000000000000000000000000000000000..a0481f0d41d54945a3e71b360c45a72641bbc9f5 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/sat_3l_no_ll.json @@ -0,0 +1,46 @@ +{ + "model_name_or_path": "xlm-roberta-base", + "output_dir": "sat-3l-no-limited-lookahead", + "num_hidden_layers": 3, + "lookahead": null, + "block_size": 256, + "eval_stride": 128, + "corrupt_entire_chunk_prob": 0.1, + "auxiliary_remove_prob": 0.2, + "use_bert": true, + "do_train": true, + "do_eval": true, + "evaluation_strategy": "steps", + "per_device_train_batch_size": 64, + "per_device_eval_batch_size": 64, + "gradient_accumulation_steps": 1, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 4, + "preprocessing_num_workers": 32, + "learning_rate": 1e-4, + "save_strategy": "steps", + "fp16": false, + "max_steps": 200000, + "save_steps": 50000, + "eval_steps": 10000, + "logging_steps": 50, + "report_to": "wandb", + "is_decoder": false, + "remove_unused_columns": false, + "one_sample_per_line": false, + "do_sentence_training": true, + "do_auxiliary_training": true, + "warmup_steps": 5000, + "adapter_warmup_steps": 0, + "adapter_lr_multiplier": 1, + "ngram_order": 1, + "non_punctuation_sample_ratio": 0.1, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600, + "use_subwords": true, + "custom_punctuation_file": "punctuation_xlmr_unk.txt", + "train_text_path": "data/sentence/train.parquet", + "valid_text_path": "data/sentence/valid.parquet", + "log_level": "warning" +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/sat_3l_only_clean.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/sat_3l_only_clean.json new file mode 100644 index 0000000000000000000000000000000000000000..4f95b61ac2337b36b99ac772b8cd72de9e3e1529 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/sat_3l_only_clean.json @@ -0,0 +1,46 @@ +{ + "model_name_or_path": "xlm-roberta-base", + "output_dir": "sat-3l", + "num_hidden_layers": 3, + "lookahead": 48, + "block_size": 256, + "eval_stride": 128, + "corrupt_entire_chunk_prob": 0.0, + "auxiliary_remove_prob": 0.2, + "use_bert": true, + "do_train": true, + "do_eval": true, + "evaluation_strategy": "steps", + "per_device_train_batch_size": 64, + "per_device_eval_batch_size": 64, + "gradient_accumulation_steps": 1, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 4, + "preprocessing_num_workers": 32, + "learning_rate": 1e-4, + "save_strategy": "steps", + "fp16": false, + "max_steps": 200000, + "save_steps": 50000, + "eval_steps": 10000, + "logging_steps": 50, + "report_to": "wandb", + "is_decoder": false, + "remove_unused_columns": false, + "one_sample_per_line": false, + "do_sentence_training": true, + "do_auxiliary_training": true, + "warmup_steps": 5000, + "adapter_warmup_steps": 0, + "adapter_lr_multiplier": 1, + "ngram_order": 1, + "non_punctuation_sample_ratio": 0.1, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600, + "use_subwords": true, + "custom_punctuation_file": "punctuation_xlmr_unk.txt", + "train_text_path": "data/sentence/train.parquet", + "valid_text_path": "data/sentence/valid.parquet", + "log_level": "warning" +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/sat_6l copy.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/sat_6l copy.json new file mode 100644 index 0000000000000000000000000000000000000000..4f394eef22df8187ba6f9d7211e8d3477c2ba851 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/sat_6l copy.json @@ -0,0 +1,46 @@ +{ + "model_name_or_path": "xlm-roberta-base", + "output_dir": "sat-6l", + "num_hidden_layers": 6, + "lookahead": 48, + "block_size": 256, + "eval_stride": 128, + "corrupt_entire_chunk_prob": 0.1, + "auxiliary_remove_prob": 0.2, + "use_bert": true, + "do_train": true, + "do_eval": true, + "evaluation_strategy": "steps", + "per_device_train_batch_size": 64, + "per_device_eval_batch_size": 64, + "gradient_accumulation_steps": 1, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 4, + "preprocessing_num_workers": 32, + "learning_rate": 1e-4, + "save_strategy": "steps", + "fp16": false, + "max_steps": 200000, + "save_steps": 50000, + "eval_steps": 10000, + "logging_steps": 50, + "report_to": "wandb", + "is_decoder": false, + "remove_unused_columns": false, + "one_sample_per_line": false, + "do_sentence_training": true, + "do_auxiliary_training": true, + "warmup_steps": 5000, + "adapter_warmup_steps": 0, + "adapter_lr_multiplier": 1, + "ngram_order": 1, + "non_punctuation_sample_ratio": 0.1, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600, + "use_subwords": true, + "custom_punctuation_file": "punctuation_xlmr_unk.txt", + "train_text_path": "data/sentence/train.parquet", + "valid_text_path": "data/sentence/valid.parquet", + "log_level": "warning" +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/sat_6l.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/sat_6l.json new file mode 100644 index 0000000000000000000000000000000000000000..4f394eef22df8187ba6f9d7211e8d3477c2ba851 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/sat_6l.json @@ -0,0 +1,46 @@ +{ + "model_name_or_path": "xlm-roberta-base", + "output_dir": "sat-6l", + "num_hidden_layers": 6, + "lookahead": 48, + "block_size": 256, + "eval_stride": 128, + "corrupt_entire_chunk_prob": 0.1, + "auxiliary_remove_prob": 0.2, + "use_bert": true, + "do_train": true, + "do_eval": true, + "evaluation_strategy": "steps", + "per_device_train_batch_size": 64, + "per_device_eval_batch_size": 64, + "gradient_accumulation_steps": 1, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 4, + "preprocessing_num_workers": 32, + "learning_rate": 1e-4, + "save_strategy": "steps", + "fp16": false, + "max_steps": 200000, + "save_steps": 50000, + "eval_steps": 10000, + "logging_steps": 50, + "report_to": "wandb", + "is_decoder": false, + "remove_unused_columns": false, + "one_sample_per_line": false, + "do_sentence_training": true, + "do_auxiliary_training": true, + "warmup_steps": 5000, + "adapter_warmup_steps": 0, + "adapter_lr_multiplier": 1, + "ngram_order": 1, + "non_punctuation_sample_ratio": 0.1, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600, + "use_subwords": true, + "custom_punctuation_file": "punctuation_xlmr_unk.txt", + "train_text_path": "data/sentence/train.parquet", + "valid_text_path": "data/sentence/valid.parquet", + "log_level": "warning" +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/sat_6l_no_ll.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/sat_6l_no_ll.json new file mode 100644 index 0000000000000000000000000000000000000000..a415561f8e84491575e1e24dfe0435fb372aa466 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/sat_6l_no_ll.json @@ -0,0 +1,46 @@ +{ + "model_name_or_path": "xlm-roberta-base", + "output_dir": "sat-6l-no-limited-lookahead", + "num_hidden_layers": 6, + "lookahead": null, + "block_size": 256, + "eval_stride": 128, + "corrupt_entire_chunk_prob": 0.1, + "auxiliary_remove_prob": 0.2, + "use_bert": true, + "do_train": true, + "do_eval": true, + "evaluation_strategy": "steps", + "per_device_train_batch_size": 64, + "per_device_eval_batch_size": 64, + "gradient_accumulation_steps": 1, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 4, + "preprocessing_num_workers": 32, + "learning_rate": 1e-4, + "save_strategy": "steps", + "fp16": false, + "max_steps": 200000, + "save_steps": 50000, + "eval_steps": 10000, + "logging_steps": 50, + "report_to": "wandb", + "is_decoder": false, + "remove_unused_columns": false, + "one_sample_per_line": false, + "do_sentence_training": true, + "do_auxiliary_training": true, + "warmup_steps": 5000, + "adapter_warmup_steps": 0, + "adapter_lr_multiplier": 1, + "ngram_order": 1, + "non_punctuation_sample_ratio": 0.1, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600, + "use_subwords": true, + "custom_punctuation_file": "punctuation_xlmr_unk.txt", + "train_text_path": "data/sentence/train.parquet", + "valid_text_path": "data/sentence/valid.parquet", + "log_level": "warning" +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/sat_9l.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/sat_9l.json new file mode 100644 index 0000000000000000000000000000000000000000..f588467d4983fafd3538a1c79842b9c7008bec55 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/sat_9l.json @@ -0,0 +1,46 @@ +{ + "model_name_or_path": "xlm-roberta-base", + "output_dir": "sat-9l", + "num_hidden_layers": 9, + "lookahead": 48, + "block_size": 256, + "eval_stride": 128, + "corrupt_entire_chunk_prob": 0.1, + "auxiliary_remove_prob": 0.2, + "use_bert": true, + "do_train": true, + "do_eval": true, + "evaluation_strategy": "steps", + "per_device_train_batch_size": 64, + "per_device_eval_batch_size": 64, + "gradient_accumulation_steps": 1, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 4, + "preprocessing_num_workers": 32, + "learning_rate": 1e-4, + "save_strategy": "steps", + "fp16": false, + "max_steps": 200000, + "save_steps": 50000, + "eval_steps": 10000, + "logging_steps": 50, + "report_to": "wandb", + "is_decoder": false, + "remove_unused_columns": false, + "one_sample_per_line": false, + "do_sentence_training": true, + "do_auxiliary_training": true, + "warmup_steps": 5000, + "adapter_warmup_steps": 0, + "adapter_lr_multiplier": 1, + "ngram_order": 1, + "non_punctuation_sample_ratio": 0.1, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600, + "use_subwords": true, + "custom_punctuation_file": "punctuation_xlmr_unk.txt", + "train_text_path": "data/sentence/train.parquet", + "valid_text_path": "data/sentence/valid.parquet", + "log_level": "warning" +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/sat_9l_no_ll.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/sat_9l_no_ll.json new file mode 100644 index 0000000000000000000000000000000000000000..b7a4c8be1ed65c7735013af118b13f6fc1ac80aa --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/configs/sat_9l_no_ll.json @@ -0,0 +1,46 @@ +{ + "model_name_or_path": "xlm-roberta-base", + "output_dir": "sat-9l-no-limited-lookahead", + "num_hidden_layers": 9, + "lookahead": null, + "block_size": 256, + "eval_stride": 128, + "corrupt_entire_chunk_prob": 0.1, + "auxiliary_remove_prob": 0.2, + "use_bert": true, + "do_train": true, + "do_eval": true, + "evaluation_strategy": "steps", + "per_device_train_batch_size": 64, + "per_device_eval_batch_size": 64, + "gradient_accumulation_steps": 1, + "eval_accumulation_steps": 8, + "dataloader_num_workers": 4, + "preprocessing_num_workers": 32, + "learning_rate": 1e-4, + "save_strategy": "steps", + "fp16": false, + "max_steps": 200000, + "save_steps": 50000, + "eval_steps": 10000, + "logging_steps": 50, + "report_to": "wandb", + "is_decoder": false, + "remove_unused_columns": false, + "one_sample_per_line": false, + "do_sentence_training": true, + "do_auxiliary_training": true, + "warmup_steps": 5000, + "adapter_warmup_steps": 0, + "adapter_lr_multiplier": 1, + "ngram_order": 1, + "non_punctuation_sample_ratio": 0.1, + "prediction_loss_only": true, + "use_auxiliary": true, + "ddp_timeout": 3600, + "use_subwords": true, + "custom_punctuation_file": "punctuation_xlmr_unk.txt", + "train_text_path": "data/sentence/train.parquet", + "valid_text_path": "data/sentence/valid.parquet", + "log_level": "warning" +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/pyproject.toml b/segmentation/models/SaT_cunit_with_maze/wtpsplit/pyproject.toml new file mode 100644 index 0000000000000000000000000000000000000000..c88d0a74da10254c9728892f23b692a9caa68b24 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/pyproject.toml @@ -0,0 +1,10 @@ +[tool.black] +line-length = 120 +target-version = ["py38", "py39", "py310"] + +[tool.ruff] +line-length = 120 +ignore = ["E741"] + +[tool.ruff.per-file-ignores] +"test.py" = ["E501"] \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/release.sh b/segmentation/models/SaT_cunit_with_maze/wtpsplit/release.sh new file mode 100644 index 0000000000000000000000000000000000000000..7cc0d4b24e50694844093c94d1fb98c441e1c0ac --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/release.sh @@ -0,0 +1,3 @@ +rm -r dist +python -m build +twine upload dist/* \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/scripts/export_all_to_onnx.sh b/segmentation/models/SaT_cunit_with_maze/wtpsplit/scripts/export_all_to_onnx.sh new file mode 100644 index 0000000000000000000000000000000000000000..7c21a00faa9f08bca7be5fd502660836a3ee4687 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/scripts/export_all_to_onnx.sh @@ -0,0 +1,23 @@ +# all models in manually defined array of models +models=( + "sat-1l-sm" + "sat-3l-sm" + "sat-6l-sm" + "sat-9l-sm" + "sat-12l-sm" + "sat-1l" + "sat-3l" + "sat-6l" + "sat-9l" + "sat-12l" + "sat-1l-no-limited-lookahead" + "sat-3l-no-limited-lookahead" + "sat-6l-no-limited-lookahead" + "sat-9l-no-limited-lookahead" + "sat-12l-no-limited-lookahead" +) + +for model in "${models[@]}" +do + python scripts/export_to_onnx_sat.py --model_name_or_path=segment-any-text/$model --output_dir=output_onnx_exports/$model --upload_to_hub=True +done \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/scripts/export_to_onnx_charbert.py b/segmentation/models/SaT_cunit_with_maze/wtpsplit/scripts/export_to_onnx_charbert.py new file mode 100644 index 0000000000000000000000000000000000000000..fbaa00b2db2e8366e65474c819fa9623b5869e13 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/scripts/export_to_onnx_charbert.py @@ -0,0 +1,62 @@ +from dataclasses import dataclass +from pathlib import Path + +import onnx +import torch +from onnxruntime.transformers.optimizer import optimize_model +from transformers import AutoModelForTokenClassification, HfArgumentParser + +import wtpsplit # noqa +import wtpsplit.models # noqa + + +@dataclass +class Args: + model_name_or_path: str = "benjamin/wtp-bert-mini" + output_dir: str = "wtp-bert-mini" + device: str = "cuda" + + +if __name__ == "__main__": + (args,) = HfArgumentParser([Args]).parse_args_into_dataclasses() + + output_dir = Path(args.output_dir) + output_dir.mkdir(exist_ok=True, parents=True) + + model = AutoModelForTokenClassification.from_pretrained(args.model_name_or_path) + model = model.half().to(args.device) + + torch.onnx.export( + model, + ( + None, + { + "attention_mask": torch.zeros((1, 1), dtype=torch.float16, device=args.device), + "hashed_ids": torch.zeros( + (1, 1, model.config.num_hash_functions), dtype=torch.long, device=args.device + ), + }, + ), + output_dir / "model.onnx", + verbose=True, + input_names=["attention_mask", "hashed_ids"], + output_names=["logits"], + dynamic_axes={ + "hashed_ids": {0: "batch", 1: "sequence"}, + "attention_mask": {0: "batch", 1: "sequence"}, + "logits": {0: "batch", 1: "sequence"}, + }, + ) + + m = optimize_model( + str(output_dir / "model.onnx"), + model_type="bert", + num_heads=0, + hidden_size=0, + optimization_options=None, + opt_level=0, + use_gpu=False, + ) + + optimized_model_path = output_dir / "model_optimized.onnx" + onnx.save_model(m.model, optimized_model_path) diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/scripts/export_to_onnx_sat.py b/segmentation/models/SaT_cunit_with_maze/wtpsplit/scripts/export_to_onnx_sat.py new file mode 100644 index 0000000000000000000000000000000000000000..c6fadf24c3b007de2f680980110eb734ed891225 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/scripts/export_to_onnx_sat.py @@ -0,0 +1,134 @@ +from dataclasses import dataclass +from pathlib import Path + +import adapters # noqa +import onnx +import torch +from adapters.models import MODEL_MIXIN_MAPPING # noqa +from adapters.models.bert.mixin_bert import BertModelAdaptersMixin # noqa +from huggingface_hub import hf_hub_download, HfApi +from onnxruntime.transformers.optimizer import optimize_model # noqa +from transformers import AutoModelForTokenClassification, HfArgumentParser + +import wtpsplit # noqa +import wtpsplit.models # noqa +from wtpsplit.utils import Constants + +MODEL_MIXIN_MAPPING["SubwordXLMRobertaModel"] = BertModelAdaptersMixin + + +@dataclass +class Args: + model_name_or_path: str = "segment-any-text/sat-1l-sm" # model from HF Hub: https://huggingface.co/segment-any-text + output_dir: str = "sat-1l-sm" # output directory, saves to current directory + device: str = "cuda" + use_lora: bool = False + lora_path: str = None # local path to lora weights + # otherwise, fetch from HF Hub: + style_or_domain: str = "ud" + language: str = "en" + upload_to_hub: bool = False + + +if __name__ == "__main__": + (args,) = HfArgumentParser([Args]).parse_args_into_dataclasses() + + output_dir = Path(args.output_dir) + output_dir.mkdir(exist_ok=True, parents=True) + + model = AutoModelForTokenClassification.from_pretrained(args.model_name_or_path, force_download=False) + + model = model.to(args.device) + + # fetch config.json from huggingface hub + hf_hub_download( + repo_id=args.model_name_or_path, + filename="config.json", + local_dir=output_dir, + ) + + # LoRA SETUP + if args.use_lora: + # adapters need xlm-roberta as model type. + model_type = model.config.model_type + model.config.model_type = "xlm-roberta" + adapters.init(model) + # reset model type (used later) + model.config.model_type = model_type + if not args.lora_path: + for file in [ + "adapter_config.json", + "head_config.json", + "pytorch_adapter.bin", + "pytorch_model_head.bin", + ]: + hf_hub_download( + repo_id=args.model_name_or_path, + subfolder=f"loras/{args.style_or_domain}/{args.language}", + filename=file, + local_dir=Constants.CACHE_DIR, + ) + lora_load_path = str(Constants.CACHE_DIR / "loras" / args.style_or_domain / args.language) + else: + lora_load_path = args.lora_path + + print(f"Using LoRA weights from {lora_load_path}.") + model.load_adapter( + lora_load_path, + set_active=True, + with_head=True, + load_as="sat-lora", + ) + # merge lora weights into transformer for 0 efficiency overhead + model.merge_adapter("sat-lora") + print("LoRA setup done.") + # LoRA setup done, model is now ready for export. + + model = model.half() + + torch.onnx.export( + model, + { + "input_ids": torch.randint(0, model.config.vocab_size, (1, 1), dtype=torch.int64, device=args.device), + "attention_mask": torch.randn((1, 1), dtype=torch.float16, device=args.device), + }, + output_dir / "model.onnx", + verbose=True, + input_names=["input_ids", "attention_mask"], + output_names=["logits"], + dynamic_axes={ + "input_ids": {0: "batch", 1: "sequence"}, + "attention_mask": {0: "batch", 1: "sequence"}, + "logits": {0: "batch", 1: "sequence"}, + }, + ) + + m = optimize_model( + str(output_dir / "model.onnx"), + model_type="bert", + num_heads=0, + hidden_size=0, + optimization_options=None, + opt_level=0, + use_gpu=False, + ) + + optimized_model_path = output_dir / "model_optimized.onnx" + onnx.save_model(m.model, optimized_model_path) + + onnx_model = onnx.load(output_dir / "model.onnx") + print(onnx.checker.check_model(onnx_model, full_check=True)) + + if args.upload_to_hub: + api = HfApi() + + api.upload_file( + path_or_fileobj=output_dir / "model_optimized.onnx", + path_in_repo="model_optimized.onnx", + repo_id=args.model_name_or_path, + ) + api.upload_file( + path_or_fileobj=output_dir / "model.onnx", + path_in_repo="model.onnx", + repo_id=args.model_name_or_path, + ) \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/setup.cfg b/segmentation/models/SaT_cunit_with_maze/wtpsplit/setup.cfg new file mode 100644 index 0000000000000000000000000000000000000000..e4e16734c2c11e942e9f00324ef96937b5b34975 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/setup.cfg @@ -0,0 +1,3 @@ +[flake8] +max-line-length = 120 +extend-ignore = E203, E741 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/setup.py b/segmentation/models/SaT_cunit_with_maze/wtpsplit/setup.py new file mode 100644 index 0000000000000000000000000000000000000000..659a11d69db760e89a2538765430ec32bc2e1e15 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/setup.py @@ -0,0 +1,31 @@ +from setuptools import setup, find_packages + +setup( + name="wtpsplit", + version="2.1.6", + packages=find_packages(), + description="Universal Robust, Efficient and Adaptable Sentence Segmentation", + author="Markus Frohmann, Igor Sterner, Benjamin Minixhofer", + author_email="markus.frohmann@gmail.com", + install_requires=[ + # "onnxruntime>=1.13.1", # can make conflicts between onnxruntime and onnxruntime-gpu + "transformers>=4.22.2", + "huggingface-hub", + "numpy>=1.0", + "scikit-learn>=1", + "tqdm", + "skops", + "pandas>=1", + "cached_property", # for Py37 + "mosestokenizer", + "adapters>=1.0.1", + ], + extras_require={ + 'onnx-gpu': ['onnxruntime-gpu>=1.13.1'], + 'onnx-cpu': ['onnxruntime>=1.13.1'], + }, + url="https://github.com/segment-any-text/wtpsplit", + package_data={"wtpsplit": ["data/*"]}, + include_package_data=True, + license="MIT", +) diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/test.py b/segmentation/models/SaT_cunit_with_maze/wtpsplit/test.py new file mode 100644 index 0000000000000000000000000000000000000000..20f662e189c6347033ac93846fdb5536f7622ffe --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/test.py @@ -0,0 +1,256 @@ +# noqa: E501 +from wtpsplit import WtP, SaT + +def test_weighting(): + sat = SaT("sat-3l-sm", ort_providers=["CPUExecutionProvider"]) + + text = "This is a test sentence This is another test sentence." + splits_default = sat.split(text, threshold=0.25) + splits_uniform = sat.split(text, threshold=0.25, weighting="uniform") + splits_hat = sat.split(text, threshold=0.25, weighting="hat") + expected_splits = ["This is a test sentence ", "This is another test sentence."] + assert splits_default == splits_uniform == splits_hat == expected_splits + assert "".join(splits_default) == text + + +def test_split_ort(): + sat = SaT("sat-3l-sm", ort_providers=["CPUExecutionProvider"]) + + splits = sat.split("This is a test sentence This is another test sentence.", threshold=0.25) + assert splits == ["This is a test sentence ", "This is another test sentence."] + + +def test_split_torch(): + sat = SaT("segment-any-text/sat-3l", hub_prefix=None) + + splits = sat.split("This is a test sentence This is another test sentence.", threshold=0.025) + assert splits == ["This is a test sentence ", "This is another test sentence."] + + +def test_split_torch_sm(): + sat = SaT("segment-any-text/sat-12l-sm", hub_prefix=None) + + splits = sat.split("This is a test sentence. This is another test sentence.", threshold=0.25) + assert splits == ["This is a test sentence. ", "This is another test sentence."] + + +def test_move_device(): + sat = SaT("segment-any-text/sat-3l", hub_prefix=None) + sat.half().to("cpu") + + +def test_strip_whitespace(): + sat = SaT("segment-any-text/sat-3l", hub_prefix=None) + + splits = sat.split( + "This is a test sentence This is another test sentence. ", strip_whitespace=True, threshold=0.025 + ) + assert splits == ["This is a test sentence", "This is another test sentence."] + + +def test_strip_newline_behaviour(): + sat = SaT("segment-any-text/sat-3l", hub_prefix=None) + + splits = sat.split( + "Yes\nthis is a test sentence. This is another test sentence.", + ) + assert splits == ["Yes", "this is a test sentence. ", "This is another test sentence."] + +def test_strip_newline_behaviour_as_spaces(): + sat = SaT("segment-any-text/sat-3l", hub_prefix=None) + + splits = sat.split( + "Yes\nthis is a test sentence. This is another test sentence.", treat_newline_as_space=True + ) + assert splits == ["Yes\nthis is a test sentence. ", "This is another test sentence."] + + +def test_split_noisy(): + sat = SaT("segment-any-text/sat-12l-sm", hub_prefix=None) + + splits = sat.split("this is a sentence :) this is another sentence lol") + assert splits == ["this is a sentence :) ", "this is another sentence lol"] + + +def test_split_batched(): + sat = SaT("segment-any-text/sat-3l", hub_prefix=None) + + splits = list(sat.split(["Paragraph-A Paragraph-B", "Paragraph-C100 Paragraph-D"])) + + assert splits == [ + ["Paragraph-A ", "Paragraph-B"], + ["Paragraph-C100 ", "Paragraph-D"], + ] + + +def test_split_lora(): + ud = SaT("segment-any-text/sat-3l", hub_prefix=None, style_or_domain="ud", language="en") + opus = SaT("segment-any-text/sat-3l", hub_prefix=None, style_or_domain="opus100", language="en") + ersatz = SaT("segment-any-text/sat-3l", hub_prefix=None, style_or_domain="ersatz", language="en") + + text = "’I couldn’t help it,’ said Five, in a sulky tone; ’Seven jogged my elbow.’ | On which Seven looked up and said, ’That’s right, Five! Always lay the blame (...)!’" + + splits_ud = ud.split(text) + splits_opus100 = opus.split(text) + splits_ersatz = ersatz.split(text) + + assert splits_ud != splits_opus100 != splits_ersatz + + +def test_split_paragraphs(): + sat = SaT("segment-any-text/sat-3l", hub_prefix=None) + + text = " ".join( + """ +Text segmentation is the process of dividing written text into meaningful units, such as words, sentences, or topics. The term applies both to mental processes used by humans when reading text, and to artificial processes implemented in computers, which are the subject of natural language processing. The problem is non-trivial, because while some written languages have explicit word boundary markers, such as the word spaces of written English and the distinctive initial, medial and final letter shapes of Arabic, such signals are sometimes ambiguous and not present in all written languages. +Daniel Wroughton Craig CMG (born 2 March 1968) is an English actor who gained international fame by playing the fictional secret agent James Bond for five installments in the film series, from Casino Royale (2006) up to No Time to Die (2021). +""".strip().split() + ) + + splits = sat.split(text, do_paragraph_segmentation=True) + + paragraph1 = "".join(splits[0]) + paragraph2 = "".join(splits[1]) + + assert paragraph1.startswith("Text segmentation is") + assert paragraph2.startswith("Daniel Wroughton Craig CMG (born 2 March 1968) is") + +def test_split_empty_strings(): + sat = SaT("segment-any-text/sat-3l", hub_prefix=None) + + text = " " + splits = sat.split(text) + assert splits == [" "] + text = " \n" + splits = sat.split(text) + assert splits == [" ", ""] + text = "" + splits = sat.split(text) + assert splits == [] + + +def test_split_ort_wtp(): + wtp = WtP("wtp-bert-mini", ort_providers=["CPUExecutionProvider"]) + + splits = wtp.split("This is a test sentence This is another test sentence.", threshold=0.005) + assert splits == ["This is a test sentence ", "This is another test sentence."] + + +def test_split_torch_wtp(): + wtp = WtP("benjamin/wtp-bert-mini", hub_prefix=None) + + splits = wtp.split("This is a test sentence This is another test sentence.", threshold=0.005) + assert splits == ["This is a test sentence ", "This is another test sentence."] + + +def test_split_torch_canine_wtp(): + wtp = WtP("benjamin/wtp-canine-s-1l", hub_prefix=None) + + splits = wtp.split("This is a test sentence. This is another test sentence.", lang_code="en") + assert splits == ["This is a test sentence. ", "This is another test sentence."] + + +def test_move_device_wtp(): + wtp = WtP("benjamin/wtp-bert-mini", hub_prefix=None) + wtp.half().to("cpu") + + +def test_strip_whitespace_wtp(): + wtp = WtP("benjamin/wtp-bert-mini", hub_prefix=None) + + splits = wtp.split( + "This is a test sentence This is another test sentence. ", strip_whitespace=True, threshold=0.005 + ) + assert splits == ["This is a test sentence", "This is another test sentence."] + + +def test_split_long_wtp(): + prefix = "x" * 2000 + + wtp = WtP("benjamin/wtp-bert-mini", hub_prefix=None) + + splits = wtp.split(prefix + " This is a test sentence. This is another test sentence.") + assert splits == [prefix + " " + "This is a test sentence. ", "This is another test sentence."] + + +def test_split_batched_wtp(): + wtp = WtP("benjamin/wtp-bert-mini", hub_prefix=None) + + splits = list(wtp.split(["Paragraph-A Paragraph-B", "Paragraph-C100 Paragraph-D"])) + + assert splits == [ + ["Paragraph-A ", "Paragraph-B"], + ["Paragraph-C100 ", "Paragraph-D"], + ] + + +def test_split_style_wtp(): + wtp = WtP("benjamin/wtp-bert-mini", hub_prefix=None) + + text = "’I couldn’t help it,’ said Five, in a sulky tone; ’Seven jogged my elbow.’ | On which Seven looked up and said, ’That’s right, Five! Always lay the blame (...)!’" + + splits_ud = wtp.split(text, lang_code="en", style="ud") + splits_opus100 = wtp.split(text, lang_code="en", style="opus100") + splits_ersatz = wtp.split(text, lang_code="en", style="ersatz") + + assert splits_ud != splits_opus100 != splits_ersatz + + +def test_split_paragraphs_wtp(): + wtp = WtP("benjamin/wtp-bert-mini", hub_prefix=None) + + text = " ".join( + """ +Text segmentation is the process of dividing written text into meaningful units, such as words, sentences, or topics. The term applies both to mental processes used by humans when reading text, and to artificial processes implemented in computers, which are the subject of natural language processing. The problem is non-trivial, because while some written languages have explicit word boundary markers, such as the word spaces of written English and the distinctive initial, medial and final letter shapes of Arabic, such signals are sometimes ambiguous and not present in all written languages. +Daniel Wroughton Craig CMG (born 2 March 1968) is an English actor who gained international fame by playing the fictional secret agent James Bond for five installments in the film series, from Casino Royale (2006) up to No Time to Die (2021). +""".strip().split() + ) + + splits = wtp.split(text, do_paragraph_segmentation=True) + + paragraph1 = "".join(splits[0]) + paragraph2 = "".join(splits[1]) + + assert paragraph1.startswith("Text segmentation is") + assert paragraph2.startswith("Daniel Wroughton Craig CMG (born 2 March 1968) is") + + +def test_split_paragraphs_with_language_adapters_wtp(): + wtp = WtP("benjamin/wtp-canine-s-3l", hub_prefix=None) + + text = " ".join( + """ +Text segmentation is the process of dividing written text into meaningful units, such as words, sentences, or topics. The term applies both to mental processes used by humans when reading text, and to artificial processes implemented in computers, which are the subject of natural language processing. The problem is non-trivial, because while some written languages have explicit word boundary markers, such as the word spaces of written English and the distinctive initial, medial and final letter shapes of Arabic, such signals are sometimes ambiguous and not present in all written languages. +Daniel Wroughton Craig CMG (born 2 March 1968) is an English actor who gained international fame by playing the fictional secret agent James Bond for five installments in the film series, from Casino Royale (2006) up to No Time to Die (2021). +""".strip().split() + ) + + splits = wtp.split(text, do_paragraph_segmentation=True, lang_code="en") + + paragraph1 = "".join(splits[0]) + paragraph2 = "".join(splits[1]) + + assert paragraph1.startswith("Text segmentation is") + assert paragraph2.startswith("Daniel Wroughton Craig CMG (born 2 March 1968) is") + + +def test_split_threshold_wtp(): + wtp = WtP("benjamin/wtp-bert-mini", hub_prefix=None) + + punct_threshold = wtp.get_threshold("en", "ud", return_punctuation_threshold=True) + threshold = wtp.get_threshold("en", "ud") + + assert punct_threshold != threshold + + # test threshold is being used + splits = wtp.split("This is a test sentence. This is another test sentence.", threshold=1.0) + assert splits == ["This is a test sentence. This is another test sentence."] + + splits = wtp.split( + "This is a test sentence. This is another test sentence.", style="ud", lang_code="en", threshold=1.0 + ) + assert splits == ["This is a test sentence. This is another test sentence."] + + splits = wtp.split("This is a test sentence. This is another test sentence.", threshold=-1e-3) + # space might still be included in a character split + assert splits[:3] == list("Thi") \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/__init__.py b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e03f8c7cfc99b13c2799b7d84b312ca901de9afb --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/__init__.py @@ -0,0 +1,877 @@ +import contextlib +import math +import os +import warnings +from pathlib import Path +from typing import Literal + +# avoid the "None of PyTorch, TensorFlow, etc. have been found" warning. +with contextlib.redirect_stderr(open(os.devnull, "w")): + import transformers # noqa + +import numpy as np +import skops.io as sio + +from huggingface_hub import hf_hub_download +from transformers import AutoConfig, AutoModelForTokenClassification, AutoTokenizer +from transformers.utils.hub import cached_file + +from wtpsplit.extract import BertCharORTWrapper, SaTORTWrapper, PyTorchWrapper, extract +from wtpsplit.utils import Constants, indices_to_sentences, sigmoid, token_to_char_probs + +__version__ = "2.1.6" + +warnings.simplefilter("default", DeprecationWarning) # show by default +warnings.simplefilter("ignore", category=FutureWarning) # for tranformers + + +class WtP: + def __init__( + self, + model_name_or_model, + from_pretrained_kwargs=None, + ort_providers=None, + ort_kwargs=None, + mixtures=None, + hub_prefix="benjamin", + ignore_legacy_warning=False, + ): + self.model_name_or_model = model_name_or_model + self.ort_providers = ort_providers + self.ort_kwargs = ort_kwargs + + mixture_path = None + + if not ignore_legacy_warning: + # WtP is deprecated! + warnings.warn( + "You are using WtP, the old sentence segmentation model. " + "It is highly encouraged to use SaT instead due to strongly improved performance and efficiency. " + "See https://github.com/segment-any-text/wtpsplit for more info. " + "To ignore this warning, set ignore_legacy_warning=True.", + DeprecationWarning, + ) + + if isinstance(model_name_or_model, (str, Path)): + model_name = str(model_name_or_model) + is_local = os.path.isdir(model_name) + + if not is_local and hub_prefix is not None: + model_name_to_fetch = f"{hub_prefix}/{model_name}" + else: + model_name_to_fetch = model_name + + if is_local: + model_path = Path(model_name) + mixture_path = model_path / "mixtures.skops" + if not mixture_path.exists(): + mixture_path = None + onnx_path = model_path / "model.onnx" + if not onnx_path.exists(): + onnx_path = None + else: + try: + mixture_path = cached_file(model_name_to_fetch, "mixtures.skops", **(from_pretrained_kwargs or {})) + except OSError: + mixture_path = None + + # no need to load if no ort_providers set + if ort_providers is not None: + onnx_path = cached_file(model_name_to_fetch, "model.onnx", **(from_pretrained_kwargs or {})) + else: + onnx_path = None + + if ort_providers is not None: + if onnx_path is None: + raise ValueError( + "Could not find an ONNX model in the model directory. Try `use_ort=False` to run with PyTorch." + ) + + try: + import onnxruntime as ort # noqa + except ModuleNotFoundError: + raise ValueError("Please install `onnxruntime` to use WtP with an ONNX model.") + + # to register models for AutoConfig + import wtpsplit.configs # noqa + + self.model = BertCharORTWrapper( + AutoConfig.from_pretrained(model_name_to_fetch, **(from_pretrained_kwargs or {})), + ort.InferenceSession(str(onnx_path), providers=ort_providers, **(ort_kwargs or {})), + ) + else: + # to register models for AutoConfig + try: + import torch # noqa + except ModuleNotFoundError: + raise ValueError("Please install `torch` to use WtP with a PyTorch model.") + + import wtpsplit.models # noqa + + self.model = PyTorchWrapper( + AutoModelForTokenClassification.from_pretrained( + model_name_to_fetch, **(from_pretrained_kwargs or {}) + ) + ) + else: + if ort_providers is not None: + raise ValueError("You can only use onnxruntime with a model directory, not a model object.") + + self.model = model_name_or_model + + if mixtures is not None: + self.mixtures = mixtures + elif mixture_path is not None: + self.mixtures = sio.load( + mixture_path, + ["numpy.float32", "numpy.float64", "sklearn.linear_model._logistic.LogisticRegression"], + ) + else: + self.mixtures = None + + def __getattr__(self, name): + assert hasattr(self, "model") + return getattr(self.model, name) + + def predict_proba( + self, + text_or_texts, + lang_code: str = None, + style: str = None, + stride=256, + block_size: int = 512, + batch_size=32, + pad_last_batch: bool = False, + weighting: Literal["uniform", "hat"] = "uniform", + remove_whitespace_before_inference: bool = False, + outer_batch_size=1000, + return_paragraph_probabilities=False, + verbose: bool = False, + ): + if isinstance(text_or_texts, str): + return next( + self._predict_proba( + [text_or_texts], + lang_code=lang_code, + style=style, + stride=stride, + block_size=block_size, + batch_size=batch_size, + pad_last_batch=pad_last_batch, + weighting=weighting, + remove_whitespace_before_inference=remove_whitespace_before_inference, + outer_batch_size=outer_batch_size, + return_paragraph_probabilities=return_paragraph_probabilities, + verbose=verbose, + ) + ) + else: + return self._predict_proba( + text_or_texts, + lang_code=lang_code, + style=style, + stride=stride, + block_size=block_size, + batch_size=batch_size, + pad_last_batch=pad_last_batch, + weighting=weighting, + remove_whitespace_before_inference=remove_whitespace_before_inference, + outer_batch_size=outer_batch_size, + return_paragraph_probabilities=return_paragraph_probabilities, + verbose=verbose, + ) + + def _predict_proba( + self, + texts, + lang_code: str, + style: str, + stride: int, + block_size: int, + batch_size: int, + pad_last_batch: bool, + weighting: Literal["uniform", "hat"], + remove_whitespace_before_inference: bool, + outer_batch_size: int, + return_paragraph_probabilities: bool, + verbose: bool, + ): + if style is not None: + if lang_code is None: + raise ValueError("Please specify a `lang_code` when passing a `style` to adapt to.") + + if self.mixtures is None: + raise ValueError( + "This model does not have any associated mixtures. Maybe they are missing from the model directory?" + ) + + try: + clf, _, _, _ = self.mixtures[lang_code][style] + except KeyError: + raise ValueError(f"Could not find a mixture for the style '{style}'.") + else: + clf = None + + n_outer_batches = math.ceil(len(texts) / outer_batch_size) + + for outer_batch_idx in range(n_outer_batches): + start, end = outer_batch_idx * outer_batch_size, min((outer_batch_idx + 1) * outer_batch_size, len(texts)) + + outer_batch_texts = texts[start:end] + input_texts = [] + space_positions = [] + + for text in outer_batch_texts: + if remove_whitespace_before_inference: + text_space_positions = [] + input_text = "" + + for c in text: + if c == " ": + text_space_positions.append(len(input_text) + len(text_space_positions)) + else: + input_text += c + + space_positions.append(text_space_positions) + else: + input_text = text + + input_texts.append(input_text) + + empty_string_indices = [i for i, text in enumerate(input_texts) if not text.strip()] + # remove empty strings from input_texts + input_texts = [text for text in input_texts if text.strip()] + + if input_texts: + outer_batch_logits = extract( + input_texts, + self.model, + lang_code=lang_code, + stride=stride, + max_block_size=block_size, + batch_size=batch_size, + pad_last_batch=pad_last_batch, + weighting=weighting, + verbose=verbose, + )[0] + else: + outer_batch_logits = [] + + def newline_probability_fn(logits): + return sigmoid(logits[:, Constants.NEWLINE_INDEX]) + + # add back empty strings + for i in empty_string_indices: + outer_batch_logits.insert(i, np.ones([1, 1]) * -np.inf) + + for i, (text, logits) in enumerate(zip(outer_batch_texts, outer_batch_logits)): + if style is not None: + sentence_probs = clf.predict_proba(logits)[:, 1] + newline_probs = newline_probability_fn(logits) + else: + sentence_probs = newline_probs = newline_probability_fn(logits) + + if remove_whitespace_before_inference: + full_newline_probs, full_sentence_probs = list(newline_probs), list(sentence_probs) + + for j in space_positions[i]: + full_newline_probs.insert(j, np.zeros_like(newline_probs[0])) + full_sentence_probs.insert(j, np.zeros_like(sentence_probs[0])) + + newline_probs = np.array(full_newline_probs) + sentence_probs = np.array(full_sentence_probs) + + if return_paragraph_probabilities: + yield sentence_probs, newline_probs + else: + yield sentence_probs + + def split( + self, + text_or_texts, + lang_code: str = None, + style: str = None, + threshold: float = None, + stride=64, + block_size: int = 512, + batch_size=32, + pad_last_batch: bool = False, + weighting: Literal["uniform", "hat"] = "uniform", + remove_whitespace_before_inference: bool = False, + outer_batch_size=1000, + paragraph_threshold: float = 0.5, + strip_whitespace: bool = False, + do_paragraph_segmentation=False, + verbose: bool = False, + ): + if isinstance(text_or_texts, str): + return next( + self._split( + [text_or_texts], + lang_code=lang_code, + style=style, + threshold=threshold, + stride=stride, + block_size=block_size, + batch_size=batch_size, + pad_last_batch=pad_last_batch, + weighting=weighting, + remove_whitespace_before_inference=remove_whitespace_before_inference, + outer_batch_size=outer_batch_size, + paragraph_threshold=paragraph_threshold, + strip_whitespace=strip_whitespace, + do_paragraph_segmentation=do_paragraph_segmentation, + verbose=verbose, + ) + ) + else: + return self._split( + text_or_texts, + lang_code=lang_code, + style=style, + threshold=threshold, + stride=stride, + block_size=block_size, + batch_size=batch_size, + pad_last_batch=pad_last_batch, + weighting=weighting, + remove_whitespace_before_inference=remove_whitespace_before_inference, + outer_batch_size=outer_batch_size, + paragraph_threshold=paragraph_threshold, + strip_whitespace=strip_whitespace, + do_paragraph_segmentation=do_paragraph_segmentation, + verbose=verbose, + ) + + def get_threshold(self, lang_code: str, style: str, return_punctuation_threshold: bool = False): + try: + _, _, punctuation_threshold, threshold = self.mixtures[lang_code][style] + except KeyError: + raise ValueError(f"Could not find a mixture for the style '{style}' and language '{lang_code}'.") + + if return_punctuation_threshold: + return punctuation_threshold + + return threshold + + def _split( + self, + texts, + lang_code: str, + style: str, + threshold: float, + stride: int, + block_size: int, + batch_size: int, + pad_last_batch: bool, + weighting: Literal["uniform", "hat"], + remove_whitespace_before_inference: bool, + outer_batch_size: int, + paragraph_threshold: float, + do_paragraph_segmentation: bool, + strip_whitespace: bool, + verbose: bool, + ): + if style is not None: + if lang_code is None: + raise ValueError("Please specify a `lang_code` when passing a `style` to adapt to.") + + if self.mixtures is None: + raise ValueError( + "This model does not have any associated mixtures. Maybe they are missing from the model directory?" + ) + + try: + _, _, default_threshold, _ = self.mixtures[lang_code][style] + except KeyError: + raise ValueError(f"Could not find a mixture for the style '{style}'.") + else: + # the established default for newline prob threshold is 0.01 + default_threshold = 0.01 + + sentence_threshold = threshold if threshold is not None else default_threshold + + for text, probs in zip( + texts, + self.predict_proba( + texts, + lang_code=lang_code, + style=style, + stride=stride, + block_size=block_size, + batch_size=batch_size, + pad_last_batch=pad_last_batch, + weighting=weighting, + remove_whitespace_before_inference=remove_whitespace_before_inference, + outer_batch_size=outer_batch_size, + return_paragraph_probabilities=do_paragraph_segmentation, + verbose=verbose, + ), + ): + if do_paragraph_segmentation: + sentence_probs, newline_probs = probs + + offset = 0 + + paragraphs = [] + + for paragraph in indices_to_sentences(text, np.where(newline_probs > paragraph_threshold)[0]): + sentences = [] + + for sentence in indices_to_sentences( + paragraph, + np.where( + sentence_probs[offset : offset + len(paragraph)] > sentence_threshold, + )[0], + strip_whitespace=strip_whitespace, + ): + sentences.append(sentence) + + paragraphs.append(sentences) + offset += len(paragraph) + + yield paragraphs + else: + sentences = indices_to_sentences( + text, np.where(probs > sentence_threshold)[0], strip_whitespace=strip_whitespace + ) + yield sentences + + +class SaT: + def __init__( + self, + model_name_or_model, + tokenizer_name_or_path="facebookAI/xlm-roberta-base", + from_pretrained_kwargs=None, + ort_providers=None, + ort_kwargs=None, + style_or_domain: str = None, + language: str = None, + lora_path: str = None, # local + hub_prefix="segment-any-text", + ): + if not isinstance(model_name_or_model, (str, Path)): + raise TypeError( + f"`model_name_or_model` must be a string or Path (Hugging Face ID or local directory path), " + f"received object of type: {type(model_name_or_model)}. " + "For offline ONNX use, please provide the path to the directory containing 'model_optimized.onnx' and 'config.json'." + ) + + self.model_name_or_model = model_name_or_model + self.ort_providers = ort_providers + self.ort_kwargs = ort_kwargs + + self.use_lora = False + + self.tokenizer = AutoTokenizer.from_pretrained(tokenizer_name_or_path) + self.special_tokens = [self.tokenizer.cls_token, self.tokenizer.sep_token, self.tokenizer.pad_token] + + if isinstance(model_name_or_model, (str, Path)): + model_name = str(model_name_or_model) + is_local = os.path.isdir(model_name) + + if not is_local and hub_prefix is not None: + model_name_to_fetch = f"{hub_prefix}/{model_name}" + else: + model_name_to_fetch = model_name + + if is_local: + model_path = Path(model_name) + onnx_path = model_path / "model_optimized.onnx" + if not onnx_path.exists(): + onnx_path = None + else: + # no need to load if no ort_providers set + if ort_providers is not None: + onnx_path = cached_file( + model_name_to_fetch, "model_optimized.onnx", **(from_pretrained_kwargs or {}) + ) + else: + onnx_path = None + + if ort_providers is not None: + if onnx_path is None: + raise ValueError( + "Could not find an ONNX model in the model directory. Try `use_ort=False` to run with PyTorch." + ) + + try: + import onnxruntime as ort # noqa + except ModuleNotFoundError: + raise ValueError("Please install `onnxruntime` to use SaT with an ONNX model.") + + # to register models for AutoConfig + import wtpsplit.configs # noqa + + self.model = SaTORTWrapper( + AutoConfig.from_pretrained(model_name_to_fetch, **(from_pretrained_kwargs or {})), + ort.InferenceSession(str(onnx_path), providers=ort_providers, **(ort_kwargs or {})), + ) + if lora_path: + raise ValueError( + "If using ONNX with LoRA, execute `scripts/export_to_onnx_sat.py` with `use_lora=True`." + "Reference the chosen `output_dir` here for `model_name_or_model`. and set `lora_path=None`." + ) + else: + # to register models for AutoConfig + try: + import torch # noqa + except ModuleNotFoundError: + raise ValueError("Please install `torch` to use WtP with a PyTorch model.") + + import wtpsplit.models # noqa + + self.model = PyTorchWrapper( + AutoModelForTokenClassification.from_pretrained( + model_name_to_fetch, **(from_pretrained_kwargs or {}) + ) + ) + # LoRA LOADING + if not lora_path: + if (style_or_domain and not language) or (language and not style_or_domain): + raise ValueError("Please specify both language and style_or_domain!") + if (style_or_domain and language) or lora_path: + import adapters # noqa + from adapters.models import MODEL_MIXIN_MAPPING # noqa + from adapters.models.bert.mixin_bert import BertModelAdaptersMixin # noqa + + # monkey patch mixin to avoid forking whole adapters library + MODEL_MIXIN_MAPPING["SubwordXLMRobertaModel"] = BertModelAdaptersMixin + model_type = self.model.model.config.model_type + # adapters need xlm-roberta as model type. + self.model.model.config.model_type = "xlm-roberta" + adapters.init(self.model.model) + # reset model type (used later) + self.model.model.config.model_type = model_type + try: + if not lora_path: + for file in [ + "adapter_config.json", + "head_config.json", + "pytorch_adapter.bin", + "pytorch_model_head.bin", + ]: + hf_hub_download( + repo_id=model_name_to_fetch, + subfolder=f"loras/{style_or_domain}/{language}", + filename=file, + local_dir=Constants.CACHE_DIR, + ) + lora_load_path = str(Constants.CACHE_DIR / "loras" / style_or_domain / language) + else: + lora_load_path = lora_path + + self.model.model.load_adapter( + lora_load_path, + set_active=True, + with_head=True, + load_as="sat-lora", + ) + # merge lora weights into transformer for 0 efficiency overhead + self.model.model.merge_adapter("sat-lora") + self.use_lora = True + except: # noqa + if lora_path: + print(f"LoRA at {lora_path} not found, using base model...") + else: + print(f"LoRA {style_or_domain}/{language} not found, using base model...") + else: + if ort_providers is not None: + raise ValueError("You can only use onnxruntime with a model directory, not a model object.") + + self.model = model_name_or_model + + def __getattr__(self, name): + assert hasattr(self, "model") + return getattr(self.model, name) + + def predict_proba( + self, + text_or_texts, + stride=256, + block_size: int = 512, + batch_size=32, + pad_last_batch: bool = False, + weighting: Literal["uniform", "hat"] = "uniform", + remove_whitespace_before_inference: bool = False, + outer_batch_size=1000, + return_paragraph_probabilities=False, + verbose: bool = False, + ): + if isinstance(text_or_texts, str): + return next( + self._predict_proba( + [text_or_texts], + stride=stride, + block_size=block_size, + batch_size=batch_size, + pad_last_batch=pad_last_batch, + weighting=weighting, + remove_whitespace_before_inference=remove_whitespace_before_inference, + outer_batch_size=outer_batch_size, + return_paragraph_probabilities=return_paragraph_probabilities, + verbose=verbose, + ) + ) + else: + return self._predict_proba( + text_or_texts, + stride=stride, + block_size=block_size, + batch_size=batch_size, + pad_last_batch=pad_last_batch, + weighting=weighting, + remove_whitespace_before_inference=remove_whitespace_before_inference, + outer_batch_size=outer_batch_size, + return_paragraph_probabilities=return_paragraph_probabilities, + verbose=verbose, + ) + + def _predict_proba( + self, + texts, + stride: int, + block_size: int, + batch_size: int, + pad_last_batch: bool, + weighting: Literal["uniform", "hat"], + remove_whitespace_before_inference: bool, + outer_batch_size: int, + return_paragraph_probabilities: bool, + verbose: bool, + ): + def newline_probability_fn(logits): + return sigmoid(logits[:, Constants.NEWLINE_INDEX]) + + n_outer_batches = math.ceil(len(texts) / outer_batch_size) + + for outer_batch_idx in range(n_outer_batches): + start, end = outer_batch_idx * outer_batch_size, min((outer_batch_idx + 1) * outer_batch_size, len(texts)) + + outer_batch_texts = texts[start:end] + input_texts = [] + space_positions = [] + + for text in outer_batch_texts: + if remove_whitespace_before_inference: + text_space_positions = [] + input_text = "" + + for c in text: + if c == " ": + text_space_positions.append(len(input_text) + len(text_space_positions)) + else: + input_text += c + + space_positions.append(text_space_positions) + else: + input_text = text + + input_texts.append(input_text) + + empty_string_indices = [i for i, text in enumerate(input_texts) if not text.strip()] + # remove empty strings from input_texts + input_texts = [text for text in input_texts if text.strip()] + if input_texts: + outer_batch_logits, _, tokenizer, tokenizer_output = extract( + input_texts, + self.model, + stride=stride, + max_block_size=block_size, + batch_size=batch_size, + pad_last_batch=pad_last_batch, + weighting=weighting, + verbose=verbose, + tokenizer=self.tokenizer, + ) + + # convert token probabilities to character probabilities for the entire array + outer_batch_logits = [ + token_to_char_probs( + input_texts[i], + tokenizer_output["input_ids"][i], + outer_batch_logits[i], + self.special_tokens, + tokenizer_output["offset_mapping"][i], + ) + for i in range(len(input_texts)) + ] + else: + outer_batch_logits = [] + + # add back empty strings + for i in empty_string_indices: + outer_batch_logits.insert(i, np.ones([1, 1]) * -np.inf) + + for i, (text, logits) in enumerate(zip(outer_batch_texts, outer_batch_logits)): + sentence_probs = newline_probs = newline_probability_fn(logits) + + if remove_whitespace_before_inference: + full_newline_probs, full_sentence_probs = list(newline_probs), list(sentence_probs) + + for j in space_positions[i]: + full_newline_probs.insert(j, np.zeros_like(newline_probs[0])) + full_sentence_probs.insert(j, np.zeros_like(sentence_probs[0])) + + newline_probs = np.array(full_newline_probs) + sentence_probs = np.array(full_sentence_probs) + + if return_paragraph_probabilities: + yield sentence_probs, newline_probs + else: + yield sentence_probs + + def split( + self, + text_or_texts, + threshold: float = None, + stride=64, + block_size: int = 512, + batch_size=32, + pad_last_batch: bool = False, + weighting: Literal["uniform", "hat"] = "uniform", + remove_whitespace_before_inference: bool = False, + outer_batch_size=1000, + paragraph_threshold: float = 0.5, + strip_whitespace: bool = False, + do_paragraph_segmentation: bool = False, + split_on_input_newlines: bool = True, + treat_newline_as_space=None, # Deprecated + verbose: bool = False, + ): + if treat_newline_as_space is not None: + warnings.warn( + "treat_newlines_as_spaces is deprecated and will be removed in a future release. " + "Use split_on_input_newlines with inverse bools instead.", + DeprecationWarning, + ) + split_on_input_newlines = not treat_newline_as_space + if isinstance(text_or_texts, str): + return next( + self._split( + [text_or_texts], + threshold=threshold, + stride=stride, + block_size=block_size, + batch_size=batch_size, + pad_last_batch=pad_last_batch, + weighting=weighting, + remove_whitespace_before_inference=remove_whitespace_before_inference, + outer_batch_size=outer_batch_size, + paragraph_threshold=paragraph_threshold, + strip_whitespace=strip_whitespace, + do_paragraph_segmentation=do_paragraph_segmentation, + split_on_input_newlines=split_on_input_newlines, + verbose=verbose, + ) + ) + else: + return self._split( + text_or_texts, + threshold=threshold, + stride=stride, + block_size=block_size, + batch_size=batch_size, + pad_last_batch=pad_last_batch, + weighting=weighting, + remove_whitespace_before_inference=remove_whitespace_before_inference, + outer_batch_size=outer_batch_size, + paragraph_threshold=paragraph_threshold, + strip_whitespace=strip_whitespace, + do_paragraph_segmentation=do_paragraph_segmentation, + split_on_input_newlines=split_on_input_newlines, + verbose=verbose, + ) + + def _split( + self, + texts, + threshold: float, + stride: int, + block_size: int, + batch_size: int, + pad_last_batch: bool, + weighting: Literal["uniform", "hat"], + paragraph_threshold: float, + remove_whitespace_before_inference: bool, + outer_batch_size: int, + do_paragraph_segmentation: bool, + split_on_input_newlines: bool, + strip_whitespace: bool, + verbose: bool, + ): + def get_default_threshold(model_str: str): + # basic type check for safety + if not isinstance(model_str, str): + warnings.warn( + f"get_default_threshold received non-string argument: {type(model_str)}. Using base default." + ) + return 0.025 # default fallback + if self.use_lora: + return 0.5 + if "sm" in model_str: + return 0.25 + if "no-limited-lookahead" in model_str and "sm" not in model_str: + return 0.01 + return 0.025 + + default_threshold = get_default_threshold(self.model_name_or_model) + sentence_threshold = threshold if threshold is not None else default_threshold + + for text, probs in zip( + texts, + self.predict_proba( + texts, + stride=stride, + block_size=block_size, + batch_size=batch_size, + pad_last_batch=pad_last_batch, + weighting=weighting, + remove_whitespace_before_inference=remove_whitespace_before_inference, + outer_batch_size=outer_batch_size, + return_paragraph_probabilities=do_paragraph_segmentation, + verbose=verbose, + ), + ): + if do_paragraph_segmentation: + sentence_probs, newline_probs = probs + + offset = 0 + paragraphs = [] + + for paragraph in indices_to_sentences(text, np.where(newline_probs > paragraph_threshold)[0]): + sentences = [] + + for sentence in indices_to_sentences( + paragraph, + np.where( + sentence_probs[offset : offset + len(paragraph)] > sentence_threshold, + )[0], + strip_whitespace=strip_whitespace, + ): + sentences.append(sentence) + + paragraphs.append(sentences) + offset += len(paragraph) + + yield paragraphs + else: + sentences = indices_to_sentences( + text, np.where(probs > sentence_threshold)[0], strip_whitespace=strip_whitespace + ) + if split_on_input_newlines: + # within the model, newlines in the text were ignored - they were treated as spaces. + # this is the default behavior: additionally split on newlines as provided in the input + new_sentences = [] + for sentence in sentences: + new_sentences.extend(sentence.split("\n")) + sentences = new_sentences + else: + warnings.warn( + "split_on_input_newlines=False will lead to newlines in the output " + "if they were present in the input. Within the model, such newlines are " + "treated as spaces. " + "If you want to split on such newlines, set split_on_input_newlines=False." + ) + yield sentences diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/configs.py b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/configs.py new file mode 100644 index 0000000000000000000000000000000000000000..0eaffd029e1ac90cefbe8aa762382ded7c10e8ff --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/configs.py @@ -0,0 +1,66 @@ +from transformers import AutoConfig, BertConfig, CanineConfig, XLMRobertaConfig + + +class LACanineConfig(CanineConfig): + model_type = "la-canine" + + def __init__( + self, + n_languages=None, + ngram_order=1, + bottleneck_factor=2, + language_adapter="on", + lookahead=None, + **kwargs, + ): + super().__init__(**kwargs) + + self.n_languages = n_languages + self.ngram_order = ngram_order + self.language_adapter = language_adapter # 'on', 'off', 'shared' + self.bottleneck_factor = bottleneck_factor + + self.lookahead = lookahead + self.lookahead_block_size = 1 + + +class BertCharConfig(BertConfig): + model_type = "bert-char" + + def __init__( + self, + num_hash_buckets=8192, + num_hash_functions=8, + **kwargs, + ): + super().__init__(**kwargs) + + self.num_hash_buckets = num_hash_buckets + self.num_hash_functions = num_hash_functions + + +class SubwordXLMConfig(XLMRobertaConfig): + """Config for XLM-R. Used for token-level training, i.e., SaT models. + + Args: + XLMRobertaConfig: Base class. + """ + + model_type = "xlm-token" + mixture_name = "xlm-token" + + def __init__( + self, + lookahead=None, + lookahead_split_layers=None, + **kwargs, + ): + super().__init__(**kwargs) + self.mixture_name = "xlm-token" + self.lookahead = lookahead + self.lookahead_split_layers = lookahead_split_layers + + +AutoConfig.register("bert-char", BertCharConfig) +AutoConfig.register("la-canine", LACanineConfig) +AutoConfig.register("xlm-token", SubwordXLMConfig) diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/data_acquisition/__init__.py b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/data_acquisition/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/data_acquisition/extract_all_data.py b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/data_acquisition/extract_all_data.py new file mode 100644 index 0000000000000000000000000000000000000000..c7fb5a85e53f0425f03f1931c5fadd0f99a134a9 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/data_acquisition/extract_all_data.py @@ -0,0 +1,735 @@ +import glob +import gzip +import json +import os +import random +from dataclasses import dataclass +from io import BytesIO + +import conllu +import numpy as np +import requests +import torch +from datasets import load_dataset +from mosestokenizer import MosesTokenizer +from tqdm.auto import tqdm +from transformers import HfArgumentParser + +from wtpsplit.evaluation import preprocess_sentence +from wtpsplit.utils import Constants + +UD_TREEBANK_PATH = "../data/ud-treebanks-v2.13" # source: https://universaldependencies.org/#download + +ERSATZ_DATA_PATH = "../data/ersatz-test-suite/segmented" # source: https://github.com/rewicks/ersatz-test-suite + +ERSATZ_TEST_DATASETS = { + "ar": "iwsltt2017.ar", + "cs": "wmt20.cs-en.cs", + "de": "wmt20.de-en.de", + "en": "wsj.03-06.en", + "es": "wmt13.es-en.es", + "et": "wmt18.et-en.et", + "fi": "wmt19.fi-en.fi", + "fr": "wmt20.fr-de.fr", + "gu": "wmt19.gu-en.gu", + "hi": "wmt14.hi-en.hi", + "iu": "wmt20.iu-en.iu", + "ja": "wmt20.ja-en.ja", + "kk": "wmt19.kk-en.kk", + "km": "wmt20.km-en.km", + "lt": "wmt19.lt-en.lt", + "lv": "wmt17.lv-en.lv", + "pl": "wmt20.pl-en.pl", + "ps": "wmt20.ps-en.ps", + "ro": "wmt16.ro-en.ro", + "ru": "wmt20.ru-en.ru", + "ta": "wmt20.ta-en.ta", + "tr": "wmt18.tr-en.tr", + "zh": "wmt20.zh-en.zh", +} +ERSATZ_TRAIN_DATASETS = { + "ar": "news-commentary-v15.dev.ar", + "cs": "wmt18.cs-en.cs", + "de": "wmt19.de-en.de", + "en": "merged.nc-wsj.en", + "es": None, + "et": "newscrawl.2019.dev.et", + "fi": "wmt18.fi-en.fi", + "fr": "wmt15.fr-en.fr", + "gu": "newscrawl.2019.dev.gu", + "hi": "newscrawl.2013.dev.hi", + "iu": "nhi-3.0.iu", + "ja": "newscrawl.2019.dev.ja", + "kk": "newscrawl.2019.dev.kk", + "km": "wikimatrix.dev.km", + "lt": "newscrawl.2019.dev.lt", + "lv": "newscrawl.2019.dev.lv", + "pl": "newscrawl.2019.dev.pl", + "ps": "wikimatrix.dev.ps", + "ro": "newscrawl.2019.dev.ro", + "ru": "wmt18.ru-en.ru", + "ta": "newscrawl.2019.dev.ta", + "tr": "wmt16.tr-en.tr", + "zh": "wmt18.zh-en.zh", +} + + +punct_chars = set(Constants.PUNCTUATION_CHARS) + + +def corrupt_asr(sentences, lang): + # first corruption scheme of SM in the SaT paper + if sentences is None: + return None + + separator = Constants.SEPARATORS.get(lang, " ") + + if separator == "": + corrupted_sentences = [ + preprocess_sentence("".join([char for char in sentence if char not in punct_chars]).lower()) + for sentence in sentences + ] + return corrupted_sentences + + try: + tokenizer = MosesTokenizer(lang) + except: # noqa + corrupted_sentences = [ + preprocess_sentence("".join([char for char in sentence if char not in punct_chars]).lower()) + for sentence in sentences + ] + return corrupted_sentences + + tokenized_sentences = [tokenizer.tokenize(sentence) for sentence in sentences] + corrupted_tokenized_sentences = [ + [token for token in tokens if token not in punct_chars] for tokens in tokenized_sentences + ] + + corrupted_sentences = [ + preprocess_sentence(tokenizer.detokenize(corrupted_tokens).lower()) + for corrupted_tokens in corrupted_tokenized_sentences + ] + + return corrupted_sentences + + +def corrupt_social_media(sentences, lang): + # second corruption scheme of SM in the SaT paper + if sentences is None: + return None + + corrupted_sentences = [] + for sentence in sentences: + if random.random() < 0.5: + sentence = "".join([char for char in sentence if char not in punct_chars]) + if random.random() < 0.5: + sentence = sentence.lower() + + for punct in punct_chars: + count = 0 + while random.random() < 0.5: + count += 1 + sentence = sentence.replace(punct, punct * count) + + sentence = preprocess_sentence(sentence) + corrupted_sentences.append(sentence) + + return corrupted_sentences + + +@dataclass +class Args: + output_file: str = "../data/preprocessed_training_data/all_data.pth" + include_train_data: bool = True + cache_dir: str = "../data/cache/" + + +if __name__ == "__main__": + (args,) = HfArgumentParser([Args]).parse_args_into_dataclasses() + + eval_data = {lang_code: {"sentence": {}, "compound": {}} for lang_code in Constants.LANGINFO.index} + + # Ersatz data + for lang_code in tqdm(Constants.LANGINFO.index): + if lang_code in ERSATZ_TEST_DATASETS: + eval_data[lang_code]["sentence"]["ersatz"] = { + "meta": { + "train_data": ( + [ + preprocess_sentence(line) + for line in open( + os.path.join( + ERSATZ_DATA_PATH, + lang_code, + ERSATZ_TRAIN_DATASETS[lang_code], + ) + ) + ] + if args.include_train_data and ERSATZ_TRAIN_DATASETS[lang_code] is not None + else None + ), + }, + "data": [ + preprocess_sentence(line) + for line in open(os.path.join(ERSATZ_DATA_PATH, lang_code, ERSATZ_TEST_DATASETS[lang_code])) + ], + } + + eval_data[lang_code]["sentence"]["ersatz-corrupted-asr"] = { + "meta": { + "train_data": ( + corrupt_asr( + ( + eval_data[lang_code]["sentence"]["ersatz"]["meta"]["train_data"][:10000] + if eval_data[lang_code]["sentence"]["ersatz"]["meta"]["train_data"] is not None + else None + ), + lang_code, + ) + ) + }, + "data": corrupt_asr( + eval_data[lang_code]["sentence"]["ersatz"]["data"][:10000], + lang_code, + ), + } + + eval_data[lang_code]["sentence"]["ersatz-corrupted-social-media"] = { + "meta": { + "train_data": ( + corrupt_social_media( + ( + eval_data[lang_code]["sentence"]["ersatz"]["meta"]["train_data"][:10000] + if eval_data[lang_code]["sentence"]["ersatz"]["meta"]["train_data"] is not None + else None + ), + lang_code, + ) + ) + }, + "data": corrupt_social_media( + eval_data[lang_code]["sentence"]["ersatz"]["data"][:10000], + lang_code, + ), + } + + # UD + OPUS100 sentences + TED + NLLB + for lang_code in tqdm(Constants.LANGINFO.index): + opus_dset_name = Constants.LANGINFO.loc[lang_code, "opus100"] + + if opus_dset_name not in (np.nan, None): + other_lang_code = set(opus_dset_name.split("-")) - {lang_code} + assert len(other_lang_code) == 1 + other_lang_code = other_lang_code.pop() + + dset_args = ["opus100", opus_dset_name] + + try: + opus100_sentences = [ + preprocess_sentence(sample[lang_code]) + for sample in load_dataset(*dset_args, split="test", cache_dir=args.cache_dir)["translation"] + if sample[lang_code].strip() != sample[other_lang_code].strip() + ] + try: + opus100_train_sentences = [ + preprocess_sentence(sample[lang_code]) + for sample in load_dataset(*dset_args, split="train", cache_dir=args.cache_dir)["translation"] + if sample[lang_code].strip() != sample[other_lang_code].strip() + ] + except ValueError: + opus100_train_sentences = None + except ValueError: + opus100_sentences = [ + preprocess_sentence(sample[lang_code]) + for sample in load_dataset(*dset_args, split="train", cache_dir=args.cache_dir)["translation"] + if sample[lang_code].strip() != sample[other_lang_code].strip() + ] + opus100_train_sentences = None + + opus100_train_sentences = opus100_train_sentences[:10000] if opus100_train_sentences is not None else None + + eval_data[lang_code]["sentence"]["opus100"] = { + "meta": {"train_data": (opus100_train_sentences if args.include_train_data else None)}, + "data": opus100_sentences, + } + + eval_data[lang_code]["sentence"]["opus100-corrupted-asr"] = { + "meta": { + "train_data": ( + corrupt_asr( + (opus100_train_sentences), + lang_code, + ) + if args.include_train_data + else None + ) + }, + "data": corrupt_asr(opus100_sentences[:10000], lang_code), + } + + eval_data[lang_code]["sentence"]["opus100-corrupted-social-media"] = { + "meta": { + "train_data": ( + corrupt_social_media( + (opus100_train_sentences), + lang_code, + ) + if args.include_train_data + else None + ) + }, + "data": corrupt_social_media(opus100_sentences[:10000], lang_code), + } + + if Constants.LANGINFO.loc[lang_code, "ud"] not in (np.nan, None): + ud_data = conllu.parse( + open( + glob.glob( + os.path.join( + UD_TREEBANK_PATH, + Constants.LANGINFO.loc[lang_code, "ud"], + "*-ud-test.conllu", + ) + )[0] + ).read() + ) + + try: + ud_train_data = conllu.parse( + open( + glob.glob( + os.path.join( + UD_TREEBANK_PATH, + Constants.LANGINFO.loc[lang_code, "ud"], + "*-ud-train.conllu", + ) + )[0] + ).read() + ) + ud_train_sentences = [preprocess_sentence(sentence.metadata["text"]) for sentence in ud_train_data][ + :10000 + ] + except IndexError: + ud_train_sentences = None + + ud_sentences = [preprocess_sentence(sentence.metadata["text"]) for sentence in ud_data] + + eval_data[lang_code]["sentence"]["ud"] = { + "meta": {"train_data": (ud_train_sentences if args.include_train_data else None)}, + "data": ud_sentences, + } + + eval_data[lang_code]["sentence"]["ud-corrupted-asr"] = { + "meta": { + "train_data": (corrupt_asr(ud_train_sentences, lang_code) if args.include_train_data else None) + }, + "data": corrupt_asr(ud_sentences, lang_code), + } + + eval_data[lang_code]["sentence"]["ud-corrupted-social-media"] = { + "meta": { + "train_data": ( + corrupt_social_media(ud_train_sentences, lang_code) if args.include_train_data else None + ) + }, + "data": corrupt_social_media(ud_sentences, lang_code), + } + + # TED 2020 + url = f"https://object.pouta.csc.fi/OPUS-TED2020/v1/mono/{lang_code}.txt.gz" + res = requests.get(url) + + if res.status_code == 200: + with gzip.open(BytesIO(res.content), "rt", encoding="utf-8") as f: + sentences = f.read().splitlines() + + sentences = sentences[:20000] + + sentences = [preprocess_sentence(sentence) for sentence in sentences] + + train_sentences = sentences[: len(sentences) // 2] + test_sentences = sentences[len(sentences) // 2 :] + + eval_data[lang_code]["sentence"]["ted2020-corrupted-asr"] = { + "meta": {"train_data": (corrupt_asr(train_sentences, lang_code) if args.include_train_data else None)}, + "data": corrupt_asr(test_sentences, lang_code), + } + + eval_data[lang_code]["sentence"]["ted2020-corrupted-social-media"] = { + "meta": { + "train_data": ( + corrupt_social_media(train_sentences, lang_code) if args.include_train_data else None + ) + }, + "data": corrupt_social_media(test_sentences, lang_code), + } + + else: + print(f"Failed to download TED2020 data for {lang_code}") + + for lang_code in ["ceb", "jv", "mn", "yo"]: + url = f"https://object.pouta.csc.fi/OPUS-NLLB/v1/mono/{lang_code}.txt.gz" + res = requests.get(url) + + if res.status_code == 200: + with gzip.open(BytesIO(res.content), "rt", encoding="utf-8") as f: + sentences = f.read().splitlines() + + random.shuffle(sentences) # because they come alphabetically sorted + + sentences = sentences[:20000] + + sentences = [preprocess_sentence(sentence) for sentence in sentences] + + else: + raise Exception + + train_sentences = sentences[: len(sentences) // 2] + test_sentences = sentences[len(sentences) // 2 :] + + eval_data[lang_code]["sentence"]["nllb"] = { + "meta": {"train_data": (train_sentences if args.include_train_data else None)}, + "data": test_sentences, + } + + eval_data[lang_code]["sentence"]["nllb-corrupted-asr"] = { + "meta": {"train_data": (corrupt_asr(train_sentences, lang_code) if args.include_train_data else None)}, + "data": corrupt_asr(test_sentences, lang_code), + } + + eval_data[lang_code]["sentence"]["nllb-corrupted-social-media"] = { + "meta": { + "train_data": (corrupt_social_media(train_sentences, lang_code) if args.include_train_data else None) + }, + "data": corrupt_social_media(test_sentences, lang_code), + } + + # UD Code-Switching Corpora + + # UD_Turkish_German-SAGT + + ud_data = conllu.parse( + open( + glob.glob( + os.path.join( + UD_TREEBANK_PATH, + "UD_Turkish_German-SAGT", + "*-ud-test.conllu", + ) + )[0] + ).read() + ) + + ud_train_data = conllu.parse( + open( + glob.glob( + os.path.join( + UD_TREEBANK_PATH, + "UD_Turkish_German-SAGT", + "*-ud-train.conllu", + ) + )[0] + ).read() + ) + + ud_train_sentences = [preprocess_sentence(sentence.metadata["text"]) for sentence in ud_train_data] + ud_test_sentences = [preprocess_sentence(sentence.metadata["text"]) for sentence in ud_data] + + eval_data["tr-de"] = {} + eval_data["tr-de"]["sentence"] = {} + + eval_data["tr-de"]["sentence"]["code-switching"] = { + "meta": {"train_data": ud_train_sentences}, + "data": ud_test_sentences, + } + + eval_data["tr-de"]["sentence"]["code-switching-corrupted-asr"] = { + "meta": {"train_data": corrupt_asr(ud_train_sentences, "en")}, + "data": corrupt_asr(ud_test_sentences, "en"), + } + + eval_data["tr-de"]["sentence"]["code-switching-corrupted-social-media"] = { + "meta": {"train_data": corrupt_social_media(ud_train_sentences, "en")}, + "data": corrupt_social_media(ud_test_sentences, "en"), + } + + # UD_Spanish_English-Miami + + ud_data = conllu.parse( + open( + glob.glob( + os.path.join( + UD_TREEBANK_PATH, + "UD_Spanish_English-Miami", + "*-ud-test.conllu", + ) + )[0] + ).read() + ) + + ud_sentences = [preprocess_sentence(sentence.metadata["text"]) for sentence in ud_data] + ud_train_sentences = ud_sentences[len(ud_sentences) // 2 :] + ud_test_sentences = ud_sentences[: len(ud_sentences) // 2] + + eval_data["es-en"] = {} + eval_data["es-en"]["sentence"] = {} + + eval_data["es-en"]["sentence"]["code-switching"] = { + "meta": {"train_data": ud_train_sentences}, + "data": ud_test_sentences, + } + + eval_data["es-en"]["sentence"]["code-switching-corrupted-asr"] = { + "meta": {"train_data": corrupt_asr(ud_train_sentences, "es")}, + "data": corrupt_asr(ud_test_sentences, "es"), + } + + eval_data["es-en"]["sentence"]["code-switching-corrupted-social-media"] = { + "meta": {"train_data": corrupt_social_media(ud_train_sentences, "es")}, + "data": corrupt_social_media(ud_test_sentences, "es"), + } + + # Short sequences + + # serbian + + serbian_train_data = conllu.parse(open("../data/short-sequences/serbian/reldi-normtagner-sr-train.conllu").read()) + + serbian_train_tweets = [] + tweet_sentences = [] + for sentence in serbian_train_data: + if "newdoc id" in sentence.metadata: + if tweet_sentences: + serbian_train_tweets.append(tweet_sentences) + tweet_sentences = [] + tweet_sentences.append(preprocess_sentence(sentence.metadata["text"])) + + if tweet_sentences: + serbian_train_tweets.append(tweet_sentences) + + serbian_test_data = conllu.parse(open("../data/short-sequences/serbian/reldi-normtagner-sr-test.conllu").read()) + + serbian_test_tweets = [] + tweet_sentences = [] + for sentence in serbian_test_data: + if "newdoc id" in sentence.metadata: + if tweet_sentences: + serbian_test_tweets.append(tweet_sentences) + tweet_sentences = [] + tweet_sentences.append(preprocess_sentence(sentence.metadata["text"])) + + if tweet_sentences: + serbian_test_tweets.append(tweet_sentences) + + serbian_train_tweets = [tweet for tweet in serbian_train_tweets if len(tweet) > 1] + serbian_test_tweets = [tweet for tweet in serbian_test_tweets if len(tweet) > 1] + + eval_data["sr"]["sentence"]["short-sequences"] = { + "meta": {"train_data": serbian_train_tweets}, + "data": serbian_test_tweets, + } + + eval_data["sr"]["sentence"]["short-sequences-corrupted-asr"] = { + "meta": {"train_data": [corrupt_asr(s, "sr") for s in serbian_train_tweets]}, + "data": [corrupt_asr(s, "sr") for s in serbian_test_tweets], + } + + eval_data["sr"]["sentence"]["short-sequences-corrupted-social-media"] = { + "meta": {"train_data": [corrupt_social_media(s, "sr") for s in serbian_train_tweets]}, + "data": [corrupt_social_media(s, "sr") for s in serbian_test_tweets], + } + + # slovenian + + slovenian_data = conllu.parse( + open("../data/short-sequences/slovenian/Janes-Tag.3.0.CoNLL-U/janes-rsdo.ud.connlu").read() + ) + + slovenian_tweets = [] + tweet_sentences = [] + for sentence in slovenian_data: + if "newdoc id" in sentence.metadata: + if tweet_sentences: + slovenian_tweets.append(tweet_sentences) + tweet_sentences = [] + tweet_sentences.append(preprocess_sentence(sentence.metadata["text"])) + + if tweet_sentences: + slovenian_tweets.append(tweet_sentences) + + random.shuffle(slovenian_tweets) + + # keep only if more than one sentence in a tweet + slovenian_tweets = [tweet for tweet in slovenian_tweets if len(tweet) > 1] + + slovenian_train_tweeets = slovenian_tweets[: len(slovenian_tweets) // 2] + slovenian_test_tweets = slovenian_tweets[len(slovenian_tweets) // 2 :] + + eval_data["sl"]["sentence"]["short-sequences"] = { + "meta": {"train_data": slovenian_train_tweeets}, + "data": slovenian_test_tweets, + } + + eval_data["sl"]["sentence"]["short-sequences-corrupted-asr"] = { + "meta": {"train_data": [corrupt_asr(s, "sl") for s in slovenian_train_tweeets]}, + "data": [corrupt_asr(s, "sl") for s in slovenian_test_tweets], + } + + eval_data["sl"]["sentence"]["short-sequences-corrupted-social-media"] = { + "meta": {"train_data": [corrupt_social_media(s, "sl") for s in slovenian_train_tweeets]}, + "data": [corrupt_social_media(s, "sl") for s in slovenian_test_tweets], + } + + # LEGAL + langs = ["de", "en", "es", "fr", "it"] + + all_subset_data = { + lang: { + "laws": {"train": [], "test": []}, + "judgements": {"train": [], "test": []}, + } + for lang in langs + } + + for lang in tqdm(langs, desc="Legal data"): + data_dir = f"../data/MultiLegalSBD/data/{lang}/gold/" + + all_files = glob.glob(f"{data_dir}/*_test.jsonl") + subsets = [file.split("/")[-1].split("_test.jsonl")[0] for file in all_files] + + for subset in subsets: + if subset == "Constitution": + continue + + train_data = [] + + with open( + f"../data/MultiLegalSBD/data/{lang}/gold/{subset}_train.jsonl", + "r", + encoding="utf-8", + ) as f: + for line in f: + train_data.append(json.loads(line)) + + train_subset_sentences = [] + for doc in train_data: + doc_sentences = [] + text = doc["text"] + for span in doc["spans"]: + sentence = text[span["start"] : span["end"]] + doc_sentences.append(preprocess_sentence(sentence)) + train_subset_sentences.append(doc_sentences) + + test_data = [] + + test_data_file = f"../data/MultiLegalSBD/data/{lang}/gold/{subset}_test.jsonl" + + with open( + test_data_file, + "r", + encoding="utf-8", + ) as f: + for line in f: + test_data.append(json.loads(line)) + + test_subset_sentences = [] + for doc in test_data: + doc_sentences = [] + text = doc["text"] + for span in doc["spans"]: + sentence = text[span["start"] : span["end"]] + doc_sentences.append(preprocess_sentence(sentence)) + test_subset_sentences.append(doc_sentences) + + eval_data[lang]["sentence"][f"legal-{subset}"] = { + "meta": {"train_data": train_subset_sentences}, + "data": test_subset_sentences, + } + + eval_data[lang]["sentence"][f"legal-{subset}-corrupted-asr"] = { + "meta": {"train_data": [corrupt_asr(s, lang) for s in train_subset_sentences]}, + "data": [corrupt_asr(s, lang) for s in test_subset_sentences], + } + + eval_data[lang]["sentence"][f"legal-{subset}-corrupted-social-media"] = { + "meta": {"train_data": [corrupt_social_media(s, lang) for s in train_subset_sentences]}, + "data": [corrupt_social_media(s, lang) for s in test_subset_sentences], + } + + subsets2set = { + "CD_jug": "judgements", + "gesCode": "laws", + "CD_multi_legal": "judgements", + "CD_wipolex": "judgements", + "CivilCode": "laws", + "CriminalCode": "laws", + "CD_swiss_judgement": "judgements", + } + + if lang != "en": + set = subsets2set[subset] + else: + set = "judgements" + + all_subset_data[lang][set]["train"].extend(train_subset_sentences) + all_subset_data[lang][set]["test"].extend(test_subset_sentences) + + # constitution + + if lang in ["de", "en"]: + continue + + test_data = [] + test_data_file = f"../data/MultiLegalSBD/data/{lang}/gold/Constitution.jsonl" + with open( + test_data_file, + "r", + encoding="utf-8", + ) as f: + for line in f: + test_data.append(json.loads(line)) + + test_subset_sentences = [] + for doc in test_data: + doc_sentences = [] + text = doc["text"] + for span in doc["spans"]: + sentence = text[span["start"] : span["end"]] + doc_sentences.append(preprocess_sentence(sentence)) + test_subset_sentences.append(doc_sentences) + + eval_data[lang]["sentence"]["legal-constitution"] = { + "meta": {"train_data": None}, + "data": test_subset_sentences, + } + + eval_data[lang]["sentence"]["legal-constitution-corrupted-asr"] = { + "meta": {"train_data": None}, + "data": [corrupt_asr(s, lang) for s in test_subset_sentences], + } + + eval_data[lang]["sentence"]["legal-constitution-corrupted-social-media"] = { + "meta": {"train_data": None}, + "data": [corrupt_social_media(s, lang) for s in test_subset_sentences], + } + + all_subset_data[lang]["laws"]["test"].extend(test_subset_sentences) + + for lang in all_subset_data: + for set in ["laws", "judgements"]: + eval_data[lang]["sentence"][f"legal-all-{set}"] = { + "meta": {"train_data": all_subset_data[lang][set]["train"]}, + "data": all_subset_data[lang][set]["test"], + } + + eval_data[lang]["sentence"][f"legal-all-{set}-corrupted-asr"] = { + "meta": {"train_data": [corrupt_asr(s, lang) for s in all_subset_data[lang][set]["train"]]}, + "data": [corrupt_asr(s, lang) for s in all_subset_data[lang][set]["test"]], + } + + eval_data[lang]["sentence"][f"legal-all-{set}-corrupted-social-media"] = { + "meta": {"train_data": [corrupt_social_media(s, lang) for s in all_subset_data[lang][set]["train"]]}, + "data": [corrupt_social_media(s, lang) for s in all_subset_data[lang][set]["test"]], + } + + torch.save(eval_data, args.output_file.replace(".pth", "-all.pth")) diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/data_acquisition/extract_eval_data.py b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/data_acquisition/extract_eval_data.py new file mode 100644 index 0000000000000000000000000000000000000000..e3bdf3a262187eef3ab2040add0078f66ca80ce0 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/data_acquisition/extract_eval_data.py @@ -0,0 +1,184 @@ +import glob +import os +from dataclasses import dataclass + +import conllu +import numpy as np +import torch +from datasets import load_dataset +from tqdm.auto import tqdm +from transformers import HfArgumentParser + +from wtpsplit.evaluation import preprocess_sentence +from wtpsplit.utils import Constants + +UD_TREEBANK_PATH = "data/external/ud-treebanks-v2.10" # source: https://universaldependencies.org/#download +WIKTEXTRACT_DATA_PATH = "data/external/raw-wiktextract-data.json" # source: https://kaikki.org/dictionary/rawdata.html +# source: +# https://uni-tuebingen.de/fakultaeten/philosophische-fakultaet/fachbereiche/neuphilologie/seminar-fuer-sprachwissenschaft/arbeitsbereiche/allg-sprachwissenschaft-computerlinguistik/ressourcen/lexica/germanet-1/beschreibung/compounds/ +GERMANET_DATA_PATH = "data/external/split_compounds_from_GermaNet17.0_modified-2022-06-28.txt" +AUCOPRO_DATA_PATH = "data/external/Data.AUCOPRO.Splitting" # source: https://sourceforge.net/projects/aucopro/ +ERSATZ_DATA_PATH = "data/external/ersatz-test-suite/segmented" # source: https://github.com/rewicks/ersatz-test-suite + +# copied from Table 8 in https://aclanthology.org/2021.acl-long.309.pdf +ERSATZ_TEST_DATASETS = { + "ar": "iwsltt2017.ar", + "cs": "wmt20.cs-en.cs", + "de": "wmt20.de-en.de", + "en": "wsj.03-06.en", + "es": "wmt13.es-en.es", + "et": "wmt18.et-en.et", + "fi": "wmt19.fi-en.fi", + "fr": "wmt20.fr-de.fr", + "gu": "wmt19.gu-en.gu", + "hi": "wmt14.hi-en.hi", + "iu": "wmt20.iu-en.iu", + "ja": "wmt20.ja-en.ja", + "kk": "wmt19.kk-en.kk", + "km": "wmt20.km-en.km", + "lt": "wmt19.lt-en.lt", + "lv": "wmt17.lv-en.lv", + "pl": "wmt20.pl-en.pl", + "ps": "wmt20.ps-en.ps", + "ro": "wmt16.ro-en.ro", + "ru": "wmt20.ru-en.ru", + "ta": "wmt20.ta-en.ta", + "tr": "wmt18.tr-en.tr", + "zh": "wmt20.zh-en.zh", +} +ERSATZ_TRAIN_DATASETS = { + "ar": "news-commentary-v15.dev.ar", + "cs": "wmt18.cs-en.cs", + "de": "wmt19.de-en.de", + "en": "merged.nc-wsj.en", + "es": None, + "et": "newscrawl.2019.dev.et", + "fi": "wmt18.fi-en.fi", + "fr": "wmt15.fr-en.fr", + "gu": "newscrawl.2019.dev.gu", + "hi": "newscrawl.2013.dev.hi", + "iu": "nhi-3.0.iu", + "ja": "newscrawl.2019.dev.ja", + "kk": "newscrawl.2019.dev.kk", + "km": "wikimatrix.dev.km", + "lt": "newscrawl.2019.dev.lt", + "lv": "newscrawl.2019.dev.lv", + "pl": "newscrawl.2019.dev.pl", + "ps": "wikimatrix.dev.ps", + "ro": "newscrawl.2019.dev.ro", + "ru": "wmt18.ru-en.ru", + "ta": "newscrawl.2019.dev.ta", + "tr": "wmt16.tr-en.tr", + "zh": "wmt18.zh-en.zh", +} + + +@dataclass +class Args: + output_file: str = "data/eval.pth" + include_train_data: bool = False + + +if __name__ == "__main__": + (args,) = HfArgumentParser([Args]).parse_args_into_dataclasses() + + eval_data = {lang_code: {"sentence": {}, "compound": {}} for lang_code in Constants.LANGINFO.index} + + # Ersatz data + for lang_code in tqdm(Constants.LANGINFO.index): + if lang_code in ERSATZ_TEST_DATASETS: + eval_data[lang_code]["sentence"]["ersatz"] = { + "meta": { + "train_data": [ + preprocess_sentence(line) + for line in open( + os.path.join( + ERSATZ_DATA_PATH, + lang_code, + ERSATZ_TRAIN_DATASETS[lang_code], + ) + ) + ] + if args.include_train_data and ERSATZ_TRAIN_DATASETS[lang_code] is not None + else None, + }, + "data": [ + preprocess_sentence(line) + for line in open(os.path.join(ERSATZ_DATA_PATH, lang_code, ERSATZ_TEST_DATASETS[lang_code])) + ], + } + + # UD + OPUS100 sentences + for lang_code in tqdm(Constants.LANGINFO.index): + opus_dset_name = Constants.LANGINFO.loc[lang_code, "opus100"] + + if opus_dset_name not in (np.nan, None): + other_lang_code = set(opus_dset_name.split("-")) - {lang_code} + assert len(other_lang_code) == 1 + other_lang_code = other_lang_code.pop() + + dset_args = ["opus100", opus_dset_name] + + try: + opus100_sentences = [ + preprocess_sentence(sample[lang_code]) + for sample in load_dataset(*dset_args, split="test")["translation"] + if sample[lang_code].strip() != sample[other_lang_code].strip() + ] + try: + opus100_train_sentences = [ + preprocess_sentence(sample[lang_code]) + for sample in load_dataset(*dset_args, split="train")["translation"] + if sample[lang_code].strip() != sample[other_lang_code].strip() + ] + except ValueError: + opus100_train_sentences = None + except ValueError: + opus100_sentences = [ + preprocess_sentence(sample[lang_code]) + for sample in load_dataset(*dset_args, split="train")["translation"] + if sample[lang_code].strip() != sample[other_lang_code].strip() + ] + opus100_train_sentences = None + + eval_data[lang_code]["sentence"]["opus100"] = { + "meta": {"train_data": opus100_train_sentences if args.include_train_data else None}, + "data": opus100_sentences, + } + + if Constants.LANGINFO.loc[lang_code, "ud"] not in (np.nan, None): + ud_data = conllu.parse( + open( + glob.glob( + os.path.join( + UD_TREEBANK_PATH, + Constants.LANGINFO.loc[lang_code, "ud"], + "*-ud-test.conllu", + ) + )[0] + ).read() + ) + + try: + ud_train_data = conllu.parse( + open( + glob.glob( + os.path.join( + UD_TREEBANK_PATH, + Constants.LANGINFO.loc[lang_code, "ud"], + "*-ud-train.conllu", + ) + )[0] + ).read() + ) + ud_train_sentences = [preprocess_sentence(sentence.metadata["text"]) for sentence in ud_train_data] + except IndexError: + ud_train_sentences = None + + ud_sentences = [preprocess_sentence(sentence.metadata["text"]) for sentence in ud_data] + eval_data[lang_code]["sentence"]["ud"] = { + "meta": {"train_data": ud_train_sentences if args.include_train_data else None}, + "data": ud_sentences, + } + + torch.save(eval_data, args.output_file) diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/data_acquisition/extract_sentences.py b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/data_acquisition/extract_sentences.py new file mode 100644 index 0000000000000000000000000000000000000000..2b94dc57a68bb139aa67ab9abd4757ad5633eff4 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/data_acquisition/extract_sentences.py @@ -0,0 +1,121 @@ +import json +import math +import random +import unicodedata +from dataclasses import dataclass +from pathlib import Path + +import pandas as pd +from datasets import load_dataset +from tqdm.auto import tqdm +from transformers import HfArgumentParser + +from wtpsplit.utils import Constants + +all_chars = [chr(c) for c in range(0x110000)] +punctuation_chars = "".join(c for c in all_chars if "S" in unicodedata.category(c) or "P" in unicodedata.category(c)) + + +@dataclass +class Args: + output_dir: str = "data/sentence" + target_chars: int = 400 * 256 * 512 + valid_ratio = 0.001 + + +if __name__ == "__main__": + (args,) = HfArgumentParser([Args]).parse_args_into_dataclasses() + + output_dir = Path(args.output_dir) + output_dir.mkdir(parents=True, exist_ok=True) + + train_text_path = output_dir / "train.parquet" + valid_text_path = output_dir / "valid.parquet" + metadata_path = output_dir / "metadata.json" + + if not (train_text_path.exists() and valid_text_path.exists()): + languages = [lang for lang, row in Constants.LANGINFO.iterrows()] + + chars_per_language = math.ceil(args.target_chars / len(languages)) + + train_data = { + "text": [], + "ends_with_punctuation": [], + "lang": [], + } + valid_data = { + "text": [], + "ends_with_punctuation": [], + "lang": [], + } + + char_counts = {} + metadata = {} + + for lang_code in tqdm(languages): + dset = load_dataset( + "mc4", + "iw" if lang_code == "he" else lang_code, # patch old lang code + streaming=True, + split="train", + ) + + char_counts[lang_code] = 0 + + bar = tqdm(total=chars_per_language, desc=f"Downloading {lang_code}...") + + ends_with_punctuation_ratio = 0.0 + whitespace_ratio = 0.0 + n_paragraphs = 0 + + for sample in iter(dset): + for paragraph in sample["text"].split("\n"): + stripped_paragraph = paragraph.strip() + paragraph = paragraph + "\n" + + if len(paragraph.strip()) == 0: + continue + + paragraph_ends_with_punctuation = len(stripped_paragraph.rstrip(punctuation_chars)) != len( + stripped_paragraph + ) + paragraph_whitespace_ratio = sum(c.isspace() for c in paragraph) / len(paragraph) + + ends_with_punctuation_ratio += paragraph_ends_with_punctuation + whitespace_ratio += paragraph_whitespace_ratio + n_paragraphs += 1 + + if random.random() < args.valid_ratio: + valid_data["text"].append(paragraph) + valid_data["ends_with_punctuation"].append(paragraph_ends_with_punctuation) + valid_data["lang"].append(lang_code) + else: + train_data["text"].append(paragraph) + train_data["ends_with_punctuation"].append(paragraph_ends_with_punctuation) + train_data["lang"].append(lang_code) + + char_length = len(paragraph) + + char_counts[lang_code] += char_length + bar.update(char_length) + + if char_counts[lang_code] >= chars_per_language: + break + + if char_counts[lang_code] >= chars_per_language: + break + + metadata[lang_code] = { + "ends_with_punctuation_ratio": ends_with_punctuation_ratio / n_paragraphs, + "whitespace_ratio": whitespace_ratio / n_paragraphs, + } + + bar.close() + + json.dump(metadata, open(metadata_path, "w"), indent=4) + + train_df = pd.DataFrame.from_dict(train_data) + valid_df = pd.DataFrame.from_dict(valid_data) + + train_df.to_parquet(train_text_path) + valid_df.to_parquet(valid_text_path) diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/data_acquisition/extract_shared_task_data.py b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/data_acquisition/extract_shared_task_data.py new file mode 100644 index 0000000000000000000000000000000000000000..7998e83534e51a9f4b430fafbdd269a85ab0fa40 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/data_acquisition/extract_shared_task_data.py @@ -0,0 +1,68 @@ +from pathlib import Path + +import torch +from mosestokenizer import MosesTokenizer +from tqdm.auto import tqdm + +from wtpsplit.utils import Constants + + +def process_tsv(file_path, detokenizer): + sentences = [] + current_sentence = [] + + with open(file_path, "r", encoding="utf-8") as file: + for line in file: + parts = line.strip().split("\t") + if len(parts) < 2: + continue + word, boundary = parts[0], parts[1] + current_sentence.append(word) + if boundary == "1": + detokenized_sentence = detokenizer.detokenize(current_sentence) + # detokenized_sentence = ' '.join(current_sentence) + sentences.append(detokenized_sentence) + current_sentence = [] + + return sentences + + +def build_data_dictionary(root_dir): + data_dict = {} + + for lang in tqdm(["fr", "de", "en", "it"]): + detokenizer = MosesTokenizer(lang) + data_dict[lang] = {"sentence": {}} + for dataset in ["test", "surprise_test"]: + data_dict[lang]["sentence"][dataset] = {"meta": {"train_data": []}, "data": []} + + train_data_path = Path(root_dir) / lang / "train" + train_files = sorted([f for f in train_data_path.glob("*.tsv") if f.is_file()]) + all_train_sentences = [] + for file_path in tqdm(train_files, desc=f"{lang} train"): + train_sentences = process_tsv(file_path, detokenizer) + all_train_sentences.append(train_sentences) + + # use train data for both test sets (same training data) + for dataset in ["test", "surprise_test"]: + data_dict[lang]["sentence"][dataset]["meta"]["train_data"] = all_train_sentences + + # test + surprise_test data + for dataset in ["test", "surprise_test"]: + test_data_path = Path(root_dir) / lang / dataset + test_files = sorted([f for f in test_data_path.glob("*.tsv") if f.is_file()]) + all_test_sentences = [] + for file_path in tqdm(test_files, desc=f"{lang} {dataset}"): + test_sentences = process_tsv(file_path, detokenizer) + all_test_sentences.append(test_sentences) + data_dict[lang]["sentence"][dataset]["data"] = all_test_sentences + + return data_dict + + +# this must be downloaded first from the linked drive here +# https://sites.google.com/view/sentence-segmentation +root_dir = Constants.ROOT_DIR.parent / "data/sepp_nlg_2021_data" +data = build_data_dictionary(root_dir) + +torch.save(data, Constants.ROOT_DIR.parent / "data" / "ted2020_join.pth") diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/__init__.py b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..0c3c0d70d11553fb904f307474f2b3f8f4c531cb --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/__init__.py @@ -0,0 +1,432 @@ +import subprocess +import unicodedata +import os +from typing import Literal + +import numpy as np +import regex as re +import torch +from sklearn import linear_model +from sklearn.metrics import f1_score, precision_recall_curve, precision_score, recall_score + +from wtpsplit.extract import extract +from wtpsplit.utils import Constants, indices_to_sentences, lang_code_to_lang, reconstruct_sentences + + +def preprocess_sentence(sentence): + # right-to-left-mark + sentence = sentence.replace(chr(8207), "") + + return re.sub(r"\s+", " ", unicodedata.normalize("NFKC", sentence.lstrip("-").strip())) + + +def get_labels(lang_code, sentences, after_space=True): + separator = Constants.SEPARATORS[lang_code] + text = separator.join(sentences) + + true_end_indices = np.cumsum(np.array([len(s) for s in sentences])) + np.arange(1, len(sentences) + 1) * len( + separator + ) + + if not after_space: + true_end_indices -= len(separator) + 1 + else: + # no space after last + true_end_indices[-1] -= len(separator) + + labels = np.zeros(len(text) + 1) + labels[true_end_indices] = 1 + + return labels + + +def evaluate_sentences( + lang_code, sentences, predicted_sentences, return_indices: bool = False, exclude_every_k: int = 0 +): + separator = Constants.SEPARATORS[lang_code] + + text = separator.join(sentences) + + assert len(text) == len("".join(predicted_sentences)) + + labels = get_labels(lang_code, sentences) + + predicted_end_indices = np.cumsum(np.array([len(s) for s in predicted_sentences])) + predictions = np.zeros_like(labels) + predictions[predicted_end_indices] = 1 + + assert len(labels) == len(predictions) + + # we exclude labels for metrics calculation to enable a fair comparison with LLMs. + if exclude_every_k > 0: + true_end_indices = np.where(labels == 1)[0] + # every k-th from those where labels are 1 + indices_to_remove = true_end_indices[exclude_every_k - 1 :: exclude_every_k] + + # mask for indices to keep + mask = np.ones_like(labels, dtype=bool) + mask[indices_to_remove] = False + mask[-1] = False # last is always excluded + + # remove indices + labels = labels[mask] + predictions = predictions[mask] + + assert len(labels) == len(predictions) + + return f1_score(labels, predictions, zero_division=0), { + "recall": recall_score(labels, predictions, zero_division=0), + "precision": precision_score(labels, predictions, zero_division=0), + # pairwise: ignore end-of-text label + # only correct if we correctly predict the single newline in between the sentence pair + # --> no false positives, no false negatives allowed! + "correct_pairwise": np.all(labels[:-1] == predictions[:-1]), + "true_indices": np.where(labels)[0].tolist() if return_indices else None, + "predicted_indices": np.where(predictions)[0].tolist() if return_indices else None, + "length": len(labels), + } + + +def evaluate_sentences_llm(labels, predictions, return_indices: bool = False, exclude_every_k: int = 0): + assert len(labels) == len(predictions) + + if exclude_every_k > 0: + true_end_indices = np.where(labels == 1)[0] + # every k-th from those where labels are 1 + indices_to_remove = true_end_indices[exclude_every_k - 1 :: exclude_every_k] + + # mask for indices to keep + mask = np.ones_like(labels, dtype=bool) + mask[indices_to_remove] = False + mask[-1] = False # last is always excluded + + # remove indices + labels = labels[mask] + predictions = predictions[mask] + + assert len(labels) == len(predictions) + + return { + "f1": f1_score(labels, predictions, zero_division=0), + "recall": recall_score(labels, predictions, zero_division=0), + "precision": precision_score(labels, predictions, zero_division=0), + # pairwise: ignore end-of-text label + # only correct if we correctly predict the single newline in between the sentence pair + # --> no false positives, no false negatives allowed! + "correct_pairwise": int(np.all(labels[:-1] == predictions[:-1])), + "true_indices": np.where(labels)[0].tolist() if return_indices else None, + "predicted_indices": np.where(predictions)[0].tolist() if return_indices else None, + "length": len(labels), + } + + +def train_mixture(lang_code, original_train_x, train_y, n_subsample=None, features=None, skip_punct: bool = False): + original_train_x = torch.from_numpy(original_train_x).float() + + train_y = train_y[:-1] + + if original_train_x.shape[1] > Constants.AUX_OFFSET and not skip_punct: + if features is not None: + train_x = original_train_x[:, features] + else: + train_x = original_train_x + + train_x = train_x.float() + + clf = linear_model.LogisticRegression(max_iter=10_000, random_state=0) + clf.fit(train_x, train_y) + preds = clf.predict_proba(train_x)[:, 1] + + p, r, t = precision_recall_curve(train_y, preds) + f1 = 2 * p * r / (p + r + 1e-6) + best_threshold_transformed = t[f1.argmax()] + else: + clf = None + best_threshold_transformed = None + + p, r, t = precision_recall_curve(train_y, torch.sigmoid(original_train_x[:, Constants.NEWLINE_INDEX])) + f1 = 2 * p * r / (p + r + 1e-6) + best_threshold_newline = t[f1.argmax()] + print(best_threshold_transformed, best_threshold_newline) + + return clf, features, best_threshold_transformed, best_threshold_newline + + +def evaluate_mixture( + lang_code, + test_x, + true_sentences, + return_indices, + exclude_every_k, + clf, + features, + threshold_transformed, + threshold_newline, +): + test_x = torch.from_numpy(test_x) + text = Constants.SEPARATORS[lang_code].join(true_sentences) + + predicted_indices_newline = np.where( + torch.sigmoid(test_x[..., Constants.NEWLINE_INDEX].float()).numpy() > threshold_newline + )[0] + + if clf is not None: + if features is not None: + test_x = test_x[:, features] + + test_x = test_x.float() + + probs = clf.predict_proba(test_x)[:, 1] + predicted_indices_transformed = np.where(probs > threshold_transformed)[0] + else: + predicted_indices_transformed = None + + score_newline, info_newline = evaluate_sentences( + lang_code, + true_sentences, + reconstruct_sentences(text, indices_to_sentences(text, predicted_indices_newline)), + return_indices, + exclude_every_k, + ) + + indices_newline_info = { + "true_indices": info_newline.pop("true_indices"), + "pred_indices": info_newline.pop("predicted_indices"), + "length": info_newline.pop("length"), + } + + if predicted_indices_transformed is None: + return ( + score_newline, + None, + {"info_newline": info_newline, "info_transformed": None}, + indices_newline_info, + None, + ) + + score_transformed, info_transformed = evaluate_sentences( + lang_code, + true_sentences, + reconstruct_sentences(text, indices_to_sentences(text, predicted_indices_transformed)), + return_indices, + exclude_every_k, + ) + indices_transformed_info = { + "true_indices": info_transformed.pop("true_indices"), + "pred_indices": info_transformed.pop("predicted_indices"), + "length": info_transformed.pop("length"), + } + + return ( + score_newline, + score_transformed, + { + "info_newline": info_newline, + "info_transformed": info_transformed, + }, + indices_newline_info, + indices_transformed_info, + ) + + +def our_sentencize( + sentence_model, + lang_code, + text, + clf, + features, + threshold_transformed, + threshold_newline, + newline_only=False, + block_size=512, + stride=64, + batch_size=32, + weighting: Literal["uniform", "hat"] = "uniform", +): + logits = extract( + [text], + sentence_model, + lang_code=lang_code, + stride=stride, + max_block_size=block_size, + batch_size=batch_size, + pad_last_batch=False, + weighting=weighting, + use_hidden_states=False, + verbose=False, + )[0] + + predicted_indices_newline = np.where( + torch.sigmoid(logits[..., Constants.NEWLINE_INDEX].float()).numpy() > threshold_newline + )[0] + + if features is not None: + x = logits[:, features] + else: + x = logits + + x = x.float() + + probs = clf.predict_proba(x)[:, 1] + predicted_indices_transformed = np.where(probs > threshold_transformed)[0] + + if newline_only: + return reconstruct_sentences(text, indices_to_sentences(text, predicted_indices_newline)) + else: + return reconstruct_sentences(text, indices_to_sentences(text, predicted_indices_transformed)) + + +########### +# BASELINES +########### + +ERSATZ_LANGUAGES = { + "ar", + "cs", + "de", + "en", + "es", + "et", + "fi", + "fr", + "gu", + "hi", + "iu", + "ja", + "kk", + "km", + "lt", + "lv", + "pl", + "ps", + "ro", + "ru", + "ta", + "tr", + "zh", +} + + +class LanguageError(ValueError): + pass + + +def ersatz_sentencize( + lang_code, + text, + infile="notebooks/data/tmp/in.tmp", + outfile="notebooks/data/tmp/out.tmp", +): + if lang_code not in ERSATZ_LANGUAGES: + raise LanguageError(f"ersatz does not support {lang_code}") + + # check if infile parent dir exists, if not, create it + if not os.path.exists(os.path.dirname(infile)): + os.makedirs(os.path.dirname(infile)) + # check if outfile parent dir exists, if not, create it + if not os.path.exists(os.path.dirname(outfile)): + os.makedirs(os.path.dirname(outfile)) + + open(infile, "w").write(text) + + subprocess.check_output( + f"cat {infile} | ersatz --quiet -m default-multilingual > {outfile}", + shell=True, + ) + + return reconstruct_sentences(text, open(outfile).readlines()) + + +def pysbd_sentencize(lang_code, text): + import pysbd + + try: + return reconstruct_sentences(text, pysbd.Segmenter(language=lang_code, clean=False).segment(text)) + except ValueError: + raise LanguageError(f"pysbd does not support {lang_code}") + + +SPACY_LANG_TO_DP_MODEL = { + "ca": "ca_core_news_sm", + "zh": "zh_core_web_sm", + "hr": "hr_core_news_sm", + "da": "da_core_news_sm", + "nl": "nl_core_news_sm", + "en": "en_core_web_sm", + "fi": "fi_core_news_sm", + "fr": "fr_core_news_sm", + "de": "de_core_news_sm", + "el": "el_core_news_sm", + "it": "it_core_news_sm", + "ja": "ja_core_news_sm", + "ko": "ko_core_news_sm", + "lt": "lt_core_news_sm", + "mk": "mk_core_news_sm", + "nb": "nb_core_news_sm", + "pl": "pl_core_news_sm", + "pt": "pt_core_news_sm", + "ro": "ro_core_news_sm", + "ru": "ru_core_news_sm", + "es": "es_core_news_sm", + "sv": "sv_core_news_sm", + "uk": "uk_core_news_sm", + "xx": "xx_sent_ud_sm", +} + + +def spacy_sent_sentencize(lang_code, text): + import spacy + + try: + nlp = spacy.blank(lang_code) + nlp.add_pipe("sentencizer") + nlp.max_length = 1_000_000_000 + + if lang_code == "ja": + # spacy uses SudachiPy for japanese, which has a length limit: + # https://github.com/WorksApplications/sudachi.rs/blob/c7d20b22c68bb3f6585351847ae91bc9c7a61ec5/sudachi/src/input_text/buffer/mod.rs#L124-L126 + # so we need to chunk the input and sentencize the chunks separately + chunksize = 10_000 + chunks = [] + for i in range(0, len(text), chunksize): + chunks.append(text[i : i + chunksize]) + + assert sum(len(c) for c in chunks) == len(text) + return reconstruct_sentences(text, [str(s) for c in chunks for s in nlp(c).sents]) + + return reconstruct_sentences(text, list([str(s) for s in nlp(text).sents])) + except ImportError: + raise LanguageError(f"spacy_sent does not support {lang_code}") + + +def spacy_dp_sentencize(lang_code, text): + import spacy + + try: + nlp = spacy.load(SPACY_LANG_TO_DP_MODEL[lang_code], disable=["ner"]) + nlp.max_length = 1_000_000_000 + + if lang_code == "ja": + # spacy uses SudachiPy for japanese, which has a length limit: + # https://github.com/WorksApplications/sudachi.rs/blob/c7d20b22c68bb3f6585351847ae91bc9c7a61ec5/sudachi/src/input_text/buffer/mod.rs#L124-L126 + # so we need to chunk the input and sentencize the chunks separately + chunksize = 10_000 + chunks = [] + for i in range(0, len(text), chunksize): + chunks.append(text[i : i + chunksize]) + + assert sum(len(c) for c in chunks) == len(text) + return reconstruct_sentences(text, [str(s) for c in chunks for s in nlp(c).sents]) + + return reconstruct_sentences(text, list([str(s) for s in nlp(text).sents])) + except KeyError: + raise LanguageError(f"spacy_dp does not support {lang_code}") + + +def punkt_sentencize(lang_code, text): + from nltk.tokenize import sent_tokenize + + try: + return reconstruct_sentences(text, sent_tokenize(text, language=lang_code_to_lang(lang_code).lower())) + except LookupError: + raise LanguageError(f"punkt does not support {lang_code}") diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/adapt.py b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/adapt.py new file mode 100644 index 0000000000000000000000000000000000000000..52e6852bbeee91025b8262bb6b90546bc8b989e8 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/adapt.py @@ -0,0 +1,614 @@ +import copy +import json +import logging +import os +import sys +import time +from dataclasses import dataclass +from typing import List, Union + +import h5py +import numpy as np +import skops.io as sio +import torch +from datasets import load_dataset +from tqdm.auto import tqdm +from transformers import AutoModelForTokenClassification, HfArgumentParser + +import adapters +import wtpsplit.models # noqa: F401 +from wtpsplit.evaluation import evaluate_mixture, get_labels, train_mixture +from wtpsplit.evaluation.intrinsic_baselines import split_language_data +from wtpsplit.extract import PyTorchWrapper, extract +from wtpsplit.models import SubwordXLMConfig, SubwordXLMForTokenClassification +from wtpsplit.utils import Constants, token_to_char_probs + +logger = logging.getLogger() +logger.setLevel(logging.WARNING) + + +@dataclass +class Args: + model_path: str + adapter_path: str = None + # eval data in the format: + # { + # "": { + # "sentence": { + # "": { + # "meta": { + # "train_data": ["train sentence 1", "train sentence 2"] + # }, + # "data": ["test sentence 1", "test sentence 2"] + # } + # } + # } + # } + eval_data_path: str = "data/all_data.pth" + valid_text_path: str = None # "data/sentence/valid.parquet" + device: str = "cpu" + block_size: int = 512 + stride: int = 64 + batch_size: int = 32 + include_langs: List[str] = None + custom_language_list: str = None + threshold: float = 0.01 + max_n_train_sentences: int = 10000 + max_n_test_sentences: int = -1 # -1 is all + keep_logits: bool = False + skip_adaptation: bool = False + skip_punct: bool = True + skip_corrupted: bool = False + clf_from_scratch: bool = False # for FT + LoRA + return_indices: bool = True + exclude_every_k: int = 10 + save_suffix: str = "" + num_hidden_layers: Union[int, None] = None # for original XLM-R + + +def process_logits(text, model, lang_code, args): + # Extract necessary data + if isinstance(text, list): + logits = [] + for short_seq in tqdm(text, desc="Listwise", disable=False): + current_logits, current_offsets_mapping, tokenizer, _ = extract( + [short_seq], + model, + lang_code=lang_code, + stride=args.stride, + max_block_size=args.block_size, + batch_size=args.batch_size, + pad_last_batch=True, + verbose=False, + ) + current_logits = current_logits[0] + if current_offsets_mapping is not None: + current_offsets_mapping = current_offsets_mapping[0] + + if "xlm" in model.config.model_type: + tokens = tokenizer.tokenize(short_seq, verbose=False) + + char_probs = token_to_char_probs( + short_seq, + tokens, + current_logits, + [tokenizer.cls_token, tokenizer.sep_token, tokenizer.pad_token], + current_offsets_mapping, + ) + + current_logits = char_probs + + logits.append(current_logits) + else: + logits, offsets_mapping, tokenizer, _ = extract( + [text], + model, + lang_code=lang_code, + stride=args.stride, + max_block_size=args.block_size, + batch_size=args.batch_size, + pad_last_batch=True, + verbose=False, + ) + logits = logits[0] + if offsets_mapping is not None: + offsets_mapping = offsets_mapping[0] + + if "xlm" in model.config.model_type: + tokens = tokenizer.tokenize(text, verbose=False) + + special_tokens = [tokenizer.cls_token, tokenizer.sep_token, tokenizer.pad_token] + + # convert token probabilities to character probabilities for the entire array + char_probs = token_to_char_probs(text, tokens, logits, special_tokens, offsets_mapping) + + logits = char_probs + + return logits + + +def load_or_compute_logits(args, model, eval_data, valid_data=None, save_str: str = None): + logits_path = Constants.CACHE_DIR / "intrinsic" / f"{save_str}.h5" + + if not os.path.exists(Constants.CACHE_DIR / "intrinsic"): + os.makedirs(Constants.CACHE_DIR / "intrinsic") + + if args.custom_language_list is not None: + with open(args.custom_language_list, "r") as f: + # file is a csv: l1,l2,... + use_langs = f.read().strip().split(",") + else: + use_langs = eval_data.keys() + + total_test_time = 0 + + with h5py.File(logits_path, "a") as f, torch.no_grad(): + for lang_code in tqdm(use_langs, desc="Languages"): + if args.include_langs is not None and lang_code not in args.include_langs: + continue + + if lang_code not in f: + lang_group = f.create_group(lang_code) + else: + lang_group = f[lang_code] + + # valid data + if valid_data is not None and "valid" not in lang_group: + if args.adapter_path: + raise NotImplementedError("Adapters not supported for valid data") + valid_sentences = [sample["text"].strip() for sample in valid_data if sample["lang"] == lang_code] + assert len(valid_sentences) > 0 + + separator = Constants.SEPARATORS.get(lang_code, " ") + valid_text = separator.join(valid_sentences) + + valid_logits = process_logits(valid_text, model, lang_code, args) + + lang_group.create_dataset("valid", data=valid_logits) + + # eval data + for dataset_name, dataset in tqdm(eval_data[lang_code]["sentence"].items(), desc=lang_code): + if args.skip_corrupted and "corrupted" in dataset_name: + continue + if "asr" in dataset_name and not any( + x in dataset_name for x in ["lyrics", "short", "code", "ted2020", "legal"] + ): + logger.warning(f"SKIP: {lang_code} {dataset_name}") + continue + if "legal" in dataset_name and not ("laws" in dataset_name or "judgements" in dataset_name): + logger.warning(f"SKIP: {lang_code} {dataset_name}") + continue + if "social-media" in dataset_name: + logger.warning(f"SKIP: {lang_code} {dataset_name}") + continue + if "nllb" in dataset_name: + continue + if "-" in lang_code and "canine" in args.model_path and "no-adapters" not in args.model_path: + # code-switched data: eval 2x + lang_code = lang_code.split("_")[1].lower() + try: + if args.adapter_path: + if args.clf_from_scratch: + model.model.classifier = torch.nn.Linear(model.model.classifier.in_features, 1) + + dataset_load_name = dataset_name + model.model.load_adapter( + args.adapter_path + "/" + dataset_load_name + "/" + lang_code, + set_active=True, + with_head=True, + load_as="text", + ) + except Exception as e: + logger.error(f"Error loading adapter for {dataset_name} in {lang_code}: {e}") + continue + if dataset_name not in lang_group: + dset_group = lang_group.create_group(dataset_name) + else: + dset_group = lang_group[dataset_name] + + if "test_logits" not in dset_group: + test_sentences = dataset["data"] + if not test_sentences: + continue + max_n_sentences = args.max_n_test_sentences + test_sentences = test_sentences[:max_n_sentences] + if isinstance(test_sentences[0], list): + # short-seq eval: list of lists + test_text = [ + Constants.SEPARATORS.get(lang_code, " ").join(sentence) for sentence in test_sentences + ] + else: + test_text = Constants.SEPARATORS.get(lang_code, " ").join(test_sentences) + + start_time = time.time() + test_logits = process_logits(test_text, model, lang_code, args) + end_time = time.time() + total_test_time += end_time - start_time + if isinstance(test_sentences[0], list): + test_logit_lengths = [] + # store start and end indices for each pair, used later to slice the logits + # (h5py does not like different length np arrays as list elements) + all_logit_lengths = np.append(0, np.cumsum([len(logits) for logits in test_logits])) + # append tuple of start and end indices for each pair + for i in range(len(test_logits)): + test_logit_lengths.append((all_logit_lengths[i], all_logit_lengths[i + 1] - 1)) + test_logits = np.concatenate(test_logits) + # NOTE: handled differently than in intrinsic_pairwise.py + # here, we keep the label at the end + # in intrinsic_pairwise.py, we only consider non-ending labels. + test_labels = [ + get_labels(lang_code, short_seq, after_space=False)[:-1] for short_seq in test_sentences + ] + + # flatten; append 0 eos to account for later indexing/slicing + test_labels = np.append(np.concatenate(test_labels), 1) + assert len(test_labels) == len(test_logits) + 1 + dset_group.create_dataset("test_logit_lengths", data=test_logit_lengths) + else: + test_labels = get_labels(lang_code, test_sentences, after_space=False) + if args.skip_punct: + # remove punct logits + test_logits = test_logits[:, 0] + # back to [N, 1] + test_logits = np.expand_dims(test_logits, axis=1) + dset_group.create_dataset("test_logits", data=test_logits) + dset_group.create_dataset("test_labels", data=test_labels) + + train_sentences = dataset["meta"].get("train_data") + if train_sentences is not None and "train_logits" not in dset_group and not args.skip_adaptation: + train_sentences = train_sentences[: args.max_n_train_sentences] + if isinstance(train_sentences[0], list): + # short-seq eval: list of lists + train_text = [ + Constants.SEPARATORS.get(lang_code, " ").join(sentence) for sentence in train_sentences + ] + else: + train_text = Constants.SEPARATORS.get(lang_code, " ").join(train_sentences) + + train_logits = process_logits(train_text, model, lang_code, args) + if isinstance(train_sentences[0], list): + train_logits = np.concatenate(train_logits) + train_labels = [ + get_labels(lang_code, short_seq, after_space=False)[:-1] for short_seq in train_sentences + ] + + # flatten; append 0 eos to account for later indexing/slicing + train_labels = np.append(np.concatenate(train_labels), 1) + assert len(train_labels) == len(train_logits) + 1 + else: + train_labels = get_labels(lang_code, train_sentences, after_space=False) + + if args.skip_punct: + # remove punct logits + train_logits = train_logits[:, 0] + # back to [N, 1] + train_logits = np.expand_dims(train_logits, axis=1) + dset_group.create_dataset("train_logits", data=train_logits) + dset_group.create_dataset("train_labels", data=train_labels) + + end_time = time.time() + return h5py.File(logits_path, "r"), total_test_time / 60 # to minutes + + +def compute_statistics(values): + if not values: # Check for empty values list + return {"mean": None, "median": None, "std": None, "min": None, "min_lang": None, "max": None, "max_lang": None} + + scores, langs = zip(*values) + min_index = np.argmin(scores) + max_index = np.argmax(scores) + return { + "mean": np.mean(scores), + "median": np.median(scores), + "std": np.std(scores), + "min": scores[min_index], + "min_lang": langs[min_index], + "max": scores[max_index], + "max_lang": langs[max_index], + } + + +def main(args): + save_model_path = args.model_path + if args.adapter_path: + save_model_path = args.adapter_path + save_str = f"{save_model_path.replace('/','_')}_b{args.block_size}_s{args.stride}" + + eval_data = torch.load(args.eval_data_path) + if "canine" in args.model_path and "no-adapters" not in args.model_path: + eval_data = split_language_data(eval_data) + if args.valid_text_path is not None: + valid_data = load_dataset("parquet", data_files=args.valid_text_path, split="train") + else: + valid_data = None + + logger.warning("Loading model...") + model_path = args.model_path + if args.model_path == "xlm-roberta-base" or args.model_path == "xlm-roberta-large": + # init models here + config = SubwordXLMConfig.from_pretrained( + args.model_path, + num_hidden_layers=args.num_hidden_layers, + num_labels=1, + ) + model = PyTorchWrapper( + SubwordXLMForTokenClassification.from_pretrained(model_path, config=config).to(args.device) + ) + else: + model = PyTorchWrapper(AutoModelForTokenClassification.from_pretrained(model_path).to(args.device)) + if args.adapter_path: + model_type = model.model.config.model_type + # adapters need xlm-roberta as model type. + model.model.config.model_type = "xlm-roberta" + adapters.init(model.model) + # reset model type (used later) + model.model.config.model_type = model_type + + save_str += f"{args.save_suffix}" + if args.max_n_test_sentences < sys.maxsize and args.max_n_test_sentences != -1: + save_str += f"_n{args.max_n_test_sentences}" + if args.max_n_test_sentences == -1: + args.max_n_test_sentences = sys.maxsize + + # first, logits for everything. + f, total_test_time = load_or_compute_logits(args, model, eval_data, valid_data, save_str) + + save_str += f"_u{args.threshold}" + if args.exclude_every_k > 0 or "lyrics" in args.eval_data_path: + save_str += f"_k{args.exclude_every_k}" + + # now, compute the intrinsic scores. + results = {} + clfs = {} + if args.return_indices: + indices = {} + + u_scores, t_scores, punct_scores = [], [], [] + + for lang_code, dsets in tqdm(eval_data.items()): + if args.include_langs is not None and lang_code not in args.include_langs: + continue + + logger.warning(f"Predicting {lang_code}...") + results[lang_code] = {} + clfs[lang_code] = {} + if args.return_indices: + indices[lang_code] = {} + + for dataset_name, dataset in dsets["sentence"].items(): + sentences = dataset["data"] + if not sentences: + continue + max_n_sentences = args.max_n_test_sentences + sentences = sentences[:max_n_sentences] + if len(sentences) == 0: + continue + if lang_code not in f or dataset_name not in f[lang_code]: + continue + + # to be in line w/ LLM eval; for fair comparison + if "lyrics" in dataset_name or "short" in dataset_name: + exclude_every_k = 0 + else: + exclude_every_k = args.exclude_every_k + + if "train_logits" in f[lang_code][dataset_name] and not args.skip_adaptation: + feature_indices = None + clf = train_mixture( + [lang_code], + f[lang_code][dataset_name]["train_logits"][:], + f[lang_code][dataset_name]["train_labels"][:], + features=feature_indices, + skip_punct=args.skip_punct, + ) + if clf[0] is not None: + logger.warning(clf) + + if isinstance(sentences[0], list): + acc_t, acc_punct = [], [] + score_t, score_punct = [], [] + t_indices, punct_indices = [], [] + for i, short_seq in enumerate(sentences): + start, end = f[lang_code][dataset_name]["test_logit_lengths"][i] + single_score_t, single_score_punct, info, cur_t_indices, cur_punct_indices = evaluate_mixture( + lang_code, + f[lang_code][dataset_name]["test_logits"][:][start:end], + list(short_seq), + args.return_indices, + exclude_every_k, + *clf, + ) + score_t.append(single_score_t) + score_punct.append(single_score_punct) + acc_t.append(info["info_newline"]["correct_pairwise"] if info["info_newline"] else None) + acc_punct.append( + info["info_transformed"]["correct_pairwise"] if info["info_transformed"] else None + ) + # indices: accumulate from start + t_indices.append( + cur_t_indices["pred_indices"] if cur_t_indices and cur_t_indices["pred_indices"] else [] + ) + punct_indices.append( + cur_punct_indices["pred_indices"] + if cur_punct_indices and cur_punct_indices["pred_indices"] + else [] + ) + + else: + score_t, score_punct, _, t_indices, punct_indices = evaluate_mixture( + lang_code, + f[lang_code][dataset_name]["test_logits"][:], + sentences, + args.return_indices, + exclude_every_k, + *clf, + ) + + clfs[lang_code][dataset_name] = clf + + clf = list(copy.deepcopy(clf)) + clf[-1] = args.threshold + else: + score_t = score_punct = None + clf = [None, None, None, args.threshold] + t_indices, punct_indices = None, None + + if isinstance(sentences[0], list): + acc_u = [] + score_u = [] + u_indices, true_indices = [], [] + length = [] + for i, short_seq in enumerate(sentences): + start, end = f[lang_code][dataset_name]["test_logit_lengths"][i] + single_score_u, _, info, cur_u_indices, _ = evaluate_mixture( + lang_code, + f[lang_code][dataset_name]["test_logits"][:][start:end], + list(short_seq), + args.return_indices, + exclude_every_k, + *clf, + ) + score_u.append(single_score_u) + acc_u.append(info["info_newline"]["correct_pairwise"]) + # indices: accumulate from start + u_indices.append(cur_u_indices["pred_indices"] if cur_u_indices["pred_indices"] else []) + true_indices.append(cur_u_indices["true_indices"] if cur_u_indices["true_indices"] else []) + length.append(cur_u_indices["length"]) + + else: + score_u, _, _, u_indices, _ = evaluate_mixture( + lang_code, + f[lang_code][dataset_name]["test_logits"][:], + sentences, + args.return_indices, + exclude_every_k, + *clf, + ) + + if isinstance(sentences[0], list): + score_u = np.mean(score_u) + score_t = np.mean(score_t) if score_t and not args.skip_adaptation else None + score_punct = ( + np.mean(score_punct) if score_punct and not (args.skip_punct or args.skip_adaptation) else None + ) + acc_u = np.mean(acc_u) + acc_t = np.mean(acc_t) if score_t else None + acc_punct = np.mean(acc_punct) if score_punct else None + + results[lang_code][dataset_name] = { + "u": score_u, + "t": score_t, + "punct": score_punct, + "acc_u": acc_u, + "acc_t": acc_t, + "acc_punct": acc_punct, + } + else: + results[lang_code][dataset_name] = { + "u": score_u, + "t": score_t, + "punct": score_punct, + } + + if args.return_indices: + if isinstance(sentences[0], list): + indices[lang_code][dataset_name] = { + "u": {"predicted_indices": u_indices, "true_indices": true_indices, "length": length}, + "t": {"predicted_indices": t_indices, "true_indices": t_indices, "length": length} + if t_indices + else None, + "punct": {"predicted_indices": punct_indices, "true_indices": t_indices, "length": length} + if punct_indices + else None, + } + else: + indices[lang_code][dataset_name] = { + "u": { + "predicted_indices": [u_indices["pred_indices"]], + "true_indices": [u_indices["true_indices"]], + "length": [u_indices["length"]], + }, + "t": { + "predicted_indices": [t_indices["pred_indices"]], + "true_indices": [t_indices["true_indices"]], + "length": [t_indices["length"]], + } + if t_indices is not None + else None, + "punct": { + "predicted_indices": [punct_indices["pred_indices"]], + "true_indices": [punct_indices["true_indices"]], + "length": [punct_indices["length"]], + } + if punct_indices is not None + else None, + } + + if score_u is not None: + u_scores.append((score_u, lang_code)) + if score_t is not None: + t_scores.append((score_t, lang_code)) + if score_punct is not None: + punct_scores.append((score_punct, lang_code)) + + # just for logging + score_t = score_t or 0.0 + score_punct = score_punct or 0.0 + logger.warning(f"{lang_code} {dataset_name} {score_u:.3f} {score_t:.3f} {score_punct:.3f}") + + # Compute statistics for each metric across all languages + results_avg = { + "u": compute_statistics(u_scores), + "t": compute_statistics(t_scores), + "punct": compute_statistics(punct_scores), + "include_langs": args.include_langs, + } + + if not args.skip_adaptation: + sio.dump( + clfs, + open( + Constants.CACHE_DIR / "intrinsic" / f"{save_str}.skops", + "wb", + ), + ) + json.dump( + results, + open( + Constants.CACHE_DIR / "intrinsic" / f"{save_str}.json", + "w", + ), + indent=4, + ) + print(Constants.CACHE_DIR / "intrinsic" / f"{save_str}.json") + + json.dump( + results_avg, + open( + Constants.CACHE_DIR / "intrinsic" / f"{save_str}_AVG.json", + "w", + ), + indent=4, + ) + if args.return_indices: + json.dump( + indices, + open( + Constants.CACHE_DIR / "intrinsic" / f"{save_str}_IDX.json", + "w", + ), + default=int, + indent=4, + ) + print(Constants.CACHE_DIR / "intrinsic" / f"{save_str}_IDX.json") + print("Indices saved to file.") + + if not args.keep_logits: + os.remove(f.filename) + return results, results_avg, total_test_time + + +if __name__ == "__main__": + (args,) = HfArgumentParser([Args]).parse_args_into_dataclasses() + results, results_avg, total_test_time = main(args) + print(total_test_time) diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluate_sepp_nlg_subtask1.py b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluate_sepp_nlg_subtask1.py new file mode 100644 index 0000000000000000000000000000000000000000..aa7fec514bed5295cb2b3302b7ea0da1ff3cfa25 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluate_sepp_nlg_subtask1.py @@ -0,0 +1,110 @@ +import json +import os +import sys + +from sklearn.metrics import classification_report + +from wtpsplit.utils import Constants + + +def evaluate_subtask1(splits, langs, prediction_dir: str, supervisions, include_n_documents) -> None: + """ + Mirrors the original SEPP-NLG 2021 Shared Task evaluation function + https://sites.google.com/view/sentence-segmentation + """ + + results = {} + avg_holder = {} + for supervision in supervisions: + avg_holder[supervision] = 0 + for lang_code in langs: + results[lang_code] = {} + for split in splits: + results[lang_code][split] = {} + for supervision in supervisions: + print(lang_code, split, supervision) + relevant_dir = Constants.ROOT_DIR.parent / "data/sepp_nlg_2021_data" / lang_code / split + + all_gt_labels, all_predicted_labels = [], [] + fnames = sorted([f for f in relevant_dir.glob("*.tsv") if f.is_file()])[:include_n_documents] + gt_tsv_files = [ + fname + for fname in fnames + if str(fname).startswith(str(relevant_dir)) and str(fname).endswith(".tsv") + ] + + for _, gt_tsv_file in enumerate(gt_tsv_files, 0): + basename = os.path.basename(gt_tsv_file) + + with open(gt_tsv_file, encoding="utf-8") as f: + lines = f.read().strip().split("\n") + rows = [line.split("\t") for line in lines] + gt_labels = [row[1] for row in rows] + + with open( + os.path.join( + Constants.CACHE_DIR, "ted2020", prediction_dir, lang_code, split, supervision, basename + ), + "r", + encoding="utf8", + ) as f: + lines = f.read().strip().split("\n") + rows = [line.split("\t") for line in lines] + pred_labels = [row[1] for row in rows] + + assert ( + len(gt_labels) == len(pred_labels) + ), f"unequal no. of labels for files {gt_tsv_file} and {os.path.join(prediction_dir, lang_code, split, basename)}" + all_gt_labels.extend(gt_labels) + all_predicted_labels.extend(pred_labels) + + eval_result = classification_report(all_gt_labels, all_predicted_labels, output_dict=True) + print(eval_result["1"]["f1-score"]) + avg_holder[supervision] += eval_result["1"]["f1-score"] + results[lang_code][split][supervision] = eval_result + results["avg"] = {} + for supervision in supervisions: + avg_holder[supervision] /= len(langs) + results["avg"][supervision] = avg_holder[supervision] + print(avg_holder) + json.dump( + results, + open( + Constants.CACHE_DIR / "ted2020" / f"{prediction_dir}_TED.json", + "w", + ), + indent=4, + ) + print(Constants.CACHE_DIR / "ted2020" / f"{prediction_dir}_TED.json") + return results + + +if __name__ == "__main__": + import argparse + + parser = argparse.ArgumentParser(description="Evaluate subtask 1 of SEPP-NLG 2021") + parser.add_argument( + "--include_languages", + help="target language ('en', 'de', 'fr', 'it'; i.e. one of the subfolders in the zip file's main folder)", + default=["fr", "de", "en", "it"], + nargs="+", + ) + parser.add_argument( + "--splits", + help="split to be evaluated (usually 'dev', 'test'), subfolder of 'lang'", + default=["test", "surprise_test"], + nargs="+", + ) + parser.add_argument( + "--prediction_dir", + help="path to folder containing the prediction TSVs (language and test set folder names are appended automatically)", + ) + parser.add_argument( + "--supervision", + help="u, t, punct", + default=["u", "t", "punct"], + nargs="+", + ) + parser.add_argument("--include_n_documents", default=sys.maxsize) + args = parser.parse_args() + results = evaluate_subtask1(args.splits, args.include_languages, args.prediction_dir, args.supervision) diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/lyrics/command-r.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/lyrics/command-r.json new file mode 100644 index 0000000000000000000000000000000000000000..51f31d9bd872fc5766c70ca6e30c3c02eb03a4d4 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/lyrics/command-r.json @@ -0,0 +1,516 @@ +{ + "en": { + "lyrics-Alternative Metal": { + "command-r": { + "f1": 0.39108228890715657, + "f1_success": 0.39108228890715657, + "recall": 0.8530871279258373, + "recall_success": 0.8530871279258373, + "precision": 0.2949629576169459, + "precision_success": 0.2949629576169459, + "correct_pairwise": 0.0064516129032258064, + "correct_pairwise_success": 0.0064516129032258064, + "hallucination_rate": 0.008394542755942659, + "hallucination_rate_success": 0.008394542755942659, + "deletion_rate": 0.016175208298022603, + "deletion_rate_success": 0.016175208298022603 + } + }, + "lyrics-Alternative Metal-corrupted-asr": { + "command-r": { + "f1": 0.40683570267451397, + "f1_success": 0.40683570267451397, + "recall": 0.7091291146129853, + "recall_success": 0.7091291146129853, + "precision": 0.32991162613103553, + "precision_success": 0.32991162613103553, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.01109613323567453, + "hallucination_rate_success": 0.01109613323567453, + "deletion_rate": 0.01954567660708773, + "deletion_rate_success": 0.01954567660708773 + } + }, + "lyrics-Alternative Rock": { + "command-r": { + "f1": 0.40005201984804456, + "f1_success": 0.4009889098242695, + "recall": 0.9147786755460958, + "recall_success": 0.916921014364705, + "precision": 0.2776246515735878, + "precision_success": 0.278274826401629, + "correct_pairwise": 0.002336448598130841, + "correct_pairwise_success": 0.00234192037470726, + "hallucination_rate": 0.008369091521378874, + "hallucination_rate_success": 0.008388691267330581, + "deletion_rate": 0.017137624322079156, + "deletion_rate_success": 0.01717775927365311 + } + }, + "lyrics-Alternative Rock-corrupted-asr": { + "command-r": { + "f1": 0.4129162657085903, + "f1_success": 0.4138832827243013, + "recall": 0.71593191641295, + "recall_success": 0.7176085719549006, + "precision": 0.33890799110718084, + "precision_success": 0.33970168663670586, + "correct_pairwise": 0.0011682242990654205, + "correct_pairwise_success": 0.00117096018735363, + "hallucination_rate": 0.00923662319674093, + "hallucination_rate_success": 0.009258254632798873, + "deletion_rate": 0.01324190471518413, + "deletion_rate_success": 0.013272916201636552 + } + }, + "lyrics-Country": { + "command-r": { + "f1": 0.3531230271416377, + "f1_success": 0.3531230271416377, + "recall": 0.9503922628395204, + "recall_success": 0.9503922628395204, + "precision": 0.22847797893361751, + "precision_success": 0.22847797893361751, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.010842849204092878, + "hallucination_rate_success": 0.010842849204092878, + "deletion_rate": 0.015702687130417035, + "deletion_rate_success": 0.015702687130417035 + } + }, + "lyrics-Country-corrupted-asr": { + "command-r": { + "f1": 0.38752964785239086, + "f1_success": 0.38752964785239086, + "recall": 0.7919593299340129, + "recall_success": 0.7919593299340129, + "precision": 0.2860314996278578, + "precision_success": 0.2860314996278578, + "correct_pairwise": 0.0014064697609001407, + "correct_pairwise_success": 0.0014064697609001407, + "hallucination_rate": 0.008035179107681265, + "hallucination_rate_success": 0.008035179107681265, + "deletion_rate": 0.013719309949454136, + "deletion_rate_success": 0.013719309949454136 + } + }, + "lyrics-Gangsta Rap": { + "command-r": { + "f1": 0.05604007401572994, + "f1_success": 0.29888039475055966, + "recall": 0.1474587912087912, + "recall_success": 0.7864468864468864, + "precision": 0.04026254960665955, + "precision_success": 0.21473359790218427, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.0003470127504118168, + "hallucination_rate_success": 0.0018507346688630228, + "deletion_rate": 0.0028687781285254657, + "deletion_rate_success": 0.015300150018802484 + } + }, + "lyrics-Gangsta Rap-corrupted-asr": { + "command-r": { + "f1": 0.04932870844952844, + "f1_success": 0.2630864450641517, + "recall": 0.11516426282051281, + "recall_success": 0.6142094017094016, + "precision": 0.037212934888357405, + "precision_success": 0.1984689860712395, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.002050427453072793, + "hallucination_rate_success": 0.010935613083054895, + "deletion_rate": 0.000517436224892638, + "deletion_rate_success": 0.002759659866094069 + } + }, + "lyrics-Hard Rock": { + "command-r": { + "f1": 0.3835102446722949, + "f1_success": 0.38440420794658925, + "recall": 0.90881861716335, + "recall_success": 0.9109370754784161, + "precision": 0.26677842614232955, + "precision_success": 0.26740028727552845, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.013697568310825959, + "hallucination_rate_success": 0.013729497374487558, + "deletion_rate": 0.0190498841146695, + "deletion_rate_success": 0.01909428943894612 + } + }, + "lyrics-Hard Rock-corrupted-asr": { + "command-r": { + "f1": 0.40611559047850454, + "f1_success": 0.40611559047850454, + "recall": 0.7348368890571362, + "recall_success": 0.7348368890571362, + "precision": 0.3224581568901358, + "precision_success": 0.3224581568901358, + "correct_pairwise": 0.004651162790697674, + "correct_pairwise_success": 0.004651162790697674, + "hallucination_rate": 0.010006474639291855, + "hallucination_rate_success": 0.010006474639291855, + "deletion_rate": 0.01855517725433367, + "deletion_rate_success": 0.01855517725433367 + } + }, + "lyrics-Heavy Metal": { + "command-r": { + "f1": 0.416362753313865, + "f1_success": 0.416362753313865, + "recall": 0.878844863832609, + "recall_success": 0.878844863832609, + "precision": 0.3026287840947823, + "precision_success": 0.3026287840947823, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.007995910564636322, + "hallucination_rate_success": 0.007995910564636322, + "deletion_rate": 0.010270308218400628, + "deletion_rate_success": 0.010270308218400628 + } + }, + "lyrics-Heavy Metal-corrupted-asr": { + "command-r": { + "f1": 0.415708291665135, + "f1_success": 0.415708291665135, + "recall": 0.6712422410217599, + "recall_success": 0.6712422410217599, + "precision": 0.36980453103438193, + "precision_success": 0.36980453103438193, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.010900114355622612, + "hallucination_rate_success": 0.010900114355622612, + "deletion_rate": 0.007891628235724913, + "deletion_rate_success": 0.007891628235724913 + } + }, + "lyrics-Hip Hop": { + "command-r": { + "f1": 0.10968004964730087, + "f1_success": 0.27092984740858495, + "recall": 0.33397582419755406, + "recall_success": 0.8249815657357012, + "precision": 0.08778925086270498, + "precision_success": 0.21685555775030563, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.0013587332960124628, + "hallucination_rate_success": 0.0033563205500124365, + "deletion_rate": 0.0045344496047933095, + "deletion_rate_success": 0.011200922532941271 + } + }, + "lyrics-Hip Hop-corrupted-asr": { + "command-r": { + "f1": 0.11987232000823395, + "f1_success": 0.29678733022728265, + "recall": 0.22827062828481046, + "recall_success": 0.5651665900292894, + "precision": 0.11751045260644351, + "precision_success": 0.2909396723152636, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.002158664804529414, + "hallucination_rate_success": 0.0053445563091452375, + "deletion_rate": 0.0024605765335609813, + "deletion_rate_success": 0.006092048107230292 + } + }, + "lyrics-Indie Rock": { + "command-r": { + "f1": 0.40222723970787355, + "f1_success": 0.40222723970787355, + "recall": 0.9076812474267177, + "recall_success": 0.9076812474267177, + "precision": 0.2800711641794083, + "precision_success": 0.2800711641794083, + "correct_pairwise": 0.003278688524590164, + "correct_pairwise_success": 0.003278688524590164, + "hallucination_rate": 0.014263582712727816, + "hallucination_rate_success": 0.014263582712727816, + "deletion_rate": 0.012600876387321151, + "deletion_rate_success": 0.012600876387321151 + } + }, + "lyrics-Indie Rock-corrupted-asr": { + "command-r": { + "f1": 0.42637491093105734, + "f1_success": 0.42637491093105734, + "recall": 0.7204121982896788, + "recall_success": 0.7204121982896788, + "precision": 0.34796122593193723, + "precision_success": 0.34796122593193723, + "correct_pairwise": 0.009836065573770493, + "correct_pairwise_success": 0.009836065573770493, + "hallucination_rate": 0.012134281567991222, + "hallucination_rate_success": 0.012134281567991222, + "deletion_rate": 0.009995056426197925, + "deletion_rate_success": 0.009995056426197925 + } + }, + "lyrics-Pop": { + "command-r": { + "f1": 0.3628709307081095, + "f1_success": 0.3632786508549725, + "recall": 0.8910603366261599, + "recall_success": 0.8920615280156275, + "precision": 0.25211994742192295, + "precision_success": 0.25240322826172285, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.008428188841258434, + "hallucination_rate_success": 0.008437658716360973, + "deletion_rate": 0.01834220117719613, + "deletion_rate_success": 0.01836281039200197 + } + }, + "lyrics-Pop Punk": { + "command-r": { + "f1": 0.39162452937238523, + "f1_success": 0.39162452937238523, + "recall": 0.8784277975767336, + "recall_success": 0.8784277975767336, + "precision": 0.2989313718689513, + "precision_success": 0.2989313718689513, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.007517486332679925, + "hallucination_rate_success": 0.007517486332679925, + "deletion_rate": 0.037630119988919394, + "deletion_rate_success": 0.037630119988919394 + } + }, + "lyrics-Pop Punk-corrupted-asr": { + "command-r": { + "f1": 0.4135220009719154, + "f1_success": 0.4135220009719154, + "recall": 0.7502154268111709, + "recall_success": 0.7502154268111709, + "precision": 0.3427047510212102, + "precision_success": 0.3427047510212102, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.005989172651917396, + "hallucination_rate_success": 0.005989172651917396, + "deletion_rate": 0.011941700084311457, + "deletion_rate_success": 0.011941700084311457 + } + }, + "lyrics-Pop Rock": { + "command-r": { + "f1": 0.37647709437083543, + "f1_success": 0.37647709437083543, + "recall": 0.9218385147045088, + "recall_success": 0.9218385147045088, + "precision": 0.2589703328988178, + "precision_success": 0.2589703328988178, + "correct_pairwise": 0.0048543689320388345, + "correct_pairwise_success": 0.0048543689320388345, + "hallucination_rate": 0.00794438728287772, + "hallucination_rate_success": 0.00794438728287772, + "deletion_rate": 0.011296908905556478, + "deletion_rate_success": 0.011296908905556478 + } + }, + "lyrics-Pop Rock-corrupted-asr": { + "command-r": { + "f1": 0.39493822891441094, + "f1_success": 0.39493822891441094, + "recall": 0.7308018844835401, + "recall_success": 0.7308018844835401, + "precision": 0.3119690331581676, + "precision_success": 0.3119690331581676, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.008067986168624317, + "hallucination_rate_success": 0.008067986168624317, + "deletion_rate": 0.011494572498533608, + "deletion_rate_success": 0.011494572498533608 + } + }, + "lyrics-Pop-corrupted-asr": { + "command-r": { + "f1": 0.37478474184894167, + "f1_success": 0.37520584830045733, + "recall": 0.6931107694259073, + "recall_success": 0.6938895455713296, + "precision": 0.3036395301662735, + "precision_success": 0.30398069817769624, + "correct_pairwise": 0.001122334455667789, + "correct_pairwise_success": 0.0011235955056179776, + "hallucination_rate": 0.007150958127739269, + "hallucination_rate_success": 0.007158992912152458, + "deletion_rate": 0.013049755200660715, + "deletion_rate_success": 0.013064417846953592 + } + }, + "lyrics-Punk Rock": { + "command-r": { + "f1": 0.3944256642088234, + "f1_success": 0.3965125724850606, + "recall": 0.9022595538547958, + "recall_success": 0.9070334139281016, + "precision": 0.2733678353127308, + "precision_success": 0.2748142259757611, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.017012658749047872, + "hallucination_rate_success": 0.017102672816503153, + "deletion_rate": 0.017243037281368067, + "deletion_rate_success": 0.017334270282856785 + } + }, + "lyrics-Punk Rock-corrupted-asr": { + "command-r": { + "f1": 0.42357032921491566, + "f1_success": 0.42581144206790467, + "recall": 0.7332573711028166, + "recall_success": 0.7371370397329903, + "precision": 0.34183618385498754, + "precision_success": 0.34364484091242137, + "correct_pairwise": 0.010526315789473684, + "correct_pairwise_success": 0.010582010582010581, + "hallucination_rate": 0.005537139328227569, + "hallucination_rate_success": 0.005566436361710255, + "deletion_rate": 0.02043813957990098, + "deletion_rate_success": 0.020546277884556537 + } + }, + "lyrics-RnB": { + "command-r": { + "f1": 0.3156687968882929, + "f1_success": 0.33314527007241984, + "recall": 0.7976443830635622, + "recall_success": 0.8418046257245206, + "precision": 0.2317169087557601, + "precision_success": 0.24454552654154613, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.006911420436159492, + "hallucination_rate_success": 0.007294059629856903, + "deletion_rate": 0.014782545960279937, + "deletion_rate_success": 0.015600956809291975 + } + }, + "lyrics-RnB-corrupted-asr": { + "command-r": { + "f1": 0.32170534958079605, + "f1_success": 0.33951602637419653, + "recall": 0.5770075341784361, + "recall_success": 0.608952587973782, + "precision": 0.2834511189537723, + "precision_success": 0.2991439144667839, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.007593762871887184, + "hallucination_rate_success": 0.008014178809431111, + "deletion_rate": 0.012988527967619882, + "deletion_rate_success": 0.013707616021190533 + } + }, + "lyrics-Rock": { + "command-r": { + "f1": 0.3783112376485677, + "f1_success": 0.3783112376485677, + "recall": 0.9209847802258546, + "recall_success": 0.9209847802258546, + "precision": 0.2573163390683118, + "precision_success": 0.2573163390683118, + "correct_pairwise": 0.0008460236886632825, + "correct_pairwise_success": 0.0008460236886632825, + "hallucination_rate": 0.009821806369111494, + "hallucination_rate_success": 0.009821806369111494, + "deletion_rate": 0.012442012671942535, + "deletion_rate_success": 0.012442012671942535 + } + }, + "lyrics-Rock-corrupted-asr": { + "command-r": { + "f1": 0.4114434756196615, + "f1_success": 0.4114434756196615, + "recall": 0.7651769579502323, + "recall_success": 0.7651769579502323, + "precision": 0.3176075126956109, + "precision_success": 0.3176075126956109, + "correct_pairwise": 0.001692047377326565, + "correct_pairwise_success": 0.001692047377326565, + "hallucination_rate": 0.009348457175397592, + "hallucination_rate_success": 0.009348457175397592, + "deletion_rate": 0.013443023328574897, + "deletion_rate_success": 0.013443023328574897 + } + }, + "lyrics-Soul": { + "command-r": { + "f1": 0.3613940709961107, + "f1_success": 0.36470961293185483, + "recall": 0.9137844174932548, + "recall_success": 0.9221677607730094, + "precision": 0.23818106886443347, + "precision_success": 0.2403662162852081, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.009933250948224833, + "hallucination_rate_success": 0.010024381690869097, + "deletion_rate": 0.028068895382401288, + "deletion_rate_success": 0.028326408184074694 + } + }, + "lyrics-Soul-corrupted-asr": { + "command-r": { + "f1": 0.3965933441454215, + "f1_success": 0.40023181519262724, + "recall": 0.7126969841929028, + "recall_success": 0.7192354886350396, + "precision": 0.31038819707748405, + "precision_success": 0.3132357952158096, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.009340354178423533, + "hallucination_rate_success": 0.009426045501161365, + "deletion_rate": 0.01334059645370459, + "deletion_rate_success": 0.013462987246857842 + } + }, + "lyrics-Southern Hip Hop": { + "command-r": { + "f1": 0.056791205150023776, + "f1_success": 0.2747109458419755, + "recall": 0.18040946531472551, + "recall_success": 0.8726783438479746, + "precision": 0.04423429867188851, + "precision_success": 0.2139705610175072, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.0004954591512172795, + "hallucination_rate_success": 0.0023966396151905616, + "deletion_rate": 0.001021735668875933, + "deletion_rate_success": 0.004942349282004512 + } + }, + "lyrics-Southern Hip Hop-corrupted-asr": { + "command-r": { + "f1": 0.07395210324307092, + "f1_success": 0.34959176078542614, + "recall": 0.13404413349973307, + "recall_success": 0.6336631765441928, + "precision": 0.06946070292305538, + "precision_success": 0.32835968654535275, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.00038200052081470984, + "hallucination_rate_success": 0.0018058206438513558, + "deletion_rate": 0.0015034277064492388, + "deletion_rate_success": 0.0071071127941236744 + } + } + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/lyrics/llama-3.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/lyrics/llama-3.json new file mode 100644 index 0000000000000000000000000000000000000000..b6a3de4a43dd1052ee137b10a318b235a934b005 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/lyrics/llama-3.json @@ -0,0 +1,516 @@ +{ + "en": { + "lyrics-Alternative Metal": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.47571215989814275, + "f1_success": 0.47571215989814275, + "recall": 0.8120123066897259, + "recall_success": 0.8120123066897259, + "precision": 0.4428542106670182, + "precision_success": 0.4428542106670182, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.0028618859176862475, + "hallucination_rate_success": 0.0028618859176862475, + "deletion_rate": 0.004320942548054267, + "deletion_rate_success": 0.004320942548054267 + } + }, + "lyrics-Alternative Metal-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5232335423354388, + "f1_success": 0.5232335423354388, + "recall": 0.5962992921057435, + "recall_success": 0.5962992921057435, + "precision": 0.5938863772846535, + "precision_success": 0.5938863772846535, + "correct_pairwise": 0.025806451612903226, + "correct_pairwise_success": 0.025806451612903226, + "hallucination_rate": 0.002817763188822882, + "hallucination_rate_success": 0.002817763188822882, + "deletion_rate": 0.007514711290043217, + "deletion_rate_success": 0.007514711290043217 + } + }, + "lyrics-Alternative Rock": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.4927912082835997, + "f1_success": 0.4927912082835997, + "recall": 0.8650785519532082, + "recall_success": 0.8650785519532082, + "precision": 0.4368440390032589, + "precision_success": 0.4368440390032589, + "correct_pairwise": 0.01985981308411215, + "correct_pairwise_success": 0.01985981308411215, + "hallucination_rate": 0.0031471912540192155, + "hallucination_rate_success": 0.0031471912540192155, + "deletion_rate": 0.007142651676932983, + "deletion_rate_success": 0.007142651676932983 + } + }, + "lyrics-Alternative Rock-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5407653146280289, + "f1_success": 0.5407653146280289, + "recall": 0.6421414011436002, + "recall_success": 0.6421414011436002, + "precision": 0.6030560546580574, + "precision_success": 0.6030560546580574, + "correct_pairwise": 0.012850467289719626, + "correct_pairwise_success": 0.012850467289719626, + "hallucination_rate": 0.005968895538800839, + "hallucination_rate_success": 0.005968895538800839, + "deletion_rate": 0.012948717437108426, + "deletion_rate_success": 0.012948717437108426 + } + }, + "lyrics-Country": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.46990725530633265, + "f1_success": 0.46990725530633265, + "recall": 0.8950296421815411, + "recall_success": 0.8950296421815411, + "precision": 0.3846907482224643, + "precision_success": 0.3846907482224643, + "correct_pairwise": 0.03938115330520394, + "correct_pairwise_success": 0.03938115330520394, + "hallucination_rate": 0.0038347409729824543, + "hallucination_rate_success": 0.0038347409729824543, + "deletion_rate": 0.004177017770087422, + "deletion_rate_success": 0.004177017770087422 + } + }, + "lyrics-Country-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5461575882937414, + "f1_success": 0.5461575882937414, + "recall": 0.6908638556317879, + "recall_success": 0.6908638556317879, + "precision": 0.5518917528540344, + "precision_success": 0.5518917528540344, + "correct_pairwise": 0.02390998593530239, + "correct_pairwise_success": 0.02390998593530239, + "hallucination_rate": 0.005769656112096943, + "hallucination_rate_success": 0.005769656112096943, + "deletion_rate": 0.006843178640639219, + "deletion_rate_success": 0.006843178640639219 + } + }, + "lyrics-Gangsta Rap": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.3280520114572881, + "f1_success": 0.3280520114572881, + "recall": 0.7226021374458873, + "recall_success": 0.7226021374458873, + "precision": 0.3010132164573576, + "precision_success": 0.3010132164573576, + "correct_pairwise": 0.015625, + "correct_pairwise_success": 0.015625, + "hallucination_rate": 0.002672397716042446, + "hallucination_rate_success": 0.002672397716042446, + "deletion_rate": 0.020529351582990605, + "deletion_rate_success": 0.020529351582990605 + } + }, + "lyrics-Gangsta Rap-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.36163431551826364, + "f1_success": 0.36163431551826364, + "recall": 0.49132965558746794, + "recall_success": 0.49132965558746794, + "precision": 0.3923645110723202, + "precision_success": 0.3923645110723202, + "correct_pairwise": 0.015625, + "correct_pairwise_success": 0.015625, + "hallucination_rate": 0.0005653571996204706, + "hallucination_rate_success": 0.0005653571996204706, + "deletion_rate": 0.033429576473969276, + "deletion_rate_success": 0.033429576473969276 + } + }, + "lyrics-Hard Rock": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.4873554112780847, + "f1_success": 0.4873554112780847, + "recall": 0.8568046685796338, + "recall_success": 0.8568046685796338, + "precision": 0.4175304224728504, + "precision_success": 0.4175304224728504, + "correct_pairwise": 0.013953488372093023, + "correct_pairwise_success": 0.013953488372093023, + "hallucination_rate": 0.004263309423223886, + "hallucination_rate_success": 0.004263309423223886, + "deletion_rate": 0.005194537236623749, + "deletion_rate_success": 0.005194537236623749 + } + }, + "lyrics-Hard Rock-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5218410057954037, + "f1_success": 0.5218410057954037, + "recall": 0.6338722692416265, + "recall_success": 0.6338722692416265, + "precision": 0.574149862807808, + "precision_success": 0.574149862807808, + "correct_pairwise": 0.0069767441860465115, + "correct_pairwise_success": 0.0069767441860465115, + "hallucination_rate": 0.005252136328205107, + "hallucination_rate_success": 0.005252136328205107, + "deletion_rate": 0.009611467898911217, + "deletion_rate_success": 0.009611467898911217 + } + }, + "lyrics-Heavy Metal": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.4713740817195306, + "f1_success": 0.4713740817195306, + "recall": 0.8276989441205126, + "recall_success": 0.8276989441205126, + "precision": 0.41988739484271953, + "precision_success": 0.41988739484271953, + "correct_pairwise": 0.027777777777777776, + "correct_pairwise_success": 0.027777777777777776, + "hallucination_rate": 0.004125768761574286, + "hallucination_rate_success": 0.004125768761574286, + "deletion_rate": 0.004090632121435744, + "deletion_rate_success": 0.004090632121435744 + } + }, + "lyrics-Heavy Metal-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.4920087151834146, + "f1_success": 0.4920087151834146, + "recall": 0.601009798579028, + "recall_success": 0.601009798579028, + "precision": 0.5523882992192902, + "precision_success": 0.5523882992192902, + "correct_pairwise": 0.009259259259259259, + "correct_pairwise_success": 0.009259259259259259, + "hallucination_rate": 0.003629584208979596, + "hallucination_rate_success": 0.003629584208979596, + "deletion_rate": 0.005104671063477011, + "deletion_rate_success": 0.005104671063477011 + } + }, + "lyrics-Hip Hop": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.35661311390596717, + "f1_success": 0.35661311390596717, + "recall": 0.6972772552568671, + "recall_success": 0.6972772552568671, + "precision": 0.33490122048504134, + "precision_success": 0.33490122048504134, + "correct_pairwise": 0.008356545961002786, + "correct_pairwise_success": 0.008356545961002786, + "hallucination_rate": 0.0016279138100711865, + "hallucination_rate_success": 0.0016279138100711865, + "deletion_rate": 0.01972996251149363, + "deletion_rate_success": 0.01972996251149363 + } + }, + "lyrics-Hip Hop-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.3811124446129976, + "f1_success": 0.3811124446129976, + "recall": 0.45429892135369676, + "recall_success": 0.45429892135369676, + "precision": 0.445708414433919, + "precision_success": 0.445708414433919, + "correct_pairwise": 0.002785515320334262, + "correct_pairwise_success": 0.002785515320334262, + "hallucination_rate": 0.004314719579215101, + "hallucination_rate_success": 0.004314719579215101, + "deletion_rate": 0.031030264629988456, + "deletion_rate_success": 0.031030264629988456 + } + }, + "lyrics-Indie Rock": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.48355534701288366, + "f1_success": 0.48355534701288366, + "recall": 0.8618755671516678, + "recall_success": 0.8618755671516678, + "precision": 0.42070837579064496, + "precision_success": 0.42070837579064496, + "correct_pairwise": 0.009836065573770493, + "correct_pairwise_success": 0.009836065573770493, + "hallucination_rate": 0.002408457329505608, + "hallucination_rate_success": 0.002408457329505608, + "deletion_rate": 0.003792629718803859, + "deletion_rate_success": 0.003792629718803859 + } + }, + "lyrics-Indie Rock-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.539864799612169, + "f1_success": 0.539864799612169, + "recall": 0.6704107966618751, + "recall_success": 0.6704107966618751, + "precision": 0.5768639594241539, + "precision_success": 0.5768639594241539, + "correct_pairwise": 0.013114754098360656, + "correct_pairwise_success": 0.013114754098360656, + "hallucination_rate": 0.006402296622954274, + "hallucination_rate_success": 0.006402296622954274, + "deletion_rate": 0.009230011525746217, + "deletion_rate_success": 0.009230011525746217 + } + }, + "lyrics-Pop": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.469954728584912, + "f1_success": 0.469954728584912, + "recall": 0.8163465843002439, + "recall_success": 0.8163465843002439, + "precision": 0.43992955608031453, + "precision_success": 0.43992955608031453, + "correct_pairwise": 0.02132435465768799, + "correct_pairwise_success": 0.02132435465768799, + "hallucination_rate": 0.0038892259327546613, + "hallucination_rate_success": 0.0038892259327546613, + "deletion_rate": 0.005039723008703935, + "deletion_rate_success": 0.005039723008703935 + } + }, + "lyrics-Pop Punk": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.4946987234481033, + "f1_success": 0.4946987234481033, + "recall": 0.8208832341811065, + "recall_success": 0.8208832341811065, + "precision": 0.4593284825077087, + "precision_success": 0.4593284825077087, + "correct_pairwise": 0.0070921985815602835, + "correct_pairwise_success": 0.0070921985815602835, + "hallucination_rate": 0.004645805843607475, + "hallucination_rate_success": 0.004645805843607475, + "deletion_rate": 0.0044133656695961474, + "deletion_rate_success": 0.0044133656695961474 + } + }, + "lyrics-Pop Punk-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5705073967936827, + "f1_success": 0.5705073967936827, + "recall": 0.6146541992286672, + "recall_success": 0.6146541992286672, + "precision": 0.6563566038743089, + "precision_success": 0.6563566038743089, + "correct_pairwise": 0.0070921985815602835, + "correct_pairwise_success": 0.0070921985815602835, + "hallucination_rate": 0.006023352744393245, + "hallucination_rate_success": 0.006023352744393245, + "deletion_rate": 0.008012511651428128, + "deletion_rate_success": 0.008012511651428128 + } + }, + "lyrics-Pop Rock": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.4711883947176374, + "f1_success": 0.4711883947176374, + "recall": 0.8527220675055368, + "recall_success": 0.8527220675055368, + "precision": 0.4179975141379932, + "precision_success": 0.4179975141379932, + "correct_pairwise": 0.019417475728155338, + "correct_pairwise_success": 0.019417475728155338, + "hallucination_rate": 0.003299162753881552, + "hallucination_rate_success": 0.003299162753881552, + "deletion_rate": 0.005054984111733084, + "deletion_rate_success": 0.005054984111733084 + } + }, + "lyrics-Pop Rock-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5277145690521913, + "f1_success": 0.5277145690521913, + "recall": 0.6445151133570916, + "recall_success": 0.6445151133570916, + "precision": 0.5705202364093735, + "precision_success": 0.5705202364093735, + "correct_pairwise": 0.01699029126213592, + "correct_pairwise_success": 0.01699029126213592, + "hallucination_rate": 0.0046537848672379084, + "hallucination_rate_success": 0.0046537848672379084, + "deletion_rate": 0.008868443110152885, + "deletion_rate_success": 0.008868443110152885 + } + }, + "lyrics-Pop-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5169027427161252, + "f1_success": 0.5169027427161252, + "recall": 0.6245401945762101, + "recall_success": 0.6245401945762101, + "precision": 0.5827947482607292, + "precision_success": 0.5827947482607292, + "correct_pairwise": 0.01122334455667789, + "correct_pairwise_success": 0.01122334455667789, + "hallucination_rate": 0.006421711010705094, + "hallucination_rate_success": 0.006421711010705094, + "deletion_rate": 0.009229849466959296, + "deletion_rate_success": 0.009229849466959296 + } + }, + "lyrics-Punk Rock": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5018948749058487, + "f1_success": 0.5018948749058487, + "recall": 0.8389908565625527, + "recall_success": 0.8389908565625527, + "precision": 0.4466888137337874, + "precision_success": 0.4466888137337874, + "correct_pairwise": 0.015789473684210527, + "correct_pairwise_success": 0.015789473684210527, + "hallucination_rate": 0.0032100253821084747, + "hallucination_rate_success": 0.0032100253821084747, + "deletion_rate": 0.0052815679982145675, + "deletion_rate_success": 0.0052815679982145675 + } + }, + "lyrics-Punk Rock-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5348527914122733, + "f1_success": 0.5348527914122733, + "recall": 0.688915080357153, + "recall_success": 0.688915080357153, + "precision": 0.5553741132105721, + "precision_success": 0.5553741132105721, + "correct_pairwise": 0.021052631578947368, + "correct_pairwise_success": 0.021052631578947368, + "hallucination_rate": 0.00463885935636689, + "hallucination_rate_success": 0.00463885935636689, + "deletion_rate": 0.006733275639224856, + "deletion_rate_success": 0.006733275639224856 + } + }, + "lyrics-RnB": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.4569610063918978, + "f1_success": 0.4569610063918978, + "recall": 0.725223477839801, + "recall_success": 0.725223477839801, + "precision": 0.46136623472987565, + "precision_success": 0.46136623472987565, + "correct_pairwise": 0.017486338797814208, + "correct_pairwise_success": 0.017486338797814208, + "hallucination_rate": 0.003071638709458078, + "hallucination_rate_success": 0.003071638709458078, + "deletion_rate": 0.011804183130616298, + "deletion_rate_success": 0.011804183130616298 + } + }, + "lyrics-RnB-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.4735712247816916, + "f1_success": 0.4735712247816916, + "recall": 0.525471205809609, + "recall_success": 0.525471205809609, + "precision": 0.5689081467996766, + "precision_success": 0.5689081467996766, + "correct_pairwise": 0.006557377049180328, + "correct_pairwise_success": 0.006557377049180328, + "hallucination_rate": 0.004552839880019815, + "hallucination_rate_success": 0.004552839880019815, + "deletion_rate": 0.013471080225304303, + "deletion_rate_success": 0.013471080225304303 + } + }, + "lyrics-Rock": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.48225109961929474, + "f1_success": 0.48225109961929474, + "recall": 0.8518827864646923, + "recall_success": 0.8518827864646923, + "precision": 0.42013912240143403, + "precision_success": 0.42013912240143403, + "correct_pairwise": 0.02284263959390863, + "correct_pairwise_success": 0.02284263959390863, + "hallucination_rate": 0.003711453963284602, + "hallucination_rate_success": 0.003711453963284602, + "deletion_rate": 0.006557807247720643, + "deletion_rate_success": 0.006557807247720643 + } + }, + "lyrics-Rock-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5377580890388446, + "f1_success": 0.5377580890388446, + "recall": 0.6684055473491832, + "recall_success": 0.6684055473491832, + "precision": 0.5686608084479471, + "precision_success": 0.5686608084479471, + "correct_pairwise": 0.023688663282571912, + "correct_pairwise_success": 0.023688663282571912, + "hallucination_rate": 0.004436346851859637, + "hallucination_rate_success": 0.004436346851859637, + "deletion_rate": 0.007239958332443037, + "deletion_rate_success": 0.007239958332443037 + } + }, + "lyrics-Soul": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.4869711724510954, + "f1_success": 0.4869711724510954, + "recall": 0.813061300350211, + "recall_success": 0.813061300350211, + "precision": 0.4468388221570048, + "precision_success": 0.4468388221570048, + "correct_pairwise": 0.01818181818181818, + "correct_pairwise_success": 0.01818181818181818, + "hallucination_rate": 0.001864791148739862, + "hallucination_rate_success": 0.001864791148739862, + "deletion_rate": 0.006594616753692189, + "deletion_rate_success": 0.006594616753692189 + } + }, + "lyrics-Soul-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5194884554678562, + "f1_success": 0.5194884554678562, + "recall": 0.6125367149346883, + "recall_success": 0.6125367149346883, + "precision": 0.5870334031004198, + "precision_success": 0.5870334031004198, + "correct_pairwise": 0.00909090909090909, + "correct_pairwise_success": 0.00909090909090909, + "hallucination_rate": 0.001632130662386947, + "hallucination_rate_success": 0.001632130662386947, + "deletion_rate": 0.013857480261042563, + "deletion_rate_success": 0.013857480261042563 + } + }, + "lyrics-Southern Hip Hop": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.34744561438565164, + "f1_success": 0.34744561438565164, + "recall": 0.7384071522577631, + "recall_success": 0.7384071522577631, + "precision": 0.3224396620726566, + "precision_success": 0.3224396620726566, + "correct_pairwise": 0.004807692307692308, + "correct_pairwise_success": 0.004807692307692308, + "hallucination_rate": 0.0015509072107167997, + "hallucination_rate_success": 0.0015509072107167997, + "deletion_rate": 0.012350043088450526, + "deletion_rate_success": 0.012350043088450526 + } + }, + "lyrics-Southern Hip Hop-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.3664443742407662, + "f1_success": 0.3664443742407662, + "recall": 0.4828060928186684, + "recall_success": 0.4828060928186684, + "precision": 0.38539508300173686, + "precision_success": 0.38539508300173686, + "correct_pairwise": 0.004807692307692308, + "correct_pairwise_success": 0.004807692307692308, + "hallucination_rate": 0.006252788235703268, + "hallucination_rate_success": 0.006252788235703268, + "deletion_rate": 0.02770300046784307, + "deletion_rate_success": 0.02770300046784307 + } + } + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/lyrics/sat-12l_lora.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/lyrics/sat-12l_lora.json new file mode 100644 index 0000000000000000000000000000000000000000..e9a57501bb778ec0d03b57a172da8d3d59a6e72c --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/lyrics/sat-12l_lora.json @@ -0,0 +1,260 @@ +{ + "en": { + "lyrics-Alternative Metal": { + "u": 0.5988529118481084, + "t": 0.7772459544663071, + "punct": null, + "acc_u": 0.0064516129032258064, + "acc_t": 0.14838709677419354, + "acc_punct": null + }, + "lyrics-Alternative Metal-corrupted-asr": { + "u": 0.5486571786193001, + "t": 0.7349506584250233, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0967741935483871, + "acc_punct": null + }, + "lyrics-Alternative Rock": { + "u": 0.6370400170638606, + "t": 0.7735102733517133, + "punct": null, + "acc_u": 0.014018691588785047, + "acc_t": 0.09345794392523364, + "acc_punct": null + }, + "lyrics-Alternative Rock-corrupted-asr": { + "u": 0.5548626360376492, + "t": 0.7333972874730412, + "punct": null, + "acc_u": 0.005841121495327103, + "acc_t": 0.0794392523364486, + "acc_punct": null + }, + "lyrics-Country": { + "u": 0.6352728791084664, + "t": 0.7928827148624048, + "punct": null, + "acc_u": 0.02531645569620253, + "acc_t": 0.15752461322081576, + "acc_punct": null + }, + "lyrics-Country-corrupted-asr": { + "u": 0.5412005229729456, + "t": 0.7522220141892892, + "punct": null, + "acc_u": 0.005625879043600563, + "acc_t": 0.11392405063291139, + "acc_punct": null + }, + "lyrics-Gangsta Rap": { + "u": 0.24517162571428588, + "t": 0.6031791667064016, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.03125, + "acc_punct": null + }, + "lyrics-Gangsta Rap-corrupted-asr": { + "u": 0.19788509772240295, + "t": 0.5577505804860177, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.03125, + "acc_punct": null + }, + "lyrics-Hard Rock": { + "u": 0.6301211669322279, + "t": 0.7662994718475816, + "punct": null, + "acc_u": 0.009302325581395349, + "acc_t": 0.10930232558139535, + "acc_punct": null + }, + "lyrics-Hard Rock-corrupted-asr": { + "u": 0.565394846646696, + "t": 0.7270093914026863, + "punct": null, + "acc_u": 0.0069767441860465115, + "acc_t": 0.09302325581395349, + "acc_punct": null + }, + "lyrics-Heavy Metal": { + "u": 0.600450085100658, + "t": 0.74409163450037, + "punct": null, + "acc_u": 0.004629629629629629, + "acc_t": 0.08333333333333333, + "acc_punct": null + }, + "lyrics-Heavy Metal-corrupted-asr": { + "u": 0.4970570397441726, + "t": 0.6683753953284727, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.032407407407407406, + "acc_punct": null + }, + "lyrics-Hip Hop": { + "u": 0.37095484396920125, + "t": 0.6827412067772639, + "punct": null, + "acc_u": 0.0018570102135561746, + "acc_t": 0.06313834726090993, + "acc_punct": null + }, + "lyrics-Hip Hop-corrupted-asr": { + "u": 0.26247178793141246, + "t": 0.6056653182848258, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.03899721448467967, + "acc_punct": null + }, + "lyrics-Indie Rock": { + "u": 0.607318723696591, + "t": 0.7349178666628272, + "punct": null, + "acc_u": 0.013114754098360656, + "acc_t": 0.09508196721311475, + "acc_punct": null + }, + "lyrics-Indie Rock-corrupted-asr": { + "u": 0.5544638106964047, + "t": 0.6954792272516411, + "punct": null, + "acc_u": 0.006557377049180328, + "acc_t": 0.07540983606557378, + "acc_punct": null + }, + "lyrics-Pop": { + "u": 0.5813306371368652, + "t": 0.7555640045315639, + "punct": null, + "acc_u": 0.012345679012345678, + "acc_t": 0.08866442199775533, + "acc_punct": null + }, + "lyrics-Pop-corrupted-asr": { + "u": 0.49061846093358435, + "t": 0.7147957673968632, + "punct": null, + "acc_u": 0.003367003367003367, + "acc_t": 0.05948372615039282, + "acc_punct": null + }, + "lyrics-Pop Punk": { + "u": 0.6030235326969494, + "t": 0.7760070113663831, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.09929078014184398, + "acc_punct": null + }, + "lyrics-Pop Punk-corrupted-asr": { + "u": 0.5245639212743416, + "t": 0.7466991988016122, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0851063829787234, + "acc_punct": null + }, + "lyrics-Pop Rock": { + "u": 0.5926334432877418, + "t": 0.7561421949966286, + "punct": null, + "acc_u": 0.014563106796116505, + "acc_t": 0.11893203883495146, + "acc_punct": null + }, + "lyrics-Pop Rock-corrupted-asr": { + "u": 0.5199419183616502, + "t": 0.7037973335847227, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.06067961165048544, + "acc_punct": null + }, + "lyrics-Punk Rock": { + "u": 0.600067960919291, + "t": 0.7684081146710896, + "punct": null, + "acc_u": 0.010526315789473684, + "acc_t": 0.11052631578947368, + "acc_punct": null + }, + "lyrics-Punk Rock-corrupted-asr": { + "u": 0.536402959528165, + "t": 0.7136647761297278, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.07368421052631578, + "acc_punct": null + }, + "lyrics-RnB": { + "u": 0.508732040003862, + "t": 0.7343546012008627, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.07759562841530054, + "acc_punct": null + }, + "lyrics-RnB-corrupted-asr": { + "u": 0.39654186128002367, + "t": 0.6713411539645355, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.04590163934426229, + "acc_punct": null + }, + "lyrics-Rock": { + "u": 0.6481394255810446, + "t": 0.7813869628874406, + "punct": null, + "acc_u": 0.04568527918781726, + "acc_t": 0.16328257191201354, + "acc_punct": null + }, + "lyrics-Rock-corrupted-asr": { + "u": 0.5493670726793072, + "t": 0.7323609420583056, + "punct": null, + "acc_u": 0.007614213197969543, + "acc_t": 0.09898477157360407, + "acc_punct": null + }, + "lyrics-Soul": { + "u": 0.5257539251951444, + "t": 0.71683589498408, + "punct": null, + "acc_u": 0.00909090909090909, + "acc_t": 0.08181818181818182, + "acc_punct": null + }, + "lyrics-Soul-corrupted-asr": { + "u": 0.46672651458781883, + "t": 0.6513294702248005, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.045454545454545456, + "acc_punct": null + }, + "lyrics-Southern Hip Hop": { + "u": 0.3475980237788523, + "t": 0.6420557071070611, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.07211538461538461, + "acc_punct": null + }, + "lyrics-Southern Hip Hop-corrupted-asr": { + "u": 0.26017585875413984, + "t": 0.5476628532576611, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.04807692307692308, + "acc_punct": null + } + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/lyrics/sat-12l_lora_no_pretraining.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/lyrics/sat-12l_lora_no_pretraining.json new file mode 100644 index 0000000000000000000000000000000000000000..e49a69cb287459722898f32066f5b0f6abe29a31 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/lyrics/sat-12l_lora_no_pretraining.json @@ -0,0 +1,260 @@ +{ + "en": { + "lyrics-Alternative Metal": { + "u": 0.3960842625632832, + "t": 0.5381896409580537, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0064516129032258064, + "acc_punct": null + }, + "lyrics-Alternative Metal-corrupted-asr": { + "u": 0.3458751486533141, + "t": 0.6680087836125759, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.025806451612903226, + "acc_punct": null + }, + "lyrics-Alternative Rock": { + "u": 0.5407133050564393, + "t": 0.7628176697765947, + "punct": null, + "acc_u": 0.004672897196261682, + "acc_t": 0.09929906542056074, + "acc_punct": null + }, + "lyrics-Alternative Rock-corrupted-asr": { + "u": 0.48874041131161833, + "t": 0.7260814165800046, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0630841121495327, + "acc_punct": null + }, + "lyrics-Country": { + "u": 0.5666374805802891, + "t": 0.7813881629140269, + "punct": null, + "acc_u": 0.009845288326300985, + "acc_t": 0.12517580872011252, + "acc_punct": null + }, + "lyrics-Country-corrupted-asr": { + "u": 0.44802613246216405, + "t": 0.7351764349732218, + "punct": null, + "acc_u": 0.0014064697609001407, + "acc_t": 0.0829817158931083, + "acc_punct": null + }, + "lyrics-Gangsta Rap": { + "u": 0.13743976850275103, + "t": 0.2839144388081268, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Gangsta Rap-corrupted-asr": { + "u": 0.06424855667794993, + "t": 0.10368987852305275, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Hard Rock": { + "u": 0.5079361745153413, + "t": 0.74605268888876, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.06744186046511629, + "acc_punct": null + }, + "lyrics-Hard Rock-corrupted-asr": { + "u": 0.4425205607053814, + "t": 0.6900879122249913, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.046511627906976744, + "acc_punct": null + }, + "lyrics-Heavy Metal": { + "u": 0.4377812792626794, + "t": 0.6704171749528207, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.018518518518518517, + "acc_punct": null + }, + "lyrics-Heavy Metal-corrupted-asr": { + "u": 0.36481910215365543, + "t": 0.6411368995592276, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.023148148148148147, + "acc_punct": null + }, + "lyrics-Hip Hop": { + "u": 0.2943302997158756, + "t": 0.6618394964880608, + "punct": null, + "acc_u": 0.0009285051067780873, + "acc_t": 0.0436397400185701, + "acc_punct": null + }, + "lyrics-Hip Hop-corrupted-asr": { + "u": 0.2185635510522691, + "t": 0.5824913255793743, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.03064066852367688, + "acc_punct": null + }, + "lyrics-Indie Rock": { + "u": 0.44546619217755, + "t": 0.6952721096237301, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.05245901639344262, + "acc_punct": null + }, + "lyrics-Indie Rock-corrupted-asr": { + "u": 0.3931859426665492, + "t": 0.6625983726599258, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.03934426229508197, + "acc_punct": null + }, + "lyrics-Pop": { + "u": 0.4899403569294573, + "t": 0.7359514548589647, + "punct": null, + "acc_u": 0.001122334455667789, + "acc_t": 0.05723905723905724, + "acc_punct": null + }, + "lyrics-Pop-corrupted-asr": { + "u": 0.41886277073421346, + "t": 0.6949015349673535, + "punct": null, + "acc_u": 0.001122334455667789, + "acc_t": 0.06397306397306397, + "acc_punct": null + }, + "lyrics-Pop Punk": { + "u": 0.36861922243718803, + "t": 0.46623348982288265, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Pop Punk-corrupted-asr": { + "u": 0.3015669941937891, + "t": 0.6198629390248109, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Pop Rock": { + "u": 0.4609528208397485, + "t": 0.7112486552319592, + "punct": null, + "acc_u": 0.0024271844660194173, + "acc_t": 0.07281553398058252, + "acc_punct": null + }, + "lyrics-Pop Rock-corrupted-asr": { + "u": 0.3886876307928284, + "t": 0.6788833167155313, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.043689320388349516, + "acc_punct": null + }, + "lyrics-Punk Rock": { + "u": 0.408281295449736, + "t": 0.5391986932317608, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Punk Rock-corrupted-asr": { + "u": 0.35902410398888934, + "t": 0.6850152160656036, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.042105263157894736, + "acc_punct": null + }, + "lyrics-RnB": { + "u": 0.4233517725726673, + "t": 0.7169453653768366, + "punct": null, + "acc_u": 0.001092896174863388, + "acc_t": 0.046994535519125684, + "acc_punct": null + }, + "lyrics-RnB-corrupted-asr": { + "u": 0.35758547932526735, + "t": 0.6493685395020797, + "punct": null, + "acc_u": 0.001092896174863388, + "acc_t": 0.034972677595628415, + "acc_punct": null + }, + "lyrics-Rock": { + "u": 0.5779057592419603, + "t": 0.7689245034502628, + "punct": null, + "acc_u": 0.021150592216582064, + "acc_t": 0.12690355329949238, + "acc_punct": null + }, + "lyrics-Rock-corrupted-asr": { + "u": 0.4732801206558836, + "t": 0.718761460428608, + "punct": null, + "acc_u": 0.0025380710659898475, + "acc_t": 0.06937394247038917, + "acc_punct": null + }, + "lyrics-Soul": { + "u": 0.33830113865789724, + "t": 0.4057955308104497, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Soul-corrupted-asr": { + "u": 0.28103301888527293, + "t": 0.49645544031991823, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Southern Hip Hop": { + "u": 0.19331356087202586, + "t": 0.4583437545782493, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.004807692307692308, + "acc_punct": null + }, + "lyrics-Southern Hip Hop-corrupted-asr": { + "u": 0.09352902313849773, + "t": 0.23131538734170828, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/lyrics/sat-12l_lora_no_pretraining_s100.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/lyrics/sat-12l_lora_no_pretraining_s100.json new file mode 100644 index 0000000000000000000000000000000000000000..de74e235a284f9334d1a4de62b363bfa33d65171 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/lyrics/sat-12l_lora_no_pretraining_s100.json @@ -0,0 +1,260 @@ +{ + "en": { + "lyrics-Alternative Metal": { + "u": 0.26067550202037015, + "t": 0.3840469867833381, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Alternative Metal-corrupted-asr": { + "u": 0.1014614698994034, + "t": 0.26436199363528196, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Alternative Rock": { + "u": 0.1829326098754813, + "t": 0.37856233718897675, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Alternative Rock-corrupted-asr": { + "u": 0.07802675175226857, + "t": 0.24789870579113332, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Country": { + "u": 0.18114631484019617, + "t": 0.33841062767051827, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Country-corrupted-asr": { + "u": 0.07378575870137612, + "t": 0.2386905820571392, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Gangsta Rap": { + "u": 0.31389225306964275, + "t": 0.292371687349836, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Gangsta Rap-corrupted-asr": { + "u": 0.29772737219887957, + "t": 0.137221027865285, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Hard Rock": { + "u": 0.1997118164654061, + "t": 0.36992443418277554, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Hard Rock-corrupted-asr": { + "u": 0.08234191500208936, + "t": 0.21926289155756684, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Heavy Metal": { + "u": 0.2255662852257455, + "t": 0.38865839398928803, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Heavy Metal-corrupted-asr": { + "u": 0.07372033951545938, + "t": 0.19310020196929417, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Hip Hop": { + "u": 0.21186332474440342, + "t": 0.25968155630050277, + "punct": null, + "acc_u": 0.0009285051067780873, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Hip Hop-corrupted-asr": { + "u": 0.25702334257263715, + "t": 0.1823499024594573, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Indie Rock": { + "u": 0.2169995591488169, + "t": 0.3903996295907317, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Indie Rock-corrupted-asr": { + "u": 0.09725219227238854, + "t": 0.22587305667280372, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Pop": { + "u": 0.1866283794907915, + "t": 0.337255556818978, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Pop-corrupted-asr": { + "u": 0.06952686953528116, + "t": 0.18468851154305693, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Pop Punk": { + "u": 0.1857568405174699, + "t": 0.31473391927838296, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Pop Punk-corrupted-asr": { + "u": 0.07152012071735152, + "t": 0.21322278771211034, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Pop Rock": { + "u": 0.20100808314482052, + "t": 0.3587127351484565, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Pop Rock-corrupted-asr": { + "u": 0.06177038773719732, + "t": 0.21926740824373, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Punk Rock": { + "u": 0.19496063158025675, + "t": 0.3831371744876172, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Punk Rock-corrupted-asr": { + "u": 0.060831299055357044, + "t": 0.23283238395632103, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-RnB": { + "u": 0.11076766843617666, + "t": 0.2753288154229138, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-RnB-corrupted-asr": { + "u": 0.05007322919317772, + "t": 0.15781360169421646, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Rock": { + "u": 0.21031915518241576, + "t": 0.37792588337781313, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0008460236886632825, + "acc_punct": null + }, + "lyrics-Rock-corrupted-asr": { + "u": 0.06662583747373405, + "t": 0.2120705229213521, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Soul": { + "u": 0.22753194430674448, + "t": 0.36830078567964275, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Soul-corrupted-asr": { + "u": 0.058571749702551086, + "t": 0.16221602729619966, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Southern Hip Hop": { + "u": 0.28496048117486605, + "t": 0.2789849789101765, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Southern Hip Hop-corrupted-asr": { + "u": 0.27192423560880213, + "t": 0.1620831600629744, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/lyrics/sat-12l_lora_no_pretraining_s1000.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/lyrics/sat-12l_lora_no_pretraining_s1000.json new file mode 100644 index 0000000000000000000000000000000000000000..39b44611be01b3bac2ade21aacd749f955ba1a41 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/lyrics/sat-12l_lora_no_pretraining_s1000.json @@ -0,0 +1,260 @@ +{ + "en": { + "lyrics-Alternative Metal": { + "u": 0.3960842625632832, + "t": 0.5381896409580537, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0064516129032258064, + "acc_punct": null + }, + "lyrics-Alternative Metal-corrupted-asr": { + "u": 0.3317218808097468, + "t": 0.6497824445616628, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.012903225806451613, + "acc_punct": null + }, + "lyrics-Alternative Rock": { + "u": 0.4317088490913833, + "t": 0.7066222949463764, + "punct": null, + "acc_u": 0.0011682242990654205, + "acc_t": 0.04205607476635514, + "acc_punct": null + }, + "lyrics-Alternative Rock-corrupted-asr": { + "u": 0.4209599604131566, + "t": 0.6888645356453023, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.04088785046728972, + "acc_punct": null + }, + "lyrics-Country": { + "u": 0.4321197636832044, + "t": 0.7209216694247289, + "punct": null, + "acc_u": 0.0014064697609001407, + "acc_t": 0.06751054852320675, + "acc_punct": null + }, + "lyrics-Country-corrupted-asr": { + "u": 0.3946258786320697, + "t": 0.6929280256912499, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.05907172995780591, + "acc_punct": null + }, + "lyrics-Gangsta Rap": { + "u": 0.14282456167849802, + "t": 0.22339555716256473, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Gangsta Rap-corrupted-asr": { + "u": 0.07075451759503279, + "t": 0.0975811544329328, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Hard Rock": { + "u": 0.4212817743701047, + "t": 0.699366292001328, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.04186046511627907, + "acc_punct": null + }, + "lyrics-Hard Rock-corrupted-asr": { + "u": 0.38780842660204584, + "t": 0.6738157193697628, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.037209302325581395, + "acc_punct": null + }, + "lyrics-Heavy Metal": { + "u": 0.42200883782359094, + "t": 0.640188358877735, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.009259259259259259, + "acc_punct": null + }, + "lyrics-Heavy Metal-corrupted-asr": { + "u": 0.362947687489114, + "t": 0.6360938892541428, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.027777777777777776, + "acc_punct": null + }, + "lyrics-Hip Hop": { + "u": 0.2041301353934126, + "t": 0.5252074536959614, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0064995357474466105, + "acc_punct": null + }, + "lyrics-Hip Hop-corrupted-asr": { + "u": 0.12969940467705102, + "t": 0.37919035408322854, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Indie Rock": { + "u": 0.43587533090485736, + "t": 0.6662711036438543, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.03278688524590164, + "acc_punct": null + }, + "lyrics-Indie Rock-corrupted-asr": { + "u": 0.37594779759134933, + "t": 0.6446338235101063, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.029508196721311476, + "acc_punct": null + }, + "lyrics-Pop": { + "u": 0.3595094021185154, + "t": 0.5948719640574208, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.013468013468013467, + "acc_punct": null + }, + "lyrics-Pop-corrupted-asr": { + "u": 0.3279841839679929, + "t": 0.6447668305331143, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.02356902356902357, + "acc_punct": null + }, + "lyrics-Pop Punk": { + "u": 0.3616312685728841, + "t": 0.4676349382726165, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Pop Punk-corrupted-asr": { + "u": 0.2742965846651044, + "t": 0.5586717455597852, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0070921985815602835, + "acc_punct": null + }, + "lyrics-Pop Rock": { + "u": 0.4317491982772025, + "t": 0.6865031607347261, + "punct": null, + "acc_u": 0.0024271844660194173, + "acc_t": 0.055825242718446605, + "acc_punct": null + }, + "lyrics-Pop Rock-corrupted-asr": { + "u": 0.369407163203332, + "t": 0.6597915482634924, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.03640776699029126, + "acc_punct": null + }, + "lyrics-Punk Rock": { + "u": 0.40785294960147817, + "t": 0.5101763341094415, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Punk Rock-corrupted-asr": { + "u": 0.3493776942943937, + "t": 0.6879615576472806, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.07368421052631578, + "acc_punct": null + }, + "lyrics-RnB": { + "u": 0.3144044881687763, + "t": 0.6170328455396791, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.01092896174863388, + "acc_punct": null + }, + "lyrics-RnB-corrupted-asr": { + "u": 0.24947130782233348, + "t": 0.595986035216544, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.009836065573770493, + "acc_punct": null + }, + "lyrics-Rock": { + "u": 0.41705901901854237, + "t": 0.6931329305308803, + "punct": null, + "acc_u": 0.0008460236886632825, + "acc_t": 0.04060913705583756, + "acc_punct": null + }, + "lyrics-Rock-corrupted-asr": { + "u": 0.38484816268675814, + "t": 0.6703205865791755, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.03468697123519458, + "acc_punct": null + }, + "lyrics-Soul": { + "u": 0.3417047056099728, + "t": 0.4243850795681146, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Soul-corrupted-asr": { + "u": 0.2681832703748049, + "t": 0.43457415324174065, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Southern Hip Hop": { + "u": 0.18811435483895994, + "t": 0.42716348593485826, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Southern Hip Hop-corrupted-asr": { + "u": 0.09027237052804736, + "t": 0.21366351216139162, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/lyrics/sat-12l_lora_s100.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/lyrics/sat-12l_lora_s100.json new file mode 100644 index 0000000000000000000000000000000000000000..75ff95d40a6a092d7338ffc83f7a2bac82406ee7 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/lyrics/sat-12l_lora_s100.json @@ -0,0 +1,260 @@ +{ + "en": { + "lyrics-Alternative Metal": { + "u": 0.4469515683912542, + "t": 0.6860349188045153, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.03225806451612903, + "acc_punct": null + }, + "lyrics-Alternative Metal-corrupted-asr": { + "u": 0.3989775541652121, + "t": 0.6686111189942725, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.01935483870967742, + "acc_punct": null + }, + "lyrics-Alternative Rock": { + "u": 0.44205289001197307, + "t": 0.6490157146285984, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.017523364485981307, + "acc_punct": null + }, + "lyrics-Alternative Rock-corrupted-asr": { + "u": 0.42603584083605006, + "t": 0.6740627756396088, + "punct": null, + "acc_u": 0.0011682242990654205, + "acc_t": 0.029205607476635514, + "acc_punct": null + }, + "lyrics-Country": { + "u": 0.4250390594766046, + "t": 0.6668032021467015, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.02531645569620253, + "acc_punct": null + }, + "lyrics-Country-corrupted-asr": { + "u": 0.4192402335541667, + "t": 0.6666240935316466, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0450070323488045, + "acc_punct": null + }, + "lyrics-Gangsta Rap": { + "u": 0.19815414912703533, + "t": 0.5032758449585243, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Gangsta Rap-corrupted-asr": { + "u": 0.15177778670867306, + "t": 0.48446371216997736, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "lyrics-Hard Rock": { + "u": 0.4434991611004468, + "t": 0.640597316091893, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.023255813953488372, + "acc_punct": null + }, + "lyrics-Hard Rock-corrupted-asr": { + "u": 0.3959473458834924, + "t": 0.6359387632943083, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.018604651162790697, + "acc_punct": null + }, + "lyrics-Heavy Metal": { + "u": 0.4351408419940857, + "t": 0.6372617149624907, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.023148148148148147, + "acc_punct": null + }, + "lyrics-Heavy Metal-corrupted-asr": { + "u": 0.39931442365362274, + "t": 0.6240857035977596, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.018518518518518517, + "acc_punct": null + }, + "lyrics-Hip Hop": { + "u": 0.22833279418736022, + "t": 0.5226172376909056, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.003714020427112349, + "acc_punct": null + }, + "lyrics-Hip Hop-corrupted-asr": { + "u": 0.16016221876039913, + "t": 0.4557354570199437, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0018570102135561746, + "acc_punct": null + }, + "lyrics-Indie Rock": { + "u": 0.4281170733796194, + "t": 0.6387854312673187, + "punct": null, + "acc_u": 0.006557377049180328, + "acc_t": 0.022950819672131147, + "acc_punct": null + }, + "lyrics-Indie Rock-corrupted-asr": { + "u": 0.42901862043042843, + "t": 0.6272677225024937, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.022950819672131147, + "acc_punct": null + }, + "lyrics-Pop": { + "u": 0.4100042978887628, + "t": 0.6383337748577316, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.012345679012345678, + "acc_punct": null + }, + "lyrics-Pop-corrupted-asr": { + "u": 0.3657318823330395, + "t": 0.6215624826147331, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.02356902356902357, + "acc_punct": null + }, + "lyrics-Pop Punk": { + "u": 0.4884909784147525, + "t": 0.6920661641377792, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0425531914893617, + "acc_punct": null + }, + "lyrics-Pop Punk-corrupted-asr": { + "u": 0.4503542547225345, + "t": 0.6774460026050241, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0425531914893617, + "acc_punct": null + }, + "lyrics-Pop Rock": { + "u": 0.442941035493167, + "t": 0.6381600394268023, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.024271844660194174, + "acc_punct": null + }, + "lyrics-Pop Rock-corrupted-asr": { + "u": 0.40727833309278705, + "t": 0.634981022009173, + "punct": null, + "acc_u": 0.0024271844660194173, + "acc_t": 0.014563106796116505, + "acc_punct": null + }, + "lyrics-Punk Rock": { + "u": 0.45029726955501687, + "t": 0.6752782365432769, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.021052631578947368, + "acc_punct": null + }, + "lyrics-Punk Rock-corrupted-asr": { + "u": 0.4367399124163557, + "t": 0.6721634633942115, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.04736842105263158, + "acc_punct": null + }, + "lyrics-RnB": { + "u": 0.380773963914889, + "t": 0.6146528442393894, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.014207650273224045, + "acc_punct": null + }, + "lyrics-RnB-corrupted-asr": { + "u": 0.33214041157705937, + "t": 0.5882947175131545, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.015300546448087432, + "acc_punct": null + }, + "lyrics-Rock": { + "u": 0.44163048194744214, + "t": 0.6540898970614307, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0338409475465313, + "acc_punct": null + }, + "lyrics-Rock-corrupted-asr": { + "u": 0.41629476172106705, + "t": 0.6449536435157445, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.027918781725888325, + "acc_punct": null + }, + "lyrics-Soul": { + "u": 0.38622367351087045, + "t": 0.5976782330976226, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.00909090909090909, + "acc_punct": null + }, + "lyrics-Soul-corrupted-asr": { + "u": 0.38528337315270855, + "t": 0.6075695237128256, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.01818181818181818, + "acc_punct": null + }, + "lyrics-Southern Hip Hop": { + "u": 0.22689918659214176, + "t": 0.5299465049718649, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.009615384615384616, + "acc_punct": null + }, + "lyrics-Southern Hip Hop-corrupted-asr": { + "u": 0.15788282116734015, + "t": 0.44927483035117494, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.009615384615384616, + "acc_punct": null + } + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/lyrics/sat-12l_lora_s1000.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/lyrics/sat-12l_lora_s1000.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4c289c832b4f6d837fdb4ca442e9fac261f24c --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/lyrics/sat-12l_lora_s1000.json @@ -0,0 +1,260 @@ +{ + "en": { + "lyrics-Alternative Metal": { + "u": 0.5988529118481084, + "t": 0.7772459544663071, + "punct": null, + "acc_u": 0.0064516129032258064, + "acc_t": 0.14838709677419354, + "acc_punct": null + }, + "lyrics-Alternative Metal-corrupted-asr": { + "u": 0.5564615113889976, + "t": 0.7309783626258677, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0967741935483871, + "acc_punct": null + }, + "lyrics-Alternative Rock": { + "u": 0.6132343610410046, + "t": 0.7530626819453197, + "punct": null, + "acc_u": 0.008177570093457943, + "acc_t": 0.08177570093457943, + "acc_punct": null + }, + "lyrics-Alternative Rock-corrupted-asr": { + "u": 0.5505143187142724, + "t": 0.71401356013445, + "punct": null, + "acc_u": 0.004672897196261682, + "acc_t": 0.06425233644859812, + "acc_punct": null + }, + "lyrics-Country": { + "u": 0.6041256601791448, + "t": 0.76709262610866, + "punct": null, + "acc_u": 0.009845288326300985, + "acc_t": 0.13783403656821377, + "acc_punct": null + }, + "lyrics-Country-corrupted-asr": { + "u": 0.5631957782587781, + "t": 0.7266872692409987, + "punct": null, + "acc_u": 0.005625879043600563, + "acc_t": 0.09142053445850915, + "acc_punct": null + }, + "lyrics-Gangsta Rap": { + "u": 0.2519563701835238, + "t": 0.6092029263535144, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.03125, + "acc_punct": null + }, + "lyrics-Gangsta Rap-corrupted-asr": { + "u": 0.19637577790063188, + "t": 0.5577490187508569, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.03125, + "acc_punct": null + }, + "lyrics-Hard Rock": { + "u": 0.6080021269429338, + "t": 0.7571663916149076, + "punct": null, + "acc_u": 0.0069767441860465115, + "acc_t": 0.1, + "acc_punct": null + }, + "lyrics-Hard Rock-corrupted-asr": { + "u": 0.5442373083285911, + "t": 0.7135799091689692, + "punct": null, + "acc_u": 0.004651162790697674, + "acc_t": 0.06511627906976744, + "acc_punct": null + }, + "lyrics-Heavy Metal": { + "u": 0.6028604827645633, + "t": 0.7342973873776605, + "punct": null, + "acc_u": 0.004629629629629629, + "acc_t": 0.06944444444444445, + "acc_punct": null + }, + "lyrics-Heavy Metal-corrupted-asr": { + "u": 0.49217428232745286, + "t": 0.669771607723614, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.05555555555555555, + "acc_punct": null + }, + "lyrics-Hip Hop": { + "u": 0.3439066954660199, + "t": 0.6482304267040572, + "punct": null, + "acc_u": 0.0009285051067780873, + "acc_t": 0.039925719591457756, + "acc_punct": null + }, + "lyrics-Hip Hop-corrupted-asr": { + "u": 0.2560107969513277, + "t": 0.5692786802408403, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.022284122562674095, + "acc_punct": null + }, + "lyrics-Indie Rock": { + "u": 0.6009526107219114, + "t": 0.7262205374792136, + "punct": null, + "acc_u": 0.009836065573770493, + "acc_t": 0.10163934426229508, + "acc_punct": null + }, + "lyrics-Indie Rock-corrupted-asr": { + "u": 0.5537250602718192, + "t": 0.6985187116680864, + "punct": null, + "acc_u": 0.009836065573770493, + "acc_t": 0.08196721311475409, + "acc_punct": null + }, + "lyrics-Pop": { + "u": 0.5543215499615035, + "t": 0.7272630892737137, + "punct": null, + "acc_u": 0.003367003367003367, + "acc_t": 0.07407407407407407, + "acc_punct": null + }, + "lyrics-Pop-corrupted-asr": { + "u": 0.48403666100055753, + "t": 0.6851514650040965, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.04826038159371493, + "acc_punct": null + }, + "lyrics-Pop Punk": { + "u": 0.5987664644902588, + "t": 0.7679556126952615, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.09929078014184398, + "acc_punct": null + }, + "lyrics-Pop Punk-corrupted-asr": { + "u": 0.532754320523378, + "t": 0.7445272539909141, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.07801418439716312, + "acc_punct": null + }, + "lyrics-Pop Rock": { + "u": 0.5921746728745484, + "t": 0.7448848339756798, + "punct": null, + "acc_u": 0.009708737864077669, + "acc_t": 0.09951456310679611, + "acc_punct": null + }, + "lyrics-Pop Rock-corrupted-asr": { + "u": 0.5206007701322529, + "t": 0.6834524247597168, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.055825242718446605, + "acc_punct": null + }, + "lyrics-Punk Rock": { + "u": 0.6013572833424036, + "t": 0.7602415905538168, + "punct": null, + "acc_u": 0.010526315789473684, + "acc_t": 0.08947368421052632, + "acc_punct": null + }, + "lyrics-Punk Rock-corrupted-asr": { + "u": 0.5299839219438212, + "t": 0.7180420070368423, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.07894736842105263, + "acc_punct": null + }, + "lyrics-RnB": { + "u": 0.49024174073040416, + "t": 0.7120074489872393, + "punct": null, + "acc_u": 0.003278688524590164, + "acc_t": 0.05792349726775956, + "acc_punct": null + }, + "lyrics-RnB-corrupted-asr": { + "u": 0.3924585797082518, + "t": 0.6520094697693402, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0273224043715847, + "acc_punct": null + }, + "lyrics-Rock": { + "u": 0.6113568377959996, + "t": 0.7472875593106564, + "punct": null, + "acc_u": 0.018612521150592216, + "acc_t": 0.11082910321489002, + "acc_punct": null + }, + "lyrics-Rock-corrupted-asr": { + "u": 0.5354005354097071, + "t": 0.7036127882382638, + "punct": null, + "acc_u": 0.00338409475465313, + "acc_t": 0.06429780033840947, + "acc_punct": null + }, + "lyrics-Soul": { + "u": 0.5308148684263901, + "t": 0.7109230114145656, + "punct": null, + "acc_u": 0.00909090909090909, + "acc_t": 0.045454545454545456, + "acc_punct": null + }, + "lyrics-Soul-corrupted-asr": { + "u": 0.47616990991422287, + "t": 0.6560414245251781, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.05454545454545454, + "acc_punct": null + }, + "lyrics-Southern Hip Hop": { + "u": 0.34477111693172896, + "t": 0.6453360899929991, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.08173076923076923, + "acc_punct": null + }, + "lyrics-Southern Hip Hop-corrupted-asr": { + "u": 0.25891496829808947, + "t": 0.5473085230914199, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.04326923076923077, + "acc_punct": null + } + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/lyrics/wtp-12l.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/lyrics/wtp-12l.json new file mode 100644 index 0000000000000000000000000000000000000000..54291db27dd073cc68604e9ca0f7812307624e3c --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/lyrics/wtp-12l.json @@ -0,0 +1,260 @@ +{ + "en": { + "lyrics-Alternative Metal": { + "u": 0.4714284167569595, + "t": 0.4795402694217955, + "punct": 0.6045785596452294, + "acc_u": 0.025806451612903226, + "acc_t": 0.012903225806451613, + "acc_punct": 0.03225806451612903 + }, + "lyrics-Alternative Metal-corrupted-asr": { + "u": 0.43648480793621064, + "t": 0.4640767115236401, + "punct": 0.5417266559043615, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + }, + "lyrics-Alternative Rock": { + "u": 0.4824696078860648, + "t": 0.49178273474197853, + "punct": 0.6329907647171042, + "acc_u": 0.037383177570093455, + "acc_t": 0.030373831775700934, + "acc_punct": 0.05724299065420561 + }, + "lyrics-Alternative Rock-corrupted-asr": { + "u": 0.43640531171583063, + "t": 0.4437378265813664, + "punct": 0.5498425972561133, + "acc_u": 0.0011682242990654205, + "acc_t": 0.004672897196261682, + "acc_punct": 0.0035046728971962616 + }, + "lyrics-Country": { + "u": 0.45326577459277106, + "t": 0.45300468718360654, + "punct": 0.5891059634353808, + "acc_u": 0.02531645569620253, + "acc_t": 0.02109704641350211, + "acc_punct": 0.03656821378340366 + }, + "lyrics-Country-corrupted-asr": { + "u": 0.4126911040755251, + "t": 0.41392721938941135, + "punct": 0.5192411190546573, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.004219409282700422 + }, + "lyrics-Gangsta Rap": { + "u": 0.2252379379612935, + "t": 0.33747881105799615, + "punct": 0.43932591821233463, + "acc_u": 0.0, + "acc_t": 0.015625, + "acc_punct": 0.015625 + }, + "lyrics-Gangsta Rap-corrupted-asr": { + "u": 0.15982379413322545, + "t": 0.2855951251196227, + "punct": 0.3948034106300934, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + }, + "lyrics-Hard Rock": { + "u": 0.4458674041487899, + "t": 0.45918996681809665, + "punct": 0.5948997810709413, + "acc_u": 0.018604651162790697, + "acc_t": 0.011627906976744186, + "acc_punct": 0.037209302325581395 + }, + "lyrics-Hard Rock-corrupted-asr": { + "u": 0.42751608292095555, + "t": 0.438222993565981, + "punct": 0.5259336350983038, + "acc_u": 0.0, + "acc_t": 0.002325581395348837, + "acc_punct": 0.002325581395348837 + }, + "lyrics-Heavy Metal": { + "u": 0.43886457842297516, + "t": 0.4529400362944922, + "punct": 0.5889103048291916, + "acc_u": 0.009259259259259259, + "acc_t": 0.009259259259259259, + "acc_punct": 0.023148148148148147 + }, + "lyrics-Heavy Metal-corrupted-asr": { + "u": 0.393621296912312, + "t": 0.3934729795356966, + "punct": 0.5120234009989637, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.004629629629629629 + }, + "lyrics-Hip Hop": { + "u": 0.26682530880199484, + "t": 0.3256795679057545, + "punct": 0.4608203511830775, + "acc_u": 0.004642525533890436, + "acc_t": 0.004642525533890436, + "acc_punct": 0.012999071494893221 + }, + "lyrics-Hip Hop-corrupted-asr": { + "u": 0.20361034357274263, + "t": 0.270917537234025, + "punct": 0.3794199866710667, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + }, + "lyrics-Indie Rock": { + "u": 0.45767240471309323, + "t": 0.47176191863698663, + "punct": 0.6006239014690943, + "acc_u": 0.019672131147540985, + "acc_t": 0.013114754098360656, + "acc_punct": 0.03278688524590164 + }, + "lyrics-Indie Rock-corrupted-asr": { + "u": 0.4482110973749633, + "t": 0.4515454864816756, + "punct": 0.5484166792496219, + "acc_u": 0.006557377049180328, + "acc_t": 0.0, + "acc_punct": 0.009836065573770493 + }, + "lyrics-Pop": { + "u": 0.4531558595109399, + "t": 0.4582876759067434, + "punct": 0.5817968138103935, + "acc_u": 0.028058361391694726, + "acc_t": 0.02244668911335578, + "acc_punct": 0.04264870931537598 + }, + "lyrics-Pop-corrupted-asr": { + "u": 0.3948934440077052, + "t": 0.4003138545726256, + "punct": 0.493515901498656, + "acc_u": 0.0, + "acc_t": 0.001122334455667789, + "acc_punct": 0.001122334455667789 + }, + "lyrics-Pop Punk": { + "u": 0.43000569904561575, + "t": 0.42018495207641243, + "punct": 0.5745531265063477, + "acc_u": 0.0070921985815602835, + "acc_t": 0.0070921985815602835, + "acc_punct": 0.0 + }, + "lyrics-Pop Punk-corrupted-asr": { + "u": 0.42193827374802717, + "t": 0.42187782231298926, + "punct": 0.5309155405883286, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + }, + "lyrics-Pop Rock": { + "u": 0.46014219480734986, + "t": 0.46072607222583, + "punct": 0.58327223166007, + "acc_u": 0.01699029126213592, + "acc_t": 0.019417475728155338, + "acc_punct": 0.050970873786407765 + }, + "lyrics-Pop Rock-corrupted-asr": { + "u": 0.4012863623235893, + "t": 0.40757455636979084, + "punct": 0.5096269490438436, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0048543689320388345 + }, + "lyrics-Punk Rock": { + "u": 0.44859463097427427, + "t": 0.45349935864547475, + "punct": 0.5882064005807826, + "acc_u": 0.010526315789473684, + "acc_t": 0.010526315789473684, + "acc_punct": 0.02631578947368421 + }, + "lyrics-Punk Rock-corrupted-asr": { + "u": 0.46027058805618526, + "t": 0.45473201197208996, + "punct": 0.5561104450789125, + "acc_u": 0.010526315789473684, + "acc_t": 0.010526315789473684, + "acc_punct": 0.015789473684210527 + }, + "lyrics-RnB": { + "u": 0.3937693750817419, + "t": 0.39602094549630157, + "punct": 0.5347280752137566, + "acc_u": 0.009836065573770493, + "acc_t": 0.007650273224043716, + "acc_punct": 0.024043715846994537 + }, + "lyrics-RnB-corrupted-asr": { + "u": 0.3616762826646102, + "t": 0.351425956224702, + "punct": 0.43233707809157673, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.002185792349726776 + }, + "lyrics-Rock": { + "u": 0.48111768463717075, + "t": 0.4856364827122496, + "punct": 0.6070942084709554, + "acc_u": 0.031302876480541454, + "acc_t": 0.02030456852791878, + "acc_punct": 0.048223350253807105 + }, + "lyrics-Rock-corrupted-asr": { + "u": 0.4135269037501443, + "t": 0.4161043867328755, + "punct": 0.5310123123126836, + "acc_u": 0.00338409475465313, + "acc_t": 0.0025380710659898475, + "acc_punct": 0.00676818950930626 + }, + "lyrics-Soul": { + "u": 0.389016800235301, + "t": 0.4017853294353386, + "punct": 0.5496621991159818, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + }, + "lyrics-Soul-corrupted-asr": { + "u": 0.3819155698789365, + "t": 0.3987921537228817, + "punct": 0.4864007430436162, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + }, + "lyrics-Southern Hip Hop": { + "u": 0.26530086872579095, + "t": 0.3329801825590716, + "punct": 0.4593993417887896, + "acc_u": 0.0, + "acc_t": 0.004807692307692308, + "acc_punct": 0.009615384615384616 + }, + "lyrics-Southern Hip Hop-corrupted-asr": { + "u": 0.1933803086455429, + "t": 0.27731864497159553, + "punct": 0.36464739579259065, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + } + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/lyrics/wtp-12l_s100.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/lyrics/wtp-12l_s100.json new file mode 100644 index 0000000000000000000000000000000000000000..2c4bf119d99162abfe9077562a9f13ecc115fe5b --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/lyrics/wtp-12l_s100.json @@ -0,0 +1,260 @@ +{ + "en": { + "lyrics-Alternative Metal": { + "u": 0.4714284167569595, + "t": 0.47982084373906, + "punct": 0.5855454429942885, + "acc_u": 0.025806451612903226, + "acc_t": 0.012903225806451613, + "acc_punct": 0.03870967741935484 + }, + "lyrics-Alternative Metal-corrupted-asr": { + "u": 0.43648480793621064, + "t": 0.4604803094604032, + "punct": 0.5265806988231057, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + }, + "lyrics-Alternative Rock": { + "u": 0.4824696078860648, + "t": 0.48983133140151014, + "punct": 0.5993187660945967, + "acc_u": 0.037383177570093455, + "acc_t": 0.029205607476635514, + "acc_punct": 0.054906542056074766 + }, + "lyrics-Alternative Rock-corrupted-asr": { + "u": 0.43640531171583063, + "t": 0.44259706032788393, + "punct": 0.525731252187386, + "acc_u": 0.0011682242990654205, + "acc_t": 0.0035046728971962616, + "acc_punct": 0.004672897196261682 + }, + "lyrics-Country": { + "u": 0.45326577459277106, + "t": 0.4501214536276475, + "punct": 0.5651101524077704, + "acc_u": 0.02531645569620253, + "acc_t": 0.02109704641350211, + "acc_punct": 0.03375527426160337 + }, + "lyrics-Country-corrupted-asr": { + "u": 0.4126911040755251, + "t": 0.4143327124233372, + "punct": 0.4889273567702918, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0028129395218002813 + }, + "lyrics-Gangsta Rap": { + "u": 0.2252379379612935, + "t": 0.3509258509945281, + "punct": 0.4239974933951878, + "acc_u": 0.0, + "acc_t": 0.015625, + "acc_punct": 0.0 + }, + "lyrics-Gangsta Rap-corrupted-asr": { + "u": 0.15982379413322545, + "t": 0.28490114551159473, + "punct": 0.36406051800474215, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + }, + "lyrics-Hard Rock": { + "u": 0.4458674041487899, + "t": 0.4526853653379654, + "punct": 0.569722771864532, + "acc_u": 0.018604651162790697, + "acc_t": 0.0069767441860465115, + "acc_punct": 0.02558139534883721 + }, + "lyrics-Hard Rock-corrupted-asr": { + "u": 0.42751608292095555, + "t": 0.4343916135531064, + "punct": 0.5035860858456335, + "acc_u": 0.0, + "acc_t": 0.002325581395348837, + "acc_punct": 0.0 + }, + "lyrics-Heavy Metal": { + "u": 0.43886457842297516, + "t": 0.4490574681625056, + "punct": 0.5667979891072067, + "acc_u": 0.009259259259259259, + "acc_t": 0.009259259259259259, + "acc_punct": 0.009259259259259259 + }, + "lyrics-Heavy Metal-corrupted-asr": { + "u": 0.393621296912312, + "t": 0.3934945620711774, + "punct": 0.46480086909426704, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + }, + "lyrics-Hip Hop": { + "u": 0.26682530880199484, + "t": 0.3248049129192988, + "punct": 0.4393260345711645, + "acc_u": 0.004642525533890436, + "acc_t": 0.0064995357474466105, + "acc_punct": 0.01021355617455896 + }, + "lyrics-Hip Hop-corrupted-asr": { + "u": 0.20361034357274263, + "t": 0.2743630466530315, + "punct": 0.3692445767786846, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0009285051067780873 + }, + "lyrics-Indie Rock": { + "u": 0.45767240471309323, + "t": 0.46953149729020266, + "punct": 0.5626674725249013, + "acc_u": 0.019672131147540985, + "acc_t": 0.013114754098360656, + "acc_punct": 0.02622950819672131 + }, + "lyrics-Indie Rock-corrupted-asr": { + "u": 0.4482110973749633, + "t": 0.45330284804628374, + "punct": 0.523631843735176, + "acc_u": 0.006557377049180328, + "acc_t": 0.0, + "acc_punct": 0.006557377049180328 + }, + "lyrics-Pop": { + "u": 0.4531558595109399, + "t": 0.45602665247591384, + "punct": 0.5587700012489281, + "acc_u": 0.028058361391694726, + "acc_t": 0.02244668911335578, + "acc_punct": 0.03591470258136925 + }, + "lyrics-Pop-corrupted-asr": { + "u": 0.3948934440077052, + "t": 0.39363373225066917, + "punct": 0.47011445112257866, + "acc_u": 0.0, + "acc_t": 0.001122334455667789, + "acc_punct": 0.001122334455667789 + }, + "lyrics-Pop Punk": { + "u": 0.43000569904561575, + "t": 0.4230568630503112, + "punct": 0.5485745647453766, + "acc_u": 0.0070921985815602835, + "acc_t": 0.0070921985815602835, + "acc_punct": 0.0 + }, + "lyrics-Pop Punk-corrupted-asr": { + "u": 0.42193827374802717, + "t": 0.41889833230226964, + "punct": 0.500226895399416, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + }, + "lyrics-Pop Rock": { + "u": 0.46014219480734986, + "t": 0.4557669191406876, + "punct": 0.5748328248228198, + "acc_u": 0.01699029126213592, + "acc_t": 0.01699029126213592, + "acc_punct": 0.050970873786407765 + }, + "lyrics-Pop Rock-corrupted-asr": { + "u": 0.4012863623235893, + "t": 0.40694459526623517, + "punct": 0.4881655378755054, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0024271844660194173 + }, + "lyrics-Punk Rock": { + "u": 0.44859463097427427, + "t": 0.45144534980546003, + "punct": 0.5613527277076541, + "acc_u": 0.010526315789473684, + "acc_t": 0.015789473684210527, + "acc_punct": 0.03684210526315789 + }, + "lyrics-Punk Rock-corrupted-asr": { + "u": 0.46027058805618526, + "t": 0.44948150382750346, + "punct": 0.5245057274729023, + "acc_u": 0.010526315789473684, + "acc_t": 0.005263157894736842, + "acc_punct": 0.021052631578947368 + }, + "lyrics-RnB": { + "u": 0.3937693750817419, + "t": 0.38843469216442317, + "punct": 0.5136901998081873, + "acc_u": 0.009836065573770493, + "acc_t": 0.01092896174863388, + "acc_punct": 0.025136612021857924 + }, + "lyrics-RnB-corrupted-asr": { + "u": 0.3616762826646102, + "t": 0.34806573903983234, + "punct": 0.41459871473614246, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.001092896174863388 + }, + "lyrics-Rock": { + "u": 0.48111768463717075, + "t": 0.48019536830591436, + "punct": 0.5754793155109519, + "acc_u": 0.031302876480541454, + "acc_t": 0.02030456852791878, + "acc_punct": 0.04991539763113367 + }, + "lyrics-Rock-corrupted-asr": { + "u": 0.4135269037501443, + "t": 0.41552473403588147, + "punct": 0.5145872657148876, + "acc_u": 0.00338409475465313, + "acc_t": 0.0025380710659898475, + "acc_punct": 0.004230118443316413 + }, + "lyrics-Soul": { + "u": 0.389016800235301, + "t": 0.39020909277870286, + "punct": 0.5249928343634843, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + }, + "lyrics-Soul-corrupted-asr": { + "u": 0.3819155698789365, + "t": 0.3974376927282239, + "punct": 0.47285867302365964, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + }, + "lyrics-Southern Hip Hop": { + "u": 0.26530086872579095, + "t": 0.3316081463806268, + "punct": 0.4328929563813117, + "acc_u": 0.0, + "acc_t": 0.004807692307692308, + "acc_punct": 0.004807692307692308 + }, + "lyrics-Southern Hip Hop-corrupted-asr": { + "u": 0.1933803086455429, + "t": 0.27731864497159553, + "punct": 0.3548766723524055, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + } + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/lyrics/wtp_12l_s1000.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/lyrics/wtp_12l_s1000.json new file mode 100644 index 0000000000000000000000000000000000000000..37e65f05deb076da19d1462fd187413697942778 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/lyrics/wtp_12l_s1000.json @@ -0,0 +1,260 @@ +{ + "en": { + "lyrics-Alternative Metal": { + "u": 0.4714284167569595, + "t": 0.4795402694217955, + "punct": 0.6045785596452294, + "acc_u": 0.025806451612903226, + "acc_t": 0.012903225806451613, + "acc_punct": 0.03225806451612903 + }, + "lyrics-Alternative Metal-corrupted-asr": { + "u": 0.43648480793621064, + "t": 0.4640767115236401, + "punct": 0.5417266559043615, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + }, + "lyrics-Alternative Rock": { + "u": 0.4824696078860648, + "t": 0.49234774868776526, + "punct": 0.6299395626156862, + "acc_u": 0.037383177570093455, + "acc_t": 0.03154205607476635, + "acc_punct": 0.056074766355140186 + }, + "lyrics-Alternative Rock-corrupted-asr": { + "u": 0.43640531171583063, + "t": 0.4437378265813664, + "punct": 0.5489144879741099, + "acc_u": 0.0011682242990654205, + "acc_t": 0.004672897196261682, + "acc_punct": 0.0035046728971962616 + }, + "lyrics-Country": { + "u": 0.45326577459277106, + "t": 0.45300468718360654, + "punct": 0.588656592112457, + "acc_u": 0.02531645569620253, + "acc_t": 0.02109704641350211, + "acc_punct": 0.040787623066104076 + }, + "lyrics-Country-corrupted-asr": { + "u": 0.4126911040755251, + "t": 0.4124837155278861, + "punct": 0.5172117385205047, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.005625879043600563 + }, + "lyrics-Gangsta Rap": { + "u": 0.2252379379612935, + "t": 0.33747881105799615, + "punct": 0.43932591821233463, + "acc_u": 0.0, + "acc_t": 0.015625, + "acc_punct": 0.015625 + }, + "lyrics-Gangsta Rap-corrupted-asr": { + "u": 0.15982379413322545, + "t": 0.2855951251196227, + "punct": 0.3948034106300934, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + }, + "lyrics-Hard Rock": { + "u": 0.4458674041487899, + "t": 0.4599599179967258, + "punct": 0.5938050151339006, + "acc_u": 0.018604651162790697, + "acc_t": 0.011627906976744186, + "acc_punct": 0.04186046511627907 + }, + "lyrics-Hard Rock-corrupted-asr": { + "u": 0.42751608292095555, + "t": 0.43734373082662065, + "punct": 0.519683840587878, + "acc_u": 0.0, + "acc_t": 0.002325581395348837, + "acc_punct": 0.002325581395348837 + }, + "lyrics-Heavy Metal": { + "u": 0.43886457842297516, + "t": 0.4529400362944922, + "punct": 0.5889103048291916, + "acc_u": 0.009259259259259259, + "acc_t": 0.009259259259259259, + "acc_punct": 0.023148148148148147 + }, + "lyrics-Heavy Metal-corrupted-asr": { + "u": 0.393621296912312, + "t": 0.3934729795356966, + "punct": 0.5120234009989637, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.004629629629629629 + }, + "lyrics-Hip Hop": { + "u": 0.26682530880199484, + "t": 0.3318018473257449, + "punct": 0.46070753605078474, + "acc_u": 0.004642525533890436, + "acc_t": 0.002785515320334262, + "acc_punct": 0.009285051067780872 + }, + "lyrics-Hip Hop-corrupted-asr": { + "u": 0.20361034357274263, + "t": 0.28068868235667843, + "punct": 0.3760339804157275, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0009285051067780873 + }, + "lyrics-Indie Rock": { + "u": 0.45767240471309323, + "t": 0.4730271969757203, + "punct": 0.5978844925443441, + "acc_u": 0.019672131147540985, + "acc_t": 0.013114754098360656, + "acc_punct": 0.03278688524590164 + }, + "lyrics-Indie Rock-corrupted-asr": { + "u": 0.4482110973749633, + "t": 0.4515454864816756, + "punct": 0.5507110778551686, + "acc_u": 0.006557377049180328, + "acc_t": 0.0, + "acc_punct": 0.009836065573770493 + }, + "lyrics-Pop": { + "u": 0.4531558595109399, + "t": 0.45776216459121305, + "punct": 0.5769744456783863, + "acc_u": 0.028058361391694726, + "acc_t": 0.02356902356902357, + "acc_punct": 0.04377104377104377 + }, + "lyrics-Pop-corrupted-asr": { + "u": 0.3948934440077052, + "t": 0.3980869754814845, + "punct": 0.488590653656266, + "acc_u": 0.0, + "acc_t": 0.001122334455667789, + "acc_punct": 0.001122334455667789 + }, + "lyrics-Pop Punk": { + "u": 0.43000569904561575, + "t": 0.42018495207641243, + "punct": 0.5745531265063477, + "acc_u": 0.0070921985815602835, + "acc_t": 0.0070921985815602835, + "acc_punct": 0.0 + }, + "lyrics-Pop Punk-corrupted-asr": { + "u": 0.42193827374802717, + "t": 0.42187782231298926, + "punct": 0.5309155405883286, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + }, + "lyrics-Pop Rock": { + "u": 0.46014219480734986, + "t": 0.46075634525932213, + "punct": 0.5810873582221945, + "acc_u": 0.01699029126213592, + "acc_t": 0.021844660194174758, + "acc_punct": 0.05339805825242718 + }, + "lyrics-Pop Rock-corrupted-asr": { + "u": 0.4012863623235893, + "t": 0.40757455636979084, + "punct": 0.5121322188477768, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0048543689320388345 + }, + "lyrics-Punk Rock": { + "u": 0.44859463097427427, + "t": 0.45349935864547475, + "punct": 0.5882064005807826, + "acc_u": 0.010526315789473684, + "acc_t": 0.010526315789473684, + "acc_punct": 0.02631578947368421 + }, + "lyrics-Punk Rock-corrupted-asr": { + "u": 0.46027058805618526, + "t": 0.45473201197208996, + "punct": 0.5561104450789125, + "acc_u": 0.010526315789473684, + "acc_t": 0.010526315789473684, + "acc_punct": 0.015789473684210527 + }, + "lyrics-RnB": { + "u": 0.3937693750817419, + "t": 0.39244475877305396, + "punct": 0.5310143925169679, + "acc_u": 0.009836065573770493, + "acc_t": 0.006557377049180328, + "acc_punct": 0.025136612021857924 + }, + "lyrics-RnB-corrupted-asr": { + "u": 0.3616762826646102, + "t": 0.35164818161065814, + "punct": 0.43078043719114867, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + }, + "lyrics-Rock": { + "u": 0.48111768463717075, + "t": 0.4836668387396376, + "punct": 0.605372063815591, + "acc_u": 0.031302876480541454, + "acc_t": 0.021996615905245348, + "acc_punct": 0.04991539763113367 + }, + "lyrics-Rock-corrupted-asr": { + "u": 0.4135269037501443, + "t": 0.4173835308916316, + "punct": 0.5282926471426291, + "acc_u": 0.00338409475465313, + "acc_t": 0.00338409475465313, + "acc_punct": 0.008460236886632826 + }, + "lyrics-Soul": { + "u": 0.389016800235301, + "t": 0.4017853294353386, + "punct": 0.5496621991159818, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + }, + "lyrics-Soul-corrupted-asr": { + "u": 0.3819155698789365, + "t": 0.3987921537228817, + "punct": 0.4864007430436162, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + }, + "lyrics-Southern Hip Hop": { + "u": 0.26530086872579095, + "t": 0.3329801825590716, + "punct": 0.4593993417887896, + "acc_u": 0.0, + "acc_t": 0.004807692307692308, + "acc_punct": 0.009615384615384616 + }, + "lyrics-Southern Hip Hop-corrupted-asr": { + "u": 0.1933803086455429, + "t": 0.27731864497159553, + "punct": 0.36464739579259065, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + } + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/baselines.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/baselines.json new file mode 100644 index 0000000000000000000000000000000000000000..27903eb4db7d9420d58da48b83927fafade1b9db --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/baselines.json @@ -0,0 +1,6017 @@ +{ + "af": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.19495412844036697, + "precision": 0.6451612903225806, + "correct_pairwise": 0, + "f1": 0.2994275649493615 + }, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.9842931937172775, + "precision": 0.9842931937172775, + "correct_pairwise": 0, + "f1": 0.9842931937172775 + }, + "pysbd": null, + "ersatz": null + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "pysbd": null, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "am": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.03788300835654596, + "precision": 0.21316614420062696, + "correct_pairwise": 0, + "f1": 0.06433301797540208 + }, + "pysbd": { + "recall": 0.03175487465181059, + "precision": 0.3825503355704698, + "correct_pairwise": 0, + "f1": 0.05864197530864198 + }, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "pysbd": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "ar": { + "ersatz": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.8322246858832225, + "precision": 0.9623931623931624, + "correct_pairwise": 0, + "f1": 0.8925881886642887 + }, + "pysbd": { + "recall": 0.5587583148558758, + "precision": 0.39375, + "correct_pairwise": 0, + "f1": 0.461961503208066 + }, + "ersatz": { + "recall": 0.8994826311899483, + "precision": 0.9582677165354331, + "correct_pairwise": 0, + "f1": 0.9279451010293557 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.3599330357142857, + "precision": 0.8588548601864181, + "correct_pairwise": 0, + "f1": 0.5072748721981911 + }, + "pysbd": { + "recall": 0.35044642857142855, + "precision": 0.4145214521452145, + "correct_pairwise": 0, + "f1": 0.37980042334442093 + }, + "ersatz": { + "recall": 0.44252232142857145, + "precision": 0.8920134983127109, + "correct_pairwise": 0, + "f1": 0.5915703095859753 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.673202614379085, + "precision": 0.7862595419847328, + "correct_pairwise": 0, + "f1": 0.7253521126760564 + }, + "pysbd": { + "recall": 0.3235294117647059, + "precision": 0.24780976220275344, + "correct_pairwise": 0, + "f1": 0.2806520198440822 + }, + "ersatz": { + "recall": 0.8202614379084967, + "precision": 0.7758887171561051, + "correct_pairwise": 0, + "f1": 0.7974583002382843 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "pysbd": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "ersatz": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "az": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.807799442896936, + "precision": 0.6079664570230608, + "correct_pairwise": 0, + "f1": 0.6937799043062202 + }, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "pysbd": null, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "be": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "bg": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.90929326655537, + "precision": 0.9164329781267526, + "correct_pairwise": 0, + "f1": 0.9128491620111733 + }, + "pysbd": { + "recall": 0.5998887033945465, + "precision": 0.9285099052540913, + "correct_pairwise": 0, + "f1": 0.7288708586883028 + }, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.8735059760956175, + "precision": 0.9491341991341992, + "correct_pairwise": 0, + "f1": 0.9097510373443983 + }, + "pysbd": { + "recall": 0.603585657370518, + "precision": 0.9853658536585366, + "correct_pairwise": 0, + "f1": 0.7486102532427426 + }, + "ersatz": null + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "pysbd": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "bn": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.7547486033519553, + "precision": 0.8084979054458408, + "correct_pairwise": 0, + "f1": 0.7806992198786477 + }, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 1.0, + "precision": 1.0, + "correct_pairwise": 1, + "f1": 1.0 + }, + "pysbd": null, + "ersatz": null + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.00021367521367521368, + "precision": 1.0, + "correct_pairwise": 0, + "f1": 0.0004272591326639607 + }, + "pysbd": null, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "ca": { + "opus100": { + "punkt": null, + "spacy_dp": { + "recall": 0.8737316798196166, + "precision": 0.8722566122678672, + "correct_pairwise": 0, + "f1": 0.8729935229512813 + }, + "spacy_sent": { + "recall": 0.8449830890642616, + "precision": 0.876608187134503, + "correct_pairwise": 0, + "f1": 0.8605051664753157 + }, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": null, + "spacy_dp": { + "recall": 0.9981938591210114, + "precision": 0.9981938591210114, + "correct_pairwise": 0, + "f1": 0.9981938591210114 + }, + "spacy_sent": { + "recall": 0.950632149307646, + "precision": 0.9472105578884223, + "correct_pairwise": 0, + "f1": 0.9489182692307693 + }, + "pysbd": null, + "ersatz": null + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": { + "recall": 0.009222222222222222, + "precision": 0.48823529411764705, + "correct_pairwise": 0, + "f1": 0.018102508178844054 + }, + "spacy_sent": { + "recall": 0.003, + "precision": 0.54, + "correct_pairwise": 0, + "f1": 0.0059668508287292815 + }, + "pysbd": null, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "ceb": { + "ud": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "cs": { + "ersatz": { + "punkt": { + "recall": 0.9401159047005795, + "precision": 0.9952283571915473, + "correct_pairwise": 0, + "f1": 0.966887417218543 + }, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.8312942691564713, + "precision": 0.8345184227537169, + "correct_pairwise": 0, + "f1": 0.8329032258064516 + }, + "pysbd": null, + "ersatz": { + "recall": 0.9401159047005795, + "precision": 0.9952283571915473, + "correct_pairwise": 0, + "f1": 0.966887417218543 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "punkt": { + "recall": 0.8364354201917654, + "precision": 0.899878640776699, + "correct_pairwise": 0, + "f1": 0.866997953814674 + }, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.8200789622109419, + "precision": 0.8774894387447194, + "correct_pairwise": 0, + "f1": 0.8478134110787171 + }, + "pysbd": null, + "ersatz": { + "recall": 0.8212069937958263, + "precision": 0.914572864321608, + "correct_pairwise": 0, + "f1": 0.8653789004457652 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": { + "recall": 0.8298105355382762, + "precision": 0.962525406504065, + "correct_pairwise": 0, + "f1": 0.8912544845027349 + }, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.7972839776585259, + "precision": 0.8701888596700932, + "correct_pairwise": 0, + "f1": 0.8321426530262331 + }, + "pysbd": null, + "ersatz": { + "recall": 0.8299200525681744, + "precision": 0.9673219300485065, + "correct_pairwise": 0, + "f1": 0.893368700265252 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": { + "recall": 0.0036666666666666666, + "precision": 0.55, + "correct_pairwise": 0, + "f1": 0.0072847682119205285 + }, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.004, + "precision": 0.4090909090909091, + "correct_pairwise": 0, + "f1": 0.007922535211267605 + }, + "pysbd": null, + "ersatz": { + "recall": 0.0012222222222222222, + "precision": 0.3055555555555556, + "correct_pairwise": 0, + "f1": 0.002434705621956618 + } + }, + "ted2020-corrupted-social-media": {} + }, + "cy": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {} + }, + "da": { + "opus100": { + "punkt": { + "recall": 0.8891377379619261, + "precision": 0.9089868345735547, + "correct_pairwise": 0, + "f1": 0.8989527313897536 + }, + "spacy_dp": { + "recall": 0.9316909294512878, + "precision": 0.873490813648294, + "correct_pairwise": 0, + "f1": 0.9016526686534814 + }, + "spacy_sent": { + "recall": 0.851063829787234, + "precision": 0.9010077059869591, + "correct_pairwise": 0, + "f1": 0.8753239274402533 + }, + "pysbd": { + "recall": 0.574468085106383, + "precision": 0.9007901668129938, + "correct_pairwise": 0, + "f1": 0.7015384615384617 + }, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": { + "recall": 0.9114173228346457, + "precision": 0.9788583509513742, + "correct_pairwise": 0, + "f1": 0.943934760448522 + }, + "spacy_dp": { + "recall": 0.9488188976377953, + "precision": 0.9323017408123792, + "correct_pairwise": 0, + "f1": 0.9404878048780488 + }, + "spacy_sent": { + "recall": 0.8208661417322834, + "precision": 0.8872340425531915, + "correct_pairwise": 0, + "f1": 0.852760736196319 + }, + "pysbd": { + "recall": 0.5885826771653543, + "precision": 0.9462025316455697, + "correct_pairwise": 0, + "f1": 0.7257281553398058 + }, + "ersatz": null + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "spacy_dp": { + "recall": 0.010222222222222223, + "precision": 0.4125560538116592, + "correct_pairwise": 0, + "f1": 0.0199501246882793 + }, + "spacy_sent": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "pysbd": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "de": { + "ersatz": { + "punkt": { + "recall": 0.9168552036199095, + "precision": 0.9920440636474909, + "correct_pairwise": 0, + "f1": 0.9529688418577308 + }, + "spacy_dp": { + "recall": 0.9824660633484162, + "precision": 0.9440217391304347, + "correct_pairwise": 0, + "f1": 0.9628603104212861 + }, + "spacy_sent": { + "recall": 0.8585972850678733, + "precision": 0.9324324324324325, + "correct_pairwise": 0, + "f1": 0.8939929328621907 + }, + "pysbd": { + "recall": 0.9157239819004525, + "precision": 0.9932515337423313, + "correct_pairwise": 0, + "f1": 0.9529134785167744 + }, + "ersatz": { + "recall": 0.9145927601809954, + "precision": 0.9975323874151758, + "correct_pairwise": 0, + "f1": 0.9542637946296841 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "punkt": { + "recall": 0.6696009389671361, + "precision": 0.8086463501063076, + "correct_pairwise": 0, + "f1": 0.7325842696629213 + }, + "spacy_dp": { + "recall": 0.8057511737089202, + "precision": 0.6847880299251871, + "correct_pairwise": 0, + "f1": 0.7403612833647883 + }, + "spacy_sent": { + "recall": 0.6220657276995305, + "precision": 0.790454884414616, + "correct_pairwise": 0, + "f1": 0.6962233169129721 + }, + "pysbd": { + "recall": 0.636150234741784, + "precision": 0.6962106615285806, + "correct_pairwise": 0, + "f1": 0.6648267402637228 + }, + "ersatz": { + "recall": 0.6555164319248826, + "precision": 0.8255728011825573, + "correct_pairwise": 0, + "f1": 0.7307818122342166 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": { + "recall": 0.8703071672354948, + "precision": 0.9896507115135834, + "correct_pairwise": 0, + "f1": 0.9261501210653753 + }, + "spacy_dp": { + "recall": 0.9601820250284414, + "precision": 0.9734717416378316, + "correct_pairwise": 0, + "f1": 0.9667812142038946 + }, + "spacy_sent": { + "recall": 0.8373151308304891, + "precision": 0.9671484888304862, + "correct_pairwise": 0, + "f1": 0.8975609756097561 + }, + "pysbd": { + "recall": 0.70193401592719, + "precision": 0.9292168674698795, + "correct_pairwise": 0, + "f1": 0.7997407647440051 + }, + "ersatz": { + "recall": 0.8680318543799772, + "precision": 0.9883419689119171, + "correct_pairwise": 0, + "f1": 0.9242883101150817 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": { + "recall": 0.0006666666666666666, + "precision": 0.10526315789473684, + "correct_pairwise": 0, + "f1": 0.001324942033786022 + }, + "spacy_dp": { + "recall": 0.08811111111111111, + "precision": 0.40939597315436244, + "correct_pairwise": 0, + "f1": 0.14501234342141356 + }, + "spacy_sent": { + "recall": 0.0006666666666666666, + "precision": 0.10526315789473684, + "correct_pairwise": 0, + "f1": 0.001324942033786022 + }, + "pysbd": { + "recall": 0.0008888888888888889, + "precision": 0.09876543209876543, + "correct_pairwise": 0, + "f1": 0.0017619204933377384 + }, + "ersatz": { + "recall": 0.00022222222222222223, + "precision": 0.09090909090909091, + "correct_pairwise": 0, + "f1": 0.0004433606739082244 + } + }, + "ted2020-corrupted-social-media": {}, + "legal-CD_jug": {}, + "legal-CD_jug-corrupted-asr": {}, + "legal-CD_jug-corrupted-social-media": {}, + "legal-gesCode": {}, + "legal-gesCode-corrupted-asr": {}, + "legal-gesCode-corrupted-social-media": {}, + "legal-all-laws": { + "punkt": { + "recall": 0.6110802377614015, + "precision": 0.9146295680820066, + "correct_pairwise": 0.0, + "f1": 0.7326309653877026 + }, + "spacy_dp": { + "recall": 0.6788502911002993, + "precision": 0.6273689120448086, + "correct_pairwise": 0.0, + "f1": 0.6519638733969589 + }, + "spacy_sent": { + "recall": 0.267304146425098, + "precision": 0.39922980545596315, + "correct_pairwise": 0.0, + "f1": 0.3201233080271882 + }, + "pysbd": { + "recall": 0.6146930298226795, + "precision": 0.8256068776902111, + "correct_pairwise": 0.0, + "f1": 0.7043076801884866 + }, + "ersatz": { + "recall": 0.6028669505062375, + "precision": 0.7946143756965077, + "correct_pairwise": 0.0, + "f1": 0.6853508499666288 + } + }, + "legal-all-laws-corrupted-asr": { + "punkt": { + "recall": 0.00018426386585590566, + "precision": 0.0196078431372549, + "correct_pairwise": 0.0, + "f1": 0.0003650967506389193 + }, + "spacy_dp": { + "recall": 0.058576506723190515, + "precision": 0.18125071864334666, + "correct_pairwise": 0.0, + "f1": 0.0880252012943759 + }, + "spacy_sent": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0.0, + "f1": 0.0 + }, + "pysbd": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0.0, + "f1": 0.0 + }, + "ersatz": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0.0, + "f1": 0.0 + } + }, + "legal-all-laws-corrupted-social-media": {}, + "legal-all-judgements": { + "punkt": { + "recall": 0.627900773974595, + "precision": 0.6893184010838761, + "correct_pairwise": 0.0, + "f1": 0.6509144938429862 + }, + "spacy_dp": { + "recall": 0.7036834038013832, + "precision": 0.6735047920789652, + "correct_pairwise": 0.0, + "f1": 0.6820980107341197 + }, + "spacy_sent": { + "recall": 0.602922500985393, + "precision": 0.7701011850447579, + "correct_pairwise": 0.0, + "f1": 0.6686784144259688 + }, + "pysbd": { + "recall": 0.6230537322185206, + "precision": 0.7487892689720005, + "correct_pairwise": 0.0, + "f1": 0.6760849004221184 + }, + "ersatz": { + "recall": 0.5788758491535569, + "precision": 0.6284051197627135, + "correct_pairwise": 0.0, + "f1": 0.5976164549262956 + } + }, + "legal-all-judgements-corrupted-asr": { + "punkt": { + "recall": 0.027855769500135616, + "precision": 0.3167124979281545, + "correct_pairwise": 0.0, + "f1": 0.048983110895547514 + }, + "spacy_dp": { + "recall": 0.10855562902453109, + "precision": 0.18590738414484761, + "correct_pairwise": 0.0, + "f1": 0.1308178794774271 + }, + "spacy_sent": { + "recall": 0.0223186825971055, + "precision": 0.18285216826225367, + "correct_pairwise": 0.0, + "f1": 0.03767008998327682 + }, + "pysbd": { + "recall": 0.0025940810341104677, + "precision": 0.00821570209047523, + "correct_pairwise": 0.0, + "f1": 0.003934235710191861 + }, + "ersatz": { + "recall": 0.02305858295540053, + "precision": 0.27766884726614854, + "correct_pairwise": 0.0, + "f1": 0.04074564490893818 + } + }, + "legal-all-judgements-corrupted-social-media": {} + }, + "el": { + "opus100": { + "punkt": { + "recall": 0.7839195979899497, + "precision": 0.924292297564187, + "correct_pairwise": 0, + "f1": 0.8483383685800605 + }, + "spacy_dp": { + "recall": 0.9302065884980458, + "precision": 0.8918629550321199, + "correct_pairwise": 0, + "f1": 0.9106313200327959 + }, + "spacy_sent": { + "recall": 0.7453936348408711, + "precision": 0.9081632653061225, + "correct_pairwise": 0, + "f1": 0.8187672493100276 + }, + "pysbd": { + "recall": 0.4768285873813512, + "precision": 0.9133689839572192, + "correct_pairwise": 0, + "f1": 0.6265590608950844 + }, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": { + "recall": 0.8829268292682927, + "precision": 0.9757412398921833, + "correct_pairwise": 0, + "f1": 0.9270166453265044 + }, + "spacy_dp": { + "recall": 0.9341463414634147, + "precision": 0.945679012345679, + "correct_pairwise": 0, + "f1": 0.939877300613497 + }, + "spacy_sent": { + "recall": 0.848780487804878, + "precision": 0.9586776859504132, + "correct_pairwise": 0, + "f1": 0.9003880983182406 + }, + "pysbd": { + "recall": 0.8926829268292683, + "precision": 0.9289340101522843, + "correct_pairwise": 0, + "f1": 0.9104477611940299 + }, + "ersatz": null + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": { + "recall": 0.0011111111111111111, + "precision": 0.1694915254237288, + "correct_pairwise": 0, + "f1": 0.002207749199690915 + }, + "spacy_dp": { + "recall": 0.004666666666666667, + "precision": 0.21, + "correct_pairwise": 0, + "f1": 0.009130434782608695 + }, + "spacy_sent": { + "recall": 0.0007777777777777777, + "precision": 0.125, + "correct_pairwise": 0, + "f1": 0.0015459363957597175 + }, + "pysbd": { + "recall": 0.0017777777777777779, + "precision": 0.14814814814814814, + "correct_pairwise": 0, + "f1": 0.0035133948177426444 + }, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "en": { + "ersatz": { + "punkt": { + "recall": 0.9675511970002885, + "precision": 0.9866176470588235, + "correct_pairwise": 0, + "f1": 0.9769914081840687 + }, + "spacy_dp": { + "recall": 0.9793769829824055, + "precision": 0.9899416909620992, + "correct_pairwise": 0, + "f1": 0.984630998985066 + }, + "spacy_sent": { + "recall": 0.8807326218632824, + "precision": 0.9054114158636026, + "correct_pairwise": 0, + "f1": 0.8929015278894656 + }, + "pysbd": { + "recall": 0.6097490625901356, + "precision": 0.9393468118195957, + "correct_pairwise": 0, + "f1": 0.7394840402273722 + }, + "ersatz": { + "recall": 0.9766368618402077, + "precision": 0.9725692948441763, + "correct_pairwise": 0, + "f1": 0.9745988342807801 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "punkt": { + "recall": 0.8457655636567583, + "precision": 0.9223241590214067, + "correct_pairwise": 0, + "f1": 0.8823873610298419 + }, + "spacy_dp": { + "recall": 0.8676388109927089, + "precision": 0.9137625516834023, + "correct_pairwise": 0, + "f1": 0.8901035673187572 + }, + "spacy_sent": { + "recall": 0.8210880538418396, + "precision": 0.911014312383323, + "correct_pairwise": 0, + "f1": 0.863716814159292 + }, + "pysbd": { + "recall": 0.44195176668536174, + "precision": 0.9162790697674419, + "correct_pairwise": 0, + "f1": 0.596292092319334 + }, + "ersatz": { + "recall": 0.8272574312955693, + "precision": 0.9300126103404792, + "correct_pairwise": 0, + "f1": 0.875630750964678 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": { + "recall": 0.859026369168357, + "precision": 0.9625, + "correct_pairwise": 0, + "f1": 0.9078242229367631 + }, + "spacy_dp": { + "recall": 0.8762677484787018, + "precision": 0.9536423841059603, + "correct_pairwise": 0, + "f1": 0.9133192389006342 + }, + "spacy_sent": { + "recall": 0.8438133874239351, + "precision": 0.9369369369369369, + "correct_pairwise": 0, + "f1": 0.887940234791889 + }, + "pysbd": { + "recall": 0.6156186612576064, + "precision": 0.9696485623003195, + "correct_pairwise": 0, + "f1": 0.7531017369727048 + }, + "ersatz": { + "recall": 0.8245436105476673, + "precision": 0.9690107270560191, + "correct_pairwise": 0, + "f1": 0.890958904109589 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": { + "recall": 0.00011111111111111112, + "precision": 0.06666666666666667, + "correct_pairwise": 0, + "f1": 0.0002218524681087077 + }, + "spacy_dp": { + "recall": 0.08511111111111111, + "precision": 0.4516509433962264, + "correct_pairwise": 0, + "f1": 0.14323111443530293 + }, + "spacy_sent": { + "recall": 0.0005555555555555556, + "precision": 0.09615384615384616, + "correct_pairwise": 0, + "f1": 0.0011047282368537338 + }, + "pysbd": { + "recall": 0.0011111111111111111, + "precision": 0.18181818181818182, + "correct_pairwise": 0, + "f1": 0.0022087244616234123 + }, + "ersatz": { + "recall": 0.0003333333333333333, + "precision": 0.21428571428571427, + "correct_pairwise": 0, + "f1": 0.0006656312402928777 + } + }, + "ted2020-corrupted-social-media": {}, + "legal-CD_scotus": {}, + "legal-CD_scotus-corrupted-asr": {}, + "legal-CD_scotus-corrupted-social-media": {}, + "legal-CD_cyber_crime": {}, + "legal-CD_cyber_crime-corrupted-asr": {}, + "legal-CD_cyber_crime-corrupted-social-media": {}, + "legal-CD_intellectual_property": {}, + "legal-CD_intellectual_property-corrupted-asr": {}, + "legal-CD_intellectual_property-corrupted-social-media": {}, + "legal-CD_bva": {}, + "legal-CD_bva-corrupted-asr": {}, + "legal-CD_bva-corrupted-social-media": {}, + "legal-all-judgements": { + "punkt": { + "recall": 0.8055046203925332, + "precision": 0.7339993770133266, + "correct_pairwise": 0.0, + "f1": 0.7629657539230765 + }, + "spacy_dp": { + "recall": 0.8379297511217254, + "precision": 0.8564778109384532, + "correct_pairwise": 0.0, + "f1": 0.8451672604142533 + }, + "spacy_sent": { + "recall": 0.7401792198228426, + "precision": 0.7129276046042443, + "correct_pairwise": 0.0, + "f1": 0.7232017535574135 + }, + "pysbd": { + "recall": 0.7359549648236674, + "precision": 0.7762481827879161, + "correct_pairwise": 0.0, + "f1": 0.7502585787016597 + }, + "ersatz": { + "recall": 0.769306152555419, + "precision": 0.827642837776469, + "correct_pairwise": 0.0, + "f1": 0.7951781690515791 + } + }, + "legal-all-judgements-corrupted-asr": { + "punkt": { + "recall": 0.0012041598016787542, + "precision": 0.013164893617021277, + "correct_pairwise": 0.0, + "f1": 0.0021960257759280196 + }, + "spacy_dp": { + "recall": 0.013395441681692724, + "precision": 0.14265375321412518, + "correct_pairwise": 0.0, + "f1": 0.02382068481951557 + }, + "spacy_sent": { + "recall": 0.0009610581756333816, + "precision": 0.0027572168763878606, + "correct_pairwise": 0.0, + "f1": 0.0014222427476737823 + }, + "pysbd": { + "recall": 0.009090947857824015, + "precision": 0.03816229084940208, + "correct_pairwise": 0.0, + "f1": 0.013201148688975345 + }, + "ersatz": { + "recall": 0.0032007161304701496, + "precision": 0.024592699011303662, + "correct_pairwise": 0.0, + "f1": 0.005565477357656156 + } + }, + "legal-all-judgements-corrupted-social-media": {} + }, + "eo": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "es": { + "ersatz": { + "punkt": { + "recall": 0.9452303228146536, + "precision": 0.9845107669059312, + "correct_pairwise": 0, + "f1": 0.9644707623982236 + }, + "spacy_dp": { + "recall": 0.9394269133115706, + "precision": 0.9896828429499427, + "correct_pairwise": 0, + "f1": 0.9639002605135839 + }, + "spacy_sent": { + "recall": 0.8277112803772216, + "precision": 0.8604826546003017, + "correct_pairwise": 0, + "f1": 0.8437788870401183 + }, + "pysbd": { + "recall": 0.774392455567646, + "precision": 0.9226447709593777, + "correct_pairwise": 0, + "f1": 0.8420429895484126 + }, + "ersatz": { + "recall": 0.9463184620964817, + "precision": 0.9863894139886579, + "correct_pairwise": 0, + "f1": 0.965938541281007 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "punkt": { + "recall": 0.8781583380123527, + "precision": 0.9194591416813639, + "correct_pairwise": 0, + "f1": 0.8983342906375646 + }, + "spacy_dp": { + "recall": 0.8427849522740034, + "precision": 0.9214241866175568, + "correct_pairwise": 0, + "f1": 0.8803519061583577 + }, + "spacy_sent": { + "recall": 0.7478944413250983, + "precision": 0.7980826842420611, + "correct_pairwise": 0, + "f1": 0.7721739130434782 + }, + "pysbd": { + "recall": 0.5373385738349242, + "precision": 0.9114285714285715, + "correct_pairwise": 0, + "f1": 0.6760861886259274 + }, + "ersatz": { + "recall": 0.8725435148792813, + "precision": 0.9283154121863799, + "correct_pairwise": 0, + "f1": 0.8995658465991317 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": { + "recall": 0.9877260981912145, + "precision": 0.9813863928112966, + "correct_pairwise": 0, + "f1": 0.9845460399227303 + }, + "spacy_dp": { + "recall": 0.9909560723514211, + "precision": 0.9903163331181407, + "correct_pairwise": 0, + "f1": 0.9906360994510817 + }, + "spacy_sent": { + "recall": 0.8940568475452196, + "precision": 0.8826530612244898, + "correct_pairwise": 0, + "f1": 0.8883183568677792 + }, + "pysbd": { + "recall": 0.3029715762273902, + "precision": 0.975051975051975, + "correct_pairwise": 0, + "f1": 0.4622966978807294 + }, + "ersatz": { + "recall": 0.958656330749354, + "precision": 0.991315965263861, + "correct_pairwise": 0, + "f1": 0.9747126436781608 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": { + "recall": 0.0022222222222222222, + "precision": 0.14925373134328357, + "correct_pairwise": 0, + "f1": 0.004379242391066346 + }, + "spacy_dp": { + "recall": 0.0071111111111111115, + "precision": 0.25196850393700787, + "correct_pairwise": 0, + "f1": 0.01383185649448887 + }, + "spacy_sent": { + "recall": 0.0044444444444444444, + "precision": 0.1941747572815534, + "correct_pairwise": 0, + "f1": 0.008689984792526613 + }, + "pysbd": { + "recall": 0.002111111111111111, + "precision": 0.19, + "correct_pairwise": 0, + "f1": 0.004175824175824175 + }, + "ersatz": { + "recall": 0.0033333333333333335, + "precision": 0.19480519480519481, + "correct_pairwise": 0, + "f1": 0.006554511688879179 + } + }, + "ted2020-corrupted-social-media": {}, + "legal-CD_wipolex": {}, + "legal-CD_wipolex-corrupted-asr": {}, + "legal-CD_wipolex-corrupted-social-media": {}, + "legal-CD_multi_legal": {}, + "legal-CD_multi_legal-corrupted-asr": {}, + "legal-CD_multi_legal-corrupted-social-media": {}, + "legal-CriminalCode": {}, + "legal-CriminalCode-corrupted-asr": {}, + "legal-CriminalCode-corrupted-social-media": {}, + "legal-CivilCode": {}, + "legal-CivilCode-corrupted-asr": {}, + "legal-CivilCode-corrupted-social-media": {}, + "legal-constitution": {}, + "legal-constitution-corrupted-asr": {}, + "legal-constitution-corrupted-social-media": {}, + "legal-all-laws": { + "punkt": { + "recall": 0.8183417841101599, + "precision": 0.9616453757804586, + "correct_pairwise": 0.26229508196721313, + "f1": 0.8768659017940752 + }, + "spacy_dp": { + "recall": 0.8194919897381303, + "precision": 0.9520293457123263, + "correct_pairwise": 0.25136612021857924, + "f1": 0.8734054455324901 + }, + "spacy_sent": { + "recall": 0.816566716755442, + "precision": 0.9537084192126035, + "correct_pairwise": 0.26229508196721313, + "f1": 0.8726965114993499 + }, + "pysbd": { + "recall": 0.6977825428023867, + "precision": 0.9572477185610584, + "correct_pairwise": 0.18032786885245902, + "f1": 0.7967651011412472 + }, + "ersatz": { + "recall": 0.7106524938567865, + "precision": 0.9980359920601787, + "correct_pairwise": 0.18579234972677597, + "f1": 0.8185103386711878 + } + }, + "legal-all-laws-corrupted-asr": { + "punkt": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0.0, + "f1": 0.0 + }, + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0.0, + "f1": 0.0 + }, + "spacy_sent": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0.0, + "f1": 0.0 + }, + "pysbd": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0.0, + "f1": 0.0 + }, + "ersatz": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0.0, + "f1": 0.0 + } + }, + "legal-all-laws-corrupted-social-media": {}, + "legal-all-judgements": { + "punkt": { + "recall": 0.5622868252714968, + "precision": 0.8231222380083449, + "correct_pairwise": 0.0, + "f1": 0.6524177796136126 + }, + "spacy_dp": { + "recall": 0.5599282781152487, + "precision": 0.8181914883777187, + "correct_pairwise": 0.0, + "f1": 0.6491552830692907 + }, + "spacy_sent": { + "recall": 0.5565086359445321, + "precision": 0.8612893843364282, + "correct_pairwise": 0.0, + "f1": 0.6598815530828445 + }, + "pysbd": { + "recall": 0.49952265708875115, + "precision": 0.8123520088885258, + "correct_pairwise": 0.0, + "f1": 0.6082012536567349 + }, + "ersatz": { + "recall": 0.5182087296752135, + "precision": 0.8560149051844144, + "correct_pairwise": 0.0, + "f1": 0.635946902166459 + } + }, + "legal-all-judgements-corrupted-asr": { + "punkt": { + "recall": 0.023824305253968198, + "precision": 0.13637174791020948, + "correct_pairwise": 0.0, + "f1": 0.038015263765051426 + }, + "spacy_dp": { + "recall": 0.029936473259667203, + "precision": 0.1318896079765645, + "correct_pairwise": 0.0, + "f1": 0.045561793956961125 + }, + "spacy_sent": { + "recall": 0.02577790720757015, + "precision": 0.1401931401931402, + "correct_pairwise": 0.0, + "f1": 0.04002494602346138 + }, + "pysbd": { + "recall": 0.021572978659242036, + "precision": 0.2330891330891331, + "correct_pairwise": 0.0, + "f1": 0.03800104214967322 + }, + "ersatz": { + "recall": 0.02662282544006751, + "precision": 0.32048229548229545, + "correct_pairwise": 0.0, + "f1": 0.046867959869149656 + } + }, + "legal-all-judgements-corrupted-social-media": {} + }, + "et": { + "ersatz": { + "punkt": { + "recall": 0.9641873278236914, + "precision": 0.9864712514092446, + "correct_pairwise": 0, + "f1": 0.9752020061298412 + }, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.8545454545454545, + "precision": 0.8065522620904836, + "correct_pairwise": 0, + "f1": 0.8298555377207063 + }, + "pysbd": null, + "ersatz": { + "recall": 0.9652892561983472, + "precision": 0.9948892674616695, + "correct_pairwise": 0, + "f1": 0.9798657718120806 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "punkt": { + "recall": 0.8416619876473891, + "precision": 0.9134673979280926, + "correct_pairwise": 0, + "f1": 0.8760958503798948 + }, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.8225715889949466, + "precision": 0.8648170011806375, + "correct_pairwise": 0, + "f1": 0.8431654676258992 + }, + "pysbd": null, + "ersatz": { + "recall": 0.8304323413812464, + "precision": 0.9232209737827716, + "correct_pairwise": 0, + "f1": 0.8743718592964824 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": { + "recall": 0.9118257261410788, + "precision": 0.9617067833698031, + "correct_pairwise": 0, + "f1": 0.9361022364217253 + }, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.8623789764868603, + "precision": 0.872027972027972, + "correct_pairwise": 0, + "f1": 0.8671766342141863 + }, + "pysbd": null, + "ersatz": { + "recall": 0.8924619640387276, + "precision": 0.9688438438438438, + "correct_pairwise": 0, + "f1": 0.9290856731461484 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": { + "recall": 0.00011111111111111112, + "precision": 0.02564102564102564, + "correct_pairwise": 0, + "f1": 0.00022126341409447952 + }, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.00011111111111111112, + "precision": 0.02564102564102564, + "correct_pairwise": 0, + "f1": 0.00022126341409447952 + }, + "pysbd": null, + "ersatz": { + "recall": 0.00044444444444444447, + "precision": 0.13793103448275862, + "correct_pairwise": 0, + "f1": 0.0008860338907963231 + } + }, + "ted2020-corrupted-social-media": {}, + "short-sequences": { + "punkt": { + "recall": 0.8258805061501456, + "precision": 0.9706567242281533, + "correct_pairwise": 0.46798029556650245, + "f1": 0.872666765363673 + }, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.8186425837579585, + "precision": 0.9666904250648093, + "correct_pairwise": 0.458128078817734, + "f1": 0.8647540599924126 + }, + "pysbd": null, + "ersatz": { + "recall": 0.8256890582985992, + "precision": 0.9782680783912313, + "correct_pairwise": 0.5073891625615764, + "f1": 0.878697441176868 + } + }, + "short-sequences-corrupted-asr": { + "punkt": { + "recall": 0.2777854577796246, + "precision": 0.9926108374384236, + "correct_pairwise": 0.0, + "f1": 0.4155368995950679 + }, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.2777854577796246, + "precision": 0.9926108374384236, + "correct_pairwise": 0.0, + "f1": 0.4155368995950679 + }, + "pysbd": null, + "ersatz": { + "recall": 0.28143826796601007, + "precision": 0.9817733990147783, + "correct_pairwise": 0.0, + "f1": 0.4183411748001728 + } + }, + "short-sequences-corrupted-social-media": {} + }, + "eu": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.7462099943851769, + "precision": 0.8400758533501896, + "correct_pairwise": 0, + "f1": 0.7903657448706513 + }, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.9122915379864114, + "precision": 0.9371827411167513, + "correct_pairwise": 0, + "f1": 0.9245696400625979 + }, + "pysbd": null, + "ersatz": null + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "pysbd": null, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "fa": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.4148106904231626, + "precision": 0.6616341030195382, + "correct_pairwise": 0, + "f1": 0.5099247091033539 + }, + "pysbd": { + "recall": 0.3123608017817372, + "precision": 0.6084598698481561, + "correct_pairwise": 0, + "f1": 0.41280353200883 + }, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.9969442322383499, + "precision": 0.9954233409610984, + "correct_pairwise": 0, + "f1": 0.9961832061068703 + }, + "pysbd": { + "recall": 0.9992360580595875, + "precision": 0.9768483943241225, + "correct_pairwise": 0, + "f1": 0.987915407854985 + }, + "ersatz": null + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "pysbd": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "fi": { + "ersatz": { + "punkt": { + "recall": 0.9253897550111359, + "precision": 0.9946140035906643, + "correct_pairwise": 0, + "f1": 0.9587539659648111 + }, + "spacy_dp": { + "recall": 0.9465478841870824, + "precision": 0.9609949123798757, + "correct_pairwise": 0, + "f1": 0.9537166900420758 + }, + "spacy_sent": { + "recall": 0.9192650334075724, + "precision": 0.9769230769230769, + "correct_pairwise": 0, + "f1": 0.9472174411933447 + }, + "pysbd": null, + "ersatz": { + "recall": 0.9253897550111359, + "precision": 0.9975990396158463, + "correct_pairwise": 0, + "f1": 0.9601386481802425 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "punkt": { + "recall": 0.9329608938547486, + "precision": 0.92880978865406, + "correct_pairwise": 0, + "f1": 0.9308807134894092 + }, + "spacy_dp": { + "recall": 0.9530726256983241, + "precision": 0.8913270637408568, + "correct_pairwise": 0, + "f1": 0.9211663066954643 + }, + "spacy_sent": { + "recall": 0.912290502793296, + "precision": 0.9077265147304058, + "correct_pairwise": 0, + "f1": 0.910002786291446 + }, + "pysbd": null, + "ersatz": { + "recall": 0.9083798882681564, + "precision": 0.9470005824111823, + "correct_pairwise": 0, + "f1": 0.9272882805816938 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": { + "recall": 0.8863473909935669, + "precision": 0.9695074276778733, + "correct_pairwise": 0, + "f1": 0.9260642270351007 + }, + "spacy_dp": { + "recall": 0.9442458899213724, + "precision": 0.9531024531024531, + "correct_pairwise": 0, + "f1": 0.9486535008976661 + }, + "spacy_sent": { + "recall": 0.8434596140100071, + "precision": 0.899390243902439, + "correct_pairwise": 0, + "f1": 0.8705274806344523 + }, + "pysbd": null, + "ersatz": { + "recall": 0.8863473909935669, + "precision": 0.974076983503535, + "correct_pairwise": 0, + "f1": 0.9281437125748503 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "spacy_dp": { + "recall": 0.010444444444444444, + "precision": 0.39662447257383965, + "correct_pairwise": 0, + "f1": 0.020352928439969685 + }, + "spacy_sent": { + "recall": 0.00011111111111111112, + "precision": 0.0625, + "correct_pairwise": 0, + "f1": 0.00022182786157941436 + }, + "pysbd": null, + "ersatz": { + "recall": 0.0003333333333333333, + "precision": 0.15, + "correct_pairwise": 0, + "f1": 0.0006651884700665188 + } + }, + "ted2020-corrupted-social-media": {} + }, + "fr": { + "ersatz": { + "punkt": { + "recall": 0.9303415941058272, + "precision": 0.9921428571428571, + "correct_pairwise": 0, + "f1": 0.9602488765986864 + }, + "spacy_dp": { + "recall": 0.9048894842598795, + "precision": 0.8158212560386473, + "correct_pairwise": 0, + "f1": 0.8580501746586218 + }, + "spacy_sent": { + "recall": 0.8774279973208305, + "precision": 0.9323843416370107, + "correct_pairwise": 0, + "f1": 0.904071773636991 + }, + "pysbd": { + "recall": 0.927662424648359, + "precision": 0.99568655643422, + "correct_pairwise": 0, + "f1": 0.9604715672676838 + }, + "ersatz": { + "recall": 0.9296718017414601, + "precision": 0.9978432782171099, + "correct_pairwise": 0, + "f1": 0.9625520110957003 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "punkt": { + "recall": 0.8359639233370914, + "precision": 0.88116458704694, + "correct_pairwise": 0, + "f1": 0.857969337575933 + }, + "spacy_dp": { + "recall": 0.8979706877113867, + "precision": 0.7909632571996028, + "correct_pairwise": 0, + "f1": 0.8410770855332629 + }, + "spacy_sent": { + "recall": 0.8167981961668546, + "precision": 0.8702702702702703, + "correct_pairwise": 0, + "f1": 0.8426868275661529 + }, + "pysbd": { + "recall": 0.7576099210822999, + "precision": 0.8676565526145901, + "correct_pairwise": 0, + "f1": 0.8089076136021666 + }, + "ersatz": { + "recall": 0.8201803833145435, + "precision": 0.9071072319201995, + "correct_pairwise": 0, + "f1": 0.8614564831261101 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": { + "recall": 0.9545454545454546, + "precision": 0.9861878453038674, + "correct_pairwise": 0, + "f1": 0.970108695652174 + }, + "spacy_dp": { + "recall": 0.9705882352941176, + "precision": 0.8663484486873508, + "correct_pairwise": 0, + "f1": 0.9155107187894073 + }, + "spacy_sent": { + "recall": 0.9278074866310161, + "precision": 0.9747191011235955, + "correct_pairwise": 0, + "f1": 0.9506849315068494 + }, + "pysbd": { + "recall": 0.45187165775401067, + "precision": 0.9941176470588236, + "correct_pairwise": 0, + "f1": 0.6213235294117646 + }, + "ersatz": { + "recall": 0.9572192513368984, + "precision": 0.988950276243094, + "correct_pairwise": 0, + "f1": 0.9728260869565218 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": { + "recall": 0.00044444444444444447, + "precision": 0.1, + "correct_pairwise": 0, + "f1": 0.0008849557522123894 + }, + "spacy_dp": { + "recall": 0.007, + "precision": 0.14482758620689656, + "correct_pairwise": 0, + "f1": 0.013354531001589825 + }, + "spacy_sent": { + "recall": 0.00044444444444444447, + "precision": 0.09090909090909091, + "correct_pairwise": 0, + "f1": 0.0008845643520566122 + }, + "pysbd": { + "recall": 0.0017777777777777779, + "precision": 0.2711864406779661, + "correct_pairwise": 0, + "f1": 0.0035323987195054647 + }, + "ersatz": { + "recall": 0.0006666666666666666, + "precision": 0.1875, + "correct_pairwise": 0, + "f1": 0.001328609388839681 + } + }, + "ted2020-corrupted-social-media": {}, + "legal-CD_swiss_judgement": {}, + "legal-CD_swiss_judgement-corrupted-asr": {}, + "legal-CD_swiss_judgement-corrupted-social-media": {}, + "legal-CriminalCode": {}, + "legal-CriminalCode-corrupted-asr": {}, + "legal-CriminalCode-corrupted-social-media": {}, + "legal-CivilCode": {}, + "legal-CivilCode-corrupted-asr": {}, + "legal-CivilCode-corrupted-social-media": {}, + "legal-constitution": {}, + "legal-constitution-corrupted-asr": {}, + "legal-constitution-corrupted-social-media": {}, + "legal-all-laws": { + "punkt": { + "recall": 0.4286560090522883, + "precision": 0.6772163067506205, + "correct_pairwise": 0.02178649237472767, + "f1": 0.5149316257132532 + }, + "spacy_dp": { + "recall": 0.7586175095768077, + "precision": 0.7631145115147238, + "correct_pairwise": 0.3899782135076253, + "f1": 0.7430228798374218 + }, + "spacy_sent": { + "recall": 0.42801837700895395, + "precision": 0.6855055349948509, + "correct_pairwise": 0.02178649237472767, + "f1": 0.5176107821916892 + }, + "pysbd": { + "recall": 0.415886861644407, + "precision": 0.6727880933349734, + "correct_pairwise": 0.008714596949891068, + "f1": 0.5048081279186801 + }, + "ersatz": { + "recall": 0.4266965814065862, + "precision": 0.6855614663019205, + "correct_pairwise": 0.02178649237472767, + "f1": 0.5168431057956944 + } + }, + "legal-all-laws-corrupted-asr": { + "punkt": { + "recall": 4.841442749939482e-05, + "precision": 0.0007262164124909223, + "correct_pairwise": 0.0, + "f1": 9.07770515613653e-05 + }, + "spacy_dp": { + "recall": 0.03911850664702132, + "precision": 0.07204904753924361, + "correct_pairwise": 0.023965141612200435, + "f1": 0.0443734159674756 + }, + "spacy_sent": { + "recall": 4.841442749939482e-05, + "precision": 0.002178649237472767, + "correct_pairwise": 0.0, + "f1": 9.472387989012031e-05 + }, + "pysbd": { + "recall": 0.0010145980023786218, + "precision": 0.0037672476397966593, + "correct_pairwise": 0.0, + "f1": 0.0015427991206537917 + }, + "ersatz": { + "recall": 0.0008714596949891067, + "precision": 0.0034858387799564274, + "correct_pairwise": 0.0, + "f1": 0.0013507625272331154 + } + }, + "legal-all-laws-corrupted-social-media": {}, + "legal-all-judgements": { + "punkt": { + "recall": 0.7788523732456694, + "precision": 0.7662984397159626, + "correct_pairwise": 0.0, + "f1": 0.7564528110312992 + }, + "spacy_dp": { + "recall": 0.8531669548014641, + "precision": 0.638083299444851, + "correct_pairwise": 0.0, + "f1": 0.7157576348237682 + }, + "spacy_sent": { + "recall": 0.7510145206884017, + "precision": 0.762138958425231, + "correct_pairwise": 0.0, + "f1": 0.7392909697578267 + }, + "pysbd": { + "recall": 0.7670795026391336, + "precision": 0.7242743413075078, + "correct_pairwise": 0.0, + "f1": 0.7421646707759868 + }, + "ersatz": { + "recall": 0.7740569375888892, + "precision": 0.8753218587286918, + "correct_pairwise": 0.0, + "f1": 0.8152240875562068 + } + }, + "legal-all-judgements-corrupted-asr": { + "punkt": { + "recall": 0.00981104937784479, + "precision": 0.03607997401807608, + "correct_pairwise": 0.0, + "f1": 0.013580901736371302 + }, + "spacy_dp": { + "recall": 0.055750786744406, + "precision": 0.17668364386299562, + "correct_pairwise": 0.0, + "f1": 0.07873273487699088 + }, + "spacy_sent": { + "recall": 0.00981104937784479, + "precision": 0.03570618263528267, + "correct_pairwise": 0.0, + "f1": 0.01364315242538612 + }, + "pysbd": { + "recall": 0.17364082598952116, + "precision": 0.3303464591069173, + "correct_pairwise": 0.0, + "f1": 0.21722915107457527 + }, + "ersatz": { + "recall": 0.0036846881274779017, + "precision": 0.04246386506922905, + "correct_pairwise": 0.0, + "f1": 0.006564483451710907 + } + }, + "legal-all-judgements-corrupted-social-media": {} + }, + "fy": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {} + }, + "ga": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.4013452914798206, + "precision": 0.8453364817001181, + "correct_pairwise": 0, + "f1": 0.5442797415431395 + }, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.8431372549019608, + "precision": 0.8472906403940886, + "correct_pairwise": 0, + "f1": 0.8452088452088452 + }, + "pysbd": null, + "ersatz": null + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "pysbd": null, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "gd": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {} + }, + "gl": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "gu": { + "ersatz": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.017467248908296942, + "precision": 0.9411764705882353, + "correct_pairwise": 0, + "f1": 0.03429796355841372 + }, + "pysbd": null, + "ersatz": { + "recall": 0.8941048034934498, + "precision": 0.997563946406821, + "correct_pairwise": 0, + "f1": 0.9430051813471502 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.017826336975273145, + "precision": 0.45588235294117646, + "correct_pairwise": 0, + "f1": 0.03431101272827891 + }, + "pysbd": null, + "ersatz": { + "recall": 0.12478435882691202, + "precision": 0.6932907348242812, + "correct_pairwise": 0, + "f1": 0.2115009746588694 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "pysbd": null, + "ersatz": { + "recall": 0.003651172588119646, + "precision": 0.6046511627906976, + "correct_pairwise": 0, + "f1": 0.007258514796203239 + } + }, + "ted2020-corrupted-social-media": {} + }, + "ha": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "he": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.9131403118040089, + "precision": 0.9136490250696379, + "correct_pairwise": 0, + "f1": 0.9133945976051239 + }, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.8838526912181303, + "precision": 0.9968051118210862, + "correct_pairwise": 0, + "f1": 0.9369369369369368 + }, + "pysbd": null, + "ersatz": null + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "pysbd": null, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "hi": { + "ersatz": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.9426807760141094, + "precision": 0.8457278481012658, + "correct_pairwise": 0, + "f1": 0.8915763135946623 + }, + "pysbd": { + "recall": 0.8258377425044092, + "precision": 0.9304520615996026, + "correct_pairwise": 0, + "f1": 0.8750291987853306 + }, + "ersatz": { + "recall": 0.9567901234567902, + "precision": 0.9796839729119639, + "correct_pairwise": 0, + "f1": 0.9681017175998217 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.4577702702702703, + "precision": 0.6457505957108817, + "correct_pairwise": 0, + "f1": 0.5357495881383856 + }, + "pysbd": { + "recall": 0.15822072072072071, + "precision": 0.42319277108433734, + "correct_pairwise": 0, + "f1": 0.23032786885245898 + }, + "ersatz": { + "recall": 0.4966216216216216, + "precision": 0.6961325966850829, + "correct_pairwise": 0, + "f1": 0.5796910943148208 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.9927392739273927, + "precision": 0.9054786273329319, + "correct_pairwise": 0, + "f1": 0.947103274559194 + }, + "pysbd": { + "recall": 0.9953795379537954, + "precision": 1.0, + "correct_pairwise": 0, + "f1": 0.9976844194508766 + }, + "ersatz": { + "recall": 0.9953795379537954, + "precision": 0.994067237969677, + "correct_pairwise": 0, + "f1": 0.9947229551451188 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "pysbd": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "ersatz": { + "recall": 0.002, + "precision": 0.15384615384615385, + "correct_pairwise": 0, + "f1": 0.003948667324777887 + } + }, + "ted2020-corrupted-social-media": {} + }, + "hu": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.9031897034135422, + "precision": 0.9165247018739353, + "correct_pairwise": 0, + "f1": 0.9098083427282976 + }, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.8985148514851485, + "precision": 0.8962962962962963, + "correct_pairwise": 0, + "f1": 0.8974042027194067 + }, + "pysbd": null, + "ersatz": null + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.00011111111111111112, + "precision": 0.041666666666666664, + "correct_pairwise": 0, + "f1": 0.0002216312056737589 + }, + "pysbd": null, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "hy": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.008860759493670886, + "precision": 0.7, + "correct_pairwise": 0, + "f1": 0.017499999999999998 + }, + "pysbd": { + "recall": 0.4558544303797468, + "precision": 0.8117779656241195, + "correct_pairwise": 0, + "f1": 0.5838484142263654 + }, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "pysbd": { + "recall": 0.8691588785046729, + "precision": 0.9957173447537473, + "correct_pairwise": 0, + "f1": 0.9281437125748503 + }, + "ersatz": null + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "pysbd": { + "recall": 0.00022222222222222223, + "precision": 0.0625, + "correct_pairwise": 0, + "f1": 0.0004428697962798937 + }, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "id": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.8510517339397385, + "precision": 0.8985594237695078, + "correct_pairwise": 0, + "f1": 0.8741605839416059 + }, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.9422222222222222, + "precision": 0.9370165745856354, + "correct_pairwise": 0, + "f1": 0.939612188365651 + }, + "pysbd": null, + "ersatz": null + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "pysbd": null, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "ig": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "is": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.9335195530726257, + "precision": 0.9262749445676275, + "correct_pairwise": 0, + "f1": 0.9298831385642737 + }, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.9566903684550744, + "precision": 0.9164086687306502, + "correct_pairwise": 0, + "f1": 0.9361163820366857 + }, + "pysbd": null, + "ersatz": null + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.0063604240282685515, + "precision": 0.375, + "correct_pairwise": 0, + "f1": 0.012508686587908272 + }, + "pysbd": null, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "it": { + "opus100": { + "punkt": { + "recall": 0.8643497757847534, + "precision": 0.8851894374282434, + "correct_pairwise": 0, + "f1": 0.8746454906409529 + }, + "spacy_dp": { + "recall": 0.867152466367713, + "precision": 0.838937093275488, + "correct_pairwise": 0, + "f1": 0.8528114663726571 + }, + "spacy_sent": { + "recall": 0.8340807174887892, + "precision": 0.8706846108835576, + "correct_pairwise": 0, + "f1": 0.8519896936730604 + }, + "pysbd": { + "recall": 0.5902466367713004, + "precision": 0.865953947368421, + "correct_pairwise": 0, + "f1": 0.702 + }, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": { + "recall": 0.9445727482678984, + "precision": 0.960093896713615, + "correct_pairwise": 0, + "f1": 0.9522700814901048 + }, + "spacy_dp": { + "recall": 0.9953810623556582, + "precision": 0.9953810623556582, + "correct_pairwise": 0, + "f1": 0.9953810623556582 + }, + "spacy_sent": { + "recall": 0.9168591224018475, + "precision": 0.9474940334128878, + "correct_pairwise": 0, + "f1": 0.931924882629108 + }, + "pysbd": { + "recall": 0.5981524249422633, + "precision": 1.0, + "correct_pairwise": 0, + "f1": 0.7485549132947976 + }, + "ersatz": null + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": { + "recall": 0.00022222222222222223, + "precision": 0.05263157894736842, + "correct_pairwise": 0, + "f1": 0.0004425757911042266 + }, + "spacy_dp": { + "recall": 0.001, + "precision": 0.1, + "correct_pairwise": 0, + "f1": 0.0019801980198019802 + }, + "spacy_sent": { + "recall": 0.00022222222222222223, + "precision": 0.041666666666666664, + "correct_pairwise": 0, + "f1": 0.00044208664898320074 + }, + "pysbd": { + "recall": 0.0012222222222222222, + "precision": 0.2682926829268293, + "correct_pairwise": 0, + "f1": 0.0024333591416878663 + }, + "ersatz": null + }, + "ted2020-corrupted-social-media": {}, + "legal-CD_multi_legal": {}, + "legal-CD_multi_legal-corrupted-asr": {}, + "legal-CD_multi_legal-corrupted-social-media": {}, + "legal-CD_swiss_judgement": {}, + "legal-CD_swiss_judgement-corrupted-asr": {}, + "legal-CD_swiss_judgement-corrupted-social-media": {}, + "legal-CriminalCode": {}, + "legal-CriminalCode-corrupted-asr": {}, + "legal-CriminalCode-corrupted-social-media": {}, + "legal-CivilCode": {}, + "legal-CivilCode-corrupted-asr": {}, + "legal-CivilCode-corrupted-social-media": {}, + "legal-constitution": {}, + "legal-constitution-corrupted-asr": {}, + "legal-constitution-corrupted-social-media": {}, + "legal-all-laws": { + "punkt": { + "recall": 0.48313708663495625, + "precision": 0.4520000722363275, + "correct_pairwise": 0.015625, + "f1": 0.45290270241766445 + }, + "spacy_dp": { + "recall": 0.507955779227086, + "precision": 0.622861765570337, + "correct_pairwise": 0.12357954545454546, + "f1": 0.5435105810182068 + }, + "spacy_sent": { + "recall": 0.45843886030320674, + "precision": 0.6339565697875353, + "correct_pairwise": 0.11505681818181818, + "f1": 0.5179914303849871 + }, + "pysbd": { + "recall": 0.4893078906573226, + "precision": 0.6688938200787781, + "correct_pairwise": 0.11647727272727272, + "f1": 0.5504824717116096 + }, + "ersatz": null + }, + "legal-all-laws-corrupted-asr": { + "punkt": { + "recall": 0.012757034632034632, + "precision": 0.0234375, + "correct_pairwise": 0.0014204545454545455, + "f1": 0.015584415584415583 + }, + "spacy_dp": { + "recall": 0.020052647005772004, + "precision": 0.03413825757575757, + "correct_pairwise": 0.005681818181818182, + "f1": 0.022987274056353004 + }, + "spacy_sent": { + "recall": 0.013514610389610387, + "precision": 0.024857954545454544, + "correct_pairwise": 0.0014204545454545455, + "f1": 0.016558441558441557 + }, + "pysbd": { + "recall": 0.002130681818181818, + "precision": 0.002840909090909091, + "correct_pairwise": 0.002840909090909091, + "f1": 0.002367424242424242 + }, + "ersatz": null + }, + "legal-all-laws-corrupted-social-media": {}, + "legal-all-judgements": { + "punkt": { + "recall": 0.8383178310024467, + "precision": 0.664069368838985, + "correct_pairwise": 0.0, + "f1": 0.7288448969040336 + }, + "spacy_dp": { + "recall": 0.8720241864586609, + "precision": 0.6608076019592067, + "correct_pairwise": 0.0, + "f1": 0.73951613509609 + }, + "spacy_sent": { + "recall": 0.7479171963199338, + "precision": 0.720796307024293, + "correct_pairwise": 0.0, + "f1": 0.723203116933546 + }, + "pysbd": { + "recall": 0.697306242925527, + "precision": 0.8192072734438138, + "correct_pairwise": 0.0, + "f1": 0.7412556069474203 + }, + "ersatz": null + }, + "legal-all-judgements-corrupted-asr": { + "punkt": { + "recall": 0.0075215594571841835, + "precision": 0.0688632595895501, + "correct_pairwise": 0.0, + "f1": 0.013488028622707387 + }, + "spacy_dp": { + "recall": 0.03027572903757546, + "precision": 0.28984884908622827, + "correct_pairwise": 0.0, + "f1": 0.05308396368699987 + }, + "spacy_sent": { + "recall": 0.007272679417363377, + "precision": 0.06814868804664723, + "correct_pairwise": 0.0, + "f1": 0.013114892165320843 + }, + "pysbd": { + "recall": 0.15603123429365598, + "precision": 0.3955351387682214, + "correct_pairwise": 0.0, + "f1": 0.19976770841455596 + }, + "ersatz": null + }, + "legal-all-judgements-corrupted-social-media": {} + }, + "ja": { + "ersatz": { + "punkt": null, + "spacy_dp": { + "recall": 0.8475103734439834, + "precision": 0.9819711538461539, + "correct_pairwise": 0, + "f1": 0.9097995545657016 + }, + "spacy_sent": { + "recall": 0.7925311203319502, + "precision": 0.8967136150234741, + "correct_pairwise": 0, + "f1": 0.8414096916299558 + }, + "pysbd": { + "recall": 0.7738589211618258, + "precision": 0.9946666666666667, + "correct_pairwise": 0, + "f1": 0.8704784130688448 + }, + "ersatz": { + "recall": 0.75, + "precision": 0.9986187845303868, + "correct_pairwise": 0, + "f1": 0.8566350710900473 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "punkt": null, + "spacy_dp": { + "recall": 0.28236607142857145, + "precision": 0.864957264957265, + "correct_pairwise": 0, + "f1": 0.42574673958771564 + }, + "spacy_sent": { + "recall": 0.29854910714285715, + "precision": 0.8268933539412674, + "correct_pairwise": 0, + "f1": 0.43870438704387044 + }, + "pysbd": { + "recall": 0.28683035714285715, + "precision": 0.8923611111111112, + "correct_pairwise": 0, + "f1": 0.43412162162162166 + }, + "ersatz": { + "recall": 0.17578125, + "precision": 0.7894736842105263, + "correct_pairwise": 0, + "f1": 0.28753993610223644 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": null, + "spacy_dp": { + "recall": 0.9692622950819673, + "precision": 0.9874739039665971, + "correct_pairwise": 0, + "f1": 0.9782833505687694 + }, + "spacy_sent": { + "recall": 0.9528688524590164, + "precision": 0.9707724425887265, + "correct_pairwise": 0, + "f1": 0.9617373319544984 + }, + "pysbd": { + "recall": 0.9672131147540983, + "precision": 0.9915966386554622, + "correct_pairwise": 0, + "f1": 0.979253112033195 + }, + "ersatz": { + "recall": 0.8770491803278688, + "precision": 1.0, + "correct_pairwise": 0, + "f1": 0.9344978165938864 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": { + "recall": 0.001889098788754306, + "precision": 0.2125, + "correct_pairwise": 0, + "f1": 0.003744905826632889 + }, + "spacy_sent": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "pysbd": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "ersatz": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "jv": { + "ud": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {} + }, + "ka": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "kk": { + "ersatz": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": { + "recall": 0.48834628190899, + "precision": 0.9565217391304348, + "correct_pairwise": 0, + "f1": 0.6465833945628214 + }, + "ersatz": { + "recall": 0.9944506104328524, + "precision": 0.996662958843159, + "correct_pairwise": 0, + "f1": 0.9955555555555555 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": { + "recall": 0.2448394495412844, + "precision": 0.662015503875969, + "correct_pairwise": 0, + "f1": 0.35747174550020927 + }, + "ersatz": { + "recall": 0.25229357798165136, + "precision": 0.7638888888888888, + "correct_pairwise": 0, + "f1": 0.3793103448275862 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": { + "recall": 0.9596602972399151, + "precision": 0.9495798319327731, + "correct_pairwise": 0, + "f1": 0.9545934530095036 + }, + "ersatz": { + "recall": 0.9511677282377919, + "precision": 0.9603429796355841, + "correct_pairwise": 0, + "f1": 0.9557333333333333 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "ersatz": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "km": { + "ersatz": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": { + "recall": 0.1873822975517891, + "precision": 0.9521531100478469, + "correct_pairwise": 0, + "f1": 0.3131392604248623 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "kn": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.05766871165644172, + "precision": 0.26704545454545453, + "correct_pairwise": 0, + "f1": 0.09485368314833502 + }, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "pysbd": null, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "ko": { + "opus100": { + "punkt": null, + "spacy_dp": { + "recall": 0.3219101123595506, + "precision": 0.8463810930576071, + "correct_pairwise": 0, + "f1": 0.4664224664224665 + }, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": null, + "spacy_dp": { + "recall": 0.999514091350826, + "precision": 0.9990286546867412, + "correct_pairwise": 0, + "f1": 0.9992713140636384 + }, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": { + "recall": 0.005222222222222222, + "precision": 0.42727272727272725, + "correct_pairwise": 0, + "f1": 0.01031833150384193 + }, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "ku": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "ky": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.04563492063492063, + "precision": 0.4394904458598726, + "correct_pairwise": 0, + "f1": 0.08268424206111442 + }, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "pysbd": null, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "la": { + "ud": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.8396825396825397, + "precision": 0.9566003616636528, + "correct_pairwise": 0, + "f1": 0.8943364327979713 + }, + "pysbd": null, + "ersatz": null + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "pysbd": null, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "lt": { + "ersatz": { + "punkt": null, + "spacy_dp": { + "recall": 0.8211111111111111, + "precision": 0.6887232059645852, + "correct_pairwise": 0, + "f1": 0.749113025848961 + }, + "spacy_sent": { + "recall": 0.8166666666666667, + "precision": 0.6544968833481746, + "correct_pairwise": 0, + "f1": 0.726643598615917 + }, + "pysbd": null, + "ersatz": { + "recall": 0.9177777777777778, + "precision": 0.9845053635280095, + "correct_pairwise": 0, + "f1": 0.9499712478435883 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "punkt": null, + "spacy_dp": { + "recall": 0.7516816143497758, + "precision": 0.8303405572755418, + "correct_pairwise": 0, + "f1": 0.7890556045895851 + }, + "spacy_sent": { + "recall": 0.6754484304932735, + "precision": 0.6468062265163714, + "correct_pairwise": 0, + "f1": 0.6608171099533864 + }, + "pysbd": null, + "ersatz": { + "recall": 0.6816143497757847, + "precision": 0.8850072780203785, + "correct_pairwise": 0, + "f1": 0.7701076630778975 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": null, + "spacy_dp": { + "recall": 0.9235772357723577, + "precision": 0.9161290322580645, + "correct_pairwise": 0, + "f1": 0.9198380566801618 + }, + "spacy_sent": { + "recall": 0.8796747967479674, + "precision": 0.8739903069466882, + "correct_pairwise": 0, + "f1": 0.8768233387358184 + }, + "pysbd": null, + "ersatz": { + "recall": 0.8878048780487805, + "precision": 0.9595782073813708, + "correct_pairwise": 0, + "f1": 0.9222972972972974 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": { + "recall": 0.01588888888888889, + "precision": 0.34963325183374083, + "correct_pairwise": 0, + "f1": 0.030396428951004358 + }, + "spacy_sent": { + "recall": 0.006666666666666667, + "precision": 0.2575107296137339, + "correct_pairwise": 0, + "f1": 0.012996859092386008 + }, + "pysbd": null, + "ersatz": { + "recall": 0.0005555555555555556, + "precision": 0.16129032258064516, + "correct_pairwise": 0, + "f1": 0.0011072970878086591 + } + }, + "ted2020-corrupted-social-media": {} + }, + "lv": { + "ersatz": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.9267217630853994, + "precision": 0.8577256501784803, + "correct_pairwise": 0, + "f1": 0.8908898305084747 + }, + "pysbd": null, + "ersatz": { + "recall": 0.9823691460055096, + "precision": 0.991106170094497, + "correct_pairwise": 0, + "f1": 0.9867183176535694 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.6450704225352113, + "precision": 0.5041831792162044, + "correct_pairwise": 0, + "f1": 0.5659911023232823 + }, + "pysbd": null, + "ersatz": { + "recall": 0.6732394366197183, + "precision": 0.9164110429447853, + "correct_pairwise": 0, + "f1": 0.776226047417993 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.9317972350230415, + "precision": 0.9083557951482479, + "correct_pairwise": 0, + "f1": 0.9199272065514104 + }, + "pysbd": null, + "ersatz": { + "recall": 0.9470046082949308, + "precision": 0.9922742636407532, + "correct_pairwise": 0, + "f1": 0.9691110587125678 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.00022222222222222223, + "precision": 0.013245033112582781, + "correct_pairwise": 0, + "f1": 0.0004371106982843405 + }, + "pysbd": null, + "ersatz": { + "recall": 0.0008888888888888889, + "precision": 0.14035087719298245, + "correct_pairwise": 0, + "f1": 0.0017665893783813628 + } + }, + "ted2020-corrupted-social-media": {} + }, + "mg": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "mk": { + "opus100": { + "punkt": null, + "spacy_dp": { + "recall": 0.9466666666666667, + "precision": 0.726033233915637, + "correct_pairwise": 0, + "f1": 0.821798890764408 + }, + "spacy_sent": { + "recall": 0.8961111111111111, + "precision": 0.9016210173281163, + "correct_pairwise": 0, + "f1": 0.898857620507105 + }, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": { + "recall": 0.023777777777777776, + "precision": 0.07435719249478805, + "correct_pairwise": 0, + "f1": 0.03603300218892069 + }, + "spacy_sent": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "pysbd": null, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "ml": { + "opus100": { + "punkt": { + "recall": 0.75390625, + "precision": 0.8566899175649968, + "correct_pairwise": 0, + "f1": 0.8020184030869694 + }, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.25613839285714285, + "precision": 0.864406779661017, + "correct_pairwise": 0, + "f1": 0.3951786482996125 + }, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "pysbd": null, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "mn": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "mr": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.7940682708449917, + "precision": 0.9072890025575447, + "correct_pairwise": 0, + "f1": 0.8469113697403761 + }, + "pysbd": { + "recall": 0.8041410184667039, + "precision": 0.9294954721862871, + "correct_pairwise": 0, + "f1": 0.8622862286228623 + }, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.6666666666666666, + "precision": 0.6222222222222222, + "correct_pairwise": 0, + "f1": 0.6436781609195403 + }, + "pysbd": { + "recall": 0.4523809523809524, + "precision": 0.9047619047619048, + "correct_pairwise": 0, + "f1": 0.6031746031746031 + }, + "ersatz": null + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "pysbd": { + "recall": 0.002111111111111111, + "precision": 0.1450381679389313, + "correct_pairwise": 0, + "f1": 0.0041616471361296675 + }, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "ms": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.7871853546910755, + "precision": 0.8987589810581319, + "correct_pairwise": 0, + "f1": 0.8392802683745044 + }, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "pysbd": null, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "mt": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "my": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": { + "recall": 0.17245240761478164, + "precision": 0.6666666666666666, + "correct_pairwise": 0, + "f1": 0.27402135231316727 + }, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "ne": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.09048178613396005, + "precision": 0.5422535211267606, + "correct_pairwise": 0, + "f1": 0.15508559919436052 + }, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "pysbd": null, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "nl": { + "opus100": { + "punkt": { + "recall": 0.9672222222222222, + "precision": 0.9020725388601036, + "correct_pairwise": 0, + "f1": 0.9335120643431636 + }, + "spacy_dp": { + "recall": 0.9827777777777778, + "precision": 0.8727183029107055, + "correct_pairwise": 0, + "f1": 0.9244839299712568 + }, + "spacy_sent": { + "recall": 0.9394444444444444, + "precision": 0.8942358540454786, + "correct_pairwise": 0, + "f1": 0.9162828501761041 + }, + "pysbd": { + "recall": 0.10166666666666667, + "precision": 0.8714285714285714, + "correct_pairwise": 0, + "f1": 0.182089552238806 + }, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": { + "recall": 0.9235074626865671, + "precision": 0.9939759036144579, + "correct_pairwise": 0, + "f1": 0.9574468085106383 + }, + "spacy_dp": { + "recall": 0.960820895522388, + "precision": 0.9035087719298246, + "correct_pairwise": 0, + "f1": 0.9312839059674503 + }, + "spacy_sent": { + "recall": 0.8694029850746269, + "precision": 0.9433198380566802, + "correct_pairwise": 0, + "f1": 0.9048543689320389 + }, + "pysbd": { + "recall": 0.9029850746268657, + "precision": 0.9718875502008032, + "correct_pairwise": 0, + "f1": 0.9361702127659575 + }, + "ersatz": null + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": { + "recall": 0.00011111111111111112, + "precision": 0.023255813953488372, + "correct_pairwise": 0, + "f1": 0.00022116554240849277 + }, + "spacy_dp": { + "recall": 0.37677777777777777, + "precision": 0.5966918880872778, + "correct_pairwise": 0, + "f1": 0.46189470816590616 + }, + "spacy_sent": { + "recall": 0.00011111111111111112, + "precision": 0.024390243902439025, + "correct_pairwise": 0, + "f1": 0.0002212144674261697 + }, + "pysbd": { + "recall": 0.00022222222222222223, + "precision": 0.045454545454545456, + "correct_pairwise": 0, + "f1": 0.0004422821760283061 + }, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "no": { + "opus100": { + "punkt": { + "recall": 0.9608282036933408, + "precision": 0.9301191765980499, + "correct_pairwise": 0, + "f1": 0.9452243325075695 + }, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.9182988248461108, + "precision": 0.9136971046770601, + "correct_pairwise": 0, + "f1": 0.9159921853195646 + }, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": { + "recall": 0.9197707736389685, + "precision": 0.9944237918215614, + "correct_pairwise": 0, + "f1": 0.9556415599880916 + }, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.8865329512893982, + "precision": 0.9853503184713376, + "correct_pairwise": 0, + "f1": 0.9333333333333332 + }, + "pysbd": null, + "ersatz": null + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {} + }, + "pa": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "pl": { + "ersatz": { + "punkt": { + "recall": 0.9004424778761062, + "precision": 0.9830917874396136, + "correct_pairwise": 0, + "f1": 0.9399538106235567 + }, + "spacy_dp": { + "recall": 0.9148230088495575, + "precision": 0.9763872491145218, + "correct_pairwise": 0, + "f1": 0.9446030839520274 + }, + "spacy_sent": { + "recall": 0.8064159292035398, + "precision": 0.7239324726911619, + "correct_pairwise": 0, + "f1": 0.7629513343799058 + }, + "pysbd": { + "recall": 0.3064159292035398, + "precision": 0.9022801302931596, + "correct_pairwise": 0, + "f1": 0.45747316267547483 + }, + "ersatz": { + "recall": 0.9148230088495575, + "precision": 0.986873508353222, + "correct_pairwise": 0, + "f1": 0.9494833524684271 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "punkt": { + "recall": 0.9254066180594503, + "precision": 0.9238521836506159, + "correct_pairwise": 0, + "f1": 0.9246287475483329 + }, + "spacy_dp": { + "recall": 0.9467190128996074, + "precision": 0.9119394921663966, + "correct_pairwise": 0, + "f1": 0.9290038525041278 + }, + "spacy_sent": { + "recall": 0.9248457655636567, + "precision": 0.8530781169167098, + "correct_pairwise": 0, + "f1": 0.88751345532831 + }, + "pysbd": { + "recall": 0.09702748177229388, + "precision": 0.8693467336683417, + "correct_pairwise": 0, + "f1": 0.17457114026236123 + }, + "ersatz": { + "recall": 0.9125070106561974, + "precision": 0.9291833238149628, + "correct_pairwise": 0, + "f1": 0.9207696661007356 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": { + "recall": 0.9713998996487707, + "precision": 0.9723756906077348, + "correct_pairwise": 0, + "f1": 0.9718875502008032 + }, + "spacy_dp": { + "recall": 0.982940291018565, + "precision": 0.9869017632241813, + "correct_pairwise": 0, + "f1": 0.9849170437405731 + }, + "spacy_sent": { + "recall": 0.9578524836929252, + "precision": 0.8912231559290383, + "correct_pairwise": 0, + "f1": 0.9233373639661429 + }, + "pysbd": { + "recall": 0.7631710988459609, + "precision": 0.9536050156739811, + "correct_pairwise": 0, + "f1": 0.8478260869565217 + }, + "ersatz": { + "recall": 0.963371801304566, + "precision": 0.9846153846153847, + "correct_pairwise": 0, + "f1": 0.9738777580522445 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": { + "recall": 0.0003333333333333333, + "precision": 0.05357142857142857, + "correct_pairwise": 0, + "f1": 0.0006625441696113074 + }, + "spacy_dp": { + "recall": 0.014222222222222223, + "precision": 0.40634920634920635, + "correct_pairwise": 0, + "f1": 0.0274825550187869 + }, + "spacy_sent": { + "recall": 0.011555555555555555, + "precision": 0.3895131086142322, + "correct_pairwise": 0, + "f1": 0.022445235782885507 + }, + "pysbd": { + "recall": 0.0015555555555555555, + "precision": 0.1320754716981132, + "correct_pairwise": 0, + "f1": 0.0030748956731825165 + }, + "ersatz": { + "recall": 0.0047777777777777775, + "precision": 0.44329896907216493, + "correct_pairwise": 0, + "f1": 0.009453666043750687 + } + }, + "ted2020-corrupted-social-media": {} + }, + "ps": { + "ersatz": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": { + "recall": 0.8935996738687322, + "precision": 0.9838420107719928, + "correct_pairwise": 0, + "f1": 0.9365520187994019 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": { + "recall": 0.009282178217821782, + "precision": 0.6818181818181818, + "correct_pairwise": 0, + "f1": 0.018315018315018316 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "pt": { + "opus100": { + "punkt": { + "recall": 0.9174620999438517, + "precision": 0.9257790368271954, + "correct_pairwise": 0, + "f1": 0.9216018048505358 + }, + "spacy_dp": { + "recall": 0.9522740033688939, + "precision": 0.8679631525076765, + "correct_pairwise": 0, + "f1": 0.9081659973226238 + }, + "spacy_sent": { + "recall": 0.8888265019651881, + "precision": 0.9050886220697542, + "correct_pairwise": 0, + "f1": 0.8968838526912181 + }, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": { + "recall": 0.8590476190476191, + "precision": 0.9890350877192983, + "correct_pairwise": 0, + "f1": 0.9194699286442407 + }, + "spacy_dp": { + "recall": 0.979047619047619, + "precision": 0.982791586998088, + "correct_pairwise": 0, + "f1": 0.9809160305343512 + }, + "spacy_sent": { + "recall": 0.8085714285714286, + "precision": 0.9129032258064517, + "correct_pairwise": 0, + "f1": 0.8575757575757577 + }, + "pysbd": null, + "ersatz": null + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": { + "recall": 0.0008888888888888889, + "precision": 0.12307692307692308, + "correct_pairwise": 0, + "f1": 0.0017650303364589082 + }, + "spacy_dp": { + "recall": 0.013, + "precision": 0.35454545454545455, + "correct_pairwise": 0, + "f1": 0.02508038585209003 + }, + "spacy_sent": { + "recall": 0.001, + "precision": 0.13846153846153847, + "correct_pairwise": 0, + "f1": 0.0019856591285162713 + }, + "pysbd": null, + "ersatz": null + }, + "ted2020-corrupted-social-media": {}, + "legal-CivilCode": {}, + "legal-CivilCode-corrupted-asr": {}, + "legal-CivilCode-corrupted-social-media": {}, + "legal-CD_wipolex": {}, + "legal-CD_wipolex-corrupted-asr": {}, + "legal-CD_wipolex-corrupted-social-media": {}, + "legal-CriminalCode": {}, + "legal-CriminalCode-corrupted-asr": {}, + "legal-CriminalCode-corrupted-social-media": {}, + "legal-constitution": {}, + "legal-constitution-corrupted-asr": {}, + "legal-constitution-corrupted-social-media": {}, + "legal-all-laws": { + "punkt": { + "recall": 0.5321500379590887, + "precision": 0.6338618491414674, + "correct_pairwise": 0.0, + "f1": 0.544255627200519 + }, + "spacy_dp": { + "recall": 0.7714565948980429, + "precision": 0.8580439502886701, + "correct_pairwise": 0.15517241379310345, + "f1": 0.794197339408791 + }, + "spacy_sent": { + "recall": 0.40458199054964844, + "precision": 0.5752511404174155, + "correct_pairwise": 0.1206896551724138, + "f1": 0.45899235842659614 + }, + "pysbd": null, + "ersatz": null + }, + "legal-all-laws-corrupted-asr": { + "punkt": { + "recall": 0.0013262599469496023, + "precision": 0.004310344827586207, + "correct_pairwise": 0.0, + "f1": 0.002028397565922921 + }, + "spacy_dp": { + "recall": 0.032750824283265305, + "precision": 0.19051724137931036, + "correct_pairwise": 0.0, + "f1": 0.052656699626267574 + }, + "spacy_sent": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0.0, + "f1": 0.0 + }, + "pysbd": null, + "ersatz": null + }, + "legal-all-laws-corrupted-social-media": {}, + "legal-all-judgements": { + "punkt": { + "recall": 0.71032111781407, + "precision": 0.6884708364249039, + "correct_pairwise": 0.0, + "f1": 0.695861176013074 + }, + "spacy_dp": { + "recall": 0.8066203807216624, + "precision": 0.6590163097195972, + "correct_pairwise": 0.0, + "f1": 0.7228867305209412 + }, + "spacy_sent": { + "recall": 0.7109362272161194, + "precision": 0.7353319526772872, + "correct_pairwise": 0.0, + "f1": 0.7179572150415312 + }, + "pysbd": null, + "ersatz": null + }, + "legal-all-judgements-corrupted-asr": { + "punkt": { + "recall": 0.004650432050274942, + "precision": 0.05, + "correct_pairwise": 0.0, + "f1": 0.008166877370417195 + }, + "spacy_dp": { + "recall": 0.01999819032799023, + "precision": 0.16712885154061624, + "correct_pairwise": 0.0, + "f1": 0.03515001855397335 + }, + "spacy_sent": { + "recall": 0.004650432050274942, + "precision": 0.15, + "correct_pairwise": 0.0, + "f1": 0.008881770529994176 + }, + "pysbd": null, + "ersatz": null + }, + "legal-all-judgements-corrupted-social-media": {} + }, + "ro": { + "ersatz": { + "punkt": null, + "spacy_dp": { + "recall": 0.9216666666666666, + "precision": 0.968476357267951, + "correct_pairwise": 0, + "f1": 0.9444918872758328 + }, + "spacy_sent": { + "recall": 0.87, + "precision": 0.9157894736842105, + "correct_pairwise": 0, + "f1": 0.8923076923076922 + }, + "pysbd": null, + "ersatz": { + "recall": 0.9311111111111111, + "precision": 0.9905437352245863, + "correct_pairwise": 0, + "f1": 0.9599083619702177 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "punkt": null, + "spacy_dp": { + "recall": 0.9163860830527497, + "precision": 0.9215575620767494, + "correct_pairwise": 0, + "f1": 0.9189645469893077 + }, + "spacy_sent": { + "recall": 0.8821548821548821, + "precision": 0.928529238038984, + "correct_pairwise": 0, + "f1": 0.9047482014388489 + }, + "pysbd": null, + "ersatz": { + "recall": 0.9051627384960719, + "precision": 0.9516224188790561, + "correct_pairwise": 0, + "f1": 0.9278113316077078 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": null, + "spacy_dp": { + "recall": 0.9883720930232558, + "precision": 0.9202755905511811, + "correct_pairwise": 0, + "f1": 0.9531090723751275 + }, + "spacy_sent": { + "recall": 0.9873150105708245, + "precision": 0.9831578947368421, + "correct_pairwise": 0, + "f1": 0.9852320675105485 + }, + "pysbd": null, + "ersatz": { + "recall": 0.9778012684989429, + "precision": 0.9882478632478633, + "correct_pairwise": 0, + "f1": 0.9829968119022315 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": { + "recall": 0.009, + "precision": 0.5126582278481012, + "correct_pairwise": 0, + "f1": 0.017689451845381086 + }, + "spacy_sent": { + "recall": 0.0005555555555555556, + "precision": 0.14705882352941177, + "correct_pairwise": 0, + "f1": 0.0011069293779056896 + }, + "pysbd": null, + "ersatz": { + "recall": 0.0007777777777777777, + "precision": 0.25, + "correct_pairwise": 0, + "f1": 0.0015507310589277803 + } + }, + "ted2020-corrupted-social-media": {} + }, + "ru": { + "ersatz": { + "punkt": { + "recall": 0.8877665544332211, + "precision": 0.9924717691342535, + "correct_pairwise": 0, + "f1": 0.9372037914691944 + }, + "spacy_dp": { + "recall": 0.9023569023569024, + "precision": 0.9828850855745721, + "correct_pairwise": 0, + "f1": 0.9409011117612639 + }, + "spacy_sent": { + "recall": 0.8484848484848485, + "precision": 0.9242053789731052, + "correct_pairwise": 0, + "f1": 0.8847279110590989 + }, + "pysbd": { + "recall": 0.3872053872053872, + "precision": 0.9636871508379888, + "correct_pairwise": 0, + "f1": 0.5524419535628503 + }, + "ersatz": { + "recall": 0.9012345679012346, + "precision": 0.9876998769987699, + "correct_pairwise": 0, + "f1": 0.9424882629107981 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "punkt": { + "recall": 0.7351936218678815, + "precision": 0.7819503331314355, + "correct_pairwise": 0, + "f1": 0.757851482242442 + }, + "spacy_dp": { + "recall": 0.7733485193621867, + "precision": 0.7352463454250135, + "correct_pairwise": 0, + "f1": 0.7538162642242575 + }, + "spacy_sent": { + "recall": 0.7226651480637813, + "precision": 0.7251428571428571, + "correct_pairwise": 0, + "f1": 0.7239018824871648 + }, + "pysbd": { + "recall": 0.7591116173120729, + "precision": 0.5667517006802721, + "correct_pairwise": 0, + "f1": 0.6489776046738073 + }, + "ersatz": { + "recall": 0.6366742596810934, + "precision": 0.7428571428571429, + "correct_pairwise": 0, + "f1": 0.6856792394970868 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": { + "recall": 0.6755050505050505, + "precision": 0.9304347826086956, + "correct_pairwise": 0, + "f1": 0.7827359180687636 + }, + "spacy_dp": { + "recall": 0.7297979797979798, + "precision": 0.893353941267388, + "correct_pairwise": 0, + "f1": 0.8033356497567756 + }, + "spacy_sent": { + "recall": 0.6742424242424242, + "precision": 0.8885191347753744, + "correct_pairwise": 0, + "f1": 0.7666905958363244 + }, + "pysbd": { + "recall": 0.5467171717171717, + "precision": 0.8964803312629399, + "correct_pairwise": 0, + "f1": 0.6792156862745098 + }, + "ersatz": { + "recall": 0.6679292929292929, + "precision": 0.929701230228471, + "correct_pairwise": 0, + "f1": 0.7773695811903013 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": { + "recall": 0.00011111111111111112, + "precision": 0.09090909090909091, + "correct_pairwise": 0, + "f1": 0.00022195094884030627 + }, + "spacy_dp": { + "recall": 0.005, + "precision": 0.3543307086614173, + "correct_pairwise": 0, + "f1": 0.009860852415908842 + }, + "spacy_sent": { + "recall": 0.00044444444444444447, + "precision": 0.10810810810810811, + "correct_pairwise": 0, + "f1": 0.0008852495297111874 + }, + "pysbd": { + "recall": 0.0011111111111111111, + "precision": 0.15873015873015872, + "correct_pairwise": 0, + "f1": 0.0022067747986317995 + }, + "ersatz": { + "recall": 0.00011111111111111112, + "precision": 0.07692307692307693, + "correct_pairwise": 0, + "f1": 0.00022190169754798624 + } + }, + "ted2020-corrupted-social-media": {} + }, + "si": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.6653587443946188, + "precision": 0.8676900584795322, + "correct_pairwise": 0, + "f1": 0.7531725888324873 + }, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "pysbd": null, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "sk": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.873247335950645, + "precision": 0.8796610169491526, + "correct_pairwise": 0, + "f1": 0.8764424430059105 + }, + "pysbd": { + "recall": 0.1772293886707796, + "precision": 0.8802228412256268, + "correct_pairwise": 0, + "f1": 0.2950513538748833 + }, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.8291404612159329, + "precision": 0.8701870187018702, + "correct_pairwise": 0, + "f1": 0.8491680085882984 + }, + "pysbd": { + "recall": 0.8176100628930818, + "precision": 0.9112149532710281, + "correct_pairwise": 0, + "f1": 0.861878453038674 + }, + "ersatz": null + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.0015555555555555555, + "precision": 0.20588235294117646, + "correct_pairwise": 0, + "f1": 0.0030877812086457872 + }, + "pysbd": { + "recall": 0.0012222222222222222, + "precision": 0.2894736842105263, + "correct_pairwise": 0, + "f1": 0.002434166851073246 + }, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "sl": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.8678929765886287, + "precision": 0.8979238754325259, + "correct_pairwise": 0, + "f1": 0.8826530612244898 + }, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.9176062445793582, + "precision": 0.9497307001795332, + "correct_pairwise": 0, + "f1": 0.933392148213498 + }, + "pysbd": null, + "ersatz": null + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.00044444444444444447, + "precision": 0.13793103448275862, + "correct_pairwise": 0, + "f1": 0.0008860338907963231 + }, + "pysbd": null, + "ersatz": null + }, + "ted2020-corrupted-social-media": {}, + "short-sequences": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.7328825408462515, + "precision": 0.9687499999999997, + "correct_pairwise": 0.4472140762463343, + "f1": 0.8100220018658485 + }, + "pysbd": null, + "ersatz": null + }, + "short-sequences-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.461737333007494, + "precision": 1.0, + "correct_pairwise": 0.02969208211143695, + "f1": 0.6213561304287266 + }, + "pysbd": null, + "ersatz": null + }, + "short-sequences-corrupted-social-media": {} + }, + "sq": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.874224478285392, + "precision": 0.8872352604464797, + "correct_pairwise": 0, + "f1": 0.8806818181818182 + }, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 1.0, + "precision": 1.0, + "correct_pairwise": 1, + "f1": 1.0 + }, + "pysbd": null, + "ersatz": null + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "pysbd": null, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "sr": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.9095982142857143, + "precision": 0.9101060859854829, + "correct_pairwise": 0, + "f1": 0.9098520792631872 + }, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.7991452991452992, + "precision": 0.8219780219780219, + "correct_pairwise": 0, + "f1": 0.8104008667388949 + }, + "pysbd": null, + "ersatz": null + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "pysbd": null, + "ersatz": null + }, + "ted2020-corrupted-social-media": {}, + "short-sequences": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.8238715277777776, + "precision": 0.9618055555555554, + "correct_pairwise": 0.609375, + "f1": 0.8678034060846559 + }, + "pysbd": null, + "ersatz": null + }, + "short-sequences-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.43632812499999996, + "precision": 1.0, + "correct_pairwise": 0.005208333333333333, + "f1": 0.5994212962962973 + }, + "pysbd": null, + "ersatz": null + }, + "short-sequences-corrupted-social-media": {} + }, + "sv": { + "opus100": { + "punkt": { + "recall": 0.9335566722501396, + "precision": 0.9166666666666666, + "correct_pairwise": 0, + "f1": 0.9250345781466113 + }, + "spacy_dp": { + "recall": 0.9631490787269682, + "precision": 0.8480825958702065, + "correct_pairwise": 0, + "f1": 0.9019607843137255 + }, + "spacy_sent": { + "recall": 0.9061976549413735, + "precision": 0.9036748329621381, + "correct_pairwise": 0, + "f1": 0.9049344856425983 + }, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": { + "recall": 0.9344790547798066, + "precision": 0.9436008676789588, + "correct_pairwise": 0, + "f1": 0.9390178089584457 + }, + "spacy_dp": { + "recall": 0.9452201933404941, + "precision": 0.8065994500458296, + "correct_pairwise": 0, + "f1": 0.8704253214638973 + }, + "spacy_sent": { + "recall": 0.8872180451127819, + "precision": 0.9037199124726477, + "correct_pairwise": 0, + "f1": 0.8953929539295393 + }, + "pysbd": null, + "ersatz": null + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": { + "recall": 0.00022222222222222223, + "precision": 0.09523809523809523, + "correct_pairwise": 0, + "f1": 0.00044340982152754686 + }, + "spacy_dp": { + "recall": 0.005888888888888889, + "precision": 0.21285140562248997, + "correct_pairwise": 0, + "f1": 0.011460698453886906 + }, + "spacy_sent": { + "recall": 0.00011111111111111112, + "precision": 0.05, + "correct_pairwise": 0, + "f1": 0.00022172949002217295 + }, + "pysbd": null, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "ta": { + "ersatz": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.9756637168141593, + "precision": 0.8010899182561307, + "correct_pairwise": 0, + "f1": 0.8798004987531173 + }, + "pysbd": null, + "ersatz": { + "recall": 0.9723451327433629, + "precision": 0.9331210191082803, + "correct_pairwise": 0, + "f1": 0.952329360780065 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.31864406779661014, + "precision": 0.5623130608175474, + "correct_pairwise": 0, + "f1": 0.4067796610169491 + }, + "pysbd": null, + "ersatz": { + "recall": 0.3463276836158192, + "precision": 0.6528221512247071, + "correct_pairwise": 0, + "f1": 0.4525655223329642 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 1.0, + "precision": 0.84375, + "correct_pairwise": 0, + "f1": 0.9152542372881356 + }, + "pysbd": null, + "ersatz": { + "recall": 0.9722222222222222, + "precision": 0.8467741935483871, + "correct_pairwise": 0, + "f1": 0.9051724137931034 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.00019770660340055358, + "precision": 0.5, + "correct_pairwise": 0, + "f1": 0.0003952569169960474 + }, + "pysbd": null, + "ersatz": { + "recall": 0.00276789244760775, + "precision": 0.32558139534883723, + "correct_pairwise": 0, + "f1": 0.005489119780435209 + } + }, + "ted2020-corrupted-social-media": {} + }, + "te": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.4923425978445831, + "precision": 0.8402710551790901, + "correct_pairwise": 0, + "f1": 0.6208869814020029 + }, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "pysbd": null, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "tg": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "th": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "tr": { + "ersatz": { + "punkt": { + "recall": 0.920605612998523, + "precision": 0.9305711086226204, + "correct_pairwise": 0, + "f1": 0.9255615370335993 + }, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.8401033973412112, + "precision": 0.8555848063181647, + "correct_pairwise": 0, + "f1": 0.8477734302217254 + }, + "pysbd": null, + "ersatz": { + "recall": 0.9309453471196455, + "precision": 0.994869771112865, + "correct_pairwise": 0, + "f1": 0.9618466234261732 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "punkt": { + "recall": 0.9420697412823397, + "precision": 0.9259259259259259, + "correct_pairwise": 0, + "f1": 0.9339280735991078 + }, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.9139482564679415, + "precision": 0.9124087591240876, + "correct_pairwise": 0, + "f1": 0.9131778589491429 + }, + "pysbd": null, + "ersatz": { + "recall": 0.9201349831271091, + "precision": 0.9332572732458643, + "correct_pairwise": 0, + "f1": 0.9266496743132256 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": { + "recall": 0.9242424242424242, + "precision": 0.9394250513347022, + "correct_pairwise": 0, + "f1": 0.9317718940936862 + }, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.8808080808080808, + "precision": 0.923728813559322, + "correct_pairwise": 0, + "f1": 0.9017580144777662 + }, + "pysbd": null, + "ersatz": { + "recall": 0.9575757575757575, + "precision": 0.9793388429752066, + "correct_pairwise": 0, + "f1": 0.968335035750766 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "pysbd": null, + "ersatz": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "uk": { + "opus100": { + "punkt": null, + "spacy_dp": { + "recall": 0.9184812953657174, + "precision": 0.8782701548318206, + "correct_pairwise": 0, + "f1": 0.8979257641921398 + }, + "spacy_sent": { + "recall": 0.8514796203238414, + "precision": 0.8669698692438885, + "correct_pairwise": 0, + "f1": 0.8591549295774648 + }, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": null, + "spacy_dp": { + "recall": 0.9554455445544554, + "precision": 0.9747474747474747, + "correct_pairwise": 0, + "f1": 0.965 + }, + "spacy_sent": { + "recall": 0.9084158415841584, + "precision": 0.8940316686967114, + "correct_pairwise": 0, + "f1": 0.9011663597298956 + }, + "pysbd": null, + "ersatz": null + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": { + "recall": 0.0036666666666666666, + "precision": 0.36666666666666664, + "correct_pairwise": 0, + "f1": 0.007260726072607261 + }, + "spacy_sent": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "pysbd": null, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "ur": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.3274544385655497, + "precision": 0.5366088631984586, + "correct_pairwise": 0, + "f1": 0.4067177802117561 + }, + "pysbd": { + "recall": 0.23162845385067607, + "precision": 0.4876237623762376, + "correct_pairwise": 0, + "f1": 0.31406935033878036 + }, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.9854469854469855, + "precision": 0.9978947368421053, + "correct_pairwise": 0, + "f1": 0.9916317991631799 + }, + "pysbd": { + "recall": 0.9854469854469855, + "precision": 0.9978947368421053, + "correct_pairwise": 0, + "f1": 0.9916317991631799 + }, + "ersatz": null + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "pysbd": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "uz": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "vi": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "ted2020-corrupted-social-media": {} + }, + "xh": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {} + }, + "yi": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {} + }, + "yo": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.08913120777527557, + "precision": 0.49022164276401564, + "correct_pairwise": 0, + "f1": 0.15083742854277404 + }, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.7307692307692307, + "precision": 0.8007662835249042, + "correct_pairwise": 0, + "f1": 0.7641681901279707 + }, + "pysbd": null, + "ersatz": null + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {} + }, + "zh": { + "ersatz": { + "punkt": null, + "spacy_dp": { + "recall": 0.9633740288568258, + "precision": 0.9548954895489549, + "correct_pairwise": 0, + "f1": 0.9591160220994476 + }, + "spacy_sent": { + "recall": 0.9206437291897891, + "precision": 0.8838572189664358, + "correct_pairwise": 0, + "f1": 0.9018755096493613 + }, + "pysbd": { + "recall": 0.9223085460599334, + "precision": 0.9321368480089737, + "correct_pairwise": 0, + "f1": 0.9271966527196653 + }, + "ersatz": { + "recall": 0.8018867924528302, + "precision": 0.9607712765957447, + "correct_pairwise": 0, + "f1": 0.8741681790683606 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "punkt": null, + "spacy_dp": { + "recall": 0.6489659027389603, + "precision": 0.7193308550185874, + "correct_pairwise": 0, + "f1": 0.6823391125477519 + }, + "spacy_sent": { + "recall": 0.6338736724427054, + "precision": 0.6261733848702374, + "correct_pairwise": 0, + "f1": 0.6299999999999999 + }, + "pysbd": { + "recall": 0.6523197316936836, + "precision": 0.7316614420062696, + "correct_pairwise": 0, + "f1": 0.6897163120567376 + }, + "ersatz": { + "recall": 0.45612073784237006, + "precision": 0.6834170854271356, + "correct_pairwise": 0, + "f1": 0.5471002346630909 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "punkt": null, + "spacy_dp": { + "recall": 0.9977777777777778, + "precision": 0.9824945295404814, + "correct_pairwise": 0, + "f1": 0.9900771775082691 + }, + "spacy_sent": { + "recall": 0.9844444444444445, + "precision": 0.9486081370449678, + "correct_pairwise": 0, + "f1": 0.9661941112322793 + }, + "pysbd": { + "recall": 0.9866666666666667, + "precision": 0.9910714285714286, + "correct_pairwise": 0, + "f1": 0.9888641425389756 + }, + "ersatz": { + "recall": 0.8066666666666666, + "precision": 1.0, + "correct_pairwise": 0, + "f1": 0.8929889298892989 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "punkt": null, + "spacy_dp": { + "recall": 0.004249485949280329, + "precision": 0.1962025316455696, + "correct_pairwise": 0, + "f1": 0.008318797799543809 + }, + "spacy_sent": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "pysbd": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "ersatz": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "zu": { + "opus100": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {} + }, + "tr-de_TR": { + "code-switching": { + "punkt": { + "recall": 0.988950276243094, + "precision": 0.99860529986053, + "correct_pairwise": 0, + "f1": 0.9937543372657878 + }, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.9806629834254144, + "precision": 0.9943977591036415, + "correct_pairwise": 0, + "f1": 0.9874826147426982 + }, + "pysbd": null, + "ersatz": { + "recall": 0.9958563535911602, + "precision": 1.0, + "correct_pairwise": 0, + "f1": 0.9979238754325259 + } + }, + "code-switching-corrupted-asr": { + "punkt": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "spacy_dp": null, + "spacy_sent": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "pysbd": null, + "ersatz": { + "recall": 0.0013812154696132596, + "precision": 1.0, + "correct_pairwise": 0, + "f1": 0.002758620689655172 + } + }, + "code-switching-corrupted-social-media": {} + }, + "tr-de_DE": { + "code-switching": { + "punkt": { + "recall": 0.9861878453038674, + "precision": 0.9986013986013986, + "correct_pairwise": 0, + "f1": 0.9923558026407229 + }, + "spacy_dp": { + "recall": 0.9917127071823204, + "precision": 0.4851351351351351, + "correct_pairwise": 0, + "f1": 0.6515426497277677 + }, + "spacy_sent": { + "recall": 0.9792817679558011, + "precision": 0.9943899018232819, + "correct_pairwise": 0, + "f1": 0.9867780097425192 + }, + "pysbd": { + "recall": 0.7679558011049724, + "precision": 0.9928571428571429, + "correct_pairwise": 0, + "f1": 0.8660436137071652 + }, + "ersatz": { + "recall": 0.9958563535911602, + "precision": 1.0, + "correct_pairwise": 0, + "f1": 0.9979238754325259 + } + }, + "code-switching-corrupted-asr": { + "punkt": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "spacy_dp": { + "recall": 0.17955801104972377, + "precision": 0.09259259259259259, + "correct_pairwise": 0, + "f1": 0.12218045112781956 + }, + "spacy_sent": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "pysbd": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "ersatz": { + "recall": 0.0013812154696132596, + "precision": 1.0, + "correct_pairwise": 0, + "f1": 0.002758620689655172 + } + }, + "code-switching-corrupted-social-media": {} + }, + "es-en_ES": { + "code-switching": { + "punkt": { + "recall": 0.8875, + "precision": 0.9971910112359551, + "correct_pairwise": 0, + "f1": 0.9391534391534392 + }, + "spacy_dp": { + "recall": 0.8525, + "precision": 0.9932038834951457, + "correct_pairwise": 0, + "f1": 0.9174887892376681 + }, + "spacy_sent": { + "recall": 0.8875, + "precision": 0.9971910112359551, + "correct_pairwise": 0, + "f1": 0.9391534391534392 + }, + "pysbd": { + "recall": 0.8541666666666666, + "precision": 0.9970817120622568, + "correct_pairwise": 0, + "f1": 0.9201077199281869 + }, + "ersatz": { + "recall": 0.29833333333333334, + "precision": 0.9944444444444445, + "correct_pairwise": 0, + "f1": 0.458974358974359 + } + }, + "code-switching-corrupted-asr": { + "punkt": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "spacy_sent": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "pysbd": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "ersatz": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "code-switching-corrupted-social-media": {} + }, + "es-en_EN": { + "code-switching": { + "punkt": { + "recall": 0.8875, + "precision": 0.9971910112359551, + "correct_pairwise": 0, + "f1": 0.9391534391534392 + }, + "spacy_dp": { + "recall": 0.8841666666666667, + "precision": 0.8130268199233717, + "correct_pairwise": 0, + "f1": 0.8471057884231536 + }, + "spacy_sent": { + "recall": 0.8875, + "precision": 0.9971910112359551, + "correct_pairwise": 0, + "f1": 0.9391534391534392 + }, + "pysbd": { + "recall": 0.8541666666666666, + "precision": 0.9970817120622568, + "correct_pairwise": 0, + "f1": 0.9201077199281869 + }, + "ersatz": { + "recall": 0.29833333333333334, + "precision": 0.9944444444444445, + "correct_pairwise": 0, + "f1": 0.458974358974359 + } + }, + "code-switching-corrupted-asr": { + "punkt": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "spacy_dp": { + "recall": 0.125, + "precision": 0.2994011976047904, + "correct_pairwise": 0, + "f1": 0.1763668430335097 + }, + "spacy_sent": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "pysbd": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "ersatz": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "code-switching-corrupted-social-media": {} + }, + "vi-en_VI": { + "code-switching": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "code-switching-corrupted-asr": { + "punkt": null, + "spacy_dp": null, + "spacy_sent": null, + "pysbd": null, + "ersatz": null + }, + "code-switching-corrupted-social-media": {} + }, + "vi-en_EN": { + "code-switching": { + "punkt": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "spacy_dp": { + "recall": 0.08251633986928104, + "precision": 0.1806797853309481, + "correct_pairwise": 0, + "f1": 0.11329220415030847 + }, + "spacy_sent": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "pysbd": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "ersatz": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "code-switching-corrupted-asr": { + "punkt": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "spacy_dp": { + "recall": 0.07761437908496732, + "precision": 0.18129770992366412, + "correct_pairwise": 0, + "f1": 0.10869565217391304 + }, + "spacy_sent": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "pysbd": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "ersatz": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "code-switching-corrupted-social-media": {} + }, + "en-de_EN": { + "code-switching": { + "punkt": { + "recall": 0.8589981447124304, + "precision": 0.9204771371769384, + "correct_pairwise": 0, + "f1": 0.8886756238003838 + }, + "spacy_dp": { + "recall": 0.8812615955473099, + "precision": 0.5952380952380952, + "correct_pairwise": 0, + "f1": 0.7105459985041137 + }, + "spacy_sent": { + "recall": 0.8385899814471243, + "precision": 0.8042704626334519, + "correct_pairwise": 0, + "f1": 0.821071752951862 + }, + "pysbd": { + "recall": 0.4972170686456401, + "precision": 0.9115646258503401, + "correct_pairwise": 0, + "f1": 0.6434573829531813 + }, + "ersatz": { + "recall": 0.8330241187384044, + "precision": 0.9492600422832981, + "correct_pairwise": 0, + "f1": 0.8873517786561266 + } + }, + "code-switching-corrupted-asr": { + "punkt": { + "recall": 0.0055658627087198514, + "precision": 0.15789473684210525, + "correct_pairwise": 0, + "f1": 0.010752688172043012 + }, + "spacy_dp": { + "recall": 0.05380333951762523, + "precision": 0.15263157894736842, + "correct_pairwise": 0, + "f1": 0.07956104252400549 + }, + "spacy_sent": { + "recall": 0.0074211502782931356, + "precision": 0.15384615384615385, + "correct_pairwise": 0, + "f1": 0.014159292035398232 + }, + "pysbd": { + "recall": 0.011131725417439703, + "precision": 0.18181818181818182, + "correct_pairwise": 0, + "f1": 0.020979020979020976 + }, + "ersatz": { + "recall": 0.0018552875695732839, + "precision": 0.07142857142857142, + "correct_pairwise": 0, + "f1": 0.003616636528028933 + } + }, + "code-switching-corrupted-social-media": {}, + "short-sequences": { + "punkt": { + "recall": 0.9752503619019458, + "precision": 0.9641890622303922, + "correct_pairwise": 0.8108108108108109, + "f1": 0.9654735387043918 + }, + "spacy_dp": { + "recall": 0.9699358730348253, + "precision": 0.8492675677412015, + "correct_pairwise": 0.5218295218295218, + "f1": 0.8906598223470783 + }, + "spacy_sent": { + "recall": 0.9477470633460158, + "precision": 0.9435548559655494, + "correct_pairwise": 0.735966735966736, + "f1": 0.9406641469968986 + }, + "pysbd": { + "recall": 0.9695024206782963, + "precision": 0.965512862896298, + "correct_pairwise": 0.7920997920997921, + "f1": 0.9612661777710537 + }, + "ersatz": { + "recall": 0.9563618277300107, + "precision": 0.9751128309951844, + "correct_pairwise": 0.7837837837837838, + "f1": 0.9599591876104498 + } + }, + "short-sequences-corrupted-asr": { + "punkt": { + "recall": 0.38169497474986874, + "precision": 0.975051975051975, + "correct_pairwise": 0.10187110187110188, + "f1": 0.505852254019675 + }, + "spacy_dp": { + "recall": 0.40635290613856956, + "precision": 0.81512969012969, + "correct_pairwise": 0.06652806652806653, + "f1": 0.4907784778820866 + }, + "spacy_sent": { + "recall": 0.38169497474986874, + "precision": 0.9674289674289672, + "correct_pairwise": 0.10187110187110188, + "f1": 0.504511340914056 + }, + "pysbd": { + "recall": 0.3873976495701907, + "precision": 0.9746765996765997, + "correct_pairwise": 0.09771309771309772, + "f1": 0.5102455310373865 + }, + "ersatz": { + "recall": 0.38172714978204375, + "precision": 0.9797297297297297, + "correct_pairwise": 0.10395010395010396, + "f1": 0.5070683699654887 + } + }, + "short-sequences-corrupted-social-media": {} + }, + "en-de_DE": { + "code-switching": { + "punkt": { + "recall": 0.8571428571428571, + "precision": 0.9409368635437881, + "correct_pairwise": 0, + "f1": 0.8970873786407767 + }, + "spacy_dp": { + "recall": 0.8794063079777366, + "precision": 0.3298538622129436, + "correct_pairwise": 0, + "f1": 0.4797570850202429 + }, + "spacy_sent": { + "recall": 0.8256029684601113, + "precision": 0.8302238805970149, + "correct_pairwise": 0, + "f1": 0.8279069767441859 + }, + "pysbd": { + "recall": 0.5677179962894249, + "precision": 0.8947368421052632, + "correct_pairwise": 0, + "f1": 0.6946651532349604 + }, + "ersatz": { + "recall": 0.8330241187384044, + "precision": 0.9492600422832981, + "correct_pairwise": 0, + "f1": 0.8873517786561266 + } + }, + "code-switching-corrupted-asr": { + "punkt": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + }, + "spacy_dp": { + "recall": 0.150278293135436, + "precision": 0.060267857142857144, + "correct_pairwise": 0, + "f1": 0.08603292618162507 + }, + "spacy_sent": { + "recall": 0.0018552875695732839, + "precision": 0.09090909090909091, + "correct_pairwise": 0, + "f1": 0.003636363636363636 + }, + "pysbd": { + "recall": 0.011131725417439703, + "precision": 0.20689655172413793, + "correct_pairwise": 0, + "f1": 0.02112676056338028 + }, + "ersatz": { + "recall": 0.0018552875695732839, + "precision": 0.07142857142857142, + "correct_pairwise": 0, + "f1": 0.003616636528028933 + } + }, + "code-switching-corrupted-social-media": {}, + "short-sequences": { + "punkt": { + "recall": 0.9768055634571473, + "precision": 0.9728171504399281, + "correct_pairwise": 0.8503118503118503, + "f1": 0.9715335308334949 + }, + "spacy_dp": { + "recall": 0.9607768656976803, + "precision": 0.6522092831411755, + "correct_pairwise": 0.28274428274428276, + "f1": 0.7419349567795894 + }, + "spacy_sent": { + "recall": 0.9424299113183374, + "precision": 0.955479383060355, + "correct_pairwise": 0.762993762993763, + "f1": 0.9445086001261273 + }, + "pysbd": { + "recall": 0.9626161387920142, + "precision": 0.9667454141288493, + "correct_pairwise": 0.7900207900207901, + "f1": 0.9569482845222718 + }, + "ersatz": { + "recall": 0.9563618277300107, + "precision": 0.9751128309951844, + "correct_pairwise": 0.7837837837837838, + "f1": 0.9599591876104498 + } + }, + "short-sequences-corrupted-asr": { + "punkt": { + "recall": 0.38077427382916784, + "precision": 0.9892584892584892, + "correct_pairwise": 0.10602910602910603, + "f1": 0.5082941040859597 + }, + "spacy_dp": { + "recall": 0.48178885410964506, + "precision": 0.4244844146964414, + "correct_pairwise": 0.033264033264033266, + "f1": 0.3794327295178452 + }, + "spacy_sent": { + "recall": 0.38042777348266743, + "precision": 0.987179487179487, + "correct_pairwise": 0.10395010395010396, + "f1": 0.5070821449554483 + }, + "pysbd": { + "recall": 0.38581529798783915, + "precision": 0.980913605913606, + "correct_pairwise": 0.09771309771309772, + "f1": 0.5097074804993359 + }, + "ersatz": { + "recall": 0.38172714978204375, + "precision": 0.9797297297297297, + "correct_pairwise": 0.10395010395010396, + "f1": 0.5070683699654887 + } + }, + "short-sequences-corrupted-social-media": {} + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/baselines_multilingual.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/baselines_multilingual.json new file mode 100644 index 0000000000000000000000000000000000000000..ef1c59bee8d5464e31b5e1c44e201fb68c6c60c6 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/baselines_multilingual.json @@ -0,0 +1,2962 @@ +{ + "af": { + "opus100": { + "spacy_dp": { + "recall": 0.28727064220183485, + "precision": 0.7707692307692308, + "correct_pairwise": 0, + "f1": 0.41854636591478694 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.9842931937172775, + "precision": 0.9817232375979112, + "correct_pairwise": 0, + "f1": 0.9830065359477125 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "am": { + "opus100": { + "spacy_dp": { + "recall": 0.03676880222841226, + "precision": 0.22372881355932203, + "correct_pairwise": 0, + "f1": 0.06315789473684211 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "ar": { + "ersatz": { + "spacy_dp": { + "recall": 0.8721359940872137, + "precision": 0.9539207760711399, + "correct_pairwise": 0, + "f1": 0.9111969111969114 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "spacy_dp": { + "recall": 0.4291294642857143, + "precision": 0.8879907621247113, + "correct_pairwise": 0, + "f1": 0.5786305492851768 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.8071895424836601, + "precision": 0.7755102040816326, + "correct_pairwise": 0, + "f1": 0.7910328262610089 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0003333333333333333, + "precision": 0.17647058823529413, + "correct_pairwise": 0, + "f1": 0.0006654097815237884 + } + }, + "ted2020-corrupted-social-media": {} + }, + "az": { + "opus100": { + "spacy_dp": { + "recall": 0.8395543175487465, + "precision": 0.6353288364249579, + "correct_pairwise": 0, + "f1": 0.7233021358291336 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "be": { + "opus100": { + "spacy_dp": { + "recall": 0.22807017543859648, + "precision": 0.660655737704918, + "correct_pairwise": 0, + "f1": 0.3390828775767774 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.718266253869969, + "precision": 0.9015544041450777, + "correct_pairwise": 0, + "f1": 0.7995404939689833 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "bg": { + "opus100": { + "spacy_dp": { + "recall": 0.9454646633277685, + "precision": 0.9233695652173913, + "correct_pairwise": 0, + "f1": 0.9342864998625241 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.9073705179282868, + "precision": 0.9712153518123667, + "correct_pairwise": 0, + "f1": 0.9382080329557158 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "bn": { + "opus100": { + "spacy_dp": { + "recall": 0.253072625698324, + "precision": 0.703416149068323, + "correct_pairwise": 0, + "f1": 0.372226787181594 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.34, + "precision": 0.8095238095238095, + "correct_pairwise": 0, + "f1": 0.47887323943661975 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0014957264957264958, + "precision": 0.04, + "correct_pairwise": 0, + "f1": 0.002883625128733265 + } + }, + "ted2020-corrupted-social-media": {} + }, + "ca": { + "opus100": { + "spacy_dp": { + "recall": 0.8742953776775648, + "precision": 0.8857795545402627, + "correct_pairwise": 0, + "f1": 0.88 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.9927754364840458, + "precision": 0.983890214797136, + "correct_pairwise": 0, + "f1": 0.9883128558585557 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "ceb": { + "ud": { + "spacy_dp": { + "recall": 1.0, + "precision": 0.9712643678160919, + "correct_pairwise": 0, + "f1": 0.9854227405247813 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "cs": { + "ersatz": { + "spacy_dp": { + "recall": 0.9394719896973599, + "precision": 0.9891525423728813, + "correct_pairwise": 0, + "f1": 0.963672391017173 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "spacy_dp": { + "recall": 0.8510998307952623, + "precision": 0.8960807600950119, + "correct_pairwise": 0, + "f1": 0.8730112814579115 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.8316723250465448, + "precision": 0.9702312507985179, + "correct_pairwise": 0, + "f1": 0.8956244840193419 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "cy": { + "opus100": { + "spacy_dp": { + "recall": 0.15818181818181817, + "precision": 0.696, + "correct_pairwise": 0, + "f1": 0.2577777777777778 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.9813302217036173, + "precision": 0.9964454976303317, + "correct_pairwise": 0, + "f1": 0.988830099941211 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {} + }, + "da": { + "opus100": { + "spacy_dp": { + "recall": 0.9042553191489362, + "precision": 0.8992204899777283, + "correct_pairwise": 0, + "f1": 0.9017308766052484 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.937007874015748, + "precision": 0.9616161616161616, + "correct_pairwise": 0, + "f1": 0.9491525423728813 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "de": { + "ersatz": { + "spacy_dp": { + "recall": 0.9202488687782805, + "precision": 0.9503504672897196, + "correct_pairwise": 0, + "f1": 0.9350574712643679 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "spacy_dp": { + "recall": 0.6942488262910798, + "precision": 0.7666882696046662, + "correct_pairwise": 0, + "f1": 0.7286726208808131 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.838452787258248, + "precision": 0.9189526184538653, + "correct_pairwise": 0, + "f1": 0.8768590124925639 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.00022222222222222223, + "precision": 0.6666666666666666, + "correct_pairwise": 0, + "f1": 0.00044429634566255696 + } + }, + "ted2020-corrupted-social-media": {}, + "legal-CD_jug": {}, + "legal-CD_jug-corrupted-asr": {}, + "legal-CD_jug-corrupted-social-media": {}, + "legal-gesCode": {}, + "legal-gesCode-corrupted-asr": {}, + "legal-gesCode-corrupted-social-media": {}, + "legal-all-laws": { + "spacy_dp": { + "recall": 0.5929768620717848, + "precision": 0.7944919354544225, + "correct_pairwise": 0.0, + "f1": 0.678502657105934 + } + }, + "legal-all-laws-corrupted-asr": { + "spacy_dp": { + "recall": 0.00018426386585590566, + "precision": 0.16666666666666666, + "correct_pairwise": 0.0, + "f1": 0.000368120743603902 + } + }, + "legal-all-laws-corrupted-social-media": {}, + "legal-all-judgements": { + "spacy_dp": { + "recall": 0.6250474316231315, + "precision": 0.7088479534185868, + "correct_pairwise": 0.0, + "f1": 0.6576812011883165 + } + }, + "legal-all-judgements-corrupted-asr": { + "spacy_dp": { + "recall": 0.011306203549478498, + "precision": 0.5652263374485598, + "correct_pairwise": 0.0, + "f1": 0.022007225889482316 + } + }, + "legal-all-judgements-corrupted-social-media": {} + }, + "el": { + "opus100": { + "spacy_dp": { + "recall": 0.8844221105527639, + "precision": 0.8989784335981839, + "correct_pairwise": 0, + "f1": 0.891640866873065 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.9146341463414634, + "precision": 0.9615384615384616, + "correct_pairwise": 0, + "f1": 0.9375000000000001 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0034444444444444444, + "precision": 0.3229166666666667, + "correct_pairwise": 0, + "f1": 0.006816182937554969 + } + }, + "ted2020-corrupted-social-media": {} + }, + "en": { + "ersatz": { + "spacy_dp": { + "recall": 0.9600519180847995, + "precision": 0.9203649937785151, + "correct_pairwise": 0, + "f1": 0.9397896520081881 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "spacy_dp": { + "recall": 0.8609085810431857, + "precision": 0.9164179104477612, + "correct_pairwise": 0, + "f1": 0.8877964141122036 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.8732251521298174, + "precision": 0.9663299663299664, + "correct_pairwise": 0, + "f1": 0.9174214171550347 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {}, + "legal-CD_scotus": {}, + "legal-CD_scotus-corrupted-asr": {}, + "legal-CD_scotus-corrupted-social-media": {}, + "legal-CD_cyber_crime": {}, + "legal-CD_cyber_crime-corrupted-asr": {}, + "legal-CD_cyber_crime-corrupted-social-media": {}, + "legal-CD_intellectual_property": {}, + "legal-CD_intellectual_property-corrupted-asr": {}, + "legal-CD_intellectual_property-corrupted-social-media": {}, + "legal-CD_bva": {}, + "legal-CD_bva-corrupted-asr": {}, + "legal-CD_bva-corrupted-social-media": {}, + "legal-all-judgements": { + "spacy_dp": { + "recall": 0.809353050430616, + "precision": 0.8256017933295092, + "correct_pairwise": 0.0, + "f1": 0.8139672157555427 + } + }, + "legal-all-judgements-corrupted-asr": { + "spacy_dp": { + "recall": 0.0008068458875978191, + "precision": 0.020604727398205656, + "correct_pairwise": 0.0, + "f1": 0.0015406011575137654 + } + }, + "legal-all-judgements-corrupted-social-media": {} + }, + "eo": { + "opus100": { + "spacy_dp": { + "recall": 0.8457655636567583, + "precision": 0.9251533742331288, + "correct_pairwise": 0, + "f1": 0.8836800468795781 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "es": { + "ersatz": { + "spacy_dp": { + "recall": 0.9535727239753355, + "precision": 0.9909536373916321, + "correct_pairwise": 0, + "f1": 0.9719038817005545 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "spacy_dp": { + "recall": 0.8921953958450309, + "precision": 0.9153225806451613, + "correct_pairwise": 0, + "f1": 0.903611032129656 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.9896640826873385, + "precision": 0.9833119383825417, + "correct_pairwise": 0, + "f1": 0.986477784932389 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.00022222222222222223, + "precision": 1.0, + "correct_pairwise": 0, + "f1": 0.0004443457009553433 + } + }, + "ted2020-corrupted-social-media": {}, + "legal-CD_wipolex": {}, + "legal-CD_wipolex-corrupted-asr": {}, + "legal-CD_wipolex-corrupted-social-media": {}, + "legal-CD_multi_legal": {}, + "legal-CD_multi_legal-corrupted-asr": {}, + "legal-CD_multi_legal-corrupted-social-media": {}, + "legal-CriminalCode": {}, + "legal-CriminalCode-corrupted-asr": {}, + "legal-CriminalCode-corrupted-social-media": {}, + "legal-CivilCode": {}, + "legal-CivilCode-corrupted-asr": {}, + "legal-CivilCode-corrupted-social-media": {}, + "legal-constitution": {}, + "legal-constitution-corrupted-asr": {}, + "legal-constitution-corrupted-social-media": {}, + "legal-all-laws": { + "spacy_dp": { + "recall": 0.7719608128010266, + "precision": 0.9710974960047031, + "correct_pairwise": 0.20218579234972678, + "f1": 0.8520410296265981 + } + }, + "legal-all-laws-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0.0, + "f1": 0.0 + } + }, + "legal-all-laws-corrupted-social-media": {}, + "legal-all-judgements": { + "spacy_dp": { + "recall": 0.5584242272996296, + "precision": 0.8943712092950141, + "correct_pairwise": 0.0, + "f1": 0.6768126285646107 + } + }, + "legal-all-judgements-corrupted-asr": { + "spacy_dp": { + "recall": 0.007819912505792663, + "precision": 0.2735042735042735, + "correct_pairwise": 0.0, + "f1": 0.01500094629132969 + } + }, + "legal-all-judgements-corrupted-social-media": {} + }, + "et": { + "ersatz": { + "spacy_dp": { + "recall": 0.962534435261708, + "precision": 0.977069351230425, + "correct_pairwise": 0, + "f1": 0.9697474326949764 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "spacy_dp": { + "recall": 0.8461538461538461, + "precision": 0.8954248366013072, + "correct_pairwise": 0, + "f1": 0.8700923787528868 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.9083679114799447, + "precision": 0.9654538772510106, + "correct_pairwise": 0, + "f1": 0.9360413326207019 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.00011111111111111112, + "precision": 0.5, + "correct_pairwise": 0, + "f1": 0.00022217285047767166 + } + }, + "ted2020-corrupted-social-media": {}, + "short-sequences": { + "spacy_dp": { + "recall": 0.797742848572509, + "precision": 0.9808925021914392, + "correct_pairwise": 0.47783251231527096, + "f1": 0.853932413643405 + } + }, + "short-sequences-corrupted-asr": { + "spacy_dp": { + "recall": 0.2780591304670904, + "precision": 1.0, + "correct_pairwise": 0.0, + "f1": 0.41700835327030683 + } + }, + "short-sequences-corrupted-social-media": {} + }, + "eu": { + "opus100": { + "spacy_dp": { + "recall": 0.7574396406513195, + "precision": 0.8630838131797824, + "correct_pairwise": 0, + "f1": 0.8068181818181819 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.9302038295243977, + "precision": 0.9856020942408377, + "correct_pairwise": 0, + "f1": 0.9571020019065777 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "fa": { + "opus100": { + "spacy_dp": { + "recall": 0.45712694877505566, + "precision": 0.6751644736842105, + "correct_pairwise": 0, + "f1": 0.5451527224435591 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.9992360580595875, + "precision": 0.9969512195121951, + "correct_pairwise": 0, + "f1": 0.9980923311713087 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.00011111111111111112, + "precision": 0.25, + "correct_pairwise": 0, + "f1": 0.00022212350066637052 + } + }, + "ted2020-corrupted-social-media": {} + }, + "fi": { + "ersatz": { + "spacy_dp": { + "recall": 0.928173719376392, + "precision": 0.9731465265615878, + "correct_pairwise": 0, + "f1": 0.9501282416642919 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "spacy_dp": { + "recall": 0.9379888268156424, + "precision": 0.9194961664841182, + "correct_pairwise": 0, + "f1": 0.9286504424778762 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.8934953538241601, + "precision": 0.963020030816641, + "correct_pairwise": 0, + "f1": 0.9269558769002596 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "fr": { + "ersatz": { + "spacy_dp": { + "recall": 0.9370395177494977, + "precision": 0.9921985815602837, + "correct_pairwise": 0, + "f1": 0.9638305201515673 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "spacy_dp": { + "recall": 0.8286358511837655, + "precision": 0.8739595719381689, + "correct_pairwise": 0, + "f1": 0.8506944444444444 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.9438502673796791, + "precision": 0.9778393351800554, + "correct_pairwise": 0, + "f1": 0.9605442176870749 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.00011111111111111112, + "precision": 0.25, + "correct_pairwise": 0, + "f1": 0.00022212350066637052 + } + }, + "ted2020-corrupted-social-media": {}, + "legal-CD_swiss_judgement": {}, + "legal-CD_swiss_judgement-corrupted-asr": {}, + "legal-CD_swiss_judgement-corrupted-social-media": {}, + "legal-CriminalCode": {}, + "legal-CriminalCode-corrupted-asr": {}, + "legal-CriminalCode-corrupted-social-media": {}, + "legal-CivilCode": {}, + "legal-CivilCode-corrupted-asr": {}, + "legal-CivilCode-corrupted-social-media": {}, + "legal-constitution": {}, + "legal-constitution-corrupted-asr": {}, + "legal-constitution-corrupted-social-media": {}, + "legal-all-laws": { + "spacy_dp": { + "recall": 0.5430177518729712, + "precision": 0.7372314776726542, + "correct_pairwise": 0.1655773420479303, + "f1": 0.6122465655902699 + } + }, + "legal-all-laws-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0.0, + "f1": 0.0 + } + }, + "legal-all-laws-corrupted-social-media": {}, + "legal-all-judgements": { + "spacy_dp": { + "recall": 0.8136576618840008, + "precision": 0.8524152516626565, + "correct_pairwise": 0.0, + "f1": 0.8266024799701818 + } + }, + "legal-all-judgements-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0.0, + "f1": 0.0 + } + }, + "legal-all-judgements-corrupted-social-media": {} + }, + "fy": { + "opus100": { + "spacy_dp": { + "recall": 0.12880143112701253, + "precision": 0.6923076923076923, + "correct_pairwise": 0, + "f1": 0.21719457013574664 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {} + }, + "ga": { + "opus100": { + "spacy_dp": { + "recall": 0.452914798206278, + "precision": 0.9319492502883506, + "correct_pairwise": 0, + "f1": 0.6095812900792154 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.9534313725490197, + "precision": 0.9725, + "correct_pairwise": 0, + "f1": 0.9628712871287128 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "gd": { + "opus100": { + "spacy_dp": { + "recall": 0.25308641975308643, + "precision": 0.6473684210526316, + "correct_pairwise": 0, + "f1": 0.363905325443787 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.4673469387755102, + "precision": 0.9621848739495799, + "correct_pairwise": 0, + "f1": 0.6291208791208791 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {} + }, + "gl": { + "opus100": { + "spacy_dp": { + "recall": 0.867152466367713, + "precision": 0.897852582704585, + "correct_pairwise": 0, + "f1": 0.8822355289421157 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.875, + "precision": 0.9722222222222222, + "correct_pairwise": 0, + "f1": 0.9210526315789473 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "gu": { + "ersatz": { + "spacy_dp": { + "recall": 0.02292576419213974, + "precision": 0.1099476439790576, + "correct_pairwise": 0, + "f1": 0.037940379403794036 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "spacy_dp": { + "recall": 0.02875215641173088, + "precision": 0.2976190476190476, + "correct_pairwise": 0, + "f1": 0.05243838489774515 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.006740626316528577, + "precision": 0.0730593607305936, + "correct_pairwise": 0, + "f1": 0.012342504499871431 + } + }, + "ted2020-corrupted-social-media": {} + }, + "ha": { + "opus100": { + "spacy_dp": { + "recall": 0.9655364091161757, + "precision": 0.8174117647058824, + "correct_pairwise": 0, + "f1": 0.8853211009174312 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "he": { + "opus100": { + "spacy_dp": { + "recall": 0.9354120267260579, + "precision": 0.9017713365539453, + "correct_pairwise": 0, + "f1": 0.9182836840666849 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.886685552407932, + "precision": 0.9968152866242038, + "correct_pairwise": 0, + "f1": 0.9385307346326837 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "hi": { + "ersatz": { + "spacy_dp": { + "recall": 0.11331569664902998, + "precision": 0.4233937397034596, + "correct_pairwise": 0, + "f1": 0.17878260869565218 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "spacy_dp": { + "recall": 0.3997747747747748, + "precision": 0.7768052516411379, + "correct_pairwise": 0, + "f1": 0.5278810408921932 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.0006600660066006601, + "precision": 0.005917159763313609, + "correct_pairwise": 0, + "f1": 0.0011876484560570072 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0023333333333333335, + "precision": 0.10096153846153846, + "correct_pairwise": 0, + "f1": 0.004561251086012163 + } + }, + "ted2020-corrupted-social-media": {} + }, + "hu": { + "opus100": { + "spacy_dp": { + "recall": 0.9384443200895355, + "precision": 0.9209225700164745, + "correct_pairwise": 0, + "f1": 0.9296008869179602 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.9900990099009901, + "precision": 0.975609756097561, + "correct_pairwise": 0, + "f1": 0.9828009828009828 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.00011111111111111112, + "precision": 0.043478260869565216, + "correct_pairwise": 0, + "f1": 0.0002216557685913776 + } + }, + "ted2020-corrupted-social-media": {} + }, + "hy": { + "opus100": { + "spacy_dp": { + "recall": 0.14129746835443038, + "precision": 0.8424528301886792, + "correct_pairwise": 0, + "f1": 0.24200542005420056 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.06542056074766354, + "precision": 0.4069767441860465, + "correct_pairwise": 0, + "f1": 0.11272141706924314 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "id": { + "opus100": { + "spacy_dp": { + "recall": 0.8772029562251279, + "precision": 0.9151838671411625, + "correct_pairwise": 0, + "f1": 0.8957910014513788 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.9844444444444445, + "precision": 0.9714912280701754, + "correct_pairwise": 0, + "f1": 0.9779249448123621 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "ig": { + "opus100": { + "spacy_dp": { + "recall": 0.18653198653198652, + "precision": 0.7466307277628033, + "correct_pairwise": 0, + "f1": 0.29849137931034475 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "is": { + "opus100": { + "spacy_dp": { + "recall": 0.9631284916201117, + "precision": 0.9364475828354155, + "correct_pairwise": 0, + "f1": 0.949600660974938 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.9638009049773756, + "precision": 0.938719832109129, + "correct_pairwise": 0, + "f1": 0.9510950457155007 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "it": { + "opus100": { + "spacy_dp": { + "recall": 0.8480941704035875, + "precision": 0.867545871559633, + "correct_pairwise": 0, + "f1": 0.8577097505668934 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.8799076212471132, + "precision": 0.9694656488549618, + "correct_pairwise": 0, + "f1": 0.9225181598062954 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {}, + "legal-CD_multi_legal": {}, + "legal-CD_multi_legal-corrupted-asr": {}, + "legal-CD_multi_legal-corrupted-social-media": {}, + "legal-CD_swiss_judgement": {}, + "legal-CD_swiss_judgement-corrupted-asr": {}, + "legal-CD_swiss_judgement-corrupted-social-media": {}, + "legal-CriminalCode": {}, + "legal-CriminalCode-corrupted-asr": {}, + "legal-CriminalCode-corrupted-social-media": {}, + "legal-CivilCode": {}, + "legal-CivilCode-corrupted-asr": {}, + "legal-CivilCode-corrupted-social-media": {}, + "legal-constitution": {}, + "legal-constitution-corrupted-asr": {}, + "legal-constitution-corrupted-social-media": {}, + "legal-all-laws": { + "spacy_dp": { + "recall": 0.5268200963335908, + "precision": 0.5930653744929315, + "correct_pairwise": 0.125, + "f1": 0.5384060549262739 + } + }, + "legal-all-laws-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0.0014204545454545455, + "f1": 0.0 + } + }, + "legal-all-laws-corrupted-social-media": {}, + "legal-all-judgements": { + "spacy_dp": { + "recall": 0.7531369243767247, + "precision": 0.736497603661552, + "correct_pairwise": 0.0, + "f1": 0.736498935685725 + } + }, + "legal-all-judgements-corrupted-asr": { + "spacy_dp": { + "recall": 0.0020469180956228373, + "precision": 0.0663265306122449, + "correct_pairwise": 0.0, + "f1": 0.003907190271968741 + } + }, + "legal-all-judgements-corrupted-social-media": {} + }, + "ja": { + "ersatz": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "spacy_dp": { + "recall": 0.0005580357142857143, + "precision": 0.022222222222222223, + "correct_pairwise": 0, + "f1": 0.0010887316276537832 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "jv": { + "ud": { + "spacy_dp": { + "recall": 0.9933333333333333, + "precision": 0.9644012944983819, + "correct_pairwise": 0, + "f1": 0.9786535303776683 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {} + }, + "ka": { + "opus100": { + "spacy_dp": { + "recall": 0.24555555555555555, + "precision": 0.8735177865612648, + "correct_pairwise": 0, + "f1": 0.3833477883781439 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "kk": { + "ersatz": { + "spacy_dp": { + "recall": 0.9722530521642619, + "precision": 0.9658213891951488, + "correct_pairwise": 0, + "f1": 0.9690265486725664 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "spacy_dp": { + "recall": 0.28211009174311924, + "precision": 0.826890756302521, + "correct_pairwise": 0, + "f1": 0.4206926036767849 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.9723991507430998, + "precision": 0.950207468879668, + "correct_pairwise": 0, + "f1": 0.9611752360965372 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "km": { + "ersatz": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "kn": { + "opus100": { + "spacy_dp": { + "recall": 0.05521472392638037, + "precision": 0.4326923076923077, + "correct_pairwise": 0, + "f1": 0.09793253536452665 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.005842259006815969, + "precision": 0.08571428571428572, + "correct_pairwise": 0, + "f1": 0.010938924339106653 + } + }, + "ted2020-corrupted-social-media": {} + }, + "ko": { + "opus100": { + "spacy_dp": { + "recall": 0.3707865168539326, + "precision": 0.8108108108108109, + "correct_pairwise": 0, + "f1": 0.5088666152659985 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.9975704567541303, + "precision": 0.9980554205153136, + "correct_pairwise": 0, + "f1": 0.997812879708384 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.12233333333333334, + "precision": 0.6608643457382953, + "correct_pairwise": 0, + "f1": 0.20645040315019692 + } + }, + "ted2020-corrupted-social-media": {} + }, + "ku": { + "opus100": { + "spacy_dp": { + "recall": 0.16002310803004044, + "precision": 0.8244047619047619, + "correct_pairwise": 0, + "f1": 0.2680212868892114 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "ky": { + "opus100": { + "spacy_dp": { + "recall": 0.12698412698412698, + "precision": 0.7529411764705882, + "correct_pairwise": 0, + "f1": 0.21731748726655348 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "la": { + "ud": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "lt": { + "ersatz": { + "spacy_dp": { + "recall": 0.9111111111111111, + "precision": 0.9568261376896149, + "correct_pairwise": 0, + "f1": 0.93340922026181 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "spacy_dp": { + "recall": 0.6642376681614349, + "precision": 0.9025133282559025, + "correct_pairwise": 0, + "f1": 0.7652567000322893 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.9056910569105691, + "precision": 0.9720767888307156, + "correct_pairwise": 0, + "f1": 0.9377104377104377 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.00022222222222222223, + "precision": 0.6666666666666666, + "correct_pairwise": 0, + "f1": 0.00044429634566255696 + } + }, + "ted2020-corrupted-social-media": {} + }, + "lv": { + "ersatz": { + "spacy_dp": { + "recall": 0.9790633608815427, + "precision": 0.993847874720358, + "correct_pairwise": 0, + "f1": 0.9864002220371914 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "spacy_dp": { + "recall": 0.663661971830986, + "precision": 0.9153069153069153, + "correct_pairwise": 0, + "f1": 0.7694317439581972 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.9774193548387097, + "precision": 0.9920486435921422, + "correct_pairwise": 0, + "f1": 0.9846796657381616 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0006666666666666666, + "precision": 1.0, + "correct_pairwise": 0, + "f1": 0.0013324450366422385 + } + }, + "ted2020-corrupted-social-media": {} + }, + "mg": { + "opus100": { + "spacy_dp": { + "recall": 0.7587176602924635, + "precision": 0.917687074829932, + "correct_pairwise": 0, + "f1": 0.8306650246305418 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "mk": { + "opus100": { + "spacy_dp": { + "recall": 0.9533333333333334, + "precision": 0.9122807017543859, + "correct_pairwise": 0, + "f1": 0.932355338223309 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "ml": { + "opus100": { + "spacy_dp": { + "recall": 0.26674107142857145, + "precision": 0.7071005917159763, + "correct_pairwise": 0, + "f1": 0.38735818476499195 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0069801616458486405, + "precision": 0.06209150326797386, + "correct_pairwise": 0, + "f1": 0.012549537648612946 + } + }, + "ted2020-corrupted-social-media": {} + }, + "mn": { + "opus100": { + "spacy_dp": { + "recall": 0.19724284199363734, + "precision": 0.9815303430079155, + "correct_pairwise": 0, + "f1": 0.328476821192053 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "mr": { + "opus100": { + "spacy_dp": { + "recall": 0.7929490766648013, + "precision": 0.9503688799463448, + "correct_pairwise": 0, + "f1": 0.8645515558267237 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.8809523809523809, + "precision": 0.9736842105263158, + "correct_pairwise": 0, + "f1": 0.925 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.003777777777777778, + "precision": 0.26356589147286824, + "correct_pairwise": 0, + "f1": 0.0074487895716946004 + } + }, + "ted2020-corrupted-social-media": {} + }, + "ms": { + "opus100": { + "spacy_dp": { + "recall": 0.8346681922196796, + "precision": 0.9210858585858586, + "correct_pairwise": 0, + "f1": 0.8757503001200481 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "mt": { + "opus100": { + "spacy_dp": { + "recall": 0.4622747747747748, + "precision": 0.697536108751062, + "correct_pairwise": 0, + "f1": 0.5560447003047749 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.8841201716738197, + "precision": 0.8306451612903226, + "correct_pairwise": 0, + "f1": 0.8565488565488565 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "my": { + "opus100": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "ne": { + "opus100": { + "spacy_dp": { + "recall": 0.03407755581668625, + "precision": 0.5576923076923077, + "correct_pairwise": 0, + "f1": 0.06423034330011074 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0005367686527106817, + "precision": 0.024390243902439025, + "correct_pairwise": 0, + "f1": 0.001050420168067227 + } + }, + "ted2020-corrupted-social-media": {} + }, + "nl": { + "opus100": { + "spacy_dp": { + "recall": 0.9705555555555555, + "precision": 0.8926928972917731, + "correct_pairwise": 0, + "f1": 0.9299973383018366 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.8955223880597015, + "precision": 0.9619238476953907, + "correct_pairwise": 0, + "f1": 0.927536231884058 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "no": { + "opus100": { + "spacy_dp": { + "recall": 0.9736989367655288, + "precision": 0.9265175718849841, + "correct_pairwise": 0, + "f1": 0.9495225102319237 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.954727793696275, + "precision": 0.9840519787359716, + "correct_pairwise": 0, + "f1": 0.9691681210005817 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {} + }, + "pa": { + "opus100": { + "spacy_dp": { + "recall": 0.025611838360842343, + "precision": 0.4891304347826087, + "correct_pairwise": 0, + "f1": 0.048674959437533805 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.020527859237536656, + "precision": 0.15217391304347827, + "correct_pairwise": 0, + "f1": 0.03617571059431524 + } + }, + "ted2020-corrupted-social-media": {} + }, + "pl": { + "ersatz": { + "spacy_dp": { + "recall": 0.911504424778761, + "precision": 0.9548088064889919, + "correct_pairwise": 0, + "f1": 0.9326542161856254 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "spacy_dp": { + "recall": 0.9214806505888952, + "precision": 0.9183901621017329, + "correct_pairwise": 0, + "f1": 0.91993281075028 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.9603612644254892, + "precision": 0.976530612244898, + "correct_pairwise": 0, + "f1": 0.9683784467493044 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.001, + "precision": 0.6, + "correct_pairwise": 0, + "f1": 0.0019966722129783694 + } + }, + "ted2020-corrupted-social-media": {} + }, + "ps": { + "ersatz": { + "spacy_dp": { + "recall": 0.905829596412556, + "precision": 0.9840566873339238, + "correct_pairwise": 0, + "f1": 0.9433241350031839 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "spacy_dp": { + "recall": 0.012376237623762377, + "precision": 0.7142857142857143, + "correct_pairwise": 0, + "f1": 0.024330900243309 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "pt": { + "opus100": { + "spacy_dp": { + "recall": 0.927007299270073, + "precision": 0.9061470911086718, + "correct_pairwise": 0, + "f1": 0.9164585067998889 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.9123809523809524, + "precision": 0.9896694214876033, + "correct_pairwise": 0, + "f1": 0.9494549058473736 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.00011111111111111112, + "precision": 0.5, + "correct_pairwise": 0, + "f1": 0.00022217285047767166 + } + }, + "ted2020-corrupted-social-media": {}, + "legal-CivilCode": {}, + "legal-CivilCode-corrupted-asr": {}, + "legal-CivilCode-corrupted-social-media": {}, + "legal-CD_wipolex": {}, + "legal-CD_wipolex-corrupted-asr": {}, + "legal-CD_wipolex-corrupted-social-media": {}, + "legal-CriminalCode": {}, + "legal-CriminalCode-corrupted-asr": {}, + "legal-CriminalCode-corrupted-social-media": {}, + "legal-constitution": {}, + "legal-constitution-corrupted-asr": {}, + "legal-constitution-corrupted-social-media": {}, + "legal-all-laws": { + "spacy_dp": { + "recall": 0.5659702227229676, + "precision": 0.8441405837426906, + "correct_pairwise": 0.10344827586206896, + "f1": 0.6453821632414989 + } + }, + "legal-all-laws-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0.0, + "f1": 0.0 + } + }, + "legal-all-laws-corrupted-social-media": {}, + "legal-all-judgements": { + "spacy_dp": { + "recall": 0.727548404207832, + "precision": 0.8081849683472037, + "correct_pairwise": 0.0, + "f1": 0.7603588516644859 + } + }, + "legal-all-judgements-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0.0, + "f1": 0.0 + } + }, + "legal-all-judgements-corrupted-social-media": {} + }, + "ro": { + "ersatz": { + "spacy_dp": { + "recall": 0.9255555555555556, + "precision": 0.9719953325554259, + "correct_pairwise": 0, + "f1": 0.9482071713147411 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "spacy_dp": { + "recall": 0.909652076318743, + "precision": 0.915819209039548, + "correct_pairwise": 0, + "f1": 0.9127252252252253 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.9809725158562368, + "precision": 0.9778714436248683, + "correct_pairwise": 0, + "f1": 0.9794195250659631 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "ru": { + "ersatz": { + "spacy_dp": { + "recall": 0.9147025813692481, + "precision": 0.9509918319719953, + "correct_pairwise": 0, + "f1": 0.9324942791762014 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "spacy_dp": { + "recall": 0.770501138952164, + "precision": 0.734926670287887, + "correct_pairwise": 0, + "f1": 0.7522935779816513 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.7727272727272727, + "precision": 0.9216867469879518, + "correct_pairwise": 0, + "f1": 0.8406593406593407 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "si": { + "opus100": { + "spacy_dp": { + "recall": 0.6804932735426009, + "precision": 0.8442280945757997, + "correct_pairwise": 0, + "f1": 0.7535692116697704 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.004310344827586207, + "precision": 0.045454545454545456, + "correct_pairwise": 0, + "f1": 0.007874015748031496 + } + }, + "ted2020-corrupted-social-media": {} + }, + "sk": { + "opus100": { + "spacy_dp": { + "recall": 0.8996074032529445, + "precision": 0.9331006399069226, + "correct_pairwise": 0, + "f1": 0.9160479725870931 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.8301886792452831, + "precision": 0.9887640449438202, + "correct_pairwise": 0, + "f1": 0.9025641025641026 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "sl": { + "opus100": { + "spacy_dp": { + "recall": 0.9464882943143813, + "precision": 0.9060832443970117, + "correct_pairwise": 0, + "f1": 0.925845147219193 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.9757155247181266, + "precision": 0.9868421052631579, + "correct_pairwise": 0, + "f1": 0.981247274313127 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.00022222222222222223, + "precision": 0.6666666666666666, + "correct_pairwise": 0, + "f1": 0.00044429634566255696 + } + }, + "ted2020-corrupted-social-media": {}, + "short-sequences": { + "spacy_dp": { + "recall": 0.679992174044594, + "precision": 0.971770702415863, + "correct_pairwise": 0.31708211143695014, + "f1": 0.7729565420731193 + } + }, + "short-sequences-corrupted-asr": { + "spacy_dp": { + "recall": 0.4661208862821763, + "precision": 0.9965175953079178, + "correct_pairwise": 0.0344574780058651, + "f1": 0.6238615998696797 + } + }, + "short-sequences-corrupted-social-media": {} + }, + "sq": { + "opus100": { + "spacy_dp": { + "recall": 0.928369994359842, + "precision": 0.9236812570145904, + "correct_pairwise": 0, + "f1": 0.9260196905766526 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 1.0, + "precision": 1.0, + "correct_pairwise": 1, + "f1": 1.0 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "sr": { + "opus100": { + "spacy_dp": { + "recall": 0.9693080357142857, + "precision": 0.9244278871740287, + "correct_pairwise": 0, + "f1": 0.9463361481885045 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.9572649572649573, + "precision": 1.0, + "correct_pairwise": 0, + "f1": 0.9781659388646288 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {}, + "short-sequences": { + "spacy_dp": { + "recall": 0.8490885416666666, + "precision": 0.9791666666666665, + "correct_pairwise": 0.6510416666666666, + "f1": 0.8910269129019128 + } + }, + "short-sequences-corrupted-asr": { + "spacy_dp": { + "recall": 0.43632812499999996, + "precision": 1.0, + "correct_pairwise": 0.005208333333333333, + "f1": 0.5994212962962973 + } + }, + "short-sequences-corrupted-social-media": {} + }, + "sv": { + "opus100": { + "spacy_dp": { + "recall": 0.9452819653824679, + "precision": 0.9166215484569572, + "correct_pairwise": 0, + "f1": 0.9307311709730621 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.9484425349087003, + "precision": 0.9474248927038627, + "correct_pairwise": 0, + "f1": 0.9479334406870639 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "ta": { + "ersatz": { + "spacy_dp": { + "recall": 0.620575221238938, + "precision": 0.75, + "correct_pairwise": 0, + "f1": 0.679176755447942 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "spacy_dp": { + "recall": 0.2598870056497175, + "precision": 0.6199460916442049, + "correct_pairwise": 0, + "f1": 0.3662420382165605 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.6018518518518519, + "precision": 0.6842105263157895, + "correct_pairwise": 0, + "f1": 0.6403940886699506 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.017793594306049824, + "precision": 0.11936339522546419, + "correct_pairwise": 0, + "f1": 0.030970406056434967 + } + }, + "ted2020-corrupted-social-media": {} + }, + "te": { + "opus100": { + "spacy_dp": { + "recall": 0.4883720930232558, + "precision": 0.9308108108108109, + "correct_pairwise": 0, + "f1": 0.640625 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.12636439966414778, + "precision": 0.40511440107671604, + "correct_pairwise": 0, + "f1": 0.19264 + } + }, + "ted2020-corrupted-social-media": {} + }, + "tg": { + "opus100": { + "spacy_dp": { + "recall": 0.6497490239821528, + "precision": 0.7463164638052531, + "correct_pairwise": 0, + "f1": 0.6946929039952296 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "th": { + "opus100": { + "spacy_dp": { + "recall": 0.12626262626262627, + "precision": 0.78125, + "correct_pairwise": 0, + "f1": 0.21739130434782608 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.01, + "precision": 0.34615384615384615, + "correct_pairwise": 0, + "f1": 0.019438444924406047 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.006111111111111111, + "precision": 0.2412280701754386, + "correct_pairwise": 0, + "f1": 0.011920242739488513 + } + }, + "ted2020-corrupted-social-media": {} + }, + "tr": { + "ersatz": { + "spacy_dp": { + "recall": 0.9298375184638109, + "precision": 0.9752130131680867, + "correct_pairwise": 0, + "f1": 0.9519848771266539 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "spacy_dp": { + "recall": 0.954443194600675, + "precision": 0.9177934018388318, + "correct_pairwise": 0, + "f1": 0.9357595809208713 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.9737373737373738, + "precision": 0.9757085020242915, + "correct_pairwise": 0, + "f1": 0.9747219413549039 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "uk": { + "opus100": { + "spacy_dp": { + "recall": 0.8922389726409827, + "precision": 0.8912437255995538, + "correct_pairwise": 0, + "f1": 0.8917410714285715 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.9331683168316832, + "precision": 0.9448621553884712, + "correct_pairwise": 0, + "f1": 0.9389788293897883 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "ur": { + "opus100": { + "spacy_dp": { + "recall": 0.19047619047619047, + "precision": 0.6403162055335968, + "correct_pairwise": 0, + "f1": 0.29361123697326685 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "uz": { + "opus100": { + "spacy_dp": { + "recall": 0.6660997732426304, + "precision": 0.6081780538302277, + "correct_pairwise": 0, + "f1": 0.6358225108225108 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "vi": { + "opus100": { + "spacy_dp": { + "recall": 0.875, + "precision": 0.9296543359611886, + "correct_pairwise": 0, + "f1": 0.9014995589532491 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.9847222222222223, + "precision": 0.9365918097754293, + "correct_pairwise": 0, + "f1": 0.9600541638456331 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "xh": { + "opus100": { + "spacy_dp": { + "recall": 0.5192861255037421, + "precision": 0.8549763033175355, + "correct_pairwise": 0, + "f1": 0.6461318051575932 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {} + }, + "yi": { + "opus100": { + "spacy_dp": { + "recall": 0.020905923344947737, + "precision": 0.96, + "correct_pairwise": 0, + "f1": 0.040920716112531966 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {} + }, + "yo": { + "opus100": { + "spacy_dp": { + "recall": 0.17103235747303544, + "precision": 0.6649769585253457, + "correct_pairwise": 0, + "f1": 0.2720844725181484 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.7587412587412588, + "precision": 0.8282442748091603, + "correct_pairwise": 0, + "f1": 0.791970802919708 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {} + }, + "zh": { + "ersatz": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ersatz-corrupted-asr": {}, + "ersatz-corrupted-social-media": {}, + "opus100": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {}, + "ud": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ud-corrupted-asr": {}, + "ud-corrupted-social-media": {}, + "ted2020-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "ted2020-corrupted-social-media": {} + }, + "zu": { + "opus100": { + "spacy_dp": { + "recall": 0.1538918597742127, + "precision": 0.7254901960784313, + "correct_pairwise": 0, + "f1": 0.25392156862745097 + } + }, + "opus100-corrupted-asr": {}, + "opus100-corrupted-social-media": {} + }, + "tr-de_TR": { + "code-switching": { + "spacy_dp": { + "recall": 0.9986187845303868, + "precision": 1.0, + "correct_pairwise": 0, + "f1": 0.9993089149965445 + } + }, + "code-switching-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "code-switching-corrupted-social-media": {} + }, + "tr-de_DE": { + "code-switching": { + "spacy_dp": { + "recall": 0.9986187845303868, + "precision": 1.0, + "correct_pairwise": 0, + "f1": 0.9993089149965445 + } + }, + "code-switching-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "code-switching-corrupted-social-media": {} + }, + "es-en_ES": { + "code-switching": { + "spacy_dp": { + "recall": 0.7766666666666666, + "precision": 0.9957264957264957, + "correct_pairwise": 0, + "f1": 0.8726591760299625 + } + }, + "code-switching-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "code-switching-corrupted-social-media": {} + }, + "es-en_EN": { + "code-switching": { + "spacy_dp": { + "recall": 0.7766666666666666, + "precision": 0.9957264957264957, + "correct_pairwise": 0, + "f1": 0.8726591760299625 + } + }, + "code-switching-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "code-switching-corrupted-social-media": {} + }, + "vi-en_VI": { + "code-switching": { + "spacy_dp": { + "recall": 0.0016339869281045752, + "precision": 0.5, + "correct_pairwise": 0, + "f1": 0.003257328990228013 + } + }, + "code-switching-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "code-switching-corrupted-social-media": {} + }, + "vi-en_EN": { + "code-switching": { + "spacy_dp": { + "recall": 0.0016339869281045752, + "precision": 0.5, + "correct_pairwise": 0, + "f1": 0.003257328990228013 + } + }, + "code-switching-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "code-switching-corrupted-social-media": {} + }, + "en-de_EN": { + "code-switching": { + "spacy_dp": { + "recall": 0.8441558441558441, + "precision": 0.8488805970149254, + "correct_pairwise": 0, + "f1": 0.8465116279069768 + } + }, + "code-switching-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "code-switching-corrupted-social-media": {}, + "short-sequences": { + "spacy_dp": { + "recall": 0.946311929004237, + "precision": 0.9433599566260463, + "correct_pairwise": 0.6964656964656964, + "f1": 0.9330828034336727 + } + }, + "short-sequences-corrupted-asr": { + "spacy_dp": { + "recall": 0.38094752400241794, + "precision": 0.9958419958419958, + "correct_pairwise": 0.10602910602910603, + "f1": 0.5094625591005684 + } + }, + "short-sequences-corrupted-social-media": {} + }, + "en-de_DE": { + "code-switching": { + "spacy_dp": { + "recall": 0.8441558441558441, + "precision": 0.8488805970149254, + "correct_pairwise": 0, + "f1": 0.8465116279069768 + } + }, + "code-switching-corrupted-asr": { + "spacy_dp": { + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "f1": 0.0 + } + }, + "code-switching-corrupted-social-media": {}, + "short-sequences": { + "spacy_dp": { + "recall": 0.946311929004237, + "precision": 0.9433599566260463, + "correct_pairwise": 0.6964656964656964, + "f1": 0.9330828034336727 + } + }, + "short-sequences-corrupted-asr": { + "spacy_dp": { + "recall": 0.38094752400241794, + "precision": 0.9958419958419958, + "correct_pairwise": 0.10602910602910603, + "f1": 0.5094625591005684 + } + }, + "short-sequences-corrupted-social-media": {} + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/command-r.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/command-r.json new file mode 100644 index 0000000000000000000000000000000000000000..b3814fc14c2001ef837790919061fc3b6c83b814 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/command-r.json @@ -0,0 +1,7417 @@ +{ + "af": { + "opus100": { + "command-r": { + "f1": 0.5578496299181924, + "recall": 0.4105504587155963, + "precision": 0.8699878493317132, + "correct_pairwise": 0, + "hallucination_rate": 0.006414780658416851, + "deletion_rate": 0.004517009363383993 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.3749498193496588, + "recall": 0.2677752293577982, + "precision": 0.6251673360107095, + "correct_pairwise": 0, + "hallucination_rate": 0.003561887800534283, + "deletion_rate": 0.0018798852280597605 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.5010615711252654, + "recall": 0.40341880341880343, + "precision": 0.6610644257703081, + "correct_pairwise": 0, + "hallucination_rate": 0.005024738019415764, + "deletion_rate": 0.0019944683805137135 + } + }, + "ud": { + "command-r": { + "f1": 0.8613569321533923, + "recall": 0.7643979057591623, + "precision": 0.9864864864864865, + "correct_pairwise": 0, + "hallucination_rate": 0.001169313155620329, + "deletion_rate": 0.0018302292870579064 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.760989010989011, + "recall": 0.725130890052356, + "precision": 0.8005780346820809, + "correct_pairwise": 0, + "hallucination_rate": 0.007071089395086367, + "deletion_rate": 0.006778611244924644 + } + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "am": { + "opus100": { + "command-r": { + "f1": 0.06559083810515356, + "recall": 0.0350974930362117, + "precision": 0.5, + "correct_pairwise": 0, + "hallucination_rate": 0.019289566220986345, + "deletion_rate": 0.022529241443545286 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.011037527593818984, + "recall": 0.005571030640668524, + "precision": 0.5882352941176471, + "correct_pairwise": 0, + "hallucination_rate": 0.002434693172413239, + "deletion_rate": 0.03192421113530627 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.0, + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "hallucination_rate": 0.06266277939747328, + "deletion_rate": 0.020719144800777453 + } + }, + "ud": { + "command-r": {} + }, + "ud-corrupted-asr": { + "command-r": {} + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "ar": { + "opus100": { + "command-r": { + "f1": 0.4446308724832215, + "recall": 0.29575892857142855, + "precision": 0.8952702702702703, + "correct_pairwise": 0, + "hallucination_rate": 0.012625604763676964, + "deletion_rate": 0.006084852995906215 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.3486556808326106, + "recall": 0.22433035714285715, + "precision": 0.7821011673151751, + "correct_pairwise": 0, + "hallucination_rate": 0.03129372612789774, + "deletion_rate": 0.0036682675944484365 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.20871712088120786, + "recall": 0.12211111111111111, + "precision": 0.7178314826910516, + "correct_pairwise": 0, + "hallucination_rate": 0.027267025299489638, + "deletion_rate": 0.003991026371744522 + } + }, + "ud": { + "command-r": { + "f1": 0.7559471365638767, + "recall": 0.7009803921568627, + "precision": 0.8202676864244742, + "correct_pairwise": 0, + "hallucination_rate": 0.004437769341655409, + "deletion_rate": 0.009781205895893553 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.6337522441651705, + "recall": 0.576797385620915, + "precision": 0.703187250996016, + "correct_pairwise": 0, + "hallucination_rate": 0.011385980154556679, + "deletion_rate": 0.0028121999176917096 + } + }, + "ersatz": { + "command-r": { + "f1": 0.558237145855194, + "recall": 0.39320029563932, + "precision": 0.9620253164556962, + "correct_pairwise": 0, + "hallucination_rate": 0.009535279629093016, + "deletion_rate": 0.008738409156766155 + } + }, + "ersatz-corrupted-asr": { + "command-r": { + "f1": 0.2720097146326655, + "recall": 0.1655580192165558, + "precision": 0.7619047619047619, + "correct_pairwise": 0, + "hallucination_rate": 0.02766320645905421, + "deletion_rate": 0.003607843137254902 + } + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "az": { + "opus100": { + "command-r": { + "f1": 0.6045102659037361, + "recall": 0.5002785515320334, + "precision": 0.7636054421768708, + "correct_pairwise": 0, + "hallucination_rate": 0.1920297182045984, + "deletion_rate": 0.02672879940211896 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.30994152046783624, + "recall": 0.20668523676880224, + "precision": 0.6193656093489148, + "correct_pairwise": 0, + "hallucination_rate": 0.30896023039059956, + "deletion_rate": 0.01929273716740039 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.32039699707341907, + "recall": 0.20680026281208935, + "precision": 0.7108977978543196, + "correct_pairwise": 0, + "hallucination_rate": 0.4056503741767093, + "deletion_rate": 0.020134938113007483 + } + }, + "ud": { + "command-r": {} + }, + "ud-corrupted-asr": { + "command-r": {} + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "be": { + "opus100": { + "command-r": { + "f1": 0.36134453781512604, + "recall": 0.24335031126202603, + "precision": 0.7014681892332789, + "correct_pairwise": 0, + "hallucination_rate": 0.004731058807569694, + "deletion_rate": 0.009445160415112256 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.1899810964083176, + "recall": 0.11381653454133635, + "precision": 0.5742857142857143, + "correct_pairwise": 0, + "hallucination_rate": 0.0064017071218991735, + "deletion_rate": 0.0010847337067662489 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.16555237185609678, + "recall": 0.09374436632413917, + "precision": 0.7074829931972789, + "correct_pairwise": 0, + "hallucination_rate": 0.0038197819971265605, + "deletion_rate": 0.0004000447361855519 + } + }, + "ud": { + "command-r": { + "f1": 0.6805369127516779, + "recall": 0.5232198142414861, + "precision": 0.9731285988483686, + "correct_pairwise": 0, + "hallucination_rate": 0.002034228521220919, + "deletion_rate": 0.004202162203461053 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.17610062893081763, + "recall": 0.10113519091847266, + "precision": 0.6805555555555556, + "correct_pairwise": 0, + "hallucination_rate": 0.005249658173398405, + "deletion_rate": 0.0040619978642075115 + } + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "bg": { + "opus100": { + "command-r": { + "f1": 0.5794753086419753, + "recall": 0.41791875347801893, + "precision": 0.9446540880503145, + "correct_pairwise": 0, + "hallucination_rate": 0.002949633154868134, + "deletion_rate": 0.001499603410668253 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.1296579887697805, + "recall": 0.07067334446299388, + "precision": 0.7839506172839507, + "correct_pairwise": 0, + "hallucination_rate": 0.004367663689895878, + "deletion_rate": 0.00019498498615606598 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.19033646322378717, + "recall": 0.1081351411424761, + "precision": 0.7936378466557912, + "correct_pairwise": 0, + "hallucination_rate": 0.007492848072808842, + "deletion_rate": 0.001159872129964969 + } + }, + "ud": { + "command-r": { + "f1": 0.7694189602446484, + "recall": 0.6264940239043825, + "precision": 0.9968304278922345, + "correct_pairwise": 0, + "hallucination_rate": 0.004909832372546528, + "deletion_rate": 0.003084529984635113 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.19237435008665513, + "recall": 0.11055776892430279, + "precision": 0.74, + "correct_pairwise": 0, + "hallucination_rate": 0.0028029245834376975, + "deletion_rate": 0.0003220381436290121 + } + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "bn": { + "opus100": { + "command-r": { + "f1": 0.04774823657080846, + "recall": 0.024581005586592177, + "precision": 0.8301886792452831, + "correct_pairwise": 0, + "hallucination_rate": 5.041302672610603e-05, + "deletion_rate": 0.9137649168545152 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.003342618384401114, + "recall": 0.0016759776536312849, + "precision": 0.6, + "correct_pairwise": 0, + "hallucination_rate": 0.0001359184489306416, + "deletion_rate": 0.9009714171497102 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.0, + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "hallucination_rate": 3.4195828108970706e-05, + "deletion_rate": 0.9443565485010829 + } + }, + "ud": { + "command-r": { + "f1": 0.5915492957746479, + "recall": 0.42, + "precision": 1.0, + "correct_pairwise": 0, + "hallucination_rate": 0.0, + "deletion_rate": 0.5524316109422492 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.0, + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "hallucination_rate": 0.018231540565177756, + "deletion_rate": 0.5013673655423884 + } + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "ca": { + "opus100": { + "command-r": { + "f1": 0.6596745027124773, + "recall": 0.5140924464487034, + "precision": 0.9202825428859738, + "correct_pairwise": 0, + "hallucination_rate": 0.0023203538539627293, + "deletion_rate": 0.0037394988450024343 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.3791851553045583, + "recall": 0.2649379932356257, + "precision": 0.6666666666666666, + "correct_pairwise": 0, + "hallucination_rate": 0.009288122654112857, + "deletion_rate": 0.00411391733994953 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.5155131264916468, + "recall": 0.396440489432703, + "precision": 0.7368203431879264, + "correct_pairwise": 0, + "hallucination_rate": 0.008450256815676684, + "deletion_rate": 0.007481749427673039 + } + }, + "ud": { + "command-r": { + "f1": 0.7663482733284349, + "recall": 0.6279349789283564, + "precision": 0.9830348727615457, + "correct_pairwise": 0, + "hallucination_rate": 0.0015913824633664426, + "deletion_rate": 0.007679423357883863 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.6170662905500705, + "recall": 0.526791089704997, + "precision": 0.7446808510638298, + "correct_pairwise": 0, + "hallucination_rate": 0.0053416854183137704, + "deletion_rate": 0.015295262421699204 + } + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "ceb": { + "opus100": { + "command-r": {} + }, + "opus100-corrupted-asr": { + "command-r": {} + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.28125, + "recall": 0.1836734693877551, + "precision": 0.6, + "correct_pairwise": 0, + "hallucination_rate": 0.01685866816521495, + "deletion_rate": 0.0008429334082607474 + } + }, + "ud": { + "command-r": { + "f1": 0.8990228013029316, + "recall": 0.8165680473372781, + "precision": 1.0, + "correct_pairwise": 0, + "hallucination_rate": 0.002751031636863824, + "deletion_rate": 0.000343878954607978 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.5, + "recall": 0.35502958579881655, + "precision": 0.8450704225352113, + "correct_pairwise": 0, + "hallucination_rate": 0.0055288032816122705, + "deletion_rate": 0.0017834849295523454 + } + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "cs": { + "opus100": { + "command-r": { + "f1": 0.6899501069137562, + "recall": 0.5459672870840383, + "precision": 0.9370764762826719, + "correct_pairwise": 0, + "hallucination_rate": 0.004554212646698196, + "deletion_rate": 0.006259123022128802 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.5121765601217655, + "recall": 0.3795826283135928, + "precision": 0.7871345029239766, + "correct_pairwise": 0, + "hallucination_rate": 0.011525981887742748, + "deletion_rate": 0.003946922369121991 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.5075252714339199, + "recall": 0.3766392531673705, + "precision": 0.7778287812715171, + "correct_pairwise": 0, + "hallucination_rate": 0.015059925038934347, + "deletion_rate": 0.003884804783912713 + } + }, + "ud": { + "command-r": { + "f1": 0.6892768079800499, + "recall": 0.5298499287983349, + "precision": 0.9859355890746025, + "correct_pairwise": 0, + "hallucination_rate": 0.002406545804588481, + "deletion_rate": 0.00504156114758726 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.6424403183023873, + "recall": 0.5308493150684932, + "precision": 0.8134340890008396, + "correct_pairwise": 0, + "hallucination_rate": 0.00996626198981861, + "deletion_rate": 0.004187774470400119 + } + }, + "ersatz": { + "command-r": { + "f1": 0.6641221374045801, + "recall": 0.5041854475209272, + "precision": 0.9726708074534162, + "correct_pairwise": 0, + "hallucination_rate": 0.0027071660277204366, + "deletion_rate": 0.006823945738720141 + } + }, + "ersatz-corrupted-asr": { + "command-r": { + "f1": 0.6377708978328174, + "recall": 0.5305859626529298, + "precision": 0.7992240543161979, + "correct_pairwise": 0, + "hallucination_rate": 0.007842405566121771, + "deletion_rate": 0.002371379733731372 + } + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "cy": { + "opus100": { + "command-r": { + "f1": 0.39799635701275043, + "recall": 0.26484848484848483, + "precision": 0.8003663003663004, + "correct_pairwise": 0, + "hallucination_rate": 0.008955276399591823, + "deletion_rate": 0.003448397199056969 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.18099999999999997, + "recall": 0.1096969696969697, + "precision": 0.5171428571428571, + "correct_pairwise": 0, + "hallucination_rate": 0.00537984698151492, + "deletion_rate": 0.002587538859621363 + } + }, + "ted2020-corrupted-asr": { + "command-r": {} + }, + "ud": { + "command-r": { + "f1": 0.8079561042524006, + "recall": 0.6872812135355892, + "precision": 0.9800332778702163, + "correct_pairwise": 0, + "hallucination_rate": 0.0011155241737766009, + "deletion_rate": 0.0011277826811807393 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.4228660924040721, + "recall": 0.31505250875145857, + "precision": 0.6428571428571429, + "correct_pairwise": 0, + "hallucination_rate": 0.0034728799646397677, + "deletion_rate": 0.0025131022289575046 + } + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "da": { + "opus100": { + "command-r": { + "f1": 0.7537112010796222, + "recall": 0.6254199328107503, + "precision": 0.9482173174872666, + "correct_pairwise": 0, + "hallucination_rate": 0.0028991434017102756, + "deletion_rate": 0.005842102572715921 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.5332409972299168, + "recall": 0.4311310190369541, + "precision": 0.6987295825771325, + "correct_pairwise": 0, + "hallucination_rate": 0.004485627836611195, + "deletion_rate": 0.005007564296520424 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.5614441416893733, + "recall": 0.45804156941202623, + "precision": 0.7251451698046806, + "correct_pairwise": 0, + "hallucination_rate": 0.008269846967944371, + "deletion_rate": 0.003894394465173453 + } + }, + "ud": { + "command-r": { + "f1": 0.7383863080684596, + "recall": 0.594488188976378, + "precision": 0.9741935483870968, + "correct_pairwise": 0, + "hallucination_rate": 0.001614326206521127, + "deletion_rate": 0.001802038556116607 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.5995423340961098, + "recall": 0.515748031496063, + "precision": 0.7158469945355191, + "correct_pairwise": 0, + "hallucination_rate": 0.0024615742445680613, + "deletion_rate": 0.0011435659876339814 + } + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "de": { + "opus100": { + "command-r": { + "f1": 0.7616279069767442, + "recall": 0.6919014084507042, + "precision": 0.8469827586206896, + "correct_pairwise": 0, + "hallucination_rate": 0.0033190996233735154, + "deletion_rate": 0.021212006701180265 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.5877976190476191, + "recall": 0.4636150234741784, + "precision": 0.8028455284552846, + "correct_pairwise": 0, + "hallucination_rate": 0.009414510795565064, + "deletion_rate": 0.02557219736756792 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.5560322885608319, + "recall": 0.42487219382084906, + "precision": 0.804334104775931, + "correct_pairwise": 0, + "hallucination_rate": 0.012909191874365403, + "deletion_rate": 0.01215871149721997 + } + }, + "ud": { + "command-r": { + "f1": 0.8525434642627173, + "recall": 0.7531285551763367, + "precision": 0.9821958456973294, + "correct_pairwise": 0, + "hallucination_rate": 0.005317151873687202, + "deletion_rate": 0.03173040822332038 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.7038801906058544, + "recall": 0.5881683731513083, + "precision": 0.8762711864406779, + "correct_pairwise": 0, + "hallucination_rate": 0.0067933793160846, + "deletion_rate": 0.029327008104199827 + } + }, + "ersatz": { + "command-r": { + "f1": 0.7593433461404121, + "recall": 0.6148190045248869, + "precision": 0.9926940639269406, + "correct_pairwise": 0, + "hallucination_rate": 0.002734820849092496, + "deletion_rate": 0.019497347984692166 + } + }, + "ersatz-corrupted-asr": { + "command-r": { + "f1": 0.61794500723589, + "recall": 0.4830316742081448, + "precision": 0.857429718875502, + "correct_pairwise": 0, + "hallucination_rate": 0.01173433572609316, + "deletion_rate": 0.025900681596884127 + } + }, + "legal-all-judgements": { + "command-r": { + "f1": 0.5574282127576015, + "f1_success": 0.5574282127576015, + "recall": 0.395119329240012, + "recall_success": 0.395119329240012, + "precision": 0.9613304664937231, + "precision_success": 0.9613304664937231, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.003284928909576044, + "hallucination_rate_success": 0.003284928909576044, + "deletion_rate": 0.018504864246254762, + "deletion_rate_success": 0.018504864246254762 + } + }, + "legal-all-judgements-corrupted-asr": { + "command-r": { + "f1": 0.4538489619087348, + "f1_success": 0.4538489619087348, + "recall": 0.3140160582057992, + "recall_success": 0.3140160582057992, + "precision": 0.8566800093138417, + "precision_success": 0.8566800093138417, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.011387247763065707, + "hallucination_rate_success": 0.011387247763065707, + "deletion_rate": 0.020100430577313772, + "deletion_rate_success": 0.020100430577313772 + } + }, + "legal-all-laws": { + "command-r": { + "f1": 0.6426847481261577, + "f1_success": 0.6426847481261577, + "recall": 0.4896334539570413, + "recall_success": 0.4896334539570413, + "precision": 0.9395963712496572, + "precision_success": 0.9395963712496572, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.011491805858697912, + "hallucination_rate_success": 0.011491805858697912, + "deletion_rate": 0.03201969885267037, + "deletion_rate_success": 0.03201969885267037 + } + }, + "legal-all-laws-corrupted-asr": { + "command-r": { + "f1": 0.6409905137874913, + "f1_success": 0.6409905137874913, + "recall": 0.4984533298178948, + "recall_success": 0.4984533298178948, + "precision": 0.8984300633726647, + "precision_success": 0.8984300633726647, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.009138970315355613, + "hallucination_rate_success": 0.009138970315355613, + "deletion_rate": 0.03397841524938666, + "deletion_rate_success": 0.03397841524938666 + } + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "el": { + "opus100": { + "command-r": { + "f1": 0.6511627906976744, + "recall": 0.49246231155778897, + "precision": 0.9607843137254902, + "correct_pairwise": 0, + "hallucination_rate": 0.00497964177164376, + "deletion_rate": 0.0015005830290749909 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.18799212598425197, + "recall": 0.10664433277498604, + "precision": 0.7925311203319502, + "correct_pairwise": 0, + "hallucination_rate": 0.009285980721283154, + "deletion_rate": 0.002159530400298408 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.1904947409427347, + "recall": 0.10866666666666666, + "precision": 0.7712933753943217, + "correct_pairwise": 0, + "hallucination_rate": 0.00721127718487924, + "deletion_rate": 0.0023761378934805794 + } + }, + "ud": { + "command-r": { + "f1": 0.6666666666666667, + "recall": 0.5048780487804878, + "precision": 0.981042654028436, + "correct_pairwise": 0, + "hallucination_rate": 0.002838357921744708, + "deletion_rate": 0.0014592687620269404 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.4351005484460695, + "recall": 0.29024390243902437, + "precision": 0.8686131386861314, + "correct_pairwise": 0, + "hallucination_rate": 0.004631064003261313, + "deletion_rate": 0.005038728088055442 + } + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "en": { + "opus100": { + "command-r": { + "f1": 0.8945022288261517, + "recall": 0.8440830061693775, + "precision": 0.9513274336283186, + "correct_pairwise": 0, + "hallucination_rate": 0.0054419997396172376, + "deletion_rate": 0.0026689233172763963 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.717817014446228, + "recall": 0.6270330902972518, + "precision": 0.8393393393393394, + "correct_pairwise": 0, + "hallucination_rate": 0.008534736107569881, + "deletion_rate": 0.006213180531139709 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.5254296249913032, + "recall": 0.41955555555555557, + "precision": 0.7027731248836776, + "correct_pairwise": 0, + "hallucination_rate": 0.005328803775428343, + "deletion_rate": 0.0035988472932455507 + } + }, + "ud": { + "command-r": { + "f1": 0.7714987714987716, + "recall": 0.6369168356997972, + "precision": 0.9781931464174455, + "correct_pairwise": 0, + "hallucination_rate": 0.003482390185991294, + "deletion_rate": 0.012811634349030472 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.5815251084934904, + "recall": 0.47565922920892495, + "precision": 0.748006379585327, + "correct_pairwise": 0, + "hallucination_rate": 0.0047836221749265224, + "deletion_rate": 0.0018648018648018648 + } + }, + "ersatz": { + "command-r": { + "f1": 0.8716531079693547, + "recall": 0.7957888664551486, + "precision": 0.963506198707875, + "correct_pairwise": 0, + "hallucination_rate": 0.002664469138818742, + "deletion_rate": 0.012745594764383228 + } + }, + "ersatz-corrupted-asr": { + "command-r": { + "f1": 0.6939574201628053, + "recall": 0.6393135275454284, + "precision": 0.7588154741526875, + "correct_pairwise": 0, + "hallucination_rate": 0.009205201708358257, + "deletion_rate": 0.0072526758063086155 + } + }, + "legal-all-judgements": { + "command-r": { + "f1": 0.6895032569081385, + "f1_success": 0.6895032569081385, + "recall": 0.5455180085332269, + "recall_success": 0.5455180085332269, + "precision": 0.9482049163562982, + "precision_success": 0.9482049163562982, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.0031159387589780392, + "hallucination_rate_success": 0.0031159387589780392, + "deletion_rate": 0.019178040000778485, + "deletion_rate_success": 0.019178040000778485 + } + }, + "legal-all-judgements-corrupted-asr": { + "command-r": { + "f1": 0.5602868190187108, + "f1_success": 0.5602868190187108, + "recall": 0.43883052660801414, + "recall_success": 0.43883052660801414, + "precision": 0.7874240964416931, + "precision_success": 0.7874240964416931, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.0047918226361659925, + "hallucination_rate_success": 0.0047918226361659925, + "deletion_rate": 0.005481473829638015, + "deletion_rate_success": 0.005481473829638015 + } + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "en-de": { + "opus100": { + "command-r": {} + }, + "opus100-corrupted-asr": { + "command-r": {} + }, + "ted2020-corrupted-asr": { + "command-r": {} + }, + "ud": { + "command-r": {} + }, + "ud-corrupted-asr": { + "command-r": {} + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": { + "f1": 0.6367432150313151, + "recall": 0.5658627087198516, + "precision": 0.7279236276849642, + "correct_pairwise": 0, + "hallucination_rate": 0.003340732270576893, + "deletion_rate": 0.03248806080581153 + } + }, + "code-switching-corrupted-asr": { + "command-r": { + "f1": 0.5108695652173912, + "recall": 0.4359925788497217, + "precision": 0.6167979002624672, + "correct_pairwise": 0, + "hallucination_rate": 0.012348517947892474, + "deletion_rate": 0.03724101455607423 + } + }, + "short-sequences": { + "command-r": { + "f1": 0.7613330697887734, + "f1_success": 0.7677174141895178, + "recall": 0.7566376910179007, + "recall_success": 0.762982661173187, + "precision": 0.8736964175858795, + "precision_success": 0.8810230122826165, + "correct_pairwise": 0.3388773388773389, + "correct_pairwise_success": 0.3417190775681342, + "hallucination_rate": 0.009170057288843415, + "hallucination_rate_success": 0.009246955043886127, + "deletion_rate": 0.02053851226979671, + "deletion_rate_success": 0.020710742980654544 + } + }, + "short-sequences-corrupted-asr": { + "command-r": { + "f1": 0.6485107266105019, + "f1_success": 0.6539489716973824, + "recall": 0.6974350641116538, + "recall_success": 0.7032835761796761, + "precision": 0.7478720297327373, + "precision_success": 0.7541434932944374, + "correct_pairwise": 0.13513513513513514, + "correct_pairwise_success": 0.13626834381551362, + "hallucination_rate": 0.01000287629457981, + "hallucination_rate_success": 0.010086757856798507, + "deletion_rate": 0.00705831630644462, + "deletion_rate_success": 0.007117505541718788 + } + } + }, + "eo": { + "opus100": { + "command-r": { + "f1": 0.8462962962962962, + "recall": 0.7689287717330342, + "precision": 0.940974605353466, + "correct_pairwise": 0, + "hallucination_rate": 0.0016528710500286325, + "deletion_rate": 0.0025378728720912075 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.5630865484880083, + "recall": 0.4542905215928211, + "precision": 0.7404021937842779, + "correct_pairwise": 0, + "hallucination_rate": 0.003256356679601639, + "deletion_rate": 0.010664568125695368 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.5195465621358195, + "recall": 0.42710329210938863, + "precision": 0.6630611141157382, + "correct_pairwise": 0, + "hallucination_rate": 0.003033102654836404, + "deletion_rate": 0.0018975568333212973 + } + }, + "ud": { + "command-r": {} + }, + "ud-corrupted-asr": { + "command-r": {} + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "es": { + "opus100": { + "command-r": { + "f1": 0.8010403120936281, + "recall": 0.6917462099943852, + "precision": 0.9513513513513514, + "correct_pairwise": 0, + "hallucination_rate": 0.0017744233124234623, + "deletion_rate": 0.003273935970809487 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.5708061002178649, + "recall": 0.4413250982594048, + "precision": 0.8078108941418294, + "correct_pairwise": 0, + "hallucination_rate": 0.004431636247198206, + "deletion_rate": 0.0018956131924431636 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.47013188518231186, + "recall": 0.3375292413946753, + "precision": 0.7743419371326348, + "correct_pairwise": 0, + "hallucination_rate": 0.006398207896977338, + "deletion_rate": 0.005060643984684312 + } + }, + "ud": { + "command-r": { + "f1": 0.8179808400884304, + "recall": 0.7170542635658915, + "precision": 0.9519725557461407, + "correct_pairwise": 0, + "hallucination_rate": 0.0017168951081034582, + "deletion_rate": 0.007960801743419166 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.6172539489671932, + "recall": 0.49224806201550386, + "precision": 0.8273615635179153, + "correct_pairwise": 0, + "hallucination_rate": 0.010135233492488646, + "deletion_rate": 0.0014775241644346105 + } + }, + "ersatz": { + "command-r": { + "f1": 0.7684489615554575, + "recall": 0.6307580703663402, + "precision": 0.9830412662521198, + "correct_pairwise": 0, + "hallucination_rate": 0.001164681698395745, + "deletion_rate": 0.0035074630871042363 + } + }, + "ersatz-corrupted-asr": { + "command-r": { + "f1": 0.5332387035722734, + "recall": 0.4087776568734131, + "precision": 0.7666666666666667, + "correct_pairwise": 0, + "hallucination_rate": 0.006545067307429757, + "deletion_rate": 0.00510608087813669 + } + }, + "legal-all-judgements": { + "command-r": { + "f1": 0.5554704779938139, + "f1_success": 0.5554704779938139, + "recall": 0.4015404284142861, + "recall_success": 0.4015404284142861, + "precision": 0.9472724840314323, + "precision_success": 0.9472724840314323, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.022759368142653467, + "hallucination_rate_success": 0.022759368142653467, + "deletion_rate": 0.005819233115060146, + "deletion_rate_success": 0.005819233115060146 + } + }, + "legal-all-judgements-corrupted-asr": { + "command-r": { + "f1": 0.42768372023644, + "f1_success": 0.42768372023644, + "recall": 0.29361528345194177, + "recall_success": 0.29361528345194177, + "precision": 0.838406117520644, + "precision_success": 0.838406117520644, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.015546227090679503, + "hallucination_rate_success": 0.015546227090679503, + "deletion_rate": 0.002793596620663167, + "deletion_rate_success": 0.002793596620663167 + } + }, + "legal-all-laws": { + "command-r": { + "f1": 0.5275682620715346, + "f1_success": 0.5275682620715346, + "recall": 0.3692876917076649, + "recall_success": 0.3692876917076649, + "precision": 0.9777796265035592, + "precision_success": 0.9777796265035592, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.008082716129314693, + "hallucination_rate_success": 0.008082716129314693, + "deletion_rate": 0.00378194297465389, + "deletion_rate_success": 0.00378194297465389 + } + }, + "legal-all-laws-corrupted-asr": { + "command-r": { + "f1": 0.4451635396980757, + "f1_success": 0.4451635396980757, + "recall": 0.3023401379142773, + "recall_success": 0.3023401379142773, + "precision": 0.9162194230130549, + "precision_success": 0.9162194230130549, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.005028166468336565, + "hallucination_rate_success": 0.005028166468336565, + "deletion_rate": 0.0012719927340842062, + "deletion_rate_success": 0.0012719927340842062 + } + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "es-en": { + "opus100": { + "command-r": {} + }, + "opus100-corrupted-asr": { + "command-r": {} + }, + "ted2020-corrupted-asr": { + "command-r": {} + }, + "ud": { + "command-r": {} + }, + "ud-corrupted-asr": { + "command-r": {} + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": { + "f1": 0.722107438016529, + "recall": 0.5825, + "precision": 0.9497282608695652, + "correct_pairwise": 0, + "hallucination_rate": 0.007634160242373339, + "deletion_rate": 0.008954015058343583 + } + }, + "code-switching-corrupted-asr": { + "command-r": { + "f1": 0.30369026013309136, + "recall": 0.20916666666666667, + "precision": 0.5540838852097131, + "correct_pairwise": 0, + "hallucination_rate": 0.006383210599243356, + "deletion_rate": 0.006725724338714951 + } + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "et": { + "opus100": { + "command-r": { + "f1": 0.6718694572543454, + "recall": 0.5317237507018528, + "precision": 0.9123314065510597, + "correct_pairwise": 0, + "hallucination_rate": 0.0028599993444127576, + "deletion_rate": 0.002556790244861835 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.3174603174603175, + "recall": 0.21897810218978103, + "precision": 0.5769230769230769, + "correct_pairwise": 0, + "hallucination_rate": 0.0025200458190148913, + "deletion_rate": 0.003979466293326545 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.5129125811352022, + "recall": 0.4126666666666667, + "precision": 0.6774899671652681, + "correct_pairwise": 0, + "hallucination_rate": 0.0027713644830139306, + "deletion_rate": 0.0030382366184152723 + } + }, + "ud": { + "command-r": { + "f1": 0.749100148210883, + "recall": 0.6116874135546335, + "precision": 0.9661387220098306, + "correct_pairwise": 0, + "hallucination_rate": 0.0011031421863441932, + "deletion_rate": 0.003971955102434631 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.4619310931518502, + "recall": 0.3755186721991701, + "precision": 0.6, + "correct_pairwise": 0, + "hallucination_rate": 0.0015425523130026921, + "deletion_rate": 0.0015293398734908916 + } + }, + "ersatz": { + "command-r": { + "f1": 0.7716849451645065, + "recall": 0.6396694214876033, + "precision": 0.9723618090452262, + "correct_pairwise": 0, + "hallucination_rate": 0.0026939074588909723, + "deletion_rate": 0.0027628714898385812 + } + }, + "ersatz-corrupted-asr": { + "command-r": { + "f1": 0.47787021630615645, + "recall": 0.3955922865013774, + "precision": 0.6033613445378151, + "correct_pairwise": 0, + "hallucination_rate": 0.002377459211991586, + "deletion_rate": 0.0012152440209994167 + } + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": { + "f1": 0.7979033218426083, + "f1_success": 0.7979033218426083, + "recall": 0.7439706402404093, + "recall_success": 0.7439706402404093, + "precision": 0.9264543748533897, + "precision_success": 0.9264543748533897, + "correct_pairwise": 0.31527093596059114, + "correct_pairwise_success": 0.31527093596059114, + "hallucination_rate": 0.010320822151753775, + "hallucination_rate_success": 0.010320822151753775, + "deletion_rate": 0.002759067244350838, + "deletion_rate_success": 0.002759067244350838 + } + }, + "short-sequences-corrupted-asr": { + "command-r": { + "f1": 0.5622178168624664, + "f1_success": 0.5622178168624664, + "recall": 0.5493002125780193, + "recall_success": 0.5493002125780193, + "precision": 0.6585059413877147, + "precision_success": 0.6585059413877147, + "correct_pairwise": 0.034482758620689655, + "correct_pairwise_success": 0.034482758620689655, + "hallucination_rate": 0.0035434640299334044, + "hallucination_rate_success": 0.0035434640299334044, + "deletion_rate": 0.0038716375690068592, + "deletion_rate_success": 0.0038716375690068592 + } + } + }, + "eu": { + "opus100": { + "command-r": { + "f1": 0.5779100037188545, + "recall": 0.43627175743964064, + "precision": 0.8557268722466961, + "correct_pairwise": 0, + "hallucination_rate": 0.0025351651946352634, + "deletion_rate": 0.0022006126029678534 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.179080824088748, + "recall": 0.12689500280741156, + "precision": 0.3041722745625841, + "correct_pairwise": 0, + "hallucination_rate": 0.0048682571178072075, + "deletion_rate": 0.002061126236291203 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.3528554070473876, + "recall": 0.2713004484304933, + "precision": 0.5045170257123002, + "correct_pairwise": 0, + "hallucination_rate": 0.004020741603451303, + "deletion_rate": 0.003460638295507838 + } + }, + "ud": { + "command-r": { + "f1": 0.7943362831858406, + "recall": 0.6930203829524397, + "precision": 0.9303482587064676, + "correct_pairwise": 0, + "hallucination_rate": 0.0025845820226560678, + "deletion_rate": 0.0028115209319624543 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.24772162386081192, + "recall": 0.18468190240889437, + "precision": 0.37610062893081764, + "correct_pairwise": 0, + "hallucination_rate": 0.002803913823359905, + "deletion_rate": 0.002667927240702727 + } + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "fa": { + "opus100": { + "command-r": { + "f1": 0.4288642886428864, + "recall": 0.29120267260579064, + "precision": 0.8133748055987559, + "correct_pairwise": 0, + "hallucination_rate": 0.009797383441539336, + "deletion_rate": 0.031029951160190652 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.34574468085106386, + "recall": 0.21727019498607242, + "precision": 0.8459869848156182, + "correct_pairwise": 0, + "hallucination_rate": 0.010901588018518328, + "deletion_rate": 0.003880226243879405 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.1944256919664384, + "recall": 0.112, + "precision": 0.7363038714390066, + "correct_pairwise": 0, + "hallucination_rate": 0.017068034485945526, + "deletion_rate": 0.013863033231671089 + } + }, + "ud": { + "command-r": { + "f1": 0.954509177972865, + "recall": 0.9136745607333843, + "precision": 0.9991645781119465, + "correct_pairwise": 0, + "hallucination_rate": 0.0021540261674289967, + "deletion_rate": 0.0027124773960217 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.6819313091090093, + "recall": 0.5233002291825821, + "precision": 0.9785714285714285, + "correct_pairwise": 0, + "hallucination_rate": 0.011608964949339443, + "deletion_rate": 0.0011993841967706132 + } + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "fi": { + "opus100": { + "command-r": { + "f1": 0.6835352815395582, + "recall": 0.535754189944134, + "precision": 0.9438976377952756, + "correct_pairwise": 0, + "hallucination_rate": 0.002309425635559545, + "deletion_rate": 0.0025992725776743057 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.48150782361308675, + "recall": 0.3782122905027933, + "precision": 0.662426614481409, + "correct_pairwise": 0, + "hallucination_rate": 0.0025703959955936067, + "deletion_rate": 0.002386796281622635 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.5232017019013429, + "recall": 0.43722222222222223, + "precision": 0.6512744124462099, + "correct_pairwise": 0, + "hallucination_rate": 0.0059211957324425135, + "deletion_rate": 0.0037823148250091974 + } + }, + "ud": { + "command-r": { + "f1": 0.752725686873092, + "recall": 0.6168691922802001, + "precision": 0.9653243847874721, + "correct_pairwise": 0, + "hallucination_rate": 0.003089856180041769, + "deletion_rate": 0.0076686409244533455 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.6032786885245902, + "recall": 0.5260900643316655, + "precision": 0.7070124879923151, + "correct_pairwise": 0, + "hallucination_rate": 0.003718747057953277, + "deletion_rate": 0.004539157801299208 + } + }, + "ersatz": { + "command-r": { + "f1": 0.7880398671096346, + "recall": 0.6603563474387528, + "precision": 0.9769357495881383, + "correct_pairwise": 0, + "hallucination_rate": 0.0011194309648530814, + "deletion_rate": 0.0029030219279922013 + } + }, + "ersatz-corrupted-asr": { + "command-r": { + "f1": 0.6068244697202583, + "recall": 0.549554565701559, + "precision": 0.6774193548387096, + "correct_pairwise": 0, + "hallucination_rate": 0.0044892280266962325, + "deletion_rate": 0.0017011239374769016 + } + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "fr": { + "opus100": { + "command-r": { + "f1": 0.8084156837743067, + "recall": 0.7147688838782412, + "precision": 0.9303008070432869, + "correct_pairwise": 0, + "hallucination_rate": 0.0036565770123948875, + "deletion_rate": 0.001930490969276804 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.5686274509803922, + "recall": 0.4740698985343856, + "precision": 0.7103040540540541, + "correct_pairwise": 0, + "hallucination_rate": 0.007296089969618989, + "deletion_rate": 0.009985651797591593 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.4669909659485754, + "recall": 0.336, + "precision": 0.765375854214123, + "correct_pairwise": 0, + "hallucination_rate": 0.010008534076879504, + "deletion_rate": 0.006729820977125034 + } + }, + "ud": { + "command-r": { + "f1": 0.9232954545454546, + "recall": 0.8689839572192514, + "precision": 0.9848484848484849, + "correct_pairwise": 0, + "hallucination_rate": 0.0025320525702343154, + "deletion_rate": 0.001085165387243278 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.7823529411764706, + "recall": 0.7112299465240641, + "precision": 0.869281045751634, + "correct_pairwise": 0, + "hallucination_rate": 0.005104561172402437, + "deletion_rate": 0.0009468137658488391 + } + }, + "ersatz": { + "command-r": { + "f1": 0.8460949464012252, + "recall": 0.7401205626255861, + "precision": 0.9874888293118856, + "correct_pairwise": 0, + "hallucination_rate": 0.003219210651450309, + "deletion_rate": 0.00891583452211127 + } + }, + "ersatz-corrupted-asr": { + "command-r": { + "f1": 0.6674698795180724, + "recall": 0.5565974547890155, + "precision": 0.8335005015045135, + "correct_pairwise": 0, + "hallucination_rate": 0.011765783750681113, + "deletion_rate": 0.0041083802276968475 + } + }, + "legal-all-judgements": { + "command-r": { + "f1": 0.6253790688751862, + "f1_success": 0.6253790688751862, + "recall": 0.4834769566500833, + "recall_success": 0.4834769566500833, + "precision": 0.9400039442324822, + "precision_success": 0.9400039442324822, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.006224528886512645, + "hallucination_rate_success": 0.006224528886512645, + "deletion_rate": 0.022572552369201315, + "deletion_rate_success": 0.022572552369201315 + } + }, + "legal-all-judgements-corrupted-asr": { + "command-r": { + "f1": 0.5433932513120631, + "f1_success": 0.5433932513120631, + "recall": 0.42396969842841054, + "recall_success": 0.42396969842841054, + "precision": 0.8078631749993206, + "precision_success": 0.8078631749993206, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.01356544353744219, + "hallucination_rate_success": 0.01356544353744219, + "deletion_rate": 0.012308120476171054, + "deletion_rate_success": 0.012308120476171054 + } + }, + "legal-all-laws": { + "command-r": { + "f1": 0.5121944722900803, + "f1_success": 0.5121944722900803, + "recall": 0.4422375397471522, + "recall_success": 0.4422375397471522, + "precision": 0.6929799658505262, + "precision_success": 0.6929799658505262, + "correct_pairwise": 0.10893246187363835, + "correct_pairwise_success": 0.10893246187363835, + "hallucination_rate": 0.01647265157233318, + "hallucination_rate_success": 0.01647265157233318, + "deletion_rate": 0.002820276469763727, + "deletion_rate_success": 0.002820276469763727 + } + }, + "legal-all-laws-corrupted-asr": { + "command-r": { + "f1": 0.5770438337112256, + "f1_success": 0.5770438337112256, + "recall": 0.550962761460483, + "recall_success": 0.550962761460483, + "precision": 0.6904632915498929, + "precision_success": 0.6904632915498929, + "correct_pairwise": 0.20697167755991286, + "correct_pairwise_success": 0.20697167755991286, + "hallucination_rate": 0.007233747906736536, + "hallucination_rate_success": 0.007233747906736536, + "deletion_rate": 0.0027985320197124255, + "deletion_rate_success": 0.0027985320197124255 + } + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "fy": { + "opus100": { + "command-r": { + "f1": 0.30603649976602715, + "recall": 0.19499105545617174, + "precision": 0.7108695652173913, + "correct_pairwise": 0, + "hallucination_rate": 0.004049343547141456, + "deletion_rate": 0.004675530693606629 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.20293978188715028, + "recall": 0.12760882528324388, + "precision": 0.49537037037037035, + "correct_pairwise": 0, + "hallucination_rate": 0.013165290328159454, + "deletion_rate": 0.0037398936400190237 + } + }, + "ted2020-corrupted-asr": { + "command-r": {} + }, + "ud": { + "command-r": {} + }, + "ud-corrupted-asr": { + "command-r": {} + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "ga": { + "opus100": { + "command-r": { + "f1": 0.5590062111801242, + "recall": 0.40358744394618834, + "precision": 0.9090909090909091, + "correct_pairwise": 0, + "hallucination_rate": 0.0011084097556239658, + "deletion_rate": 0.002649665656692327 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.11170471102476931, + "recall": 0.06446188340807175, + "precision": 0.41818181818181815, + "correct_pairwise": 0, + "hallucination_rate": 0.0007948569051649225, + "deletion_rate": 0.003595389006264131 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.18181818181818182, + "recall": 0.12195121951219512, + "precision": 0.35714285714285715, + "correct_pairwise": 0, + "hallucination_rate": 0.0, + "deletion_rate": 0.000688989940746865 + } + }, + "ud": { + "command-r": { + "f1": 0.7349397590361445, + "recall": 0.5980392156862745, + "precision": 0.953125, + "correct_pairwise": 0, + "hallucination_rate": 0.0008653070856850676, + "deletion_rate": 0.0019272748726621958 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.2735674676524954, + "recall": 0.18226600985221675, + "precision": 0.5481481481481482, + "correct_pairwise": 0, + "hallucination_rate": 0.0011870749668021407, + "deletion_rate": 0.0020522312985392943 + } + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "gd": { + "opus100": { + "command-r": { + "f1": 0.505307855626327, + "recall": 0.36728395061728397, + "precision": 0.8095238095238095, + "correct_pairwise": 0, + "hallucination_rate": 0.0042752367965208414, + "deletion_rate": 0.0013083698816938783 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.13508771929824562, + "recall": 0.07921810699588477, + "precision": 0.4583333333333333, + "correct_pairwise": 0, + "hallucination_rate": 0.0024516427937145285, + "deletion_rate": 0.0012354735338403922 + } + }, + "ted2020-corrupted-asr": { + "command-r": {} + }, + "ud": { + "command-r": { + "f1": 0.5417867435158501, + "recall": 0.3836734693877551, + "precision": 0.9215686274509803, + "correct_pairwise": 0, + "hallucination_rate": 0.001569189639473837, + "deletion_rate": 0.0017629167554582615 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.29102167182662536, + "recall": 0.19222903885480572, + "precision": 0.5987261146496815, + "correct_pairwise": 0, + "hallucination_rate": 0.0005862257171157694, + "deletion_rate": 0.0011926661141320827 + } + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "gl": { + "opus100": { + "command-r": { + "f1": 0.7156527682843473, + "recall": 0.5868834080717489, + "precision": 0.9168126094570929, + "correct_pairwise": 0, + "hallucination_rate": 0.0024430251631591808, + "deletion_rate": 0.002245256459474866 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.3567921440261866, + "recall": 0.24439461883408073, + "precision": 0.6606060606060606, + "correct_pairwise": 0, + "hallucination_rate": 0.003361058002606038, + "deletion_rate": 0.008731444158943946 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.4423348501490663, + "recall": 0.31343117633978207, + "precision": 0.7513326226012793, + "correct_pairwise": 0, + "hallucination_rate": 0.008340033389638393, + "deletion_rate": 0.0027378028241044666 + } + }, + "ud": { + "command-r": { + "f1": 0.7373913043478261, + "recall": 0.5888888888888889, + "precision": 0.986046511627907, + "correct_pairwise": 0, + "hallucination_rate": 0.002872432517510034, + "deletion_rate": 0.00330526481466908 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.42389210019267826, + "recall": 0.3055555555555556, + "precision": 0.6918238993710691, + "correct_pairwise": 0, + "hallucination_rate": 0.003137885949914513, + "deletion_rate": 0.0013677964397063262 + } + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "gu": { + "opus100": { + "command-r": { + "f1": 0.16733067729083664, + "recall": 0.09660724554341575, + "precision": 0.6245353159851301, + "correct_pairwise": 0, + "hallucination_rate": 0.09913897942306757, + "deletion_rate": 0.0041672747320458566 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.02, + "recall": 0.010350776308223116, + "precision": 0.29508196721311475, + "correct_pairwise": 0, + "hallucination_rate": 0.3481703705611207, + "deletion_rate": 0.01064816007004352 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.005299121461441919, + "recall": 0.0026681645836258952, + "precision": 0.38, + "correct_pairwise": 0, + "hallucination_rate": 0.0671734329256213, + "deletion_rate": 0.026164987636566415 + } + }, + "ud": { + "command-r": {} + }, + "ud-corrupted-asr": { + "command-r": {} + }, + "ersatz": { + "command-r": { + "f1": 0.7484662576687117, + "recall": 0.5993449781659389, + "precision": 0.9963702359346642, + "correct_pairwise": 0, + "hallucination_rate": 0.0019964136282127915, + "deletion_rate": 0.0019964136282127915 + } + }, + "ersatz-corrupted-asr": { + "command-r": { + "f1": 0.012889366272824918, + "recall": 0.006550218340611353, + "precision": 0.4, + "correct_pairwise": 0, + "hallucination_rate": 0.04508595124712368, + "deletion_rate": 0.01769475925037223 + } + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "ha": { + "opus100": { + "command-r": { + "f1": 0.6575342465753425, + "recall": 0.5336297943301834, + "precision": 0.856378233719893, + "correct_pairwise": 0, + "hallucination_rate": 0.0014815122861553977, + "deletion_rate": 0.0009772782799902272 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.027382833070036864, + "recall": 0.014452473596442469, + "precision": 0.26, + "correct_pairwise": 0, + "hallucination_rate": 0.00014137734156221963, + "deletion_rate": 0.0005655093662488785 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.16666666666666669, + "recall": 0.18181818181818182, + "precision": 0.15384615384615385, + "correct_pairwise": 0, + "hallucination_rate": 0.0010351966873706005, + "deletion_rate": 0.004140786749482402 + } + }, + "ud": { + "command-r": {} + }, + "ud-corrupted-asr": { + "command-r": {} + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "he": { + "opus100": { + "command-r": { + "f1": 0.6273338312173263, + "recall": 0.46770601336302897, + "precision": 0.9523809523809523, + "correct_pairwise": 0, + "hallucination_rate": 0.0060486054174465915, + "deletion_rate": 0.004996674040499358 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.33955709943551887, + "recall": 0.21770601336302894, + "precision": 0.7712031558185405, + "correct_pairwise": 0, + "hallucination_rate": 0.020594631438865266, + "deletion_rate": 0.00172027654256873 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.2348548492485765, + "recall": 0.13977777777777778, + "precision": 0.7343841214244017, + "correct_pairwise": 0, + "hallucination_rate": 0.020750120950955794, + "deletion_rate": 0.008510165505912532 + } + }, + "ud": { + "command-r": { + "f1": 0.7716262975778547, + "recall": 0.6317280453257791, + "precision": 0.9911111111111112, + "correct_pairwise": 0, + "hallucination_rate": 0.001370941125694991, + "deletion_rate": 0.003249638223869608 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.5115384615384615, + "recall": 0.37677053824362605, + "precision": 0.7964071856287425, + "correct_pairwise": 0, + "hallucination_rate": 0.019847525520093036, + "deletion_rate": 0.004703450058147048 + } + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "hi": { + "opus100": { + "command-r": { + "f1": 0.39302035729123397, + "recall": 0.26632882882882886, + "precision": 0.7496038034865293, + "correct_pairwise": 0, + "hallucination_rate": 0.011143352982919614, + "deletion_rate": 0.013377644438511315 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.08220603537981269, + "recall": 0.04448198198198198, + "precision": 0.541095890410959, + "correct_pairwise": 0, + "hallucination_rate": 0.05939582766906464, + "deletion_rate": 0.04062107328400215 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.05380689068481497, + "recall": 0.02811111111111111, + "precision": 0.6262376237623762, + "correct_pairwise": 0, + "hallucination_rate": 0.09173451563946662, + "deletion_rate": 0.05723653440491758 + } + }, + "ud": { + "command-r": { + "f1": 0.9178812655527907, + "recall": 0.8521452145214522, + "precision": 0.9946070878274268, + "correct_pairwise": 0, + "hallucination_rate": 0.0017592892236180165, + "deletion_rate": 0.006819452207937395 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.10199004975124377, + "recall": 0.05412541254125412, + "precision": 0.8817204301075269, + "correct_pairwise": 0, + "hallucination_rate": 0.0703904263275991, + "deletion_rate": 0.050333582647718776 + } + }, + "ersatz": { + "command-r": { + "f1": 0.8493356731010279, + "recall": 0.7469135802469136, + "precision": 0.9843114468332365, + "correct_pairwise": 0, + "hallucination_rate": 0.008269879647000204, + "deletion_rate": 0.009717861000478202 + } + }, + "ersatz-corrupted-asr": { + "command-r": { + "f1": 0.09971157807993407, + "recall": 0.05335097001763668, + "precision": 0.7610062893081762, + "correct_pairwise": 0, + "hallucination_rate": 0.0874913311676461, + "deletion_rate": 0.05648594570739331 + } + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "hu": { + "opus100": { + "command-r": { + "f1": 0.6260284218399401, + "recall": 0.46838276440962506, + "precision": 0.943630214205186, + "correct_pairwise": 0, + "hallucination_rate": 0.0030114479307366978, + "deletion_rate": 0.001837868957729014 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.40542635658914733, + "recall": 0.2926692781197538, + "precision": 0.6595208070617906, + "correct_pairwise": 0, + "hallucination_rate": 0.0060877184891389565, + "deletion_rate": 0.007148457316791957 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.491903660361954, + "recall": 0.40184526456202757, + "precision": 0.6339880743598737, + "correct_pairwise": 0, + "hallucination_rate": 0.007027695375307279, + "deletion_rate": 0.007578719473753659 + } + }, + "ud": { + "command-r": { + "f1": 0.7323162274618585, + "recall": 0.6534653465346535, + "precision": 0.832807570977918, + "correct_pairwise": 0, + "hallucination_rate": 0.0020547639254924733, + "deletion_rate": 0.00588138949688063 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.4238975817923186, + "recall": 0.3688118811881188, + "precision": 0.4983277591973244, + "correct_pairwise": 0, + "hallucination_rate": 0.005925070645073076, + "deletion_rate": 0.021786028987268693 + } + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "hy": { + "opus100": { + "command-r": { + "f1": 0.4671891449292315, + "recall": 0.31598101265822787, + "precision": 0.8959174517720951, + "correct_pairwise": 0, + "hallucination_rate": 0.004558155706598938, + "deletion_rate": 0.012487226563659415 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.25922497024203145, + "recall": 0.15518606492478226, + "precision": 0.7865168539325843, + "correct_pairwise": 0, + "hallucination_rate": 0.09665905840603525, + "deletion_rate": 0.01050267791651129 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.16142409224233842, + "recall": 0.08867651961329037, + "precision": 0.8986486486486487, + "correct_pairwise": 0, + "hallucination_rate": 0.04406136364600703, + "deletion_rate": 0.0518442614255952 + } + }, + "ud": { + "command-r": { + "f1": 0.5034770514603616, + "recall": 0.3383177570093458, + "precision": 0.9836956521739131, + "correct_pairwise": 0, + "hallucination_rate": 0.005819907986929592, + "deletion_rate": 0.0444784029392161 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.08027923211169286, + "recall": 0.04299065420560748, + "precision": 0.6052631578947368, + "correct_pairwise": 0, + "hallucination_rate": 0.006398844513116791, + "deletion_rate": 0.03197742769809546 + } + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "id": { + "opus100": { + "command-r": { + "f1": 0.7133891213389122, + "recall": 0.5815804434337691, + "precision": 0.9224526600541028, + "correct_pairwise": 0, + "hallucination_rate": 0.005737447880976992, + "deletion_rate": 0.006643360704289149 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.44751381215469616, + "recall": 0.3223422399090392, + "precision": 0.7316129032258064, + "correct_pairwise": 0, + "hallucination_rate": 0.009241068180164447, + "deletion_rate": 0.0021586747192510127 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.3792181757434013, + "recall": 0.25227828406312514, + "precision": 0.7632817753866846, + "correct_pairwise": 0, + "hallucination_rate": 0.008124958921930136, + "deletion_rate": 0.002930424514938819 + } + }, + "ud": { + "command-r": { + "f1": 0.9168162776780372, + "recall": 0.8511111111111112, + "precision": 0.993514915693904, + "correct_pairwise": 0, + "hallucination_rate": 0.002089611881649711, + "deletion_rate": 0.004620456551058126 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.5534682080924856, + "recall": 0.4255555555555556, + "precision": 0.7913223140495868, + "correct_pairwise": 0, + "hallucination_rate": 0.007031203616532234, + "deletion_rate": 0.0035452872276362773 + } + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "ig": { + "opus100": { + "command-r": { + "f1": 0.2802617230098146, + "recall": 0.17306397306397306, + "precision": 0.7363896848137536, + "correct_pairwise": 0, + "hallucination_rate": 0.0030314097881665447, + "deletion_rate": 0.004127100073046019 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.051604782882315924, + "recall": 0.027609427609427608, + "precision": 0.3942307692307692, + "correct_pairwise": 0, + "hallucination_rate": 0.11048499321387462, + "deletion_rate": 0.001288504819008023 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.04000000000000001, + "recall": 0.021505376344086023, + "precision": 0.2857142857142857, + "correct_pairwise": 0, + "hallucination_rate": 0.0002908244874218409, + "deletion_rate": 0.0008724734622655228 + } + }, + "ud": { + "command-r": {} + }, + "ud-corrupted-asr": { + "command-r": {} + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "is": { + "opus100": { + "command-r": { + "f1": 0.7772293517604475, + "recall": 0.6597765363128492, + "precision": 0.9455564451561249, + "correct_pairwise": 0, + "hallucination_rate": 0.0020208632786371983, + "deletion_rate": 0.0030455263494954957 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.2616740088105727, + "recall": 0.1659217877094972, + "precision": 0.61875, + "correct_pairwise": 0, + "hallucination_rate": 0.0015363479237144166, + "deletion_rate": 0.006204481999615913 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.36571998006975587, + "recall": 0.2593639575971731, + "precision": 0.6199324324324325, + "correct_pairwise": 0, + "hallucination_rate": 0.0012204166314623407, + "deletion_rate": 0.0012861313731564667 + } + }, + "ud": { + "command-r": { + "f1": 0.7461988304093566, + "recall": 0.6186166774402069, + "precision": 0.9400785854616895, + "correct_pairwise": 0, + "hallucination_rate": 0.0007950737757921345, + "deletion_rate": 0.0021221562518370465 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.3248333816285135, + "recall": 0.24154277095453566, + "precision": 0.4957983193277311, + "correct_pairwise": 0, + "hallucination_rate": 0.001626168055434262, + "deletion_rate": 0.0009757008332605573 + } + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "it": { + "opus100": { + "command-r": { + "f1": 0.7858040201005024, + "recall": 0.7012331838565022, + "precision": 0.8935714285714286, + "correct_pairwise": 0, + "hallucination_rate": 0.0023042574223676587, + "deletion_rate": 0.010457783686130142 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.5572322414427677, + "recall": 0.42432735426008966, + "precision": 0.8113612004287245, + "correct_pairwise": 0, + "hallucination_rate": 0.004537077418719489, + "deletion_rate": 0.009376626665353612 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.5354805500404441, + "recall": 0.4049605160716272, + "precision": 0.7901475694444444, + "correct_pairwise": 0, + "hallucination_rate": 0.005457420437680955, + "deletion_rate": 0.0030664734167639277 + } + }, + "ud": { + "command-r": { + "f1": 0.8877551020408163, + "recall": 0.8036951501154734, + "precision": 0.9914529914529915, + "correct_pairwise": 0, + "hallucination_rate": 0.005664561089682673, + "deletion_rate": 0.004583822460730058 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.7476882430647293, + "recall": 0.6535796766743649, + "precision": 0.8734567901234568, + "correct_pairwise": 0, + "hallucination_rate": 0.006475203778471852, + "deletion_rate": 0.0012188618877123486 + } + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": { + "f1": 0.5623343897821672, + "f1_success": 0.5623343897821672, + "recall": 0.42743102722875054, + "recall_success": 0.42743102722875054, + "precision": 0.9025285981382704, + "precision_success": 0.9025285981382704, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.0036082947213565753, + "hallucination_rate_success": 0.0036082947213565753, + "deletion_rate": 0.004972620377552352, + "deletion_rate_success": 0.004972620377552352 + } + }, + "legal-all-judgements-corrupted-asr": { + "command-r": { + "f1": 0.46394094912043854, + "f1_success": 0.46394094912043854, + "recall": 0.3498628134566153, + "recall_success": 0.3498628134566153, + "precision": 0.7779687095541279, + "precision_success": 0.7779687095541279, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.00464187234518331, + "hallucination_rate_success": 0.00464187234518331, + "deletion_rate": 0.007072193537346345, + "deletion_rate_success": 0.007072193537346345 + } + }, + "legal-all-laws": { + "command-r": { + "f1": 0.7034971435375462, + "f1_success": 0.7034971435375462, + "recall": 0.6642576094990867, + "recall_success": 0.6642576094990867, + "precision": 0.8218450228748527, + "precision_success": 0.8218450228748527, + "correct_pairwise": 0.421875, + "correct_pairwise_success": 0.421875, + "hallucination_rate": 0.01381756514063648, + "hallucination_rate_success": 0.01381756514063648, + "deletion_rate": 0.0031855258432613347, + "deletion_rate_success": 0.0031855258432613347 + } + }, + "legal-all-laws-corrupted-asr": { + "command-r": { + "f1": 0.4285455887775843, + "f1_success": 0.4285455887775843, + "recall": 0.4226865680878465, + "recall_success": 0.4226865680878465, + "precision": 0.4924524851726559, + "precision_success": 0.4924524851726559, + "correct_pairwise": 0.15625, + "correct_pairwise_success": 0.15625, + "hallucination_rate": 0.008380199767217643, + "hallucination_rate_success": 0.008380199767217643, + "deletion_rate": 0.005261308211497012, + "deletion_rate_success": 0.005261308211497012 + } + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "ja": { + "opus100": { + "command-r": { + "f1": 0.060015588464536244, + "recall": 0.04296875, + "precision": 0.09948320413436693, + "correct_pairwise": 0, + "hallucination_rate": 0.01904568055595941, + "deletion_rate": 0.013317437701724288 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.0544, + "recall": 0.03794642857142857, + "precision": 0.096045197740113, + "correct_pairwise": 0, + "hallucination_rate": 0.024731345542606326, + "deletion_rate": 0.008718026335704556 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.04688483322844556, + "recall": 0.03311479053228136, + "precision": 0.08025855103689739, + "correct_pairwise": 0, + "hallucination_rate": 0.015655171903553488, + "deletion_rate": 0.020629412881730452 + } + }, + "ud": { + "command-r": { + "f1": 0.9072625698324022, + "recall": 0.8319672131147541, + "precision": 0.9975429975429976, + "correct_pairwise": 0, + "hallucination_rate": 0.005230601291731102, + "deletion_rate": 0.0013190211953061038 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.6104972375690608, + "recall": 0.45286885245901637, + "precision": 0.9364406779661016, + "correct_pairwise": 0, + "hallucination_rate": 0.030665280665280667, + "deletion_rate": 0.001323001323001323 + } + }, + "ersatz": { + "command-r": { + "f1": 0.5974376264329063, + "recall": 0.45954356846473027, + "precision": 0.8535645472061657, + "correct_pairwise": 0, + "hallucination_rate": 0.00492601358502184, + "deletion_rate": 0.011987915872924243 + } + }, + "ersatz-corrupted-asr": { + "command-r": { + "f1": 0.2426584234930448, + "recall": 0.1628630705394191, + "precision": 0.47575757575757577, + "correct_pairwise": 0, + "hallucination_rate": 0.037288204626914304, + "deletion_rate": 0.005030140110785272 + } + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "jv": { + "opus100": { + "command-r": {} + }, + "opus100-corrupted-asr": { + "command-r": {} + }, + "ted2020-corrupted-asr": { + "command-r": {} + }, + "ud": { + "command-r": { + "f1": 0.8328115216030056, + "recall": 0.7388888888888889, + "precision": 0.9540889526542324, + "correct_pairwise": 0, + "hallucination_rate": 0.0002920820369547273, + "deletion_rate": 0.0014477109657756047 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.2147293700088731, + "recall": 0.13444444444444445, + "precision": 0.5330396475770925, + "correct_pairwise": 0, + "hallucination_rate": 0.0009835420628155531, + "deletion_rate": 0.0008655170152776867 + } + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "ka": { + "opus100": { + "command-r": { + "f1": 0.2564802182810369, + "recall": 0.15666666666666668, + "precision": 0.706766917293233, + "correct_pairwise": 0, + "hallucination_rate": 0.05284869464878119, + "deletion_rate": 0.007082071253425646 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.010471204188481676, + "recall": 0.005555555555555556, + "precision": 0.09090909090909091, + "correct_pairwise": 0, + "hallucination_rate": 0.03311102761600601, + "deletion_rate": 0.008328636733671489 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.010779892201077989, + "recall": 0.0054444444444444445, + "precision": 0.5384615384615384, + "correct_pairwise": 0, + "hallucination_rate": 0.02785161084659776, + "deletion_rate": 0.044429167333149555 + } + }, + "ud": { + "command-r": {} + }, + "ud-corrupted-asr": { + "command-r": {} + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "kk": { + "opus100": { + "command-r": { + "f1": 0.3454384410983171, + "recall": 0.22362385321100917, + "precision": 0.7587548638132295, + "correct_pairwise": 0, + "hallucination_rate": 0.005155603600607031, + "deletion_rate": 0.003471716940731347 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.10797174571140263, + "recall": 0.06135321100917431, + "precision": 0.4495798319327731, + "correct_pairwise": 0, + "hallucination_rate": 0.25405175794013857, + "deletion_rate": 0.0003921056071101817 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.07532281205164994, + "recall": 0.03993154592127781, + "precision": 0.6624605678233438, + "correct_pairwise": 0, + "hallucination_rate": 0.03664701483268635, + "deletion_rate": 0.000761057129493342 + } + }, + "ud": { + "command-r": { + "f1": 0.8610778443113773, + "recall": 0.7632696390658175, + "precision": 0.9876373626373627, + "correct_pairwise": 0, + "hallucination_rate": 0.0030279204376265118, + "deletion_rate": 0.001355036217943356 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.1499513145082765, + "recall": 0.08174097664543524, + "precision": 0.9058823529411765, + "correct_pairwise": 0, + "hallucination_rate": 0.10674902125933898, + "deletion_rate": 0.001450563848205512 + } + }, + "ersatz": { + "command-r": { + "f1": 0.8666249217282405, + "recall": 0.7680355160932297, + "precision": 0.9942528735632183, + "correct_pairwise": 0, + "hallucination_rate": 0.0024683478962730762, + "deletion_rate": 0.0011168570329144337 + } + }, + "ersatz-corrupted-asr": { + "command-r": { + "f1": 0.06131078224101479, + "recall": 0.03218645948945616, + "precision": 0.6444444444444445, + "correct_pairwise": 0, + "hallucination_rate": 0.0010846932351944215, + "deletion_rate": 0.00048423805142608107 + } + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "km": { + "opus100": { + "command-r": { + "f1": 0.04270109235352532, + "recall": 0.024627720504009163, + "precision": 0.16044776119402984, + "correct_pairwise": 0, + "hallucination_rate": 0.0020174699596506008, + "deletion_rate": 0.4572229858555403 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.024287222808870117, + "recall": 0.013172966781214204, + "precision": 0.1554054054054054, + "correct_pairwise": 0, + "hallucination_rate": 0.04215773099893272, + "deletion_rate": 0.3743215932057134 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.0, + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "hallucination_rate": 0.0601661889935875, + "deletion_rate": 0.727478917091074 + } + }, + "ud": { + "command-r": {} + }, + "ud-corrupted-asr": { + "command-r": {} + }, + "ersatz": { + "command-r": { + "f1": 0.06699864191942055, + "recall": 0.03483992467043315, + "precision": 0.8705882352941177, + "correct_pairwise": 0, + "hallucination_rate": 0.018520080998987512, + "deletion_rate": 0.7897823152210597 + } + }, + "ersatz-corrupted-asr": { + "command-r": { + "f1": 0.0046801872074883, + "recall": 0.002824858757062147, + "precision": 0.013636363636363636, + "correct_pairwise": 0, + "hallucination_rate": 0.00748937493521302, + "deletion_rate": 0.7741309906361218 + } + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "kn": { + "opus100": { + "command-r": { + "f1": 0.0547645125958379, + "recall": 0.03067484662576687, + "precision": 0.25510204081632654, + "correct_pairwise": 0, + "hallucination_rate": 0.35152338340257805, + "deletion_rate": 0.10338766379034836 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.02561117578579744, + "recall": 0.013496932515337423, + "precision": 0.25, + "correct_pairwise": 0, + "hallucination_rate": 0.42863593036672853, + "deletion_rate": 0.10888978076556464 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.0, + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "hallucination_rate": 0.015026764652513156, + "deletion_rate": 0.5478928506623117 + } + }, + "ud": { + "command-r": {} + }, + "ud-corrupted-asr": { + "command-r": {} + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "ko": { + "opus100": { + "command-r": { + "f1": 0.3893728222996516, + "recall": 0.25112359550561797, + "precision": 0.8662790697674418, + "correct_pairwise": 0, + "hallucination_rate": 0.030282336873336944, + "deletion_rate": 0.004309228342006735 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.3030861354214648, + "recall": 0.18483146067415732, + "precision": 0.8414322250639387, + "correct_pairwise": 0, + "hallucination_rate": 0.04141288128959664, + "deletion_rate": 0.0029353489396051957 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.2248363532871644, + "recall": 0.13166666666666665, + "precision": 0.7689811810512654, + "correct_pairwise": 0, + "hallucination_rate": 0.03466090035016553, + "deletion_rate": 0.0038410496430262594 + } + }, + "ud": { + "command-r": { + "f1": 0.7990694969467869, + "recall": 0.6676384839650146, + "precision": 0.9949312092686459, + "correct_pairwise": 0, + "hallucination_rate": 0.011041788641686182, + "deletion_rate": 0.008910275175644028 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.3613979348689436, + "recall": 0.22108843537414966, + "precision": 0.9891304347826086, + "correct_pairwise": 0, + "hallucination_rate": 0.02842950652244557, + "deletion_rate": 0.006629218699224735 + } + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "ku": { + "opus100": { + "command-r": { + "f1": 0.2984514312529329, + "recall": 0.18370883882149047, + "precision": 0.795, + "correct_pairwise": 0, + "hallucination_rate": 0.021396677621392683, + "deletion_rate": 0.006183260246331499 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.2233201581027668, + "recall": 0.13056036972848065, + "precision": 0.7713310580204779, + "correct_pairwise": 0, + "hallucination_rate": 0.04932901341973161, + "deletion_rate": 0.009029819403611928 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.06255265374894693, + "recall": 0.033, + "precision": 0.5987903225806451, + "correct_pairwise": 0, + "hallucination_rate": 0.023040927081352944, + "deletion_rate": 0.0024369588136677095 + } + }, + "ud": { + "command-r": {} + }, + "ud-corrupted-asr": { + "command-r": {} + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "ky": { + "opus100": { + "command-r": { + "f1": 0.26464208242950105, + "recall": 0.16137566137566137, + "precision": 0.7349397590361446, + "correct_pairwise": 0, + "hallucination_rate": 0.009137289340526074, + "deletion_rate": 0.012294567808305106 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.12536273940800927, + "recall": 0.07142857142857142, + "precision": 0.5118483412322274, + "correct_pairwise": 0, + "hallucination_rate": 0.005934913056808725, + "deletion_rate": 0.0011607025535456178 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.07161125319693094, + "recall": 0.037940379403794036, + "precision": 0.6363636363636364, + "correct_pairwise": 0, + "hallucination_rate": 0.0004728611477015571, + "deletion_rate": 0.0001013273887931908 + } + }, + "ud": { + "command-r": {} + }, + "ud-corrupted-asr": { + "command-r": {} + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "la": { + "opus100": { + "command-r": {} + }, + "opus100-corrupted-asr": { + "command-r": {} + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.25, + "recall": 0.2, + "precision": 0.3333333333333333, + "correct_pairwise": 0, + "hallucination_rate": 0.004143646408839779, + "deletion_rate": 0.0 + } + }, + "ud": { + "command-r": { + "f1": 0.6514886164623468, + "recall": 0.49206349206349204, + "precision": 0.9637305699481865, + "correct_pairwise": 0, + "hallucination_rate": 0.005912718647408315, + "deletion_rate": 0.0026355141257827764 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.4476430370636921, + "recall": 0.3291005291005291, + "precision": 0.6996625421822272, + "correct_pairwise": 0, + "hallucination_rate": 0.0028169180088279144, + "deletion_rate": 0.001903482252827231 + } + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "lt": { + "opus100": { + "command-r": { + "f1": 0.7027972027972028, + "recall": 0.5633408071748879, + "precision": 0.9340148698884758, + "correct_pairwise": 0, + "hallucination_rate": 0.0022364501356097995, + "deletion_rate": 0.007385176292739318 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.407513270722744, + "recall": 0.2797085201793722, + "precision": 0.750375939849624, + "correct_pairwise": 0, + "hallucination_rate": 0.00859626265295152, + "deletion_rate": 0.006587279171260147 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.5380975919779677, + "recall": 0.42361574382921946, + "precision": 0.7373717824656474, + "correct_pairwise": 0, + "hallucination_rate": 0.006444175937113731, + "deletion_rate": 0.004334415358956003 + } + }, + "ud": { + "command-r": { + "f1": 0.6572972972972974, + "recall": 0.4943089430894309, + "precision": 0.9806451612903225, + "correct_pairwise": 0, + "hallucination_rate": 0.001429087189361574, + "deletion_rate": 0.0017750767194175342 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.44962884411452814, + "recall": 0.34471544715447155, + "precision": 0.6463414634146342, + "correct_pairwise": 0, + "hallucination_rate": 0.08040064194417379, + "deletion_rate": 0.002994784203588009 + } + }, + "ersatz": { + "command-r": { + "f1": 0.7826086956521738, + "recall": 0.65, + "precision": 0.9831932773109243, + "correct_pairwise": 0, + "hallucination_rate": 0.0009783900048919501, + "deletion_rate": 0.0036262550181312752 + } + }, + "ersatz-corrupted-asr": { + "command-r": { + "f1": 0.4697406340057637, + "recall": 0.3622222222222222, + "precision": 0.6680327868852459, + "correct_pairwise": 0, + "hallucination_rate": 0.010345100522399873, + "deletion_rate": 0.002517017571632104 + } + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "lv": { + "opus100": { + "command-r": { + "f1": 0.7044590390597996, + "recall": 0.5740845070422536, + "precision": 0.9114490161001789, + "correct_pairwise": 0, + "hallucination_rate": 0.003784505788067676, + "deletion_rate": 0.004225619207809768 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.33049817739975695, + "recall": 0.22985915492957745, + "precision": 0.5878962536023055, + "correct_pairwise": 0, + "hallucination_rate": 0.014695844884683121, + "deletion_rate": 0.006854971223445939 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.4435242039126089, + "recall": 0.3451111111111111, + "precision": 0.620455453455853, + "correct_pairwise": 0, + "hallucination_rate": 0.0036678337667301404, + "deletion_rate": 0.0027245985107530184 + } + }, + "ud": { + "command-r": { + "f1": 0.6945857014657494, + "recall": 0.5350230414746544, + "precision": 0.989769820971867, + "correct_pairwise": 0, + "hallucination_rate": 0.0011010350658762753, + "deletion_rate": 0.0030429450132867524 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.45951359084406296, + "recall": 0.3702166897187644, + "precision": 0.6055806938159879, + "correct_pairwise": 0, + "hallucination_rate": 0.005367368123956545, + "deletion_rate": 0.002071363990796064 + } + }, + "ersatz": { + "command-r": { + "f1": 0.8267840301791889, + "recall": 0.7245179063360881, + "precision": 0.9626647144948756, + "correct_pairwise": 0, + "hallucination_rate": 0.001239841333261936, + "deletion_rate": 0.0024838017407207555 + } + }, + "ersatz-corrupted-asr": { + "command-r": { + "f1": 0.4933028422084286, + "recall": 0.41597796143250687, + "precision": 0.6059390048154093, + "correct_pairwise": 0, + "hallucination_rate": 0.003872482569605446, + "deletion_rate": 0.0019130148353667033 + } + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "mg": { + "opus100": { + "command-r": { + "f1": 0.6403867608776497, + "recall": 0.484251968503937, + "precision": 0.9451152579582875, + "correct_pairwise": 0, + "hallucination_rate": 0.0018144208883862749, + "deletion_rate": 0.0027735230542393747 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.01994750656167979, + "recall": 0.010686164229471317, + "precision": 0.14960629921259844, + "correct_pairwise": 0, + "hallucination_rate": 0.00041072975475699733, + "deletion_rate": 0.0004443349165098426 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.009852216748768473, + "recall": 0.0051813471502590676, + "precision": 0.1, + "correct_pairwise": 0, + "hallucination_rate": 5.678914191606565e-05, + "deletion_rate": 0.00039752399341245955 + } + }, + "ud": { + "command-r": {} + }, + "ud-corrupted-asr": { + "command-r": {} + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "mk": { + "opus100": { + "command-r": { + "f1": 0.48187808896210876, + "recall": 0.325, + "precision": 0.9315286624203821, + "correct_pairwise": 0, + "hallucination_rate": 0.004050292734427488, + "deletion_rate": 0.04775890200595067 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.054284193720063864, + "recall": 0.028333333333333332, + "precision": 0.6455696202531646, + "correct_pairwise": 0, + "hallucination_rate": 0.009102601170476865, + "deletion_rate": 0.0005383794777719065 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.18158313444709626, + "recall": 0.10148955091151624, + "precision": 0.8613207547169811, + "correct_pairwise": 0, + "hallucination_rate": 0.028490035318918933, + "deletion_rate": 0.0007238760446166513 + } + }, + "ud": { + "command-r": {} + }, + "ud-corrupted-asr": { + "command-r": {} + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "ml": { + "opus100": { + "command-r": { + "f1": 0.006670372429127293, + "recall": 0.0033482142857142855, + "precision": 0.8571428571428571, + "correct_pairwise": 0, + "hallucination_rate": 6.506533644201052e-05, + "deletion_rate": 0.9501599522854199 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.002229654403567447, + "recall": 0.0011160714285714285, + "precision": 1.0, + "correct_pairwise": 0, + "hallucination_rate": 7.038288288288288e-05, + "deletion_rate": 0.9458286411411412 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.0, + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "hallucination_rate": 1.074083091067925e-05, + "deletion_rate": 0.9769823993584144 + } + }, + "ud": { + "command-r": {} + }, + "ud-corrupted-asr": { + "command-r": {} + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "mn": { + "opus100": { + "command-r": { + "f1": 0.2658802177858439, + "recall": 0.15535524920466595, + "precision": 0.9213836477987422, + "correct_pairwise": 0, + "hallucination_rate": 0.017783175658399385, + "deletion_rate": 0.0032728202505753006 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.21321184510250568, + "recall": 0.12410501193317422, + "precision": 0.7560581583198708, + "correct_pairwise": 0, + "hallucination_rate": 0.23833867105808185, + "deletion_rate": 0.0011618391408452127 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.1994454347395524, + "recall": 0.11190132236915212, + "precision": 0.916287534121929, + "correct_pairwise": 0, + "hallucination_rate": 0.007819119612744395, + "deletion_rate": 0.0005905496945302412 + } + }, + "ud": { + "command-r": {} + }, + "ud-corrupted-asr": { + "command-r": {} + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "mr": { + "opus100": { + "command-r": { + "f1": 0.6523350630096367, + "recall": 0.4924454392837157, + "precision": 0.9659714599341384, + "correct_pairwise": 0, + "hallucination_rate": 0.006834554522504772, + "deletion_rate": 0.004417831414321778 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.04081632653061224, + "recall": 0.021264689423614997, + "precision": 0.5066666666666667, + "correct_pairwise": 0, + "hallucination_rate": 0.012290427028768076, + "deletion_rate": 0.0027462747291867977 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.00812829525483304, + "recall": 0.004111111111111111, + "precision": 0.3557692307692308, + "correct_pairwise": 0, + "hallucination_rate": 0.0033157086996304258, + "deletion_rate": 0.0035553825313529124 + } + }, + "ud": { + "command-r": { + "f1": 0.7164179104477612, + "recall": 0.5714285714285714, + "precision": 0.96, + "correct_pairwise": 0, + "hallucination_rate": 0.006818181818181818, + "deletion_rate": 0.002840909090909091 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.0, + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "hallucination_rate": 0.0032916392363396972, + "deletion_rate": 0.0 + } + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "ms": { + "opus100": { + "command-r": { + "f1": 0.6789587852494576, + "recall": 0.5371853546910755, + "precision": 0.9223968565815324, + "correct_pairwise": 0, + "hallucination_rate": 0.005602691128689682, + "deletion_rate": 0.002847269262120986 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.37027812370278124, + "recall": 0.2551487414187643, + "precision": 0.6747352496217852, + "correct_pairwise": 0, + "hallucination_rate": 0.006736230352661471, + "deletion_rate": 0.0020532894657845128 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.39083525275791003, + "recall": 0.2665343915343915, + "precision": 0.7323943661971831, + "correct_pairwise": 0, + "hallucination_rate": 0.009187082924138548, + "deletion_rate": 0.008600078639939026 + } + }, + "ud": { + "command-r": {} + }, + "ud-corrupted-asr": { + "command-r": {} + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "mt": { + "opus100": { + "command-r": { + "f1": 0.6512301013024603, + "recall": 0.5067567567567568, + "precision": 0.9109311740890689, + "correct_pairwise": 0, + "hallucination_rate": 0.003293494016996845, + "deletion_rate": 0.006356052639058636 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.08106772120612951, + "recall": 0.04617117117117117, + "precision": 0.3319838056680162, + "correct_pairwise": 0, + "hallucination_rate": 0.005620455720848164, + "deletion_rate": 0.0005209759362355876 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.09708737864077671, + "recall": 0.05434782608695652, + "precision": 0.45454545454545453, + "correct_pairwise": 0, + "hallucination_rate": 0.000733810310034856, + "deletion_rate": 0.002017978352595854 + } + }, + "ud": { + "command-r": { + "f1": 0.7005347593582888, + "recall": 0.5622317596566524, + "precision": 0.9290780141843972, + "correct_pairwise": 0, + "hallucination_rate": 0.004986548314683757, + "deletion_rate": 0.008259506143221892 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.1554054054054054, + "recall": 0.09871244635193133, + "precision": 0.36507936507936506, + "correct_pairwise": 0, + "hallucination_rate": 0.0027802006105538597, + "deletion_rate": 0.0007995348161069923 + } + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "my": { + "opus100": { + "command-r": { + "f1": 0.17108119843682154, + "recall": 0.1103023516237402, + "precision": 0.38104448742746616, + "correct_pairwise": 0, + "hallucination_rate": 0.0028540164923798886, + "deletion_rate": 0.06441278328651844 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.0275049115913556, + "recall": 0.015677491601343786, + "precision": 0.112, + "correct_pairwise": 0, + "hallucination_rate": 0.09399768737517082, + "deletion_rate": 0.05064648375906654 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.06018872736546799, + "recall": 0.039342076016892644, + "precision": 0.12802893309222424, + "correct_pairwise": 0, + "hallucination_rate": 0.07519055390398452, + "deletion_rate": 0.09730201847800829 + } + }, + "ud": { + "command-r": {} + }, + "ud-corrupted-asr": { + "command-r": {} + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "ne": { + "opus100": { + "command-r": { + "f1": 0.23273780782230807, + "recall": 0.14159811985898943, + "precision": 0.6531165311653117, + "correct_pairwise": 0, + "hallucination_rate": 0.011473510248276125, + "deletion_rate": 0.003704196189426894 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.15626638699528056, + "recall": 0.08754406580493537, + "precision": 0.7268292682926829, + "correct_pairwise": 0, + "hallucination_rate": 0.011687695289324843, + "deletion_rate": 0.0025906735751295338 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.06268958543983821, + "recall": 0.03327965646806227, + "precision": 0.5391304347826087, + "correct_pairwise": 0, + "hallucination_rate": 0.008615890352853848, + "deletion_rate": 0.02649717663900745 + } + }, + "ud": { + "command-r": {} + }, + "ud-corrupted-asr": { + "command-r": {} + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "nl": { + "opus100": { + "command-r": { + "f1": 0.7479297780722093, + "recall": 0.6272222222222222, + "precision": 0.92616899097621, + "correct_pairwise": 0, + "hallucination_rate": 0.002748177229388671, + "deletion_rate": 0.002142456533931576 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.6398390342052315, + "recall": 0.53, + "precision": 0.8071065989847716, + "correct_pairwise": 0, + "hallucination_rate": 0.005973881633787163, + "deletion_rate": 0.0029637862369176625 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.6341365461847389, + "recall": 0.5266259032795998, + "precision": 0.7968040370058873, + "correct_pairwise": 0, + "hallucination_rate": 0.006176197555228085, + "deletion_rate": 0.005906143089916452 + } + }, + "ud": { + "command-r": { + "f1": 0.6634146341463415, + "recall": 0.5074626865671642, + "precision": 0.9577464788732394, + "correct_pairwise": 0, + "hallucination_rate": 0.001716177631978616, + "deletion_rate": 0.022553307818480042 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.6744186046511628, + "recall": 0.5410447761194029, + "precision": 0.8950617283950617, + "correct_pairwise": 0, + "hallucination_rate": 0.004452552487554497, + "deletion_rate": 0.0034940168825948487 + } + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "no": { + "opus100": { + "command-r": { + "f1": 0.7154191100379441, + "recall": 0.5803021824286514, + "precision": 0.9325539568345323, + "correct_pairwise": 0, + "hallucination_rate": 0.004388062220471998, + "deletion_rate": 0.006019521251160305 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.5699226985242446, + "recall": 0.45383324006715164, + "precision": 0.7658168083097262, + "correct_pairwise": 0, + "hallucination_rate": 0.004836670488959454, + "deletion_rate": 0.004968980623915792 + } + }, + "ted2020-corrupted-asr": { + "command-r": {} + }, + "ud": { + "command-r": { + "f1": 0.6946676406135867, + "recall": 0.5449856733524355, + "precision": 0.9577039274924471, + "correct_pairwise": 0, + "hallucination_rate": 0.0018080710801826711, + "deletion_rate": 0.004678616918823201 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.6447978793903247, + "recall": 0.5575931232091691, + "precision": 0.7643362136684996, + "correct_pairwise": 0, + "hallucination_rate": 0.0033724135303009133, + "deletion_rate": 0.0012257548236310287 + } + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "pa": { + "opus100": { + "command-r": { + "f1": 0.14376528117359413, + "recall": 0.08366533864541832, + "precision": 0.5104166666666666, + "correct_pairwise": 0, + "hallucination_rate": 0.21562290383559973, + "deletion_rate": 0.009939630465272273 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.07769028871391076, + "recall": 0.04214123006833713, + "precision": 0.4966442953020134, + "correct_pairwise": 0, + "hallucination_rate": 0.4755760904309418, + "deletion_rate": 0.0018452329061691803 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.0, + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "hallucination_rate": 0.09813650262505048, + "deletion_rate": 0.0017019558068424392 + } + }, + "ud": { + "command-r": {} + }, + "ud-corrupted-asr": { + "command-r": {} + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "pl": { + "opus100": { + "command-r": { + "f1": 0.7439189189189189, + "recall": 0.6174985978687605, + "precision": 0.935429056924384, + "correct_pairwise": 0, + "hallucination_rate": 0.0031418944540145826, + "deletion_rate": 0.002177657880196314 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.5301470588235294, + "recall": 0.40437464946719015, + "precision": 0.7694770544290288, + "correct_pairwise": 0, + "hallucination_rate": 0.008639695596217335, + "deletion_rate": 0.0032230988752727885 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.5789548625943328, + "recall": 0.45263275075141934, + "precision": 0.8030811771676871, + "correct_pairwise": 0, + "hallucination_rate": 0.007660254532979676, + "deletion_rate": 0.004666159051037683 + } + }, + "ud": { + "command-r": { + "f1": 0.9140393424952843, + "recall": 0.8509784244856999, + "precision": 0.9871944121071012, + "correct_pairwise": 0, + "hallucination_rate": 0.0016213074467976629, + "deletion_rate": 0.0009585088050250333 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.7272727272727274, + "recall": 0.6482689412945308, + "precision": 0.8282051282051283, + "correct_pairwise": 0, + "hallucination_rate": 0.004353012577694996, + "deletion_rate": 0.00786890735198711 + } + }, + "ersatz": { + "command-r": { + "f1": 0.7014084507042254, + "recall": 0.5508849557522124, + "precision": 0.9651162790697675, + "correct_pairwise": 0, + "hallucination_rate": 0.0027253277939048534, + "deletion_rate": 0.009649613394053992 + } + }, + "ersatz-corrupted-asr": { + "command-r": { + "f1": 0.6465177398160316, + "recall": 0.5442477876106194, + "precision": 0.7961165048543689, + "correct_pairwise": 0, + "hallucination_rate": 0.00612109598496063, + "deletion_rate": 0.0022885996857716306 + } + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "ps": { + "opus100": { + "command-r": { + "f1": 0.07188405797101449, + "recall": 0.038366336633663366, + "precision": 0.5688073394495413, + "correct_pairwise": 0, + "hallucination_rate": 0.30316380625015127, + "deletion_rate": 0.012103313887342355 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.04088785046728972, + "recall": 0.021658415841584157, + "precision": 0.3645833333333333, + "correct_pairwise": 0, + "hallucination_rate": 0.4484086967044492, + "deletion_rate": 0.0011899479649872939 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.0037807183364839316, + "recall": 0.002028397565922921, + "precision": 0.027777777777777776, + "correct_pairwise": 0, + "hallucination_rate": 0.0003996614632311454, + "deletion_rate": 0.002938687229640775 + } + }, + "ud": { + "command-r": {} + }, + "ud-corrupted-asr": { + "command-r": {} + }, + "ersatz": { + "command-r": { + "f1": 0.7070548124836088, + "recall": 0.5495311863024868, + "precision": 0.9911764705882353, + "correct_pairwise": 0, + "hallucination_rate": 0.0014279657288225082, + "deletion_rate": 0.0009439773445437309 + } + }, + "ersatz-corrupted-asr": { + "command-r": { + "f1": 0.02490960224989956, + "recall": 0.012637586628618018, + "precision": 0.8611111111111112, + "correct_pairwise": 0, + "hallucination_rate": 0.0005626398899361383, + "deletion_rate": 0.00013552639684593113 + } + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "pt": { + "opus100": { + "command-r": { + "f1": 0.8081841432225063, + "recall": 0.7097136440202133, + "precision": 0.9383815887156645, + "correct_pairwise": 0, + "hallucination_rate": 0.0020508936036415866, + "deletion_rate": 0.0025796954387268737 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.5382059800664452, + "recall": 0.40932060640089835, + "precision": 0.7855603448275862, + "correct_pairwise": 0, + "hallucination_rate": 0.005605817135897041, + "deletion_rate": 0.0041309882820811964 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.4504490310382858, + "recall": 0.31770196688520946, + "precision": 0.7737483085250338, + "correct_pairwise": 0, + "hallucination_rate": 0.007349504099204379, + "deletion_rate": 0.005908424864066265 + } + }, + "ud": { + "command-r": { + "f1": 0.7221556886227544, + "recall": 0.5742857142857143, + "precision": 0.9725806451612903, + "correct_pairwise": 0, + "hallucination_rate": 0.004154829806132411, + "deletion_rate": 0.003472145756714895 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.6127659574468085, + "recall": 0.48, + "precision": 0.8470588235294118, + "correct_pairwise": 0, + "hallucination_rate": 0.004357528421941437, + "deletion_rate": 0.0009272941105515515 + } + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": { + "f1": 0.5801366429701792, + "f1_success": 0.5801366429701792, + "recall": 0.44116808877042757, + "recall_success": 0.44116808877042757, + "precision": 0.8650921534605744, + "precision_success": 0.8650921534605744, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.011213281553022297, + "hallucination_rate_success": 0.011213281553022297, + "deletion_rate": 0.00983541041061648, + "deletion_rate_success": 0.00983541041061648 + } + }, + "legal-all-judgements-corrupted-asr": { + "command-r": { + "f1": 0.4378736316577285, + "f1_success": 0.4378736316577285, + "recall": 0.3169515561706855, + "recall_success": 0.3169515561706855, + "precision": 0.7518448564097222, + "precision_success": 0.7518448564097222, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.005713714651661448, + "hallucination_rate_success": 0.005713714651661448, + "deletion_rate": 0.0014604907260973997, + "deletion_rate_success": 0.0014604907260973997 + } + }, + "legal-all-laws": { + "command-r": { + "f1": 0.4724564203628435, + "f1_success": 0.4724564203628435, + "recall": 0.3888479606698253, + "recall_success": 0.3888479606698253, + "precision": 0.7330396756192835, + "precision_success": 0.7330396756192835, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.06634806480486767, + "hallucination_rate_success": 0.06634806480486767, + "deletion_rate": 0.007160415273107892, + "deletion_rate_success": 0.007160415273107892 + } + }, + "legal-all-laws-corrupted-asr": { + "command-r": { + "f1": 0.40148531094998263, + "f1_success": 0.40148531094998263, + "recall": 0.31894917538212786, + "recall_success": 0.31894917538212786, + "precision": 0.7214949409014793, + "precision_success": 0.7214949409014793, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.006256627798443249, + "hallucination_rate_success": 0.006256627798443249, + "deletion_rate": 0.0029088541306945105, + "deletion_rate_success": 0.0029088541306945105 + } + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "ro": { + "opus100": { + "command-r": { + "f1": 0.7043354655294953, + "recall": 0.5561167227833894, + "precision": 0.9602713178294574, + "correct_pairwise": 0, + "hallucination_rate": 0.003451726425383119, + "deletion_rate": 0.0015178601544844335 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.4300813008130081, + "recall": 0.29685746352413017, + "precision": 0.7802359882005899, + "correct_pairwise": 0, + "hallucination_rate": 0.011787636903656952, + "deletion_rate": 0.003120939298310748 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.48345858836290384, + "recall": 0.3468593663146192, + "precision": 0.7975460122699386, + "correct_pairwise": 0, + "hallucination_rate": 0.010384987558750346, + "deletion_rate": 0.0039520715668075355 + } + }, + "ud": { + "command-r": { + "f1": 0.5957446808510638, + "recall": 0.4883720930232558, + "precision": 0.7636363636363637, + "correct_pairwise": 0, + "hallucination_rate": 0.003865038143158578, + "deletion_rate": 0.007943109884758968 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.28502024291497974, + "recall": 0.18604651162790697, + "precision": 0.6089965397923875, + "correct_pairwise": 0, + "hallucination_rate": 0.017436035161293655, + "deletion_rate": 0.0103397341211226 + } + }, + "ersatz": { + "command-r": { + "f1": 0.7131672597864768, + "recall": 0.5566666666666666, + "precision": 0.9920792079207921, + "correct_pairwise": 0, + "hallucination_rate": 0.0025836310125586935, + "deletion_rate": 0.007095624302606846 + } + }, + "ersatz-corrupted-asr": { + "command-r": { + "f1": 0.5547920433996384, + "recall": 0.4261111111111111, + "precision": 0.794818652849741, + "correct_pairwise": 0, + "hallucination_rate": 0.008580913368560508, + "deletion_rate": 0.002421233763267295 + } + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "ru": { + "opus100": { + "command-r": { + "f1": 0.8809155583049798, + "recall": 0.8109339407744874, + "precision": 0.964116452268111, + "correct_pairwise": 0, + "hallucination_rate": 0.0063410111958924625, + "deletion_rate": 0.00273835841118163 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.6495726495726496, + "recall": 0.5193621867881549, + "precision": 0.8669201520912547, + "correct_pairwise": 0, + "hallucination_rate": 0.010325249717861609, + "deletion_rate": 0.0021091476664471453 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.4906483790523691, + "recall": 0.3498166462940327, + "precision": 0.8212888077224106, + "correct_pairwise": 0, + "hallucination_rate": 0.010462678791440232, + "deletion_rate": 0.0010456506119586875 + } + }, + "ud": { + "command-r": { + "f1": 0.611625947767481, + "recall": 0.4583333333333333, + "precision": 0.9189873417721519, + "correct_pairwise": 0, + "hallucination_rate": 0.006168916140127865, + "deletion_rate": 0.0030657643847908176 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.3796548592188919, + "recall": 0.2638888888888889, + "precision": 0.6763754045307443, + "correct_pairwise": 0, + "hallucination_rate": 0.007152348940827015, + "deletion_rate": 0.0020909872586570783 + } + }, + "ersatz": { + "command-r": { + "f1": 0.8015978695073236, + "recall": 0.675645342312009, + "precision": 0.9852700490998363, + "correct_pairwise": 0, + "hallucination_rate": 0.0033323151259337424, + "deletion_rate": 0.007821684115038923 + } + }, + "ersatz-corrupted-asr": { + "command-r": { + "f1": 0.6072218128224023, + "recall": 0.4624017957351291, + "precision": 0.8841201716738197, + "correct_pairwise": 0, + "hallucination_rate": 0.010374933857434425, + "deletion_rate": 0.009704059263738756 + } + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "si": { + "opus100": { + "command-r": { + "f1": 0.08616562948779319, + "recall": 0.10089686098654709, + "precision": 0.07518796992481203, + "correct_pairwise": 0, + "hallucination_rate": 0.8316343753328267, + "deletion_rate": 0.020367639227607422 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.0824493731918997, + "recall": 0.09585201793721973, + "precision": 0.07233502538071065, + "correct_pairwise": 0, + "hallucination_rate": 0.8262696149899043, + "deletion_rate": 0.024510275242679392 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.02770083102493075, + "recall": 0.021551724137931036, + "precision": 0.03875968992248062, + "correct_pairwise": 0, + "hallucination_rate": 0.6504433167089567, + "deletion_rate": 0.05382506489339983 + } + }, + "ud": { + "command-r": {} + }, + "ud-corrupted-asr": { + "command-r": {} + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "sk": { + "opus100": { + "command-r": { + "f1": 0.7483782861044725, + "recall": 0.6146943353897925, + "precision": 0.956369982547993, + "correct_pairwise": 0, + "hallucination_rate": 0.003138315741084531, + "deletion_rate": 0.002289644442087024 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.4820822331195775, + "recall": 0.3583847448121144, + "precision": 0.7361751152073732, + "correct_pairwise": 0, + "hallucination_rate": 0.005553420797423652, + "deletion_rate": 0.0022597939653437264 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.5169951442445015, + "recall": 0.4023563410025564, + "precision": 0.7229878170561215, + "correct_pairwise": 0, + "hallucination_rate": 0.0074412774034251904, + "deletion_rate": 0.004709772506023179 + } + }, + "ud": { + "command-r": { + "f1": 0.7348284960422162, + "recall": 0.5838574423480084, + "precision": 0.9911032028469751, + "correct_pairwise": 0, + "hallucination_rate": 0.008316035288012455, + "deletion_rate": 0.0020108977685521535 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.6530359355638166, + "recall": 0.5524109014675053, + "precision": 0.7984848484848485, + "correct_pairwise": 0, + "hallucination_rate": 0.004517048861410545, + "deletion_rate": 0.0045703473730496075 + } + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "sl": { + "opus100": { + "command-r": { + "f1": 0.6377551020408163, + "recall": 0.48773690078037907, + "precision": 0.9210526315789473, + "correct_pairwise": 0, + "hallucination_rate": 0.003890468352536286, + "deletion_rate": 0.001841641823685816 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.4217102694260055, + "recall": 0.3010033444816054, + "precision": 0.7040417209908736, + "correct_pairwise": 0, + "hallucination_rate": 0.004941804540207772, + "deletion_rate": 0.004027991535205848 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.5078530408911645, + "recall": 0.4077777777777778, + "precision": 0.6730240234733175, + "correct_pairwise": 0, + "hallucination_rate": 0.006052582064195551, + "deletion_rate": 0.0029569342373980075 + } + }, + "ud": { + "command-r": { + "f1": 0.7542918454935622, + "recall": 0.6097137901127494, + "precision": 0.9887482419127989, + "correct_pairwise": 0, + "hallucination_rate": 0.003761986896928657, + "deletion_rate": 0.004585365161162099 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.5560538116591929, + "recall": 0.4839549002601908, + "precision": 0.6533957845433255, + "correct_pairwise": 0, + "hallucination_rate": 0.004325883201153569, + "deletion_rate": 0.003837946880484732 + } + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": { + "f1": 0.8021341134427682, + "f1_success": 0.8021341134427682, + "recall": 0.748944805194806, + "recall_success": 0.748944805194806, + "precision": 0.9273346948750171, + "precision_success": 0.9273346948750171, + "correct_pairwise": 0.44208211143695014, + "correct_pairwise_success": 0.44208211143695014, + "hallucination_rate": 0.030257306227628507, + "hallucination_rate_success": 0.030257306227628507, + "deletion_rate": 0.020430091524588547, + "deletion_rate_success": 0.020430091524588547 + } + }, + "short-sequences-corrupted-asr": { + "command-r": { + "f1": 0.6697332127554712, + "f1_success": 0.6697332127554712, + "recall": 0.6354437229437228, + "recall_success": 0.6354437229437228, + "precision": 0.7881495520608434, + "precision_success": 0.7881495520608434, + "correct_pairwise": 0.21737536656891496, + "correct_pairwise_success": 0.21737536656891496, + "hallucination_rate": 0.04056417283008161, + "hallucination_rate_success": 0.04056417283008161, + "deletion_rate": 0.009793122130795535, + "deletion_rate_success": 0.009793122130795535 + } + } + }, + "sq": { + "opus100": { + "command-r": { + "f1": 0.5927873779113448, + "recall": 0.4450084602368866, + "precision": 0.8875140607424072, + "correct_pairwise": 0, + "hallucination_rate": 0.0026900491985399145, + "deletion_rate": 0.0021504523091572768 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.30782029950083195, + "recall": 0.2086858432036097, + "precision": 0.5863708399366085, + "correct_pairwise": 0, + "hallucination_rate": 0.0028252775855820236, + "deletion_rate": 0.0018203683568910414 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.3694854376512845, + "recall": 0.2629181020113346, + "precision": 0.6213235294117647, + "correct_pairwise": 0, + "hallucination_rate": 0.0027538058084494994, + "deletion_rate": 0.0032699264411854964 + } + }, + "ud": { + "command-r": { + "f1": 0.92, + "recall": 0.8518518518518519, + "precision": 1.0, + "correct_pairwise": 0, + "hallucination_rate": 0.0003750234389649353, + "deletion_rate": 0.0013125820363772737 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.5853658536585367, + "recall": 0.4444444444444444, + "precision": 0.8571428571428571, + "correct_pairwise": 0, + "hallucination_rate": 0.002283539486203616, + "deletion_rate": 0.000570884871550904 + } + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "sr": { + "opus100": { + "command-r": { + "f1": 0.6719310839913855, + "recall": 0.5223214285714286, + "precision": 0.9416498993963782, + "correct_pairwise": 0, + "hallucination_rate": 0.0034524696928086625, + "deletion_rate": 0.002000863117423202 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.4595419847328244, + "recall": 0.3359375, + "precision": 0.7270531400966184, + "correct_pairwise": 0, + "hallucination_rate": 0.005046626439934174, + "deletion_rate": 0.0020981897970378497 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.4424224343675418, + "recall": 0.32955555555555555, + "precision": 0.6728675136116152, + "correct_pairwise": 0, + "hallucination_rate": 0.03053158628755982, + "deletion_rate": 0.0019710218870067782 + } + }, + "ud": { + "command-r": { + "f1": 0.820125786163522, + "recall": 0.6965811965811965, + "precision": 0.9969418960244648, + "correct_pairwise": 0, + "hallucination_rate": 0.0007308742150560089, + "deletion_rate": 0.0036394552749727787 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.6485819975339088, + "recall": 0.561965811965812, + "precision": 0.7667638483965015, + "correct_pairwise": 0, + "hallucination_rate": 0.015664066030062956, + "deletion_rate": 0.0013856673795824923 + } + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": { + "f1": 0.8371445105820116, + "f1_success": 0.8371445105820116, + "recall": 0.8107638888888887, + "recall_success": 0.8107638888888887, + "precision": 0.9235243055555556, + "precision_success": 0.9235243055555556, + "correct_pairwise": 0.4895833333333333, + "correct_pairwise_success": 0.4895833333333333, + "hallucination_rate": 0.008602126494568688, + "hallucination_rate_success": 0.008602126494568688, + "deletion_rate": 0.006745412805554879, + "deletion_rate_success": 0.006745412805554879 + } + }, + "short-sequences-corrupted-asr": { + "command-r": { + "f1": 0.6906787367724868, + "f1_success": 0.6906787367724868, + "recall": 0.7206597222222223, + "recall_success": 0.7206597222222223, + "precision": 0.7320808531746033, + "precision_success": 0.7320808531746033, + "correct_pairwise": 0.20833333333333334, + "correct_pairwise_success": 0.20833333333333334, + "hallucination_rate": 0.009444040459804808, + "hallucination_rate_success": 0.009444040459804808, + "deletion_rate": 0.005029328501519919, + "deletion_rate_success": 0.005029328501519919 + } + } + }, + "sv": { + "opus100": { + "command-r": { + "f1": 0.7693823915900131, + "recall": 0.653824678950307, + "precision": 0.9345570630486831, + "correct_pairwise": 0, + "hallucination_rate": 0.0028095508053489846, + "deletion_rate": 0.0014923133357788376 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.598479612992398, + "recall": 0.4835287548855388, + "precision": 0.785131459655485, + "correct_pairwise": 0, + "hallucination_rate": 0.003935727852974897, + "deletion_rate": 0.0020705350878694024 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.5510359642436422, + "recall": 0.44197421076033794, + "precision": 0.7315547378104876, + "correct_pairwise": 0, + "hallucination_rate": 0.0036551778358202437, + "deletion_rate": 0.0038698212594327672 + } + }, + "ud": { + "command-r": { + "f1": 0.7284595300261097, + "recall": 0.5993555316863588, + "precision": 0.9284525790349417, + "correct_pairwise": 0, + "hallucination_rate": 0.0009601165382832675, + "deletion_rate": 0.0015781225859138764 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.573208722741433, + "recall": 0.4940923737916219, + "precision": 0.6824925816023739, + "correct_pairwise": 0, + "hallucination_rate": 0.0019831432821021317, + "deletion_rate": 0.006591697841078109 + } + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "ta": { + "opus100": { + "command-r": { + "f1": 0.018973214285714288, + "recall": 0.0096045197740113, + "precision": 0.7727272727272727, + "correct_pairwise": 0, + "hallucination_rate": 0.00022900611346755083, + "deletion_rate": 0.895453730808292 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.02184598580010923, + "recall": 0.011299435028248588, + "precision": 0.32786885245901637, + "correct_pairwise": 0, + "hallucination_rate": 0.0026633732481340278, + "deletion_rate": 0.6922300381248994 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.0015785319652722968, + "recall": 0.0007908264136022143, + "precision": 0.4, + "correct_pairwise": 0, + "hallucination_rate": 0.0006062717367664352, + "deletion_rate": 0.8352538353904871 + } + }, + "ud": { + "command-r": { + "f1": 0.0, + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "hallucination_rate": 0.0, + "deletion_rate": 0.946791972866026 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.0, + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "hallucination_rate": 0.0, + "deletion_rate": 0.8313836524849118 + } + }, + "ersatz": { + "command-r": { + "f1": 0.013186813186813187, + "recall": 0.00663716814159292, + "precision": 1.0, + "correct_pairwise": 0, + "hallucination_rate": 1.6693097404223353e-05, + "deletion_rate": 0.9487855771638427 + } + }, + "ersatz-corrupted-asr": { + "command-r": { + "f1": 0.006600660066006601, + "recall": 0.00331858407079646, + "precision": 0.6, + "correct_pairwise": 0, + "hallucination_rate": 0.0003181167488468268, + "deletion_rate": 0.8616015410989166 + } + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "te": { + "opus100": { + "command-r": { + "f1": 0.36099773242630384, + "recall": 0.2257515598411798, + "precision": 0.9004524886877828, + "correct_pairwise": 0, + "hallucination_rate": 0.006225796290463044, + "deletion_rate": 0.07079990364839074 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.039045553145336226, + "recall": 0.02041973908111174, + "precision": 0.4444444444444444, + "correct_pairwise": 0, + "hallucination_rate": 0.0873811791510262, + "deletion_rate": 0.019328813939156256 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.0535931790499391, + "recall": 0.02771944561108778, + "precision": 0.8048780487804879, + "correct_pairwise": 0, + "hallucination_rate": 0.001242939918477764, + "deletion_rate": 0.1331316602387176 + } + }, + "ud": { + "command-r": {} + }, + "ud-corrupted-asr": { + "command-r": {} + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "tg": { + "opus100": { + "command-r": { + "f1": 0.5494505494505495, + "recall": 0.40435025097601784, + "precision": 0.8569739952718676, + "correct_pairwise": 0, + "hallucination_rate": 0.0018968163393805833, + "deletion_rate": 0.006493250954311125 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.03952991452991453, + "recall": 0.02063580591187953, + "precision": 0.46835443037974683, + "correct_pairwise": 0, + "hallucination_rate": 0.0008364426585755874, + "deletion_rate": 0.012226823568001968 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.028469750889679714, + "recall": 0.014705882352941176, + "precision": 0.4444444444444444, + "correct_pairwise": 0, + "hallucination_rate": 0.0009749756256093598, + "deletion_rate": 5.416531253385332e-05 + } + }, + "ud": { + "command-r": {} + }, + "ud-corrupted-asr": { + "command-r": {} + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "th": { + "opus100": { + "command-r": { + "f1": 0.10619469026548674, + "recall": 0.05723905723905724, + "precision": 0.7338129496402878, + "correct_pairwise": 0, + "hallucination_rate": 0.008249996413045038, + "deletion_rate": 0.008623039729113161 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.05920344456404736, + "recall": 0.030864197530864196, + "precision": 0.7236842105263158, + "correct_pairwise": 0, + "hallucination_rate": 0.0037106835546595377, + "deletion_rate": 0.008356342493170297 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.021004266491631108, + "recall": 0.010666666666666666, + "precision": 0.6808510638297872, + "correct_pairwise": 0, + "hallucination_rate": 0.011276870943387392, + "deletion_rate": 0.029651826316990804 + } + }, + "ud": { + "command-r": { + "f1": 0.12409513960703206, + "recall": 0.06666666666666667, + "precision": 0.8955223880597015, + "correct_pairwise": 0, + "hallucination_rate": 0.0019269554104514865, + "deletion_rate": 0.030252201521595877 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.0824524312896406, + "recall": 0.043333333333333335, + "precision": 0.8478260869565217, + "correct_pairwise": 0, + "hallucination_rate": 0.0014934798079525293, + "deletion_rate": 0.037417182034139546 + } + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "tr": { + "opus100": { + "command-r": { + "f1": 0.724496877168633, + "recall": 0.5871766029246345, + "precision": 0.9456521739130435, + "correct_pairwise": 0, + "hallucination_rate": 0.0030640809018233173, + "deletion_rate": 0.0026479711497238542 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.46098726114649685, + "recall": 0.32564679415073117, + "precision": 0.7888283378746594, + "correct_pairwise": 0, + "hallucination_rate": 0.008245936025170425, + "deletion_rate": 0.0029496591504981646 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.5191425347875142, + "recall": 0.38361493997332147, + "precision": 0.8027448243777623, + "correct_pairwise": 0, + "hallucination_rate": 0.006584702293869913, + "deletion_rate": 0.009686890686842512 + } + }, + "ud": { + "command-r": { + "f1": 0.6177285318559558, + "recall": 0.4505050505050505, + "precision": 0.9823788546255506, + "correct_pairwise": 0, + "hallucination_rate": 0.001823077823679941, + "deletion_rate": 0.004448978909163893 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.4634322954380884, + "recall": 0.32323232323232326, + "precision": 0.8184143222506394, + "correct_pairwise": 0, + "hallucination_rate": 0.0035279192228150364, + "deletion_rate": 0.001199144957508559 + } + }, + "ersatz": { + "command-r": { + "f1": 0.7176250584385226, + "recall": 0.5668389955686853, + "precision": 0.9777070063694268, + "correct_pairwise": 0, + "hallucination_rate": 0.0033748272643437166, + "deletion_rate": 0.00954986419403575 + } + }, + "ersatz-corrupted-asr": { + "command-r": { + "f1": 0.6346933905989024, + "recall": 0.4911373707533235, + "precision": 0.8968307484828051, + "correct_pairwise": 0, + "hallucination_rate": 0.007963559120396516, + "deletion_rate": 0.0070404971921144135 + } + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "tr-de": { + "opus100": { + "command-r": {} + }, + "opus100-corrupted-asr": { + "command-r": {} + }, + "ted2020-corrupted-asr": { + "command-r": {} + }, + "ud": { + "command-r": {} + }, + "ud-corrupted-asr": { + "command-r": {} + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": { + "f1": 0.5465116279069768, + "recall": 0.38950276243093923, + "precision": 0.9155844155844156, + "correct_pairwise": 0, + "hallucination_rate": 0.014009011341861308, + "deletion_rate": 0.03051685742399917 + } + }, + "code-switching-corrupted-asr": { + "command-r": { + "f1": 0.17610062893081763, + "recall": 0.11602209944751381, + "precision": 0.3652173913043478, + "correct_pairwise": 0, + "hallucination_rate": 0.015033737126622737, + "deletion_rate": 0.03084349392994778 + } + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "uk": { + "opus100": { + "command-r": { + "f1": 0.7983354673495517, + "recall": 0.6962590731434952, + "precision": 0.9354838709677419, + "correct_pairwise": 0, + "hallucination_rate": 0.009610973213970614, + "deletion_rate": 0.007469973061042032 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.3959983326385994, + "recall": 0.26521496370742603, + "precision": 0.78125, + "correct_pairwise": 0, + "hallucination_rate": 0.019911395520551316, + "deletion_rate": 0.004750184592665518 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.46550766055410014, + "recall": 0.32592263228101376, + "precision": 0.8142182727020272, + "correct_pairwise": 0, + "hallucination_rate": 0.014040400153394788, + "deletion_rate": 0.0021085148704039617 + } + }, + "ud": { + "command-r": { + "f1": 0.6206896551724138, + "recall": 0.4566831683168317, + "precision": 0.968503937007874, + "correct_pairwise": 0, + "hallucination_rate": 0.001217382627351195, + "deletion_rate": 0.0026044005388414907 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.40186046511627904, + "recall": 0.26732673267326734, + "precision": 0.8089887640449438, + "correct_pairwise": 0, + "hallucination_rate": 0.00714799958860434, + "deletion_rate": 0.0007610819705852103 + } + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "ur": { + "opus100": { + "command-r": { + "f1": 0.26616328456819255, + "recall": 0.1657848324514991, + "precision": 0.6746411483253588, + "correct_pairwise": 0, + "hallucination_rate": 0.005499687397344467, + "deletion_rate": 0.007290529729042376 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.23363636363636361, + "recall": 0.15108759553204, + "precision": 0.5150300601202404, + "correct_pairwise": 0, + "hallucination_rate": 0.028528512645842368, + "deletion_rate": 0.002163174206924273 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.20946915351506457, + "recall": 0.125, + "precision": 0.6460176991150443, + "correct_pairwise": 0, + "hallucination_rate": 0.009487554733072707, + "deletion_rate": 0.00957407184733102 + } + }, + "ud": { + "command-r": { + "f1": 0.8228155339805826, + "recall": 0.7047817047817048, + "precision": 0.9883381924198251, + "correct_pairwise": 0, + "hallucination_rate": 0.002208187960959237, + "deletion_rate": 0.000662456388287771 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.38815789473684215, + "recall": 0.24532224532224534, + "precision": 0.9291338582677166, + "correct_pairwise": 0, + "hallucination_rate": 0.00856397795294257, + "deletion_rate": 0.0009186273928761927 + } + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "uz": { + "opus100": { + "command-r": { + "f1": 0.44782939832444785, + "recall": 0.3333333333333333, + "precision": 0.6821345707656613, + "correct_pairwise": 0, + "hallucination_rate": 0.002011054554538925, + "deletion_rate": 0.004134528307778784 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.19705434230573896, + "recall": 0.10997732426303855, + "precision": 0.9463414634146341, + "correct_pairwise": 0, + "hallucination_rate": 0.0004176673279732693, + "deletion_rate": 0.002120966899864258 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.17421052631578948, + "recall": 0.0970389914980944, + "precision": 0.8508997429305912, + "correct_pairwise": 0, + "hallucination_rate": 0.031182101753253737, + "deletion_rate": 0.04168011186404216 + } + }, + "ud": { + "command-r": {} + }, + "ud-corrupted-asr": { + "command-r": {} + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "vi": { + "opus100": { + "command-r": { + "f1": 0.7720242098184262, + "recall": 0.6552511415525114, + "precision": 0.939443535188216, + "correct_pairwise": 0, + "hallucination_rate": 0.003563592846220331, + "deletion_rate": 0.007326640515923143 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.45295055821371616, + "recall": 0.3242009132420091, + "precision": 0.7513227513227513, + "correct_pairwise": 0, + "hallucination_rate": 0.011012820689750348, + "deletion_rate": 0.0018906722236789444 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.3942829766847652, + "recall": 0.2743333333333333, + "precision": 0.7006242905788876, + "correct_pairwise": 0, + "hallucination_rate": 0.007026732459955459, + "deletion_rate": 0.0031498748230067595 + } + }, + "ud": { + "command-r": { + "f1": 0.9239766081871346, + "recall": 0.8777777777777778, + "precision": 0.9753086419753086, + "correct_pairwise": 0, + "hallucination_rate": 0.0013200378172996308, + "deletion_rate": 0.0018730266326548815 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.38006230529595014, + "recall": 0.25416666666666665, + "precision": 0.7530864197530864, + "correct_pairwise": 0, + "hallucination_rate": 0.013045035534525986, + "deletion_rate": 0.0007163458819537392 + } + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "vi-en": { + "opus100": { + "command-r": {} + }, + "opus100-corrupted-asr": { + "command-r": {} + }, + "ted2020-corrupted-asr": { + "command-r": {} + }, + "ud": { + "command-r": {} + }, + "ud-corrupted-asr": { + "command-r": {} + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": { + "f1": 0.2919975565058033, + "recall": 0.19526143790849673, + "precision": 0.5786924939467313, + "correct_pairwise": 0, + "hallucination_rate": 0.00622365777760271, + "deletion_rate": 0.0027967069760113446 + } + }, + "code-switching-corrupted-asr": { + "command-r": { + "f1": 0.3005497861942578, + "recall": 0.20098039215686275, + "precision": 0.5956416464891041, + "correct_pairwise": 0, + "hallucination_rate": 0.00654084085267347, + "deletion_rate": 0.004393396114898144 + } + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "xh": { + "opus100": { + "command-r": { + "f1": 0.56069592724397, + "recall": 0.408175014392631, + "precision": 0.8952020202020202, + "correct_pairwise": 0, + "hallucination_rate": 0.0016233054007809414, + "deletion_rate": 0.03719186968430157 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.0422462648119526, + "recall": 0.02360391479562464, + "precision": 0.20098039215686275, + "correct_pairwise": 0, + "hallucination_rate": 0.0005337414633518964, + "deletion_rate": 0.04215914498475943 + } + }, + "ted2020-corrupted-asr": { + "command-r": {} + }, + "ud": { + "command-r": {} + }, + "ud-corrupted-asr": { + "command-r": {} + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "yi": { + "opus100": { + "command-r": { + "f1": 0.08280254777070063, + "recall": 0.04529616724738676, + "precision": 0.48148148148148145, + "correct_pairwise": 0, + "hallucination_rate": 0.2880811541446963, + "deletion_rate": 0.005165814619523032 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.04429860541427399, + "recall": 0.023519163763066203, + "precision": 0.38028169014084506, + "correct_pairwise": 0, + "hallucination_rate": 0.02233440416093009, + "deletion_rate": 0.019389628269848556 + } + }, + "ted2020-corrupted-asr": { + "command-r": {} + }, + "ud": { + "command-r": {} + }, + "ud-corrupted-asr": { + "command-r": {} + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "yo": { + "opus100": { + "command-r": { + "f1": 0.26640819717529773, + "recall": 0.17103235747303544, + "precision": 0.6022537562604341, + "correct_pairwise": 0, + "hallucination_rate": 0.3262069201381694, + "deletion_rate": 0.020729433018623095 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.04817421909370875, + "recall": 0.025957093753703923, + "precision": 0.33435114503816793, + "correct_pairwise": 0, + "hallucination_rate": 0.2959766135856604, + "deletion_rate": 0.017025485476904818 + } + }, + "ted2020-corrupted-asr": { + "command-r": {} + }, + "ud": { + "command-r": { + "f1": 0.6610169491525423, + "recall": 0.5454545454545454, + "precision": 0.8387096774193549, + "correct_pairwise": 0, + "hallucination_rate": 0.24691046658259774, + "deletion_rate": 0.0403530895334174 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.032786885245901634, + "recall": 0.017482517482517484, + "precision": 0.2631578947368421, + "correct_pairwise": 0, + "hallucination_rate": 0.2372922129471481, + "deletion_rate": 0.03276480069282398 + } + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "zh": { + "opus100": { + "command-r": { + "f1": 0.5867331049517285, + "recall": 0.5265511458915595, + "precision": 0.6624472573839663, + "correct_pairwise": 0, + "hallucination_rate": 0.006422692710906528, + "deletion_rate": 0.008880909058045236 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.23780267437658115, + "recall": 0.18390162101732813, + "precision": 0.33640081799591004, + "correct_pairwise": 0, + "hallucination_rate": 0.04856309556734468, + "deletion_rate": 0.004550825937193573 + } + }, + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.020222653457256663, + "recall": 0.0135709389993146, + "precision": 0.039663461538461536, + "correct_pairwise": 0, + "hallucination_rate": 0.0181932843642105, + "deletion_rate": 0.004496145836641547 + } + }, + "ud": { + "command-r": { + "f1": 0.9177001127395715, + "recall": 0.9044444444444445, + "precision": 0.931350114416476, + "correct_pairwise": 0, + "hallucination_rate": 0.0019217153838373621, + "deletion_rate": 0.002478001416000809 + } + }, + "ud-corrupted-asr": { + "command-r": { + "f1": 0.41574803149606304, + "recall": 0.29333333333333333, + "precision": 0.7135135135135136, + "correct_pairwise": 0, + "hallucination_rate": 0.06242521978879467, + "deletion_rate": 0.002705092857514436 + } + }, + "ersatz": { + "command-r": { + "f1": 0.7054187192118226, + "recall": 0.5960044395116537, + "precision": 0.8640386162510056, + "correct_pairwise": 0, + "hallucination_rate": 0.009658392955937099, + "deletion_rate": 0.011440038258488602 + } + }, + "ersatz-corrupted-asr": { + "command-r": { + "f1": 0.1861490957212175, + "recall": 0.11709211986681466, + "precision": 0.45376344086021503, + "correct_pairwise": 0, + "hallucination_rate": 0.0582710503299674, + "deletion_rate": 0.0035083883279001353 + } + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + }, + "zu": { + "opus100": { + "command-r": { + "f1": 0.3489995346672871, + "recall": 0.22281639928698752, + "precision": 0.8047210300429185, + "correct_pairwise": 0, + "hallucination_rate": 0.007260112299273988, + "deletion_rate": 0.0036121740996387826 + } + }, + "opus100-corrupted-asr": { + "command-r": { + "f1": 0.11679586563307495, + "recall": 0.06714200831847891, + "precision": 0.44841269841269843, + "correct_pairwise": 0, + "hallucination_rate": 0.0014985763524651581, + "deletion_rate": 0.0018170238273640042 + } + }, + "ted2020-corrupted-asr": { + "command-r": {} + }, + "ud": { + "command-r": {} + }, + "ud-corrupted-asr": { + "command-r": {} + }, + "ersatz": { + "command-r": {} + }, + "ersatz-corrupted-asr": { + "command-r": {} + }, + "legal-all-judgements": { + "command-r": {} + }, + "legal-all-judgements-corrupted-asr": { + "command-r": {} + }, + "legal-all-laws": { + "command-r": {} + }, + "legal-all-laws-corrupted-asr": { + "command-r": {} + }, + "code-switching": { + "command-r": {} + }, + "code-switching-corrupted-asr": { + "command-r": {} + }, + "short-sequences": { + "command-r": {} + }, + "short-sequences-corrupted-asr": { + "command-r": {} + } + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/llama-3.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/llama-3.json new file mode 100644 index 0000000000000000000000000000000000000000..8fc070f4847591f9ad9c4e722be9cd5923b3dbb3 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/llama-3.json @@ -0,0 +1,7417 @@ +{ + "af": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6541666666666667, + "recall": 0.5401376146788991, + "precision": 0.829225352112676, + "correct_pairwise": 0, + "hallucination_rate": 0.001732774644781198, + "deletion_rate": 0.006080463753504931 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.39312231340367326, + "recall": 0.28841743119266056, + "precision": 0.6171779141104294, + "correct_pairwise": 0, + "hallucination_rate": 0.0008268973158913126, + "deletion_rate": 0.0016207187391469727 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5560791705937794, + "recall": 0.5042735042735043, + "precision": 0.6197478991596639, + "correct_pairwise": 0, + "hallucination_rate": 0.0005315261444422297, + "deletion_rate": 0.0008748034460611698 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 1.0, + "recall": 1.0, + "precision": 1.0, + "correct_pairwise": 1, + "hallucination_rate": 0.00018659881255301102, + "deletion_rate": 0.00044105173876166244 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.824468085106383, + "recall": 0.8115183246073299, + "precision": 0.8378378378378378, + "correct_pairwise": 0, + "hallucination_rate": 0.000103978926937474, + "deletion_rate": 0.0006065437404685984 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "am": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.36157024793388426, + "recall": 0.2924791086350975, + "precision": 0.4733994589720469, + "correct_pairwise": 0, + "hallucination_rate": 0.006167437026502202, + "deletion_rate": 0.018379235839509886 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.2588066139468008, + "recall": 0.20055710306406685, + "precision": 0.364741641337386, + "correct_pairwise": 0, + "hallucination_rate": 0.0058468306338732255, + "deletion_rate": 0.041823635272945414 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.2723404255319149, + "recall": 0.2077922077922078, + "precision": 0.3950617283950617, + "correct_pairwise": 0, + "hallucination_rate": 0.0009517897786054211, + "deletion_rate": 0.0026070763500931097 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "ar": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6222996515679442, + "recall": 0.49832589285714285, + "precision": 0.8283858998144712, + "correct_pairwise": 0, + "hallucination_rate": 0.0022932761894020564, + "deletion_rate": 0.0038158612003985036 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5267624020887728, + "recall": 0.45033482142857145, + "precision": 0.6344339622641509, + "correct_pairwise": 0, + "hallucination_rate": 0.0020925388822922546, + "deletion_rate": 0.0016059019329219628 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5469962114378496, + "recall": 0.5053333333333333, + "precision": 0.5961462839166339, + "correct_pairwise": 0, + "hallucination_rate": 0.0020718876991506997, + "deletion_rate": 0.0036568217536201335 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.8012718600953895, + "recall": 0.8235294117647058, + "precision": 0.7801857585139319, + "correct_pairwise": 0, + "hallucination_rate": 0.0009616549551732494, + "deletion_rate": 0.0052550278652774415 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6302943287867911, + "recall": 0.7173202614379085, + "precision": 0.5620998719590269, + "correct_pairwise": 0, + "hallucination_rate": 0.004627320374789929, + "deletion_rate": 0.014633996608166491 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9236058059587472, + "recall": 0.893569844789357, + "precision": 0.9557312252964427, + "correct_pairwise": 0, + "hallucination_rate": 0.0018068496025843424, + "deletion_rate": 0.004654006552111185 + } + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5862068965517242, + "recall": 0.565410199556541, + "precision": 0.6085918854415274, + "correct_pairwise": 0, + "hallucination_rate": 0.0019406997879430476, + "deletion_rate": 0.002792714328991215 + } + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "az": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.767934643860097, + "recall": 0.8378830083565459, + "precision": 0.708765315739868, + "correct_pairwise": 0, + "hallucination_rate": 0.002711364412799809, + "deletion_rate": 0.026913003161450906 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5803370786516855, + "recall": 0.5754874651810585, + "precision": 0.5852691218130311, + "correct_pairwise": 0, + "hallucination_rate": 0.0006443260528466683, + "deletion_rate": 0.0012170603220437069 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6528469750889679, + "recall": 0.6026609724047306, + "precision": 0.7121506211180124, + "correct_pairwise": 0, + "hallucination_rate": 0.0019517623643717766, + "deletion_rate": 0.004123954030860103 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "be": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5447684391080617, + "recall": 0.4493491794001132, + "precision": 0.6916376306620209, + "correct_pairwise": 0, + "hallucination_rate": 0.0017500339812423543, + "deletion_rate": 0.0030753024330569525 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.33184221228141525, + "recall": 0.23103057757644394, + "precision": 0.5887445887445888, + "correct_pairwise": 0, + "hallucination_rate": 0.002407618775859609, + "deletion_rate": 0.001605079183906406 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.44803749267721155, + "recall": 0.3446908238687579, + "precision": 0.6398929049531459, + "correct_pairwise": 0, + "hallucination_rate": 0.006434316353887399, + "deletion_rate": 0.005379088471849866 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.8809926677946983, + "recall": 0.8059855521155831, + "precision": 0.9713930348258707, + "correct_pairwise": 0, + "hallucination_rate": 0.0005452197618250514, + "deletion_rate": 0.04075756851116744 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.4756898817345597, + "recall": 0.3735810113519092, + "precision": 0.6546112115732369, + "correct_pairwise": 0, + "hallucination_rate": 0.003548722459914431, + "deletion_rate": 0.015944260066376104 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "bg": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9463013698630138, + "recall": 0.9610461880912632, + "precision": 0.9320021586616298, + "correct_pairwise": 0, + "hallucination_rate": 0.0015263954729344022, + "deletion_rate": 0.0008190414732818744 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5197662426950842, + "recall": 0.42070116861435725, + "precision": 0.6798561151079137, + "correct_pairwise": 0, + "hallucination_rate": 0.0010819830272060069, + "deletion_rate": 0.0015903846905919621 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5563507457695137, + "recall": 0.4622138252945099, + "precision": 0.6986393415084832, + "correct_pairwise": 0, + "hallucination_rate": 0.0006081628135178799, + "deletion_rate": 0.003760908687276214 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9734422880490297, + "recall": 0.9492031872509961, + "precision": 0.9989517819706499, + "correct_pairwise": 0, + "hallucination_rate": 0.00046416097102475136, + "deletion_rate": 0.00034812072826856356 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5866517106001121, + "recall": 0.5209163346613546, + "precision": 0.6713735558408216, + "correct_pairwise": 0, + "hallucination_rate": 0.00046623947972456006, + "deletion_rate": 0.006312165263963275 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "bn": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.799651061355045, + "recall": 0.7681564245810056, + "precision": 0.8338386901152214, + "correct_pairwise": 0, + "hallucination_rate": 0.0019401151134967342, + "deletion_rate": 0.005561663325357304 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.1542056074766355, + "recall": 0.1106145251396648, + "precision": 0.2544987146529563, + "correct_pairwise": 0, + "hallucination_rate": 0.002852511640472293, + "deletion_rate": 0.0027174344875808476 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.14964925954793454, + "recall": 0.14358974358974358, + "precision": 0.15624273424784935, + "correct_pairwise": 0, + "hallucination_rate": 0.0036045709026765855, + "deletion_rate": 0.010096407609749936 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9690721649484536, + "recall": 0.94, + "precision": 1.0, + "correct_pairwise": 0, + "hallucination_rate": 0.006792452830188679, + "deletion_rate": 0.0037735849056603774 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.33802816901408445, + "recall": 0.24, + "precision": 0.5714285714285714, + "correct_pairwise": 0, + "hallucination_rate": 0.009149130832570906, + "deletion_rate": 0.0 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "ca": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9088888888888889, + "recall": 0.9222096956031567, + "precision": 0.895947426067908, + "correct_pairwise": 0, + "hallucination_rate": 0.0016272128021226318, + "deletion_rate": 0.0016893992786368725 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.531578947368421, + "recall": 0.455467869222097, + "precision": 0.6382306477093207, + "correct_pairwise": 0, + "hallucination_rate": 0.0012290263973495778, + "deletion_rate": 0.002778668376616437 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6319161327897496, + "recall": 0.603448275862069, + "precision": 0.66320293398533, + "correct_pairwise": 0, + "hallucination_rate": 0.0007184504576060076, + "deletion_rate": 0.003083199451233821 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9936575052854122, + "recall": 0.9903672486453944, + "precision": 0.996969696969697, + "correct_pairwise": 0, + "hallucination_rate": 4.687824380704915e-05, + "deletion_rate": 0.0003549352745390864 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6773238602723504, + "recall": 0.6887417218543046, + "precision": 0.6662783925451369, + "correct_pairwise": 0, + "hallucination_rate": 0.00015623195690715066, + "deletion_rate": 0.0018645944422179504 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "ceb": { + "opus100": { + "meta/meta-llama-3-8b-instruct": {} + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.2816901408450704, + "recall": 0.20408163265306123, + "precision": 0.45454545454545453, + "correct_pairwise": 0, + "hallucination_rate": 0.0, + "deletion_rate": 0.0011441647597254005 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9970501474926253, + "recall": 1.0, + "precision": 0.9941176470588236, + "correct_pairwise": 0, + "hallucination_rate": 0.0030938466827088347, + "deletion_rate": 0.00017188037126160193 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.625, + "recall": 0.5325443786982249, + "precision": 0.7563025210084033, + "correct_pairwise": 0, + "hallucination_rate": 0.0023251654444643175, + "deletion_rate": 0.0016097299230906814 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "cs": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9126712328767124, + "recall": 0.9018612521150592, + "precision": 0.9237435008665511, + "correct_pairwise": 0, + "hallucination_rate": 0.0015227653418608193, + "deletion_rate": 0.001581333239624697 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.552317880794702, + "recall": 0.4703891708967851, + "precision": 0.6688051323175621, + "correct_pairwise": 0, + "hallucination_rate": 0.0026995333838223438, + "deletion_rate": 0.0036156646226760806 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6303711509190961, + "recall": 0.5983551900422316, + "precision": 0.6660069272637308, + "correct_pairwise": 0, + "hallucination_rate": 0.0019024221574328332, + "deletion_rate": 0.005664213071281632 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9298378189850607, + "recall": 0.8761091028590207, + "precision": 0.9905870696061432, + "correct_pairwise": 0, + "hallucination_rate": 0.00040189940712206446, + "deletion_rate": 0.0010225541877409488 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6427396949594603, + "recall": 0.6211506849315068, + "precision": 0.6658834586466166, + "correct_pairwise": 0, + "hallucination_rate": 0.0013969161433012706, + "deletion_rate": 0.0025392784860308387 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9590954439640839, + "recall": 0.9285254346426272, + "precision": 0.9917469050894085, + "correct_pairwise": 0, + "hallucination_rate": 0.00044928675727282937, + "deletion_rate": 0.0014483586254189895 + } + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5975130890052356, + "recall": 0.587894397939472, + "precision": 0.6074517631403858, + "correct_pairwise": 0, + "hallucination_rate": 0.001381324253751689, + "deletion_rate": 0.0037077651021755857 + } + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "cy": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.4629629629629629, + "recall": 0.3333333333333333, + "precision": 0.7575757575757576, + "correct_pairwise": 0, + "hallucination_rate": 0.0018779675430515201, + "deletion_rate": 0.004092551909857558 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.20770355923939546, + "recall": 0.1290909090909091, + "precision": 0.5311720698254364, + "correct_pairwise": 0, + "hallucination_rate": 0.006083494567643994, + "deletion_rate": 0.0020650394403929156 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9870588235294118, + "recall": 0.9789964994165694, + "precision": 0.9952550415183867, + "correct_pairwise": 0, + "hallucination_rate": 0.00041711138100671057, + "deletion_rate": 0.0001472157815317802 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.4996282527881041, + "recall": 0.3920653442240373, + "precision": 0.6885245901639344, + "correct_pairwise": 0, + "hallucination_rate": 0.0004433747149733975, + "deletion_rate": 0.000709399543957436 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "da": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9317803660565723, + "recall": 0.9406494960806271, + "precision": 0.9230769230769231, + "correct_pairwise": 0, + "hallucination_rate": 0.001009532030695626, + "deletion_rate": 0.0013021500106074019 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5994415141172821, + "recall": 0.5408734602463606, + "precision": 0.6722338204592901, + "correct_pairwise": 0, + "hallucination_rate": 0.0007971575638864848, + "deletion_rate": 0.001396923731001078 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6535724452035296, + "recall": 0.6379904412581971, + "precision": 0.6699346405228758, + "correct_pairwise": 0, + "hallucination_rate": 0.0005736955126292185, + "deletion_rate": 0.0012923374498929954 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9518935516888434, + "recall": 0.9153543307086615, + "precision": 0.9914712153518124, + "correct_pairwise": 0, + "hallucination_rate": 0.004268783583905937, + "deletion_rate": 0.0031828649529123216 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6314699792960664, + "recall": 0.6003937007874016, + "precision": 0.665938864628821, + "correct_pairwise": 0, + "hallucination_rate": 0.0001554665941155894, + "deletion_rate": 0.0003886664852889735 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "de": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.8379290939786157, + "recall": 0.8738262910798122, + "precision": 0.8048648648648649, + "correct_pairwise": 0, + "hallucination_rate": 0.0008018334838086459, + "deletion_rate": 0.002601223585268993 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6466398265716939, + "recall": 0.6126760563380281, + "precision": 0.6845901639344262, + "correct_pairwise": 0, + "hallucination_rate": 0.0004972422682098624, + "deletion_rate": 0.002747917798001871 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7128469113697404, + "recall": 0.7079350966881529, + "precision": 0.7178273608293892, + "correct_pairwise": 0, + "hallucination_rate": 0.003505669003388383, + "deletion_rate": 0.002691706377643473 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.967251461988304, + "recall": 0.9408418657565415, + "precision": 0.9951865222623345, + "correct_pairwise": 0, + "hallucination_rate": 0.0002651681267911597, + "deletion_rate": 0.001203455344667571 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7671541057367829, + "recall": 0.7758816837315131, + "precision": 0.7586206896551724, + "correct_pairwise": 0, + "hallucination_rate": 0.0005862216964837167, + "deletion_rate": 0.004250107299506946 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9732065687121868, + "recall": 0.955316742081448, + "precision": 0.991779213153259, + "correct_pairwise": 0, + "hallucination_rate": 2.6929015116153818e-05, + "deletion_rate": 0.001099601450576281 + } + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7529473408435945, + "recall": 0.8127828054298643, + "precision": 0.7013177159590044, + "correct_pairwise": 0, + "hallucination_rate": 0.00037564707499198317, + "deletion_rate": 0.006596729121810436 + } + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7834726424082814, + "f1_success": 0.7834726424082814, + "recall": 0.6617850577993488, + "recall_success": 0.6617850577993488, + "precision": 0.9660756573438994, + "precision_success": 0.9660756573438994, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.00022528944962314188, + "hallucination_rate_success": 0.00022528944962314188, + "deletion_rate": 0.0019204568514467394, + "deletion_rate_success": 0.0019204568514467394 + } + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5920407383180792, + "f1_success": 0.5920407383180792, + "recall": 0.5196850573108305, + "recall_success": 0.5196850573108305, + "precision": 0.6972586325163447, + "precision_success": 0.6972586325163447, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.0004436358399903133, + "hallucination_rate_success": 0.0004436358399903133, + "deletion_rate": 0.0029532818335113544, + "deletion_rate_success": 0.0029532818335113544 + } + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.833600082879754, + "f1_success": 0.833600082879754, + "recall": 0.742347966632166, + "recall_success": 0.742347966632166, + "precision": 0.9533076419682033, + "precision_success": 0.9533076419682033, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.0009080290841756802, + "hallucination_rate_success": 0.0009080290841756802, + "deletion_rate": 0.0055146294529662505, + "deletion_rate_success": 0.0055146294529662505 + } + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7419815878097253, + "f1_success": 0.7419815878097253, + "recall": 0.717094791861486, + "recall_success": 0.717094791861486, + "precision": 0.769598227029852, + "precision_success": 0.769598227029852, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.0006545361189937276, + "hallucination_rate_success": 0.0006545361189937276, + "deletion_rate": 0.0030738792959210236, + "deletion_rate_success": 0.0030738792959210236 + } + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "el": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9425666391865897, + "recall": 0.9575656058068118, + "precision": 0.928030303030303, + "correct_pairwise": 0, + "hallucination_rate": 0.001266308518802763, + "deletion_rate": 0.000546815042210284 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5085574572127141, + "recall": 0.4064768285873814, + "precision": 0.6791044776119403, + "correct_pairwise": 0, + "hallucination_rate": 0.0016807221173144038, + "deletion_rate": 0.001235825086260591 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5612928655892787, + "recall": 0.4746666666666667, + "precision": 0.686595949855352, + "correct_pairwise": 0, + "hallucination_rate": 0.0011139088131945692, + "deletion_rate": 0.0026564939043532292 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9468354430379746, + "recall": 0.9121951219512195, + "precision": 0.9842105263157894, + "correct_pairwise": 0, + "hallucination_rate": 3.216261417728033e-05, + "deletion_rate": 0.0006271709764569664 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6869220607661823, + "recall": 0.6341463414634146, + "precision": 0.7492795389048992, + "correct_pairwise": 0, + "hallucination_rate": 0.000638433709299851, + "deletion_rate": 0.0017843403670175324 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "en": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9277652370203161, + "recall": 0.9220415030846887, + "precision": 0.9335604770017035, + "correct_pairwise": 0, + "hallucination_rate": 0.0007457804527018187, + "deletion_rate": 0.0030747088839460945 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7999999999999999, + "recall": 0.7986539540100953, + "precision": 0.8013505908835116, + "correct_pairwise": 0, + "hallucination_rate": 0.000906311717122528, + "deletion_rate": 0.0023131239347455564 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6680829652820485, + "recall": 0.6638888888888889, + "precision": 0.6723303702036683, + "correct_pairwise": 0, + "hallucination_rate": 0.00046279458113712344, + "deletion_rate": 0.002509900538575786 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9475357710651828, + "recall": 0.9066937119675457, + "precision": 0.9922308546059934, + "correct_pairwise": 0, + "hallucination_rate": 8.934243964421855e-05, + "deletion_rate": 0.0010125476493011436 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7103882476390347, + "recall": 0.6866125760649088, + "precision": 0.7358695652173913, + "correct_pairwise": 0, + "hallucination_rate": 3.0558922696111886e-05, + "deletion_rate": 0.0010288170641024334 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9819457641985235, + "recall": 0.968704932218056, + "precision": 0.9955535793686082, + "correct_pairwise": 0, + "hallucination_rate": 0.00010039082146797483, + "deletion_rate": 0.0007479116199364124 + } + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7659718005801796, + "recall": 0.8187193539082781, + "precision": 0.7196095829636202, + "correct_pairwise": 0, + "hallucination_rate": 6.788419367977586e-05, + "deletion_rate": 0.0008331241951608856 + } + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.8922367357788888, + "f1_success": 0.8922367357788888, + "recall": 0.8234349791355353, + "recall_success": 0.8234349791355353, + "precision": 0.9778770916409213, + "precision_success": 0.9778770916409213, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.00034346403169817753, + "hallucination_rate_success": 0.00034346403169817753, + "deletion_rate": 0.0023349062738609334, + "deletion_rate_success": 0.0023349062738609334 + } + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6920991032358444, + "f1_success": 0.6920991032358444, + "recall": 0.6781120228241735, + "recall_success": 0.6781120228241735, + "precision": 0.7186293521688591, + "precision_success": 0.7186293521688591, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 9.704703416968173e-05, + "hallucination_rate_success": 9.704703416968173e-05, + "deletion_rate": 0.0015335851160265357, + "deletion_rate_success": 0.0015335851160265357 + } + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "en-de": { + "opus100": { + "meta/meta-llama-3-8b-instruct": {} + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.8215767634854771, + "recall": 0.9183673469387755, + "precision": 0.7432432432432432, + "correct_pairwise": 0, + "hallucination_rate": 0.0007750544784669647, + "deletion_rate": 0.011378698357783119 + } + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5625, + "recall": 0.601113172541744, + "precision": 0.5285481239804242, + "correct_pairwise": 0, + "hallucination_rate": 0.0002909209393255289, + "deletion_rate": 0.0010473153815719041 + } + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.899216487051897, + "f1_success": 0.899216487051897, + "recall": 0.9635731350663478, + "recall_success": 0.9635731350663478, + "precision": 0.879775429531632, + "precision_success": 0.879775429531632, + "correct_pairwise": 0.6133056133056133, + "correct_pairwise_success": 0.6133056133056133, + "hallucination_rate": 0.0006370849056134787, + "hallucination_rate_success": 0.0006370849056134787, + "deletion_rate": 0.009718267983594507, + "deletion_rate_success": 0.009718267983594507 + } + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6767763917877446, + "f1_success": 0.6767763917877446, + "recall": 0.8175586437285662, + "recall_success": 0.8175586437285662, + "precision": 0.6345990341126608, + "precision_success": 0.6345990341126608, + "correct_pairwise": 0.11850311850311851, + "correct_pairwise_success": 0.11850311850311851, + "hallucination_rate": 0.0010736983348593233, + "hallucination_rate_success": 0.0010736983348593233, + "deletion_rate": 0.005756466286959291, + "deletion_rate_success": 0.005756466286959291 + } + } + }, + "eo": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9160261884429263, + "recall": 0.9024116657319126, + "precision": 0.9300578034682081, + "correct_pairwise": 0, + "hallucination_rate": 0.001938438321234356, + "deletion_rate": 0.0005073764733432207 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6732612055641423, + "recall": 0.6107683679192373, + "precision": 0.75, + "correct_pairwise": 0, + "hallucination_rate": 0.0013867551289546314, + "deletion_rate": 0.001332372574877979 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5847194812517621, + "recall": 0.5418916565058353, + "precision": 0.6348979591836734, + "correct_pairwise": 0, + "hallucination_rate": 0.000718930590746265, + "deletion_rate": 0.0020344737203409928 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "es": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9361939258846474, + "recall": 0.9432902863559798, + "precision": 0.9292035398230089, + "correct_pairwise": 0, + "hallucination_rate": 0.0007130080182129767, + "deletion_rate": 0.001225873434822311 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6127272727272728, + "recall": 0.5676586187535093, + "precision": 0.6655694535878868, + "correct_pairwise": 0, + "hallucination_rate": 0.0004050743600789574, + "deletion_rate": 0.001041619783060176 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6390217969165337, + "recall": 0.602539823994653, + "precision": 0.6802062374245473, + "correct_pairwise": 0, + "hallucination_rate": 0.0005896122948201858, + "deletion_rate": 0.0015477322739029878 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9847649918962722, + "recall": 0.9812661498708011, + "precision": 0.9882888744307091, + "correct_pairwise": 0, + "hallucination_rate": 0.00014361058553625988, + "deletion_rate": 0.0005600812835914135 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6862113402061855, + "recall": 0.687984496124031, + "precision": 0.6844473007712082, + "correct_pairwise": 0, + "hallucination_rate": 0.00015439530344191245, + "deletion_rate": 0.000694778865488606 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9832566697332107, + "recall": 0.9691693870148712, + "precision": 0.9977595220313666, + "correct_pairwise": 0, + "hallucination_rate": 0.00024175416824478416, + "deletion_rate": 0.0004861944939145104 + } + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6689213243147027, + "recall": 0.681537903518317, + "precision": 0.6567633694512408, + "correct_pairwise": 0, + "hallucination_rate": 0.00020887900683529067, + "deletion_rate": 0.0008877357790499853 + } + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7038474094376762, + "f1_success": 0.7038474094376762, + "recall": 0.572661175247794, + "recall_success": 0.572661175247794, + "precision": 0.947680383315367, + "precision_success": 0.947680383315367, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.0032343800086468946, + "hallucination_rate_success": 0.0032343800086468946, + "deletion_rate": 0.004975602300297705, + "deletion_rate_success": 0.004975602300297705 + } + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5050869280095259, + "f1_success": 0.5050869280095259, + "recall": 0.4237323792635769, + "recall_success": 0.4237323792635769, + "precision": 0.6682079889661346, + "precision_success": 0.6682079889661346, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.0025679865068117627, + "hallucination_rate_success": 0.0025679865068117627, + "deletion_rate": 0.0035159004128685312, + "deletion_rate_success": 0.0035159004128685312 + } + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6648358514904357, + "f1_success": 0.6648358514904357, + "recall": 0.5125253578959488, + "recall_success": 0.5125253578959488, + "precision": 0.9759027355403542, + "precision_success": 0.9759027355403542, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.0003445138441666999, + "hallucination_rate_success": 0.0003445138441666999, + "deletion_rate": 0.0026756747255556115, + "deletion_rate_success": 0.0026756747255556115 + } + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5587316066381027, + "f1_success": 0.5587316066381027, + "recall": 0.4307246018227942, + "recall_success": 0.4307246018227942, + "precision": 0.8509224060340708, + "precision_success": 0.8509224060340708, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.0001512091733658365, + "hallucination_rate_success": 0.0001512091733658365, + "deletion_rate": 0.0011083481325874674, + "deletion_rate_success": 0.0011083481325874674 + } + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "es-en": { + "opus100": { + "meta/meta-llama-3-8b-instruct": {} + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9283842794759825, + "recall": 0.8858333333333334, + "precision": 0.9752293577981651, + "correct_pairwise": 0, + "hallucination_rate": 0.004409064917085503, + "deletion_rate": 0.019306588015770308 + } + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.47916666666666674, + "recall": 0.44083333333333335, + "precision": 0.5248015873015873, + "correct_pairwise": 0, + "hallucination_rate": 0.0008762459121563473, + "deletion_rate": 0.0022062620288222316 + } + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "et": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.8901767603593163, + "recall": 0.862436833239753, + "precision": 0.9197604790419162, + "correct_pairwise": 0, + "hallucination_rate": 0.00196043047444058, + "deletion_rate": 0.0017307566113262025 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.4031238378579397, + "recall": 0.3043234138124649, + "precision": 0.5969162995594713, + "correct_pairwise": 0, + "hallucination_rate": 0.00033169470479171273, + "deletion_rate": 0.001871098334722482 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5315292315547613, + "recall": 0.46266666666666667, + "precision": 0.6244751049790042, + "correct_pairwise": 0, + "hallucination_rate": 0.00045954936726225177, + "deletion_rate": 0.001642031619740046 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9408823004107875, + "recall": 0.9107883817427386, + "precision": 0.9730328777244182, + "correct_pairwise": 0, + "hallucination_rate": 0.0003315393727146315, + "deletion_rate": 0.000756424782407169 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.4788445890968267, + "recall": 0.406984785615491, + "precision": 0.5815217391304348, + "correct_pairwise": 0, + "hallucination_rate": 0.0003968621433201487, + "deletion_rate": 0.0011740505073221065 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9700226244343891, + "recall": 0.9449035812672176, + "precision": 0.9965136548518303, + "correct_pairwise": 0, + "hallucination_rate": 0.00020309569696393538, + "deletion_rate": 0.0018365036427589903 + } + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.4982720703738612, + "recall": 0.4369146005509642, + "precision": 0.5796783625730995, + "correct_pairwise": 0, + "hallucination_rate": 0.0003808511580532306, + "deletion_rate": 0.0008502723528630265 + } + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9177388767782068, + "f1_success": 0.9177388767782068, + "recall": 0.892944203263104, + "recall_success": 0.892944203263104, + "precision": 0.9658964735319413, + "precision_success": 0.9658964735319413, + "correct_pairwise": 0.5467980295566502, + "correct_pairwise_success": 0.5467980295566502, + "hallucination_rate": 0.0010983809387897269, + "hallucination_rate_success": 0.0010983809387897269, + "deletion_rate": 0.003637372325083711, + "deletion_rate_success": 0.003637372325083711 + } + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5669393084451254, + "f1_success": 0.5669393084451254, + "recall": 0.5748643633755122, + "recall_success": 0.5748643633755122, + "precision": 0.6291463544665514, + "precision_success": 0.6291463544665514, + "correct_pairwise": 0.054187192118226604, + "correct_pairwise_success": 0.054187192118226604, + "hallucination_rate": 0.0007806303170134423, + "hallucination_rate_success": 0.0007806303170134423, + "deletion_rate": 0.002662472479524569, + "deletion_rate_success": 0.002662472479524569 + } + } + }, + "eu": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.845185835528241, + "recall": 0.8107804604154969, + "precision": 0.882640586797066, + "correct_pairwise": 0, + "hallucination_rate": 0.0007596859964547987, + "deletion_rate": 0.00090119613304932 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.30510846745976206, + "recall": 0.24480628860190903, + "precision": 0.40482822655524603, + "correct_pairwise": 0, + "hallucination_rate": 0.0024132799790283657, + "deletion_rate": 0.0016576843306424875 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.45005813338970513, + "recall": 0.39779521674140506, + "precision": 0.5181309321002677, + "correct_pairwise": 0, + "hallucination_rate": 0.0006467987920474973, + "deletion_rate": 0.002865987750969083 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9733671528218135, + "recall": 0.9481161210623842, + "precision": 1.0, + "correct_pairwise": 0, + "hallucination_rate": 0.0003349914355963164, + "deletion_rate": 0.005284015852047556 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.44532090354965936, + "recall": 0.3835701050030883, + "precision": 0.5307692307692308, + "correct_pairwise": 0, + "hallucination_rate": 0.00015585630049094734, + "deletion_rate": 0.0009221497779047718 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "fa": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6041131105398457, + "recall": 0.5233853006681515, + "precision": 0.7142857142857143, + "correct_pairwise": 0, + "hallucination_rate": 0.0024784493399030343, + "deletion_rate": 0.013399425315730748 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5576255131038838, + "recall": 0.49192200557103066, + "precision": 0.6435860058309038, + "correct_pairwise": 0, + "hallucination_rate": 0.002079905628162543, + "deletion_rate": 0.0013141692277444923 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6260381465146916, + "recall": 0.6072222222222222, + "precision": 0.6460574535997162, + "correct_pairwise": 0, + "hallucination_rate": 0.0020284655373087983, + "deletion_rate": 0.004221129551481249 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9973231357552582, + "recall": 0.9961802902979373, + "precision": 0.998468606431853, + "correct_pairwise": 0, + "hallucination_rate": 0.0008964311390000798, + "deletion_rate": 0.005857866848911413 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.8969877277798438, + "recall": 0.9213139801375095, + "precision": 0.8739130434782608, + "correct_pairwise": 0, + "hallucination_rate": 0.0005882459411030064, + "deletion_rate": 0.0005429962533258521 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "fi": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9392510402219142, + "recall": 0.9458100558659218, + "precision": 0.9327823691460055, + "correct_pairwise": 0, + "hallucination_rate": 0.001235503889029287, + "deletion_rate": 0.003903069103978884 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5522292993630573, + "recall": 0.48435754189944136, + "precision": 0.6422222222222222, + "correct_pairwise": 0, + "hallucination_rate": 0.0004552102199537042, + "deletion_rate": 0.001840211527472421 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5594363117293324, + "recall": 0.5116666666666667, + "precision": 0.6170440841484658, + "correct_pairwise": 0, + "hallucination_rate": 0.0003240961431208568, + "deletion_rate": 0.001831143208632841 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9585185185185185, + "recall": 0.9249463902787706, + "precision": 0.994619523443505, + "correct_pairwise": 0, + "hallucination_rate": 6.608773808107643e-05, + "deletion_rate": 0.0024584638566160434 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6340014847809948, + "recall": 0.6104360257326662, + "precision": 0.6594594594594595, + "correct_pairwise": 0, + "hallucination_rate": 0.00011475088931939223, + "deletion_rate": 0.0013905107764585175 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9672977624784854, + "recall": 0.9387527839643652, + "precision": 0.9976331360946745, + "correct_pairwise": 0, + "hallucination_rate": 0.00017692093242692629, + "deletion_rate": 0.007934635757328815 + } + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6542688081149619, + "recall": 0.6464365256124721, + "precision": 0.6622932116371933, + "correct_pairwise": 0, + "hallucination_rate": 7.644550254727336e-05, + "deletion_rate": 0.0040516116350054875 + } + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "fr": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.913826544749238, + "recall": 0.9295377677564826, + "precision": 0.8986376021798365, + "correct_pairwise": 0, + "hallucination_rate": 0.001064520168956998, + "deletion_rate": 0.0030797080823836143 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6445182724252492, + "recall": 0.6014656144306652, + "precision": 0.6942094990240729, + "correct_pairwise": 0, + "hallucination_rate": 0.0006088957324605828, + "deletion_rate": 0.0012821938981621888 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6392740969012155, + "recall": 0.6223333333333333, + "precision": 0.6571629707849349, + "correct_pairwise": 0, + "hallucination_rate": 0.00045086540208111683, + "deletion_rate": 0.003201468718374549 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9906542056074765, + "recall": 0.9919786096256684, + "precision": 0.9893333333333333, + "correct_pairwise": 0, + "hallucination_rate": 0.00020143015409406788, + "deletion_rate": 0.0013898680632490684 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7225806451612905, + "recall": 0.7486631016042781, + "precision": 0.6982543640897756, + "correct_pairwise": 0, + "hallucination_rate": 0.0001654978381844887, + "deletion_rate": 0.00028962121682285524 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9789972899728997, + "recall": 0.9678499665103818, + "precision": 0.9904043865661412, + "correct_pairwise": 0, + "hallucination_rate": 0.00013832644086067666, + "deletion_rate": 0.00044359858620837683 + } + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7324777887462982, + "recall": 0.7454789015405224, + "precision": 0.7199223803363519, + "correct_pairwise": 0, + "hallucination_rate": 0.00031709637290533454, + "deletion_rate": 0.0012439934629363124 + } + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.8553410784360195, + "f1_success": 0.8553410784360195, + "recall": 0.7694855829254675, + "recall_success": 0.7694855829254675, + "precision": 0.970478717878179, + "precision_success": 0.970478717878179, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.00033991571476978106, + "hallucination_rate_success": 0.00033991571476978106, + "deletion_rate": 0.001339102530848083, + "deletion_rate_success": 0.001339102530848083 + } + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6003577768746724, + "f1_success": 0.6003577768746724, + "recall": 0.5640650692160706, + "recall_success": 0.5640650692160706, + "precision": 0.6648582717345891, + "precision_success": 0.6648582717345891, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.000776263637572764, + "hallucination_rate_success": 0.000776263637572764, + "deletion_rate": 0.00158901978103394, + "deletion_rate_success": 0.00158901978103394 + } + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.527317401532291, + "f1_success": 0.527317401532291, + "recall": 0.4571205144402872, + "recall_success": 0.4571205144402872, + "precision": 0.6582475385042649, + "precision_success": 0.6582475385042649, + "correct_pairwise": 0.004357298474945534, + "correct_pairwise_success": 0.004357298474945534, + "hallucination_rate": 4.474804666844771e-05, + "hallucination_rate_success": 4.474804666844771e-05, + "deletion_rate": 0.0022215015812996316, + "deletion_rate_success": 0.0022215015812996316 + } + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.4070258776069714, + "f1_success": 0.4070258776069714, + "recall": 0.3828537910548782, + "recall_success": 0.3828537910548782, + "precision": 0.4754422480932415, + "precision_success": 0.4754422480932415, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.0004020142784319656, + "hallucination_rate_success": 0.0004020142784319656, + "deletion_rate": 0.0027224235449210136, + "deletion_rate_success": 0.0027224235449210136 + } + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "fy": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.4239359460598399, + "recall": 0.29994036970781157, + "precision": 0.7227011494252874, + "correct_pairwise": 0, + "hallucination_rate": 0.0011092507325240687, + "deletion_rate": 0.007325240686479699 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.2748299319727891, + "recall": 0.1806797853309481, + "precision": 0.5738636363636364, + "correct_pairwise": 0, + "hallucination_rate": 0.002926019739715259, + "deletion_rate": 0.002467464407371823 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "ga": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7130919220055709, + "recall": 0.5739910313901345, + "precision": 0.9411764705882353, + "correct_pairwise": 0, + "hallucination_rate": 0.00024294251979981537, + "deletion_rate": 0.0013078405649223394 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.25895765472312704, + "recall": 0.17825112107623317, + "precision": 0.4732142857142857, + "correct_pairwise": 0, + "hallucination_rate": 0.00016895441939431902, + "deletion_rate": 0.004800778014497113 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.08888888888888888, + "recall": 0.04878048780487805, + "precision": 0.5, + "correct_pairwise": 0, + "hallucination_rate": 0.0, + "deletion_rate": 0.00041339396444811904 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9453681710213776, + "recall": 0.9754901960784313, + "precision": 0.9170506912442397, + "correct_pairwise": 0, + "hallucination_rate": 0.000334467900918803, + "deletion_rate": 0.0009443799555354438 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.41254125412541254, + "recall": 0.3078817733990148, + "precision": 0.625, + "correct_pairwise": 0, + "hallucination_rate": 0.023976240116439163, + "deletion_rate": 0.0013178081114039574 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "gd": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.627906976744186, + "recall": 0.5277777777777778, + "precision": 0.7749244712990937, + "correct_pairwise": 0, + "hallucination_rate": 0.0007763831635765384, + "deletion_rate": 0.0028097676396103295 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.17031630170316303, + "recall": 0.10802469135802469, + "precision": 0.40229885057471265, + "correct_pairwise": 0, + "hallucination_rate": 0.01584279076852769, + "deletion_rate": 0.0011996343971361109 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6759847522236341, + "recall": 0.5428571428571428, + "precision": 0.8956228956228957, + "correct_pairwise": 0, + "hallucination_rate": 0.0004653868528214078, + "deletion_rate": 0.0031607523754120614 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.2971768202080238, + "recall": 0.20449897750511248, + "precision": 0.5434782608695652, + "correct_pairwise": 0, + "hallucination_rate": 0.00020222446916076846, + "deletion_rate": 0.0008695652173913044 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "gl": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9075208913649025, + "recall": 0.9131165919282511, + "precision": 0.9019933554817275, + "correct_pairwise": 0, + "hallucination_rate": 0.002477147442606936, + "deletion_rate": 0.0011746098202032888 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5104712041884817, + "recall": 0.437219730941704, + "precision": 0.6132075471698113, + "correct_pairwise": 0, + "hallucination_rate": 0.0014266030995086145, + "deletion_rate": 0.0013290575884311025 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6155502392344498, + "recall": 0.5721592172559484, + "precision": 0.6660626456122185, + "correct_pairwise": 0, + "hallucination_rate": 0.0007494580365438216, + "deletion_rate": 0.0016636729637658717 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9459854014598541, + "recall": 0.9, + "precision": 0.9969230769230769, + "correct_pairwise": 0, + "hallucination_rate": 7.891725525786213e-05, + "deletion_rate": 0.0006510673558773626 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.600297176820208, + "recall": 0.5611111111111111, + "precision": 0.645367412140575, + "correct_pairwise": 0, + "hallucination_rate": 0.0012493702770780856, + "deletion_rate": 0.0011889168765743072 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "gu": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.3299425033171163, + "recall": 0.21449108683151236, + "precision": 0.7145593869731801, + "correct_pairwise": 0, + "hallucination_rate": 0.0014037613605687033, + "deletion_rate": 0.0021776298029335013 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.18889374726716224, + "recall": 0.1242093156986774, + "precision": 0.39416058394160586, + "correct_pairwise": 0, + "hallucination_rate": 0.0027160542423586374, + "deletion_rate": 0.006022555059143065 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.20436074211086822, + "recall": 0.2560033703131583, + "precision": 0.17005597014925372, + "correct_pairwise": 0, + "hallucination_rate": 0.01252931271768297, + "deletion_rate": 0.026919262203701284 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9313501144164761, + "recall": 0.888646288209607, + "precision": 0.9783653846153846, + "correct_pairwise": 0, + "hallucination_rate": 0.0005028133604692925, + "deletion_rate": 0.0012211181611397103 + } + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.34437751004016065, + "recall": 0.37445414847161573, + "precision": 0.3187732342007435, + "correct_pairwise": 0, + "hallucination_rate": 0.002730253505313788, + "deletion_rate": 0.002947142802464883 + } + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "ha": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.8811225840614244, + "recall": 0.924958310172318, + "precision": 0.8412537917087968, + "correct_pairwise": 0, + "hallucination_rate": 0.016394449848958065, + "deletion_rate": 0.0007987302237468639 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.09465791940018745, + "recall": 0.05614230127848805, + "precision": 0.30149253731343284, + "correct_pairwise": 0, + "hallucination_rate": 0.04642297758461523, + "deletion_rate": 0.0009387285155642225 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.0, + "recall": 0.0, + "precision": 0.0, + "correct_pairwise": 0, + "hallucination_rate": 0.0, + "deletion_rate": 0.003134796238244514 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "he": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9163168205989366, + "recall": 0.9114699331848553, + "precision": 0.9212155317951604, + "correct_pairwise": 0, + "hallucination_rate": 0.001414075489876152, + "deletion_rate": 0.002159961462558078 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.3682140047206923, + "recall": 0.26057906458797325, + "precision": 0.6273458445040214, + "correct_pairwise": 0, + "hallucination_rate": 0.0005300031468936846, + "deletion_rate": 0.0008281299170213823 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.36192316984778933, + "recall": 0.24966666666666668, + "precision": 0.6575943810359964, + "correct_pairwise": 0, + "hallucination_rate": 0.0011433670365992219, + "deletion_rate": 0.005221902149587412 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.933933933933934, + "recall": 0.8810198300283286, + "precision": 0.9936102236421726, + "correct_pairwise": 0, + "hallucination_rate": 0.000482809442736259, + "deletion_rate": 7.62330699057251e-05 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.46460980036297644, + "recall": 0.3626062322946176, + "precision": 0.6464646464646465, + "correct_pairwise": 0, + "hallucination_rate": 0.00018458942038921997, + "deletion_rate": 0.0037708981593797797 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "hi": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5956072351421188, + "recall": 0.5191441441441441, + "precision": 0.6984848484848485, + "correct_pairwise": 0, + "hallucination_rate": 0.0012132650310056618, + "deletion_rate": 0.003483702515928538 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.2850609756097561, + "recall": 0.21058558558558557, + "precision": 0.4410377358490566, + "correct_pairwise": 0, + "hallucination_rate": 0.0009984087859973168, + "deletion_rate": 0.0021840192193691307 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.38700206845933144, + "recall": 0.32222222222222224, + "precision": 0.4843828294638383, + "correct_pairwise": 0, + "hallucination_rate": 0.0017145778441936372, + "deletion_rate": 0.0037503113243409756 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9980184940554822, + "recall": 0.9973597359735974, + "precision": 0.998678122934567, + "correct_pairwise": 0, + "hallucination_rate": 0.00013555406249631647, + "deletion_rate": 0.0017445218477786814 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6901899961225281, + "recall": 0.5874587458745875, + "precision": 0.8364661654135338, + "correct_pairwise": 0, + "hallucination_rate": 0.0008230929001806946, + "deletion_rate": 0.0005144330626129342 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9732884399551066, + "recall": 0.9559082892416225, + "precision": 0.9913122999542753, + "correct_pairwise": 0, + "hallucination_rate": 0.0004920712492206063, + "deletion_rate": 0.004341012116411924 + } + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5619072032812099, + "recall": 0.48324514991181655, + "precision": 0.6711573790569504, + "correct_pairwise": 0, + "hallucination_rate": 0.006350697203959251, + "deletion_rate": 0.008771042554728705 + } + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "hu": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9417288041977354, + "recall": 0.9541130386121992, + "precision": 0.9296619411123228, + "correct_pairwise": 0, + "hallucination_rate": 0.0023814270840256087, + "deletion_rate": 0.002182051793269976 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.49277357192016513, + "recall": 0.40067151650811417, + "precision": 0.6398570151921358, + "correct_pairwise": 0, + "hallucination_rate": 0.0007423043911944142, + "deletion_rate": 0.0022269131735832425 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.560603204524034, + "recall": 0.49588706091596263, + "precision": 0.6447463506287036, + "correct_pairwise": 0, + "hallucination_rate": 0.0005105612359764821, + "deletion_rate": 0.001400045027810209 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9813200498132005, + "recall": 0.9752475247524752, + "precision": 0.9874686716791979, + "correct_pairwise": 0, + "hallucination_rate": 0.00020885547201336674, + "deletion_rate": 0.001163623344074472 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5178571428571429, + "recall": 0.5024752475247525, + "precision": 0.5342105263157895, + "correct_pairwise": 0, + "hallucination_rate": 0.00010706474357993912, + "deletion_rate": 0.0012388920328535813 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "hy": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7308904294588997, + "recall": 0.642246835443038, + "precision": 0.8479214539377481, + "correct_pairwise": 0, + "hallucination_rate": 0.0028232756790720977, + "deletion_rate": 0.009476017016073566 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.47684809098294073, + "recall": 0.3718131433095804, + "precision": 0.6645909991508633, + "correct_pairwise": 0, + "hallucination_rate": 0.0024743070130998045, + "deletion_rate": 0.005581891872331186 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5163462715807519, + "recall": 0.46860762306922993, + "precision": 0.5749147920927062, + "correct_pairwise": 0, + "hallucination_rate": 0.004745547874495827, + "deletion_rate": 0.017543510976701766 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.920353982300885, + "recall": 0.874766355140187, + "precision": 0.970954356846473, + "correct_pairwise": 0, + "hallucination_rate": 0.003113385929451653, + "deletion_rate": 0.015240920649409923 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.48088531187122735, + "recall": 0.44672897196261685, + "precision": 0.5206971677559913, + "correct_pairwise": 0, + "hallucination_rate": 0.011914098349713829, + "deletion_rate": 0.02399506082197267 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "id": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9226425748164879, + "recall": 0.9289368959636157, + "precision": 0.9164329781267526, + "correct_pairwise": 0, + "hallucination_rate": 0.0017840069028240947, + "deletion_rate": 0.0036146545089899957 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.49217638691322896, + "recall": 0.39340534394542354, + "precision": 0.6571699905033238, + "correct_pairwise": 0, + "hallucination_rate": 0.0006117255554468044, + "deletion_rate": 0.0015660174219438191 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5597564070032988, + "recall": 0.4903311847077128, + "precision": 0.6520839491575525, + "correct_pairwise": 0, + "hallucination_rate": 0.00042714006882208703, + "deletion_rate": 0.001757669962345433 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9933184855233853, + "recall": 0.9911111111111112, + "precision": 0.9955357142857143, + "correct_pairwise": 0, + "hallucination_rate": 5.8395134851050695e-05, + "deletion_rate": 0.0013597724258173234 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5977011494252873, + "recall": 0.5488888888888889, + "precision": 0.6560424966799469, + "correct_pairwise": 0, + "hallucination_rate": 0.00026475134724274283, + "deletion_rate": 0.0010504650229308829 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "ig": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.3934262948207171, + "recall": 0.265993265993266, + "precision": 0.7552581261950286, + "correct_pairwise": 0, + "hallucination_rate": 0.0016271459129385524, + "deletion_rate": 0.0013529078377241897 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.10059171597633136, + "recall": 0.05723905723905724, + "precision": 0.4146341463414634, + "correct_pairwise": 0, + "hallucination_rate": 0.011475159430251652, + "deletion_rate": 0.0012410738152518425 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.07476635514018691, + "recall": 0.043010752688172046, + "precision": 0.2857142857142857, + "correct_pairwise": 0, + "hallucination_rate": 0.0008718395815170009, + "deletion_rate": 0.0007265329845975008 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "is": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9509831071725284, + "recall": 0.9592178770949721, + "precision": 0.942888522789676, + "correct_pairwise": 0, + "hallucination_rate": 0.0029146643159780475, + "deletion_rate": 0.0009525976057098985 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.21837549933422104, + "recall": 0.13743016759776536, + "precision": 0.531317494600432, + "correct_pairwise": 0, + "hallucination_rate": 0.0009750044318383265, + "deletion_rate": 0.0022454647521125094 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.39283986453797776, + "recall": 0.28692579505300353, + "precision": 0.6226993865030674, + "correct_pairwise": 0, + "hallucination_rate": 0.0004977834548050192, + "deletion_rate": 0.002141408069727252 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.941378939442831, + "recall": 0.9429002370178841, + "precision": 0.9398625429553265, + "correct_pairwise": 0, + "hallucination_rate": 0.001423227244887618, + "deletion_rate": 0.0003965648669965499 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.33088451366441374, + "recall": 0.24262012497306615, + "precision": 0.5200923787528868, + "correct_pairwise": 0, + "hallucination_rate": 0.0029483977765983518, + "deletion_rate": 0.0012614511650005187 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "it": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9069767441860465, + "recall": 0.9400224215246636, + "precision": 0.8761755485893417, + "correct_pairwise": 0, + "hallucination_rate": 0.0012556641371403614, + "deletion_rate": 0.0023543702571381777 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.571944611679711, + "recall": 0.5325112107623319, + "precision": 0.6176853055916776, + "correct_pairwise": 0, + "hallucination_rate": 0.00083307446838553, + "deletion_rate": 0.0014825901556013669 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6495649733370755, + "recall": 0.643532421310199, + "precision": 0.6557116953762466, + "correct_pairwise": 0, + "hallucination_rate": 0.0008727159478090298, + "deletion_rate": 0.0017675112604760776 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9812206572769954, + "recall": 0.9653579676674365, + "precision": 0.9976133651551312, + "correct_pairwise": 0, + "hallucination_rate": 0.0003371607320134115, + "deletion_rate": 0.0006181280086912544 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7466666666666667, + "recall": 0.7759815242494227, + "precision": 0.7194860813704497, + "correct_pairwise": 0, + "hallucination_rate": 0.00036408929769090736, + "deletion_rate": 0.00021078854076842004 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.8109522899348085, + "f1_success": 0.8109522899348085, + "recall": 0.7150370743338387, + "recall_success": 0.7150370743338387, + "precision": 0.9418977180525319, + "precision_success": 0.9418977180525319, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.0001023505184993108, + "hallucination_rate_success": 0.0001023505184993108, + "deletion_rate": 0.01739265249266973, + "deletion_rate_success": 0.01739265249266973 + } + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5416550831347876, + "f1_success": 0.5416550831347876, + "recall": 0.49815401743211746, + "recall_success": 0.49815401743211746, + "precision": 0.6205911086720479, + "precision_success": 0.6205911086720479, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.0002710895721389426, + "hallucination_rate_success": 0.0002710895721389426, + "deletion_rate": 0.016814819973430328, + "deletion_rate_success": 0.016814819973430328 + } + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7716122896902438, + "f1_success": 0.7716122896902438, + "recall": 0.7921993863932787, + "recall_success": 0.7921993863932787, + "precision": 0.8165279007608551, + "precision_success": 0.8165279007608551, + "correct_pairwise": 0.4090909090909091, + "correct_pairwise_success": 0.4090909090909091, + "hallucination_rate": 0.0005535752225670821, + "hallucination_rate_success": 0.0005535752225670821, + "deletion_rate": 0.0010131069344531485, + "deletion_rate_success": 0.0010131069344531485 + } + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.3560013937067671, + "f1_success": 0.3560013937067671, + "recall": 0.41209671602072134, + "recall_success": 0.41209671602072134, + "precision": 0.35954455851264, + "precision_success": 0.35954455851264, + "correct_pairwise": 0.014204545454545454, + "correct_pairwise_success": 0.014204545454545454, + "hallucination_rate": 0.0007064752561380622, + "hallucination_rate_success": 0.0007064752561380622, + "deletion_rate": 0.001696570921862626, + "deletion_rate_success": 0.001696570921862626 + } + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "ja": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.09034653465346536, + "recall": 0.08147321428571429, + "precision": 0.10138888888888889, + "correct_pairwise": 0, + "hallucination_rate": 0.0023639264818864133, + "deletion_rate": 0.004609656639678506 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.07129798903107862, + "recall": 0.06529017857142858, + "precision": 0.07852348993288591, + "correct_pairwise": 0, + "hallucination_rate": 0.0015159014973394381, + "deletion_rate": 0.002660561811656973 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.03668763102725367, + "recall": 0.04278253139237693, + "precision": 0.032112770039202605, + "correct_pairwise": 0, + "hallucination_rate": 0.0009405619857865075, + "deletion_rate": 0.005878512411165672 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9791231732776617, + "recall": 0.9610655737704918, + "precision": 0.997872340425532, + "correct_pairwise": 0, + "hallucination_rate": 9.1441111923921e-05, + "deletion_rate": 0.000182882223847842 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6905027932960894, + "recall": 0.6331967213114754, + "precision": 0.7592137592137592, + "correct_pairwise": 0, + "hallucination_rate": 0.0, + "deletion_rate": 9.718172983479106e-05 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.8711162255466053, + "recall": 0.7852697095435685, + "precision": 0.9780361757105943, + "correct_pairwise": 0, + "hallucination_rate": 7.736046106834796e-05, + "deletion_rate": 0.007407264147294318 + } + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.43542857142857144, + "recall": 0.39522821576763484, + "precision": 0.4847328244274809, + "correct_pairwise": 0, + "hallucination_rate": 0.00042194983016519334, + "deletion_rate": 0.0014346294225616575 + } + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "jv": { + "opus100": { + "meta/meta-llama-3-8b-instruct": {} + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9905607995558023, + "recall": 0.9911111111111112, + "precision": 0.9900110987791343, + "correct_pairwise": 0, + "hallucination_rate": 0.00025409409104191284, + "deletion_rate": 0.0002667987955940085 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.22628951747088186, + "recall": 0.1511111111111111, + "precision": 0.4503311258278146, + "correct_pairwise": 0, + "hallucination_rate": 9.187557422233889e-05, + "deletion_rate": 0.0004987531172069825 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "ka": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.8918535339199545, + "recall": 0.8727777777777778, + "precision": 0.9117817759721416, + "correct_pairwise": 0, + "hallucination_rate": 0.006004275772140767, + "deletion_rate": 0.002350158446166209 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.06766553890768487, + "recall": 0.03888888888888889, + "precision": 0.26022304832713755, + "correct_pairwise": 0, + "hallucination_rate": 0.007268750804065354, + "deletion_rate": 0.003296667953171234 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.38871071199486845, + "recall": 0.303, + "precision": 0.5420393559928444, + "correct_pairwise": 0, + "hallucination_rate": 0.0034512069340421796, + "deletion_rate": 0.014230414575070146 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "kk": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5639491398653702, + "recall": 0.4323394495412844, + "precision": 0.810752688172043, + "correct_pairwise": 0, + "hallucination_rate": 0.001668335001668335, + "deletion_rate": 0.0025233566900233566 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.3194860813704497, + "recall": 0.21387614678899083, + "precision": 0.6311336717428088, + "correct_pairwise": 0, + "hallucination_rate": 0.0020760943202430123, + "deletion_rate": 0.0012238029677221968 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5075721722669191, + "recall": 0.40787221905305193, + "precision": 0.6717820231756968, + "correct_pairwise": 0, + "hallucination_rate": 0.0005099047629491137, + "deletion_rate": 0.0004084720950506341 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9850107066381157, + "recall": 0.9766454352441614, + "precision": 0.9935205183585313, + "correct_pairwise": 0, + "hallucination_rate": 0.0010894706848580335, + "deletion_rate": 0.00010056652475612618 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.699439950217797, + "recall": 0.5966029723991507, + "precision": 0.8451127819548873, + "correct_pairwise": 0, + "hallucination_rate": 0.0004886050326318361, + "deletion_rate": 0.0004013541339475797 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9899441340782122, + "recall": 0.9833518312985572, + "precision": 0.9966254218222722, + "correct_pairwise": 0, + "hallucination_rate": 0.000479611796569365, + "deletion_rate": 0.0093853445681613 + } + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5452035886818496, + "recall": 0.4384017758046615, + "precision": 0.7208029197080292, + "correct_pairwise": 0, + "hallucination_rate": 0.0009395674115402125, + "deletion_rate": 0.00453317060413216 + } + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "km": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.09876543209876543, + "recall": 0.07331042382588775, + "precision": 0.15130023640661938, + "correct_pairwise": 0, + "hallucination_rate": 0.0003661784287616511, + "deletion_rate": 0.01217265867731913 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.054858934169279, + "recall": 0.04009163802978236, + "precision": 0.08684863523573201, + "correct_pairwise": 0, + "hallucination_rate": 0.0076979127491538174, + "deletion_rate": 0.007991726212861977 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.05322128851540617, + "recall": 0.03966597077244259, + "precision": 0.08085106382978724, + "correct_pairwise": 0, + "hallucination_rate": 2.1938484489491466e-05, + "deletion_rate": 0.006603483831336931 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.8561132561132562, + "recall": 0.7829566854990584, + "precision": 0.9443498012492901, + "correct_pairwise": 0, + "hallucination_rate": 8.596530440314289e-06, + "deletion_rate": 0.0013539535443495006 + } + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.01423246357167062, + "recall": 0.009887005649717515, + "precision": 0.02539298669891173, + "correct_pairwise": 0, + "hallucination_rate": 0.007705961297025846, + "deletion_rate": 0.0035282912680202607 + } + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "kn": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.2670509125840538, + "recall": 0.1705521472392638, + "precision": 0.6150442477876106, + "correct_pairwise": 0, + "hallucination_rate": 0.0020904209533959095, + "deletion_rate": 0.0020494323072508913 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.16281407035175877, + "recall": 0.09938650306748466, + "precision": 0.45, + "correct_pairwise": 0, + "hallucination_rate": 0.0023191703496258697, + "deletion_rate": 0.005032162079376887 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.15612802498048403, + "recall": 0.09737098344693282, + "precision": 0.3937007874015748, + "correct_pairwise": 0, + "hallucination_rate": 0.008814842689838414, + "deletion_rate": 0.01830248708562827 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "ko": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7032339885859227, + "recall": 0.6230337078651685, + "precision": 0.8071324599708879, + "correct_pairwise": 0, + "hallucination_rate": 0.012691874805431165, + "deletion_rate": 0.005843051797217366 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6806060606060607, + "recall": 0.6308988764044944, + "precision": 0.7388157894736842, + "correct_pairwise": 0, + "hallucination_rate": 0.004466098254161592, + "deletion_rate": 0.0018016646366220057 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7611667308432808, + "recall": 0.8785555555555555, + "precision": 0.6714504076086957, + "correct_pairwise": 0, + "hallucination_rate": 0.0015802867632070574, + "deletion_rate": 0.0011684035110945798 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9987843423292, + "recall": 0.9980563654033042, + "precision": 0.9995133819951338, + "correct_pairwise": 0, + "hallucination_rate": 0.009483319436681664, + "deletion_rate": 0.00047645662870284683 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9639684106614018, + "recall": 0.9489795918367347, + "precision": 0.9794383149448345, + "correct_pairwise": 0, + "hallucination_rate": 0.00551226002661091, + "deletion_rate": 0.0009408857631628968 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "ku": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.41868365180467093, + "recall": 0.2848064702484113, + "precision": 0.7900641025641025, + "correct_pairwise": 0, + "hallucination_rate": 0.000744464954057334, + "deletion_rate": 0.002233394862172002 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.31154014918824047, + "recall": 0.2050837666088966, + "precision": 0.6478102189781022, + "correct_pairwise": 0, + "hallucination_rate": 0.0005150900356358208, + "deletion_rate": 0.0012614449852305816 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.33285489713621763, + "recall": 0.27055555555555555, + "precision": 0.4324276327472918, + "correct_pairwise": 0, + "hallucination_rate": 0.0012652651591683697, + "deletion_rate": 0.0034060584782150266 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "ky": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5830099180681327, + "recall": 0.4470899470899471, + "precision": 0.8376703841387856, + "correct_pairwise": 0, + "hallucination_rate": 0.02196736865988738, + "deletion_rate": 0.003114622223138962 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.33447098976109213, + "recall": 0.22685185185185186, + "precision": 0.6363636363636364, + "correct_pairwise": 0, + "hallucination_rate": 0.008431813713711527, + "deletion_rate": 0.002337316236702418 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.4110091743119266, + "recall": 0.3035230352303523, + "precision": 0.6363636363636364, + "correct_pairwise": 0, + "hallucination_rate": 0.0, + "deletion_rate": 0.0014529972291680746 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "la": { + "opus100": { + "meta/meta-llama-3-8b-instruct": {} + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.33333333333333337, + "recall": 0.2, + "precision": 1.0, + "correct_pairwise": 0, + "hallucination_rate": 0.0, + "deletion_rate": 0.0 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9001390820584144, + "recall": 0.8560846560846561, + "precision": 0.9489736070381232, + "correct_pairwise": 0, + "hallucination_rate": 0.00023049441051054513, + "deletion_rate": 0.0006569090699550536 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.566246541653858, + "recall": 0.4873015873015873, + "precision": 0.6757153338224505, + "correct_pairwise": 0, + "hallucination_rate": 0.00014185906302088876, + "deletion_rate": 0.0010521213840715916 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "lt": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.827543424317618, + "recall": 0.7477578475336323, + "precision": 0.9263888888888889, + "correct_pairwise": 0, + "hallucination_rate": 0.10835316695605876, + "deletion_rate": 0.0011324038350743215 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.3692857142857142, + "recall": 0.2897982062780269, + "precision": 0.5088582677165354, + "correct_pairwise": 0, + "hallucination_rate": 0.0006795412178480583, + "deletion_rate": 0.00099176285848095 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5218420888639621, + "recall": 0.46553257727373804, + "precision": 0.5936480930100666, + "correct_pairwise": 0, + "hallucination_rate": 0.00044458840640461357, + "deletion_rate": 0.0020400256591023127 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9429787234042553, + "recall": 0.9008130081300812, + "precision": 0.9892857142857143, + "correct_pairwise": 0, + "hallucination_rate": 0.0008429291788966659, + "deletion_rate": 0.002634153684052081 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.37989949748743723, + "recall": 0.3073170731707317, + "precision": 0.49736842105263157, + "correct_pairwise": 0, + "hallucination_rate": 0.0002492483604131292, + "deletion_rate": 0.0014799121399529543 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9493302271403611, + "recall": 0.9055555555555556, + "precision": 0.9975520195838433, + "correct_pairwise": 0, + "hallucination_rate": 9.32625574147619e-05, + "deletion_rate": 0.0001942969946140873 + } + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.4682634730538922, + "recall": 0.43444444444444447, + "precision": 0.5077922077922078, + "correct_pairwise": 0, + "hallucination_rate": 0.00198708791866506, + "deletion_rate": 0.0014843307344245026 + } + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "lv": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.8313554028732043, + "recall": 0.7498591549295774, + "precision": 0.9327259985984583, + "correct_pairwise": 0, + "hallucination_rate": 0.00035163198610019443, + "deletion_rate": 0.001973275969056385 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.384257602862254, + "recall": 0.30253521126760563, + "precision": 0.5264705882352941, + "correct_pairwise": 0, + "hallucination_rate": 0.00013683634373289546, + "deletion_rate": 0.001971298576902025 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.46636252650517257, + "recall": 0.4032222222222222, + "precision": 0.5529483467926253, + "correct_pairwise": 0, + "hallucination_rate": 0.00044371648160219994, + "deletion_rate": 0.0018310152342658683 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9696684693157771, + "recall": 0.9502304147465438, + "precision": 0.9899183869419107, + "correct_pairwise": 0, + "hallucination_rate": 0.0006367472903381732, + "deletion_rate": 0.0002788674264254773 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.46053702196908053, + "recall": 0.3914246196403873, + "precision": 0.5592885375494071, + "correct_pairwise": 0, + "hallucination_rate": 0.0006055625243306371, + "deletion_rate": 0.0014225913269989572 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.987750556792873, + "recall": 0.9774104683195592, + "precision": 0.9983117613956106, + "correct_pairwise": 0, + "hallucination_rate": 0.00014846830201751927, + "deletion_rate": 0.0008413203780992758 + } + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.49305769824128354, + "recall": 0.4402203856749311, + "precision": 0.5603085553997195, + "correct_pairwise": 0, + "hallucination_rate": 0.00021622538316409812, + "deletion_rate": 0.0014330231276365717 + } + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "mg": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.8565284178187405, + "recall": 0.7840269966254219, + "precision": 0.943805010155721, + "correct_pairwise": 0, + "hallucination_rate": 0.00016489110018209712, + "deletion_rate": 0.0007814404312977646 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.0776965265082267, + "recall": 0.047806524184476944, + "precision": 0.2073170731707317, + "correct_pairwise": 0, + "hallucination_rate": 4.108647582621168e-05, + "deletion_rate": 0.0003249566724436742 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.08372093023255814, + "recall": 0.046632124352331605, + "precision": 0.4090909090909091, + "correct_pairwise": 0, + "hallucination_rate": 0.0, + "deletion_rate": 0.0003975465697410268 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "mk": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9409844982322546, + "recall": 0.9611111111111111, + "precision": 0.921683537559936, + "correct_pairwise": 0, + "hallucination_rate": 0.002086478274665154, + "deletion_rate": 0.0012403488360912666 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.4242204496011603, + "recall": 0.325, + "precision": 0.6106471816283925, + "correct_pairwise": 0, + "hallucination_rate": 0.0010546827915946804, + "deletion_rate": 0.00019084736228856122 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5310443102395331, + "recall": 0.434971098265896, + "precision": 0.6815885734192649, + "correct_pairwise": 0, + "hallucination_rate": 0.0026350785295228443, + "deletion_rate": 0.00248991547327462 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "ml": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.8089228059876725, + "recall": 0.7689732142857143, + "precision": 0.853250773993808, + "correct_pairwise": 0, + "hallucination_rate": 0.001774776529662576, + "deletion_rate": 0.005097071618726056 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.23833757421543683, + "recall": 0.15680803571428573, + "precision": 0.49646643109540634, + "correct_pairwise": 0, + "hallucination_rate": 0.0015102203282680465, + "deletion_rate": 0.005947224238450912 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.2517233711363131, + "recall": 0.20793534166054373, + "precision": 0.3188732394366197, + "correct_pairwise": 0, + "hallucination_rate": 0.004813460600472089, + "deletion_rate": 0.04214270201759476 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "mn": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.4934911242603551, + "recall": 0.3316542948038176, + "precision": 0.9637904468412943, + "correct_pairwise": 0, + "hallucination_rate": 0.004045275973394531, + "deletion_rate": 0.0017244285399406175 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.34857382550335575, + "recall": 0.2203659506762132, + "precision": 0.8335005015045135, + "correct_pairwise": 0, + "hallucination_rate": 0.0025090271877655054, + "deletion_rate": 0.0013939039932030586 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.454095826893354, + "recall": 0.3264807200800089, + "precision": 0.7454960669880741, + "correct_pairwise": 0, + "hallucination_rate": 0.002788284650925583, + "deletion_rate": 0.0009258865743411027 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "mr": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.8811315076737888, + "recall": 0.8192501398992725, + "precision": 0.953125, + "correct_pairwise": 0, + "hallucination_rate": 0.0029050451981766207, + "deletion_rate": 0.0014834273352391254 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.22383325781603988, + "recall": 0.13822048125349748, + "precision": 0.5880952380952381, + "correct_pairwise": 0, + "hallucination_rate": 0.0038420818961101056, + "deletion_rate": 0.0022369454595129947 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.1564255617977528, + "recall": 0.099, + "precision": 0.3724916387959866, + "correct_pairwise": 0, + "hallucination_rate": 0.004398239646554448, + "deletion_rate": 0.0011607016560489345 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9, + "recall": 0.8571428571428571, + "precision": 0.9473684210526315, + "correct_pairwise": 0, + "hallucination_rate": 0.006246450880181715, + "deletion_rate": 0.0017035775127768314 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.19999999999999998, + "recall": 0.11904761904761904, + "precision": 0.625, + "correct_pairwise": 0, + "hallucination_rate": 0.0, + "deletion_rate": 0.0 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "ms": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9099360836722835, + "recall": 0.8958810068649885, + "precision": 0.9244391971664699, + "correct_pairwise": 0, + "hallucination_rate": 0.0020508566359038172, + "deletion_rate": 0.002154551634348392 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.4473211075152823, + "recall": 0.35583524027459956, + "precision": 0.6021297192642788, + "correct_pairwise": 0, + "hallucination_rate": 0.0028808370097152913, + "deletion_rate": 0.0016031436079168777 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5786644802769427, + "recall": 0.5251322751322751, + "precision": 0.6443497666869548, + "correct_pairwise": 0, + "hallucination_rate": 0.0006580159503066354, + "deletion_rate": 0.001883805663449282 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "mt": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7880347378578321, + "recall": 0.6897522522522522, + "precision": 0.918979744936234, + "correct_pairwise": 0, + "hallucination_rate": 0.000466743625921017, + "deletion_rate": 0.002761269542662505 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.24327678940835748, + "recall": 0.16554054054054054, + "precision": 0.45865834633385333, + "correct_pairwise": 0, + "hallucination_rate": 0.010646307274976638, + "deletion_rate": 0.011077607569698505 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.3529411764705882, + "recall": 0.2608695652173913, + "precision": 0.5454545454545454, + "correct_pairwise": 0, + "hallucination_rate": 0.394643254056457, + "deletion_rate": 0.00144476550344521 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9435215946843853, + "recall": 0.9141630901287554, + "precision": 0.9748283752860412, + "correct_pairwise": 0, + "hallucination_rate": 0.00018942003030720484, + "deletion_rate": 0.002273040363686458 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.23696682464454977, + "recall": 0.1609442060085837, + "precision": 0.4491017964071856, + "correct_pairwise": 0, + "hallucination_rate": 0.005528467073900197, + "deletion_rate": 0.0010513150501187262 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "my": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.16268717118575474, + "recall": 0.11254199328107503, + "precision": 0.2934306569343066, + "correct_pairwise": 0, + "hallucination_rate": 0.0004758991093888096, + "deletion_rate": 0.004917624130351032 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.09560229445506692, + "recall": 0.06998880179171332, + "precision": 0.15078407720144751, + "correct_pairwise": 0, + "hallucination_rate": 0.00038298168651208135, + "deletion_rate": 0.0074275236172040016 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.060217176702862786, + "recall": 0.05423427428317404, + "precision": 0.06768377253814147, + "correct_pairwise": 0, + "hallucination_rate": 0.010585394866350798, + "deletion_rate": 0.06759549815223378 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "ne": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.3965591397849462, + "recall": 0.2708578143360752, + "precision": 0.7399678972712681, + "correct_pairwise": 0, + "hallucination_rate": 0.0014392078599938594, + "deletion_rate": 0.0050084433527786305 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.4662921348314607, + "recall": 0.34136310223266747, + "precision": 0.7354430379746836, + "correct_pairwise": 0, + "hallucination_rate": 0.0016771488469601676, + "deletion_rate": 0.002056503943296396 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.4781936282090937, + "recall": 0.41492216854535696, + "precision": 0.5642335766423358, + "correct_pairwise": 0, + "hallucination_rate": 0.0006747187558453358, + "deletion_rate": 0.0015632097907703818 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "nl": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9371489703129179, + "recall": 0.9733333333333334, + "precision": 0.9035585353274884, + "correct_pairwise": 0, + "hallucination_rate": 0.0016506653191847734, + "deletion_rate": 0.0019089326820504182 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6601597160603372, + "recall": 0.62, + "precision": 0.7058823529411765, + "correct_pairwise": 0, + "hallucination_rate": 0.0010821251541737451, + "deletion_rate": 0.002955481603872379 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7092548974550468, + "recall": 0.6862701500833797, + "precision": 0.7338326200665716, + "correct_pairwise": 0, + "hallucination_rate": 0.000579727554163397, + "deletion_rate": 0.0025800487545650282 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9595375722543351, + "recall": 0.9291044776119403, + "precision": 0.9920318725099602, + "correct_pairwise": 0, + "hallucination_rate": 0.00016733601070950468, + "deletion_rate": 0.0014755993671656323 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7419056429232191, + "recall": 0.7481343283582089, + "precision": 0.7357798165137615, + "correct_pairwise": 0, + "hallucination_rate": 0.0017362187635642091, + "deletion_rate": 0.0007905996155515595 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "no": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9530864197530864, + "recall": 0.9720201454952434, + "precision": 0.9348762109795479, + "correct_pairwise": 0, + "hallucination_rate": 0.0025087736606954096, + "deletion_rate": 0.0008738425110287381 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6589122917321597, + "recall": 0.5864577504196978, + "precision": 0.7517934002869441, + "correct_pairwise": 0, + "hallucination_rate": 0.0016371198489720067, + "deletion_rate": 0.0018436034335270347 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9647407407407408, + "recall": 0.9329512893982808, + "precision": 0.9987730061349693, + "correct_pairwise": 0, + "hallucination_rate": 0.0002800928663459085, + "deletion_rate": 0.001985547208096551 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6690712353471596, + "recall": 0.6378223495702006, + "precision": 0.7035398230088495, + "correct_pairwise": 0, + "hallucination_rate": 0.0006113909781618785, + "deletion_rate": 0.001706799814035244 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "pa": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.26672777268560954, + "recall": 0.16562322140011382, + "precision": 0.6847058823529412, + "correct_pairwise": 0, + "hallucination_rate": 0.0017854370439372767, + "deletion_rate": 0.005226931635874347 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.20410022779043283, + "recall": 0.1275626423690205, + "precision": 0.510250569476082, + "correct_pairwise": 0, + "hallucination_rate": 0.003639973527465255, + "deletion_rate": 0.011885065078314582 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.3126934984520124, + "recall": 0.2961876832844575, + "precision": 0.33114754098360655, + "correct_pairwise": 0, + "hallucination_rate": 0.0037746621835944936, + "deletion_rate": 0.035462792615618854 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "pl": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9377410468319558, + "recall": 0.9545709478407179, + "precision": 0.9214943151055766, + "correct_pairwise": 0, + "hallucination_rate": 0.0026223113181990574, + "deletion_rate": 0.0013111556590995287 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6049185563717663, + "recall": 0.5311273135165452, + "precision": 0.7025222551928784, + "correct_pairwise": 0, + "hallucination_rate": 0.0017686354470592212, + "deletion_rate": 0.0014870055988013833 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6575523175631108, + "recall": 0.6103751530669042, + "precision": 0.7126332206914479, + "correct_pairwise": 0, + "hallucination_rate": 0.0009519076059944907, + "deletion_rate": 0.0021031822917105415 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9929506545820745, + "recall": 0.9894631209232313, + "precision": 0.9964628600303184, + "correct_pairwise": 0, + "hallucination_rate": 0.0003828855274375769, + "deletion_rate": 0.0002552570182917179 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6704516129032259, + "recall": 0.6517812343201205, + "precision": 0.6902231668437833, + "correct_pairwise": 0, + "hallucination_rate": 0.0017102805699536231, + "deletion_rate": 0.0011436845529137726 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9538106235565821, + "recall": 0.9137168141592921, + "precision": 0.9975845410628019, + "correct_pairwise": 0, + "hallucination_rate": 0.0003203531003061152, + "deletion_rate": 0.00034704919199829144 + } + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6293706293706295, + "recall": 0.5973451327433629, + "precision": 0.6650246305418719, + "correct_pairwise": 0, + "hallucination_rate": 0.0017605794404458917, + "deletion_rate": 0.0008392399405234303 + } + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "ps": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.26078334159643035, + "recall": 0.16274752475247525, + "precision": 0.655860349127182, + "correct_pairwise": 0, + "hallucination_rate": 0.010667123992454125, + "deletion_rate": 0.005213513977019379 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.2870999030067895, + "recall": 0.18316831683168316, + "precision": 0.6636771300448431, + "correct_pairwise": 0, + "hallucination_rate": 0.005817335660267597, + "deletion_rate": 0.0014543339150668994 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5051903114186851, + "recall": 0.44421906693711966, + "precision": 0.5855614973262032, + "correct_pairwise": 0, + "hallucination_rate": 0.0005170023265104693, + "deletion_rate": 0.0005875026437618969 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.963320058687906, + "recall": 0.9368120668569099, + "precision": 0.99137187230371, + "correct_pairwise": 0, + "hallucination_rate": 0.0003563777604260516, + "deletion_rate": 0.0003723947384227281 + } + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6375202405736756, + "recall": 0.5617611088463106, + "precision": 0.7368983957219252, + "correct_pairwise": 0, + "hallucination_rate": 0.0006896834845437005, + "deletion_rate": 0.003694732952912681 + } + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "pt": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9411441144114411, + "recall": 0.9606962380685008, + "precision": 0.9223719676549865, + "correct_pairwise": 0, + "hallucination_rate": 0.001643960945206067, + "deletion_rate": 0.0008577187540205566 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5812869132732359, + "recall": 0.5249859629421674, + "precision": 0.6511142061281338, + "correct_pairwise": 0, + "hallucination_rate": 0.00022132217869552708, + "deletion_rate": 0.000959062774347284 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6615715309290662, + "recall": 0.6156239582175798, + "precision": 0.7149309588333979, + "correct_pairwise": 0, + "hallucination_rate": 0.0005535417527765484, + "deletion_rate": 0.0014631059544754582 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9348813730439172, + "recall": 0.8819047619047619, + "precision": 0.9946294307196563, + "correct_pairwise": 0, + "hallucination_rate": 0.00022847540572809954, + "deletion_rate": 0.0016361787119883256 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6274509803921569, + "recall": 0.5942857142857143, + "precision": 0.6645367412140575, + "correct_pairwise": 0, + "hallucination_rate": 6.0574396716867696e-05, + "deletion_rate": 0.0008253261552673224 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.8115233542617579, + "f1_success": 0.8115233542617579, + "recall": 0.7699378047243919, + "recall_success": 0.7699378047243919, + "precision": 0.8739924236670811, + "precision_success": 0.8739924236670811, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.00038436827638679925, + "hallucination_rate_success": 0.00038436827638679925, + "deletion_rate": 0.003536775754674823, + "deletion_rate_success": 0.003536775754674823 + } + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5207146248791963, + "f1_success": 0.5207146248791963, + "recall": 0.46318300330932755, + "recall_success": 0.46318300330932755, + "precision": 0.6073436679569005, + "precision_success": 0.6073436679569005, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.0001951654817221239, + "hallucination_rate_success": 0.0001951654817221239, + "deletion_rate": 0.002196155735392704, + "deletion_rate_success": 0.002196155735392704 + } + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.498499591779185, + "f1_success": 0.498499591779185, + "recall": 0.41199150976902843, + "recall_success": 0.41199150976902843, + "precision": 0.7181267053421895, + "precision_success": 0.7181267053421895, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.0012045126318469622, + "hallucination_rate_success": 0.0012045126318469622, + "deletion_rate": 0.00819693803445955, + "deletion_rate_success": 0.00819693803445955 + } + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.45406734413633626, + "f1_success": 0.45406734413633626, + "recall": 0.3822220918576872, + "recall_success": 0.3822220918576872, + "precision": 0.6327317408227991, + "precision_success": 0.6327317408227991, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.000278596215206653, + "hallucination_rate_success": 0.000278596215206653, + "deletion_rate": 0.004035948055438261, + "deletion_rate_success": 0.004035948055438261 + } + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "ro": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9491051454138704, + "recall": 0.952300785634119, + "precision": 0.9459308807134894, + "correct_pairwise": 0, + "hallucination_rate": 0.0026216006390854777, + "deletion_rate": 0.0018902528213148508 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5229327084030799, + "recall": 0.4382716049382716, + "precision": 0.6481327800829876, + "correct_pairwise": 0, + "hallucination_rate": 0.0013013353341852585, + "deletion_rate": 0.002157168481892681 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6351286939942803, + "recall": 0.5925514174541412, + "precision": 0.6842983694954423, + "correct_pairwise": 0, + "hallucination_rate": 0.0005783553021096257, + "deletion_rate": 0.0018285500607647003 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9354838709677419, + "recall": 0.9809725158562368, + "precision": 0.8940269749518305, + "correct_pairwise": 0, + "hallucination_rate": 0.00028504530184261426, + "deletion_rate": 0.00043774814211544334 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.3968565815324165, + "recall": 0.3202959830866808, + "precision": 0.5215146299483648, + "correct_pairwise": 0, + "hallucination_rate": 0.0008296314965922099, + "deletion_rate": 0.0015542463480461653 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.97678369195923, + "recall": 0.9583333333333334, + "precision": 0.995958429561201, + "correct_pairwise": 0, + "hallucination_rate": 0.00010135059046103258, + "deletion_rate": 0.0003828800084083453 + } + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5954198473282444, + "recall": 0.585, + "precision": 0.6062176165803109, + "correct_pairwise": 0, + "hallucination_rate": 0.00019581719121356745, + "deletion_rate": 0.0009022949006899676 + } + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "ru": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.8926389292988071, + "recall": 0.8735763097949886, + "precision": 0.9125520523497918, + "correct_pairwise": 0, + "hallucination_rate": 0.0003185371397086677, + "deletion_rate": 0.0010675298736182377 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6179275270184361, + "recall": 0.5535307517084282, + "precision": 0.6992805755395683, + "correct_pairwise": 0, + "hallucination_rate": 0.0007528377883559136, + "deletion_rate": 0.0019860856829000367 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6522428083861531, + "recall": 0.5946216246249584, + "precision": 0.7222297206100688, + "correct_pairwise": 0, + "hallucination_rate": 0.0009510585044324562, + "deletion_rate": 0.0016141818653211413 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.8851828094932649, + "recall": 0.8712121212121212, + "precision": 0.8996088657105606, + "correct_pairwise": 0, + "hallucination_rate": 0.0006577340123653994, + "deletion_rate": 0.004378629282318231 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.48475609756097565, + "recall": 0.4015151515151515, + "precision": 0.6115384615384616, + "correct_pairwise": 0, + "hallucination_rate": 0.0011599331563943772, + "deletion_rate": 0.0022215668927553327 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9700115340253749, + "recall": 0.9438832772166106, + "precision": 0.9976275207591934, + "correct_pairwise": 0, + "hallucination_rate": 0.0004363285275304734, + "deletion_rate": 0.0009190749835216354 + } + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6746126340882002, + "recall": 0.6352413019079686, + "precision": 0.7191867852604829, + "correct_pairwise": 0, + "hallucination_rate": 0.0005534087114164401, + "deletion_rate": 0.0021850102571442202 + } + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "si": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7692307692307692, + "recall": 0.6978699551569507, + "precision": 0.8568479008947006, + "correct_pairwise": 0, + "hallucination_rate": 0.04626104736410229, + "deletion_rate": 0.005636341624181116 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.3724188790560472, + "recall": 0.2830717488789238, + "precision": 0.5441810344827587, + "correct_pairwise": 0, + "hallucination_rate": 0.0024724425672195322, + "deletion_rate": 0.0018984826855435693 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.34515366430260047, + "recall": 0.3146551724137931, + "precision": 0.38219895287958117, + "correct_pairwise": 0, + "hallucination_rate": 0.010440641084654978, + "deletion_rate": 0.033811775536678246 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "sk": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9434806939003918, + "recall": 0.9455973079080202, + "precision": 0.9413735343383585, + "correct_pairwise": 0, + "hallucination_rate": 0.0018497866992370736, + "deletion_rate": 0.0011948382985502628 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.48047010024196335, + "recall": 0.38979248457655635, + "precision": 0.6261261261261262, + "correct_pairwise": 0, + "hallucination_rate": 0.0006618924608610118, + "deletion_rate": 0.0020316421368094945 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5716629851688231, + "recall": 0.5033900188951873, + "precision": 0.6613609813084113, + "correct_pairwise": 0, + "hallucination_rate": 0.0013528689987811868, + "deletion_rate": 0.0031311598970779945 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.906392694063927, + "recall": 0.8322851153039832, + "precision": 0.9949874686716792, + "correct_pairwise": 0, + "hallucination_rate": 1.3082669387861899e-05, + "deletion_rate": 0.0006018027918416474 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6628830874006811, + "recall": 0.6121593291404612, + "precision": 0.7227722772277227, + "correct_pairwise": 0, + "hallucination_rate": 0.0010426831713609688, + "deletion_rate": 0.0009758445065301375 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "sl": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9376544905245812, + "recall": 0.9515050167224081, + "precision": 0.924201407688143, + "correct_pairwise": 0, + "hallucination_rate": 0.0025814183972157558, + "deletion_rate": 0.002051305690644663 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5118577075098814, + "recall": 0.4331103678929766, + "precision": 0.6256038647342995, + "correct_pairwise": 0, + "hallucination_rate": 0.0011702961935211437, + "deletion_rate": 0.0019303854738493094 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5605846588466499, + "recall": 0.5071111111111111, + "precision": 0.626664835919264, + "correct_pairwise": 0, + "hallucination_rate": 0.0006794097420728625, + "deletion_rate": 0.0014527216436192101 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9855326611135466, + "recall": 0.9748482220294883, + "precision": 0.9964539007092199, + "correct_pairwise": 0, + "hallucination_rate": 0.00015672417969139584, + "deletion_rate": 0.0014033937908729537 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5935604293047131, + "recall": 0.5516045099739809, + "precision": 0.6424242424242425, + "correct_pairwise": 0, + "hallucination_rate": 0.0004167001732595457, + "deletion_rate": 0.0010088530510494265 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.8302314071558937, + "f1_success": 0.8302314071558937, + "recall": 0.8714582460550201, + "recall_success": 0.8714582460550201, + "precision": 0.8318262962599492, + "precision_success": 0.8318262962599492, + "correct_pairwise": 0.4633431085043988, + "correct_pairwise_success": 0.4633431085043988, + "hallucination_rate": 0.004081883228045568, + "hallucination_rate_success": 0.004081883228045568, + "deletion_rate": 0.02186771025984602, + "deletion_rate_success": 0.02186771025984602 + } + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6856436908636155, + "f1_success": 0.6856436908636155, + "recall": 0.6672000826234706, + "recall_success": 0.6672000826234706, + "precision": 0.7884698766938508, + "precision_success": 0.7884698766938508, + "correct_pairwise": 0.23936950146627567, + "correct_pairwise_success": 0.23936950146627567, + "hallucination_rate": 0.002608565983595842, + "hallucination_rate_success": 0.002608565983595842, + "deletion_rate": 0.01242321468172652, + "deletion_rate_success": 0.01242321468172652 + } + } + }, + "sq": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9225589225589227, + "recall": 0.9272419627749577, + "precision": 0.9179229480737019, + "correct_pairwise": 0, + "hallucination_rate": 0.001898166164989556, + "deletion_rate": 0.001421639094280881 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.43111266131845133, + "recall": 0.34856175972927245, + "precision": 0.5648994515539305, + "correct_pairwise": 0, + "hallucination_rate": 0.0003303737352880446, + "deletion_rate": 0.0016188313029114187 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.4933386624034106, + "recall": 0.4114901655739527, + "precision": 0.6158323632130385, + "correct_pairwise": 0, + "hallucination_rate": 0.0005662303042730582, + "deletion_rate": 0.003081644351444936 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 1.0, + "recall": 1.0, + "precision": 1.0, + "correct_pairwise": 1, + "hallucination_rate": 0.0003750234389649353, + "deletion_rate": 0.0 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.8108108108108109, + "recall": 0.8333333333333334, + "precision": 0.7894736842105263, + "correct_pairwise": 0, + "hallucination_rate": 0.0, + "deletion_rate": 0.0007627765064836003 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "sr": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9462719298245614, + "recall": 0.9631696428571429, + "precision": 0.9299568965517241, + "correct_pairwise": 0, + "hallucination_rate": 0.002617561218212991, + "deletion_rate": 0.001164814742104781 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5430197522597926, + "recall": 0.4525669642857143, + "precision": 0.6786610878661088, + "correct_pairwise": 0, + "hallucination_rate": 0.001979707993071022, + "deletion_rate": 0.0019659600208969175 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5692594897324206, + "recall": 0.5082222222222222, + "precision": 0.6469589816124469, + "correct_pairwise": 0, + "hallucination_rate": 0.001125712868832135, + "deletion_rate": 0.0019724770642201837 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9648351648351648, + "recall": 0.938034188034188, + "precision": 0.9932126696832579, + "correct_pairwise": 0, + "hallucination_rate": 0.0002984451010236667, + "deletion_rate": 0.009072731071119467 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6609257265877287, + "recall": 0.655982905982906, + "precision": 0.665943600867679, + "correct_pairwise": 0, + "hallucination_rate": 0.0008103603810222773, + "deletion_rate": 0.001483112395455866 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9194587241462248, + "f1_success": 0.9194587241462248, + "recall": 0.9372395833333328, + "recall_success": 0.9372395833333328, + "precision": 0.923784722222222, + "precision_success": 0.923784722222222, + "correct_pairwise": 0.7135416666666666, + "correct_pairwise_success": 0.7135416666666666, + "hallucination_rate": 0.0013961414512797486, + "hallucination_rate_success": 0.0013961414512797486, + "deletion_rate": 0.008095481069393238, + "deletion_rate_success": 0.008095481069393238 + } + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6690273268398274, + "f1_success": 0.6690273268398274, + "recall": 0.7321180555555559, + "recall_success": 0.7321180555555559, + "precision": 0.668721064814815, + "precision_success": 0.668721064814815, + "correct_pairwise": 0.19270833333333334, + "correct_pairwise_success": 0.19270833333333334, + "hallucination_rate": 0.0012995441584618547, + "hallucination_rate_success": 0.0012995441584618547, + "deletion_rate": 0.0041681823658253825, + "deletion_rate_success": 0.0041681823658253825 + } + } + }, + "sv": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9426611796982167, + "recall": 0.9592406476828588, + "precision": 0.9266450916936354, + "correct_pairwise": 0, + "hallucination_rate": 0.0017606809078771696, + "deletion_rate": 0.0006842456608811749 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6436090225563911, + "recall": 0.5974316024567281, + "precision": 0.6975228161668839, + "correct_pairwise": 0, + "hallucination_rate": 0.0010037662683058655, + "deletion_rate": 0.0018102109625003217 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.632955223880597, + "recall": 0.5892618941751889, + "precision": 0.6836471498581377, + "correct_pairwise": 0, + "hallucination_rate": 0.0006583360868302744, + "deletion_rate": 0.002386781212139417 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9551593733117234, + "recall": 0.949516648764769, + "precision": 0.9608695652173913, + "correct_pairwise": 0, + "hallucination_rate": 0.0006514586047744186, + "deletion_rate": 0.001170417154340481 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.68561872909699, + "recall": 0.6605800214822771, + "precision": 0.712630359212051, + "correct_pairwise": 0, + "hallucination_rate": 0.00032731746407973003, + "deletion_rate": 0.001501145611124279 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "ta": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.45253283302063796, + "recall": 0.34067796610169493, + "precision": 0.6737430167597765, + "correct_pairwise": 0, + "hallucination_rate": 0.0009050133762966057, + "deletion_rate": 0.007787093116925739 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.17019360648356596, + "recall": 0.10677966101694915, + "precision": 0.4190687361419069, + "correct_pairwise": 0, + "hallucination_rate": 0.0363762719248203, + "deletion_rate": 0.02237342986650624 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.1461296601287618, + "recall": 0.09648082245947015, + "precision": 0.30104873534855026, + "correct_pairwise": 0, + "hallucination_rate": 0.006700052200749167, + "deletion_rate": 0.010707845982932458 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9665071770334929, + "recall": 0.9351851851851852, + "precision": 1.0, + "correct_pairwise": 0, + "hallucination_rate": 0.0006355483369818516, + "deletion_rate": 0.0 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.3105590062111801, + "recall": 0.23148148148148148, + "precision": 0.4716981132075472, + "correct_pairwise": 0, + "hallucination_rate": 0.00037227309954582683, + "deletion_rate": 0.006849825031643214 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9695603156708005, + "recall": 0.9513274336283186, + "precision": 0.9885057471264368, + "correct_pairwise": 0, + "hallucination_rate": 0.0012920112029874632, + "deletion_rate": 0.0064017071218991735 + } + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.223717409587889, + "recall": 0.14712389380530974, + "precision": 0.4666666666666667, + "correct_pairwise": 0, + "hallucination_rate": 0.0043814501016179695, + "deletion_rate": 0.031769912283017045 + } + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "te": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6588836191171106, + "recall": 0.5121951219512195, + "precision": 0.9233128834355828, + "correct_pairwise": 0, + "hallucination_rate": 0.002751287342219248, + "deletion_rate": 0.0014685925678062201 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.21361815754339122, + "recall": 0.13613159387407828, + "precision": 0.49586776859504134, + "correct_pairwise": 0, + "hallucination_rate": 0.0019383403725694232, + "deletion_rate": 0.0027136765215971925 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.33048433048433046, + "recall": 0.26795464090718185, + "precision": 0.43108108108108106, + "correct_pairwise": 0, + "hallucination_rate": 0.00263705633462833, + "deletion_rate": 0.005151141130336168 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "tg": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7607818802358053, + "recall": 0.6837702175125489, + "precision": 0.8573426573426574, + "correct_pairwise": 0, + "hallucination_rate": 0.0007485678714669567, + "deletion_rate": 0.0020723510546927326 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.35893648449039883, + "recall": 0.27105409927495816, + "precision": 0.5311475409836065, + "correct_pairwise": 0, + "hallucination_rate": 0.0006968469724048599, + "deletion_rate": 0.001877387725655446 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.4471153846153846, + "recall": 0.34191176470588236, + "precision": 0.6458333333333334, + "correct_pairwise": 0, + "hallucination_rate": 0.0017853278511144775, + "deletion_rate": 0.0012443194113828176 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "th": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6604379562043795, + "recall": 0.6346801346801347, + "precision": 0.6883749239196592, + "correct_pairwise": 0, + "hallucination_rate": 0.0028094744121715076, + "deletion_rate": 0.0025933609958506223 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6414777497900923, + "recall": 0.6430976430976431, + "precision": 0.6398659966499163, + "correct_pairwise": 0, + "hallucination_rate": 0.0027600911268181555, + "deletion_rate": 0.00026286582160172907 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5784341356180598, + "recall": 0.5701111111111111, + "precision": 0.5870037753117492, + "correct_pairwise": 0, + "hallucination_rate": 0.001002232567594559, + "deletion_rate": 0.0017208144085114128 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.8142857142857143, + "recall": 0.8233333333333334, + "precision": 0.8054347826086956, + "correct_pairwise": 0, + "hallucination_rate": 0.0008094738420026983, + "deletion_rate": 0.0017788437515614851 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.8083427282976324, + "recall": 0.7966666666666666, + "precision": 0.8203661327231121, + "correct_pairwise": 0, + "hallucination_rate": 0.001102701618966468, + "deletion_rate": 0.0012029472206906923 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "tr": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9381557150745443, + "recall": 0.9555680539932508, + "precision": 0.9213665943600867, + "correct_pairwise": 0, + "hallucination_rate": 0.003591003591003591, + "deletion_rate": 0.002041202041202041 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6344916344916345, + "recall": 0.5545556805399325, + "precision": 0.7413533834586467, + "correct_pairwise": 0, + "hallucination_rate": 0.001003949749673056, + "deletion_rate": 0.0017040726014187395 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6778625954198473, + "recall": 0.6416184971098265, + "precision": 0.7184466019417476, + "correct_pairwise": 0, + "hallucination_rate": 0.00330476748963603, + "deletion_rate": 0.00373853412318718 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9754851889683349, + "recall": 0.9646464646464646, + "precision": 0.9865702479338843, + "correct_pairwise": 0, + "hallucination_rate": 0.0013219766060342374, + "deletion_rate": 0.0006860891246506803 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6197827329902802, + "recall": 0.5474747474747474, + "precision": 0.7140974967061924, + "correct_pairwise": 0, + "hallucination_rate": 0.0009232484409295196, + "deletion_rate": 0.0011497056056858168 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9426972795678178, + "recall": 0.9021418020679468, + "precision": 0.9870707070707071, + "correct_pairwise": 0, + "hallucination_rate": 0.00033738665916918534, + "deletion_rate": 0.0012764461938567513 + } + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7359004278490858, + "recall": 0.6986706056129985, + "precision": 0.7773212818405916, + "correct_pairwise": 0, + "hallucination_rate": 0.0008113742543152983, + "deletion_rate": 0.004729647788499853 + } + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "tr-de": { + "opus100": { + "meta/meta-llama-3-8b-instruct": {} + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9896623018607857, + "recall": 0.9917127071823204, + "precision": 0.9876203576341128, + "correct_pairwise": 0, + "hallucination_rate": 0.0004725835882221668, + "deletion_rate": 0.001037058429709755 + } + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.3391655450874832, + "recall": 0.34806629834254144, + "precision": 0.33070866141732286, + "correct_pairwise": 0, + "hallucination_rate": 0.055285946579607476, + "deletion_rate": 0.0017268980121765217 + } + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "uk": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9113785557986872, + "recall": 0.9302065884980458, + "precision": 0.8932975871313673, + "correct_pairwise": 0, + "hallucination_rate": 0.0027596172067462575, + "deletion_rate": 0.003612374455182869 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5429833503227999, + "recall": 0.44611948632049137, + "precision": 0.6935763888888888, + "correct_pairwise": 0, + "hallucination_rate": 0.00548099132280417, + "deletion_rate": 0.006192646232598789 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6170639899623588, + "recall": 0.5466874166296132, + "precision": 0.7082373271889401, + "correct_pairwise": 0, + "hallucination_rate": 0.004379665703827954, + "deletion_rate": 0.004147887739079641 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9489334195216548, + "recall": 0.9084158415841584, + "precision": 0.993234100135318, + "correct_pairwise": 0, + "hallucination_rate": 0.0006689430699494798, + "deletion_rate": 0.001577507538089818 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5261606484893147, + "recall": 0.44183168316831684, + "precision": 0.6502732240437158, + "correct_pairwise": 0, + "hallucination_rate": 0.0010244417309960886, + "deletion_rate": 0.0012727912415405947 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "ur": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.47563083304528175, + "recall": 0.4044679600235156, + "precision": 0.5771812080536913, + "correct_pairwise": 0, + "hallucination_rate": 0.0007185284537267676, + "deletion_rate": 0.0016765663920291244 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.43088655862726405, + "recall": 0.3985890652557319, + "precision": 0.46887966804979253, + "correct_pairwise": 0, + "hallucination_rate": 0.0005875632446548065, + "deletion_rate": 0.0013056960992329036 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.4872180451127819, + "recall": 0.4160958904109589, + "precision": 0.5876662636033857, + "correct_pairwise": 0, + "hallucination_rate": 0.002606285504179655, + "deletion_rate": 0.0016863331704097258 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9696356275303644, + "recall": 0.9958419958419958, + "precision": 0.9447731755424064, + "correct_pairwise": 0, + "hallucination_rate": 0.040715276009393654, + "deletion_rate": 8.48824378236143e-05 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.838235294117647, + "recall": 0.8295218295218295, + "precision": 0.8471337579617835, + "correct_pairwise": 0, + "hallucination_rate": 0.0403235057932775, + "deletion_rate": 0.00048755305724446486 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "uz": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.674269819193324, + "recall": 0.6870748299319728, + "precision": 0.6619333697433096, + "correct_pairwise": 0, + "hallucination_rate": 0.0012243266203588027, + "deletion_rate": 0.0026048173504572484 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.4516129032258064, + "recall": 0.3492063492063492, + "precision": 0.6390041493775933, + "correct_pairwise": 0, + "hallucination_rate": 0.0005871262778151074, + "deletion_rate": 0.0013569140642838038 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5766045548654244, + "recall": 0.48988566402814426, + "precision": 0.70062893081761, + "correct_pairwise": 0, + "hallucination_rate": 0.0002996492993385519, + "deletion_rate": 0.0005882004764793797 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "vi": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9289586305278176, + "recall": 0.9292237442922374, + "precision": 0.9286936679977182, + "correct_pairwise": 0, + "hallucination_rate": 0.0021038895324837882, + "deletion_rate": 0.003049308246448022 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.43883792048929665, + "recall": 0.3276255707762557, + "precision": 0.6643518518518519, + "correct_pairwise": 0, + "hallucination_rate": 0.0005581603036392052, + "deletion_rate": 0.002358227282875642 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5269606279114288, + "recall": 0.4587777777777778, + "precision": 0.6189476840053965, + "correct_pairwise": 0, + "hallucination_rate": 0.000306274805068848, + "deletion_rate": 0.0031161141152080524 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9846368715083799, + "recall": 0.9791666666666666, + "precision": 0.9901685393258427, + "correct_pairwise": 0, + "hallucination_rate": 0.002263249812880921, + "deletion_rate": 0.026071925009801475 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5021645021645021, + "recall": 0.4027777777777778, + "precision": 0.6666666666666666, + "correct_pairwise": 0, + "hallucination_rate": 0.00032458233890214795, + "deletion_rate": 0.0014701670644391407 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "vi-en": { + "opus100": { + "meta/meta-llama-3-8b-instruct": {} + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.36691052335396734, + "recall": 0.26633986928104575, + "precision": 0.5895117540687161, + "correct_pairwise": 0, + "hallucination_rate": 0.0015036998931581655, + "deletion_rate": 0.0027897590123065964 + } + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.3545301069217783, + "recall": 0.25735294117647056, + "precision": 0.569620253164557, + "correct_pairwise": 0, + "hallucination_rate": 0.0017420913014213881, + "deletion_rate": 0.0025141544918240487 + } + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "xh": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7169811320754718, + "recall": 0.6016119746689695, + "precision": 0.8870967741935484, + "correct_pairwise": 0, + "hallucination_rate": 0.00041418001769678257, + "deletion_rate": 0.0018198818959404082 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.08455114822546972, + "recall": 0.046632124352331605, + "precision": 0.45251396648044695, + "correct_pairwise": 0, + "hallucination_rate": 0.022570154304873215, + "deletion_rate": 0.0006164646382044523 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "yi": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.13601236476043274, + "recall": 0.07665505226480836, + "precision": 0.6027397260273972, + "correct_pairwise": 0, + "hallucination_rate": 0.0021021810128007807, + "deletion_rate": 0.0036412778257442096 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.13963636363636361, + "recall": 0.08362369337979095, + "precision": 0.42290748898678415, + "correct_pairwise": 0, + "hallucination_rate": 0.0025744041814564885, + "deletion_rate": 0.00460272262745251 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "yo": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.3749139710942877, + "recall": 0.2582671565722413, + "precision": 0.6837150925635394, + "correct_pairwise": 0, + "hallucination_rate": 0.0015287187127710714, + "deletion_rate": 0.002537911925498849 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.08054116900961844, + "recall": 0.04515823159890957, + "precision": 0.3720703125, + "correct_pairwise": 0, + "hallucination_rate": 0.008206772065230922, + "deletion_rate": 0.0016183244118013196 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.8981636060100168, + "recall": 0.9405594405594405, + "precision": 0.8594249201277955, + "correct_pairwise": 0, + "hallucination_rate": 0.0009426217046249278, + "deletion_rate": 0.00027366436585885 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.24936386768447835, + "recall": 0.17132867132867133, + "precision": 0.45794392523364486, + "correct_pairwise": 0, + "hallucination_rate": 0.028903857930189833, + "deletion_rate": 0.0005817513778322106 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "zh": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5566265060240964, + "recall": 0.5164896590273896, + "precision": 0.6035271064663619, + "correct_pairwise": 0, + "hallucination_rate": 0.0009083972239380836, + "deletion_rate": 0.004396642563860325 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.347143243975088, + "recall": 0.3583007266629402, + "precision": 0.33665966386554624, + "correct_pairwise": 0, + "hallucination_rate": 0.001234146469553344, + "deletion_rate": 0.002468292939106688 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.044274637599730306, + "recall": 0.05400959561343386, + "precision": 0.037513091497667336, + "correct_pairwise": 0, + "hallucination_rate": 0.0038482256164921345, + "deletion_rate": 0.0019081355963151984 + } + }, + "ud": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9579288025889968, + "recall": 0.9866666666666667, + "precision": 0.9308176100628931, + "correct_pairwise": 0, + "hallucination_rate": 0.00015177577658605687, + "deletion_rate": 0.00015177577658605687 + } + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.4416094210009814, + "recall": 0.5, + "precision": 0.3954305799648506, + "correct_pairwise": 0, + "hallucination_rate": 0.00010990218705352236, + "deletion_rate": 0.0 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9448294981979485, + "recall": 0.9456159822419534, + "precision": 0.9440443213296399, + "correct_pairwise": 0, + "hallucination_rate": 0.0005581518551454033, + "deletion_rate": 0.004966605490700622 + } + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.29078014184397166, + "recall": 0.31853496115427304, + "precision": 0.2674743709226468, + "correct_pairwise": 0, + "hallucination_rate": 0.0010163134017162076, + "deletion_rate": 0.0008905839087203881 + } + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "zu": { + "opus100": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.4245614035087719, + "recall": 0.2875816993464052, + "precision": 0.8107202680067002, + "correct_pairwise": 0, + "hallucination_rate": 0.002210163156759865, + "deletion_rate": 0.0031265722705383454 + } + }, + "opus100-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.15904572564612326, + "recall": 0.09506833036244801, + "precision": 0.48632218844984804, + "correct_pairwise": 0, + "hallucination_rate": 0.0016853301374480357, + "deletion_rate": 0.0016291524661997678 + } + }, + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ud-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + }, + "ersatz-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-judgements-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws": { + "meta/meta-llama-3-8b-instruct": {} + }, + "legal-all-laws-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching": { + "meta/meta-llama-3-8b-instruct": {} + }, + "code-switching-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences": { + "meta/meta-llama-3-8b-instruct": {} + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": {} + } + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-12l-no_ll.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-12l-no_ll.json new file mode 100644 index 0000000000000000000000000000000000000000..90038c026c621aac0116a998e1e4c32d7c0572ee --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-12l-no_ll.json @@ -0,0 +1,1645 @@ +{ + "af": { + "opus100": { + "u": 0.7690660957987691, + "t": 0.7828245222139489, + "punct": null + }, + "ud": { + "u": 0.9922077922077922, + "t": 0.9986928104575163, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5789473684210527, + "t": 0.6996254681647941, + "punct": null + } + }, + "am": { + "opus100": { + "u": 0.6118433265268238, + "t": 0.6663101604278076, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5732899022801302, + "t": 0.596078431372549, + "punct": null + } + }, + "ar": { + "ersatz": { + "u": 0.9003262051467923, + "t": 0.9027830728173847, + "punct": null + }, + "opus100": { + "u": 0.7029926595143987, + "t": 0.6973684210526315, + "punct": null + }, + "ud": { + "u": 0.8602461984069515, + "t": 0.8616780045351474, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5797826883164449, + "t": 0.6176470588235294, + "punct": null + } + }, + "az": { + "opus100": { + "u": 0.7061159650516283, + "t": 0.8203821656050955, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6210854898801732, + "t": 0.7241885739462475, + "punct": null + } + }, + "be": { + "opus100": { + "u": 0.7147484344633989, + "t": 0.7392014942797104, + "punct": null + }, + "ud": { + "u": 0.8971233544612385, + "t": 0.9024875621890547, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5161603888213852, + "t": 0.6880922299431459, + "punct": null + } + }, + "bg": { + "opus100": { + "u": 0.9379824327921213, + "t": 0.9375166179207657, + "punct": null + }, + "ud": { + "u": 0.9895988112927191, + "t": 0.9895988112927191, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4108821104699093, + "t": 0.6951110272971571, + "punct": null + } + }, + "bn": { + "opus100": { + "u": 0.8034228666508201, + "t": 0.8459263242807206, + "punct": null + }, + "ud": { + "u": 1.0, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4269480519480519, + "t": 0.4396820448877805, + "punct": null + } + }, + "ca": { + "opus100": { + "u": 0.8911196911196911, + "t": 0.9103043246129204, + "punct": null + }, + "ud": { + "u": 0.9873570138470801, + "t": 0.9873722188815395, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5558962921661555, + "t": 0.6570365718150636, + "punct": null + } + }, + "ceb": { + "ud": { + "u": 0.9970501474926253, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3384615384615384, + "t": 0.5116279069767442, + "punct": null + } + }, + "cs": { + "ersatz": { + "u": 0.9410205434062292, + "t": 0.9556203433754454, + "punct": null + }, + "opus100": { + "u": 0.9089498189342989, + "t": 0.9147489539748953, + "punct": null + }, + "ud": { + "u": 0.9267860111954774, + "t": 0.9251495332327129, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.39528270324523246, + "t": 0.6968934481757476, + "punct": null + } + }, + "cy": { + "opus100": { + "u": 0.7155067155067154, + "t": 0.7492118085411292, + "punct": null + }, + "ud": { + "u": 0.9935710111046172, + "t": 0.9935710111046172, + "punct": null + } + }, + "da": { + "opus100": { + "u": 0.9187777487594672, + "t": 0.9258081611022788, + "punct": null + }, + "ud": { + "u": 0.9606903163950143, + "t": 0.9470588235294117, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6288951841359773, + "t": 0.7195737256566227, + "punct": null + } + }, + "de": { + "ersatz": { + "u": 0.965478841870824, + "t": 0.9694397283531409, + "punct": null + }, + "opus100": { + "u": 0.806966618287373, + "t": 0.8635886673662121, + "punct": null + }, + "ud": { + "u": 0.9707536557930259, + "t": 0.9626168224299065, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7361635402752773, + "t": 0.7617489133214013, + "punct": null + }, + "legal-all-laws": { + "u": 0.867818167495103, + "t": 0.8718771651192956, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.7499710895205015, + "t": 0.7456537746530766, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.7432955853412212, + "t": 0.7462492266143663, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.6334982606555456, + "t": 0.6432127448722463, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "el": { + "opus100": { + "u": 0.9226763863577194, + "t": 0.9434267241379309, + "punct": null + }, + "ud": { + "u": 0.976969696969697, + "t": 0.9803921568627451, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6483902202856451, + "t": 0.6871927298008641, + "punct": null + } + }, + "en": { + "ersatz": { + "u": 0.9699680511182108, + "t": 0.972659604924134, + "punct": null + }, + "opus100": { + "u": 0.9205658324265507, + "t": 0.9191077667293738, + "punct": null + }, + "ud": { + "u": 0.9469429004547751, + "t": 0.9492385786802031, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5376997036073158, + "t": 0.685161031403632, + "punct": null + }, + "legal-all-judgements": { + "u": 0.8167711408200564, + "t": 0.8352571592438407, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.6386633944299502, + "t": 0.6960332097646635, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "eo": { + "opus100": { + "u": 0.907097835023294, + "t": 0.9064827586206896, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3890918580375783, + "t": 0.6487991092731034, + "punct": null + } + }, + "es": { + "ersatz": { + "u": 0.9887558940877765, + "t": null, + "punct": null + }, + "opus100": { + "u": 0.9075890552400618, + "t": 0.9361245303274288, + "punct": null + }, + "ud": { + "u": 0.9676385773790452, + "t": 0.9683462532299741, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5755058287551923, + "t": 0.6637802329053448, + "punct": null + }, + "legal-all-laws": { + "u": 0.7240284113244922, + "t": 0.6999037328764973, + "punct": null, + "acc_u": 0.09836065573770492, + "acc_t": 0.08196721311475409, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.7150710835333455, + "t": 0.7476465875000121, + "punct": null, + "acc_u": 0.07650273224043716, + "acc_t": 0.0273224043715847, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.7138289296447768, + "t": 0.7175431703237722, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.6102785660672524, + "t": 0.6372005914631566, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "et": { + "ersatz": { + "u": 0.9746556473829201, + "t": 0.9740224227508888, + "punct": null + }, + "opus100": { + "u": 0.8443056222969727, + "t": 0.9127445795875199, + "punct": null + }, + "ud": { + "u": 0.9574944071588366, + "t": 0.9571403782752039, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.477357739753283, + "t": 0.71527498996387, + "punct": null + }, + "short-sequences": { + "u": 0.6253971868595398, + "t": 0.7146791496895656, + "punct": null, + "acc_u": 0.20689655172413793, + "acc_t": 0.19704433497536947, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.6526957475960835, + "t": 0.7202499213503668, + "punct": null, + "acc_u": 0.08374384236453201, + "acc_t": 0.10837438423645321, + "acc_punct": null + } + }, + "eu": { + "opus100": { + "u": 0.8584858980702623, + "t": 0.876278118609407, + "punct": null + }, + "ud": { + "u": 0.9778988798062367, + "t": 0.988950276243094, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5081712990576166, + "t": 0.6108759881817455, + "punct": null + } + }, + "fa": { + "opus100": { + "u": 0.6171584913034982, + "t": 0.6453576864535768, + "punct": null + }, + "ud": { + "u": 0.9842105263157895, + "t": 0.9924184988627748, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6750211685012701, + "t": 0.6863911290322581, + "punct": null + } + }, + "fi": { + "ersatz": { + "u": 0.988404196576477, + "t": 0.9881313828319073, + "punct": null + }, + "opus100": { + "u": 0.9309071729957805, + "t": 0.9427954668105775, + "punct": null + }, + "ud": { + "u": 0.9512893982808023, + "t": 0.9522784355938284, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5443203249673582, + "t": 0.694174052012204, + "punct": null + } + }, + "fr": { + "ersatz": { + "u": 0.9739187850775833, + "t": 0.959917780061665, + "punct": null + }, + "opus100": { + "u": 0.8865717192268565, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9661458333333333, + "t": 0.9758713136729223, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.66299585553582, + "t": 0.6918412067471844, + "punct": null + }, + "legal-all-laws": { + "u": 0.7939727413149424, + "t": 0.8069750559044062, + "punct": null, + "acc_u": 0.43790849673202614, + "acc_t": 0.5119825708061002, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.7495366089669345, + "t": 0.8144297428975972, + "punct": null, + "acc_u": 0.2178649237472767, + "acc_t": 0.40305010893246185, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.7998564349065631, + "t": 0.839065021984381, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.6514016992476991, + "t": 0.6623419314633298, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "fy": { + "opus100": { + "u": 0.7147019867549669, + "t": 0.6699252443933295, + "punct": null + } + }, + "ga": { + "opus100": { + "u": 0.7609624465932089, + "t": 0.8122122607220742, + "punct": null + }, + "ud": { + "u": 0.8604898828541001, + "t": 0.9213226909920181, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5185185185185185, + "t": 0.5271317829457364, + "punct": null + } + }, + "gd": { + "opus100": { + "u": 0.8619560131024802, + "t": 0.8654545454545454, + "punct": null + }, + "ud": { + "u": 0.6683417085427136, + "t": 0.6728971962616823, + "punct": null + } + }, + "gl": { + "opus100": { + "u": 0.8873932177064457, + "t": 0.8984892658362046, + "punct": null + }, + "ud": { + "u": 0.9820689655172414, + "t": 0.9875173370319003, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5463290422973546, + "t": 0.6708364358401588, + "punct": null + } + }, + "gu": { + "ersatz": { + "u": 0.9435569755058573, + "t": 0.8361858190709046, + "punct": null + }, + "opus100": { + "u": 0.7385430463576159, + "t": 0.7332224070992789, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4776891571459365, + "t": 0.48565834557023985, + "punct": null + } + }, + "ha": { + "opus100": { + "u": 0.8758654797230465, + "t": 0.9053129931614939, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.47619047619047616, + "t": 0.5882352941176471, + "punct": null + } + }, + "he": { + "opus100": { + "u": 0.9118895966029723, + "t": 0.9100473435034193, + "punct": null + }, + "ud": { + "u": 0.9750692520775623, + "t": 0.9750692520775623, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5284581374131518, + "t": 0.6390894744392904, + "punct": null + } + }, + "hi": { + "ersatz": { + "u": 0.9692241005635024, + "t": 0.8754901960784315, + "punct": null + }, + "opus100": { + "u": 0.6568296795952783, + "t": 0.6880150694607958, + "punct": null + }, + "ud": { + "u": 0.9970228250082699, + "t": 0.9986789960369881, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5759411178409876, + "t": 0.5909350683606629, + "punct": null + } + }, + "hu": { + "opus100": { + "u": 0.9361140443505808, + "t": 0.9466058492084786, + "punct": null + }, + "ud": { + "u": 0.9679802955665024, + "t": 0.9680589680589681, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5258607840214636, + "t": 0.683138151004475, + "punct": null + } + }, + "hy": { + "opus100": { + "u": 0.835667215815486, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9504950495049505, + "t": 0.9615745079662605, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5756175938943563, + "t": 0.6784128872820465, + "punct": null + } + }, + "id": { + "opus100": { + "u": 0.8886503890528576, + "t": 0.9042464612822647, + "punct": null + }, + "ud": { + "u": 0.9878318584070798, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5363360044211108, + "t": 0.6491555380989787, + "punct": null + } + }, + "ig": { + "opus100": { + "u": 0.8479750778816199, + "t": 0.8325041459369817, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.35602094240837695, + "t": 0.35416666666666663, + "punct": null + } + }, + "is": { + "opus100": { + "u": 0.9464909922022049, + "t": 0.9526934645884605, + "punct": null + }, + "ud": { + "u": 0.9006714060031594, + "t": 0.9131675499388504, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5906382978723405, + "t": 0.6787386824851701, + "punct": null + } + }, + "it": { + "opus100": { + "u": 0.8907477820025348, + "t": 0.9108129439621152, + "punct": null + }, + "ud": { + "u": 0.9401523394994558, + "t": 0.930032292787944, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6134156537397902, + "t": 0.6690384119618458, + "punct": null + }, + "legal-all-laws": { + "u": 0.5828088857404178, + "t": 0.7115109649454916, + "punct": null, + "acc_u": 0.15767045454545456, + "acc_t": 0.4786931818181818, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.513427799022953, + "t": 0.5569332505953035, + "punct": null, + "acc_u": 0.03125, + "acc_t": 0.048295454545454544, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.8471124518474256, + "t": 0.8502248833319214, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.5935051571284837, + "t": 0.5955803413346902, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "ja": { + "ersatz": { + "u": 0.877466251298027, + "t": 0.871297242083759, + "punct": null + }, + "opus100": { + "u": 0.5351329892814609, + "t": 0.8549125168236877, + "punct": null + }, + "ud": { + "u": 0.9761163032191069, + "t": 0.9780564263322884, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.537827352085354, + "t": 0.877342419080068, + "punct": null + } + }, + "jv": { + "ud": { + "u": 0.9900771775082691, + "t": null, + "punct": null + } + }, + "ka": { + "opus100": { + "u": 0.6548672566371682, + "t": 0.9136400322841002, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.49169728141072744, + "t": 0.6352266315591499, + "punct": null + } + }, + "kk": { + "ersatz": { + "u": 0.9834619625137817, + "t": 0.9412449098312973, + "punct": null + }, + "opus100": { + "u": 0.7835926449787836, + "t": 0.7795454545454545, + "punct": null + }, + "ud": { + "u": 0.9841938883034773, + "t": 0.8927738927738929, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5720338983050848, + "t": 0.7520704845814979, + "punct": null + } + }, + "km": { + "ersatz": { + "u": 0.8194281237759498, + "t": 0.9552884615384616, + "punct": null + }, + "opus100": { + "u": 0.7367605269956083, + "t": 0.7273721629751162, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.8439790575916231, + "t": 0.8380213385063047, + "punct": null + } + }, + "kn": { + "opus100": { + "u": 0.7005076142131978, + "t": 0.675745784695201, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4838182412553123, + "t": 0.5042830540037243, + "punct": null + } + }, + "ko": { + "opus100": { + "u": 0.7203086249655553, + "t": 0.7453136715821046, + "punct": null + }, + "ud": { + "u": 0.9858547111004554, + "t": 0.9908034849951597, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7241758241758242, + "t": 0.7562394445486957, + "punct": null + } + }, + "ku": { + "opus100": { + "u": 0.6757748776508973, + "t": 0.7633811055864288, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.36380907147945857, + "t": 0.36320772946859897, + "punct": null + } + }, + "ky": { + "opus100": { + "u": 0.8660795627087762, + "t": 0.8680187207488299, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5925925925925926, + "t": 0.750642673521851, + "punct": null + } + }, + "la": { + "ud": { + "u": 0.7882054533925175, + "t": 0.9102370146243066, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6, + "t": 0.7058823529411764, + "punct": null + } + }, + "lt": { + "ersatz": { + "u": 0.9849077697037452, + "t": 0.9627507163323782, + "punct": null + }, + "opus100": { + "u": 0.807781380268643, + "t": 0.8731533367294957, + "punct": null + }, + "ud": { + "u": 0.9813765182186235, + "t": 0.9813765182186235, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.49885653300808047, + "t": 0.6670625314027314, + "punct": null + } + }, + "lv": { + "ersatz": { + "u": 0.9757281553398058, + "t": 0.9590048063330506, + "punct": null + }, + "opus100": { + "u": 0.7729403884795714, + "t": 0.8818774445893091, + "punct": null + }, + "ud": { + "u": 0.977319587628866, + "t": 0.979256895372692, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4034896401308615, + "t": 0.6824211457207428, + "punct": null + } + }, + "mg": { + "opus100": { + "u": 0.906274206041828, + "t": 0.9209549071618037, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.39405204460966536, + "t": 0.6054590570719602, + "punct": null + } + }, + "mk": { + "opus100": { + "u": 0.9297971918876755, + "t": 0.9384086703674333, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5683990233693758, + "t": 0.6771805911663684, + "punct": null + } + }, + "ml": { + "opus100": { + "u": 0.7788439035806225, + "t": 0.8115183246073298, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5316144874155925, + "t": 0.5510959294050669, + "punct": null + } + }, + "mn": { + "opus100": { + "u": 0.5529149647233568, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7359414799817124, + "t": 0.8366897588743891, + "punct": null + } + }, + "mr": { + "opus100": { + "u": 0.9301321823577016, + "t": 0.9265415549597855, + "punct": null + }, + "ud": { + "u": 0.9302325581395349, + "t": 0.9411764705882352, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4797332583457196, + "t": 0.4859551788912672, + "punct": null + } + }, + "ms": { + "opus100": { + "u": 0.8863146551724138, + "t": 0.8859060402684563, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5237944497203756, + "t": 0.6625906441063557, + "punct": null + } + }, + "mt": { + "opus100": { + "u": 0.47951908290227874, + "t": 0.8201438848920863, + "punct": null + }, + "ud": { + "u": 0.9102296450939458, + "t": 0.9375, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.23728813559322035, + "t": 0.41237113402061853, + "punct": null + } + }, + "my": { + "opus100": { + "u": 0.797558494404883, + "t": 0.8146892655367232, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.8919887955182073, + "t": 0.8900517538815411, + "punct": null + } + }, + "ne": { + "opus100": { + "u": 0.3131991051454139, + "t": 0.6457971014492754, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6019127316198446, + "t": 0.657242178447277, + "punct": null + } + }, + "nl": { + "opus100": { + "u": 0.9281796813789502, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9465791940018744, + "t": 0.9500471253534402, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6550821871855081, + "t": 0.7745621924765884, + "punct": null + } + }, + "no": { + "opus100": { + "u": 0.9500674763832657, + "t": 0.9520974289580514, + "punct": null + }, + "ud": { + "u": 0.9902411021814008, + "t": 0.9902690326273612, + "punct": null + } + }, + "pa": { + "opus100": { + "u": 0.49929378531073443, + "t": 0.6444212721584984, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5837957824639289, + "t": 0.5937921727395411, + "punct": null + } + }, + "pl": { + "ersatz": { + "u": 0.9484304932735425, + "t": 0.9188235294117647, + "punct": null + }, + "opus100": { + "u": 0.9284384144719341, + "t": 0.9349112426035503, + "punct": null + }, + "ud": { + "u": 0.9646255184191266, + "t": 0.9834170854271357, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4396115881550438, + "t": 0.7028560250391237, + "punct": null + } + }, + "ps": { + "ersatz": { + "u": 0.8522809558291093, + "t": 0.9253609924750865, + "punct": null + }, + "opus100": { + "u": 0.7500766636001226, + "t": 0.7215870880968392, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6181139122315593, + "t": 0.6176991150442478, + "punct": null + } + }, + "pt": { + "opus100": { + "u": 0.9153605015673981, + "t": 0.935344827586207, + "punct": null + }, + "ud": { + "u": 0.9658444022770398, + "t": 0.9654846335697399, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5857666711938069, + "t": 0.6951603383828447, + "punct": null + }, + "legal-all-laws": { + "u": 0.43765280081390523, + "t": 0.47730978103635135, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.4974993211040599, + "t": 0.35612715771865683, + "punct": null, + "acc_u": 0.034482758620689655, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.8100966701748018, + "t": 0.7430360984587867, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.5569086639828299, + "t": 0.32610565238154476, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "ro": { + "ersatz": { + "u": 0.9792122538293218, + "t": 0.9789706696181516, + "punct": null + }, + "opus100": { + "u": 0.9155002592016588, + "t": 0.9373996789727126, + "punct": null + }, + "ud": { + "u": 0.7926267281105991, + "t": 0.9726890756302521, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.556121006502686, + "t": 0.6765524522506958, + "punct": null + } + }, + "ru": { + "ersatz": { + "u": 0.9781757134862898, + "t": 0.978675645342312, + "punct": null + }, + "opus100": { + "u": 0.7817305485425751, + "t": null, + "punct": null + }, + "ud": { + "u": 0.8517906336088154, + "t": 0.8702975856260527, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4748700173310226, + "t": 0.7060260586319219, + "punct": null + } + }, + "si": { + "opus100": { + "u": 0.7973273942093541, + "t": 0.8384744812114413, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5893037336024217, + "t": 0.5959595959595959, + "punct": null + } + }, + "sk": { + "opus100": { + "u": 0.9157566302652105, + "t": 0.9413671980545797, + "punct": null + }, + "ud": { + "u": 0.97838692672641, + "t": 0.97838692672641, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.407795371498173, + "t": 0.6900431640719725, + "punct": null + } + }, + "sl": { + "opus100": { + "u": 0.9313338595106551, + "t": 0.9414595028067361, + "punct": null + }, + "ud": { + "u": 0.9715762273901808, + "t": 0.971551724137931, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.39959259887964693, + "t": 0.7119747583512798, + "punct": null + }, + "short-sequences": { + "u": 0.6735666441769254, + "t": 0.7148835073163156, + "punct": null, + "acc_u": 0.10410557184750734, + "acc_t": 0.17925219941348974, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.48320903413278893, + "t": 0.5809269458859528, + "punct": null, + "acc_u": 0.024560117302052785, + "acc_t": 0.08321114369501466, + "acc_punct": null + } + }, + "sq": { + "opus100": { + "u": 0.9116957541026308, + "t": 0.9264069264069265, + "punct": null + }, + "ud": { + "u": 1.0, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6169142015465816, + "t": 0.6585610070090117, + "punct": null + } + }, + "sr": { + "opus100": { + "u": 0.9487726787620064, + "t": 0.9539207760711399, + "punct": null + }, + "ud": { + "u": 0.9773462783171522, + "t": 0.9862433862433864, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5088917235686952, + "t": 0.6789079023264757, + "punct": null + }, + "short-sequences": { + "u": 0.6892181368296928, + "t": 0.8297268992581492, + "punct": null, + "acc_u": 0.22916666666666666, + "acc_t": 0.4635416666666667, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.5485792727670525, + "t": 0.6365032392376143, + "punct": null, + "acc_u": 0.03125, + "acc_t": 0.109375, + "acc_punct": null + } + }, + "sv": { + "opus100": { + "u": 0.9225571725571725, + "t": 0.9338274219163579, + "punct": null + }, + "ud": { + "u": 0.9515789473684211, + "t": 0.9488126649076517, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6317391016736125, + "t": 0.7285662356545674, + "punct": null + } + }, + "ta": { + "ersatz": { + "u": 0.9599144842330305, + "t": 0.952054794520548, + "punct": null + }, + "opus100": { + "u": 0.5884297520661157, + "t": 0.633726490277335, + "punct": null + }, + "ud": { + "u": 1.0, + "t": 1.0, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.47794077548126734, + "t": 0.5829865157316464, + "punct": null + } + }, + "te": { + "opus100": { + "u": 0.7399942412899512, + "t": 0.7385844748858448, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5938931297709924, + "t": 0.6093882392814778, + "punct": null + } + }, + "tg": { + "opus100": { + "u": 0.7634168157423971, + "t": 0.8513948497854077, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6530612244897959, + "t": 0.6941896024464832, + "punct": null + } + }, + "th": { + "opus100": { + "u": 0.6694882647171989, + "t": 0.7045912653975364, + "punct": null + }, + "ud": { + "u": 0.7835787594823739, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5192164641705926, + "t": 0.6254125412541255, + "punct": null + } + }, + "tr": { + "ersatz": { + "u": 0.947331087072176, + "t": 0.9503365472075678, + "punct": null + }, + "opus100": { + "u": 0.9317634466149318, + "t": 0.9420723415828121, + "punct": null + }, + "ud": { + "u": 0.958783120706575, + "t": 0.9649298597194388, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6701305284501331, + "t": 0.7347307190853476, + "punct": null + } + }, + "uk": { + "opus100": { + "u": 0.8908811475409836, + "t": 0.9103043246129204, + "punct": null + }, + "ud": { + "u": 0.928921568627451, + "t": 0.9318463444857497, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.49938875305623476, + "t": 0.7039457022742238, + "punct": null + } + }, + "ur": { + "opus100": { + "u": 0.6061713357693869, + "t": 0.6077752900468146, + "punct": null + }, + "ud": { + "u": 0.9927007299270073, + "t": 0.9937369519832986, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6606998570451862, + "t": 0.6598447424135497, + "punct": null + } + }, + "uz": { + "opus100": { + "u": 0.7567567567567567, + "t": 0.7833122629582806, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5741239892183289, + "t": 0.7181467181467182, + "punct": null + } + }, + "vi": { + "opus100": { + "u": 0.9162699523942873, + "t": 0.9211050982626033, + "punct": null + }, + "ud": { + "u": 0.8712629652226969, + "t": 0.9683501683501683, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6070424257244162, + "t": 0.6494472165150181, + "punct": null + } + }, + "xh": { + "opus100": { + "u": 0.7743181269611391, + "t": 0.7997970058360823, + "punct": null + } + }, + "yi": { + "opus100": { + "u": 0.6756007393715343, + "t": 0.6989773232547799, + "punct": null + } + }, + "yo": { + "opus100": { + "u": 0.7332394219230971, + "t": null, + "punct": null + }, + "ud": { + "u": 0.7032418952618454, + "t": null, + "punct": null + } + }, + "zh": { + "ersatz": { + "u": 0.791891035793475, + "t": 0.8031788079470199, + "punct": null + }, + "opus100": { + "u": 0.5267883867105657, + "t": 0.6068881190136539, + "punct": null + }, + "ud": { + "u": 0.98989898989899, + "t": 0.9921787709497207, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.22326510234648025, + "t": 0.49081219356214023, + "punct": null + } + }, + "zu": { + "opus100": { + "u": 0.8330424665503201, + "t": 0.8492533107917724, + "punct": null + } + }, + "tr-de": { + "code-switching": { + "u": 0.9723905723905724, + "t": 0.9882515549412578, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.11083123425692697, + "t": 0.3655770513675784, + "punct": null + } + }, + "es-en": { + "code-switching": { + "u": 0.927186557518311, + "t": 0.9379674439067311, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.0, + "t": 0.4881936245572609, + "punct": null + } + }, + "vi-en": { + "code-switching": { + "u": 0.07395993836671803, + "t": 0.4794151596767987, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.1566352429296592, + "t": 0.5484588496981253, + "punct": null + } + }, + "en-de": { + "code-switching": { + "u": 0.6107226107226107, + "t": 0.8222591362126246, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.546099290780142, + "t": 0.6120481927710844, + "punct": null + }, + "short-sequences": { + "u": 0.5184446151775264, + "t": 0.7243105177126854, + "punct": null, + "acc_u": 0.0997920997920998, + "acc_t": 0.24532224532224534, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.5990563164391406, + "t": 0.6642961865329301, + "punct": null, + "acc_u": 0.060291060291060294, + "acc_t": 0.12681912681912683, + "acc_punct": null + } + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-12l.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-12l.json new file mode 100644 index 0000000000000000000000000000000000000000..a37e6bcc56f17b17a7678c69917362b9471991c2 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-12l.json @@ -0,0 +1,2450 @@ +{ + "af": { + "opus100": { + "u": 0.7500764759865403, + "t": 0.8072471061902365, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7113202324937725, + "t": 0.7135531135531135, + "punct": null + }, + "ud": { + "u": 0.9947780678851176, + "t": 0.9947780678851176, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.9207547169811321, + "t": 0.9033149171270718, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7332511302918208, + "t": 0.7344184200079397, + "punct": null + } + }, + "am": { + "opus100": { + "u": 0.6632272857552308, + "t": 0.667027905716608, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.598644578313253, + "t": 0.6335208098987626, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.588686481303931, + "t": 0.6037735849056604, + "punct": null + } + }, + "ar": { + "ersatz": { + "u": 0.9052396878483836, + "t": 0.9077212806026365, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.6932350971198928, + "t": 0.6840579710144927, + "punct": null + }, + "opus100": { + "u": 0.7674291938997821, + "t": 0.7642276422764228, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6791290961073235, + "t": 0.7123486682808716, + "punct": null + }, + "ud": { + "u": 0.8596620132255695, + "t": 0.8599545798637397, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7423750811161582, + "t": 0.7881548974943051, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.630438913167395, + "t": 0.6305954140248843, + "punct": null + } + }, + "az": { + "opus100": { + "u": 0.7804539138490043, + "t": 0.8011664899257689, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7400511985105889, + "t": 0.7557036657267368, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7177768696362893, + "t": 0.7285238623751387, + "punct": null + } + }, + "be": { + "opus100": { + "u": 0.7271721084670725, + "t": 0.7539111000744971, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7400503778337532, + "t": 0.7409565428502064, + "punct": null + }, + "ud": { + "u": 0.9029322548028311, + "t": 0.8973981345115366, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7095681625740897, + "t": 0.7198135198135198, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6981164679453948, + "t": 0.7022792022792022, + "punct": null + } + }, + "bg": { + "opus100": { + "u": 0.9432756324900133, + "t": 0.9452018176958032, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7599225556631171, + "t": 0.7620664564637402, + "punct": null + }, + "ud": { + "u": 0.9895261845386534, + "t": 0.9881422924901185, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7982683982683982, + "t": 0.7960327727468737, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7048669907685586, + "t": 0.7159994218817748, + "punct": null + } + }, + "bn": { + "opus100": { + "u": 0.8294029101856498, + "t": 0.8535542490646714, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.48019691206086373, + "t": 0.48305489260143203, + "punct": null + }, + "ud": { + "u": 1.0, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5806451612903226, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4390524757361408, + "t": 0.4396167189823228, + "punct": null + } + }, + "ca": { + "opus100": { + "u": 0.8992768595041322, + "t": 0.9096671949286845, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7061946902654866, + "t": 0.7167630057803468, + "punct": null + }, + "ud": { + "u": 0.9811550151975683, + "t": 0.9829085457271365, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7792943600309039, + "t": 0.8018275271273558, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6913411492560854, + "t": 0.6959902794653705, + "punct": null + } + }, + "ceb": { + "ud": { + "u": 0.9970501474926253, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.8125000000000001, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.576271186440678, + "t": 0.5904761904761905, + "punct": null + } + }, + "cs": { + "ersatz": { + "u": 0.9280162216965191, + "t": 0.9579993587688362, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7770045385779123, + "t": 0.777496839443742, + "punct": null + }, + "opus100": { + "u": 0.9048856548856549, + "t": 0.9142253892847717, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7336028751123091, + "t": 0.7593350999759093, + "punct": null + }, + "ud": { + "u": 0.9123587812393016, + "t": 0.9238918316141622, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7610023816920368, + "t": 0.7602659366445053, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6969182768624446, + "t": 0.7107168544713497, + "punct": null + } + }, + "cy": { + "opus100": { + "u": 0.7372747391716724, + "t": 0.7783995523223279, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6709248850281042, + "t": 0.6644182124789207, + "punct": null + }, + "ud": { + "u": 0.9929906542056075, + "t": 0.9947582993593477, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7296296296296296, + "t": 0.7682539682539683, + "punct": null + } + }, + "da": { + "opus100": { + "u": 0.9226736566186109, + "t": 0.9310344827586208, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7781504551988501, + "t": 0.7924717691342535, + "punct": null + }, + "ud": { + "u": 0.9375619425173439, + "t": 0.9307923771313942, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.8260481712756467, + "t": 0.8316633266533066, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7484212670605012, + "t": 0.747236623300401, + "punct": null + } + }, + "de": { + "ersatz": { + "u": 0.9686073059360731, + "t": 0.9702970297029704, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.8440414507772019, + "t": 0.8469038208168643, + "punct": null + }, + "opus100": { + "u": 0.8225966303270564, + "t": 0.856103896103896, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6723404255319149, + "t": 0.7784272051009565, + "punct": null + }, + "ud": { + "u": 0.965675057208238, + "t": 0.9648414985590777, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.8366211431461811, + "t": 0.8509052183173589, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7656202065650884, + "t": 0.7658449809402794, + "punct": null + }, + "legal-all-laws": { + "u": 0.8658224319818021, + "t": 0.8732951149295006, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.763142906143795, + "t": 0.7668318453920858, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.6999004657736407, + "t": 0.7838123009084484, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.5870611033799433, + "t": 0.5963228141341896, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "el": { + "opus100": { + "u": 0.9316442333069411, + "t": 0.9412080536912751, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.709083119108826, + "t": 0.7436578883788355, + "punct": null + }, + "ud": { + "u": 0.9778325123152709, + "t": 0.976629766297663, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.8148148148148148, + "t": 0.8339307048984468, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.705251770259638, + "t": 0.7040539898293808, + "punct": null + } + }, + "en": { + "ersatz": { + "u": 0.9709853490376329, + "t": 0.9676139182198286, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7345801830481496, + "t": 0.7506199078993977, + "punct": null + }, + "opus100": { + "u": 0.9232854432095419, + "t": 0.9134640522875817, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.8155727476915399, + "t": 0.8023952095808384, + "punct": null + }, + "ud": { + "u": 0.9248554913294798, + "t": 0.9406345957011258, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7028372324539572, + "t": 0.7090909090909091, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7088539711481738, + "t": 0.713005157994892, + "punct": null + }, + "legal-all-judgements": { + "u": 0.8468375201611653, + "t": 0.8700718423337438, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.6781465425894244, + "t": 0.6880411304178919, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "eo": { + "opus100": { + "u": 0.9188172043010753, + "t": 0.922077922077922, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.8280383257690368, + "t": 0.8278833967046895, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6686825053995681, + "t": 0.6856709628506444, + "punct": null + } + }, + "es": { + "ersatz": { + "u": 0.980723333945291, + "t": null, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7494086106292384, + "t": null, + "punct": null + }, + "opus100": { + "u": 0.9266490765171503, + "t": 0.9318423855165069, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7221731448763251, + "t": 0.75, + "punct": null + }, + "ud": { + "u": 0.9588330632090762, + "t": 0.9581032802858072, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7385187151579505, + "t": 0.7761664564943254, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6821370180897631, + "t": 0.687244480784955, + "punct": null + }, + "legal-all-laws": { + "u": 0.7324895492686906, + "t": 0.8664986627202442, + "punct": null, + "acc_u": 0.01092896174863388, + "acc_t": 0.17486338797814208, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.7549703281061608, + "t": 0.7649450233393279, + "punct": null, + "acc_u": 0.03278688524590164, + "acc_t": 0.04371584699453552, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.7250387644818482, + "t": 0.7627780602568561, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.6109240198183359, + "t": 0.6126634906527547, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "et": { + "ersatz": { + "u": 0.9593267882187938, + "t": 0.9479107040641098, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.8011782032400588, + "t": 0.7783783783783783, + "punct": null + }, + "opus100": { + "u": 0.8658265381764271, + "t": 0.9054933611038792, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6566191446028513, + "t": 0.7086577022882755, + "punct": null + }, + "ud": { + "u": 0.9411346256446735, + "t": 0.952823691460055, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7519736842105262, + "t": 0.7511045655375552, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7342810278840897, + "t": 0.7443103005394297, + "punct": null + }, + "short-sequences": { + "u": 0.8854222944374401, + "t": 0.8931732264121146, + "punct": null, + "acc_u": 0.43842364532019706, + "acc_t": 0.4729064039408867, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.7362542299969711, + "t": 0.7380598209413246, + "punct": null, + "acc_u": 0.09852216748768473, + "acc_t": 0.09359605911330049, + "acc_punct": null + } + }, + "eu": { + "opus100": { + "u": 0.8454925079832966, + "t": 0.8714285714285714, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.608955223880597, + "t": 0.6237320122670441, + "punct": null + }, + "ud": { + "u": 0.9761467889908257, + "t": 0.9764885496183205, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7030545818728093, + "t": 0.7252681764004768, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6195403351341452, + "t": 0.6313638963798317, + "punct": null + } + }, + "fa": { + "opus100": { + "u": 0.6582742046234837, + "t": 0.6610288935870332, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6263490124210955, + "t": 0.6575771122038445, + "punct": null + }, + "ud": { + "u": 0.9886706948640485, + "t": 0.9946808510638299, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.9336203803372802, + "t": 0.9511926605504588, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6913663518982464, + "t": 0.6912597140938309, + "punct": null + } + }, + "fi": { + "ersatz": { + "u": 0.9888579387186629, + "t": 0.9870630333058079, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7859976662777131, + "t": 0.8128144029653165, + "punct": null + }, + "opus100": { + "u": 0.9309435951502372, + "t": 0.9392235609103079, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7619271445358401, + "t": 0.7751450676982592, + "punct": null + }, + "ud": { + "u": 0.942763397739701, + "t": 0.9475574712643678, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7862423657987786, + "t": 0.7875335120643432, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7042482003447228, + "t": 0.7058713886300093, + "punct": null + } + }, + "fr": { + "ersatz": { + "u": 0.9749582637729549, + "t": 0.9705782888062224, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7515680392691573, + "t": 0.7686768676867686, + "punct": null + }, + "opus100": { + "u": 0.9024896265560166, + "t": null, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6981616075245832, + "t": null, + "punct": null + }, + "ud": { + "u": 0.976315789473684, + "t": 0.9774236387782205, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7286012526096033, + "t": 0.7885572139303482, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7149553908967186, + "t": 0.7156251534043494, + "punct": null + }, + "legal-all-laws": { + "u": 0.9256451789086151, + "t": 0.9438731149022712, + "punct": null, + "acc_u": 0.7058823529411765, + "acc_t": 0.7233115468409586, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.8046378931522016, + "t": 0.8267105859583278, + "punct": null, + "acc_u": 0.3159041394335512, + "acc_t": 0.38344226579520696, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.8509461042330533, + "t": 0.8486306851059219, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.6487591856661709, + "t": 0.6488700192223228, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "fy": { + "opus100": { + "u": 0.6646626586506346, + "t": 0.6951258362535839, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6992896606156275, + "t": 0.6700971983990852, + "punct": null + } + }, + "ga": { + "opus100": { + "u": 0.8514698298091801, + "t": 0.8461735346813413, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.59913112164297, + "t": 0.6374589266155531, + "punct": null + }, + "ud": { + "u": 0.8629550321199143, + "t": 0.91156462585034, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5538945712037766, + "t": 0.6492027334851936, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5170068027210885, + "t": 0.528, + "punct": null + } + }, + "gd": { + "opus100": { + "u": 0.8530534351145039, + "t": 0.859542697153523, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6474763406940063, + "t": 0.6690486824475212, + "punct": null + }, + "ud": { + "u": 0.7058823529411764, + "t": 0.7417218543046357, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5703592814371257, + "t": 0.5928393005828477, + "punct": null + } + }, + "gl": { + "opus100": { + "u": 0.8968725768932541, + "t": 0.9039518450667365, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7088025741208916, + "t": 0.7190745986779981, + "punct": null + }, + "ud": { + "u": 0.9888579387186631, + "t": 0.9902912621359222, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7493975903614457, + "t": 0.7463479415670651, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6863018100032129, + "t": 0.6959216805234417, + "punct": null + } + }, + "gu": { + "ersatz": { + "u": 0.9115492957746479, + "t": 0.920245398773006, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.817891373801917, + "t": 0.8105677346824058, + "punct": null + }, + "opus100": { + "u": 0.7568647029455815, + "t": 0.7669795692987299, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5894319027536592, + "t": 0.5809128630705394, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.47425435456931514, + "t": 0.4715804181845401, + "punct": null + } + }, + "ha": { + "opus100": { + "u": 0.8891149542217701, + "t": 0.8991924980463663, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5551382724479345, + "t": 0.62570104852475, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4444444444444444, + "t": 0.4444444444444444, + "punct": null + } + }, + "he": { + "opus100": { + "u": 0.900103519668737, + "t": 0.9143161255987228, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6925668088928811, + "t": 0.6961706030726899, + "punct": null + }, + "ud": { + "u": 0.9731258840169731, + "t": 0.9750692520775623, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7933673469387754, + "t": 0.797979797979798, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6524591831544683, + "t": 0.6564690885914596, + "punct": null + } + }, + "hi": { + "ersatz": { + "u": 0.9657155496571554, + "t": 0.9523166891587944, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.8202224469160767, + "t": 0.8159095848728537, + "punct": null + }, + "opus100": { + "u": 0.699409681227863, + "t": 0.7063197026022305, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5100744236703576, + "t": 0.5594723675233114, + "punct": null + }, + "ud": { + "u": 0.977088948787062, + "t": 0.9963684384285243, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.9144781144781146, + "t": 0.9265573770491804, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5642032899582617, + "t": 0.5705635569395787, + "punct": null + } + }, + "hu": { + "opus100": { + "u": 0.9351265822784811, + "t": 0.9438502673796791, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7352806937471474, + "t": 0.7405671431919382, + "punct": null + }, + "ud": { + "u": 0.9595959595959594, + "t": 0.9702970297029703, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6797642436149312, + "t": 0.6922279792746114, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7007836238605468, + "t": 0.7043587513288876, + "punct": null + } + }, + "hy": { + "opus100": { + "u": 0.8608920120464649, + "t": null, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7462624004471147, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9702602230483272, + "t": 0.9732225300092336, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7233304423243713, + "t": 0.7238095238095238, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6930902497985495, + "t": 0.6973249748767766, + "punct": null + } + }, + "id": { + "opus100": { + "u": 0.8863815271582263, + "t": 0.9007015650296817, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7076023391812866, + "t": 0.6955706585423015, + "punct": null + }, + "ud": { + "u": 0.9894620077648364, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.712082262210797, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6868627737938436, + "t": 0.6864718405264176, + "punct": null + } + }, + "ig": { + "opus100": { + "u": 0.8502604166666666, + "t": 0.8470432771721176, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.552260573650948, + "t": 0.5548345230369889, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3816254416961131, + "t": 0.3660714285714286, + "punct": null + } + }, + "is": { + "opus100": { + "u": 0.9419009370816599, + "t": 0.9468834688346883, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6512141280353201, + "t": 0.6831560722235963, + "punct": null + }, + "ud": { + "u": 0.8856199339537677, + "t": 0.8665826954752447, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.621559225714793, + "t": 0.6142024824791016, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6938511326860841, + "t": 0.6861564918314703, + "punct": null + } + }, + "it": { + "opus100": { + "u": 0.8936170212765957, + "t": 0.9057387691508698, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6665299425758818, + "t": 0.7055016181229774, + "punct": null + }, + "ud": { + "u": 0.9674523007856342, + "t": 0.935064935064935, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.766990291262136, + "t": 0.7731755424063115, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7004598770216504, + "t": 0.69947242206235, + "punct": null + }, + "legal-all-laws": { + "u": 0.8203894181601638, + "t": 0.8230478559495904, + "punct": null, + "acc_u": 0.4928977272727273, + "acc_t": 0.5454545454545454, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.557304060462588, + "t": 0.5579979181076697, + "punct": null, + "acc_u": 0.03977272727272727, + "acc_t": 0.045454545454545456, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.8555049651388689, + "t": 0.8559927720515405, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.5685242528371491, + "t": 0.5741551972329544, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "ja": { + "ersatz": { + "u": 0.8605024051309459, + "t": 0.8257403189066059, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7840629611411707, + "t": 0.7544159544159545, + "punct": null + }, + "opus100": { + "u": 0.9085314685314685, + "t": 0.9080748812517463, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.8819599109131402, + "t": 0.8793335124966407, + "punct": null + }, + "ud": { + "u": 0.9594320486815416, + "t": 0.9710743801652894, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.9090909090909091, + "t": 0.9046153846153847, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.9263266950615864, + "t": 0.9283471310305453, + "punct": null + } + }, + "jv": { + "ud": { + "u": 0.9866814650388457, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5800604229607251, + "t": null, + "punct": null + } + }, + "ka": { + "opus100": { + "u": 0.7604280410569993, + "t": 0.917211328976035, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.3333909138020384, + "t": 0.33210195788695973, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6476325231189044, + "t": 0.6491855757461633, + "punct": null + } + }, + "kk": { + "ersatz": { + "u": 0.9624573378839589, + "t": 0.9672316384180791, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.8586147681740125, + "t": 0.8457415128052412, + "punct": null + }, + "opus100": { + "u": 0.7640117994100296, + "t": 0.7612826603325415, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7598402738163148, + "t": 0.7599200685127033, + "punct": null + }, + "ud": { + "u": 0.9618736383442265, + "t": 0.9169510807736063, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.8331441543700341, + "t": 0.7815384615384615, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7301982568719473, + "t": 0.7492316637594484, + "punct": null + } + }, + "km": { + "ersatz": { + "u": 0.8959512407488027, + "t": 0.9458937198067633, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.6629270780214176, + "t": 0.802701398938736, + "punct": null + }, + "opus100": { + "u": 0.7521141649048625, + "t": 0.7505668934240363, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7569925583782395, + "t": 0.7733172351343193, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.8392857142857144, + "t": 0.8501026694045174, + "punct": null + } + }, + "kn": { + "opus100": { + "u": 0.7559912854030502, + "t": 0.7344701583434835, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6340179041600842, + "t": 0.6381059751972943, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.482708409173644, + "t": 0.47611527832609557, + "punct": null + } + }, + "ko": { + "opus100": { + "u": 0.7891891891891892, + "t": 0.8003076134324532, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7429116035263282, + "t": 0.7536800785083416, + "punct": null + }, + "ud": { + "u": 0.991953182150695, + "t": 0.996116504854369, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.95499119939653, + "t": 0.984973339796413, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7516809861785579, + "t": 0.7504375863657301, + "punct": null + } + }, + "ku": { + "opus100": { + "u": 0.810540184453228, + "t": 0.7486321210170583, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6050280490338666, + "t": 0.6689873417721519, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.38557711150303736, + "t": 0.3880878256595117, + "punct": null + } + }, + "ky": { + "opus100": { + "u": 0.8816248809901618, + "t": 0.8820189274447949, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7485786481364497, + "t": 0.7480190174326465, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7645502645502645, + "t": 0.7621359223300971, + "punct": null + } + }, + "la": { + "ud": { + "u": 0.6729297146833682, + "t": 0.8844563366577476, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.37648054145516074, + "t": 0.7647355163727959, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5, + "t": 0.48, + "punct": null + } + }, + "lt": { + "ersatz": { + "u": 0.9693877551020408, + "t": 0.9586681974741676, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7645709040844424, + "t": 0.7982878544676297, + "punct": null + }, + "opus100": { + "u": 0.8548107840712342, + "t": 0.8766350346242626, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.642061855670103, + "t": 0.6862281116895409, + "punct": null + }, + "ud": { + "u": 0.9594034797017399, + "t": 0.9689034369885434, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6919770773638969, + "t": 0.6902654867256637, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.696107541974842, + "t": 0.6989010989010989, + "punct": null + } + }, + "lv": { + "ersatz": { + "u": 0.9770240700218819, + "t": 0.9725228975853456, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7730530339225993, + "t": 0.7637655417406749, + "punct": null + }, + "opus100": { + "u": 0.8446293124541228, + "t": 0.8766066838046275, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6395301741595787, + "t": 0.7115148539160323, + "punct": null + }, + "ud": { + "u": 0.9515108924806746, + "t": 0.9649083088068825, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6847084708470847, + "t": 0.6862408915559365, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.703201361814288, + "t": 0.7135238095238094, + "punct": null + } + }, + "mg": { + "opus100": { + "u": 0.9245082402977138, + "t": 0.9276368491321761, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.530507605537515, + "t": 0.6050534941953107, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5941043083900227, + "t": 0.5843621399176954, + "punct": null + } + }, + "mk": { + "opus100": { + "u": 0.9390115667718191, + "t": 0.94263811789585, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7091778638123433, + "t": 0.7085792101679529, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6954328342188589, + "t": 0.7001020556932497, + "punct": null + } + }, + "ml": { + "opus100": { + "u": 0.781037315184229, + "t": 0.8255127844900252, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5842696629213483, + "t": 0.6253731343283583, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5295476158130689, + "t": 0.5344, + "punct": null + } + }, + "mn": { + "opus100": { + "u": 0.4932682926829268, + "t": null, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.8213820078226858, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.808678275763631, + "t": 0.8236091558475416, + "punct": null + } + }, + "mr": { + "opus100": { + "u": 0.9262361523912457, + "t": 0.9312638580931264, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.687759336099585, + "t": 0.6920433518371663, + "punct": null + }, + "ud": { + "u": 0.9397590361445782, + "t": 0.9523809523809523, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5974025974025974, + "t": 0.6190476190476191, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4707112970711297, + "t": 0.4705176551251285, + "punct": null + } + }, + "ms": { + "opus100": { + "u": 0.8812140240711669, + "t": 0.8816753926701569, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6748554913294798, + "t": 0.6716733161229758, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6893819334389858, + "t": 0.6905848787446506, + "punct": null + } + }, + "mt": { + "opus100": { + "u": 0.6879606879606881, + "t": 0.8197059582151148, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.44244149272612265, + "t": 0.5047454702329595, + "punct": null + }, + "ud": { + "u": 0.896774193548387, + "t": 0.8951351351351352, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.4652206432311144, + "t": 0.4966698382492864, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4579439252336449, + "t": 0.4761904761904762, + "punct": null + } + }, + "my": { + "opus100": { + "u": 0.8, + "t": 0.8274067649609714, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.8004115226337449, + "t": 0.8269340974212034, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.8843176038428935, + "t": 0.8927509185280224, + "punct": null + } + }, + "ne": { + "opus100": { + "u": 0.7312876398049899, + "t": 0.720143669560012, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7180049328583172, + "t": 0.7120778477389812, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.643934122013454, + "t": 0.6441558441558441, + "punct": null + } + }, + "nl": { + "opus100": { + "u": 0.9240769630785233, + "t": null, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7704497786063855, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9182879377431906, + "t": 0.9486238532110092, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.8021778584392014, + "t": 0.7978533094812166, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.763613068545804, + "t": 0.7719924524453057, + "punct": null + } + }, + "no": { + "opus100": { + "u": 0.9478774852229984, + "t": 0.9486421080935735, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.811460731644922, + "t": 0.7967757694186615, + "punct": null + }, + "ud": { + "u": 0.982323964068386, + "t": 0.9879793932455638, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.8600979858464888, + "t": 0.8600217864923747, + "punct": null + } + }, + "pa": { + "opus100": { + "u": 0.7253914988814317, + "t": 0.7250932338838572, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6321243523316061, + "t": 0.6473656755346896, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5997719498289623, + "t": 0.6138888888888889, + "punct": null + } + }, + "pl": { + "ersatz": { + "u": 0.9288174512055108, + "t": 0.9226327944572749, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7870646766169154, + "t": 0.7672663958212421, + "punct": null + }, + "opus100": { + "u": 0.9313464608834486, + "t": 0.9346195069667738, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.745404411764706, + "t": 0.7633136094674556, + "punct": null + }, + "ud": { + "u": 0.9707832064817088, + "t": 0.9735998026153466, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7633844215830359, + "t": 0.7929936305732483, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7092058257763122, + "t": 0.7232493812782065, + "punct": null + } + }, + "ps": { + "ersatz": { + "u": 0.9164556962025316, + "t": 0.9301389168512182, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7656628591208031, + "t": 0.7955265610438023, + "punct": null + }, + "opus100": { + "u": 0.7628988965105876, + "t": 0.7623850489469001, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7369985141158989, + "t": 0.7385524372230429, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6182136602451839, + "t": 0.615916955017301, + "punct": null + } + }, + "pt": { + "opus100": { + "u": 0.9158829676071055, + "t": 0.9243386243386242, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7138488422892092, + "t": 0.747278750591576, + "punct": null + }, + "ud": { + "u": 0.9568627450980393, + "t": 0.9646271510516252, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7334685598377282, + "t": 0.7588339222614839, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7177824267782427, + "t": 0.7231542788868424, + "punct": null + }, + "legal-all-laws": { + "u": 0.5461879341997217, + "t": 0.537572595432317, + "punct": null, + "acc_u": 0.017241379310344827, + "acc_t": 0.017241379310344827, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.5642605877333239, + "t": 0.5642739377924899, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.7896479550166049, + "t": 0.7844919926448092, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.629781108550879, + "t": 0.6341641848223347, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "ro": { + "ersatz": { + "u": 0.9756771697070203, + "t": 0.959090909090909, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7443486366814263, + "t": 0.725181598062954, + "punct": null + }, + "opus100": { + "u": 0.921993216801461, + "t": 0.9370666666666667, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6955955738771968, + "t": 0.7011135857461024, + "punct": null + }, + "ud": { + "u": 0.7586206896551725, + "t": 0.8676684440135725, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.46604441583521083, + "t": 0.5045289855072463, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6943778601002397, + "t": 0.7001441614608361, + "punct": null + } + }, + "ru": { + "ersatz": { + "u": 0.9743589743589745, + "t": 0.9786995515695067, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.8308483290488432, + "t": 0.8427397260273972, + "punct": null + }, + "opus100": { + "u": 0.8705054060849887, + "t": null, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6501885211562631, + "t": null, + "punct": null + }, + "ud": { + "u": 0.848249027237354, + "t": 0.8436123348017621, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6430282702443699, + "t": 0.6351851851851852, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7159482052122603, + "t": 0.7316377232252669, + "punct": null + } + }, + "si": { + "opus100": { + "u": 0.8103186646433992, + "t": 0.8224142737663787, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.690497737556561, + "t": 0.7000241721053905, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5836909871244634, + "t": 0.5916824196597352, + "punct": null + } + }, + "sk": { + "opus100": { + "u": 0.9221118661787768, + "t": 0.9374160623153371, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7310529845741114, + "t": 0.7510020040080161, + "punct": null + }, + "ud": { + "u": 0.9590958019375673, + "t": 0.9749216300940439, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.8249322493224932, + "t": 0.8375192209123525, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6987050983366744, + "t": 0.7128911857594028, + "punct": null + } + }, + "sl": { + "opus100": { + "u": 0.9288330716902145, + "t": 0.9344608879492601, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7306205955899069, + "t": 0.7546057479734708, + "punct": null + }, + "ud": { + "u": 0.9624125874125874, + "t": 0.9672131147540983, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7913322632423755, + "t": 0.7911468812877264, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7224157955865272, + "t": 0.7323815309842041, + "punct": null + }, + "short-sequences": { + "u": 0.7918601790481132, + "t": 0.7830115594250628, + "punct": null, + "acc_u": 0.34384164222873903, + "acc_t": 0.27712609970674484, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.6239909072085053, + "t": 0.6269180729935142, + "punct": null, + "acc_u": 0.12573313782991202, + "acc_t": 0.12903225806451613, + "acc_punct": null + } + }, + "sq": { + "opus100": { + "u": 0.914854597851716, + "t": 0.9237788513150832, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6966688727112288, + "t": 0.7140186915887851, + "punct": null + }, + "ud": { + "u": 1.0, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.8672566371681415, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6846184819810751, + "t": 0.6833601796261043, + "punct": null + } + }, + "sr": { + "opus100": { + "u": 0.941956003180493, + "t": 0.9472, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7156549520766773, + "t": 0.7259085580304808, + "punct": null + }, + "ud": { + "u": 0.981541802388708, + "t": 0.9819341126461212, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7989130434782609, + "t": 0.8509803921568628, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7021186887319489, + "t": 0.7057986819022333, + "punct": null + }, + "short-sequences": { + "u": 0.9130309505309505, + "t": 0.9198844847282347, + "punct": null, + "acc_u": 0.65625, + "acc_t": 0.6875, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.6556993102392678, + "t": 0.6822591440601308, + "punct": null, + "acc_u": 0.13541666666666666, + "acc_t": 0.16666666666666666, + "acc_punct": null + } + }, + "sv": { + "opus100": { + "u": 0.9223553934340802, + "t": 0.9264590421355667, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7774163568773235, + "t": 0.8025477707006369, + "punct": null + }, + "ud": { + "u": 0.9527851458885942, + "t": 0.953781512605042, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.813314037626628, + "t": 0.8131436978911231, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7424311577666209, + "t": 0.7423702705304707, + "punct": null + } + }, + "ta": { + "ersatz": { + "u": 0.9743589743589743, + "t": 0.9704075935231714, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.8439538384345208, + "t": 0.8602860286028603, + "punct": null + }, + "opus100": { + "u": 0.6751918158567775, + "t": 0.6853731343283582, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5151705377694079, + "t": 0.5159253945480631, + "punct": null + }, + "ud": { + "u": 1.0, + "t": 1.0, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.8947368421052632, + "t": 0.8807339449541284, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5396441758979523, + "t": 0.567483438422859, + "punct": null + } + }, + "te": { + "opus100": { + "u": 0.7892401552967276, + "t": 0.7846778874056878, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6298290798407867, + "t": 0.6291374728195216, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.601318235592361, + "t": 0.5970976683515409, + "punct": null + } + }, + "tg": { + "opus100": { + "u": 0.8111111111111111, + "t": 0.8589290568089154, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6499889307062209, + "t": 0.6716112531969309, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7137931034482757, + "t": 0.7193277310924369, + "punct": null + } + }, + "th": { + "opus100": { + "u": 0.6883168316831684, + "t": 0.7358446960942917, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6921690366513119, + "t": 0.7225512528473804, + "punct": null + }, + "ud": { + "u": 0.8642964446670005, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.8384879725085911, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6083587696642404, + "t": 0.6418242491657397, + "punct": null + } + }, + "tr": { + "ersatz": { + "u": 0.9399189089568744, + "t": 0.948509485094851, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.8181981657975185, + "t": 0.8184937691890917, + "punct": null + }, + "opus100": { + "u": 0.9329414907827944, + "t": 0.9378196500672948, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7475283337352303, + "t": 0.7457142857142858, + "punct": null + }, + "ud": { + "u": 0.960960960960961, + "t": 0.96048024012006, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7197549770290965, + "t": 0.7371202113606341, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7294356129307586, + "t": 0.7349415568266601, + "punct": null + } + }, + "uk": { + "opus100": { + "u": 0.9083830781209447, + "t": 0.9130434782608696, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7366705471478463, + "t": 0.7386629266012156, + "punct": null + }, + "ud": { + "u": 0.920152091254753, + "t": 0.9287042777433354, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6826547685443392, + "t": 0.6880434782608695, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.714885922459182, + "t": 0.7196580375582345, + "punct": null + } + }, + "ur": { + "opus100": { + "u": 0.6715, + "t": 0.6131595029537584, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5940555338287056, + "t": 0.6623586429725363, + "punct": null + }, + "ud": { + "u": 0.9842271293375394, + "t": 0.9852941176470589, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.9357218124341412, + "t": 0.9431230610134436, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6473086994471923, + "t": 0.6467291924733086, + "punct": null + } + }, + "uz": { + "opus100": { + "u": 0.7858823529411765, + "t": 0.7924528301886793, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7269848450576794, + "t": 0.7572102779234399, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7196882217090068, + "t": 0.7305678614579137, + "punct": null + } + }, + "vi": { + "opus100": { + "u": 0.9263565891472868, + "t": 0.9265317438314388, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.673801768264309, + "t": 0.6802325581395349, + "punct": null + }, + "ud": { + "u": 0.9434464404524285, + "t": 0.9504685408299867, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6753569211669771, + "t": 0.6657807308970098, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6701928162715777, + "t": 0.670947655185834, + "punct": null + } + }, + "xh": { + "opus100": { + "u": 0.8156572335361015, + "t": 0.8134347940173183, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5145505097312327, + "t": 0.5632070831283816, + "punct": null + } + }, + "yi": { + "opus100": { + "u": 0.738095238095238, + "t": 0.696522153406384, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7287623975851659, + "t": 0.7284427284427284, + "punct": null + } + }, + "yo": { + "opus100": { + "u": 0.766677340164372, + "t": null, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.3774142152100416, + "t": null, + "punct": null + }, + "ud": { + "u": 0.7877094972067038, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.27621113521330437, + "t": null, + "punct": null + } + }, + "zh": { + "ersatz": { + "u": 0.7843137254901961, + "t": 0.8730489073881372, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.6310904872389791, + "t": 0.7394422310756972, + "punct": null + }, + "opus100": { + "u": 0.7393162393162394, + "t": 0.7118884424485937, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.588265306122449, + "t": 0.6016466117796074, + "punct": null + }, + "ud": { + "u": 0.9691428571428572, + "t": 0.9910714285714286, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.8351648351648352, + "t": 0.8377192982456141, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5887359531883768, + "t": 0.601757551067916, + "punct": null + } + }, + "zu": { + "opus100": { + "u": 0.8009981285090455, + "t": 0.8595183486238532, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6882818483533316, + "t": 0.6904619076184763, + "punct": null + } + }, + "tr-de": { + "code-switching": { + "u": 0.9843217450579413, + "t": 0.9875346260387812, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.3975488318651858, + "t": 0.42573662056524353, + "punct": null + } + }, + "es-en": { + "code-switching": { + "u": 0.92987012987013, + "t": 0.9357394366197184, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.5452229299363056, + "t": 0.5835929387331257, + "punct": null + } + }, + "vi-en": { + "code-switching": { + "u": 0.25032594524119944, + "t": 0.5042735042735043, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.49253731343283585, + "t": 0.5371386754482254, + "punct": null + } + }, + "en-de": { + "code-switching": { + "u": 0.7006711409395974, + "t": 0.8075970272502064, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.4917869586859133, + "t": 0.5917542441390461, + "punct": null + }, + "short-sequences": { + "u": 0.863267663982132, + "t": 0.8685264733326602, + "punct": null, + "acc_u": 0.4677754677754678, + "acc_t": 0.4781704781704782, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.6533749310199742, + "t": 0.6911678669013269, + "punct": null, + "acc_u": 0.09355509355509356, + "acc_t": 0.13721413721413722, + "acc_punct": null + } + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-12l_lora.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-12l_lora.json new file mode 100644 index 0000000000000000000000000000000000000000..f63926ede1216fe9ed43a4fdde79d769b5201712 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-12l_lora.json @@ -0,0 +1,1578 @@ +{ + "af": { + "opus100": { + "u": 0.818655303030303, + "t": 0.9259579371938923, + "punct": null + }, + "ud": { + "u": 0.9986928104575163, + "t": 1.0, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6110201854882706, + "t": 0.7813765182186235, + "punct": null + } + }, + "am": { + "opus100": { + "u": 0.7814748201438848, + "t": 0.859541130386122, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4610526315789473, + "t": 0.6130473637176049, + "punct": null + } + }, + "ar": { + "ersatz": { + "u": 0.9279043705640643, + "t": 0.9296728093268145, + "punct": null + }, + "opus100": { + "u": 0.760308710033076, + "t": 0.8638090070537167, + "punct": null + }, + "ud": { + "u": 0.8362676056338029, + "t": 0.8824451410658307, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6331015061654649, + "t": 0.6501351632355998, + "punct": null + } + }, + "az": { + "opus100": { + "u": 0.8692649235323138, + "t": 0.8897100625355316, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6875268949406774, + "t": 0.7519209659714599, + "punct": null + } + }, + "be": { + "opus100": { + "u": 0.8763874873864783, + "t": 0.9107565011820331, + "punct": null + }, + "ud": { + "u": 0.9334687658710006, + "t": 0.9347939488784559, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.676048858204992, + "t": 0.7463701982908819, + "punct": null + } + }, + "bg": { + "opus100": { + "u": 0.9534202821400054, + "t": 0.966567001902691, + "punct": null + }, + "ud": { + "u": 0.9985067197610752, + "t": 0.9985067197610752, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7063520227111426, + "t": 0.7408776469345726, + "punct": null + } + }, + "bn": { + "opus100": { + "u": 0.8579881656804733, + "t": 0.9162726008344922, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.40008367763192304, + "t": 0.51323706377858, + "punct": null + } + }, + "ca": { + "opus100": { + "u": 0.9383306751727803, + "t": 0.9624309392265192, + "punct": null + }, + "ud": { + "u": 0.9987959060806743, + "t": 0.9984935221452245, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6849036629261063, + "t": 0.7392224688935928, + "punct": null + } + }, + "ceb": { + "ud": { + "u": 0.9970501474926253, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4411764705882353, + "t": 0.4935064935064935, + "punct": null + } + }, + "cs": { + "ersatz": { + "u": 0.9916613213598462, + "t": 0.9929577464788732, + "punct": null + }, + "opus100": { + "u": 0.945054945054945, + "t": 0.9614112458654908, + "punct": null + }, + "ud": { + "u": 0.9688067337844528, + "t": 0.9697539397290572, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7331087233655071, + "t": 0.7592173431919923, + "punct": null + } + }, + "cy": { + "opus100": { + "u": 0.7828820116054158, + "t": 0.8826436071649166, + "punct": null + }, + "ud": { + "u": 0.9959278650378127, + "t": 0.9976635514018692, + "punct": null + } + }, + "da": { + "opus100": { + "u": 0.9434563312981151, + "t": 0.9604796947397111, + "punct": null + }, + "ud": { + "u": 0.979631425800194, + "t": 0.9930898321816387, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7293735331287236, + "t": 0.7592133705910266, + "punct": null + } + }, + "de": { + "ersatz": { + "u": 0.9957615145521334, + "t": 0.9963162368943043, + "punct": null + }, + "opus100": { + "u": 0.9094360086767895, + "t": 0.9411088767595519, + "punct": null + }, + "ud": { + "u": 0.9896907216494845, + "t": 0.9791666666666665, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.772648124617629, + "t": 0.7987254954906303, + "punct": null + }, + "legal-all-laws": { + "u": 0.9649257474111196, + "t": 0.9705960236324414, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.9131890839331006, + "t": 0.9353687455686869, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.8875972180379131, + "t": 0.8887242719501803, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.8132559827660183, + "t": 0.8376057857708238, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "el": { + "opus100": { + "u": 0.9572695511959151, + "t": 0.9652910631320032, + "punct": null + }, + "ud": { + "u": 0.9802955665024631, + "t": 0.9802955665024631, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7015318654816667, + "t": 0.7332289923903071, + "punct": null + } + }, + "en": { + "ersatz": { + "u": 0.9903513824884793, + "t": 0.9907567879838244, + "punct": null + }, + "opus100": { + "u": 0.9245969838793552, + "t": 0.9612021857923498, + "punct": null + }, + "ud": { + "u": 0.9701952723535457, + "t": 0.9711637487126673, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7428490911652811, + "t": 0.7605633802816902, + "punct": null + }, + "legal-all-judgements": { + "u": 0.9575248676837953, + "t": 0.9733983512869242, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0625, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.7582996930570501, + "t": 0.841694122143023, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "eo": { + "opus100": { + "u": 0.9439872577647995, + "t": 0.9645002730748224, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6682320091382153, + "t": 0.7360850020433183, + "punct": null + } + }, + "es": { + "opus100": { + "u": 0.9490616621983913, + "t": 0.9649122807017544, + "punct": null + }, + "ud": { + "u": 0.9935649935649936, + "t": 0.993573264781491, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6933867735470941, + "t": 0.7340295817208292, + "punct": null + }, + "legal-all-laws": { + "u": 0.9397166830504324, + "t": 0.943527177779413, + "punct": null, + "acc_u": 0.5136612021857924, + "acc_t": 0.546448087431694, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.829026328239694, + "t": 0.8553096064480514, + "punct": null, + "acc_u": 0.1366120218579235, + "acc_t": 0.22404371584699453, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.8877621973484705, + "t": 0.8906752052277276, + "punct": null, + "acc_u": 0.10256410256410256, + "acc_t": 0.10256410256410256, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.7286878474704218, + "t": 0.7606698858272536, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "et": { + "ersatz": { + "u": 0.9945145364783324, + "t": 0.9945054945054944, + "punct": null + }, + "opus100": { + "u": 0.9469168900804289, + "t": 0.9604612850082371, + "punct": null + }, + "ud": { + "u": 0.9861062869051754, + "t": 0.9861255636489769, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7316985538489176, + "t": 0.7762222700839974, + "punct": null + }, + "short-sequences": { + "u": 0.8696584689032849, + "t": 0.9329023834737062, + "punct": null, + "acc_u": 0.32019704433497537, + "acc_t": 0.5763546798029556, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.6834353108908288, + "t": 0.803904196792055, + "punct": null, + "acc_u": 0.06403940886699508, + "acc_t": 0.21674876847290642, + "acc_punct": null + } + }, + "eu": { + "opus100": { + "u": 0.9184415584415583, + "t": 0.9491059147180193, + "punct": null + }, + "ud": { + "u": 0.9993823347745522, + "t": 0.9993819530284301, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5937595036798248, + "t": 0.6903396157698262, + "punct": null + } + }, + "fa": { + "opus100": { + "u": 0.656710628394104, + "t": 0.8306325143753267, + "punct": null + }, + "ud": { + "u": 0.9977134146341464, + "t": 0.9984744469870328, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7107462835977776, + "t": 0.7111066459034511, + "punct": null + } + }, + "fi": { + "ersatz": { + "u": 0.995834490419328, + "t": 0.9972160356347439, + "punct": null + }, + "opus100": { + "u": 0.9539614561027837, + "t": 0.9678123295144572, + "punct": null + }, + "ud": { + "u": 0.9849246231155779, + "t": 0.9831722162549229, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6967833688877734, + "t": 0.7709052296256969, + "punct": null + } + }, + "fr": { + "ersatz": { + "u": 0.9903686482896049, + "t": 0.9929364278506558, + "punct": null + }, + "ud": { + "u": 0.9919786096256684, + "t": 0.9851951547779273, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.724518660461721, + "t": 0.7492338003502625, + "punct": null + }, + "legal-all-laws": { + "u": 0.9715660707299615, + "t": 0.9847150284148085, + "punct": null, + "acc_u": 0.7973856209150327, + "acc_t": 0.840958605664488, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.8925819127993804, + "t": 0.9016509497389597, + "punct": null, + "acc_u": 0.4880174291938998, + "acc_t": 0.5206971677559913, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.9675620324937908, + "t": 0.967903990621569, + "punct": null, + "acc_u": 0.5079365079365079, + "acc_t": 0.49206349206349204, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.7572482656937781, + "t": 0.7754018708203787, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.015873015873015872, + "acc_punct": null + } + }, + "fy": { + "opus100": { + "u": 0.862212943632568, + "t": 0.9265099672716453, + "punct": null + } + }, + "ga": { + "opus100": { + "u": 0.8956142600666837, + "t": 0.9388904533934103, + "punct": null + }, + "ud": { + "u": 0.9877750611246944, + "t": 0.9901960784313726, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.34977578475336324, + "t": 0.5370370370370371, + "punct": null + } + }, + "gd": { + "opus100": { + "u": 0.9008841321544905, + "t": 0.9600409836065574, + "punct": null + }, + "ud": { + "u": 0.7586206896551724, + "t": 0.8602576808721506, + "punct": null + } + }, + "gl": { + "opus100": { + "u": 0.9341758820431807, + "t": 0.9589339135164536, + "punct": null + }, + "ud": { + "u": 0.9875862068965517, + "t": 0.9903181189488244, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6821838096868047, + "t": 0.7377542932628798, + "punct": null + } + }, + "gu": { + "ersatz": { + "u": 0.9613960867265996, + "t": 0.9841095890410959, + "punct": null + }, + "opus100": { + "u": 0.7256750964423488, + "t": 0.8696418085731062, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.47526388941061565, + "t": 0.5659767914822347, + "punct": null + } + }, + "ha": { + "opus100": { + "u": 0.9212310902451747, + "t": 0.922437673130194, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.36363636363636365, + "t": 0.761904761904762, + "punct": null + } + }, + "he": { + "opus100": { + "u": 0.8382075471698113, + "t": 0.9433131535498073, + "punct": null + }, + "ud": { + "u": 0.9858757062146892, + "t": 0.9858356940509915, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6563889466029502, + "t": 0.6930869199980235, + "punct": null + } + }, + "hi": { + "ersatz": { + "u": 0.9748045178105995, + "t": 0.9710799819249887, + "punct": null + }, + "opus100": { + "u": 0.7139616415755826, + "t": 0.8708446866485013, + "punct": null + }, + "ud": { + "u": 0.9983514671941972, + "t": 0.9990102276476411, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5912766199749458, + "t": 0.6408697444352844, + "punct": null + } + }, + "hu": { + "opus100": { + "u": 0.952177397809244, + "t": 0.9681632653061224, + "punct": null + }, + "ud": { + "u": 0.9901719901719902, + "t": 0.991389913899139, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6810855603894759, + "t": 0.7446447507953341, + "punct": null + } + }, + "hy": { + "ud": { + "u": 0.987037037037037, + "t": 0.9806807727690893, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6890859601369742, + "t": 0.7144478844169248, + "punct": null + } + }, + "id": { + "opus100": { + "u": 0.907528002083876, + "t": 0.9539234850600391, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.648075412411626, + "t": 0.7181645125738905, + "punct": null + } + }, + "ig": { + "opus100": { + "u": 0.9191759112519811, + "t": 0.9393014581213971, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.2176165803108808, + "t": 0.37209302325581395, + "punct": null + } + }, + "is": { + "opus100": { + "u": 0.9636020490698302, + "t": 0.9691846195800381, + "punct": null + }, + "ud": { + "u": 0.9733775259275098, + "t": 0.9735800620387206, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5454545454545454, + "t": 0.7382113821138211, + "punct": null + } + }, + "it": { + "opus100": { + "u": 0.9390018484288354, + "t": 0.9557185547405597, + "punct": null + }, + "ud": { + "u": 0.9976958525345622, + "t": 0.9976958525345622, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.692020879940343, + "t": 0.7285959349170869, + "punct": null + }, + "legal-all-laws": { + "u": 0.9819210051931878, + "t": 0.9826970592609908, + "punct": null, + "acc_u": 0.8963068181818182, + "acc_t": 0.9034090909090909, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.8549019738294672, + "t": 0.8752447520883535, + "punct": null, + "acc_u": 0.48011363636363635, + "acc_t": 0.5511363636363636, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.9527911913433799, + "t": 0.9545606918490654, + "punct": null, + "acc_u": 0.24489795918367346, + "acc_t": 0.22448979591836735, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.6540938441767498, + "t": 0.7124028400340834, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "ja": { + "ersatz": { + "u": 0.9487043892120571, + "t": 0.9481641468682506, + "punct": null + }, + "opus100": { + "u": 0.8370530357571395, + "t": 0.9465181058495822, + "punct": null + }, + "ud": { + "u": 0.9813664596273292, + "t": 0.9783281733746131, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.952120230180457, + "t": 0.9540552684789935, + "punct": null + } + }, + "jv": {}, + "ka": { + "opus100": { + "u": 0.871301775147929, + "t": 0.9386973180076629, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6416656214724695, + "t": 0.6650557254167078, + "punct": null + } + }, + "kk": { + "ersatz": { + "u": 0.9961261759822911, + "t": 0.9983342587451416, + "punct": null + }, + "opus100": { + "u": 0.9113857480936103, + "t": 0.9601366742596812, + "punct": null + }, + "ud": { + "u": 0.9786791471658866, + "t": 0.866865671641791, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7080976587670939, + "t": 0.7834148853978884, + "punct": null + } + }, + "km": { + "ersatz": { + "u": 0.9380572501173158, + "t": 0.9458744286745249, + "punct": null + }, + "opus100": { + "u": 0.848743987172635, + "t": 0.896280616873299, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6466809421841542, + "t": 0.8952380952380952, + "punct": null + } + }, + "kn": { + "opus100": { + "u": 0.8119122257053292, + "t": 0.8938053097345133, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4258127597164507, + "t": 0.5314099581200559, + "punct": null + } + }, + "ko": { + "opus100": { + "u": 0.7345360824742267, + "t": 0.8546875, + "punct": null + }, + "ud": { + "u": 0.999514091350826, + "t": 0.9992709599027946, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7485026926367707, + "t": 0.7507938834334847, + "punct": null + } + }, + "ku": { + "opus100": { + "u": 0.9296244784422809, + "t": 0.9393495458540873, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.41172038509836745, + "t": 0.494111801242236, + "punct": null + } + }, + "ky": { + "opus100": { + "u": 0.8905457798985983, + "t": 0.9461738002594033, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.640074211502783, + "t": 0.8010471204188481, + "punct": null + } + }, + "la": { + "ud": { + "u": 0.9770833333333334, + "t": 0.9779179810725551, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3389830508474576, + "t": 0.4, + "punct": null + } + }, + "lt": { + "ersatz": { + "u": 0.9933481152993349, + "t": 0.9938718662952647, + "punct": null + }, + "opus100": { + "u": 0.9257386212403513, + "t": 0.9449339207048458, + "punct": null + }, + "ud": { + "u": 0.9910350448247758, + "t": 0.9927125506072875, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6805932734489242, + "t": 0.7266333151716281, + "punct": null + } + }, + "lv": { + "ersatz": { + "u": 0.9967032967032967, + "t": 0.9972451790633609, + "punct": null + }, + "opus100": { + "u": 0.9213305174234425, + "t": 0.9448388858547243, + "punct": null + }, + "ud": { + "u": 0.9926436781609195, + "t": 0.9917393299678752, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7036142499784352, + "t": 0.7497510612651329, + "punct": null + } + }, + "mg": { + "opus100": { + "u": 0.9577464788732393, + "t": 0.9670391061452513, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4004474272930649, + "t": 0.598984771573604, + "punct": null + } + }, + "mk": { + "opus100": { + "u": 0.9502645502645503, + "t": 0.962823275862069, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6790958019375672, + "t": 0.7190431025397829, + "punct": null + } + }, + "ml": { + "opus100": { + "u": 0.8288590604026845, + "t": 0.8965703483661894, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4949022939677145, + "t": 0.5575447570332481, + "punct": null + } + }, + "mn": { + "ted2020-corrupted-asr": { + "u": 0.8087103798693444, + "t": 0.8609080841638981, + "punct": null + } + }, + "mr": { + "opus100": { + "u": 0.9143446852425181, + "t": 0.9709382784389704, + "punct": null + }, + "ud": { + "u": 0.9767441860465117, + "t": 0.988235294117647, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4679291762894535, + "t": 0.5655185777261057, + "punct": null + } + }, + "ms": { + "opus100": { + "u": 0.8910585817060638, + "t": 0.9523544162719421, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6428277846280313, + "t": 0.7280025690430314, + "punct": null + } + }, + "mt": { + "opus100": { + "u": 0.8938053097345133, + "t": 0.9272177973084318, + "punct": null + }, + "ud": { + "u": 0.9112050739957718, + "t": 0.9443254817987153, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3295880149812734, + "t": 0.5527638190954773, + "punct": null + } + }, + "my": { + "opus100": { + "u": 0.8611251900658896, + "t": 0.9124212936462508, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.9084652443220921, + "t": 0.9093530157997926, + "punct": null + } + }, + "ne": { + "opus100": { + "u": 0.6940314136125655, + "t": 0.8454545454545455, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5779046339825387, + "t": 0.6837972876516775, + "punct": null + } + }, + "nl": { + "ud": { + "u": 0.9631675874769797, + "t": 0.9694727104532841, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.791660689523263, + "t": 0.8265630900361439, + "punct": null + } + }, + "no": { + "opus100": { + "u": 0.9499467518636848, + "t": 0.9674952198852772, + "punct": null + }, + "ud": { + "u": 0.9925799086757991, + "t": 0.9937106918238994, + "punct": null + } + }, + "pa": { + "opus100": { + "u": 0.7283531409168081, + "t": 0.8438818565400843, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.42983050847457627, + "t": 0.6259168704156479, + "punct": null + } + }, + "pl": { + "ersatz": { + "u": 0.989010989010989, + "t": 0.992797783933518, + "punct": null + }, + "opus100": { + "u": 0.9487179487179487, + "t": 0.9647444657010111, + "punct": null + }, + "ud": { + "u": 0.9969864389753893, + "t": 0.9957211175434182, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7128582697870103, + "t": 0.7688598371195885, + "punct": null + } + }, + "ps": { + "ersatz": { + "u": 0.9680829436877415, + "t": 0.9687563814580356, + "punct": null + }, + "opus100": { + "u": 0.7070151306740028, + "t": 0.8509537665696735, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.532867946480512, + "t": 0.6508087535680304, + "punct": null + } + }, + "pt": { + "opus100": { + "u": 0.9506008010680908, + "t": 0.9598915989159892, + "punct": null + }, + "ud": { + "u": 0.982791586998088, + "t": 0.9832295160517489, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7086866239833882, + "t": 0.7637485373896394, + "punct": null + }, + "legal-all-laws": { + "u": 0.8176684574932447, + "t": 0.8172131866373794, + "punct": null, + "acc_u": 0.1724137931034483, + "acc_t": 0.15517241379310345, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.6945125423761382, + "t": 0.676233510890942, + "punct": null, + "acc_u": 0.08620689655172414, + "acc_t": 0.06896551724137931, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.8210959600743131, + "t": 0.8479886680287196, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.6252811260392563, + "t": 0.6503229525863692, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "ro": { + "ersatz": { + "u": 0.9892709766162311, + "t": 0.9944382647385984, + "punct": null + }, + "opus100": { + "u": 0.958985429033999, + "t": 0.9741046831955923, + "punct": null + }, + "ud": { + "u": 0.9920927780706379, + "t": 0.9946977730646872, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.707213830593058, + "t": 0.7378166120559628, + "punct": null + } + }, + "ru": { + "ersatz": { + "u": 0.9971925884334644, + "t": 0.9971925884334644, + "punct": null + }, + "ud": { + "u": 0.9368932038834952, + "t": 0.9433021806853582, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7147838214783822, + "t": 0.7546357955127548, + "punct": null + } + }, + "si": { + "opus100": { + "u": 0.7772112613611173, + "t": 0.8882240957302149, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.48642779587404994, + "t": 0.6494623655913978, + "punct": null + } + }, + "sk": { + "opus100": { + "u": 0.9517943224424211, + "t": 0.9706286027998903, + "punct": null + }, + "ud": { + "u": 0.9795275590551181, + "t": 0.982124079915878, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7311963314301129, + "t": 0.7625361746908709, + "punct": null + } + }, + "sl": { + "opus100": { + "u": 0.9482346694982746, + "t": 0.9593320764880151, + "punct": null + }, + "ud": { + "u": 0.9922346850733391, + "t": 0.9926502377864245, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7234576757532282, + "t": 0.7730928059117583, + "punct": null + }, + "short-sequences": { + "u": 0.9416569358468184, + "t": 0.934972875771996, + "punct": null, + "acc_u": 0.7778592375366569, + "acc_t": 0.751466275659824, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.6714680635567006, + "t": 0.7860486979621877, + "punct": null, + "acc_u": 0.156158357771261, + "acc_t": 0.3841642228739003, + "acc_punct": null + } + }, + "sq": { + "opus100": { + "u": 0.9484148307361634, + "t": 0.9655742219774167, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6593351662084479, + "t": 0.7064248386105135, + "punct": null + } + }, + "sr": { + "opus100": { + "u": 0.9540106951871659, + "t": 0.9655546514781664, + "punct": null + }, + "ud": { + "u": 1.0, + "t": 1.0, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7030438675022382, + "t": 0.7344978626840468, + "punct": null + }, + "short-sequences": { + "u": 0.9718191964285715, + "t": 0.9512049437830689, + "punct": null, + "acc_u": 0.890625, + "acc_t": 0.8020833333333334, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.707797308184305, + "t": 0.7705342111592112, + "punct": null, + "acc_u": 0.125, + "acc_t": 0.265625, + "acc_punct": null + } + }, + "sv": { + "opus100": { + "u": 0.9520255863539445, + "t": 0.9667574931880109, + "punct": null + }, + "ud": { + "u": 0.957983193277311, + "t": 0.9686003193187867, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7508031206975677, + "t": 0.7840353368039122, + "punct": null + } + }, + "ta": { + "ersatz": { + "u": 0.9750271444082519, + "t": 0.9867403314917127, + "punct": null + }, + "opus100": { + "u": 0.8307769675634902, + "t": 0.863528009535161, + "punct": null + }, + "ud": { + "u": 0.9863013698630138, + "t": 1.0, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5344804409194784, + "t": 0.5653767092680311, + "punct": null + } + }, + "te": { + "opus100": { + "u": 0.7391304347826086, + "t": 0.884125144843569, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5577382532519246, + "t": 0.6140450501608935, + "punct": null + } + }, + "tg": { + "opus100": { + "u": 0.9091374456104427, + "t": 0.9210822998872603, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6368038740920097, + "t": 0.7445255474452556, + "punct": null + } + }, + "th": { + "opus100": { + "u": 0.7079107505070995, + "t": 0.780619773733399, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6819499113283447, + "t": 0.6949239097130018, + "punct": null + } + }, + "tr": { + "ersatz": { + "u": 0.9822960394232524, + "t": 0.9868737289702347, + "punct": null + }, + "opus100": { + "u": 0.9420828905419767, + "t": 0.9621917808219178, + "punct": null + }, + "ud": { + "u": 0.9848942598187311, + "t": 0.9843037974683545, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7215566165210342, + "t": 0.741874376869392, + "punct": null + } + }, + "uk": { + "opus100": { + "u": 0.918751612071189, + "t": 0.9598480737927292, + "punct": null + }, + "ud": { + "u": 0.9863692688971499, + "t": 0.9882060831781502, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.710704755238637, + "t": 0.7497704784249719, + "punct": null + } + }, + "ur": { + "opus100": { + "u": 0.688158449220396, + "t": 0.8393691588785047, + "punct": null + }, + "ud": { + "u": 0.9937759336099584, + "t": 0.9937759336099584, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6584540551972083, + "t": 0.6821088189166366, + "punct": null + } + }, + "uz": { + "opus100": { + "u": 0.8684603886397607, + "t": 0.9094984589520875, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6629367676554418, + "t": 0.7651484065107372, + "punct": null + } + }, + "vi": { + "opus100": { + "u": 0.9240976645435244, + "t": 0.9591494124230554, + "punct": null + }, + "ud": { + "u": 0.9863013698630138, + "t": 0.9972222222222222, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6274585871125422, + "t": 0.6900596830623585, + "punct": null + } + }, + "xh": { + "opus100": { + "u": 0.8510853104492679, + "t": 0.9280931586608443, + "punct": null + } + }, + "yi": { + "opus100": { + "u": 0.9069958847736626, + "t": 0.9140027014858172, + "punct": null + } + }, + "yo": {}, + "zh": { + "ersatz": { + "u": 0.9490586932447398, + "t": 0.9487960143924717, + "punct": null + }, + "opus100": { + "u": 0.8348803126526625, + "t": 0.9413407821229051, + "punct": null + }, + "ud": { + "u": 0.9866962305986697, + "t": 0.9921787709497207, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.777926694248587, + "t": 0.8590493224186557, + "punct": null + } + }, + "zu": { + "opus100": { + "u": 0.895048439181916, + "t": 0.9421930870083433, + "punct": null + } + }, + "tr-de": { + "code-switching": { + "u": 0.9698593436034829, + "t": 0.9951489951489951, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.2795517022626348, + "t": 0.48810872027180063, + "punct": null + } + }, + "es-en": { + "code-switching": { + "u": 0.7421546425105144, + "t": 0.9375549692172382, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.38117394416607014, + "t": 0.6498353457738748, + "punct": null + } + }, + "vi-en": { + "code-switching": { + "u": 0.41876172607879925, + "t": 0.652122173740579, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.41616989567809237, + "t": 0.6747744213417025, + "punct": null + } + }, + "en-de": { + "code-switching": { + "u": 0.880794701986755, + "t": 0.9271523178807948, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.4973288003885381, + "t": 0.6720386784850927, + "punct": null + }, + "short-sequences": { + "u": 0.9598515584103916, + "t": 0.9653369814149964, + "punct": null, + "acc_u": 0.8004158004158004, + "acc_t": 0.817047817047817, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.6724859469544794, + "t": 0.7570553985301427, + "punct": null, + "acc_u": 0.08523908523908524, + "acc_t": 0.22245322245322247, + "acc_punct": null + } + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-12l_only_clean.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-12l_only_clean.json new file mode 100644 index 0000000000000000000000000000000000000000..a37e6bcc56f17b17a7678c69917362b9471991c2 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-12l_only_clean.json @@ -0,0 +1,2450 @@ +{ + "af": { + "opus100": { + "u": 0.7500764759865403, + "t": 0.8072471061902365, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7113202324937725, + "t": 0.7135531135531135, + "punct": null + }, + "ud": { + "u": 0.9947780678851176, + "t": 0.9947780678851176, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.9207547169811321, + "t": 0.9033149171270718, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7332511302918208, + "t": 0.7344184200079397, + "punct": null + } + }, + "am": { + "opus100": { + "u": 0.6632272857552308, + "t": 0.667027905716608, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.598644578313253, + "t": 0.6335208098987626, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.588686481303931, + "t": 0.6037735849056604, + "punct": null + } + }, + "ar": { + "ersatz": { + "u": 0.9052396878483836, + "t": 0.9077212806026365, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.6932350971198928, + "t": 0.6840579710144927, + "punct": null + }, + "opus100": { + "u": 0.7674291938997821, + "t": 0.7642276422764228, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6791290961073235, + "t": 0.7123486682808716, + "punct": null + }, + "ud": { + "u": 0.8596620132255695, + "t": 0.8599545798637397, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7423750811161582, + "t": 0.7881548974943051, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.630438913167395, + "t": 0.6305954140248843, + "punct": null + } + }, + "az": { + "opus100": { + "u": 0.7804539138490043, + "t": 0.8011664899257689, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7400511985105889, + "t": 0.7557036657267368, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7177768696362893, + "t": 0.7285238623751387, + "punct": null + } + }, + "be": { + "opus100": { + "u": 0.7271721084670725, + "t": 0.7539111000744971, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7400503778337532, + "t": 0.7409565428502064, + "punct": null + }, + "ud": { + "u": 0.9029322548028311, + "t": 0.8973981345115366, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7095681625740897, + "t": 0.7198135198135198, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6981164679453948, + "t": 0.7022792022792022, + "punct": null + } + }, + "bg": { + "opus100": { + "u": 0.9432756324900133, + "t": 0.9452018176958032, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7599225556631171, + "t": 0.7620664564637402, + "punct": null + }, + "ud": { + "u": 0.9895261845386534, + "t": 0.9881422924901185, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7982683982683982, + "t": 0.7960327727468737, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7048669907685586, + "t": 0.7159994218817748, + "punct": null + } + }, + "bn": { + "opus100": { + "u": 0.8294029101856498, + "t": 0.8535542490646714, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.48019691206086373, + "t": 0.48305489260143203, + "punct": null + }, + "ud": { + "u": 1.0, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5806451612903226, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4390524757361408, + "t": 0.4396167189823228, + "punct": null + } + }, + "ca": { + "opus100": { + "u": 0.8992768595041322, + "t": 0.9096671949286845, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7061946902654866, + "t": 0.7167630057803468, + "punct": null + }, + "ud": { + "u": 0.9811550151975683, + "t": 0.9829085457271365, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7792943600309039, + "t": 0.8018275271273558, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6913411492560854, + "t": 0.6959902794653705, + "punct": null + } + }, + "ceb": { + "ud": { + "u": 0.9970501474926253, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.8125000000000001, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.576271186440678, + "t": 0.5904761904761905, + "punct": null + } + }, + "cs": { + "ersatz": { + "u": 0.9280162216965191, + "t": 0.9579993587688362, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7770045385779123, + "t": 0.777496839443742, + "punct": null + }, + "opus100": { + "u": 0.9048856548856549, + "t": 0.9142253892847717, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7336028751123091, + "t": 0.7593350999759093, + "punct": null + }, + "ud": { + "u": 0.9123587812393016, + "t": 0.9238918316141622, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7610023816920368, + "t": 0.7602659366445053, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6969182768624446, + "t": 0.7107168544713497, + "punct": null + } + }, + "cy": { + "opus100": { + "u": 0.7372747391716724, + "t": 0.7783995523223279, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6709248850281042, + "t": 0.6644182124789207, + "punct": null + }, + "ud": { + "u": 0.9929906542056075, + "t": 0.9947582993593477, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7296296296296296, + "t": 0.7682539682539683, + "punct": null + } + }, + "da": { + "opus100": { + "u": 0.9226736566186109, + "t": 0.9310344827586208, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7781504551988501, + "t": 0.7924717691342535, + "punct": null + }, + "ud": { + "u": 0.9375619425173439, + "t": 0.9307923771313942, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.8260481712756467, + "t": 0.8316633266533066, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7484212670605012, + "t": 0.747236623300401, + "punct": null + } + }, + "de": { + "ersatz": { + "u": 0.9686073059360731, + "t": 0.9702970297029704, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.8440414507772019, + "t": 0.8469038208168643, + "punct": null + }, + "opus100": { + "u": 0.8225966303270564, + "t": 0.856103896103896, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6723404255319149, + "t": 0.7784272051009565, + "punct": null + }, + "ud": { + "u": 0.965675057208238, + "t": 0.9648414985590777, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.8366211431461811, + "t": 0.8509052183173589, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7656202065650884, + "t": 0.7658449809402794, + "punct": null + }, + "legal-all-laws": { + "u": 0.8658224319818021, + "t": 0.8732951149295006, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.763142906143795, + "t": 0.7668318453920858, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.6999004657736407, + "t": 0.7838123009084484, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.5870611033799433, + "t": 0.5963228141341896, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "el": { + "opus100": { + "u": 0.9316442333069411, + "t": 0.9412080536912751, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.709083119108826, + "t": 0.7436578883788355, + "punct": null + }, + "ud": { + "u": 0.9778325123152709, + "t": 0.976629766297663, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.8148148148148148, + "t": 0.8339307048984468, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.705251770259638, + "t": 0.7040539898293808, + "punct": null + } + }, + "en": { + "ersatz": { + "u": 0.9709853490376329, + "t": 0.9676139182198286, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7345801830481496, + "t": 0.7506199078993977, + "punct": null + }, + "opus100": { + "u": 0.9232854432095419, + "t": 0.9134640522875817, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.8155727476915399, + "t": 0.8023952095808384, + "punct": null + }, + "ud": { + "u": 0.9248554913294798, + "t": 0.9406345957011258, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7028372324539572, + "t": 0.7090909090909091, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7088539711481738, + "t": 0.713005157994892, + "punct": null + }, + "legal-all-judgements": { + "u": 0.8468375201611653, + "t": 0.8700718423337438, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.6781465425894244, + "t": 0.6880411304178919, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "eo": { + "opus100": { + "u": 0.9188172043010753, + "t": 0.922077922077922, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.8280383257690368, + "t": 0.8278833967046895, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6686825053995681, + "t": 0.6856709628506444, + "punct": null + } + }, + "es": { + "ersatz": { + "u": 0.980723333945291, + "t": null, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7494086106292384, + "t": null, + "punct": null + }, + "opus100": { + "u": 0.9266490765171503, + "t": 0.9318423855165069, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7221731448763251, + "t": 0.75, + "punct": null + }, + "ud": { + "u": 0.9588330632090762, + "t": 0.9581032802858072, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7385187151579505, + "t": 0.7761664564943254, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6821370180897631, + "t": 0.687244480784955, + "punct": null + }, + "legal-all-laws": { + "u": 0.7324895492686906, + "t": 0.8664986627202442, + "punct": null, + "acc_u": 0.01092896174863388, + "acc_t": 0.17486338797814208, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.7549703281061608, + "t": 0.7649450233393279, + "punct": null, + "acc_u": 0.03278688524590164, + "acc_t": 0.04371584699453552, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.7250387644818482, + "t": 0.7627780602568561, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.6109240198183359, + "t": 0.6126634906527547, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "et": { + "ersatz": { + "u": 0.9593267882187938, + "t": 0.9479107040641098, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.8011782032400588, + "t": 0.7783783783783783, + "punct": null + }, + "opus100": { + "u": 0.8658265381764271, + "t": 0.9054933611038792, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6566191446028513, + "t": 0.7086577022882755, + "punct": null + }, + "ud": { + "u": 0.9411346256446735, + "t": 0.952823691460055, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7519736842105262, + "t": 0.7511045655375552, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7342810278840897, + "t": 0.7443103005394297, + "punct": null + }, + "short-sequences": { + "u": 0.8854222944374401, + "t": 0.8931732264121146, + "punct": null, + "acc_u": 0.43842364532019706, + "acc_t": 0.4729064039408867, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.7362542299969711, + "t": 0.7380598209413246, + "punct": null, + "acc_u": 0.09852216748768473, + "acc_t": 0.09359605911330049, + "acc_punct": null + } + }, + "eu": { + "opus100": { + "u": 0.8454925079832966, + "t": 0.8714285714285714, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.608955223880597, + "t": 0.6237320122670441, + "punct": null + }, + "ud": { + "u": 0.9761467889908257, + "t": 0.9764885496183205, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7030545818728093, + "t": 0.7252681764004768, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6195403351341452, + "t": 0.6313638963798317, + "punct": null + } + }, + "fa": { + "opus100": { + "u": 0.6582742046234837, + "t": 0.6610288935870332, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6263490124210955, + "t": 0.6575771122038445, + "punct": null + }, + "ud": { + "u": 0.9886706948640485, + "t": 0.9946808510638299, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.9336203803372802, + "t": 0.9511926605504588, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6913663518982464, + "t": 0.6912597140938309, + "punct": null + } + }, + "fi": { + "ersatz": { + "u": 0.9888579387186629, + "t": 0.9870630333058079, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7859976662777131, + "t": 0.8128144029653165, + "punct": null + }, + "opus100": { + "u": 0.9309435951502372, + "t": 0.9392235609103079, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7619271445358401, + "t": 0.7751450676982592, + "punct": null + }, + "ud": { + "u": 0.942763397739701, + "t": 0.9475574712643678, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7862423657987786, + "t": 0.7875335120643432, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7042482003447228, + "t": 0.7058713886300093, + "punct": null + } + }, + "fr": { + "ersatz": { + "u": 0.9749582637729549, + "t": 0.9705782888062224, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7515680392691573, + "t": 0.7686768676867686, + "punct": null + }, + "opus100": { + "u": 0.9024896265560166, + "t": null, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6981616075245832, + "t": null, + "punct": null + }, + "ud": { + "u": 0.976315789473684, + "t": 0.9774236387782205, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7286012526096033, + "t": 0.7885572139303482, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7149553908967186, + "t": 0.7156251534043494, + "punct": null + }, + "legal-all-laws": { + "u": 0.9256451789086151, + "t": 0.9438731149022712, + "punct": null, + "acc_u": 0.7058823529411765, + "acc_t": 0.7233115468409586, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.8046378931522016, + "t": 0.8267105859583278, + "punct": null, + "acc_u": 0.3159041394335512, + "acc_t": 0.38344226579520696, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.8509461042330533, + "t": 0.8486306851059219, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.6487591856661709, + "t": 0.6488700192223228, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "fy": { + "opus100": { + "u": 0.6646626586506346, + "t": 0.6951258362535839, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6992896606156275, + "t": 0.6700971983990852, + "punct": null + } + }, + "ga": { + "opus100": { + "u": 0.8514698298091801, + "t": 0.8461735346813413, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.59913112164297, + "t": 0.6374589266155531, + "punct": null + }, + "ud": { + "u": 0.8629550321199143, + "t": 0.91156462585034, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5538945712037766, + "t": 0.6492027334851936, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5170068027210885, + "t": 0.528, + "punct": null + } + }, + "gd": { + "opus100": { + "u": 0.8530534351145039, + "t": 0.859542697153523, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6474763406940063, + "t": 0.6690486824475212, + "punct": null + }, + "ud": { + "u": 0.7058823529411764, + "t": 0.7417218543046357, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5703592814371257, + "t": 0.5928393005828477, + "punct": null + } + }, + "gl": { + "opus100": { + "u": 0.8968725768932541, + "t": 0.9039518450667365, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7088025741208916, + "t": 0.7190745986779981, + "punct": null + }, + "ud": { + "u": 0.9888579387186631, + "t": 0.9902912621359222, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7493975903614457, + "t": 0.7463479415670651, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6863018100032129, + "t": 0.6959216805234417, + "punct": null + } + }, + "gu": { + "ersatz": { + "u": 0.9115492957746479, + "t": 0.920245398773006, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.817891373801917, + "t": 0.8105677346824058, + "punct": null + }, + "opus100": { + "u": 0.7568647029455815, + "t": 0.7669795692987299, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5894319027536592, + "t": 0.5809128630705394, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.47425435456931514, + "t": 0.4715804181845401, + "punct": null + } + }, + "ha": { + "opus100": { + "u": 0.8891149542217701, + "t": 0.8991924980463663, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5551382724479345, + "t": 0.62570104852475, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4444444444444444, + "t": 0.4444444444444444, + "punct": null + } + }, + "he": { + "opus100": { + "u": 0.900103519668737, + "t": 0.9143161255987228, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6925668088928811, + "t": 0.6961706030726899, + "punct": null + }, + "ud": { + "u": 0.9731258840169731, + "t": 0.9750692520775623, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7933673469387754, + "t": 0.797979797979798, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6524591831544683, + "t": 0.6564690885914596, + "punct": null + } + }, + "hi": { + "ersatz": { + "u": 0.9657155496571554, + "t": 0.9523166891587944, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.8202224469160767, + "t": 0.8159095848728537, + "punct": null + }, + "opus100": { + "u": 0.699409681227863, + "t": 0.7063197026022305, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5100744236703576, + "t": 0.5594723675233114, + "punct": null + }, + "ud": { + "u": 0.977088948787062, + "t": 0.9963684384285243, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.9144781144781146, + "t": 0.9265573770491804, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5642032899582617, + "t": 0.5705635569395787, + "punct": null + } + }, + "hu": { + "opus100": { + "u": 0.9351265822784811, + "t": 0.9438502673796791, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7352806937471474, + "t": 0.7405671431919382, + "punct": null + }, + "ud": { + "u": 0.9595959595959594, + "t": 0.9702970297029703, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6797642436149312, + "t": 0.6922279792746114, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7007836238605468, + "t": 0.7043587513288876, + "punct": null + } + }, + "hy": { + "opus100": { + "u": 0.8608920120464649, + "t": null, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7462624004471147, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9702602230483272, + "t": 0.9732225300092336, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7233304423243713, + "t": 0.7238095238095238, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6930902497985495, + "t": 0.6973249748767766, + "punct": null + } + }, + "id": { + "opus100": { + "u": 0.8863815271582263, + "t": 0.9007015650296817, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7076023391812866, + "t": 0.6955706585423015, + "punct": null + }, + "ud": { + "u": 0.9894620077648364, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.712082262210797, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6868627737938436, + "t": 0.6864718405264176, + "punct": null + } + }, + "ig": { + "opus100": { + "u": 0.8502604166666666, + "t": 0.8470432771721176, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.552260573650948, + "t": 0.5548345230369889, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3816254416961131, + "t": 0.3660714285714286, + "punct": null + } + }, + "is": { + "opus100": { + "u": 0.9419009370816599, + "t": 0.9468834688346883, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6512141280353201, + "t": 0.6831560722235963, + "punct": null + }, + "ud": { + "u": 0.8856199339537677, + "t": 0.8665826954752447, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.621559225714793, + "t": 0.6142024824791016, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6938511326860841, + "t": 0.6861564918314703, + "punct": null + } + }, + "it": { + "opus100": { + "u": 0.8936170212765957, + "t": 0.9057387691508698, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6665299425758818, + "t": 0.7055016181229774, + "punct": null + }, + "ud": { + "u": 0.9674523007856342, + "t": 0.935064935064935, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.766990291262136, + "t": 0.7731755424063115, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7004598770216504, + "t": 0.69947242206235, + "punct": null + }, + "legal-all-laws": { + "u": 0.8203894181601638, + "t": 0.8230478559495904, + "punct": null, + "acc_u": 0.4928977272727273, + "acc_t": 0.5454545454545454, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.557304060462588, + "t": 0.5579979181076697, + "punct": null, + "acc_u": 0.03977272727272727, + "acc_t": 0.045454545454545456, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.8555049651388689, + "t": 0.8559927720515405, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.5685242528371491, + "t": 0.5741551972329544, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "ja": { + "ersatz": { + "u": 0.8605024051309459, + "t": 0.8257403189066059, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7840629611411707, + "t": 0.7544159544159545, + "punct": null + }, + "opus100": { + "u": 0.9085314685314685, + "t": 0.9080748812517463, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.8819599109131402, + "t": 0.8793335124966407, + "punct": null + }, + "ud": { + "u": 0.9594320486815416, + "t": 0.9710743801652894, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.9090909090909091, + "t": 0.9046153846153847, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.9263266950615864, + "t": 0.9283471310305453, + "punct": null + } + }, + "jv": { + "ud": { + "u": 0.9866814650388457, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5800604229607251, + "t": null, + "punct": null + } + }, + "ka": { + "opus100": { + "u": 0.7604280410569993, + "t": 0.917211328976035, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.3333909138020384, + "t": 0.33210195788695973, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6476325231189044, + "t": 0.6491855757461633, + "punct": null + } + }, + "kk": { + "ersatz": { + "u": 0.9624573378839589, + "t": 0.9672316384180791, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.8586147681740125, + "t": 0.8457415128052412, + "punct": null + }, + "opus100": { + "u": 0.7640117994100296, + "t": 0.7612826603325415, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7598402738163148, + "t": 0.7599200685127033, + "punct": null + }, + "ud": { + "u": 0.9618736383442265, + "t": 0.9169510807736063, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.8331441543700341, + "t": 0.7815384615384615, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7301982568719473, + "t": 0.7492316637594484, + "punct": null + } + }, + "km": { + "ersatz": { + "u": 0.8959512407488027, + "t": 0.9458937198067633, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.6629270780214176, + "t": 0.802701398938736, + "punct": null + }, + "opus100": { + "u": 0.7521141649048625, + "t": 0.7505668934240363, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7569925583782395, + "t": 0.7733172351343193, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.8392857142857144, + "t": 0.8501026694045174, + "punct": null + } + }, + "kn": { + "opus100": { + "u": 0.7559912854030502, + "t": 0.7344701583434835, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6340179041600842, + "t": 0.6381059751972943, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.482708409173644, + "t": 0.47611527832609557, + "punct": null + } + }, + "ko": { + "opus100": { + "u": 0.7891891891891892, + "t": 0.8003076134324532, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7429116035263282, + "t": 0.7536800785083416, + "punct": null + }, + "ud": { + "u": 0.991953182150695, + "t": 0.996116504854369, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.95499119939653, + "t": 0.984973339796413, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7516809861785579, + "t": 0.7504375863657301, + "punct": null + } + }, + "ku": { + "opus100": { + "u": 0.810540184453228, + "t": 0.7486321210170583, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6050280490338666, + "t": 0.6689873417721519, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.38557711150303736, + "t": 0.3880878256595117, + "punct": null + } + }, + "ky": { + "opus100": { + "u": 0.8816248809901618, + "t": 0.8820189274447949, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7485786481364497, + "t": 0.7480190174326465, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7645502645502645, + "t": 0.7621359223300971, + "punct": null + } + }, + "la": { + "ud": { + "u": 0.6729297146833682, + "t": 0.8844563366577476, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.37648054145516074, + "t": 0.7647355163727959, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5, + "t": 0.48, + "punct": null + } + }, + "lt": { + "ersatz": { + "u": 0.9693877551020408, + "t": 0.9586681974741676, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7645709040844424, + "t": 0.7982878544676297, + "punct": null + }, + "opus100": { + "u": 0.8548107840712342, + "t": 0.8766350346242626, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.642061855670103, + "t": 0.6862281116895409, + "punct": null + }, + "ud": { + "u": 0.9594034797017399, + "t": 0.9689034369885434, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6919770773638969, + "t": 0.6902654867256637, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.696107541974842, + "t": 0.6989010989010989, + "punct": null + } + }, + "lv": { + "ersatz": { + "u": 0.9770240700218819, + "t": 0.9725228975853456, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7730530339225993, + "t": 0.7637655417406749, + "punct": null + }, + "opus100": { + "u": 0.8446293124541228, + "t": 0.8766066838046275, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6395301741595787, + "t": 0.7115148539160323, + "punct": null + }, + "ud": { + "u": 0.9515108924806746, + "t": 0.9649083088068825, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6847084708470847, + "t": 0.6862408915559365, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.703201361814288, + "t": 0.7135238095238094, + "punct": null + } + }, + "mg": { + "opus100": { + "u": 0.9245082402977138, + "t": 0.9276368491321761, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.530507605537515, + "t": 0.6050534941953107, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5941043083900227, + "t": 0.5843621399176954, + "punct": null + } + }, + "mk": { + "opus100": { + "u": 0.9390115667718191, + "t": 0.94263811789585, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7091778638123433, + "t": 0.7085792101679529, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6954328342188589, + "t": 0.7001020556932497, + "punct": null + } + }, + "ml": { + "opus100": { + "u": 0.781037315184229, + "t": 0.8255127844900252, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5842696629213483, + "t": 0.6253731343283583, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5295476158130689, + "t": 0.5344, + "punct": null + } + }, + "mn": { + "opus100": { + "u": 0.4932682926829268, + "t": null, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.8213820078226858, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.808678275763631, + "t": 0.8236091558475416, + "punct": null + } + }, + "mr": { + "opus100": { + "u": 0.9262361523912457, + "t": 0.9312638580931264, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.687759336099585, + "t": 0.6920433518371663, + "punct": null + }, + "ud": { + "u": 0.9397590361445782, + "t": 0.9523809523809523, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5974025974025974, + "t": 0.6190476190476191, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4707112970711297, + "t": 0.4705176551251285, + "punct": null + } + }, + "ms": { + "opus100": { + "u": 0.8812140240711669, + "t": 0.8816753926701569, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6748554913294798, + "t": 0.6716733161229758, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6893819334389858, + "t": 0.6905848787446506, + "punct": null + } + }, + "mt": { + "opus100": { + "u": 0.6879606879606881, + "t": 0.8197059582151148, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.44244149272612265, + "t": 0.5047454702329595, + "punct": null + }, + "ud": { + "u": 0.896774193548387, + "t": 0.8951351351351352, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.4652206432311144, + "t": 0.4966698382492864, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4579439252336449, + "t": 0.4761904761904762, + "punct": null + } + }, + "my": { + "opus100": { + "u": 0.8, + "t": 0.8274067649609714, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.8004115226337449, + "t": 0.8269340974212034, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.8843176038428935, + "t": 0.8927509185280224, + "punct": null + } + }, + "ne": { + "opus100": { + "u": 0.7312876398049899, + "t": 0.720143669560012, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7180049328583172, + "t": 0.7120778477389812, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.643934122013454, + "t": 0.6441558441558441, + "punct": null + } + }, + "nl": { + "opus100": { + "u": 0.9240769630785233, + "t": null, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7704497786063855, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9182879377431906, + "t": 0.9486238532110092, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.8021778584392014, + "t": 0.7978533094812166, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.763613068545804, + "t": 0.7719924524453057, + "punct": null + } + }, + "no": { + "opus100": { + "u": 0.9478774852229984, + "t": 0.9486421080935735, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.811460731644922, + "t": 0.7967757694186615, + "punct": null + }, + "ud": { + "u": 0.982323964068386, + "t": 0.9879793932455638, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.8600979858464888, + "t": 0.8600217864923747, + "punct": null + } + }, + "pa": { + "opus100": { + "u": 0.7253914988814317, + "t": 0.7250932338838572, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6321243523316061, + "t": 0.6473656755346896, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5997719498289623, + "t": 0.6138888888888889, + "punct": null + } + }, + "pl": { + "ersatz": { + "u": 0.9288174512055108, + "t": 0.9226327944572749, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7870646766169154, + "t": 0.7672663958212421, + "punct": null + }, + "opus100": { + "u": 0.9313464608834486, + "t": 0.9346195069667738, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.745404411764706, + "t": 0.7633136094674556, + "punct": null + }, + "ud": { + "u": 0.9707832064817088, + "t": 0.9735998026153466, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7633844215830359, + "t": 0.7929936305732483, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7092058257763122, + "t": 0.7232493812782065, + "punct": null + } + }, + "ps": { + "ersatz": { + "u": 0.9164556962025316, + "t": 0.9301389168512182, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7656628591208031, + "t": 0.7955265610438023, + "punct": null + }, + "opus100": { + "u": 0.7628988965105876, + "t": 0.7623850489469001, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7369985141158989, + "t": 0.7385524372230429, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6182136602451839, + "t": 0.615916955017301, + "punct": null + } + }, + "pt": { + "opus100": { + "u": 0.9158829676071055, + "t": 0.9243386243386242, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7138488422892092, + "t": 0.747278750591576, + "punct": null + }, + "ud": { + "u": 0.9568627450980393, + "t": 0.9646271510516252, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7334685598377282, + "t": 0.7588339222614839, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7177824267782427, + "t": 0.7231542788868424, + "punct": null + }, + "legal-all-laws": { + "u": 0.5461879341997217, + "t": 0.537572595432317, + "punct": null, + "acc_u": 0.017241379310344827, + "acc_t": 0.017241379310344827, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.5642605877333239, + "t": 0.5642739377924899, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.7896479550166049, + "t": 0.7844919926448092, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.629781108550879, + "t": 0.6341641848223347, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "ro": { + "ersatz": { + "u": 0.9756771697070203, + "t": 0.959090909090909, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7443486366814263, + "t": 0.725181598062954, + "punct": null + }, + "opus100": { + "u": 0.921993216801461, + "t": 0.9370666666666667, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6955955738771968, + "t": 0.7011135857461024, + "punct": null + }, + "ud": { + "u": 0.7586206896551725, + "t": 0.8676684440135725, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.46604441583521083, + "t": 0.5045289855072463, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6943778601002397, + "t": 0.7001441614608361, + "punct": null + } + }, + "ru": { + "ersatz": { + "u": 0.9743589743589745, + "t": 0.9786995515695067, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.8308483290488432, + "t": 0.8427397260273972, + "punct": null + }, + "opus100": { + "u": 0.8705054060849887, + "t": null, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6501885211562631, + "t": null, + "punct": null + }, + "ud": { + "u": 0.848249027237354, + "t": 0.8436123348017621, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6430282702443699, + "t": 0.6351851851851852, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7159482052122603, + "t": 0.7316377232252669, + "punct": null + } + }, + "si": { + "opus100": { + "u": 0.8103186646433992, + "t": 0.8224142737663787, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.690497737556561, + "t": 0.7000241721053905, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5836909871244634, + "t": 0.5916824196597352, + "punct": null + } + }, + "sk": { + "opus100": { + "u": 0.9221118661787768, + "t": 0.9374160623153371, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7310529845741114, + "t": 0.7510020040080161, + "punct": null + }, + "ud": { + "u": 0.9590958019375673, + "t": 0.9749216300940439, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.8249322493224932, + "t": 0.8375192209123525, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6987050983366744, + "t": 0.7128911857594028, + "punct": null + } + }, + "sl": { + "opus100": { + "u": 0.9288330716902145, + "t": 0.9344608879492601, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7306205955899069, + "t": 0.7546057479734708, + "punct": null + }, + "ud": { + "u": 0.9624125874125874, + "t": 0.9672131147540983, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7913322632423755, + "t": 0.7911468812877264, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7224157955865272, + "t": 0.7323815309842041, + "punct": null + }, + "short-sequences": { + "u": 0.7918601790481132, + "t": 0.7830115594250628, + "punct": null, + "acc_u": 0.34384164222873903, + "acc_t": 0.27712609970674484, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.6239909072085053, + "t": 0.6269180729935142, + "punct": null, + "acc_u": 0.12573313782991202, + "acc_t": 0.12903225806451613, + "acc_punct": null + } + }, + "sq": { + "opus100": { + "u": 0.914854597851716, + "t": 0.9237788513150832, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6966688727112288, + "t": 0.7140186915887851, + "punct": null + }, + "ud": { + "u": 1.0, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.8672566371681415, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6846184819810751, + "t": 0.6833601796261043, + "punct": null + } + }, + "sr": { + "opus100": { + "u": 0.941956003180493, + "t": 0.9472, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7156549520766773, + "t": 0.7259085580304808, + "punct": null + }, + "ud": { + "u": 0.981541802388708, + "t": 0.9819341126461212, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7989130434782609, + "t": 0.8509803921568628, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7021186887319489, + "t": 0.7057986819022333, + "punct": null + }, + "short-sequences": { + "u": 0.9130309505309505, + "t": 0.9198844847282347, + "punct": null, + "acc_u": 0.65625, + "acc_t": 0.6875, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.6556993102392678, + "t": 0.6822591440601308, + "punct": null, + "acc_u": 0.13541666666666666, + "acc_t": 0.16666666666666666, + "acc_punct": null + } + }, + "sv": { + "opus100": { + "u": 0.9223553934340802, + "t": 0.9264590421355667, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7774163568773235, + "t": 0.8025477707006369, + "punct": null + }, + "ud": { + "u": 0.9527851458885942, + "t": 0.953781512605042, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.813314037626628, + "t": 0.8131436978911231, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7424311577666209, + "t": 0.7423702705304707, + "punct": null + } + }, + "ta": { + "ersatz": { + "u": 0.9743589743589743, + "t": 0.9704075935231714, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.8439538384345208, + "t": 0.8602860286028603, + "punct": null + }, + "opus100": { + "u": 0.6751918158567775, + "t": 0.6853731343283582, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5151705377694079, + "t": 0.5159253945480631, + "punct": null + }, + "ud": { + "u": 1.0, + "t": 1.0, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.8947368421052632, + "t": 0.8807339449541284, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5396441758979523, + "t": 0.567483438422859, + "punct": null + } + }, + "te": { + "opus100": { + "u": 0.7892401552967276, + "t": 0.7846778874056878, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6298290798407867, + "t": 0.6291374728195216, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.601318235592361, + "t": 0.5970976683515409, + "punct": null + } + }, + "tg": { + "opus100": { + "u": 0.8111111111111111, + "t": 0.8589290568089154, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6499889307062209, + "t": 0.6716112531969309, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7137931034482757, + "t": 0.7193277310924369, + "punct": null + } + }, + "th": { + "opus100": { + "u": 0.6883168316831684, + "t": 0.7358446960942917, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6921690366513119, + "t": 0.7225512528473804, + "punct": null + }, + "ud": { + "u": 0.8642964446670005, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.8384879725085911, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6083587696642404, + "t": 0.6418242491657397, + "punct": null + } + }, + "tr": { + "ersatz": { + "u": 0.9399189089568744, + "t": 0.948509485094851, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.8181981657975185, + "t": 0.8184937691890917, + "punct": null + }, + "opus100": { + "u": 0.9329414907827944, + "t": 0.9378196500672948, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7475283337352303, + "t": 0.7457142857142858, + "punct": null + }, + "ud": { + "u": 0.960960960960961, + "t": 0.96048024012006, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7197549770290965, + "t": 0.7371202113606341, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7294356129307586, + "t": 0.7349415568266601, + "punct": null + } + }, + "uk": { + "opus100": { + "u": 0.9083830781209447, + "t": 0.9130434782608696, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7366705471478463, + "t": 0.7386629266012156, + "punct": null + }, + "ud": { + "u": 0.920152091254753, + "t": 0.9287042777433354, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6826547685443392, + "t": 0.6880434782608695, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.714885922459182, + "t": 0.7196580375582345, + "punct": null + } + }, + "ur": { + "opus100": { + "u": 0.6715, + "t": 0.6131595029537584, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5940555338287056, + "t": 0.6623586429725363, + "punct": null + }, + "ud": { + "u": 0.9842271293375394, + "t": 0.9852941176470589, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.9357218124341412, + "t": 0.9431230610134436, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6473086994471923, + "t": 0.6467291924733086, + "punct": null + } + }, + "uz": { + "opus100": { + "u": 0.7858823529411765, + "t": 0.7924528301886793, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7269848450576794, + "t": 0.7572102779234399, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7196882217090068, + "t": 0.7305678614579137, + "punct": null + } + }, + "vi": { + "opus100": { + "u": 0.9263565891472868, + "t": 0.9265317438314388, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.673801768264309, + "t": 0.6802325581395349, + "punct": null + }, + "ud": { + "u": 0.9434464404524285, + "t": 0.9504685408299867, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6753569211669771, + "t": 0.6657807308970098, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6701928162715777, + "t": 0.670947655185834, + "punct": null + } + }, + "xh": { + "opus100": { + "u": 0.8156572335361015, + "t": 0.8134347940173183, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5145505097312327, + "t": 0.5632070831283816, + "punct": null + } + }, + "yi": { + "opus100": { + "u": 0.738095238095238, + "t": 0.696522153406384, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7287623975851659, + "t": 0.7284427284427284, + "punct": null + } + }, + "yo": { + "opus100": { + "u": 0.766677340164372, + "t": null, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.3774142152100416, + "t": null, + "punct": null + }, + "ud": { + "u": 0.7877094972067038, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.27621113521330437, + "t": null, + "punct": null + } + }, + "zh": { + "ersatz": { + "u": 0.7843137254901961, + "t": 0.8730489073881372, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.6310904872389791, + "t": 0.7394422310756972, + "punct": null + }, + "opus100": { + "u": 0.7393162393162394, + "t": 0.7118884424485937, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.588265306122449, + "t": 0.6016466117796074, + "punct": null + }, + "ud": { + "u": 0.9691428571428572, + "t": 0.9910714285714286, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.8351648351648352, + "t": 0.8377192982456141, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5887359531883768, + "t": 0.601757551067916, + "punct": null + } + }, + "zu": { + "opus100": { + "u": 0.8009981285090455, + "t": 0.8595183486238532, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6882818483533316, + "t": 0.6904619076184763, + "punct": null + } + }, + "tr-de": { + "code-switching": { + "u": 0.9843217450579413, + "t": 0.9875346260387812, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.3975488318651858, + "t": 0.42573662056524353, + "punct": null + } + }, + "es-en": { + "code-switching": { + "u": 0.92987012987013, + "t": 0.9357394366197184, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.5452229299363056, + "t": 0.5835929387331257, + "punct": null + } + }, + "vi-en": { + "code-switching": { + "u": 0.25032594524119944, + "t": 0.5042735042735043, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.49253731343283585, + "t": 0.5371386754482254, + "punct": null + } + }, + "en-de": { + "code-switching": { + "u": 0.7006711409395974, + "t": 0.8075970272502064, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.4917869586859133, + "t": 0.5917542441390461, + "punct": null + }, + "short-sequences": { + "u": 0.863267663982132, + "t": 0.8685264733326602, + "punct": null, + "acc_u": 0.4677754677754678, + "acc_t": 0.4781704781704782, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.6533749310199742, + "t": 0.6911678669013269, + "punct": null, + "acc_u": 0.09355509355509356, + "acc_t": 0.13721413721413722, + "acc_punct": null + } + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-1l-sm.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-1l-sm.json new file mode 100644 index 0000000000000000000000000000000000000000..bc16d28f0254ea74395bd07a7b7655ff5bdc55f4 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-1l-sm.json @@ -0,0 +1,1645 @@ +{ + "af": { + "opus100": { + "u": 0.598806860551827, + "t": 0.801516382344977, + "punct": null + }, + "ud": { + "u": 0.9986928104575163, + "t": 0.9986928104575163, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4001996007984032, + "t": 0.4262189215369713, + "punct": null + } + }, + "am": { + "opus100": { + "u": 0.26799242424242425, + "t": 0.6443243243243243, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.40825688073394495, + "t": 0.46095954844778925, + "punct": null + } + }, + "ar": { + "ersatz": { + "u": 0.9216730038022813, + "t": 0.9240847784200387, + "punct": null + }, + "opus100": { + "u": 0.5961043733921353, + "t": 0.6196943972835314, + "punct": null + }, + "ud": { + "u": 0.8015810276679841, + "t": 0.8037825059101655, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.1128400954653938, + "t": 0.3953082295778925, + "punct": null + } + }, + "az": { + "opus100": { + "u": 0.7732984293193716, + "t": 0.799203782035332, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.637619927823255, + "t": 0.666460443894517, + "punct": null + } + }, + "be": { + "opus100": { + "u": 0.6385110952040086, + "t": 0.8014480646059594, + "punct": null + }, + "ud": { + "u": 0.8189349112426034, + "t": 0.8746298124383021, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.34089573292582576, + "t": 0.4332084011031751, + "punct": null + } + }, + "bg": { + "opus100": { + "u": 0.943789415958322, + "t": 0.9447318268445413, + "punct": null + }, + "ud": { + "u": 0.9484004127966976, + "t": 0.9560493827160493, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.46117064423856896, + "t": 0.4606182326231226, + "punct": null + } + }, + "bn": { + "opus100": { + "u": 0.8275490987355395, + "t": 0.8225591912742751, + "punct": null + }, + "ud": { + "u": 1.0, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.11409513779182025, + "t": 0.2682464454976303, + "punct": null + } + }, + "ca": { + "opus100": { + "u": 0.8942093541202673, + "t": 0.8938923395445135, + "punct": null + }, + "ud": { + "u": 0.9898688915375448, + "t": 0.9966957044157405, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.36219559335137225, + "t": 0.4018569217950244, + "punct": null + } + }, + "ceb": { + "ud": { + "u": 0.9940828402366864, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.21951219512195122, + "t": 0.3064516129032258, + "punct": null + } + }, + "cs": { + "ersatz": { + "u": 0.965016501650165, + "t": 0.9662698412698413, + "punct": null + }, + "opus100": { + "u": 0.8868253047011028, + "t": 0.9014159764894468, + "punct": null + }, + "ud": { + "u": 0.8908920627487708, + "t": 0.8838667106565491, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.42280556131977587, + "t": 0.42526526861057734, + "punct": null + } + }, + "cy": { + "opus100": { + "u": 0.32270531400966185, + "t": 0.729918509895227, + "punct": null + }, + "ud": { + "u": 0.9923753665689149, + "t": 0.9900642898889539, + "punct": null + } + }, + "da": { + "opus100": { + "u": 0.9048283561261512, + "t": 0.905902004454343, + "punct": null + }, + "ud": { + "u": 0.9398797595190381, + "t": 0.9530612244897959, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.42885999242519884, + "t": 0.4578535684788418, + "punct": null + } + }, + "de": { + "ersatz": { + "u": 0.9522693997071742, + "t": 0.9551622418879055, + "punct": null + }, + "opus100": { + "u": 0.7506329113924051, + "t": 0.7681947681947683, + "punct": null + }, + "ud": { + "u": 0.9310137972405519, + "t": 0.9327680193821926, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4312662374336383, + "t": 0.44431048873226375, + "punct": null + }, + "legal-all-laws": { + "u": 0.7511333158520798, + "t": 0.7138931377419722, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.38178681912872037, + "t": 0.4138642671014776, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.7303298029145556, + "t": 0.7435221996908239, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.26195438692366907, + "t": 0.343377546245001, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "el": { + "opus100": { + "u": 0.9394190871369295, + "t": 0.9390681003584229, + "punct": null + }, + "ud": { + "u": 0.9422110552763818, + "t": 0.9388753056234719, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.350365952832746, + "t": 0.4174117075933492, + "punct": null + } + }, + "en": { + "ersatz": { + "u": 0.8268693009118541, + "t": 0.9676330275229358, + "punct": null + }, + "opus100": { + "u": 0.8909657320872274, + "t": 0.9158928097638632, + "punct": null + }, + "ud": { + "u": 0.9284611425630469, + "t": 0.9247881355932204, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4284306095979248, + "t": 0.43589527027027025, + "punct": null + }, + "legal-all-judgements": { + "u": 0.814894197525921, + "t": 0.8183175167912022, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.18078062728425967, + "t": 0.31343055392811003, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "eo": { + "opus100": { + "u": 0.9234246962418762, + "t": 0.9341383095499453, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4301628106255356, + "t": 0.4376858610435253, + "punct": null + } + }, + "es": { + "ersatz": { + "u": 0.9550072568940494, + "t": null, + "punct": null + }, + "opus100": { + "u": 0.8888278891023882, + "t": 0.9022598870056496, + "punct": null + }, + "ud": { + "u": 0.9737258626147515, + "t": 0.9863901490602722, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.37759436824857384, + "t": 0.4187545315395151, + "punct": null + }, + "legal-all-laws": { + "u": 0.9045060557523987, + "t": 0.9182986699192894, + "punct": null, + "acc_u": 0.29508196721311475, + "acc_t": 0.3825136612021858, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.4399150853685214, + "t": 0.47869651723131773, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.7104359605424839, + "t": 0.7161027929370346, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.1453422160864028, + "t": 0.26496507368443073, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "et": { + "ersatz": { + "u": 0.9749303621169917, + "t": 0.963626492942454, + "punct": null + }, + "opus100": { + "u": 0.8646864686468646, + "t": 0.904006453347674, + "punct": null + }, + "ud": { + "u": 0.9311393310677875, + "t": 0.929872002884442, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.31184148451014315, + "t": 0.4179773267016176, + "punct": null + }, + "short-sequences": { + "u": 0.8974419733739167, + "t": 0.9076816220772879, + "punct": null, + "acc_u": 0.4729064039408867, + "acc_t": 0.5221674876847291, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.5868210473447151, + "t": 0.5864281691488229, + "punct": null, + "acc_u": 0.029556650246305417, + "acc_t": 0.029556650246305417, + "acc_punct": null + } + }, + "eu": { + "opus100": { + "u": 0.8486424032351242, + "t": 0.8772298006295908, + "punct": null + }, + "ud": { + "u": 0.9938309685379396, + "t": 0.9935324915306437, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.2872126757420219, + "t": 0.3665512233270025, + "punct": null + } + }, + "fa": { + "opus100": { + "u": 0.5332912590722626, + "t": 0.5405272234540527, + "punct": null + }, + "ud": { + "u": 0.9977134146341464, + "t": 0.9988553987027853, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.550229302437847, + "t": 0.5504605328315342, + "punct": null + } + }, + "fi": { + "ersatz": { + "u": 0.9610389610389609, + "t": 0.9619891397542155, + "punct": null + }, + "opus100": { + "u": 0.9339622641509434, + "t": 0.9327978580990629, + "punct": null + }, + "ud": { + "u": 0.9359970403255642, + "t": 0.9387464387464387, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.36614730878186963, + "t": 0.4406611719137054, + "punct": null + } + }, + "fr": { + "ersatz": { + "u": 0.9612349914236707, + "t": 0.9597523219814241, + "punct": null + }, + "opus100": { + "u": 0.8661679135494597, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9602122015915119, + "t": 0.9666221628838451, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3570672500176416, + "t": 0.4554878786656448, + "punct": null + }, + "legal-all-laws": { + "u": 0.8291674012781539, + "t": 0.8737060666508869, + "punct": null, + "acc_u": 0.5032679738562091, + "acc_t": 0.5751633986928104, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.2701776843198047, + "t": 0.34533075261778245, + "punct": null, + "acc_u": 0.010893246187363835, + "acc_t": 0.02832244008714597, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.7216251860392519, + "t": 0.7631318015487888, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.2208019252290554, + "t": 0.3008127399908799, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "fy": { + "opus100": { + "u": 0.6339321357285429, + "t": 0.8403990024937656, + "punct": null + } + }, + "ga": { + "opus100": { + "u": 0.6192816635160681, + "t": 0.8030176026823135, + "punct": null + }, + "ud": { + "u": 0.9818181818181818, + "t": 0.9829268292682927, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.2985074626865672, + "t": 0.3132530120481927, + "punct": null + } + }, + "gd": { + "opus100": { + "u": 0.4428571428571429, + "t": 0.799225931301403, + "punct": null + }, + "ud": { + "u": 0.7075351213282248, + "t": 0.7366120218579235, + "punct": null + } + }, + "gl": { + "opus100": { + "u": 0.889811738648948, + "t": 0.8809278350515464, + "punct": null + }, + "ud": { + "u": 0.943342776203966, + "t": 0.9432432432432432, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.38562425481178675, + "t": 0.40444949277349107, + "punct": null + } + }, + "gu": { + "ersatz": { + "u": 0.9262926292629263, + "t": 0.9229910714285714, + "punct": null + }, + "opus100": { + "u": 0.6659412404787813, + "t": 0.7522098659823211, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.2721396250808016, + "t": 0.3377372641781573, + "punct": null + } + }, + "ha": { + "opus100": { + "u": 0.8891257995735607, + "t": 0.8964992389649924, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.23076923076923075, + "t": 0.30769230769230765, + "punct": null + } + }, + "he": { + "opus100": { + "u": 0.9172690763052209, + "t": 0.9360755975541968, + "punct": null + }, + "ud": { + "u": 0.9415292353823089, + "t": 0.9418777943368107, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.16521896489323198, + "t": 0.3700076265403604, + "punct": null + } + }, + "hi": { + "ersatz": { + "u": 0.90741956664478, + "t": 0.9473684210526316, + "punct": null + }, + "opus100": { + "u": 0.6379258365993367, + "t": 0.6477244153884839, + "punct": null + }, + "ud": { + "u": 0.9966974900924702, + "t": 0.9976844194508766, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4525027585515097, + "t": 0.45556249099726315, + "punct": null + } + }, + "hu": { + "opus100": { + "u": 0.9400386847195358, + "t": 0.940980881130507, + "punct": null + }, + "ud": { + "u": 0.9900744416873448, + "t": 0.9888198757763975, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.1119359249853487, + "t": 0.38493181991315606, + "punct": null + } + }, + "hy": { + "opus100": { + "u": 0.8077994428969358, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9312063808574277, + "t": 0.9640831758034026, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.33775723232925736, + "t": 0.44937915836758907, + "punct": null + } + }, + "id": { + "opus100": { + "u": 0.9166197183098592, + "t": 0.9139815074250491, + "punct": null + }, + "ud": { + "u": 0.9775095995611629, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4333591416878664, + "t": 0.43979451196591907, + "punct": null + } + }, + "ig": { + "opus100": { + "u": 0.2600116076610563, + "t": 0.8922670191672175, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.07142857142857142, + "t": 0.14685314685314688, + "punct": null + } + }, + "is": { + "opus100": { + "u": 0.9530646051905025, + "t": 0.9449492250133618, + "punct": null + }, + "ud": { + "u": 0.9638168427793788, + "t": 0.9592417061611375, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.23468803663423013, + "t": 0.4357682619647355, + "punct": null + } + }, + "it": { + "opus100": { + "u": 0.8664563617245006, + "t": 0.8876498466685252, + "punct": null + }, + "ud": { + "u": 0.981859410430839, + "t": 0.9874285714285714, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3899880562912188, + "t": 0.4048074296640263, + "punct": null + }, + "legal-all-laws": { + "u": 0.7947146106617172, + "t": 0.7866469110157553, + "punct": null, + "acc_u": 0.3849431818181818, + "acc_t": 0.46875, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.32938855033230535, + "t": 0.3088533447264671, + "punct": null, + "acc_u": 0.05397727272727273, + "acc_t": 0.048295454545454544, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.7519384988845592, + "t": 0.7678155802126032, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.21564356303066126, + "t": 0.2655048042428471, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "ja": { + "ersatz": { + "u": 0.8562019758507136, + "t": 0.8773148148148148, + "punct": null + }, + "opus100": { + "u": 0.5659259259259259, + "t": 0.7011788826242952, + "punct": null + }, + "ud": { + "u": 0.9679420889348501, + "t": 0.9665271966527197, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7827259003666164, + "t": 0.8411815597577554, + "punct": null + } + }, + "jv": { + "ud": { + "u": 0.9906336088154271, + "t": null, + "punct": null + } + }, + "ka": { + "opus100": { + "u": 0.9139966273187183, + "t": 0.9225294278675061, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.2708710261049367, + "t": 0.34910001353363107, + "punct": null + } + }, + "kk": { + "ersatz": { + "u": 0.9961046188091263, + "t": 0.9846322722283204, + "punct": null + }, + "opus100": { + "u": 0.6798534798534799, + "t": 0.8611996522747031, + "punct": null + }, + "ud": { + "u": 0.9847448711204629, + "t": 0.9842602308499474, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.42433397418291674, + "t": 0.6264309918490704, + "punct": null + } + }, + "km": { + "ersatz": { + "u": 0.8642672312397084, + "t": 0.9050422318914769, + "punct": null + }, + "opus100": { + "u": 0.6810302129767211, + "t": 0.727433628318584, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3787289234760052, + "t": 0.37865748709122204, + "punct": null + } + }, + "kn": { + "opus100": { + "u": 0.5843270868824532, + "t": 0.7063711911357342, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.22514619883040937, + "t": 0.35607843137254896, + "punct": null + } + }, + "ko": { + "opus100": { + "u": 0.6786296900489397, + "t": 0.7397029980386663, + "punct": null + }, + "ud": { + "u": 0.9987855234393976, + "t": 0.9975657254138267, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7753145027296463, + "t": 0.7762161132021536, + "punct": null + } + }, + "ku": { + "opus100": { + "u": 0.776874435411021, + "t": 0.7244094488188977, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.02726014268980939, + "t": 0.2608580508474576, + "punct": null + } + }, + "ky": { + "opus100": { + "u": 0.8236162361623617, + "t": 0.8722149410222805, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.49840255591054317, + "t": 0.5761843790012804, + "punct": null + } + }, + "la": { + "ud": { + "u": 0.9390402075226978, + "t": 0.9380530973451328, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.30769230769230765, + "t": 0.4, + "punct": null + } + }, + "lt": { + "ersatz": { + "u": 0.9143173023770038, + "t": 0.9387521465369204, + "punct": null + }, + "opus100": { + "u": 0.8136349155782097, + "t": 0.8223738062755797, + "punct": null + }, + "ud": { + "u": 0.9261410788381743, + "t": 0.9213114754098359, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.31572912934432107, + "t": 0.40300505159535427, + "punct": null + } + }, + "lv": { + "ersatz": { + "u": 0.9859154929577465, + "t": 0.9891936824605153, + "punct": null + }, + "opus100": { + "u": 0.8052784036047635, + "t": 0.785027293995321, + "punct": null + }, + "ud": { + "u": 0.9863457532978478, + "t": 0.9872360176375029, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3240495453569127, + "t": 0.41390062774381486, + "punct": null + } + }, + "mg": { + "opus100": { + "u": 0.8502475247524752, + "t": 0.8715811409221152, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.21926910299003322, + "t": 0.3018181818181818, + "punct": null + } + }, + "mk": { + "opus100": { + "u": 0.9415900486749594, + "t": 0.943264318365152, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.44251926246789586, + "t": 0.4461493313210078, + "punct": null + } + }, + "ml": { + "opus100": { + "u": 0.8392711449551264, + "t": 0.83528102392877, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4114546732255797, + "t": 0.41999441496788603, + "punct": null + } + }, + "mn": { + "opus100": { + "u": 0.3473707178703906, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7401774397972116, + "t": 0.7429537153137435, + "punct": null + } + }, + "mr": { + "opus100": { + "u": 0.9028901734104046, + "t": 0.9079059223576084, + "punct": null + }, + "ud": { + "u": 0.9523809523809523, + "t": 0.923076923076923, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.32495205625399526, + "t": 0.32319545823195456, + "punct": null + } + }, + "ms": { + "opus100": { + "u": 0.9007153075822604, + "t": 0.89470871191876, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.42477608936298683, + "t": 0.4397712379363756, + "punct": null + } + }, + "mt": { + "opus100": { + "u": 0.6450884456153556, + "t": 0.7099381835473133, + "punct": null + }, + "ud": { + "u": 0.9222096956031567, + "t": 0.9392265193370166, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.021052631578947368, + "t": 0.24832214765100669, + "punct": null + } + }, + "my": { + "opus100": { + "u": 0.7725631768953067, + "t": 0.7704764870756774, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.8701734750979295, + "t": 0.8786862087232915, + "punct": null + } + }, + "ne": { + "opus100": { + "u": 0.6888731396172927, + "t": 0.7558509101415776, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.47644603458556944, + "t": 0.5547385620915033, + "punct": null + } + }, + "nl": { + "opus100": { + "u": 0.9366551815531408, + "t": null, + "punct": null + }, + "ud": { + "u": 0.934720908230842, + "t": 0.9348441926345609, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4675442122186495, + "t": 0.46821586326099485, + "punct": null + } + }, + "no": { + "opus100": { + "u": 0.9523550231418458, + "t": 0.9518891002989943, + "punct": null + }, + "ud": { + "u": 0.967032967032967, + "t": 0.9675952245594088, + "punct": null + } + }, + "pa": { + "opus100": { + "u": 0.6173205033308661, + "t": 0.7148721187243449, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.1783132530120482, + "t": 0.386892177589852, + "punct": null + } + }, + "pl": { + "ersatz": { + "u": 0.9484536082474226, + "t": 0.9452852153667054, + "punct": null + }, + "opus100": { + "u": 0.9337766694375172, + "t": 0.9335180055401662, + "punct": null + }, + "ud": { + "u": 0.9818913480885311, + "t": 0.9852866565195333, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.41516395881687795, + "t": 0.44775997048817473, + "punct": null + } + }, + "ps": { + "ersatz": { + "u": 0.899304865938431, + "t": 0.9338947368421052, + "punct": null + }, + "opus100": { + "u": 0.6976217440543601, + "t": 0.7540773904700991, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4871606749816582, + "t": 0.4720194647201946, + "punct": null + } + }, + "pt": { + "opus100": { + "u": 0.9121676067687349, + "t": 0.9218106995884774, + "punct": null + }, + "ud": { + "u": 0.9274790330537742, + "t": 0.9301895515487748, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4549335165104755, + "t": 0.45387293298520454, + "punct": null + }, + "legal-all-laws": { + "u": 0.6963796272508191, + "t": 0.6308973944151256, + "punct": null, + "acc_u": 0.08620689655172414, + "acc_t": 0.05172413793103448, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.4577408649060269, + "t": 0.4223303079429923, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.7578737438881799, + "t": 0.7805533325013817, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.18379273145245, + "t": 0.11036936634520882, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "ro": { + "ersatz": { + "u": 0.9576584256891162, + "t": 0.9606389047347405, + "punct": null + }, + "opus100": { + "u": 0.9369571308489772, + "t": 0.9356270810210877, + "punct": null + }, + "ud": { + "u": 0.988929889298893, + "t": 0.988929889298893, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.33991037388803425, + "t": 0.40681702560624045, + "punct": null + } + }, + "ru": { + "ersatz": { + "u": 0.9438596491228071, + "t": 0.9434628975265017, + "punct": null + }, + "opus100": { + "u": 0.8111206649469762, + "t": null, + "punct": null + }, + "ud": { + "u": 0.8520302821748107, + "t": 0.8711111111111112, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4396690279183285, + "t": 0.47033703160979695, + "punct": null + } + }, + "si": { + "opus100": { + "u": 0.8338593974175037, + "t": 0.8355452971725332, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4113980409617097, + "t": 0.3962920046349942, + "punct": null + } + }, + "sk": { + "opus100": { + "u": 0.9280089988751407, + "t": 0.9117802430005283, + "punct": null + }, + "ud": { + "u": 0.8803131991051455, + "t": 0.882286995515695, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.42931174089068824, + "t": 0.43168654173764903, + "punct": null + } + }, + "sl": { + "opus100": { + "u": 0.9309031556039172, + "t": 0.9273209549071617, + "punct": null + }, + "ud": { + "u": 0.9813124728378966, + "t": 0.986013986013986, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3768232302957313, + "t": 0.41823757553891944, + "punct": null + }, + "short-sequences": { + "u": 0.7858032953524154, + "t": 0.7839318753908197, + "punct": null, + "acc_u": 0.3280791788856305, + "acc_t": 0.32368035190615835, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.6752926529319492, + "t": 0.6771202475839573, + "punct": null, + "acc_u": 0.14222873900293256, + "acc_t": 0.15249266862170088, + "acc_punct": null + } + }, + "sq": { + "opus100": { + "u": 0.9311018131101813, + "t": 0.9094725793754921, + "punct": null + }, + "ud": { + "u": 1.0, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.39649871595471475, + "t": 0.40040737984253205, + "punct": null + } + }, + "sr": { + "opus100": { + "u": 0.9488017429193899, + "t": 0.9475970676079283, + "punct": null + }, + "ud": { + "u": 0.9696312364425164, + "t": 0.9694323144104804, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3626393492015667, + "t": 0.3879302716573755, + "punct": null + }, + "short-sequences": { + "u": 0.9007207491582493, + "t": 0.9129464285714285, + "punct": null, + "acc_u": 0.640625, + "acc_t": 0.6770833333333334, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.6059689153439153, + "t": 0.6202008928571429, + "punct": null, + "acc_u": 0.036458333333333336, + "acc_t": 0.06770833333333333, + "acc_punct": null + } + }, + "sv": { + "opus100": { + "u": 0.9360417238539664, + "t": 0.9279829922933829, + "punct": null + }, + "ud": { + "u": 0.944385026737968, + "t": 0.9413008989952406, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.42548639433041385, + "t": 0.46778331069865703, + "punct": null + } + }, + "ta": { + "ersatz": { + "u": 0.9418666666666667, + "t": 0.9771332961517011, + "punct": null + }, + "opus100": { + "u": 0.5532217871128515, + "t": 0.5911620294599018, + "punct": null + }, + "ud": { + "u": 0.923076923076923, + "t": 0.981651376146789, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.18572574178027268, + "t": 0.3989637305699482, + "punct": null + } + }, + "te": { + "opus100": { + "u": 0.7817292006525286, + "t": 0.7884733292458616, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.41629867523083103, + "t": 0.4239007891770012, + "punct": null + } + }, + "tg": { + "opus100": { + "u": 0.6752613240418118, + "t": 0.8787640743650169, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.16993464052287582, + "t": 0.5408450704225352, + "punct": null + } + }, + "th": { + "opus100": { + "u": 0.2925925925925926, + "t": 0.6825535636204635, + "punct": null + }, + "ud": { + "u": 0.03683640303358614, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.08256595964821521, + "t": 0.5100112485939258, + "punct": null + } + }, + "tr": { + "ersatz": { + "u": 0.9507398389211463, + "t": 0.9388201019664967, + "punct": null + }, + "opus100": { + "u": 0.94010989010989, + "t": 0.939917695473251, + "punct": null + }, + "ud": { + "u": 0.9798590130916416, + "t": 0.9804118533400302, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6344361475990625, + "t": 0.6384384689676206, + "punct": null + } + }, + "uk": { + "opus100": { + "u": 0.9051937345424567, + "t": 0.8961072441350865, + "punct": null + }, + "ud": { + "u": 0.9457562220804084, + "t": 0.9432314410480349, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3806155861165685, + "t": 0.4371738257727821, + "punct": null + } + }, + "ur": { + "opus100": { + "u": 0.48041594454072795, + "t": 0.5403225806451614, + "punct": null + }, + "ud": { + "u": 0.9906735751295338, + "t": 0.9937369519832986, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5101172683375489, + "t": 0.5101172683375489, + "punct": null + } + }, + "uz": { + "opus100": { + "u": 0.5308134757600658, + "t": 0.8109020742884708, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6214553638409602, + "t": 0.6270714569799815, + "punct": null + } + }, + "vi": { + "opus100": { + "u": 0.9121894858463316, + "t": 0.9107625743645213, + "punct": null + }, + "ud": { + "u": 0.9755766621438263, + "t": 0.9848275862068965, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.2828900583131845, + "t": 0.37115498686551984, + "punct": null + } + }, + "xh": { + "opus100": { + "u": 0.7096774193548386, + "t": 0.867104887110603, + "punct": null + } + }, + "yi": { + "opus100": { + "u": 0.5431632010081915, + "t": 0.8098495212038302, + "punct": null + } + }, + "yo": { + "opus100": { + "u": 0.2378160146111699, + "t": null, + "punct": null + }, + "ud": { + "u": 0.8851913477537438, + "t": null, + "punct": null + } + }, + "zh": { + "ersatz": { + "u": 0.8922991071428572, + "t": 0.9159953970080552, + "punct": null + }, + "opus100": { + "u": 0.692191739523666, + "t": 0.7489249090307641, + "punct": null + }, + "ud": { + "u": 0.9833518312985573, + "t": 0.9910313901345292, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.10473702146995344, + "t": 0.3338077243951514, + "punct": null + } + }, + "zu": { + "opus100": { + "u": 0.42639593908629453, + "t": 0.8852744699390066, + "punct": null + } + }, + "tr-de": { + "code-switching": { + "u": 0.9836734693877551, + "t": 0.9930458970792767, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.2837837837837837, + "t": 0.2860318636532049, + "punct": null + } + }, + "es-en": { + "code-switching": { + "u": 0.9298474945533769, + "t": 0.9379128137384412, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.4607843137254902, + "t": 0.4694749694749694, + "punct": null + } + }, + "vi-en": { + "code-switching": { + "u": 0.36338672768878727, + "t": 0.4141689373297003, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.4064516129032258, + "t": 0.41058887088060503, + "punct": null + } + }, + "en-de": { + "code-switching": { + "u": 0.8111298482293423, + "t": 0.889970788704966, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.330488750969744, + "t": 0.33499377334993774, + "punct": null + }, + "short-sequences": { + "u": 0.8733915125186017, + "t": 0.9382167870053434, + "punct": null, + "acc_u": 0.4781704781704782, + "acc_t": 0.7068607068607069, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.6041694576385344, + "t": 0.6068916729617004, + "punct": null, + "acc_u": 0.11226611226611227, + "acc_t": 0.10395010395010396, + "acc_punct": null + } + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-1l.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-1l.json new file mode 100644 index 0000000000000000000000000000000000000000..e5db5c6311793ee4fc069897f98fa305d7f9814c --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-1l.json @@ -0,0 +1,2450 @@ +{ + "af": { + "opus100": { + "u": 0.4740050197203299, + "t": 0.6678949792722249, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4870013891645168, + "t": 0.4878447395301327, + "punct": null + }, + "ud": { + "u": 0.9526184538653367, + "t": 0.9934810951760106, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.47297297297297297, + "t": 0.5714285714285714, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.436697247706422, + "t": 0.4431731502669718, + "punct": null + } + }, + "am": { + "opus100": { + "u": 0.15532335498446764, + "t": 0.40687838025239215, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.44655216611125353, + "t": 0.45684620376378976, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4715284715284715, + "t": 0.4742857142857143, + "punct": null + } + }, + "ar": { + "ersatz": { + "u": 0.897080291970803, + "t": 0.8953714507973551, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.41674780915287246, + "t": 0.42550000000000004, + "punct": null + }, + "opus100": { + "u": 0.609072715143429, + "t": 0.608122179798681, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4572916666666666, + "t": 0.46003984945760457, + "punct": null + }, + "ud": { + "u": 0.774721189591078, + "t": 0.8019017432646592, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.4685587089593768, + "t": 0.5063091482649842, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3851970885716987, + "t": 0.3959431722139494, + "punct": null + } + }, + "az": { + "opus100": { + "u": 0.7330784798740724, + "t": 0.7579585649317838, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5762792922046868, + "t": 0.5763808643401895, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.644286938235065, + "t": 0.6470767356881851, + "punct": null + } + }, + "be": { + "opus100": { + "u": 0.45652861207714196, + "t": 0.6101000909918107, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5269482884195192, + "t": 0.5378341640235613, + "punct": null + }, + "ud": { + "u": 0.8330716902145473, + "t": 0.8186732186732187, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.37303370786516854, + "t": 0.3937377690802348, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4015372074065448, + "t": 0.40354601073791985, + "punct": null + } + }, + "bg": { + "opus100": { + "u": 0.931367292225201, + "t": 0.9365721997300944, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4974874371859297, + "t": 0.5076142131979696, + "punct": null + }, + "ud": { + "u": 0.9386098427194318, + "t": 0.9432404540763673, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.4345323741007194, + "t": 0.4556354916067146, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4288685203727952, + "t": 0.4307220628119963, + "punct": null + } + }, + "bn": { + "opus100": { + "u": 0.8030106410589151, + "t": 0.8018162393162394, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.2798001427551749, + "t": 0.3301734104046242, + "punct": null + }, + "ud": { + "u": 0.9333333333333333, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.27499999999999997, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.19493537325243998, + "t": 0.24157167111326702, + "punct": null + } + }, + "ca": { + "opus100": { + "u": 0.8482349909817057, + "t": 0.882803943044907, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.41208969775755605, + "t": 0.4180943214629451, + "punct": null + }, + "ud": { + "u": 0.983121113414273, + "t": 0.9931075816601738, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.29174412247129583, + "t": 0.39305159450350013, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3670606729344902, + "t": 0.38026092724994476, + "punct": null + } + }, + "ceb": { + "ud": { + "u": 0.9881656804733728, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.463963963963964, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.25974025974025977, + "t": 0.25225225225225223, + "punct": null + } + }, + "cs": { + "ersatz": { + "u": 0.9512036434612882, + "t": 0.9573553719008264, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.3335647344671989, + "t": 0.36668334167083544, + "punct": null + }, + "opus100": { + "u": 0.8696343402225756, + "t": 0.8794557823129252, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.45057941376959776, + "t": 0.47927461139896377, + "punct": null + }, + "ud": { + "u": 0.8668624300515264, + "t": 0.8843497600374576, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.3554235170993552, + "t": 0.366871590613906, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3827877507919747, + "t": 0.3935437930215998, + "punct": null + } + }, + "cy": { + "opus100": { + "u": 0.361284939507718, + "t": 0.5969049373618275, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.46077097505668935, + "t": 0.4641697337085949, + "punct": null + }, + "ud": { + "u": 0.9877693651718115, + "t": 0.9900642898889539, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.38253133845531745, + "t": 0.385593220338983, + "punct": null + } + }, + "da": { + "opus100": { + "u": 0.8741478762454116, + "t": 0.8932249322493225, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4386119429276026, + "t": 0.46167323696890056, + "punct": null + }, + "ud": { + "u": 0.8981921979067554, + "t": 0.9298067141403866, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.36826347305389223, + "t": 0.46208742194469227, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4133390582510376, + "t": 0.4366504291347715, + "punct": null + } + }, + "de": { + "ersatz": { + "u": 0.9220338983050848, + "t": 0.9471520845566648, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.4079619517350714, + "t": 0.43744998666311014, + "punct": null + }, + "opus100": { + "u": 0.739305485656769, + "t": 0.7727016356457981, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.38652373660030626, + "t": 0.4521957340025095, + "punct": null + }, + "ud": { + "u": 0.9342560553633218, + "t": 0.9367541766109785, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.4044036697247706, + "t": 0.4328638497652582, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.39758956360505926, + "t": 0.416403785488959, + "punct": null + }, + "legal-all-laws": { + "u": 0.7594576633080057, + "t": 0.7792309668479116, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.42056365377138477, + "t": 0.49064465706706323, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.691578526504995, + "t": 0.7330234622968677, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.29739446068875136, + "t": 0.31072160591158104, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "el": { + "opus100": { + "u": 0.9092832583972493, + "t": 0.9194721249663346, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4706976744186047, + "t": 0.4704983769333588, + "punct": null + }, + "ud": { + "u": 0.9400244798041616, + "t": 0.9404466501240695, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.46049046321525877, + "t": 0.5272914521112256, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4188006942230723, + "t": 0.42620493807683213, + "punct": null + } + }, + "en": { + "ersatz": { + "u": 0.7919930374238469, + "t": 0.9506758700028761, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.2827936788595425, + "t": 0.32410284119050836, + "punct": null + }, + "opus100": { + "u": 0.8750349454850435, + "t": 0.7930528375733855, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5448042168674698, + "t": 0.5707607309817255, + "punct": null + }, + "ud": { + "u": 0.8986653484923381, + "t": 0.9139004149377594, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.3824561403508772, + "t": 0.39365918097754293, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.38124439126533055, + "t": 0.38479292775334234, + "punct": null + }, + "legal-all-judgements": { + "u": 0.7035407141331292, + "t": 0.7859171697354853, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.2886026117351331, + "t": 0.31649539624828754, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "eo": { + "opus100": { + "u": 0.8756665731125456, + "t": 0.8132423553196868, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5041476214660572, + "t": 0.544111439425918, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4046712892966999, + "t": 0.4118789549526972, + "punct": null + } + }, + "es": { + "ersatz": { + "u": 0.9578794480755264, + "t": null, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.34446895682319567, + "t": null, + "punct": null + }, + "opus100": { + "u": 0.878539296110082, + "t": 0.9030654515327258, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.3945968072042571, + "t": 0.4427899686520376, + "punct": null + }, + "ud": { + "u": 0.9762432689261957, + "t": 0.9874799357945426, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.2814781534314276, + "t": 0.39051522248243553, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.38273031676889796, + "t": 0.40390597314643456, + "punct": null + }, + "legal-all-laws": { + "u": 0.8318368312251105, + "t": 0.8318096753971416, + "punct": null, + "acc_u": 0.17486338797814208, + "acc_t": 0.17486338797814208, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.39971416161577017, + "t": 0.5558734842057265, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.00546448087431694, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.6683888281152442, + "t": 0.6888833475490792, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.23414838539551125, + "t": 0.276325105055905, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "et": { + "ersatz": { + "u": 0.9579464773347898, + "t": 0.9660167130919222, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.30204523906271163, + "t": 0.3356093523691289, + "punct": null + }, + "opus100": { + "u": 0.8632454923717059, + "t": 0.8626342566421709, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.3707502374169041, + "t": 0.37641154328732745, + "punct": null + }, + "ud": { + "u": 0.9184269277004982, + "t": 0.9437765205091938, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.33378280261383675, + "t": 0.341692789968652, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.37686994550692443, + "t": 0.3830065359477124, + "punct": null + }, + "short-sequences": { + "u": 0.864256522232845, + "t": 0.8870907230774118, + "punct": null, + "acc_u": 0.3842364532019704, + "acc_t": 0.458128078817734, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.3910998970196787, + "t": 0.4760218391291092, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.009852216748768473, + "acc_punct": null + } + }, + "eu": { + "opus100": { + "u": 0.8284541723666211, + "t": 0.8419864559819413, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.3566799080075267, + "t": 0.35880640465793306, + "punct": null + }, + "ud": { + "u": 0.9916692378895402, + "t": 0.991358024691358, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.36748962202315927, + "t": 0.3723083115314953, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3545011374715632, + "t": 0.3555778768284261, + "punct": null + } + }, + "fa": { + "opus100": { + "u": 0.5004170141784821, + "t": 0.5441586612953208, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4282589676290463, + "t": 0.4221318720169701, + "punct": null + }, + "ud": { + "u": 0.9754098360655737, + "t": 0.9901589704769115, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7371495327102804, + "t": 0.8032564450474898, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5332914572864321, + "t": 0.5493524332810048, + "punct": null + } + }, + "fi": { + "ersatz": { + "u": 0.956273220920263, + "t": 0.9581770983559272, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.3686875994790913, + "t": 0.40809443507588533, + "punct": null + }, + "opus100": { + "u": 0.917401764234162, + "t": 0.9209603452926893, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.44469826765657716, + "t": 0.4430707876370888, + "punct": null + }, + "ud": { + "u": 0.9259525521207764, + "t": 0.9328467153284672, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.37787828947368424, + "t": 0.39558181351143074, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.39238134887593673, + "t": 0.401437612313462, + "punct": null + } + }, + "fr": { + "ersatz": { + "u": 0.9482526881720431, + "t": 0.9625815310676279, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.3896910985194663, + "t": 0.4277831872768582, + "punct": null + }, + "opus100": { + "u": 0.8536836682122616, + "t": null, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.40139140955837865, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9446589446589446, + "t": 0.9679144385026738, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.3483788938334393, + "t": 0.39570277529095793, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4106765150243411, + "t": 0.4246432579765913, + "punct": null + }, + "legal-all-laws": { + "u": 0.9003150485053685, + "t": 0.9128454817097417, + "punct": null, + "acc_u": 0.5925925925925926, + "acc_t": 0.6470588235294118, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.40256371504442773, + "t": 0.5069009120475133, + "punct": null, + "acc_u": 0.023965141612200435, + "acc_t": 0.08278867102396514, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.6902370502551352, + "t": 0.726538384724516, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.2542930999004763, + "t": 0.27214432504403707, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "fy": { + "opus100": { + "u": 0.31087662337662336, + "t": 0.6228868660598179, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4666121559007904, + "t": 0.48721132356592994, + "punct": null + } + }, + "ga": { + "opus100": { + "u": 0.6991368680641183, + "t": 0.5465547530743704, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.3611798287345386, + "t": 0.3652275379229871, + "punct": null + }, + "ud": { + "u": 0.9121621621621622, + "t": 0.9561091340450771, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.37202152190622595, + "t": 0.39173014145810664, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.2573099415204678, + "t": 0.26455026455026454, + "punct": null + } + }, + "gd": { + "opus100": { + "u": 0.4194407456724367, + "t": 0.6458593424885559, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4116473873155166, + "t": 0.4048991354466859, + "punct": null + }, + "ud": { + "u": 0.6565272496831432, + "t": 0.6692810457516339, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.36632891660171474, + "t": 0.35555555555555557, + "punct": null + } + }, + "gl": { + "opus100": { + "u": 0.8515215110178385, + "t": 0.8781853822458695, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4571529745042493, + "t": 0.4745409015025042, + "punct": null + }, + "ud": { + "u": 0.9460227272727274, + "t": 0.9425287356321839, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.3555900621118012, + "t": 0.381243628950051, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3952766936855799, + "t": 0.40628609140405875, + "punct": null + } + }, + "gu": { + "ersatz": { + "u": 0.9307822172200338, + "t": 0.9318309859154931, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.6261530113944654, + "t": 0.6323377960865088, + "punct": null + }, + "opus100": { + "u": 0.5143859649122806, + "t": 0.6094251171971379, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.38734896943852165, + "t": 0.43341604631927205, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3435424137322909, + "t": 0.3462683276375262, + "punct": null + } + }, + "ha": { + "opus100": { + "u": 0.8585437607256681, + "t": 0.8860158311345645, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.23434077967586509, + "t": 0.2588038010061487, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3, + "t": 0.14285714285714285, + "punct": null + } + }, + "he": { + "opus100": { + "u": 0.9025346224196499, + "t": 0.9106292966684294, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5082444228903977, + "t": 0.512455516014235, + "punct": null + }, + "ud": { + "u": 0.9121813031161473, + "t": 0.9300291545189504, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.34347826086956523, + "t": 0.3436563436563436, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.37992945186476956, + "t": 0.37896694695237726, + "punct": null + } + }, + "hi": { + "ersatz": { + "u": 0.9228813559322034, + "t": 0.938474870017331, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.6007002026902525, + "t": 0.5996827075621364, + "punct": null + }, + "opus100": { + "u": 0.5604674796747967, + "t": 0.4927234927234927, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4078774617067834, + "t": 0.4078774617067834, + "punct": null + }, + "ud": { + "u": 0.9700868446445802, + "t": 0.985592665356909, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.720073103868413, + "t": 0.7201708880073238, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.43671569849580316, + "t": 0.4362818590704648, + "punct": null + } + }, + "hu": { + "opus100": { + "u": 0.9230769230769231, + "t": 0.9277301927194862, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.45612632420547666, + "t": 0.4524920664551055, + "punct": null + }, + "ud": { + "u": 0.9734299516908212, + "t": 0.9865030674846625, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.2754098360655738, + "t": 0.27899432278994324, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3765123765123765, + "t": 0.3765029697233087, + "punct": null + } + }, + "hy": { + "opus100": { + "u": 0.7583190394511148, + "t": null, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5383919484337895, + "t": null, + "punct": null + }, + "ud": { + "u": 0.925287356321839, + "t": 0.9114173228346457, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.38209331651954603, + "t": 0.3847750865051904, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4320128051220488, + "t": 0.4344886606760805, + "punct": null + } + }, + "id": { + "opus100": { + "u": 0.8731422505307856, + "t": 0.9035307200444814, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.48347529812606477, + "t": 0.5002886280546469, + "punct": null + }, + "ud": { + "u": 0.9685124864277959, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.31698113207547174, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.38236644726771774, + "t": 0.40861538461538466, + "punct": null + } + }, + "ig": { + "opus100": { + "u": 0.39783357951747905, + "t": 0.7007424328954882, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.11079053664166187, + "t": 0.34208683473389356, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.09448818897637795, + "t": 0.16741405082212257, + "punct": null + } + }, + "is": { + "opus100": { + "u": 0.9312197743148846, + "t": 0.9378068739770867, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.40583777715408365, + "t": 0.4071983062808751, + "punct": null + }, + "ud": { + "u": 0.7631118152255483, + "t": 0.9072060168716334, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.2566328201768752, + "t": 0.2495868861127636, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4243037974683544, + "t": 0.42898550724637685, + "punct": null + } + }, + "it": { + "opus100": { + "u": 0.8502147006819905, + "t": 0.8677531391931605, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.3702632340179346, + "t": 0.3864248518585024, + "punct": null + }, + "ud": { + "u": 0.9752252252252251, + "t": 0.9722863741339491, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.3548387096774193, + "t": 0.3812765957446809, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3726035416361774, + "t": 0.3972400961314831, + "punct": null + }, + "legal-all-laws": { + "u": 0.7624323805423202, + "t": 0.7645523584179768, + "punct": null, + "acc_u": 0.21306818181818182, + "acc_t": 0.40198863636363635, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.3202226730065487, + "t": 0.3599793252788645, + "punct": null, + "acc_u": 0.008522727272727272, + "acc_t": 0.022727272727272728, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.6691441394773842, + "t": 0.7307688808469813, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.2199352711170134, + "t": 0.23222016437742257, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "ja": { + "ersatz": { + "u": 0.7895238095238096, + "t": 0.8451790633608814, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.5752175714877746, + "t": 0.6143344709897611, + "punct": null + }, + "opus100": { + "u": 0.586132952108649, + "t": 0.7153806847215125, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7097345132743365, + "t": 0.7087492660011744, + "punct": null + }, + "ud": { + "u": 0.9621289662231322, + "t": 0.9719042663891778, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7169811320754716, + "t": 0.7140000000000001, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.8412401519016041, + "t": 0.8658846293384932, + "punct": null + } + }, + "jv": { + "ud": { + "u": 0.9761388286334057, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.2675974403723095, + "t": null, + "punct": null + } + }, + "ka": { + "opus100": { + "u": 0.829435253850542, + "t": 0.8337595907928389, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.07715648027741656, + "t": 0.2732702379858495, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3711031175059952, + "t": 0.3711718600649972, + "punct": null + } + }, + "kk": { + "ersatz": { + "u": 0.9824368825466521, + "t": 0.9823982398239824, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.6827309236947792, + "t": 0.6876668446342765, + "punct": null + }, + "opus100": { + "u": 0.5149489975378122, + "t": 0.6924034869240349, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6199649737302976, + "t": 0.619332336821126, + "punct": null + }, + "ud": { + "u": 0.9537836465210766, + "t": 0.89171974522293, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7375132837407012, + "t": 0.7288231949971574, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6168067226890757, + "t": 0.618929457639135, + "punct": null + } + }, + "km": { + "ersatz": { + "u": 0.8729769494850417, + "t": 0.8984094407388404, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.4333263554532133, + "t": 0.43371166384931176, + "punct": null + }, + "opus100": { + "u": 0.5211422295442064, + "t": 0.5070738827756568, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5340248962655603, + "t": 0.6070038910505836, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5163329820864068, + "t": 0.5148514851485149, + "punct": null + } + }, + "kn": { + "opus100": { + "u": 0.43918474687705455, + "t": 0.56777727065267, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4650259067357513, + "t": 0.48737864077669907, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3646778042959427, + "t": 0.37410714285714286, + "punct": null + } + }, + "ko": { + "opus100": { + "u": 0.5339043540328337, + "t": 0.6500798904359736, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6495907050435702, + "t": 0.6432828977533241, + "punct": null + }, + "ud": { + "u": 0.9922779922779923, + "t": 0.995384989069711, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.98095703125, + "t": 0.9811689899730985, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7570720058780309, + "t": 0.7672878630214738, + "punct": null + } + }, + "ku": { + "opus100": { + "u": 0.543175487465181, + "t": 0.35853327297419646, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5124223602484471, + "t": 0.5030940594059405, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.12567907240736237, + "t": 0.2317497864511466, + "punct": null + } + }, + "ky": { + "opus100": { + "u": 0.4736842105263158, + "t": 0.7273778548713502, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5688017162120749, + "t": 0.575261604507647, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6052303860523038, + "t": 0.6141935483870967, + "punct": null + } + }, + "la": { + "ud": { + "u": 0.8961996596710153, + "t": 0.8964554842310913, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.0104384133611691, + "t": 0.38496831986017044, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3529411764705882, + "t": 0.32432432432432434, + "punct": null + } + }, + "lt": { + "ersatz": { + "u": 0.8746048472075869, + "t": 0.9053221288515406, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.28598043782021426, + "t": 0.31119691119691123, + "punct": null + }, + "opus100": { + "u": 0.797232570516232, + "t": 0.8005383580080754, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.31454819690113817, + "t": 0.325112455405615, + "punct": null + }, + "ud": { + "u": 0.9287429943955164, + "t": 0.9377049180327869, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.3070803500397772, + "t": 0.32952252858103565, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.37213333333333337, + "t": 0.3779067561928606, + "punct": null + } + }, + "lv": { + "ersatz": { + "u": 0.9672175562178271, + "t": 0.9734900245968844, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.30306161994574343, + "t": 0.32301587301587303, + "punct": null + }, + "opus100": { + "u": 0.7869471413160734, + "t": 0.8090466647580875, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.30059141167395215, + "t": 0.3441336284966794, + "punct": null + }, + "ud": { + "u": 0.9604672057502246, + "t": 0.9730470534490635, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.322674036057376, + "t": 0.33004926108374383, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3832236842105263, + "t": 0.3852400196396873, + "punct": null + } + }, + "mg": { + "opus100": { + "u": 0.8457738748627881, + "t": 0.8711621233859399, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.26461272674920816, + "t": 0.2737525632262474, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.2833052276559865, + "t": 0.2979942693409742, + "punct": null + } + }, + "mk": { + "opus100": { + "u": 0.9242860885512182, + "t": 0.937816920202829, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.438670490973511, + "t": 0.44712182061579653, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4081001076426265, + "t": 0.41916314905126845, + "punct": null + } + }, + "ml": { + "opus100": { + "u": 0.8068577551567103, + "t": 0.8023320377568017, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4952924393723252, + "t": 0.4931586608442503, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.407349735284958, + "t": 0.4104443426477325, + "punct": null + } + }, + "mn": { + "opus100": { + "u": 0.31852654387865653, + "t": null, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.373134328358209, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6792658549881883, + "t": 0.6955028442631749, + "punct": null + } + }, + "mr": { + "opus100": { + "u": 0.8674220963172805, + "t": 0.8489054991991457, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5329996872067564, + "t": 0.5405252753459475, + "punct": null + }, + "ud": { + "u": 0.7042253521126761, + "t": 0.6956521739130435, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.4390243902439024, + "t": 0.39215686274509803, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3160725585319553, + "t": 0.3195597177222494, + "punct": null + } + }, + "ms": { + "opus100": { + "u": 0.8475693490799232, + "t": 0.8696642003414912, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4409814323607427, + "t": 0.4600674915635546, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3929170549860205, + "t": 0.41836734693877553, + "punct": null + } + }, + "mt": { + "opus100": { + "u": 0.6659636171895598, + "t": 0.7083960276858262, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.17437636231533057, + "t": 0.171072319201995, + "punct": null + }, + "ud": { + "u": 0.9024134312696747, + "t": 0.8922742110990206, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.09562841530054646, + "t": 0.15187557182067704, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.10769230769230768, + "t": 0.19354838709677422, + "punct": null + } + }, + "my": { + "opus100": { + "u": 0.49522597071928703, + "t": 0.5142540824799335, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6353015472055573, + "t": 0.6344430217669654, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7656799737298869, + "t": 0.8699856115107913, + "punct": null + } + }, + "ne": { + "opus100": { + "u": 0.5284754156349487, + "t": 0.6118721461187214, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.581842726965913, + "t": 0.5925345862699034, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5587422987040578, + "t": 0.5388480865867801, + "punct": null + } + }, + "nl": { + "opus100": { + "u": 0.9079251090023083, + "t": null, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.49734480864310565, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9213691026827012, + "t": 0.9463601532567051, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.3535714285714286, + "t": 0.40551181102362205, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4254846105745848, + "t": 0.44073337751270153, + "punct": null + } + }, + "no": { + "opus100": { + "u": 0.9415549597855227, + "t": 0.9455727051177905, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5379733879222108, + "t": 0.5400728597449909, + "punct": null + }, + "ud": { + "u": 0.9646653260557312, + "t": 0.9641113982199254, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.40041188584877907, + "t": 0.47616695480365523, + "punct": null + } + }, + "pa": { + "opus100": { + "u": 0.4748055461616503, + "t": 0.5923492137995775, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.47434292866082606, + "t": 0.5051464766429137, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3829268292682927, + "t": 0.3936063936063936, + "punct": null + } + }, + "pl": { + "ersatz": { + "u": 0.9029810298102982, + "t": 0.9182968929804373, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.3042986425339367, + "t": 0.31256830601092894, + "punct": null + }, + "opus100": { + "u": 0.9164665065385641, + "t": 0.9228687415426252, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4669652855543113, + "t": 0.4709651581898278, + "punct": null + }, + "ud": { + "u": 0.9405017921146953, + "t": 0.9575460122699386, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.3644918444165621, + "t": 0.3664782174925174, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4124188712187346, + "t": 0.41413618816412623, + "punct": null + } + }, + "ps": { + "ersatz": { + "u": 0.9166156982670746, + "t": 0.9235524417885843, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.5975831815924516, + "t": 0.6053036126056879, + "punct": null + }, + "opus100": { + "u": 0.45668016194331984, + "t": 0.5969785575048733, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4624553039332539, + "t": 0.6042189854344552, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4939329050678088, + "t": 0.5089430894308944, + "punct": null + } + }, + "pt": { + "opus100": { + "u": 0.8961919666145018, + "t": 0.92253136933988, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.3984984117816922, + "t": 0.4267352185089974, + "punct": null + }, + "ud": { + "u": 0.9238329238329238, + "t": 0.9236145781328008, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.33028269269880006, + "t": 0.3907962016070124, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.40179981525075237, + "t": 0.43768545994065283, + "punct": null + }, + "legal-all-laws": { + "u": 0.5593707485722074, + "t": 0.5383207819332309, + "punct": null, + "acc_u": 0.017241379310344827, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.3756616596304983, + "t": 0.41038814424356446, + "punct": null, + "acc_u": 0.017241379310344827, + "acc_t": 0.017241379310344827, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.6976969093187156, + "t": 0.7227049698506929, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.2777151861383879, + "t": 0.29525120087487444, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "ro": { + "ersatz": { + "u": 0.9505617977528088, + "t": 0.959521094640821, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.2970997944736241, + "t": 0.32809683234612413, + "punct": null + }, + "opus100": { + "u": 0.9076029567053856, + "t": 0.923329682365827, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4468412942989214, + "t": 0.4468412942989214, + "punct": null + }, + "ud": { + "u": 0.7196652719665272, + "t": 0.8651206814955041, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.20845839017735335, + "t": 0.20698306502195277, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.38608376556931656, + "t": 0.3894083444645242, + "punct": null + } + }, + "ru": { + "ersatz": { + "u": 0.9297544260422614, + "t": 0.9427570093457944, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.37600221177771637, + "t": 0.4393747359526827, + "punct": null + }, + "opus100": { + "u": 0.7730246602918973, + "t": null, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.3389694041867955, + "t": null, + "punct": null + }, + "ud": { + "u": 0.7671865973425767, + "t": 0.8103015075376885, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.3838731909028256, + "t": 0.403960396039604, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.43333933393339336, + "t": 0.4448066875653082, + "punct": null + } + }, + "si": { + "opus100": { + "u": 0.7964852607709749, + "t": 0.7965217391304348, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5398622047244094, + "t": 0.5393309222423146, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.38253968253968257, + "t": 0.32944228274967574, + "punct": null + } + }, + "sk": { + "opus100": { + "u": 0.9048253798986937, + "t": 0.92001092001092, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.41248448306437313, + "t": 0.4122110464090348, + "punct": null + }, + "ud": { + "u": 0.8744493392070485, + "t": 0.8763290430889759, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.38642714570858283, + "t": 0.38991343620624763, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3851816989948566, + "t": 0.3943352555804009, + "punct": null + } + }, + "sl": { + "opus100": { + "u": 0.9059829059829061, + "t": 0.9261923794297896, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4285470377326276, + "t": 0.4457027300303336, + "punct": null + }, + "ud": { + "u": 0.9587542087542088, + "t": 0.9792207792207791, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.32995352767215885, + "t": 0.35085574572127143, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.37201091317605517, + "t": 0.38007150629566305, + "punct": null + }, + "short-sequences": { + "u": 0.7609860587961501, + "t": 0.7904884083661047, + "punct": null, + "acc_u": 0.2467008797653959, + "acc_t": 0.313049853372434, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.4380693542022763, + "t": 0.572848310036386, + "punct": null, + "acc_u": 0.012096774193548387, + "acc_t": 0.09310850439882698, + "acc_punct": null + } + }, + "sq": { + "opus100": { + "u": 0.898727465535525, + "t": 0.9236303265080245, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.3746591820368885, + "t": 0.3779355543418897, + "punct": null + }, + "ud": { + "u": 1.0, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.44210526315789467, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.35051731893837157, + "t": 0.37122051606775364, + "punct": null + } + }, + "sr": { + "opus100": { + "u": 0.9342872284048755, + "t": 0.9448479956954533, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4184523809523809, + "t": 0.43913658881811746, + "punct": null + }, + "ud": { + "u": 0.951271186440678, + "t": 0.964169381107492, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.24474660074165638, + "t": 0.2859226841721371, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3272450532724505, + "t": 0.35157333333333335, + "punct": null + }, + "short-sequences": { + "u": 0.8621824789793541, + "t": 0.9041056166056166, + "punct": null, + "acc_u": 0.5104166666666666, + "acc_t": 0.6458333333333334, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.3930740256386058, + "t": 0.4688491723418194, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.010416666666666666, + "acc_punct": null + } + }, + "sv": { + "opus100": { + "u": 0.9053347280334727, + "t": 0.9252437703141927, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.43943928177665775, + "t": 0.5066548358473825, + "punct": null + }, + "ud": { + "u": 0.9146090534979424, + "t": 0.9456697149004842, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.3813559322033898, + "t": 0.444637429439861, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.39282445542742084, + "t": 0.43644164498607874, + "punct": null + } + }, + "ta": { + "ersatz": { + "u": 0.9638814016172508, + "t": 0.9773605742683601, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.623076923076923, + "t": 0.6179463459759481, + "punct": null + }, + "opus100": { + "u": 0.47274846983386765, + "t": 0.48355263157894735, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.3771608171817706, + "t": 0.37789203084832906, + "punct": null + }, + "ud": { + "u": 0.9422222222222223, + "t": 0.9454545454545454, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.658008658008658, + "t": 0.6507936507936508, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3766045748479877, + "t": 0.3927716808317518, + "punct": null + } + }, + "te": { + "opus100": { + "u": 0.6718218373028146, + "t": 0.6725, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4321065989847716, + "t": 0.4402420574886535, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.42353951890034364, + "t": 0.43652420753824317, + "punct": null + } + }, + "tg": { + "opus100": { + "u": 0.7040395713107997, + "t": 0.6843335931410756, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4318181818181818, + "t": 0.43890063424947146, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5143824027072758, + "t": 0.5105008077544426, + "punct": null + } + }, + "th": { + "opus100": { + "u": 0.39338976219266425, + "t": 0.6330848277251662, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.3509463722397476, + "t": 0.6349942062572422, + "punct": null + }, + "ud": { + "u": 0.13786213786213786, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.13894324853228962, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.2494835531542984, + "t": 0.4371359815854637, + "punct": null + } + }, + "tr": { + "ersatz": { + "u": 0.9116798846431147, + "t": 0.9148065476190476, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7015558698727016, + "t": 0.7288543401813806, + "punct": null + }, + "opus100": { + "u": 0.9325087389083088, + "t": 0.9329715061058345, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6101520226745685, + "t": 0.5931034482758621, + "punct": null + }, + "ud": { + "u": 0.9431762991743565, + "t": 0.9576482311908321, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5928338762214984, + "t": 0.5888671875, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6190046156933574, + "t": 0.6191653630721098, + "punct": null + } + }, + "uk": { + "opus100": { + "u": 0.8754598003152917, + "t": 0.8872785829307568, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4493280632411067, + "t": 0.46920152091254747, + "punct": null + }, + "ud": { + "u": 0.9122388059701492, + "t": 0.9358255451713396, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.2979472140762463, + "t": 0.31450161928751347, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.38830273830578765, + "t": 0.4065711616318904, + "punct": null + } + }, + "ur": { + "opus100": { + "u": 0.4203120220250841, + "t": 0.4438338451592048, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4620167087623859, + "t": 0.47543511786737164, + "punct": null + }, + "ud": { + "u": 0.9865563598759048, + "t": 0.9864442127215849, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7309027777777778, + "t": 0.7991120976692563, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.506242102602982, + "t": 0.5132021388016096, + "punct": null + } + }, + "uz": { + "opus100": { + "u": 0.6171305052688463, + "t": 0.6364077669902912, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5130890052356021, + "t": 0.5209258826280103, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6112752022601773, + "t": 0.6244084325254553, + "punct": null + } + }, + "vi": { + "opus100": { + "u": 0.9102308349957253, + "t": 0.9137085137085137, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.460852959898154, + "t": 0.4684807256235828, + "punct": null + }, + "ud": { + "u": 0.898758981058132, + "t": 0.965846994535519, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.31261595547309834, + "t": 0.3087681549220011, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3444444444444445, + "t": 0.3454497012141743, + "punct": null + } + }, + "xh": { + "opus100": { + "u": 0.7156084656084657, + "t": 0.6509433962264151, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.21323277339732605, + "t": 0.26993429231042443, + "punct": null + } + }, + "yi": { + "opus100": { + "u": 0.27648578811369506, + "t": 0.6000642467073563, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.45054945054945056, + "t": 0.5405596882748849, + "punct": null + } + }, + "yo": { + "opus100": { + "u": 0.2949425495340631, + "t": null, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.047040805163548846, + "t": null, + "punct": null + }, + "ud": { + "u": 0.8794788273615636, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.060606060606060615, + "t": null, + "punct": null + } + }, + "zh": { + "ersatz": { + "u": 0.8385354141656662, + "t": 0.8550763461023306, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.349718574108818, + "t": 0.44678362573099417, + "punct": null + }, + "opus100": { + "u": 0.5670982001894537, + "t": 0.6288278775079197, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.24491362763915545, + "t": 0.3548991054711878, + "punct": null + }, + "ud": { + "u": 0.9057971014492753, + "t": 0.9589345172031076, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.2630691399662732, + "t": 0.3758389261744966, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.23985264127360043, + "t": 0.2857595061923792, + "punct": null + } + }, + "zu": { + "opus100": { + "u": 0.3594228246611281, + "t": 0.724111082273553, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.3320839580209895, + "t": 0.45765286745157613, + "punct": null + } + }, + "tr-de": { + "code-switching": { + "u": 0.971736204576043, + "t": 0.992408557625949, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.24369747899159663, + "t": 0.255206361226808, + "punct": null + } + }, + "es-en": { + "code-switching": { + "u": 0.9175257731958764, + "t": 0.9361514751210921, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.40744320927984534, + "t": 0.41850619897187785, + "punct": null + } + }, + "vi-en": { + "code-switching": { + "u": 0.3604123711340206, + "t": 0.37774725274725274, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.4060324825986078, + "t": 0.4026931708881051, + "punct": null + } + }, + "en-de": { + "code-switching": { + "u": 0.5882352941176471, + "t": 0.7779690189328745, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.23901773533424284, + "t": 0.30784508440913605, + "punct": null + }, + "short-sequences": { + "u": 0.7864609307019255, + "t": 0.8598707618360697, + "punct": null, + "acc_u": 0.288981288981289, + "acc_t": 0.4698544698544699, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.39114206833872445, + "t": 0.5211824210285274, + "punct": null, + "acc_u": 0.014553014553014554, + "acc_t": 0.0395010395010395, + "acc_punct": null + } + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-3l.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-3l.json new file mode 100644 index 0000000000000000000000000000000000000000..f10309a088336127bb6b803b3b4ddd779ea70baf --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-3l.json @@ -0,0 +1,2450 @@ +{ + "af": { + "opus100": { + "u": 0.7844112769485903, + "t": 0.7988683127572016, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6321919403680409, + "t": 0.6317254174397031, + "punct": null + }, + "ud": { + "u": 0.9909208819714656, + "t": 0.9947780678851176, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7049504950495049, + "t": 0.7879581151832461, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5867486338797814, + "t": 0.599537037037037, + "punct": null + } + }, + "am": { + "opus100": { + "u": 0.5796545105566219, + "t": 0.5914305783188949, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5468864468864468, + "t": 0.5660633484162896, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.555735056542811, + "t": 0.5614646904969486, + "punct": null + } + }, + "ar": { + "ersatz": { + "u": 0.8971553610503281, + "t": 0.9114307342922029, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.5504538174052322, + "t": 0.5638072143073659, + "punct": null + }, + "opus100": { + "u": 0.6695278969957081, + "t": 0.6698430493273543, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5733140853784285, + "t": 0.5938468876699261, + "punct": null + }, + "ud": { + "u": 0.8293040293040294, + "t": 0.8325859491778774, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6103542234332424, + "t": 0.6903703703703703, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5073835668307459, + "t": 0.5179567254070935, + "punct": null + } + }, + "az": { + "opus100": { + "u": 0.7497749774977499, + "t": 0.7454860252287906, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6580440208758793, + "t": 0.6575278810408922, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6848397167440798, + "t": 0.6841040245821779, + "punct": null + } + }, + "be": { + "opus100": { + "u": 0.7035175879396985, + "t": 0.7086304401278584, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6387817258883248, + "t": 0.6765834932821496, + "punct": null + }, + "ud": { + "u": 0.8897676717745923, + "t": 0.884708152436083, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5083281924737816, + "t": 0.5755084379056685, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5341989024227012, + "t": 0.538484398216939, + "punct": null + } + }, + "bg": { + "opus100": { + "u": 0.9346787041954328, + "t": 0.9335099337748345, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6414855454737286, + "t": 0.6652152878567973, + "punct": null + }, + "ud": { + "u": 0.9785107446276862, + "t": 0.9800995024875623, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5884732052578362, + "t": 0.6489041684572411, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5676477862973041, + "t": 0.5768660641706116, + "punct": null + } + }, + "bn": { + "opus100": { + "u": 0.805457301667509, + "t": 0.8201400107700593, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4068148763764804, + "t": 0.4107485604606526, + "punct": null + }, + "ud": { + "u": 0.9615384615384615, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5098039215686274, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3353008926000576, + "t": 0.34059775840597756, + "punct": null + } + }, + "ca": { + "opus100": { + "u": 0.8769506267587619, + "t": 0.8963689371852637, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5579723850955173, + "t": 0.5851703406813628, + "punct": null + }, + "ud": { + "u": 0.9886159376872379, + "t": 0.9880095923261392, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5201921366304928, + "t": 0.6291879613855764, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5224319306930694, + "t": 0.5353897238727717, + "punct": null + } + }, + "ceb": { + "ud": { + "u": 0.9970501474926253, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6724890829694322, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.440251572327044, + "t": 0.4444444444444445, + "punct": null + } + }, + "cs": { + "ersatz": { + "u": 0.9433587280556475, + "t": 0.9537760416666666, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.5305432255337138, + "t": 0.5718999175144349, + "punct": null + }, + "opus100": { + "u": 0.8923709221679939, + "t": 0.902818014221754, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6084361321130123, + "t": 0.6344950848972297, + "punct": null + }, + "ud": { + "u": 0.9153348448819333, + "t": 0.9140816781968311, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5476291852138572, + "t": 0.5764909248055315, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5389466649960322, + "t": 0.5465068586793055, + "punct": null + } + }, + "cy": { + "opus100": { + "u": 0.7202690308774076, + "t": 0.7397260273972602, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5991106950620173, + "t": 0.5980916918780544, + "punct": null + }, + "ud": { + "u": 0.9912536443148688, + "t": 0.9924109748978401, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6026936026936027, + "t": 0.6562500000000001, + "punct": null + } + }, + "da": { + "opus100": { + "u": 0.9086675291073739, + "t": 0.9207188160676533, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5993157576977259, + "t": 0.6512552821277654, + "punct": null + }, + "ud": { + "u": 0.9552529182879378, + "t": 0.9529411764705882, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6082824168363884, + "t": 0.6883365200764818, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5767705855348273, + "t": 0.5946022862021534, + "punct": null + } + }, + "de": { + "ersatz": { + "u": 0.966499162479062, + "t": 0.9703306018649337, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.6133979015334947, + "t": 0.6744897959183673, + "punct": null + }, + "opus100": { + "u": 0.78234037502967, + "t": 0.83564875491481, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.533381191672649, + "t": 0.6405919661733616, + "punct": null + }, + "ud": { + "u": 0.9644087256027555, + "t": 0.9651229273870783, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6267397722479966, + "t": 0.6682998530132288, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5927172708239253, + "t": 0.6185299690834746, + "punct": null + }, + "legal-all-laws": { + "u": 0.8670709299778934, + "t": 0.8678598702979, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.5335568105967087, + "t": 0.6885652827057314, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.7686534328567418, + "t": 0.7767043315951652, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.49200016940806296, + "t": 0.5407954641079867, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "el": { + "opus100": { + "u": 0.9202841357537491, + "t": 0.9304324469513833, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5878606219557887, + "t": 0.618832148243913, + "punct": null + }, + "ud": { + "u": 0.9753694581280787, + "t": 0.9791921664626683, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6009463722397477, + "t": 0.7039627039627039, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5374388223052912, + "t": 0.5551754838105056, + "punct": null + } + }, + "en": { + "ersatz": { + "u": 0.966621592769198, + "t": 0.9675849731663686, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.4961703560306371, + "t": 0.5446704885596875, + "punct": null + }, + "opus100": { + "u": 0.9037837837837838, + "t": 0.8946532556908418, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6892554614355774, + "t": 0.6937656999314913, + "punct": null + }, + "ud": { + "u": 0.9387129724208376, + "t": 0.9412355600200905, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5666167664670658, + "t": 0.5907563025210084, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5459693402904179, + "t": 0.5514292354171508, + "punct": null + }, + "legal-all-judgements": { + "u": 0.860244037398626, + "t": 0.860415428179353, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.5328636152274224, + "t": 0.5491487542093547, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "eo": { + "opus100": { + "u": 0.9032608695652175, + "t": 0.9032082653616096, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6945770065075921, + "t": 0.7145324451023933, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5510230179028133, + "t": 0.5519399249061326, + "punct": null + } + }, + "es": { + "ersatz": { + "u": 0.9843579483448527, + "t": null, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.5309613410879234, + "t": null, + "punct": null + }, + "opus100": { + "u": 0.9110469692993965, + "t": 0.9226666666666666, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5678280207561157, + "t": 0.6090293453724606, + "punct": null + }, + "ud": { + "u": 0.9697355845810767, + "t": 0.9698331193838255, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.48693502824858753, + "t": 0.5917901938426454, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5311842470919846, + "t": 0.5385982402149885, + "punct": null + }, + "legal-all-laws": { + "u": 0.8014508233904071, + "t": 0.852749657949208, + "punct": null, + "acc_u": 0.0273224043715847, + "acc_t": 0.1912568306010929, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.6499323482162638, + "t": 0.6494958072339356, + "punct": null, + "acc_u": 0.00546448087431694, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.749505934625553, + "t": 0.7572088104559261, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.45343066148723027, + "t": 0.477205729311395, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "et": { + "ersatz": { + "u": 0.9591892632155574, + "t": 0.9583101723179545, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.5229173636667781, + "t": 0.6000996015936254, + "punct": null + }, + "opus100": { + "u": 0.8460606060606062, + "t": 0.8933263268523385, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4904884318766067, + "t": 0.5262706412181, + "punct": null + }, + "ud": { + "u": 0.9280055115397864, + "t": 0.9275312066574202, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.538188697091511, + "t": 0.5698424606151538, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5675106392124835, + "t": 0.5762997472369531, + "punct": null + }, + "short-sequences": { + "u": 0.8921858085778527, + "t": 0.8915558848927472, + "punct": null, + "acc_u": 0.47783251231527096, + "acc_t": 0.4729064039408867, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.5791776286071589, + "t": 0.6073876789084955, + "punct": null, + "acc_u": 0.024630541871921183, + "acc_t": 0.03940886699507389, + "acc_punct": null + } + }, + "eu": { + "opus100": { + "u": 0.8221843833617125, + "t": 0.8461343472750317, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.45865834633385333, + "t": 0.47301772842392364, + "punct": null + }, + "ud": { + "u": 0.9702850212249848, + "t": 0.9739503524364083, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5120505728960885, + "t": 0.5403470118424677, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4666749719696026, + "t": 0.47458357265939116, + "punct": null + } + }, + "fa": { + "opus100": { + "u": 0.5675529028757461, + "t": 0.5691881918819188, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5445371628177761, + "t": 0.5727902946273831, + "punct": null + }, + "ud": { + "u": 0.9845806694245957, + "t": 0.9882797731568997, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.850099933377748, + "t": 0.8829147506190308, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5950909253784824, + "t": 0.6070574162679425, + "punct": null + } + }, + "fi": { + "ersatz": { + "u": 0.9755147468002225, + "t": 0.9767054908485857, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.5206400000000001, + "t": 0.611837413834086, + "punct": null + }, + "opus100": { + "u": 0.9130096078940534, + "t": 0.9258570289662502, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6081967213114754, + "t": 0.6250569476082005, + "punct": null + }, + "ud": { + "u": 0.9380849532037436, + "t": 0.9331872946330778, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5512367491166078, + "t": 0.6051568810189499, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5501196594609439, + "t": 0.5585624222670155, + "punct": null + } + }, + "fr": { + "ersatz": { + "u": 0.9730269730269729, + "t": 0.9706972044459415, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.5434694702790133, + "t": 0.6314547064030688, + "punct": null + }, + "opus100": { + "u": 0.8732394366197183, + "t": null, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5374721317098267, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9749670619235836, + "t": 0.9736147757255936, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5227447956823439, + "t": 0.6238738738738738, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5405559312382106, + "t": 0.5773268019594121, + "punct": null + }, + "legal-all-laws": { + "u": 0.9374714856549669, + "t": 0.9366931074528413, + "punct": null, + "acc_u": 0.681917211328976, + "acc_t": 0.673202614379085, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.6354405736174986, + "t": 0.7217960788277703, + "punct": null, + "acc_u": 0.11546840958605664, + "acc_t": 0.2113289760348584, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.7746987897476786, + "t": 0.8095148860280578, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.4320462077529347, + "t": 0.46737914513985795, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "fy": { + "opus100": { + "u": 0.6491985203452527, + "t": 0.6769950306927799, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6444153577661431, + "t": 0.6323713927227103, + "punct": null + } + }, + "ga": { + "opus100": { + "u": 0.8229166666666666, + "t": 0.8183448629259543, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5046974821495678, + "t": 0.5216680294358136, + "punct": null + }, + "ud": { + "u": 0.8725701943844493, + "t": 0.9080717488789238, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.4684014869888476, + "t": 0.5328798185941043, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.39263803680981596, + "t": 0.4096385542168674, + "punct": null + } + }, + "gd": { + "opus100": { + "u": 0.8156748911465892, + "t": 0.831180811808118, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.547314578005115, + "t": 0.5623409669211197, + "punct": null + }, + "ud": { + "u": 0.6807453416149069, + "t": 0.6822033898305085, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.438813349814586, + "t": 0.49432739059967584, + "punct": null + } + }, + "gl": { + "opus100": { + "u": 0.8789907312049433, + "t": 0.8880146865984788, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5850173504796897, + "t": 0.5899117846641032, + "punct": null + }, + "ud": { + "u": 0.9737206085753803, + "t": 0.96986301369863, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5094696969696969, + "t": 0.5398633257403189, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5378124246564333, + "t": 0.5430568499534018, + "punct": null + } + }, + "gu": { + "ersatz": { + "u": 0.92041147807255, + "t": 0.9133367929423974, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7666844634276562, + "t": 0.7640941434044882, + "punct": null + }, + "opus100": { + "u": 0.7147208121827412, + "t": 0.716081718177056, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5277995301487861, + "t": 0.5281018027571579, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4002125963327133, + "t": 0.404445727482679, + "punct": null + } + }, + "ha": { + "opus100": { + "u": 0.8378506894912031, + "t": 0.8839309428950863, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4719852818197023, + "t": 0.4830111902339776, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.33333333333333337, + "t": 0.29787234042553196, + "punct": null + } + }, + "he": { + "opus100": { + "u": 0.8936936936936936, + "t": 0.9100026392187912, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5948103792415169, + "t": 0.6055531070956368, + "punct": null + }, + "ud": { + "u": 0.9415121255349499, + "t": 0.9426934097421203, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5371747211895911, + "t": 0.5704142011834319, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5002094041500095, + "t": 0.5117397089754046, + "punct": null + } + }, + "hi": { + "ersatz": { + "u": 0.9546946815495733, + "t": 0.9553279581608194, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7168784029038113, + "t": 0.7408859270874167, + "punct": null + }, + "opus100": { + "u": 0.6293532338308458, + "t": 0.6039215686274509, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4716384601078668, + "t": 0.505911330049261, + "punct": null + }, + "ud": { + "u": 0.9620915032679739, + "t": 0.9655172413793104, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.8689350976685569, + "t": 0.8784985182746131, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4822718319107025, + "t": 0.48745680563658395, + "punct": null + } + }, + "hu": { + "opus100": { + "u": 0.9233576642335767, + "t": 0.935244161358811, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5989827060020346, + "t": 0.6167093320921573, + "punct": null + }, + "ud": { + "u": 0.9695493300852619, + "t": 0.9684466019417476, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.4180522565320665, + "t": 0.46025104602510464, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.520038706555923, + "t": 0.5292000359938811, + "punct": null + } + }, + "hy": { + "opus100": { + "u": 0.8531658219715899, + "t": null, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6183727626898536, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9758812615955473, + "t": 0.9669499527856469, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5215157353885677, + "t": 0.5588723051409619, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.558703819661866, + "t": 0.5706435029250133, + "punct": null + } + }, + "id": { + "opus100": { + "u": 0.8656167979002626, + "t": 0.8885254837830472, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5939075169844401, + "t": 0.5981136415919024, + "punct": null + }, + "ud": { + "u": 0.9845474613686535, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5083056478405317, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5237374325530841, + "t": 0.5353942439903276, + "punct": null + } + }, + "ig": { + "opus100": { + "u": 0.8167680865449629, + "t": 0.8325820991629105, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4529717253317946, + "t": 0.4719748559455212, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.2839506172839506, + "t": 0.2755555555555556, + "punct": null + } + }, + "is": { + "opus100": { + "u": 0.9374496644295301, + "t": 0.9445809445809445, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5177132146204312, + "t": 0.5672430355427475, + "punct": null + }, + "ud": { + "u": 0.7343636216522372, + "t": 0.7828062205137166, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.3916676907951333, + "t": 0.4250782638125053, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5574387947269303, + "t": 0.5570776255707762, + "punct": null + } + }, + "it": { + "opus100": { + "u": 0.870213823968175, + "t": 0.8938489488710095, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5001619695497246, + "t": 0.5644038294168843, + "punct": null + }, + "ud": { + "u": 0.9632925472747498, + "t": 0.9547960308710033, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5309200603318249, + "t": 0.5870445344129555, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.516047475244048, + "t": 0.5441979221693961, + "punct": null + }, + "legal-all-laws": { + "u": 0.8720041289545027, + "t": 0.8661166030013528, + "punct": null, + "acc_u": 0.5227272727272727, + "acc_t": 0.5923295454545454, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.4513554968069439, + "t": 0.4796426486171296, + "punct": null, + "acc_u": 0.028409090909090908, + "acc_t": 0.036931818181818184, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.8317903228233894, + "t": 0.8437422714651226, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.3701218702300787, + "t": 0.40893302803976406, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "ja": { + "ersatz": { + "u": 0.8649193548387096, + "t": 0.8707037643207857, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.6511046269278866, + "t": 0.6847935548841894, + "punct": null + }, + "opus100": { + "u": 0.8314606741573033, + "t": 0.8459783228750712, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.8147928994082839, + "t": 0.8126410835214447, + "punct": null + }, + "ud": { + "u": 0.9611451942740287, + "t": 0.9708939708939709, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.8252032520325203, + "t": 0.8240081383519837, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.9028356719309576, + "t": 0.9007327684909548, + "punct": null + } + }, + "jv": { + "ud": { + "u": 0.9878721058434398, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.40437158469945356, + "t": null, + "punct": null + } + }, + "ka": { + "opus100": { + "u": 0.7570032573289902, + "t": 0.8388232335931608, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.27926582945464123, + "t": 0.30674689540391753, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4822146042979837, + "t": 0.5002446510386548, + "punct": null + } + }, + "kk": { + "ersatz": { + "u": 0.9709821428571429, + "t": 0.9796143250688706, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7564966313763234, + "t": 0.7758346581875993, + "punct": null + }, + "opus100": { + "u": 0.8029678483099754, + "t": 0.7991083867372527, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7095837366892546, + "t": 0.72024302678818, + "punct": null + }, + "ud": { + "u": 0.9584457636265514, + "t": 0.8998282770463653, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7836257309941521, + "t": 0.7841880341880343, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6936574509971754, + "t": 0.6914849514965592, + "punct": null + } + }, + "km": { + "ersatz": { + "u": 0.8936562860438293, + "t": 0.9226560557075354, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.5192455144916425, + "t": 0.632172633643943, + "punct": null + }, + "opus100": { + "u": 0.7044228694714132, + "t": 0.6954225352112676, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7189922480620156, + "t": 0.762536023054755, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6601073345259392, + "t": 0.6795740561471443, + "punct": null + } + }, + "kn": { + "opus100": { + "u": 0.7022564667033572, + "t": 0.6991596638655463, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5997045790251108, + "t": 0.5912627169359667, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.43696275071633234, + "t": 0.4288107202680067, + "punct": null + } + }, + "ko": { + "opus100": { + "u": 0.723721998851235, + "t": 0.7371763556424035, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6917258766903507, + "t": 0.7108433734939757, + "punct": null + }, + "ud": { + "u": 0.996361872422993, + "t": 0.9963601067702014, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.9818269929731039, + "t": 0.9826254826254825, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7468495346662509, + "t": 0.7571237241952616, + "punct": null + } + }, + "ku": { + "opus100": { + "u": 0.7720151269584009, + "t": 0.6772558296721864, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5394839718530102, + "t": 0.5918301704728208, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.34949711402205097, + "t": 0.35319502074688797, + "punct": null + } + }, + "ky": { + "opus100": { + "u": 0.8411042944785276, + "t": 0.8414896891351185, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6869940636805181, + "t": 0.6996152707901746, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6738609112709831, + "t": 0.6842105263157895, + "punct": null + } + }, + "la": { + "ud": { + "u": 0.6784110535405872, + "t": 0.883720930232558, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.32064985036340315, + "t": 0.6255307104443816, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.43243243243243246, + "t": 0.1818181818181818, + "punct": null + } + }, + "lt": { + "ersatz": { + "u": 0.9630459126539754, + "t": 0.9654403567447046, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.44363432417274257, + "t": 0.5540349221330817, + "punct": null + }, + "opus100": { + "u": 0.8255984367366878, + "t": 0.8487981390540191, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.463448275862069, + "t": 0.4956268221574344, + "punct": null + }, + "ud": { + "u": 0.970873786407767, + "t": 0.9717969379532634, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.46738620366025335, + "t": 0.5194621372965323, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.513854104551779, + "t": 0.5212375010682848, + "punct": null + } + }, + "lv": { + "ersatz": { + "u": 0.9751082251082251, + "t": 0.9766177270255574, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.49437118044387257, + "t": 0.5500122880314574, + "punct": null + }, + "opus100": { + "u": 0.8258317025440313, + "t": 0.8538042066995586, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4680067001675042, + "t": 0.5108568760214802, + "punct": null + }, + "ud": { + "u": 0.9637664435725827, + "t": 0.9628278221208666, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.4722596081950052, + "t": 0.484304932735426, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5434464293184956, + "t": 0.550970984692712, + "punct": null + } + }, + "mg": { + "opus100": { + "u": 0.8854059609455294, + "t": 0.8963350785340314, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.38134576948700866, + "t": 0.45334451667016146, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.45150501672240806, + "t": 0.4669603524229075, + "punct": null + } + }, + "mk": { + "opus100": { + "u": 0.9301470588235294, + "t": 0.9301103520756698, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5623762376237624, + "t": 0.5627105211016445, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5423466057441253, + "t": 0.5492592429770959, + "punct": null + } + }, + "ml": { + "opus100": { + "u": 0.7761341222879684, + "t": 0.8097534833869239, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5620886353663888, + "t": 0.5799404170804369, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4605475040257649, + "t": 0.4789607455521039, + "punct": null + } + }, + "mn": { + "opus100": { + "u": 0.735408560311284, + "t": null, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7971785999467661, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7742803336023675, + "t": 0.7735238890047986, + "punct": null + } + }, + "mr": { + "opus100": { + "u": 0.8988639512330285, + "t": 0.9008958566629339, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6183083511777301, + "t": 0.6288209606986901, + "punct": null + }, + "ud": { + "u": 0.8354430379746834, + "t": 0.8915662650602411, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5238095238095238, + "t": 0.5161290322580646, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.38515607945863345, + "t": 0.38282002933165726, + "punct": null + } + }, + "ms": { + "opus100": { + "u": 0.8579725448785639, + "t": 0.8737071311921611, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5695504664970313, + "t": 0.5726569217540842, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5420867526377492, + "t": 0.5581736866697817, + "punct": null + } + }, + "mt": { + "opus100": { + "u": 0.622358816749904, + "t": 0.7730960481549333, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.32906976744186045, + "t": 0.3451706982329731, + "punct": null + }, + "ud": { + "u": 0.8672032193158955, + "t": 0.8898216159496327, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.3257529194837124, + "t": 0.3537626066718386, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.32456140350877194, + "t": 0.3269961977186312, + "punct": null + } + }, + "my": { + "opus100": { + "u": 0.7411083540115797, + "t": 0.7488009592326139, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7815642458100559, + "t": 0.7835665376600179, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.8993600930773706, + "t": 0.9174597873879891, + "punct": null + } + }, + "ne": { + "opus100": { + "u": 0.6981450252951097, + "t": 0.7029676014157364, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.669540958660918, + "t": 0.6764466177669112, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5889847924373202, + "t": 0.5893300248138958, + "punct": null + } + }, + "nl": { + "opus100": { + "u": 0.9206019719771666, + "t": null, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6626349892008639, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9256198347107438, + "t": 0.9103815439219167, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6021798365122616, + "t": 0.649795918367347, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6358329991534108, + "t": 0.6493737054936384, + "punct": null + } + }, + "no": { + "opus100": { + "u": 0.9478494623655914, + "t": 0.9497840172786177, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6854009595613434, + "t": 0.6951663832888025, + "punct": null + }, + "ud": { + "u": 0.9856156501726121, + "t": 0.9859879897054618, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6626799557032116, + "t": 0.7025435073627844, + "punct": null + } + }, + "pa": { + "opus100": { + "u": 0.6949277137956383, + "t": 0.6952063573442707, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6082425390810043, + "t": 0.6153846153846154, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.48290598290598297, + "t": 0.5114503816793894, + "punct": null + } + }, + "pl": { + "ersatz": { + "u": 0.9352841868317388, + "t": 0.9291784702549575, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.49277266754270693, + "t": 0.5421800947867298, + "punct": null + }, + "opus100": { + "u": 0.9241379310344827, + "t": 0.9333693013218235, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6146769809742839, + "t": 0.6290467625899281, + "punct": null + }, + "ud": { + "u": 0.9529780564263323, + "t": 0.9575551782682513, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5386576040781649, + "t": 0.5700854700854701, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5663984773769357, + "t": 0.5703107228970474, + "punct": null + } + }, + "ps": { + "ersatz": { + "u": 0.9242454527283629, + "t": 0.9285859613428282, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.6975626501888088, + "t": 0.7243222604047347, + "punct": null + }, + "opus100": { + "u": 0.685590867016353, + "t": 0.6916210768787792, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6801365964712578, + "t": 0.6737525834071451, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5368502715283165, + "t": 0.5473856209150327, + "punct": null + } + }, + "pt": { + "opus100": { + "u": 0.9174553101997897, + "t": 0.9227479283614006, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5674157303370786, + "t": 0.5884599066610098, + "punct": null + }, + "ud": { + "u": 0.966183574879227, + "t": 0.9668428640076886, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5214285714285714, + "t": 0.5906155832974602, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5696105489113769, + "t": 0.59254968362891, + "punct": null + }, + "legal-all-laws": { + "u": 0.5911212659933321, + "t": 0.542344896275228, + "punct": null, + "acc_u": 0.017241379310344827, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.542679507146995, + "t": 0.5479502384622081, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.7704945056829777, + "t": 0.7704016269930583, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.4497643794189914, + "t": 0.48208843650518585, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "ro": { + "ersatz": { + "u": 0.97465564738292, + "t": 0.9642354266403831, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.4873868046571798, + "t": 0.5528002229033157, + "punct": null + }, + "opus100": { + "u": 0.9111688311688311, + "t": 0.9290082424886998, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5826296743063933, + "t": 0.5835942391984972, + "punct": null + }, + "ud": { + "u": 0.731631863882444, + "t": 0.8020164986251146, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.2565115861325669, + "t": 0.306145251396648, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5405813514533786, + "t": 0.5430595930232558, + "punct": null + } + }, + "ru": { + "ersatz": { + "u": 0.9723943661971831, + "t": 0.9715877437325905, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.5639044943820225, + "t": 0.6483790523690773, + "punct": null + }, + "opus100": { + "u": 0.8281212121212121, + "t": null, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.47039897039897033, + "t": null, + "punct": null + }, + "ud": { + "u": 0.8267108167770421, + "t": 0.8345567476002258, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.4753157290470723, + "t": 0.5160126296797475, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5650107264543811, + "t": 0.5671547645866185, + "punct": null + } + }, + "si": { + "opus100": { + "u": 0.791953414505029, + "t": 0.8038603462957705, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.619200734956362, + "t": 0.6180257510729613, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.47763347763347763, + "t": 0.4835924006908463, + "punct": null + } + }, + "sk": { + "opus100": { + "u": 0.9135416666666667, + "t": 0.9296685529506872, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5793905372894947, + "t": 0.6070763500931099, + "punct": null + }, + "ud": { + "u": 0.9483315392895587, + "t": 0.9512064343163539, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6287477954144621, + "t": 0.6383399209486166, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5498450961252811, + "t": 0.552510374390077, + "punct": null + } + }, + "sl": { + "opus100": { + "u": 0.9163636363636364, + "t": 0.9287039491121124, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5817888799355357, + "t": 0.6057977630677928, + "punct": null + }, + "ud": { + "u": 0.9681257968550786, + "t": 0.9699828473413379, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5923827510229775, + "t": 0.6169415292353823, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5728550781763238, + "t": 0.5806296331953402, + "punct": null + }, + "short-sequences": { + "u": 0.780581296652166, + "t": 0.7562668338140054, + "punct": null, + "acc_u": 0.27675953079178883, + "acc_t": 0.21664222873900293, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.5448322046317181, + "t": 0.583781616602017, + "punct": null, + "acc_u": 0.07074780058651027, + "acc_t": 0.1030058651026393, + "acc_punct": null + } + }, + "sq": { + "opus100": { + "u": 0.8972496107939804, + "t": 0.9106904825379899, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5552135436706425, + "t": 0.5643645279934614, + "punct": null + }, + "ud": { + "u": 1.0, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7175572519083969, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5111874761359297, + "t": 0.5368938861560084, + "punct": null + } + }, + "sr": { + "opus100": { + "u": 0.9402390438247012, + "t": 0.9450080085424453, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6074074074074074, + "t": 0.6165104047564601, + "punct": null + }, + "ud": { + "u": 0.9795479009687836, + "t": 0.9807692307692307, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.4648526077097506, + "t": 0.5894160583941607, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5377235772357724, + "t": 0.5432924248836225, + "punct": null + }, + "short-sequences": { + "u": 0.8825378036315538, + "t": 0.9237668870481371, + "punct": null, + "acc_u": 0.53125, + "acc_t": 0.6979166666666666, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.5371028847796939, + "t": 0.5840039156445407, + "punct": null, + "acc_u": 0.005208333333333333, + "acc_t": 0.041666666666666664, + "acc_punct": null + } + }, + "sv": { + "opus100": { + "u": 0.9132231404958677, + "t": 0.9293837609098122, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6231512522184973, + "t": 0.6821368141165095, + "punct": null + }, + "ud": { + "u": 0.9502878074306647, + "t": 0.9490278507619547, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6115269461077844, + "t": 0.6875602700096433, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5745520302482329, + "t": 0.5937197131226981, + "punct": null + } + }, + "ta": { + "ersatz": { + "u": 0.976464148877942, + "t": 0.9705063995548135, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7222222222222223, + "t": 0.8012854847348688, + "punct": null + }, + "opus100": { + "u": 0.6047322540473226, + "t": 0.5884590995561192, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4624394184168013, + "t": 0.4879032258064516, + "punct": null + }, + "ud": { + "u": 0.9953917050691244, + "t": 0.9953488372093023, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.803088803088803, + "t": 0.852017937219731, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.45673494723774055, + "t": 0.49339207048458145, + "punct": null + } + }, + "te": { + "opus100": { + "u": 0.764804469273743, + "t": 0.7597278911564627, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5485951174573929, + "t": 0.5470127326150833, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5319790509442945, + "t": 0.534402566158781, + "punct": null + } + }, + "tg": { + "opus100": { + "u": 0.7955854126679462, + "t": 0.8168103448275863, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5556946182728411, + "t": 0.566102526367427, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6105919003115265, + "t": 0.6214285714285714, + "punct": null + } + }, + "th": { + "opus100": { + "u": 0.6796154600745535, + "t": 0.7070933094652048, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6672992977794647, + "t": 0.6950633464394933, + "punct": null + }, + "ud": { + "u": 0.7270429654591406, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.718181818181818, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5168539325842697, + "t": 0.5751582964697718, + "punct": null + } + }, + "tr": { + "ersatz": { + "u": 0.934524895130403, + "t": 0.9378612716763006, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7766497461928934, + "t": 0.7896451846488052, + "punct": null + }, + "opus100": { + "u": 0.9317204301075268, + "t": 0.9352829677768751, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6920980926430519, + "t": 0.6929521931986201, + "punct": null + }, + "ud": { + "u": 0.9631106679960119, + "t": 0.9644110275689224, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6672613737734167, + "t": 0.6663716814159292, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6797985781990521, + "t": 0.6821150855365474, + "punct": null + } + }, + "uk": { + "opus100": { + "u": 0.883435582822086, + "t": 0.8904392764857881, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5820003854307189, + "t": 0.6113671274961597, + "punct": null + }, + "ud": { + "u": 0.9268897149938042, + "t": 0.9253547193090685, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.4483018867924528, + "t": 0.48765432098765427, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5403494837172359, + "t": 0.5467955925342928, + "punct": null + } + }, + "ur": { + "opus100": { + "u": 0.513496143958869, + "t": 0.5193494111048794, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5409440175631175, + "t": 0.5405527865881287, + "punct": null + }, + "ud": { + "u": 0.977319587628866, + "t": 0.9782833505687694, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.9169169169169169, + "t": 0.9222903885480573, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5519951297802866, + "t": 0.5513932057364087, + "punct": null + } + }, + "uz": { + "opus100": { + "u": 0.7630911188004614, + "t": 0.7650646499146132, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6511531269478495, + "t": 0.6809329165664822, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6656437795678303, + "t": 0.6677215189873417, + "punct": null + } + }, + "vi": { + "opus100": { + "u": 0.9113853056646101, + "t": 0.9113565562163692, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.565416285452882, + "t": 0.5675024108003858, + "punct": null + }, + "ud": { + "u": 0.9075520833333334, + "t": 0.9534883720930233, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.46061814556331, + "t": 0.4630102040816326, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.49144684252597914, + "t": 0.49995674366294657, + "punct": null + } + }, + "xh": { + "opus100": { + "u": 0.8031032637774211, + "t": 0.8028923406534547, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4024314214463841, + "t": 0.4518739352640545, + "punct": null + } + }, + "yi": { + "opus100": { + "u": 0.6111869031377899, + "t": 0.7019400352733686, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.728586917238887, + "t": 0.7258426966292135, + "punct": null + } + }, + "yo": { + "opus100": { + "u": 0.6727192484710927, + "t": null, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.3023930384336475, + "t": null, + "punct": null + }, + "ud": { + "u": 0.7698630136986302, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.16648764769065522, + "t": null, + "punct": null + } + }, + "zh": { + "ersatz": { + "u": 0.8405185408501658, + "t": 0.8743257820927723, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.554676048079742, + "t": 0.591304347826087, + "punct": null + }, + "opus100": { + "u": 0.5558210993513145, + "t": 0.6413268832066343, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.2899969409605384, + "t": 0.4466128729592795, + "punct": null + }, + "ud": { + "u": 0.9451575262543758, + "t": 0.9788182831661092, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5379494007989347, + "t": 0.5921192758253461, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.33584541062801937, + "t": 0.3677350427350427, + "punct": null + } + }, + "zu": { + "opus100": { + "u": 0.8210023866348449, + "t": 0.8476672287802137, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6144000000000001, + "t": 0.6097435897435898, + "punct": null + } + }, + "tr-de": { + "code-switching": { + "u": 0.9652406417112299, + "t": 0.9701181375955525, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.29934406678592723, + "t": 0.3368189323059989, + "punct": null + } + }, + "es-en": { + "code-switching": { + "u": 0.9100126742712293, + "t": 0.9173838209982788, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.4569954128440368, + "t": 0.4609130706691682, + "punct": null + } + }, + "vi-en": { + "code-switching": { + "u": 0.2650887573964497, + "t": 0.42563940637827596, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.4532967032967033, + "t": 0.4561182761874804, + "punct": null + } + }, + "en-de": { + "code-switching": { + "u": 0.6088004822182037, + "t": 0.7478532396565183, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.36464968152866245, + "t": 0.46249999999999997, + "punct": null + }, + "short-sequences": { + "u": 0.8337844010142457, + "t": 0.8730279976492102, + "punct": null, + "acc_u": 0.3970893970893971, + "acc_t": 0.5072765072765073, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.5289969936568553, + "t": 0.5794579932176974, + "punct": null, + "acc_u": 0.029106029106029108, + "acc_t": 0.05405405405405406, + "acc_punct": null + } + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-3l_lora.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-3l_lora.json new file mode 100644 index 0000000000000000000000000000000000000000..4c13a6491c74c3415d3039ced37486bbfdeb7968 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-3l_lora.json @@ -0,0 +1,1477 @@ +{ + "af": { + "opus100": { + "u": 0.885282596530498, + "t": 0.8852275900586428, + "punct": null + }, + "ud": { + "u": 1.0, + "t": 1.0, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6072607260726073, + "t": 0.6372093023255814, + "punct": null + } + }, + "am": { + "opus100": { + "u": 0.674547983310153, + "t": 0.7587808417997097, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4330175913396482, + "t": 0.5676190476190477, + "punct": null + } + }, + "ar": { + "ersatz": { + "u": 0.9289827255278311, + "t": 0.931060606060606, + "punct": null + }, + "opus100": { + "u": 0.7940403155127083, + "t": 0.7906602254428341, + "punct": null + }, + "ud": { + "u": 0.7429130009775171, + "t": 0.8661538461538462, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4391732133323164, + "t": 0.5870677307141395, + "punct": null + } + }, + "az": { + "opus100": { + "u": 0.8171344165435747, + "t": 0.8504415011037528, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7300928998009291, + "t": 0.736307350373075, + "punct": null + } + }, + "be": { + "opus100": { + "u": 0.8921029794619613, + "t": 0.8943601488691669, + "punct": null + }, + "ud": { + "u": 0.905286343612335, + "t": 0.912, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5709212450386463, + "t": 0.6174430937423513, + "punct": null + } + }, + "bg": { + "opus100": { + "u": 0.962080173347779, + "t": 0.9641499185225421, + "punct": null + }, + "ud": { + "u": 0.9930209371884346, + "t": 0.9935226706527155, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6034011337112372, + "t": 0.6704096485755874, + "punct": null + } + }, + "bn": { + "opus100": { + "u": 0.8878796480272494, + "t": 0.8861317893575958, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.14537862972100968, + "t": 0.4604699022466129, + "punct": null + } + }, + "ca": { + "opus100": { + "u": 0.9444293846570886, + "t": 0.9461307082307903, + "punct": null + }, + "ud": { + "u": 0.9987966305655835, + "t": 0.9987966305655835, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5851551250163634, + "t": 0.6430861621456563, + "punct": null + } + }, + "ceb": { + "ted2020-corrupted-asr": { + "u": 0.12903225806451613, + "t": 0.3529411764705882, + "punct": null + } + }, + "cs": { + "ersatz": { + "u": 0.9827642276422764, + "t": 0.9851325145442793, + "punct": null + }, + "opus100": { + "u": 0.9502460360852925, + "t": 0.949986335064225, + "punct": null + }, + "ud": { + "u": 0.9506858632808073, + "t": 0.9516129032258065, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6155917425310938, + "t": 0.6620981557996574, + "punct": null + } + }, + "cy": { + "opus100": { + "u": 0.8307307932542161, + "t": 0.8300751879699247, + "punct": null + }, + "ud": { + "u": 0.9970811441914769, + "t": 0.9964953271028038, + "punct": null + } + }, + "da": { + "opus100": { + "u": 0.9521479064709081, + "t": 0.9524067063277447, + "punct": null + }, + "ud": { + "u": 0.9850746268656716, + "t": 0.987090367428004, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6324642556770395, + "t": 0.6879657037868735, + "punct": null + } + }, + "de": { + "ersatz": { + "u": 0.9923230025589992, + "t": 0.9931972789115646, + "punct": null + }, + "opus100": { + "u": 0.902027027027027, + "t": 0.9006547110731569, + "punct": null + }, + "ud": { + "u": 0.9659224441833137, + "t": 0.9684579439252335, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6828370055241603, + "t": 0.7167508417508418, + "punct": null + }, + "legal-all-laws": { + "u": 0.9627034208088494, + "t": 0.966368191398839, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.874883102046527, + "t": 0.8809695099173611, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "el": { + "opus100": { + "u": 0.9611729568286724, + "t": 0.9611729568286724, + "punct": null + }, + "ud": { + "u": 0.972568578553616, + "t": 0.9890643985419199, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5783148889945006, + "t": 0.6550971735931395, + "punct": null + } + }, + "en": { + "ersatz": { + "u": 0.9867034803458548, + "t": 0.9865412445730827, + "punct": null + }, + "opus100": { + "u": 0.9491617090319092, + "t": 0.9477370689655171, + "punct": null + }, + "ud": { + "u": 0.9655891553701772, + "t": 0.9675425038639877, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5984358144552319, + "t": 0.6714831251935184, + "punct": null + } + }, + "eo": { + "opus100": { + "u": 0.9573021484906175, + "t": 0.9575394665215025, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5909272581934453, + "t": 0.6459244854966779, + "punct": null + } + }, + "es": { + "opus100": { + "u": 0.9574700109051253, + "t": 0.9582537517053206, + "punct": null + }, + "ud": { + "u": 0.9958050984188448, + "t": 0.9961290322580645, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5791621327529923, + "t": 0.6473567584678694, + "punct": null + }, + "legal-all-laws": { + "u": 0.9402611551848725, + "t": 0.9427306110622854, + "punct": null, + "acc_u": 0.5191256830601093, + "acc_t": 0.5355191256830601, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.7989462167034019, + "t": 0.8050100030146816, + "punct": null, + "acc_u": 0.08196721311475409, + "acc_t": 0.08743169398907104, + "acc_punct": null + } + }, + "et": { + "ersatz": { + "u": 0.9911651021535063, + "t": 0.9898267803134451, + "punct": null + }, + "opus100": { + "u": 0.9441821716189949, + "t": 0.9469634514976641, + "punct": null + }, + "ud": { + "u": 0.9754979728538693, + "t": 0.9769487946507127, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6420057009587976, + "t": 0.6830920850015398, + "punct": null + }, + "short-sequences": { + "u": 0.9216181020020738, + "t": 0.9066144208913438, + "punct": null, + "acc_u": 0.5566502463054187, + "acc_t": 0.45320197044334976, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.6767176142647279, + "t": 0.6883712408506577, + "punct": null, + "acc_u": 0.10837438423645321, + "acc_t": 0.1330049261083744, + "acc_punct": null + } + }, + "eu": { + "opus100": { + "u": 0.9288025889967638, + "t": 0.9278794402583422, + "punct": null + }, + "ud": { + "u": 0.9996910719802286, + "t": 0.9996910719802286, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.46516798418972327, + "t": 0.5696757230499562, + "punct": null + } + }, + "fa": { + "opus100": { + "u": 0.7454344216934146, + "t": 0.7406438105208061, + "punct": null + }, + "ud": { + "u": 0.999236641221374, + "t": 0.9996181748759068, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.29549812802483794, + "t": 0.6531572100470329, + "punct": null + } + }, + "fi": { + "ersatz": { + "u": 0.9876335019673975, + "t": 0.9864303517031293, + "punct": null + }, + "opus100": { + "u": 0.9635671560630777, + "t": 0.9630635524171646, + "punct": null + }, + "ud": { + "u": 0.9753086419753086, + "t": 0.9769949676491733, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6264603725923586, + "t": 0.6664283525686855, + "punct": null + } + }, + "fr": { + "ersatz": { + "u": 0.9906040268456376, + "t": 0.9909547738693467, + "punct": null + }, + "ud": { + "u": 0.9892761394101877, + "t": 0.9892761394101877, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5985939069300301, + "t": 0.679759845324107, + "punct": null + }, + "legal-all-laws": { + "u": 0.9874580062049924, + "t": 0.9832933110415377, + "punct": null, + "acc_u": 0.8801742919389978, + "acc_t": 0.8496732026143791, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.8619316273746731, + "t": 0.8615419611361653, + "punct": null, + "acc_u": 0.5206971677559913, + "acc_t": 0.485838779956427, + "acc_punct": null + } + }, + "fy": { + "opus100": { + "u": 0.8879003558718862, + "t": 0.8879003558718862, + "punct": null + } + }, + "ga": { + "opus100": { + "u": 0.910025706940874, + "t": 0.9064507120915946, + "punct": null + }, + "ud": { + "u": 0.9902200488997556, + "t": 0.9878048780487806, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4507042253521127, + "t": 0.4666666666666667, + "punct": null + } + }, + "gd": { + "opus100": { + "u": 0.9352084379708688, + "t": 0.9450777202072539, + "punct": null + }, + "ud": { + "u": 0.8146453089244853, + "t": 0.8224489795918367, + "punct": null + } + }, + "gl": { + "opus100": { + "u": 0.9435483870967741, + "t": 0.9463467241844163, + "punct": null + }, + "ud": { + "u": 0.9874826147426982, + "t": 0.9874476987447698, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5626255860683188, + "t": 0.6293802526170935, + "punct": null + } + }, + "gu": { + "ersatz": { + "u": 0.9563294637921502, + "t": 0.9536279323513367, + "punct": null + }, + "opus100": { + "u": 0.7973977695167286, + "t": 0.8054452637549631, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.38260698861405573, + "t": 0.5259005742792504, + "punct": null + } + }, + "ha": { + "opus100": { + "u": 0.8943642027754177, + "t": 0.9103410341034103, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.26666666666666666, + "t": 0.3333333333333333, + "punct": null + } + }, + "he": { + "opus100": { + "u": 0.9411764705882353, + "t": 0.9412742382271467, + "punct": null + }, + "ud": { + "u": 0.9495548961424333, + "t": 0.9636098981077147, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4784710017574692, + "t": 0.6125203407676846, + "punct": null + } + }, + "hi": { + "ersatz": { + "u": 0.9697380307136405, + "t": 0.9734950584007188, + "punct": null + }, + "opus100": { + "u": 0.8119953863898501, + "t": 0.8148947652455477, + "punct": null + }, + "ud": { + "u": 0.998678122934567, + "t": 0.998678122934567, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.43437790878063914, + "t": 0.6040573973280554, + "punct": null + } + }, + "hu": { + "opus100": { + "u": 0.963123644251627, + "t": 0.9634047167253997, + "punct": null + }, + "ud": { + "u": 0.9962917181705809, + "t": 0.995049504950495, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.528202947845805, + "t": 0.6229991161740155, + "punct": null + } + }, + "hy": { + "ud": { + "u": 0.9809885931558935, + "t": 0.9832089552238806, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.574226664865595, + "t": 0.6523297491039426, + "punct": null + } + }, + "id": { + "opus100": { + "u": 0.9390344827586207, + "t": 0.9407530454042081, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5790207931973693, + "t": 0.6391036304922204, + "punct": null + } + }, + "ig": { + "opus100": { + "u": 0.9230769230769231, + "t": 0.9228187919463087, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.0, + "t": 0.28025477707006374, + "punct": null + } + }, + "is": { + "opus100": { + "u": 0.9659863945578232, + "t": 0.9659863945578232, + "punct": null + }, + "ud": { + "u": 0.9707614865588519, + "t": 0.967721384582714, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5895230648944487, + "t": 0.6187775677378702, + "punct": null + } + }, + "it": { + "opus100": { + "u": 0.942627345844504, + "t": 0.942627345844504, + "punct": null + }, + "ud": { + "u": 0.9953917050691244, + "t": 0.9965477560414269, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5613571577556838, + "t": 0.6390472312703583, + "punct": null + }, + "legal-all-laws": { + "u": 0.9412967772493975, + "t": 0.9647519766590481, + "punct": null, + "acc_u": 0.8181818181818182, + "acc_t": 0.8323863636363636, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.7608781391014017, + "t": 0.7776205988148323, + "punct": null, + "acc_u": 0.47017045454545453, + "acc_t": 0.46732954545454547, + "acc_punct": null + } + }, + "ja": { + "ersatz": { + "u": 0.939311098961181, + "t": 0.9460043196544277, + "punct": null + }, + "opus100": { + "u": 0.9052987598647125, + "t": 0.9050279329608939, + "punct": null + }, + "ud": { + "u": 0.9801876955161626, + "t": 0.9801876955161626, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.9466529586474755, + "t": 0.9491012934654797, + "punct": null + } + }, + "jv": {}, + "ka": { + "opus100": { + "u": 0.9335149863760217, + "t": 0.9332970323985841, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5141320832758859, + "t": 0.6014236598711926, + "punct": null + } + }, + "kk": { + "ersatz": { + "u": 0.9988901220865705, + "t": 0.9977827050997783, + "punct": null + }, + "opus100": { + "u": 0.9219101123595506, + "t": 0.9207977207977209, + "punct": null + }, + "ud": { + "u": 0.9696969696969698, + "t": 0.8005050505050504, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7302504816955684, + "t": 0.7387701700828609, + "punct": null + } + }, + "km": { + "ersatz": { + "u": 0.9129994941831058, + "t": 0.9202880556245344, + "punct": null + }, + "opus100": { + "u": 0.8703187867533272, + "t": 0.8778718258766627, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.682230869001297, + "t": 0.7278165503489532, + "punct": null + } + }, + "kn": { + "opus100": { + "u": 0.8276324614352785, + "t": 0.8394113883557262, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.2593144560357675, + "t": 0.47391304347826085, + "punct": null + } + }, + "ko": { + "opus100": { + "u": 0.8204994797086368, + "t": 0.8183683940482299, + "punct": null + }, + "ud": { + "u": 0.9992709599027946, + "t": 0.9992709599027946, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6539682539682541, + "t": 0.7766915109863517, + "punct": null + } + }, + "ku": { + "opus100": { + "u": 0.9091448931116389, + "t": 0.9094662341492186, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.1789352296751874, + "t": 0.454708934902122, + "punct": null + } + }, + "ky": { + "opus100": { + "u": 0.9198832306195265, + "t": 0.920388349514563, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.631578947368421, + "t": 0.7199017199017198, + "punct": null + } + }, + "la": { + "ud": { + "u": 0.9740740740740741, + "t": 0.97531512605042, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.37499999999999994, + "t": 0.1904761904761905, + "punct": null + } + }, + "lt": { + "ersatz": { + "u": 0.982002249718785, + "t": 0.9837352776219853, + "punct": null + }, + "opus100": { + "u": 0.9274553571428571, + "t": 0.9257617728531857, + "punct": null + }, + "ud": { + "u": 0.9802955665024631, + "t": 0.9822294022617124, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5955432106558929, + "t": 0.6309417485362707, + "punct": null + } + }, + "lv": { + "ersatz": { + "u": 0.9942068965517241, + "t": 0.9936761066813308, + "punct": null + }, + "opus100": { + "u": 0.9295302013422819, + "t": 0.9281370923161968, + "punct": null + }, + "ud": { + "u": 0.9905070618198657, + "t": 0.9894106813996317, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5972176866305271, + "t": 0.653832145272907, + "punct": null + } + }, + "mg": { + "opus100": { + "u": 0.9554879734586674, + "t": 0.9540071605618287, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.2924901185770751, + "t": 0.5034324942791762, + "punct": null + } + }, + "mk": { + "opus100": { + "u": 0.9551918433056078, + "t": 0.9545211342964153, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5922586462291493, + "t": 0.6373367377000884, + "punct": null + } + }, + "ml": { + "opus100": { + "u": 0.8696830127336765, + "t": 0.8646218931782126, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.2149954832881662, + "t": 0.5246698041597085, + "punct": null + } + }, + "mn": { + "ted2020-corrupted-asr": { + "u": 0.8255135387488328, + "t": 0.8311081441922564, + "punct": null + } + }, + "mr": { + "opus100": { + "u": 0.9525921818685887, + "t": 0.9493392070484581, + "punct": null + }, + "ud": { + "u": 0.9647058823529412, + "t": 0.9523809523809523, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.307980580870454, + "t": 0.5302016477764122, + "punct": null + } + }, + "ms": { + "opus100": { + "u": 0.9409166206515738, + "t": 0.9379461834157056, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5763212282255683, + "t": 0.6317014508495616, + "punct": null + } + }, + "mt": { + "opus100": { + "u": 0.8943044906900329, + "t": 0.8922659430122117, + "punct": null + }, + "ud": { + "u": 0.9094827586206896, + "t": 0.9094827586206896, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.0, + "t": 0.36458333333333337, + "punct": null + } + }, + "my": { + "opus100": { + "u": 0.8600910470409711, + "t": 0.866977829638273, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.9529994872671339, + "t": 0.9545888296379456, + "punct": null + } + }, + "ne": { + "opus100": { + "u": 0.7625760974046778, + "t": 0.7732558139534884, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5813190092509699, + "t": 0.6321652355534927, + "punct": null + } + }, + "nl": { + "ud": { + "u": 0.9711090400745573, + "t": 0.9600742804085421, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7336683417085427, + "t": 0.7490865463270981, + "punct": null + } + }, + "no": { + "opus100": { + "u": 0.9638292085939625, + "t": 0.9630836047774157, + "punct": null + }, + "ud": { + "u": 0.9931192660550459, + "t": 0.9908519153802172, + "punct": null + } + }, + "pa": { + "opus100": { + "u": 0.7826358525921299, + "t": 0.7957544463568561, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3587628865979381, + "t": 0.5196850393700787, + "punct": null + } + }, + "pl": { + "ersatz": { + "u": 0.9810055865921787, + "t": 0.9810055865921787, + "punct": null + }, + "opus100": { + "u": 0.959804454101032, + "t": 0.959804454101032, + "punct": null + }, + "ud": { + "u": 0.9926749179085628, + "t": 0.9893563101875317, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6135867471426737, + "t": 0.6528031767594963, + "punct": null + } + }, + "ps": { + "ersatz": { + "u": 0.9565033783783785, + "t": 0.9606659729448492, + "punct": null + }, + "opus100": { + "u": 0.7660441426146011, + "t": 0.7764265668849392, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5314834578441835, + "t": 0.5897644191714054, + "punct": null + } + }, + "pt": { + "opus100": { + "u": 0.9535956580732701, + "t": 0.9536208299430432, + "punct": null + }, + "ud": { + "u": 0.9769008662175168, + "t": 0.977587029089175, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6344242577704627, + "t": 0.6735973092799266, + "punct": null + }, + "legal-all-laws": { + "u": 0.6821491431050434, + "t": 0.7827947885292934, + "punct": null, + "acc_u": 0.017241379310344827, + "acc_t": 0.06896551724137931, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.24914385522456498, + "t": 0.30097136112809814, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "ro": { + "ersatz": { + "u": 0.9927657206455203, + "t": 0.9927616926503341, + "punct": null + }, + "opus100": { + "u": 0.9735391400220507, + "t": 0.9732413793103448, + "punct": null + }, + "ud": { + "u": 0.9946977730646872, + "t": 0.9946977730646872, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5756680542500335, + "t": 0.6381572256686666, + "punct": null + } + }, + "ru": { + "ersatz": { + "u": 0.9869835880022637, + "t": 0.9876819708846584, + "punct": null + }, + "ud": { + "u": 0.9210866752910738, + "t": 0.9274447949526814, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6002714405739029, + "t": 0.6532451923076923, + "punct": null + } + }, + "si": { + "opus100": { + "u": 0.8550643536653609, + "t": 0.8590381426202323, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3430321592649311, + "t": 0.5256849315068493, + "punct": null + } + }, + "sk": { + "opus100": { + "u": 0.9648021828103683, + "t": 0.9648021828103683, + "punct": null + }, + "ud": { + "u": 0.9628032345013479, + "t": 0.9690170940170941, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6089266049102806, + "t": 0.661879766267208, + "punct": null + } + }, + "sl": { + "opus100": { + "u": 0.9550712940543449, + "t": 0.9525596354864648, + "punct": null + }, + "ud": { + "u": 0.9934867564046894, + "t": 0.9922212618841832, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6382699868938401, + "t": 0.6820700470465237, + "punct": null + }, + "short-sequences": { + "u": 0.9460695686685424, + "t": 0.9416314257589918, + "punct": null, + "acc_u": 0.8009530791788856, + "acc_t": 0.782624633431085, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.7682513051464664, + "t": 0.7292216432885145, + "punct": null, + "acc_u": 0.36363636363636365, + "acc_t": 0.2631964809384164, + "acc_punct": null + } + }, + "sq": { + "opus100": { + "u": 0.9544706527701592, + "t": 0.9545951859956237, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4694049904030711, + "t": 0.6171184589415152, + "punct": null + } + }, + "sr": { + "opus100": { + "u": 0.9619358346927678, + "t": 0.9614340032590984, + "punct": null + }, + "ud": { + "u": 0.9913793103448275, + "t": 0.9967914438502674, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5246252676659529, + "t": 0.6257904588455506, + "punct": null + }, + "short-sequences": { + "u": 0.9607018849206349, + "t": 0.9660361050986052, + "punct": null, + "acc_u": 0.8541666666666666, + "acc_t": 0.8645833333333334, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.700277904965405, + "t": 0.6691220238095238, + "punct": null, + "acc_u": 0.20833333333333334, + "acc_t": 0.109375, + "acc_punct": null + } + }, + "sv": { + "opus100": { + "u": 0.9592882178484767, + "t": 0.959007551240561, + "punct": null + }, + "ud": { + "u": 0.9654439128123338, + "t": 0.964968152866242, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6603785609585113, + "t": 0.703783840835928, + "punct": null + } + }, + "ta": { + "ersatz": { + "u": 0.9823204419889503, + "t": 0.9812775330396475, + "punct": null + }, + "opus100": { + "u": 0.7789948453608248, + "t": 0.8078549848942598, + "punct": null + }, + "ud": { + "u": 0.9953917050691244, + "t": 1.0, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.275355524300672, + "t": 0.5456488821590808, + "punct": null + } + }, + "te": { + "opus100": { + "u": 0.853932584269663, + "t": 0.8562446413260932, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.34233668341708545, + "t": 0.5828417326816113, + "punct": null + } + }, + "tg": { + "opus100": { + "u": 0.9096486335750139, + "t": 0.9212022745735174, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5317073170731708, + "t": 0.6407407407407406, + "punct": null + } + }, + "th": { + "opus100": { + "u": 0.7291905526255447, + "t": 0.7368913857677903, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5817916583780917, + "t": 0.6623412226994426, + "punct": null + } + }, + "tr": { + "ersatz": { + "u": 0.9838560029690111, + "t": 0.9815905743740796, + "punct": null + }, + "opus100": { + "u": 0.9538125170811698, + "t": 0.9536026200873361, + "punct": null + }, + "ud": { + "u": 0.9853164556962026, + "t": 0.9848484848484849, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6943747322029749, + "t": 0.7246109635091905, + "punct": null + } + }, + "uk": { + "opus100": { + "u": 0.9441760601180891, + "t": 0.9470556455969746, + "punct": null + }, + "ud": { + "u": 0.9819539514623523, + "t": 0.9814814814814814, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5951401388531756, + "t": 0.650630126025205, + "punct": null + } + }, + "ur": { + "opus100": { + "u": 0.6872509960159362, + "t": 0.7195357833655707, + "punct": null + }, + "ud": { + "u": 0.9947970863683663, + "t": 0.9947970863683663, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5251396648044694, + "t": 0.6384233979790372, + "punct": null + } + }, + "uz": { + "opus100": { + "u": 0.872684504557483, + "t": 0.8761904761904762, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7004129071723505, + "t": 0.7151411462788707, + "punct": null + } + }, + "vi": { + "opus100": { + "u": 0.9490392648287386, + "t": 0.948073701842546, + "punct": null + }, + "ud": { + "u": 0.9937629937629938, + "t": 0.993745656706046, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5143222688179686, + "t": 0.6105850117771475, + "punct": null + } + }, + "xh": { + "opus100": { + "u": 0.9068501003152766, + "t": 0.9076923076923078, + "punct": null + } + }, + "yi": { + "opus100": { + "u": 0.8313840155945419, + "t": 0.8663003663003662, + "punct": null + } + }, + "yo": {}, + "zh": { + "ersatz": { + "u": 0.952054794520548, + "t": 0.9495118549511855, + "punct": null + }, + "opus100": { + "u": 0.9041174776849985, + "t": 0.9053708439897697, + "punct": null + }, + "ud": { + "u": 0.9932885906040269, + "t": 0.9932885906040269, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.734876422126324, + "t": 0.7593248593456969, + "punct": null + } + }, + "zu": { + "opus100": { + "u": 0.9185533666568657, + "t": 0.920011894142135, + "punct": null + } + }, + "tr-de": { + "code-switching": { + "u": 0.987688098495212, + "t": 0.988826815642458, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.12239902080783355, + "t": 0.3838489774514945, + "punct": null + } + }, + "es-en": { + "code-switching": { + "u": 0.9380764163372859, + "t": 0.9387934830471159, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.37338044758539457, + "t": 0.5507142857142857, + "punct": null + } + }, + "vi-en": { + "code-switching": { + "u": 0.24530663329161448, + "t": 0.4829086389061529, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.2546623794212219, + "t": 0.5210256410256409, + "punct": null + } + }, + "en-de": { + "code-switching": { + "u": 0.9142318567389256, + "t": 0.9207828518173345, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.3847133757961783, + "t": 0.5092186128182616, + "punct": null + }, + "short-sequences": { + "u": 0.9782410725653264, + "t": 0.9753754347140544, + "punct": null, + "acc_u": 0.8711018711018711, + "acc_t": 0.8586278586278586, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.6836295327543963, + "t": 0.6804737983454006, + "punct": null, + "acc_u": 0.15176715176715178, + "acc_t": 0.11850311850311851, + "acc_punct": null + } + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-3l_no_ll.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-3l_no_ll.json new file mode 100644 index 0000000000000000000000000000000000000000..4027c6bc7a6f13a1d6a7926cf6dbd24a54593c65 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-3l_no_ll.json @@ -0,0 +1,2450 @@ +{ + "af": { + "opus100": { + "u": 0.6598530820824018, + "t": 0.7818317200297841, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.32717904680120224, + "t": 0.5672514619883041, + "punct": null + }, + "ud": { + "u": 0.9858064516129033, + "t": 0.9934469200524245, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7094861660079052, + "t": 0.7989756722151089, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5826050769870995, + "t": 0.5806198509219301, + "punct": null + } + }, + "am": { + "opus100": { + "u": 0.47680995475113125, + "t": 0.5055203194738078, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5603926589842083, + "t": 0.5563322368421053, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5555555555555557, + "t": 0.5596638655462185, + "punct": null + } + }, + "ar": { + "ersatz": { + "u": 0.8898519321054533, + "t": 0.9062259800153728, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.561573373676248, + "t": 0.5004156275976724, + "punct": null + }, + "opus100": { + "u": 0.6479713603818615, + "t": 0.6511759705298951, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5668530757498729, + "t": 0.5637878123629987, + "punct": null + }, + "ud": { + "u": 0.820916905444126, + "t": 0.827850038255547, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5412101000476418, + "t": 0.6813020439061318, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5229694172453954, + "t": 0.5233644859813085, + "punct": null + } + }, + "az": { + "opus100": { + "u": 0.7509459158691297, + "t": 0.7500000000000001, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6668316831683168, + "t": 0.6579082946934569, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.691846921797005, + "t": 0.6959400867165944, + "punct": null + } + }, + "be": { + "opus100": { + "u": 0.6666666666666667, + "t": 0.7117924528301887, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.532150776053215, + "t": 0.6340160284951024, + "punct": null + }, + "ud": { + "u": 0.8970448045757865, + "t": 0.9034786869181775, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.4685050798258345, + "t": 0.5308134757600658, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5198776758409787, + "t": 0.5186704384724188, + "punct": null + } + }, + "bg": { + "opus100": { + "u": 0.9388518024032042, + "t": 0.926255230125523, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.546097012528108, + "t": 0.6007311129163282, + "punct": null + }, + "ud": { + "u": 0.9831181727904666, + "t": 0.9825610363726957, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5612879619465788, + "t": 0.5833333333333333, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.547394540942928, + "t": 0.5513934129569309, + "punct": null + } + }, + "bn": { + "opus100": { + "u": 0.7943156320119672, + "t": 0.822198275862069, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.37602369750827674, + "t": 0.39834024896265563, + "punct": null + }, + "ud": { + "u": 1.0, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5714285714285715, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.32692196615260205, + "t": 0.3406616562478051, + "punct": null + } + }, + "ca": { + "opus100": { + "u": 0.902542372881356, + "t": 0.9032086979581013, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5134474327628362, + "t": 0.530214424951267, + "punct": null + }, + "ud": { + "u": 0.9845605700712589, + "t": 0.9907046476761618, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.4382493138812653, + "t": 0.611968589222854, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5181833417127535, + "t": 0.5181565422529277, + "punct": null + } + }, + "ceb": { + "ud": { + "u": 0.9970501474926253, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6569767441860466, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4354838709677419, + "t": 0.39560439560439564, + "punct": null + } + }, + "cs": { + "ersatz": { + "u": 0.9653846153846154, + "t": 0.9610894941634242, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.4922093487814622, + "t": 0.5525227460711332, + "punct": null + }, + "opus100": { + "u": 0.894575230296827, + "t": 0.9024896265560166, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5361334156886968, + "t": 0.589249076733689, + "punct": null + }, + "ud": { + "u": 0.9171885122003888, + "t": 0.9192698218942462, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.52069006169686, + "t": 0.5262169992247113, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5240883977900552, + "t": 0.5355866731047803, + "punct": null + } + }, + "cy": { + "opus100": { + "u": 0.6871597822606467, + "t": 0.7349429556911647, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4272863568215892, + "t": 0.5646571560055224, + "punct": null + }, + "ud": { + "u": 0.9901105293775451, + "t": 0.9924021040327293, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5821474773609314, + "t": 0.6082051282051282, + "punct": null + } + }, + "da": { + "opus100": { + "u": 0.9047864127637674, + "t": 0.9152008401155158, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6244295302013424, + "t": 0.6012699802934093, + "punct": null + }, + "ud": { + "u": 0.9618320610687023, + "t": 0.958614051973051, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6168091168091168, + "t": 0.6774483378256964, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5816720754133828, + "t": 0.5855296444505773, + "punct": null + } + }, + "de": { + "ersatz": { + "u": 0.9526916802610115, + "t": 0.9679039910689365, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.5311300283758971, + "t": 0.6523855890944498, + "punct": null + }, + "opus100": { + "u": 0.7749941465698901, + "t": 0.8387431835886783, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5314842578710645, + "t": 0.6141373194831519, + "punct": null + }, + "ud": { + "u": 0.9627118644067797, + "t": 0.964203233256351, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5559222588925559, + "t": 0.656298600311042, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5807365439093485, + "t": 0.5974404328373739, + "punct": null + }, + "legal-all-laws": { + "u": 0.8343385738474086, + "t": 0.8754949622706542, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.4647154569671972, + "t": 0.673220716520376, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.7862029418028487, + "t": 0.7866154534210487, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.47044297938879476, + "t": 0.5473817178297633, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "el": { + "opus100": { + "u": 0.9206932773109244, + "t": 0.9292553191489361, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5802409638554218, + "t": 0.5673263484672099, + "punct": null + }, + "ud": { + "u": 0.9685230024213075, + "t": 0.969549330085262, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5217391304347826, + "t": 0.6590649942987457, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5225101769376487, + "t": 0.5332781380801251, + "punct": null + } + }, + "en": { + "ersatz": { + "u": 0.9707254985150615, + "t": 0.9771604496312737, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.4704911591355599, + "t": 0.5527920151065552, + "punct": null + }, + "opus100": { + "u": 0.9133425034387895, + "t": 0.9105820105820106, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6075149984212188, + "t": 0.6623655913978495, + "punct": null + }, + "ud": { + "u": 0.9467871485943776, + "t": 0.9490670700958144, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5487900078064012, + "t": 0.5478294275835573, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5439936073870194, + "t": 0.5450639935558936, + "punct": null + }, + "legal-all-judgements": { + "u": 0.8835832241270046, + "t": 0.8910497666549781, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.5277924718648596, + "t": 0.5338885400175334, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "eo": { + "opus100": { + "u": 0.9057127010537993, + "t": 0.9079125033756414, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6357294510160753, + "t": 0.6844547563805105, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5315487571701721, + "t": 0.5438962909614693, + "punct": null + } + }, + "es": { + "ersatz": { + "u": 0.9870176703930761, + "t": null, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.49136868064118366, + "t": null, + "punct": null + }, + "opus100": { + "u": 0.9149159663865547, + "t": 0.9183293429103484, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5625405055087491, + "t": 0.5429553264604812, + "punct": null + }, + "ud": { + "u": 0.9716446124763705, + "t": 0.9745899002894821, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.40311614730878187, + "t": 0.5557215416791156, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5168965517241378, + "t": 0.5179078501419804, + "punct": null + }, + "legal-all-laws": { + "u": 0.5913426034933152, + "t": 0.5897314932344037, + "punct": null, + "acc_u": 0.04371584699453552, + "acc_t": 0.00546448087431694, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.604022955192762, + "t": 0.6430362448883582, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.7630319932272605, + "t": 0.7690519356711966, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.47157596602672125, + "t": 0.5076053778146637, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "et": { + "ersatz": { + "u": 0.9603854389721628, + "t": 0.9639416460225708, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.5038978271686847, + "t": 0.5769691165908547, + "punct": null + }, + "opus100": { + "u": 0.8455757575757576, + "t": 0.89358372456964, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5165659008464328, + "t": 0.5095088819226751, + "punct": null + }, + "ud": { + "u": 0.9189646421925224, + "t": 0.9306108323239315, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5212692254399336, + "t": 0.5227236986947633, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.559131573205324, + "t": 0.5633617241541574, + "punct": null + }, + "short-sequences": { + "u": 0.30132937937699517, + "t": 0.7021570486469835, + "punct": null, + "acc_u": 0.009852216748768473, + "acc_t": 0.17733990147783252, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.3269796736521152, + "t": 0.554655988465032, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.029556650246305417, + "acc_punct": null + } + }, + "eu": { + "opus100": { + "u": 0.82656288007784, + "t": 0.8336614173228346, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4477611940298508, + "t": 0.4381846635367762, + "punct": null + }, + "ud": { + "u": 0.9725821030430853, + "t": 0.9879815100154082, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.48559822747415066, + "t": 0.5185185185185185, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4577207200745894, + "t": 0.45761749254579015, + "punct": null + } + }, + "fa": { + "opus100": { + "u": 0.5302690582959642, + "t": 0.5585585585585585, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.514751334644563, + "t": 0.5344214270767943, + "punct": null + }, + "ud": { + "u": 0.967122275581825, + "t": 0.989044200982244, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.8681739130434781, + "t": 0.8696260048933939, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6127571611379072, + "t": 0.6141375490887121, + "punct": null + } + }, + "fi": { + "ersatz": { + "u": 0.9709160097852677, + "t": 0.9788170563961486, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.5037831021437579, + "t": 0.5949890537582097, + "punct": null + }, + "opus100": { + "u": 0.9199372056514914, + "t": 0.9277364505844846, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5844698023935431, + "t": 0.5868969875710974, + "punct": null + }, + "ud": { + "u": 0.9315164220824599, + "t": 0.9392304926285509, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.558344827586207, + "t": 0.5672356993111709, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5586805033338347, + "t": 0.5594246438162866, + "punct": null + } + }, + "fr": { + "ersatz": { + "u": 0.9698952879581152, + "t": 0.9719499831023994, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.5059215396002961, + "t": 0.596144578313253, + "punct": null + }, + "opus100": { + "u": 0.8766086298258895, + "t": null, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5720776538620406, + "t": null, + "punct": null + }, + "ud": { + "u": 0.961038961038961, + "t": 0.9761904761904762, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5274365274365275, + "t": 0.576388888888889, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5576115061409179, + "t": 0.5652331700235892, + "punct": null + }, + "legal-all-laws": { + "u": 0.3734667935570888, + "t": 0.5076331931895421, + "punct": null, + "acc_u": 0.0784313725490196, + "acc_t": 0.13725490196078433, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.38090152129506577, + "t": 0.6531381986001912, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.14814814814814814, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.785262346807204, + "t": 0.8088092559389753, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.44150969016942887, + "t": 0.44957254731069507, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "fy": { + "opus100": { + "u": 0.43381180223285487, + "t": 0.6136222910216717, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4051927616050354, + "t": 0.6045599411620496, + "punct": null + } + }, + "ga": { + "opus100": { + "u": 0.7616374269005848, + "t": 0.7504587155963303, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5002806361085126, + "t": 0.43797766019988243, + "punct": null + }, + "ud": { + "u": 0.8632478632478632, + "t": 0.9169510807736063, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.4713754646840149, + "t": 0.5319148936170214, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4050632911392405, + "t": 0.47154471544715443, + "punct": null + } + }, + "gd": { + "opus100": { + "u": 0.821411192214112, + "t": 0.8369118318867061, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.49706457925636, + "t": 0.5207451312447079, + "punct": null + }, + "ud": { + "u": 0.6868932038834952, + "t": 0.6928645294725957, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.4354354354354354, + "t": 0.4360418342719228, + "punct": null + } + }, + "gl": { + "opus100": { + "u": 0.9002407060711419, + "t": 0.9013262599469496, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5224182817471796, + "t": 0.5400744660003919, + "punct": null + }, + "ud": { + "u": 0.9794238683127573, + "t": 0.9833795013850416, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.46243739565943237, + "t": 0.5123537061118335, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5205877327866052, + "t": 0.5193554361918873, + "punct": null + } + }, + "gu": { + "ersatz": { + "u": 0.9280500521376435, + "t": 0.9324034334763949, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7659788626069451, + "t": 0.7703943814154511, + "punct": null + }, + "opus100": { + "u": 0.7087699944842802, + "t": 0.7052603753634681, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5169573643410852, + "t": 0.5171658144631117, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4188630859096738, + "t": 0.41880101322825786, + "punct": null + } + }, + "ha": { + "opus100": { + "u": 0.8119580100410771, + "t": 0.9021882414974953, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4440116845180136, + "t": 0.45589083221218535, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.31034482758620685, + "t": 0.2222222222222222, + "punct": null + } + }, + "he": { + "opus100": { + "u": 0.9110583267352863, + "t": 0.907567426027756, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.34817488969113514, + "t": 0.5660075893748752, + "punct": null + }, + "ud": { + "u": 0.9340813464235624, + "t": 0.9423631123919308, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.524401913875598, + "t": 0.5749385749385749, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4862598975314392, + "t": 0.4911330716122919, + "punct": null + } + }, + "hi": { + "ersatz": { + "u": 0.953037483843171, + "t": 0.9626209322779243, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.6897621509824198, + "t": 0.7358602897400277, + "punct": null + }, + "opus100": { + "u": 0.6008814887365328, + "t": 0.5693030540328895, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4542857142857143, + "t": 0.49377224199288255, + "punct": null + }, + "ud": { + "u": 0.9596697364242617, + "t": 0.9709302325581396, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.8516949152542374, + "t": 0.8681501162404517, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4826291799134331, + "t": 0.49419274758400566, + "punct": null + } + }, + "hu": { + "opus100": { + "u": 0.9340021119324182, + "t": 0.9366215857862636, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4496551724137931, + "t": 0.5755511022044089, + "punct": null + }, + "ud": { + "u": 0.9734299516908212, + "t": 0.9733009708737865, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.38758845944474685, + "t": 0.4475409836065573, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.501982638516772, + "t": 0.5118815392800142, + "punct": null + } + }, + "hy": { + "opus100": { + "u": 0.861491406932712, + "t": null, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5591318059549206, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9770009199632015, + "t": 0.9820585457979226, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5130813953488372, + "t": 0.5068870523415978, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5518801755735553, + "t": 0.5479258458724748, + "punct": null + } + }, + "id": { + "opus100": { + "u": 0.898486932599725, + "t": 0.900497512437811, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5322128851540616, + "t": 0.5583151202066361, + "punct": null + }, + "ud": { + "u": 0.9807797913234486, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.46581972171808833, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5188528289500677, + "t": 0.5277723450029337, + "punct": null + } + }, + "ig": { + "opus100": { + "u": 0.7889655172413793, + "t": 0.8042895442359249, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.43796489140136863, + "t": 0.46428571428571425, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.23387096774193547, + "t": 0.2246376811594203, + "punct": null + } + }, + "is": { + "opus100": { + "u": 0.9449715370018976, + "t": 0.9475400924164175, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5055165496489468, + "t": 0.5549645390070921, + "punct": null + }, + "ud": { + "u": 0.793521565910272, + "t": 0.8883661668136823, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.4234800838574423, + "t": 0.4299847180889568, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5736102626756262, + "t": 0.558062740781508, + "punct": null + } + }, + "it": { + "opus100": { + "u": 0.8753448708301981, + "t": 0.8977569118414188, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5200537324889657, + "t": 0.5233100233100234, + "punct": null + }, + "ud": { + "u": 0.967525195968645, + "t": 0.96, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.4863760217983651, + "t": 0.5597722960151803, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5130479781178384, + "t": 0.5325942350332594, + "punct": null + }, + "legal-all-laws": { + "u": 0.218809724180572, + "t": 0.6180142933096878, + "punct": null, + "acc_u": 0.009943181818181818, + "acc_t": 0.234375, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.2866085725261172, + "t": 0.4511085497701767, + "punct": null, + "acc_u": 0.0014204545454545455, + "acc_t": 0.028409090909090908, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.8226333732255872, + "t": 0.8568641015628923, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.3727226980614981, + "t": 0.41872762722741474, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "ja": { + "ersatz": { + "u": 0.8489835430784124, + "t": 0.8768267223382047, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.6501408450704225, + "t": 0.6361990950226243, + "punct": null + }, + "opus100": { + "u": 0.5695718654434251, + "t": 0.8133259911894273, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.3624887285843102, + "t": 0.7803353225348111, + "punct": null + }, + "ud": { + "u": 0.970010341261634, + "t": 0.974947807933194, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7217280813214739, + "t": 0.7973856209150327, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.8532423208191127, + "t": 0.9016704181968962, + "punct": null + } + }, + "jv": { + "ud": { + "u": 0.9895432030820034, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.40073800738007387, + "t": null, + "punct": null + } + }, + "ka": { + "opus100": { + "u": 0.7389643463497454, + "t": 0.8503297818366311, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.30726376687379475, + "t": 0.3125, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4833436788744051, + "t": 0.4895185136148992, + "punct": null + } + }, + "kk": { + "ersatz": { + "u": 0.9782372143634385, + "t": 0.9787697332607512, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7558305568776773, + "t": 0.7892677473448854, + "punct": null + }, + "opus100": { + "u": 0.6728257406817457, + "t": 0.7274357441721458, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.49423520368946966, + "t": 0.6875621890547264, + "punct": null + }, + "ud": { + "u": 0.9832285115303985, + "t": 0.9077363896848137, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.792966534316506, + "t": 0.8078920041536866, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6912122915495598, + "t": 0.6969616908850726, + "punct": null + } + }, + "km": { + "ersatz": { + "u": 0.9004963365634603, + "t": 0.9190679027812578, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.5296610169491526, + "t": 0.6112412177985947, + "punct": null + }, + "opus100": { + "u": 0.7058823529411765, + "t": 0.6980703745743474, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7189770415576867, + "t": 0.7147971360381861, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6785714285714286, + "t": 0.6942482341069627, + "punct": null + } + }, + "kn": { + "opus100": { + "u": 0.6365372374283895, + "t": 0.6493827160493827, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5815109343936382, + "t": 0.5635478637101135, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4349247874427731, + "t": 0.44725370531822145, + "punct": null + } + }, + "ko": { + "opus100": { + "u": 0.5489208633093526, + "t": 0.7127962085308057, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5906491759165826, + "t": 0.688395061728395, + "punct": null + }, + "ud": { + "u": 0.9851532567049809, + "t": 0.9949164851125636, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.9834469328140214, + "t": 0.9830917874396135, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7663729459395093, + "t": 0.7667664812966395, + "punct": null + } + }, + "ku": { + "opus100": { + "u": 0.7479224376731302, + "t": 0.55301611090296, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5124664365170695, + "t": 0.4840989399293286, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.32034007058068653, + "t": 0.338931416966099, + "punct": null + } + }, + "ky": { + "opus100": { + "u": 0.8173799411956877, + "t": 0.8378631677600749, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5229244114002479, + "t": 0.647843623952839, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6888604353393086, + "t": 0.6834170854271358, + "punct": null + } + }, + "la": { + "ud": { + "u": 0.8714660448848732, + "t": 0.9237483953786906, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.37581699346405234, + "t": 0.6411830357142857, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.25641025641025644, + "t": 0.3870967741935483, + "punct": null + } + }, + "lt": { + "ersatz": { + "u": 0.970620239390642, + "t": 0.9735391400220508, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.3999000249937516, + "t": 0.5127825120414968, + "punct": null + }, + "opus100": { + "u": 0.7902777777777777, + "t": 0.8570691434468525, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4736842105263158, + "t": 0.4431372549019608, + "punct": null + }, + "ud": { + "u": 0.9721115537848606, + "t": 0.9812550937245313, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.48912404467960025, + "t": 0.5052770448548813, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5120772946859904, + "t": 0.5104564315352698, + "punct": null + } + }, + "lv": { + "ersatz": { + "u": 0.9678628816282807, + "t": 0.9742337944128018, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.4520665901262917, + "t": 0.5337910319673889, + "punct": null + }, + "opus100": { + "u": 0.7930954047119197, + "t": 0.8581098672220776, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4972089314194577, + "t": 0.5031626198734952, + "punct": null + }, + "ud": { + "u": 0.9711166704571299, + "t": 0.9714677014380279, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.4377019748653501, + "t": 0.44010684199712347, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5423496599305182, + "t": 0.5428080643703102, + "punct": null + } + }, + "mg": { + "opus100": { + "u": 0.8630375341784738, + "t": 0.8707070707070708, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.3895622415514045, + "t": 0.43084409507767174, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4439746300211416, + "t": 0.4559386973180077, + "punct": null + } + }, + "mk": { + "opus100": { + "u": 0.9250780437044746, + "t": 0.930853850183342, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5440077164215095, + "t": 0.49400558383971105, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5352943728578246, + "t": 0.5356498790411259, + "punct": null + } + }, + "ml": { + "opus100": { + "u": 0.7765531062124248, + "t": 0.8183807439824945, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5479048220678038, + "t": 0.5691411935953421, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4493270447486483, + "t": 0.47815285693409326, + "punct": null + } + }, + "mn": { + "opus100": { + "u": 0.30597014925373134, + "t": null, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5040742846314193, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7810834049871024, + "t": 0.7850477489768075, + "punct": null + } + }, + "mr": { + "opus100": { + "u": 0.9000561482313307, + "t": 0.9000000000000001, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6045949214026602, + "t": 0.6226415094339622, + "punct": null + }, + "ud": { + "u": 0.8641975308641975, + "t": 0.8641975308641975, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5454545454545454, + "t": 0.5411764705882354, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3933556350213404, + "t": 0.4011544011544011, + "punct": null + } + }, + "ms": { + "opus100": { + "u": 0.8837468636743797, + "t": 0.8799351000540833, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5186799501867996, + "t": 0.5365661344372167, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5504489524442967, + "t": 0.5508298058187193, + "punct": null + } + }, + "mt": { + "opus100": { + "u": 0.5756302521008403, + "t": 0.7782664941785252, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.3270460882401181, + "t": 0.3402080028203773, + "punct": null + }, + "ud": { + "u": 0.8695652173913043, + "t": 0.8921775898520083, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.30184049079754605, + "t": 0.3266613290632506, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.32258064516129037, + "t": 0.30303030303030304, + "punct": null + } + }, + "my": { + "opus100": { + "u": 0.7553976496310467, + "t": 0.7666570522065186, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7559006211180124, + "t": 0.7562589928057554, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.9086809470124013, + "t": 0.9274179840217577, + "punct": null + } + }, + "ne": { + "opus100": { + "u": 0.6650015610365283, + "t": 0.686053077357425, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5627347858752817, + "t": 0.6565910999160369, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6024830171000234, + "t": 0.6065934065934065, + "punct": null + } + }, + "nl": { + "opus100": { + "u": 0.9285527348861553, + "t": null, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6396449704142012, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9372156505914467, + "t": 0.9029982363315696, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6196969696969696, + "t": 0.6387434554973822, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6491989818835154, + "t": 0.6501926534806062, + "punct": null + } + }, + "no": { + "opus100": { + "u": 0.9488146551724137, + "t": 0.9488422186322024, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5770833333333333, + "t": 0.6565498772595403, + "punct": null + }, + "ud": { + "u": 0.9874213836477986, + "t": 0.9891179839633448, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6522027894620324, + "t": 0.685575364667747, + "punct": null + } + }, + "pa": { + "opus100": { + "u": 0.654576367242845, + "t": 0.6756187467087942, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5981308411214953, + "t": 0.592248062015504, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4694656488549619, + "t": 0.5025, + "punct": null + } + }, + "pl": { + "ersatz": { + "u": 0.9470842332613391, + "t": 0.9446618222470654, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.4557495484647802, + "t": 0.5080713678844521, + "punct": null + }, + "opus100": { + "u": 0.9258964143426295, + "t": 0.9319399785637728, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4835384103757899, + "t": 0.5946061643835616, + "punct": null + }, + "ud": { + "u": 0.9422665716322166, + "t": 0.964014687882497, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5138943248532288, + "t": 0.5152169644610248, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5188911367488654, + "t": 0.5366121720016486, + "punct": null + } + }, + "ps": { + "ersatz": { + "u": 0.9091269055632548, + "t": 0.9262985013344284, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.6992388033280227, + "t": 0.7232070910556003, + "punct": null + }, + "opus100": { + "u": 0.39741219963031416, + "t": 0.6930274675520675, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.23991726990692863, + "t": 0.6794602698650675, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.556836902800659, + "t": 0.55929203539823, + "punct": null + } + }, + "pt": { + "opus100": { + "u": 0.9153522607781284, + "t": 0.9235685752330226, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5625979843225084, + "t": 0.54876866395191, + "punct": null + }, + "ud": { + "u": 0.9669499527856468, + "t": 0.9667616334283001, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.485799296727076, + "t": 0.5710670603121046, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5497500000000001, + "t": 0.5570921663178964, + "punct": null + }, + "legal-all-laws": { + "u": 0.46999754017130435, + "t": 0.42956302674399355, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.5166397001531029, + "t": 0.44884055960269686, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.017241379310344827, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.7723002081475754, + "t": 0.4745571567448653, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.40284192528119034, + "t": 0.15335378989208093, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "ro": { + "ersatz": { + "u": 0.9744426318651441, + "t": 0.9769380383439845, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.4444763271162123, + "t": 0.540862520848225, + "punct": null + }, + "opus100": { + "u": 0.9005397070161912, + "t": 0.9154671551949752, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5311904113320621, + "t": 0.5597058254306174, + "punct": null + }, + "ud": { + "u": 0.8665749656121045, + "t": 0.9567869852567361, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.3313253012048193, + "t": 0.3292349726775956, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5245120086354232, + "t": 0.5236036354010412, + "punct": null + } + }, + "ru": { + "ersatz": { + "u": 0.9690607734806629, + "t": 0.9731843575418994, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.4887556221889056, + "t": 0.6120218579234973, + "punct": null + }, + "opus100": { + "u": 0.7755941499085923, + "t": null, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4657890459938241, + "t": null, + "punct": null + }, + "ud": { + "u": 0.8476672287802137, + "t": 0.8646135967460779, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.4758317639673572, + "t": 0.47417218543046363, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5432568665775126, + "t": 0.5495954177652513, + "punct": null + } + }, + "si": { + "opus100": { + "u": 0.8098495212038302, + "t": 0.8180272108843537, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4747474747474748, + "t": 0.6127247579529738, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.46060606060606063, + "t": 0.4619422572178477, + "punct": null + } + }, + "sk": { + "opus100": { + "u": 0.9170146137787056, + "t": 0.9335135135135135, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5549559784152228, + "t": 0.5728643216080402, + "punct": null + }, + "ud": { + "u": 0.9516214779372673, + "t": 0.9433551198257082, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5969281859692819, + "t": 0.5532786885245902, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5208027410670582, + "t": 0.5386915887850469, + "punct": null + } + }, + "sl": { + "opus100": { + "u": 0.9248494370253993, + "t": 0.9351753453772581, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.47665687234737186, + "t": 0.5655504486758591, + "punct": null + }, + "ud": { + "u": 0.9646464646464646, + "t": 0.9676584734799483, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5632107023411372, + "t": 0.5780260707635009, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.556427699284842, + "t": 0.5706231752743379, + "punct": null + }, + "short-sequences": { + "u": 0.41197551176687547, + "t": 0.7042514951671045, + "punct": null, + "acc_u": 0.0021994134897360706, + "acc_t": 0.16385630498533724, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.346976611768149, + "t": 0.5075844015527202, + "punct": null, + "acc_u": 0.0010997067448680353, + "acc_t": 0.04032258064516129, + "acc_punct": null + } + }, + "sq": { + "opus100": { + "u": 0.9022869022869022, + "t": 0.910337552742616, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.533698399326032, + "t": 0.4905153600805775, + "punct": null + }, + "ud": { + "u": 1.0, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.712121212121212, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.49920773253050227, + "t": 0.5076218792769833, + "punct": null + } + }, + "sr": { + "opus100": { + "u": 0.9446967672989581, + "t": 0.9472274310206268, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5112634671890304, + "t": 0.5831775700934579, + "punct": null + }, + "ud": { + "u": 0.9789473684210526, + "t": 0.982010582010582, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.3937728937728938, + "t": 0.5826235093696762, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5310861087453493, + "t": 0.53125, + "punct": null + }, + "short-sequences": { + "u": 0.3645802617135165, + "t": 0.8100326178451178, + "punct": null, + "acc_u": 0.005208333333333333, + "acc_t": 0.4114583333333333, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.3207246668978108, + "t": 0.4899656279962765, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.010416666666666666, + "acc_punct": null + } + }, + "sv": { + "opus100": { + "u": 0.9162357807652534, + "t": 0.9329446064139942, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6578313253012048, + "t": 0.6414333706606943, + "punct": null + }, + "ud": { + "u": 0.9479708636836628, + "t": 0.9481946624803768, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6430653894210745, + "t": 0.6847117794486215, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5751802029291584, + "t": 0.5798729126644008, + "punct": null + } + }, + "ta": { + "ersatz": { + "u": 0.9644779332615716, + "t": 0.9766666666666667, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.5841137703780784, + "t": 0.7886855241264559, + "punct": null + }, + "opus100": { + "u": 0.582529335071708, + "t": 0.5285264263213161, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.42269409422694093, + "t": 0.4751595892311963, + "punct": null + }, + "ud": { + "u": 0.972972972972973, + "t": 0.9953917050691244, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6349206349206349, + "t": 0.8611111111111112, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4003228410008072, + "t": 0.49462907015777113, + "punct": null + } + }, + "te": { + "opus100": { + "u": 0.7506038647342995, + "t": 0.7490535424553814, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5560640732265447, + "t": 0.5581615730869462, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.51995199519952, + "t": 0.5420903483913986, + "punct": null + } + }, + "tg": { + "opus100": { + "u": 0.7638283222400734, + "t": 0.7857857857857858, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5334862385321102, + "t": 0.5294484911550469, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6153846153846153, + "t": 0.618066561014263, + "punct": null + } + }, + "th": { + "opus100": { + "u": 0.6733629515163221, + "t": 0.704766107678729, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6823061630218689, + "t": 0.6914529914529914, + "punct": null + }, + "ud": { + "u": 0.6569022336140607, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6528535078153398, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5063890203502129, + "t": 0.5847877051315448, + "punct": null + } + }, + "tr": { + "ersatz": { + "u": 0.9458689458689458, + "t": 0.9440635149765428, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7842114414884368, + "t": 0.7854435178165277, + "punct": null + }, + "opus100": { + "u": 0.932258064516129, + "t": 0.9332615715823466, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6210253082414017, + "t": 0.6728624535315986, + "punct": null + }, + "ud": { + "u": 0.9675810473815462, + "t": 0.9674511767651477, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5560318432333129, + "t": 0.6396677050882659, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6827980168139685, + "t": 0.6839425720395071, + "punct": null + } + }, + "uk": { + "opus100": { + "u": 0.8983845752996352, + "t": 0.8967306694343539, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.486447415973979, + "t": 0.578169881001231, + "punct": null + }, + "ud": { + "u": 0.9323583180987203, + "t": 0.9365671641791046, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.4353852425601305, + "t": 0.43432715551974216, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.535180817610063, + "t": 0.5401032702237522, + "punct": null + } + }, + "ur": { + "opus100": { + "u": 0.5101190476190476, + "t": 0.49257045260461146, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5263157894736842, + "t": 0.5322373490881068, + "punct": null + }, + "ud": { + "u": 0.9804325437693101, + "t": 0.9905956112852665, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.9022265246853824, + "t": 0.9232343909928352, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.560392798690671, + "t": 0.5604017686554943, + "punct": null + } + }, + "uz": { + "opus100": { + "u": 0.7450462351387055, + "t": 0.7546262917567892, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6305010893246188, + "t": 0.6433430515063168, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6732313285865777, + "t": 0.677855096193205, + "punct": null + } + }, + "vi": { + "opus100": { + "u": 0.9132523311669964, + "t": 0.9173789173789173, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4988573294156056, + "t": 0.5463129496402879, + "punct": null + }, + "ud": { + "u": 0.8859145952836203, + "t": 0.9640883977900553, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.4524216524216524, + "t": 0.4576687116564417, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.476358781024191, + "t": 0.48133140376266276, + "punct": null + } + }, + "xh": { + "opus100": { + "u": 0.7709739633558342, + "t": 0.776665853063217, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.39645592431295984, + "t": 0.4278928367851036, + "punct": null + } + }, + "yi": { + "opus100": { + "u": 0.2332695984703633, + "t": 0.6653589642997254, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4405724953329186, + "t": 0.7241513850955911, + "punct": null + } + }, + "yo": { + "opus100": { + "u": 0.6442344528157323, + "t": null, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.2216053299492386, + "t": null, + "punct": null + }, + "ud": { + "u": 0.7690217391304348, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.14519906323185014, + "t": null, + "punct": null + } + }, + "zh": { + "ersatz": { + "u": 0.8050924522582601, + "t": 0.8204350025290844, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.18744971842316974, + "t": 0.5161613630669005, + "punct": null + }, + "opus100": { + "u": 0.41774744027303756, + "t": 0.5899033297529538, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.014058453570107286, + "t": 0.38131797824696095, + "punct": null + }, + "ud": { + "u": 0.909310761789601, + "t": 0.9799554565701558, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.32798573975044565, + "t": 0.5548387096774193, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.0982721382289417, + "t": 0.32519534416237067, + "punct": null + } + }, + "zu": { + "opus100": { + "u": 0.7683155917345023, + "t": 0.8272101033295063, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6071428571428572, + "t": 0.6069000251825736, + "punct": null + } + }, + "tr-de": { + "code-switching": { + "u": 0.967828418230563, + "t": 0.9733520336605891, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.31626120358514725, + "t": 0.31841733396137534, + "punct": null + } + }, + "es-en": { + "code-switching": { + "u": 0.9349736379613357, + "t": 0.9349164467897977, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.33725490196078434, + "t": 0.46360655737704914, + "punct": null + } + }, + "vi-en": { + "code-switching": { + "u": 0.24753694581280788, + "t": 0.44410413476263405, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.3228346456692913, + "t": 0.4603121886416473, + "punct": null + } + }, + "en-de": { + "code-switching": { + "u": 0.6446280991735537, + "t": 0.8192771084337349, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.4078352586639879, + "t": 0.47766043866774976, + "punct": null + }, + "short-sequences": { + "u": 0.30943486819180166, + "t": 0.7122295835077708, + "punct": null, + "acc_u": 0.002079002079002079, + "acc_t": 0.2203742203742204, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.33777378365447025, + "t": 0.5304546312989732, + "punct": null, + "acc_u": 0.004158004158004158, + "acc_t": 0.0395010395010395, + "acc_punct": null + } + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-3l_only_clean.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-3l_only_clean.json new file mode 100644 index 0000000000000000000000000000000000000000..4f8287ab98b93e6b7687a35b3b28a7b7078b8066 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-3l_only_clean.json @@ -0,0 +1,1645 @@ +{ + "af": { + "opus100": { + "u": 0.7819971870604782, + "t": 0.7944572748267898, + "punct": null + }, + "ud": { + "u": 0.9922077922077922, + "t": 0.9921259842519685, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.06372549019607843, + "t": 0.5314240254574384, + "punct": null + } + }, + "am": { + "opus100": { + "u": 0.5767062026054831, + "t": 0.5870435806831567, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3850415512465375, + "t": 0.5201646090534979, + "punct": null + } + }, + "ar": { + "ersatz": { + "u": 0.8888086642599278, + "t": 0.9065955013343501, + "punct": null + }, + "opus100": { + "u": 0.6700999697061496, + "t": 0.6753534793457167, + "punct": null + }, + "ud": { + "u": 0.8345534407027818, + "t": 0.8309104820198928, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.1862422246615441, + "t": 0.474684764585663, + "punct": null + } + }, + "az": { + "opus100": { + "u": 0.7452200978212539, + "t": 0.7501256913021619, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.07065812099421605, + "t": 0.6141300527240774, + "punct": null + } + }, + "be": { + "opus100": { + "u": 0.7177805800756621, + "t": 0.7173281703775412, + "punct": null + }, + "ud": { + "u": 0.8853910477127397, + "t": 0.8853410740203194, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.11726907630522089, + "t": 0.4620174346201743, + "punct": null + } + }, + "bg": { + "opus100": { + "u": 0.9373500399893362, + "t": 0.9332627118644068, + "punct": null + }, + "ud": { + "u": 0.9805486284289276, + "t": 0.9806451612903225, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.06981092873467692, + "t": 0.5225720620842571, + "punct": null + } + }, + "bn": { + "opus100": { + "u": 0.7990936555891239, + "t": 0.8187599364069953, + "punct": null + }, + "ud": { + "u": 0.99009900990099, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.017829457364341085, + "t": 0.1432300937462917, + "punct": null + } + }, + "ca": { + "opus100": { + "u": 0.8820960698689957, + "t": 0.8967334035827187, + "punct": null + }, + "ud": { + "u": 0.9847624738571856, + "t": 0.9865067466266867, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.03654520344204823, + "t": 0.4592812268310766, + "punct": null + } + }, + "ceb": { + "ud": { + "u": 0.9970501474926253, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4444444444444444, + "t": 0.3516483516483516, + "punct": null + } + }, + "cs": { + "ersatz": { + "u": 0.9386666666666666, + "t": 0.9546477967192023, + "punct": null + }, + "opus100": { + "u": 0.8863926474342608, + "t": 0.9021567596002105, + "punct": null + }, + "ud": { + "u": 0.913384089153702, + "t": 0.9113938176542796, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.08839440645095438, + "t": 0.497278664731495, + "punct": null + } + }, + "cy": { + "opus100": { + "u": 0.7213915166310649, + "t": 0.7478448275862069, + "punct": null + }, + "ud": { + "u": 0.9924198250728863, + "t": 0.9924109748978401, + "punct": null + } + }, + "da": { + "opus100": { + "u": 0.908714765968451, + "t": 0.9253573319216516, + "punct": null + }, + "ud": { + "u": 0.9471624266144814, + "t": 0.9460255152109911, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.012748653698208594, + "t": 0.5186746177644262, + "punct": null + } + }, + "de": { + "ersatz": { + "u": 0.9623010332309411, + "t": 0.9646067415730337, + "punct": null + }, + "opus100": { + "u": 0.7804301583549988, + "t": 0.8466648950305607, + "punct": null + }, + "ud": { + "u": 0.9650028686173263, + "t": 0.9650829994275902, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4156798081247189, + "t": 0.5418013627095041, + "punct": null + }, + "legal-all-laws": { + "u": 0.8611150213562196, + "t": 0.8665179725294054, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.26663020821157657, + "t": 0.31358222104936684, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.781903236216006, + "t": 0.7776481725762847, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.32638518471576133, + "t": 0.3843367949446761, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "el": { + "opus100": { + "u": 0.9206516027325276, + "t": 0.9309696481332259, + "punct": null + }, + "ud": { + "u": 0.9828850855745721, + "t": 0.9803921568627451, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.03647480497575374, + "t": 0.48393178131439346, + "punct": null + } + }, + "en": { + "ersatz": { + "u": 0.9664553806708923, + "t": 0.9689316208653226, + "punct": null + }, + "opus100": { + "u": 0.9066305818673883, + "t": 0.898505114083399, + "punct": null + }, + "ud": { + "u": 0.9391304347826087, + "t": 0.9378473976755937, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.12255138473415032, + "t": 0.45243649009712034, + "punct": null + }, + "legal-all-judgements": { + "u": 0.854427519594934, + "t": 0.8526616448707376, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.1251063252790053, + "t": 0.3341612421581971, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "eo": { + "opus100": { + "u": 0.9023331524688009, + "t": 0.9031556039173013, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.04048050024683232, + "t": 0.4804323518449497, + "punct": null + } + }, + "es": { + "ersatz": { + "u": 0.984184693692056, + "t": null, + "punct": null + }, + "opus100": { + "u": 0.9150223625361747, + "t": 0.9268423883808499, + "punct": null + }, + "ud": { + "u": 0.9681528662420382, + "t": 0.9696774193548386, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.06254442075337598, + "t": 0.462220447284345, + "punct": null + }, + "legal-all-laws": { + "u": 0.7944512449380017, + "t": 0.8401717259237861, + "punct": null, + "acc_u": 0.01639344262295082, + "acc_t": 0.15300546448087432, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.16442108542006062, + "t": 0.5869337310644828, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.7557220155686801, + "t": 0.7548465923185533, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.19337270104972842, + "t": 0.32850675226159204, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "et": { + "ersatz": { + "u": 0.9577619308831596, + "t": 0.9579269991641125, + "punct": null + }, + "opus100": { + "u": 0.845650593651563, + "t": 0.8925318761384334, + "punct": null + }, + "ud": { + "u": 0.927038626609442, + "t": 0.9268713349430838, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.1905576137551059, + "t": 0.5039162112932605, + "punct": null + }, + "short-sequences": { + "u": 0.900122633947663, + "t": 0.9020610728027874, + "punct": null, + "acc_u": 0.4975369458128079, + "acc_t": 0.49261083743842365, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.5196526231437348, + "t": 0.5643700359809631, + "punct": null, + "acc_u": 0.014778325123152709, + "acc_t": 0.029556650246305417, + "acc_punct": null + } + }, + "eu": { + "opus100": { + "u": 0.8201160541586073, + "t": 0.8466039175782244, + "punct": null + }, + "ud": { + "u": 0.9638118214716526, + "t": 0.9705159705159705, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.04004290311047551, + "t": 0.41809141066684835, + "punct": null + } + }, + "fa": { + "opus100": { + "u": 0.5583536420254536, + "t": 0.5515898767034393, + "punct": null + }, + "ud": { + "u": 0.9838406614054866, + "t": 0.9878603945371774, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.22368184272089256, + "t": 0.5449840015057407, + "punct": null + } + }, + "fi": { + "ersatz": { + "u": 0.9763954457095252, + "t": 0.974387221151198, + "punct": null + }, + "opus100": { + "u": 0.91139896373057, + "t": 0.9294494922501336, + "punct": null + }, + "ud": { + "u": 0.937455579246624, + "t": 0.9350180505415162, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.08544916896094626, + "t": 0.4850642036494706, + "punct": null + } + }, + "fr": { + "ersatz": { + "u": 0.972379367720466, + "t": 0.9719689294157379, + "punct": null + }, + "opus100": { + "u": 0.8762964836832784, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9724047306176085, + "t": 0.9775429326287978, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.1226911666188152, + "t": 0.51396933560477, + "punct": null + }, + "legal-all-laws": { + "u": 0.9354421057101969, + "t": 0.9359189339542819, + "punct": null, + "acc_u": 0.6928104575163399, + "acc_t": 0.6884531590413944, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.272183580438751, + "t": 0.605609380320305, + "punct": null, + "acc_u": 0.12200435729847495, + "acc_t": 0.15904139433551198, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.8099247029816242, + "t": 0.8188017500467555, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.1770150674697659, + "t": 0.31782242069355476, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "fy": { + "opus100": { + "u": 0.658309225329476, + "t": 0.7182257605914131, + "punct": null + } + }, + "ga": { + "opus100": { + "u": 0.8225848225848226, + "t": 0.8106598984771574, + "punct": null + }, + "ud": { + "u": 0.861407249466951, + "t": 0.901565995525727, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.0, + "t": 0.41935483870967744, + "punct": null + } + }, + "gd": { + "opus100": { + "u": 0.818137493905412, + "t": 0.8281249999999999, + "punct": null + }, + "ud": { + "u": 0.6733167082294265, + "t": 0.6488156539649845, + "punct": null + } + }, + "gl": { + "opus100": { + "u": 0.88791095003883, + "t": 0.89477827341905, + "punct": null + }, + "ud": { + "u": 0.9752066115702478, + "t": 0.9686221009549795, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.009015942825728422, + "t": 0.4611934834340106, + "punct": null + } + }, + "gu": { + "ersatz": { + "u": 0.9209252286175362, + "t": 0.9139618753219989, + "punct": null + }, + "opus100": { + "u": 0.7151420380505604, + "t": 0.7166089042921887, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.24841213832039521, + "t": 0.2800440003666697, + "punct": null + } + }, + "ha": { + "opus100": { + "u": 0.8380952380952381, + "t": 0.887357540418765, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.0, + "t": 0.2631578947368421, + "punct": null + } + }, + "he": { + "opus100": { + "u": 0.9033098775084701, + "t": 0.9086614173228347, + "punct": null + }, + "ud": { + "u": 0.9386590584878745, + "t": 0.9413447782546495, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.1886208466090123, + "t": 0.4768373389063044, + "punct": null + } + }, + "hi": { + "ersatz": { + "u": 0.9569798068481123, + "t": 0.9577403109262098, + "punct": null + }, + "opus100": { + "u": 0.623202776400595, + "t": 0.606425702811245, + "punct": null + }, + "ud": { + "u": 0.9753370601775733, + "t": 0.9759584145549058, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.016023306627822285, + "t": 0.3626141393197496, + "punct": null + } + }, + "hu": { + "opus100": { + "u": 0.927710843373494, + "t": 0.9352785145888595, + "punct": null + }, + "ud": { + "u": 0.9668711656441719, + "t": 0.966952264381885, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.05123897522049559, + "t": 0.4676010562665041, + "punct": null + } + }, + "hy": { + "opus100": { + "u": 0.8560383706779296, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9768303985171455, + "t": 0.9746001881467545, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.08098060886164976, + "t": 0.4581404174573055, + "punct": null + } + }, + "id": { + "opus100": { + "u": 0.8808567603748326, + "t": 0.8902804247209366, + "punct": null + }, + "ud": { + "u": 0.9834254143646408, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.15121338103064877, + "t": 0.4862451025824661, + "punct": null + } + }, + "ig": { + "opus100": { + "u": 0.8222442899702085, + "t": 0.8309492847854355, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.0, + "t": 0.17777777777777778, + "punct": null + } + }, + "is": { + "opus100": { + "u": 0.9364099812181379, + "t": 0.9450489662676822, + "punct": null + }, + "ud": { + "u": 0.7636455525606469, + "t": 0.8199761314605709, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.15650030807147258, + "t": 0.46553497942386834, + "punct": null + } + }, + "it": { + "opus100": { + "u": 0.870430241233524, + "t": 0.8948731227343346, + "punct": null + }, + "ud": { + "u": 0.9578713968957872, + "t": 0.9463307776560789, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.19139359020525745, + "t": 0.48304376511985925, + "punct": null + }, + "legal-all-laws": { + "u": 0.8357741214529066, + "t": 0.8487923004514616, + "punct": null, + "acc_u": 0.4375, + "acc_t": 0.5696022727272727, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.22009161100138067, + "t": 0.41389330675191016, + "punct": null, + "acc_u": 0.03409090909090909, + "acc_t": 0.028409090909090908, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.8412007831695276, + "t": 0.851391903413075, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.02040816326530612, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.2148720599071291, + "t": 0.30783690501929106, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "ja": { + "ersatz": { + "u": 0.8582794629537542, + "t": 0.8707557502738225, + "punct": null + }, + "opus100": { + "u": 0.7958280657395702, + "t": 0.8361549497847918, + "punct": null + }, + "ud": { + "u": 0.9690721649484535, + "t": 0.9729166666666667, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4698815566835871, + "t": 0.9006555153707052, + "punct": null + } + }, + "jv": { + "ud": { + "u": 0.9878587196467993, + "t": null, + "punct": null + } + }, + "ka": { + "opus100": { + "u": 0.7519931049342814, + "t": 0.8552531162554059, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3256059009483667, + "t": 0.46783983232173265, + "punct": null + } + }, + "kk": { + "ersatz": { + "u": 0.9704075935231714, + "t": 0.9760087241003271, + "punct": null + }, + "opus100": { + "u": 0.8238838674335799, + "t": 0.8093607305936072, + "punct": null + }, + "ud": { + "u": 0.9573664328116568, + "t": 0.9006318207926479, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.18363273453093812, + "t": 0.6410109132682368, + "punct": null + } + }, + "km": { + "ersatz": { + "u": 0.8951179630927353, + "t": 0.9184741959611069, + "punct": null + }, + "opus100": { + "u": 0.6983437415150693, + "t": 0.6875182695118387, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.31652173913043485, + "t": 0.6509723643807575, + "punct": null + } + }, + "kn": { + "opus100": { + "u": 0.6819221967963386, + "t": 0.6819221967963386, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.25236051502145923, + "t": 0.2702394526795895, + "punct": null + } + }, + "ko": { + "opus100": { + "u": 0.7174418604651164, + "t": 0.7369758576874206, + "punct": null + }, + "ud": { + "u": 0.994914022765803, + "t": 0.9941747572815534, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.03264696468579964, + "t": 0.723272971160295, + "punct": null + } + }, + "ku": { + "opus100": { + "u": 0.7680209698558323, + "t": 0.6892692560895326, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.039285341134677666, + "t": 0.32871652816251157, + "punct": null + } + }, + "ky": { + "opus100": { + "u": 0.8460829493087557, + "t": 0.8474366893143916, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5060658578856153, + "t": 0.6018735362997658, + "punct": null + } + }, + "la": { + "ud": { + "u": 0.6177745664739884, + "t": 0.854160944795386, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.16666666666666669, + "t": 0.47058823529411764, + "punct": null + } + }, + "lt": { + "ersatz": { + "u": 0.961387800783436, + "t": 0.9622222222222222, + "punct": null + }, + "opus100": { + "u": 0.8223523670082967, + "t": 0.8584140277414289, + "punct": null + }, + "ud": { + "u": 0.9725363489499194, + "t": 0.9742351046698873, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.17720808383233533, + "t": 0.4813885041551246, + "punct": null + } + }, + "lv": { + "ersatz": { + "u": 0.9745808545159546, + "t": 0.9746524938675388, + "punct": null + }, + "opus100": { + "u": 0.8311176760216643, + "t": 0.8614173228346457, + "punct": null + }, + "ud": { + "u": 0.9613157285151726, + "t": 0.9613183794918746, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.09306990271788186, + "t": 0.4863370926759685, + "punct": null + } + }, + "mg": { + "opus100": { + "u": 0.883183568677792, + "t": 0.890795631825273, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.0, + "t": 0.3653846153846154, + "punct": null + } + }, + "mk": { + "opus100": { + "u": 0.9264590421355666, + "t": 0.9319261213720317, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.05156498673740053, + "t": 0.4783693843594011, + "punct": null + } + }, + "ml": { + "opus100": { + "u": 0.7798617966436328, + "t": 0.8125677139761646, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.07778131973222824, + "t": 0.3336049986416735, + "punct": null + } + }, + "mn": { + "opus100": { + "u": 0.6800067831100559, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.2815811296415738, + "t": 0.7121320158908017, + "punct": null + } + }, + "mr": { + "opus100": { + "u": 0.900831024930748, + "t": 0.9014941892639734, + "punct": null + }, + "ud": { + "u": 0.8395061728395062, + "t": 0.8333333333333334, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.010364886303543099, + "t": 0.239141765114663, + "punct": null + } + }, + "ms": { + "opus100": { + "u": 0.8651804670912951, + "t": 0.8682087143625605, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.1856091578086672, + "t": 0.48973393269347587, + "punct": null + } + }, + "mt": { + "opus100": { + "u": 0.6443166038484428, + "t": 0.7981991525423728, + "punct": null + }, + "ud": { + "u": 0.8831967213114754, + "t": 0.8924050632911392, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.0, + "t": 0.31868131868131866, + "punct": null + } + }, + "my": { + "opus100": { + "u": 0.671443736730361, + "t": 0.6936084838062483, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.8995095243526863, + "t": 0.8991539763113368, + "punct": null + } + }, + "ne": { + "opus100": { + "u": 0.6917593384659253, + "t": 0.6993154291732491, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.07287050713934023, + "t": 0.4982844071673657, + "punct": null + } + }, + "nl": { + "opus100": { + "u": 0.921120913336793, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9247706422018349, + "t": 0.8992112182296231, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.16208476517754866, + "t": 0.5696946157207361, + "punct": null + } + }, + "no": { + "opus100": { + "u": 0.9483593329747176, + "t": 0.9498652291105122, + "punct": null + }, + "ud": { + "u": 0.985632183908046, + "t": 0.9868496283590622, + "punct": null + } + }, + "pa": { + "opus100": { + "u": 0.6941262490860346, + "t": 0.692385274836107, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.043596730245231606, + "t": 0.37192342752962626, + "punct": null + } + }, + "pl": { + "ersatz": { + "u": 0.9346110484780158, + "t": 0.9344632768361583, + "punct": null + }, + "opus100": { + "u": 0.9250797024442083, + "t": 0.9305331179321487, + "punct": null + }, + "ud": { + "u": 0.9541505791505791, + "t": 0.9556578628543736, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.07743521458568063, + "t": 0.5110040369839823, + "punct": null + } + }, + "ps": { + "ersatz": { + "u": 0.9231076492909926, + "t": 0.9284701114488348, + "punct": null + }, + "opus100": { + "u": 0.6683448709880427, + "t": 0.6972122550372619, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4078947368421053, + "t": 0.46666666666666673, + "punct": null + } + }, + "pt": { + "opus100": { + "u": 0.9106583072100313, + "t": 0.9231590181430096, + "punct": null + }, + "ud": { + "u": 0.9671179883945842, + "t": 0.9659145463274125, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.06490830414176799, + "t": 0.5142343667034268, + "punct": null + }, + "legal-all-laws": { + "u": 0.5756256307942803, + "t": 0.529698914913671, + "punct": null, + "acc_u": 0.017241379310344827, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.11523235129033794, + "t": 0.436230699087125, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.7617860831193743, + "t": 0.772353377152171, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.07435879337117733, + "t": 0.25141905995991565, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "ro": { + "ersatz": { + "u": 0.9730621220450796, + "t": 0.9667504889633977, + "punct": null + }, + "opus100": { + "u": 0.9058064516129033, + "t": 0.9265836204611715, + "punct": null + }, + "ud": { + "u": 0.718299164768413, + "t": 0.8297766749379654, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.07762230619957104, + "t": 0.47401750791581304, + "punct": null + } + }, + "ru": { + "ersatz": { + "u": 0.970274817722939, + "t": 0.9708520179372198, + "punct": null + }, + "opus100": { + "u": 0.8241811175337187, + "t": null, + "punct": null + }, + "ud": { + "u": 0.8276243093922653, + "t": 0.8313856427378966, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.09949849548645938, + "t": 0.5109871534820825, + "punct": null + } + }, + "si": { + "opus100": { + "u": 0.8034557235421166, + "t": 0.8095774647887324, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.30769230769230765, + "t": 0.43487621097954793, + "punct": null + } + }, + "sk": { + "opus100": { + "u": 0.9149713093375066, + "t": 0.9274431057563587, + "punct": null + }, + "ud": { + "u": 0.947198275862069, + "t": 0.9512064343163539, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.12945231711987745, + "t": 0.48877995182352196, + "punct": null + } + }, + "sl": { + "opus100": { + "u": 0.9158878504672898, + "t": 0.9269200106298167, + "punct": null + }, + "ud": { + "u": 0.9635593220338983, + "t": 0.9639484978540773, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.06376084456987562, + "t": 0.49110800520507014, + "punct": null + }, + "short-sequences": { + "u": 0.7878786615407417, + "t": 0.7510648241981032, + "punct": null, + "acc_u": 0.3101173020527859, + "acc_t": 0.21737536656891496, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.6452657970580004, + "t": 0.5724011913218351, + "punct": null, + "acc_u": 0.11986803519061584, + "acc_t": 0.05865102639296188, + "acc_punct": null + } + }, + "sq": { + "opus100": { + "u": 0.9028720626631854, + "t": 0.9098143236074271, + "punct": null + }, + "ud": { + "u": 1.0, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.015520821947753853, + "t": 0.47024123965486875, + "punct": null + } + }, + "sr": { + "opus100": { + "u": 0.938710533297957, + "t": 0.9422103861517976, + "punct": null + }, + "ud": { + "u": 0.9732047159699893, + "t": 0.975609756097561, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.045999144201968344, + "t": 0.48225027535372367, + "punct": null + }, + "short-sequences": { + "u": 0.8842179232804233, + "t": 0.9105498957061456, + "punct": null, + "acc_u": 0.5416666666666666, + "acc_t": 0.6302083333333334, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.6158745189995191, + "t": 0.5974482922782555, + "punct": null, + "acc_u": 0.057291666666666664, + "acc_t": 0.07291666666666667, + "acc_punct": null + } + }, + "sv": { + "opus100": { + "u": 0.914536534985799, + "t": 0.9217118997912317, + "punct": null + }, + "ud": { + "u": 0.9460020768431984, + "t": 0.9473129610115912, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.05918010890783931, + "t": 0.504361118604442, + "punct": null + } + }, + "ta": { + "ersatz": { + "u": 0.9753694581280787, + "t": 0.9750415973377705, + "punct": null + }, + "opus100": { + "u": 0.6033797216699801, + "t": 0.5854430379746834, + "punct": null + }, + "ud": { + "u": 1.0, + "t": 1.0, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.16217596730941128, + "t": 0.26094457623463446, + "punct": null + } + }, + "te": { + "opus100": { + "u": 0.7633069082672708, + "t": 0.7573833839359647, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.22157772621809743, + "t": 0.3563166591557759, + "punct": null + } + }, + "tg": { + "opus100": { + "u": 0.7835590401520551, + "t": 0.8194780737153617, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.03597122302158273, + "t": 0.5676126878130217, + "punct": null + } + }, + "th": { + "opus100": { + "u": 0.6830225711481844, + "t": 0.7028670721112076, + "punct": null + }, + "ud": { + "u": 0.7001194743130227, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5112923844889511, + "t": 0.5752790997642663, + "punct": null + } + }, + "tr": { + "ersatz": { + "u": 0.9319009468317552, + "t": 0.9351818509182571, + "punct": null + }, + "opus100": { + "u": 0.9305071102763617, + "t": 0.9313593539703903, + "punct": null + }, + "ud": { + "u": 0.9625561657513729, + "t": 0.9654827413706852, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.08394500155070815, + "t": 0.6041849148418491, + "punct": null + } + }, + "uk": { + "opus100": { + "u": 0.8908252178370067, + "t": 0.8950649350649349, + "punct": null + }, + "ud": { + "u": 0.9187848729076256, + "t": 0.9183168316831684, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.1955981213739755, + "t": 0.49757184228113166, + "punct": null + } + }, + "ur": { + "opus100": { + "u": 0.5306248076331178, + "t": 0.5126475548060708, + "punct": null + }, + "ud": { + "u": 0.9784172661870505, + "t": 0.9823100936524454, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.42312296904395413, + "t": 0.5045138888888889, + "punct": null + } + }, + "uz": { + "opus100": { + "u": 0.7595931576514101, + "t": 0.7622549019607844, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.24674367166379946, + "t": 0.6242518865469685, + "punct": null + } + }, + "vi": { + "opus100": { + "u": 0.9105645612073784, + "t": 0.9101595298068851, + "punct": null + }, + "ud": { + "u": 0.8933419521654815, + "t": 0.9538043478260869, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.03853113358169239, + "t": 0.44806221424603687, + "punct": null + } + }, + "xh": { + "opus100": { + "u": 0.79718456725756, + "t": 0.7970749542961608, + "punct": null + } + }, + "yi": { + "opus100": { + "u": 0.6251097453906936, + "t": 0.7107964601769912, + "punct": null + } + }, + "yo": { + "opus100": { + "u": 0.7293672435861761, + "t": null, + "punct": null + }, + "ud": { + "u": 0.6635404454865181, + "t": null, + "punct": null + } + }, + "zh": { + "ersatz": { + "u": 0.8777908343125733, + "t": 0.9013850415512464, + "punct": null + }, + "opus100": { + "u": 0.6284979092955935, + "t": 0.6642651296829971, + "punct": null + }, + "ud": { + "u": 0.9547038327526133, + "t": 0.9832775919732442, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.1673364998173182, + "t": 0.41856805664830843, + "punct": null + } + }, + "zu": { + "opus100": { + "u": 0.8147706968433592, + "t": 0.8505169041631742, + "punct": null + } + }, + "tr-de": { + "code-switching": { + "u": 0.9525065963060686, + "t": 0.9662301860785666, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.21246707638279191, + "t": 0.2816537467700258, + "punct": null + } + }, + "es-en": { + "code-switching": { + "u": 0.9175965665236053, + "t": 0.9273597216180949, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.21558441558441557, + "t": 0.41480644249788073, + "punct": null + } + }, + "vi-en": { + "code-switching": { + "u": 0.12745762711864408, + "t": 0.41625615763546797, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.14654570830425678, + "t": 0.41982300884955753, + "punct": null + } + }, + "en-de": { + "code-switching": { + "u": 0.6172688303735456, + "t": 0.7592295345104334, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.3384912959381044, + "t": 0.362934362934363, + "punct": null + }, + "short-sequences": { + "u": 0.8418860173066176, + "t": 0.8712191214486412, + "punct": null, + "acc_u": 0.4282744282744283, + "acc_t": 0.5197505197505198, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.5815910173190937, + "t": 0.5434259334143148, + "punct": null, + "acc_u": 0.079002079002079, + "acc_t": 0.0498960498960499, + "acc_punct": null + } + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-6l.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-6l.json new file mode 100644 index 0000000000000000000000000000000000000000..5b5ad9e47d668ce8d14cbae6ceb666757970b8f7 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-6l.json @@ -0,0 +1,2450 @@ +{ + "af": { + "opus100": { + "u": 0.748356246264196, + "t": 0.8004115226337449, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6543535620052771, + "t": 0.6606621226874392, + "punct": null + }, + "ud": { + "u": 0.9947916666666666, + "t": 0.9895013123359581, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.8594847775175645, + "t": 0.8774703557312253, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6819747416762342, + "t": 0.671578947368421, + "punct": null + } + }, + "am": { + "opus100": { + "u": 0.6156974379829199, + "t": 0.6387565805966406, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5799214806505888, + "t": 0.6140027637033625, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5771689497716895, + "t": 0.5805877114870882, + "punct": null + } + }, + "ar": { + "ersatz": { + "u": 0.9001479289940828, + "t": 0.9017857142857142, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.6258992805755396, + "t": 0.6240851630073188, + "punct": null + }, + "opus100": { + "u": 0.7185972980741593, + "t": 0.7219434908898864, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6417486338797814, + "t": 0.6537654464910235, + "punct": null + }, + "ud": { + "u": 0.8565185724690457, + "t": 0.8573596358118362, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7134724857685009, + "t": 0.7539984767707542, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5782231252308829, + "t": 0.578210080513799, + "punct": null + } + }, + "az": { + "opus100": { + "u": 0.767755195250057, + "t": 0.7640050697084919, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7198286122351821, + "t": 0.7269458001541227, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7003979533826038, + "t": 0.7148134187712025, + "punct": null + } + }, + "be": { + "opus100": { + "u": 0.7105060364757257, + "t": 0.7194944093339816, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7057984790874524, + "t": 0.7060786650774731, + "punct": null + }, + "ud": { + "u": 0.8862275449101796, + "t": 0.8830151737640725, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6173682214637847, + "t": 0.6352530541012216, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6266087516087516, + "t": 0.631933265037319, + "punct": null + } + }, + "bg": { + "opus100": { + "u": 0.9397011739594451, + "t": 0.9394828045854438, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7130089374379345, + "t": 0.7108350586611456, + "punct": null + }, + "ud": { + "u": 0.9844922461230616, + "t": 0.9866004962779157, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7375527426160338, + "t": 0.7511190689346465, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6548855474603421, + "t": 0.6580229972081579, + "punct": null + } + }, + "bn": { + "opus100": { + "u": 0.8179074446680081, + "t": 0.8375931842385516, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.45979564637938697, + "t": 0.467757459095284, + "punct": null + }, + "ud": { + "u": 0.9803921568627451, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5871559633027523, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3814407814407815, + "t": 0.3819501732387395, + "punct": null + } + }, + "ca": { + "opus100": { + "u": 0.8945736434108529, + "t": 0.9022595901208619, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6587881392350667, + "t": 0.6719926957315681, + "punct": null + }, + "ud": { + "u": 0.9810183790298284, + "t": 0.981426003594967, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6752136752136751, + "t": 0.7318840579710144, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6389032835539643, + "t": 0.6386823529411765, + "punct": null + } + }, + "ceb": { + "ud": { + "u": 0.9941176470588234, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7178217821782179, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.49624060150375937, + "t": 0.5170068027210885, + "punct": null + } + }, + "cs": { + "ersatz": { + "u": 0.9315436241610738, + "t": 0.9563833174148361, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.6864776444929116, + "t": 0.6820303383897317, + "punct": null + }, + "opus100": { + "u": 0.8992488992488993, + "t": 0.914683070339663, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6932180245789713, + "t": 0.6986617443470234, + "punct": null + }, + "ud": { + "u": 0.9146375910965482, + "t": 0.9213295473525972, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6817363283101129, + "t": 0.6796526636939686, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6383681900335656, + "t": 0.648390388718805, + "punct": null + } + }, + "cy": { + "opus100": { + "u": 0.7391699485004543, + "t": 0.7680043980208906, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6315280464216634, + "t": 0.63103802672148, + "punct": null + }, + "ud": { + "u": 0.9929906542056075, + "t": 0.9924021040327293, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6563039723661486, + "t": 0.7169410515135423, + "punct": null + } + }, + "da": { + "opus100": { + "u": 0.9148494288681205, + "t": 0.9208519589797528, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7131465026201869, + "t": 0.732285368802902, + "punct": null + }, + "ud": { + "u": 0.9405940594059407, + "t": 0.9384920634920635, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7595993322203674, + "t": 0.784390243902439, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6944784075903555, + "t": 0.6908384283615338, + "punct": null + } + }, + "de": { + "ersatz": { + "u": 0.968403074295474, + "t": 0.9705048213272831, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7688995215311005, + "t": 0.772801747678864, + "punct": null + }, + "opus100": { + "u": 0.8063106796116505, + "t": 0.8474312402698496, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6290224650880389, + "t": 0.721936148300721, + "punct": null + }, + "ud": { + "u": 0.9579250720461095, + "t": 0.9579735175590098, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7630560928433269, + "t": 0.7756345177664974, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7090821256038649, + "t": 0.7098448181228483, + "punct": null + }, + "legal-all-laws": { + "u": 0.8718326733223795, + "t": 0.8742981841885243, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.669472828821538, + "t": 0.7247308536084242, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.7056872072910993, + "t": 0.763764840392781, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.5771263357679345, + "t": 0.5745185733104263, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "el": { + "opus100": { + "u": 0.9261603375527426, + "t": 0.9325872635225153, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6687803846966814, + "t": 0.6808888888888889, + "punct": null + }, + "ud": { + "u": 0.976629766297663, + "t": 0.976629766297663, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7342995169082126, + "t": 0.7943595769682726, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6399564902102973, + "t": 0.6425189393939393, + "punct": null + } + }, + "en": { + "ersatz": { + "u": 0.9663001570755391, + "t": 0.9641032917139614, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.632364810330912, + "t": 0.6733827607674459, + "punct": null + }, + "opus100": { + "u": 0.91958985429034, + "t": 0.9011387163561076, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7695738354806739, + "t": 0.7620880442626894, + "punct": null + }, + "ud": { + "u": 0.9379885356956749, + "t": 0.9443593670239918, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.656319290465632, + "t": 0.6570175438596491, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6513604611401496, + "t": 0.6516766815274279, + "punct": null + }, + "legal-all-judgements": { + "u": 0.8400116516144338, + "t": 0.8451624438751151, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.627608733488423, + "t": 0.6278524165327342, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "eo": { + "opus100": { + "u": 0.917589840583626, + "t": 0.9146079484425348, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7747431721373089, + "t": 0.780097963392627, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6337799117168743, + "t": 0.6342023989082812, + "punct": null + } + }, + "es": { + "ersatz": { + "u": 0.984092155787164, + "t": null, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.6677049412430979, + "t": null, + "punct": null + }, + "opus100": { + "u": 0.9181102362204724, + "t": 0.9293521727539322, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6686491079014443, + "t": 0.6979362101313322, + "punct": null + }, + "ud": { + "u": 0.9622215046819502, + "t": 0.9618863049095607, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6375227686703097, + "t": 0.7018091079226452, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6370041501785542, + "t": 0.6352896701635007, + "punct": null + }, + "legal-all-laws": { + "u": 0.7637581491686753, + "t": 0.8588942961638998, + "punct": null, + "acc_u": 0.00546448087431694, + "acc_t": 0.17486338797814208, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.714598708166928, + "t": 0.7106690421286029, + "punct": null, + "acc_u": 0.01092896174863388, + "acc_t": 0.01092896174863388, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.7355506321898818, + "t": 0.7638388240624783, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.5417584863514892, + "t": 0.5626197315108892, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "et": { + "ersatz": { + "u": 0.9586455731335, + "t": 0.9568124825856784, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.6950203034836505, + "t": 0.7220863895680522, + "punct": null + }, + "opus100": { + "u": 0.848969696969697, + "t": 0.8943425471454404, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5942655145326, + "t": 0.6284029038112521, + "punct": null + }, + "ud": { + "u": 0.93997893997894, + "t": 0.9447895100069013, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6690328305235137, + "t": 0.6709136109384711, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6859228362877997, + "t": 0.6887657529544452, + "punct": null + }, + "short-sequences": { + "u": 0.8881874037477007, + "t": 0.8878023729430059, + "punct": null, + "acc_u": 0.4482758620689655, + "acc_t": 0.4433497536945813, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.66459011547478, + "t": 0.6903011423814982, + "punct": null, + "acc_u": 0.03940886699507389, + "acc_t": 0.06403940886699508, + "acc_punct": null + } + }, + "eu": { + "opus100": { + "u": 0.8442582552981764, + "t": 0.8639836984207846, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5447549615228837, + "t": 0.5520581113801454, + "punct": null + }, + "ud": { + "u": 0.9702362687941086, + "t": 0.9710412815773259, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6206896551724138, + "t": 0.6386986301369864, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5610587209763055, + "t": 0.5626006286897186, + "punct": null + } + }, + "fa": { + "opus100": { + "u": 0.6160644658175202, + "t": 0.604029785370127, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6167690956979808, + "t": 0.6190582459272483, + "punct": null + }, + "ud": { + "u": 0.9856927710843374, + "t": 0.9875330562901399, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.9180209461899602, + "t": 0.9121548942273215, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.653736849977564, + "t": 0.6523617794363155, + "punct": null + } + }, + "fi": { + "ersatz": { + "u": 0.988595271210014, + "t": 0.986784140969163, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.6881095663000623, + "t": 0.7295272539395505, + "punct": null + }, + "opus100": { + "u": 0.9278404618210443, + "t": 0.93525949705725, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7027758970886934, + "t": 0.7214634146341462, + "punct": null + }, + "ud": { + "u": 0.9357271095152604, + "t": 0.9347128077060294, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7056004791853848, + "t": 0.7073807968647944, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6558025167542548, + "t": 0.6538945602013705, + "punct": null + } + }, + "fr": { + "ersatz": { + "u": 0.9747340425531914, + "t": 0.9713515335355579, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.6796601699150425, + "t": 0.7105339105339106, + "punct": null + }, + "opus100": { + "u": 0.8852209243270697, + "t": null, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6389942127319896, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9645203679369251, + "t": 0.9708994708994708, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6583969465648856, + "t": 0.7080459770114943, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6535641727762566, + "t": 0.6585706712929498, + "punct": null + }, + "legal-all-laws": { + "u": 0.9414824081502224, + "t": 0.9409161041974786, + "punct": null, + "acc_u": 0.7080610021786492, + "acc_t": 0.7015250544662309, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.6999508660009657, + "t": 0.7351403711991886, + "punct": null, + "acc_u": 0.1503267973856209, + "acc_t": 0.21350762527233116, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.8550367888070239, + "t": 0.8554355182584804, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.5358518374479575, + "t": 0.5646555277934989, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "fy": { + "opus100": { + "u": 0.6335113484646194, + "t": 0.688463911165947, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6685865130789537, + "t": 0.6597671410090556, + "punct": null + } + }, + "ga": { + "opus100": { + "u": 0.8397733127253992, + "t": 0.8362244897959183, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5760286225402504, + "t": 0.6073847498361372, + "punct": null + }, + "ud": { + "u": 0.8744588744588744, + "t": 0.897175141242938, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5341712490180676, + "t": 0.5942857142857142, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4675324675324675, + "t": 0.4752475247524752, + "punct": null + } + }, + "gd": { + "opus100": { + "u": 0.8477842003853564, + "t": 0.8566159520516368, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6053578568572571, + "t": 0.602987777274785, + "punct": null + }, + "ud": { + "u": 0.7044334975369458, + "t": 0.7308447937131631, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5059445178335535, + "t": 0.538996138996139, + "punct": null + } + }, + "gl": { + "opus100": { + "u": 0.8993775933609959, + "t": 0.9024326445200106, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6665167528671014, + "t": 0.6760019314340898, + "punct": null + }, + "ud": { + "u": 0.9859943977591036, + "t": 0.9846153846153846, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6525139664804468, + "t": 0.6569343065693432, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6395286555972148, + "t": 0.6401801974503977, + "punct": null + } + }, + "gu": { + "ersatz": { + "u": 0.9148230088495575, + "t": 0.9224890829694323, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.790356394129979, + "t": 0.7942122186495177, + "punct": null + }, + "opus100": { + "u": 0.7209302325581395, + "t": 0.7458710708577517, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5454031117397454, + "t": 0.5495207667731629, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.43790816584822556, + "t": 0.43790210510062283, + "punct": null + } + }, + "ha": { + "opus100": { + "u": 0.8644275557734739, + "t": 0.8969315499606609, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5128121959130716, + "t": 0.5815918185860383, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.34285714285714286, + "t": 0.4444444444444444, + "punct": null + } + }, + "he": { + "opus100": { + "u": 0.9043523586135003, + "t": 0.9091866280600158, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6589851539995568, + "t": 0.656622442095795, + "punct": null + }, + "ud": { + "u": 0.964936886395512, + "t": 0.9678321678321679, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7074829931972789, + "t": 0.747422680412371, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.597163054164131, + "t": 0.5983602885175395, + "punct": null + } + }, + "hi": { + "ersatz": { + "u": 0.9586085424922941, + "t": 0.9576719576719578, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.781993316296442, + "t": 0.7895387149917626, + "punct": null + }, + "opus100": { + "u": 0.6710526315789473, + "t": 0.6685340802987861, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.49640015157256545, + "t": 0.5365280714117925, + "punct": null + }, + "ud": { + "u": 0.9723346828609987, + "t": 0.9924267369114258, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.9028836592641697, + "t": 0.9032894736842105, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.52826607246018, + "t": 0.5324738399046316, + "punct": null + } + }, + "hu": { + "opus100": { + "u": 0.9303913842920936, + "t": 0.94158442251267, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6923612723473416, + "t": 0.6891676168757126, + "punct": null + }, + "ud": { + "u": 0.9660377358490566, + "t": 0.9716399506781751, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5804311774461027, + "t": 0.6093264248704663, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6343685705888117, + "t": 0.6289588642155078, + "punct": null + } + }, + "hy": { + "opus100": { + "u": 0.8573293682454486, + "t": null, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7069211437886301, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9702048417132216, + "t": 0.9704251386321627, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6490807354116707, + "t": 0.6472148541114058, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.650523864959255, + "t": 0.649109357384442, + "punct": null + } + }, + "id": { + "opus100": { + "u": 0.8905539202568905, + "t": 0.8948932720886248, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6426896012509774, + "t": 0.635613995988411, + "punct": null + }, + "ud": { + "u": 0.9878183831672204, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6515837104072398, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6233766233766234, + "t": 0.6218642969545497, + "punct": null + } + }, + "ig": { + "opus100": { + "u": 0.8506493506493507, + "t": 0.845042678923178, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.520248447204969, + "t": 0.5196483971044468, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.35125448028673834, + "t": 0.3111111111111111, + "punct": null + } + }, + "is": { + "opus100": { + "u": 0.9459751485683414, + "t": 0.947682298725942, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6280794068404688, + "t": 0.634121791645697, + "punct": null + }, + "ud": { + "u": 0.8733242665630464, + "t": 0.8684944684944685, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5333333333333333, + "t": 0.5476878612716763, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6569254185692541, + "t": 0.6550088915234145, + "punct": null + } + }, + "it": { + "opus100": { + "u": 0.8794007490636704, + "t": 0.9022049286640726, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6030227664052038, + "t": 0.6415747350205495, + "punct": null + }, + "ud": { + "u": 0.9631284916201117, + "t": 0.9318918918918919, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6903283052351374, + "t": 0.7237903225806452, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6391457100591716, + "t": 0.6401235798285829, + "punct": null + }, + "legal-all-laws": { + "u": 0.7929469146599853, + "t": 0.7864207421113482, + "punct": null, + "acc_u": 0.3494318181818182, + "acc_t": 0.3622159090909091, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.4816037432168038, + "t": 0.4858255650752543, + "punct": null, + "acc_u": 0.029829545454545456, + "acc_t": 0.03977272727272727, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.848315213442505, + "t": 0.8485357095275152, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.47394754021670066, + "t": 0.491757639256521, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "ja": { + "ersatz": { + "u": 0.8590956887486857, + "t": 0.8530857454942654, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7220946256316032, + "t": 0.7240479916536254, + "punct": null + }, + "opus100": { + "u": 0.8581666169005674, + "t": 0.8805803571428571, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.8459499263622975, + "t": 0.8528832630098453, + "punct": null + }, + "ud": { + "u": 0.9554655870445343, + "t": 0.9668737060041408, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.8739669421487603, + "t": 0.8756530825496343, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.9161191928671985, + "t": 0.9234728127097785, + "punct": null + } + }, + "jv": { + "ud": { + "u": 0.9873138444567017, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5073929961089494, + "t": null, + "punct": null + } + }, + "ka": { + "opus100": { + "u": 0.7688585880800527, + "t": 0.9107094685729701, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.2816511219872564, + "t": 0.30488948425987944, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5903182220565624, + "t": 0.5903107369929255, + "punct": null + } + }, + "kk": { + "ersatz": { + "u": 0.9560251284980011, + "t": 0.9749023982152818, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.8396694214876033, + "t": 0.8359728506787331, + "punct": null + }, + "opus100": { + "u": 0.7796322489391797, + "t": 0.7626321974148061, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7526997840172786, + "t": 0.7344665885111371, + "punct": null + }, + "ud": { + "u": 0.9518599562363239, + "t": 0.9288515406162465, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.8041919470490899, + "t": 0.7719505008839128, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7130793769938074, + "t": 0.7293801444649756, + "punct": null + } + }, + "km": { + "ersatz": { + "u": 0.9042215161143894, + "t": 0.9304029304029305, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.6482357220807567, + "t": 0.7394176657695131, + "punct": null + }, + "opus100": { + "u": 0.7349823321554769, + "t": 0.7378190255220418, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7485168945060614, + "t": 0.7632037144515381, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7669902912621359, + "t": 0.7858585858585859, + "punct": null + } + }, + "kn": { + "opus100": { + "u": 0.7288597926895799, + "t": 0.7272727272727274, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6223698781838316, + "t": 0.6214442013129102, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4580152671755725, + "t": 0.455452865064695, + "punct": null + } + }, + "ko": { + "opus100": { + "u": 0.7101449275362318, + "t": 0.7735655737704918, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7393458870168483, + "t": 0.74, + "punct": null + }, + "ud": { + "u": 0.9916911045943304, + "t": 0.9946550048590865, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.9566524680531195, + "t": 0.9791868344627299, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7545332282149979, + "t": 0.7531533172442056, + "punct": null + } + }, + "ku": { + "opus100": { + "u": 0.7962765957446809, + "t": 0.7408595253367543, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6209850107066381, + "t": 0.6705027256208359, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.36753964012114737, + "t": 0.3712824398560334, + "punct": null + } + }, + "ky": { + "opus100": { + "u": 0.8650137741046832, + "t": 0.868298729470096, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7289774392030471, + "t": 0.730111077754428, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.733160621761658, + "t": 0.7324675324675325, + "punct": null + } + }, + "la": { + "ud": { + "u": 0.39559508682761546, + "t": 0.921996879875195, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.36271615352172076, + "t": 0.7232375979112271, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4666666666666667, + "t": 0.3673469387755102, + "punct": null + } + }, + "lt": { + "ersatz": { + "u": 0.9613196814562002, + "t": 0.9577142857142857, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.6423815119467293, + "t": 0.7109144542772862, + "punct": null + }, + "opus100": { + "u": 0.8312379110251451, + "t": 0.8623666835957339, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5909461663947797, + "t": 0.6119402985074627, + "punct": null + }, + "ud": { + "u": 0.9591503267973857, + "t": 0.9651821862348179, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5993650793650793, + "t": 0.6118286879673691, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6317274742995364, + "t": 0.6272861229089017, + "punct": null + } + }, + "lv": { + "ersatz": { + "u": 0.9765539803707741, + "t": 0.9754232659748772, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.6597851274489152, + "t": 0.6860986547085202, + "punct": null + }, + "opus100": { + "u": 0.8361609306834706, + "t": 0.8652555498193083, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5893625342197888, + "t": 0.6265118529269473, + "punct": null + }, + "ud": { + "u": 0.953406696324046, + "t": 0.9606728802000455, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6084013537726458, + "t": 0.6082260074781886, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6449411884515506, + "t": 0.6482973011162922, + "punct": null + } + }, + "mg": { + "opus100": { + "u": 0.9184161573212862, + "t": 0.9180153886972673, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4768763002080333, + "t": 0.5338627840282373, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5354969574036512, + "t": 0.5204460966542752, + "punct": null + } + }, + "mk": { + "opus100": { + "u": 0.9360357988944458, + "t": 0.9364953886693017, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6601851851851852, + "t": 0.6476883561643836, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6395693948387746, + "t": 0.6415751535968265, + "punct": null + } + }, + "ml": { + "opus100": { + "u": 0.7926470588235295, + "t": 0.8217739707101409, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5793341980112408, + "t": 0.5960076045627376, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5022490682431563, + "t": 0.5135969425253565, + "punct": null + } + }, + "mn": { + "opus100": { + "u": 0.7382462990076458, + "t": null, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7968862620729422, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7936471663619744, + "t": 0.8103322570565568, + "punct": null + } + }, + "mr": { + "opus100": { + "u": 0.9149753154141526, + "t": 0.9169894853348091, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6609179415855354, + "t": 0.6615506747816883, + "punct": null + }, + "ud": { + "u": 0.9655172413793104, + "t": 0.9655172413793104, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5783132530120483, + "t": 0.574712643678161, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4303391384051328, + "t": 0.4301912626759659, + "punct": null + } + }, + "ms": { + "opus100": { + "u": 0.8812301166489925, + "t": 0.8829645427885897, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6338523355097941, + "t": 0.6233475240869369, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6292728180974809, + "t": 0.6286623743036966, + "punct": null + } + }, + "mt": { + "opus100": { + "u": 0.6462135922330098, + "t": 0.8068692206076618, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.40392577825486886, + "t": 0.4505450141299959, + "punct": null + }, + "ud": { + "u": 0.9054621848739495, + "t": 0.8981779206859593, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.4231027535258563, + "t": 0.44869565217391305, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4095238095238095, + "t": 0.4189723320158103, + "punct": null + } + }, + "my": { + "opus100": { + "u": 0.7882599580712789, + "t": 0.816220880069025, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.8069425901201602, + "t": 0.8164464023494861, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.8928149500590699, + "t": 0.906242956952896, + "punct": null + } + }, + "ne": { + "opus100": { + "u": 0.7309973045822102, + "t": 0.7327227310574521, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.704422032583398, + "t": 0.7077090710977935, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6198182221236975, + "t": 0.6213142375737152, + "punct": null + } + }, + "nl": { + "opus100": { + "u": 0.9244004171011471, + "t": null, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7292435424354243, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9267822736030829, + "t": 0.9318600368324126, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7548117154811715, + "t": 0.7537942664418213, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7237218813905931, + "t": 0.724773413897281, + "punct": null + } + }, + "no": { + "opus100": { + "u": 0.947170823277018, + "t": 0.947170823277018, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7637098812231488, + "t": 0.7647642679900745, + "punct": null + }, + "ud": { + "u": 0.9832078749276202, + "t": 0.9899742194213692, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7943706020328382, + "t": 0.7973713033953999, + "punct": null + } + }, + "pa": { + "opus100": { + "u": 0.704201680672269, + "t": 0.7047619047619047, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5976744186046512, + "t": 0.6212403513441577, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5577777777777778, + "t": 0.5454545454545454, + "punct": null + } + }, + "pl": { + "ersatz": { + "u": 0.936, + "t": 0.9352435530085959, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.6631625054752519, + "t": 0.6817464492372436, + "punct": null + }, + "opus100": { + "u": 0.9301705756929638, + "t": 0.9335832886984468, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7060747663551401, + "t": 0.7079349904397705, + "punct": null + }, + "ud": { + "u": 0.9600389863547758, + "t": 0.9596499756927565, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6860581745235707, + "t": 0.7054610564010743, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6531916007749908, + "t": 0.6639324487334137, + "punct": null + } + }, + "ps": { + "ersatz": { + "u": 0.9194182389937108, + "t": 0.9301951317642326, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7468220338983051, + "t": 0.7645155149438416, + "punct": null + }, + "opus100": { + "u": 0.7395115842204133, + "t": 0.7428226050166213, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7049591964846201, + "t": 0.7158518518518517, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5899653979238754, + "t": 0.5960591133004925, + "punct": null + } + }, + "pt": { + "opus100": { + "u": 0.9140177175612298, + "t": 0.9177398160315374, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6604808097849009, + "t": 0.6755260243632336, + "punct": null + }, + "ud": { + "u": 0.9551219512195122, + "t": 0.9634204275534444, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6547149515955539, + "t": 0.6796941376380629, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6716289722301746, + "t": 0.6708452041785375, + "punct": null + }, + "legal-all-laws": { + "u": 0.5787783970611796, + "t": 0.5203420855218129, + "punct": null, + "acc_u": 0.034482758620689655, + "acc_t": 0.017241379310344827, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.5416436158116402, + "t": 0.5382110499269823, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.8049114832797383, + "t": 0.7700916140392605, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.5607558037955485, + "t": 0.5906458479412802, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "ro": { + "ersatz": { + "u": 0.9745996686913307, + "t": 0.9721758486366167, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.6462955211385517, + "t": 0.6550165712564024, + "punct": null + }, + "opus100": { + "u": 0.9077358005654074, + "t": 0.9172107599895535, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6492880613362542, + "t": 0.6505543237250554, + "punct": null + }, + "ud": { + "u": 0.726853630426431, + "t": 0.8505180069067587, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.3759954493742889, + "t": 0.4060584204832311, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6373738403506983, + "t": 0.637729241544558, + "punct": null + } + }, + "ru": { + "ersatz": { + "u": 0.9716553287981858, + "t": 0.9743589743589742, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7315936626281454, + "t": 0.7580993520518358, + "punct": null + }, + "opus100": { + "u": 0.8550939663699308, + "t": null, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6015767131594906, + "t": null, + "punct": null + }, + "ud": { + "u": 0.8477043673012319, + "t": 0.843680709534368, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5918367346938775, + "t": 0.5793896505970809, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6558794075791915, + "t": 0.6600924790034916, + "punct": null + } + }, + "si": { + "opus100": { + "u": 0.8001042481105031, + "t": 0.8121347063735039, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6729992875801473, + "t": 0.6651376146788991, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5242718446601942, + "t": 0.5160744500846024, + "punct": null + } + }, + "sk": { + "opus100": { + "u": 0.9218668065023596, + "t": 0.9316307528598031, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6788908765652951, + "t": 0.6812767984754645, + "punct": null + }, + "ud": { + "u": 0.9560085836909871, + "t": 0.9722367731796752, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7574987290289782, + "t": 0.7614410905550146, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6402301212245737, + "t": 0.6448593757311994, + "punct": null + } + }, + "sl": { + "opus100": { + "u": 0.9239613274105044, + "t": 0.9338293914429976, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6923076923076923, + "t": 0.6950726017614853, + "punct": null + }, + "ud": { + "u": 0.9634782608695652, + "t": 0.962738301559792, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7240986717267551, + "t": 0.7214539707625444, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6678841918676479, + "t": 0.6736686390532544, + "punct": null + }, + "short-sequences": { + "u": 0.7924035248648195, + "t": 0.7813706974000579, + "punct": null, + "acc_u": 0.3258797653958944, + "acc_t": 0.27419354838709675, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.5976507653905271, + "t": 0.5884308381234274, + "punct": null, + "acc_u": 0.09420821114369501, + "acc_t": 0.08907624633431085, + "acc_punct": null + } + }, + "sq": { + "opus100": { + "u": 0.9108079748163694, + "t": 0.9213903743315508, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6439560439560439, + "t": 0.6379018612521151, + "punct": null + }, + "ud": { + "u": 0.9906542056074767, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.8035714285714286, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6262522235745718, + "t": 0.6261983818921574, + "punct": null + } + }, + "sr": { + "opus100": { + "u": 0.9454061251664447, + "t": 0.9486356340288924, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6700696055684454, + "t": 0.6687956204379563, + "punct": null + }, + "ud": { + "u": 0.9794149512459371, + "t": 0.9745222929936307, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6712856043110085, + "t": 0.7402206619859578, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6454022988505747, + "t": 0.6383092562867844, + "punct": null + }, + "short-sequences": { + "u": 0.8970647697210198, + "t": 0.9170061998186997, + "punct": null, + "acc_u": 0.6041666666666666, + "acc_t": 0.6770833333333334, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.6212093946698727, + "t": 0.6333505827301784, + "punct": null, + "acc_u": 0.10416666666666667, + "acc_t": 0.11458333333333333, + "acc_punct": null + } + }, + "sv": { + "opus100": { + "u": 0.920956838273531, + "t": 0.9235602094240837, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7247153382451439, + "t": 0.7506728651822852, + "punct": null + }, + "ud": { + "u": 0.9509234828496043, + "t": 0.9521304576538664, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7478728168383342, + "t": 0.780040733197556, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6848192771084337, + "t": 0.6860368098159508, + "punct": null + } + }, + "ta": { + "ersatz": { + "u": 0.9743028977583379, + "t": 0.9739900387382401, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7888784165881244, + "t": 0.8504622077215878, + "punct": null + }, + "opus100": { + "u": 0.6581680830972616, + "t": 0.6583629893238434, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5092454835281616, + "t": 0.5211227672242699, + "punct": null + }, + "ud": { + "u": 1.0, + "t": 1.0, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.8278688524590164, + "t": 0.8796296296296297, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5155991256541035, + "t": 0.5437995824634656, + "punct": null + } + }, + "te": { + "opus100": { + "u": 0.7849640685461581, + "t": 0.7845982142857143, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6097915656810471, + "t": 0.6021653996774937, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.565195670274771, + "t": 0.5652028159570901, + "punct": null + } + }, + "tg": { + "opus100": { + "u": 0.7908199856562276, + "t": 0.8419870895312939, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6318975552968568, + "t": 0.6411149825783973, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6727272727272727, + "t": 0.6643598615916955, + "punct": null + } + }, + "th": { + "opus100": { + "u": 0.6894621075784843, + "t": 0.7187362878455463, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6896830203916817, + "t": 0.709335687486206, + "punct": null + }, + "ud": { + "u": 0.8029670839128419, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7917808219178083, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5946354363430298, + "t": 0.6226325306938233, + "punct": null + } + }, + "tr": { + "ersatz": { + "u": 0.939599779695245, + "t": 0.9438202247191011, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7928571428571429, + "t": 0.7940962099125364, + "punct": null + }, + "opus100": { + "u": 0.9347651006711409, + "t": 0.9363074442354206, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.712632108706593, + "t": 0.7050831576481612, + "punct": null + }, + "ud": { + "u": 0.9658976930792377, + "t": 0.9658634538152611, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7002938295788443, + "t": 0.7018165706690296, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7065592635212888, + "t": 0.7050063681787009, + "punct": null + } + }, + "uk": { + "opus100": { + "u": 0.9000515198351365, + "t": 0.9022869022869023, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.683076923076923, + "t": 0.6831611818400193, + "punct": null + }, + "ud": { + "u": 0.9173967459324155, + "t": 0.9183168316831684, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5901309164149043, + "t": 0.5915492957746478, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.651618058330004, + "t": 0.6529497450837582, + "punct": null + } + }, + "ur": { + "opus100": { + "u": 0.5813128326434062, + "t": 0.5508011310084826, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6060181945416374, + "t": 0.6067258290518449, + "punct": null + }, + "ud": { + "u": 0.9791231732776619, + "t": 0.9812889812889813, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.9270833333333335, + "t": 0.9254341164453525, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.596591907243661, + "t": 0.5954440915562369, + "punct": null + } + }, + "uz": { + "opus100": { + "u": 0.7775153519130845, + "t": 0.7784990911451571, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7171903881700554, + "t": 0.7254487856388595, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7061617996367192, + "t": 0.7085248916327336, + "punct": null + } + }, + "vi": { + "opus100": { + "u": 0.9112656467315716, + "t": 0.9100470523110987, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6239959839357431, + "t": 0.6237320122670441, + "punct": null + }, + "ud": { + "u": 0.9410205434062293, + "t": 0.9521203830369358, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5787234042553191, + "t": 0.5787234042553191, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5944026926091567, + "t": 0.5963315663554908, + "punct": null + } + }, + "xh": { + "opus100": { + "u": 0.7916775032509754, + "t": 0.7987203412423353, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4815697781037962, + "t": 0.5276344878408253, + "punct": null + } + }, + "yi": { + "opus100": { + "u": 0.7024935511607912, + "t": 0.7217868338557993, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.720666161998486, + "t": 0.7229652273595719, + "punct": null + } + }, + "yo": { + "opus100": { + "u": 0.662523712958723, + "t": null, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.339345425068396, + "t": null, + "punct": null + }, + "ud": { + "u": 0.7411300919842313, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.218812541694463, + "t": null, + "punct": null + } + }, + "zh": { + "ersatz": { + "u": 0.7576656775469832, + "t": 0.8596999210318504, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.6136865342163356, + "t": 0.6921498204207286, + "punct": null + }, + "opus100": { + "u": 0.6405472636815921, + "t": 0.6740947075208914, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.39196272568433316, + "t": 0.5255213505461768, + "punct": null + }, + "ud": { + "u": 0.9287410926365796, + "t": 0.9777777777777777, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7255369928400955, + "t": 0.7404063205417607, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.36946524766784916, + "t": 0.43734210209728513, + "punct": null + } + }, + "zu": { + "opus100": { + "u": 0.850989522700815, + "t": 0.8639186900056466, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6640548481880509, + "t": 0.6690667405150927, + "punct": null + } + }, + "tr-de": { + "code-switching": { + "u": 0.9829816201497616, + "t": 0.984869325997249, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.35918674698795183, + "t": 0.369542066027689, + "punct": null + } + }, + "es-en": { + "code-switching": { + "u": 0.92560553633218, + "t": 0.9307189542483659, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.5166606950913651, + "t": 0.518184967093869, + "punct": null + } + }, + "vi-en": { + "code-switching": { + "u": 0.19932659932659932, + "t": 0.48292029470864034, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.4146100691016782, + "t": 0.4911242603550296, + "punct": null + } + }, + "en-de": { + "code-switching": { + "u": 0.6705653021442496, + "t": 0.7820299500831946, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.43567115652577804, + "t": 0.5410557184750733, + "punct": null + }, + "short-sequences": { + "u": 0.8509019928300118, + "t": 0.8627966330712907, + "punct": null, + "acc_u": 0.4303534303534304, + "acc_t": 0.4490644490644491, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.5966798961841865, + "t": 0.6495231094700838, + "punct": null, + "acc_u": 0.04781704781704782, + "acc_t": 0.0997920997920998, + "acc_punct": null + } + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-9l.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-9l.json new file mode 100644 index 0000000000000000000000000000000000000000..8e0650308994cdfa25fb1f11c3a4b5853f3da824 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-9l.json @@ -0,0 +1,2450 @@ +{ + "af": { + "opus100": { + "u": 0.7997750281214848, + "t": 0.8232271325796506, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7028189202102246, + "t": 0.7049751243781094, + "punct": null + }, + "ud": { + "u": 0.9922077922077922, + "t": 0.9934980494148244, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.8946716232961586, + "t": 0.9095816464237517, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.720183486238532, + "t": 0.7149253731343284, + "punct": null + } + }, + "am": { + "opus100": { + "u": 0.5011795543905636, + "t": 0.534739738592066, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.554816644499335, + "t": 0.5707602339181287, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5771230502599652, + "t": 0.5724258289703316, + "punct": null + } + }, + "ar": { + "ersatz": { + "u": 0.9006574141709276, + "t": 0.9086161879895561, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.6528842947649216, + "t": 0.6461038961038961, + "punct": null + }, + "opus100": { + "u": 0.7290723981900453, + "t": 0.7268885367142102, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6256023465325791, + "t": 0.6610337972166997, + "punct": null + }, + "ud": { + "u": 0.8407460545193688, + "t": 0.8554307116104868, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7003654080389768, + "t": 0.766939687267312, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5940885763162896, + "t": 0.5940537989617745, + "punct": null + } + }, + "az": { + "opus100": { + "u": 0.7650248531405333, + "t": 0.7653543307086614, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7100306614104248, + "t": 0.7359020158203623, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7246825642613812, + "t": 0.71950591868245, + "punct": null + } + }, + "be": { + "opus100": { + "u": 0.736713201077639, + "t": 0.7356839209802452, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6911672583002715, + "t": 0.7369193154034229, + "punct": null + }, + "ud": { + "u": 0.9027777777777777, + "t": 0.8984944147644488, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6254908961085327, + "t": 0.6877323420074348, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.647834815027244, + "t": 0.6498276000320744, + "punct": null + } + }, + "bg": { + "opus100": { + "u": 0.9449197860962567, + "t": 0.9446376036373362, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.732394366197183, + "t": 0.7558365758754865, + "punct": null + }, + "ud": { + "u": 0.9895157264103844, + "t": 0.9880834160873883, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7635024549918168, + "t": 0.8073476702508962, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6941577361845029, + "t": 0.6928117264476048, + "punct": null + } + }, + "bn": { + "opus100": { + "u": 0.797037037037037, + "t": 0.8334228909188608, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.38209159261790837, + "t": 0.4258852258852259, + "punct": null + }, + "ud": { + "u": 0.9345794392523363, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.21428571428571425, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.24047004872456293, + "t": 0.35084745762711866, + "punct": null + } + }, + "ca": { + "opus100": { + "u": 0.8945473251028807, + "t": 0.9084171519322393, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.687235841081995, + "t": 0.7162768721946611, + "punct": null + }, + "ud": { + "u": 0.9818731117824774, + "t": 0.9823194486065328, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7586036147561278, + "t": 0.784234752589183, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.679994032522751, + "t": 0.6803222988059411, + "punct": null + } + }, + "ceb": { + "ud": { + "u": 0.9941176470588234, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7605633802816901, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5846153846153846, + "t": 0.5471698113207547, + "punct": null + } + }, + "cs": { + "ersatz": { + "u": 0.932260228034876, + "t": 0.9593650793650795, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7458392101551482, + "t": 0.7415029622700343, + "punct": null + }, + "opus100": { + "u": 0.9006485084306096, + "t": 0.9135868120180805, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7029234737747206, + "t": 0.744300073547438, + "punct": null + }, + "ud": { + "u": 0.9202391696750902, + "t": 0.9235251274581209, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7349819927971188, + "t": 0.7369036596657085, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.688, + "t": 0.6891141214306598, + "punct": null + } + }, + "cy": { + "opus100": { + "u": 0.7617317590069634, + "t": 0.7802167268685746, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6411181244364292, + "t": 0.6637884511602806, + "punct": null + }, + "ud": { + "u": 0.9929906542056075, + "t": 0.9929988331388565, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7032868077442593, + "t": 0.7473572938689217, + "punct": null + } + }, + "da": { + "opus100": { + "u": 0.9182291666666668, + "t": 0.9220267786820687, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7433547204399633, + "t": 0.7719910291552454, + "punct": null + }, + "ud": { + "u": 0.9407114624505929, + "t": 0.9407114624505929, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7907771135781383, + "t": 0.8076923076923076, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7336121377163977, + "t": 0.7348377306769789, + "punct": null + } + }, + "de": { + "ersatz": { + "u": 0.9695945945945946, + "t": 0.9695945945945946, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.8234711562267889, + "t": 0.8307372793354103, + "punct": null + }, + "opus100": { + "u": 0.8181146935761753, + "t": 0.8566978193146418, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6463042150274892, + "t": 0.7560531111689665, + "punct": null + }, + "ud": { + "u": 0.9656357388316152, + "t": 0.9653579676674365, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7949465500485908, + "t": 0.829551451187335, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7450361226735563, + "t": 0.7524873096446701, + "punct": null + }, + "legal-all-laws": { + "u": 0.8792063318379109, + "t": 0.8795828539353421, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.7331610895837661, + "t": 0.7601576495533636, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.741422977644806, + "t": 0.7900768779735868, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.5892289153421161, + "t": 0.5864954360552334, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "el": { + "opus100": { + "u": 0.923076923076923, + "t": 0.935475234270415, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6710044733631557, + "t": 0.7133364973896537, + "punct": null + }, + "ud": { + "u": 0.9754901960784313, + "t": 0.9731051344743276, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7669322709163346, + "t": 0.8179723502304147, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6673678434241814, + "t": 0.6731017346012329, + "punct": null + } + }, + "en": { + "ersatz": { + "u": 0.9688373092628412, + "t": 0.9667849538679916, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7075756743393947, + "t": 0.7513846153846154, + "punct": null + }, + "opus100": { + "u": 0.9260156039817057, + "t": 0.9161661008096109, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7954055994257, + "t": 0.8009685230024213, + "punct": null + }, + "ud": { + "u": 0.9349973998959957, + "t": 0.9411764705882353, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6903225806451613, + "t": 0.6937101185050137, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6929166028292733, + "t": 0.6925165531367599, + "punct": null + }, + "legal-all-judgements": { + "u": 0.8452568106437217, + "t": 0.8557549983881254, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.6563697190578182, + "t": 0.6568426220942201, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "eo": { + "opus100": { + "u": 0.9213844915481619, + "t": 0.9230350829480555, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.8002870126763932, + "t": 0.821917808219178, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6695188892476591, + "t": 0.6761544733526055, + "punct": null + } + }, + "es": { + "ersatz": { + "u": 0.9829826166514182, + "t": null, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7305317065823166, + "t": null, + "punct": null + }, + "opus100": { + "u": 0.9251844046364593, + "t": 0.934010152284264, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6941450010568591, + "t": 0.7357314148681054, + "punct": null + }, + "ud": { + "u": 0.9632495164410058, + "t": 0.9632258064516129, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7126379137412235, + "t": 0.7666878575969486, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6690478520403171, + "t": 0.6698182892598612, + "punct": null + }, + "legal-all-laws": { + "u": 0.7809824004556978, + "t": 0.8576572094824287, + "punct": null, + "acc_u": 0.0273224043715847, + "acc_t": 0.15300546448087432, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.7375201288328008, + "t": 0.7386565627994218, + "punct": null, + "acc_u": 0.01639344262295082, + "acc_t": 0.01639344262295082, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.7405261381854576, + "t": 0.7516664141181939, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.5811012120217184, + "t": 0.5957032413717254, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "et": { + "ersatz": { + "u": 0.9613781606001667, + "t": 0.9413793103448276, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7304576308298664, + "t": 0.763492512009042, + "punct": null + }, + "opus100": { + "u": 0.8662546353522869, + "t": 0.9121514992109417, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6159724875811998, + "t": 0.6820620480522509, + "punct": null + }, + "ud": { + "u": 0.9428922860657178, + "t": 0.9437543133195306, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7054085155350978, + "t": 0.7213691618682021, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7153853745188986, + "t": 0.7153853745188986, + "punct": null + }, + "short-sequences": { + "u": 0.8539243580329108, + "t": 0.8578503832035916, + "punct": null, + "acc_u": 0.3842364532019704, + "acc_t": 0.3497536945812808, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.6495938675959796, + "t": 0.6779480712052678, + "punct": null, + "acc_u": 0.04926108374384237, + "acc_t": 0.06403940886699508, + "acc_punct": null + } + }, + "eu": { + "opus100": { + "u": 0.8424138773515758, + "t": 0.8714248904921411, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5824284304047385, + "t": 0.6098203592814372, + "punct": null + }, + "ud": { + "u": 0.9741856177012909, + "t": 0.975084589357121, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6761514347721244, + "t": 0.7062554050158547, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.612705257920053, + "t": 0.6125267137925365, + "punct": null + } + }, + "fa": { + "opus100": { + "u": 0.6202346041055719, + "t": 0.6150331277130455, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6096041792244324, + "t": 0.6402699662542183, + "punct": null + }, + "ud": { + "u": 0.9849510910458992, + "t": 0.9912911775842485, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.8924768120920646, + "t": 0.9309721720274666, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6698312732058092, + "t": 0.6753662316884156, + "punct": null + } + }, + "fi": { + "ersatz": { + "u": 0.991111111111111, + "t": 0.9875793541264145, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.722400857449089, + "t": 0.7630784708249497, + "punct": null + }, + "opus100": { + "u": 0.9253731343283582, + "t": 0.9379347244515783, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7134172818063397, + "t": 0.7510959571358987, + "punct": null + }, + "ud": { + "u": 0.9485426412378553, + "t": 0.9473304473304472, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7310798683816933, + "t": 0.7473614775725593, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6788668607606637, + "t": 0.6795046847780027, + "punct": null + } + }, + "fr": { + "ersatz": { + "u": 0.9720558882235528, + "t": 0.970970970970971, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7262658227848101, + "t": 0.7494356659142212, + "punct": null + }, + "opus100": { + "u": 0.8924731182795699, + "t": null, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6644964394710071, + "t": null, + "punct": null + }, + "ud": { + "u": 0.976315789473684, + "t": 0.9761904761904762, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7045908183632735, + "t": 0.7515151515151516, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6921996441614384, + "t": 0.6927037792674633, + "punct": null + }, + "legal-all-laws": { + "u": 0.7986404026892564, + "t": 0.8411301412744377, + "punct": null, + "acc_u": 0.2766884531590414, + "acc_t": 0.40522875816993464, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.5862251456483704, + "t": 0.6095734187980818, + "punct": null, + "acc_u": 0.013071895424836602, + "acc_t": 0.02178649237472767, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.8547066028089197, + "t": 0.8551428161600775, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.5914666266080272, + "t": 0.6220420932095297, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "fy": { + "opus100": { + "u": 0.6935380678182982, + "t": 0.6775992128566742, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.691609977324263, + "t": 0.6655386350817823, + "punct": null + } + }, + "ga": { + "opus100": { + "u": 0.8480947476828011, + "t": 0.853125, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5875728155339806, + "t": 0.6290956749672345, + "punct": null + }, + "ud": { + "u": 0.8604898828541001, + "t": 0.9011235955056179, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5458823529411764, + "t": 0.6028921023359288, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5066666666666667, + "t": 0.5454545454545454, + "punct": null + } + }, + "gd": { + "opus100": { + "u": 0.8525059665871121, + "t": 0.8560712611345522, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6253192265596497, + "t": 0.6645396536007293, + "punct": null + }, + "ud": { + "u": 0.6997518610421836, + "t": 0.7279480037140204, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5448548812664907, + "t": 0.5774647887323944, + "punct": null + } + }, + "gl": { + "opus100": { + "u": 0.8974425213123224, + "t": 0.910958904109589, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6904916612518951, + "t": 0.7113175262771939, + "punct": null + }, + "ud": { + "u": 0.9902097902097902, + "t": 0.9861878453038674, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7323290845886443, + "t": 0.753103448275862, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.681072950614189, + "t": 0.6812977099236641, + "punct": null + } + }, + "gu": { + "ersatz": { + "u": 0.9456112008616048, + "t": 0.9491162292447778, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7975334018499487, + "t": 0.8059048660470203, + "punct": null + }, + "opus100": { + "u": 0.726280834914611, + "t": 0.7529286474973377, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.569171974522293, + "t": 0.5668475579674396, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.43624649277772, + "t": 0.44158811768066264, + "punct": null + } + }, + "ha": { + "opus100": { + "u": 0.8790383170548458, + "t": 0.8996340825927862, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5393959290873276, + "t": 0.6155373541821793, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3870967741935483, + "t": 0.37499999999999994, + "punct": null + } + }, + "he": { + "opus100": { + "u": 0.8936715347168844, + "t": 0.9131238447319778, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6312437810945274, + "t": 0.6643725625143382, + "punct": null + }, + "ud": { + "u": 0.9720670391061453, + "t": 0.9690140845070423, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7253012048192772, + "t": 0.7324290998766955, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5902834396431825, + "t": 0.5914012594572554, + "punct": null + } + }, + "hi": { + "ersatz": { + "u": 0.9605034722222222, + "t": 0.9626188896261888, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7758224942616679, + "t": 0.7913188647746243, + "punct": null + }, + "opus100": { + "u": 0.6271421954608614, + "t": 0.6232830443593785, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5184294871794871, + "t": 0.525391043496893, + "punct": null + }, + "ud": { + "u": 0.994726433750824, + "t": 0.9950544015825915, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.9006750241080039, + "t": 0.9042448173741362, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5312148129613412, + "t": 0.5309874386490309, + "punct": null + } + }, + "hu": { + "opus100": { + "u": 0.9321766561514196, + "t": 0.9399574920297555, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7146986880142318, + "t": 0.737835875090777, + "punct": null + }, + "ud": { + "u": 0.9673366834170855, + "t": 0.971357409713574, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.631199278629396, + "t": 0.672340425531915, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6809088167286619, + "t": 0.6816695518368917, + "punct": null + } + }, + "hy": { + "opus100": { + "u": 0.8651287857345032, + "t": null, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6909417040358744, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9750692520775622, + "t": 0.9758364312267658, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6529051987767585, + "t": 0.6546026750590086, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6657806131490341, + "t": 0.6685168634460699, + "punct": null + } + }, + "id": { + "opus100": { + "u": 0.884393063583815, + "t": 0.905505341002465, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6504470783946766, + "t": 0.6778647031753335, + "punct": null + }, + "ud": { + "u": 0.9894736842105263, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6718304117407256, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6482888878895534, + "t": 0.6496308915388984, + "punct": null + } + }, + "ig": { + "opus100": { + "u": 0.8528180354267312, + "t": 0.8496560759908286, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5394954020278236, + "t": 0.5312317571511967, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.36933797909407656, + "t": 0.3597883597883598, + "punct": null + } + }, + "is": { + "opus100": { + "u": 0.9416175682913767, + "t": 0.9463705308775731, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6564512547190762, + "t": 0.672147995889003, + "punct": null + }, + "ud": { + "u": 0.8899871503410103, + "t": 0.8896340862017951, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.567893451020569, + "t": 0.5820005187170398, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6806825106642291, + "t": 0.6745870762097943, + "punct": null + } + }, + "it": { + "opus100": { + "u": 0.8882737795671868, + "t": 0.9004885574697865, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6346863468634686, + "t": 0.6938967136150235, + "punct": null + }, + "ud": { + "u": 0.9651293588301463, + "t": 0.9179978700745473, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.731084776663628, + "t": 0.7770833333333332, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6828923164001698, + "t": 0.6866952789699571, + "punct": null + }, + "legal-all-laws": { + "u": 0.6780523472219309, + "t": 0.6831377087905489, + "punct": null, + "acc_u": 0.022727272727272728, + "acc_t": 0.04971590909090909, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.4789940027501501, + "t": 0.4904072003045458, + "punct": null, + "acc_u": 0.02130681818181818, + "acc_t": 0.02130681818181818, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.8406810828475715, + "t": 0.8446535435562069, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.5329223104585938, + "t": 0.5681610431483843, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "ja": { + "ersatz": { + "u": 0.8674574522949974, + "t": 0.8438021122846024, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7412891986062716, + "t": 0.7371794871794872, + "punct": null + }, + "opus100": { + "u": 0.8935685828116106, + "t": 0.8934861615879228, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.8692737430167597, + "t": 0.8700689655172412, + "punct": null + }, + "ud": { + "u": 0.9732510288065844, + "t": 0.9728601252609603, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.8794466403162056, + "t": 0.8936605316973415, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.9211455018802429, + "t": 0.9226193880468975, + "punct": null + } + }, + "jv": { + "ud": { + "u": 0.9856194690265486, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5551301684532924, + "t": null, + "punct": null + } + }, + "ka": { + "opus100": { + "u": 0.7486515641855449, + "t": 0.9192139737991267, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.23116147308781868, + "t": 0.29329559525915444, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6070180096464445, + "t": 0.6082890152209793, + "punct": null + } + }, + "kk": { + "ersatz": { + "u": 0.9759910664433278, + "t": 0.9777034559643256, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.8399581589958159, + "t": 0.8260623229461757, + "punct": null + }, + "opus100": { + "u": 0.8176706827309237, + "t": 0.7792672028596962, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.756228627259404, + "t": 0.7637705848949461, + "punct": null + }, + "ud": { + "u": 0.968783638320775, + "t": 0.8701837581505631, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.8548057259713702, + "t": 0.8146853146853147, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7356118292898883, + "t": 0.7369052721817404, + "punct": null + } + }, + "km": { + "ersatz": { + "u": 0.9242709313264347, + "t": 0.9287299630086313, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7004347826086956, + "t": 0.7189079878665319, + "punct": null + }, + "opus100": { + "u": 0.7597707139134967, + "t": 0.7479908151549943, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7517941103687207, + "t": 0.7786885245901639, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7974683544303798, + "t": 0.7913978494623655, + "punct": null + } + }, + "kn": { + "opus100": { + "u": 0.7015075376884422, + "t": 0.7179487179487178, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6251866600298656, + "t": 0.6199770378874857, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4717241379310345, + "t": 0.4718361375274323, + "punct": null + } + }, + "ko": { + "opus100": { + "u": 0.7759802577460927, + "t": 0.7868935737871476, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7245703669298653, + "t": 0.7553005737091544, + "punct": null + }, + "ud": { + "u": 0.9948967193195625, + "t": 0.9961202715809894, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.9773844641101278, + "t": 0.9855072463768115, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7587051142546245, + "t": 0.7601646699662333, + "punct": null + } + }, + "ku": { + "opus100": { + "u": 0.7889908256880734, + "t": 0.6525273948391658, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5906396893521356, + "t": 0.6705097087378641, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.37858660998937305, + "t": 0.38034348752663916, + "punct": null + } + }, + "ky": { + "opus100": { + "u": 0.8668880169031089, + "t": 0.8804992199687989, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7339847991313789, + "t": 0.7573780677228953, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7421383647798743, + "t": 0.7447595561035759, + "punct": null + } + }, + "la": { + "ud": { + "u": 0.6549047282992237, + "t": 0.8848692251283304, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.4567364677992888, + "t": 0.7607904316172647, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6153846153846154, + "t": 0.5625000000000001, + "punct": null + } + }, + "lt": { + "ersatz": { + "u": 0.9734613212874081, + "t": 0.9675952245594088, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7022708158116064, + "t": 0.7692307692307693, + "punct": null + }, + "opus100": { + "u": 0.8512619456015683, + "t": 0.8773730118009236, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6115604655750642, + "t": 0.656391659111514, + "punct": null + }, + "ud": { + "u": 0.9622331691297209, + "t": 0.9673735725938011, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6517571884984026, + "t": 0.6720116618075802, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6803331836999352, + "t": 0.6805773903101329, + "punct": null + } + }, + "lv": { + "ersatz": { + "u": 0.9743589743589743, + "t": 0.9663234066239911, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7207405774741018, + "t": 0.741017533774073, + "punct": null + }, + "opus100": { + "u": 0.8436966593513778, + "t": 0.8759770713913496, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.617670054730258, + "t": 0.677387431964374, + "punct": null + }, + "ud": { + "u": 0.9517338331771321, + "t": 0.9591882750845547, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6595995288574794, + "t": 0.6621759542763829, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6871800020078306, + "t": 0.6887844979448032, + "punct": null + } + }, + "mg": { + "opus100": { + "u": 0.9169960474308301, + "t": 0.9213602550478215, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4990378447722899, + "t": 0.587005906406179, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5835010060362174, + "t": 0.5889328063241107, + "punct": null + } + }, + "mk": { + "opus100": { + "u": 0.9343103899502747, + "t": 0.9399311987298227, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6672212978369384, + "t": 0.6904761904761906, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6699502584609383, + "t": 0.6697589900535578, + "punct": null + } + }, + "ml": { + "opus100": { + "u": 0.7685834502103788, + "t": 0.8246681415929202, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5877425044091711, + "t": 0.6039980961446929, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5044055676158855, + "t": 0.5137116481129514, + "punct": null + } + }, + "mn": { + "opus100": { + "u": 0.8679791546033584, + "t": null, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.8648849294729027, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.8028791657220584, + "t": 0.8117474609988482, + "punct": null + } + }, + "mr": { + "opus100": { + "u": 0.8943175783324483, + "t": 0.9073010664479081, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6641940085592012, + "t": 0.6674418604651162, + "punct": null + }, + "ud": { + "u": 0.9545454545454545, + "t": 0.9156626506024096, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.525, + "t": 0.5000000000000001, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.42012264837334995, + "t": 0.43155413369254086, + "punct": null + } + }, + "ms": { + "opus100": { + "u": 0.8768627450980392, + "t": 0.8899033297529537, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6245413779046066, + "t": 0.662829736211031, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.653456340956341, + "t": 0.6668115312183109, + "punct": null + } + }, + "mt": { + "opus100": { + "u": 0.6792071197411004, + "t": 0.813175501801338, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4222357229647631, + "t": 0.489556135770235, + "punct": null + }, + "ud": { + "u": 0.8936170212765958, + "t": 0.886240520043337, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.44690265486725667, + "t": 0.4821428571428571, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4131455399061033, + "t": 0.42152466367713, + "punct": null + } + }, + "my": { + "opus100": { + "u": 0.7864406779661016, + "t": 0.8078500292911541, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7913743829566121, + "t": 0.8101704709621497, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.8894863915715541, + "t": 0.9041496201052016, + "punct": null + } + }, + "ne": { + "opus100": { + "u": 0.729602510460251, + "t": 0.7336174746936601, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6894214475913822, + "t": 0.7003686150605581, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.588782757776145, + "t": 0.5890196078431372, + "punct": null + } + }, + "nl": { + "opus100": { + "u": 0.921161825726141, + "t": null, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7533512064343164, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9326923076923077, + "t": 0.9506057781919851, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7723440134907251, + "t": 0.7768888888888889, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7584852452412125, + "t": 0.758134652871495, + "punct": null + } + }, + "no": { + "opus100": { + "u": 0.9466630930045564, + "t": 0.9476790984706197, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.77576895984973, + "t": 0.7949811794228356, + "punct": null + }, + "ud": { + "u": 0.9829232995658466, + "t": 0.9885518030910132, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.8358050847457628, + "t": 0.8406363382640246, + "punct": null + } + }, + "pa": { + "opus100": { + "u": 0.7083919362400375, + "t": 0.7184517497348887, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6351633078526755, + "t": 0.6369394476817837, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5603448275862069, + "t": 0.5644955300127714, + "punct": null + } + }, + "pl": { + "ersatz": { + "u": 0.934453781512605, + "t": 0.9203438395415473, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7154904571682202, + "t": 0.7403375068045726, + "punct": null + }, + "opus100": { + "u": 0.9289878113407525, + "t": 0.9356913183279743, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7123467600700525, + "t": 0.7357907253269917, + "punct": null + }, + "ud": { + "u": 0.9670972459176213, + "t": 0.9700833742030407, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7213755373192653, + "t": 0.7594765342960289, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6972198308603839, + "t": 0.700413323608072, + "punct": null + } + }, + "ps": { + "ersatz": { + "u": 0.9220498723738464, + "t": 0.9339207048458149, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7358134750557176, + "t": 0.7661897590361446, + "punct": null + }, + "opus100": { + "u": 0.7483836206896552, + "t": 0.7303732303732304, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7175763645468201, + "t": 0.7254545454545455, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6001719690455719, + "t": 0.5959183673469387, + "punct": null + } + }, + "pt": { + "opus100": { + "u": 0.9157318027654578, + "t": 0.9213720316622691, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6908101318819343, + "t": 0.7286571296723582, + "punct": null + }, + "ud": { + "u": 0.958984375, + "t": 0.9622190339550455, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7119565217391305, + "t": 0.7372330547818013, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.705922696320972, + "t": 0.7036426322890121, + "punct": null + }, + "legal-all-laws": { + "u": 0.5505157463735562, + "t": 0.5201242793461893, + "punct": null, + "acc_u": 0.017241379310344827, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.5775379841965976, + "t": 0.5494967996767561, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.8033903213916831, + "t": 0.7683590192601546, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.6023955498437517, + "t": 0.6305907941098997, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "ro": { + "ersatz": { + "u": 0.975475337558556, + "t": 0.9631297495074584, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7136505113383727, + "t": 0.7007970570202331, + "punct": null + }, + "opus100": { + "u": 0.9133247089262614, + "t": 0.9285336156696665, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6673575129533679, + "t": 0.6906605922551253, + "punct": null + }, + "ud": { + "u": 0.7290944123314065, + "t": 0.8650217706821481, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.43086632243258743, + "t": 0.489795918367347, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6813966452136015, + "t": 0.6790679835075271, + "punct": null + } + }, + "ru": { + "ersatz": { + "u": 0.9752252252252253, + "t": 0.9765886287625418, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.7650882079851439, + "t": 0.7970401691331924, + "punct": null + }, + "opus100": { + "u": 0.8696088264794383, + "t": null, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5932009167303285, + "t": null, + "punct": null + }, + "ud": { + "u": 0.8509212730318257, + "t": 0.8466666666666667, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.5957805907172996, + "t": 0.6170403587443946, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6937366271153473, + "t": 0.693222185383413, + "punct": null + } + }, + "si": { + "opus100": { + "u": 0.8003010536879077, + "t": 0.8203978705519752, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6419001218026796, + "t": 0.6753492777646223, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5047318611987383, + "t": 0.5074850299401197, + "punct": null + } + }, + "sk": { + "opus100": { + "u": 0.9220711297071129, + "t": 0.938152610441767, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7038961038961039, + "t": 0.7313101406365654, + "punct": null + }, + "ud": { + "u": 0.9614147909967846, + "t": 0.9743589743589745, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.8146596858638743, + "t": 0.813452443510247, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6947432207241326, + "t": 0.6966006864450609, + "punct": null + } + }, + "sl": { + "opus100": { + "u": 0.9255208333333335, + "t": 0.9336856010568032, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7112276103101791, + "t": 0.7423915648214714, + "punct": null + }, + "ud": { + "u": 0.9646133682830931, + "t": 0.9654576856649396, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7663981588032222, + "t": 0.7694204685573367, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7191244359147259, + "t": 0.7225679012345678, + "punct": null + }, + "short-sequences": { + "u": 0.7718336884226058, + "t": 0.7791813159498522, + "punct": null, + "acc_u": 0.27456011730205276, + "acc_t": 0.2998533724340176, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.5972693669693967, + "t": 0.5932133750608234, + "punct": null, + "acc_u": 0.10667155425219942, + "acc_t": 0.10117302052785923, + "acc_punct": null + } + }, + "sq": { + "opus100": { + "u": 0.9104633003643935, + "t": 0.9234065345474023, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6767397318578421, + "t": 0.692952639927487, + "punct": null + }, + "ud": { + "u": 0.9908256880733944, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.8448275862068966, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6623806372317292, + "t": 0.6666340317211671, + "punct": null + } + }, + "sr": { + "opus100": { + "u": 0.9422975119110641, + "t": 0.950547981823042, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6984891613750821, + "t": 0.7068181818181819, + "punct": null + }, + "ud": { + "u": 0.9794149512459371, + "t": 0.9767441860465118, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7604433077578858, + "t": 0.8166501486620417, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.67816091954023, + "t": 0.6783598451275832, + "punct": null + }, + "short-sequences": { + "u": 0.881047656047656, + "t": 0.9130443341380842, + "punct": null, + "acc_u": 0.546875, + "acc_t": 0.6666666666666666, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.6049405333944807, + "t": 0.6368522992906217, + "punct": null, + "acc_u": 0.09895833333333333, + "acc_t": 0.109375, + "acc_punct": null + } + }, + "sv": { + "opus100": { + "u": 0.9202804466372371, + "t": 0.9258968316313172, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7511111111111112, + "t": 0.8, + "punct": null + }, + "ud": { + "u": 0.9495268138801262, + "t": 0.9505263157894737, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7879341864716636, + "t": 0.8065173116089613, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7279522399650536, + "t": 0.7281453548165924, + "punct": null + } + }, + "ta": { + "ersatz": { + "u": 0.9738846572361263, + "t": 0.9794786466999444, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.74622892635315, + "t": 0.8370846730975348, + "punct": null + }, + "opus100": { + "u": 0.6226704670028502, + "t": 0.6217968508799012, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5080789946140035, + "t": 0.49193768789286685, + "punct": null + }, + "ud": { + "u": 0.9953917050691244, + "t": 1.0, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7862595419847328, + "t": 0.8534482758620691, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5128612047874099, + "t": 0.5450294283641054, + "punct": null + } + }, + "te": { + "opus100": { + "u": 0.7586759209823812, + "t": 0.7617477328936523, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5964425964425963, + "t": 0.5981264637002341, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5733612497986793, + "t": 0.5733788395904438, + "punct": null + } + }, + "tg": { + "opus100": { + "u": 0.8057142857142858, + "t": 0.8541723666210671, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6408839779005525, + "t": 0.6671705719324766, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.685025817555938, + "t": 0.6895368782161235, + "punct": null + } + }, + "th": { + "opus100": { + "u": 0.677487922705314, + "t": 0.7426042394595853, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6743648960739029, + "t": 0.720164609053498, + "punct": null + }, + "ud": { + "u": 0.7861579414374447, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.7660869565217393, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5869419208879777, + "t": 0.635034700004922, + "punct": null + } + }, + "tr": { + "ersatz": { + "u": 0.9418859649122807, + "t": 0.9445958219800181, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.8090320322072467, + "t": 0.809575625680087, + "punct": null + }, + "opus100": { + "u": 0.9332977588046958, + "t": 0.9366612989801396, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7298114963928322, + "t": 0.7380091588334539, + "punct": null + }, + "ud": { + "u": 0.9644466700050075, + "t": 0.96579476861167, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.730188679245283, + "t": 0.7249022164276401, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7232678386763186, + "t": 0.7228244945795489, + "punct": null + } + }, + "uk": { + "opus100": { + "u": 0.8995901639344261, + "t": 0.9071949947862357, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6663952778343172, + "t": 0.7221830157609974, + "punct": null + }, + "ud": { + "u": 0.9237500000000001, + "t": 0.924317617866005, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.632887189292543, + "t": 0.6416666666666667, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6827611870871708, + "t": 0.6833179723502305, + "punct": null + } + }, + "ur": { + "opus100": { + "u": 0.6135565757493924, + "t": 0.5689856198989507, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5820614676980974, + "t": 0.6018899927307972, + "punct": null + }, + "ud": { + "u": 0.9916666666666667, + "t": 0.989517819706499, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.9478079331941546, + "t": 0.9534643226473629, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5973474191881495, + "t": 0.5966214762212181, + "punct": null + } + }, + "uz": { + "opus100": { + "u": 0.7804423748544821, + "t": 0.7894876559596495, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7108776537535565, + "t": 0.7483600104959329, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7243835616438357, + "t": 0.7215841584158416, + "punct": null + } + }, + "vi": { + "opus100": { + "u": 0.9179600886917959, + "t": 0.9175286552977355, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6474530831099196, + "t": 0.6678304239401496, + "punct": null + }, + "ud": { + "u": 0.9410205434062293, + "t": 0.9569892473118279, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.6050808314087759, + "t": 0.6191135734072022, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.624791086350975, + "t": 0.6213235294117647, + "punct": null + } + }, + "xh": { + "opus100": { + "u": 0.8041666666666667, + "t": 0.8094229751191107, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.5128010620140336, + "t": 0.5529595015576324, + "punct": null + } + }, + "yi": { + "opus100": { + "u": 0.7245467224546722, + "t": 0.725108225108225, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.7156382631407117, + "t": 0.7313891020721413, + "punct": null + } + }, + "yo": { + "opus100": { + "u": 0.7521840097312839, + "t": null, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.37717851251524065, + "t": null, + "punct": null + }, + "ud": { + "u": 0.749003984063745, + "t": null, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.2846975088967972, + "t": null, + "punct": null + } + }, + "zh": { + "ersatz": { + "u": 0.7882504841833441, + "t": 0.8592283628779981, + "punct": null + }, + "ersatz-corrupted-asr": { + "u": 0.5918367346938777, + "t": 0.6575996182295394, + "punct": null + }, + "opus100": { + "u": 0.658924205378973, + "t": 0.6635273972602739, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.4212002243409983, + "t": 0.5172277227722772, + "punct": null + }, + "ud": { + "u": 0.9437939110070258, + "t": 0.9765886287625419, + "punct": null + }, + "ud-corrupted-asr": { + "u": 0.704714640198511, + "t": 0.7381703470031545, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5147431467403825, + "t": 0.5180110038409634, + "punct": null + } + }, + "zu": { + "opus100": { + "u": 0.8507288629737609, + "t": 0.8669265033407572, + "punct": null + }, + "opus100-corrupted-asr": { + "u": 0.6737247353224254, + "t": 0.6875538947973555, + "punct": null + } + }, + "tr-de": { + "code-switching": { + "u": 0.981645139360979, + "t": 0.9896337249481687, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.3799359658484525, + "t": 0.42111173498034815, + "punct": null + } + }, + "es-en": { + "code-switching": { + "u": 0.9267872523686477, + "t": 0.9365426695842451, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.5628140703517589, + "t": 0.5639476334340383, + "punct": null + } + }, + "vi-en": { + "code-switching": { + "u": 0.39689578713968954, + "t": 0.4987146529562982, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.5161020493517358, + "t": 0.543065693430657, + "punct": null + } + }, + "en-de": { + "code-switching": { + "u": 0.7039030955585465, + "t": 0.805414551607445, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.45622119815668194, + "t": 0.5776061776061775, + "punct": null + }, + "short-sequences": { + "u": 0.8266205612446959, + "t": 0.8579665619201131, + "punct": null, + "acc_u": 0.36174636174636177, + "acc_t": 0.4490644490644491, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.5885966892757343, + "t": 0.6444099064558158, + "punct": null, + "acc_u": 0.04573804573804574, + "acc_t": 0.09147609147609148, + "acc_punct": null + } + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-sm-12l.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-sm-12l.json new file mode 100644 index 0000000000000000000000000000000000000000..e222409bf3bb4b69c162067732768ff450c89d5f --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-sm-12l.json @@ -0,0 +1,1645 @@ +{ + "af": { + "opus100": { + "u": 0.9228206551915603, + "t": null, + "punct": null + }, + "ud": { + "u": 1.0, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7727461570419609, + "t": null, + "punct": null + } + }, + "am": { + "opus100": { + "u": 0.8569926393270243, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.16666666666666666, + "t": null, + "punct": null + } + }, + "ar": { + "ersatz": { + "u": 0.8980544747081711, + "t": null, + "punct": null + }, + "opus100": { + "u": 0.8334274421230942, + "t": null, + "punct": null + }, + "ud": { + "u": 0.8824427480916031, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.48829529610332423, + "t": null, + "punct": null + } + }, + "az": { + "opus100": { + "u": 0.894929430214323, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7516778523489933, + "t": null, + "punct": null + } + }, + "be": { + "opus100": { + "u": 0.9097162510748065, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9592573491490458, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.746497230368198, + "t": null, + "punct": null + } + }, + "bg": { + "opus100": { + "u": 0.9672353100460331, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9995017438963627, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7545944913838368, + "t": null, + "punct": null + } + }, + "bn": { + "opus100": { + "u": 0.9155005382131324, + "t": null, + "punct": null + }, + "ud": { + "u": 1.0, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.21498708010335918, + "t": null, + "punct": null + } + }, + "ca": { + "opus100": { + "u": 0.9449664429530201, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9993983152827919, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7405452102130928, + "t": null, + "punct": null + } + }, + "ceb": { + "ud": { + "u": 0.988095238095238, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4705882352941176, + "t": null, + "punct": null + } + }, + "cs": { + "ersatz": { + "u": 0.9913765570105397, + "t": null, + "punct": null + }, + "opus100": { + "u": 0.9532053015958886, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9724255600198138, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7702973197285554, + "t": null, + "punct": null + } + }, + "cy": { + "opus100": { + "u": 0.876909254267745, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9970811441914769, + "t": null, + "punct": null + } + }, + "da": { + "opus100": { + "u": 0.9560021727322107, + "t": null, + "punct": null + }, + "ud": { + "u": 0.98545101842871, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7843439006873911, + "t": null, + "punct": null + } + }, + "de": { + "ersatz": { + "u": 0.995193666949392, + "t": null, + "punct": null + }, + "opus100": { + "u": 0.9070155902004454, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9850402761795166, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.8053684477082805, + "t": null, + "punct": null + }, + "legal-all-laws": { + "u": 0.9270252228744192, + "t": null, + "punct": null, + "acc_u": 0.0, + "acc_t": null, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.8085419436835394, + "t": null, + "punct": null, + "acc_u": 0.0, + "acc_t": null, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.8128756881934007, + "t": null, + "punct": null, + "acc_u": 0.0, + "acc_t": null, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.7204728115166331, + "t": null, + "punct": null, + "acc_u": 0.0, + "acc_t": null, + "acc_punct": null + } + }, + "el": { + "opus100": { + "u": 0.9668478260869565, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9827586206896552, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7438972162740899, + "t": null, + "punct": null + } + }, + "en": { + "ersatz": { + "u": 0.9866781263429307, + "t": null, + "punct": null + }, + "opus100": { + "u": 0.9612868047982552, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9729177312212569, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.755235219635726, + "t": null, + "punct": null + }, + "legal-all-judgements": { + "u": 0.930858602425791, + "t": null, + "punct": null, + "acc_u": 0.0, + "acc_t": null, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.7451231738130479, + "t": null, + "punct": null, + "acc_u": 0.0, + "acc_t": null, + "acc_punct": null + } + }, + "eo": { + "opus100": { + "u": 0.9661387220098308, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7335933525521452, + "t": null, + "punct": null + } + }, + "es": { + "ersatz": { + "u": 0.9970961887477314, + "t": null, + "punct": null + }, + "opus100": { + "u": 0.9603500136724091, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9929441949967929, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7494069550295261, + "t": null, + "punct": null + }, + "legal-all-laws": { + "u": 0.8933690655461626, + "t": null, + "punct": null, + "acc_u": 0.273224043715847, + "acc_t": null, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.8334968201842455, + "t": null, + "punct": null, + "acc_u": 0.16393442622950818, + "acc_t": null, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.8010546756322073, + "t": null, + "punct": null, + "acc_u": 0.0, + "acc_t": null, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.6533315684379014, + "t": null, + "punct": null, + "acc_u": 0.0, + "acc_t": null, + "acc_punct": null + } + }, + "et": { + "ersatz": { + "u": 0.9956068094453597, + "t": null, + "punct": null + }, + "opus100": { + "u": 0.9489247311827957, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9864911673016973, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7945219173289348, + "t": null, + "punct": null + }, + "short-sequences": { + "u": 0.9183852434278218, + "t": null, + "punct": null, + "acc_u": 0.5270935960591133, + "acc_t": null, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.8198776683619725, + "t": null, + "punct": null, + "acc_u": 0.26108374384236455, + "acc_t": null, + "acc_punct": null + } + }, + "eu": { + "opus100": { + "u": 0.9438872323122797, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9987646695491044, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6734227521112768, + "t": null, + "punct": null + } + }, + "fa": { + "opus100": { + "u": 0.7891229005598507, + "t": null, + "punct": null + }, + "ud": { + "u": 0.999236641221374, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7122995737771463, + "t": null, + "punct": null + } + }, + "fi": { + "ersatz": { + "u": 0.9947295423023579, + "t": null, + "punct": null + }, + "opus100": { + "u": 0.9650501219181794, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9882268997502676, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7816993464052288, + "t": null, + "punct": null + } + }, + "fr": { + "ersatz": { + "u": 0.9821192052980132, + "t": null, + "punct": null + }, + "opus100": { + "u": 0.9406919275123559, + "t": null, + "punct": null + }, + "ud": { + "u": 0.983957219251337, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7646839157108563, + "t": null, + "punct": null + }, + "legal-all-laws": { + "u": 0.958340068404897, + "t": null, + "punct": null, + "acc_u": 0.7690631808278867, + "acc_t": null, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.8954279860179243, + "t": null, + "punct": null, + "acc_u": 0.5664488017429193, + "acc_t": null, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.8508394657816567, + "t": null, + "punct": null, + "acc_u": 0.0, + "acc_t": null, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.6877406233479306, + "t": null, + "punct": null, + "acc_u": 0.0, + "acc_t": null, + "acc_punct": null + } + }, + "fy": { + "opus100": { + "u": 0.9423019431988041, + "t": null, + "punct": null + } + }, + "ga": { + "opus100": { + "u": 0.8635654074305338, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9865361077111383, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6666666666666666, + "t": null, + "punct": null + } + }, + "gd": { + "opus100": { + "u": 0.9194174757281552, + "t": null, + "punct": null + }, + "ud": { + "u": 0.8676923076923078, + "t": null, + "punct": null + } + }, + "gl": { + "opus100": { + "u": 0.9544105745886161, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9944289693593316, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7425200616463836, + "t": null, + "punct": null + } + }, + "gu": { + "ersatz": { + "u": 0.9699289229086933, + "t": null, + "punct": null + }, + "opus100": { + "u": 0.8926940639269406, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3003490236770116, + "t": null, + "punct": null + } + }, + "ha": { + "opus100": { + "u": 0.9305263157894736, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3846153846153846, + "t": null, + "punct": null + } + }, + "he": { + "opus100": { + "u": 0.9290836653386454, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9843081312410842, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6927723177723178, + "t": null, + "punct": null + } + }, + "hi": { + "ersatz": { + "u": 0.9895994689090506, + "t": null, + "punct": null + }, + "opus100": { + "u": 0.8402061855670103, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9990095741168703, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6129987311433808, + "t": null, + "punct": null + } + }, + "hu": { + "opus100": { + "u": 0.9650122050447517, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9987639060568604, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7564840708449855, + "t": null, + "punct": null + } + }, + "hy": { + "opus100": { + "u": 0.9238021638330758, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9906191369606004, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7481222347978186, + "t": null, + "punct": null + } + }, + "id": { + "opus100": { + "u": 0.9584257206208425, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9961046188091264, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7334908082571634, + "t": null, + "punct": null + } + }, + "ig": { + "opus100": { + "u": 0.9375612945406996, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.04123711340206186, + "t": null, + "punct": null + } + }, + "is": { + "opus100": { + "u": 0.9680763983628922, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9650599873710798, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7440225035161744, + "t": null, + "punct": null + } + }, + "it": { + "opus100": { + "u": 0.9237668161434978, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9965477560414269, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.730341425669794, + "t": null, + "punct": null + }, + "legal-all-laws": { + "u": 0.8063534995946866, + "t": null, + "punct": null, + "acc_u": 0.2869318181818182, + "acc_t": null, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.7189031476356387, + "t": null, + "punct": null, + "acc_u": 0.11363636363636363, + "acc_t": null, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.8828649987079539, + "t": null, + "punct": null, + "acc_u": 0.02040816326530612, + "acc_t": null, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.6229616452101648, + "t": null, + "punct": null, + "acc_u": 0.0, + "acc_t": null, + "acc_punct": null + } + }, + "ja": { + "ersatz": { + "u": 0.9127937336814621, + "t": null, + "punct": null + }, + "opus100": { + "u": 0.8998815165876777, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9732510288065844, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.909928780896523, + "t": null, + "punct": null + } + }, + "jv": { + "ud": { + "u": 0.9911699779249448, + "t": null, + "punct": null + } + }, + "ka": { + "opus100": { + "u": 0.9396739130434784, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6898538122928102, + "t": null, + "punct": null + } + }, + "kk": { + "ersatz": { + "u": 0.9988901220865705, + "t": null, + "punct": null + }, + "opus100": { + "u": 0.9538977367979883, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9962904080551139, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7850228310502283, + "t": null, + "punct": null + } + }, + "km": { + "ersatz": { + "u": 0.9425556858147713, + "t": null, + "punct": null + }, + "opus100": { + "u": 0.8968980797636633, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.8139255702280912, + "t": null, + "punct": null + } + }, + "kn": { + "opus100": { + "u": 0.9148264984227129, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.116017316017316, + "t": null, + "punct": null + } + }, + "ko": { + "opus100": { + "u": 0.8424177010253643, + "t": null, + "punct": null + }, + "ud": { + "u": 0.999514091350826, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7701349381729278, + "t": null, + "punct": null + } + }, + "ku": { + "opus100": { + "u": 0.9459693730135799, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.011368605159597726, + "t": null, + "punct": null + } + }, + "ky": { + "opus100": { + "u": 0.9674479166666666, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7522123893805309, + "t": null, + "punct": null + } + }, + "la": { + "ud": { + "u": 0.9824561403508771, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.75, + "t": null, + "punct": null + } + }, + "lt": { + "ersatz": { + "u": 0.9955506117908787, + "t": null, + "punct": null + }, + "opus100": { + "u": 0.9319518342201064, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9843363561417973, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7610337126449006, + "t": null, + "punct": null + } + }, + "lv": { + "ersatz": { + "u": 0.9977973568281938, + "t": null, + "punct": null + }, + "opus100": { + "u": 0.9331514324693043, + "t": null, + "punct": null + }, + "ud": { + "u": 0.994701681640175, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7629435718440953, + "t": null, + "punct": null + } + }, + "mg": { + "opus100": { + "u": 0.9690436705362078, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.1866666666666667, + "t": null, + "punct": null + } + }, + "mk": { + "opus100": { + "u": 0.9614243323442138, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7500668842634706, + "t": null, + "punct": null + } + }, + "ml": { + "opus100": { + "u": 0.8989712476919018, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3974666957851059, + "t": null, + "punct": null + } + }, + "mn": { + "opus100": { + "u": 0.8648648648648648, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.8517105871474803, + "t": null, + "punct": null + } + }, + "mr": { + "opus100": { + "u": 0.9682274247491638, + "t": null, + "punct": null + }, + "ud": { + "u": 0.988235294117647, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4913126071445119, + "t": null, + "punct": null + } + }, + "ms": { + "opus100": { + "u": 0.9576601671309192, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.738527871881737, + "t": null, + "punct": null + } + }, + "mt": { + "opus100": { + "u": 0.8919213973799126, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9635193133047211, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.543046357615894, + "t": null, + "punct": null + } + }, + "my": { + "opus100": { + "u": 0.9303496503496503, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.9493721690270053, + "t": null, + "punct": null + } + }, + "ne": { + "opus100": { + "u": 0.8684288684288685, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6613891726251276, + "t": null, + "punct": null + } + }, + "nl": { + "opus100": { + "u": 0.950941394855476, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9741219963031423, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.8136404427161231, + "t": null, + "punct": null + } + }, + "no": { + "opus100": { + "u": 0.9619433198380566, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9945667715184443, + "t": null, + "punct": null + } + }, + "pa": { + "opus100": { + "u": 0.8600464576074333, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4795321637426901, + "t": null, + "punct": null + } + }, + "pl": { + "ersatz": { + "u": 0.9905607995558023, + "t": null, + "punct": null + }, + "opus100": { + "u": 0.9618943930321175, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9977381251570746, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7777153653679212, + "t": null, + "punct": null + } + }, + "ps": { + "ersatz": { + "u": 0.9501216545012166, + "t": null, + "punct": null + }, + "opus100": { + "u": 0.9020957147325618, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6508659981768459, + "t": null, + "punct": null + } + }, + "pt": { + "opus100": { + "u": 0.9531502423263327, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9899952358265842, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7618905323970316, + "t": null, + "punct": null + }, + "legal-all-laws": { + "u": 0.8129326303690948, + "t": null, + "punct": null, + "acc_u": 0.22413793103448276, + "acc_t": null, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.7198021254425427, + "t": null, + "punct": null, + "acc_u": 0.15517241379310345, + "acc_t": null, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.8698780384579432, + "t": null, + "punct": null, + "acc_u": 0.0, + "acc_t": null, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.7046071835785037, + "t": null, + "punct": null, + "acc_u": 0.0, + "acc_t": null, + "acc_punct": null + } + }, + "ro": { + "ersatz": { + "u": 0.9947412122889565, + "t": null, + "punct": null + }, + "opus100": { + "u": 0.9709270433351619, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9941706412294647, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7602765025592316, + "t": null, + "punct": null + } + }, + "ru": { + "ersatz": { + "u": 0.9949579831932773, + "t": null, + "punct": null + }, + "opus100": { + "u": 0.8909803921568628, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9404617253948967, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7735394499096566, + "t": null, + "punct": null + } + }, + "si": { + "opus100": { + "u": 0.8890066225165564, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6496815286624203, + "t": null, + "punct": null + } + }, + "sk": { + "opus100": { + "u": 0.9663842579939873, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9889182058047493, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.769440389294404, + "t": null, + "punct": null + } + }, + "sl": { + "opus100": { + "u": 0.9596990865126277, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9935036812472932, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7889213126503865, + "t": null, + "punct": null + }, + "short-sequences": { + "u": 0.8060720417575257, + "t": null, + "punct": null, + "acc_u": 0.3812316715542522, + "acc_t": null, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.6735773339970553, + "t": null, + "punct": null, + "acc_u": 0.15212609970674487, + "acc_t": null, + "acc_punct": null + } + }, + "sq": { + "opus100": { + "u": 0.9703133589884553, + "t": null, + "punct": null + }, + "ud": { + "u": 1.0, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6989548232337655, + "t": null, + "punct": null + } + }, + "sr": { + "opus100": { + "u": 0.9671284976908449, + "t": null, + "punct": null + }, + "ud": { + "u": 1.0, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7579353006794441, + "t": null, + "punct": null + }, + "short-sequences": { + "u": 0.9201012002023031, + "t": null, + "punct": null, + "acc_u": 0.6979166666666666, + "acc_t": null, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.7654431216931217, + "t": null, + "punct": null, + "acc_u": 0.2916666666666667, + "acc_t": null, + "acc_punct": null + } + }, + "sv": { + "opus100": { + "u": 0.9629831246597713, + "t": null, + "punct": null + }, + "ud": { + "u": 0.968186638388123, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7972672386399746, + "t": null, + "punct": null + } + }, + "ta": { + "ersatz": { + "u": 0.9862107004964149, + "t": null, + "punct": null + }, + "opus100": { + "u": 0.8532518065591995, + "t": null, + "punct": null + }, + "ud": { + "u": 1.0, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5596430522673466, + "t": null, + "punct": null + } + }, + "te": { + "opus100": { + "u": 0.9025352112676057, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3280793928779918, + "t": null, + "punct": null + } + }, + "tg": { + "opus100": { + "u": 0.9449118046132972, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.08904109589041097, + "t": null, + "punct": null + } + }, + "th": { + "opus100": { + "u": 0.7988209285187914, + "t": null, + "punct": null + }, + "ud": { + "u": 0.8907849829351536, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6986602470169563, + "t": null, + "punct": null + } + }, + "tr": { + "ersatz": { + "u": 0.9796375864001494, + "t": null, + "punct": null + }, + "opus100": { + "u": 0.9584699453551914, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9828109201213346, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7745322934189733, + "t": null, + "punct": null + } + }, + "uk": { + "opus100": { + "u": 0.9525087201502549, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9814126394052044, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7634040840961674, + "t": null, + "punct": null + } + }, + "ur": { + "opus100": { + "u": 0.7265415549597855, + "t": null, + "punct": null + }, + "ud": { + "u": 0.991701244813278, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6777416784159872, + "t": null, + "punct": null + } + }, + "uz": { + "opus100": { + "u": 0.8899793388429751, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5680724051607933, + "t": null, + "punct": null + } + }, + "vi": { + "opus100": { + "u": 0.9597765363128492, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9986111111111111, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7196327683615821, + "t": null, + "punct": null + } + }, + "xh": { + "opus100": { + "u": 0.9310933940774488, + "t": null, + "punct": null + } + }, + "yi": { + "opus100": { + "u": 0.9238395673726905, + "t": null, + "punct": null + } + }, + "yo": { + "opus100": { + "u": 0.6014765707397921, + "t": null, + "punct": null + }, + "ud": { + "u": 0.859560067681895, + "t": null, + "punct": null + } + }, + "zh": { + "ersatz": { + "u": 0.9199888486200167, + "t": null, + "punct": null + }, + "opus100": { + "u": 0.8918384637108161, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9877913429522752, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5179933590594992, + "t": null, + "punct": null + } + }, + "zu": { + "opus100": { + "u": 0.9598358252711814, + "t": null, + "punct": null + } + }, + "tr-de": { + "code-switching": { + "u": 0.9993089149965445, + "t": null, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.4236234458259325, + "t": null, + "punct": null + } + }, + "es-en": { + "code-switching": { + "u": 0.8985750209555743, + "t": null, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.5955826351865955, + "t": null, + "punct": null + } + }, + "vi-en": { + "code-switching": { + "u": 0.5639024390243902, + "t": null, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.572541382667965, + "t": null, + "punct": null + } + }, + "en-de": { + "code-switching": { + "u": 0.8322884012539186, + "t": null, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.58416500332668, + "t": null, + "punct": null + }, + "short-sequences": { + "u": 0.9024909186144939, + "t": null, + "punct": null, + "acc_u": 0.6008316008316008, + "acc_t": null, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.7598607073745072, + "t": null, + "punct": null, + "acc_u": 0.23492723492723494, + "acc_t": null, + "acc_punct": null + } + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-sm-12l_no_corruptions.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-sm-12l_no_corruptions.json new file mode 100644 index 0000000000000000000000000000000000000000..bc9aa2cec3b88bbb8982009c2a9b3436350dbd9a --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-sm-12l_no_corruptions.json @@ -0,0 +1,1645 @@ +{ + "af": { + "opus100": { + "u": 0.9172394830904592, + "t": 0.9187199093741149, + "punct": null + }, + "ud": { + "u": 1.0, + "t": 1.0, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6381243628950051, + "t": 0.704042715484363, + "punct": null + } + }, + "am": { + "opus100": { + "u": 0.8719076415612974, + "t": 0.8683173888576252, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.25, + "t": 0.5725338491295937, + "punct": null + } + }, + "ar": { + "ersatz": { + "u": 0.8748006379585327, + "t": 0.9091594421409724, + "punct": null + }, + "opus100": { + "u": 0.8113207547169812, + "t": 0.8269441401971522, + "punct": null + }, + "ud": { + "u": 0.9061488673139159, + "t": 0.9076175040518638, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3686643552913984, + "t": 0.6049648162627053, + "punct": null + } + }, + "az": { + "opus100": { + "u": 0.9012644605864945, + "t": 0.8860471724921852, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.24380574826560952, + "t": 0.7236945272071506, + "punct": null + } + }, + "be": { + "opus100": { + "u": 0.9121602288984264, + "t": 0.9053063617707418, + "punct": null + }, + "ud": { + "u": 0.9576581285938317, + "t": 0.9570680628272251, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5985417835109367, + "t": 0.6998726925525142, + "punct": null + } + }, + "bg": { + "opus100": { + "u": 0.9670270270270271, + "t": 0.9693683925182978, + "punct": null + }, + "ud": { + "u": 0.999003984063745, + "t": 0.999003984063745, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5259275984044555, + "t": 0.6982340183827327, + "punct": null + } + }, + "bn": { + "opus100": { + "u": 0.9145646867371846, + "t": 0.919412905012462, + "punct": null + }, + "ud": { + "u": 0.99009900990099, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.07343843544202754, + "t": 0.3857066175906756, + "punct": null + } + }, + "ca": { + "opus100": { + "u": 0.9463756399892213, + "t": 0.9540983606557378, + "punct": null + }, + "ud": { + "u": 0.9996990671080349, + "t": 1.0, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6033843457156342, + "t": 0.6694856918084374, + "punct": null + } + }, + "ceb": { + "ud": { + "u": 0.9940828402366864, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.1851851851851852, + "t": 0.43835616438356156, + "punct": null + } + }, + "cs": { + "ersatz": { + "u": 0.9951938481256007, + "t": 0.9951721918249115, + "punct": null + }, + "opus100": { + "u": 0.9521479064709082, + "t": 0.9549202858713579, + "punct": null + }, + "ud": { + "u": 0.9754343255505146, + "t": 0.9748542880932556, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.541651429825203, + "t": 0.695934796739837, + "punct": null + } + }, + "cy": { + "opus100": { + "u": 0.8836104513064134, + "t": 0.8869725900831535, + "punct": null + }, + "ud": { + "u": 0.9970811441914769, + "t": 0.9959183673469387, + "punct": null + } + }, + "da": { + "opus100": { + "u": 0.9560737527114969, + "t": 0.956734693877551, + "punct": null + }, + "ud": { + "u": 0.9844961240310077, + "t": 0.9872922776148583, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6860362071148247, + "t": 0.7230808208766151, + "punct": null + } + }, + "de": { + "ersatz": { + "u": 0.9813422445001393, + "t": 0.9909553420011307, + "punct": null + }, + "opus100": { + "u": 0.9021134593993326, + "t": 0.9027624309392264, + "punct": null + }, + "ud": { + "u": 0.986206896551724, + "t": 0.9867892016082711, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7660828468167918, + "t": 0.7663735183263233, + "punct": null + }, + "legal-all-laws": { + "u": 0.9286974749699027, + "t": 0.9226608397151642, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.8170169264286912, + "t": 0.8203517308771167, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.8097825123083802, + "t": 0.7936482702481188, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.6302291724243795, + "t": 0.6602345528379631, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "el": { + "opus100": { + "u": 0.966883821932682, + "t": 0.9665851670741646, + "punct": null + }, + "ud": { + "u": 0.9778869778869779, + "t": 0.9790897908979089, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6441230127703935, + "t": 0.7028894786919725, + "punct": null + } + }, + "en": { + "ersatz": { + "u": 0.9852667715634387, + "t": 0.9876080691642651, + "punct": null + }, + "opus100": { + "u": 0.9627007895453308, + "t": 0.9637503406922867, + "punct": null + }, + "ud": { + "u": 0.9742533470648814, + "t": 0.9747552807831014, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.60943802097338, + "t": 0.6737707413609378, + "punct": null + }, + "legal-all-judgements": { + "u": 0.9300168313770747, + "t": 0.9306145689151755, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.7037212639545591, + "t": 0.7224238470530019, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "eo": { + "opus100": { + "u": 0.9628415300546449, + "t": 0.9675270607826811, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.42006671798819606, + "t": 0.6692060646799611, + "punct": null + } + }, + "es": { + "ersatz": { + "u": 0.9969130197929907, + "t": null, + "punct": null + }, + "opus100": { + "u": 0.9573304157549234, + "t": 0.9588364434687157, + "punct": null + }, + "ud": { + "u": 0.994539029874719, + "t": 0.9954954954954954, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.52344152498712, + "t": 0.6605561597017245, + "punct": null + }, + "legal-all-laws": { + "u": 0.8784916625929421, + "t": 0.9285536074218562, + "punct": null, + "acc_u": 0.2677595628415301, + "acc_t": 0.3879781420765027, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.798582128553847, + "t": 0.8116228198934288, + "punct": null, + "acc_u": 0.1092896174863388, + "acc_t": 0.1366120218579235, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.7695998200778222, + "t": 0.818333297255493, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.5813895621434335, + "t": 0.6239207522450104, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "et": { + "ersatz": { + "u": 0.9958779884583677, + "t": 0.9958734525447042, + "punct": null + }, + "opus100": { + "u": 0.9487594390507013, + "t": 0.9544956140350878, + "punct": null + }, + "ud": { + "u": 0.9869994799791991, + "t": 0.9875130072840791, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6329634196465269, + "t": 0.7349175404394329, + "punct": null + }, + "short-sequences": { + "u": 0.9082153698662969, + "t": 0.9148456460668299, + "punct": null, + "acc_u": 0.5320197044334976, + "acc_t": 0.541871921182266, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.7397351562693188, + "t": 0.7605437458787808, + "punct": null, + "acc_u": 0.15763546798029557, + "acc_t": 0.16748768472906403, + "acc_punct": null + } + }, + "eu": { + "opus100": { + "u": 0.9280343716433942, + "t": 0.9283221476510067, + "punct": null + }, + "ud": { + "u": 0.9990732159406858, + "t": 0.9987639060568603, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3539694100509833, + "t": 0.6125418060200668, + "punct": null + } + }, + "fa": { + "opus100": { + "u": 0.7770770496298327, + "t": 0.7739443872296602, + "punct": null + }, + "ud": { + "u": 0.9988553987027853, + "t": 0.9988553987027853, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5295641234366907, + "t": 0.680788675429727, + "punct": null + } + }, + "fi": { + "ersatz": { + "u": 0.995560488346282, + "t": 0.9972160356347439, + "punct": null + }, + "opus100": { + "u": 0.9637445887445888, + "t": 0.9665306122448979, + "punct": null + }, + "ud": { + "u": 0.9881932021466905, + "t": 0.9896094589752777, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6136967632027257, + "t": 0.717896865520728, + "punct": null + } + }, + "fr": { + "ersatz": { + "u": 0.9890329012961118, + "t": 0.9896907216494845, + "punct": null + }, + "opus100": { + "u": 0.9391541609822647, + "t": null, + "punct": null + }, + "ud": { + "u": 0.983957219251337, + "t": 0.9852744310575635, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5980756013745704, + "t": 0.6897919739585983, + "punct": null + }, + "legal-all-laws": { + "u": 0.9231812396323432, + "t": 0.9392703297846828, + "punct": null, + "acc_u": 0.7450980392156863, + "acc_t": 0.7581699346405228, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.5769531711551094, + "t": 0.7088192783751566, + "punct": null, + "acc_u": 0.1895424836601307, + "acc_t": 0.3115468409586057, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.8540619460516535, + "t": 0.8631998893752685, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.6564871414647595, + "t": 0.657923545550601, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "fy": { + "opus100": { + "u": 0.9360189573459716, + "t": 0.9298029556650246, + "punct": null + } + }, + "ga": { + "opus100": { + "u": 0.8902915539525097, + "t": 0.9128798842257597, + "punct": null + }, + "ud": { + "u": 0.9841656516443362, + "t": 0.9828850855745721, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5263157894736842, + "t": 0.5194805194805195, + "punct": null + } + }, + "gd": { + "opus100": { + "u": 0.9440870856011876, + "t": 0.9549641760491301, + "punct": null + }, + "ud": { + "u": 0.8809034907597535, + "t": 0.8855116514690984, + "punct": null + } + }, + "gl": { + "opus100": { + "u": 0.949261744966443, + "t": 0.9536710918450284, + "punct": null + }, + "ud": { + "u": 0.9958275382475661, + "t": 0.9958275382475661, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6054620177648151, + "t": 0.6847663644515293, + "punct": null + } + }, + "gu": { + "ersatz": { + "u": 0.9727668845315904, + "t": 0.9711799891245241, + "punct": null + }, + "opus100": { + "u": 0.8901734104046243, + "t": 0.8911584476218266, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3567826309941021, + "t": 0.44996880549023377, + "punct": null + } + }, + "ha": { + "opus100": { + "u": 0.9360902255639098, + "t": 0.9263274951348347, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4444444444444444, + "t": 0.4705882352941176, + "punct": null + } + }, + "he": { + "opus100": { + "u": 0.928042328042328, + "t": 0.9370967741935483, + "punct": null + }, + "ud": { + "u": 0.9828571428571428, + "t": 0.9915014164305949, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4351114963359861, + "t": 0.623504915016222, + "punct": null + } + }, + "hi": { + "ersatz": { + "u": 0.9909271962823633, + "t": 0.9904635174096253, + "punct": null + }, + "opus100": { + "u": 0.843322818086225, + "t": 0.8551762114537445, + "punct": null + }, + "ud": { + "u": 0.9993399339933994, + "t": 0.9993399339933994, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3798524222008342, + "t": 0.5743950884795955, + "punct": null + } + }, + "hu": { + "opus100": { + "u": 0.966359196961476, + "t": 0.9665123876939832, + "punct": null + }, + "ud": { + "u": 1.0, + "t": 0.9962732919254659, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5045793889017163, + "t": 0.6872264631043257, + "punct": null + } + }, + "hy": { + "opus100": { + "u": 0.9240437582434634, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9924953095684803, + "t": 0.993439550140581, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5667258571233439, + "t": 0.692632792238978, + "punct": null + } + }, + "id": { + "opus100": { + "u": 0.9571230982019363, + "t": 0.9583567810917277, + "punct": null + }, + "ud": { + "u": 0.9966666666666667, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3822371177209887, + "t": 0.6559526743899432, + "punct": null + } + }, + "ig": { + "opus100": { + "u": 0.9447170428524698, + "t": 0.9490142760027193, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.13333333333333333, + "t": 0.27184466019417475, + "punct": null + } + }, + "is": { + "opus100": { + "u": 0.967530695770805, + "t": 0.9678824169842134, + "punct": null + }, + "ud": { + "u": 0.969831223628692, + "t": 0.9750935328701229, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6677393403057119, + "t": 0.7016414547795301, + "punct": null + } + }, + "it": { + "opus100": { + "u": 0.9189046866771985, + "t": 0.918491163281456, + "punct": null + }, + "ud": { + "u": 0.9976958525345622, + "t": 0.9976958525345622, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.571724996541707, + "t": 0.6685872924414646, + "punct": null + }, + "legal-all-laws": { + "u": 0.8043810882760131, + "t": 0.7674375135061822, + "punct": null, + "acc_u": 0.390625, + "acc_t": 0.4090909090909091, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.5277733640858012, + "t": 0.5222770051317568, + "punct": null, + "acc_u": 0.15056818181818182, + "acc_t": 0.14914772727272727, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.8816141422691561, + "t": 0.8934767131636326, + "punct": null, + "acc_u": 0.061224489795918366, + "acc_t": 0.10204081632653061, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.5606792332579781, + "t": 0.5879439242256951, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "ja": { + "ersatz": { + "u": 0.9051859612362493, + "t": 0.9059125964010283, + "punct": null + }, + "opus100": { + "u": 0.8888888888888888, + "t": 0.9087301587301587, + "punct": null + }, + "ud": { + "u": 0.9720785935884179, + "t": 0.972193614830072, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7271829595147412, + "t": 0.9134960305792414, + "punct": null + } + }, + "jv": { + "ud": { + "u": 0.9928216454997238, + "t": null, + "punct": null + } + }, + "ka": { + "opus100": { + "u": 0.9345743224746784, + "t": 0.9348722176422094, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.45961319681456203, + "t": 0.6340444142086594, + "punct": null + } + }, + "kk": { + "ersatz": { + "u": 0.9977802441731409, + "t": 0.9977802441731409, + "punct": null + }, + "opus100": { + "u": 0.9533389214864487, + "t": 0.955536181342633, + "punct": null + }, + "ud": { + "u": 0.9957671957671959, + "t": 0.9247434435575826, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.21541534875978025, + "t": 0.7412837780240388, + "punct": null + } + }, + "km": { + "ersatz": { + "u": 0.9465685110425076, + "t": 0.9494949494949495, + "punct": null + }, + "opus100": { + "u": 0.898264512268103, + "t": 0.8951219512195122, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.8522336769759451, + "t": 0.8539325842696628, + "punct": null + } + }, + "kn": { + "opus100": { + "u": 0.9195693476884105, + "t": 0.916452442159383, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.14346712211784798, + "t": 0.45070422535211263, + "punct": null + } + }, + "ko": { + "opus100": { + "u": 0.8342186189544311, + "t": 0.8360094761779416, + "punct": null + }, + "ud": { + "u": 0.999514091350826, + "t": 0.999514091350826, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.720863387385433, + "t": 0.7592073284726116, + "punct": null + } + }, + "ku": { + "opus100": { + "u": 0.9462052922361153, + "t": 0.9456362033499853, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.17737167428110723, + "t": 0.3674597542300079, + "punct": null + } + }, + "ky": { + "opus100": { + "u": 0.9667318982387475, + "t": 0.9728656518861681, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.379746835443038, + "t": 0.7448979591836735, + "punct": null + } + }, + "la": { + "ud": { + "u": 0.9850197109067016, + "t": 0.984485932158822, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.588235294117647, + "t": 0.588235294117647, + "punct": null + } + }, + "lt": { + "ersatz": { + "u": 0.9966666666666667, + "t": 0.9966666666666667, + "punct": null + }, + "opus100": { + "u": 0.9280133928571429, + "t": 0.9284321915900864, + "punct": null + }, + "ud": { + "u": 0.9809760132340777, + "t": 0.9809444904722453, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4902754006534931, + "t": 0.6908754143107819, + "punct": null + } + }, + "lv": { + "ersatz": { + "u": 0.9975240715268225, + "t": 0.9978009895547004, + "punct": null + }, + "opus100": { + "u": 0.9305517430688992, + "t": 0.9306768558951966, + "punct": null + }, + "ud": { + "u": 0.9944725932749885, + "t": 0.9949378739070409, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5339805825242718, + "t": 0.7128283475432458, + "punct": null + } + }, + "mg": { + "opus100": { + "u": 0.9685430463576158, + "t": 0.9690094078583288, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.21145374449339205, + "t": 0.48615384615384616, + "punct": null + } + }, + "mk": { + "opus100": { + "u": 0.9604306864064603, + "t": 0.9609182836840666, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5339474075174565, + "t": 0.6873802495986744, + "punct": null + } + }, + "ml": { + "opus100": { + "u": 0.8966986155484558, + "t": 0.9028540065861691, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.2258920672368033, + "t": 0.49514832270584974, + "punct": null + } + }, + "mn": { + "opus100": { + "u": 0.6211135213304411, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3335753176043557, + "t": 0.8041171477079797, + "punct": null + } + }, + "mr": { + "opus100": { + "u": 0.965383550263085, + "t": 0.9675251959686451, + "punct": null + }, + "ud": { + "u": 0.988235294117647, + "t": 0.988235294117647, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.09588901356727532, + "t": 0.45790968214711003, + "punct": null + } + }, + "ms": { + "opus100": { + "u": 0.9570791527313266, + "t": 0.9604966139954852, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.45440675976998013, + "t": 0.673131433686409, + "punct": null + } + }, + "mt": { + "opus100": { + "u": 0.8871934604904632, + "t": 0.8876313662085692, + "punct": null + }, + "ud": { + "u": 0.9762931034482759, + "t": 0.9730312837108954, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.13725490196078433, + "t": 0.37894736842105264, + "punct": null + } + }, + "my": { + "opus100": { + "u": 0.927765237020316, + "t": 0.9269263576912142, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.9510457628084573, + "t": 0.9546322290847838, + "punct": null + } + }, + "ne": { + "opus100": { + "u": 0.8676646706586826, + "t": 0.8683729433272395, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.256978289765175, + "t": 0.6237092110698058, + "punct": null + } + }, + "nl": { + "opus100": { + "u": 0.9501590668080594, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9721189591078068, + "t": 0.9730733519034355, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7878316864660819, + "t": 0.7902986655369626, + "punct": null + } + }, + "no": { + "opus100": { + "u": 0.9669017905588715, + "t": 0.9669017905588715, + "punct": null + }, + "ud": { + "u": 0.9954233409610984, + "t": 0.9951359084406295, + "punct": null + } + }, + "pa": { + "opus100": { + "u": 0.8612665684830633, + "t": 0.8571428571428571, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.44399185336048874, + "t": 0.5868613138686132, + "punct": null + } + }, + "pl": { + "ersatz": { + "u": 0.9933628318584071, + "t": 0.9922480620155039, + "punct": null + }, + "opus100": { + "u": 0.9597169297768099, + "t": 0.9596949891067538, + "punct": null + }, + "ud": { + "u": 0.9972368751569958, + "t": 0.9954659949622165, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.526276500447895, + "t": 0.7192561181219026, + "punct": null + } + }, + "ps": { + "ersatz": { + "u": 0.9401918758930394, + "t": 0.9376128385155466, + "punct": null + }, + "opus100": { + "u": 0.89344, + "t": 0.894736842105263, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5732899022801303, + "t": 0.6206896551724138, + "punct": null + } + }, + "pt": { + "opus100": { + "u": 0.9540198978219951, + "t": 0.9587180879956544, + "punct": null + }, + "ud": { + "u": 0.9890424011434016, + "t": 0.9895038167938932, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6719130597714071, + "t": 0.7216453271499144, + "punct": null + }, + "legal-all-laws": { + "u": 0.791614451793386, + "t": 0.7289511359949027, + "punct": null, + "acc_u": 0.1896551724137931, + "acc_t": 0.13793103448275862, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.6112771360048593, + "t": 0.6229603353078315, + "punct": null, + "acc_u": 0.017241379310344827, + "acc_t": 0.017241379310344827, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.8746147610177311, + "t": 0.8736259107954595, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.6477064235088532, + "t": 0.6694801639220915, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "ro": { + "ersatz": { + "u": 0.9930958298812482, + "t": 0.9950138504155125, + "punct": null + }, + "opus100": { + "u": 0.9685706477179558, + "t": 0.9724517906336088, + "punct": null + }, + "ud": { + "u": 0.9941706412294647, + "t": 0.9941706412294647, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.46315120711562896, + "t": 0.6742100323287099, + "punct": null + } + }, + "ru": { + "ersatz": { + "u": 0.996078431372549, + "t": 0.996078431372549, + "punct": null + }, + "opus100": { + "u": 0.9088948787061993, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9466584917228694, + "t": 0.9441069258809234, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5914342068188222, + "t": 0.7177827230426866, + "punct": null + } + }, + "si": { + "opus100": { + "u": 0.8984332793084818, + "t": 0.8975853455453788, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.43731778425655976, + "t": 0.6025179856115107, + "punct": null + } + }, + "sk": { + "opus100": { + "u": 0.9668765398302764, + "t": 0.9668583949602848, + "punct": null + }, + "ud": { + "u": 0.9852164730728618, + "t": 0.9819341126461211, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5245013172751223, + "t": 0.6916031315560559, + "punct": null + } + }, + "sl": { + "opus100": { + "u": 0.9590296495956874, + "t": 0.9592055823939882, + "punct": null + }, + "ud": { + "u": 0.997398091934085, + "t": 0.9969631236442517, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.46343825665859567, + "t": 0.7176320272572403, + "punct": null + }, + "short-sequences": { + "u": 0.7625305657197154, + "t": 0.821611587696416, + "punct": null, + "acc_u": 0.28555718475073316, + "acc_t": 0.43951612903225806, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.6457660517227967, + "t": 0.6471141680085962, + "punct": null, + "acc_u": 0.10117302052785923, + "acc_t": 0.1059384164222874, + "acc_punct": null + } + }, + "sq": { + "opus100": { + "u": 0.9686468646864687, + "t": 0.9696463380673906, + "punct": null + }, + "ud": { + "u": 1.0, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4652690863579474, + "t": 0.6571715995128925, + "punct": null + } + }, + "sr": { + "opus100": { + "u": 0.967444384156267, + "t": 0.9678824169842134, + "punct": null + }, + "ud": { + "u": 1.0, + "t": 1.0, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.46219754065846885, + "t": 0.6916789758739538, + "punct": null + }, + "short-sequences": { + "u": 0.9351107804232802, + "t": 0.9327670304232806, + "punct": null, + "acc_u": 0.78125, + "acc_t": 0.7708333333333334, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.7304563492063493, + "t": 0.7457115511803011, + "punct": null, + "acc_u": 0.25, + "acc_t": 0.2604166666666667, + "acc_punct": null + } + }, + "sv": { + "opus100": { + "u": 0.9617989704687077, + "t": 0.9617989704687077, + "punct": null + }, + "ud": { + "u": 0.9683210137275607, + "t": 0.9643047416089504, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7053122539221032, + "t": 0.7293692544768584, + "punct": null + } + }, + "ta": { + "ersatz": { + "u": 0.9867403314917127, + "t": 0.9867549668874173, + "punct": null + }, + "opus100": { + "u": 0.8615907161052929, + "t": 0.8595669982445875, + "punct": null + }, + "ud": { + "u": 1.0, + "t": 1.0, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.24534958306606802, + "t": 0.5339058865628913, + "punct": null + } + }, + "te": { + "opus100": { + "u": 0.9085173501577288, + "t": 0.9059131954558695, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.1786743515850144, + "t": 0.5516483516483517, + "punct": null + } + }, + "tg": { + "opus100": { + "u": 0.9418892866978794, + "t": 0.9346110484780158, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.45108695652173914, + "t": 0.659016393442623, + "punct": null + } + }, + "th": { + "opus100": { + "u": 0.803729146221786, + "t": 0.8108251525603608, + "punct": null + }, + "ud": { + "u": 0.8690132717830351, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6777614619024311, + "t": 0.6895749527456017, + "punct": null + } + }, + "tr": { + "ersatz": { + "u": 0.9687795648060549, + "t": 0.9785202863961815, + "punct": null + }, + "opus100": { + "u": 0.9575856443719413, + "t": 0.9574468085106383, + "punct": null + }, + "ud": { + "u": 0.9848790322580646, + "t": 0.9827411167512691, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.24299787521730737, + "t": 0.7160442311704568, + "punct": null + } + }, + "uk": { + "opus100": { + "u": 0.9479027518033663, + "t": 0.9544715447154472, + "punct": null + }, + "ud": { + "u": 0.9858461538461538, + "t": 0.9846342962507683, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.59431810326951, + "t": 0.7148490142251062, + "punct": null + } + }, + "ur": { + "opus100": { + "u": 0.7337969401947149, + "t": 0.7146426786606698, + "punct": null + }, + "ud": { + "u": 0.991701244813278, + "t": 0.9947862356621481, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6196477495107632, + "t": 0.669364918754836, + "punct": null + } + }, + "uz": { + "opus100": { + "u": 0.9107046799354491, + "t": 0.9178276940574354, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.14381901427417182, + "t": 0.6809215479596447, + "punct": null + } + }, + "vi": { + "opus100": { + "u": 0.9587973273942093, + "t": 0.9578565447948647, + "punct": null + }, + "ud": { + "u": 0.9993060374739764, + "t": 0.9993060374739764, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4604205318491033, + "t": 0.636193478475027, + "punct": null + } + }, + "xh": { + "opus100": { + "u": 0.9347826086956523, + "t": 0.9315310020570086, + "punct": null + } + }, + "yi": { + "opus100": { + "u": 0.9185252617205281, + "t": 0.9159049360146253, + "punct": null + } + }, + "yo": { + "opus100": { + "u": 0.7554340752310297, + "t": null, + "punct": null + }, + "ud": { + "u": 0.8707482993197279, + "t": null, + "punct": null + } + }, + "zh": { + "ersatz": { + "u": 0.9331460674157305, + "t": 0.9155968314668123, + "punct": null + }, + "opus100": { + "u": 0.9088302752293578, + "t": 0.9131886477462436, + "punct": null + }, + "ud": { + "u": 0.9877913429522752, + "t": 0.9877913429522752, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3798424517103702, + "t": 0.6780713425837925, + "punct": null + } + }, + "zu": { + "opus100": { + "u": 0.9538642374375551, + "t": 0.9568323905924383, + "punct": null + } + }, + "tr-de": { + "code-switching": { + "u": 0.9993089149965445, + "t": 0.9951890034364262, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.04582210242587601, + "t": 0.39780109945027486, + "punct": null + } + }, + "es-en": { + "code-switching": { + "u": 0.9386503067484663, + "t": 0.9383802816901409, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.02136400986031224, + "t": 0.5076523245740687, + "punct": null + } + }, + "vi-en": { + "code-switching": { + "u": 0.008136696501220505, + "t": 0.47782169521299955, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.014598540145985401, + "t": 0.4497098646034816, + "punct": null + } + }, + "en-de": { + "code-switching": { + "u": 0.8748964374482187, + "t": 0.9218181818181818, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.5754437869822485, + "t": 0.5805471124620061, + "punct": null + }, + "short-sequences": { + "u": 0.90223473446993, + "t": 0.9027852278306333, + "punct": null, + "acc_u": 0.6070686070686071, + "acc_t": 0.632016632016632, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.7068621522107426, + "t": 0.7061834903593343, + "punct": null, + "acc_u": 0.1787941787941788, + "acc_t": 0.15592515592515593, + "acc_punct": null + } + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-sm-12l_no_pretraining.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-sm-12l_no_pretraining.json new file mode 100644 index 0000000000000000000000000000000000000000..b849a8154a904df1f2a2a930c977b81dd19eac5d --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-sm-12l_no_pretraining.json @@ -0,0 +1,1645 @@ +{ + "af": { + "opus100": { + "u": 0.8898864536572485, + "t": 0.9170454545454545, + "punct": null + }, + "ud": { + "u": 0.9909208819714656, + "t": 1.0, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6492374727668846, + "t": 0.7040520984081042, + "punct": null + } + }, + "am": { + "opus100": { + "u": 0.7593838142764157, + "t": 0.8531624407913068, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5693069306930693, + "t": 0.5751520417028672, + "punct": null + } + }, + "ar": { + "ersatz": { + "u": 0.8905211612451907, + "t": 0.9128598848368522, + "punct": null + }, + "opus100": { + "u": 0.7598516458043579, + "t": 0.8155495978552278, + "punct": null + }, + "ud": { + "u": 0.8221614227086183, + "t": 0.8868501529051989, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.575989427557905, + "t": 0.641989156851748, + "punct": null + } + }, + "az": { + "opus100": { + "u": 0.8680996580361504, + "t": 0.8961292119186856, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7325673820362744, + "t": 0.7367629362214199, + "punct": null + } + }, + "be": { + "opus100": { + "u": 0.8964355879876508, + "t": 0.8960000000000001, + "punct": null + }, + "ud": { + "u": 0.932135728542914, + "t": 0.9542346133613887, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6494242023787049, + "t": 0.7374374948766292, + "punct": null + } + }, + "bg": { + "opus100": { + "u": 0.9569633787757285, + "t": 0.9698778833107191, + "punct": null + }, + "ud": { + "u": 0.994053518334985, + "t": 0.9985037406483791, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6620982986767486, + "t": 0.7495836802664446, + "punct": null + } + }, + "bn": { + "opus100": { + "u": 0.831199620673305, + "t": 0.920285871357889, + "punct": null + }, + "ud": { + "u": 0.99009900990099, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.2739010024573858, + "t": 0.3598312515509968, + "punct": null + } + }, + "ca": { + "opus100": { + "u": 0.9319261213720317, + "t": 0.9565217391304348, + "punct": null + }, + "ud": { + "u": 0.9842869848799288, + "t": 0.9993983152827919, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6205780686916232, + "t": 0.7344064386317908, + "punct": null + } + }, + "ceb": { + "ud": { + "u": 0.9912023460410557, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3728813559322034, + "t": 0.3404255319148936, + "punct": null + } + }, + "cs": { + "ersatz": { + "u": 0.9773442416614223, + "t": 0.9948519948519949, + "punct": null + }, + "opus100": { + "u": 0.9352785145888595, + "t": 0.9533735600658255, + "punct": null + }, + "ud": { + "u": 0.9563745967955158, + "t": 0.9701926771696767, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6490723210904961, + "t": 0.7581141439205956, + "punct": null + } + }, + "cy": { + "opus100": { + "u": 0.860616341532372, + "t": 0.8692709935404491, + "punct": null + }, + "ud": { + "u": 0.9959231217239372, + "t": 0.9970743124634289, + "punct": null + } + }, + "da": { + "opus100": { + "u": 0.9440298507462687, + "t": 0.9583446773754424, + "punct": null + }, + "ud": { + "u": 0.9769230769230769, + "t": 0.9901960784313726, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7166157421353876, + "t": 0.7678221059516023, + "punct": null + } + }, + "de": { + "ersatz": { + "u": 0.9608269858541894, + "t": 0.9943181818181818, + "punct": null + }, + "opus100": { + "u": 0.8702972901867929, + "t": 0.8932960893854748, + "punct": null + }, + "ud": { + "u": 0.9893078221722004, + "t": 0.9896788990825689, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.725728987993139, + "t": 0.7838105669430971, + "punct": null + }, + "legal-all-laws": { + "u": 0.8882391250499664, + "t": 0.9188715890657938, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.7391636421529966, + "t": 0.8434885097248553, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.7779826467522595, + "t": 0.7379228687634184, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.6482199331548237, + "t": 0.6956263453594427, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "el": { + "opus100": { + "u": 0.9529914529914529, + "t": 0.9647314161692893, + "punct": null + }, + "ud": { + "u": 0.9745454545454545, + "t": 0.9802469135802468, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.699301321703529, + "t": 0.7260181582360571, + "punct": null + } + }, + "en": { + "ersatz": { + "u": 0.9629268292682926, + "t": 0.9880616453223355, + "punct": null + }, + "opus100": { + "u": 0.9490343347639485, + "t": 0.9571815718157181, + "punct": null + }, + "ud": { + "u": 0.9516765285996055, + "t": 0.9717514124293786, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6234232912877676, + "t": 0.7426882389545738, + "punct": null + }, + "legal-all-judgements": { + "u": 0.8916963923644315, + "t": 0.9151622260988597, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.6964244016411085, + "t": 0.7438889236533651, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "eo": { + "opus100": { + "u": 0.9586821496084256, + "t": 0.9636817299695039, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6564234465953702, + "t": 0.6842599843382928, + "punct": null + } + }, + "es": { + "ersatz": { + "u": 0.9828632631203142, + "t": null, + "punct": null + }, + "opus100": { + "u": 0.94252261841405, + "t": 0.9551508562109269, + "punct": null + }, + "ud": { + "u": 0.979113924050633, + "t": 0.9938965628011566, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6313636363636365, + "t": 0.7234879032258064, + "punct": null + }, + "legal-all-laws": { + "u": 0.919483905414826, + "t": 0.9221739779855946, + "punct": null, + "acc_u": 0.33879781420765026, + "acc_t": 0.3333333333333333, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.8049326223406359, + "t": 0.8251094224989333, + "punct": null, + "acc_u": 0.09289617486338798, + "acc_t": 0.15300546448087432, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.8024097991142728, + "t": 0.8062938590407825, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.6173988442406534, + "t": 0.639074008958776, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "et": { + "ersatz": { + "u": 0.9824086603518268, + "t": 0.9961517317207257, + "punct": null + }, + "opus100": { + "u": 0.8975139523084728, + "t": 0.9510795299262094, + "punct": null + }, + "ud": { + "u": 0.9713024282560706, + "t": 0.9873109681905092, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.677480614021206, + "t": 0.7873374907515063, + "punct": null + }, + "short-sequences": { + "u": 0.8596991435599732, + "t": 0.9165470720332012, + "punct": null, + "acc_u": 0.3891625615763547, + "acc_t": 0.5467980295566502, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.6680267233691914, + "t": 0.8234463969909857, + "punct": null, + "acc_u": 0.059113300492610835, + "acc_t": 0.2660098522167488, + "acc_punct": null + } + }, + "eu": { + "opus100": { + "u": 0.9304670912951166, + "t": 0.944941687008408, + "punct": null + }, + "ud": { + "u": 0.9990743597655045, + "t": 0.9987639060568603, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6083910981393652, + "t": 0.6204963971176942, + "punct": null + } + }, + "fa": { + "opus100": { + "u": 0.7609266778122762, + "t": 0.7775530839231547, + "punct": null + }, + "ud": { + "u": 0.9984744469870328, + "t": 1.0, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6716600042078688, + "t": 0.7006148353827847, + "punct": null + } + }, + "fi": { + "ersatz": { + "u": 0.989259157256954, + "t": 0.9986076301865776, + "punct": null + }, + "opus100": { + "u": 0.9519743863393809, + "t": 0.965386695511087, + "punct": null + }, + "ud": { + "u": 0.9739803094233473, + "t": 0.988522238163558, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6871870639415579, + "t": 0.7649591046061128, + "punct": null + } + }, + "fr": { + "ersatz": { + "u": 0.9607211848036059, + "t": 0.9883913764510779, + "punct": null + }, + "opus100": { + "u": 0.9248219467159061, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9751633986928104, + "t": 0.9865951742627346, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6588400483638207, + "t": 0.7471014492753624, + "punct": null + }, + "legal-all-laws": { + "u": 0.9302546426631406, + "t": 0.9546234610173516, + "punct": null, + "acc_u": 0.6318082788671024, + "acc_t": 0.7843137254901961, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.8547068338213182, + "t": 0.8876272287826981, + "punct": null, + "acc_u": 0.4357298474945534, + "acc_t": 0.5620915032679739, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.826641279119989, + "t": 0.8655470922014497, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.6426510989303075, + "t": 0.697758185811238, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "fy": { + "opus100": { + "u": 0.9267734553775743, + "t": 0.9326775284352904, + "punct": null + } + }, + "ga": { + "opus100": { + "u": 0.905526817315546, + "t": 0.9105145413870246, + "punct": null + }, + "ud": { + "u": 0.9321058688147297, + "t": 0.9781021897810219, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4615384615384615, + "t": 0.54, + "punct": null + } + }, + "gd": { + "opus100": { + "u": 0.9023474178403755, + "t": 0.9270256668344238, + "punct": null + }, + "ud": { + "u": 0.7772108843537415, + "t": 0.8817427385892116, + "punct": null + } + }, + "gl": { + "opus100": { + "u": 0.9413326254313779, + "t": 0.9538043478260871, + "punct": null + }, + "ud": { + "u": 0.9836065573770492, + "t": 0.9958391123439668, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6951251417109967, + "t": 0.7306095247859743, + "punct": null + } + }, + "gu": { + "ersatz": { + "u": 0.9149377593360994, + "t": 0.9088851160158461, + "punct": null + }, + "opus100": { + "u": 0.8525624178712221, + "t": 0.8836118440340077, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.33435527502254286, + "t": 0.34943097476496787, + "punct": null + } + }, + "ha": { + "opus100": { + "u": 0.9054600606673407, + "t": 0.924434638720353, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.33333333333333337, + "t": 0.3404255319148936, + "punct": null + } + }, + "he": { + "opus100": { + "u": 0.9124257297855851, + "t": 0.9341189073379753, + "punct": null + }, + "ud": { + "u": 0.9805013927576602, + "t": 0.9814550641940085, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.602542882937105, + "t": 0.6594599788603824, + "punct": null + } + }, + "hi": { + "ersatz": { + "u": 0.9666381522668949, + "t": 0.9868015838099429, + "punct": null + }, + "opus100": { + "u": 0.7267665952890793, + "t": 0.8376676704078839, + "punct": null + }, + "ud": { + "u": 0.9990108803165183, + "t": 0.9996698580389567, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4911335129919819, + "t": 0.5600252548029223, + "punct": null + } + }, + "hu": { + "opus100": { + "u": 0.960926973861493, + "t": 0.9633649932157395, + "punct": null + }, + "ud": { + "u": 0.9938499384993851, + "t": 1.0, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7290966689065951, + "t": 0.7455159316311457, + "punct": null + } + }, + "hy": { + "opus100": { + "u": 0.9200030620837479, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9887850467289719, + "t": 0.9905660377358491, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7125650150561182, + "t": 0.7298110601351684, + "punct": null + } + }, + "id": { + "opus100": { + "u": 0.9398435392500675, + "t": 0.9545326179045468, + "punct": null + }, + "ud": { + "u": 0.9878453038674033, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.685561400326501, + "t": 0.6961993455826831, + "punct": null + } + }, + "ig": { + "opus100": { + "u": 0.9114002478314746, + "t": 0.9400953029271614, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.1773913043478261, + "t": 0.18584070796460178, + "punct": null + } + }, + "is": { + "opus100": { + "u": 0.9593976875504169, + "t": 0.9673202614379084, + "punct": null + }, + "ud": { + "u": 0.8704907224262974, + "t": 0.9705162320383183, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.653653389606964, + "t": 0.7132822477650065, + "punct": null + } + }, + "it": { + "opus100": { + "u": 0.9018015732047703, + "t": 0.9288350026357406, + "punct": null + }, + "ud": { + "u": 0.9897142857142857, + "t": 0.9954022988505747, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6103778044434748, + "t": 0.7299898682877406, + "punct": null + }, + "legal-all-laws": { + "u": 0.8116677654182568, + "t": 0.8249054279466425, + "punct": null, + "acc_u": 0.2471590909090909, + "acc_t": 0.5894886363636364, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.6476512959745341, + "t": 0.6660099309392586, + "punct": null, + "acc_u": 0.056818181818181816, + "acc_t": 0.09375, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.8543354171648203, + "t": 0.8732322956915222, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.5061827477067343, + "t": 0.6033825771040782, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "ja": { + "ersatz": { + "u": 0.8695228821811101, + "t": 0.9030558482613277, + "punct": null + }, + "opus100": { + "u": 0.7512321660181581, + "t": 0.7476923076923077, + "punct": null + }, + "ud": { + "u": 0.9733606557377049, + "t": 0.9742533470648815, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7376371668804332, + "t": 0.7966161438138879, + "punct": null + } + }, + "jv": { + "ud": { + "u": 0.9841443411700384, + "t": null, + "punct": null + } + }, + "ka": { + "opus100": { + "u": 0.8120851453421835, + "t": 0.9371086305472366, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6195541184479239, + "t": 0.6358033538770245, + "punct": null + } + }, + "kk": { + "ersatz": { + "u": 0.9966777408637874, + "t": 0.9977827050997783, + "punct": null + }, + "opus100": { + "u": 0.945262572936927, + "t": 0.9472140762463344, + "punct": null + }, + "ud": { + "u": 0.9973502914679385, + "t": 0.8533171028606208, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7523255813953489, + "t": 0.757628294036061, + "punct": null + } + }, + "km": { + "ersatz": { + "u": 0.7566363467607202, + "t": 0.8885167464114833, + "punct": null + }, + "opus100": { + "u": 0.8481114385212964, + "t": 0.8950075642965204, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.655893536121673, + "t": 0.66875, + "punct": null + } + }, + "kn": { + "opus100": { + "u": 0.9069212410501194, + "t": 0.907682375726275, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.39135135135135135, + "t": 0.3877847794474067, + "punct": null + } + }, + "ko": { + "opus100": { + "u": 0.8271186440677967, + "t": 0.8341789052069426, + "punct": null + }, + "ud": { + "u": 0.9990286546867411, + "t": 0.9990277102576567, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7509396814032575, + "t": 0.7644212876814289, + "punct": null + } + }, + "ku": { + "opus100": { + "u": 0.8875771397907164, + "t": 0.8989312977099236, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.20474902525554114, + "t": 0.22411090023929367, + "punct": null + } + }, + "ky": { + "opus100": { + "u": 0.9568576947842884, + "t": 0.9680816057913788, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7240948813982521, + "t": 0.7206068268015171, + "punct": null + } + }, + "la": { + "ud": { + "u": 0.9456276622400401, + "t": 0.9818659658344284, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5, + "t": 0.5714285714285714, + "punct": null + } + }, + "lt": { + "ersatz": { + "u": 0.9900552486187846, + "t": 0.9938718662952647, + "punct": null + }, + "opus100": { + "u": 0.9126418580100291, + "t": 0.9305517430688993, + "punct": null + }, + "ud": { + "u": 0.9788961038961039, + "t": 0.9826302729528535, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7041775456919059, + "t": 0.7396532718709289, + "punct": null + } + }, + "lv": { + "ersatz": { + "u": 0.9912616056799564, + "t": 0.9983471074380166, + "punct": null + }, + "opus100": { + "u": 0.8959039916514479, + "t": 0.9219088937093276, + "punct": null + }, + "ud": { + "u": 0.9924294562973158, + "t": 0.9953917050691244, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6495882196667805, + "t": 0.7671526149454583, + "punct": null + } + }, + "mg": { + "opus100": { + "u": 0.8865, + "t": 0.9642758238715037, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.486223662884927, + "t": 0.5358649789029536, + "punct": null + } + }, + "mk": { + "opus100": { + "u": 0.953519256308101, + "t": 0.9598480737927293, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.680742597391563, + "t": 0.7272358342210724, + "punct": null + } + }, + "ml": { + "opus100": { + "u": 0.8263988522238164, + "t": 0.8932249322493224, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3550068147197947, + "t": 0.45436717453612907, + "punct": null + } + }, + "mn": { + "opus100": { + "u": 0.9746219592373438, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7974727625491269, + "t": 0.8176350553109226, + "punct": null + } + }, + "mr": { + "opus100": { + "u": 0.9598901098901099, + "t": 0.9634214969048959, + "punct": null + }, + "ud": { + "u": 0.988235294117647, + "t": 1.0, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3747686810031268, + "t": 0.4245355295920321, + "punct": null + } + }, + "ms": { + "opus100": { + "u": 0.939608269858542, + "t": 0.9584863033041513, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6800618238021637, + "t": 0.6911863646557524, + "punct": null + } + }, + "mt": { + "opus100": { + "u": 0.8125, + "t": 0.8546637744034707, + "punct": null + }, + "ud": { + "u": 0.9225874867444326, + "t": 0.9544468546637744, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.37894736842105264, + "t": 0.392156862745098, + "punct": null + } + }, + "my": { + "opus100": { + "u": 0.9141791044776119, + "t": 0.9296962879640045, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.8551427571378568, + "t": 0.9137492223290538, + "punct": null + } + }, + "ne": { + "opus100": { + "u": 0.8528511821974966, + "t": 0.8652396744045825, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6074380165289256, + "t": 0.618436406067678, + "punct": null + } + }, + "nl": { + "opus100": { + "u": 0.9401307189542484, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9473684210526315, + "t": 0.9721189591078068, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7128712871287128, + "t": 0.8179399872313258, + "punct": null + } + }, + "no": { + "opus100": { + "u": 0.9591397849462365, + "t": 0.9644311702416508, + "punct": null + }, + "ud": { + "u": 0.990888382687927, + "t": 0.9965556831228474, + "punct": null + } + }, + "pa": { + "opus100": { + "u": 0.844804318488529, + "t": 0.8538922155688623, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4892703862660945, + "t": 0.48822800495662944, + "punct": null + } + }, + "pl": { + "ersatz": { + "u": 0.988480526604498, + "t": 0.9939125622578859, + "punct": null + }, + "opus100": { + "u": 0.9523299410819496, + "t": 0.9636114911080711, + "punct": null + }, + "ud": { + "u": 0.9949974987493747, + "t": 0.9972396486825595, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7161315414199906, + "t": 0.7749589153656532, + "punct": null + } + }, + "ps": { + "ersatz": { + "u": 0.7613906969360216, + "t": 0.8595260663507108, + "punct": null + }, + "opus100": { + "u": 0.8917311124330755, + "t": 0.8945868945868947, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5209244222361025, + "t": 0.5622612681436211, + "punct": null + } + }, + "pt": { + "opus100": { + "u": 0.935856992639327, + "t": 0.9590452942771901, + "punct": null + }, + "ud": { + "u": 0.9685476410730806, + "t": 0.9881009043312708, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6694905189818297, + "t": 0.7637276435519298, + "punct": null + }, + "legal-all-laws": { + "u": 0.8324523424484136, + "t": 0.7368592838043876, + "punct": null, + "acc_u": 0.22413793103448276, + "acc_t": 0.1206896551724138, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.7204709750974746, + "t": 0.7246029128629284, + "punct": null, + "acc_u": 0.10344827586206896, + "acc_t": 0.10344827586206896, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.7903036694107122, + "t": 0.786157427442135, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.5842921014868265, + "t": 0.6762765101876942, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "ro": { + "ersatz": { + "u": 0.9825232113599126, + "t": 0.9961175818080976, + "punct": null + }, + "opus100": { + "u": 0.9399311987298228, + "t": 0.963531669865643, + "punct": null + }, + "ud": { + "u": 0.9657289002557545, + "t": 0.9946977730646872, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6565628803643645, + "t": 0.7468591008202677, + "punct": null + } + }, + "ru": { + "ersatz": { + "u": 0.989977728285078, + "t": 0.9977528089887641, + "punct": null + }, + "opus100": { + "u": 0.861145859394546, + "t": null, + "punct": null + }, + "ud": { + "u": 0.8868571428571428, + "t": 0.9454770755885997, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6957347537057682, + "t": 0.7619329388560158, + "punct": null + } + }, + "si": { + "opus100": { + "u": 0.849553128103277, + "t": 0.885066885066885, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5869731800766284, + "t": 0.6118881118881118, + "punct": null + } + }, + "sk": { + "opus100": { + "u": 0.9442379182156134, + "t": 0.9655172413793104, + "punct": null + }, + "ud": { + "u": 0.9740124740124741, + "t": 0.9751191106405505, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6620861961274204, + "t": 0.7564719590658088, + "punct": null + } + }, + "sl": { + "opus100": { + "u": 0.9512909236092627, + "t": 0.9581320450885669, + "punct": null + }, + "ud": { + "u": 0.9804088586030665, + "t": 0.997398091934085, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6762147929466209, + "t": 0.7849278460716194, + "punct": null + }, + "short-sequences": { + "u": 0.7397307038423587, + "t": 0.8127657455294596, + "punct": null, + "acc_u": 0.2401026392961877, + "acc_t": 0.3907624633431085, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.5460872580979569, + "t": 0.6725216722834025, + "punct": null, + "acc_u": 0.06488269794721407, + "acc_t": 0.15065982404692083, + "acc_punct": null + } + }, + "sq": { + "opus100": { + "u": 0.958288190682557, + "t": 0.9676706272450954, + "punct": null + }, + "ud": { + "u": 0.9908256880733944, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6544003360638521, + "t": 0.6924212598425196, + "punct": null + } + }, + "sr": { + "opus100": { + "u": 0.9609900457358084, + "t": 0.9665488169703562, + "punct": null + }, + "ud": { + "u": 0.9968051118210862, + "t": 1.0, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6725386100386102, + "t": 0.7372436342019221, + "punct": null + }, + "short-sequences": { + "u": 0.8409467319853349, + "t": 0.9312127976190476, + "punct": null, + "acc_u": 0.4427083333333333, + "acc_t": 0.7395833333333334, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.6384569117565441, + "t": 0.736155055456526, + "punct": null, + "acc_u": 0.09375, + "acc_t": 0.2760416666666667, + "acc_punct": null + } + }, + "sv": { + "opus100": { + "u": 0.9466418900982213, + "t": 0.9604764482945317, + "punct": null + }, + "ud": { + "u": 0.9456967213114753, + "t": 0.9627263045793397, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7288516640952171, + "t": 0.772117962466488, + "punct": null + } + }, + "ta": { + "ersatz": { + "u": 0.9803278688524589, + "t": 0.9878453038674033, + "punct": null + }, + "opus100": { + "u": 0.8069135802469135, + "t": 0.8617791944363954, + "punct": null + }, + "ud": { + "u": 0.9863013698630138, + "t": 0.9906542056074767, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4850988492180585, + "t": 0.5004899777282851, + "punct": null + } + }, + "te": { + "opus100": { + "u": 0.8686496446433273, + "t": 0.8957845433255269, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.45657688126585333, + "t": 0.5112511251125114, + "punct": null + } + }, + "tg": { + "opus100": { + "u": 0.908625543895572, + "t": 0.9322081575246132, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.456754130223518, + "t": 0.5200594353640416, + "punct": null + } + }, + "th": { + "opus100": { + "u": 0.7652806180413543, + "t": 0.8084994753410283, + "punct": null + }, + "ud": { + "u": 0.8844327176781003, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6636767237473951, + "t": 0.6658147569690945, + "punct": null + } + }, + "tr": { + "ersatz": { + "u": 0.9818381948266374, + "t": 0.9826568265682657, + "punct": null + }, + "opus100": { + "u": 0.9495820976004313, + "t": 0.9547930283224401, + "punct": null + }, + "ud": { + "u": 0.9829145728643215, + "t": 0.9827411167512691, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.73271719038817, + "t": 0.7482050509614901, + "punct": null + } + }, + "uk": { + "opus100": { + "u": 0.9376479873717444, + "t": 0.9543366657660092, + "punct": null + }, + "ud": { + "u": 0.9738919247115968, + "t": 0.9789864029666254, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6991413612565445, + "t": 0.7624792640627356, + "punct": null + } + }, + "ur": { + "opus100": { + "u": 0.6239366963402572, + "t": 0.7225609756097561, + "punct": null + }, + "ud": { + "u": 0.9845837615621787, + "t": 0.991701244813278, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5876096286620639, + "t": 0.6486295729914127, + "punct": null + } + }, + "uz": { + "opus100": { + "u": 0.8203928905519178, + "t": 0.8970753655793026, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6875309252845125, + "t": 0.6955355945837244, + "punct": null + } + }, + "vi": { + "opus100": { + "u": 0.9541689674213142, + "t": 0.957298353335194, + "punct": null + }, + "ud": { + "u": 0.9944674965421854, + "t": 0.9993050729673384, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6808784342552604, + "t": 0.6879492390819412, + "punct": null + } + }, + "xh": { + "opus100": { + "u": 0.8234432234432235, + "t": 0.9135514018691588, + "punct": null + } + }, + "yi": { + "opus100": { + "u": 0.9385425812115892, + "t": 0.9241253975465697, + "punct": null + } + }, + "yo": { + "opus100": { + "u": 0.7490365635868034, + "t": null, + "punct": null + }, + "ud": { + "u": 0.8597560975609756, + "t": null, + "punct": null + } + }, + "zh": { + "ersatz": { + "u": 0.9180238870792616, + "t": 0.9222313822478702, + "punct": null + }, + "opus100": { + "u": 0.8329448329448329, + "t": 0.8402961396086727, + "punct": null + }, + "ud": { + "u": 0.9845132743362831, + "t": 0.9877913429522752, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5857402774619059, + "t": 0.590102140077821, + "punct": null + } + }, + "zu": { + "opus100": { + "u": 0.9399715504978663, + "t": 0.9588550983899821, + "punct": null + } + }, + "tr-de": { + "code-switching": { + "u": 0.8552864737152983, + "t": 0.9897470950102529, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.28483848149021457, + "t": 0.398019801980198, + "punct": null + } + }, + "es-en": { + "code-switching": { + "u": 0.5364635364635364, + "t": 0.811698717948718, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.4232870954182429, + "t": 0.5650661099512874, + "punct": null + } + }, + "vi-en": { + "code-switching": { + "u": 0.517056856187291, + "t": 0.5166947723440135, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.5184439973172368, + "t": 0.5220994475138121, + "punct": null + } + }, + "en-de": { + "code-switching": { + "u": 0.6116676487919859, + "t": 0.7733549959382616, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.41904761904761906, + "t": 0.6010544815465729, + "punct": null + }, + "short-sequences": { + "u": 0.8294016596623394, + "t": 0.8858403570891407, + "punct": null, + "acc_u": 0.3492723492723493, + "acc_t": 0.5654885654885655, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.6535531801734773, + "t": 0.7327722198626745, + "punct": null, + "acc_u": 0.10395010395010396, + "acc_t": 0.19750519750519752, + "acc_punct": null + } + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-sm-1l.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-sm-1l.json new file mode 100644 index 0000000000000000000000000000000000000000..bc16d28f0254ea74395bd07a7b7655ff5bdc55f4 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-sm-1l.json @@ -0,0 +1,1645 @@ +{ + "af": { + "opus100": { + "u": 0.598806860551827, + "t": 0.801516382344977, + "punct": null + }, + "ud": { + "u": 0.9986928104575163, + "t": 0.9986928104575163, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4001996007984032, + "t": 0.4262189215369713, + "punct": null + } + }, + "am": { + "opus100": { + "u": 0.26799242424242425, + "t": 0.6443243243243243, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.40825688073394495, + "t": 0.46095954844778925, + "punct": null + } + }, + "ar": { + "ersatz": { + "u": 0.9216730038022813, + "t": 0.9240847784200387, + "punct": null + }, + "opus100": { + "u": 0.5961043733921353, + "t": 0.6196943972835314, + "punct": null + }, + "ud": { + "u": 0.8015810276679841, + "t": 0.8037825059101655, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.1128400954653938, + "t": 0.3953082295778925, + "punct": null + } + }, + "az": { + "opus100": { + "u": 0.7732984293193716, + "t": 0.799203782035332, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.637619927823255, + "t": 0.666460443894517, + "punct": null + } + }, + "be": { + "opus100": { + "u": 0.6385110952040086, + "t": 0.8014480646059594, + "punct": null + }, + "ud": { + "u": 0.8189349112426034, + "t": 0.8746298124383021, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.34089573292582576, + "t": 0.4332084011031751, + "punct": null + } + }, + "bg": { + "opus100": { + "u": 0.943789415958322, + "t": 0.9447318268445413, + "punct": null + }, + "ud": { + "u": 0.9484004127966976, + "t": 0.9560493827160493, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.46117064423856896, + "t": 0.4606182326231226, + "punct": null + } + }, + "bn": { + "opus100": { + "u": 0.8275490987355395, + "t": 0.8225591912742751, + "punct": null + }, + "ud": { + "u": 1.0, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.11409513779182025, + "t": 0.2682464454976303, + "punct": null + } + }, + "ca": { + "opus100": { + "u": 0.8942093541202673, + "t": 0.8938923395445135, + "punct": null + }, + "ud": { + "u": 0.9898688915375448, + "t": 0.9966957044157405, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.36219559335137225, + "t": 0.4018569217950244, + "punct": null + } + }, + "ceb": { + "ud": { + "u": 0.9940828402366864, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.21951219512195122, + "t": 0.3064516129032258, + "punct": null + } + }, + "cs": { + "ersatz": { + "u": 0.965016501650165, + "t": 0.9662698412698413, + "punct": null + }, + "opus100": { + "u": 0.8868253047011028, + "t": 0.9014159764894468, + "punct": null + }, + "ud": { + "u": 0.8908920627487708, + "t": 0.8838667106565491, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.42280556131977587, + "t": 0.42526526861057734, + "punct": null + } + }, + "cy": { + "opus100": { + "u": 0.32270531400966185, + "t": 0.729918509895227, + "punct": null + }, + "ud": { + "u": 0.9923753665689149, + "t": 0.9900642898889539, + "punct": null + } + }, + "da": { + "opus100": { + "u": 0.9048283561261512, + "t": 0.905902004454343, + "punct": null + }, + "ud": { + "u": 0.9398797595190381, + "t": 0.9530612244897959, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.42885999242519884, + "t": 0.4578535684788418, + "punct": null + } + }, + "de": { + "ersatz": { + "u": 0.9522693997071742, + "t": 0.9551622418879055, + "punct": null + }, + "opus100": { + "u": 0.7506329113924051, + "t": 0.7681947681947683, + "punct": null + }, + "ud": { + "u": 0.9310137972405519, + "t": 0.9327680193821926, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4312662374336383, + "t": 0.44431048873226375, + "punct": null + }, + "legal-all-laws": { + "u": 0.7511333158520798, + "t": 0.7138931377419722, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.38178681912872037, + "t": 0.4138642671014776, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.7303298029145556, + "t": 0.7435221996908239, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.26195438692366907, + "t": 0.343377546245001, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "el": { + "opus100": { + "u": 0.9394190871369295, + "t": 0.9390681003584229, + "punct": null + }, + "ud": { + "u": 0.9422110552763818, + "t": 0.9388753056234719, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.350365952832746, + "t": 0.4174117075933492, + "punct": null + } + }, + "en": { + "ersatz": { + "u": 0.8268693009118541, + "t": 0.9676330275229358, + "punct": null + }, + "opus100": { + "u": 0.8909657320872274, + "t": 0.9158928097638632, + "punct": null + }, + "ud": { + "u": 0.9284611425630469, + "t": 0.9247881355932204, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4284306095979248, + "t": 0.43589527027027025, + "punct": null + }, + "legal-all-judgements": { + "u": 0.814894197525921, + "t": 0.8183175167912022, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.18078062728425967, + "t": 0.31343055392811003, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "eo": { + "opus100": { + "u": 0.9234246962418762, + "t": 0.9341383095499453, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4301628106255356, + "t": 0.4376858610435253, + "punct": null + } + }, + "es": { + "ersatz": { + "u": 0.9550072568940494, + "t": null, + "punct": null + }, + "opus100": { + "u": 0.8888278891023882, + "t": 0.9022598870056496, + "punct": null + }, + "ud": { + "u": 0.9737258626147515, + "t": 0.9863901490602722, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.37759436824857384, + "t": 0.4187545315395151, + "punct": null + }, + "legal-all-laws": { + "u": 0.9045060557523987, + "t": 0.9182986699192894, + "punct": null, + "acc_u": 0.29508196721311475, + "acc_t": 0.3825136612021858, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.4399150853685214, + "t": 0.47869651723131773, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.7104359605424839, + "t": 0.7161027929370346, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.1453422160864028, + "t": 0.26496507368443073, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "et": { + "ersatz": { + "u": 0.9749303621169917, + "t": 0.963626492942454, + "punct": null + }, + "opus100": { + "u": 0.8646864686468646, + "t": 0.904006453347674, + "punct": null + }, + "ud": { + "u": 0.9311393310677875, + "t": 0.929872002884442, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.31184148451014315, + "t": 0.4179773267016176, + "punct": null + }, + "short-sequences": { + "u": 0.8974419733739167, + "t": 0.9076816220772879, + "punct": null, + "acc_u": 0.4729064039408867, + "acc_t": 0.5221674876847291, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.5868210473447151, + "t": 0.5864281691488229, + "punct": null, + "acc_u": 0.029556650246305417, + "acc_t": 0.029556650246305417, + "acc_punct": null + } + }, + "eu": { + "opus100": { + "u": 0.8486424032351242, + "t": 0.8772298006295908, + "punct": null + }, + "ud": { + "u": 0.9938309685379396, + "t": 0.9935324915306437, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.2872126757420219, + "t": 0.3665512233270025, + "punct": null + } + }, + "fa": { + "opus100": { + "u": 0.5332912590722626, + "t": 0.5405272234540527, + "punct": null + }, + "ud": { + "u": 0.9977134146341464, + "t": 0.9988553987027853, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.550229302437847, + "t": 0.5504605328315342, + "punct": null + } + }, + "fi": { + "ersatz": { + "u": 0.9610389610389609, + "t": 0.9619891397542155, + "punct": null + }, + "opus100": { + "u": 0.9339622641509434, + "t": 0.9327978580990629, + "punct": null + }, + "ud": { + "u": 0.9359970403255642, + "t": 0.9387464387464387, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.36614730878186963, + "t": 0.4406611719137054, + "punct": null + } + }, + "fr": { + "ersatz": { + "u": 0.9612349914236707, + "t": 0.9597523219814241, + "punct": null + }, + "opus100": { + "u": 0.8661679135494597, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9602122015915119, + "t": 0.9666221628838451, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3570672500176416, + "t": 0.4554878786656448, + "punct": null + }, + "legal-all-laws": { + "u": 0.8291674012781539, + "t": 0.8737060666508869, + "punct": null, + "acc_u": 0.5032679738562091, + "acc_t": 0.5751633986928104, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.2701776843198047, + "t": 0.34533075261778245, + "punct": null, + "acc_u": 0.010893246187363835, + "acc_t": 0.02832244008714597, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.7216251860392519, + "t": 0.7631318015487888, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.2208019252290554, + "t": 0.3008127399908799, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "fy": { + "opus100": { + "u": 0.6339321357285429, + "t": 0.8403990024937656, + "punct": null + } + }, + "ga": { + "opus100": { + "u": 0.6192816635160681, + "t": 0.8030176026823135, + "punct": null + }, + "ud": { + "u": 0.9818181818181818, + "t": 0.9829268292682927, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.2985074626865672, + "t": 0.3132530120481927, + "punct": null + } + }, + "gd": { + "opus100": { + "u": 0.4428571428571429, + "t": 0.799225931301403, + "punct": null + }, + "ud": { + "u": 0.7075351213282248, + "t": 0.7366120218579235, + "punct": null + } + }, + "gl": { + "opus100": { + "u": 0.889811738648948, + "t": 0.8809278350515464, + "punct": null + }, + "ud": { + "u": 0.943342776203966, + "t": 0.9432432432432432, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.38562425481178675, + "t": 0.40444949277349107, + "punct": null + } + }, + "gu": { + "ersatz": { + "u": 0.9262926292629263, + "t": 0.9229910714285714, + "punct": null + }, + "opus100": { + "u": 0.6659412404787813, + "t": 0.7522098659823211, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.2721396250808016, + "t": 0.3377372641781573, + "punct": null + } + }, + "ha": { + "opus100": { + "u": 0.8891257995735607, + "t": 0.8964992389649924, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.23076923076923075, + "t": 0.30769230769230765, + "punct": null + } + }, + "he": { + "opus100": { + "u": 0.9172690763052209, + "t": 0.9360755975541968, + "punct": null + }, + "ud": { + "u": 0.9415292353823089, + "t": 0.9418777943368107, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.16521896489323198, + "t": 0.3700076265403604, + "punct": null + } + }, + "hi": { + "ersatz": { + "u": 0.90741956664478, + "t": 0.9473684210526316, + "punct": null + }, + "opus100": { + "u": 0.6379258365993367, + "t": 0.6477244153884839, + "punct": null + }, + "ud": { + "u": 0.9966974900924702, + "t": 0.9976844194508766, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4525027585515097, + "t": 0.45556249099726315, + "punct": null + } + }, + "hu": { + "opus100": { + "u": 0.9400386847195358, + "t": 0.940980881130507, + "punct": null + }, + "ud": { + "u": 0.9900744416873448, + "t": 0.9888198757763975, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.1119359249853487, + "t": 0.38493181991315606, + "punct": null + } + }, + "hy": { + "opus100": { + "u": 0.8077994428969358, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9312063808574277, + "t": 0.9640831758034026, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.33775723232925736, + "t": 0.44937915836758907, + "punct": null + } + }, + "id": { + "opus100": { + "u": 0.9166197183098592, + "t": 0.9139815074250491, + "punct": null + }, + "ud": { + "u": 0.9775095995611629, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4333591416878664, + "t": 0.43979451196591907, + "punct": null + } + }, + "ig": { + "opus100": { + "u": 0.2600116076610563, + "t": 0.8922670191672175, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.07142857142857142, + "t": 0.14685314685314688, + "punct": null + } + }, + "is": { + "opus100": { + "u": 0.9530646051905025, + "t": 0.9449492250133618, + "punct": null + }, + "ud": { + "u": 0.9638168427793788, + "t": 0.9592417061611375, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.23468803663423013, + "t": 0.4357682619647355, + "punct": null + } + }, + "it": { + "opus100": { + "u": 0.8664563617245006, + "t": 0.8876498466685252, + "punct": null + }, + "ud": { + "u": 0.981859410430839, + "t": 0.9874285714285714, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3899880562912188, + "t": 0.4048074296640263, + "punct": null + }, + "legal-all-laws": { + "u": 0.7947146106617172, + "t": 0.7866469110157553, + "punct": null, + "acc_u": 0.3849431818181818, + "acc_t": 0.46875, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.32938855033230535, + "t": 0.3088533447264671, + "punct": null, + "acc_u": 0.05397727272727273, + "acc_t": 0.048295454545454544, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.7519384988845592, + "t": 0.7678155802126032, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.21564356303066126, + "t": 0.2655048042428471, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "ja": { + "ersatz": { + "u": 0.8562019758507136, + "t": 0.8773148148148148, + "punct": null + }, + "opus100": { + "u": 0.5659259259259259, + "t": 0.7011788826242952, + "punct": null + }, + "ud": { + "u": 0.9679420889348501, + "t": 0.9665271966527197, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7827259003666164, + "t": 0.8411815597577554, + "punct": null + } + }, + "jv": { + "ud": { + "u": 0.9906336088154271, + "t": null, + "punct": null + } + }, + "ka": { + "opus100": { + "u": 0.9139966273187183, + "t": 0.9225294278675061, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.2708710261049367, + "t": 0.34910001353363107, + "punct": null + } + }, + "kk": { + "ersatz": { + "u": 0.9961046188091263, + "t": 0.9846322722283204, + "punct": null + }, + "opus100": { + "u": 0.6798534798534799, + "t": 0.8611996522747031, + "punct": null + }, + "ud": { + "u": 0.9847448711204629, + "t": 0.9842602308499474, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.42433397418291674, + "t": 0.6264309918490704, + "punct": null + } + }, + "km": { + "ersatz": { + "u": 0.8642672312397084, + "t": 0.9050422318914769, + "punct": null + }, + "opus100": { + "u": 0.6810302129767211, + "t": 0.727433628318584, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3787289234760052, + "t": 0.37865748709122204, + "punct": null + } + }, + "kn": { + "opus100": { + "u": 0.5843270868824532, + "t": 0.7063711911357342, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.22514619883040937, + "t": 0.35607843137254896, + "punct": null + } + }, + "ko": { + "opus100": { + "u": 0.6786296900489397, + "t": 0.7397029980386663, + "punct": null + }, + "ud": { + "u": 0.9987855234393976, + "t": 0.9975657254138267, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7753145027296463, + "t": 0.7762161132021536, + "punct": null + } + }, + "ku": { + "opus100": { + "u": 0.776874435411021, + "t": 0.7244094488188977, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.02726014268980939, + "t": 0.2608580508474576, + "punct": null + } + }, + "ky": { + "opus100": { + "u": 0.8236162361623617, + "t": 0.8722149410222805, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.49840255591054317, + "t": 0.5761843790012804, + "punct": null + } + }, + "la": { + "ud": { + "u": 0.9390402075226978, + "t": 0.9380530973451328, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.30769230769230765, + "t": 0.4, + "punct": null + } + }, + "lt": { + "ersatz": { + "u": 0.9143173023770038, + "t": 0.9387521465369204, + "punct": null + }, + "opus100": { + "u": 0.8136349155782097, + "t": 0.8223738062755797, + "punct": null + }, + "ud": { + "u": 0.9261410788381743, + "t": 0.9213114754098359, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.31572912934432107, + "t": 0.40300505159535427, + "punct": null + } + }, + "lv": { + "ersatz": { + "u": 0.9859154929577465, + "t": 0.9891936824605153, + "punct": null + }, + "opus100": { + "u": 0.8052784036047635, + "t": 0.785027293995321, + "punct": null + }, + "ud": { + "u": 0.9863457532978478, + "t": 0.9872360176375029, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3240495453569127, + "t": 0.41390062774381486, + "punct": null + } + }, + "mg": { + "opus100": { + "u": 0.8502475247524752, + "t": 0.8715811409221152, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.21926910299003322, + "t": 0.3018181818181818, + "punct": null + } + }, + "mk": { + "opus100": { + "u": 0.9415900486749594, + "t": 0.943264318365152, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.44251926246789586, + "t": 0.4461493313210078, + "punct": null + } + }, + "ml": { + "opus100": { + "u": 0.8392711449551264, + "t": 0.83528102392877, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4114546732255797, + "t": 0.41999441496788603, + "punct": null + } + }, + "mn": { + "opus100": { + "u": 0.3473707178703906, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7401774397972116, + "t": 0.7429537153137435, + "punct": null + } + }, + "mr": { + "opus100": { + "u": 0.9028901734104046, + "t": 0.9079059223576084, + "punct": null + }, + "ud": { + "u": 0.9523809523809523, + "t": 0.923076923076923, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.32495205625399526, + "t": 0.32319545823195456, + "punct": null + } + }, + "ms": { + "opus100": { + "u": 0.9007153075822604, + "t": 0.89470871191876, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.42477608936298683, + "t": 0.4397712379363756, + "punct": null + } + }, + "mt": { + "opus100": { + "u": 0.6450884456153556, + "t": 0.7099381835473133, + "punct": null + }, + "ud": { + "u": 0.9222096956031567, + "t": 0.9392265193370166, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.021052631578947368, + "t": 0.24832214765100669, + "punct": null + } + }, + "my": { + "opus100": { + "u": 0.7725631768953067, + "t": 0.7704764870756774, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.8701734750979295, + "t": 0.8786862087232915, + "punct": null + } + }, + "ne": { + "opus100": { + "u": 0.6888731396172927, + "t": 0.7558509101415776, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.47644603458556944, + "t": 0.5547385620915033, + "punct": null + } + }, + "nl": { + "opus100": { + "u": 0.9366551815531408, + "t": null, + "punct": null + }, + "ud": { + "u": 0.934720908230842, + "t": 0.9348441926345609, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4675442122186495, + "t": 0.46821586326099485, + "punct": null + } + }, + "no": { + "opus100": { + "u": 0.9523550231418458, + "t": 0.9518891002989943, + "punct": null + }, + "ud": { + "u": 0.967032967032967, + "t": 0.9675952245594088, + "punct": null + } + }, + "pa": { + "opus100": { + "u": 0.6173205033308661, + "t": 0.7148721187243449, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.1783132530120482, + "t": 0.386892177589852, + "punct": null + } + }, + "pl": { + "ersatz": { + "u": 0.9484536082474226, + "t": 0.9452852153667054, + "punct": null + }, + "opus100": { + "u": 0.9337766694375172, + "t": 0.9335180055401662, + "punct": null + }, + "ud": { + "u": 0.9818913480885311, + "t": 0.9852866565195333, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.41516395881687795, + "t": 0.44775997048817473, + "punct": null + } + }, + "ps": { + "ersatz": { + "u": 0.899304865938431, + "t": 0.9338947368421052, + "punct": null + }, + "opus100": { + "u": 0.6976217440543601, + "t": 0.7540773904700991, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4871606749816582, + "t": 0.4720194647201946, + "punct": null + } + }, + "pt": { + "opus100": { + "u": 0.9121676067687349, + "t": 0.9218106995884774, + "punct": null + }, + "ud": { + "u": 0.9274790330537742, + "t": 0.9301895515487748, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4549335165104755, + "t": 0.45387293298520454, + "punct": null + }, + "legal-all-laws": { + "u": 0.6963796272508191, + "t": 0.6308973944151256, + "punct": null, + "acc_u": 0.08620689655172414, + "acc_t": 0.05172413793103448, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.4577408649060269, + "t": 0.4223303079429923, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.7578737438881799, + "t": 0.7805533325013817, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.18379273145245, + "t": 0.11036936634520882, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "ro": { + "ersatz": { + "u": 0.9576584256891162, + "t": 0.9606389047347405, + "punct": null + }, + "opus100": { + "u": 0.9369571308489772, + "t": 0.9356270810210877, + "punct": null + }, + "ud": { + "u": 0.988929889298893, + "t": 0.988929889298893, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.33991037388803425, + "t": 0.40681702560624045, + "punct": null + } + }, + "ru": { + "ersatz": { + "u": 0.9438596491228071, + "t": 0.9434628975265017, + "punct": null + }, + "opus100": { + "u": 0.8111206649469762, + "t": null, + "punct": null + }, + "ud": { + "u": 0.8520302821748107, + "t": 0.8711111111111112, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4396690279183285, + "t": 0.47033703160979695, + "punct": null + } + }, + "si": { + "opus100": { + "u": 0.8338593974175037, + "t": 0.8355452971725332, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4113980409617097, + "t": 0.3962920046349942, + "punct": null + } + }, + "sk": { + "opus100": { + "u": 0.9280089988751407, + "t": 0.9117802430005283, + "punct": null + }, + "ud": { + "u": 0.8803131991051455, + "t": 0.882286995515695, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.42931174089068824, + "t": 0.43168654173764903, + "punct": null + } + }, + "sl": { + "opus100": { + "u": 0.9309031556039172, + "t": 0.9273209549071617, + "punct": null + }, + "ud": { + "u": 0.9813124728378966, + "t": 0.986013986013986, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3768232302957313, + "t": 0.41823757553891944, + "punct": null + }, + "short-sequences": { + "u": 0.7858032953524154, + "t": 0.7839318753908197, + "punct": null, + "acc_u": 0.3280791788856305, + "acc_t": 0.32368035190615835, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.6752926529319492, + "t": 0.6771202475839573, + "punct": null, + "acc_u": 0.14222873900293256, + "acc_t": 0.15249266862170088, + "acc_punct": null + } + }, + "sq": { + "opus100": { + "u": 0.9311018131101813, + "t": 0.9094725793754921, + "punct": null + }, + "ud": { + "u": 1.0, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.39649871595471475, + "t": 0.40040737984253205, + "punct": null + } + }, + "sr": { + "opus100": { + "u": 0.9488017429193899, + "t": 0.9475970676079283, + "punct": null + }, + "ud": { + "u": 0.9696312364425164, + "t": 0.9694323144104804, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3626393492015667, + "t": 0.3879302716573755, + "punct": null + }, + "short-sequences": { + "u": 0.9007207491582493, + "t": 0.9129464285714285, + "punct": null, + "acc_u": 0.640625, + "acc_t": 0.6770833333333334, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.6059689153439153, + "t": 0.6202008928571429, + "punct": null, + "acc_u": 0.036458333333333336, + "acc_t": 0.06770833333333333, + "acc_punct": null + } + }, + "sv": { + "opus100": { + "u": 0.9360417238539664, + "t": 0.9279829922933829, + "punct": null + }, + "ud": { + "u": 0.944385026737968, + "t": 0.9413008989952406, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.42548639433041385, + "t": 0.46778331069865703, + "punct": null + } + }, + "ta": { + "ersatz": { + "u": 0.9418666666666667, + "t": 0.9771332961517011, + "punct": null + }, + "opus100": { + "u": 0.5532217871128515, + "t": 0.5911620294599018, + "punct": null + }, + "ud": { + "u": 0.923076923076923, + "t": 0.981651376146789, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.18572574178027268, + "t": 0.3989637305699482, + "punct": null + } + }, + "te": { + "opus100": { + "u": 0.7817292006525286, + "t": 0.7884733292458616, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.41629867523083103, + "t": 0.4239007891770012, + "punct": null + } + }, + "tg": { + "opus100": { + "u": 0.6752613240418118, + "t": 0.8787640743650169, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.16993464052287582, + "t": 0.5408450704225352, + "punct": null + } + }, + "th": { + "opus100": { + "u": 0.2925925925925926, + "t": 0.6825535636204635, + "punct": null + }, + "ud": { + "u": 0.03683640303358614, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.08256595964821521, + "t": 0.5100112485939258, + "punct": null + } + }, + "tr": { + "ersatz": { + "u": 0.9507398389211463, + "t": 0.9388201019664967, + "punct": null + }, + "opus100": { + "u": 0.94010989010989, + "t": 0.939917695473251, + "punct": null + }, + "ud": { + "u": 0.9798590130916416, + "t": 0.9804118533400302, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6344361475990625, + "t": 0.6384384689676206, + "punct": null + } + }, + "uk": { + "opus100": { + "u": 0.9051937345424567, + "t": 0.8961072441350865, + "punct": null + }, + "ud": { + "u": 0.9457562220804084, + "t": 0.9432314410480349, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3806155861165685, + "t": 0.4371738257727821, + "punct": null + } + }, + "ur": { + "opus100": { + "u": 0.48041594454072795, + "t": 0.5403225806451614, + "punct": null + }, + "ud": { + "u": 0.9906735751295338, + "t": 0.9937369519832986, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5101172683375489, + "t": 0.5101172683375489, + "punct": null + } + }, + "uz": { + "opus100": { + "u": 0.5308134757600658, + "t": 0.8109020742884708, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6214553638409602, + "t": 0.6270714569799815, + "punct": null + } + }, + "vi": { + "opus100": { + "u": 0.9121894858463316, + "t": 0.9107625743645213, + "punct": null + }, + "ud": { + "u": 0.9755766621438263, + "t": 0.9848275862068965, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.2828900583131845, + "t": 0.37115498686551984, + "punct": null + } + }, + "xh": { + "opus100": { + "u": 0.7096774193548386, + "t": 0.867104887110603, + "punct": null + } + }, + "yi": { + "opus100": { + "u": 0.5431632010081915, + "t": 0.8098495212038302, + "punct": null + } + }, + "yo": { + "opus100": { + "u": 0.2378160146111699, + "t": null, + "punct": null + }, + "ud": { + "u": 0.8851913477537438, + "t": null, + "punct": null + } + }, + "zh": { + "ersatz": { + "u": 0.8922991071428572, + "t": 0.9159953970080552, + "punct": null + }, + "opus100": { + "u": 0.692191739523666, + "t": 0.7489249090307641, + "punct": null + }, + "ud": { + "u": 0.9833518312985573, + "t": 0.9910313901345292, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.10473702146995344, + "t": 0.3338077243951514, + "punct": null + } + }, + "zu": { + "opus100": { + "u": 0.42639593908629453, + "t": 0.8852744699390066, + "punct": null + } + }, + "tr-de": { + "code-switching": { + "u": 0.9836734693877551, + "t": 0.9930458970792767, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.2837837837837837, + "t": 0.2860318636532049, + "punct": null + } + }, + "es-en": { + "code-switching": { + "u": 0.9298474945533769, + "t": 0.9379128137384412, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.4607843137254902, + "t": 0.4694749694749694, + "punct": null + } + }, + "vi-en": { + "code-switching": { + "u": 0.36338672768878727, + "t": 0.4141689373297003, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.4064516129032258, + "t": 0.41058887088060503, + "punct": null + } + }, + "en-de": { + "code-switching": { + "u": 0.8111298482293423, + "t": 0.889970788704966, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.330488750969744, + "t": 0.33499377334993774, + "punct": null + }, + "short-sequences": { + "u": 0.8733915125186017, + "t": 0.9382167870053434, + "punct": null, + "acc_u": 0.4781704781704782, + "acc_t": 0.7068607068607069, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.6041694576385344, + "t": 0.6068916729617004, + "punct": null, + "acc_u": 0.11226611226611227, + "acc_t": 0.10395010395010396, + "acc_punct": null + } + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-sm-3l.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-sm-3l.json new file mode 100644 index 0000000000000000000000000000000000000000..371d1a9ad95819e4c408a85554ef37c4cb0126a3 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-sm-3l.json @@ -0,0 +1,1645 @@ +{ + "af": { + "opus100": { + "u": 0.8620596934659854, + "t": 0.860400444938821, + "punct": null + }, + "ud": { + "u": 1.0, + "t": 1.0, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6012488849241748, + "t": 0.597317868793041, + "punct": null + } + }, + "am": { + "opus100": { + "u": 0.70814332247557, + "t": 0.7556296914095079, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.41927710843373495, + "t": 0.5251989389920424, + "punct": null + } + }, + "ar": { + "ersatz": { + "u": 0.923076923076923, + "t": 0.9218930357829934, + "punct": null + }, + "opus100": { + "u": 0.6520353982300885, + "t": 0.7215686274509805, + "punct": null + }, + "ud": { + "u": 0.8445475638051044, + "t": 0.8528072837632777, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.45034067085953877, + "t": 0.5325343985796716, + "punct": null + } + }, + "az": { + "opus100": { + "u": 0.8528072837632777, + "t": 0.8419895575707612, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.657392253136934, + "t": 0.7013461099703399, + "punct": null + } + }, + "be": { + "opus100": { + "u": 0.8777777777777779, + "t": 0.8813367318040215, + "punct": null + }, + "ud": { + "u": 0.9348383786557211, + "t": 0.9321503131524008, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5671109843894789, + "t": 0.5714071856287425, + "punct": null + } + }, + "bg": { + "opus100": { + "u": 0.961528114070487, + "t": 0.9652362846279195, + "punct": null + }, + "ud": { + "u": 0.9925335988053758, + "t": 0.9925335988053758, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6133855919567162, + "t": 0.626367070988268, + "punct": null + } + }, + "bn": { + "opus100": { + "u": 0.8612593383137673, + "t": 0.8700163844893501, + "punct": null + }, + "ud": { + "u": 1.0, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.2258404944972109, + "t": 0.3571312672399805, + "punct": null + } + }, + "ca": { + "opus100": { + "u": 0.9298105150787296, + "t": 0.9313593539703903, + "punct": null + }, + "ud": { + "u": 0.996998799519808, + "t": 0.998497144574692, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5823529411764706, + "t": 0.5765476668003744, + "punct": null + } + }, + "ceb": { + "ud": { + "u": 0.9970501474926253, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3157894736842105, + "t": 0.49523809523809526, + "punct": null + } + }, + "cs": { + "ersatz": { + "u": 0.9849310676498877, + "t": 0.9850260416666666, + "punct": null + }, + "opus100": { + "u": 0.9430894308943091, + "t": 0.9452954048140043, + "punct": null + }, + "ud": { + "u": 0.9434987524258387, + "t": 0.9443784303740169, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5945480891142908, + "t": 0.5990890590173467, + "punct": null + } + }, + "cy": { + "opus100": { + "u": 0.7956015523932729, + "t": 0.8114457831325301, + "punct": null + }, + "ud": { + "u": 0.9935634874195436, + "t": 0.9936009307737057, + "punct": null + } + }, + "da": { + "opus100": { + "u": 0.9398759773523861, + "t": 0.9398435392500675, + "punct": null + }, + "ud": { + "u": 0.9853372434017597, + "t": 0.985279685966634, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6308418328512712, + "t": 0.6308607076713131, + "punct": null + } + }, + "de": { + "ersatz": { + "u": 0.9724310776942356, + "t": 0.9889110036963321, + "punct": null + }, + "opus100": { + "u": 0.8693731013532173, + "t": 0.8716235032024505, + "punct": null + }, + "ud": { + "u": 0.9780600461893765, + "t": 0.9720930232558139, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6408546065499775, + "t": 0.6454775458570525, + "punct": null + }, + "legal-all-laws": { + "u": 0.85866075104861, + "t": 0.8597395243443425, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.6384324141687042, + "t": 0.636500231095806, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.7701507232678425, + "t": 0.7693877786668751, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.548182023447949, + "t": 0.5658698629193546, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "el": { + "opus100": { + "u": 0.9591118331979419, + "t": 0.9587404994571118, + "punct": null + }, + "ud": { + "u": 0.9793939393939394, + "t": 0.976629766297663, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5797012482095355, + "t": 0.5758917708890945, + "punct": null + } + }, + "en": { + "ersatz": { + "u": 0.9826880252855399, + "t": 0.9857173928804466, + "punct": null + }, + "opus100": { + "u": 0.9456226209896682, + "t": 0.9454545454545454, + "punct": null + }, + "ud": { + "u": 0.9667858967807869, + "t": 0.9666495638789122, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.583387892278818, + "t": 0.5864562787639711, + "punct": null + }, + "legal-all-judgements": { + "u": 0.8895953412482259, + "t": 0.8948990246918416, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.5574718049325813, + "t": 0.5556654550165377, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "eo": { + "opus100": { + "u": 0.9518658734451055, + "t": 0.9556164383561644, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5686609686609687, + "t": 0.5770411295273173, + "punct": null + } + }, + "es": { + "ersatz": { + "u": 0.9945593035908596, + "t": null, + "punct": null + }, + "opus100": { + "u": 0.9527451515979241, + "t": 0.9517279210093252, + "punct": null + }, + "ud": { + "u": 0.9935773924213231, + "t": 0.9942047649710238, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5807328367223675, + "t": 0.5815609616211824, + "punct": null + }, + "legal-all-laws": { + "u": 0.8809716050566033, + "t": 0.9291168963793102, + "punct": null, + "acc_u": 0.18579234972677597, + "acc_t": 0.3825136612021858, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.6064616169451724, + "t": 0.6539700031464624, + "punct": null, + "acc_u": 0.00546448087431694, + "acc_t": 0.01092896174863388, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.784604873038209, + "t": 0.8025433402238744, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.36516015988938616, + "t": 0.4628896821227053, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "et": { + "ersatz": { + "u": 0.9889685603971319, + "t": 0.9895085588072888, + "punct": null + }, + "opus100": { + "u": 0.9296979417268111, + "t": 0.93531799729364, + "punct": null + }, + "ud": { + "u": 0.9816721941001919, + "t": 0.9798281003332748, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6297872340425532, + "t": 0.6289770960721319, + "punct": null + }, + "short-sequences": { + "u": 0.9115575041713156, + "t": 0.912637743652705, + "punct": null, + "acc_u": 0.5221674876847291, + "acc_t": 0.541871921182266, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.6920234153692288, + "t": 0.6874161255703922, + "punct": null, + "acc_u": 0.12315270935960591, + "acc_t": 0.10837438423645321, + "acc_punct": null + } + }, + "eu": { + "opus100": { + "u": 0.8998911860718172, + "t": 0.90154896298241, + "punct": null + }, + "ud": { + "u": 0.9996912627354121, + "t": 0.9996912627354121, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.49777015437392796, + "t": 0.4998471415469276, + "punct": null + } + }, + "fa": { + "opus100": { + "u": 0.60062893081761, + "t": 0.6628656420426375, + "punct": null + }, + "ud": { + "u": 0.9988553987027853, + "t": 0.9996181748759068, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6184621389539422, + "t": 0.6221448325309843, + "punct": null + } + }, + "fi": { + "ersatz": { + "u": 0.9842236368668696, + "t": 0.9873843566021867, + "punct": null + }, + "opus100": { + "u": 0.9525087201502549, + "t": 0.957441040932502, + "punct": null + }, + "ud": { + "u": 0.9715504978662873, + "t": 0.9755922469490309, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6144089294774225, + "t": 0.6124653190646057, + "punct": null + } + }, + "fr": { + "ersatz": { + "u": 0.9853333333333333, + "t": 0.9872739450770261, + "punct": null + }, + "opus100": { + "u": 0.9261962692619627, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9827814569536424, + "t": 0.9853528628495338, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6200456736868815, + "t": 0.6141860675785851, + "punct": null + }, + "legal-all-laws": { + "u": 0.8395132288430194, + "t": 0.9010623787219014, + "punct": null, + "acc_u": 0.5904139433551199, + "acc_t": 0.644880174291939, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.560302755568409, + "t": 0.6494955441056841, + "punct": null, + "acc_u": 0.17647058823529413, + "acc_t": 0.23311546840958605, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.8376457035045409, + "t": 0.8537784103153043, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.4633925630286969, + "t": 0.49055727881290034, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "fy": { + "opus100": { + "u": 0.9100591715976332, + "t": 0.9050554870530211, + "punct": null + } + }, + "ga": { + "opus100": { + "u": 0.8076797917344615, + "t": 0.8744512730465321, + "punct": null + }, + "ud": { + "u": 0.9549763033175355, + "t": 0.9652694610778444, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.43956043956043955, + "t": 0.4296296296296296, + "punct": null + } + }, + "gd": { + "opus100": { + "u": 0.8246648793565684, + "t": 0.8755533694048204, + "punct": null + }, + "ud": { + "u": 0.8434695912263211, + "t": 0.8507936507936507, + "punct": null + } + }, + "gl": { + "opus100": { + "u": 0.9313017909649827, + "t": 0.9322623828647925, + "punct": null + }, + "ud": { + "u": 0.9889502762430938, + "t": 0.9874476987447698, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5599835450197973, + "t": 0.5618628919271462, + "punct": null + } + }, + "gu": { + "ersatz": { + "u": 0.7066578773895847, + "t": 0.7521793275217934, + "punct": null + }, + "opus100": { + "u": 0.8337934842628383, + "t": 0.8324963072378139, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.25151357896557686, + "t": 0.3177476576002911, + "punct": null + } + }, + "ha": { + "opus100": { + "u": 0.9138693728857663, + "t": 0.9149606299212598, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.39999999999999997, + "t": 0.32, + "punct": null + } + }, + "he": { + "opus100": { + "u": 0.9218543046357616, + "t": 0.9392600773053562, + "punct": null + }, + "ud": { + "u": 0.955137481910275, + "t": 0.9558823529411765, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5263934253503318, + "t": 0.5325249106974995, + "punct": null + } + }, + "hi": { + "ersatz": { + "u": 0.9811153077093978, + "t": 0.9558620689655172, + "punct": null + }, + "opus100": { + "u": 0.7282211789254043, + "t": 0.7200584225900682, + "punct": null + }, + "ud": { + "u": 0.998678122934567, + "t": 0.998678122934567, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5056375563755637, + "t": 0.5088673654415992, + "punct": null + } + }, + "hu": { + "opus100": { + "u": 0.9583899918411749, + "t": 0.9578001633542064, + "punct": null + }, + "ud": { + "u": 0.9950738916256158, + "t": 0.9950738916256158, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.490368703250149, + "t": 0.550011756407242, + "punct": null + } + }, + "hy": { + "opus100": { + "u": 0.9055495439789767, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9840075258701786, + "t": 0.9830508474576272, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6025233459169481, + "t": 0.5998037108005795, + "punct": null + } + }, + "id": { + "opus100": { + "u": 0.9366331248300245, + "t": 0.9429909115946019, + "punct": null + }, + "ud": { + "u": 0.9961046188091264, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5642978003384094, + "t": 0.5700000000000001, + "punct": null + } + }, + "ig": { + "opus100": { + "u": 0.9211229946524065, + "t": 0.9192334017796031, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.09230769230769231, + "t": 0.2108626198083067, + "punct": null + } + }, + "is": { + "opus100": { + "u": 0.9647637257579895, + "t": 0.9647637257579895, + "punct": null + }, + "ud": { + "u": 0.9571488294314381, + "t": 0.9672007742768038, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5650644783118406, + "t": 0.5676800000000001, + "punct": null + } + }, + "it": { + "opus100": { + "u": 0.90927995840915, + "t": 0.9134893505127532, + "punct": null + }, + "ud": { + "u": 0.9874572405929305, + "t": 0.9954022988505747, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5601623659031603, + "t": 0.5717433213990636, + "punct": null + }, + "legal-all-laws": { + "u": 0.7994558488239146, + "t": 0.8271178382990025, + "punct": null, + "acc_u": 0.2940340909090909, + "acc_t": 0.6235795454545454, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.5399476448160936, + "t": 0.5234751319883766, + "punct": null, + "acc_u": 0.07386363636363637, + "acc_t": 0.08948863636363637, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.8371609607460455, + "t": 0.8402449954652053, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.36401224161471785, + "t": 0.37248630887479456, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "ja": { + "ersatz": { + "u": 0.8906838987614433, + "t": 0.8893685914732866, + "punct": null + }, + "opus100": { + "u": 0.7799027552674231, + "t": 0.7844126717129241, + "punct": null + }, + "ud": { + "u": 0.9710743801652894, + "t": 0.9690721649484535, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.8387711626863998, + "t": 0.8721105679280585, + "punct": null + } + }, + "jv": { + "ud": { + "u": 0.9933774834437086, + "t": null, + "punct": null + } + }, + "ka": { + "opus100": { + "u": 0.9355102040816325, + "t": 0.9348951239444293, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.49027928550281263, + "t": 0.4950938199345842, + "punct": null + } + }, + "kk": { + "ersatz": { + "u": 0.9966740576496673, + "t": 0.9988888888888888, + "punct": null + }, + "opus100": { + "u": 0.9221854304635763, + "t": 0.9184202940328624, + "punct": null + }, + "ud": { + "u": 0.9931398416886544, + "t": 0.7556142668428005, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6893534273213417, + "t": 0.6984405116523568, + "punct": null + } + }, + "km": { + "ersatz": { + "u": 0.8394784172661871, + "t": 0.864639529180971, + "punct": null + }, + "opus100": { + "u": 0.8661911554921541, + "t": 0.8723728297289065, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4709576138147567, + "t": 0.655621301775148, + "punct": null + } + }, + "kn": { + "opus100": { + "u": 0.8789013732833958, + "t": 0.8689384010484928, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.18280402788536018, + "t": 0.36587301587301585, + "punct": null + } + }, + "ko": { + "opus100": { + "u": 0.7893544733861834, + "t": 0.8, + "punct": null + }, + "ud": { + "u": 0.999514091350826, + "t": 0.9990277102576567, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7717462393721387, + "t": 0.7771689932821955, + "punct": null + } + }, + "ku": { + "opus100": { + "u": 0.9110036963321012, + "t": 0.9071261682242991, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.031654981941788826, + "t": 0.33092400859542875, + "punct": null + } + }, + "ky": { + "opus100": { + "u": 0.9181250000000001, + "t": 0.9371089891340137, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.628056628056628, + "t": 0.6051282051282051, + "punct": null + } + }, + "la": { + "ud": { + "u": 0.9661016949152542, + "t": 0.9774159663865546, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.33333333333333326, + "t": 0.3, + "punct": null + } + }, + "lt": { + "ersatz": { + "u": 0.9827682045580879, + "t": 0.9832402234636872, + "punct": null + }, + "opus100": { + "u": 0.8996655518394648, + "t": 0.8992248062015503, + "punct": null + }, + "ud": { + "u": 0.9788273615635179, + "t": 0.9805194805194806, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5655818797188232, + "t": 0.5658686826263474, + "punct": null + } + }, + "lv": { + "ersatz": { + "u": 0.9933847850055127, + "t": 0.9933847850055127, + "punct": null + }, + "opus100": { + "u": 0.8968635207685787, + "t": 0.8890094979647218, + "punct": null + }, + "ud": { + "u": 0.9923945609587462, + "t": 0.9921622867680959, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6081486499564501, + "t": 0.6072732729728377, + "punct": null + } + }, + "mg": { + "opus100": { + "u": 0.9161188535366817, + "t": 0.9306451612903226, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.42990654205607476, + "t": 0.4874551971326165, + "punct": null + } + }, + "mk": { + "opus100": { + "u": 0.9536247334754797, + "t": 0.9557046979865773, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5730994152046783, + "t": 0.5725879992704724, + "punct": null + } + }, + "ml": { + "opus100": { + "u": 0.8591153157760163, + "t": 0.8652997664157798, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.44186046511627913, + "t": 0.4466887894964652, + "punct": null + } + }, + "mn": { + "opus100": { + "u": 0.9011051289317087, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.8057092277052446, + "t": 0.8070841946477457, + "punct": null + } + }, + "mr": { + "opus100": { + "u": 0.9332206255283177, + "t": 0.9334836527621195, + "punct": null + }, + "ud": { + "u": 1.0, + "t": 0.9879518072289156, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3941284733132827, + "t": 0.39510022271714923, + "punct": null + } + }, + "ms": { + "opus100": { + "u": 0.9412086409625375, + "t": 0.9493318485523384, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5224278671300413, + "t": 0.5301551267499054, + "punct": null + } + }, + "mt": { + "opus100": { + "u": 0.8513319965625895, + "t": 0.8402461867808402, + "punct": null + }, + "ud": { + "u": 0.9303322615219721, + "t": 0.9302832244008713, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.44155844155844154, + "t": 0.3917525773195876, + "punct": null + } + }, + "my": { + "opus100": { + "u": 0.8937007874015748, + "t": 0.8958152958152958, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.9221380946999661, + "t": 0.9229795800977855, + "punct": null + } + }, + "ne": { + "opus100": { + "u": 0.819718309859155, + "t": 0.8254257907542579, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.49752781211372066, + "t": 0.5824485373781148, + "punct": null + } + }, + "nl": { + "opus100": { + "u": 0.9482303222398311, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9572490706319703, + "t": 0.957089552238806, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6603122730573712, + "t": 0.6833099287460342, + "punct": null + } + }, + "no": { + "opus100": { + "u": 0.9582997040624159, + "t": 0.9636067354698532, + "punct": null + }, + "ud": { + "u": 0.9900199600798403, + "t": 0.9908571428571429, + "punct": null + } + }, + "pa": { + "opus100": { + "u": 0.810225062517366, + "t": 0.8061375036884038, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.375, + "t": 0.45408163265306123, + "punct": null + } + }, + "pl": { + "ersatz": { + "u": 0.9832026875699887, + "t": 0.9837716843872412, + "punct": null + }, + "opus100": { + "u": 0.955790615676702, + "t": 0.9560737527114967, + "punct": null + }, + "ud": { + "u": 0.9919799498746866, + "t": 0.9906494819307555, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.620551623138882, + "t": 0.6204807692307692, + "punct": null + } + }, + "ps": { + "ersatz": { + "u": 0.8268651426546164, + "t": 0.8478054341630249, + "punct": null + }, + "opus100": { + "u": 0.855625, + "t": 0.8536348949919225, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.49596122778675283, + "t": 0.4753300903405142, + "punct": null + } + }, + "pt": { + "opus100": { + "u": 0.9377659574468086, + "t": 0.9463945578231292, + "punct": null + }, + "ud": { + "u": 0.9717247879359096, + "t": 0.9770992366412213, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6136830601092895, + "t": 0.6203480710682964, + "punct": null + }, + "legal-all-laws": { + "u": 0.7419174857337968, + "t": 0.5865818678466248, + "punct": null, + "acc_u": 0.10344827586206896, + "acc_t": 0.05172413793103448, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.6502928229290827, + "t": 0.6386759119482585, + "punct": null, + "acc_u": 0.06896551724137931, + "acc_t": 0.08620689655172414, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.8176859123949104, + "t": 0.7731081629539254, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.41854873146669763, + "t": 0.3797861455693222, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "ro": { + "ersatz": { + "u": 0.9910913140311804, + "t": 0.990830786329536, + "punct": null + }, + "opus100": { + "u": 0.9587912087912088, + "t": 0.9609310058187862, + "punct": null + }, + "ud": { + "u": 0.9904963041182682, + "t": 0.9936373276776247, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.57341496316281, + "t": 0.5759832993310243, + "punct": null + } + }, + "ru": { + "ersatz": { + "u": 0.987709497206704, + "t": 0.9882220975883342, + "punct": null + }, + "opus100": { + "u": 0.8412496824993649, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9242979242979242, + "t": 0.9245982694684797, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6078369481895659, + "t": 0.6126364538537876, + "punct": null + } + }, + "si": { + "opus100": { + "u": 0.8543689320388349, + "t": 0.8585499316005472, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4881170018281536, + "t": 0.48151658767772515, + "punct": null + } + }, + "sk": { + "opus100": { + "u": 0.9592612710483432, + "t": 0.9599564151457368, + "punct": null + }, + "ud": { + "u": 0.9652963160704752, + "t": 0.967327262988752, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5968348343096965, + "t": 0.60594688221709, + "punct": null + } + }, + "sl": { + "opus100": { + "u": 0.9533011272141707, + "t": 0.9530705282917672, + "punct": null + }, + "ud": { + "u": 0.9922010398613518, + "t": 0.9926311226701343, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6324749254540526, + "t": 0.631083202511774, + "punct": null + }, + "short-sequences": { + "u": 0.7998754107166864, + "t": 0.7997215781721775, + "punct": null, + "acc_u": 0.3453079178885631, + "acc_t": 0.3467741935483871, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.6722730918478719, + "t": 0.6757854397150586, + "punct": null, + "acc_u": 0.15395894428152493, + "acc_t": 0.15542521994134897, + "acc_punct": null + } + }, + "sq": { + "opus100": { + "u": 0.9566166439290587, + "t": 0.960417811984607, + "punct": null + }, + "ud": { + "u": 0.9908256880733944, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5195047656480299, + "t": 0.5240170903284278, + "punct": null + } + }, + "sr": { + "opus100": { + "u": 0.9588744588744588, + "t": 0.962962962962963, + "punct": null + }, + "ud": { + "u": 0.9935483870967742, + "t": 0.9957173447537474, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5729857576224998, + "t": 0.5694520298561806, + "punct": null + }, + "short-sequences": { + "u": 0.9194857804232806, + "t": 0.9271494708994709, + "punct": null, + "acc_u": 0.6927083333333334, + "acc_t": 0.7447916666666666, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.6739252645502646, + "t": 0.6749421296296297, + "punct": null, + "acc_u": 0.17708333333333334, + "acc_t": 0.17708333333333334, + "acc_punct": null + } + }, + "sv": { + "opus100": { + "u": 0.9497863247863249, + "t": 0.9536138079827401, + "punct": null + }, + "ud": { + "u": 0.9623430962343096, + "t": 0.9634340222575517, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6414914464276256, + "t": 0.6410424768927723, + "punct": null + } + }, + "ta": { + "ersatz": { + "u": 0.9850911098840419, + "t": 0.9856035437430786, + "punct": null + }, + "opus100": { + "u": 0.7499272197962155, + "t": 0.7376014427412083, + "punct": null + }, + "ud": { + "u": 0.9953917050691244, + "t": 1.0, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.46177215189873416, + "t": 0.4820392024901152, + "punct": null + } + }, + "te": { + "opus100": { + "u": 0.8679562657695542, + "t": 0.86949055523755, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4931465582165989, + "t": 0.495125348189415, + "punct": null + } + }, + "tg": { + "opus100": { + "u": 0.9232818327117741, + "t": 0.9210669569951007, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5167037861915367, + "t": 0.591352859135286, + "punct": null + } + }, + "th": { + "opus100": { + "u": 0.7293598233995585, + "t": 0.7412345679012345, + "punct": null + }, + "ud": { + "u": 0.7119901112484549, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5647046267143392, + "t": 0.5817707200348053, + "punct": null + } + }, + "tr": { + "ersatz": { + "u": 0.9745222929936305, + "t": 0.9750508223988171, + "punct": null + }, + "opus100": { + "u": 0.9468784227820372, + "t": 0.9451568894952251, + "punct": null + }, + "ud": { + "u": 0.98639798488665, + "t": 0.9858585858585859, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.699074784031079, + "t": 0.6995812438608282, + "punct": null + } + }, + "uk": { + "opus100": { + "u": 0.9352785145888595, + "t": 0.9383047210300429, + "punct": null + }, + "ud": { + "u": 0.9833641404805915, + "t": 0.9839307787391842, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6074805928016936, + "t": 0.6080399596561163, + "punct": null + } + }, + "ur": { + "opus100": { + "u": 0.6048780487804878, + "t": 0.6174698795180723, + "punct": null + }, + "ud": { + "u": 0.9927310488058151, + "t": 0.9916666666666667, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5622398789254636, + "t": 0.5638329649321943, + "punct": null + } + }, + "uz": { + "opus100": { + "u": 0.8492399700971842, + "t": 0.8565193671576651, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.595391392748221, + "t": 0.6708724832214765, + "punct": null + } + }, + "vi": { + "opus100": { + "u": 0.9468680089485458, + "t": 0.9481894150417828, + "punct": null + }, + "ud": { + "u": 0.9951624049758121, + "t": 0.9951489951489952, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.534617762208943, + "t": 0.5366200310903841, + "punct": null + } + }, + "xh": { + "opus100": { + "u": 0.8956643356643357, + "t": 0.9023255813953488, + "punct": null + } + }, + "yi": { + "opus100": { + "u": 0.8901734104046242, + "t": 0.8827838827838826, + "punct": null + } + }, + "yo": { + "opus100": { + "u": 0.5232696424324109, + "t": null, + "punct": null + }, + "ud": { + "u": 0.8964401294498383, + "t": null, + "punct": null + } + }, + "zh": { + "ersatz": { + "u": 0.9052396878483835, + "t": 0.9012141280353201, + "punct": null + }, + "opus100": { + "u": 0.7747965028640338, + "t": 0.7586384734399175, + "punct": null + }, + "ud": { + "u": 0.9855715871254163, + "t": 0.9855715871254163, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.19894459102902376, + "t": 0.37895069532237674, + "punct": null + } + }, + "zu": { + "opus100": { + "u": 0.9330240649463613, + "t": 0.9366028708133972, + "punct": null + } + }, + "tr-de": { + "code-switching": { + "u": 0.9863760217983651, + "t": 0.9972299168975068, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.3067998710924911, + "t": 0.3312444046553268, + "punct": null + } + }, + "es-en": { + "code-switching": { + "u": 0.7105744603000366, + "t": 0.7042253521126761, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.4798375398897593, + "t": 0.4777303233679073, + "punct": null + } + }, + "vi-en": { + "code-switching": { + "u": 0.43639357760395225, + "t": 0.4624871531346352, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.4517997517583781, + "t": 0.46826222684703434, + "punct": null + } + }, + "en-de": { + "code-switching": { + "u": 0.7766272189349112, + "t": 0.9254013220018885, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.4373937677053824, + "t": 0.4840182648401827, + "punct": null + }, + "short-sequences": { + "u": 0.8916514623468693, + "t": 0.9226855854641182, + "punct": null, + "acc_u": 0.5613305613305614, + "acc_t": 0.6756756756756757, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.6674737389599491, + "t": 0.6738383274889845, + "punct": null, + "acc_u": 0.13097713097713098, + "acc_t": 0.15384615384615385, + "acc_punct": null + } + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-sm-3l_no_corruptions.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-sm-3l_no_corruptions.json new file mode 100644 index 0000000000000000000000000000000000000000..bac66b8c73d980845d0e65e1fdb673f9eeb5b7db --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-sm-3l_no_corruptions.json @@ -0,0 +1,1645 @@ +{ + "af": { + "opus100": { + "u": 0.855715871254162, + "t": 0.856830002737476, + "punct": null + }, + "ud": { + "u": 0.9986928104575163, + "t": 1.0, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5673632725655846, + "t": 0.5650557620817844, + "punct": null + } + }, + "am": { + "opus100": { + "u": 0.7158719790986283, + "t": 0.7750281214848145, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.40107671601615075, + "t": 0.5038826574633304, + "punct": null + } + }, + "ar": { + "ersatz": { + "u": 0.8263976460697772, + "t": 0.9035153328347045, + "punct": null + }, + "opus100": { + "u": 0.6279912980420594, + "t": 0.6969346443030653, + "punct": null + }, + "ud": { + "u": 0.8521008403361346, + "t": 0.862681744749596, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.23402753265090015, + "t": 0.5057863102179958, + "punct": null + } + }, + "az": { + "opus100": { + "u": 0.8547412660887839, + "t": 0.8458075407990996, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6333643988816403, + "t": 0.6785223506587987, + "punct": null + } + }, + "be": { + "opus100": { + "u": 0.8778840742824986, + "t": 0.8783399658897101, + "punct": null + }, + "ud": { + "u": 0.9320186818889465, + "t": 0.9286463798530955, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5121532742350586, + "t": 0.5120069858826954, + "punct": null + } + }, + "bg": { + "opus100": { + "u": 0.9593539703903095, + "t": 0.9625407166123778, + "punct": null + }, + "ud": { + "u": 0.9925410243659871, + "t": 0.9945191828599901, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5424757916775714, + "t": 0.5447678078543412, + "punct": null + } + }, + "bn": { + "opus100": { + "u": 0.877221766475253, + "t": 0.8774789459386036, + "punct": null + }, + "ud": { + "u": 1.0, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.27218807289981667, + "t": 0.302055959189983, + "punct": null + } + }, + "ca": { + "opus100": { + "u": 0.9307837328305951, + "t": 0.93006993006993, + "punct": null + }, + "ud": { + "u": 0.9987973541791942, + "t": 0.9981927710843373, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.32791554959785524, + "t": 0.5149292371418708, + "punct": null + } + }, + "ceb": { + "ud": { + "u": 0.9970501474926253, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.16129032258064516, + "t": 0.4566929133858268, + "punct": null + } + }, + "cs": { + "ersatz": { + "u": 0.9835536923573042, + "t": 0.9830839297332465, + "punct": null + }, + "opus100": { + "u": 0.9372972972972973, + "t": 0.9405613648871767, + "punct": null + }, + "ud": { + "u": 0.9521374173105787, + "t": 0.9517441212526468, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4930647291941876, + "t": 0.5033409698358152, + "punct": null + } + }, + "cy": { + "opus100": { + "u": 0.7919719655941384, + "t": 0.8130598093036694, + "punct": null + }, + "ud": { + "u": 0.9941520467836257, + "t": 0.9935860058309038, + "punct": null + } + }, + "da": { + "opus100": { + "u": 0.939484396200814, + "t": 0.9392624728850325, + "punct": null + }, + "ud": { + "u": 0.9860834990059643, + "t": 0.9891625615763546, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5616157132552849, + "t": 0.5630386211299074, + "punct": null + } + }, + "de": { + "ersatz": { + "u": 0.9782547303021745, + "t": 0.9809929078014183, + "punct": null + }, + "opus100": { + "u": 0.856818826197902, + "t": 0.8547008547008547, + "punct": null + }, + "ud": { + "u": 0.9720605355064028, + "t": 0.9623085983510011, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5552763819095479, + "t": 0.5793502114221485, + "punct": null + }, + "legal-all-laws": { + "u": 0.821178725591842, + "t": 0.8325484226443048, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.5684609243643209, + "t": 0.577149359122327, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.7664569594754425, + "t": 0.7701021169659789, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.45360948914278143, + "t": 0.46441056221932925, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "el": { + "opus100": { + "u": 0.9580741141466054, + "t": 0.9580838323353293, + "punct": null + }, + "ud": { + "u": 0.9819059107358263, + "t": 0.9751861042183623, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5149841344458808, + "t": 0.5348242811501597, + "punct": null + } + }, + "en": { + "ersatz": { + "u": 0.9806396099239925, + "t": 0.9844236760124611, + "punct": null + }, + "opus100": { + "u": 0.9455838118676511, + "t": 0.943426724137931, + "punct": null + }, + "ud": { + "u": 0.9640657084188912, + "t": 0.9650565262076053, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4844084205786333, + "t": 0.497302599313389, + "punct": null + }, + "legal-all-judgements": { + "u": 0.8954773013840837, + "t": 0.894239297896797, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.4408015356032201, + "t": 0.4850206197358402, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "eo": { + "opus100": { + "u": 0.955264593562466, + "t": 0.950110864745011, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.35301383399209485, + "t": 0.5363891084129607, + "punct": null + } + }, + "es": { + "ersatz": { + "u": 0.9934497816593888, + "t": null, + "punct": null + }, + "opus100": { + "u": 0.9485557083906465, + "t": 0.949004635942187, + "punct": null + }, + "ud": { + "u": 0.9935649935649936, + "t": 0.9935649935649936, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.43845886844845533, + "t": 0.5192058889136738, + "punct": null + }, + "legal-all-laws": { + "u": 0.8427301184883391, + "t": 0.928404440559976, + "punct": null, + "acc_u": 0.11475409836065574, + "acc_t": 0.3442622950819672, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.4301787395921008, + "t": 0.5686558422468343, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.7681501432016603, + "t": 0.8041328315853123, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.23888906008490224, + "t": 0.4498891384428983, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "et": { + "ersatz": { + "u": 0.988950276243094, + "t": 0.9886771610052472, + "punct": null + }, + "opus100": { + "u": 0.9326508620689654, + "t": 0.9351498637602179, + "punct": null + }, + "ud": { + "u": 0.9787905346187555, + "t": 0.9787979674084457, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5471009201109975, + "t": 0.5508558347640601, + "punct": null + }, + "short-sequences": { + "u": 0.9081965051256357, + "t": 0.9085770101744878, + "punct": null, + "acc_u": 0.5320197044334976, + "acc_t": 0.5320197044334976, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.6353863150330906, + "t": 0.6360176920490804, + "punct": null, + "acc_u": 0.06896551724137931, + "acc_t": 0.08374384236453201, + "acc_punct": null + } + }, + "eu": { + "opus100": { + "u": 0.8677871148459383, + "t": 0.8887113951011715, + "punct": null + }, + "ud": { + "u": 0.9996912627354121, + "t": 1.0, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.20636285468615648, + "t": 0.42480831066040065, + "punct": null + } + }, + "fa": { + "opus100": { + "u": 0.5976500476341696, + "t": 0.6653266331658292, + "punct": null + }, + "ud": { + "u": 0.9984744469870328, + "t": 0.9996181748759068, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5334318930179424, + "t": 0.6062868964125334, + "punct": null + } + }, + "fi": { + "ersatz": { + "u": 0.9811842833425567, + "t": 0.9834036568213783, + "punct": null + }, + "opus100": { + "u": 0.9524065609034688, + "t": 0.9556036816459124, + "punct": null + }, + "ud": { + "u": 0.9780812073302192, + "t": 0.9766774309293147, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5352534932276888, + "t": 0.5397604271900707, + "punct": null + } + }, + "fr": { + "ersatz": { + "u": 0.9843071786310519, + "t": 0.9833555259653796, + "punct": null + }, + "opus100": { + "u": 0.9116684841875682, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9852744310575635, + "t": 0.9866310160427807, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5216131369234484, + "t": 0.5605727387581302, + "punct": null + }, + "legal-all-laws": { + "u": 0.6777778743605098, + "t": 0.8996059505644213, + "punct": null, + "acc_u": 0.35947712418300654, + "acc_t": 0.6122004357298475, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.31874005809507544, + "t": 0.5519190142383459, + "punct": null, + "acc_u": 0.05010893246187364, + "acc_t": 0.16339869281045752, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.8376434832032718, + "t": 0.8462233899302614, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.26801419722864483, + "t": 0.40607666782212587, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "fy": { + "opus100": { + "u": 0.9121762429294433, + "t": 0.9114311982837879, + "punct": null + } + }, + "ga": { + "opus100": { + "u": 0.6751361161524501, + "t": 0.7972636815920398, + "punct": null + }, + "ud": { + "u": 0.9841656516443362, + "t": 0.9794437726723095, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.2545454545454546, + "t": 0.38095238095238093, + "punct": null + } + }, + "gd": { + "opus100": { + "u": 0.8143009605122733, + "t": 0.8516699410609037, + "punct": null + }, + "ud": { + "u": 0.837867247007617, + "t": 0.8403001071811362, + "punct": null + } + }, + "gl": { + "opus100": { + "u": 0.9282092340539098, + "t": 0.9296226919989298, + "punct": null + }, + "ud": { + "u": 0.9833333333333333, + "t": 0.9846153846153846, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.47918197403869706, + "t": 0.5241347485002308, + "punct": null + } + }, + "gu": { + "ersatz": { + "u": 0.8065693430656934, + "t": 0.856160458452722, + "punct": null + }, + "opus100": { + "u": 0.8441151325163865, + "t": 0.8441633122484187, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.34075922295491, + "t": 0.34035383319292334, + "punct": null + } + }, + "ha": { + "opus100": { + "u": 0.9159222280609565, + "t": 0.9144542772861357, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.36363636363636365, + "t": 0.31034482758620685, + "punct": null + } + }, + "he": { + "opus100": { + "u": 0.9254128929142249, + "t": 0.9357848518111965, + "punct": null + }, + "ud": { + "u": 0.9529411764705883, + "t": 0.9566473988439307, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.43793212813193777, + "t": 0.4914367070055693, + "punct": null + } + }, + "hi": { + "ersatz": { + "u": 0.9801737580752952, + "t": 0.9307257304429783, + "punct": null + }, + "opus100": { + "u": 0.7255537547271745, + "t": 0.7182374541003671, + "punct": null + }, + "ud": { + "u": 0.9990089197224975, + "t": 0.9993394980184941, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4758623900190867, + "t": 0.47405480557922586, + "punct": null + } + }, + "hu": { + "opus100": { + "u": 0.9584577789845236, + "t": 0.9566395663956639, + "punct": null + }, + "ud": { + "u": 0.9975308641975309, + "t": 0.9987639060568604, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.39812206572769954, + "t": 0.4889254908759914, + "punct": null + } + }, + "hy": { + "opus100": { + "u": 0.9059641991714219, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9848484848484849, + "t": 0.9858088930936614, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.49940636130725496, + "t": 0.5561131386861313, + "punct": null + } + }, + "id": { + "opus100": { + "u": 0.9414674361088211, + "t": 0.9394024015638089, + "punct": null + }, + "ud": { + "u": 0.9961046188091264, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3088590715892991, + "t": 0.5192859705776821, + "punct": null + } + }, + "ig": { + "opus100": { + "u": 0.9273631840796019, + "t": 0.9281842818428184, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.036036036036036036, + "t": 0.18323586744639375, + "punct": null + } + }, + "is": { + "opus100": { + "u": 0.9657440394628667, + "t": 0.9636909636909637, + "punct": null + }, + "ud": { + "u": 0.9715866765989145, + "t": 0.9728922091782283, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4804575786463299, + "t": 0.5501414649481295, + "punct": null + } + }, + "it": { + "opus100": { + "u": 0.9040880503144654, + "t": 0.903750327825859, + "punct": null + }, + "ud": { + "u": 0.9942594718714122, + "t": 0.9976958525345622, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4904251708925195, + "t": 0.48962695089455655, + "punct": null + }, + "legal-all-laws": { + "u": 0.848735284664134, + "t": 0.8360640699245138, + "punct": null, + "acc_u": 0.5667613636363636, + "acc_t": 0.5667613636363636, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.2641458212930845, + "t": 0.32933085852020005, + "punct": null, + "acc_u": 0.045454545454545456, + "acc_t": 0.05823863636363636, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.8193813243608904, + "t": 0.8196656717241392, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.27082404485061057, + "t": 0.32203826640382605, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "ja": { + "ersatz": { + "u": 0.8597528210639441, + "t": 0.8619599578503688, + "punct": null + }, + "opus100": { + "u": 0.6685962373371924, + "t": 0.7846281448714405, + "punct": null + }, + "ud": { + "u": 0.9720785935884179, + "t": 0.9711934156378601, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.8405169669574075, + "t": 0.8605501288428117, + "punct": null + } + }, + "jv": { + "ud": { + "u": 0.9928295642581357, + "t": null, + "punct": null + } + }, + "ka": { + "opus100": { + "u": 0.9353695118625579, + "t": 0.9344620425996722, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.42900116643133407, + "t": 0.4699120737722497, + "punct": null + } + }, + "kk": { + "ersatz": { + "u": 0.9977802441731409, + "t": 0.9988888888888888, + "punct": null + }, + "opus100": { + "u": 0.9253146853146852, + "t": 0.9216832261835184, + "punct": null + }, + "ud": { + "u": 0.9947145877378435, + "t": 0.9367945823927766, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6571089578801661, + "t": 0.6688691232528591, + "punct": null + } + }, + "km": { + "ersatz": { + "u": 0.868253594155079, + "t": 0.8860129417620707, + "punct": null + }, + "opus100": { + "u": 0.8770467401012206, + "t": 0.8725281411621539, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5363128491620112, + "t": 0.6195761856710393, + "punct": null + } + }, + "kn": { + "opus100": { + "u": 0.885585003232062, + "t": 0.8852883992222943, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.37434827945776855, + "t": 0.3909373611728121, + "punct": null + } + }, + "ko": { + "opus100": { + "u": 0.7024265644955301, + "t": 0.7809829059829061, + "punct": null + }, + "ud": { + "u": 0.9992709599027946, + "t": 0.9990277102576567, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7729060731075506, + "t": 0.7713310580204777, + "punct": null + } + }, + "ku": { + "opus100": { + "u": 0.9106678230702515, + "t": 0.9131701631701632, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.14557530066415364, + "t": 0.32530904359141183, + "punct": null + } + }, + "ky": { + "opus100": { + "u": 0.9299935773924214, + "t": 0.9338162660520252, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5917159763313609, + "t": 0.6026731470230864, + "punct": null + } + }, + "la": { + "ud": { + "u": 0.9712360715211195, + "t": 0.97877914592612, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3529411764705882, + "t": 0.5, + "punct": null + } + }, + "lt": { + "ersatz": { + "u": 0.975964225824483, + "t": 0.9774266365688488, + "punct": null + }, + "opus100": { + "u": 0.8949152542372881, + "t": 0.8877468217473627, + "punct": null + }, + "ud": { + "u": 0.9729286300246103, + "t": 0.9781021897810219, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5110940246045694, + "t": 0.5189494247883655, + "punct": null + } + }, + "lv": { + "ersatz": { + "u": 0.9928216454997238, + "t": 0.9911894273127754, + "punct": null + }, + "opus100": { + "u": 0.8839841539332202, + "t": 0.8802411619621814, + "punct": null + }, + "ud": { + "u": 0.9933040868159779, + "t": 0.9921586715867159, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5402994584262505, + "t": 0.5445101716923966, + "punct": null + } + }, + "mg": { + "opus100": { + "u": 0.9340511440107673, + "t": 0.9476599279977845, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.21008403361344535, + "t": 0.4293785310734463, + "punct": null + } + }, + "mk": { + "opus100": { + "u": 0.9552398820691502, + "t": 0.9521739130434782, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.40671641791044777, + "t": 0.5257404466037559, + "punct": null + } + }, + "ml": { + "opus100": { + "u": 0.8639916623241272, + "t": 0.8606875161540449, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4020293911826452, + "t": 0.4140734510793383, + "punct": null + } + }, + "mn": { + "opus100": { + "u": 0.8578234330802441, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6324145814810109, + "t": 0.6582940332171417, + "punct": null + } + }, + "mr": { + "opus100": { + "u": 0.9345002823263693, + "t": 0.9335595137121855, + "punct": null + }, + "ud": { + "u": 1.0, + "t": 0.9879518072289156, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3582299887260429, + "t": 0.35889792231255646, + "punct": null + } + }, + "ms": { + "opus100": { + "u": 0.9454444752146219, + "t": 0.9438775510204082, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.30386114954093824, + "t": 0.525068870523416, + "punct": null + } + }, + "mt": { + "opus100": { + "u": 0.8155699721964782, + "t": 0.8301063539678211, + "punct": null + }, + "ud": { + "u": 0.9155844155844156, + "t": 0.9155844155844156, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.042553191489361694, + "t": 0.3474903474903475, + "punct": null + } + }, + "my": { + "opus100": { + "u": 0.8922899220329195, + "t": 0.8902965735675209, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.912466534745664, + "t": 0.9129551129434993, + "punct": null + } + }, + "ne": { + "opus100": { + "u": 0.8183728610027019, + "t": 0.8144078144078145, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5505984766050054, + "t": 0.5594405594405594, + "punct": null + } + }, + "nl": { + "opus100": { + "u": 0.9489282879068536, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9553072625698324, + "t": 0.9553072625698324, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5733249843456482, + "t": 0.6121490221785207, + "punct": null + } + }, + "no": { + "opus100": { + "u": 0.9582322824036648, + "t": 0.9604336043360433, + "punct": null + }, + "ud": { + "u": 0.9917119176907687, + "t": 0.9914236706689536, + "punct": null + } + }, + "pa": { + "opus100": { + "u": 0.8181548501928211, + "t": 0.8172423974018306, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4583866837387964, + "t": 0.4574585635359116, + "punct": null + } + }, + "pl": { + "ersatz": { + "u": 0.9751972942502819, + "t": 0.9763513513513513, + "punct": null + }, + "opus100": { + "u": 0.9517842549713974, + "t": 0.9512659950993738, + "punct": null + }, + "ud": { + "u": 0.9929506545820745, + "t": 0.9908998988877654, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.49550879783437923, + "t": 0.5402120141342757, + "punct": null + } + }, + "ps": { + "ersatz": { + "u": 0.8256812243374394, + "t": 0.8236229866772717, + "punct": null + }, + "opus100": { + "u": 0.8645866838211644, + "t": 0.8604878048780488, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.49399656946826753, + "t": 0.49572649572649585, + "punct": null + } + }, + "pt": { + "opus100": { + "u": 0.9363854138940645, + "t": 0.9469964664310954, + "punct": null + }, + "ud": { + "u": 0.9744801512287334, + "t": 0.9799235181644359, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5707172369954443, + "t": 0.5758788225207203, + "punct": null + }, + "legal-all-laws": { + "u": 0.7318630283860478, + "t": 0.6868721857271527, + "punct": null, + "acc_u": 0.08620689655172414, + "acc_t": 0.10344827586206896, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.45216611667421924, + "t": 0.4870268912058248, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.8008060516409721, + "t": 0.8091432232245568, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.3545051841069901, + "t": 0.41170812008384106, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "ro": { + "ersatz": { + "u": 0.9811850603762987, + "t": 0.9830978110279855, + "punct": null + }, + "opus100": { + "u": 0.9500964984835952, + "t": 0.9508287292817681, + "punct": null + }, + "ud": { + "u": 0.9915433403805497, + "t": 0.9936440677966103, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.30629238561249894, + "t": 0.5316409292947807, + "punct": null + } + }, + "ru": { + "ersatz": { + "u": 0.9865621500559911, + "t": 0.9881690140845071, + "punct": null + }, + "opus100": { + "u": 0.8399896933779953, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9267080745341616, + "t": 0.9280397022332506, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5496682182826582, + "t": 0.5506172839506174, + "punct": null + } + }, + "si": { + "opus100": { + "u": 0.8576104746317512, + "t": 0.8587045640885488, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.44548651817116064, + "t": 0.4893435635123615, + "punct": null + } + }, + "sk": { + "opus100": { + "u": 0.9549158066268333, + "t": 0.9570921016671221, + "punct": null + }, + "ud": { + "u": 0.9549647314161692, + "t": 0.958400864397623, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5237501417072894, + "t": 0.5272892807513536, + "punct": null + } + }, + "sl": { + "opus100": { + "u": 0.9490703314470494, + "t": 0.9497446922870196, + "punct": null + }, + "ud": { + "u": 0.9926311226701343, + "t": 0.9921942758022549, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4970658412329915, + "t": 0.5264649326991194, + "punct": null + }, + "short-sequences": { + "u": 0.7825075340104666, + "t": 0.7910985774762297, + "punct": null, + "acc_u": 0.3255131964809384, + "acc_t": 0.3405425219941349, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.6433215224820797, + "t": 0.6436531007278808, + "punct": null, + "acc_u": 0.10777126099706745, + "acc_t": 0.10850439882697947, + "acc_punct": null + } + }, + "sq": { + "opus100": { + "u": 0.9582875960482985, + "t": 0.9575353871773522, + "punct": null + }, + "ud": { + "u": 0.9906542056074767, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3504632195739964, + "t": 0.5064952457479577, + "punct": null + } + }, + "sr": { + "opus100": { + "u": 0.9619771863117871, + "t": 0.9614340032590984, + "punct": null + }, + "ud": { + "u": 0.992465016146394, + "t": 0.9924973204715971, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4636386512330146, + "t": 0.5025732826135602, + "punct": null + }, + "short-sequences": { + "u": 0.9200851521164021, + "t": 0.9216476521164022, + "punct": null, + "acc_u": 0.7135416666666666, + "acc_t": 0.71875, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.6533936838624338, + "t": 0.6504152386964887, + "punct": null, + "acc_u": 0.125, + "acc_t": 0.11979166666666667, + "acc_punct": null + } + }, + "sv": { + "opus100": { + "u": 0.9512459371614301, + "t": 0.9468908460101414, + "punct": null + }, + "ud": { + "u": 0.9649309245483528, + "t": 0.9644562334217506, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5302608583079812, + "t": 0.5645484949832776, + "punct": null + } + }, + "ta": { + "ersatz": { + "u": 0.9861495844875346, + "t": 0.9855875831485587, + "punct": null + }, + "opus100": { + "u": 0.7556505803298718, + "t": 0.7591019417475727, + "punct": null + }, + "ud": { + "u": 1.0, + "t": 1.0, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.43824850299401197, + "t": 0.44649614045709096, + "punct": null + } + }, + "te": { + "opus100": { + "u": 0.8704663212435233, + "t": 0.8711834835708054, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5006170300287947, + "t": 0.5089483552070905, + "punct": null + } + }, + "tg": { + "opus100": { + "u": 0.9215792320173066, + "t": 0.9147459039155791, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4040920716112532, + "t": 0.5234248788368336, + "punct": null + } + }, + "th": { + "opus100": { + "u": 0.7401841977702376, + "t": 0.7338021094927172, + "punct": null + }, + "ud": { + "u": 0.5903271692745378, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5202199144777031, + "t": 0.5785960472928755, + "punct": null + } + }, + "tr": { + "ersatz": { + "u": 0.9627810315511053, + "t": 0.9681340946767361, + "punct": null + }, + "opus100": { + "u": 0.9404696886947024, + "t": 0.9428263214670981, + "punct": null + }, + "ud": { + "u": 0.9858870967741936, + "t": 0.9832911392405064, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.539780916690689, + "t": 0.6649417852522639, + "punct": null + } + }, + "uk": { + "opus100": { + "u": 0.9344698987746404, + "t": 0.9337589784517158, + "punct": null + }, + "ud": { + "u": 0.9827586206896551, + "t": 0.982779827798278, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5515275336152421, + "t": 0.5509904969032197, + "punct": null + } + }, + "ur": { + "opus100": { + "u": 0.5278654048370137, + "t": 0.6020587496861662, + "punct": null + }, + "ud": { + "u": 0.9927310488058151, + "t": 0.9927007299270073, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5225664053580943, + "t": 0.5696532593619972, + "punct": null + } + }, + "uz": { + "opus100": { + "u": 0.8662453923117429, + "t": 0.8648648648648649, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6080598537663663, + "t": 0.6525855790240349, + "punct": null + } + }, + "vi": { + "opus100": { + "u": 0.9434599156118143, + "t": 0.946230598669623, + "punct": null + }, + "ud": { + "u": 0.9944674965421854, + "t": 0.9958333333333333, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3436447646644217, + "t": 0.48415517320909635, + "punct": null + } + }, + "xh": { + "opus100": { + "u": 0.9051970302684181, + "t": 0.904581266413773, + "punct": null + } + }, + "yi": { + "opus100": { + "u": 0.8929219600725952, + "t": 0.8880733944954128, + "punct": null + } + }, + "yo": { + "opus100": { + "u": 0.5384072185170655, + "t": null, + "punct": null + }, + "ud": { + "u": 0.8928571428571429, + "t": null, + "punct": null + } + }, + "zh": { + "ersatz": { + "u": 0.9021586767591814, + "t": 0.8974429474841904, + "punct": null + }, + "opus100": { + "u": 0.7738246505717916, + "t": 0.7323362558019599, + "punct": null + }, + "ud": { + "u": 0.9866666666666668, + "t": 0.9866666666666668, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.0933080008444163, + "t": 0.3406274343176829, + "punct": null + } + }, + "zu": { + "opus100": { + "u": 0.9406606255480853, + "t": 0.9417332150251405, + "punct": null + } + }, + "tr-de": { + "code-switching": { + "u": 0.9986168741355463, + "t": 0.9986168741355463, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.28512110726643597, + "t": 0.32225762403277197, + "punct": null + } + }, + "es-en": { + "code-switching": { + "u": 0.8005578800557881, + "t": 0.8384491114701129, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.38210155857214684, + "t": 0.43480861244019137, + "punct": null + } + }, + "vi-en": { + "code-switching": { + "u": 0.31542857142857145, + "t": 0.4438523030072326, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.32324386065105654, + "t": 0.4421935033181977, + "punct": null + } + }, + "en-de": { + "code-switching": { + "u": 0.8006182380216382, + "t": 0.8654173764906303, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.39397321428571425, + "t": 0.42433234421364985, + "punct": null + }, + "short-sequences": { + "u": 0.8834864989014427, + "t": 0.8887067888706209, + "punct": null, + "acc_u": 0.5571725571725572, + "acc_t": 0.5738045738045738, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.6119621978884596, + "t": 0.6243980648393097, + "punct": null, + "acc_u": 0.06860706860706861, + "acc_t": 0.09147609147609148, + "acc_punct": null + } + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-sm-3l_no_pretraining.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-sm-3l_no_pretraining.json new file mode 100644 index 0000000000000000000000000000000000000000..96240c32e6405ddbcc334c6d134239415a670133 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-sm-3l_no_pretraining.json @@ -0,0 +1,1645 @@ +{ + "af": { + "opus100": { + "u": 0.8315201411349603, + "t": 0.8425089016707752, + "punct": null + }, + "ud": { + "u": 1.0, + "t": 1.0, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5200553250345782, + "t": 0.525730180806676, + "punct": null + } + }, + "am": { + "opus100": { + "u": 0.6403026134800549, + "t": 0.7165717385408191, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.414027149321267, + "t": 0.45537340619307837, + "punct": null + } + }, + "ar": { + "ersatz": { + "u": 0.8125, + "t": 0.9007282483710233, + "punct": null + }, + "opus100": { + "u": 0.5862972669412205, + "t": 0.6789709172259507, + "punct": null + }, + "ud": { + "u": 0.8324066719618745, + "t": 0.8364197530864198, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.22547508988186957, + "t": 0.44341146346267485, + "punct": null + } + }, + "az": { + "opus100": { + "u": 0.7725782414307004, + "t": 0.8186418109187751, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.628636723213501, + "t": 0.6500259240056292, + "punct": null + } + }, + "be": { + "opus100": { + "u": 0.842827318818968, + "t": 0.8585227272727273, + "punct": null + }, + "ud": { + "u": 0.8915531335149863, + "t": 0.8915531335149863, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4788039364118092, + "t": 0.5054277029960921, + "punct": null + } + }, + "bg": { + "opus100": { + "u": 0.9612150800108489, + "t": 0.9607152533188837, + "punct": null + }, + "ud": { + "u": 0.9860279441117764, + "t": 0.9875435974090684, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5485037816507728, + "t": 0.5600693810480191, + "punct": null + } + }, + "bn": { + "opus100": { + "u": 0.8691771269177127, + "t": 0.8653217011995638, + "punct": null + }, + "ud": { + "u": 1.0, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.2108124433705829, + "t": 0.3226435008524803, + "punct": null + } + }, + "ca": { + "opus100": { + "u": 0.9276154056268779, + "t": 0.9285330467490598, + "punct": null + }, + "ud": { + "u": 0.9969897652016857, + "t": 0.9969897652016857, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4049132328786688, + "t": 0.4921675926312712, + "punct": null + } + }, + "ceb": { + "ud": { + "u": 0.9970501474926253, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.1176470588235294, + "t": 0.33333333333333337, + "punct": null + } + }, + "cs": { + "ersatz": { + "u": 0.9769378603459321, + "t": 0.979631425800194, + "punct": null + }, + "opus100": { + "u": 0.9345692475463468, + "t": 0.9342428376534788, + "punct": null + }, + "ud": { + "u": 0.934251021207543, + "t": 0.9341143654114366, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5011806018042018, + "t": 0.5270251557812139, + "punct": null + } + }, + "cy": { + "opus100": { + "u": 0.7179846046186144, + "t": 0.7819905213270142, + "punct": null + }, + "ud": { + "u": 0.994733762434172, + "t": 0.994739918176505, + "punct": null + } + }, + "da": { + "opus100": { + "u": 0.9403107113654948, + "t": 0.9407930472569256, + "punct": null + }, + "ud": { + "u": 0.9851337958374629, + "t": 0.9840954274353877, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5522461538461538, + "t": 0.5815809880034667, + "punct": null + } + }, + "de": { + "ersatz": { + "u": 0.9802462066991126, + "t": 0.9811536264991433, + "punct": null + }, + "opus100": { + "u": 0.8464004663363451, + "t": 0.8518312985571588, + "punct": null + }, + "ud": { + "u": 0.9685314685314685, + "t": 0.9704347826086958, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5791698922169952, + "t": 0.5789858096828047, + "punct": null + }, + "legal-all-laws": { + "u": 0.8139834192762286, + "t": 0.8274135642921513, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.5169921101221657, + "t": 0.512544003024965, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.7541222465700049, + "t": 0.7228390056326148, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.44759173081961956, + "t": 0.47168915539072803, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "el": { + "opus100": { + "u": 0.957400327689787, + "t": 0.9582992641046607, + "punct": null + }, + "ud": { + "u": 0.9789343246592317, + "t": 0.9789343246592317, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4751667902149741, + "t": 0.4996296982040363, + "punct": null + } + }, + "en": { + "ersatz": { + "u": 0.9795447997695189, + "t": 0.9819578291428158, + "punct": null + }, + "opus100": { + "u": 0.9431567328918322, + "t": 0.9433351322180249, + "punct": null + }, + "ud": { + "u": 0.9612403100775194, + "t": 0.9612403100775194, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5098714416896235, + "t": 0.5383172439035548, + "punct": null + }, + "legal-all-judgements": { + "u": 0.8893400794501314, + "t": 0.8975976542150244, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.44649975129320985, + "t": 0.5093771059706114, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "eo": { + "opus100": { + "u": 0.9527967257844475, + "t": 0.9527967257844475, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5096249585131098, + "t": 0.5235944123983598, + "punct": null + } + }, + "es": { + "ersatz": { + "u": 0.991250455705432, + "t": null, + "punct": null + }, + "opus100": { + "u": 0.9381557150745444, + "t": 0.937279391800163, + "punct": null + }, + "ud": { + "u": 0.9916398713826367, + "t": 0.9922779922779923, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.45036447978793903, + "t": 0.5181869054280918, + "punct": null + }, + "legal-all-laws": { + "u": 0.862488068731062, + "t": 0.9309057418822237, + "punct": null, + "acc_u": 0.15846994535519127, + "acc_t": 0.3770491803278688, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.41480979499711224, + "t": 0.6140178397139959, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.740503873748186, + "t": 0.8062003385153822, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.2471799584582632, + "t": 0.370381735688654, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "et": { + "ersatz": { + "u": 0.9858686616791354, + "t": 0.9840220385674932, + "punct": null + }, + "opus100": { + "u": 0.9236263736263736, + "t": 0.9251148959178155, + "punct": null + }, + "ud": { + "u": 0.9674220963172804, + "t": 0.9696649029982363, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5239818409105862, + "t": 0.5589629486311309, + "punct": null + }, + "short-sequences": { + "u": 0.9065632853050689, + "t": 0.9017386020653572, + "punct": null, + "acc_u": 0.5172413793103449, + "acc_t": 0.5073891625615764, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.6176747525429722, + "t": 0.6321517012522395, + "punct": null, + "acc_u": 0.04433497536945813, + "acc_t": 0.06896551724137931, + "acc_punct": null + } + }, + "eu": { + "opus100": { + "u": 0.8796888024451236, + "t": 0.8878970858493043, + "punct": null + }, + "ud": { + "u": 0.9990732159406858, + "t": 0.9990732159406858, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.35877243775332945, + "t": 0.42951456310679614, + "punct": null + } + }, + "fa": { + "opus100": { + "u": 0.5756791720569211, + "t": 0.6395233366434956, + "punct": null + }, + "ud": { + "u": 0.9984744469870328, + "t": 0.9996181748759068, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.581415735261889, + "t": 0.582417025589055, + "punct": null + } + }, + "fi": { + "ersatz": { + "u": 0.9789029535864978, + "t": 0.9793025233909838, + "punct": null + }, + "opus100": { + "u": 0.9510603588907015, + "t": 0.9493636609802328, + "punct": null + }, + "ud": { + "u": 0.9699819168173599, + "t": 0.9696750902527076, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5178854067742956, + "t": 0.5503162737205289, + "punct": null + } + }, + "fr": { + "ersatz": { + "u": 0.9748470428280082, + "t": 0.9780182617517754, + "punct": null + }, + "opus100": { + "u": 0.911576011157601, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9867021276595744, + "t": 0.9867021276595744, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.48973921828629163, + "t": 0.5503676470588235, + "punct": null + }, + "legal-all-laws": { + "u": 0.8824382707868001, + "t": 0.9310543269585833, + "punct": null, + "acc_u": 0.6470588235294118, + "acc_t": 0.710239651416122, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.43141881741521604, + "t": 0.6689907062386168, + "punct": null, + "acc_u": 0.1568627450980392, + "acc_t": 0.2657952069716776, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.8649587311906862, + "t": 0.8621494577650861, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.33923194257625405, + "t": 0.42040133518226913, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "fy": { + "opus100": { + "u": 0.9001225490196078, + "t": 0.9018181818181817, + "punct": null + } + }, + "ga": { + "opus100": { + "u": 0.7286063569682153, + "t": 0.8328039272307248, + "punct": null + }, + "ud": { + "u": 0.9674306393244873, + "t": 0.9721212121212122, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.44776119402985076, + "t": 0.48837209302325585, + "punct": null + } + }, + "gd": { + "opus100": { + "u": 0.7115044247787611, + "t": 0.8229524276606179, + "punct": null + }, + "ud": { + "u": 0.8362445414847163, + "t": 0.8329764453961456, + "punct": null + } + }, + "gl": { + "opus100": { + "u": 0.9288227334235454, + "t": 0.9268292682926831, + "punct": null + }, + "ud": { + "u": 0.9721448467966575, + "t": 0.9681881051175657, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4394450693663292, + "t": 0.48324639731235075, + "punct": null + } + }, + "gu": { + "ersatz": { + "u": 0.6634026927784578, + "t": 0.6862527716186254, + "punct": null + }, + "opus100": { + "u": 0.8238498789346248, + "t": 0.8272189349112425, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.20566577146322446, + "t": 0.272065279140629, + "punct": null + } + }, + "ha": { + "opus100": { + "u": 0.8954265846483017, + "t": 0.9014830508474576, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.2608695652173913, + "t": 0.12500000000000003, + "punct": null + } + }, + "he": { + "opus100": { + "u": 0.9276780859162589, + "t": 0.929193899782135, + "punct": null + }, + "ud": { + "u": 0.9333333333333333, + "t": 0.9333333333333333, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.33049645390070925, + "t": 0.4091511936339522, + "punct": null + } + }, + "hi": { + "ersatz": { + "u": 0.9524876736889286, + "t": 0.9443413729128014, + "punct": null + }, + "opus100": { + "u": 0.6924829157175398, + "t": 0.6878072763028515, + "punct": null + }, + "ud": { + "u": 0.9980171844018506, + "t": 0.9980171844018506, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4506721348826612, + "t": 0.46960434293539394, + "punct": null + } + }, + "hu": { + "opus100": { + "u": 0.9515685195376995, + "t": 0.9543478260869566, + "punct": null + }, + "ud": { + "u": 0.9950617283950617, + "t": 0.9938195302843017, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3664243035058671, + "t": 0.4596725288053366, + "punct": null + } + }, + "hy": { + "opus100": { + "u": 0.8831042845594179, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9649952696310312, + "t": 0.9649952696310312, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.49130459737129084, + "t": 0.5060096707345153, + "punct": null + } + }, + "id": { + "opus100": { + "u": 0.9447513812154695, + "t": 0.9445211150979852, + "punct": null + }, + "ud": { + "u": 0.9844617092119867, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5024704618689582, + "t": 0.5160384395980517, + "punct": null + } + }, + "ig": { + "opus100": { + "u": 0.9116153064679987, + "t": 0.9160254265640683, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.03418803418803419, + "t": 0.12219959266802444, + "punct": null + } + }, + "is": { + "opus100": { + "u": 0.9621295279912184, + "t": 0.9634478996181124, + "punct": null + }, + "ud": { + "u": 0.9640257411119317, + "t": 0.966225516146109, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.41086749285033364, + "t": 0.5059610351846467, + "punct": null + } + }, + "it": { + "opus100": { + "u": 0.9051906779661016, + "t": 0.9050013231013496, + "punct": null + }, + "ud": { + "u": 0.9976958525345622, + "t": 0.9965477560414269, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4704725619123702, + "t": 0.514924368239149, + "punct": null + }, + "legal-all-laws": { + "u": 0.7848505917439741, + "t": 0.7888799598589654, + "punct": null, + "acc_u": 0.3494318181818182, + "acc_t": 0.46875, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.3259887814170461, + "t": 0.4207837325340675, + "punct": null, + "acc_u": 0.06960227272727272, + "acc_t": 0.06534090909090909, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.8517219023007819, + "t": 0.8550152763885431, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.2756733768531518, + "t": 0.33093458168561296, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "ja": { + "ersatz": { + "u": 0.8544857768052516, + "t": 0.8579325594250967, + "punct": null + }, + "opus100": { + "u": 0.5511496167944019, + "t": 0.6215192693250167, + "punct": null + }, + "ud": { + "u": 0.9700722394220846, + "t": 0.9701338825952627, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7197940849904108, + "t": 0.7436158192090394, + "punct": null + } + }, + "jv": { + "ud": { + "u": 0.9857456140350878, + "t": null, + "punct": null + } + }, + "ka": { + "opus100": { + "u": 0.9348302300109529, + "t": 0.9334787350054525, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.37149712092130516, + "t": 0.38658663695503714, + "punct": null + } + }, + "kk": { + "ersatz": { + "u": 0.9955555555555555, + "t": 0.9938990571270105, + "punct": null + }, + "opus100": { + "u": 0.8745884465728824, + "t": 0.8882421420256112, + "punct": null + }, + "ud": { + "u": 0.9952203929899098, + "t": 0.7131147540983606, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5501080650665454, + "t": 0.6119520517980576, + "punct": null + } + }, + "km": { + "ersatz": { + "u": 0.7375629405840887, + "t": 0.777067153951576, + "punct": null + }, + "opus100": { + "u": 0.8570565125415532, + "t": 0.8572292800967937, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.37415881561238223, + "t": 0.41566265060240964, + "punct": null + } + }, + "kn": { + "opus100": { + "u": 0.8276797829036635, + "t": 0.8275862068965518, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.15993907083015993, + "t": 0.3339503887449093, + "punct": null + } + }, + "ko": { + "opus100": { + "u": 0.7314498602918349, + "t": 0.7750993377483444, + "punct": null + }, + "ud": { + "u": 0.9992709599027946, + "t": 0.9990277102576567, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7673515765552504, + "t": 0.7674208144796382, + "punct": null + } + }, + "ku": { + "opus100": { + "u": 0.847846296870158, + "t": 0.851259987707437, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.07140332272887946, + "t": 0.1950525207093854, + "punct": null + } + }, + "ky": { + "opus100": { + "u": 0.9259259259259259, + "t": 0.9253438113948919, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4647519582245431, + "t": 0.4539982803095442, + "punct": null + } + }, + "la": { + "ud": { + "u": 0.9759288330716902, + "t": 0.9763157894736842, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.15384615384615383, + "t": 0.3157894736842105, + "punct": null + } + }, + "lt": { + "ersatz": { + "u": 0.9626274065685164, + "t": 0.9631728045325779, + "punct": null + }, + "opus100": { + "u": 0.8722157092614302, + "t": 0.870140612076096, + "punct": null + }, + "ud": { + "u": 0.9787234042553191, + "t": 0.9755301794453507, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4458494025415692, + "t": 0.4889152140802166, + "punct": null + } + }, + "lv": { + "ersatz": { + "u": 0.9900332225913621, + "t": 0.9894969596462133, + "punct": null + }, + "opus100": { + "u": 0.8590086078955179, + "t": 0.8686252771618626, + "punct": null + }, + "ud": { + "u": 0.9914450867052023, + "t": 0.9907791609036422, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.47751633986928105, + "t": 0.5305427329359566, + "punct": null + } + }, + "mg": { + "opus100": { + "u": 0.9264665381437619, + "t": 0.9231190150478796, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.12396694214876033, + "t": 0.359375, + "punct": null + } + }, + "mk": { + "opus100": { + "u": 0.953482118849153, + "t": 0.9541531823085222, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5135851213050028, + "t": 0.5228630002674035, + "punct": null + } + }, + "ml": { + "opus100": { + "u": 0.8641641911963274, + "t": 0.8598726114649683, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4103861068959703, + "t": 0.4208198171630787, + "punct": null + } + }, + "mn": { + "opus100": { + "u": 0.7747489239598279, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7692740890916258, + "t": 0.7690750632555524, + "punct": null + } + }, + "mr": { + "opus100": { + "u": 0.9182209469153516, + "t": 0.924985899605189, + "punct": null + }, + "ud": { + "u": 0.9761904761904762, + "t": 0.925, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.35199355618203787, + "t": 0.35228974719738576, + "punct": null + } + }, + "ms": { + "opus100": { + "u": 0.9430080622741173, + "t": 0.9410462219761971, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4974763406940063, + "t": 0.5060466359323845, + "punct": null + } + }, + "mt": { + "opus100": { + "u": 0.7683397683397682, + "t": 0.7911845730027548, + "punct": null + }, + "ud": { + "u": 0.9244249726177438, + "t": 0.9155844155844156, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.24778761061946905, + "t": 0.3474576271186441, + "punct": null + } + }, + "my": { + "opus100": { + "u": 0.8753254266705236, + "t": 0.8755414380594859, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.8780187835420394, + "t": 0.8801681054066334, + "punct": null + } + }, + "ne": { + "opus100": { + "u": 0.8050508161379735, + "t": 0.8080316397931244, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.38045602605863194, + "t": 0.4862518089725037, + "punct": null + } + }, + "nl": { + "opus100": { + "u": 0.9473963868225291, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9523809523809524, + "t": 0.9523809523809524, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6326362588506503, + "t": 0.6328361494853871, + "punct": null + } + }, + "no": { + "opus100": { + "u": 0.9618196588139724, + "t": 0.9621212121212122, + "punct": null + }, + "ud": { + "u": 0.9897025171624714, + "t": 0.9899914212181871, + "punct": null + } + }, + "pa": { + "opus100": { + "u": 0.7945205479452054, + "t": 0.7958812840702605, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.26429980276134124, + "t": 0.3602649006622517, + "punct": null + } + }, + "pl": { + "ersatz": { + "u": 0.9627933600457929, + "t": 0.9670828603859251, + "punct": null + }, + "opus100": { + "u": 0.9499174463401211, + "t": 0.9485994016861572, + "punct": null + }, + "ud": { + "u": 0.9891331817033105, + "t": 0.988342625443487, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.517200325834952, + "t": 0.562080378250591, + "punct": null + } + }, + "ps": { + "ersatz": { + "u": 0.6105366814377154, + "t": 0.6108577313520671, + "punct": null + }, + "opus100": { + "u": 0.8603205757278377, + "t": 0.8605246321177223, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.40816326530612246, + "t": 0.39592969472710454, + "punct": null + } + }, + "pt": { + "opus100": { + "u": 0.9418416801292406, + "t": 0.945474372955289, + "punct": null + }, + "ud": { + "u": 0.9765662362505978, + "t": 0.9737970462124822, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5189920556107249, + "t": 0.5597038797239867, + "punct": null + }, + "legal-all-laws": { + "u": 0.7471688303553741, + "t": 0.6939363663423003, + "punct": null, + "acc_u": 0.1724137931034483, + "acc_t": 0.06896551724137931, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.5323060880347422, + "t": 0.5785120669202116, + "punct": null, + "acc_u": 0.017241379310344827, + "acc_t": 0.017241379310344827, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.8118954820671014, + "t": 0.7856710620459357, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.28755029857918346, + "t": 0.395152554398539, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "ro": { + "ersatz": { + "u": 0.971851009382997, + "t": 0.975774647887324, + "punct": null + }, + "opus100": { + "u": 0.9500423370025403, + "t": 0.9505114735969036, + "punct": null + }, + "ud": { + "u": 0.9915433403805497, + "t": 0.9910195456946647, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4077107753142212, + "t": 0.4996813256851497, + "punct": null + } + }, + "ru": { + "ersatz": { + "u": 0.976691301876066, + "t": 0.9749430523917995, + "punct": null + }, + "opus100": { + "u": 0.8353096179183136, + "t": null, + "punct": null + }, + "ud": { + "u": 0.8998748435544431, + "t": 0.8993710691823898, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5055481038897696, + "t": 0.5462728305514288, + "punct": null + } + }, + "si": { + "opus100": { + "u": 0.8554444744663604, + "t": 0.8554508748317632, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4848484848484848, + "t": 0.4874675885911841, + "punct": null + } + }, + "sk": { + "opus100": { + "u": 0.9518599562363238, + "t": 0.9511135252580121, + "punct": null + }, + "ud": { + "u": 0.9469122426868904, + "t": 0.9498111171073934, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.523860247123988, + "t": 0.531081020690888, + "punct": null + } + }, + "sl": { + "opus100": { + "u": 0.9451980466630494, + "t": 0.9474812433011789, + "punct": null + }, + "ud": { + "u": 0.9917427205562799, + "t": 0.9917427205562799, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5267379679144385, + "t": 0.5664255425293091, + "punct": null + }, + "short-sequences": { + "u": 0.7928966134061443, + "t": 0.7953921251850137, + "punct": null, + "acc_u": 0.33724340175953077, + "acc_t": 0.3376099706744868, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.6759001364389928, + "t": 0.6767451919211451, + "punct": null, + "acc_u": 0.1499266862170088, + "acc_t": 0.16532258064516128, + "acc_punct": null + } + }, + "sq": { + "opus100": { + "u": 0.954334153677878, + "t": 0.9547325102880659, + "punct": null + }, + "ud": { + "u": 1.0, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.48340145548798724, + "t": 0.4825728237076949, + "punct": null + } + }, + "sr": { + "opus100": { + "u": 0.9607415485278081, + "t": 0.9602396514161221, + "punct": null + }, + "ud": { + "u": 0.9870129870129869, + "t": 0.9881593110871905, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4839232303090728, + "t": 0.5170983993936421, + "punct": null + }, + "short-sequences": { + "u": 0.9202854437229439, + "t": 0.9175779371091872, + "punct": null, + "acc_u": 0.7083333333333334, + "acc_t": 0.7135416666666666, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.6411334325396826, + "t": 0.6455943362193363, + "punct": null, + "acc_u": 0.109375, + "acc_t": 0.11458333333333333, + "acc_punct": null + } + }, + "sv": { + "opus100": { + "u": 0.9516829533116177, + "t": 0.9500944159697869, + "punct": null + }, + "ud": { + "u": 0.9557428872497366, + "t": 0.9578059071729957, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5662672367074125, + "t": 0.5789366053169734, + "punct": null + } + }, + "ta": { + "ersatz": { + "u": 0.9793641940881205, + "t": 0.9799107142857142, + "punct": null + }, + "opus100": { + "u": 0.6546305583416917, + "t": 0.6657894736842106, + "punct": null + }, + "ud": { + "u": 1.0, + "t": 0.9953488372093023, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3918181818181818, + "t": 0.42495876855415066, + "punct": null + } + }, + "te": { + "opus100": { + "u": 0.8581560283687942, + "t": 0.8612078977932636, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4777584296343201, + "t": 0.48205477121959517, + "punct": null + } + }, + "tg": { + "opus100": { + "u": 0.8902093944538766, + "t": 0.9128452668275677, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.19318181818181815, + "t": 0.3980582524271845, + "punct": null + } + }, + "th": { + "opus100": { + "u": 0.7313469588771239, + "t": 0.7311046511627908, + "punct": null + }, + "ud": { + "u": 0.6178142766898295, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5591560670300827, + "t": 0.561092905477295, + "punct": null + } + }, + "tr": { + "ersatz": { + "u": 0.968313843832516, + "t": 0.9679224170085788, + "punct": null + }, + "opus100": { + "u": 0.9450731438034777, + "t": 0.9417528579205227, + "punct": null + }, + "ud": { + "u": 0.9843828715365239, + "t": 0.9843828715365239, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6652100840336135, + "t": 0.6699539071711866, + "punct": null + } + }, + "uk": { + "opus100": { + "u": 0.9327572238725359, + "t": 0.9303931987247609, + "punct": null + }, + "ud": { + "u": 0.9678638941398865, + "t": 0.9678638941398865, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4916733733671764, + "t": 0.5299349982894287, + "punct": null + } + }, + "ur": { + "opus100": { + "u": 0.5217983651226158, + "t": 0.5467289719626168, + "punct": null + }, + "ud": { + "u": 0.9937629937629938, + "t": 0.9937629937629938, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5085314277380779, + "t": 0.5254018932392315, + "punct": null + } + }, + "uz": { + "opus100": { + "u": 0.8153374233128835, + "t": 0.8305732484076433, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4572564612326044, + "t": 0.5256715402924176, + "punct": null + } + }, + "vi": { + "opus100": { + "u": 0.9343981745579006, + "t": 0.9364548494983277, + "punct": null + }, + "ud": { + "u": 0.9951489951489952, + "t": 0.9958333333333333, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.39310176125244617, + "t": 0.427842737189045, + "punct": null + } + }, + "xh": { + "opus100": { + "u": 0.8648328896776102, + "t": 0.8822184105202974, + "punct": null + } + }, + "yi": { + "opus100": { + "u": 0.8756906077348066, + "t": 0.8784277879341865, + "punct": null + } + }, + "yo": { + "opus100": { + "u": 0.6540052906464084, + "t": null, + "punct": null + }, + "ud": { + "u": 0.8661417322834645, + "t": null, + "punct": null + } + }, + "zh": { + "ersatz": { + "u": 0.8998597475455821, + "t": 0.8937586685159501, + "punct": null + }, + "opus100": { + "u": 0.7383953273901014, + "t": 0.6641562720640151, + "punct": null + }, + "ud": { + "u": 0.9855715871254163, + "t": 0.983388704318937, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.2367685663477009, + "t": 0.3500461396493386, + "punct": null + } + }, + "zu": { + "opus100": { + "u": 0.9321676213445884, + "t": 0.9313113291703837, + "punct": null + } + }, + "tr-de": { + "code-switching": { + "u": 0.9816949152542372, + "t": 0.9937973811164714, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.2968159740960604, + "t": 0.3113291703835861, + "punct": null + } + }, + "es-en": { + "code-switching": { + "u": 0.8175244576775841, + "t": 0.8244638602065131, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.4278695846359982, + "t": 0.4775510204081632, + "punct": null + } + }, + "vi-en": { + "code-switching": { + "u": 0.3404255319148936, + "t": 0.4065151001017984, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.3512974051896207, + "t": 0.4200707623029913, + "punct": null + } + }, + "en-de": { + "code-switching": { + "u": 0.834983498349835, + "t": 0.8961748633879782, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.44531864673485444, + "t": 0.4474097331240188, + "punct": null + }, + "short-sequences": { + "u": 0.9279317926398358, + "t": 0.9397332542612632, + "punct": null, + "acc_u": 0.6902286902286903, + "acc_t": 0.7297297297297297, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.6435097134532228, + "t": 0.6400656408646939, + "punct": null, + "acc_u": 0.13721413721413722, + "acc_t": 0.11642411642411643, + "acc_punct": null + } + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-sm-6l.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-sm-6l.json new file mode 100644 index 0000000000000000000000000000000000000000..97990438c37443d3431fa5ac2438796ffb63294c --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/sat-sm-6l.json @@ -0,0 +1,1645 @@ +{ + "af": { + "opus100": { + "u": 0.8877833056937534, + "t": 0.8867132867132866, + "punct": null + }, + "ud": { + "u": 1.0, + "t": 1.0, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6978021978021978, + "t": 0.6949152542372882, + "punct": null + } + }, + "am": { + "opus100": { + "u": 0.8263988522238164, + "t": 0.8234265734265734, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.39080459770114945, + "t": 0.5511684125705076, + "punct": null + } + }, + "ar": { + "ersatz": { + "u": 0.9143290371493555, + "t": 0.9149736644093304, + "punct": null + }, + "opus100": { + "u": 0.7340631036703155, + "t": 0.7829810008027829, + "punct": null + }, + "ud": { + "u": 0.8816388467374812, + "t": 0.8774094063222823, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5196594527848183, + "t": 0.597467121285923, + "punct": null + } + }, + "az": { + "opus100": { + "u": 0.8890052356020942, + "t": 0.8719529279910339, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6121060530265133, + "t": 0.7059461973796418, + "punct": null + } + }, + "be": { + "opus100": { + "u": 0.8936289643558799, + "t": 0.886209938253455, + "punct": null + }, + "ud": { + "u": 0.951838425686173, + "t": 0.9501312335958004, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6877079107505071, + "t": 0.6871255060728745, + "punct": null + } + }, + "bg": { + "opus100": { + "u": 0.9680043383947939, + "t": 0.9680043383947939, + "punct": null + }, + "ud": { + "u": 0.9975087194818136, + "t": 0.99800796812749, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7078933661631707, + "t": 0.7198441585072025, + "punct": null + } + }, + "bn": { + "opus100": { + "u": 0.901802528921173, + "t": 0.9106359649122807, + "punct": null + }, + "ud": { + "u": 1.0, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.13470361534226463, + "t": 0.3550839669145292, + "punct": null + } + }, + "ca": { + "opus100": { + "u": 0.9418386491557222, + "t": 0.9491525423728814, + "punct": null + }, + "ud": { + "u": 0.9961019490254873, + "t": 0.9984962406015038, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6830671845777586, + "t": 0.6835223995385503, + "punct": null + } + }, + "ceb": { + "ud": { + "u": 0.9910979228486648, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3823529411764706, + "t": 0.5043478260869565, + "punct": null + } + }, + "cs": { + "ersatz": { + "u": 0.9891095451633569, + "t": 0.990372272143774, + "punct": null + }, + "opus100": { + "u": 0.950988356349851, + "t": 0.9525897506166072, + "punct": null + }, + "ud": { + "u": 0.9678739286701687, + "t": 0.9647389107243123, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7010299797682545, + "t": 0.7076771653543307, + "punct": null + } + }, + "cy": { + "opus100": { + "u": 0.8350253807106599, + "t": 0.837378640776699, + "punct": null + }, + "ud": { + "u": 0.9964871194379391, + "t": 0.9976608187134502, + "punct": null + } + }, + "da": { + "opus100": { + "u": 0.9522517634291915, + "t": 0.9525616698292221, + "punct": null + }, + "ud": { + "u": 0.9863013698630135, + "t": 0.9872673849167483, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7061745509154971, + "t": 0.7193532086912582, + "punct": null + } + }, + "de": { + "ersatz": { + "u": 0.9787946428571428, + "t": 0.9914869466515324, + "punct": null + }, + "opus100": { + "u": 0.8952693464588459, + "t": 0.8949671772428884, + "punct": null + }, + "ud": { + "u": 0.9879931389365352, + "t": 0.9856404365307294, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7503059975520197, + "t": 0.7514743921365754, + "punct": null + }, + "legal-all-laws": { + "u": 0.905461038209784, + "t": 0.9007267745172527, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.7500115469003314, + "t": 0.752214024247702, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.7887594812505152, + "t": 0.7793267415315052, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.6552244299078092, + "t": 0.6505575232939121, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "el": { + "opus100": { + "u": 0.9617782596909732, + "t": 0.9617782596909732, + "punct": null + }, + "ud": { + "u": 0.9767441860465117, + "t": 0.9803921568627451, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6765634870499053, + "t": 0.6744380502680635, + "punct": null + } + }, + "en": { + "ersatz": { + "u": 0.9821059385470877, + "t": 0.9884309472161967, + "punct": null + }, + "opus100": { + "u": 0.9535135135135134, + "t": 0.9548037889039243, + "punct": null + }, + "ud": { + "u": 0.9704383282364935, + "t": 0.9696345856922286, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.686975384325191, + "t": 0.6914394166416942, + "punct": null + }, + "legal-all-judgements": { + "u": 0.9300126976600114, + "t": 0.9265125610129292, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.6853543307864434, + "t": 0.6924795113239921, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "eo": { + "opus100": { + "u": 0.9614859328052444, + "t": 0.9631057268722467, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5652477320307049, + "t": 0.6202723146747351, + "punct": null + } + }, + "es": { + "ersatz": { + "u": 0.9958295557570263, + "t": null, + "punct": null + }, + "opus100": { + "u": 0.9542129504199404, + "t": 0.9550191991223258, + "punct": null + }, + "ud": { + "u": 0.9910371318822023, + "t": 0.994528484068233, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6862140940264387, + "t": 0.688030451108482, + "punct": null + }, + "legal-all-laws": { + "u": 0.9210881794793483, + "t": 0.9280691351301182, + "punct": null, + "acc_u": 0.34972677595628415, + "acc_t": 0.3989071038251366, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.795814126383459, + "t": 0.7958034942266843, + "punct": null, + "acc_u": 0.12021857923497267, + "acc_t": 0.08196721311475409, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.8050482922808525, + "t": 0.824717354254538, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.02564102564102564, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.5623916333056761, + "t": 0.6021988043674555, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "et": { + "ersatz": { + "u": 0.99312620291449, + "t": 0.993662165885919, + "punct": null + }, + "opus100": { + "u": 0.9435787211176787, + "t": 0.9527193222191854, + "punct": null + }, + "ud": { + "u": 0.9860966284323949, + "t": 0.9866063663245781, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7479625411288282, + "t": 0.7494062983995871, + "punct": null + }, + "short-sequences": { + "u": 0.9168985344581712, + "t": 0.9125098523034286, + "punct": null, + "acc_u": 0.5467980295566502, + "acc_t": 0.5566502463054187, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.7752939150291207, + "t": 0.7797946464700786, + "punct": null, + "acc_u": 0.2019704433497537, + "acc_t": 0.20689655172413793, + "acc_punct": null + } + }, + "eu": { + "opus100": { + "u": 0.9240710823909531, + "t": 0.9237356168049238, + "punct": null + }, + "ud": { + "u": 0.9990737882062365, + "t": 0.9993823347745522, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5965224263979451, + "t": 0.6099359753626712, + "punct": null + } + }, + "fa": { + "opus100": { + "u": 0.7323943661971831, + "t": 0.7416020671834626, + "punct": null + }, + "ud": { + "u": 1.0, + "t": 1.0, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6757981355137754, + "t": 0.6775643645279934, + "punct": null + } + }, + "fi": { + "ersatz": { + "u": 0.9930613377740771, + "t": 0.9916481069042317, + "punct": null + }, + "opus100": { + "u": 0.9618609683527185, + "t": 0.9641888225718936, + "punct": null + }, + "ud": { + "u": 0.9838998211091236, + "t": 0.9838767466857757, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7153753090316134, + "t": 0.7135817677856482, + "punct": null + } + }, + "fr": { + "ersatz": { + "u": 0.9879598662207357, + "t": 0.9872568745808182, + "punct": null + }, + "opus100": { + "u": 0.9339158929546696, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9879518072289156, + "t": 0.9879518072289156, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6905768905430553, + "t": 0.7015178801131978, + "punct": null + }, + "legal-all-laws": { + "u": 0.9595800415511595, + "t": 0.953697652235777, + "punct": null, + "acc_u": 0.7843137254901961, + "acc_t": 0.775599128540305, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.8072824995546156, + "t": 0.840284969692788, + "punct": null, + "acc_u": 0.4466230936819172, + "acc_t": 0.4662309368191721, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.8571509670634706, + "t": 0.8610695413765259, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.6353465091268855, + "t": 0.6397808584489105, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "fy": { + "opus100": { + "u": 0.9333733493397358, + "t": 0.927483241925655, + "punct": null + } + }, + "ga": { + "opus100": { + "u": 0.8875562218890554, + "t": 0.9062146892655367, + "punct": null + }, + "ud": { + "u": 0.9828431372549019, + "t": 0.9782608695652174, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.49438202247191015, + "t": 0.3561643835616438, + "punct": null + } + }, + "gd": { + "opus100": { + "u": 0.8937655860349127, + "t": 0.9019221291276491, + "punct": null + }, + "ud": { + "u": 0.8478701825557811, + "t": 0.8617021276595744, + "punct": null + } + }, + "gl": { + "opus100": { + "u": 0.9443254817987151, + "t": 0.9477693144722524, + "punct": null + }, + "ud": { + "u": 0.9944444444444445, + "t": 0.9903181189488244, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6731367688169206, + "t": 0.6750575594781274, + "punct": null + } + }, + "gu": { + "ersatz": { + "u": 0.8441717791411042, + "t": 0.839108910891089, + "punct": null + }, + "opus100": { + "u": 0.8688756726139903, + "t": 0.8683901292596944, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.24437534296689226, + "t": 0.3446081871345029, + "punct": null + } + }, + "ha": { + "opus100": { + "u": 0.9264666843642155, + "t": 0.9223619464188081, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.2608695652173913, + "t": 0.4242424242424242, + "punct": null + } + }, + "he": { + "opus100": { + "u": 0.9229144667370645, + "t": 0.9336223245732863, + "punct": null + }, + "ud": { + "u": 0.9654178674351584, + "t": 0.9654178674351584, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.627041499330656, + "t": 0.6325248816310755, + "punct": null + } + }, + "hi": { + "ersatz": { + "u": 0.9852129772677113, + "t": 0.9851078017337186, + "punct": null + }, + "opus100": { + "u": 0.7845247245708429, + "t": 0.7883250065737576, + "punct": null + }, + "ud": { + "u": 0.9990089197224975, + "t": 0.9990089197224975, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5620562056205621, + "t": 0.5667412378821775, + "punct": null + } + }, + "hu": { + "opus100": { + "u": 0.963646228974498, + "t": 0.9624183006535947, + "punct": null + }, + "ud": { + "u": 0.9975308641975309, + "t": 0.9938499384993851, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6504916506662012, + "t": 0.66538820868368, + "punct": null + } + }, + "hy": { + "opus100": { + "u": 0.9137340392401121, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9786046511627907, + "t": 0.9803921568627452, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6956340956340957, + "t": 0.696436581111388, + "punct": null + } + }, + "id": { + "opus100": { + "u": 0.9512262331220721, + "t": 0.9520336605890602, + "punct": null + }, + "ud": { + "u": 0.9933259176863181, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5880369630369631, + "t": 0.6295801526717557, + "punct": null + } + }, + "ig": { + "opus100": { + "u": 0.9338210841370136, + "t": 0.9333791208791209, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.056074766355140186, + "t": 0.23232323232323232, + "punct": null + } + }, + "is": { + "opus100": { + "u": 0.9661756683033278, + "t": 0.9670389539634976, + "punct": null + }, + "ud": { + "u": 0.96646277156718, + "t": 0.9688239088368094, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6868402533427164, + "t": 0.6751080914144533, + "punct": null + } + }, + "it": { + "opus100": { + "u": 0.918410041841004, + "t": 0.9206432902715529, + "punct": null + }, + "ud": { + "u": 0.9954022988505747, + "t": 0.9965477560414269, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6718863801893664, + "t": 0.6877759171867864, + "punct": null + }, + "legal-all-laws": { + "u": 0.8086109261511848, + "t": 0.8585928416350683, + "punct": null, + "acc_u": 0.3039772727272727, + "acc_t": 0.6803977272727273, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.6480169871348277, + "t": 0.6581952180494063, + "punct": null, + "acc_u": 0.09517045454545454, + "acc_t": 0.26136363636363635, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.8802240749170737, + "t": 0.8781010680035853, + "punct": null, + "acc_u": 0.02040816326530612, + "acc_t": 0.02040816326530612, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.5207672879401569, + "t": 0.5203680976299441, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "ja": { + "ersatz": { + "u": 0.8936627282491945, + "t": 0.8934118907337976, + "punct": null + }, + "opus100": { + "u": 0.8502325581395349, + "t": 0.8681380871533674, + "punct": null + }, + "ud": { + "u": 0.9721362229102168, + "t": 0.972193614830072, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.9034073896640517, + "t": 0.9039133266236457, + "punct": null + } + }, + "jv": { + "ud": { + "u": 0.9917355371900827, + "t": null, + "punct": null + } + }, + "ka": { + "opus100": { + "u": 0.9388753056234719, + "t": 0.938897981451173, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6027226318774817, + "t": 0.6233401907611745, + "punct": null + } + }, + "kk": { + "ersatz": { + "u": 0.9988901220865705, + "t": 0.9988901220865705, + "punct": null + }, + "opus100": { + "u": 0.938662225922842, + "t": 0.9402205455600697, + "punct": null + }, + "ud": { + "u": 0.9957671957671959, + "t": 0.9952406134320466, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7388178167896161, + "t": 0.7484353268428372, + "punct": null + } + }, + "km": { + "ersatz": { + "u": 0.912396694214876, + "t": 0.9162278602202011, + "punct": null + }, + "opus100": { + "u": 0.883653286794648, + "t": 0.8841463414634146, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6916890080428955, + "t": 0.7529137529137531, + "punct": null + } + }, + "kn": { + "opus100": { + "u": 0.9043698543381888, + "t": 0.9028938906752412, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.06381039197812215, + "t": 0.35638297872340424, + "punct": null + } + }, + "ko": { + "opus100": { + "u": 0.8267099216004326, + "t": 0.8287635799275738, + "punct": null + }, + "ud": { + "u": 0.999514091350826, + "t": 0.999514091350826, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7666205624711848, + "t": 0.7694603571944351, + "punct": null + } + }, + "ku": { + "opus100": { + "u": 0.9257075471698113, + "t": 0.9240356083086054, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.02875536480686695, + "t": 0.3695643695643696, + "punct": null + } + }, + "ky": { + "opus100": { + "u": 0.9502262443438914, + "t": 0.9540078843626807, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6109324758842444, + "t": 0.6910377358490566, + "punct": null + } + }, + "la": { + "ud": { + "u": 0.9821709491347665, + "t": 0.9828812220173822, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3, + "t": 0.39999999999999997, + "punct": null + } + }, + "lt": { + "ersatz": { + "u": 0.9905186837702175, + "t": 0.9899553571428572, + "punct": null + }, + "opus100": { + "u": 0.9100441501103753, + "t": 0.9104436483879857, + "punct": null + }, + "ud": { + "u": 0.9853181076672104, + "t": 0.9836065573770492, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.685412442642194, + "t": 0.6854937017472572, + "punct": null + } + }, + "lv": { + "ersatz": { + "u": 0.9964177459355194, + "t": 0.9961389961389961, + "punct": null + }, + "opus100": { + "u": 0.9121658483360611, + "t": 0.9159548084871866, + "punct": null + }, + "ud": { + "u": 0.9944725932749885, + "t": 0.9944725932749885, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7084739226838909, + "t": 0.7147461724415793, + "punct": null + } + }, + "mg": { + "opus100": { + "u": 0.9585733882030179, + "t": 0.9604207030168834, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.410958904109589, + "t": 0.5333333333333333, + "punct": null + } + }, + "mk": { + "opus100": { + "u": 0.9592711682743837, + "t": 0.9575101488497969, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6472169335871878, + "t": 0.6553506974929275, + "punct": null + } + }, + "ml": { + "opus100": { + "u": 0.8880187940485513, + "t": 0.8959614870286173, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.31616425350106814, + "t": 0.4199830651989839, + "punct": null + } + }, + "mn": { + "opus100": { + "u": 0.8106931924152937, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7851136160314903, + "t": 0.8022242421001979, + "punct": null + } + }, + "mr": { + "opus100": { + "u": 0.9606694560669456, + "t": 0.9600674915635544, + "punct": null + }, + "ud": { + "u": 0.988235294117647, + "t": 0.9879518072289156, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4584461474920839, + "t": 0.4578399392287412, + "punct": null + } + }, + "ms": { + "opus100": { + "u": 0.9551906484831617, + "t": 0.9568892645815723, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5819968480578475, + "t": 0.6316925734024179, + "punct": null + } + }, + "mt": { + "opus100": { + "u": 0.874143131340828, + "t": 0.8705692803437165, + "punct": null + }, + "ud": { + "u": 0.9613733905579399, + "t": 0.9643243243243242, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.45833333333333326, + "t": 0.48837209302325585, + "punct": null + } + }, + "my": { + "opus100": { + "u": 0.9256756756756757, + "t": 0.9245604083947816, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.9490968801313631, + "t": 0.9500816027913781, + "punct": null + } + }, + "ne": { + "opus100": { + "u": 0.8587503701510215, + "t": 0.8609512269009391, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5591895803183792, + "t": 0.5986811116344796, + "punct": null + } + }, + "nl": { + "opus100": { + "u": 0.9499337748344371, + "t": null, + "punct": null + }, + "ud": { + "u": 0.962962962962963, + "t": 0.9619312906220985, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7523710166919575, + "t": 0.7849836549615101, + "punct": null + } + }, + "no": { + "opus100": { + "u": 0.9627027027027026, + "t": 0.9651416122004357, + "punct": null + }, + "ud": { + "u": 0.9940017137960583, + "t": 0.9954207212364052, + "punct": null + } + }, + "pa": { + "opus100": { + "u": 0.842225392296719, + "t": 0.8431314623338257, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.36186770428015563, + "t": 0.5389527458492976, + "punct": null + } + }, + "pl": { + "ersatz": { + "u": 0.9922394678492239, + "t": 0.991652754590985, + "punct": null + }, + "opus100": { + "u": 0.9613920609026645, + "t": 0.9613920609026645, + "punct": null + }, + "ud": { + "u": 0.995987963891675, + "t": 0.993942453306411, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7223890199442419, + "t": 0.7234131548677194, + "punct": null + } + }, + "ps": { + "ersatz": { + "u": 0.9085222830336199, + "t": 0.9131127939418094, + "punct": null + }, + "opus100": { + "u": 0.8867865026805425, + "t": 0.8846276765739853, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5782918149466193, + "t": 0.5733558178752107, + "punct": null + } + }, + "pt": { + "opus100": { + "u": 0.9514615178331993, + "t": 0.9551752241238793, + "punct": null + }, + "ud": { + "u": 0.9802073515551367, + "t": 0.9861707200762994, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7098794279839239, + "t": 0.7188446778428601, + "punct": null + }, + "legal-all-laws": { + "u": 0.7994027366263479, + "t": 0.6796908975182547, + "punct": null, + "acc_u": 0.15517241379310345, + "acc_t": 0.1206896551724138, + "acc_punct": null + }, + "legal-all-laws-corrupted-asr": { + "u": 0.710319206314002, + "t": 0.6677067704271286, + "punct": null, + "acc_u": 0.08620689655172414, + "acc_t": 0.034482758620689655, + "acc_punct": null + }, + "legal-all-judgements": { + "u": 0.8570408926051666, + "t": 0.8201449533504823, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.6541477373174004, + "t": 0.45731365704504584, + "punct": null, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": null + } + }, + "ro": { + "ersatz": { + "u": 0.9889807162534435, + "t": 0.9925311203319502, + "punct": null + }, + "opus100": { + "u": 0.9600434900788257, + "t": 0.9636963696369637, + "punct": null + }, + "ud": { + "u": 0.9947033898305085, + "t": 0.9957582184517497, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6978869217589949, + "t": 0.6954455445544554, + "punct": null + } + }, + "ru": { + "ersatz": { + "u": 0.9916154276131918, + "t": 0.9938167509836987, + "punct": null + }, + "opus100": { + "u": 0.8550280755487495, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9304878048780488, + "t": 0.9310555216595485, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7228855967893771, + "t": 0.7221921048740821, + "punct": null + } + }, + "si": { + "opus100": { + "u": 0.8786127167630058, + "t": 0.8845327604726101, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4803149606299213, + "t": 0.5193798449612403, + "punct": null + } + }, + "sk": { + "opus100": { + "u": 0.9653289653289653, + "t": 0.9670872188699945, + "punct": null + }, + "ud": { + "u": 0.9852164730728618, + "t": 0.9846804014791336, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7009018270174291, + "t": 0.7126331811263317, + "punct": null + } + }, + "sl": { + "opus100": { + "u": 0.9562650925677489, + "t": 0.9575268817204301, + "punct": null + }, + "ud": { + "u": 0.9926629261976694, + "t": 0.9943649761595146, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7348995013622578, + "t": 0.7351048370354993, + "punct": null + }, + "short-sequences": { + "u": 0.8109213977615737, + "t": 0.8125888367090713, + "punct": null, + "acc_u": 0.39002932551319647, + "acc_t": 0.3885630498533724, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.6591249822188239, + "t": 0.6653522023756628, + "punct": null, + "acc_u": 0.13856304985337242, + "acc_t": 0.1345307917888563, + "acc_punct": null + } + }, + "sq": { + "opus100": { + "u": 0.9638554216867469, + "t": 0.9666390956713536, + "punct": null + }, + "ud": { + "u": 1.0, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5898899546872242, + "t": 0.6091479123122538, + "punct": null + } + }, + "sr": { + "opus100": { + "u": 0.9647887323943661, + "t": 0.964769647696477, + "punct": null + }, + "ud": { + "u": 1.0, + "t": 1.0, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6826609616951915, + "t": 0.6828441875529424, + "punct": null + }, + "short-sequences": { + "u": 0.9244745467631498, + "t": 0.933316798941799, + "punct": null, + "acc_u": 0.7135416666666666, + "acc_t": 0.75, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.7269482508912657, + "t": 0.7388328974266475, + "punct": null, + "acc_u": 0.234375, + "acc_t": 0.265625, + "acc_punct": null + } + }, + "sv": { + "opus100": { + "u": 0.9597406106457714, + "t": 0.9598915989159892, + "punct": null + }, + "ud": { + "u": 0.9689310163243813, + "t": 0.9609834313201496, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7290315488622624, + "t": 0.7303454914964168, + "punct": null + } + }, + "ta": { + "ersatz": { + "u": 0.9861954721148536, + "t": 0.986180210060807, + "punct": null + }, + "opus100": { + "u": 0.819416353655013, + "t": 0.8193191736979925, + "punct": null + }, + "ud": { + "u": 0.9953917050691244, + "t": 1.0, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5177312009536108, + "t": 0.5410249717219177, + "punct": null + } + }, + "te": { + "opus100": { + "u": 0.8885144622297106, + "t": 0.8924141909431785, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.41325443786982247, + "t": 0.44980569948186533, + "punct": null + } + }, + "tg": { + "opus100": { + "u": 0.9406021155410902, + "t": 0.9208959455628012, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4803921568627451, + "t": 0.6738461538461539, + "punct": null + } + }, + "th": { + "opus100": { + "u": 0.7707434052757794, + "t": 0.7791474062660502, + "punct": null + }, + "ud": { + "u": 0.8297872340425532, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6110218140068886, + "t": 0.641545805030292, + "punct": null + } + }, + "tr": { + "ersatz": { + "u": 0.9775365031823288, + "t": 0.979463459759482, + "punct": null + }, + "opus100": { + "u": 0.9454545454545454, + "t": 0.9513719098071177, + "punct": null + }, + "ud": { + "u": 0.9858870967741936, + "t": 0.9873160832064942, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7396946167074886, + "t": 0.7378966639544344, + "punct": null + } + }, + "uk": { + "opus100": { + "u": 0.9434467971053336, + "t": 0.9436695278969958, + "punct": null + }, + "ud": { + "u": 0.984009840098401, + "t": 0.9816176470588235, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.7097339657661375, + "t": 0.7095492103336472, + "punct": null + } + }, + "ur": { + "opus100": { + "u": 0.6578014184397164, + "t": 0.6628053387056158, + "punct": null + }, + "ud": { + "u": 0.991701244813278, + "t": 0.9947970863683663, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6324615192091102, + "t": 0.6314457831325302, + "punct": null + } + }, + "uz": { + "opus100": { + "u": 0.8960554371002133, + "t": 0.8951546673966602, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4674484431864133, + "t": 0.6637783904424314, + "punct": null + } + }, + "vi": { + "opus100": { + "u": 0.9530201342281879, + "t": 0.9519310919699917, + "punct": null + }, + "ud": { + "u": 0.9979181124219292, + "t": 0.9993050729673384, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.6340396730358724, + "t": 0.6362547414653623, + "punct": null + } + }, + "xh": { + "opus100": { + "u": 0.9225492997999428, + "t": 0.9198016914552348, + "punct": null + } + }, + "yi": { + "opus100": { + "u": 0.8978469995419147, + "t": 0.892093023255814, + "punct": null + } + }, + "yo": { + "opus100": { + "u": 0.5943090044531663, + "t": null, + "punct": null + }, + "ud": { + "u": 0.8848080133555927, + "t": null, + "punct": null + } + }, + "zh": { + "ersatz": { + "u": 0.910002786291446, + "t": 0.9141289437585733, + "punct": null + }, + "opus100": { + "u": 0.846894138232721, + "t": 0.835236541598695, + "punct": null + }, + "ud": { + "u": 0.9866666666666668, + "t": 0.9866666666666668, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4320613409415121, + "t": 0.5243529979103038, + "punct": null + } + }, + "zu": { + "opus100": { + "u": 0.9547471162377994, + "t": 0.9540402523280265, + "punct": null + } + }, + "tr-de": { + "code-switching": { + "u": 0.9986168741355463, + "t": 0.9986168741355463, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.37134283570892723, + "t": 0.37767220902612825, + "punct": null + } + }, + "es-en": { + "code-switching": { + "u": 0.7098462544978738, + "t": 0.7953544253103724, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.51143583227446, + "t": 0.5240901213171578, + "punct": null + } + }, + "vi-en": { + "code-switching": { + "u": 0.4238961038961039, + "t": 0.5078274150439098, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.4202745512143612, + "t": 0.5110941086457536, + "punct": null + } + }, + "en-de": { + "code-switching": { + "u": 0.8333333333333333, + "t": 0.915032679738562, + "punct": null + }, + "code-switching-corrupted-asr": { + "u": 0.5101663585951941, + "t": 0.56353591160221, + "punct": null + }, + "short-sequences": { + "u": 0.8969599472916507, + "t": 0.9079264317146916, + "punct": null, + "acc_u": 0.5821205821205822, + "acc_t": 0.6278586278586279, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.7197057519790158, + "t": 0.7205518665152947, + "punct": null, + "acc_u": 0.1683991683991684, + "acc_t": 0.1704781704781705, + "acc_punct": null + } + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/wtp-12l.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/wtp-12l.json new file mode 100644 index 0000000000000000000000000000000000000000..df288e169ecc679f22ece6e0e8cc9d6279e93586 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/wtp-12l.json @@ -0,0 +1,1709 @@ +{ + "af": { + "opus100": { + "u": 0.7754871505224512, + "t": 0.793764375159724, + "punct": 0.8900759066629181 + }, + "ud": { + "u": 0.9922077922077922, + "t": 0.9947780678851176, + "punct": 0.9986928104575163 + }, + "ted2020-corrupted-asr": { + "u": 0.4992248062015504, + "t": 0.6056338028169015, + "punct": 0.7358916478555304 + } + }, + "am": { + "opus100": { + "u": 0.6124205013093903, + "t": 0.6812003077712233, + "punct": 0.7278600269179005 + }, + "ted2020-corrupted-asr": { + "u": 0.2941176470588235, + "t": 0.5517786561264821, + "punct": 0.6277372262773722 + } + }, + "ar": { + "ersatz": { + "u": 0.8943738656987296, + "t": 0.8867924528301886, + "punct": 0.9147982062780269 + }, + "opus100": { + "u": 0.6926720534967957, + "t": 0.692800409941071, + "punct": 0.8026455026455027 + }, + "ud": { + "u": 0.8506401137980086, + "t": 0.8638132295719844, + "punct": 0.8939157566302652 + }, + "ted2020-corrupted-asr": { + "u": 0.3101612903225806, + "t": 0.5322846318563662, + "punct": 0.6632589192572501 + } + }, + "az": { + "opus100": { + "u": 0.7765350376626342, + "t": 0.8055779029230357, + "punct": 0.8465194296896841 + }, + "ted2020-corrupted-asr": { + "u": 0.24786324786324787, + "t": 0.6419213973799126, + "punct": 0.7698058015763387 + } + }, + "be": { + "opus100": { + "u": 0.7586754966887418, + "t": 0.759323852964851, + "punct": 0.898186889818689 + }, + "ud": { + "u": 0.908908908908909, + "t": 0.9068261086198305, + "punct": 0.924396782841823 + }, + "ted2020-corrupted-asr": { + "u": 0.5331903485254692, + "t": 0.618576075171666, + "punct": 0.7373510619927474 + } + }, + "bg": { + "opus100": { + "u": 0.9402028830752803, + "t": 0.9226763863577193, + "punct": 0.9618609683527184 + }, + "ud": { + "u": 0.9845847836897066, + "t": 0.9841427155599604, + "punct": 0.994546355974219 + }, + "ted2020-corrupted-asr": { + "u": 0.19982985159277816, + "t": 0.5858381375698631, + "punct": 0.7449885815782796 + } + }, + "bn": { + "opus100": { + "u": 0.8055688910225637, + "t": 0.8415922014622259, + "punct": 0.883289124668435 + }, + "ud": { + "u": 0.99009900990099, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.12496180873816072, + "t": 0.22407469156385462, + "punct": 0.32699553141154825 + } + }, + "ca": { + "opus100": { + "u": 0.8895198760970573, + "t": 0.894929430214323, + "punct": 0.9479482236298541 + }, + "ud": { + "u": 0.9858476362541403, + "t": 0.9867629362214201, + "punct": 0.9975859987929995 + }, + "ted2020-corrupted-asr": { + "u": 0.19503082383710071, + "t": 0.5891626464507236, + "punct": 0.7180139390547896 + } + }, + "ceb": { + "ud": { + "u": 0.9970501474926253, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.48695652173913045, + "t": 0.15094339622641506, + "punct": 0.5 + } + }, + "cs": { + "ersatz": { + "u": 0.9325729620932572, + "t": 0.9501141180306488, + "punct": 0.9925925925925926 + }, + "opus100": { + "u": 0.8972250770811921, + "t": 0.9027921406411581, + "punct": 0.9505766062602965 + }, + "ud": { + "u": 0.9230769230769231, + "t": 0.9235248012540588, + "punct": 0.9695908991467951 + }, + "ted2020-corrupted-asr": { + "u": 0.25611587035238015, + "t": 0.5874342308882698, + "punct": 0.75146529562982 + } + }, + "cy": { + "opus100": { + "u": 0.7254650416933932, + "t": 0.771004942339374, + "punct": 0.8310334253296535 + }, + "ud": { + "u": 0.9941588785046729, + "t": 0.9941520467836257, + "punct": 0.9970845481049562 + } + }, + "da": { + "opus100": { + "u": 0.909560723514212, + "t": 0.9140625, + "punct": 0.9508108108108108 + }, + "ud": { + "u": 0.9521951219512196, + "t": 0.953216374269006, + "punct": 0.9900990099009901 + }, + "ted2020-corrupted-asr": { + "u": 0.18227554179566563, + "t": 0.6243751704080704, + "punct": 0.740348221044663 + } + }, + "de": { + "ersatz": { + "u": 0.9651685393258427, + "t": 0.9646792879344447, + "punct": 0.9937570942111237 + }, + "opus100": { + "u": 0.8052516411378556, + "t": 0.8594736842105264, + "punct": 0.9102237326536391 + }, + "ud": { + "u": 0.9585933068633012, + "t": 0.9643268124280783, + "punct": 0.9791907514450867 + }, + "ted2020-corrupted-asr": { + "u": 0.1893666204345816, + "t": 0.6756439731619199, + "punct": 0.7880784147054136 + }, + "legal-all-laws": { + "u": 0.8575490384159327, + "t": 0.8588124418014842, + "punct": 0.9372570955627224, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + }, + "legal-all-laws-corrupted-asr": { + "u": 0.1897354801420986, + "t": 0.6202456396903978, + "punct": 0.8413896542355319, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + }, + "legal-all-judgements": { + "u": 0.7965686323297744, + "t": 0.8043892222003746, + "punct": 0.8730180437095568, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.2499664962460386, + "t": 0.5235815133928532, + "punct": 0.730215019283144, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + } + }, + "el": { + "opus100": { + "u": 0.9171443460135487, + "t": 0.9288924134284958, + "punct": 0.9604336043360433 + }, + "ud": { + "u": 0.9767441860465117, + "t": 0.9779951100244498, + "punct": 0.9840881272949816 + }, + "ted2020-corrupted-asr": { + "u": 0.3095375010268627, + "t": 0.5790063503922301, + "punct": 0.7401204942305728 + } + }, + "en": { + "ersatz": { + "u": 0.9736467236467237, + "t": 0.9736354567478979, + "punct": 0.9910352805089647 + }, + "opus100": { + "u": 0.9144254278728607, + "t": 0.8993498049414825, + "punct": 0.9438997821350762 + }, + "ud": { + "u": 0.9409953822473064, + "t": 0.9462474645030426, + "punct": 0.9687660010240654 + }, + "ted2020-corrupted-asr": { + "u": 0.12897196261682242, + "t": 0.5589202284132203, + "punct": 0.7386352079731516 + }, + "legal-all-judgements": { + "u": 0.8880925335666106, + "t": 0.8872977172996761, + "punct": 0.9628298174322474, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.280711657548791, + "t": 0.545419967138804, + "punct": 0.7350081092483443, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + } + }, + "eo": { + "opus100": { + "u": 0.9182015167930662, + "t": 0.916420317119054, + "punct": 0.9526934645884604 + }, + "ted2020-corrupted-asr": { + "u": 0.2904455250361414, + "t": 0.5918587410702251, + "punct": 0.7198162171360504 + } + }, + "es": { + "ersatz": { + "u": 0.9880130766436616, + "t": null, + "punct": null + }, + "opus100": { + "u": 0.9130321232697832, + "t": 0.9170603674540682, + "punct": 0.954954954954955 + }, + "ud": { + "u": 0.9654078070453824, + "t": 0.9638862256311922, + "punct": 0.9964527571751048 + }, + "ted2020-corrupted-asr": { + "u": 0.17541297800492833, + "t": 0.5337178725930953, + "punct": 0.727941949731833 + }, + "legal-all-laws": { + "u": 0.8460149002943409, + "t": 0.8710750348145365, + "punct": 0.9456307388006592, + "acc_u": 0.22404371584699453, + "acc_t": 0.25136612021857924, + "acc_punct": 0.5792349726775956 + }, + "legal-all-laws-corrupted-asr": { + "u": 0.41126411782010225, + "t": 0.7151220869472573, + "punct": 0.8310363633051706, + "acc_u": 0.0, + "acc_t": 0.02185792349726776, + "acc_punct": 0.14207650273224043 + }, + "legal-all-judgements": { + "u": 0.7557108185971222, + "t": 0.7629746839004452, + "punct": 0.8873202815109786, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.07692307692307693 + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.3804307868861622, + "t": 0.5182826581369442, + "punct": 0.6720649733910048, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + } + }, + "et": { + "ersatz": { + "u": 0.959070796460177, + "t": 0.9536386625456589, + "punct": 0.9866962305986695 + }, + "opus100": { + "u": 0.8495488905145085, + "t": 0.8895228215767634, + "punct": 0.9544338335607094 + }, + "ud": { + "u": 0.944876447209262, + "t": 0.9462660944206007, + "punct": 0.981868416508375 + }, + "ted2020-corrupted-asr": { + "u": 0.40175089534421005, + "t": 0.6522112085398399, + "punct": 0.775034882472899 + }, + "short-sequences": { + "u": 0.8835393591210318, + "t": 0.8862858978644591, + "punct": 0.8984383441573902, + "acc_u": 0.43349753694581283, + "acc_t": 0.43842364532019706, + "acc_punct": 0.458128078817734 + }, + "short-sequences-corrupted-asr": { + "u": 0.616343535833673, + "t": 0.6602964233616042, + "punct": 0.7486856297307082, + "acc_u": 0.06403940886699508, + "acc_t": 0.04926108374384237, + "acc_punct": 0.14285714285714285 + } + }, + "eu": { + "opus100": { + "u": 0.856361829025845, + "t": 0.8693210821847883, + "punct": 0.9261672095548317 + }, + "ud": { + "u": 0.9635701275045537, + "t": 0.9644268774703558, + "punct": 0.9984553599011429 + }, + "ted2020-corrupted-asr": { + "u": 0.294201656669523, + "t": 0.5413319318267138, + "punct": 0.6901227151806402 + } + }, + "fa": { + "opus100": { + "u": 0.6442115768463074, + "t": 0.6422802850356294, + "punct": 0.7682926829268292 + }, + "ud": { + "u": 0.9732142857142857, + "t": 0.9804804804804805, + "punct": 0.9996181748759068 + }, + "ted2020-corrupted-asr": { + "u": 0.261790017211704, + "t": 0.5813503162786695, + "punct": 0.7314772086345691 + } + }, + "fi": { + "ersatz": { + "u": 0.9753777280358142, + "t": 0.9777654252362423, + "punct": 0.9950083194675542 + }, + "opus100": { + "u": 0.9219895287958114, + "t": 0.9305296779345221, + "punct": 0.9606299212598425 + }, + "ud": { + "u": 0.9340277777777778, + "t": 0.9298245614035088, + "punct": 0.9817400644468314 + }, + "ted2020-corrupted-asr": { + "u": 0.42498880429914915, + "t": 0.6053367668605425, + "punct": 0.7316331186939108 + } + }, + "fr": { + "ersatz": { + "u": 0.9758198078834052, + "t": 0.9729368526561978, + "punct": 0.9882589734988259 + }, + "opus100": { + "u": 0.8841354723707664, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9699346405228758, + "t": 0.9721854304635762, + "punct": 0.9892473118279571 + }, + "ted2020-corrupted-asr": { + "u": 0.2165368271954674, + "t": 0.5955616721142267, + "punct": 0.7438158961881589 + }, + "legal-all-laws": { + "u": 0.6296950115135906, + "t": 0.8073537069744309, + "punct": 0.9838284806499054, + "acc_u": 0.3442265795206972, + "acc_t": 0.514161220043573, + "acc_punct": 0.8714596949891068 + }, + "legal-all-laws-corrupted-asr": { + "u": 0.19537361902853068, + "t": 0.646811681834779, + "punct": 0.8342851450461825, + "acc_u": 0.013071895424836602, + "acc_t": 0.19172113289760348, + "acc_punct": 0.4335511982570806 + }, + "legal-all-judgements": { + "u": 0.8777661062748702, + "t": 0.8698894930942435, + "punct": 0.9680330548812637, + "acc_u": 0.031746031746031744, + "acc_t": 0.015873015873015872, + "acc_punct": 0.5079365079365079 + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.3223840447259081, + "t": 0.4886763770884652, + "punct": 0.64987316973007, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.015873015873015872 + } + }, + "fy": { + "opus100": { + "u": 0.6217581677332434, + "t": 0.6614420062695925, + "punct": 0.8897520167314014 + } + }, + "ga": { + "opus100": { + "u": 0.8126052441664663, + "t": 0.8273132112815439, + "punct": 0.9032782443782172 + }, + "ud": { + "u": 0.8496319663512093, + "t": 0.893854748603352, + "punct": 0.9769696969696969 + }, + "ted2020-corrupted-asr": { + "u": 0.19230769230769232, + "t": 0.5242718446601943, + "punct": 0.5981308411214953 + } + }, + "gd": { + "opus100": { + "u": 0.8366846493379108, + "t": 0.8550116550116549, + "punct": 0.9401534526854219 + }, + "ud": { + "u": 0.7120291616038883, + "t": 0.7249310027598895, + "punct": 0.8486646884272996 + } + }, + "gl": { + "opus100": { + "u": 0.8918709677419355, + "t": 0.9008394543546695, + "punct": 0.940857297883885 + }, + "ud": { + "u": 0.9902642559109874, + "t": 0.9902370990237099, + "punct": 0.9834254143646408 + }, + "ted2020-corrupted-asr": { + "u": 0.13868971613790393, + "t": 0.5990193046781818, + "punct": 0.7391576967290208 + } + }, + "gu": { + "ersatz": { + "u": 0.9216639654240951, + "t": 0.8982102908277404, + "punct": 0.9830508474576272 + }, + "opus100": { + "u": 0.7228564488705368, + "t": 0.7404326123128119, + "punct": 0.7988555078683834 + }, + "ted2020-corrupted-asr": { + "u": 0.33096795653620137, + "t": 0.3356315968675519, + "punct": 0.4816537467700258 + } + }, + "ha": { + "opus100": { + "u": 0.8772990677752582, + "t": 0.8984812150279776, + "punct": 0.9099836333878887 + }, + "ted2020-corrupted-asr": { + "u": 0.28571428571428575, + "t": 0.19148936170212766, + "punct": 0.4705882352941176 + } + }, + "he": { + "opus100": { + "u": 0.9044117647058824, + "t": 0.8825910931174089, + "punct": 0.9372592184920199 + }, + "ud": { + "u": 0.9693593314763231, + "t": 0.9707927677329623, + "punct": 0.9872701555869873 + }, + "ted2020-corrupted-asr": { + "u": 0.1968109339407745, + "t": 0.5645850416468862, + "punct": 0.7008758473947251 + } + }, + "hi": { + "ersatz": { + "u": 0.9558983271779273, + "t": 0.9492964038418584, + "punct": 0.9772828507795099 + }, + "opus100": { + "u": 0.6888616891064873, + "t": 0.682264857276556, + "punct": 0.7801792303637323 + }, + "ud": { + "u": 0.9858599145018087, + "t": 0.9872423945044161, + "punct": 0.99934036939314 + }, + "ted2020-corrupted-asr": { + "u": 0.016546685290641454, + "t": 0.3749499265589531, + "punct": 0.5460989556259156 + } + }, + "hu": { + "opus100": { + "u": 0.9283456269757638, + "t": 0.9311440677966102, + "punct": 0.9635869565217392 + }, + "ud": { + "u": 0.9489414694894148, + "t": 0.9489414694894148, + "punct": 0.9925925925925926 + }, + "ted2020-corrupted-asr": { + "u": 0.28405102302885027, + "t": 0.5757404917819506, + "punct": 0.7138693467336683 + } + }, + "hy": { + "opus100": { + "u": 0.8710004343419719, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9625570776255709, + "t": 0.9624885635864592, + "punct": 0.9851851851851852 + }, + "ted2020-corrupted-asr": { + "u": 0.46139884617877747, + "t": 0.5770561845759452, + "punct": 0.6973055608637493 + } + }, + "id": { + "opus100": { + "u": 0.896607869742198, + "t": 0.8977802137571937, + "punct": 0.9382784389703847 + }, + "ud": { + "u": 0.9867403314917127, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.2123534299695319, + "t": 0.557608470002076, + "punct": 0.6840095708394849 + } + }, + "ig": { + "opus100": { + "u": 0.8303273213092852, + "t": 0.8516377649325627, + "punct": 0.9062395729062396 + }, + "ted2020-corrupted-asr": { + "u": 0.4342105263157895, + "t": 0.4473684210526315, + "punct": 0.42342342342342343 + } + }, + "is": { + "opus100": { + "u": 0.9431726366819284, + "t": 0.9432948132222521, + "punct": 0.9635671560630777 + }, + "ud": { + "u": 0.8925881886642886, + "t": 0.8926766425527698, + "punct": 0.9637062339880444 + }, + "ted2020-corrupted-asr": { + "u": 0.34464751958224543, + "t": 0.5915275994865212, + "punct": 0.7117087569694982 + } + }, + "it": { + "opus100": { + "u": 0.8751864743908503, + "t": 0.9049844236760124, + "punct": 0.9406047516198704 + }, + "ud": { + "u": 0.9569060773480663, + "t": 0.96, + "punct": 0.9965477560414269 + }, + "ted2020-corrupted-asr": { + "u": 0.4177848698048887, + "t": 0.5976937566040336, + "punct": 0.7193139369705898 + }, + "legal-all-laws": { + "u": 0.799906599936899, + "t": 0.7954540525983387, + "punct": 0.9694012846914156, + "acc_u": 0.4161931818181818, + "acc_t": 0.5653409090909091, + "acc_punct": 0.8735795454545454 + }, + "legal-all-laws-corrupted-asr": { + "u": 0.2877918297002848, + "t": 0.4382236687399322, + "punct": 0.6687478000556297, + "acc_u": 0.022727272727272728, + "acc_t": 0.018465909090909092, + "acc_punct": 0.2869318181818182 + }, + "legal-all-judgements": { + "u": 0.8426782291184812, + "t": 0.8500491927606285, + "punct": 0.9395221634634321, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.16326530612244897 + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.36947318698177656, + "t": 0.4646427636013785, + "punct": 0.5829039218206553, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + } + }, + "ja": { + "ersatz": { + "u": 0.8310810810810811, + "t": 0.8306068601583113, + "punct": 0.9590766002098636 + }, + "opus100": { + "u": 0.5546021840873635, + "t": 0.802158273381295, + "punct": 0.8913412563667232 + }, + "ud": { + "u": 0.9569569569569569, + "t": 0.9638802889576883, + "punct": 0.9824198552223371 + }, + "ted2020-corrupted-asr": { + "u": 0.60843144701861, + "t": 0.8845203325095484, + "punct": 0.9485797687212304 + } + }, + "jv": { + "ud": { + "u": 0.9784649364991718, + "t": null, + "punct": null + } + }, + "ka": { + "opus100": { + "u": 0.89818763326226, + "t": 0.89818763326226, + "punct": 0.9312977099236641 + }, + "ted2020-corrupted-asr": { + "u": 0.29716941977255745, + "t": 0.5752599193719499, + "punct": 0.6976814822314468 + } + }, + "kk": { + "ersatz": { + "u": 0.956175298804781, + "t": 0.9501432664756447, + "punct": 0.9983342587451416 + }, + "opus100": { + "u": 0.7861437160034354, + "t": 0.7276757441418619, + "punct": 0.9164528086683775 + }, + "ud": { + "u": 0.962843295638126, + "t": 0.8933951332560833, + "punct": 0.8653158522050061 + }, + "ted2020-corrupted-asr": { + "u": 0.46831530139103555, + "t": 0.6877610022486347, + "punct": 0.7821189092534644 + } + }, + "km": { + "ersatz": { + "u": 0.6888625992901808, + "t": 0.9265255292652553, + "punct": 0.9250684590490416 + }, + "opus100": { + "u": 0.7248490945674043, + "t": 0.7165651290977662, + "punct": 0.8042879019908118 + }, + "ted2020-corrupted-asr": { + "u": 0.5165945165945166, + "t": 0.7232237539766702, + "punct": 0.782 + } + }, + "kn": { + "opus100": { + "u": 0.7101375445746305, + "t": 0.6774193548387096, + "punct": 0.832089552238806 + }, + "ted2020-corrupted-asr": { + "u": 0.34161735700197243, + "t": 0.33381088825214905, + "punct": 0.43125783535311324 + } + }, + "ko": { + "opus100": { + "u": 0.5609756097560976, + "t": 0.7021046950890448, + "punct": 0.816207627118644 + }, + "ud": { + "u": 0.9934735315445975, + "t": 0.9927325581395349, + "punct": 0.999514091350826 + }, + "ted2020-corrupted-asr": { + "u": 0.345691552395463, + "t": 0.7401145602365116, + "punct": 0.7897892090504738 + } + }, + "ku": { + "opus100": { + "u": 0.7988194786030497, + "t": 0.760091893665901, + "punct": 0.862708719851577 + }, + "ted2020-corrupted-asr": { + "u": 0.2909800228694424, + "t": 0.38439494096519045, + "punct": 0.5037231712658782 + } + }, + "ky": { + "opus100": { + "u": 0.8443893366398016, + "t": 0.8334461746784022, + "punct": 0.9172229639519359 + }, + "ted2020-corrupted-asr": { + "u": 0.47166361974405846, + "t": 0.6724351050679851, + "punct": 0.7390029325513197 + } + }, + "la": { + "ud": { + "u": 0.8643664485425341, + "t": 0.9121164846593863, + "punct": 0.974305191400105 + }, + "ted2020-corrupted-asr": { + "u": 0.6, + "t": 0.4081632653061224, + "punct": 0.4210526315789474 + } + }, + "lt": { + "ersatz": { + "u": 0.9799331103678929, + "t": 0.9711701526286036, + "punct": 0.992749581706637 + }, + "opus100": { + "u": 0.8182245185533115, + "t": 0.8616082682127552, + "punct": 0.9198587340396631 + }, + "ud": { + "u": 0.9706840390879479, + "t": 0.9698451507742463, + "punct": 0.982829108748978 + }, + "ted2020-corrupted-asr": { + "u": 0.2709394205443372, + "t": 0.5842120741083058, + "punct": 0.7241183456394898 + } + }, + "lv": { + "ersatz": { + "u": 0.9734848484848486, + "t": 0.9702267140125649, + "punct": 0.9967014843320505 + }, + "opus100": { + "u": 0.8346948582412301, + "t": 0.8816412414518674, + "punct": 0.9259560618388935 + }, + "ud": { + "u": 0.9591078066914499, + "t": 0.9647919524462735, + "punct": 0.9930939226519337 + }, + "ted2020-corrupted-asr": { + "u": 0.29158180583842497, + "t": 0.6086385716161219, + "punct": 0.7371146855236294 + } + }, + "mg": { + "opus100": { + "u": 0.9247083775185578, + "t": 0.9336199946251008, + "punct": 0.9651194726723428 + }, + "ted2020-corrupted-asr": { + "u": 0.18421052631578944, + "t": 0.5703125, + "punct": 0.5979899497487436 + } + }, + "mk": { + "opus100": { + "u": 0.9278833637073678, + "t": 0.9329491880565741, + "punct": 0.9574123989218329 + }, + "ted2020-corrupted-asr": { + "u": 0.2818768533054247, + "t": 0.5513380666302566, + "punct": 0.7271811404392505 + } + }, + "ml": { + "opus100": { + "u": 0.8052854649713288, + "t": 0.8131556563651829, + "punct": 0.8747007182761373 + }, + "ted2020-corrupted-asr": { + "u": 0.34702299076439386, + "t": 0.38785389467507697, + "punct": 0.4930417495029821 + } + }, + "mn": { + "opus100": { + "u": 0.7915051929933345, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4996963255390221, + "t": 0.7559813362454085, + "punct": 0.8595023243095433 + } + }, + "mr": { + "opus100": { + "u": 0.9101731601731602, + "t": 0.91453696070349, + "punct": 0.9454645108248836 + }, + "ud": { + "u": 0.8705882352941177, + "t": 0.8636363636363636, + "punct": 0.9647058823529412 + }, + "ted2020-corrupted-asr": { + "u": 0.03027823240589198, + "t": 0.2959083469721767, + "punct": 0.4359354719080289 + } + }, + "ms": { + "opus100": { + "u": 0.8762416107382549, + "t": 0.883237626469784, + "punct": 0.9407202216066484 + }, + "ted2020-corrupted-asr": { + "u": 0.5444713478611783, + "t": 0.5694264209706722, + "punct": 0.7033164027487302 + } + }, + "mt": { + "opus100": { + "u": 0.6467020470053071, + "t": 0.8411016949152543, + "punct": 0.902162162162162 + }, + "ud": { + "u": 0.8865096359743041, + "t": 0.865934065934066, + "punct": 0.9499467518636847 + }, + "ted2020-corrupted-asr": { + "u": 0.26277372262773724, + "t": 0.396039603960396, + "punct": 0.5497630331753555 + } + }, + "my": { + "opus100": { + "u": 0.6500222915737851, + "t": 0.7916428162564396, + "punct": 0.8552325581395349 + }, + "ted2020-corrupted-asr": { + "u": 0.9207229182836235, + "t": 0.9206539509536784, + "punct": 0.9626136746379251 + } + }, + "ne": { + "opus100": { + "u": 0.7171355498721228, + "t": 0.7236151603498543, + "punct": 0.7653880463871544 + }, + "ted2020-corrupted-asr": { + "u": 0.3431479462013813, + "t": 0.5652435357787131, + "punct": 0.6728606356968214 + } + }, + "nl": { + "opus100": { + "u": 0.9224318658280921, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9350893697083726, + "t": 0.9076233183856502, + "punct": 0.9729225023342669 + }, + "ted2020-corrupted-asr": { + "u": 0.2712939311195279, + "t": 0.6946240710356143, + "punct": 0.8110266367663951 + } + }, + "no": { + "opus100": { + "u": 0.9462943071965629, + "t": 0.9460402684563759, + "punct": 0.9668658337859859 + }, + "ud": { + "u": 0.9755529685681025, + "t": 0.9845978322875072, + "punct": 0.9954233409610984 + } + }, + "pa": { + "opus100": { + "u": 0.5648213034337771, + "t": 0.6286776091669248, + "punct": 0.798954096455549 + }, + "ted2020-corrupted-asr": { + "u": 0.33017077798861477, + "t": 0.42825112107623314, + "punct": 0.5565912117177098 + } + }, + "pl": { + "ersatz": { + "u": 0.9459459459459459, + "t": 0.9360730593607305, + "punct": 0.9911602209944752 + }, + "opus100": { + "u": 0.9218585005279831, + "t": 0.926063829787234, + "punct": 0.959089677594148 + }, + "ud": { + "u": 0.9590643274853802, + "t": 0.9596478356566397, + "punct": 0.9919354838709677 + }, + "ted2020-corrupted-asr": { + "u": 0.23577605826126535, + "t": 0.6466622353052892, + "punct": 0.7499481435386849 + } + }, + "ps": { + "ersatz": { + "u": 0.8477175463623395, + "t": 0.9147682639434407, + "punct": 0.9575177009579342 + }, + "opus100": { + "u": 0.4783737024221454, + "t": 0.7212817412333737, + "punct": 0.7748031496062993 + }, + "ted2020-corrupted-asr": { + "u": 0.26704545454545453, + "t": 0.5254237288135593, + "punct": 0.6440677966101694 + } + }, + "pt": { + "opus100": { + "u": 0.912535686478069, + "t": 0.9183350895679663, + "punct": 0.9548282391127941 + }, + "ud": { + "u": 0.9591542527630947, + "t": 0.9632075471698114, + "punct": 0.9871121718377088 + }, + "ted2020-corrupted-asr": { + "u": 0.11477789606116326, + "t": 0.6150899037833601, + "punct": 0.762076653572566 + }, + "legal-all-laws": { + "u": 0.5215621051811815, + "t": 0.522697574273926, + "punct": 0.6757739970028152, + "acc_u": 0.017241379310344827, + "acc_t": 0.017241379310344827, + "acc_punct": 0.05172413793103448 + }, + "legal-all-laws-corrupted-asr": { + "u": 0.24673692776915282, + "t": 0.5507124901226813, + "punct": 0.39404612641996056, + "acc_u": 0.0, + "acc_t": 0.017241379310344827, + "acc_punct": 0.0 + }, + "legal-all-judgements": { + "u": 0.8139714657884266, + "t": 0.8155606398101594, + "punct": 0.8104009495715164, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.07135597036415203, + "t": 0.3902393851313222, + "punct": 0.47276184015324924, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + } + }, + "ro": { + "ersatz": { + "u": 0.9771915361363012, + "t": 0.9628796400449944, + "punct": 0.9947236878644821 + }, + "opus100": { + "u": 0.9097978227060655, + "t": 0.9119709166450273, + "punct": 0.9706286027998903 + }, + "ud": { + "u": 0.7942905121746432, + "t": 0.9305835010060362, + "punct": 0.9941706412294647 + }, + "ted2020-corrupted-asr": { + "u": 0.38412408759124084, + "t": 0.5969295058139535, + "punct": 0.7221180127552388 + } + }, + "ru": { + "ersatz": { + "u": 0.9802371541501976, + "t": 0.9831838565022422, + "punct": 0.9949409780775715 + }, + "opus100": { + "u": 0.8466257668711656, + "t": null, + "punct": null + }, + "ud": { + "u": 0.8517241379310345, + "t": 0.8521739130434782, + "punct": 0.9333333333333332 + }, + "ted2020-corrupted-asr": { + "u": 0.18095328703263247, + "t": 0.6206771845757425, + "punct": 0.743701399688958 + } + }, + "si": { + "opus100": { + "u": 0.8023225125362892, + "t": 0.8022417934347478, + "punct": 0.8649972781709309 + }, + "ted2020-corrupted-asr": { + "u": 0.3763440860215054, + "t": 0.5051958433253396, + "punct": 0.608695652173913 + } + }, + "sk": { + "opus100": { + "u": 0.912535686478069, + "t": 0.9281150159744409, + "punct": 0.9600217568670112 + }, + "ud": { + "u": 0.9699525566684238, + "t": 0.9722367731796752, + "punct": 0.9863157894736843 + }, + "ted2020-corrupted-asr": { + "u": 0.23413605203023377, + "t": 0.6039749233026545, + "punct": 0.7560006194187787 + } + }, + "sl": { + "opus100": { + "u": 0.9250065325320094, + "t": 0.9317759490310592, + "punct": 0.9527117285599788 + }, + "ud": { + "u": 0.9572723349158394, + "t": 0.9568593615185504, + "punct": 0.9922010398613518 + }, + "ted2020-corrupted-asr": { + "u": 0.46647698256365355, + "t": 0.6194706994328922, + "punct": 0.7635252594426591 + }, + "short-sequences": { + "u": 0.7957096748152468, + "t": 0.7861556921877654, + "punct": 0.9111704464818144, + "acc_u": 0.39589442815249265, + "acc_t": 0.3387096774193548, + "acc_punct": 0.6792521994134897 + }, + "short-sequences-corrupted-asr": { + "u": 0.625392506639107, + "t": 0.5367104176232667, + "punct": 0.7027317270946848, + "acc_u": 0.1315982404692082, + "acc_t": 0.050586510263929615, + "acc_punct": 0.23497067448680353 + } + }, + "sq": { + "opus100": { + "u": 0.9034928848641656, + "t": 0.9185580774365821, + "punct": 0.9584472389283761 + }, + "ud": { + "u": 1.0, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.16373256373256373, + "t": 0.5547998356689642, + "punct": 0.7113821138211384 + } + }, + "sr": { + "opus100": { + "u": 0.9436469962785752, + "t": 0.94995986085095, + "punct": 0.9625407166123778 + }, + "ud": { + "u": 0.9849137931034483, + "t": 0.9903948772678761, + "punct": 1.0 + }, + "ted2020-corrupted-asr": { + "u": 0.3627207933064766, + "t": 0.5810094097519247, + "punct": 0.7530807850296669 + }, + "short-sequences": { + "u": 0.8988765863765863, + "t": 0.8988765863765863, + "punct": 0.9497621302308804, + "acc_u": 0.6041666666666666, + "acc_t": 0.6041666666666666, + "acc_punct": 0.796875 + }, + "short-sequences-corrupted-asr": { + "u": 0.6418772489084988, + "t": 0.6002129906613182, + "punct": 0.7122324434824435, + "acc_u": 0.11979166666666667, + "acc_t": 0.07291666666666667, + "acc_punct": 0.21875 + } + }, + "sv": { + "opus100": { + "u": 0.920552227142485, + "t": 0.9319565792957373, + "punct": 0.9575560962422276 + }, + "ud": { + "u": 0.9556135770234987, + "t": 0.9556135770234987, + "punct": 0.9740053050397879 + }, + "ted2020-corrupted-asr": { + "u": 0.34779122905475823, + "t": 0.6181818181818182, + "punct": 0.7629653539918226 + } + }, + "ta": { + "ersatz": { + "u": 0.9556386958845537, + "t": 0.948703805846663, + "punct": 0.985172981878089 + }, + "opus100": { + "u": 0.6784753363228699, + "t": 0.6906561838524342, + "punct": 0.7741741741741742 + }, + "ud": { + "u": 0.9863013698630138, + "t": 0.9908256880733944, + "punct": 1.0 + }, + "ted2020-corrupted-asr": { + "u": 0.3158236583583665, + "t": 0.3267571825069387, + "punct": 0.4626628535112805 + } + }, + "te": { + "opus100": { + "u": 0.7510841283607979, + "t": 0.7522831050228311, + "punct": 0.843262001156738 + }, + "ted2020-corrupted-asr": { + "u": 0.31957079542803823, + "t": 0.39513581806696146, + "punct": 0.5574650912996778 + } + }, + "tg": { + "opus100": { + "u": 0.7946221604079741, + "t": 0.8621908127208481, + "punct": 0.9083310114237949 + }, + "ted2020-corrupted-asr": { + "u": 0.39999999999999997, + "t": 0.5815217391304348, + "punct": 0.7151515151515151 + } + }, + "th": { + "opus100": { + "u": 0.6685801760428627, + "t": 0.7095533233596923, + "punct": 0.733953488372093 + }, + "ud": { + "u": 0.7345932621199671, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4861496629468079, + "t": 0.5872371818517153, + "punct": 0.6876129291306966 + } + }, + "tr": { + "ersatz": { + "u": 0.9444745885331886, + "t": 0.9441936066461982, + "punct": 0.9866030464305378 + }, + "opus100": { + "u": 0.934154175588865, + "t": 0.9360323886639677, + "punct": 0.9558342420937841 + }, + "ud": { + "u": 0.9614421632448674, + "t": 0.9614035087719299, + "punct": 0.9863152559553979 + }, + "ted2020-corrupted-asr": { + "u": 0.24639885479108886, + "t": 0.6128017759689205, + "punct": 0.7663670015864621 + } + }, + "uk": { + "opus100": { + "u": 0.9012474012474011, + "t": 0.9009617884065505, + "punct": 0.9467741935483871 + }, + "ud": { + "u": 0.9214594928880643, + "t": 0.9195825659914059, + "punct": 0.9833641404805915 + }, + "ted2020-corrupted-asr": { + "u": 0.36410338738160214, + "t": 0.6092896174863388, + "punct": 0.7346308310163732 + } + }, + "ur": { + "opus100": { + "u": 0.6048218029350105, + "t": 0.5714852270473925, + "punct": 0.6860158311345647 + }, + "ud": { + "u": 0.9604863221884499, + "t": 0.962283384301733, + "punct": 0.9927007299270073 + }, + "ted2020-corrupted-asr": { + "u": 0.3955382436260624, + "t": 0.5571746609997976, + "punct": 0.6856922483609719 + } + }, + "uz": { + "opus100": { + "u": 0.7918733758563665, + "t": 0.8148941869809804, + "punct": 0.8670111503943432 + }, + "ted2020-corrupted-asr": { + "u": 0.19668789808917198, + "t": 0.6483285075019743, + "punct": 0.7664620535714285 + } + }, + "vi": { + "opus100": { + "u": 0.9117318435754189, + "t": 0.9138998311761395, + "punct": 0.9511036602402906 + }, + "ud": { + "u": 0.9224704336399474, + "t": 0.9361413043478262, + "punct": 0.9951557093425607 + }, + "ted2020-corrupted-asr": { + "u": 0.29868952443748453, + "t": 0.5195214105793451, + "punct": 0.6583692669541357 + } + }, + "xh": { + "opus100": { + "u": 0.7834394904458599, + "t": 0.815686274509804, + "punct": 0.9052268811028145 + } + }, + "yi": { + "opus100": { + "u": 0.7093074547860609, + "t": 0.7123407992973211, + "punct": 0.8188679245283019 + } + }, + "yo": { + "opus100": { + "u": 0.7821736688958089, + "t": null, + "punct": null + }, + "ud": { + "u": 0.8276877761413843, + "t": null, + "punct": null + } + }, + "zh": { + "ersatz": { + "u": 0.8781230956733699, + "t": 0.9242256637168142, + "punct": 0.9828444936358606 + }, + "opus100": { + "u": 0.8352171326591316, + "t": 0.8156009551605201, + "punct": 0.9008219178082193 + }, + "ud": { + "u": 0.9479768786127168, + "t": 0.9734513274336283, + "punct": 0.9977777777777778 + }, + "ted2020-corrupted-asr": { + "u": 0.1814096499526963, + "t": 0.5031152647975077, + "punct": 0.6652702702702703 + } + }, + "zu": { + "opus100": { + "u": 0.6335905916942299, + "t": 0.8342557529857269, + "punct": 0.9105930953083505 + } + }, + "tr-de_TR": { + "code-switching": { + "u": 0.9723160027008777, + "t": 0.9798471160528144, + "punct": 0.9965445749827229 + }, + "code-switching-corrupted-asr": { + "u": 0.33459755583649387, + "t": 0.3330550918196995, + "punct": 0.39872068230277186 + } + }, + "tr-de_DE": { + "code-switching": { + "u": 0.9710827168796233, + "t": 0.9805555555555556, + "punct": 0.9958620689655173 + }, + "code-switching-corrupted-asr": { + "u": 0.21013133208255158, + "t": 0.34470536109880373, + "punct": 0.409778812572759 + } + }, + "es-en_ES": { + "code-switching": { + "u": 0.8581759742868622, + "t": 0.8777403035413153, + "punct": 0.9351446099912357 + }, + "code-switching-corrupted-asr": { + "u": 0.20822281167108753, + "t": 0.4689234184239734, + "punct": 0.6067415730337079 + } + }, + "es-en_EN": { + "code-switching": { + "u": 0.9057239057239056, + "t": 0.9063032367972744, + "punct": 0.9352014010507882 + }, + "code-switching-corrupted-asr": { + "u": 0.3856988082340195, + "t": 0.5219312085831493, + "punct": 0.6209150326797386 + } + }, + "vi-en_VI": { + "code-switching": { + "u": 0.2268431001890359, + "t": 0.4673254701944533, + "punct": 0.5883190883190884 + }, + "code-switching-corrupted-asr": { + "u": 0.29908675799086754, + "t": 0.470703125, + "punct": 0.5901892622634222 + } + }, + "vi-en_EN": { + "code-switching": { + "u": 0.17169684775318578, + "t": 0.36388140161725063, + "punct": 0.5026819923371648 + }, + "code-switching-corrupted-asr": { + "u": 0.2546998180715585, + "t": 0.36666666666666664, + "punct": 0.5070093457943926 + } + }, + "en-de_EN": { + "code-switching": { + "u": 0.7100346020761245, + "t": 0.8047138047138047, + "punct": 0.9169741697416973 + }, + "code-switching-corrupted-asr": { + "u": 0.31412429378531076, + "t": 0.3908368396446938, + "punct": 0.5807504078303426 + }, + "short-sequences": { + "u": 0.8532406918310744, + "t": 0.8686535326938152, + "punct": 0.9596336012800745, + "acc_u": 0.4365904365904366, + "acc_t": 0.48232848232848236, + "acc_punct": 0.7941787941787942 + }, + "short-sequences-corrupted-asr": { + "u": 0.5726941486935639, + "t": 0.5752526096178308, + "punct": 0.6992973265658166, + "acc_u": 0.08108108108108109, + "acc_t": 0.062370062370062374, + "acc_punct": 0.13513513513513514 + } + }, + "en-de_DE": { + "code-switching": { + "u": 0.6854460093896714, + "t": 0.8019884009942007, + "punct": 0.9181818181818181 + }, + "code-switching-corrupted-asr": { + "u": 0.38969072164948454, + "t": 0.4574669187145558, + "punct": 0.601181683899557 + }, + "short-sequences": { + "u": 0.8459196601983778, + "t": 0.8612056604476257, + "punct": 0.9595938621974103, + "acc_u": 0.4095634095634096, + "acc_t": 0.46361746361746364, + "acc_punct": 0.7879417879417879 + }, + "short-sequences-corrupted-asr": { + "u": 0.5886341455686627, + "t": 0.5964392682483489, + "punct": 0.7137185015721972, + "acc_u": 0.08108108108108109, + "acc_t": 0.060291060291060294, + "acc_punct": 0.1683991683991684 + } + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/wtp-1l.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/wtp-1l.json new file mode 100644 index 0000000000000000000000000000000000000000..6667b794ae08835a88148e3a15b2f5f0a14af722 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/wtp-1l.json @@ -0,0 +1,1709 @@ +{ + "af": { + "opus100": { + "u": 0.7310779816513762, + "t": 0.7643216080402011, + "punct": 0.872142252328535 + }, + "ud": { + "u": 0.9782330345710627, + "t": 0.9882659713168187, + "punct": 0.9986928104575163 + }, + "ted2020-corrupted-asr": { + "u": 0.35233751425313564, + "t": 0.49174806332098353, + "punct": 0.6141443752290217 + } + }, + "am": { + "opus100": { + "u": 0.5387365911799761, + "t": 0.5901208617971625, + "punct": 0.6831656241501223 + }, + "ted2020-corrupted-asr": { + "u": 0.3242506811989101, + "t": 0.4807987711213518, + "punct": 0.5527015057573074 + } + }, + "ar": { + "ersatz": { + "u": 0.8561572956191791, + "t": 0.8818112049117423, + "punct": 0.9188149288187764 + }, + "opus100": { + "u": 0.644414535666218, + "t": 0.65351131746953, + "punct": 0.7506159321105941 + }, + "ud": { + "u": 0.7769130998702983, + "t": 0.8480725623582767, + "punct": 0.8701095461658842 + }, + "ted2020-corrupted-asr": { + "u": 0.2688284518828452, + "t": 0.4272192743438979, + "punct": 0.5460329890852136 + } + }, + "az": { + "opus100": { + "u": 0.7463414634146341, + "t": 0.7537760728842005, + "punct": 0.8205818965517241 + }, + "ted2020-corrupted-asr": { + "u": 0.04827259820160909, + "t": 0.5776843817787419, + "punct": 0.7153745476942028 + } + }, + "be": { + "opus100": { + "u": 0.6949547218628719, + "t": 0.7048178038640255, + "punct": 0.8613916947250281 + }, + "ud": { + "u": 0.8849382716049382, + "t": 0.8744007670182168, + "punct": 0.8916849015317286 + }, + "ted2020-corrupted-asr": { + "u": 0.30521792510742785, + "t": 0.47246335562829084, + "punct": 0.5735338345864662 + } + }, + "bg": { + "opus100": { + "u": 0.9309071729957806, + "t": 0.9179220779220778, + "punct": 0.9595658073270014 + }, + "ud": { + "u": 0.9745889387144993, + "t": 0.9745889387144993, + "punct": 0.9910891089108911 + }, + "ted2020-corrupted-asr": { + "u": 0.2698861203870194, + "t": 0.5078979343863912, + "punct": 0.6077391092723291 + } + }, + "bn": { + "opus100": { + "u": 0.7656286583938188, + "t": 0.8122705820660723, + "punct": 0.8484199250133904 + }, + "ud": { + "u": 0.9803921568627451, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.032834731849689894, + "t": 0.13532616035654796, + "punct": 0.29017751479289944 + } + }, + "ca": { + "opus100": { + "u": 0.8868848234990983, + "t": 0.8988173455978976, + "punct": 0.9394686387291153 + }, + "ud": { + "u": 0.9815914489311164, + "t": 0.9873798076923077, + "punct": 0.9993983152827919 + }, + "ted2020-corrupted-asr": { + "u": 0.17086347404083876, + "t": 0.4410366634977059, + "punct": 0.5799916747606494 + } + }, + "ceb": { + "ud": { + "u": 0.9970501474926253, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.35532994923857864, + "t": 0.33070866141732286, + "punct": 0.3853211009174312 + } + }, + "cs": { + "ersatz": { + "u": 0.9373776908023483, + "t": 0.9366427171783149, + "punct": 0.987146529562982 + }, + "opus100": { + "u": 0.8830903044256844, + "t": 0.8862060107885947, + "punct": 0.9444596443228456 + }, + "ud": { + "u": 0.9178133937725972, + "t": 0.9184615384615384, + "punct": 0.9454088874331258 + }, + "ted2020-corrupted-asr": { + "u": 0.21527059634608756, + "t": 0.4731377719182596, + "punct": 0.5920310622168808 + } + }, + "cy": { + "opus100": { + "u": 0.6947637292464879, + "t": 0.7340782122905029, + "punct": 0.8089887640449438 + }, + "ud": { + "u": 0.9895348837209302, + "t": 0.9840895698291102, + "punct": 0.994739918176505 + } + }, + "da": { + "opus100": { + "u": 0.8874841972187105, + "t": 0.9030256012412723, + "punct": 0.9412083446220536 + }, + "ud": { + "u": 0.9432146294513956, + "t": 0.9412915851272016, + "punct": 0.9851337958374629 + }, + "ted2020-corrupted-asr": { + "u": 0.08166203846549418, + "t": 0.4733448522904463, + "punct": 0.602819996337667 + } + }, + "de": { + "ersatz": { + "u": 0.9455040871934605, + "t": 0.9473981900452488, + "punct": 0.9894916216983812 + }, + "opus100": { + "u": 0.7676154923005133, + "t": 0.8283562710984159, + "punct": 0.8801779260494857 + }, + "ud": { + "u": 0.9564245810055866, + "t": 0.9636363636363636, + "punct": 0.9729418537708693 + }, + "ted2020-corrupted-asr": { + "u": 0.28719894424282416, + "t": 0.5438795097701432, + "punct": 0.6500315855969678 + }, + "legal-all-laws": { + "u": 0.7754213857512181, + "t": 0.8143892051065048, + "punct": 0.9404000396225979, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + }, + "legal-all-laws-corrupted-asr": { + "u": 0.4108787086177598, + "t": 0.5705384033140047, + "punct": 0.7423143138472348, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + }, + "legal-all-judgements": { + "u": 0.7770657305888954, + "t": 0.7777011094865351, + "punct": 0.8687059890367105, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.2669688085021616, + "t": 0.3557516831697615, + "punct": 0.6162141556857562, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + } + }, + "el": { + "opus100": { + "u": 0.9045407636738907, + "t": 0.9129411764705883, + "punct": 0.9605871160641478 + }, + "ud": { + "u": 0.9782608695652174, + "t": 0.9705882352941176, + "punct": 0.9842424242424243 + }, + "ted2020-corrupted-asr": { + "u": 0.1020746079672738, + "t": 0.4592499804274642, + "punct": 0.5882963172537371 + } + }, + "en": { + "ersatz": { + "u": 0.9696712619300106, + "t": 0.9739255014326648, + "punct": 0.9851156069364163 + }, + "opus100": { + "u": 0.9112618724559022, + "t": 0.8999473407056345, + "punct": 0.9421667119196306 + }, + "ud": { + "u": 0.9364448857994041, + "t": 0.9276930644367929, + "punct": 0.9586101175268268 + }, + "ted2020-corrupted-asr": { + "u": 0.1049388658900549, + "t": 0.41715429627348316, + "punct": 0.5877342419080067 + }, + "legal-all-judgements": { + "u": 0.8693022690833463, + "t": 0.8704754910224729, + "punct": 0.9490353616633855, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.13321015124770655, + "t": 0.31474292311673235, + "punct": 0.5723704181293373, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + } + }, + "eo": { + "opus100": { + "u": 0.9063670411985019, + "t": 0.9021998409753511, + "punct": 0.9500954458685574 + }, + "ted2020-corrupted-asr": { + "u": 0.22997664514356367, + "t": 0.5048839274387923, + "punct": 0.6182233834095363 + } + }, + "es": { + "ersatz": { + "u": 0.9852038975099242, + "t": null, + "punct": null + }, + "opus100": { + "u": 0.9112734864300626, + "t": 0.9193335096535308, + "punct": 0.9517842549713974 + }, + "ud": { + "u": 0.9607781612802008, + "t": 0.9685897435897435, + "punct": 0.9958050984188448 + }, + "ted2020-corrupted-asr": { + "u": 0.1577509473869745, + "t": 0.44187209168172903, + "punct": 0.5782459578637922 + }, + "legal-all-laws": { + "u": 0.8484359273397454, + "t": 0.8782509482133806, + "punct": 0.94244577728149, + "acc_u": 0.18579234972677597, + "acc_t": 0.18032786885245902, + "acc_punct": 0.5245901639344263 + }, + "legal-all-laws-corrupted-asr": { + "u": 0.1720963323790397, + "t": 0.603487691309536, + "punct": 0.7525420904683076, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.04371584699453552 + }, + "legal-all-judgements": { + "u": 0.7737030646503023, + "t": 0.7603158045043856, + "punct": 0.8831487004361106, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.05128205128205128 + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.2199914698857011, + "t": 0.3430362044118254, + "punct": 0.5358525852250771, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + } + }, + "et": { + "ersatz": { + "u": 0.9514301133297356, + "t": 0.9525395503746876, + "punct": 0.9808386559289085 + }, + "opus100": { + "u": 0.8415380847416116, + "t": 0.8688906128782001, + "punct": 0.9465313956676722 + }, + "ud": { + "u": 0.9051782111634162, + "t": 0.91051912568306, + "punct": 0.9701830863121186 + }, + "ted2020-corrupted-asr": { + "u": 0.22588402957156856, + "t": 0.5200698080279231, + "punct": 0.6310694146414493 + }, + "short-sequences": { + "u": 0.8826393799399987, + "t": 0.8912286839757134, + "punct": 0.8857725449505289, + "acc_u": 0.43349753694581283, + "acc_t": 0.47783251231527096, + "acc_punct": 0.4482758620689655 + }, + "short-sequences-corrupted-asr": { + "u": 0.5002268296137313, + "t": 0.5460833266112426, + "punct": 0.6312893261952427, + "acc_u": 0.009852216748768473, + "acc_t": 0.014778325123152709, + "acc_punct": 0.059113300492610835 + } + }, + "eu": { + "opus100": { + "u": 0.8538364779874213, + "t": 0.8634969325153374, + "punct": 0.9121293800539083 + }, + "ud": { + "u": 0.9673518742442563, + "t": 0.9715857011915673, + "punct": 0.9990732159406858 + }, + "ted2020-corrupted-asr": { + "u": 0.13593171203092286, + "t": 0.43215950284826515, + "punct": 0.5466127098321343 + } + }, + "fa": { + "opus100": { + "u": 0.587757175514351, + "t": 0.5886075949367088, + "punct": 0.7011802575107295 + }, + "ud": { + "u": 0.9674556213017752, + "t": 0.9796533534287868, + "punct": 0.9996181748759068 + }, + "ted2020-corrupted-asr": { + "u": 0.2042435742625496, + "t": 0.450893033158538, + "punct": 0.6568210262828535 + } + }, + "fi": { + "ersatz": { + "u": 0.9692014172799127, + "t": 0.9702592087312415, + "punct": 0.9927697441601779 + }, + "opus100": { + "u": 0.9071740807405502, + "t": 0.9245432883240666, + "punct": 0.9577464788732393 + }, + "ud": { + "u": 0.9219178082191781, + "t": 0.9253097345132743, + "punct": 0.9741564967695621 + }, + "ted2020-corrupted-asr": { + "u": 0.14465577283686043, + "t": 0.46393869973931584, + "punct": 0.5855658575222475 + } + }, + "fr": { + "ersatz": { + "u": 0.9653121902874132, + "t": 0.965633423180593, + "punct": 0.9876295553326646 + }, + "opus100": { + "u": 0.8753154972236245, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9622886866059817, + "t": 0.9671484888304862, + "punct": 0.9825033647375505 + }, + "ted2020-corrupted-asr": { + "u": 0.20791583166332667, + "t": 0.48654503040906444, + "punct": 0.5997538629837277 + }, + "legal-all-laws": { + "u": 0.9152484437925076, + "t": 0.916033806860681, + "punct": 0.9841137242519807, + "acc_u": 0.6470588235294118, + "acc_t": 0.6514161220043573, + "acc_punct": 0.8823529411764706 + }, + "legal-all-laws-corrupted-asr": { + "u": 0.40212558222704053, + "t": 0.6217339945654509, + "punct": 0.7666276400845684, + "acc_u": 0.1786492374727669, + "acc_t": 0.12636165577342048, + "acc_punct": 0.3137254901960784 + }, + "legal-all-judgements": { + "u": 0.8154585849644916, + "t": 0.8549302828224082, + "punct": 0.9668073918067461, + "acc_u": 0.015873015873015872, + "acc_t": 0.015873015873015872, + "acc_punct": 0.49206349206349204 + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.24286414880678597, + "t": 0.32900224024706426, + "punct": 0.5164388529064962, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + } + }, + "fy": { + "opus100": { + "u": 0.559254327563249, + "t": 0.6591347478644255, + "punct": 0.8651817116060962 + } + }, + "ga": { + "opus100": { + "u": 0.8011710173212979, + "t": 0.7980652962515115, + "punct": 0.889505830094392 + }, + "ud": { + "u": 0.8716289104638619, + "t": 0.9080590238365495, + "punct": 0.9853300733496333 + }, + "ted2020-corrupted-asr": { + "u": 0.0425531914893617, + "t": 0.34615384615384615, + "punct": 0.4000000000000001 + } + }, + "gd": { + "opus100": { + "u": 0.810336421257923, + "t": 0.8277777777777777, + "punct": 0.9212678936605316 + }, + "ud": { + "u": 0.6864608076009501, + "t": 0.6954851104707012, + "punct": 0.8004201680672268 + } + }, + "gl": { + "opus100": { + "u": 0.8800413650465356, + "t": 0.883177570093458, + "punct": 0.936654033567948 + }, + "ud": { + "u": 0.9765517241379311, + "t": 0.9832402234636872, + "punct": 0.9778393351800554 + }, + "ted2020-corrupted-asr": { + "u": 0.12710462287104624, + "t": 0.4488488190149765, + "punct": 0.5646196979289138 + } + }, + "gu": { + "ersatz": { + "u": 0.8744326777609683, + "t": 0.874736842105263, + "punct": 0.9534368070953436 + }, + "opus100": { + "u": 0.6908508935716191, + "t": 0.691231845077999, + "punct": 0.7516816143497758 + }, + "ted2020-corrupted-asr": { + "u": 0.2840818688074058, + "t": 0.31841795084471997, + "punct": 0.45619351131079877 + } + }, + "ha": { + "opus100": { + "u": 0.8258215962441314, + "t": 0.869402985074627, + "punct": 0.9088500264970855 + }, + "ted2020-corrupted-asr": { + "u": 0.13333333333333333, + "t": 0.26315789473684215, + "punct": 0.21621621621621623 + } + }, + "he": { + "opus100": { + "u": 0.9038159958180868, + "t": 0.8931238732938449, + "punct": 0.9383259911894274 + }, + "ud": { + "u": 0.947802197802198, + "t": 0.9503546099290779, + "punct": 0.9672830725462305 + }, + "ted2020-corrupted-asr": { + "u": 0.16623699884434173, + "t": 0.42773528672483757, + "punct": 0.5798915310805173 + } + }, + "hi": { + "ersatz": { + "u": 0.9274328859060402, + "t": 0.9404088734232275, + "punct": 0.9626612355736591 + }, + "opus100": { + "u": 0.6514851485148515, + "t": 0.6271032287403365, + "punct": 0.7370030581039755 + }, + "ud": { + "u": 0.9447077409162716, + "t": 0.946161197833705, + "punct": 0.998022412656559 + }, + "ted2020-corrupted-asr": { + "u": 0.04154302670623145, + "t": 0.37450013588539033, + "punct": 0.5180728261354013 + } + }, + "hu": { + "opus100": { + "u": 0.9115364718054837, + "t": 0.9219895287958115, + "punct": 0.9603906673901247 + }, + "ud": { + "u": 0.961352657004831, + "t": 0.9583858764186634, + "punct": 0.9887920298879204 + }, + "ted2020-corrupted-asr": { + "u": 0.06626506024096385, + "t": 0.4293304164387843, + "punct": 0.55859926574414 + } + }, + "hy": { + "opus100": { + "u": 0.8581968422605873, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9413854351687388, + "t": 0.9518619436875567, + "punct": 0.9830827067669171 + }, + "ted2020-corrupted-asr": { + "u": 0.13477737665463296, + "t": 0.4418558422454578, + "punct": 0.5892687559354226 + } + }, + "id": { + "opus100": { + "u": 0.8754956383822363, + "t": 0.8884073672806068, + "punct": 0.9390681003584229 + }, + "ud": { + "u": 0.9807797913234486, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.019709768247779945, + "t": 0.43371162790697676, + "punct": 0.5288948812125157 + } + }, + "ig": { + "opus100": { + "u": 0.8042539049518111, + "t": 0.8162738133677753, + "punct": 0.9027315123251165 + }, + "ted2020-corrupted-asr": { + "u": 0.20125786163522014, + "t": 0.21739130434782608, + "punct": 0.22772277227722773 + } + }, + "is": { + "opus100": { + "u": 0.9388844408860422, + "t": 0.9435180204410974, + "punct": 0.9634839058696241 + }, + "ud": { + "u": 0.8813361817828704, + "t": 0.8953176260065613, + "punct": 0.9600420609884331 + }, + "ted2020-corrupted-asr": { + "u": 0.29547844374342797, + "t": 0.46237835271777833, + "punct": 0.5823111684958038 + } + }, + "it": { + "opus100": { + "u": 0.8565824957097328, + "t": 0.8771573604060914, + "punct": 0.9331184528605962 + }, + "ud": { + "u": 0.9506037321624587, + "t": 0.9611542730299667, + "punct": 0.9965477560414269 + }, + "ted2020-corrupted-asr": { + "u": 0.40273837424448006, + "t": 0.466998114177953, + "punct": 0.5765284609978918 + }, + "legal-all-laws": { + "u": 0.8053572676646603, + "t": 0.7988519241063688, + "punct": 0.9631748626314753, + "acc_u": 0.2372159090909091, + "acc_t": 0.3963068181818182, + "acc_punct": 0.8607954545454546 + }, + "legal-all-laws-corrupted-asr": { + "u": 0.15907607032428145, + "t": 0.36461020424666246, + "punct": 0.5598150860471094, + "acc_u": 0.017045454545454544, + "acc_t": 0.017045454545454544, + "acc_punct": 0.16051136363636365 + }, + "legal-all-judgements": { + "u": 0.8383911235967727, + "t": 0.8569896902075603, + "punct": 0.939732717281918, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.1836734693877551 + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.23141078155820638, + "t": 0.29859544314887715, + "punct": 0.4458556416475291, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + } + }, + "ja": { + "ersatz": { + "u": 0.7604115629593337, + "t": 0.7653604257377842, + "punct": 0.938062466913711 + }, + "opus100": { + "u": 0.39474835886214443, + "t": 0.7959290187891441, + "punct": 0.8613503751041955 + }, + "ud": { + "u": 0.9584599797365756, + "t": 0.958592132505176, + "punct": 0.9823100936524454 + }, + "ted2020-corrupted-asr": { + "u": 0.5315518351577593, + "t": 0.8635932883661296, + "punct": 0.9411831626848692 + } + }, + "jv": { + "ud": { + "u": 0.9745257452574526, + "t": null, + "punct": null + } + }, + "ka": { + "opus100": { + "u": 0.9044078597981944, + "t": 0.9044078597981944, + "punct": 0.9305251641137856 + }, + "ted2020-corrupted-asr": { + "u": 0.22748581297804096, + "t": 0.4395719917401914, + "punct": 0.5708474576271186 + } + }, + "kk": { + "ersatz": { + "u": 0.9636563876651982, + "t": 0.9630038652678078, + "punct": 0.9961132704053305 + }, + "opus100": { + "u": 0.7231404958677686, + "t": 0.7479720279720279, + "punct": 0.9097202192096914 + }, + "ud": { + "u": 0.9558745348219032, + "t": 0.8944954128440368, + "punct": 0.9186112692088787 + }, + "ted2020-corrupted-asr": { + "u": 0.3214606405267884, + "t": 0.6438231145772838, + "punct": 0.7239230560823625 + } + }, + "km": { + "ersatz": { + "u": 0.8270611268218403, + "t": 0.9118618237236475, + "punct": 0.9133034379671151 + }, + "opus100": { + "u": 0.6843597011079617, + "t": 0.6845557543231962, + "punct": 0.7783505154639174 + }, + "ted2020-corrupted-asr": { + "u": 0.44113263785394935, + "t": 0.5555555555555556, + "punct": 0.6434195725534309 + } + }, + "kn": { + "opus100": { + "u": 0.6108927568781582, + "t": 0.6034177961107837, + "punct": 0.7337128399746996 + }, + "ted2020-corrupted-asr": { + "u": 0.1523394994559304, + "t": 0.20184111830889873, + "punct": 0.37299300123507617 + } + }, + "ko": { + "opus100": { + "u": 0.5790568654646324, + "t": 0.7054263565891473, + "punct": 0.8004251926654266 + }, + "ud": { + "u": 0.9917834702754955, + "t": 0.991763565891473, + "punct": 0.999514091350826 + }, + "ted2020-corrupted-asr": { + "u": 0.4804771482072266, + "t": 0.6896133697016928, + "punct": 0.7824760451923537 + } + }, + "ku": { + "opus100": { + "u": 0.773589554077359, + "t": 0.6712279438242708, + "punct": 0.8617539585870889 + }, + "ted2020-corrupted-asr": { + "u": 0.1655823031880286, + "t": 0.3161911309728429, + "punct": 0.39750334373606777 + } + }, + "ky": { + "opus100": { + "u": 0.8394986242739223, + "t": 0.8407723963279519, + "punct": 0.8979048885932823 + }, + "ted2020-corrupted-asr": { + "u": 0.2681318681318682, + "t": 0.5692695214105793, + "punct": 0.7180851063829787 + } + }, + "la": { + "ud": { + "u": 0.8864091559370529, + "t": 0.901122980005478, + "punct": 0.9649907870492236 + }, + "ted2020-corrupted-asr": { + "u": 0.18181818181818182, + "t": 0.2978723404255319, + "punct": 0.26666666666666666 + } + }, + "lt": { + "ersatz": { + "u": 0.9504087193460491, + "t": 0.9585201793721974, + "punct": 0.9889012208657048 + }, + "opus100": { + "u": 0.7843771666281489, + "t": 0.8417008196721312, + "punct": 0.9016030956329464 + }, + "ud": { + "u": 0.9657915672235481, + "t": 0.9721767594108018, + "punct": 0.9876746096959736 + }, + "ted2020-corrupted-asr": { + "u": 0.22458244111349032, + "t": 0.46802337630041024, + "punct": 0.5814074389148826 + } + }, + "lv": { + "ersatz": { + "u": 0.9623698959167334, + "t": 0.9693318729463308, + "punct": 0.9914998629010144 + }, + "opus100": { + "u": 0.7878787878787878, + "t": 0.8520434557682359, + "punct": 0.9078014184397163 + }, + "ud": { + "u": 0.965675057208238, + "t": 0.9639494833524684, + "punct": 0.9900990099009901 + }, + "ted2020-corrupted-asr": { + "u": 0.21014234875444837, + "t": 0.4946786223078857, + "punct": 0.59708527728344 + } + }, + "mg": { + "opus100": { + "u": 0.8856050955414012, + "t": 0.9057702488088937, + "punct": 0.9514563106796117 + }, + "ted2020-corrupted-asr": { + "u": 0.0, + "t": 0.3794579172610556, + "punct": 0.384 + } + }, + "mk": { + "opus100": { + "u": 0.9122626988199076, + "t": 0.9167311162670791, + "punct": 0.9509962304792676 + }, + "ted2020-corrupted-asr": { + "u": 0.1776782381485629, + "t": 0.4649062131260934, + "punct": 0.59717792596888 + } + }, + "ml": { + "opus100": { + "u": 0.7918326693227091, + "t": 0.8077659283565765, + "punct": 0.8540281839936187 + }, + "ted2020-corrupted-asr": { + "u": 0.2757634562353181, + "t": 0.2917900403768506, + "punct": 0.43961431606471646 + } + }, + "mn": { + "opus100": { + "u": 0.8882377563834241, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.20619147716415057, + "t": 0.6408091217022089, + "punct": 0.8038510485254247 + } + }, + "mr": { + "opus100": { + "u": 0.8785295684603089, + "t": 0.8816568047337279, + "punct": 0.9255698983795662 + }, + "ud": { + "u": 0.9302325581395349, + "t": 0.9425287356321839, + "punct": 0.975609756097561 + }, + "ted2020-corrupted-asr": { + "u": 0.016166281755196302, + "t": 0.2900468948590963, + "punct": 0.4140765713757909 + } + }, + "ms": { + "opus100": { + "u": 0.8617021276595744, + "t": 0.8729641693811075, + "punct": 0.9361227336122734 + }, + "ted2020-corrupted-asr": { + "u": 0.13637006648748057, + "t": 0.4478708746145266, + "punct": 0.5437555419139213 + } + }, + "mt": { + "opus100": { + "u": 0.6593053603694037, + "t": 0.7957390146471371, + "punct": 0.8780091966459291 + }, + "ud": { + "u": 0.8851774530271398, + "t": 0.8809523809523808, + "punct": 0.9242424242424242 + }, + "ted2020-corrupted-asr": { + "u": 0.021052631578947368, + "t": 0.328042328042328, + "punct": 0.44642857142857145 + } + }, + "my": { + "opus100": { + "u": 0.68, + "t": 0.7533527696793002, + "punct": 0.8121886903017872 + }, + "ted2020-corrupted-asr": { + "u": 0.8541468064823641, + "t": 0.8629834848566356, + "punct": 0.9343554798409993 + } + }, + "ne": { + "opus100": { + "u": 0.6874221668742216, + "t": 0.6995100707675559, + "punct": 0.7434191495516344 + }, + "ted2020-corrupted-asr": { + "u": 0.2960262486328837, + "t": 0.4889225525468662, + "punct": 0.6182416549130231 + } + }, + "nl": { + "opus100": { + "u": 0.9080607777491629, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9209558823529411, + "t": 0.9027653880463872, + "punct": 0.9580615097856477 + }, + "ted2020-corrupted-asr": { + "u": 0.33625358394393123, + "t": 0.5660694288913773, + "punct": 0.6844708209693372 + } + }, + "no": { + "opus100": { + "u": 0.9413020277481323, + "t": 0.9430328964963894, + "punct": 0.9635671560630779 + }, + "ud": { + "u": 0.9848006882707198, + "t": 0.9853826311263973, + "punct": 0.9928181557023844 + } + }, + "pa": { + "opus100": { + "u": 0.6297677086320619, + "t": 0.6511378848728246, + "punct": 0.7343890050791754 + }, + "ted2020-corrupted-asr": { + "u": 0.09743589743589744, + "t": 0.3835125448028674, + "punct": 0.5108556832694764 + } + }, + "pl": { + "ersatz": { + "u": 0.9302325581395349, + "t": 0.9330357142857142, + "punct": 0.9839335180055402 + }, + "opus100": { + "u": 0.9129979035639414, + "t": 0.9186323880201431, + "punct": 0.9565453557848994 + }, + "ud": { + "u": 0.9458363159150561, + "t": 0.9574726609963549, + "punct": 0.991959798994975 + }, + "ted2020-corrupted-asr": { + "u": 0.16679118416137467, + "t": 0.5011429021833372, + "punct": 0.5873000294435176 + } + }, + "ps": { + "ersatz": { + "u": 0.843322070069358, + "t": 0.9184205251553419, + "punct": 0.9626436781609196 + }, + "opus100": { + "u": 0.6814476687316596, + "t": 0.7052227795809973, + "punct": 0.7508532423208191 + }, + "ted2020-corrupted-asr": { + "u": 0.3530751708428246, + "t": 0.42874543239951274, + "punct": 0.6094032549728753 + } + }, + "pt": { + "opus100": { + "u": 0.9042086238058353, + "t": 0.916622691292876, + "punct": 0.9524067063277447 + }, + "ud": { + "u": 0.9534117647058823, + "t": 0.9527410207939508, + "punct": 0.9808978032473734 + }, + "ted2020-corrupted-asr": { + "u": 0.09499358151476252, + "t": 0.49555423829282746, + "punct": 0.6008274004233212 + }, + "legal-all-laws": { + "u": 0.6963344410693512, + "t": 0.6253017444167106, + "punct": 0.6169160157207587, + "acc_u": 0.06896551724137931, + "acc_t": 0.05172413793103448, + "acc_punct": 0.10344827586206896 + }, + "legal-all-laws-corrupted-asr": { + "u": 0.1093262972028479, + "t": 0.4052837291422163, + "punct": 0.2933379377861851, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + }, + "legal-all-judgements": { + "u": 0.774405743000465, + "t": 0.8036719727093551, + "punct": 0.7829713677816816, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.12013699531236857, + "t": 0.32126532104565186, + "punct": 0.14571923931120173, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + } + }, + "ro": { + "ersatz": { + "u": 0.9727817093086555, + "t": 0.9662482566248256, + "punct": 0.9919823057782693 + }, + "opus100": { + "u": 0.8849557522123895, + "t": 0.8884937769875539, + "punct": 0.9656499038197307 + }, + "ud": { + "u": 0.804421768707483, + "t": 0.8979591836734694, + "punct": 0.9936440677966103 + }, + "ted2020-corrupted-asr": { + "u": 0.13648389745461179, + "t": 0.4401153276708486, + "punct": 0.5838331905169951 + } + }, + "ru": { + "ersatz": { + "u": 0.9677777777777777, + "t": 0.967923466516601, + "punct": 0.9875846501128668 + }, + "opus100": { + "u": 0.8053913454717427, + "t": null, + "punct": null + }, + "ud": { + "u": 0.8365937859608746, + "t": 0.8499399759903962, + "punct": 0.9141065830721001 + }, + "ted2020-corrupted-asr": { + "u": 0.11973478939157566, + "t": 0.491458051420839, + "punct": 0.5777200826962834 + } + }, + "si": { + "opus100": { + "u": 0.7844961240310078, + "t": 0.795751633986928, + "punct": 0.8502793296089386 + }, + "ted2020-corrupted-asr": { + "u": 0.1912479740680713, + "t": 0.38418079096045193, + "punct": 0.515235457063712 + } + }, + "sk": { + "opus100": { + "u": 0.8969759097898514, + "t": 0.9195710455764075, + "punct": 0.957569121270189 + }, + "ud": { + "u": 0.9631190727081139, + "t": 0.9583333333333333, + "punct": 0.9724576271186441 + }, + "ted2020-corrupted-asr": { + "u": 0.2957397366382649, + "t": 0.5004507827227276, + "punct": 0.607992477668077 + } + }, + "sl": { + "opus100": { + "u": 0.9085287297088379, + "t": 0.9212184873949579, + "punct": 0.949343339587242 + }, + "ud": { + "u": 0.9561920808761584, + "t": 0.9607927617406291, + "punct": 0.9939077458659703 + }, + "ted2020-corrupted-asr": { + "u": 0.21308815575987022, + "t": 0.49739538114255955, + "punct": 0.6298203109226731 + }, + "short-sequences": { + "u": 0.8240066712473322, + "t": 0.8309924721312077, + "punct": 0.9159228391282688, + "acc_u": 0.39589442815249265, + "acc_t": 0.4208211143695015, + "acc_punct": 0.6997800586510264 + }, + "short-sequences-corrupted-asr": { + "u": 0.6218245941523862, + "t": 0.5850744441426179, + "punct": 0.6802410533787584, + "acc_u": 0.10740469208211144, + "acc_t": 0.07881231671554252, + "acc_punct": 0.20711143695014664 + } + }, + "sq": { + "opus100": { + "u": 0.888888888888889, + "t": 0.9018372703412074, + "punct": 0.9530054644808742 + }, + "ud": { + "u": 1.0, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.13007657264708733, + "t": 0.464480182347727, + "punct": 0.585252815497984 + } + }, + "sr": { + "opus100": { + "u": 0.9386567953463776, + "t": 0.9417708056367988, + "punct": 0.9622179940201141 + }, + "ud": { + "u": 0.9641350210970464, + "t": 0.9711229946524065, + "punct": 0.9935897435897436 + }, + "ted2020-corrupted-asr": { + "u": 0.276542800265428, + "t": 0.4807192642388749, + "punct": 0.5797543179089313 + }, + "short-sequences": { + "u": 0.896277536121286, + "t": 0.9195566297128798, + "punct": 0.9557755901505902, + "acc_u": 0.5885416666666666, + "acc_t": 0.6458333333333334, + "acc_punct": 0.8125 + }, + "short-sequences-corrupted-asr": { + "u": 0.6151106127668627, + "t": 0.5784156312902927, + "punct": 0.6523651695526697, + "acc_u": 0.078125, + "acc_t": 0.057291666666666664, + "acc_punct": 0.13541666666666666 + } + }, + "sv": { + "opus100": { + "u": 0.9073170731707316, + "t": 0.9233193277310924, + "punct": 0.9546191247974067 + }, + "ud": { + "u": 0.9448169159360497, + "t": 0.9503397804495557, + "punct": 0.9655537890832008 + }, + "ted2020-corrupted-asr": { + "u": 0.13981934512608205, + "t": 0.4870357057272945, + "punct": 0.6161451432066049 + } + }, + "ta": { + "ersatz": { + "u": 0.9349422875131164, + "t": 0.9531680440771351, + "punct": 0.9818979703784969 + }, + "opus100": { + "u": 0.6208941605839415, + "t": 0.6227544910179641, + "punct": 0.7158022444646649 + }, + "ud": { + "u": 0.972972972972973, + "t": 0.9724770642201834, + "punct": 1.0 + }, + "ted2020-corrupted-asr": { + "u": 0.2880360289798316, + "t": 0.29705662429474544, + "punct": 0.4221396117306898 + } + }, + "te": { + "opus100": { + "u": 0.7550736725048651, + "t": 0.7624750499001995, + "punct": 0.8337777777777777 + }, + "ted2020-corrupted-asr": { + "u": 0.24885321100917432, + "t": 0.36692837686268226, + "punct": 0.5190647482014389 + } + }, + "tg": { + "opus100": { + "u": 0.7959961868446138, + "t": 0.8318440292445166, + "punct": 0.9045280960174578 + }, + "ted2020-corrupted-asr": { + "u": 0.15181518151815182, + "t": 0.5475728155339806, + "punct": 0.6808510638297872 + } + }, + "th": { + "opus100": { + "u": 0.6698509743981658, + "t": 0.6875386199794026, + "punct": 0.707388277565686 + }, + "ud": { + "u": 0.6676748582230624, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4646580426832596, + "t": 0.5207224573607677, + "punct": 0.5898542168127526 + } + }, + "tr": { + "ersatz": { + "u": 0.9146015332501337, + "t": 0.913035551504102, + "punct": 0.979757085020243 + }, + "opus100": { + "u": 0.9244325767690255, + "t": 0.9259656652360516, + "punct": 0.9539726027397262 + }, + "ud": { + "u": 0.9595202398800601, + "t": 0.9592760180995475, + "punct": 0.9827760891590678 + }, + "ted2020-corrupted-asr": { + "u": 0.05168986083499006, + "t": 0.5424366389241547, + "punct": 0.705623395000262 + } + }, + "uk": { + "opus100": { + "u": 0.8842805939580133, + "t": 0.8870594288654489, + "punct": 0.9403147042864893 + }, + "ud": { + "u": 0.9162079510703365, + "t": 0.9144981412639406, + "punct": 0.9814585908529049 + }, + "ted2020-corrupted-asr": { + "u": 0.24094719557514477, + "t": 0.47924000169642483, + "punct": 0.5762504124829113 + } + }, + "ur": { + "opus100": { + "u": 0.519304450338933, + "t": 0.4865741575058569, + "punct": 0.619296933433059 + }, + "ud": { + "u": 0.8972667295004714, + "t": 0.9475806451612903, + "punct": 0.9927007299270073 + }, + "ted2020-corrupted-asr": { + "u": 0.37834856602584305, + "t": 0.44429133858267716, + "punct": 0.6126104465949389 + } + }, + "uz": { + "opus100": { + "u": 0.7571106094808127, + "t": 0.7732997481108314, + "punct": 0.8531011969532099 + }, + "ted2020-corrupted-asr": { + "u": 0.34832705517394197, + "t": 0.6107753632506107, + "punct": 0.6989713048186247 + } + }, + "vi": { + "opus100": { + "u": 0.8990825688073395, + "t": 0.9039707124753591, + "punct": 0.9459983384104126 + }, + "ud": { + "u": 0.8911917098445595, + "t": 0.9362298528381219, + "punct": 0.9958391123439668 + }, + "ted2020-corrupted-asr": { + "u": 0.08931229532598989, + "t": 0.37932828057660867, + "punct": 0.5178612267300919 + } + }, + "xh": { + "opus100": { + "u": 0.7846622651091925, + "t": 0.8184059161873459, + "punct": 0.9013363662212114 + } + }, + "yi": { + "opus100": { + "u": 0.7141346492774058, + "t": 0.7122405153901217, + "punct": 0.7806422433288105 + } + }, + "yo": { + "opus100": { + "u": 0.7272227817965388, + "t": null, + "punct": null + }, + "ud": { + "u": 0.8185776487663281, + "t": null, + "punct": null + } + }, + "zh": { + "ersatz": { + "u": 0.8536209553158706, + "t": 0.9074380165289258, + "punct": 0.971682398667407 + }, + "opus100": { + "u": 0.7743767750078888, + "t": 0.784263959390863, + "punct": 0.8808988764044944 + }, + "ud": { + "u": 0.8787128712871287, + "t": 0.9658213891951489, + "punct": 0.9988876529477196 + }, + "ted2020-corrupted-asr": { + "u": 0.3242065961418793, + "t": 0.48965558124370145, + "punct": 0.6343091579166956 + } + }, + "zu": { + "opus100": { + "u": 0.7541827541827543, + "t": 0.8309899569583931, + "punct": 0.8951467944877172 + } + }, + "tr-de_TR": { + "code-switching": { + "u": 0.9425587467362925, + "t": 0.9755766621438263, + "punct": 0.9951757408683666 + }, + "code-switching-corrupted-asr": { + "u": 0.17842876165113183, + "t": 0.2165242165242165, + "punct": 0.2991452991452992 + } + }, + "tr-de_DE": { + "code-switching": { + "u": 0.9076052796983028, + "t": 0.9876712328767123, + "punct": 0.996554100620262 + }, + "code-switching-corrupted-asr": { + "u": 0.2450592885375494, + "t": 0.22739187418086498, + "punct": 0.31349628055260365 + } + }, + "es-en_ES": { + "code-switching": { + "u": 0.8418586489652479, + "t": 0.8586821384169083, + "punct": 0.9316017316017315 + }, + "code-switching-corrupted-asr": { + "u": 0.32251720747295964, + "t": 0.38716635211647343, + "punct": 0.5416963649322879 + } + }, + "es-en_EN": { + "code-switching": { + "u": 0.8619582664526485, + "t": 0.8990426457789382, + "punct": 0.9378283712784589 + }, + "code-switching-corrupted-asr": { + "u": 0.15084175084175083, + "t": 0.3521377672209026, + "punct": 0.45895788722341185 + } + }, + "vi-en_VI": { + "code-switching": { + "u": 0.24336973478939158, + "t": 0.3511725796752856, + "punct": 0.5028746646224607 + }, + "code-switching-corrupted-asr": { + "u": 0.28085519922254615, + "t": 0.3559133814547473, + "punct": 0.5041352031643294 + } + }, + "vi-en_EN": { + "code-switching": { + "u": 0.0346646571213263, + "t": 0.2733346831342377, + "punct": 0.3671947809878845 + }, + "code-switching-corrupted-asr": { + "u": 0.04559270516717325, + "t": 0.2741157556270096, + "punct": 0.3759347382732835 + } + }, + "en-de_EN": { + "code-switching": { + "u": 0.5932901706886403, + "t": 0.7571545380212593, + "punct": 0.9074074074074074 + }, + "code-switching-corrupted-asr": { + "u": 0.14906832298136646, + "t": 0.16940179989412388, + "punct": 0.3311258278145695 + }, + "short-sequences": { + "u": 0.8091779160115077, + "t": 0.866360358861373, + "punct": 0.959559510529667, + "acc_u": 0.33471933471933474, + "acc_t": 0.4698544698544699, + "acc_punct": 0.7879417879417879 + }, + "short-sequences-corrupted-asr": { + "u": 0.4799762779930162, + "t": 0.37282765669880513, + "punct": 0.4786053994825032, + "acc_u": 0.062370062370062374, + "acc_t": 0.02286902286902287, + "acc_punct": 0.031185031185031187 + } + }, + "en-de_DE": { + "code-switching": { + "u": 0.6259351620947632, + "t": 0.7459546925566343, + "punct": 0.9049429657794675 + }, + "code-switching-corrupted-asr": { + "u": 0.29435483870967744, + "t": 0.3163323782234957, + "punct": 0.4568106312292359 + }, + "short-sequences": { + "u": 0.8167106096406314, + "t": 0.865710072773499, + "punct": 0.9546817053575022, + "acc_u": 0.3388773388773389, + "acc_t": 0.4594594594594595, + "acc_punct": 0.7650727650727651 + }, + "short-sequences-corrupted-asr": { + "u": 0.5463656750293453, + "t": 0.4698959949871302, + "punct": 0.6003692510922137, + "acc_u": 0.06652806652806653, + "acc_t": 0.029106029106029108, + "acc_punct": 0.08108108108108109 + } + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/wtp-3l.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/wtp-3l.json new file mode 100644 index 0000000000000000000000000000000000000000..52b9a605e0a70b5428bc182c82999b0ed0920b4d --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/wtp-3l.json @@ -0,0 +1,1709 @@ +{ + "af": { + "opus100": { + "u": 0.7460624481901078, + "t": 0.7638141809290953, + "punct": 0.8783936651583711 + }, + "ud": { + "u": 0.9832689832689833, + "t": 0.9895833333333334, + "punct": 0.9986928104575163 + }, + "ted2020-corrupted-asr": { + "u": 0.48290972830850126, + "t": 0.4982346018046293, + "punct": 0.6521084337349399 + } + }, + "am": { + "opus100": { + "u": 0.5818051060769507, + "t": 0.6372081345719308, + "punct": 0.7048366013071896 + }, + "ted2020-corrupted-asr": { + "u": 0.4358974358974359, + "t": 0.5321100917431192, + "punct": 0.5794392523364486 + } + }, + "ar": { + "ersatz": { + "u": 0.8701482004234298, + "t": 0.8867562380038387, + "punct": 0.9272521673577083 + }, + "opus100": { + "u": 0.6445927903871829, + "t": 0.6461780929866037, + "punct": 0.7610523460808245 + }, + "ud": { + "u": 0.8051595383570943, + "t": 0.8642160540135034, + "punct": 0.8737254901960785 + }, + "ted2020-corrupted-asr": { + "u": 0.32688629117959617, + "t": 0.4576788337665273, + "punct": 0.5832751918668395 + } + }, + "az": { + "opus100": { + "u": 0.7488464073829927, + "t": 0.746441495778046, + "punct": 0.830338266384778 + }, + "ted2020-corrupted-asr": { + "u": 0.12689901697944594, + "t": 0.6269256530475552, + "punct": 0.730951628201075 + } + }, + "be": { + "opus100": { + "u": 0.7168689621005698, + "t": 0.724699221514508, + "punct": 0.891160220994475 + }, + "ud": { + "u": 0.8893185113581441, + "t": 0.887823585810163, + "punct": 0.919371727748691 + }, + "ted2020-corrupted-asr": { + "u": 0.4040743228117305, + "t": 0.5186265218342203, + "punct": 0.6216442315004943 + } + }, + "bg": { + "opus100": { + "u": 0.9315719947159842, + "t": 0.9277266754270698, + "punct": 0.9616423554835224 + }, + "ud": { + "u": 0.9815645241654211, + "t": 0.9805873568939772, + "punct": 0.9955201592832256 + }, + "ted2020-corrupted-asr": { + "u": 0.2893220338983051, + "t": 0.5375017394127741, + "punct": 0.6517056554626058 + } + }, + "bn": { + "opus100": { + "u": 0.7794291106393016, + "t": 0.8210075026795285, + "punct": 0.8650093557872227 + }, + "ud": { + "u": 0.9345794392523363, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.1544134593224245, + "t": 0.18666666666666668, + "punct": 0.30086180363188675 + } + }, + "ca": { + "opus100": { + "u": 0.8765935747067823, + "t": 0.886422302529685, + "punct": 0.9395095367847411 + }, + "ud": { + "u": 0.9830609212481427, + "t": 0.9841364860820112, + "punct": 0.9955022488755623 + }, + "ted2020-corrupted-asr": { + "u": 0.09902176083050508, + "t": 0.485763475036419, + "punct": 0.6288905862134809 + } + }, + "ceb": { + "ud": { + "u": 0.9970501474926253, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3738317757009346, + "t": 0.2622950819672131, + "punct": 0.32 + } + }, + "cs": { + "ersatz": { + "u": 0.9356419470761188, + "t": 0.9393447940317873, + "punct": 0.9896973599484868 + }, + "opus100": { + "u": 0.8748743718592964, + "t": 0.8999220171562257, + "punct": 0.9488167308750689 + }, + "ud": { + "u": 0.9227742252828333, + "t": 0.9196294858283875, + "punct": 0.954099994463208 + }, + "ted2020-corrupted-asr": { + "u": 0.34911024145314923, + "t": 0.5117088070592228, + "punct": 0.6444958550221708 + } + }, + "cy": { + "opus100": { + "u": 0.6866449511400652, + "t": 0.7417714744447418, + "punct": 0.8095830740510267 + }, + "ud": { + "u": 0.9918319719953326, + "t": 0.9924021040327293, + "punct": 0.9947460595446587 + } + }, + "da": { + "opus100": { + "u": 0.8822937625754527, + "t": 0.9006211180124225, + "punct": 0.9454841334418226 + }, + "ud": { + "u": 0.9508196721311476, + "t": 0.9433593749999999, + "punct": 0.9891411648568609 + }, + "ted2020-corrupted-asr": { + "u": 0.10769543973941367, + "t": 0.5496276172186051, + "punct": 0.651931614243884 + } + }, + "de": { + "ersatz": { + "u": 0.9528250137136588, + "t": 0.9563025210084034, + "punct": 0.9926220204313281 + }, + "opus100": { + "u": 0.7667597765363128, + "t": 0.8458333333333332, + "punct": 0.8935692221286156 + }, + "ud": { + "u": 0.955890563930765, + "t": 0.9581661891117479, + "punct": 0.9649941656942823 + }, + "ted2020-corrupted-asr": { + "u": 0.2311730785781909, + "t": 0.5656384335585054, + "punct": 0.678136275688961 + }, + "legal-all-laws": { + "u": 0.8273406275417017, + "t": 0.8530008130573318, + "punct": 0.9400267962665015, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + }, + "legal-all-laws-corrupted-asr": { + "u": 0.357580296363629, + "t": 0.45841799412665346, + "punct": 0.7657990379081562, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + }, + "legal-all-judgements": { + "u": 0.7948348546328665, + "t": 0.7951290515588914, + "punct": 0.8693018178128686, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.30015835538028846, + "t": 0.36863855652539274, + "punct": 0.6515368529361216, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + } + }, + "el": { + "opus100": { + "u": 0.9094202898550725, + "t": 0.918720503408495, + "punct": 0.9592833876221498 + }, + "ud": { + "u": 0.973170731707317, + "t": 0.9766871165644172, + "punct": 0.9778869778869779 + }, + "ted2020-corrupted-asr": { + "u": 0.2962849247774025, + "t": 0.48879489160938705, + "punct": 0.6353736008873652 + } + }, + "en": { + "ersatz": { + "u": 0.9653028054554448, + "t": 0.9669767772175272, + "punct": 0.9860599494402312 + }, + "opus100": { + "u": 0.9063509149623251, + "t": 0.8941729814476091, + "punct": 0.9471956224350205 + }, + "ud": { + "u": 0.944944944944945, + "t": 0.9450000000000001, + "punct": 0.9686697483307652 + }, + "ted2020-corrupted-asr": { + "u": 0.10141119221411192, + "t": 0.4605159666509359, + "punct": 0.6259808195292066 + }, + "legal-all-judgements": { + "u": 0.8651176809221256, + "t": 0.8730186325885003, + "punct": 0.9545356427888322, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.1580145633513825, + "t": 0.34282072308471184, + "punct": 0.6282320470129183, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + } + }, + "eo": { + "opus100": { + "u": 0.909382518043304, + "t": 0.9050013231013496, + "punct": 0.9543591145121618 + }, + "ted2020-corrupted-asr": { + "u": 0.32225379957988387, + "t": 0.5417008476893628, + "punct": 0.6411075612353567 + } + }, + "es": { + "ersatz": { + "u": 0.9870036101083033, + "t": null, + "punct": null + }, + "opus100": { + "u": 0.8994818652849741, + "t": 0.9137885578697601, + "punct": 0.9500813890396094 + }, + "ud": { + "u": 0.9647355163727959, + "t": 0.9692898272552783, + "punct": 0.9970977104159949 + }, + "ted2020-corrupted-asr": { + "u": 0.14924297043979812, + "t": 0.46968116805721094, + "punct": 0.6308964015245261 + }, + "legal-all-laws": { + "u": 0.8381987402784555, + "t": 0.8845947150509977, + "punct": 0.9406758662510312, + "acc_u": 0.17486338797814208, + "acc_t": 0.18579234972677597, + "acc_punct": 0.5355191256830601 + }, + "legal-all-laws-corrupted-asr": { + "u": 0.15588626372021158, + "t": 0.6499089247331732, + "punct": 0.7871445013834258, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.060109289617486336 + }, + "legal-all-judgements": { + "u": 0.7678525857294639, + "t": 0.7579020710003197, + "punct": 0.8838539812993378, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.05128205128205128 + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.27106097658470457, + "t": 0.3796229036139682, + "punct": 0.5824093838896932, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + } + }, + "et": { + "ersatz": { + "u": 0.9604581401690755, + "t": 0.9568345323741007, + "punct": 0.9802173307327947 + }, + "opus100": { + "u": 0.8252611585944919, + "t": 0.8771021992238034, + "punct": 0.9456729456729457 + }, + "ud": { + "u": 0.925586136595311, + "t": 0.9254848587955086, + "punct": 0.9801876955161627 + }, + "ted2020-corrupted-asr": { + "u": 0.44557846906675985, + "t": 0.5504028480419711, + "punct": 0.6791559227490397 + }, + "short-sequences": { + "u": 0.8898583990538698, + "t": 0.8929900258351421, + "punct": 0.901251807308328, + "acc_u": 0.458128078817734, + "acc_t": 0.4630541871921182, + "acc_punct": 0.46798029556650245 + }, + "short-sequences-corrupted-asr": { + "u": 0.5568829025177093, + "t": 0.5752839710259924, + "punct": 0.6708640650623166, + "acc_u": 0.029556650246305417, + "acc_t": 0.019704433497536946, + "acc_punct": 0.07389162561576355 + } + }, + "eu": { + "opus100": { + "u": 0.8440049443757726, + "t": 0.8596802841918294, + "punct": 0.916170903190914 + }, + "ud": { + "u": 0.9711684370257967, + "t": 0.9731543624161074, + "punct": 0.9987646695491044 + }, + "ted2020-corrupted-asr": { + "u": 0.22882961667395424, + "t": 0.4492885680241116, + "punct": 0.5982427493974029 + } + }, + "fa": { + "opus100": { + "u": 0.5959518319241609, + "t": 0.5932594644506001, + "punct": 0.7268054484708302 + }, + "ud": { + "u": 0.9664082687338501, + "t": 0.9781461944235116, + "punct": 0.9996181748759068 + }, + "ted2020-corrupted-asr": { + "u": 0.2760408229386036, + "t": 0.5034959248686441, + "punct": 0.6847588012180137 + } + }, + "fi": { + "ersatz": { + "u": 0.9737417943107222, + "t": 0.9724464236014473, + "punct": 0.9936057825966083 + }, + "opus100": { + "u": 0.9081081081081079, + "t": 0.9251124636147129, + "punct": 0.9551835853131748 + }, + "ud": { + "u": 0.920917494008901, + "t": 0.9265536723163842, + "punct": 0.9807555238774056 + }, + "ted2020-corrupted-asr": { + "u": 0.21793587174348697, + "t": 0.49411861818481984, + "punct": 0.628758437308243 + } + }, + "fr": { + "ersatz": { + "u": 0.9719749423013518, + "t": 0.9663526244952894, + "punct": 0.9843176509843178 + }, + "opus100": { + "u": 0.8680089485458613, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9636363636363636, + "t": 0.9660574412532638, + "punct": 0.9825033647375505 + }, + "ted2020-corrupted-asr": { + "u": 0.21032817742859483, + "t": 0.5095911348872755, + "punct": 0.6469342476805163 + }, + "legal-all-laws": { + "u": 0.6484904435068684, + "t": 0.7050662113342585, + "punct": 0.9877333008481437, + "acc_u": 0.3137254901960784, + "acc_t": 0.37254901960784315, + "acc_punct": 0.8867102396514162 + }, + "legal-all-laws-corrupted-asr": { + "u": 0.06571071511745352, + "t": 0.533533527922296, + "punct": 0.8153214832827933, + "acc_u": 0.006535947712418301, + "acc_t": 0.0915032679738562, + "acc_punct": 0.38562091503267976 + }, + "legal-all-judgements": { + "u": 0.8595806720145847, + "t": 0.8629043112717765, + "punct": 0.966194585546757, + "acc_u": 0.047619047619047616, + "acc_t": 0.031746031746031744, + "acc_punct": 0.47619047619047616 + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.2692444235731746, + "t": 0.36343003030405957, + "punct": 0.56951129844723, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.015873015873015872 + } + }, + "fy": { + "opus100": { + "u": 0.443956043956044, + "t": 0.6097918498973908, + "punct": 0.8811678832116789 + } + }, + "ga": { + "opus100": { + "u": 0.7784765897973445, + "t": 0.7729580064605446, + "punct": 0.8751714677640603 + }, + "ud": { + "u": 0.8428720083246618, + "t": 0.9043869516310462, + "punct": 0.9817295980511571 + }, + "ted2020-corrupted-asr": { + "u": 0.04347826086956522, + "t": 0.40707964601769914, + "punct": 0.4301075268817205 + } + }, + "gd": { + "opus100": { + "u": 0.8352490421455938, + "t": 0.8365776369397918, + "punct": 0.9269051321928461 + }, + "ud": { + "u": 0.711864406779661, + "t": 0.7065420560747663, + "punct": 0.7955911823647295 + } + }, + "gl": { + "opus100": { + "u": 0.8848641655886157, + "t": 0.8889466840052015, + "punct": 0.9388197076340011 + }, + "ud": { + "u": 0.9752747252747254, + "t": 0.9874826147426982, + "punct": 0.9861878453038674 + }, + "ted2020-corrupted-asr": { + "u": 0.18885533900631346, + "t": 0.48362130276534326, + "punct": 0.6185073483651682 + } + }, + "gu": { + "ersatz": { + "u": 0.8972638100154878, + "t": 0.8890080428954423, + "punct": 0.9671052631578948 + }, + "opus100": { + "u": 0.6916322314049587, + "t": 0.695898161244696, + "punct": 0.7648977171657277 + }, + "ted2020-corrupted-asr": { + "u": 0.2734202114580772, + "t": 0.34267690898916414, + "punct": 0.4689745981236627 + } + }, + "ha": { + "opus100": { + "u": 0.8279418659165495, + "t": 0.8891269416175682, + "punct": 0.914572864321608 + }, + "ted2020-corrupted-asr": { + "u": 0.0, + "t": 0.3111111111111111, + "punct": 0.0 + } + }, + "he": { + "opus100": { + "u": 0.9024836601307189, + "t": 0.8941418293936279, + "punct": 0.9379310344827585 + }, + "ud": { + "u": 0.9505494505494506, + "t": 0.9606741573033708, + "punct": 0.9713467048710601 + }, + "ted2020-corrupted-asr": { + "u": 0.2230246032412461, + "t": 0.47488005075538287, + "punct": 0.6229320072678588 + } + }, + "hi": { + "ersatz": { + "u": 0.9390787518573552, + "t": 0.9464207290294248, + "punct": 0.9629629629629628 + }, + "opus100": { + "u": 0.6506995494427318, + "t": 0.6428408832233098, + "punct": 0.7634069400630916 + }, + "ud": { + "u": 0.9611217335882728, + "t": 0.9680335808847271, + "punct": 0.9990102276476411 + }, + "ted2020-corrupted-asr": { + "u": 0.009807056816970472, + "t": 0.3828372130748642, + "punct": 0.5234154318846325 + } + }, + "hu": { + "opus100": { + "u": 0.9156751163993792, + "t": 0.9210320562939797, + "punct": 0.9622795115332428 + }, + "ud": { + "u": 0.9596083231334149, + "t": 0.9626865671641791, + "punct": 0.9950617283950617 + }, + "ted2020-corrupted-asr": { + "u": 0.15302261190586064, + "t": 0.46982147917257006, + "punct": 0.6067281335659108 + } + }, + "hy": { + "opus100": { + "u": 0.8514409221902017, + "t": null, + "punct": null + }, + "ud": { + "u": 0.96028880866426, + "t": 0.9618604651162791, + "punct": 0.9849906191369605 + }, + "ted2020-corrupted-asr": { + "u": 0.2783859368757491, + "t": 0.49778992204452294, + "punct": 0.6241451367781156 + } + }, + "id": { + "opus100": { + "u": 0.8891275167785235, + "t": 0.8954979536152796, + "punct": 0.93912562257886 + }, + "ud": { + "u": 0.9796814936847886, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.1134892981582877, + "t": 0.4822154258661862, + "punct": 0.5848216519085497 + } + }, + "ig": { + "opus100": { + "u": 0.7860593512767426, + "t": 0.8212903225806452, + "punct": 0.9016501650165017 + }, + "ted2020-corrupted-asr": { + "u": 0.22047244094488191, + "t": 0.3347280334728033, + "punct": 0.320855614973262 + } + }, + "is": { + "opus100": { + "u": 0.9390048154093099, + "t": 0.9437112846754646, + "punct": 0.9655172413793103 + }, + "ud": { + "u": 0.8579027355623099, + "t": 0.8891980522706947, + "punct": 0.9658174097664544 + }, + "ted2020-corrupted-asr": { + "u": 0.4029643353404354, + "t": 0.5125761186126555, + "punct": 0.6288152280932064 + } + }, + "it": { + "opus100": { + "u": 0.8463768115942029, + "t": 0.8836973082783138, + "punct": 0.9339395560310243 + }, + "ud": { + "u": 0.9372294372294372, + "t": 0.9372294372294372, + "punct": 0.9931192660550459 + }, + "ted2020-corrupted-asr": { + "u": 0.39865720800608057, + "t": 0.4950503426685844, + "punct": 0.6209507379720145 + }, + "legal-all-laws": { + "u": 0.7660625978127186, + "t": 0.7309359803513686, + "punct": 0.9581241275987273, + "acc_u": 0.34801136363636365, + "acc_t": 0.484375, + "acc_punct": 0.8352272727272727 + }, + "legal-all-laws-corrupted-asr": { + "u": 0.13412642388513707, + "t": 0.3452770063606297, + "punct": 0.5655760658341876, + "acc_u": 0.011363636363636364, + "acc_t": 0.014204545454545454, + "acc_punct": 0.17897727272727273 + }, + "legal-all-judgements": { + "u": 0.8289909168023787, + "t": 0.8522898417188988, + "punct": 0.940183325332893, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.1836734693877551 + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.23207949313479273, + "t": 0.30211122397660384, + "punct": 0.48771049733048577, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + } + }, + "ja": { + "ersatz": { + "u": 0.8015122873345936, + "t": 0.8151898734177215, + "punct": 0.9438909281594127 + }, + "opus100": { + "u": 0.4456659619450317, + "t": 0.7946568884232582, + "punct": 0.8670903564520587 + }, + "ud": { + "u": 0.9342492639842983, + "t": 0.9570552147239264, + "punct": 0.9812889812889813 + }, + "ted2020-corrupted-asr": { + "u": 0.8287063267233238, + "t": 0.8952187182095624, + "punct": 0.9431697054698458 + } + }, + "jv": { + "ud": { + "u": 0.977607864554888, + "t": null, + "punct": null + } + }, + "ka": { + "opus100": { + "u": 0.9127625201938611, + "t": 0.9105951427808913, + "punct": 0.9279869067103109 + }, + "ted2020-corrupted-asr": { + "u": 0.24230079843571778, + "t": 0.4632260521805371, + "punct": 0.6149408710700894 + } + }, + "kk": { + "ersatz": { + "u": 0.9632925472747497, + "t": 0.9566685424873382, + "punct": 0.9972268441486413 + }, + "opus100": { + "u": 0.7342211928199189, + "t": 0.7489409771251059, + "punct": 0.920544835414302 + }, + "ud": { + "u": 0.9740603493912122, + "t": 0.8284313725490196, + "punct": 0.8474164133738601 + }, + "ted2020-corrupted-asr": { + "u": 0.33377212227585196, + "t": 0.6654766734279919, + "punct": 0.7447758528308627 + } + }, + "km": { + "ersatz": { + "u": 0.7016358463726885, + "t": 0.9137055837563453, + "punct": 0.9197299324831208 + }, + "opus100": { + "u": 0.717830647224354, + "t": 0.7109859154929579, + "punct": 0.7901311680199875 + }, + "ted2020-corrupted-asr": { + "u": 0.36952998379254465, + "t": 0.6339869281045752, + "punct": 0.6899563318777292 + } + }, + "kn": { + "opus100": { + "u": 0.6446078431372548, + "t": 0.603542234332425, + "punct": 0.7803617571059432 + }, + "ted2020-corrupted-asr": { + "u": 0.16983523447401772, + "t": 0.25928074245939675, + "punct": 0.37677304964539005 + } + }, + "ko": { + "opus100": { + "u": 0.5673512008353638, + "t": 0.704169750801875, + "punct": 0.8156453715775749 + }, + "ud": { + "u": 0.9922742636407532, + "t": 0.9944242424242425, + "punct": 0.9992709599027946 + }, + "ted2020-corrupted-asr": { + "u": 0.6062306723170313, + "t": 0.7034252297410192, + "punct": 0.784679786363855 + } + }, + "ku": { + "opus100": { + "u": 0.780801583374567, + "t": 0.6635714285714286, + "punct": 0.8512370811149389 + }, + "ted2020-corrupted-asr": { + "u": 0.11266013564431049, + "t": 0.3634996582365004, + "punct": 0.43702820818434646 + } + }, + "ky": { + "opus100": { + "u": 0.8446631805598278, + "t": 0.8441353145747709, + "punct": 0.9031413612565444 + }, + "ted2020-corrupted-asr": { + "u": 0.31208791208791214, + "t": 0.5525525525525525, + "punct": 0.7178217821782177 + } + }, + "la": { + "ud": { + "u": 0.8916339135317238, + "t": 0.8929909042268594, + "punct": 0.9725593667546173 + }, + "ted2020-corrupted-asr": { + "u": 0.3157894736842105, + "t": 0.339622641509434, + "punct": 0.5517241379310345 + } + }, + "lt": { + "ersatz": { + "u": 0.9652892561983472, + "t": 0.9640852974186307, + "punct": 0.991671293725708 + }, + "opus100": { + "u": 0.7652019529516201, + "t": 0.8408514951849975, + "punct": 0.9005178522758244 + }, + "ud": { + "u": 0.9815261044176706, + "t": 0.9788961038961039, + "punct": 0.9959316517493897 + }, + "ted2020-corrupted-asr": { + "u": 0.3894305496679384, + "t": 0.515627774817972, + "punct": 0.6298633540372671 + } + }, + "lv": { + "ersatz": { + "u": 0.96875, + "t": 0.9716621253405993, + "punct": 0.9928532160527762 + }, + "opus100": { + "u": 0.7800546448087431, + "t": 0.8563292777633964, + "punct": 0.9146608315098468 + }, + "ud": { + "u": 0.9646788990825688, + "t": 0.9639104613978986, + "punct": 0.9903758020164986 + }, + "ted2020-corrupted-asr": { + "u": 0.23257870534135128, + "t": 0.5395127251452213, + "punct": 0.6414961540395153 + } + }, + "mg": { + "opus100": { + "u": 0.8909880010211896, + "t": 0.9145276528182058, + "punct": 0.9528481875170347 + }, + "ted2020-corrupted-asr": { + "u": 0.0588235294117647, + "t": 0.4547008547008548, + "punct": 0.5336134453781513 + } + }, + "mk": { + "opus100": { + "u": 0.9225990163085686, + "t": 0.923555325213786, + "punct": 0.9560321715817695 + }, + "ted2020-corrupted-asr": { + "u": 0.20604168579561102, + "t": 0.5029023984160556, + "punct": 0.6336494883894781 + } + }, + "ml": { + "opus100": { + "u": 0.8000998253057151, + "t": 0.8169323804288071, + "punct": 0.8649921507064364 + }, + "ted2020-corrupted-asr": { + "u": 0.3236430168733483, + "t": 0.3604873036841333, + "punct": 0.4695103634725143 + } + }, + "mn": { + "opus100": { + "u": 0.8068799034399518, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4827740826545101, + "t": 0.6677338857761665, + "punct": 0.813350615683733 + } + }, + "mr": { + "opus100": { + "u": 0.8846971307120084, + "t": 0.8860203240867892, + "punct": 0.9349079923098051 + }, + "ud": { + "u": 0.8941176470588236, + "t": 0.9195402298850575, + "punct": 0.9879518072289156 + }, + "ted2020-corrupted-asr": { + "u": 0.08236758931136866, + "t": 0.29452110062131853, + "punct": 0.41136288688933903 + } + }, + "ms": { + "opus100": { + "u": 0.8699360341151386, + "t": 0.8788946085071795, + "punct": 0.9400278940027895 + }, + "ted2020-corrupted-asr": { + "u": 0.35171828595672466, + "t": 0.4875953586768383, + "punct": 0.5882951653944022 + } + }, + "mt": { + "opus100": { + "u": 0.605994944023113, + "t": 0.8035908596300326, + "punct": 0.8844902386117138 + }, + "ud": { + "u": 0.8983050847457625, + "t": 0.8730512249443206, + "punct": 0.9357997823721437 + }, + "ted2020-corrupted-asr": { + "u": 0.256, + "t": 0.4018264840182649, + "punct": 0.4221105527638191 + } + }, + "my": { + "opus100": { + "u": 0.6888086642599278, + "t": 0.7434497816593886, + "punct": 0.8223320732771153 + }, + "ted2020-corrupted-asr": { + "u": 0.9249429700105714, + "t": 0.9268831455710184, + "punct": 0.9475465313028765 + } + }, + "ne": { + "opus100": { + "u": 0.6891994917407879, + "t": 0.6871199557766722, + "punct": 0.7433789954337899 + }, + "ted2020-corrupted-asr": { + "u": 0.44883866917765214, + "t": 0.5515806988352745, + "punct": 0.624069797279959 + } + }, + "nl": { + "opus100": { + "u": 0.9150090415913201, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9411764705882353, + "t": 0.928635953026197, + "punct": 0.9700934579439252 + }, + "ted2020-corrupted-asr": { + "u": 0.3683206106870229, + "t": 0.6145310183192232, + "punct": 0.7306773773339122 + } + }, + "no": { + "opus100": { + "u": 0.9418045915643354, + "t": 0.9427501337613697, + "punct": 0.9606299212598425 + }, + "ud": { + "u": 0.9818391467281637, + "t": 0.983653570404359, + "punct": 0.9936962750716333 + } + }, + "pa": { + "opus100": { + "u": 0.5556656755863891, + "t": 0.6218820861678005, + "punct": 0.7729220222793488 + }, + "ted2020-corrupted-asr": { + "u": 0.24217118997912315, + "t": 0.38838838838838846, + "punct": 0.48404255319148937 + } + }, + "pl": { + "ersatz": { + "u": 0.9456342668863262, + "t": 0.9277522935779816, + "punct": 0.9766146993318485 + }, + "opus100": { + "u": 0.9176717357105402, + "t": 0.9224229543039321, + "punct": 0.9564747228980804 + }, + "ud": { + "u": 0.9443781332060157, + "t": 0.9545014520813166, + "punct": 0.9932007051120625 + }, + "ted2020-corrupted-asr": { + "u": 0.3142719846227775, + "t": 0.5503909270555889, + "punct": 0.6445002709226147 + } + }, + "ps": { + "ersatz": { + "u": 0.8373493975903615, + "t": 0.9098763008050265, + "punct": 0.9589041095890412 + }, + "opus100": { + "u": 0.6327247191011236, + "t": 0.7039139527935464, + "punct": 0.761156505342552 + }, + "ted2020-corrupted-asr": { + "u": 0.31738035264483627, + "t": 0.4833005893909627, + "punct": 0.6267902274641953 + } + }, + "pt": { + "opus100": { + "u": 0.8986175115207373, + "t": 0.9144511713608845, + "punct": 0.9534127843986999 + }, + "ud": { + "u": 0.9589428975932044, + "t": 0.9557353641123274, + "punct": 0.9837631327602675 + }, + "ted2020-corrupted-asr": { + "u": 0.14130641782517614, + "t": 0.5416970998925886, + "punct": 0.6514572864321607 + }, + "legal-all-laws": { + "u": 0.6092721474990761, + "t": 0.5949443442288177, + "punct": 0.6564787460291608, + "acc_u": 0.034482758620689655, + "acc_t": 0.034482758620689655, + "acc_punct": 0.06896551724137931 + }, + "legal-all-laws-corrupted-asr": { + "u": 0.10909843164794161, + "t": 0.5089539790857548, + "punct": 0.23647063267890792, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + }, + "legal-all-judgements": { + "u": 0.7844993169189087, + "t": 0.791017227000112, + "punct": 0.7806062599089758, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.17849801566026852, + "t": 0.377247572888063, + "punct": 0.25560022273503863, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + } + }, + "ro": { + "ersatz": { + "u": 0.9754901960784313, + "t": 0.9688022284122563, + "punct": 0.9941844364441984 + }, + "opus100": { + "u": 0.8852541519879216, + "t": 0.8900709219858156, + "punct": 0.9670329670329672 + }, + "ud": { + "u": 0.8088926891834117, + "t": 0.9345206914614982, + "punct": 0.9941706412294647 + }, + "ted2020-corrupted-asr": { + "u": 0.24718918038129378, + "t": 0.48390961292188217, + "punct": 0.6343404568901989 + } + }, + "ru": { + "ersatz": { + "u": 0.9748462828395751, + "t": 0.9759910664433277, + "punct": 0.9938097917839054 + }, + "opus100": { + "u": 0.806187016639325, + "t": null, + "punct": null + }, + "ud": { + "u": 0.849078341013825, + "t": 0.867699642431466, + "punct": 0.9314033983637509 + }, + "ted2020-corrupted-asr": { + "u": 0.13077900498484996, + "t": 0.5369891778387983, + "punct": 0.6302137767220902 + } + }, + "si": { + "opus100": { + "u": 0.7949117341640706, + "t": 0.800880088008801, + "punct": 0.8538170005414185 + }, + "ted2020-corrupted-asr": { + "u": 0.2823871906841339, + "t": 0.4362017804154303, + "punct": 0.5891043397968607 + } + }, + "sk": { + "opus100": { + "u": 0.8973442288049029, + "t": 0.9241452991452991, + "punct": 0.9590771765998352 + }, + "ud": { + "u": 0.9597069597069599, + "t": 0.9580272822665269, + "punct": 0.9810526315789474 + }, + "ted2020-corrupted-asr": { + "u": 0.46823334907888525, + "t": 0.5303602922650542, + "punct": 0.6626372519391558 + } + }, + "sl": { + "opus100": { + "u": 0.9129873483088046, + "t": 0.9268805891635982, + "punct": 0.9498793889037791 + }, + "ud": { + "u": 0.9573659772055719, + "t": 0.9621993127147767, + "punct": 0.9908972691807542 + }, + "ted2020-corrupted-asr": { + "u": 0.4205365654364701, + "t": 0.5338447456740617, + "punct": 0.6754677754677754 + }, + "short-sequences": { + "u": 0.8427412610605426, + "t": 0.8371561658709106, + "punct": 0.9106845066721942, + "acc_u": 0.4831378299120235, + "acc_t": 0.4596774193548387, + "acc_punct": 0.6950146627565983 + }, + "short-sequences-corrupted-asr": { + "u": 0.6507078281363472, + "t": 0.5623896886004169, + "punct": 0.694372316751349, + "acc_u": 0.14772727272727273, + "acc_t": 0.08760997067448681, + "acc_punct": 0.2217741935483871 + } + }, + "sq": { + "opus100": { + "u": 0.8869077941925624, + "t": 0.8992974238875878, + "punct": 0.954945054945055 + }, + "ud": { + "u": 1.0, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.24713798828978414, + "t": 0.5105363118386542, + "punct": 0.6248809105951962 + } + }, + "sr": { + "opus100": { + "u": 0.9376650818806128, + "t": 0.9431455897980872, + "punct": 0.9641499185225421 + }, + "ud": { + "u": 0.978678038379531, + "t": 0.982010582010582, + "punct": 0.9978678038379531 + }, + "ted2020-corrupted-asr": { + "u": 0.3773919468045807, + "t": 0.5178666885973929, + "punct": 0.6459043946809038 + }, + "short-sequences": { + "u": 0.9111056767306769, + "t": 0.9216559193121693, + "punct": 0.9340802137677139, + "acc_u": 0.6197916666666666, + "acc_t": 0.703125, + "acc_punct": 0.7604166666666666 + }, + "short-sequences-corrupted-asr": { + "u": 0.6156475468975469, + "t": 0.5816762772258128, + "punct": 0.6604437229437229, + "acc_u": 0.06770833333333333, + "acc_t": 0.08333333333333333, + "acc_punct": 0.15625 + } + }, + "sv": { + "opus100": { + "u": 0.9039836567926456, + "t": 0.9245729303547964, + "punct": 0.9580514208389715 + }, + "ud": { + "u": 0.9472595656670114, + "t": 0.9498956158663883, + "punct": 0.9645314981471679 + }, + "ted2020-corrupted-asr": { + "u": 0.27817275476015363, + "t": 0.5213330503077903, + "punct": 0.670767004341534 + } + }, + "ta": { + "ersatz": { + "u": 0.9411146161934805, + "t": 0.9467391304347826, + "punct": 0.9780941949616648 + }, + "opus100": { + "u": 0.6427304964539008, + "t": 0.6566316387389945, + "punct": 0.7536656891495601 + }, + "ud": { + "u": 0.968609865470852, + "t": 0.9769585253456222, + "punct": 1.0 + }, + "ted2020-corrupted-asr": { + "u": 0.07294617563739378, + "t": 0.3626015131533282, + "punct": 0.4585193295712962 + } + }, + "te": { + "opus100": { + "u": 0.7744565217391303, + "t": 0.7747344885410844, + "punct": 0.8361745160358278 + }, + "ted2020-corrupted-asr": { + "u": 0.18844609206054988, + "t": 0.38749233599019006, + "punct": 0.524896265560166 + } + }, + "tg": { + "opus100": { + "u": 0.8008575512148641, + "t": 0.8265117507261684, + "punct": 0.9102737869341284 + }, + "ted2020-corrupted-asr": { + "u": 0.44836272040302266, + "t": 0.6131147540983607, + "punct": 0.7140255009107468 + } + }, + "th": { + "opus100": { + "u": 0.6657774390243902, + "t": 0.6966014418125643, + "punct": 0.7134767836919592 + }, + "ud": { + "u": 0.6734616836542092, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.4642971844556257, + "t": 0.5464475941139297, + "punct": 0.6287495130502533 + } + }, + "tr": { + "ersatz": { + "u": 0.9283933024581403, + "t": 0.9295877417001094, + "punct": 0.9830570902394108 + }, + "opus100": { + "u": 0.9284570208222104, + "t": 0.9305443818718154, + "punct": 0.9529540481400438 + }, + "ud": { + "u": 0.9587525150905433, + "t": 0.9559493670886078, + "punct": 0.9842239185750635 + }, + "ted2020-corrupted-asr": { + "u": 0.1442279732480372, + "t": 0.5718570115609732, + "punct": 0.7191987706003921 + } + }, + "uk": { + "opus100": { + "u": 0.8821138211382114, + "t": 0.8902092482562647, + "punct": 0.9427480916030534 + }, + "ud": { + "u": 0.9199755650580331, + "t": 0.9211669770328988, + "punct": 0.9857936998147004 + }, + "ted2020-corrupted-asr": { + "u": 0.4, + "t": 0.5142299698859057, + "punct": 0.6170742962621136 + } + }, + "ur": { + "opus100": { + "u": 0.5298888555121658, + "t": 0.506509719992866, + "punct": 0.6634121274409045 + }, + "ud": { + "u": 0.9171483622350676, + "t": 0.9582909460834181, + "punct": 0.9947753396029259 + }, + "ted2020-corrupted-asr": { + "u": 0.3672079622839183, + "t": 0.5002782133643583, + "punct": 0.6406816533720088 + } + }, + "uz": { + "opus100": { + "u": 0.7639639639639639, + "t": 0.7893512535538899, + "punct": 0.8498013245033113 + }, + "ted2020-corrupted-asr": { + "u": 0.30997679814385154, + "t": 0.6280217069560926, + "punct": 0.7168 + } + }, + "vi": { + "opus100": { + "u": 0.9011111111111111, + "t": 0.9029180695847362, + "punct": 0.9446453407510431 + }, + "ud": { + "u": 0.8854568854568855, + "t": 0.9368998628257887, + "punct": 0.9965397923875432 + }, + "ted2020-corrupted-asr": { + "u": 0.13228977760809393, + "t": 0.4238801147150301, + "punct": 0.5571332629761105 + } + }, + "xh": { + "opus100": { + "u": 0.7719813862356112, + "t": 0.806553911205074, + "punct": 0.8977370380979662 + } + }, + "yi": { + "opus100": { + "u": 0.7302871006874242, + "t": 0.7389199255121043, + "punct": 0.8070953436807096 + } + }, + "yo": { + "opus100": { + "u": 0.7537173806006893, + "t": null, + "punct": null + }, + "ud": { + "u": 0.8350668647845467, + "t": null, + "punct": null + } + }, + "zh": { + "ersatz": { + "u": 0.936809294417682, + "t": 0.9342281879194633, + "punct": 0.9787586206896552 + }, + "opus100": { + "u": 0.8052101835405565, + "t": 0.7655622489959839, + "punct": 0.888402625820569 + }, + "ud": { + "u": 0.9789590254706534, + "t": 0.9802197802197803, + "punct": 0.9988876529477196 + }, + "ted2020-corrupted-asr": { + "u": 0.49744771941379873, + "t": 0.5359684799186578, + "punct": 0.6396255850234009 + } + }, + "zu": { + "opus100": { + "u": 0.7267886855241265, + "t": 0.8305761551625784, + "punct": 0.9059376837154615 + } + }, + "tr-de_TR": { + "code-switching": { + "u": 0.9582504970178926, + "t": 0.9814941740918436, + "punct": 0.9972413793103448 + }, + "code-switching-corrupted-asr": { + "u": 0.21493624772313297, + "t": 0.24871982443306515, + "punct": 0.33557046979865773 + } + }, + "tr-de_DE": { + "code-switching": { + "u": 0.9513157894736841, + "t": 0.9910406616126809, + "punct": 0.9979296066252588 + }, + "code-switching-corrupted-asr": { + "u": 0.22959183673469388, + "t": 0.24540287529254426, + "punct": 0.3231132075471698 + } + }, + "es-en_ES": { + "code-switching": { + "u": 0.8658043654001617, + "t": 0.8706968933669186, + "punct": 0.9224872231686542 + }, + "code-switching-corrupted-asr": { + "u": 0.23611111111111113, + "t": 0.3887587822014052, + "punct": 0.5607166556071665 + } + }, + "es-en_EN": { + "code-switching": { + "u": 0.8819415878239407, + "t": 0.8925053533190578, + "punct": 0.9390618149934238 + }, + "code-switching-corrupted-asr": { + "u": 0.06112852664576803, + "t": 0.3884514435695538, + "punct": 0.5118853793552589 + } + }, + "vi-en_VI": { + "code-switching": { + "u": 0.2474460839954597, + "t": 0.40739580068943904, + "punct": 0.5361949799927246 + }, + "code-switching-corrupted-asr": { + "u": 0.2878385554965481, + "t": 0.4106593782029382, + "punct": 0.551347130027333 + } + }, + "vi-en_EN": { + "code-switching": { + "u": 0.02902979373567609, + "t": 0.2848699763593381, + "punct": 0.4037558685446009 + }, + "code-switching-corrupted-asr": { + "u": 0.017474185861795073, + "t": 0.3005847953216374, + "punct": 0.40963060686015834 + } + }, + "en-de_EN": { + "code-switching": { + "u": 0.6419437340153453, + "t": 0.7814784727863526, + "punct": 0.9114877589453861 + }, + "code-switching-corrupted-asr": { + "u": 0.1723834652594547, + "t": 0.22919937205651492, + "punct": 0.4085470085470086 + }, + "short-sequences": { + "u": 0.835805758043225, + "t": 0.876354298439863, + "punct": 0.955248342438942, + "acc_u": 0.3804573804573805, + "acc_t": 0.4802494802494803, + "acc_punct": 0.7775467775467776 + }, + "short-sequences-corrupted-asr": { + "u": 0.5092261604579933, + "t": 0.4549430855668756, + "punct": 0.5384103087657688, + "acc_u": 0.056133056133056136, + "acc_t": 0.02494802494802495, + "acc_punct": 0.037422037422037424 + } + }, + "en-de_DE": { + "code-switching": { + "u": 0.6215384615384615, + "t": 0.7629204265791633, + "punct": 0.9111318989710009 + }, + "code-switching-corrupted-asr": { + "u": 0.26346153846153847, + "t": 0.31598687294889827, + "punct": 0.5101543460601138 + }, + "short-sequences": { + "u": 0.8240494370936863, + "t": 0.866978321928456, + "punct": 0.9637543262154761, + "acc_u": 0.3367983367983368, + "acc_t": 0.4677754677754678, + "acc_punct": 0.7983367983367984 + }, + "short-sequences-corrupted-asr": { + "u": 0.5422293963073002, + "t": 0.5120771273179162, + "punct": 0.6499543539461914, + "acc_u": 0.07484407484407485, + "acc_t": 0.0395010395010395, + "acc_punct": 0.11850311850311851 + } + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/wtp-6l.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/wtp-6l.json new file mode 100644 index 0000000000000000000000000000000000000000..1cd4b0e2c7ef656f6f3f3a8b2854f0fb9b37c559 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/main/wtp-6l.json @@ -0,0 +1,1709 @@ +{ + "af": { + "opus100": { + "u": 0.711309523809524, + "t": 0.7645429362880886, + "punct": 0.8830950378469302 + }, + "ud": { + "u": 0.9883570504527813, + "t": 0.9960886571056062, + "punct": 0.9986928104575163 + }, + "ted2020-corrupted-asr": { + "u": 0.5046728971962616, + "t": 0.5440874914559125, + "punct": 0.6685592618878637 + } + }, + "am": { + "opus100": { + "u": 0.6001113379105585, + "t": 0.6414473684210528, + "punct": 0.7105777281607591 + }, + "ted2020-corrupted-asr": { + "u": 0.5269016697588126, + "t": 0.5274542429284527, + "punct": 0.5842696629213483 + } + }, + "ar": { + "ersatz": { + "u": 0.8737177219667491, + "t": 0.8811769143719351, + "punct": 0.923076923076923 + }, + "opus100": { + "u": 0.6697099892588615, + "t": 0.6659903626680194, + "punct": 0.7737384698860553 + }, + "ud": { + "u": 0.8241834607366226, + "t": 0.8607975921745674, + "punct": 0.8885496183206105 + }, + "ted2020-corrupted-asr": { + "u": 0.35469819539514624, + "t": 0.4553137208004465, + "punct": 0.6127286027798098 + } + }, + "az": { + "opus100": { + "u": 0.7529307675293077, + "t": 0.7505112474437626, + "punct": 0.8312179314069673 + }, + "ted2020-corrupted-asr": { + "u": 0.2751463544438531, + "t": 0.6265875207067918, + "punct": 0.7381818181818182 + } + }, + "be": { + "opus100": { + "u": 0.7089368679967206, + "t": 0.7299760191846523, + "punct": 0.8869422392554065 + }, + "ud": { + "u": 0.8929273084479371, + "t": 0.8953771289537712, + "punct": 0.9302809573361083 + }, + "ted2020-corrupted-asr": { + "u": 0.5171017489446024, + "t": 0.5396400416480737, + "punct": 0.6659006975789905 + } + }, + "bg": { + "opus100": { + "u": 0.9317460317460318, + "t": 0.9221932114882506, + "punct": 0.961299052774019 + }, + "ud": { + "u": 0.9825957235206365, + "t": 0.9816194734227521, + "punct": 0.996512207274539 + }, + "ted2020-corrupted-asr": { + "u": 0.39568073699312845, + "t": 0.5535714285714285, + "punct": 0.6908103677901855 + } + }, + "bn": { + "opus100": { + "u": 0.7879512311737987, + "t": 0.8249006622516557, + "punct": 0.871931696905016 + }, + "ud": { + "u": 1.0, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.03602927378495027, + "t": 0.18398033274255332, + "punct": 0.310048813331089 + } + }, + "ca": { + "opus100": { + "u": 0.8877419354838709, + "t": 0.8961548522103061, + "punct": 0.94379581862612 + }, + "ud": { + "u": 0.9821215733015495, + "t": 0.9829392397485782, + "punct": 0.9987959060806743 + }, + "ted2020-corrupted-asr": { + "u": 0.11696252465483233, + "t": 0.5152600906540039, + "punct": 0.6597597159394912 + } + }, + "ceb": { + "ud": { + "u": 0.9970501474926253, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.3617021276595745, + "t": 0.14545454545454545, + "punct": 0.42352941176470593 + } + }, + "cs": { + "ersatz": { + "u": 0.9350132625994695, + "t": 0.9458319818358741, + "punct": 0.9935608499678042 + }, + "opus100": { + "u": 0.8822932521562659, + "t": 0.9002610966057442, + "punct": 0.948431105047749 + }, + "ud": { + "u": 0.9212255037261936, + "t": 0.920561006707689, + "punct": 0.9646159809513262 + }, + "ted2020-corrupted-asr": { + "u": 0.42366173713809624, + "t": 0.5414975694599296, + "punct": 0.6841606385632327 + } + }, + "cy": { + "opus100": { + "u": 0.6646686646686647, + "t": 0.7358490566037736, + "punct": 0.8226002430133658 + }, + "ud": { + "u": 0.9924109748978401, + "t": 0.9929824561403509, + "punct": 0.9964953271028038 + } + }, + "da": { + "opus100": { + "u": 0.8909183155758499, + "t": 0.8996397323726196, + "punct": 0.9473684210526316 + }, + "ud": { + "u": 0.953757225433526, + "t": 0.9453125, + "punct": 0.9910979228486647 + }, + "ted2020-corrupted-asr": { + "u": 0.2714932126696833, + "t": 0.569726956203042, + "punct": 0.685559655596556 + } + }, + "de": { + "ersatz": { + "u": 0.9615812917594655, + "t": 0.9644670050761422, + "punct": 0.9934751773049646 + }, + "opus100": { + "u": 0.7824436536180308, + "t": 0.8447957839262186, + "punct": 0.8964346349745331 + }, + "ud": { + "u": 0.9632975719932242, + "t": 0.9604584527220632, + "punct": 0.970262390670554 + }, + "ted2020-corrupted-asr": { + "u": 0.5034651178140057, + "t": 0.6089228493961054, + "punct": 0.7257167774991824 + }, + "legal-all-laws": { + "u": 0.8481540293703427, + "t": 0.8616903971756321, + "punct": 0.9440566925017841, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + }, + "legal-all-laws-corrupted-asr": { + "u": 0.33779451495304996, + "t": 0.4670704718532101, + "punct": 0.8016587837358525, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + }, + "legal-all-judgements": { + "u": 0.7955678668694751, + "t": 0.7946535385228222, + "punct": 0.8744744206066846, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.3067347192597121, + "t": 0.3628951276032455, + "punct": 0.6757666361995703, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + } + }, + "el": { + "opus100": { + "u": 0.9123992721601248, + "t": 0.9242544206914753, + "punct": 0.962942779291553 + }, + "ud": { + "u": 0.9767441860465117, + "t": 0.9778869778869779, + "punct": 0.9803921568627451 + }, + "ted2020-corrupted-asr": { + "u": 0.2544103992571959, + "t": 0.5259586019681031, + "punct": 0.668804397617957 + } + }, + "en": { + "ersatz": { + "u": 0.9667493796526054, + "t": 0.9676913201626132, + "punct": 0.987168396770473 + }, + "opus100": { + "u": 0.9078129224114625, + "t": 0.8882565959648214, + "punct": 0.9478827361563518 + }, + "ud": { + "u": 0.9481108312342569, + "t": 0.9437404967055245, + "punct": 0.970468431771894 + }, + "ted2020-corrupted-asr": { + "u": 0.1054876866395191, + "t": 0.4919734068428734, + "punct": 0.6715205547300643 + }, + "legal-all-judgements": { + "u": 0.8762257718098219, + "t": 0.8806371223858823, + "punct": 0.958561932136974, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0625 + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.1475223811916368, + "t": 0.38348941394265557, + "punct": 0.6641052402331227, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + } + }, + "eo": { + "opus100": { + "u": 0.9147034930950446, + "t": 0.9057798891528107, + "punct": 0.9532100108813928 + }, + "ted2020-corrupted-asr": { + "u": 0.4531123686337914, + "t": 0.5476442562202224, + "punct": 0.666501976284585 + } + }, + "es": { + "ersatz": { + "u": 0.9880434782608696, + "t": null, + "punct": null + }, + "opus100": { + "u": 0.9094703887294547, + "t": 0.9121426698137949, + "punct": 0.9523809523809524 + }, + "ud": { + "u": 0.9609571788413098, + "t": 0.964720974983964, + "punct": 0.998708844415752 + }, + "ted2020-corrupted-asr": { + "u": 0.14056560037088547, + "t": 0.5043222828367604, + "punct": 0.6699308464994195 + }, + "legal-all-laws": { + "u": 0.8333661196096055, + "t": 0.8677228822689914, + "punct": 0.9433041820269192, + "acc_u": 0.19672131147540983, + "acc_t": 0.19672131147540983, + "acc_punct": 0.5519125683060109 + }, + "legal-all-laws-corrupted-asr": { + "u": 0.10439153697872852, + "t": 0.6715620520442389, + "punct": 0.8013739595122547, + "acc_u": 0.0, + "acc_t": 0.01639344262295082, + "acc_punct": 0.06557377049180328 + }, + "legal-all-judgements": { + "u": 0.7742318828202881, + "t": 0.7667646516660812, + "punct": 0.8886755109644483, + "acc_u": 0.02564102564102564, + "acc_t": 0.0, + "acc_punct": 0.07692307692307693 + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.24509069887558319, + "t": 0.4305597293184372, + "punct": 0.6278771674514017, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + } + }, + "et": { + "ersatz": { + "u": 0.9627397260273972, + "t": 0.9584379358437936, + "punct": 0.9961559582646897 + }, + "opus100": { + "u": 0.835784904750422, + "t": 0.8894709271870089, + "punct": 0.9545205479452054 + }, + "ud": { + "u": 0.9285958319098052, + "t": 0.9303201506591338, + "punct": 0.9786421253689876 + }, + "ted2020-corrupted-asr": { + "u": 0.5498692566305566, + "t": 0.5927849655302673, + "punct": 0.7120186203977995 + }, + "short-sequences": { + "u": 0.8934364447713962, + "t": 0.8925274490642271, + "punct": 0.9116317070060731, + "acc_u": 0.46798029556650245, + "acc_t": 0.4630541871921182, + "acc_punct": 0.5073891625615764 + }, + "short-sequences-corrupted-asr": { + "u": 0.5695478366244053, + "t": 0.6100742399885803, + "punct": 0.6975987220585911, + "acc_u": 0.024630541871921183, + "acc_t": 0.054187192118226604, + "acc_punct": 0.07881773399014778 + } + }, + "eu": { + "opus100": { + "u": 0.8501118568232662, + "t": 0.8715170278637772, + "punct": 0.9224511930585683 + }, + "ud": { + "u": 0.9667378700030517, + "t": 0.9690018598884067, + "punct": 0.9984544049459041 + }, + "ted2020-corrupted-asr": { + "u": 0.22740176303600776, + "t": 0.46948216684077004, + "punct": 0.635909795145464 + } + }, + "fa": { + "opus100": { + "u": 0.6203423967774421, + "t": 0.6102622576966933, + "punct": 0.7446864340068223 + }, + "ud": { + "u": 0.9656446250461765, + "t": 0.9752808988764045, + "punct": 1.0 + }, + "ted2020-corrupted-asr": { + "u": 0.2829972126578127, + "t": 0.5029397354238119, + "punct": 0.699369164774161 + } + }, + "fi": { + "ersatz": { + "u": 0.9783333333333333, + "t": 0.976473844450595, + "punct": 0.995834490419328 + }, + "opus100": { + "u": 0.9135738385673501, + "t": 0.9236056040179752, + "punct": 0.9598480737927293 + }, + "ud": { + "u": 0.9250431778929188, + "t": 0.9263607257203843, + "punct": 0.9821173104434907 + }, + "ted2020-corrupted-asr": { + "u": 0.4586132437619962, + "t": 0.5223415310010391, + "punct": 0.6644655385885265 + } + }, + "fr": { + "ersatz": { + "u": 0.971654581410679, + "t": 0.9662845583277141, + "punct": 0.9882273797510932 + }, + "opus100": { + "u": 0.8638964916645931, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9660574412532638, + "t": 0.9724047306176085, + "punct": 0.9838709677419355 + }, + "ted2020-corrupted-asr": { + "u": 0.2015596880623875, + "t": 0.5595512203290492, + "punct": 0.6836428999400839 + }, + "legal-all-laws": { + "u": 0.6151101886054444, + "t": 0.689073793401892, + "punct": 0.9904674188188591, + "acc_u": 0.28104575163398693, + "acc_t": 0.3638344226579521, + "acc_punct": 0.9106753812636166 + }, + "legal-all-laws-corrupted-asr": { + "u": 0.07007024230610369, + "t": 0.6782315685096814, + "punct": 0.8223250161541842, + "acc_u": 0.006535947712418301, + "acc_t": 0.22875816993464052, + "acc_punct": 0.4139433551198257 + }, + "legal-all-judgements": { + "u": 0.8325777643108662, + "t": 0.8454139920767355, + "punct": 0.9642229522879103, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.4444444444444444 + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.21629220166629726, + "t": 0.36793955206382434, + "punct": 0.5875422860244666, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + } + }, + "fy": { + "opus100": { + "u": 0.4985096870342773, + "t": 0.6568881219442048, + "punct": 0.8821270310192024 + } + }, + "ga": { + "opus100": { + "u": 0.8102862688015525, + "t": 0.8091085271317829, + "punct": 0.8899233296823658 + }, + "ud": { + "u": 0.8544303797468354, + "t": 0.9038031319910514, + "punct": 0.9793939393939394 + }, + "ted2020-corrupted-asr": { + "u": 0.18518518518518517, + "t": 0.3924050632911392, + "punct": 0.45714285714285713 + } + }, + "gd": { + "opus100": { + "u": 0.8098933074684773, + "t": 0.8241115609536662, + "punct": 0.9312820512820512 + }, + "ud": { + "u": 0.6964705882352942, + "t": 0.7140039447731755, + "punct": 0.8016112789526687 + } + }, + "gl": { + "opus100": { + "u": 0.8918495297805643, + "t": 0.890161374284227, + "punct": 0.9370249728555917 + }, + "ud": { + "u": 0.9902642559109874, + "t": 0.9902097902097902, + "punct": 0.9766803840877916 + }, + "ted2020-corrupted-asr": { + "u": 0.20141535111594996, + "t": 0.5132491552552019, + "punct": 0.6614069021683803 + } + }, + "gu": { + "ersatz": { + "u": 0.9045861887190301, + "t": 0.8982683982683982, + "punct": 0.9730621220450798 + }, + "opus100": { + "u": 0.7094455852156057, + "t": 0.7083780880773362, + "punct": 0.7862660944206009 + }, + "ted2020-corrupted-asr": { + "u": 0.2404649473301853, + "t": 0.3432937512166634, + "punct": 0.4632978423750775 + } + }, + "ha": { + "opus100": { + "u": 0.8425881216803477, + "t": 0.887161618868936, + "punct": 0.9167331737164139 + }, + "ted2020-corrupted-asr": { + "u": 0.15384615384615385, + "t": 0.27906976744186046, + "punct": 0.09523809523809525 + } + }, + "he": { + "opus100": { + "u": 0.904224612962477, + "t": 0.8988648090815274, + "punct": 0.9421168687982359 + }, + "ud": { + "u": 0.9654218533886583, + "t": 0.965034965034965, + "punct": 0.982905982905983 + }, + "ted2020-corrupted-asr": { + "u": 0.2804878048780488, + "t": 0.5019910298864064, + "punct": 0.653698034956058 + } + }, + "hi": { + "ersatz": { + "u": 0.9502572898799314, + "t": 0.9515881708652794, + "punct": 0.9706811005863779 + }, + "opus100": { + "u": 0.6615988229524278, + "t": 0.6437886067261496, + "punct": 0.7543147208121828 + }, + "ud": { + "u": 0.9722222222222222, + "t": 0.9728331177231565, + "punct": 0.9993399339933994 + }, + "ted2020-corrupted-asr": { + "u": 0.010306025870228205, + "t": 0.3991866353016228, + "punct": 0.5306379068530251 + } + }, + "hu": { + "opus100": { + "u": 0.9220338983050848, + "t": 0.9345348529021998, + "punct": 0.9634047167253997 + }, + "ud": { + "u": 0.9641532756489494, + "t": 0.9642416769420469, + "punct": 0.9876237623762376 + }, + "ted2020-corrupted-asr": { + "u": 0.11842232774493652, + "t": 0.509, + "punct": 0.6437759546237213 + } + }, + "hy": { + "opus100": { + "u": 0.8547231270358305, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9699179580674567, + "t": 0.9779411764705883, + "punct": 0.9786046511627907 + }, + "ted2020-corrupted-asr": { + "u": 0.46400904721515407, + "t": 0.5123762376237624, + "punct": 0.6484052184409675 + } + }, + "id": { + "opus100": { + "u": 0.8936400541271989, + "t": 0.8961569910057237, + "punct": 0.9422811378072355 + }, + "ud": { + "u": 0.9829389102916897, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.19779404949485588, + "t": 0.5213920419109392, + "punct": 0.621318995708578 + } + }, + "ig": { + "opus100": { + "u": 0.7842465753424658, + "t": 0.8151719704275152, + "punct": 0.9004329004329006 + }, + "ted2020-corrupted-asr": { + "u": 0.398576512455516, + "t": 0.2926829268292683, + "punct": 0.29166666666666663 + } + }, + "is": { + "opus100": { + "u": 0.9420641336566964, + "t": 0.9456021650879568, + "punct": 0.9650311737598264 + }, + "ud": { + "u": 0.8760571595217265, + "t": 0.897634625062909, + "punct": 0.9594337629410522 + }, + "ted2020-corrupted-asr": { + "u": 0.4857389801210026, + "t": 0.5485475006542789, + "punct": 0.6520861372812922 + } + }, + "it": { + "opus100": { + "u": 0.857352222765022, + "t": 0.8944516129032257, + "punct": 0.9437718590260963 + }, + "ud": { + "u": 0.9433551198257082, + "t": 0.9362162162162162, + "punct": 0.994246260069045 + }, + "ted2020-corrupted-asr": { + "u": 0.43333333333333335, + "t": 0.5288540629464479, + "punct": 0.6598586777659471 + }, + "legal-all-laws": { + "u": 0.8553351478675448, + "t": 0.8190894336641108, + "punct": 0.9626046607791064, + "acc_u": 0.4900568181818182, + "acc_t": 0.5795454545454546, + "acc_punct": 0.859375 + }, + "legal-all-laws-corrupted-asr": { + "u": 0.20577865012693494, + "t": 0.3880757409969846, + "punct": 0.6277444979681364, + "acc_u": 0.015625, + "acc_t": 0.017045454545454544, + "acc_punct": 0.234375 + }, + "legal-all-judgements": { + "u": 0.841631447437136, + "t": 0.8439164797411275, + "punct": 0.9406460793924467, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.1836734693877551 + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.2492574643310648, + "t": 0.33898722977170187, + "punct": 0.5101679277719543, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + } + }, + "ja": { + "ersatz": { + "u": 0.8322274881516588, + "t": 0.8310220852593734, + "punct": 0.9517241379310345 + }, + "opus100": { + "u": 0.5189924030387845, + "t": 0.7969449565446406, + "punct": 0.8749651907546644 + }, + "ud": { + "u": 0.954864593781344, + "t": 0.9701952723535456, + "punct": 0.9823834196891191 + }, + "ted2020-corrupted-asr": { + "u": 0.7709577890107003, + "t": 0.8754658212358862, + "punct": 0.946451649154352 + } + }, + "jv": { + "ud": { + "u": 0.9785596481583289, + "t": null, + "punct": null + } + }, + "ka": { + "opus100": { + "u": 0.9127875869448904, + "t": 0.9170494460956499, + "punct": 0.9303468997541655 + }, + "ted2020-corrupted-asr": { + "u": 0.33375046006624953, + "t": 0.5041441301217946, + "punct": 0.649591542527631 + } + }, + "kk": { + "ersatz": { + "u": 0.9608062709966405, + "t": 0.9601347557551937, + "punct": 0.9938718662952647 + }, + "opus100": { + "u": 0.6732171156893819, + "t": 0.7208894090111176, + "punct": 0.9150513112884834 + }, + "ud": { + "u": 0.9696323921150773, + "t": 0.9032627361190613, + "punct": 0.9278466741826381 + }, + "ted2020-corrupted-asr": { + "u": 0.5762032085561497, + "t": 0.6753057422855754, + "punct": 0.7587278376896364 + } + }, + "km": { + "ersatz": { + "u": 0.7593090211132438, + "t": 0.9193508114856429, + "punct": 0.9172970247100354 + }, + "opus100": { + "u": 0.7048799380325329, + "t": 0.6950113378684807, + "punct": 0.7902097902097901 + }, + "ted2020-corrupted-asr": { + "u": 0.4942528735632185, + "t": 0.641904761904762, + "punct": 0.722457627118644 + } + }, + "kn": { + "opus100": { + "u": 0.7003405221339387, + "t": 0.6695869837296621, + "punct": 0.7817258883248731 + }, + "ted2020-corrupted-asr": { + "u": 0.28916827852998067, + "t": 0.2999656002751978, + "punct": 0.3940795559666975 + } + }, + "ko": { + "opus100": { + "u": 0.5275938189845475, + "t": 0.7095128793675083, + "punct": 0.8076033907012586 + }, + "ud": { + "u": 0.9941972920696326, + "t": 0.9951597289448209, + "punct": 0.9992709599027946 + }, + "ted2020-corrupted-asr": { + "u": 0.6100285171102662, + "t": 0.7244737668865849, + "punct": 0.7858355566335193 + } + }, + "ku": { + "opus100": { + "u": 0.7835912552198477, + "t": 0.6943291839557398, + "punct": 0.8697788697788698 + }, + "ted2020-corrupted-asr": { + "u": 0.25747833379927315, + "t": 0.359977364363019, + "punct": 0.45414806975567107 + } + }, + "ky": { + "opus100": { + "u": 0.8235662801629584, + "t": 0.8202354438434617, + "punct": 0.9137022397891964 + }, + "ted2020-corrupted-asr": { + "u": 0.49650349650349657, + "t": 0.6233766233766234, + "punct": 0.7078947368421052 + } + }, + "la": { + "ud": { + "u": 0.8925714285714286, + "t": 0.9174498348996698, + "punct": 0.9732733527388198 + }, + "ted2020-corrupted-asr": { + "u": 0.15384615384615383, + "t": 0.26865671641791045, + "punct": 0.18181818181818182 + } + }, + "lt": { + "ersatz": { + "u": 0.971776425013835, + "t": 0.96578799775659, + "punct": 0.9905292479108635 + }, + "opus100": { + "u": 0.780189959294437, + "t": 0.8374999999999999, + "punct": 0.9123098201936377 + }, + "ud": { + "u": 0.9831053901850363, + "t": 0.9822866344605475, + "punct": 0.998371335504886 + }, + "ted2020-corrupted-asr": { + "u": 0.43942694923087083, + "t": 0.5307322730284957, + "punct": 0.6560718771133224 + } + }, + "lv": { + "ersatz": { + "u": 0.9703663793103448, + "t": 0.9725020419275796, + "punct": 0.9961496149614962 + }, + "opus100": { + "u": 0.7830639653994991, + "t": 0.8658823529411765, + "punct": 0.923202614379085 + }, + "ud": { + "u": 0.9671943106217022, + "t": 0.9692272623660817, + "punct": 0.991963260619977 + }, + "ted2020-corrupted-asr": { + "u": 0.467068976704951, + "t": 0.5565757875406131, + "punct": 0.6729499521193487 + } + }, + "mg": { + "opus100": { + "u": 0.9048976418761336, + "t": 0.9186754966887417, + "punct": 0.9611248966087677 + }, + "ted2020-corrupted-asr": { + "u": 0.0761904761904762, + "t": 0.4716417910447761, + "punct": 0.5833333333333334 + } + }, + "mk": { + "opus100": { + "u": 0.9245969838793551, + "t": 0.9262444618191296, + "punct": 0.9580193756727663 + }, + "ted2020-corrupted-asr": { + "u": 0.20821359043292856, + "t": 0.5386527025827639, + "punct": 0.6697060210658701 + } + }, + "ml": { + "opus100": { + "u": 0.7981859410430839, + "t": 0.798394034987095, + "punct": 0.8708565367276585 + }, + "ted2020-corrupted-asr": { + "u": 0.2952045754509459, + "t": 0.35843933114191795, + "punct": 0.4712310056342838 + } + }, + "mn": { + "opus100": { + "u": 0.7723640921196929, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.5283214709371292, + "t": 0.7422816743807538, + "punct": 0.8396247487156578 + } + }, + "mr": { + "opus100": { + "u": 0.9025251153950584, + "t": 0.9067471201316512, + "punct": 0.9273561976775588 + }, + "ud": { + "u": 0.8837209302325582, + "t": 0.9111111111111111, + "punct": 1.0 + }, + "ted2020-corrupted-asr": { + "u": 0.11707585196042505, + "t": 0.31434820647419076, + "punct": 0.41752224503764546 + } + }, + "ms": { + "opus100": { + "u": 0.8747300215982723, + "t": 0.8796068796068797, + "punct": 0.9362286970863113 + }, + "ted2020-corrupted-asr": { + "u": 0.510618141627852, + "t": 0.5217213950642464, + "punct": 0.6338497176777182 + } + }, + "mt": { + "opus100": { + "u": 0.6104012956631275, + "t": 0.8176736758051637, + "punct": 0.8906334596643206 + }, + "ud": { + "u": 0.8989473684210526, + "t": 0.8898488120950325, + "punct": 0.9577464788732396 + }, + "ted2020-corrupted-asr": { + "u": 0.09999999999999999, + "t": 0.42914979757085014, + "punct": 0.47058823529411764 + } + }, + "my": { + "opus100": { + "u": 0.6836518046709129, + "t": 0.7633461750137589, + "punct": 0.8305978898007034 + }, + "ted2020-corrupted-asr": { + "u": 0.9085672332975661, + "t": 0.9168209036472509, + "punct": 0.9538891997761612 + } + }, + "ne": { + "opus100": { + "u": 0.7015921931176169, + "t": 0.6907857546636519, + "punct": 0.7321002386634845 + }, + "ted2020-corrupted-asr": { + "u": 0.45769933049300066, + "t": 0.532342306147047, + "punct": 0.6484061393152303 + } + }, + "nl": { + "opus100": { + "u": 0.9198751300728408, + "t": null, + "punct": null + }, + "ud": { + "u": 0.9351851851851852, + "t": 0.929090909090909, + "punct": 0.9574074074074074 + }, + "ted2020-corrupted-asr": { + "u": 0.47125380100417225, + "t": 0.6434855859228753, + "punct": 0.763900256452229 + } + }, + "no": { + "opus100": { + "u": 0.9445486204125368, + "t": 0.9468313641245971, + "punct": 0.9641304347826086 + }, + "ud": { + "u": 0.9797219003476245, + "t": 0.9856897538637664, + "punct": 0.9931271477663232 + } + }, + "pa": { + "opus100": { + "u": 0.5881188118811881, + "t": 0.6358042777615002, + "punct": 0.7651006711409395 + }, + "ted2020-corrupted-asr": { + "u": 0.09375, + "t": 0.398849472674976, + "punct": 0.5184243964421855 + } + }, + "pl": { + "ersatz": { + "u": 0.9484193011647254, + "t": 0.9356125356125357, + "punct": 0.9494079655543596 + }, + "opus100": { + "u": 0.9216978644872132, + "t": 0.929125434608184, + "punct": 0.9571351058057516 + }, + "ud": { + "u": 0.9493640508759299, + "t": 0.9524728588661039, + "punct": 0.9939637826961771 + }, + "ted2020-corrupted-asr": { + "u": 0.2987366856576666, + "t": 0.580378565715809, + "punct": 0.6912273761250124 + } + }, + "ps": { + "ersatz": { + "u": 0.8334212840809145, + "t": 0.9122600861731296, + "punct": 0.9698471705906649 + }, + "opus100": { + "u": 0.4366505918456817, + "t": 0.6713153724247226, + "punct": 0.7651467832604621 + }, + "ted2020-corrupted-asr": { + "u": 0.3403205918618989, + "t": 0.4737889847378899, + "punct": 0.6449814126394051 + } + }, + "pt": { + "opus100": { + "u": 0.9007476153647848, + "t": 0.9166666666666667, + "punct": 0.9543859649122808 + }, + "ud": { + "u": 0.9620132953466287, + "t": 0.9625769777356703, + "punct": 0.9809160305343512 + }, + "ted2020-corrupted-asr": { + "u": 0.1035872235872236, + "t": 0.5586870306303267, + "punct": 0.6948844455985458 + }, + "legal-all-laws": { + "u": 0.5712158725706091, + "t": 0.5712158725706091, + "punct": 0.6336124211385095, + "acc_u": 0.034482758620689655, + "acc_t": 0.034482758620689655, + "acc_punct": 0.0 + }, + "legal-all-laws-corrupted-asr": { + "u": 0.06716379095946634, + "t": 0.4976849104242222, + "punct": 0.3858050214448053, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + }, + "legal-all-judgements": { + "u": 0.7980141306454269, + "t": 0.7975908696958501, + "punct": 0.7883600282238804, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + }, + "legal-all-judgements-corrupted-asr": { + "u": 0.10894552779957145, + "t": 0.39820489221073496, + "punct": 0.19290093639231196, + "acc_u": 0.0, + "acc_t": 0.0, + "acc_punct": 0.0 + } + }, + "ro": { + "ersatz": { + "u": 0.9775219298245613, + "t": 0.9671809256661992, + "punct": 0.9941844364441984 + }, + "opus100": { + "u": 0.8922216573462125, + "t": 0.8947368421052632, + "punct": 0.9681318681318682 + }, + "ud": { + "u": 0.8013553578991953, + "t": 0.898330804248862, + "punct": 0.9952254641909813 + }, + "ted2020-corrupted-asr": { + "u": 0.3553284455306228, + "t": 0.527240625525475, + "punct": 0.6702008359669691 + } + }, + "ru": { + "ersatz": { + "u": 0.9791314156796389, + "t": 0.9815126050420168, + "punct": 0.9949409780775715 + }, + "opus100": { + "u": 0.81915654038599, + "t": null, + "punct": null + }, + "ud": { + "u": 0.8553386911595866, + "t": 0.8710059171597633, + "punct": 0.933083176985616 + }, + "ted2020-corrupted-asr": { + "u": 0.2738208567719602, + "t": 0.5700807402703438, + "punct": 0.665567216391804 + } + }, + "si": { + "opus100": { + "u": 0.7989333333333333, + "t": 0.8027586206896551, + "punct": 0.8632502055357631 + }, + "ted2020-corrupted-asr": { + "u": 0.33921302578018997, + "t": 0.4184008762322015, + "punct": 0.593453009503696 + } + }, + "sk": { + "opus100": { + "u": 0.9085271317829458, + "t": 0.9279399946423788, + "punct": 0.9565217391304348 + }, + "ud": { + "u": 0.9602094240837697, + "t": 0.9566137566137566, + "punct": 0.986344537815126 + }, + "ted2020-corrupted-asr": { + "u": 0.48225806451612907, + "t": 0.5522280276963595, + "punct": 0.6943971960208237 + } + }, + "sl": { + "opus100": { + "u": 0.918834547346514, + "t": 0.9282321899736148, + "punct": 0.9530201342281879 + }, + "ud": { + "u": 0.9606837606837608, + "t": 0.9618189618189619, + "punct": 0.995227765726681 + }, + "ted2020-corrupted-asr": { + "u": 0.3894887865287322, + "t": 0.5667157864714552, + "punct": 0.7123142250530785 + }, + "short-sequences": { + "u": 0.8213697233707583, + "t": 0.8057043135596696, + "punct": 0.9162956748367306, + "acc_u": 0.42265395894428154, + "acc_t": 0.374266862170088, + "acc_punct": 0.7049120234604106 + }, + "short-sequences-corrupted-asr": { + "u": 0.6223860013715589, + "t": 0.5667051724020982, + "punct": 0.7019311272793678, + "acc_u": 0.11290322580645161, + "acc_t": 0.0747800586510264, + "acc_punct": 0.24266862170087977 + } + }, + "sq": { + "opus100": { + "u": 0.8943425471454405, + "t": 0.9105951427808914, + "punct": 0.9574700109051255 + }, + "ud": { + "u": 1.0, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.20776841333821913, + "t": 0.5315728015808857, + "punct": 0.6600367957834021 + } + }, + "sr": { + "opus100": { + "u": 0.9414259210177577, + "t": 0.9451836083022885, + "punct": 0.9622795115332429 + }, + "ud": { + "u": 0.9870689655172414, + "t": 0.9914893617021276, + "punct": 1.0 + }, + "ted2020-corrupted-asr": { + "u": 0.45393911378194546, + "t": 0.5387238998419434, + "punct": 0.6857058592213922 + }, + "short-sequences": { + "u": 0.9016602032227032, + "t": 0.9036443302068302, + "punct": 0.9440504518629519, + "acc_u": 0.6197916666666666, + "acc_t": 0.6197916666666666, + "acc_punct": 0.7864583333333334 + }, + "short-sequences-corrupted-asr": { + "u": 0.596129658399879, + "t": 0.5742039378141351, + "punct": 0.6549291275853776, + "acc_u": 0.08333333333333333, + "acc_t": 0.07291666666666667, + "acc_punct": 0.14583333333333334 + } + }, + "sv": { + "opus100": { + "u": 0.9130322580645162, + "t": 0.9279112754158965, + "punct": 0.9570154095701541 + }, + "ud": { + "u": 0.9531737773152966, + "t": 0.9570230607966458, + "punct": 0.9611081513052745 + }, + "ted2020-corrupted-asr": { + "u": 0.39225539462015957, + "t": 0.5539619092405361, + "punct": 0.7030576862456657 + } + }, + "ta": { + "ersatz": { + "u": 0.9446494464944649, + "t": 0.950711938663746, + "punct": 0.9834801762114537 + }, + "opus100": { + "u": 0.6666666666666666, + "t": 0.6745939675174014, + "punct": 0.7488235294117648 + }, + "ud": { + "u": 0.972972972972973, + "t": 0.972972972972973, + "punct": 1.0 + }, + "ted2020-corrupted-asr": { + "u": 0.29433189164580015, + "t": 0.3391438092796719, + "punct": 0.4521066208082546 + } + }, + "te": { + "opus100": { + "u": 0.7750924083025307, + "t": 0.7740303541315345, + "punct": 0.8430858806404657 + }, + "ted2020-corrupted-asr": { + "u": 0.2707676130389064, + "t": 0.38472499287546313, + "punct": 0.5271426077849538 + } + }, + "tg": { + "opus100": { + "u": 0.8034310221586848, + "t": 0.8318632855567807, + "punct": 0.905982905982906 + }, + "ted2020-corrupted-asr": { + "u": 0.5426695842450766, + "t": 0.6146788990825688, + "punct": 0.7262357414448669 + } + }, + "th": { + "opus100": { + "u": 0.6701208981001727, + "t": 0.7041711229946525, + "punct": 0.7174515235457065 + }, + "ud": { + "u": 0.6877165960723912, + "t": null, + "punct": null + }, + "ted2020-corrupted-asr": { + "u": 0.46463398253861643, + "t": 0.5600166944908179, + "punct": 0.6475417482974158 + } + }, + "tr": { + "ersatz": { + "u": 0.9400393771254699, + "t": 0.9390706924606762, + "punct": 0.9842027920646583 + }, + "opus100": { + "u": 0.9307568438003221, + "t": 0.9312197743148846, + "punct": 0.9539634976845546 + }, + "ud": { + "u": 0.9598796389167503, + "t": 0.9593577521324635, + "punct": 0.9852866565195332 + }, + "ted2020-corrupted-asr": { + "u": 0.10841683366733465, + "t": 0.5902327355971004, + "punct": 0.7356178608515056 + } + }, + "uk": { + "opus100": { + "u": 0.8874647526275313, + "t": 0.8898632963631674, + "punct": 0.941744966442953 + }, + "ud": { + "u": 0.9243076923076923, + "t": 0.9243076923076923, + "punct": 0.981549815498155 + }, + "ted2020-corrupted-asr": { + "u": 0.49236894492368943, + "t": 0.5412828386216308, + "punct": 0.6627970978233675 + } + }, + "ur": { + "opus100": { + "u": 0.5366715758468336, + "t": 0.5084395452979676, + "punct": 0.6813585688358827 + }, + "ud": { + "u": 0.9443339960238569, + "t": 0.9692622950819672, + "punct": 0.9927007299270073 + }, + "ted2020-corrupted-asr": { + "u": 0.39553241518307014, + "t": 0.5146301156799845, + "punct": 0.6585528307599152 + } + }, + "uz": { + "opus100": { + "u": 0.7787900023359029, + "t": 0.7925012840267076, + "punct": 0.8557614826752619 + }, + "ted2020-corrupted-asr": { + "u": 0.27576335877862596, + "t": 0.6373460668509675, + "punct": 0.7389756231169542 + } + }, + "vi": { + "opus100": { + "u": 0.9040559440559439, + "t": 0.9079059223576085, + "punct": 0.9485049833887043 + }, + "ud": { + "u": 0.8877419354838711, + "t": 0.9419795221843005, + "punct": 0.9951489951489952 + }, + "ted2020-corrupted-asr": { + "u": 0.16596658265658548, + "t": 0.4588348781613052, + "punct": 0.5926523207176334 + } + }, + "xh": { + "opus100": { + "u": 0.7970721857647654, + "t": 0.8078209416002058, + "punct": 0.8934590117109398 + } + }, + "yi": { + "opus100": { + "u": 0.5990384615384615, + "t": 0.6366972477064221, + "punct": 0.8064814814814815 + } + }, + "yo": { + "opus100": { + "u": 0.7545601251894959, + "t": null, + "punct": null + }, + "ud": { + "u": 0.8519637462235651, + "t": null, + "punct": null + } + }, + "zh": { + "ersatz": { + "u": 0.9230769230769231, + "t": 0.9307253463732681, + "punct": 0.9729434271658924 + }, + "opus100": { + "u": 0.8162066940692895, + "t": 0.7791286727456941, + "punct": 0.8905597326649958 + }, + "ud": { + "u": 0.9767441860465117, + "t": 0.9790518191841234, + "punct": 0.9977827050997783 + }, + "ted2020-corrupted-asr": { + "u": 0.49388712108524535, + "t": 0.5419683036587752, + "punct": 0.6539175895989543 + } + }, + "zu": { + "opus100": { + "u": 0.5532579008973859, + "t": 0.8206739006282125, + "punct": 0.908927501497903 + } + }, + "tr-de_TR": { + "code-switching": { + "u": 0.9697783747481531, + "t": 0.9868875086266391, + "punct": 0.9979238754325259 + }, + "code-switching-corrupted-asr": { + "u": 0.27635497319833235, + "t": 0.30334637114298135, + "punct": 0.37844611528822053 + } + }, + "tr-de_DE": { + "code-switching": { + "u": 0.9513157894736841, + "t": 0.9826989619377162, + "punct": 0.9965445749827229 + }, + "code-switching-corrupted-asr": { + "u": 0.2916666666666667, + "t": 0.29324266893327666, + "punct": 0.35659760087241005 + } + }, + "es-en_ES": { + "code-switching": { + "u": 0.8537869582827056, + "t": 0.8618504435994931, + "punct": 0.9233419465977607 + }, + "code-switching-corrupted-asr": { + "u": 0.17269076305220885, + "t": 0.4424418604651163, + "punct": 0.5792592592592591 + } + }, + "es-en_EN": { + "code-switching": { + "u": 0.9063955950868277, + "t": 0.9062634989200864, + "punct": 0.9282006920415224 + }, + "code-switching-corrupted-asr": { + "u": 0.07674236491777603, + "t": 0.46080436264485347, + "punct": 0.5683586513523528 + } + }, + "vi-en_VI": { + "code-switching": { + "u": 0.25857223159078135, + "t": 0.4409182984469953, + "punct": 0.5538345296562145 + }, + "code-switching-corrupted-asr": { + "u": 0.31374606505771246, + "t": 0.4401515151515151, + "punct": 0.558983666061706 + } + }, + "vi-en_EN": { + "code-switching": { + "u": 0.023622047244094488, + "t": 0.2845823704192803, + "punct": 0.42101284958427815 + }, + "code-switching-corrupted-asr": { + "u": 0.012924071082390954, + "t": 0.3136553369111509, + "punct": 0.4357142857142857 + } + }, + "en-de_EN": { + "code-switching": { + "u": 0.6532467532467532, + "t": 0.774518021793797, + "punct": 0.9183098591549296 + }, + "code-switching-corrupted-asr": { + "u": 0.1956043956043956, + "t": 0.2918681318681319, + "punct": 0.48626817447495957 + }, + "short-sequences": { + "u": 0.8411016235738904, + "t": 0.8775213945057733, + "punct": 0.9657215606921925, + "acc_u": 0.40124740124740127, + "acc_t": 0.4864864864864865, + "acc_punct": 0.8108108108108109 + }, + "short-sequences-corrupted-asr": { + "u": 0.5195795663942843, + "t": 0.46945532408236545, + "punct": 0.6103908766997513, + "acc_u": 0.060291060291060294, + "acc_t": 0.02702702702702703, + "acc_punct": 0.07276507276507277 + } + }, + "en-de_DE": { + "code-switching": { + "u": 0.6601307189542485, + "t": 0.7619821283509342, + "punct": 0.9102447869446963 + }, + "code-switching-corrupted-asr": { + "u": 0.34619002822201317, + "t": 0.38920276208411797, + "punct": 0.5370517928286852 + }, + "short-sequences": { + "u": 0.8372675563041322, + "t": 0.8643415065378898, + "punct": 0.9643078644314346, + "acc_u": 0.3700623700623701, + "acc_t": 0.4573804573804574, + "acc_punct": 0.814968814968815 + }, + "short-sequences-corrupted-asr": { + "u": 0.5726103933018627, + "t": 0.5434060489299808, + "punct": 0.6658144438012198, + "acc_u": 0.07068607068607069, + "acc_t": 0.04573804573804574, + "acc_punct": 0.12474012474012475 + } + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/command-r.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/command-r.json new file mode 100644 index 0000000000000000000000000000000000000000..c3f67d929226b23f621e6b0724e9cb74f5fe29c2 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/command-r.json @@ -0,0 +1,1884 @@ +{ + "af": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.742041958041959, + "f1_success": 0.742041958041959, + "recall": 0.816923076923077, + "recall_success": 0.816923076923077, + "precision": 0.7184786324786321, + "precision_success": 0.7184786324786321, + "correct_pairwise": 0.3446153846153846, + "correct_pairwise_success": 0.3446153846153846, + "hallucination_rate": 0.00764430733741661, + "hallucination_rate_success": 0.00764430733741661, + "deletion_rate": 0.004539096958915308, + "deletion_rate_success": 0.004539096958915308 + } + }, + "ersatz": { + "command-r": {} + } + }, + "am": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.7028645833333337, + "f1_success": 0.7028645833333337, + "recall": 0.5859375, + "recall_success": 0.5859375, + "precision": 0.9498697916666666, + "precision_success": 0.9498697916666666, + "correct_pairwise": 0.140625, + "correct_pairwise_success": 0.140625, + "hallucination_rate": 0.22776179957560075, + "hallucination_rate_success": 0.22776179957560075, + "deletion_rate": 0.000998149633337706, + "deletion_rate_success": 0.000998149633337706 + } + }, + "ersatz": { + "command-r": {} + } + }, + "ar": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.7364777964519267, + "f1_success": 0.7364777964519267, + "recall": 0.6774, + "recall_success": 0.6774, + "precision": 0.8922212987012994, + "precision_success": 0.8922212987012994, + "correct_pairwise": 0.254, + "correct_pairwise_success": 0.254, + "hallucination_rate": 0.028052573260608688, + "hallucination_rate_success": 0.028052573260608688, + "deletion_rate": 0.004170630067201417, + "deletion_rate_success": 0.004170630067201417 + } + }, + "ersatz": { + "command-r": { + "f1": 0.8997340425531926, + "f1_success": 0.8997340425531926, + "recall": 0.8882978723404256, + "recall_success": 0.8882978723404256, + "precision": 0.9485815602836883, + "precision_success": 0.9485815602836883, + "correct_pairwise": 0.6861702127659575, + "correct_pairwise_success": 0.6861702127659575, + "hallucination_rate": 0.013093681113866811, + "hallucination_rate_success": 0.013093681113866811, + "deletion_rate": 0.0062952431486673725, + "deletion_rate_success": 0.0062952431486673725 + } + } + }, + "az": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.7184989387855792, + "f1_success": 0.7184989387855792, + "recall": 0.6734633569739953, + "recall_success": 0.6734633569739953, + "precision": 0.8577075124770172, + "precision_success": 0.8577075124770172, + "correct_pairwise": 0.22754137115839243, + "correct_pairwise_success": 0.22754137115839243, + "hallucination_rate": 0.1557517784699498, + "hallucination_rate_success": 0.1557517784699498, + "deletion_rate": 0.015544618649329984, + "deletion_rate_success": 0.015544618649329984 + } + }, + "ersatz": { + "command-r": {} + } + }, + "be": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.699917620167622, + "f1_success": 0.699917620167622, + "recall": 0.6502271252433485, + "recall_success": 0.6502271252433485, + "precision": 0.8284188921866898, + "precision_success": 0.8284188921866898, + "correct_pairwise": 0.23750811161583388, + "correct_pairwise_success": 0.23750811161583388, + "hallucination_rate": 0.04224054782250744, + "hallucination_rate_success": 0.04224054782250744, + "deletion_rate": 0.000725819717417133, + "deletion_rate_success": 0.000725819717417133 + } + }, + "ersatz": { + "command-r": {} + } + }, + "bg": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.7194126007326134, + "f1_success": 0.7194126007326134, + "recall": 0.6442, + "recall_success": 0.6442, + "precision": 0.8904727272727274, + "precision_success": 0.8904727272727274, + "correct_pairwise": 0.2336, + "correct_pairwise_success": 0.2336, + "hallucination_rate": 0.02325590683961359, + "hallucination_rate_success": 0.02325590683961359, + "deletion_rate": 0.0018253831670905594, + "deletion_rate_success": 0.0018253831670905594 + } + }, + "ersatz": { + "command-r": {} + } + }, + "bn": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.6657179487179382, + "f1_success": 0.6657179487179382, + "recall": 0.5053846153846154, + "recall_success": 0.5053846153846154, + "precision": 0.9882051282051281, + "precision_success": 0.9882051282051281, + "correct_pairwise": 0.006153846153846154, + "correct_pairwise_success": 0.006153846153846154, + "hallucination_rate": 0.00464046413817987, + "hallucination_rate_success": 0.00464046413817987, + "deletion_rate": 0.7237476183158241, + "deletion_rate_success": 0.7237476183158241 + } + }, + "ersatz": { + "command-r": {} + } + }, + "ca": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.7460609220019793, + "f1_success": 0.7460609220019793, + "recall": 0.7852, + "recall_success": 0.7852, + "precision": 0.7804090849673238, + "precision_success": 0.7804090849673238, + "correct_pairwise": 0.3104, + "correct_pairwise_success": 0.3104, + "hallucination_rate": 0.02332136398923648, + "hallucination_rate_success": 0.02332136398923648, + "deletion_rate": 0.008175682469222541, + "deletion_rate_success": 0.008175682469222541 + } + }, + "ersatz": { + "command-r": {} + } + }, + "ceb": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.6384353741496599, + "f1_success": 0.6384353741496599, + "recall": 0.6785714285714286, + "recall_success": 0.6785714285714286, + "precision": 0.6357142857142858, + "precision_success": 0.6357142857142858, + "correct_pairwise": 0.21428571428571427, + "correct_pairwise_success": 0.21428571428571427, + "hallucination_rate": 0.0036815730628342587, + "hallucination_rate_success": 0.0036815730628342587, + "deletion_rate": 0.0052742018792684125, + "deletion_rate_success": 0.0052742018792684125 + } + }, + "ersatz": { + "command-r": {} + } + }, + "cs": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.7791565914787013, + "f1_success": 0.7791565914787013, + "recall": 0.7916, + "recall_success": 0.7916, + "precision": 0.8346138257408258, + "precision_success": 0.8346138257408258, + "correct_pairwise": 0.384, + "correct_pairwise_success": 0.384, + "hallucination_rate": 0.026411217300974118, + "hallucination_rate_success": 0.026411217300974118, + "deletion_rate": 0.00724844224249262, + "deletion_rate_success": 0.00724844224249262 + } + }, + "ersatz": { + "command-r": { + "f1": 0.9236882716049395, + "f1_success": 0.9236882716049395, + "recall": 0.9293981481481481, + "recall_success": 0.9293981481481481, + "precision": 0.9375000000000002, + "precision_success": 0.9375000000000002, + "correct_pairwise": 0.7708333333333334, + "correct_pairwise_success": 0.7708333333333334, + "hallucination_rate": 0.008082900242980022, + "hallucination_rate_success": 0.008082900242980022, + "deletion_rate": 0.010235403370898902, + "deletion_rate_success": 0.010235403370898902 + } + } + }, + "da": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.7528985037185054, + "f1_success": 0.7528985037185054, + "recall": 0.8214, + "recall_success": 0.8214, + "precision": 0.7473885137085179, + "precision_success": 0.7473885137085179, + "correct_pairwise": 0.334, + "correct_pairwise_success": 0.334, + "hallucination_rate": 0.012632197566401758, + "hallucination_rate_success": 0.012632197566401758, + "deletion_rate": 0.005261477363069736, + "deletion_rate_success": 0.005261477363069736 + } + }, + "ersatz": { + "command-r": {} + } + }, + "de": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.7993616816412138, + "f1_success": 0.8006427099771773, + "recall": 0.8284, + "recall_success": 0.8297275641025641, + "precision": 0.8352583193277348, + "precision_success": 0.8365968743266574, + "correct_pairwise": 0.42, + "correct_pairwise_success": 0.4206730769230769, + "hallucination_rate": 0.018907751187086045, + "hallucination_rate_success": 0.01893805207039868, + "deletion_rate": 0.007735512117456042, + "deletion_rate_success": 0.007747908771490427 + } + }, + "ersatz": { + "command-r": { + "f1": 0.9347929395790912, + "f1_success": 0.9386162235855496, + "recall": 0.9439918533604889, + "recall_success": 0.9478527607361963, + "precision": 0.9416157501697218, + "precision_success": 0.9454669393319701, + "correct_pairwise": 0.8065173116089613, + "correct_pairwise_success": 0.8098159509202454, + "hallucination_rate": 0.0079310865713006, + "hallucination_rate_success": 0.007963524553187308, + "deletion_rate": 0.008245369578313773, + "deletion_rate_success": 0.008279092971272111 + } + } + }, + "el": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.7551435497835619, + "f1_success": 0.7551435497835619, + "recall": 0.6912, + "recall_success": 0.6912, + "precision": 0.9051729166666667, + "precision_success": 0.9051729166666667, + "correct_pairwise": 0.3212, + "correct_pairwise_success": 0.3212, + "hallucination_rate": 0.020385946126547087, + "hallucination_rate_success": 0.020385946126547087, + "deletion_rate": 0.002913229488099663, + "deletion_rate_success": 0.002913229488099663 + } + }, + "ersatz": { + "command-r": {} + } + }, + "en": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.7685310606060592, + "f1_success": 0.7685310606060592, + "recall": 0.8672, + "recall_success": 0.8672, + "precision": 0.7326607448107497, + "precision_success": 0.7326607448107497, + "correct_pairwise": 0.3576, + "correct_pairwise_success": 0.3576, + "hallucination_rate": 0.008963147514711266, + "hallucination_rate_success": 0.008963147514711266, + "deletion_rate": 0.006797345197943549, + "deletion_rate_success": 0.006797345197943549 + } + }, + "ersatz": { + "command-r": { + "f1": 0.8908058481267174, + "f1_success": 0.8908058481267174, + "recall": 0.9356178608515057, + "recall_success": 0.9356178608515057, + "precision": 0.8731753449043209, + "precision_success": 0.8731753449043209, + "correct_pairwise": 0.6531671858774662, + "correct_pairwise_success": 0.6531671858774662, + "hallucination_rate": 0.007396126305900879, + "hallucination_rate_success": 0.007396126305900879, + "deletion_rate": 0.012810447146721462, + "deletion_rate_success": 0.012810447146721462 + } + } + }, + "eo": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.7150032820145559, + "f1_success": 0.7150032820145559, + "recall": 0.7772556390977443, + "recall_success": 0.7772556390977443, + "precision": 0.7098385845566292, + "precision_success": 0.7098385845566292, + "correct_pairwise": 0.2844611528822055, + "correct_pairwise_success": 0.2844611528822055, + "hallucination_rate": 0.02233501910595867, + "hallucination_rate_success": 0.02233501910595867, + "deletion_rate": 0.0067078172838749475, + "deletion_rate_success": 0.0067078172838749475 + } + }, + "ersatz": { + "command-r": {} + } + }, + "es": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.7668192457542519, + "f1_success": 0.7668192457542519, + "recall": 0.7702, + "recall_success": 0.7702, + "precision": 0.8249011399711417, + "precision_success": 0.8249011399711417, + "correct_pairwise": 0.3852, + "correct_pairwise_success": 0.3852, + "hallucination_rate": 0.014476972755433096, + "hallucination_rate_success": 0.014476972755433096, + "deletion_rate": 0.005569953840830867, + "deletion_rate_success": 0.005569953840830867 + } + }, + "ersatz": { + "command-r": { + "f1": 0.9234240954867573, + "f1_success": 0.9234240954867573, + "recall": 0.9425587467362925, + "recall_success": 0.9425587467362925, + "precision": 0.9224978241949519, + "precision_success": 0.9224978241949519, + "correct_pairwise": 0.7689295039164491, + "correct_pairwise_success": 0.7689295039164491, + "hallucination_rate": 0.0027359771404764505, + "hallucination_rate_success": 0.0027359771404764505, + "deletion_rate": 0.005765641686468666, + "deletion_rate_success": 0.005765641686468666 + } + } + }, + "et": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.7295228460428468, + "f1_success": 0.7295228460428468, + "recall": 0.7986, + "recall_success": 0.7986, + "precision": 0.7183071861471887, + "precision_success": 0.7183071861471887, + "correct_pairwise": 0.308, + "correct_pairwise_success": 0.308, + "hallucination_rate": 0.014705376066020159, + "hallucination_rate_success": 0.014705376066020159, + "deletion_rate": 0.006314660185543035, + "deletion_rate_success": 0.006314660185543035 + } + }, + "ersatz": { + "command-r": { + "f1": 0.9020502645502658, + "f1_success": 0.9020502645502658, + "recall": 0.9444444444444444, + "recall_success": 0.9444444444444444, + "precision": 0.8820767195767204, + "precision_success": 0.8820767195767204, + "correct_pairwise": 0.6845238095238095, + "correct_pairwise_success": 0.6845238095238095, + "hallucination_rate": 0.004113101392425944, + "hallucination_rate_success": 0.004113101392425944, + "deletion_rate": 0.006403865957329934, + "deletion_rate_success": 0.006403865957329934 + } + } + }, + "eu": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.6353617298173687, + "f1_success": 0.6353617298173687, + "recall": 0.6942204301075269, + "recall_success": 0.6942204301075269, + "precision": 0.6323572708653354, + "precision_success": 0.6323572708653354, + "correct_pairwise": 0.1875, + "correct_pairwise_success": 0.1875, + "hallucination_rate": 0.020412552565926265, + "hallucination_rate_success": 0.020412552565926265, + "deletion_rate": 0.006377542182572841, + "deletion_rate_success": 0.006377542182572841 + } + }, + "ersatz": { + "command-r": {} + } + }, + "fa": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.7372498989899101, + "f1_success": 0.7372498989899101, + "recall": 0.6854, + "recall_success": 0.6854, + "precision": 0.8883647130647143, + "precision_success": 0.8883647130647143, + "correct_pairwise": 0.2548, + "correct_pairwise_success": 0.2548, + "hallucination_rate": 0.027822346174447347, + "hallucination_rate_success": 0.027822346174447347, + "deletion_rate": 0.00824279931318209, + "deletion_rate_success": 0.00824279931318209 + } + }, + "ersatz": { + "command-r": {} + } + }, + "fi": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.7232425574425572, + "f1_success": 0.7232425574425572, + "recall": 0.807, + "recall_success": 0.807, + "precision": 0.7020209812409861, + "precision_success": 0.7020209812409861, + "correct_pairwise": 0.2916, + "correct_pairwise_success": 0.2916, + "hallucination_rate": 0.011860393674153917, + "hallucination_rate_success": 0.011860393674153917, + "deletion_rate": 0.008258249462886724, + "deletion_rate_success": 0.008258249462886724 + } + }, + "ersatz": { + "command-r": { + "f1": 0.8760377898654464, + "f1_success": 0.8760377898654464, + "recall": 0.9208416833667334, + "recall_success": 0.9208416833667334, + "precision": 0.8589846359385443, + "precision_success": 0.8589846359385443, + "correct_pairwise": 0.6192384769539078, + "correct_pairwise_success": 0.6192384769539078, + "hallucination_rate": 0.004682319344580942, + "hallucination_rate_success": 0.004682319344580942, + "deletion_rate": 0.0038225048490608793, + "deletion_rate_success": 0.0038225048490608793 + } + } + }, + "fr": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.7847123987124013, + "f1_success": 0.7847123987124013, + "recall": 0.8154, + "recall_success": 0.8154, + "precision": 0.8126774891774937, + "precision_success": 0.8126774891774937, + "correct_pairwise": 0.4056, + "correct_pairwise_success": 0.4056, + "hallucination_rate": 0.015507182226342382, + "hallucination_rate_success": 0.015507182226342382, + "deletion_rate": 0.005711007282383363, + "deletion_rate_success": 0.005711007282383363 + } + }, + "ersatz": { + "command-r": { + "f1": 0.9304232804232814, + "f1_success": 0.9304232804232814, + "recall": 0.9456521739130435, + "recall_success": 0.9456521739130435, + "precision": 0.9351851851851852, + "precision_success": 0.9351851851851852, + "correct_pairwise": 0.785024154589372, + "correct_pairwise_success": 0.785024154589372, + "hallucination_rate": 0.010267809756027767, + "hallucination_rate_success": 0.010267809756027767, + "deletion_rate": 0.006628876047322683, + "deletion_rate_success": 0.006628876047322683 + } + } + }, + "ga": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.6194444444444445, + "f1_success": 0.6194444444444445, + "recall": 0.7083333333333334, + "recall_success": 0.7083333333333334, + "precision": 0.5694444444444445, + "precision_success": 0.5694444444444445, + "correct_pairwise": 0.16666666666666666, + "correct_pairwise_success": 0.16666666666666666, + "hallucination_rate": 0.0014483893710922782, + "hallucination_rate_success": 0.0014483893710922782, + "deletion_rate": 0.0027100749079977185, + "deletion_rate_success": 0.0027100749079977185 + } + }, + "ersatz": { + "command-r": {} + } + }, + "gl": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.736336168524, + "f1_success": 0.736336168524, + "recall": 0.7446, + "recall_success": 0.7446, + "precision": 0.7951781240981258, + "precision_success": 0.7951781240981258, + "correct_pairwise": 0.3128, + "correct_pairwise_success": 0.3128, + "hallucination_rate": 0.017391706572183516, + "hallucination_rate_success": 0.017391706572183516, + "deletion_rate": 0.006156082223138892, + "deletion_rate_success": 0.006156082223138892 + } + }, + "ersatz": { + "command-r": {} + } + }, + "gu": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.6539006494011582, + "f1_success": 0.6539006494011582, + "recall": 0.5235085945399394, + "recall_success": 0.5235085945399394, + "precision": 0.9311304055174118, + "precision_success": 0.9311304055174118, + "correct_pairwise": 0.03083923154701719, + "correct_pairwise_success": 0.03083923154701719, + "hallucination_rate": 0.2799918319585747, + "hallucination_rate_success": 0.2799918319585747, + "deletion_rate": 0.031546053863365967, + "deletion_rate_success": 0.031546053863365967 + } + }, + "ersatz": { + "command-r": { + "f1": 0.9522309711286087, + "f1_success": 0.9522309711286087, + "recall": 0.9409448818897638, + "recall_success": 0.9409448818897638, + "precision": 0.979002624671916, + "precision_success": 0.979002624671916, + "correct_pairwise": 0.8661417322834646, + "correct_pairwise_success": 0.8661417322834646, + "hallucination_rate": 0.03463022630670735, + "hallucination_rate_success": 0.03463022630670735, + "deletion_rate": 0.0009174847593828401, + "deletion_rate_success": 0.0009174847593828401 + } + } + }, + "ha": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.48888888888888893, + "f1_success": 0.48888888888888893, + "recall": 0.5, + "recall_success": 0.5, + "precision": 0.5555555555555555, + "precision_success": 0.5555555555555555, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.003401360544217687, + "hallucination_rate_success": 0.003401360544217687, + "deletion_rate": 0.004877831282325665, + "deletion_rate_success": 0.004877831282325665 + } + }, + "ersatz": { + "command-r": {} + } + }, + "he": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.7255493831168944, + "f1_success": 0.7258397190044962, + "recall": 0.6698, + "recall_success": 0.6700680272108843, + "precision": 0.8755420071684601, + "precision_success": 0.8758923641141058, + "correct_pairwise": 0.2432, + "correct_pairwise_success": 0.24329731892757103, + "hallucination_rate": 0.027614270951214753, + "hallucination_rate_success": 0.02762532107964661, + "deletion_rate": 0.0051981056493222, + "deletion_rate_success": 0.005200185723611645 + } + }, + "ersatz": { + "command-r": {} + } + }, + "hi": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.6740939682539837, + "f1_success": 0.6740939682539837, + "recall": 0.5582, + "recall_success": 0.5582, + "precision": 0.9294076190476189, + "precision_success": 0.9294076190476189, + "correct_pairwise": 0.0648, + "correct_pairwise_success": 0.0648, + "hallucination_rate": 0.10149824352252486, + "hallucination_rate_success": 0.10149824352252486, + "deletion_rate": 0.02705097548248903, + "deletion_rate_success": 0.02705097548248903 + } + }, + "ersatz": { + "command-r": { + "f1": 0.9052380952380958, + "f1_success": 0.9052380952380958, + "recall": 0.8936507936507937, + "recall_success": 0.8936507936507937, + "precision": 0.955952380952381, + "precision_success": 0.955952380952381, + "correct_pairwise": 0.6904761904761905, + "correct_pairwise_success": 0.6904761904761905, + "hallucination_rate": 0.01276574230748174, + "hallucination_rate_success": 0.01276574230748174, + "deletion_rate": 0.0089262341996774, + "deletion_rate_success": 0.0089262341996774 + } + } + }, + "hu": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.7013793739593764, + "f1_success": 0.7013793739593764, + "recall": 0.79, + "recall_success": 0.79, + "precision": 0.6875075953213491, + "precision_success": 0.6875075953213491, + "correct_pairwise": 0.2392, + "correct_pairwise_success": 0.2392, + "hallucination_rate": 0.016541440941938157, + "hallucination_rate_success": 0.016541440941938157, + "deletion_rate": 0.006869903339723245, + "deletion_rate_success": 0.006869903339723245 + } + }, + "ersatz": { + "command-r": {} + } + }, + "hy": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.6727736507936671, + "f1_success": 0.6727736507936671, + "recall": 0.5508, + "recall_success": 0.5508, + "precision": 0.9357838095238098, + "precision_success": 0.9357838095238098, + "correct_pairwise": 0.0592, + "correct_pairwise_success": 0.0592, + "hallucination_rate": 0.19425600398323706, + "hallucination_rate_success": 0.19425600398323706, + "deletion_rate": 0.007170133734286391, + "deletion_rate_success": 0.007170133734286391 + } + }, + "ersatz": { + "command-r": {} + } + }, + "id": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.7563737429595558, + "f1_success": 0.7563737429595558, + "recall": 0.749, + "recall_success": 0.749, + "precision": 0.8291076026272604, + "precision_success": 0.8291076026272604, + "correct_pairwise": 0.3484, + "correct_pairwise_success": 0.3484, + "hallucination_rate": 0.016661198118268557, + "hallucination_rate_success": 0.016661198118268557, + "deletion_rate": 0.007888062837788232, + "deletion_rate_success": 0.007888062837788232 + } + }, + "ersatz": { + "command-r": {} + } + }, + "ig": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.5809523809523809, + "f1_success": 0.5809523809523809, + "recall": 0.5769230769230769, + "recall_success": 0.5769230769230769, + "precision": 0.6403846153846153, + "precision_success": 0.6403846153846153, + "correct_pairwise": 0.07692307692307693, + "correct_pairwise_success": 0.07692307692307693, + "hallucination_rate": 0.0906959443924362, + "hallucination_rate_success": 0.0906959443924362, + "deletion_rate": 0.0035952571476571705, + "deletion_rate_success": 0.0035952571476571705 + } + }, + "ersatz": { + "command-r": {} + } + }, + "is": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.7132679025808804, + "f1_success": 0.7132679025808804, + "recall": 0.7468193384223919, + "recall_success": 0.7468193384223919, + "precision": 0.7324427480916029, + "precision_success": 0.7324427480916029, + "correct_pairwise": 0.28498727735368956, + "correct_pairwise_success": 0.28498727735368956, + "hallucination_rate": 0.008732632199028067, + "hallucination_rate_success": 0.008732632199028067, + "deletion_rate": 0.006500438016680807, + "deletion_rate_success": 0.006500438016680807 + } + }, + "ersatz": { + "command-r": {} + } + }, + "it": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.793214245754248, + "f1_success": 0.793214245754248, + "recall": 0.823, + "recall_success": 0.823, + "precision": 0.816307330447335, + "precision_success": 0.816307330447335, + "correct_pairwise": 0.4372, + "correct_pairwise_success": 0.4372, + "hallucination_rate": 0.014720835163886037, + "hallucination_rate_success": 0.014720835163886037, + "deletion_rate": 0.005174152933756245, + "deletion_rate_success": 0.005174152933756245 + } + }, + "ersatz": { + "command-r": {} + } + }, + "ja": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.7110826617826723, + "f1_success": 0.7110826617826723, + "recall": 0.6726, + "recall_success": 0.6726, + "precision": 0.8559178354978377, + "precision_success": 0.8559178354978377, + "correct_pairwise": 0.1988, + "correct_pairwise_success": 0.1988, + "hallucination_rate": 0.03157197859726881, + "hallucination_rate_success": 0.03157197859726881, + "deletion_rate": 0.01523644791795989, + "deletion_rate_success": 0.01523644791795989 + } + }, + "ersatz": { + "command-r": { + "f1": 0.8814143567874911, + "f1_success": 0.8814143567874911, + "recall": 0.8675373134328358, + "recall_success": 0.8675373134328358, + "precision": 0.9320273631840794, + "precision_success": 0.9320273631840794, + "correct_pairwise": 0.6716417910447762, + "correct_pairwise_success": 0.6716417910447762, + "hallucination_rate": 0.03579429198382165, + "hallucination_rate_success": 0.03579429198382165, + "deletion_rate": 0.011974912369885998, + "deletion_rate_success": 0.011974912369885998 + } + } + }, + "ka": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.6738640870241034, + "f1_success": 0.6738640870241034, + "recall": 0.546, + "recall_success": 0.546, + "precision": 0.9474703607503608, + "precision_success": 0.9474703607503608, + "correct_pairwise": 0.0604, + "correct_pairwise_success": 0.0604, + "hallucination_rate": 0.11525471714402827, + "hallucination_rate_success": 0.11525471714402827, + "deletion_rate": 0.012309388173529414, + "deletion_rate_success": 0.012309388173529414 + } + }, + "ersatz": { + "command-r": {} + } + }, + "kk": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.6891311669545672, + "f1_success": 0.6891311669545672, + "recall": 0.6101984941820671, + "recall_success": 0.6101984941820671, + "precision": 0.862025357713243, + "precision_success": 0.862025357713243, + "correct_pairwise": 0.18275154004106775, + "correct_pairwise_success": 0.18275154004106775, + "hallucination_rate": 0.19420110925118406, + "hallucination_rate_success": 0.19420110925118406, + "deletion_rate": 0.0016580625166938501, + "deletion_rate_success": 0.0016580625166938501 + } + }, + "ersatz": { + "command-r": { + "f1": 0.9680000000000001, + "f1_success": 0.9680000000000001, + "recall": 0.97, + "recall_success": 0.97, + "precision": 0.9746666666666667, + "precision_success": 0.9746666666666667, + "correct_pairwise": 0.9, + "correct_pairwise_success": 0.9, + "hallucination_rate": 0.012349353434860384, + "hallucination_rate_success": 0.012349353434860384, + "deletion_rate": 0.0018139447176940137, + "deletion_rate_success": 0.0018139447176940137 + } + } + }, + "km": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.5969208736126032, + "f1_success": 0.5969208736126032, + "recall": 0.5263157894736842, + "recall_success": 0.5263157894736842, + "precision": 0.7682957393483709, + "precision_success": 0.7682957393483709, + "correct_pairwise": 0.03759398496240601, + "correct_pairwise_success": 0.03759398496240601, + "hallucination_rate": 0.03213339071350462, + "hallucination_rate_success": 0.03213339071350462, + "deletion_rate": 0.17952670167219636, + "deletion_rate_success": 0.17952670167219636 + } + }, + "ersatz": { + "command-r": { + "f1": 0.8268926553672339, + "f1_success": 0.8268926553672339, + "recall": 0.7813559322033898, + "recall_success": 0.7813559322033898, + "precision": 0.9412320730117341, + "precision_success": 0.9412320730117341, + "correct_pairwise": 0.5135593220338983, + "correct_pairwise_success": 0.5135593220338983, + "hallucination_rate": 0.007625671616095744, + "hallucination_rate_success": 0.007625671616095744, + "deletion_rate": 0.2144866736377925, + "deletion_rate_success": 0.2144866736377925 + } + } + }, + "kn": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.6631701631701614, + "f1_success": 0.6631701631701614, + "recall": 0.5034965034965035, + "recall_success": 0.5034965034965035, + "precision": 0.9825174825174825, + "precision_success": 0.9825174825174825, + "correct_pairwise": 0.006993006993006993, + "correct_pairwise_success": 0.006993006993006993, + "hallucination_rate": 0.14203428180944586, + "hallucination_rate_success": 0.14203428180944586, + "deletion_rate": 0.2153945592367976, + "deletion_rate_success": 0.2153945592367976 + } + }, + "ersatz": { + "command-r": {} + } + }, + "ko": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.7600711111111256, + "f1_success": 0.7600711111111256, + "recall": 0.697, + "recall_success": 0.697, + "precision": 0.9259676190476205, + "precision_success": 0.9259676190476205, + "correct_pairwise": 0.2848, + "correct_pairwise_success": 0.2848, + "hallucination_rate": 0.045768893489036684, + "hallucination_rate_success": 0.045768893489036684, + "deletion_rate": 0.004235518239799405, + "deletion_rate_success": 0.004235518239799405 + } + }, + "ersatz": { + "command-r": {} + } + }, + "ku": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.6948139194139336, + "f1_success": 0.6948139194139336, + "recall": 0.6018, + "recall_success": 0.6018, + "precision": 0.903806666666667, + "precision_success": 0.903806666666667, + "correct_pairwise": 0.1496, + "correct_pairwise_success": 0.1496, + "hallucination_rate": 0.07526763814194673, + "hallucination_rate_success": 0.07526763814194673, + "deletion_rate": 0.0024521663354752686, + "deletion_rate_success": 0.0024521663354752686 + } + }, + "ersatz": { + "command-r": {} + } + }, + "ky": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.6895424836601305, + "f1_success": 0.6895424836601305, + "recall": 0.6176470588235294, + "recall_success": 0.6176470588235294, + "precision": 0.8447712418300654, + "precision_success": 0.8447712418300654, + "correct_pairwise": 0.21568627450980393, + "correct_pairwise_success": 0.21568627450980393, + "hallucination_rate": 0.12510958415176396, + "hallucination_rate_success": 0.12510958415176396, + "deletion_rate": 0.001116916034425295, + "deletion_rate_success": 0.001116916034425295 + } + }, + "ersatz": { + "command-r": {} + } + }, + "la": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.8333333333333334, + "f1_success": 0.8333333333333334, + "recall": 0.8333333333333334, + "recall_success": 0.8333333333333334, + "precision": 0.8333333333333334, + "precision_success": 0.8333333333333334, + "correct_pairwise": 0.6666666666666666, + "correct_pairwise_success": 0.6666666666666666, + "hallucination_rate": 0.0, + "hallucination_rate_success": 0.0, + "deletion_rate": 0.006535947712418301, + "deletion_rate_success": 0.006535947712418301 + } + }, + "ersatz": { + "command-r": {} + } + }, + "lt": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.7388252991452998, + "f1_success": 0.7388252991452998, + "recall": 0.8066, + "recall_success": 0.8066, + "precision": 0.7360304562104603, + "precision_success": 0.7360304562104603, + "correct_pairwise": 0.294, + "correct_pairwise_success": 0.294, + "hallucination_rate": 0.016033345627213338, + "hallucination_rate_success": 0.016033345627213338, + "deletion_rate": 0.007262854685909534, + "deletion_rate_success": 0.007262854685909534 + } + }, + "ersatz": { + "command-r": { + "f1": 0.9222857142857148, + "f1_success": 0.9222857142857148, + "recall": 0.958, + "recall_success": 0.958, + "precision": 0.9039333333333328, + "precision_success": 0.9039333333333328, + "correct_pairwise": 0.74, + "correct_pairwise_success": 0.74, + "hallucination_rate": 0.00591385138117331, + "hallucination_rate_success": 0.00591385138117331, + "deletion_rate": 0.008990776520806659, + "deletion_rate_success": 0.008990776520806659 + } + } + }, + "lv": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.718294025974025, + "f1_success": 0.718294025974025, + "recall": 0.7998, + "recall_success": 0.7998, + "precision": 0.6940736507936547, + "precision_success": 0.6940736507936547, + "correct_pairwise": 0.2956, + "correct_pairwise_success": 0.2956, + "hallucination_rate": 0.01028567154396776, + "hallucination_rate_success": 0.01028567154396776, + "deletion_rate": 0.008750785279804283, + "deletion_rate_success": 0.008750785279804283 + } + }, + "ersatz": { + "command-r": { + "f1": 0.9007936507936525, + "f1_success": 0.9007936507936525, + "recall": 0.9533730158730159, + "recall_success": 0.9533730158730159, + "precision": 0.8726521164021175, + "precision_success": 0.8726521164021175, + "correct_pairwise": 0.6666666666666666, + "correct_pairwise_success": 0.6666666666666666, + "hallucination_rate": 0.0021474137285435895, + "hallucination_rate_success": 0.0021474137285435895, + "deletion_rate": 0.0033661854315757207, + "deletion_rate_success": 0.0033661854315757207 + } + } + }, + "mg": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.5941798941798944, + "f1_success": 0.5941798941798944, + "recall": 0.5740740740740741, + "recall_success": 0.5740740740740741, + "precision": 0.6734567901234567, + "precision_success": 0.6734567901234567, + "correct_pairwise": 0.09259259259259259, + "correct_pairwise_success": 0.09259259259259259, + "hallucination_rate": 0.030855029690331784, + "hallucination_rate_success": 0.030855029690331784, + "deletion_rate": 0.0033367771032103053, + "deletion_rate_success": 0.0033367771032103053 + } + }, + "ersatz": { + "command-r": {} + } + }, + "mk": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.6910944269765475, + "f1_success": 0.6910944269765475, + "recall": 0.5792, + "recall_success": 0.5792, + "precision": 0.9245359477124186, + "precision_success": 0.9245359477124186, + "correct_pairwise": 0.1352, + "correct_pairwise_success": 0.1352, + "hallucination_rate": 0.03235614993310591, + "hallucination_rate_success": 0.03235614993310591, + "deletion_rate": 0.0010755082291195265, + "deletion_rate_success": 0.0010755082291195265 + } + }, + "ersatz": { + "command-r": {} + } + }, + "ml": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.6645973466079359, + "f1_success": 0.6645973466079359, + "recall": 0.5059523809523809, + "recall_success": 0.5059523809523809, + "precision": 0.9879659024103469, + "precision_success": 0.9879659024103469, + "correct_pairwise": 0.005291005291005291, + "correct_pairwise_success": 0.005291005291005291, + "hallucination_rate": 0.0014435948887536385, + "hallucination_rate_success": 0.0014435948887536385, + "deletion_rate": 0.8789630104640619, + "deletion_rate_success": 0.8789630104640619 + } + }, + "ersatz": { + "command-r": {} + } + }, + "mn": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.6838075213675351, + "f1_success": 0.6838075213675351, + "recall": 0.5844, + "recall_success": 0.5844, + "precision": 0.8934752181152186, + "precision_success": 0.8934752181152186, + "correct_pairwise": 0.146, + "correct_pairwise_success": 0.146, + "hallucination_rate": 0.15868647949854164, + "hallucination_rate_success": 0.15868647949854164, + "deletion_rate": 0.0003327605182357335, + "deletion_rate_success": 0.0003327605182357335 + } + }, + "ersatz": { + "command-r": {} + } + }, + "mr": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.6555980952381114, + "f1_success": 0.6555980952381114, + "recall": 0.5204, + "recall_success": 0.5204, + "precision": 0.932, + "precision_success": 0.932, + "correct_pairwise": 0.0312, + "correct_pairwise_success": 0.0312, + "hallucination_rate": 0.04787753271647943, + "hallucination_rate_success": 0.04787753271647943, + "deletion_rate": 0.004127525174893096, + "deletion_rate_success": 0.004127525174893096 + } + }, + "ersatz": { + "command-r": {} + } + }, + "ms": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.7375487953166505, + "f1_success": 0.7375487953166505, + "recall": 0.7238095238095238, + "recall_success": 0.7238095238095238, + "precision": 0.8269867252456546, + "precision_success": 0.8269867252456546, + "correct_pairwise": 0.2970238095238095, + "correct_pairwise_success": 0.2970238095238095, + "hallucination_rate": 0.020025196390346837, + "hallucination_rate_success": 0.020025196390346837, + "deletion_rate": 0.010595385453237512, + "deletion_rate_success": 0.010595385453237512 + } + }, + "ersatz": { + "command-r": {} + } + }, + "mt": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.6461538461538463, + "f1_success": 0.6461538461538463, + "recall": 0.6538461538461539, + "recall_success": 0.6538461538461539, + "precision": 0.6762820512820512, + "precision_success": 0.6762820512820512, + "correct_pairwise": 0.23076923076923078, + "correct_pairwise_success": 0.23076923076923078, + "hallucination_rate": 0.004086333164148621, + "hallucination_rate_success": 0.004086333164148621, + "deletion_rate": 0.006203009347863811, + "deletion_rate_success": 0.006203009347863811 + } + }, + "ersatz": { + "command-r": {} + } + }, + "my": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.6590904633821617, + "f1_success": 0.6590904633821617, + "recall": 0.5566, + "recall_success": 0.5566, + "precision": 0.8930608978392456, + "precision_success": 0.8930608978392456, + "correct_pairwise": 0.0776, + "correct_pairwise_success": 0.0776, + "hallucination_rate": 0.02441253829698502, + "hallucination_rate_success": 0.02441253829698502, + "deletion_rate": 0.014316710552042087, + "deletion_rate_success": 0.014316710552042087 + } + }, + "ersatz": { + "command-r": {} + } + }, + "ne": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.681367474224619, + "f1_success": 0.681367474224619, + "recall": 0.5733590733590733, + "recall_success": 0.5733590733590733, + "precision": 0.9117277992277992, + "precision_success": 0.9117277992277992, + "correct_pairwise": 0.12162162162162163, + "correct_pairwise_success": 0.12162162162162163, + "hallucination_rate": 0.04670995872629497, + "hallucination_rate_success": 0.04670995872629497, + "deletion_rate": 0.002260657481843977, + "deletion_rate_success": 0.002260657481843977 + } + }, + "ersatz": { + "command-r": {} + } + }, + "nl": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.8228601154401142, + "f1_success": 0.8228601154401142, + "recall": 0.8794, + "recall_success": 0.8794, + "precision": 0.8169618055555606, + "precision_success": 0.8169618055555606, + "correct_pairwise": 0.4724, + "correct_pairwise_success": 0.4724, + "hallucination_rate": 0.010348988505582855, + "hallucination_rate_success": 0.010348988505582855, + "deletion_rate": 0.008468107172170548, + "deletion_rate_success": 0.008468107172170548 + } + }, + "ersatz": { + "command-r": {} + } + }, + "pa": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.6684397163120559, + "f1_success": 0.6684397163120559, + "recall": 0.5212765957446809, + "recall_success": 0.5212765957446809, + "precision": 0.9654255319148937, + "precision_success": 0.9654255319148937, + "correct_pairwise": 0.0425531914893617, + "correct_pairwise_success": 0.0425531914893617, + "hallucination_rate": 0.13977360639357864, + "hallucination_rate_success": 0.13977360639357864, + "deletion_rate": 0.002495077593021233, + "deletion_rate_success": 0.002495077593021233 + } + }, + "ersatz": { + "command-r": {} + } + }, + "pl": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.7967635871318254, + "f1_success": 0.7967635871318254, + "recall": 0.8206, + "recall_success": 0.8206, + "precision": 0.8265766269841308, + "precision_success": 0.8265766269841308, + "correct_pairwise": 0.4324, + "correct_pairwise_success": 0.4324, + "hallucination_rate": 0.016026147988665734, + "hallucination_rate_success": 0.016026147988665734, + "deletion_rate": 0.006422038125919934, + "deletion_rate_success": 0.006422038125919934 + } + }, + "ersatz": { + "command-r": { + "f1": 0.9289698349459307, + "f1_success": 0.9289698349459307, + "recall": 0.9462151394422311, + "recall_success": 0.9462151394422311, + "precision": 0.9265604249667994, + "precision_success": 0.9265604249667994, + "correct_pairwise": 0.796812749003984, + "correct_pairwise_success": 0.796812749003984, + "hallucination_rate": 0.005861315112451055, + "hallucination_rate_success": 0.005861315112451055, + "deletion_rate": 0.008287679666251041, + "deletion_rate_success": 0.008287679666251041 + } + } + }, + "ps": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.6540145985401463, + "f1_success": 0.6540145985401463, + "recall": 0.5328467153284672, + "recall_success": 0.5328467153284672, + "precision": 0.9038929440389295, + "precision_success": 0.9038929440389295, + "correct_pairwise": 0.051094890510948905, + "correct_pairwise_success": 0.051094890510948905, + "hallucination_rate": 0.08371575663216115, + "hallucination_rate_success": 0.08371575663216115, + "deletion_rate": 0.0008762055841381216, + "deletion_rate_success": 0.0008762055841381216 + } + }, + "ersatz": { + "command-r": { + "f1": 0.9345133361262394, + "f1_success": 0.9345133361262394, + "recall": 0.9274193548387096, + "recall_success": 0.9274193548387096, + "precision": 0.9656402737047898, + "precision_success": 0.9656402737047898, + "correct_pairwise": 0.7961876832844574, + "correct_pairwise_success": 0.7961876832844574, + "hallucination_rate": 0.01041134133945694, + "hallucination_rate_success": 0.01041134133945694, + "deletion_rate": 0.0019329334322075386, + "deletion_rate_success": 0.0019329334322075386 + } + } + }, + "pt": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.7812109090909143, + "f1_success": 0.7812109090909143, + "recall": 0.791, + "recall_success": 0.791, + "precision": 0.8334000494405436, + "precision_success": 0.8334000494405436, + "correct_pairwise": 0.4008, + "correct_pairwise_success": 0.4008, + "hallucination_rate": 0.012465488198399283, + "hallucination_rate_success": 0.012465488198399283, + "deletion_rate": 0.005069105865265478, + "deletion_rate_success": 0.005069105865265478 + } + }, + "ersatz": { + "command-r": {} + } + }, + "ro": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.7652112265512322, + "f1_success": 0.7652112265512322, + "recall": 0.7528, + "recall_success": 0.7528, + "precision": 0.8484970436507964, + "precision_success": 0.8484970436507964, + "correct_pairwise": 0.3512, + "correct_pairwise_success": 0.3512, + "hallucination_rate": 0.017971452577177166, + "hallucination_rate_success": 0.017971452577177166, + "deletion_rate": 0.00657497734745277, + "deletion_rate_success": 0.00657497734745277 + } + }, + "ersatz": { + "command-r": { + "f1": 0.9187777777777785, + "f1_success": 0.9187777777777785, + "recall": 0.924, + "recall_success": 0.924, + "precision": 0.9389190476190481, + "precision_success": 0.9389190476190481, + "correct_pairwise": 0.758, + "correct_pairwise_success": 0.758, + "hallucination_rate": 0.004883395813416173, + "hallucination_rate_success": 0.004883395813416173, + "deletion_rate": 0.003935490926545917, + "deletion_rate_success": 0.003935490926545917 + } + } + }, + "ru": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.7801585048643171, + "f1_success": 0.7801585048643171, + "recall": 0.771, + "recall_success": 0.771, + "precision": 0.8568737931034511, + "precision_success": 0.8568737931034511, + "correct_pairwise": 0.3836, + "correct_pairwise_success": 0.3836, + "hallucination_rate": 0.021432034969910675, + "hallucination_rate_success": 0.021432034969910675, + "deletion_rate": 0.001471755391948671, + "deletion_rate_success": 0.001471755391948671 + } + }, + "ersatz": { + "command-r": { + "f1": 0.9391129032258064, + "f1_success": 0.9391129032258064, + "recall": 0.9455645161290323, + "recall_success": 0.9455645161290323, + "precision": 0.9487567204301073, + "precision_success": 0.9487567204301073, + "correct_pairwise": 0.8145161290322581, + "correct_pairwise_success": 0.8145161290322581, + "hallucination_rate": 0.005224312597570503, + "hallucination_rate_success": 0.005224312597570503, + "deletion_rate": 0.006669156631280926, + "deletion_rate_success": 0.006669156631280926 + } + } + }, + "si": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.6477984164261322, + "f1_success": 0.6477984164261322, + "recall": 0.5930232558139535, + "recall_success": 0.5930232558139535, + "precision": 0.901769097043742, + "precision_success": 0.901769097043742, + "correct_pairwise": 0.06976744186046512, + "correct_pairwise_success": 0.06976744186046512, + "hallucination_rate": 0.691944647686711, + "hallucination_rate_success": 0.691944647686711, + "deletion_rate": 0.20273242330026617, + "deletion_rate_success": 0.20273242330026617 + } + }, + "ersatz": { + "command-r": {} + } + }, + "sk": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.7533750360750366, + "f1_success": 0.7533750360750366, + "recall": 0.8098, + "recall_success": 0.8098, + "precision": 0.7601583638583679, + "precision_success": 0.7601583638583679, + "correct_pairwise": 0.3356, + "correct_pairwise_success": 0.3356, + "hallucination_rate": 0.01776482996649308, + "hallucination_rate_success": 0.01776482996649308, + "deletion_rate": 0.007381602543916036, + "deletion_rate_success": 0.007381602543916036 + } + }, + "ersatz": { + "command-r": {} + } + }, + "sl": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.7302988455988471, + "f1_success": 0.7302988455988471, + "recall": 0.7928, + "recall_success": 0.7928, + "precision": 0.7359582539682588, + "precision_success": 0.7359582539682588, + "correct_pairwise": 0.2844, + "correct_pairwise_success": 0.2844, + "hallucination_rate": 0.013165560756783594, + "hallucination_rate_success": 0.013165560756783594, + "deletion_rate": 0.007196126754413198, + "deletion_rate_success": 0.007196126754413198 + } + }, + "ersatz": { + "command-r": {} + } + }, + "sq": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.6911937254901976, + "f1_success": 0.6911937254901976, + "recall": 0.73, + "recall_success": 0.73, + "precision": 0.7124152380952401, + "precision_success": 0.7124152380952401, + "correct_pairwise": 0.2444, + "correct_pairwise_success": 0.2444, + "hallucination_rate": 0.021228101494129528, + "hallucination_rate_success": 0.021228101494129528, + "deletion_rate": 0.00628408372687049, + "deletion_rate_success": 0.00628408372687049 + } + }, + "ersatz": { + "command-r": {} + } + }, + "sr": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.7383521212121263, + "f1_success": 0.7383521212121263, + "recall": 0.774, + "recall_success": 0.774, + "precision": 0.7710579365079399, + "precision_success": 0.7710579365079399, + "correct_pairwise": 0.314, + "correct_pairwise_success": 0.314, + "hallucination_rate": 0.015602819092274166, + "hallucination_rate_success": 0.015602819092274166, + "deletion_rate": 0.005909277008575971, + "deletion_rate_success": 0.005909277008575971 + } + }, + "ersatz": { + "command-r": {} + } + }, + "sv": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.770238470418472, + "f1_success": 0.770238470418472, + "recall": 0.8296, + "recall_success": 0.8296, + "precision": 0.7646107936507984, + "precision_success": 0.7646107936507984, + "correct_pairwise": 0.3792, + "correct_pairwise_success": 0.3792, + "hallucination_rate": 0.00999848608091287, + "hallucination_rate_success": 0.00999848608091287, + "deletion_rate": 0.007147143074467746, + "deletion_rate_success": 0.007147143074467746 + } + }, + "ersatz": { + "command-r": {} + } + }, + "ta": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.6638688357905318, + "f1_success": 0.6638688357905318, + "recall": 0.5060498220640569, + "recall_success": 0.5060498220640569, + "precision": 0.980688018979834, + "precision_success": 0.980688018979834, + "correct_pairwise": 0.011387900355871887, + "correct_pairwise_success": 0.011387900355871887, + "hallucination_rate": 0.04361670914297738, + "hallucination_rate_success": 0.04361670914297738, + "deletion_rate": 0.40827347575011486, + "deletion_rate_success": 0.40827347575011486 + } + }, + "ersatz": { + "command-r": { + "f1": 0.6938911022576352, + "f1_success": 0.6938911022576352, + "recall": 0.5418326693227091, + "recall_success": 0.5418326693227091, + "precision": 0.99800796812749, + "precision_success": 0.99800796812749, + "correct_pairwise": 0.08366533864541832, + "correct_pairwise_success": 0.08366533864541832, + "hallucination_rate": 0.001427416519297014, + "hallucination_rate_success": 0.001427416519297014, + "deletion_rate": 0.7694899219867076, + "deletion_rate_success": 0.7694899219867076 + } + } + }, + "te": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.6575528700906391, + "f1_success": 0.6575528700906391, + "recall": 0.5128398791540786, + "recall_success": 0.5128398791540786, + "precision": 0.949773413897281, + "precision_success": 0.949773413897281, + "correct_pairwise": 0.019637462235649546, + "correct_pairwise_success": 0.019637462235649546, + "hallucination_rate": 0.056509760360937224, + "hallucination_rate_success": 0.056509760360937224, + "deletion_rate": 0.01270826595880584, + "deletion_rate_success": 0.01270826595880584 + } + }, + "ersatz": { + "command-r": {} + } + }, + "tg": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.7385964912280699, + "f1_success": 0.7385964912280699, + "recall": 0.6447368421052632, + "recall_success": 0.6447368421052632, + "precision": 0.9298245614035087, + "precision_success": 0.9298245614035087, + "correct_pairwise": 0.27631578947368424, + "correct_pairwise_success": 0.27631578947368424, + "hallucination_rate": 0.045095164351861644, + "hallucination_rate_success": 0.045095164351861644, + "deletion_rate": 0.0, + "deletion_rate_success": 0.0 + } + }, + "ersatz": { + "command-r": {} + } + }, + "th": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.7119818066378227, + "f1_success": 0.7119818066378227, + "recall": 0.6072, + "recall_success": 0.6072, + "precision": 0.9373497032436165, + "precision_success": 0.9373497032436165, + "correct_pairwise": 0.1756, + "correct_pairwise_success": 0.1756, + "hallucination_rate": 0.09078331879962911, + "hallucination_rate_success": 0.09078331879962911, + "deletion_rate": 0.009979857561166657, + "deletion_rate_success": 0.009979857561166657 + } + }, + "ersatz": { + "command-r": {} + } + }, + "tr": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.7988917243867276, + "f1_success": 0.7992114089503078, + "recall": 0.8122, + "recall_success": 0.8125250100040016, + "precision": 0.8385681547619083, + "precision_success": 0.8389037162484075, + "correct_pairwise": 0.4476, + "correct_pairwise_success": 0.4477791116446579, + "hallucination_rate": 0.022818005714704843, + "hallucination_rate_success": 0.02282713656933258, + "deletion_rate": 0.005974251164195706, + "deletion_rate_success": 0.0059766418209240765 + } + }, + "ersatz": { + "command-r": { + "f1": 0.93254927696417, + "f1_success": 0.93254927696417, + "recall": 0.9394946808510638, + "recall_success": 0.9394946808510638, + "precision": 0.9460697399527187, + "precision_success": 0.9460697399527187, + "correct_pairwise": 0.7965425531914894, + "correct_pairwise_success": 0.7965425531914894, + "hallucination_rate": 0.011222622581850921, + "hallucination_rate_success": 0.011222622581850921, + "deletion_rate": 0.011100552086799855, + "deletion_rate_success": 0.011100552086799855 + } + } + }, + "uk": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.7699092063492124, + "f1_success": 0.7699092063492124, + "recall": 0.753, + "recall_success": 0.753, + "precision": 0.8548709523809545, + "precision_success": 0.8548709523809545, + "correct_pairwise": 0.3676, + "correct_pairwise_success": 0.3676, + "hallucination_rate": 0.025052471545554393, + "hallucination_rate_success": 0.025052471545554393, + "deletion_rate": 0.001720369657195652, + "deletion_rate_success": 0.001720369657195652 + } + }, + "ersatz": { + "command-r": {} + } + }, + "ur": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.7086971980856889, + "f1_success": 0.7090615668250646, + "recall": 0.7217368961973278, + "recall_success": 0.722107969151671, + "precision": 0.7884248488179647, + "precision_success": 0.7888302086374084, + "correct_pairwise": 0.21788283658787255, + "correct_pairwise_success": 0.2179948586118252, + "hallucination_rate": 0.0547393072773642, + "hallucination_rate_success": 0.0547674508800775, + "deletion_rate": 0.0021501533183644916, + "deletion_rate_success": 0.0021512587956489977 + } + }, + "ersatz": { + "command-r": {} + } + }, + "uz": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.6592694576871776, + "f1_success": 0.6592694576871776, + "recall": 0.569620253164557, + "recall_success": 0.569620253164557, + "precision": 0.868759627620387, + "precision_success": 0.868759627620387, + "correct_pairwise": 0.08333333333333333, + "correct_pairwise_success": 0.08333333333333333, + "hallucination_rate": 0.09462689515374498, + "hallucination_rate_success": 0.09462689515374498, + "deletion_rate": 0.02646456712691397, + "deletion_rate_success": 0.02646456712691397 + } + }, + "ersatz": { + "command-r": {} + } + }, + "vi": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.748867570207575, + "f1_success": 0.748867570207575, + "recall": 0.7514, + "recall_success": 0.7514, + "precision": 0.8122516017316039, + "precision_success": 0.8122516017316039, + "correct_pairwise": 0.336, + "correct_pairwise_success": 0.336, + "hallucination_rate": 0.014993090374010839, + "hallucination_rate_success": 0.014993090374010839, + "deletion_rate": 0.006271156081171968, + "deletion_rate_success": 0.006271156081171968 + } + }, + "ersatz": { + "command-r": {} + } + }, + "zh": { + "ted2020-corrupted-asr": { + "command-r": { + "f1": 0.6590531525014833, + "f1_success": 0.6590531525014833, + "recall": 0.6409180651530109, + "recall_success": 0.6409180651530109, + "precision": 0.7950277524932038, + "precision_success": 0.7950277524932038, + "correct_pairwise": 0.10019743336623889, + "correct_pairwise_success": 0.10019743336623889, + "hallucination_rate": 0.038302424246560586, + "hallucination_rate_success": 0.038302424246560586, + "deletion_rate": 0.0046207016094190635, + "deletion_rate_success": 0.0046207016094190635 + } + }, + "ersatz": { + "command-r": { + "f1": 0.8727477925583206, + "f1_success": 0.8727477925583206, + "recall": 0.93, + "recall_success": 0.93, + "precision": 0.8658171122994659, + "precision_success": 0.8658171122994659, + "correct_pairwise": 0.592, + "correct_pairwise_success": 0.592, + "hallucination_rate": 0.0139215963997789, + "hallucination_rate_success": 0.0139215963997789, + "deletion_rate": 0.009442632208235395, + "deletion_rate_success": 0.009442632208235395 + } + } + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/command-r_tweets.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/command-r_tweets.json new file mode 100644 index 0000000000000000000000000000000000000000..18e68fd42c117499bae26db8e97017a7cc70349b --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/command-r_tweets.json @@ -0,0 +1,138 @@ +{ + "en-de": { + "short-sequences": { + "command-r": { + "f1": 0.7612735782515193, + "f1_success": 0.7676574237714482, + "recall": 0.7555802664310645, + "recall_success": 0.761916369294218, + "precision": 0.8756583740528698, + "precision_success": 0.8830014212147388, + "correct_pairwise": 0.3388773388773389, + "correct_pairwise_success": 0.3417190775681342, + "hallucination_rate": 0.009286331011965437, + "hallucination_rate_success": 0.00936420380871148, + "deletion_rate": 0.019544615801262977, + "deletion_rate_success": 0.01970851195053982 + } + }, + "short-sequences-corrupted-asr": { + "command-r": { + "f1": 0.6475642577710565, + "f1_success": 0.6529945660123233, + "recall": 0.6957057989208499, + "recall_success": 0.701539809813268, + "precision": 0.7478827547434623, + "precision_success": 0.7541543082423593, + "correct_pairwise": 0.13305613305613306, + "correct_pairwise_success": 0.13417190775681342, + "hallucination_rate": 0.009962824325472781, + "hallucination_rate_success": 0.010046370022122449, + "deletion_rate": 0.007069353632395325, + "deletion_rate_success": 0.007128635423861952 + } + } + }, + "et": { + "short-sequences": { + "command-r": { + "f1": 0.7978905731149315, + "f1_success": 0.7978905731149315, + "recall": 0.7438085972017783, + "recall_success": 0.7438085972017783, + "precision": 0.9285069200093828, + "precision_success": 0.9285069200093828, + "correct_pairwise": 0.32019704433497537, + "correct_pairwise_success": 0.32019704433497537, + "hallucination_rate": 0.010509200163706062, + "hallucination_rate_success": 0.010509200163706062, + "deletion_rate": 0.0027956041497039434, + "deletion_rate_success": 0.0027956041497039434 + } + }, + "short-sequences-corrupted-asr": { + "command-r": { + "f1": 0.5679015009944264, + "f1_success": 0.5679015009944264, + "recall": 0.5542263209524035, + "recall_success": 0.5542263209524035, + "precision": 0.6667317604509723, + "precision_success": 0.6667317604509723, + "correct_pairwise": 0.03940886699507389, + "correct_pairwise_success": 0.03940886699507389, + "hallucination_rate": 0.00356705321845305, + "hallucination_rate_success": 0.00356705321845305, + "deletion_rate": 0.003881461160564471, + "deletion_rate_success": 0.003881461160564471 + } + } + }, + "sl": { + "short-sequences": { + "command-r": { + "f1": 0.8370556231809922, + "f1_success": 0.8370556231809922, + "recall": 0.8637072045338179, + "recall_success": 0.8637072045338179, + "precision": 0.8751077887166597, + "precision_success": 0.8751077887166597, + "correct_pairwise": 0.5384897360703812, + "correct_pairwise_success": 0.5384897360703812, + "hallucination_rate": 0.09838043224511384, + "hallucination_rate_success": 0.09838043224511384, + "deletion_rate": 0.009172849760158738, + "deletion_rate_success": 0.009172849760158738 + } + }, + "short-sequences-corrupted-asr": { + "command-r": { + "f1": 0.6695807016207601, + "f1_success": 0.6695807016207601, + "recall": 0.6635709049015502, + "recall_success": 0.6635709049015502, + "precision": 0.7516547198058119, + "precision_success": 0.7516547198058119, + "correct_pairwise": 0.22104105571847507, + "correct_pairwise_success": 0.22104105571847507, + "hallucination_rate": 0.0415027499668521, + "hallucination_rate_success": 0.0415027499668521, + "deletion_rate": 0.012283687920226428, + "deletion_rate_success": 0.012283687920226428 + } + } + }, + "sr": { + "short-sequences": { + "command-r": { + "f1": 0.829373346560847, + "f1_success": 0.829373346560847, + "recall": 0.8155381944444442, + "recall_success": 0.8155381944444442, + "precision": 0.8987847222222224, + "precision_success": 0.8987847222222224, + "correct_pairwise": 0.4739583333333333, + "correct_pairwise_success": 0.4739583333333333, + "hallucination_rate": 0.008376361810798334, + "hallucination_rate_success": 0.008376361810798334, + "deletion_rate": 0.006765326059912324, + "deletion_rate_success": 0.006765326059912324 + } + }, + "short-sequences-corrupted-asr": { + "command-r": { + "f1": 0.689413855820106, + "f1_success": 0.689413855820106, + "recall": 0.7217013888888889, + "recall_success": 0.7217013888888889, + "precision": 0.7298239087301588, + "precision_success": 0.7298239087301588, + "correct_pairwise": 0.20833333333333334, + "correct_pairwise_success": 0.20833333333333334, + "hallucination_rate": 0.008838381651877837, + "hallucination_rate_success": 0.008838381651877837, + "deletion_rate": 0.005075559068623937, + "deletion_rate_success": 0.005075559068623937 + } + } + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/llama-3.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/llama-3.json new file mode 100644 index 0000000000000000000000000000000000000000..6f838470c3296c3241522ff389272b17b3ceddfa --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/llama-3.json @@ -0,0 +1,1884 @@ +{ + "af": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7122246642246655, + "f1_success": 0.7122246642246655, + "recall": 0.8323076923076923, + "recall_success": 0.8323076923076923, + "precision": 0.666388278388278, + "precision_success": 0.666388278388278, + "correct_pairwise": 0.2553846153846154, + "correct_pairwise_success": 0.2553846153846154, + "hallucination_rate": 0.001604040396252146, + "hallucination_rate_success": 0.001604040396252146, + "deletion_rate": 0.00350566677049251, + "deletion_rate_success": 0.00350566677049251 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "am": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5913318452380948, + "f1_success": 0.5913318452380948, + "recall": 0.70703125, + "recall_success": 0.70703125, + "precision": 0.5434895833333334, + "precision_success": 0.5434895833333334, + "correct_pairwise": 0.1171875, + "correct_pairwise_success": 0.1171875, + "hallucination_rate": 0.001159333054092175, + "hallucination_rate_success": 0.001159333054092175, + "deletion_rate": 0.0005826749143147705, + "deletion_rate_success": 0.0005826749143147705 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "ar": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6863714499027541, + "f1_success": 0.6863714499027541, + "recall": 0.8636, + "recall_success": 0.8636, + "precision": 0.6045459213092084, + "precision_success": 0.6045459213092084, + "correct_pairwise": 0.216, + "correct_pairwise_success": 0.216, + "hallucination_rate": 0.009037833424094031, + "hallucination_rate_success": 0.009037833424094031, + "deletion_rate": 0.0025260426840785152, + "deletion_rate_success": 0.0025260426840785152 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9012672315863821, + "f1_success": 0.9012672315863821, + "recall": 0.9813829787234043, + "recall_success": 0.9813829787234043, + "precision": 0.8601422661263092, + "precision_success": 0.8601422661263092, + "correct_pairwise": 0.6781914893617021, + "correct_pairwise_success": 0.6781914893617021, + "hallucination_rate": 0.004030885046919083, + "hallucination_rate_success": 0.004030885046919083, + "deletion_rate": 0.00828917699020409, + "deletion_rate_success": 0.00828917699020409 + } + } + }, + "az": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7537445972729603, + "f1_success": 0.7541903362423708, + "recall": 0.8912529550827423, + "recall_success": 0.8917800118273211, + "precision": 0.6882849731697241, + "precision_success": 0.6886920015394283, + "correct_pairwise": 0.3067375886524823, + "correct_pairwise_success": 0.3069189828503844, + "hallucination_rate": 0.001893332608078846, + "hallucination_rate_success": 0.0018944522607152025, + "deletion_rate": 0.002730540616558457, + "deletion_rate_success": 0.002732155365592495 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "be": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6729128035422576, + "f1_success": 0.6729128035422576, + "recall": 0.7959117456197274, + "recall_success": 0.7959117456197274, + "precision": 0.6206636800001479, + "precision_success": 0.6206636800001479, + "correct_pairwise": 0.2044127190136275, + "correct_pairwise_success": 0.2044127190136275, + "hallucination_rate": 0.0032691630134157766, + "hallucination_rate_success": 0.0032691630134157766, + "deletion_rate": 0.0013528810486998291, + "deletion_rate_success": 0.0013528810486998291 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "bg": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7205628860028866, + "f1_success": 0.7205628860028866, + "recall": 0.845, + "recall_success": 0.845, + "precision": 0.6710882539682572, + "precision_success": 0.6710882539682572, + "correct_pairwise": 0.2796, + "correct_pairwise_success": 0.2796, + "hallucination_rate": 0.005126613744113337, + "hallucination_rate_success": 0.005126613744113337, + "deletion_rate": 0.0018571023910618752, + "deletion_rate_success": 0.0018571023910618752 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "bn": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5250391446160644, + "f1_success": 0.5250391446160644, + "recall": 0.6357692307692308, + "recall_success": 0.6357692307692308, + "precision": 0.4828611388611383, + "precision_success": 0.4828611388611383, + "correct_pairwise": 0.06153846153846154, + "correct_pairwise_success": 0.06153846153846154, + "hallucination_rate": 0.003911769122860138, + "hallucination_rate_success": 0.003911769122860138, + "deletion_rate": 0.0015575294104951802, + "deletion_rate_success": 0.0015575294104951802 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "ca": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7239014754354707, + "f1_success": 0.7239014754354707, + "recall": 0.8496, + "recall_success": 0.8496, + "precision": 0.6785616246498629, + "precision_success": 0.6785616246498629, + "correct_pairwise": 0.2756, + "correct_pairwise_success": 0.2756, + "hallucination_rate": 0.0013514705726471487, + "hallucination_rate_success": 0.0013514705726471487, + "deletion_rate": 0.005857298605548459, + "deletion_rate_success": 0.005857298605548459 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "ceb": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6785714285714287, + "f1_success": 0.6785714285714287, + "recall": 0.6785714285714286, + "recall_success": 0.6785714285714286, + "precision": 0.744047619047619, + "precision_success": 0.744047619047619, + "correct_pairwise": 0.21428571428571427, + "correct_pairwise_success": 0.21428571428571427, + "hallucination_rate": 0.0, + "hallucination_rate_success": 0.0, + "deletion_rate": 0.005280981648616139, + "deletion_rate_success": 0.005280981648616139 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "cs": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7200636452436462, + "f1_success": 0.7200636452436462, + "recall": 0.8762, + "recall_success": 0.8762, + "precision": 0.6544044588744633, + "precision_success": 0.6544044588744633, + "correct_pairwise": 0.262, + "correct_pairwise_success": 0.262, + "hallucination_rate": 0.002717155190506149, + "hallucination_rate_success": 0.002717155190506149, + "deletion_rate": 0.006719941569336467, + "deletion_rate_success": 0.006719941569336467 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9671075837742512, + "f1_success": 0.9671075837742512, + "recall": 0.9953703703703703, + "recall_success": 0.9953703703703703, + "precision": 0.9517746913580253, + "precision_success": 0.9517746913580253, + "correct_pairwise": 0.8726851851851852, + "correct_pairwise_success": 0.8726851851851852, + "hallucination_rate": 0.00017262247216067573, + "hallucination_rate_success": 0.00017262247216067573, + "deletion_rate": 0.003033285538653087, + "deletion_rate_success": 0.003033285538653087 + } + } + }, + "da": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7226730913530917, + "f1_success": 0.7226730913530917, + "recall": 0.862, + "recall_success": 0.862, + "precision": 0.664086536796541, + "precision_success": 0.664086536796541, + "correct_pairwise": 0.2688, + "correct_pairwise_success": 0.2688, + "hallucination_rate": 0.0006413303539216884, + "hallucination_rate_success": 0.0006413303539216884, + "deletion_rate": 0.004724810016243603, + "deletion_rate_success": 0.004724810016243603 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "de": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7445098066378053, + "f1_success": 0.7445098066378053, + "recall": 0.9062, + "recall_success": 0.9062, + "precision": 0.6709705414875037, + "precision_success": 0.6709705414875037, + "correct_pairwise": 0.2892, + "correct_pairwise_success": 0.2892, + "hallucination_rate": 0.0020830963874782695, + "hallucination_rate_success": 0.0020830963874782695, + "deletion_rate": 0.007932859449733909, + "deletion_rate_success": 0.007932859449733909 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9646688003103489, + "f1_success": 0.9646688003103489, + "recall": 0.994908350305499, + "recall_success": 0.994908350305499, + "precision": 0.9475899524779368, + "precision_success": 0.9475899524779368, + "correct_pairwise": 0.8615071283095723, + "correct_pairwise_success": 0.8615071283095723, + "hallucination_rate": 0.00015548873706891376, + "hallucination_rate_success": 0.00015548873706891376, + "deletion_rate": 0.002140143972809658, + "deletion_rate_success": 0.002140143972809658 + } + } + }, + "el": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7186772508650768, + "f1_success": 0.7186772508650768, + "recall": 0.8464, + "recall_success": 0.8464, + "precision": 0.6611584271284304, + "precision_success": 0.6611584271284304, + "correct_pairwise": 0.2848, + "correct_pairwise_success": 0.2848, + "hallucination_rate": 0.0055787265350388535, + "hallucination_rate_success": 0.0055787265350388535, + "deletion_rate": 0.002094137820348499, + "deletion_rate_success": 0.002094137820348499 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "en": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7626767526917527, + "f1_success": 0.7626767526917527, + "recall": 0.8792, + "recall_success": 0.8792, + "precision": 0.7216922799422851, + "precision_success": 0.7216922799422851, + "correct_pairwise": 0.3456, + "correct_pairwise_success": 0.3456, + "hallucination_rate": 0.00026265667466657646, + "hallucination_rate_success": 0.00026265667466657646, + "deletion_rate": 0.005970995367882132, + "deletion_rate_success": 0.005970995367882132 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9843190097084175, + "f1_success": 0.9843190097084175, + "recall": 0.9919522326064382, + "recall_success": 0.9919522326064382, + "precision": 0.9829723582060038, + "precision_success": 0.9829723582060038, + "correct_pairwise": 0.9454828660436138, + "correct_pairwise_success": 0.9454828660436138, + "hallucination_rate": 0.00020010954196402812, + "hallucination_rate_success": 0.00020010954196402812, + "deletion_rate": 0.0028172985570319073, + "deletion_rate_success": 0.0028172985570319073 + } + } + }, + "eo": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6968441030360476, + "f1_success": 0.6968441030360476, + "recall": 0.8104636591478697, + "recall_success": 0.8104636591478697, + "precision": 0.6651587256380477, + "precision_success": 0.6651587256380477, + "correct_pairwise": 0.24060150375939848, + "correct_pairwise_success": 0.24060150375939848, + "hallucination_rate": 0.0017317375814834308, + "hallucination_rate_success": 0.0017317375814834308, + "deletion_rate": 0.006930215586338839, + "deletion_rate_success": 0.006930215586338839 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "es": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7419401692751704, + "f1_success": 0.7419401692751704, + "recall": 0.8634, + "recall_success": 0.8634, + "precision": 0.6968655544813646, + "precision_success": 0.6968655544813646, + "correct_pairwise": 0.3204, + "correct_pairwise_success": 0.3204, + "hallucination_rate": 0.0013886044128626662, + "hallucination_rate_success": 0.0013886044128626662, + "deletion_rate": 0.004050014935875112, + "deletion_rate_success": 0.004050014935875112 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9673629242819829, + "f1_success": 0.9673629242819829, + "recall": 0.9954308093994778, + "recall_success": 0.9954308093994778, + "precision": 0.9525239338555255, + "precision_success": 0.9525239338555255, + "correct_pairwise": 0.8720626631853786, + "correct_pairwise_success": 0.8720626631853786, + "hallucination_rate": 0.0001270819326595631, + "hallucination_rate_success": 0.0001270819326595631, + "deletion_rate": 0.0016451797190921065, + "deletion_rate_success": 0.0016451797190921065 + } + } + }, + "et": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6801899855699867, + "f1_success": 0.6801899855699867, + "recall": 0.8046, + "recall_success": 0.8046, + "precision": 0.633719126984129, + "precision_success": 0.633719126984129, + "correct_pairwise": 0.2216, + "correct_pairwise_success": 0.2216, + "hallucination_rate": 0.0016944977445362077, + "hallucination_rate_success": 0.0016944977445362077, + "deletion_rate": 0.005684882292718094, + "deletion_rate_success": 0.005684882292718094 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9652588813303106, + "f1_success": 0.9652588813303106, + "recall": 0.996031746031746, + "recall_success": 0.996031746031746, + "precision": 0.9474206349206354, + "precision_success": 0.9474206349206354, + "correct_pairwise": 0.8611111111111112, + "correct_pairwise_success": 0.8611111111111112, + "hallucination_rate": 0.0005148916962823468, + "hallucination_rate_success": 0.0005148916962823468, + "deletion_rate": 0.0022427767273954266, + "deletion_rate_success": 0.0022427767273954266 + } + } + }, + "eu": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6081092667786159, + "f1_success": 0.6081092667786159, + "recall": 0.7547043010752689, + "recall_success": 0.7547043010752689, + "precision": 0.5518668588729073, + "precision_success": 0.5518668588729073, + "correct_pairwise": 0.13440860215053763, + "correct_pairwise_success": 0.13440860215053763, + "hallucination_rate": 0.0012354459970849096, + "hallucination_rate_success": 0.0012354459970849096, + "deletion_rate": 0.005779418334873687, + "deletion_rate_success": 0.005779418334873687 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "fa": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7181195712783939, + "f1_success": 0.7181195712783939, + "recall": 0.9148, + "recall_success": 0.9148, + "precision": 0.6264229958930018, + "precision_success": 0.6264229958930018, + "correct_pairwise": 0.2292, + "correct_pairwise_success": 0.2292, + "hallucination_rate": 0.008324433796186897, + "hallucination_rate_success": 0.008324433796186897, + "deletion_rate": 0.0023002868959551234, + "deletion_rate_success": 0.0023002868959551234 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "fi": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6811043845043855, + "f1_success": 0.6811043845043855, + "recall": 0.832, + "recall_success": 0.832, + "precision": 0.6163594083694109, + "precision_success": 0.6163594083694109, + "correct_pairwise": 0.2132, + "correct_pairwise_success": 0.2132, + "hallucination_rate": 0.0022237218019029556, + "hallucination_rate_success": 0.0022237218019029556, + "deletion_rate": 0.007212381156056804, + "deletion_rate_success": 0.007212381156056804 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.976629449374941, + "f1_success": 0.976629449374941, + "recall": 0.9949899799599199, + "recall_success": 0.9949899799599199, + "precision": 0.9660654642618574, + "precision_success": 0.9660654642618574, + "correct_pairwise": 0.9038076152304609, + "correct_pairwise_success": 0.9038076152304609, + "hallucination_rate": 0.0007584823690826701, + "hallucination_rate_success": 0.0007584823690826701, + "deletion_rate": 0.0012274137700842983, + "deletion_rate_success": 0.0012274137700842983 + } + } + }, + "fr": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7524085603285594, + "f1_success": 0.7524085603285594, + "recall": 0.8818, + "recall_success": 0.8818, + "precision": 0.7015899800199862, + "precision_success": 0.7015899800199862, + "correct_pairwise": 0.3292, + "correct_pairwise_success": 0.3292, + "hallucination_rate": 0.0014988767164814045, + "hallucination_rate_success": 0.0014988767164814045, + "deletion_rate": 0.00525415334929543, + "deletion_rate_success": 0.00525415334929543 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9799631930066718, + "f1_success": 0.9799631930066718, + "recall": 0.998792270531401, + "recall_success": 0.998792270531401, + "precision": 0.9687600644122387, + "precision_success": 0.9687600644122387, + "correct_pairwise": 0.9106280193236715, + "correct_pairwise_success": 0.9106280193236715, + "hallucination_rate": 0.00017550425976162645, + "hallucination_rate_success": 0.00017550425976162645, + "deletion_rate": 0.0016168170682637247, + "deletion_rate_success": 0.0016168170682637247 + } + } + }, + "ga": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.4778499278499278, + "f1_success": 0.4778499278499278, + "recall": 0.5833333333333334, + "recall_success": 0.5833333333333334, + "precision": 0.43703703703703706, + "precision_success": 0.43703703703703706, + "correct_pairwise": 0.08333333333333333, + "correct_pairwise_success": 0.08333333333333333, + "hallucination_rate": 0.00023946360153256704, + "hallucination_rate_success": 0.00023946360153256704, + "deletion_rate": 0.0027180840087342568, + "deletion_rate_success": 0.0027180840087342568 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "gl": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6925341125541129, + "f1_success": 0.6925341125541129, + "recall": 0.8174, + "recall_success": 0.8174, + "precision": 0.6500488400488443, + "precision_success": 0.6500488400488443, + "correct_pairwise": 0.2292, + "correct_pairwise_success": 0.2292, + "hallucination_rate": 0.002501017962951279, + "hallucination_rate_success": 0.002501017962951279, + "deletion_rate": 0.004713634326457196, + "deletion_rate_success": 0.004713634326457196 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "gu": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5470488228414856, + "f1_success": 0.5470488228414856, + "recall": 0.6799797775530839, + "recall_success": 0.6799797775530839, + "precision": 0.48654031680520143, + "precision_success": 0.48654031680520143, + "correct_pairwise": 0.09201213346814964, + "correct_pairwise_success": 0.09201213346814964, + "hallucination_rate": 0.0035868787077950382, + "hallucination_rate_success": 0.0035868787077950382, + "deletion_rate": 0.002110500120244847, + "deletion_rate_success": 0.002110500120244847 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9531214848143985, + "f1_success": 0.9531214848143985, + "recall": 0.968503937007874, + "recall_success": 0.968503937007874, + "precision": 0.9480314960629921, + "precision_success": 0.9480314960629921, + "correct_pairwise": 0.8700787401574803, + "correct_pairwise_success": 0.8700787401574803, + "hallucination_rate": 0.00040397257431827187, + "hallucination_rate_success": 0.00040397257431827187, + "deletion_rate": 0.0002581459085413413, + "deletion_rate_success": 0.0002581459085413413 + } + } + }, + "ha": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5666666666666668, + "f1_success": 0.5666666666666668, + "recall": 0.6666666666666666, + "recall_success": 0.6666666666666666, + "precision": 0.49999999999999994, + "precision_success": 0.49999999999999994, + "correct_pairwise": 0.0, + "correct_pairwise_success": 0.0, + "hallucination_rate": 0.0, + "hallucination_rate_success": 0.0, + "deletion_rate": 0.00706581794847751, + "deletion_rate_success": 0.00706581794847751 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "he": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6985441269841274, + "f1_success": 0.6985441269841274, + "recall": 0.7932, + "recall_success": 0.7932, + "precision": 0.6589095238095262, + "precision_success": 0.6589095238095262, + "correct_pairwise": 0.2664, + "correct_pairwise_success": 0.2664, + "hallucination_rate": 0.002354411447344948, + "hallucination_rate_success": 0.002354411447344948, + "deletion_rate": 0.0009971099391658845, + "deletion_rate_success": 0.0009971099391658845 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "hi": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6302300965700959, + "f1_success": 0.6302300965700959, + "recall": 0.7912, + "recall_success": 0.7912, + "precision": 0.5605708802308824, + "precision_success": 0.5605708802308824, + "correct_pairwise": 0.1512, + "correct_pairwise_success": 0.1512, + "hallucination_rate": 0.006361529148411784, + "hallucination_rate_success": 0.006361529148411784, + "deletion_rate": 0.0020359761741864505, + "deletion_rate_success": 0.0020359761741864505 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9488359788359786, + "f1_success": 0.9488359788359786, + "recall": 0.9928571428571429, + "recall_success": 0.9928571428571429, + "precision": 0.9237566137566137, + "precision_success": 0.9237566137566137, + "correct_pairwise": 0.8111111111111111, + "correct_pairwise_success": 0.8111111111111111, + "hallucination_rate": 0.00040159374284163125, + "hallucination_rate_success": 0.00040159374284163125, + "deletion_rate": 0.0019516630358997857, + "deletion_rate_success": 0.0019516630358997857 + } + } + }, + "hu": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6770017027417047, + "f1_success": 0.6770017027417047, + "recall": 0.843, + "recall_success": 0.843, + "precision": 0.6068121733821773, + "precision_success": 0.6068121733821773, + "correct_pairwise": 0.1972, + "correct_pairwise_success": 0.1972, + "hallucination_rate": 0.0017405548943279208, + "hallucination_rate_success": 0.0017405548943279208, + "deletion_rate": 0.005464434444069083, + "deletion_rate_success": 0.005464434444069083 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "hy": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6289050907015615, + "f1_success": 0.6289050907015615, + "recall": 0.8132, + "recall_success": 0.8132, + "precision": 0.5434500288600304, + "precision_success": 0.5434500288600304, + "correct_pairwise": 0.138, + "correct_pairwise_success": 0.138, + "hallucination_rate": 0.0028651838724944815, + "hallucination_rate_success": 0.0028651838724944815, + "deletion_rate": 0.002827470976955292, + "deletion_rate_success": 0.002827470976955292 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "id": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7224911688311687, + "f1_success": 0.7224911688311687, + "recall": 0.8278, + "recall_success": 0.8278, + "precision": 0.6836798412698448, + "precision_success": 0.6836798412698448, + "correct_pairwise": 0.298, + "correct_pairwise_success": 0.298, + "hallucination_rate": 0.0024197281100977446, + "hallucination_rate_success": 0.0024197281100977446, + "deletion_rate": 0.0059872734963386425, + "deletion_rate_success": 0.0059872734963386425 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "ig": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5923992673992674, + "f1_success": 0.5923992673992674, + "recall": 0.5961538461538461, + "recall_success": 0.5961538461538461, + "precision": 0.6583333333333333, + "precision_success": 0.6583333333333333, + "correct_pairwise": 0.11538461538461539, + "correct_pairwise_success": 0.11538461538461539, + "hallucination_rate": 0.0003076923076923077, + "hallucination_rate_success": 0.0003076923076923077, + "deletion_rate": 0.005033555027736393, + "deletion_rate_success": 0.005033555027736393 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "is": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6992729916394045, + "f1_success": 0.6992729916394045, + "recall": 0.7506361323155216, + "recall_success": 0.7506361323155216, + "precision": 0.7107294317217977, + "precision_success": 0.7107294317217977, + "correct_pairwise": 0.25699745547073793, + "correct_pairwise_success": 0.25699745547073793, + "hallucination_rate": 0.002372414392832522, + "hallucination_rate_success": 0.002372414392832522, + "deletion_rate": 0.00520909562057498, + "deletion_rate_success": 0.00520909562057498 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "it": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.732853726273727, + "f1_success": 0.732853726273727, + "recall": 0.8736, + "recall_success": 0.8736, + "precision": 0.6795851692751745, + "precision_success": 0.6795851692751745, + "correct_pairwise": 0.2804, + "correct_pairwise_success": 0.2804, + "hallucination_rate": 0.0013159844186293645, + "hallucination_rate_success": 0.0013159844186293645, + "deletion_rate": 0.003794821228409647, + "deletion_rate_success": 0.003794821228409647 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "ja": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6338160686910321, + "f1_success": 0.6338160686910321, + "recall": 0.893, + "recall_success": 0.893, + "precision": 0.5245039229071599, + "precision_success": 0.5245039229071599, + "correct_pairwise": 0.1288, + "correct_pairwise_success": 0.1288, + "hallucination_rate": 0.002364787830144739, + "hallucination_rate_success": 0.002364787830144739, + "deletion_rate": 0.002376555687495188, + "deletion_rate_success": 0.002376555687495188 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9009891021085055, + "f1_success": 0.9009891021085055, + "recall": 0.9347014925373134, + "recall_success": 0.9347014925373134, + "precision": 0.888823738450604, + "precision_success": 0.888823738450604, + "correct_pairwise": 0.7388059701492538, + "correct_pairwise_success": 0.7388059701492538, + "hallucination_rate": 0.0010767711770197832, + "hallucination_rate_success": 0.0010767711770197832, + "deletion_rate": 0.006229478495530674, + "deletion_rate_success": 0.006229478495530674 + } + } + }, + "ka": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.632883347763348, + "f1_success": 0.632883347763348, + "recall": 0.77, + "recall_success": 0.77, + "precision": 0.570441062271064, + "precision_success": 0.570441062271064, + "correct_pairwise": 0.1572, + "correct_pairwise_success": 0.1572, + "hallucination_rate": 0.0008742705852678822, + "hallucination_rate_success": 0.0008742705852678822, + "deletion_rate": 0.00110685619749627, + "deletion_rate_success": 0.00110685619749627 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "kk": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.727014596932454, + "f1_success": 0.727014596932454, + "recall": 0.8251197809719371, + "recall_success": 0.8251197809719371, + "precision": 0.6887726388753056, + "precision_success": 0.6887726388753056, + "correct_pairwise": 0.3052703627652293, + "correct_pairwise_success": 0.3052703627652293, + "hallucination_rate": 0.004332883202325234, + "hallucination_rate_success": 0.004332883202325234, + "deletion_rate": 0.0005423964900332614, + "deletion_rate_success": 0.0005423964900332614 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9881523809523811, + "f1_success": 0.9881523809523811, + "recall": 1.0, + "recall_success": 1.0, + "precision": 0.9809333333333332, + "precision_success": 0.9809333333333332, + "correct_pairwise": 0.948, + "correct_pairwise_success": 0.948, + "hallucination_rate": 8.573426515062544e-05, + "hallucination_rate_success": 8.573426515062544e-05, + "deletion_rate": 0.00035605121204929113, + "deletion_rate_success": 0.00035605121204929113 + } + } + }, + "km": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.40752584925517227, + "f1_success": 0.40752584925517227, + "recall": 0.5375939849624061, + "recall_success": 0.5375939849624061, + "precision": 0.3623045709511876, + "precision_success": 0.3623045709511876, + "correct_pairwise": 0.015037593984962405, + "correct_pairwise_success": 0.015037593984962405, + "hallucination_rate": 0.004620282171656489, + "hallucination_rate_success": 0.004620282171656489, + "deletion_rate": 0.0028545626750141623, + "deletion_rate_success": 0.0028545626750141623 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.8648654829163314, + "f1_success": 0.8648654829163314, + "recall": 0.9033898305084745, + "recall_success": 0.9033898305084745, + "precision": 0.8527582728006461, + "precision_success": 0.8527582728006461, + "correct_pairwise": 0.711864406779661, + "correct_pairwise_success": 0.711864406779661, + "hallucination_rate": 0.0017303437577980449, + "hallucination_rate_success": 0.0017303437577980449, + "deletion_rate": 0.0010896344753899756, + "deletion_rate_success": 0.0010896344753899756 + } + } + }, + "kn": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5964701964701968, + "f1_success": 0.5964701964701968, + "recall": 0.583916083916084, + "recall_success": 0.583916083916084, + "precision": 0.6699300699300701, + "precision_success": 0.6699300699300701, + "correct_pairwise": 0.07692307692307693, + "correct_pairwise_success": 0.07692307692307693, + "hallucination_rate": 0.010741663977518546, + "hallucination_rate_success": 0.010741663977518546, + "deletion_rate": 0.003985858856250373, + "deletion_rate_success": 0.003985858856250373 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "ko": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7846010389610378, + "f1_success": 0.7846010389610378, + "recall": 0.9696, + "recall_success": 0.9696, + "precision": 0.6925797286226396, + "precision_success": 0.6925797286226396, + "correct_pairwise": 0.3256, + "correct_pairwise_success": 0.3256, + "hallucination_rate": 0.002837023408791547, + "hallucination_rate_success": 0.002837023408791547, + "deletion_rate": 0.0008630765398491523, + "deletion_rate_success": 0.0008630765398491523 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "ku": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5815752358752353, + "f1_success": 0.5815752358752353, + "recall": 0.764, + "recall_success": 0.764, + "precision": 0.49683013875014004, + "precision_success": 0.49683013875014004, + "correct_pairwise": 0.0976, + "correct_pairwise_success": 0.0976, + "hallucination_rate": 0.003049939360773281, + "hallucination_rate_success": 0.003049939360773281, + "deletion_rate": 0.0013637554567615673, + "deletion_rate_success": 0.0013637554567615673 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "ky": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6735760971055086, + "f1_success": 0.6735760971055086, + "recall": 0.7549019607843137, + "recall_success": 0.7549019607843137, + "precision": 0.6436274509803922, + "precision_success": 0.6436274509803922, + "correct_pairwise": 0.23529411764705882, + "correct_pairwise_success": 0.23529411764705882, + "hallucination_rate": 0.007140047064022797, + "hallucination_rate_success": 0.007140047064022797, + "deletion_rate": 4.901960784313725e-05, + "deletion_rate_success": 4.901960784313725e-05 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "la": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7777777777777777, + "f1_success": 0.7777777777777777, + "recall": 0.6666666666666666, + "recall_success": 0.6666666666666666, + "precision": 1.0, + "precision_success": 1.0, + "correct_pairwise": 0.3333333333333333, + "correct_pairwise_success": 0.3333333333333333, + "hallucination_rate": 0.0, + "hallucination_rate_success": 0.0, + "deletion_rate": 0.006535947712418301, + "deletion_rate_success": 0.006535947712418301 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "lt": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.670809586622528, + "f1_success": 0.670809586622528, + "recall": 0.8084, + "recall_success": 0.8084, + "precision": 0.6205203174603207, + "precision_success": 0.6205203174603207, + "correct_pairwise": 0.1976, + "correct_pairwise_success": 0.1976, + "hallucination_rate": 0.0015627861207847473, + "hallucination_rate_success": 0.0015627861207847473, + "deletion_rate": 0.005172720631451417, + "deletion_rate_success": 0.005172720631451417 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9592190476190482, + "f1_success": 0.9592190476190482, + "recall": 0.99, + "recall_success": 0.99, + "precision": 0.940933333333333, + "precision_success": 0.940933333333333, + "correct_pairwise": 0.84, + "correct_pairwise_success": 0.84, + "hallucination_rate": 0.0003513407500928848, + "hallucination_rate_success": 0.0003513407500928848, + "deletion_rate": 0.002082447145035081, + "deletion_rate_success": 0.002082447145035081 + } + } + }, + "lv": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6681591408591407, + "f1_success": 0.6681591408591407, + "recall": 0.8054, + "recall_success": 0.8054, + "precision": 0.6150585803085828, + "precision_success": 0.6150585803085828, + "correct_pairwise": 0.1972, + "correct_pairwise_success": 0.1972, + "hallucination_rate": 0.0012948329239719537, + "hallucination_rate_success": 0.0012948329239719537, + "deletion_rate": 0.00814116656024893, + "deletion_rate_success": 0.00814116656024893 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9701341647770227, + "f1_success": 0.9701341647770227, + "recall": 0.9990079365079365, + "recall_success": 0.9990079365079365, + "precision": 0.9531084656084663, + "precision_success": 0.9531084656084663, + "correct_pairwise": 0.878968253968254, + "correct_pairwise_success": 0.878968253968254, + "hallucination_rate": 0.0002377551652592137, + "hallucination_rate_success": 0.0002377551652592137, + "deletion_rate": 0.0010451384115143325, + "deletion_rate_success": 0.0010451384115143325 + } + } + }, + "mg": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5503968253968254, + "f1_success": 0.5503968253968254, + "recall": 0.6018518518518519, + "recall_success": 0.6018518518518519, + "precision": 0.5722222222222222, + "precision_success": 0.5722222222222222, + "correct_pairwise": 0.05555555555555555, + "correct_pairwise_success": 0.05555555555555555, + "hallucination_rate": 0.000257009990616548, + "hallucination_rate_success": 0.000257009990616548, + "deletion_rate": 0.002550153142789387, + "deletion_rate_success": 0.002550153142789387 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "mk": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6957636075036084, + "f1_success": 0.6957636075036084, + "recall": 0.8164, + "recall_success": 0.8164, + "precision": 0.6483677777777802, + "precision_success": 0.6483677777777802, + "correct_pairwise": 0.244, + "correct_pairwise_success": 0.244, + "hallucination_rate": 0.00401003811303035, + "hallucination_rate_success": 0.00401003811303035, + "deletion_rate": 0.0011058885307367865, + "deletion_rate_success": 0.0011058885307367865 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "ml": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5615049779732317, + "f1_success": 0.5615049779732317, + "recall": 0.6554232804232805, + "recall_success": 0.6554232804232805, + "precision": 0.527830792810951, + "precision_success": 0.527830792810951, + "correct_pairwise": 0.09391534391534391, + "correct_pairwise_success": 0.09391534391534391, + "hallucination_rate": 0.0044283819169686905, + "hallucination_rate_success": 0.0044283819169686905, + "deletion_rate": 0.0059274793731573065, + "deletion_rate_success": 0.0059274793731573065 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "mn": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7002647619047646, + "f1_success": 0.7002647619047646, + "recall": 0.7308, + "recall_success": 0.7308, + "precision": 0.7100582051282051, + "precision_success": 0.7100582051282051, + "correct_pairwise": 0.3076, + "correct_pairwise_success": 0.3076, + "hallucination_rate": 0.0022027623800024263, + "hallucination_rate_success": 0.0022027623800024263, + "deletion_rate": 0.0001919116833279044, + "deletion_rate_success": 0.0001919116833279044 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "mr": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5943247907647932, + "f1_success": 0.5943247907647932, + "recall": 0.6368, + "recall_success": 0.6368, + "precision": 0.6110982539682542, + "precision_success": 0.6110982539682542, + "correct_pairwise": 0.1264, + "correct_pairwise_success": 0.1264, + "hallucination_rate": 0.01845174793779083, + "hallucination_rate_success": 0.01845174793779083, + "deletion_rate": 0.0010360322185237383, + "deletion_rate_success": 0.0010360322185237383 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "ms": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7001579487293726, + "f1_success": 0.7001579487293726, + "recall": 0.8035714285714286, + "recall_success": 0.8035714285714286, + "precision": 0.6667267058338479, + "precision_success": 0.6667267058338479, + "correct_pairwise": 0.2708333333333333, + "correct_pairwise_success": 0.2708333333333333, + "hallucination_rate": 0.0028002939480644626, + "hallucination_rate_success": 0.0028002939480644626, + "deletion_rate": 0.005686214173233866, + "deletion_rate_success": 0.005686214173233866 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "mt": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6553113553113553, + "f1_success": 0.6553113553113553, + "recall": 0.7307692307692307, + "recall_success": 0.7307692307692307, + "precision": 0.6403846153846153, + "precision_success": 0.6403846153846153, + "correct_pairwise": 0.19230769230769232, + "correct_pairwise_success": 0.19230769230769232, + "hallucination_rate": 0.001549568499479054, + "hallucination_rate_success": 0.001549568499479054, + "deletion_rate": 0.007063306062367414, + "deletion_rate_success": 0.007063306062367414 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "my": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5136326784326777, + "f1_success": 0.5136326784326777, + "recall": 0.6358, + "recall_success": 0.6358, + "precision": 0.4626103318903346, + "precision_success": 0.4626103318903346, + "correct_pairwise": 0.0884, + "correct_pairwise_success": 0.0884, + "hallucination_rate": 0.0007777015376157116, + "hallucination_rate_success": 0.0007777015376157116, + "deletion_rate": 0.0017232568568641047, + "deletion_rate_success": 0.0017232568568641047 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "ne": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6764268657125816, + "f1_success": 0.6764268657125816, + "recall": 0.8214285714285714, + "recall_success": 0.8214285714285714, + "precision": 0.6111884844027703, + "precision_success": 0.6111884844027703, + "correct_pairwise": 0.19305019305019305, + "correct_pairwise_success": 0.19305019305019305, + "hallucination_rate": 0.008891675467541769, + "hallucination_rate_success": 0.008891675467541769, + "deletion_rate": 0.0007190332039692074, + "deletion_rate_success": 0.0007190332039692074 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "nl": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.769668369408368, + "f1_success": 0.769668369408368, + "recall": 0.8878, + "recall_success": 0.8878, + "precision": 0.7196537103174655, + "precision_success": 0.7196537103174655, + "correct_pairwise": 0.3524, + "correct_pairwise_success": 0.3524, + "hallucination_rate": 0.0019698486990166455, + "hallucination_rate_success": 0.0019698486990166455, + "deletion_rate": 0.0063167320144829, + "deletion_rate_success": 0.0063167320144829 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "pa": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.603672745694022, + "f1_success": 0.603672745694022, + "recall": 0.7021276595744681, + "recall_success": 0.7021276595744681, + "precision": 0.5666666666666665, + "precision_success": 0.5666666666666665, + "correct_pairwise": 0.1702127659574468, + "correct_pairwise_success": 0.1702127659574468, + "hallucination_rate": 0.011356279671013176, + "hallucination_rate_success": 0.011356279671013176, + "deletion_rate": 0.0036338378020326955, + "deletion_rate_success": 0.0036338378020326955 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "pl": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7343102525252525, + "f1_success": 0.7343102525252525, + "recall": 0.873, + "recall_success": 0.873, + "precision": 0.6746723809523856, + "precision_success": 0.6746723809523856, + "correct_pairwise": 0.284, + "correct_pairwise_success": 0.284, + "hallucination_rate": 0.001148436920533467, + "hallucination_rate_success": 0.001148436920533467, + "deletion_rate": 0.004519199018912118, + "deletion_rate_success": 0.004519199018912118 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9564978182508072, + "f1_success": 0.9564978182508072, + "recall": 0.9960159362549801, + "recall_success": 0.9960159362549801, + "precision": 0.9337317397078346, + "precision_success": 0.9337317397078346, + "correct_pairwise": 0.8207171314741036, + "correct_pairwise_success": 0.8207171314741036, + "hallucination_rate": 0.00013880134537740848, + "hallucination_rate_success": 0.00013880134537740848, + "deletion_rate": 0.002192527519363867, + "deletion_rate_success": 0.002192527519363867 + } + } + }, + "ps": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6695084315522268, + "f1_success": 0.6695084315522268, + "recall": 0.8795620437956204, + "recall_success": 0.8795620437956204, + "precision": 0.5685262426138341, + "precision_success": 0.5685262426138341, + "correct_pairwise": 0.1678832116788321, + "correct_pairwise_success": 0.1678832116788321, + "hallucination_rate": 0.0020809230575481005, + "hallucination_rate_success": 0.0020809230575481005, + "deletion_rate": 0.0007645890132440491, + "deletion_rate_success": 0.0007645890132440491 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9510857422147743, + "f1_success": 0.9510857422147743, + "recall": 0.9853372434017595, + "recall_success": 0.9853372434017595, + "precision": 0.9312072336265883, + "precision_success": 0.9312072336265883, + "correct_pairwise": 0.8372434017595308, + "correct_pairwise_success": 0.8372434017595308, + "hallucination_rate": 0.0006950636263675396, + "hallucination_rate_success": 0.0006950636263675396, + "deletion_rate": 0.0019447416217771743, + "deletion_rate_success": 0.0019447416217771743 + } + } + }, + "pt": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7579291801684906, + "f1_success": 0.7579291801684906, + "recall": 0.87, + "recall_success": 0.87, + "precision": 0.71844947570948, + "precision_success": 0.71844947570948, + "correct_pairwise": 0.328, + "correct_pairwise_success": 0.328, + "hallucination_rate": 0.0012476129193182068, + "hallucination_rate_success": 0.0012476129193182068, + "deletion_rate": 0.0034508342591126136, + "deletion_rate_success": 0.0034508342591126136 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "ro": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7198972272172273, + "f1_success": 0.7198972272172273, + "recall": 0.8394, + "recall_success": 0.8394, + "precision": 0.6736192496392528, + "precision_success": 0.6736192496392528, + "correct_pairwise": 0.2812, + "correct_pairwise_success": 0.2812, + "hallucination_rate": 0.0017816592054504877, + "hallucination_rate_success": 0.0017816592054504877, + "deletion_rate": 0.005348498914826303, + "deletion_rate_success": 0.005348498914826303 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.959926984126985, + "f1_success": 0.959926984126985, + "recall": 0.996, + "recall_success": 0.996, + "precision": 0.9404380952380955, + "precision_success": 0.9404380952380955, + "correct_pairwise": 0.846, + "correct_pairwise_success": 0.846, + "hallucination_rate": 0.0006243582977278069, + "hallucination_rate_success": 0.0006243582977278069, + "deletion_rate": 0.0013341217195902905, + "deletion_rate_success": 0.0013341217195902905 + } + } + }, + "ru": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7376602886002895, + "f1_success": 0.7376602886002895, + "recall": 0.8808, + "recall_success": 0.8808, + "precision": 0.6769525396825457, + "precision_success": 0.6769525396825457, + "correct_pairwise": 0.2896, + "correct_pairwise_success": 0.2896, + "hallucination_rate": 0.005110627494068416, + "hallucination_rate_success": 0.005110627494068416, + "deletion_rate": 0.0016374670443644707, + "deletion_rate_success": 0.0016374670443644707 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9862903225806454, + "f1_success": 0.9862903225806454, + "recall": 1.0, + "recall_success": 1.0, + "precision": 0.977822580645161, + "precision_success": 0.977822580645161, + "correct_pairwise": 0.9395161290322581, + "correct_pairwise_success": 0.9395161290322581, + "hallucination_rate": 0.0008858251221485894, + "hallucination_rate_success": 0.0008858251221485894, + "deletion_rate": 0.0009755970249184842, + "deletion_rate_success": 0.0009755970249184842 + } + } + }, + "si": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5955093571372638, + "f1_success": 0.5955093571372638, + "recall": 0.748062015503876, + "recall_success": 0.748062015503876, + "precision": 0.526738033714778, + "precision_success": 0.526738033714778, + "correct_pairwise": 0.16279069767441862, + "correct_pairwise_success": 0.16279069767441862, + "hallucination_rate": 0.002626053242324036, + "hallucination_rate_success": 0.002626053242324036, + "deletion_rate": 0.0015710555765964833, + "deletion_rate_success": 0.0015710555765964833 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "sk": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.697137340910283, + "f1_success": 0.697137340910283, + "recall": 0.8418, + "recall_success": 0.8418, + "precision": 0.6373501731601758, + "precision_success": 0.6373501731601758, + "correct_pairwise": 0.2304, + "correct_pairwise_success": 0.2304, + "hallucination_rate": 0.003301732272418076, + "hallucination_rate_success": 0.003301732272418076, + "deletion_rate": 0.0058937636425625715, + "deletion_rate_success": 0.0058937636425625715 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "sl": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6939812476412475, + "f1_success": 0.6939812476412475, + "recall": 0.825, + "recall_success": 0.825, + "precision": 0.6460621212121253, + "precision_success": 0.6460621212121253, + "correct_pairwise": 0.2312, + "correct_pairwise_success": 0.2312, + "hallucination_rate": 0.0020169758611796964, + "hallucination_rate_success": 0.0020169758611796964, + "deletion_rate": 0.0049312676660023536, + "deletion_rate_success": 0.0049312676660023536 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "sq": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6748963517528229, + "f1_success": 0.6748963517528229, + "recall": 0.78, + "recall_success": 0.78, + "precision": 0.6424058241758273, + "precision_success": 0.6424058241758273, + "correct_pairwise": 0.2196, + "correct_pairwise_success": 0.2196, + "hallucination_rate": 0.0010896130793104147, + "hallucination_rate_success": 0.0010896130793104147, + "deletion_rate": 0.006284639719491186, + "deletion_rate_success": 0.006284639719491186 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "sr": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7186816450216442, + "f1_success": 0.7186816450216442, + "recall": 0.8482, + "recall_success": 0.8482, + "precision": 0.6700098412698463, + "precision_success": 0.6700098412698463, + "correct_pairwise": 0.2768, + "correct_pairwise_success": 0.2768, + "hallucination_rate": 0.0017807752837845445, + "hallucination_rate_success": 0.0017807752837845445, + "deletion_rate": 0.004474098644158447, + "deletion_rate_success": 0.004474098644158447 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "sv": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7317646753246757, + "f1_success": 0.7317646753246757, + "recall": 0.8426, + "recall_success": 0.8426, + "precision": 0.6904955555555603, + "precision_success": 0.6904955555555603, + "correct_pairwise": 0.3036, + "correct_pairwise_success": 0.3036, + "hallucination_rate": 0.0018353528238923011, + "hallucination_rate_success": 0.0018353528238923011, + "deletion_rate": 0.006681205168288853, + "deletion_rate_success": 0.006681205168288853 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "ta": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5593352436412893, + "f1_success": 0.5593352436412893, + "recall": 0.6412811387900356, + "recall_success": 0.6412811387900356, + "precision": 0.5320112410325943, + "precision_success": 0.5320112410325943, + "correct_pairwise": 0.10177935943060498, + "correct_pairwise_success": 0.10177935943060498, + "hallucination_rate": 0.003727363497056773, + "hallucination_rate_success": 0.003727363497056773, + "deletion_rate": 0.0008773235395904057, + "deletion_rate_success": 0.0008773235395904057 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9689243027888449, + "f1_success": 0.9689243027888449, + "recall": 0.9880478087649402, + "recall_success": 0.9880478087649402, + "precision": 0.9581673306772907, + "precision_success": 0.9581673306772907, + "correct_pairwise": 0.896414342629482, + "correct_pairwise_success": 0.896414342629482, + "hallucination_rate": 5.995954093251004e-05, + "hallucination_rate_success": 5.995954093251004e-05, + "deletion_rate": 0.0007168224166254561, + "deletion_rate_success": 0.0007168224166254561 + } + } + }, + "te": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5997542320049875, + "f1_success": 0.5997542320049875, + "recall": 0.6873111782477341, + "recall_success": 0.6873111782477341, + "precision": 0.5719572723349153, + "precision_success": 0.5719572723349153, + "correct_pairwise": 0.14501510574018128, + "correct_pairwise_success": 0.14501510574018128, + "hallucination_rate": 0.0036956792666189295, + "hallucination_rate_success": 0.0036956792666189295, + "deletion_rate": 0.0014475777669801394, + "deletion_rate_success": 0.0014475777669801394 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "tg": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7046365914786964, + "f1_success": 0.7046365914786964, + "recall": 0.7960526315789473, + "recall_success": 0.7960526315789473, + "precision": 0.6736842105263158, + "precision_success": 0.6736842105263158, + "correct_pairwise": 0.2631578947368421, + "correct_pairwise_success": 0.2631578947368421, + "hallucination_rate": 0.004273590912500673, + "hallucination_rate_success": 0.004273590912500673, + "deletion_rate": 0.0003510595615858774, + "deletion_rate_success": 0.0003510595615858774 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "th": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6377106933245635, + "f1_success": 0.6377106933245635, + "recall": 0.9532, + "recall_success": 0.9532, + "precision": 0.5072269356134071, + "precision_success": 0.5072269356134071, + "correct_pairwise": 0.1064, + "correct_pairwise_success": 0.1064, + "hallucination_rate": 0.0023143800642900386, + "hallucination_rate_success": 0.0023143800642900386, + "deletion_rate": 0.000655006324155229, + "deletion_rate_success": 0.000655006324155229 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "tr": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7708152856294018, + "f1_success": 0.7708152856294018, + "recall": 0.8984, + "recall_success": 0.8984, + "precision": 0.7143595526695586, + "precision_success": 0.7143595526695586, + "correct_pairwise": 0.3464, + "correct_pairwise_success": 0.3464, + "hallucination_rate": 0.004159457574508295, + "hallucination_rate_success": 0.004159457574508295, + "deletion_rate": 0.0032691364605659566, + "deletion_rate_success": 0.0032691364605659566 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9563893110435656, + "f1_success": 0.9563893110435656, + "recall": 0.9853723404255319, + "recall_success": 0.9853723404255319, + "precision": 0.9417220744680848, + "precision_success": 0.9417220744680848, + "correct_pairwise": 0.8404255319148937, + "correct_pairwise_success": 0.8404255319148937, + "hallucination_rate": 0.0006752741625126531, + "hallucination_rate_success": 0.0006752741625126531, + "deletion_rate": 0.0019815246532267627, + "deletion_rate_success": 0.0019815246532267627 + } + } + }, + "uk": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7214377720057719, + "f1_success": 0.7214377720057719, + "recall": 0.8542, + "recall_success": 0.8542, + "precision": 0.6661316281785897, + "precision_success": 0.6661316281785897, + "correct_pairwise": 0.2676, + "correct_pairwise_success": 0.2676, + "hallucination_rate": 0.005248351232303586, + "hallucination_rate_success": 0.005248351232303586, + "deletion_rate": 0.0020079313864787107, + "deletion_rate_success": 0.0020079313864787107 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "ur": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6787046058885684, + "f1_success": 0.6787046058885684, + "recall": 0.8689619732785201, + "recall_success": 0.8689619732785201, + "precision": 0.5833859443057785, + "precision_success": 0.5833859443057785, + "correct_pairwise": 0.17985611510791366, + "correct_pairwise_success": 0.17985611510791366, + "hallucination_rate": 0.001848737507566069, + "hallucination_rate_success": 0.001848737507566069, + "deletion_rate": 0.0009473076763764707, + "deletion_rate_success": 0.0009473076763764707 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "uz": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7066430580671058, + "f1_success": 0.7066430580671058, + "recall": 0.7985232067510548, + "recall_success": 0.7985232067510548, + "precision": 0.6842726542093631, + "precision_success": 0.6842726542093631, + "correct_pairwise": 0.23523206751054854, + "correct_pairwise_success": 0.23523206751054854, + "hallucination_rate": 0.0007118439654064576, + "hallucination_rate_success": 0.0007118439654064576, + "deletion_rate": 0.0034157980344862227, + "deletion_rate_success": 0.0034157980344862227 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "vi": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.7146309668109676, + "f1_success": 0.7146309668109676, + "recall": 0.7962, + "recall_success": 0.7962, + "precision": 0.7002101098901126, + "precision_success": 0.7002101098901126, + "correct_pairwise": 0.2948, + "correct_pairwise_success": 0.2948, + "hallucination_rate": 0.01096706041998189, + "hallucination_rate_success": 0.01096706041998189, + "deletion_rate": 0.006873043929119718, + "deletion_rate_success": 0.006873043929119718 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": {} + } + }, + "zh": { + "ted2020-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5457006412553302, + "f1_success": 0.5457006412553302, + "recall": 0.7448173741362291, + "recall_success": 0.7448173741362291, + "precision": 0.46754378870908136, + "precision_success": 0.46754378870908136, + "correct_pairwise": 0.09328726554787758, + "correct_pairwise_success": 0.09328726554787758, + "hallucination_rate": 0.009371017506540357, + "hallucination_rate_success": 0.009371017506540357, + "deletion_rate": 0.0013219064738309986, + "deletion_rate_success": 0.0013219064738309986 + } + }, + "ersatz": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.8075674617779903, + "f1_success": 0.8075674617779903, + "recall": 0.984, + "recall_success": 0.984, + "precision": 0.7330227400050927, + "precision_success": 0.7330227400050927, + "correct_pairwise": 0.49, + "correct_pairwise_success": 0.49, + "hallucination_rate": 0.0005536821504100962, + "hallucination_rate_success": 0.0005536821504100962, + "deletion_rate": 0.009728746116918196, + "deletion_rate_success": 0.009728746116918196 + } + } + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/llama-3_tweets.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/llama-3_tweets.json new file mode 100644 index 0000000000000000000000000000000000000000..2867a5cb7b705be5eed92877507163ec49e8d021 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/llama-3_tweets.json @@ -0,0 +1,138 @@ +{ + "en-de": { + "short-sequences": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9000743912756796, + "f1_success": 0.9000743912756796, + "recall": 0.9680330586439183, + "recall_success": 0.9680330586439183, + "precision": 0.8792181278755463, + "precision_success": 0.8792181278755463, + "correct_pairwise": 0.6340956340956341, + "correct_pairwise_success": 0.6340956340956341, + "hallucination_rate": 0.0011377342104382758, + "hallucination_rate_success": 0.0011377342104382758, + "deletion_rate": 0.008195428111353568, + "deletion_rate_success": 0.008195428111353568 + } + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6814990307122929, + "f1_success": 0.6814990307122929, + "recall": 0.8255033917185627, + "recall_success": 0.8255033917185627, + "precision": 0.6368230781035003, + "precision_success": 0.6368230781035003, + "correct_pairwise": 0.12266112266112267, + "correct_pairwise_success": 0.12266112266112267, + "hallucination_rate": 0.0004693245298112651, + "hallucination_rate_success": 0.0004693245298112651, + "deletion_rate": 0.005197690710770958, + "deletion_rate_success": 0.005197690710770958 + } + } + }, + "et": { + "short-sequences": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9137650111486688, + "f1_success": 0.9137650111486688, + "recall": 0.8866440174062679, + "recall_success": 0.8866440174062679, + "precision": 0.9596589918018488, + "precision_success": 0.9596589918018488, + "correct_pairwise": 0.5615763546798029, + "correct_pairwise_success": 0.5615763546798029, + "hallucination_rate": 0.0012150799494800382, + "hallucination_rate_success": 0.0012150799494800382, + "deletion_rate": 0.0025916411569781627, + "deletion_rate_success": 0.0025916411569781627 + } + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.5635486504595344, + "f1_success": 0.5635486504595344, + "recall": 0.5776919458699341, + "recall_success": 0.5776919458699341, + "precision": 0.622853624208304, + "precision_success": 0.622853624208304, + "correct_pairwise": 0.03940886699507389, + "correct_pairwise_success": 0.03940886699507389, + "hallucination_rate": 0.0011082062155977717, + "hallucination_rate_success": 0.0011082062155977717, + "deletion_rate": 0.0022317863489521067, + "deletion_rate_success": 0.0022317863489521067 + } + } + }, + "sl": { + "short-sequences": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9132655325287299, + "f1_success": 0.9132655325287299, + "recall": 0.9171784085090536, + "recall_success": 0.9171784085090536, + "precision": 0.94169590490155, + "precision_success": 0.94169590490155, + "correct_pairwise": 0.7338709677419355, + "correct_pairwise_success": 0.7338709677419355, + "hallucination_rate": 0.009590024681316176, + "hallucination_rate_success": 0.009590024681316176, + "deletion_rate": 0.009671156528351032, + "deletion_rate_success": 0.009671156528351032 + } + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6835416558840381, + "f1_success": 0.6835416558840381, + "recall": 0.6869996043383146, + "recall_success": 0.6869996043383146, + "precision": 0.7738261430549739, + "precision_success": 0.7738261430549739, + "correct_pairwise": 0.23313782991202345, + "correct_pairwise_success": 0.23313782991202345, + "hallucination_rate": 0.001969530277248845, + "hallucination_rate_success": 0.001969530277248845, + "deletion_rate": 0.011673369745347639, + "deletion_rate_success": 0.011673369745347639 + } + } + }, + "sr": { + "short-sequences": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.9218584656084658, + "f1_success": 0.9218584656084658, + "recall": 0.9375868055555553, + "recall_success": 0.9375868055555553, + "precision": 0.9243923611111113, + "precision_success": 0.9243923611111113, + "correct_pairwise": 0.7604166666666666, + "correct_pairwise_success": 0.7604166666666666, + "hallucination_rate": 0.002547107952804255, + "hallucination_rate_success": 0.002547107952804255, + "deletion_rate": 0.003932671999102301, + "deletion_rate_success": 0.003932671999102301 + } + }, + "short-sequences-corrupted-asr": { + "meta/meta-llama-3-8b-instruct": { + "f1": 0.6767789502164505, + "f1_success": 0.6767789502164505, + "recall": 0.7411458333333338, + "recall_success": 0.7411458333333338, + "precision": 0.6761615410052916, + "precision_success": 0.6761615410052916, + "correct_pairwise": 0.19270833333333334, + "correct_pairwise_success": 0.19270833333333334, + "hallucination_rate": 0.0009933949979813483, + "hallucination_rate_success": 0.0009933949979813483, + "deletion_rate": 0.0038828355682355674, + "deletion_rate_success": 0.0038828355682355674 + } + } + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/sat-12l-no-limited-lookahead.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/sat-12l-no-limited-lookahead.json new file mode 100644 index 0000000000000000000000000000000000000000..7cd81f4c8a52782e6b3b7a705e2d46839d897b3d --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/sat-12l-no-limited-lookahead.json @@ -0,0 +1,3346 @@ +{ + "af": { + "opus100": { + "u": 0.7462411918339981, + "t": 0.8225903033389663, + "punct": null, + "u_acc": 0.3140495867768595, + "t_acc": 0.47107438016528924, + "punct_acc": null, + "threshold_t": 0.17086972296237946, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.8693996484613111, + "t": 0.8900957009447575, + "punct": null, + "u_acc": 0.7169811320754716, + "t_acc": 0.7264150943396226, + "punct_acc": null, + "threshold_t": 0.0639052465558052, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.7020221146374992, + "t": 0.7892551892551892, + "punct": null, + "u_acc": 0.2553846153846154, + "t_acc": 0.38153846153846155, + "punct_acc": null, + "threshold_t": 0.08402670174837112, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7399310091617783, + "t": 0.7883369963369964, + "punct": null, + "u_acc": 0.3046153846153846, + "t_acc": 0.38153846153846155, + "punct_acc": null, + "threshold_t": 0.08099129796028137, + "threshold_adj": 0.01 + } + }, + "am": { + "opus100": { + "u": 0.5397043451536292, + "t": 0.735693166717263, + "punct": null, + "u_acc": 0.04618473895582329, + "t_acc": 0.30522088353413657, + "punct_acc": null, + "threshold_t": 0.19163824617862701, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.554195045405983, + "t": 0.7044414202192735, + "punct": null, + "u_acc": 0.0546875, + "t_acc": 0.296875, + "punct_acc": null, + "threshold_t": 0.0494118258357048, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.5513608830207264, + "t": 0.6838293217199467, + "punct": null, + "u_acc": 0.0703125, + "t_acc": 0.2734375, + "punct_acc": null, + "threshold_t": 0.047310952097177505, + "threshold_adj": 0.01 + } + }, + "ar": { + "ersatz": { + "u": 0.7224403278551521, + "t": 0.7691750378223389, + "punct": null, + "u_acc": 0.31648936170212766, + "t_acc": 0.40425531914893614, + "punct_acc": null, + "threshold_t": 0.018047424033284187, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.6932293936745785, + "t": 0.823341562498189, + "punct": null, + "u_acc": 0.20481927710843373, + "t_acc": 0.4899598393574297, + "punct_acc": null, + "threshold_t": 0.08267717808485031, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.8259239535710124, + "t": 0.8560554684393693, + "punct": null, + "u_acc": 0.5411764705882353, + "t_acc": 0.5941176470588235, + "punct_acc": null, + "threshold_t": 0.1212124302983284, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6368075005004966, + "t": 0.7352308631238044, + "punct": null, + "u_acc": 0.154, + "t_acc": 0.2744, + "punct_acc": null, + "threshold_t": 0.093316450715065, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.6379936383267862, + "t": 0.7275650110329988, + "punct": null, + "u_acc": 0.16, + "t_acc": 0.2672, + "punct_acc": null, + "threshold_t": 0.08205945789813995, + "threshold_adj": 0.01 + } + }, + "az": { + "opus100": { + "u": 0.6456324308748564, + "t": 0.7447871766833034, + "punct": null, + "u_acc": 0.1927710843373494, + "t_acc": 0.3192771084337349, + "punct_acc": null, + "threshold_t": 0.23460319638252258, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.7675943167404533, + "t": 0.7976843257871628, + "punct": null, + "u_acc": 0.3587470449172577, + "t_acc": 0.4095744680851064, + "punct_acc": null, + "threshold_t": 0.021320201456546783, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7813283860596291, + "t": 0.8054349465488391, + "punct": null, + "u_acc": 0.38416075650118203, + "t_acc": 0.43498817966903075, + "punct_acc": null, + "threshold_t": 0.0198686383664608, + "threshold_adj": 0.009999999999999998 + } + }, + "be": { + "opus100": { + "u": 0.7450067933357533, + "t": 0.8234704003183695, + "punct": null, + "u_acc": 0.2953156822810591, + "t_acc": 0.5112016293279023, + "punct_acc": null, + "threshold_t": 0.1496308594942093, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.7191235671329534, + "t": 0.8543162425164337, + "punct": null, + "u_acc": 0.42379182156133827, + "t_acc": 0.6245353159851301, + "punct_acc": null, + "threshold_t": 0.06955911964178085, + "threshold_adj": 0.010000000000000002 + }, + "ted2020-corrupted-asr": { + "u": 0.7234497877620935, + "t": 0.7863627935983548, + "punct": null, + "u_acc": 0.2764438676184296, + "t_acc": 0.399740428293316, + "punct_acc": null, + "threshold_t": 0.06491836160421371, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7523486506156277, + "t": 0.8060451036150343, + "punct": null, + "u_acc": 0.3244646333549643, + "t_acc": 0.43218689162881246, + "punct_acc": null, + "threshold_t": 0.03417561948299408, + "threshold_adj": 0.009999999999999998 + } + }, + "bg": { + "opus100": { + "u": 0.8352679601215035, + "t": 0.8975552879802555, + "punct": null, + "u_acc": 0.5130260521042084, + "t_acc": 0.6693386773547094, + "punct_acc": null, + "threshold_t": 0.030938221141695976, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.872587428501407, + "t": 0.9569897645166461, + "punct": null, + "u_acc": 0.6236559139784946, + "t_acc": 0.8709677419354839, + "punct_acc": null, + "threshold_t": 0.0568266287446022, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.7257914251823541, + "t": 0.7857257786657786, + "punct": null, + "u_acc": 0.2592, + "t_acc": 0.3976, + "punct_acc": null, + "threshold_t": 0.05969195067882538, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7610668841059182, + "t": 0.7951702009102009, + "punct": null, + "u_acc": 0.3332, + "t_acc": 0.4136, + "punct_acc": null, + "threshold_t": 0.06334113329648972, + "threshold_adj": 0.01 + } + }, + "bn": { + "opus100": { + "u": 0.7178910733617986, + "t": 0.8742031459728948, + "punct": null, + "u_acc": 0.26961770623742454, + "t_acc": 0.6217303822937625, + "punct_acc": null, + "threshold_t": 0.11572057753801346, + "threshold_adj": 0.010000000000000002 + }, + "ud": { + "u": 0.8738095238095239, + "t": null, + "punct": null, + "u_acc": 0.5714285714285714, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.42323374561115806, + "t": 0.6328425831927856, + "punct": null, + "u_acc": 0.03230769230769231, + "t_acc": 0.13384615384615384, + "punct_acc": null, + "threshold_t": 0.08825229853391647, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.6449131323745386, + "t": 0.727093709622115, + "punct": null, + "u_acc": 0.16615384615384615, + "t_acc": 0.28384615384615386, + "punct_acc": null, + "threshold_t": 0.04090728610754013, + "threshold_adj": 0.009999999999999998 + } + }, + "ca": { + "opus100": { + "u": 0.7891790803599308, + "t": 0.8851279914565291, + "punct": null, + "u_acc": 0.4482758620689655, + "t_acc": 0.6673427991886409, + "punct_acc": null, + "threshold_t": 0.0575515516102314, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.8795266011181855, + "t": 0.9298176846496174, + "punct": null, + "u_acc": 0.7554112554112554, + "t_acc": 0.8138528138528138, + "punct_acc": null, + "threshold_t": 0.06115436553955078, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.7235613386922675, + "t": 0.7753998238019291, + "punct": null, + "u_acc": 0.2528, + "t_acc": 0.3656, + "punct_acc": null, + "threshold_t": 0.07235638052225113, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7565159007738197, + "t": 0.7814461730082783, + "punct": null, + "u_acc": 0.3308, + "t_acc": 0.3672, + "punct_acc": null, + "threshold_t": 0.09783986955881119, + "threshold_adj": 0.01 + } + }, + "ceb": { + "ud": { + "u": 0.9244542691351201, + "t": null, + "punct": null, + "u_acc": 0.7659574468085106, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.010000000000000002 + }, + "ted2020-corrupted-asr": { + "u": 0.5125953411667697, + "t": 0.6428571428571429, + "punct": null, + "u_acc": 0.07142857142857142, + "t_acc": 0.07142857142857142, + "punct_acc": null, + "threshold_t": 0.0982419028878212, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.5825953411667698, + "t": 0.5816326530612245, + "punct": null, + "u_acc": 0.14285714285714285, + "t_acc": 0.07142857142857142, + "punct_acc": null, + "threshold_t": 0.04704254865646362, + "threshold_adj": 0.009999999999999998 + }, + "nllb": { + "u": 0.661853159643756, + "t": 0.8409170917970917, + "punct": null, + "u_acc": 0.2348, + "t_acc": 0.5312, + "punct_acc": null, + "threshold_t": 0.3238363265991211, + "threshold_adj": 0.01 + } + }, + "cs": { + "ersatz": { + "u": 0.8864335626703013, + "t": 0.9088245216717439, + "punct": null, + "u_acc": 0.7152777777777778, + "t_acc": 0.7384259259259259, + "punct_acc": null, + "threshold_t": 0.04261935129761696, + "threshold_adj": 0.009999999999999998 + }, + "opus100": { + "u": 0.783293216318821, + "t": 0.8621030684900053, + "punct": null, + "u_acc": 0.4105691056910569, + "t_acc": 0.5813008130081301, + "punct_acc": null, + "threshold_t": 0.027863454073667526, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.828847300745302, + "t": 0.8796401833721385, + "punct": null, + "u_acc": 0.5934542586750788, + "t_acc": 0.6723186119873817, + "punct_acc": null, + "threshold_t": 0.039900414645671844, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.7209049023145517, + "t": 0.7821696687396001, + "punct": null, + "u_acc": 0.262, + "t_acc": 0.3828, + "punct_acc": null, + "threshold_t": 0.03985685482621193, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7580185045893725, + "t": 0.7892661189790602, + "punct": null, + "u_acc": 0.3284, + "t_acc": 0.3932, + "punct_acc": null, + "threshold_t": 0.06587418168783188, + "threshold_adj": 0.01 + } + }, + "cy": { + "opus100": { + "u": 0.700909946433964, + "t": 0.8065432868926318, + "punct": null, + "u_acc": 0.1943231441048035, + "t_acc": 0.4279475982532751, + "punct_acc": null, + "threshold_t": 0.12831339240074158, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9100085488740952, + "t": 0.9612645058023209, + "punct": null, + "u_acc": 0.7647058823529411, + "t_acc": 0.8907563025210085, + "punct_acc": null, + "threshold_t": 0.030391117557883263, + "threshold_adj": 0.01 + } + }, + "da": { + "opus100": { + "u": 0.7502881599940809, + "t": 0.8879663347405283, + "punct": null, + "u_acc": 0.4213709677419355, + "t_acc": 0.6754032258064516, + "punct_acc": null, + "threshold_t": 0.06758835911750793, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.7463706321579006, + "t": 0.8483732973094675, + "punct": null, + "u_acc": 0.475177304964539, + "t_acc": 0.5390070921985816, + "punct_acc": null, + "threshold_t": 0.13665367662906647, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.7137180289188584, + "t": 0.7857096681096682, + "punct": null, + "u_acc": 0.256, + "t_acc": 0.3864, + "punct_acc": null, + "threshold_t": 0.08109394460916519, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7564175304367196, + "t": 0.8068119738479615, + "punct": null, + "u_acc": 0.334, + "t_acc": 0.4336, + "punct_acc": null, + "threshold_t": 0.055176761001348495, + "threshold_adj": 0.01 + } + }, + "de": { + "ersatz": { + "u": 0.8661175511171385, + "t": 0.9020207898008304, + "punct": null, + "u_acc": 0.639511201629328, + "t_acc": 0.6924643584521385, + "punct_acc": null, + "threshold_t": 0.054823100566864014, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.6968799638238242, + "t": 0.8661900955832452, + "punct": null, + "u_acc": 0.3037974683544304, + "t_acc": 0.5949367088607594, + "punct_acc": null, + "threshold_t": 0.07835713773965836, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.8609014834503284, + "t": 0.9210713694320252, + "punct": null, + "u_acc": 0.6352459016393442, + "t_acc": 0.7581967213114754, + "punct_acc": null, + "threshold_t": 0.028916532173752785, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.7466287266452664, + "t": 0.7985374432584958, + "punct": null, + "u_acc": 0.3144, + "t_acc": 0.4232, + "punct_acc": null, + "threshold_t": 0.060850199311971664, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7623235352501312, + "t": 0.7872733111333112, + "punct": null, + "u_acc": 0.3524, + "t_acc": 0.3836, + "punct_acc": null, + "threshold_t": 0.09449916332960129, + "threshold_adj": 0.01 + } + }, + "el": { + "opus100": { + "u": 0.8094201059900985, + "t": 0.8977535289889972, + "punct": null, + "u_acc": 0.46586345381526106, + "t_acc": 0.6807228915662651, + "punct_acc": null, + "threshold_t": 0.054105233401060104, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.8474863962495263, + "t": 0.9111338287238564, + "punct": null, + "u_acc": 0.6929824561403509, + "t_acc": 0.7719298245614035, + "punct_acc": null, + "threshold_t": 0.05938529968261719, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.7137577188416445, + "t": 0.7739240685045948, + "punct": null, + "u_acc": 0.236, + "t_acc": 0.3636, + "punct_acc": null, + "threshold_t": 0.1103367954492569, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7539259591411913, + "t": 0.8111461000987317, + "punct": null, + "u_acc": 0.322, + "t_acc": 0.4484, + "punct_acc": null, + "threshold_t": 0.04845251888036728, + "threshold_adj": 0.01 + } + }, + "en": { + "ersatz": { + "u": 0.4698937959534297, + "t": 0.7338124269852897, + "punct": null, + "u_acc": 0.2736240913811007, + "t_acc": 0.39511941848390447, + "punct_acc": null, + "threshold_t": 0.07737099379301071, + "threshold_adj": 0.009999999999999998 + }, + "opus100": { + "u": 0.8367470699338319, + "t": 0.8754317959607333, + "punct": null, + "u_acc": 0.5645161290322581, + "t_acc": 0.6149193548387096, + "punct_acc": null, + "threshold_t": 0.0995228961110115, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.6514097961376508, + "t": 0.7237626323392747, + "punct": null, + "u_acc": 0.41605839416058393, + "t_acc": 0.2116788321167883, + "punct_acc": null, + "threshold_t": 0.18885008990764618, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.7413823723579631, + "t": 0.7561130447330447, + "punct": null, + "u_acc": 0.3112, + "t_acc": 0.322, + "punct_acc": null, + "threshold_t": 0.04861266538500786, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.755640195020853, + "t": 0.7761763238097356, + "punct": null, + "u_acc": 0.346, + "t_acc": 0.384, + "punct_acc": null, + "threshold_t": 0.019070196896791458, + "threshold_adj": 0.01 + } + }, + "eo": { + "opus100": { + "u": 0.7933528198592338, + "t": 0.8919389750034912, + "punct": null, + "u_acc": 0.4475806451612903, + "t_acc": 0.6693548387096774, + "punct_acc": null, + "threshold_t": 0.12653613090515137, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6948454542328935, + "t": 0.733785547507352, + "punct": null, + "u_acc": 0.22556390977443608, + "t_acc": 0.275062656641604, + "punct_acc": null, + "threshold_t": 0.10466712713241577, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7254441218962623, + "t": 0.7753251379373135, + "punct": null, + "u_acc": 0.2869674185463659, + "t_acc": 0.37844611528822053, + "punct_acc": null, + "threshold_t": 0.0368618406355381, + "threshold_adj": 0.009999999999999998 + } + }, + "es": { + "ersatz": { + "u": 0.8675097054625011, + "t": null, + "punct": null, + "u_acc": 0.6723237597911227, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "opus100": { + "u": 0.8029028153997517, + "t": 0.8859977627486585, + "punct": null, + "u_acc": 0.4797570850202429, + "t_acc": 0.6659919028340081, + "punct_acc": null, + "threshold_t": 0.043512120842933655, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.8319541590212572, + "t": 0.9064500761942623, + "punct": null, + "u_acc": 0.6604651162790698, + "t_acc": 0.7465116279069768, + "punct_acc": null, + "threshold_t": 0.09623082727193832, + "threshold_adj": 0.009999999999999997 + }, + "ted2020-corrupted-asr": { + "u": 0.7168666474894513, + "t": 0.7442019713619713, + "punct": null, + "u_acc": 0.2468, + "t_acc": 0.2876, + "punct_acc": null, + "threshold_t": 0.13327527046203613, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7589951296853922, + "t": 0.788186147839089, + "punct": null, + "u_acc": 0.332, + "t_acc": 0.3972, + "punct_acc": null, + "threshold_t": 0.06772887706756592, + "threshold_adj": 0.01 + } + }, + "et": { + "ersatz": { + "u": 0.8501952735311696, + "t": 0.7647486772486771, + "punct": null, + "u_acc": 0.6190476190476191, + "t_acc": 0.29563492063492064, + "punct_acc": null, + "threshold_t": 0.2628614604473114, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.7058250259818929, + "t": 0.8454210345440031, + "punct": null, + "u_acc": 0.2793522267206478, + "t_acc": 0.5748987854251012, + "punct_acc": null, + "threshold_t": 0.05069363862276077, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.7602315263403637, + "t": 0.8438183733803111, + "punct": null, + "u_acc": 0.47139303482587064, + "t_acc": 0.6343283582089553, + "punct_acc": null, + "threshold_t": 0.023988820612430573, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.7355979531968447, + "t": 0.7698908846708847, + "punct": null, + "u_acc": 0.2716, + "t_acc": 0.3476, + "punct_acc": null, + "threshold_t": 0.10298468917608261, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7627901081887695, + "t": 0.7988125953417423, + "punct": null, + "u_acc": 0.3296, + "t_acc": 0.4136, + "punct_acc": null, + "threshold_t": 0.06059236079454422, + "threshold_adj": 0.01 + } + }, + "eu": { + "opus100": { + "u": 0.6761636213009442, + "t": 0.8441356019504326, + "punct": null, + "u_acc": 0.29554655870445345, + "t_acc": 0.5728744939271255, + "punct_acc": null, + "threshold_t": 0.11762842535972595, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.8194601178855676, + "t": 0.9258565298173141, + "punct": null, + "u_acc": 0.5711111111111111, + "t_acc": 0.7933333333333333, + "punct_acc": null, + "threshold_t": 0.05893353000283241, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6493799209347122, + "t": 0.7399875885762984, + "punct": null, + "u_acc": 0.1646505376344086, + "t_acc": 0.28225806451612906, + "punct_acc": null, + "threshold_t": 0.06540399044752121, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7069063385992816, + "t": 0.765413898377608, + "punct": null, + "u_acc": 0.24596774193548387, + "t_acc": 0.3353494623655914, + "punct_acc": null, + "threshold_t": 0.07222872972488403, + "threshold_adj": 0.009999999999999998 + } + }, + "fa": { + "opus100": { + "u": 0.6235840265785088, + "t": 0.7755397889361468, + "punct": null, + "u_acc": 0.156312625250501, + "t_acc": 0.3847695390781563, + "punct_acc": null, + "threshold_t": 0.15697535872459412, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.8726556410622345, + "t": 0.957997557997558, + "punct": null, + "u_acc": 0.5961538461538461, + "t_acc": 0.8626373626373627, + "punct_acc": null, + "threshold_t": 0.04455801472067833, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6939058007774969, + "t": 0.7635598445998446, + "punct": null, + "u_acc": 0.2344, + "t_acc": 0.3464, + "punct_acc": null, + "threshold_t": 0.07707837969064713, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.6949809118738492, + "t": 0.7575133862570533, + "punct": null, + "u_acc": 0.2352, + "t_acc": 0.3436, + "punct_acc": null, + "threshold_t": 0.0450618714094162, + "threshold_adj": 0.01 + } + }, + "fi": { + "ersatz": { + "u": 0.8609918459125826, + "t": 0.9333328439540864, + "punct": null, + "u_acc": 0.6232464929859719, + "t_acc": 0.7855711422845691, + "punct_acc": null, + "threshold_t": 0.06286048889160156, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.7844978799502597, + "t": 0.8907762545854254, + "punct": null, + "u_acc": 0.42052313883299797, + "t_acc": 0.6519114688128773, + "punct_acc": null, + "threshold_t": 0.03432605043053627, + "threshold_adj": 0.010000000000000002 + }, + "ud": { + "u": 0.7958843152670361, + "t": 0.8859834724267714, + "punct": null, + "u_acc": 0.5283505154639175, + "t_acc": 0.6829896907216495, + "punct_acc": null, + "threshold_t": 0.06031952425837517, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.7125633954050915, + "t": 0.7506562948162948, + "punct": null, + "u_acc": 0.2528, + "t_acc": 0.3044, + "punct_acc": null, + "threshold_t": 0.0962330549955368, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7515148949731114, + "t": 0.7894446775446775, + "punct": null, + "u_acc": 0.3268, + "t_acc": 0.3948, + "punct_acc": null, + "threshold_t": 0.04666024073958397, + "threshold_adj": 0.01 + } + }, + "fr": { + "ersatz": { + "u": 0.8777675314682746, + "t": 0.9120962236904265, + "punct": null, + "u_acc": 0.6956521739130435, + "t_acc": 0.7367149758454107, + "punct_acc": null, + "threshold_t": 0.06313912570476532, + "threshold_adj": 0.009999999999999997 + }, + "opus100": { + "u": 0.7806470892512873, + "t": null, + "punct": null, + "u_acc": 0.43204868154158216, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.8270754028106969, + "t": 0.9355194641959348, + "punct": null, + "u_acc": 0.6153846153846154, + "t_acc": 0.8076923076923077, + "punct_acc": null, + "threshold_t": 0.05478711053729057, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.7204254047912871, + "t": 0.7811930194951249, + "punct": null, + "u_acc": 0.2432, + "t_acc": 0.38, + "punct_acc": null, + "threshold_t": 0.06927863508462906, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7431041184958833, + "t": 0.7859197039218092, + "punct": null, + "u_acc": 0.3112, + "t_acc": 0.386, + "punct_acc": null, + "threshold_t": 0.08429136127233505, + "threshold_adj": 0.01 + } + }, + "fy": { + "opus100": { + "u": 0.7366969630274351, + "t": 0.7750065980752676, + "punct": null, + "u_acc": 0.28969957081545067, + "t_acc": 0.37553648068669526, + "punct_acc": null, + "threshold_t": 0.16443495452404022, + "threshold_adj": 0.01 + } + }, + "ga": { + "opus100": { + "u": 0.7091372429059087, + "t": 0.884954173109069, + "punct": null, + "u_acc": 0.3326612903225806, + "t_acc": 0.6733870967741935, + "punct_acc": null, + "threshold_t": 0.09284067153930664, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.774973062194212, + "t": 0.8089263562947774, + "punct": null, + "u_acc": 0.4649122807017544, + "t_acc": 0.4298245614035088, + "punct_acc": null, + "threshold_t": 0.28471624851226807, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.516912716912717, + "t": 0.6361111111111111, + "punct": null, + "u_acc": 0.08333333333333333, + "t_acc": 0.16666666666666666, + "punct_acc": null, + "threshold_t": 0.08492386341094971, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.5962962962962963, + "t": 0.65, + "punct": null, + "u_acc": 0.08333333333333333, + "t_acc": 0.16666666666666666, + "punct_acc": null, + "threshold_t": 0.06066688895225525, + "threshold_adj": 0.009999999999999998 + } + }, + "gd": { + "opus100": { + "u": 0.7497313392693509, + "t": 0.8393979477312811, + "punct": null, + "u_acc": 0.3333333333333333, + "t_acc": 0.5444444444444444, + "punct_acc": null, + "threshold_t": 0.17354267835617065, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.5873962248039047, + "t": 0.7358834370250779, + "punct": null, + "u_acc": 0.23529411764705882, + "t_acc": 0.39705882352941174, + "punct_acc": null, + "threshold_t": 0.07395295798778534, + "threshold_adj": 0.009999999999999998 + } + }, + "gl": { + "opus100": { + "u": 0.7963767079694499, + "t": 0.8862506892748827, + "punct": null, + "u_acc": 0.4334677419354839, + "t_acc": 0.6411290322580645, + "punct_acc": null, + "threshold_t": 0.11215537041425705, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.8265969652683208, + "t": 0.9297338935574229, + "punct": null, + "u_acc": 0.65, + "t_acc": 0.82, + "punct_acc": null, + "threshold_t": 0.09006289392709732, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.7162966283046158, + "t": 0.7822843933843934, + "punct": null, + "u_acc": 0.246, + "t_acc": 0.384, + "punct_acc": null, + "threshold_t": 0.06694859266281128, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.754500082415005, + "t": 0.7932450462739875, + "punct": null, + "u_acc": 0.3236, + "t_acc": 0.4004, + "punct_acc": null, + "threshold_t": 0.06373061239719391, + "threshold_adj": 0.01 + } + }, + "gu": { + "ersatz": { + "u": 0.9240466008182544, + "t": 0.8876386518118801, + "punct": null, + "u_acc": 0.7362204724409449, + "t_acc": 0.6732283464566929, + "punct_acc": null, + "threshold_t": 0.036841630935668945, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.7168415395528548, + "t": 0.809824777179545, + "punct": null, + "u_acc": 0.19461697722567287, + "t_acc": 0.42857142857142855, + "punct_acc": null, + "threshold_t": 0.10106858611106873, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.5065595482307309, + "t": 0.6342967257970374, + "punct": null, + "u_acc": 0.07381193124368049, + "t_acc": 0.16885743174924167, + "punct_acc": null, + "threshold_t": 0.06463704258203506, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.5974790366765843, + "t": 0.687366198104464, + "punct": null, + "u_acc": 0.13751263902932254, + "t_acc": 0.17138523761375127, + "punct_acc": null, + "threshold_t": 0.15034981071949005, + "threshold_adj": 0.01 + } + }, + "ha": { + "opus100": { + "u": 0.500455606302609, + "t": 0.728806441629212, + "punct": null, + "u_acc": 0.138, + "t_acc": 0.28, + "punct_acc": null, + "threshold_t": 0.4042413532733917, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6388888888888888, + "t": 0.6222222222222222, + "punct": null, + "u_acc": 0.3333333333333333, + "t_acc": 0.0, + "punct_acc": null, + "threshold_t": 0.07234271615743637, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7333333333333334, + "t": 0.7222222222222222, + "punct": null, + "u_acc": 0.3333333333333333, + "t_acc": 0.3333333333333333, + "punct_acc": null, + "threshold_t": 0.12043071538209915, + "threshold_adj": 0.01 + } + }, + "he": { + "opus100": { + "u": 0.7861282338236246, + "t": 0.8597656518498201, + "punct": null, + "u_acc": 0.3587174348697395, + "t_acc": 0.561122244488978, + "punct_acc": null, + "threshold_t": 0.027788808569312096, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9121181139788583, + "t": 0.9111223243876305, + "punct": null, + "u_acc": 0.8163265306122449, + "t_acc": 0.7857142857142857, + "punct_acc": null, + "threshold_t": 0.02628382295370102, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.650370011396398, + "t": 0.7417577554471673, + "punct": null, + "u_acc": 0.1616, + "t_acc": 0.3036, + "punct_acc": null, + "threshold_t": 0.10338319838047028, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.6641887074768993, + "t": 0.7382636993725229, + "punct": null, + "u_acc": 0.192, + "t_acc": 0.308, + "punct_acc": null, + "threshold_t": 0.058549657464027405, + "threshold_adj": 0.01 + } + }, + "hi": { + "ersatz": { + "u": 0.8961737652291908, + "t": 0.8972134038800706, + "punct": null, + "u_acc": 0.6841269841269841, + "t_acc": 0.6873015873015873, + "punct_acc": null, + "threshold_t": 0.06009909138083458, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.6290492316161564, + "t": 0.7345969447410524, + "punct": null, + "u_acc": 0.20040485829959515, + "t_acc": 0.3319838056680162, + "punct_acc": null, + "threshold_t": 0.1601180136203766, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.9766159414615472, + "t": 0.9831467028616673, + "punct": null, + "u_acc": 0.9049881235154394, + "t_acc": 0.9358669833729216, + "punct_acc": null, + "threshold_t": 0.024755172431468964, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.5722044825487399, + "t": 0.6869602085060909, + "punct": null, + "u_acc": 0.1264, + "t_acc": 0.2276, + "punct_acc": null, + "threshold_t": 0.06354209035634995, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.679073658586869, + "t": 0.7378715473729678, + "punct": null, + "u_acc": 0.2092, + "t_acc": 0.2956, + "punct_acc": null, + "threshold_t": 0.04789718985557556, + "threshold_adj": 0.01 + } + }, + "hu": { + "opus100": { + "u": 0.7745891339128156, + "t": 0.8941010490405651, + "punct": null, + "u_acc": 0.3790322580645161, + "t_acc": 0.6653225806451613, + "punct_acc": null, + "threshold_t": 0.052902232855558395, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.757449675590434, + "t": 0.8509216295400506, + "punct": null, + "u_acc": 0.4642857142857143, + "t_acc": 0.6071428571428571, + "punct_acc": null, + "threshold_t": 0.07543044537305832, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.7167699034704492, + "t": 0.7743138407080263, + "punct": null, + "u_acc": 0.25, + "t_acc": 0.3664, + "punct_acc": null, + "threshold_t": 0.0908251628279686, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7576221899999609, + "t": 0.7934558621523328, + "punct": null, + "u_acc": 0.336, + "t_acc": 0.4068, + "punct_acc": null, + "threshold_t": 0.0830591470003128, + "threshold_adj": 0.01 + } + }, + "hy": { + "opus100": { + "u": 0.605846037280462, + "t": null, + "punct": null, + "u_acc": 0.13211845102505695, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.41718565696690235, + "t": 0.7644966390292257, + "punct": null, + "u_acc": 0.0945945945945946, + "t_acc": 0.47297297297297297, + "punct_acc": null, + "threshold_t": 0.26202017068862915, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.676858296924037, + "t": 0.7596265786065787, + "punct": null, + "u_acc": 0.198, + "t_acc": 0.3244, + "punct_acc": null, + "threshold_t": 0.14536896347999573, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.6873683524690732, + "t": 0.7712642250216244, + "punct": null, + "u_acc": 0.2332, + "t_acc": 0.3556, + "punct_acc": null, + "threshold_t": 0.11103285849094391, + "threshold_adj": 0.01 + } + }, + "id": { + "opus100": { + "u": 0.7626430305789502, + "t": 0.874704746528517, + "punct": null, + "u_acc": 0.3668032786885246, + "t_acc": 0.6229508196721312, + "punct_acc": null, + "threshold_t": 0.06966007500886917, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.8397722600158493, + "t": null, + "punct": null, + "u_acc": 0.656, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6911837477094929, + "t": 0.7241663564213564, + "punct": null, + "u_acc": 0.2204, + "t_acc": 0.2356, + "punct_acc": null, + "threshold_t": 0.10548818856477737, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7350332143698441, + "t": 0.7764232934712347, + "punct": null, + "u_acc": 0.3004, + "t_acc": 0.366, + "punct_acc": null, + "threshold_t": 0.03946973755955696, + "threshold_adj": 0.01 + } + }, + "ig": { + "opus100": { + "u": 0.6747954927857209, + "t": 0.8143435043920482, + "punct": null, + "u_acc": 0.18689320388349515, + "t_acc": 0.4368932038834951, + "punct_acc": null, + "threshold_t": 0.13112567365169525, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.28189615067408175, + "t": 0.5372327019385843, + "punct": null, + "u_acc": 0.07692307692307693, + "t_acc": 0.0, + "punct_acc": null, + "threshold_t": 0.12362644076347351, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.33995703600907223, + "t": 0.6473193473193473, + "punct": null, + "u_acc": 0.07692307692307693, + "t_acc": 0.23076923076923078, + "punct_acc": null, + "threshold_t": 0.11992623656988144, + "threshold_adj": 0.01 + } + }, + "is": { + "opus100": { + "u": 0.6537116411447199, + "t": 0.8781058902434212, + "punct": null, + "u_acc": 0.21327967806841047, + "t_acc": 0.613682092555332, + "punct_acc": null, + "threshold_t": 0.07726389169692993, + "threshold_adj": 0.010000000000000002 + }, + "ud": { + "u": 0.5740002177252502, + "t": 0.6643037136397499, + "punct": null, + "u_acc": 0.26144297905352987, + "t_acc": 0.10938712179984485, + "punct_acc": null, + "threshold_t": 0.365448921918869, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6934877010763855, + "t": 0.7806373439961226, + "punct": null, + "u_acc": 0.2010178117048346, + "t_acc": 0.3638676844783715, + "punct_acc": null, + "threshold_t": 0.07605885714292526, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7497262089362986, + "t": 0.7783250535158932, + "punct": null, + "u_acc": 0.3282442748091603, + "t_acc": 0.366412213740458, + "punct_acc": null, + "threshold_t": 0.09425143897533417, + "threshold_adj": 0.009999999999999998 + } + }, + "it": { + "opus100": { + "u": 0.7534575970676218, + "t": 0.8744552585787105, + "punct": null, + "u_acc": 0.4012096774193548, + "t_acc": 0.655241935483871, + "punct_acc": null, + "threshold_t": 0.06702739000320435, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.8645619631868342, + "t": 0.9617592592592593, + "punct": null, + "u_acc": 0.6666666666666666, + "t_acc": 0.8916666666666667, + "punct_acc": null, + "threshold_t": 0.07127705961465836, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.7033590189170995, + "t": 0.7656222977022977, + "punct": null, + "u_acc": 0.2276, + "t_acc": 0.3452, + "punct_acc": null, + "threshold_t": 0.10839729011058807, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7496403079892243, + "t": 0.795552019092019, + "punct": null, + "u_acc": 0.312, + "t_acc": 0.404, + "punct_acc": null, + "threshold_t": 0.08441238105297089, + "threshold_adj": 0.01 + } + }, + "ja": { + "ersatz": { + "u": 0.45190361138852525, + "t": 0.7483427020740454, + "punct": null, + "u_acc": 0.07835820895522388, + "t_acc": 0.3283582089552239, + "punct_acc": null, + "threshold_t": 0.5999999642372131, + "threshold_adj": 0.009999999999999998 + }, + "opus100": { + "u": 0.7277926145041665, + "t": 0.8325272228886686, + "punct": null, + "u_acc": 0.2469879518072289, + "t_acc": 0.5160642570281124, + "punct_acc": null, + "threshold_t": 0.04987381398677826, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.5746683827042596, + "t": 0.7958021265547217, + "punct": null, + "u_acc": 0.16176470588235295, + "t_acc": 0.41911764705882354, + "punct_acc": null, + "threshold_t": 0.5070424675941467, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.7161192554296633, + "t": 0.8585273015873015, + "punct": null, + "u_acc": 0.2824, + "t_acc": 0.578, + "punct_acc": null, + "threshold_t": 0.2162763923406601, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7050321564536978, + "t": 0.8533663492063491, + "punct": null, + "u_acc": 0.2692, + "t_acc": 0.566, + "punct_acc": null, + "threshold_t": 0.2193368524312973, + "threshold_adj": 0.01 + } + }, + "jv": { + "ud": { + "u": 0.7776810151409778, + "t": null, + "punct": null, + "u_acc": 0.496, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "nllb": { + "u": 0.65249102172844, + "t": 0.8459648743069796, + "punct": null, + "u_acc": 0.1872, + "t_acc": 0.5376, + "punct_acc": null, + "threshold_t": 0.24660855531692505, + "threshold_adj": 0.01 + } + }, + "ka": { + "opus100": { + "u": 0.3548511000696706, + "t": 0.35765253671352204, + "punct": null, + "u_acc": 0.014, + "t_acc": 0.014, + "punct_acc": null, + "threshold_t": 0.016498446464538574, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6437995439602985, + "t": 0.7335275184990804, + "punct": null, + "u_acc": 0.1524, + "t_acc": 0.2748, + "punct_acc": null, + "threshold_t": 0.1277940422296524, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.649746134202352, + "t": 0.7367036444714706, + "punct": null, + "u_acc": 0.1644, + "t_acc": 0.2896, + "punct_acc": null, + "threshold_t": 0.08621473610401154, + "threshold_adj": 0.01 + } + }, + "kk": { + "ersatz": { + "u": 0.8123966756693265, + "t": 0.7878031746031745, + "punct": null, + "u_acc": 0.564, + "t_acc": 0.376, + "punct_acc": null, + "threshold_t": 0.35713326930999756, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.759040161705451, + "t": 0.8056017673786269, + "punct": null, + "u_acc": 0.3202479338842975, + "t_acc": 0.40702479338842973, + "punct_acc": null, + "threshold_t": 0.20200872421264648, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.8175906016856126, + "t": 0.7485773768216515, + "punct": null, + "u_acc": 0.5992366412213741, + "t_acc": 0.2748091603053435, + "punct_acc": null, + "threshold_t": 0.29127442836761475, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.769286097020228, + "t": 0.7993506303567907, + "punct": null, + "u_acc": 0.34223134839151265, + "t_acc": 0.4134154688569473, + "punct_acc": null, + "threshold_t": 0.01841188222169876, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7762942924218441, + "t": 0.8048389690451724, + "punct": null, + "u_acc": 0.36960985626283366, + "t_acc": 0.42915811088295686, + "punct_acc": null, + "threshold_t": 0.04674410820007324, + "threshold_adj": 0.01 + } + }, + "km": { + "ersatz": { + "u": 0.6481683100642095, + "t": 0.9285875706214689, + "punct": null, + "u_acc": 0.2711864406779661, + "t_acc": 0.7813559322033898, + "punct_acc": null, + "threshold_t": 0.7252073287963867, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.6292436346482256, + "t": 0.7822516773032236, + "punct": null, + "u_acc": 0.13814432989690723, + "t_acc": 0.3731958762886598, + "punct_acc": null, + "threshold_t": 0.39394018054008484, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.7315174382843554, + "t": 0.8385964912280701, + "punct": null, + "u_acc": 0.2556390977443609, + "t_acc": 0.518796992481203, + "punct_acc": null, + "threshold_t": 0.2973353862762451, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7325054227309866, + "t": 0.8107769423558898, + "punct": null, + "u_acc": 0.3082706766917293, + "t_acc": 0.43609022556390975, + "punct_acc": null, + "threshold_t": 0.452352911233902, + "threshold_adj": 0.01 + } + }, + "kn": { + "opus100": { + "u": 0.7054523893019468, + "t": 0.7827363393735075, + "punct": null, + "u_acc": 0.18141592920353983, + "t_acc": 0.37610619469026546, + "punct_acc": null, + "threshold_t": 0.13258981704711914, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.5031971319507312, + "t": 0.637009610436184, + "punct": null, + "u_acc": 0.04895104895104895, + "t_acc": 0.13286713286713286, + "punct_acc": null, + "threshold_t": 0.07348639518022537, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.5900019683420492, + "t": 0.6739399489399489, + "punct": null, + "u_acc": 0.0944055944055944, + "t_acc": 0.17132867132867133, + "punct_acc": null, + "threshold_t": 0.08862759917974472, + "threshold_adj": 0.01 + } + }, + "ko": { + "opus100": { + "u": 0.7214581190289692, + "t": 0.8194861059992639, + "punct": null, + "u_acc": 0.25101214574898784, + "t_acc": 0.43724696356275305, + "punct_acc": null, + "threshold_t": 0.10207992047071457, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.95320032531571, + "t": 0.9541553207105048, + "punct": null, + "u_acc": 0.8391608391608392, + "t_acc": 0.8479020979020979, + "punct_acc": null, + "threshold_t": 0.015119185671210289, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.7002910967278635, + "t": 0.782363885633817, + "punct": null, + "u_acc": 0.2624, + "t_acc": 0.3936, + "punct_acc": null, + "threshold_t": 0.041432350873947144, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7092710362756636, + "t": 0.7720866161289691, + "punct": null, + "u_acc": 0.2696, + "t_acc": 0.374, + "punct_acc": null, + "threshold_t": 0.037183649837970734, + "threshold_adj": 0.01 + } + }, + "ku": { + "opus100": { + "u": 0.6403826272406813, + "t": 0.7228861378182645, + "punct": null, + "u_acc": 0.23700623700623702, + "t_acc": 0.20374220374220375, + "punct_acc": null, + "threshold_t": 0.6417993903160095, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.3762896715829894, + "t": 0.6387564514260909, + "punct": null, + "u_acc": 0.018, + "t_acc": 0.1468, + "punct_acc": null, + "threshold_t": 0.12150392681360245, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.3837410555382242, + "t": 0.6323281190016334, + "punct": null, + "u_acc": 0.0264, + "t_acc": 0.1576, + "punct_acc": null, + "threshold_t": 0.12033358216285706, + "threshold_adj": 0.01 + } + }, + "ky": { + "opus100": { + "u": 0.7973732915104728, + "t": 0.8676946334089191, + "punct": null, + "u_acc": 0.4, + "t_acc": 0.5904761904761905, + "punct_acc": null, + "threshold_t": 0.08654170483350754, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.7832569391392922, + "t": 0.8225178960473077, + "punct": null, + "u_acc": 0.3627450980392157, + "t_acc": 0.4117647058823529, + "punct_acc": null, + "threshold_t": 0.027645820751786232, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7822984749455337, + "t": 0.7873171490818551, + "punct": null, + "u_acc": 0.39215686274509803, + "t_acc": 0.4215686274509804, + "punct_acc": null, + "threshold_t": 0.10091089457273483, + "threshold_adj": 0.009999999999999998 + } + }, + "la": { + "ud": { + "u": 0.7998533583655576, + "t": 0.7975028586848644, + "punct": null, + "u_acc": 0.4380952380952381, + "t_acc": 0.4533333333333333, + "punct_acc": null, + "threshold_t": 0.008251465857028961, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6349206349206349, + "t": 0.611111111111111, + "punct": null, + "u_acc": 0.0, + "t_acc": 0.0, + "punct_acc": null, + "threshold_t": 0.28847119212150574, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7238095238095239, + "t": 0.6666666666666666, + "punct": null, + "u_acc": 0.0, + "t_acc": 0.0, + "punct_acc": null, + "threshold_t": 0.5732043385505676, + "threshold_adj": 0.01 + } + }, + "lt": { + "ersatz": { + "u": 0.8255077691743422, + "t": 0.8354974358974359, + "punct": null, + "u_acc": 0.628, + "t_acc": 0.512, + "punct_acc": null, + "threshold_t": 0.27876564860343933, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.6063258833519996, + "t": 0.8496550777205308, + "punct": null, + "u_acc": 0.26814516129032256, + "t_acc": 0.6008064516129032, + "punct_acc": null, + "threshold_t": 0.19783656299114227, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.6784316325390782, + "t": 0.7782148975131432, + "punct": null, + "u_acc": 0.4444444444444444, + "t_acc": 0.39766081871345027, + "punct_acc": null, + "threshold_t": 0.25877875089645386, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.7156058814388226, + "t": 0.7598898989898989, + "punct": null, + "u_acc": 0.242, + "t_acc": 0.3196, + "punct_acc": null, + "threshold_t": 0.10506356507539749, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7473330575854109, + "t": 0.795140313554022, + "punct": null, + "u_acc": 0.3188, + "t_acc": 0.4044, + "punct_acc": null, + "threshold_t": 0.03770362213253975, + "threshold_adj": 0.01 + } + }, + "lv": { + "ersatz": { + "u": 0.8635436817407857, + "t": 0.7493827160493827, + "punct": null, + "u_acc": 0.6865079365079365, + "t_acc": 0.25595238095238093, + "punct_acc": null, + "threshold_t": 0.34735098481178284, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.6169988270105569, + "t": 0.8590900905958775, + "punct": null, + "u_acc": 0.29006085192697767, + "t_acc": 0.6105476673427992, + "punct_acc": null, + "threshold_t": 0.2484002560377121, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.7400749879962474, + "t": 0.8433195141272544, + "punct": null, + "u_acc": 0.4709784411276949, + "t_acc": 0.6235489220563848, + "punct_acc": null, + "threshold_t": 0.053445782512426376, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.7205893611926429, + "t": 0.7779715040515041, + "punct": null, + "u_acc": 0.2504, + "t_acc": 0.3716, + "punct_acc": null, + "threshold_t": 0.06831618398427963, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7493603842840213, + "t": 0.7883037265658318, + "punct": null, + "u_acc": 0.3128, + "t_acc": 0.3884, + "punct_acc": null, + "threshold_t": 0.0693230926990509, + "threshold_adj": 0.01 + } + }, + "mg": { + "opus100": { + "u": 0.7628605392129162, + "t": 0.8775341239010533, + "punct": null, + "u_acc": 0.4817813765182186, + "t_acc": 0.6518218623481782, + "punct_acc": null, + "threshold_t": 0.20589673519134521, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.5877678905456684, + "t": 0.6887298915076693, + "punct": null, + "u_acc": 0.09259259259259259, + "t_acc": 0.2222222222222222, + "punct_acc": null, + "threshold_t": 0.12973973155021667, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.6494085352706043, + "t": 0.694613030397344, + "punct": null, + "u_acc": 0.14814814814814814, + "t_acc": 0.25925925925925924, + "punct_acc": null, + "threshold_t": 0.09519579261541367, + "threshold_adj": 0.01 + } + }, + "mk": { + "opus100": { + "u": 0.7967371380294042, + "t": 0.882712172141584, + "punct": null, + "u_acc": 0.45, + "t_acc": 0.646, + "punct_acc": null, + "threshold_t": 0.059695322066545486, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.7040830805360216, + "t": 0.7663643001443001, + "punct": null, + "u_acc": 0.2316, + "t_acc": 0.3392, + "punct_acc": null, + "threshold_t": 0.11587966978549957, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7390768293973324, + "t": 0.7939146164946165, + "punct": null, + "u_acc": 0.306, + "t_acc": 0.408, + "punct_acc": null, + "threshold_t": 0.04510485753417015, + "threshold_adj": 0.01 + } + }, + "ml": { + "opus100": { + "u": 0.7486074348629833, + "t": 0.8220339678171004, + "punct": null, + "u_acc": 0.2891566265060241, + "t_acc": 0.46987951807228917, + "punct_acc": null, + "threshold_t": 0.08955559134483337, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.5545852049671661, + "t": 0.6782983058543283, + "punct": null, + "u_acc": 0.07539682539682539, + "t_acc": 0.19973544973544974, + "punct_acc": null, + "threshold_t": 0.0785001739859581, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.6336050308062446, + "t": 0.7107089213998645, + "punct": null, + "u_acc": 0.14814814814814814, + "t_acc": 0.23544973544973544, + "punct_acc": null, + "threshold_t": 0.07504121959209442, + "threshold_adj": 0.01 + } + }, + "mn": { + "opus100": { + "u": 0.7955257718756821, + "t": null, + "punct": null, + "u_acc": 0.3416030534351145, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.8062064162944039, + "t": 0.8442175186904598, + "punct": null, + "u_acc": 0.4404, + "t_acc": 0.534, + "punct_acc": null, + "threshold_t": 0.025924542918801308, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.8087021157103076, + "t": 0.8289230596967682, + "punct": null, + "u_acc": 0.4456, + "t_acc": 0.4864, + "punct_acc": null, + "threshold_t": 0.03463561460375786, + "threshold_adj": 0.01 + }, + "nllb": { + "u": 0.7481905563641111, + "t": 0.82530290885585, + "punct": null, + "u_acc": 0.36, + "t_acc": 0.4792, + "punct_acc": null, + "threshold_t": 0.32259994745254517, + "threshold_adj": 0.01 + } + }, + "mr": { + "opus100": { + "u": 0.8776151491877299, + "t": 0.8172427035330261, + "punct": null, + "u_acc": 0.5987903225806451, + "t_acc": 0.4435483870967742, + "punct_acc": null, + "threshold_t": 0.14453332126140594, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.8266594516594518, + "t": 0.8452380952380952, + "punct": null, + "u_acc": 0.6666666666666666, + "t_acc": 0.5833333333333334, + "punct_acc": null, + "threshold_t": 0.029353925958275795, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.4712543281931581, + "t": 0.6460635618286082, + "punct": null, + "u_acc": 0.0488, + "t_acc": 0.1328, + "punct_acc": null, + "threshold_t": 0.10214222222566605, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.6471903358787299, + "t": 0.7215527781678246, + "punct": null, + "u_acc": 0.1852, + "t_acc": 0.2792, + "punct_acc": null, + "threshold_t": 0.06961324065923691, + "threshold_adj": 0.01 + } + }, + "ms": { + "opus100": { + "u": 0.7530623007228899, + "t": 0.861618766278907, + "punct": null, + "u_acc": 0.35802469135802467, + "t_acc": 0.5596707818930041, + "punct_acc": null, + "threshold_t": 0.07609706372022629, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6854105656536872, + "t": 0.7541314340421483, + "punct": null, + "u_acc": 0.21785714285714286, + "t_acc": 0.33214285714285713, + "punct_acc": null, + "threshold_t": 0.04506708309054375, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7212703460467125, + "t": 0.7571321710502383, + "punct": null, + "u_acc": 0.29642857142857143, + "t_acc": 0.32083333333333336, + "punct_acc": null, + "threshold_t": 0.08141870051622391, + "threshold_adj": 0.009999999999999998 + } + }, + "mt": { + "opus100": { + "u": 0.4074628058285113, + "t": 0.7578419230066601, + "punct": null, + "u_acc": 0.0951417004048583, + "t_acc": 0.4089068825910931, + "punct_acc": null, + "threshold_t": 0.48450610041618347, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.5896123941171237, + "t": 0.7030526738219046, + "punct": null, + "u_acc": 0.33076923076923076, + "t_acc": 0.16923076923076924, + "punct_acc": null, + "threshold_t": 0.4485345482826233, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.4162354739277816, + "t": 0.6307692307692307, + "punct": null, + "u_acc": 0.0, + "t_acc": 0.0, + "punct_acc": null, + "threshold_t": 0.11749071627855301, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.4877650127650127, + "t": 0.6605672105672105, + "punct": null, + "u_acc": 0.07692307692307693, + "t_acc": 0.11538461538461539, + "punct_acc": null, + "threshold_t": 0.12562145292758942, + "threshold_adj": 0.01 + } + }, + "my": { + "opus100": { + "u": 0.6556145019854697, + "t": 0.8348214285714285, + "punct": null, + "u_acc": 0.16532258064516128, + "t_acc": 0.5161290322580645, + "punct_acc": null, + "threshold_t": 0.23828040063381195, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.7776834855385768, + "t": 0.909, + "punct": null, + "u_acc": 0.3528, + "t_acc": 0.722, + "punct_acc": null, + "threshold_t": 0.36629050970077515, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.761054982393954, + "t": 0.8935152795031056, + "punct": null, + "u_acc": 0.3416, + "t_acc": 0.6804, + "punct_acc": null, + "threshold_t": 0.3961370289325714, + "threshold_adj": 0.01 + } + }, + "ne": { + "opus100": { + "u": 0.7230660259885482, + "t": 0.8255484649247862, + "punct": null, + "u_acc": 0.21987315010570824, + "t_acc": 0.47568710359408034, + "punct_acc": null, + "threshold_t": 0.1013629138469696, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6606207423434315, + "t": 0.7241586991586991, + "punct": null, + "u_acc": 0.20077220077220076, + "t_acc": 0.2722007722007722, + "punct_acc": null, + "threshold_t": 0.08209216594696045, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.6430881403807022, + "t": 0.7116363623506481, + "punct": null, + "u_acc": 0.17374517374517376, + "t_acc": 0.2471042471042471, + "punct_acc": null, + "threshold_t": 0.08020491153001785, + "threshold_adj": 0.01 + } + }, + "nl": { + "opus100": { + "u": 0.8260656755693053, + "t": null, + "punct": null, + "u_acc": 0.46, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.8308402677727589, + "t": 0.8927702796830315, + "punct": null, + "u_acc": 0.5973154362416108, + "t_acc": 0.6912751677852349, + "punct_acc": null, + "threshold_t": 0.04922070726752281, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.769187898851974, + "t": 0.7945080885006466, + "punct": null, + "u_acc": 0.3468, + "t_acc": 0.4068, + "punct_acc": null, + "threshold_t": 0.08897779881954193, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.8008289308077543, + "t": 0.7973399711399712, + "punct": null, + "u_acc": 0.4228, + "t_acc": 0.404, + "punct_acc": null, + "threshold_t": 0.09174001961946487, + "threshold_adj": 0.01 + } + }, + "no": { + "opus100": { + "u": 0.8603806658348254, + "t": 0.9194060419866871, + "punct": null, + "u_acc": 0.5584677419354839, + "t_acc": 0.719758064516129, + "punct_acc": null, + "threshold_t": 0.04605588689446449, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.8603149847145959, + "t": 0.9173174506852193, + "punct": null, + "u_acc": 0.6466942148760331, + "t_acc": 0.7644628099173554, + "punct_acc": null, + "threshold_t": 0.0698571428656578, + "threshold_adj": 0.01 + } + }, + "pa": { + "opus100": { + "u": 0.7145489600515486, + "t": 0.810493869679019, + "punct": null, + "u_acc": 0.18442622950819673, + "t_acc": 0.42827868852459017, + "punct_acc": null, + "threshold_t": 0.14506906270980835, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.629811677684018, + "t": 0.7343781411311476, + "punct": null, + "u_acc": 0.1276595744680851, + "t_acc": 0.2553191489361702, + "punct_acc": null, + "threshold_t": 0.09090995788574219, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7369508151423048, + "t": 0.7718649258542879, + "punct": null, + "u_acc": 0.2978723404255319, + "t_acc": 0.3723404255319149, + "punct_acc": null, + "threshold_t": 0.10594453662633896, + "threshold_adj": 0.01 + } + }, + "pl": { + "ersatz": { + "u": 0.839182200549943, + "t": 0.7598431670144816, + "punct": null, + "u_acc": 0.6175298804780877, + "t_acc": 0.2868525896414343, + "punct_acc": null, + "threshold_t": 0.3536304533481598, + "threshold_adj": 0.009999999999999998 + }, + "opus100": { + "u": 0.8071236665025339, + "t": 0.9108551842422811, + "punct": null, + "u_acc": 0.4375, + "t_acc": 0.6955645161290323, + "punct_acc": null, + "threshold_t": 0.05333507061004639, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.7780656923948835, + "t": 0.8915908988960592, + "punct": null, + "u_acc": 0.48736462093862815, + "t_acc": 0.7490974729241877, + "punct_acc": null, + "threshold_t": 0.036496199667453766, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.750855039664971, + "t": 0.7888244733044734, + "punct": null, + "u_acc": 0.296, + "t_acc": 0.398, + "punct_acc": null, + "threshold_t": 0.06295682489871979, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7783774429675359, + "t": 0.8151325891885892, + "punct": null, + "u_acc": 0.3704, + "t_acc": 0.452, + "punct_acc": null, + "threshold_t": 0.043462712317705154, + "threshold_adj": 0.01 + } + }, + "ps": { + "ersatz": { + "u": 0.7730023239809016, + "t": 0.8338942419587582, + "punct": null, + "u_acc": 0.4120234604105572, + "t_acc": 0.5029325513196481, + "punct_acc": null, + "threshold_t": 0.19525596499443054, + "threshold_adj": 0.009999999999999998 + }, + "opus100": { + "u": 0.7340742776154804, + "t": 0.7705270972531553, + "punct": null, + "u_acc": 0.22717149220489977, + "t_acc": 0.3363028953229399, + "punct_acc": null, + "threshold_t": 0.10388877242803574, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6287811515806364, + "t": 0.7087634688912061, + "punct": null, + "u_acc": 0.145985401459854, + "t_acc": 0.22627737226277372, + "punct_acc": null, + "threshold_t": 0.1185235008597374, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.6138647902695882, + "t": 0.6929903835013324, + "punct": null, + "u_acc": 0.1386861313868613, + "t_acc": 0.20437956204379562, + "punct_acc": null, + "threshold_t": 0.16284430027008057, + "threshold_adj": 0.01 + } + }, + "pt": { + "opus100": { + "u": 0.7611853736118319, + "t": 0.8856366450833018, + "punct": null, + "u_acc": 0.4251012145748988, + "t_acc": 0.6700404858299596, + "punct_acc": null, + "threshold_t": 0.05129510536789894, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.7432850963325336, + "t": 0.8922304388913977, + "punct": null, + "u_acc": 0.5068493150684932, + "t_acc": 0.7157534246575342, + "punct_acc": null, + "threshold_t": 0.09587306529283524, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.738912477805419, + "t": 0.7903725281254692, + "punct": null, + "u_acc": 0.2796, + "t_acc": 0.4048, + "punct_acc": null, + "threshold_t": 0.05895382910966873, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7782250484187445, + "t": 0.8107966958188011, + "punct": null, + "u_acc": 0.378, + "t_acc": 0.4508, + "punct_acc": null, + "threshold_t": 0.04780341312289238, + "threshold_adj": 0.01 + } + }, + "ro": { + "ersatz": { + "u": 0.8937483542018473, + "t": 0.745039259914492, + "punct": null, + "u_acc": 0.74, + "t_acc": 0.248, + "punct_acc": null, + "threshold_t": 0.43536946177482605, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.8245492960517974, + "t": 0.8996452257058317, + "punct": null, + "u_acc": 0.494949494949495, + "t_acc": 0.6787878787878788, + "punct_acc": null, + "threshold_t": 0.03984079137444496, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.4044802784107424, + "t": 0.6237838191739944, + "punct": null, + "u_acc": 0.12167300380228137, + "t_acc": 0.011406844106463879, + "punct_acc": null, + "threshold_t": 0.8401123285293579, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.714025670469881, + "t": 0.7685433856549955, + "punct": null, + "u_acc": 0.236, + "t_acc": 0.3488, + "punct_acc": null, + "threshold_t": 0.08738504350185394, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7569959291831081, + "t": 0.7741351666111667, + "punct": null, + "u_acc": 0.3272, + "t_acc": 0.3532, + "punct_acc": null, + "threshold_t": 0.10868360102176666, + "threshold_adj": 0.01 + } + }, + "ru": { + "ersatz": { + "u": 0.8623752836347713, + "t": 0.9248148758525894, + "punct": null, + "u_acc": 0.6935483870967742, + "t_acc": 0.8104838709677419, + "punct_acc": null, + "threshold_t": 0.08035257458686829, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.6304292664920431, + "t": null, + "punct": null, + "u_acc": 0.2581967213114754, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.6956516637027373, + "t": 0.7922048214515083, + "punct": null, + "u_acc": 0.30454545454545456, + "t_acc": 0.44545454545454544, + "punct_acc": null, + "threshold_t": 0.22516754269599915, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.7326875340596395, + "t": 0.7917059872680926, + "punct": null, + "u_acc": 0.2648, + "t_acc": 0.4012, + "punct_acc": null, + "threshold_t": 0.055929720401763916, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7618399233111346, + "t": 0.7889308350586611, + "punct": null, + "u_acc": 0.3332, + "t_acc": 0.3908, + "punct_acc": null, + "threshold_t": 0.07778003811836243, + "threshold_adj": 0.01 + } + }, + "si": { + "opus100": { + "u": 0.758500295561491, + "t": 0.8322168422974875, + "punct": null, + "u_acc": 0.3225806451612903, + "t_acc": 0.47580645161290325, + "punct_acc": null, + "threshold_t": 0.03705502673983574, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.5818651890744914, + "t": 0.7391023274744204, + "punct": null, + "u_acc": 0.11627906976744186, + "t_acc": 0.32558139534883723, + "punct_acc": null, + "threshold_t": 0.0850210040807724, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.5998771295077725, + "t": 0.7411325969465503, + "punct": null, + "u_acc": 0.13178294573643412, + "t_acc": 0.35658914728682173, + "punct_acc": null, + "threshold_t": 0.05737745016813278, + "threshold_adj": 0.01 + } + }, + "sk": { + "opus100": { + "u": 0.7902618665885881, + "t": 0.8984898303765027, + "punct": null, + "u_acc": 0.4254032258064516, + "t_acc": 0.7056451612903226, + "punct_acc": null, + "threshold_t": 0.09030794352293015, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9200729529031416, + "t": 0.8796406109613657, + "punct": null, + "u_acc": 0.769811320754717, + "t_acc": 0.6452830188679245, + "punct_acc": null, + "threshold_t": 0.05720829591155052, + "threshold_adj": 0.010000000000000002 + }, + "ted2020-corrupted-asr": { + "u": 0.7452956930903141, + "t": 0.7766838076302782, + "punct": null, + "u_acc": 0.2992, + "t_acc": 0.3716, + "punct_acc": null, + "threshold_t": 0.0720907673239708, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7665519219280413, + "t": 0.7978461619798801, + "punct": null, + "u_acc": 0.3532, + "t_acc": 0.4328, + "punct_acc": null, + "threshold_t": 0.04866090044379234, + "threshold_adj": 0.01 + } + }, + "sl": { + "opus100": { + "u": 0.7827069822891473, + "t": 0.8957146886722775, + "punct": null, + "u_acc": 0.39357429718875503, + "t_acc": 0.6546184738955824, + "punct_acc": null, + "threshold_t": 0.0632297545671463, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.7657470825663508, + "t": 0.8564796661671661, + "punct": null, + "u_acc": 0.51875, + "t_acc": 0.6125, + "punct_acc": null, + "threshold_t": 0.07011370360851288, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.7343693106536079, + "t": 0.7686347633525895, + "punct": null, + "u_acc": 0.2904, + "t_acc": 0.3452, + "punct_acc": null, + "threshold_t": 0.10536323487758636, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7573287436929542, + "t": 0.7839546181796646, + "punct": null, + "u_acc": 0.3448, + "t_acc": 0.3804, + "punct_acc": null, + "threshold_t": 0.09057959914207458, + "threshold_adj": 0.01 + } + }, + "sq": { + "opus100": { + "u": 0.7763448286573598, + "t": 0.8839089053626923, + "punct": null, + "u_acc": 0.4532520325203252, + "t_acc": 0.6626016260162602, + "punct_acc": null, + "threshold_t": 0.072206512093544, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9714285714285714, + "t": null, + "punct": null, + "u_acc": 0.9333333333333333, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6842325916274176, + "t": 0.7674298730028142, + "punct": null, + "u_acc": 0.2004, + "t_acc": 0.352, + "punct_acc": null, + "threshold_t": 0.07836716622114182, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7341802150840788, + "t": 0.7846177895307308, + "punct": null, + "u_acc": 0.3004, + "t_acc": 0.3912, + "punct_acc": null, + "threshold_t": 0.07109081745147705, + "threshold_adj": 0.01 + } + }, + "sr": { + "opus100": { + "u": 0.7959584134530981, + "t": 0.9091870344528034, + "punct": null, + "u_acc": 0.41967871485943775, + "t_acc": 0.6807228915662651, + "punct_acc": null, + "threshold_t": 0.05623770132660866, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.8660802596096713, + "t": 0.9299766899766899, + "punct": null, + "u_acc": 0.7230769230769231, + "t_acc": 0.7923076923076923, + "punct_acc": null, + "threshold_t": 0.07828009128570557, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6877903112400088, + "t": 0.7620202433823486, + "punct": null, + "u_acc": 0.2088, + "t_acc": 0.3456, + "punct_acc": null, + "threshold_t": 0.08801580965518951, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7223532875401678, + "t": 0.7687719046100099, + "punct": null, + "u_acc": 0.2872, + "t_acc": 0.3468, + "punct_acc": null, + "threshold_t": 0.10996741056442261, + "threshold_adj": 0.01 + } + }, + "sv": { + "opus100": { + "u": 0.8286461525724982, + "t": 0.9042759150241713, + "punct": null, + "u_acc": 0.5080321285140562, + "t_acc": 0.6746987951807228, + "punct_acc": null, + "threshold_t": 0.04241374507546425, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.8286506032726779, + "t": 0.892626658440612, + "punct": null, + "u_acc": 0.5813953488372093, + "t_acc": 0.7131782945736435, + "punct_acc": null, + "threshold_t": 0.04127347841858864, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.7296251693433456, + "t": 0.7914475901875901, + "punct": null, + "u_acc": 0.2824, + "t_acc": 0.4036, + "punct_acc": null, + "threshold_t": 0.07549653202295303, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7572179850219726, + "t": 0.7936356265956267, + "punct": null, + "u_acc": 0.3312, + "t_acc": 0.394, + "punct_acc": null, + "threshold_t": 0.07372824102640152, + "threshold_adj": 0.01 + } + }, + "ta": { + "ersatz": { + "u": 0.7925783125839316, + "t": 0.797426089045817, + "punct": null, + "u_acc": 0.545816733067729, + "t_acc": 0.41832669322709165, + "punct_acc": null, + "threshold_t": 0.28814736008644104, + "threshold_adj": 0.009999999999999998 + }, + "opus100": { + "u": 0.6246269823735009, + "t": 0.7332792053427483, + "punct": null, + "u_acc": 0.16666666666666666, + "t_acc": 0.2540650406504065, + "punct_acc": null, + "threshold_t": 0.36680668592453003, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.8399803578064448, + "t": 0.9369369369369369, + "punct": null, + "u_acc": 0.6666666666666666, + "t_acc": 0.8666666666666667, + "punct_acc": null, + "threshold_t": 0.04847068339586258, + "threshold_adj": 0.010000000000000002 + }, + "ted2020-corrupted-asr": { + "u": 0.5235485224995273, + "t": 0.6881941718118795, + "punct": null, + "u_acc": 0.08185053380782918, + "t_acc": 0.2569395017793594, + "punct_acc": null, + "threshold_t": 0.055044710636138916, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.6312573802892971, + "t": 0.727471610443306, + "punct": null, + "u_acc": 0.16441281138790034, + "t_acc": 0.2889679715302491, + "punct_acc": null, + "threshold_t": 0.0803576111793518, + "threshold_adj": 0.009999999999999998 + } + }, + "te": { + "opus100": { + "u": 0.7040218052502097, + "t": 0.786287657920311, + "punct": null, + "u_acc": 0.23673469387755103, + "t_acc": 0.37755102040816324, + "punct_acc": null, + "threshold_t": 0.04151901230216026, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6275138555458515, + "t": 0.7072999088860117, + "punct": null, + "u_acc": 0.1555891238670695, + "t_acc": 0.22507552870090636, + "punct_acc": null, + "threshold_t": 0.09306807070970535, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.6584688223918251, + "t": 0.7139486813958114, + "punct": null, + "u_acc": 0.1782477341389728, + "t_acc": 0.22658610271903323, + "punct_acc": null, + "threshold_t": 0.12133269757032394, + "threshold_adj": 0.009999999999999998 + } + }, + "tg": { + "opus100": { + "u": 0.42262986751425996, + "t": 0.7364770530708425, + "punct": null, + "u_acc": 0.09839357429718876, + "t_acc": 0.30522088353413657, + "punct_acc": null, + "threshold_t": 0.5004799365997314, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.7343193356351251, + "t": 0.7526942355889724, + "punct": null, + "u_acc": 0.3157894736842105, + "t_acc": 0.27631578947368424, + "punct_acc": null, + "threshold_t": 0.16461707651615143, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7626344415818099, + "t": 0.8089807852965748, + "punct": null, + "u_acc": 0.3684210526315789, + "t_acc": 0.4605263157894737, + "punct_acc": null, + "threshold_t": 0.10540329664945602, + "threshold_adj": 0.01 + } + }, + "th": { + "opus100": { + "u": 0.7324494585100645, + "t": 0.7801975017126533, + "punct": null, + "u_acc": 0.19595959595959597, + "t_acc": 0.3191919191919192, + "punct_acc": null, + "threshold_t": 0.10073047876358032, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.7677283161283163, + "t": null, + "punct": null, + "u_acc": 0.288, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.5472497944400564, + "t": 0.6934567918112354, + "punct": null, + "u_acc": 0.0916, + "t_acc": 0.214, + "punct_acc": null, + "threshold_t": 0.09660183638334274, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.5432417976950523, + "t": 0.6819799657086173, + "punct": null, + "u_acc": 0.0912, + "t_acc": 0.2076, + "punct_acc": null, + "threshold_t": 0.09660183638334274, + "threshold_adj": 0.01 + } + }, + "tr": { + "ersatz": { + "u": 0.8558088924032247, + "t": 0.906903997687994, + "punct": null, + "u_acc": 0.5904255319148937, + "t_acc": 0.7367021276595744, + "punct_acc": null, + "threshold_t": 0.04181329533457756, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.8266514108262143, + "t": 0.8902101417938522, + "punct": null, + "u_acc": 0.46963562753036436, + "t_acc": 0.6396761133603239, + "punct_acc": null, + "threshold_t": 0.03596746176481247, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.8018085627074037, + "t": 0.8755216097034278, + "punct": null, + "u_acc": 0.49818181818181817, + "t_acc": 0.6436363636363637, + "punct_acc": null, + "threshold_t": 0.059762317687273026, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.759094878124971, + "t": 0.7974225347985348, + "punct": null, + "u_acc": 0.3312, + "t_acc": 0.4152, + "punct_acc": null, + "threshold_t": 0.029471680521965027, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7828125140772689, + "t": 0.8054253271874324, + "punct": null, + "u_acc": 0.384, + "t_acc": 0.4364, + "punct_acc": null, + "threshold_t": 0.030752742663025856, + "threshold_adj": 0.01 + } + }, + "uk": { + "opus100": { + "u": 0.7538007477997104, + "t": 0.8697308040720052, + "punct": null, + "u_acc": 0.3714859437751004, + "t_acc": 0.6024096385542169, + "punct_acc": null, + "threshold_t": 0.05568220093846321, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.6483168559201627, + "t": 0.7931677284355855, + "punct": null, + "u_acc": 0.35267857142857145, + "t_acc": 0.48660714285714285, + "punct_acc": null, + "threshold_t": 0.1227647140622139, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.7152628470754052, + "t": 0.7788211695494048, + "punct": null, + "u_acc": 0.2344, + "t_acc": 0.3692, + "punct_acc": null, + "threshold_t": 0.08565552532672882, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7483529409476272, + "t": 0.8031632410382875, + "punct": null, + "u_acc": 0.3128, + "t_acc": 0.426, + "punct_acc": null, + "threshold_t": 0.046983759850263596, + "threshold_adj": 0.01 + } + }, + "ur": { + "opus100": { + "u": 0.5278535005670126, + "t": 0.7154094518423156, + "punct": null, + "u_acc": 0.1016949152542373, + "t_acc": 0.2733050847457627, + "punct_acc": null, + "threshold_t": 0.2766479551792145, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.8943370891132086, + "t": 0.9445628997867804, + "punct": null, + "u_acc": 0.7089552238805971, + "t_acc": 0.835820895522388, + "punct_acc": null, + "threshold_t": 0.0358482301235199, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6692320340684851, + "t": 0.7366438279291191, + "punct": null, + "u_acc": 0.2040082219938335, + "t_acc": 0.28776978417266186, + "punct_acc": null, + "threshold_t": 0.10113585740327835, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.6603894706841775, + "t": 0.737306093260675, + "punct": null, + "u_acc": 0.19578622816032887, + "t_acc": 0.2944501541623844, + "punct_acc": null, + "threshold_t": 0.08105884492397308, + "threshold_adj": 0.01 + } + }, + "uz": { + "opus100": { + "u": 0.5686001717656091, + "t": 0.7844029560034461, + "punct": null, + "u_acc": 0.15510204081632653, + "t_acc": 0.45510204081632655, + "punct_acc": null, + "threshold_t": 0.3144516944885254, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.7418946065495426, + "t": 0.7817295924890861, + "punct": null, + "u_acc": 0.29324894514767935, + "t_acc": 0.37869198312236285, + "punct_acc": null, + "threshold_t": 0.04272758960723877, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7464454604678754, + "t": 0.7790038563559611, + "punct": null, + "u_acc": 0.31645569620253167, + "t_acc": 0.3808016877637131, + "punct_acc": null, + "threshold_t": 0.020240047946572304, + "threshold_adj": 0.01 + } + }, + "vi": { + "opus100": { + "u": 0.7742385383268917, + "t": 0.8804859292513614, + "punct": null, + "u_acc": 0.4053497942386831, + "t_acc": 0.6255144032921811, + "punct_acc": null, + "threshold_t": 0.055730924010276794, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.8176212537462538, + "t": 0.8842546897546897, + "punct": null, + "u_acc": 0.445, + "t_acc": 0.64, + "punct_acc": null, + "threshold_t": 0.05645648390054703, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6807474673414854, + "t": 0.7395216978576978, + "punct": null, + "u_acc": 0.2064, + "t_acc": 0.2852, + "punct_acc": null, + "threshold_t": 0.07871890813112259, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7267998669333844, + "t": 0.7697841243070654, + "punct": null, + "u_acc": 0.2856, + "t_acc": 0.3652, + "punct_acc": null, + "threshold_t": 0.04699409380555153, + "threshold_adj": 0.01 + } + }, + "xh": { + "opus100": { + "u": 0.6491138460854754, + "t": 0.8010700875151513, + "punct": null, + "u_acc": 0.2987551867219917, + "t_acc": 0.508298755186722, + "punct_acc": null, + "threshold_t": 0.11879320442676544, + "threshold_adj": 0.01 + } + }, + "yi": { + "opus100": { + "u": 0.7151466784695625, + "t": 0.7323630392595909, + "punct": null, + "u_acc": 0.2225705329153605, + "t_acc": 0.2413793103448276, + "punct_acc": null, + "threshold_t": 0.12696965038776398, + "threshold_adj": 0.01 + } + }, + "yo": { + "opus100": { + "u": 0.4663989191017974, + "t": null, + "punct": null, + "u_acc": 0.035409556313993173, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.25153204155545794, + "t": null, + "punct": null, + "u_acc": 0.0875, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "nllb": { + "u": 0.42766700577172717, + "t": 0.7218683313422193, + "punct": null, + "u_acc": 0.0972, + "t_acc": 0.278, + "punct_acc": null, + "threshold_t": 0.6914921402931213, + "threshold_adj": 0.01 + } + }, + "zh": { + "ersatz": { + "u": 0.7767222061063119, + "t": 0.7989252024874761, + "punct": null, + "u_acc": 0.518, + "t_acc": 0.554, + "punct_acc": null, + "threshold_t": 0.018511703237891197, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.757577051757949, + "t": 0.8019175089846174, + "punct": null, + "u_acc": 0.3440643863179074, + "t_acc": 0.4386317907444668, + "punct_acc": null, + "threshold_t": 0.02879003994166851, + "threshold_adj": 0.010000000000000002 + }, + "ud": { + "u": 0.8984803640803641, + "t": 0.8825250305250305, + "punct": null, + "u_acc": 0.768, + "t_acc": 0.688, + "punct_acc": null, + "threshold_t": 0.03994122892618179, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.560326132856048, + "t": 0.5308702024502293, + "punct": null, + "u_acc": 0.09772951628825272, + "t_acc": 0.05873642645607108, + "punct_acc": null, + "threshold_t": 0.0035890808794647455, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.5625142837106123, + "t": 0.5301335779231647, + "punct": null, + "u_acc": 0.10513326752221125, + "t_acc": 0.06219151036525173, + "punct_acc": null, + "threshold_t": 0.0035890808794647455, + "threshold_adj": 0.009999999999999998 + } + }, + "zu": { + "opus100": { + "u": 0.742454032197622, + "t": 0.8192697734364399, + "punct": null, + "u_acc": 0.2948717948717949, + "t_acc": 0.452991452991453, + "punct_acc": null, + "threshold_t": 0.10627293586730957, + "threshold_adj": 0.01 + } + }, + "tr-de": {}, + "es-en": {}, + "vi-en": {}, + "en-de": {} +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/sat-12l.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/sat-12l.json new file mode 100644 index 0000000000000000000000000000000000000000..8cd6580bb4d3ad2f44188886c8ff2fe02a2c06ac --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/sat-12l.json @@ -0,0 +1,3346 @@ +{ + "af": { + "opus100": { + "u": 0.8882477371113735, + "t": 0.8736849009576282, + "punct": null, + "u_acc": 0.6053719008264463, + "t_acc": 0.5909090909090909, + "punct_acc": null, + "threshold_t": 0.05722840875387192, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9884373488147071, + "t": 0.9882300089847259, + "punct": null, + "u_acc": 0.9716981132075472, + "t_acc": 0.9716981132075472, + "punct_acc": null, + "threshold_t": 0.019238632172346115, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.7565230325230325, + "t": 0.770051282051282, + "punct": null, + "u_acc": 0.3169230769230769, + "t_acc": 0.3476923076923077, + "punct_acc": null, + "threshold_t": 0.09038517624139786, + "threshold_adj": 0.024999999999999994 + }, + "ted2020-corrupted-social-media": { + "u": 0.7562637362637362, + "t": 0.7662458908612756, + "punct": null, + "u_acc": 0.30153846153846153, + "t_acc": 0.3323076923076923, + "punct_acc": null, + "threshold_t": 0.005575624760240316, + "threshold_adj": 0.024999999999999994 + } + }, + "am": { + "opus100": { + "u": 0.7809555683049659, + "t": 0.8048001529929241, + "punct": null, + "u_acc": 0.3253012048192771, + "t_acc": 0.40763052208835343, + "punct_acc": null, + "threshold_t": 0.06382513046264648, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.6895089285714286, + "t": 0.7075396825396826, + "punct": null, + "u_acc": 0.21875, + "t_acc": 0.265625, + "punct_acc": null, + "threshold_t": 0.04018476605415344, + "threshold_adj": 0.025000000000000005 + }, + "ted2020-corrupted-social-media": { + "u": 0.6938864087301586, + "t": 0.6870907738095238, + "punct": null, + "u_acc": 0.234375, + "t_acc": 0.234375, + "punct_acc": null, + "threshold_t": 0.017933109775185585, + "threshold_adj": 0.025000000000000005 + } + }, + "ar": { + "ersatz": { + "u": 0.9168819655521784, + "t": 0.9317502532928064, + "punct": null, + "u_acc": 0.7047872340425532, + "t_acc": 0.7606382978723404, + "punct_acc": null, + "threshold_t": 0.05513126403093338, + "threshold_adj": 0.024999999999999998 + }, + "opus100": { + "u": 0.8322332063295919, + "t": 0.8409574807165169, + "punct": null, + "u_acc": 0.4799196787148594, + "t_acc": 0.5, + "punct_acc": null, + "threshold_t": 0.040992915630340576, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9013632119514471, + "t": 0.9072549019607843, + "punct": null, + "u_acc": 0.6647058823529411, + "t_acc": 0.7, + "punct_acc": null, + "threshold_t": 0.35393238067626953, + "threshold_adj": 0.024999999999999994 + }, + "ted2020-corrupted-asr": { + "u": 0.7097615231070958, + "t": 0.7225479942279942, + "punct": null, + "u_acc": 0.2324, + "t_acc": 0.2388, + "punct_acc": null, + "threshold_t": 0.06880255788564682, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7183403490283367, + "t": 0.7275813059163059, + "punct": null, + "u_acc": 0.2608, + "t_acc": 0.2652, + "punct_acc": null, + "threshold_t": 0.06880255788564682, + "threshold_adj": 0.024999999999999998 + } + }, + "az": { + "opus100": { + "u": 0.8241027602473386, + "t": 0.8543794224517116, + "punct": null, + "u_acc": 0.3755020080321285, + "t_acc": 0.5120481927710844, + "punct_acc": null, + "threshold_t": 0.0911768451333046, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.783178825377407, + "t": 0.7829752530107139, + "punct": null, + "u_acc": 0.3670212765957447, + "t_acc": 0.3664302600472813, + "punct_acc": null, + "threshold_t": 0.02031031996011734, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.748654264700364, + "t": 0.7585541428626535, + "punct": null, + "u_acc": 0.2760047281323877, + "t_acc": 0.30969267139479906, + "punct_acc": null, + "threshold_t": 0.009870330803096294, + "threshold_adj": 0.024999999999999998 + } + }, + "be": { + "opus100": { + "u": 0.8349337562587833, + "t": 0.8064325561978976, + "punct": null, + "u_acc": 0.505091649694501, + "t_acc": 0.49287169042769857, + "punct_acc": null, + "threshold_t": 0.1405823528766632, + "threshold_adj": 0.025000000000000005 + }, + "ud": { + "u": 0.9308791580167045, + "t": 0.921626782965073, + "punct": null, + "u_acc": 0.7657992565055762, + "t_acc": 0.724907063197026, + "punct_acc": null, + "threshold_t": 0.009101488627493382, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.7715465873804614, + "t": 0.7677646961877981, + "punct": null, + "u_acc": 0.3419857235561324, + "t_acc": 0.33874107722258273, + "punct_acc": null, + "threshold_t": 0.11408890038728714, + "threshold_adj": 0.024999999999999994 + }, + "ted2020-corrupted-social-media": { + "u": 0.7683193762038667, + "t": 0.7680910804531832, + "punct": null, + "u_acc": 0.32965606748864373, + "t_acc": 0.3393900064892927, + "punct_acc": null, + "threshold_t": 0.011431345716118813, + "threshold_adj": 0.024999999999999994 + } + }, + "bg": { + "opus100": { + "u": 0.9520119604287941, + "t": 0.9462865124187769, + "punct": null, + "u_acc": 0.8136272545090181, + "t_acc": 0.7835671342685371, + "punct_acc": null, + "threshold_t": 0.009181635454297066, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9880525686977298, + "t": 0.9880525686977301, + "punct": null, + "u_acc": 0.956989247311828, + "t_acc": 0.956989247311828, + "punct_acc": null, + "threshold_t": 0.029523489996790886, + "threshold_adj": 0.024999999999999994 + }, + "ted2020-corrupted-asr": { + "u": 0.7790780175380176, + "t": 0.7640262271062271, + "punct": null, + "u_acc": 0.3508, + "t_acc": 0.336, + "punct_acc": null, + "threshold_t": 0.1081811711192131, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7755598910268476, + "t": 0.786753937913938, + "punct": null, + "u_acc": 0.3536, + "t_acc": 0.3824, + "punct_acc": null, + "threshold_t": 0.010488645173609257, + "threshold_adj": 0.024999999999999998 + } + }, + "bn": { + "opus100": { + "u": 0.8933160289297111, + "t": 0.8960368270227426, + "punct": null, + "u_acc": 0.6197183098591549, + "t_acc": 0.647887323943662, + "punct_acc": null, + "threshold_t": 0.08311125636100769, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9857142857142858, + "t": null, + "punct": null, + "u_acc": 0.9285714285714286, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + }, + "ted2020-corrupted-asr": { + "u": 0.57008493467317, + "t": 0.6396440781440781, + "punct": null, + "u_acc": 0.10461538461538461, + "t_acc": 0.14307692307692307, + "punct_acc": null, + "threshold_t": 0.06744924932718277, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-social-media": { + "u": 0.708734077887924, + "t": 0.7145422696961159, + "punct": null, + "u_acc": 0.2453846153846154, + "t_acc": 0.24769230769230768, + "punct_acc": null, + "threshold_t": 0.03372104465961456, + "threshold_adj": 0.025 + } + }, + "ca": { + "opus100": { + "u": 0.9313605483990879, + "t": 0.9355355935477639, + "punct": null, + "u_acc": 0.7647058823529411, + "t_acc": 0.7728194726166329, + "punct_acc": null, + "threshold_t": 0.03227446973323822, + "threshold_adj": 0.024999999999999998 + }, + "ud": { + "u": 0.987672644815502, + "t": 0.9883941455370028, + "punct": null, + "u_acc": 0.961038961038961, + "t_acc": 0.9632034632034632, + "punct_acc": null, + "threshold_t": 0.026162832975387573, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.7589843756243757, + "t": 0.7681247619047619, + "punct": null, + "u_acc": 0.3112, + "t_acc": 0.3412, + "punct_acc": null, + "threshold_t": 0.05660455673933029, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7635360461760462, + "t": 0.7615948524677937, + "punct": null, + "u_acc": 0.3176, + "t_acc": 0.3284, + "punct_acc": null, + "threshold_t": 0.008572478778660297, + "threshold_adj": 0.024999999999999998 + } + }, + "ceb": { + "ud": { + "u": 1.0, + "t": null, + "punct": null, + "u_acc": 1.0, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999988 + }, + "ted2020-corrupted-asr": { + "u": 0.6623685837971552, + "t": 0.7238095238095238, + "punct": null, + "u_acc": 0.14285714285714285, + "t_acc": 0.21428571428571427, + "punct_acc": null, + "threshold_t": 0.0921429768204689, + "threshold_adj": 0.025000000000000005 + }, + "ted2020-corrupted-social-media": { + "u": 0.6581632653061223, + "t": 0.6598639455782312, + "punct": null, + "u_acc": 0.14285714285714285, + "t_acc": 0.07142857142857142, + "punct_acc": null, + "threshold_t": 0.17184561491012573, + "threshold_adj": 0.025000000000000005 + }, + "nllb": { + "u": 0.870450909090909, + "t": 0.8954285714285714, + "punct": null, + "u_acc": 0.574, + "t_acc": 0.6728, + "punct_acc": null, + "threshold_t": 0.19107355177402496, + "threshold_adj": 0.024999999999999998 + } + }, + "cs": { + "ersatz": { + "u": 0.9372685185185184, + "t": 0.9432870370370371, + "punct": null, + "u_acc": 0.7986111111111112, + "t_acc": 0.8148148148148148, + "punct_acc": null, + "threshold_t": 0.01957516185939312, + "threshold_adj": 0.025 + }, + "opus100": { + "u": 0.9328042328042327, + "t": 0.91435024609733, + "punct": null, + "u_acc": 0.7439024390243902, + "t_acc": 0.693089430894309, + "punct_acc": null, + "threshold_t": 0.010652069002389908, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.940672156445027, + "t": 0.9413819356248379, + "punct": null, + "u_acc": 0.8083596214511041, + "t_acc": 0.8103312302839116, + "punct_acc": null, + "threshold_t": 0.024562528356909752, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.7750293861693862, + "t": 0.7774064833251041, + "punct": null, + "u_acc": 0.3492, + "t_acc": 0.3568, + "punct_acc": null, + "threshold_t": 0.03219946473836899, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7624698412698413, + "t": 0.7660492582972583, + "punct": null, + "u_acc": 0.318, + "t_acc": 0.3316, + "punct_acc": null, + "threshold_t": 0.01450707670301199, + "threshold_adj": 0.024999999999999998 + } + }, + "cy": { + "opus100": { + "u": 0.8485617245442573, + "t": 0.8414569903652874, + "punct": null, + "u_acc": 0.4912663755458515, + "t_acc": 0.5, + "punct_acc": null, + "threshold_t": 0.053751807659864426, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9949579831932773, + "t": 0.9941176470588237, + "punct": null, + "u_acc": 0.9831932773109243, + "t_acc": 0.9789915966386554, + "punct_acc": null, + "threshold_t": 0.017293473705649376, + "threshold_adj": 0.025 + } + }, + "da": { + "opus100": { + "u": 0.94176267281106, + "t": 0.9448732718894008, + "punct": null, + "u_acc": 0.7701612903225806, + "t_acc": 0.7842741935483871, + "punct_acc": null, + "threshold_t": 0.034385181963443756, + "threshold_adj": 0.025000000000000005 + }, + "ud": { + "u": 0.9451536643026004, + "t": 0.9427895981087471, + "punct": null, + "u_acc": 0.8085106382978723, + "t_acc": 0.8014184397163121, + "punct_acc": null, + "threshold_t": 0.026041628792881966, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.7830988167388166, + "t": 0.7961436075036075, + "punct": null, + "u_acc": 0.3624, + "t_acc": 0.4036, + "punct_acc": null, + "threshold_t": 0.0644717812538147, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7626046315775727, + "t": 0.7748399193077453, + "punct": null, + "u_acc": 0.3088, + "t_acc": 0.3644, + "punct_acc": null, + "threshold_t": 0.00536053441464901, + "threshold_adj": 0.024999999999999998 + } + }, + "de": { + "ersatz": { + "u": 0.9575210939773057, + "t": 0.9611870817573465, + "punct": null, + "u_acc": 0.8553971486761711, + "t_acc": 0.8655804480651731, + "punct_acc": null, + "threshold_t": 0.021463118493556976, + "threshold_adj": 0.025000000000000005 + }, + "opus100": { + "u": 0.900149018819905, + "t": 0.9017564128323622, + "punct": null, + "u_acc": 0.6371308016877637, + "t_acc": 0.6413502109704642, + "punct_acc": null, + "threshold_t": 0.025454489514231682, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9592896174863388, + "t": 0.9646174863387978, + "punct": null, + "u_acc": 0.860655737704918, + "t_acc": 0.8729508196721312, + "punct_acc": null, + "threshold_t": 0.0167044997215271, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.809410402930403, + "t": 0.8061377133977133, + "punct": null, + "u_acc": 0.4244, + "t_acc": 0.4336, + "punct_acc": null, + "threshold_t": 0.0937303826212883, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7700538417138417, + "t": 0.7719913158708903, + "punct": null, + "u_acc": 0.3392, + "t_acc": 0.3512, + "punct_acc": null, + "threshold_t": 0.005947270430624485, + "threshold_adj": 0.024999999999999998 + } + }, + "el": { + "opus100": { + "u": 0.9510613884107861, + "t": 0.9526678141135972, + "punct": null, + "u_acc": 0.8032128514056225, + "t_acc": 0.8112449799196787, + "punct_acc": null, + "threshold_t": 0.02715108171105385, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9807017543859649, + "t": 0.9707602339181286, + "punct": null, + "u_acc": 0.9385964912280702, + "t_acc": 0.9122807017543859, + "punct_acc": null, + "threshold_t": 0.04438067600131035, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.7705246529023678, + "t": 0.7860235209235209, + "punct": null, + "u_acc": 0.3288, + "t_acc": 0.3896, + "punct_acc": null, + "threshold_t": 0.10741370171308517, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7609662965792379, + "t": 0.7610601252027216, + "punct": null, + "u_acc": 0.3084, + "t_acc": 0.3504, + "punct_acc": null, + "threshold_t": 0.0030577601864933968, + "threshold_adj": 0.024999999999999998 + } + }, + "en": { + "ersatz": { + "u": 0.9759799073662002, + "t": 0.9748101097010755, + "punct": null, + "u_acc": 0.9210799584631361, + "t_acc": 0.9153686396677051, + "punct_acc": null, + "threshold_t": 0.008787485770881176, + "threshold_adj": 0.025 + }, + "opus100": { + "u": 0.9518241167434716, + "t": 0.9448636712749617, + "punct": null, + "u_acc": 0.8145161290322581, + "t_acc": 0.7842741935483871, + "punct_acc": null, + "threshold_t": 0.013111920095980167, + "threshold_adj": 0.025000000000000005 + }, + "ud": { + "u": 0.9260514424748002, + "t": 0.9494264859228364, + "punct": null, + "u_acc": 0.7700729927007299, + "t_acc": 0.8357664233576643, + "punct_acc": null, + "threshold_t": 0.016067247837781906, + "threshold_adj": 0.024999999999999994 + }, + "ted2020-corrupted-asr": { + "u": 0.7674019336219335, + "t": 0.7437825396825397, + "punct": null, + "u_acc": 0.3324, + "t_acc": 0.276, + "punct_acc": null, + "threshold_t": 0.10362137854099274, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7459095415695416, + "t": 0.7474934953934954, + "punct": null, + "u_acc": 0.2828, + "t_acc": 0.2924, + "punct_acc": null, + "threshold_t": 0.015765845775604248, + "threshold_adj": 0.024999999999999998 + } + }, + "eo": { + "opus100": { + "u": 0.9529377880184332, + "t": 0.952899385560676, + "punct": null, + "u_acc": 0.8165322580645161, + "t_acc": 0.8205645161290323, + "punct_acc": null, + "threshold_t": 0.05278538167476654, + "threshold_adj": 0.025000000000000005 + }, + "ted2020-corrupted-asr": { + "u": 0.7461896082196834, + "t": 0.7529147242806391, + "punct": null, + "u_acc": 0.29197994987468673, + "t_acc": 0.30388471177944865, + "punct_acc": null, + "threshold_t": 0.034555960446596146, + "threshold_adj": 0.025000000000000005 + }, + "ted2020-corrupted-social-media": { + "u": 0.7482474449109788, + "t": 0.747889135002138, + "punct": null, + "u_acc": 0.287593984962406, + "t_acc": 0.2907268170426065, + "punct_acc": null, + "threshold_t": 0.009082023985683918, + "threshold_adj": 0.025000000000000005 + } + }, + "es": { + "ersatz": { + "u": 0.9842906875543952, + "t": null, + "punct": null, + "u_acc": 0.9451697127937336, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "opus100": { + "u": 0.9420083739921796, + "t": 0.9249605915240591, + "punct": null, + "u_acc": 0.7793522267206477, + "t_acc": 0.7246963562753036, + "punct_acc": null, + "threshold_t": 0.008260590024292469, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9733742743045068, + "t": 0.9733742743045068, + "punct": null, + "u_acc": 0.9069767441860465, + "t_acc": 0.9069767441860465, + "punct_acc": null, + "threshold_t": 0.023629622533917427, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.7510983459053024, + "t": 0.737092242926156, + "punct": null, + "u_acc": 0.296, + "t_acc": 0.2592, + "punct_acc": null, + "threshold_t": 0.16021451354026794, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7600066533466534, + "t": 0.7644120173667663, + "punct": null, + "u_acc": 0.3132, + "t_acc": 0.3416, + "punct_acc": null, + "threshold_t": 0.004388599190860987, + "threshold_adj": 0.024999999999999998 + } + }, + "et": { + "ersatz": { + "u": 0.9696428571428571, + "t": 0.9708994708994709, + "punct": null, + "u_acc": 0.8908730158730159, + "t_acc": 0.8908730158730159, + "punct_acc": null, + "threshold_t": 0.011970039457082748, + "threshold_adj": 0.025 + }, + "opus100": { + "u": 0.9197993863985767, + "t": 0.9248485432695959, + "punct": null, + "u_acc": 0.7348178137651822, + "t_acc": 0.7489878542510121, + "punct_acc": null, + "threshold_t": 0.03217248246073723, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9575100687040986, + "t": 0.9547638790176104, + "punct": null, + "u_acc": 0.8743781094527363, + "t_acc": 0.8544776119402985, + "punct_acc": null, + "threshold_t": 0.008748026564717293, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.7933893506493507, + "t": 0.7919177133977134, + "punct": null, + "u_acc": 0.3928, + "t_acc": 0.3976, + "punct_acc": null, + "threshold_t": 0.06978411972522736, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7750590476190475, + "t": 0.7764688777888777, + "punct": null, + "u_acc": 0.3448, + "t_acc": 0.35, + "punct_acc": null, + "threshold_t": 0.01639181189239025, + "threshold_adj": 0.024999999999999998 + } + }, + "eu": { + "opus100": { + "u": 0.9212545663962669, + "t": 0.9247151409094728, + "punct": null, + "u_acc": 0.7246963562753036, + "t_acc": 0.7348178137651822, + "punct_acc": null, + "threshold_t": 0.03254619240760803, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9793439153439153, + "t": 0.9757283950617284, + "punct": null, + "u_acc": 0.9266666666666666, + "t_acc": 0.9133333333333333, + "punct_acc": null, + "threshold_t": 0.014970947057008743, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.7029437818752334, + "t": 0.7180812541699638, + "punct": null, + "u_acc": 0.20228494623655913, + "t_acc": 0.21303763440860216, + "punct_acc": null, + "threshold_t": 0.05669393017888069, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7403070458514007, + "t": 0.7393969456469457, + "punct": null, + "u_acc": 0.2594086021505376, + "t_acc": 0.2708333333333333, + "punct_acc": null, + "threshold_t": 0.012845298275351524, + "threshold_adj": 0.024999999999999998 + } + }, + "fa": { + "opus100": { + "u": 0.7974824401501285, + "t": 0.8037221922096935, + "punct": null, + "u_acc": 0.4168336673346693, + "t_acc": 0.43887775551102204, + "punct_acc": null, + "threshold_t": 0.04134111478924751, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9873626373626373, + "t": 0.9891941391941393, + "punct": null, + "u_acc": 0.9423076923076923, + "t_acc": 0.9532967032967034, + "punct_acc": null, + "threshold_t": 0.0366155169904232, + "threshold_adj": 0.024999999999999994 + }, + "ted2020-corrupted-asr": { + "u": 0.741609863575746, + "t": 0.7447822000222001, + "punct": null, + "u_acc": 0.3, + "t_acc": 0.292, + "punct_acc": null, + "threshold_t": 0.0620068721473217, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7455831052360464, + "t": 0.7483437935289863, + "punct": null, + "u_acc": 0.312, + "t_acc": 0.3136, + "punct_acc": null, + "threshold_t": 0.04220201075077057, + "threshold_adj": 0.024999999999999998 + } + }, + "fi": { + "ersatz": { + "u": 0.9759519038076152, + "t": 0.977555110220441, + "punct": null, + "u_acc": 0.9158316633266533, + "t_acc": 0.9198396793587175, + "punct_acc": null, + "threshold_t": 0.020431339740753174, + "threshold_adj": 0.025 + }, + "opus100": { + "u": 0.9527578167417201, + "t": 0.9464149979240523, + "punct": null, + "u_acc": 0.8088531187122736, + "t_acc": 0.7907444668008048, + "punct_acc": null, + "threshold_t": 0.01285080797970295, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9648748159057438, + "t": 0.9652061855670103, + "punct": null, + "u_acc": 0.884020618556701, + "t_acc": 0.8634020618556701, + "punct_acc": null, + "threshold_t": 0.00911866407841444, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.7565134465534465, + "t": 0.7542530735930736, + "punct": null, + "u_acc": 0.3028, + "t_acc": 0.312, + "punct_acc": null, + "threshold_t": 0.08073306083679199, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7532672039072039, + "t": 0.7469481369610782, + "punct": null, + "u_acc": 0.29, + "t_acc": 0.308, + "punct_acc": null, + "threshold_t": 0.003686185460537672, + "threshold_adj": 0.024999999999999998 + } + }, + "fr": { + "ersatz": { + "u": 0.9801932367149758, + "t": 0.9777777777777779, + "punct": null, + "u_acc": 0.9202898550724637, + "t_acc": 0.9178743961352657, + "punct_acc": null, + "threshold_t": 0.03443998843431473, + "threshold_adj": 0.024999999999999998 + }, + "opus100": { + "u": 0.9323384526224282, + "t": null, + "punct": null, + "u_acc": 0.7383367139959433, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ud": { + "u": 0.982051282051282, + "t": 0.9833333333333335, + "punct": null, + "u_acc": 0.9230769230769231, + "t_acc": 0.9230769230769231, + "punct_acc": null, + "threshold_t": 0.028676128014922142, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.7538486580086581, + "t": 0.7681149206349206, + "punct": null, + "u_acc": 0.2864, + "t_acc": 0.3376, + "punct_acc": null, + "threshold_t": 0.09169740974903107, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7695351226551227, + "t": 0.7730476774206185, + "punct": null, + "u_acc": 0.3372, + "t_acc": 0.3488, + "punct_acc": null, + "threshold_t": 0.014081344939768314, + "threshold_adj": 0.024999999999999998 + } + }, + "fy": { + "opus100": { + "u": 0.8336121198782143, + "t": 0.81566182982492, + "punct": null, + "u_acc": 0.5107296137339056, + "t_acc": 0.4613733905579399, + "punct_acc": null, + "threshold_t": 0.07608260214328766, + "threshold_adj": 0.025000000000000005 + } + }, + "ga": { + "opus100": { + "u": 0.915422077922078, + "t": 0.9257328469022018, + "punct": null, + "u_acc": 0.7258064516129032, + "t_acc": 0.7580645161290323, + "punct_acc": null, + "threshold_t": 0.0749048963189125, + "threshold_adj": 0.025000000000000005 + }, + "ud": { + "u": 0.9236563631300474, + "t": 0.938150932887775, + "punct": null, + "u_acc": 0.7543859649122807, + "t_acc": 0.8070175438596491, + "punct_acc": null, + "threshold_t": 0.11123145371675491, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.5902236652236652, + "t": 0.6166666666666666, + "punct": null, + "u_acc": 0.08333333333333333, + "t_acc": 0.16666666666666666, + "punct_acc": null, + "threshold_t": 0.12232228368520737, + "threshold_adj": 0.025000000000000005 + }, + "ted2020-corrupted-social-media": { + "u": 0.7293650793650793, + "t": 0.7333333333333333, + "punct": null, + "u_acc": 0.25, + "t_acc": 0.25, + "punct_acc": null, + "threshold_t": 0.13638371229171753, + "threshold_adj": 0.025000000000000005 + } + }, + "gd": { + "opus100": { + "u": 0.9027915705693484, + "t": 0.8995816940261385, + "punct": null, + "u_acc": 0.6777777777777778, + "t_acc": 0.674074074074074, + "punct_acc": null, + "threshold_t": 0.03357437998056412, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.8299369747899159, + "t": 0.8360644257703082, + "punct": null, + "u_acc": 0.5073529411764706, + "t_acc": 0.5220588235294118, + "punct_acc": null, + "threshold_t": 0.03293919190764427, + "threshold_adj": 0.024999999999999994 + } + }, + "gl": { + "opus100": { + "u": 0.9278577828981055, + "t": 0.93655273937532, + "punct": null, + "u_acc": 0.7318548387096774, + "t_acc": 0.7721774193548387, + "punct_acc": null, + "threshold_t": 0.06358516216278076, + "threshold_adj": 0.025000000000000005 + }, + "ud": { + "u": 0.9870476190476191, + "t": 0.9830476190476191, + "punct": null, + "u_acc": 0.96, + "t_acc": 0.94, + "punct_acc": null, + "threshold_t": 0.017566092312335968, + "threshold_adj": 0.024999999999999994 + }, + "ted2020-corrupted-asr": { + "u": 0.7587245088245088, + "t": 0.7657419336219337, + "punct": null, + "u_acc": 0.306, + "t_acc": 0.3368, + "punct_acc": null, + "threshold_t": 0.08026846498250961, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7592276767676769, + "t": 0.7615290196559547, + "punct": null, + "u_acc": 0.298, + "t_acc": 0.3264, + "punct_acc": null, + "threshold_t": 0.004543937277048826, + "threshold_adj": 0.024999999999999998 + } + }, + "gu": { + "ersatz": { + "u": 0.9239470066241721, + "t": 0.9396711774664531, + "punct": null, + "u_acc": 0.7716535433070866, + "t_acc": 0.8188976377952756, + "punct_acc": null, + "threshold_t": 0.01645965874195099, + "threshold_adj": 0.024999999999999998 + }, + "opus100": { + "u": 0.8302507476420519, + "t": 0.8238834664300502, + "punct": null, + "u_acc": 0.4658385093167702, + "t_acc": 0.474120082815735, + "punct_acc": null, + "threshold_t": 0.09955763816833496, + "threshold_adj": 0.025000000000000005 + }, + "ted2020-corrupted-asr": { + "u": 0.6022865150610687, + "t": 0.644624402436653, + "punct": null, + "u_acc": 0.13801820020222447, + "t_acc": 0.17340748230535896, + "punct_acc": null, + "threshold_t": 0.0993092954158783, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-social-media": { + "u": 0.6829741016851868, + "t": 0.7013009027491868, + "punct": null, + "u_acc": 0.22143579373104147, + "t_acc": 0.23306370070778565, + "punct_acc": null, + "threshold_t": 0.059167712926864624, + "threshold_adj": 0.025 + } + }, + "ha": { + "opus100": { + "u": 0.8818709401709403, + "t": 0.9031619047619047, + "punct": null, + "u_acc": 0.572, + "t_acc": 0.65, + "punct_acc": null, + "threshold_t": 0.05822952464222908, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.5841269841269842, + "t": 0.8888888888888888, + "punct": null, + "u_acc": 0.0, + "t_acc": 0.6666666666666666, + "punct_acc": null, + "threshold_t": 0.29047495126724243, + "threshold_adj": 0.025000000000000005 + }, + "ted2020-corrupted-social-media": { + "u": 0.6666666666666666, + "t": 0.562962962962963, + "punct": null, + "u_acc": 0.0, + "t_acc": 0.0, + "punct_acc": null, + "threshold_t": 0.00034026207868009806, + "threshold_adj": 0.025000000000000005 + } + }, + "he": { + "opus100": { + "u": 0.9263383910678501, + "t": 0.9193434488023667, + "punct": null, + "u_acc": 0.7234468937875751, + "t_acc": 0.7014028056112225, + "punct_acc": null, + "threshold_t": 0.014620037749409676, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.976530612244898, + "t": 0.9863945578231293, + "punct": null, + "u_acc": 0.9183673469387755, + "t_acc": 0.9387755102040817, + "punct_acc": null, + "threshold_t": 0.018793705850839615, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.7211529323679788, + "t": 0.7303554488648606, + "punct": null, + "u_acc": 0.2472, + "t_acc": 0.2628, + "punct_acc": null, + "threshold_t": 0.042893923819065094, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.72972623885918, + "t": 0.73287552003552, + "punct": null, + "u_acc": 0.2816, + "t_acc": 0.2844, + "punct_acc": null, + "threshold_t": 0.038458239287137985, + "threshold_adj": 0.024999999999999998 + } + }, + "hi": { + "ersatz": { + "u": 0.9556689342403629, + "t": 0.8035449735449736, + "punct": null, + "u_acc": 0.8444444444444444, + "t_acc": 0.4111111111111111, + "punct_acc": null, + "threshold_t": 0.3583506941795349, + "threshold_adj": 0.024999999999999998 + }, + "opus100": { + "u": 0.8027028864073399, + "t": 0.816465844097423, + "punct": null, + "u_acc": 0.47368421052631576, + "t_acc": 0.4898785425101215, + "punct_acc": null, + "threshold_t": 0.0629085972905159, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9695961995249407, + "t": 0.9900237529691212, + "punct": null, + "u_acc": 0.9002375296912114, + "t_acc": 0.9596199524940617, + "punct_acc": null, + "threshold_t": 0.012450703419744968, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6641188676682794, + "t": 0.6840336974853104, + "punct": null, + "u_acc": 0.198, + "t_acc": 0.2248, + "punct_acc": null, + "threshold_t": 0.0389426052570343, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.729444102120102, + "t": 0.7296528777888778, + "punct": null, + "u_acc": 0.2752, + "t_acc": 0.2764, + "punct_acc": null, + "threshold_t": 0.03516624495387077, + "threshold_adj": 0.024999999999999998 + } + }, + "hu": { + "opus100": { + "u": 0.9505088325652842, + "t": 0.9472926267281107, + "punct": null, + "u_acc": 0.7943548387096774, + "t_acc": 0.780241935483871, + "punct_acc": null, + "threshold_t": 0.017952704802155495, + "threshold_adj": 0.025000000000000005 + }, + "ud": { + "u": 0.9830782312925169, + "t": 0.9786139455782312, + "punct": null, + "u_acc": 0.9375, + "t_acc": 0.9285714285714286, + "punct_acc": null, + "threshold_t": 0.01939070224761963, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.7687581115181115, + "t": 0.7805476856476856, + "punct": null, + "u_acc": 0.3288, + "t_acc": 0.3664, + "punct_acc": null, + "threshold_t": 0.05983763188123703, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7558991085791086, + "t": 0.7540847268287268, + "punct": null, + "u_acc": 0.2972, + "t_acc": 0.3168, + "punct_acc": null, + "threshold_t": 0.005200104787945747, + "threshold_adj": 0.024999999999999998 + } + }, + "hy": { + "opus100": { + "u": 0.9046868785479263, + "t": null, + "punct": null, + "u_acc": 0.658883826879271, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + }, + "ud": { + "u": 0.9854354354354353, + "t": 0.9863363363363362, + "punct": null, + "u_acc": 0.9527027027027027, + "t_acc": 0.9527027027027027, + "punct_acc": null, + "threshold_t": 0.019690409302711487, + "threshold_adj": 0.024999999999999994 + }, + "ted2020-corrupted-asr": { + "u": 0.7711933685921921, + "t": 0.7796568436008436, + "punct": null, + "u_acc": 0.3388, + "t_acc": 0.3668, + "punct_acc": null, + "threshold_t": 0.04970479756593704, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7588134898434898, + "t": 0.7590450160950162, + "punct": null, + "u_acc": 0.3092, + "t_acc": 0.3116, + "punct_acc": null, + "threshold_t": 0.02619357593357563, + "threshold_adj": 0.024999999999999998 + } + }, + "id": { + "opus100": { + "u": 0.9143345042935207, + "t": 0.9157982045277129, + "punct": null, + "u_acc": 0.7049180327868853, + "t_acc": 0.7049180327868853, + "punct_acc": null, + "threshold_t": 0.03246387094259262, + "threshold_adj": 0.025000000000000005 + }, + "ud": { + "u": 0.9912000000000001, + "t": null, + "punct": null, + "u_acc": 0.964, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.7286853546453547, + "t": 0.7459293591375944, + "punct": null, + "u_acc": 0.2496, + "t_acc": 0.2824, + "punct_acc": null, + "threshold_t": 0.05167698115110397, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7461571691054045, + "t": 0.7535088666888667, + "punct": null, + "u_acc": 0.2828, + "t_acc": 0.3044, + "punct_acc": null, + "threshold_t": 0.010189063847064972, + "threshold_adj": 0.024999999999999998 + } + }, + "ig": { + "opus100": { + "u": 0.8835760517799354, + "t": 0.8618469717984281, + "punct": null, + "u_acc": 0.6140776699029126, + "t_acc": 0.5679611650485437, + "punct_acc": null, + "threshold_t": 0.06960861384868622, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.4906495842016204, + "t": 0.6182539682539682, + "punct": null, + "u_acc": 0.038461538461538464, + "t_acc": 0.11538461538461539, + "punct_acc": null, + "threshold_t": 0.07900502532720566, + "threshold_adj": 0.025000000000000005 + }, + "ted2020-corrupted-social-media": { + "u": 0.7373626373626375, + "t": 0.7282051282051282, + "punct": null, + "u_acc": 0.23076923076923078, + "t_acc": 0.19230769230769232, + "punct_acc": null, + "threshold_t": 0.0449187345802784, + "threshold_adj": 0.025000000000000005 + } + }, + "is": { + "opus100": { + "u": 0.9511162211363419, + "t": 0.9537223340040242, + "punct": null, + "u_acc": 0.7947686116700201, + "t_acc": 0.8269617706237424, + "punct_acc": null, + "threshold_t": 0.09734828025102615, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.8998914279656065, + "t": 0.8846920168875173, + "punct": null, + "u_acc": 0.6702870442203258, + "t_acc": 0.6276183087664856, + "punct_acc": null, + "threshold_t": 0.06837605684995651, + "threshold_adj": 0.024999999999999994 + }, + "ted2020-corrupted-asr": { + "u": 0.7640683461294149, + "t": 0.753604749787956, + "punct": null, + "u_acc": 0.3231552162849873, + "t_acc": 0.2951653944020356, + "punct_acc": null, + "threshold_t": 0.09285765886306763, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7740619572680641, + "t": 0.7727926018002353, + "punct": null, + "u_acc": 0.35368956743002544, + "t_acc": 0.37150127226463103, + "punct_acc": null, + "threshold_t": 0.003045972203835845, + "threshold_adj": 0.024999999999999998 + } + }, + "it": { + "opus100": { + "u": 0.9303795442908346, + "t": 0.9390873015873017, + "punct": null, + "u_acc": 0.7399193548387096, + "t_acc": 0.7741935483870968, + "punct_acc": null, + "threshold_t": 0.04040621221065521, + "threshold_adj": 0.025000000000000005 + }, + "ud": { + "u": 0.9811111111111112, + "t": 0.9811111111111112, + "punct": null, + "u_acc": 0.9333333333333333, + "t_acc": 0.9333333333333333, + "punct_acc": null, + "threshold_t": 0.0260189026594162, + "threshold_adj": 0.025000000000000005 + }, + "ted2020-corrupted-asr": { + "u": 0.748026035076035, + "t": 0.7586727849927851, + "punct": null, + "u_acc": 0.2772, + "t_acc": 0.32, + "punct_acc": null, + "threshold_t": 0.10479506850242615, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7716441736041737, + "t": 0.7730018537018537, + "punct": null, + "u_acc": 0.3392, + "t_acc": 0.3444, + "punct_acc": null, + "threshold_t": 0.016704311594367027, + "threshold_adj": 0.024999999999999998 + } + }, + "ja": { + "ersatz": { + "u": 0.9054726368159204, + "t": 0.8050165837479271, + "punct": null, + "u_acc": 0.6902985074626866, + "t_acc": 0.4253731343283582, + "punct_acc": null, + "threshold_t": 0.45318669080734253, + "threshold_adj": 0.024999999999999998 + }, + "opus100": { + "u": 0.9128035953337159, + "t": 0.9106330082233696, + "punct": null, + "u_acc": 0.7248995983935743, + "t_acc": 0.7289156626506024, + "punct_acc": null, + "threshold_t": 0.044107064604759216, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9419467787114847, + "t": 0.9708683473389357, + "punct": null, + "u_acc": 0.7573529411764706, + "t_acc": 0.8970588235294118, + "punct_acc": null, + "threshold_t": 0.07461076974868774, + "threshold_adj": 0.024999999999999994 + }, + "ted2020-corrupted-asr": { + "u": 0.9344283116883116, + "t": 0.8885466666666667, + "punct": null, + "u_acc": 0.7776, + "t_acc": 0.6648, + "punct_acc": null, + "threshold_t": 0.2125685214996338, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.9231737085137085, + "t": 0.8824266666666667, + "punct": null, + "u_acc": 0.7488, + "t_acc": 0.6472, + "punct_acc": null, + "threshold_t": 0.17212893068790436, + "threshold_adj": 0.024999999999999998 + } + }, + "jv": { + "ud": { + "u": 0.9832000000000001, + "t": null, + "punct": null, + "u_acc": 0.94, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "nllb": { + "u": 0.8558299167499166, + "t": 0.8623142857142857, + "punct": null, + "u_acc": 0.5228, + "t_acc": 0.5852, + "punct_acc": null, + "threshold_t": 0.4523467719554901, + "threshold_adj": 0.024999999999999998 + } + }, + "ka": { + "opus100": { + "u": 0.8586603174603173, + "t": 0.9115523809523809, + "punct": null, + "u_acc": 0.496, + "t_acc": 0.714, + "punct_acc": null, + "threshold_t": 0.19804611802101135, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.7201264264624265, + "t": 0.7375169408369409, + "punct": null, + "u_acc": 0.2584, + "t_acc": 0.288, + "punct_acc": null, + "threshold_t": 0.069283626973629, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.724669748029748, + "t": 0.7319194778554778, + "punct": null, + "u_acc": 0.2688, + "t_acc": 0.2772, + "punct_acc": null, + "threshold_t": 0.04976864531636238, + "threshold_adj": 0.024999999999999998 + } + }, + "kk": { + "ersatz": { + "u": 0.9706666666666667, + "t": 0.9635999999999999, + "punct": null, + "u_acc": 0.904, + "t_acc": 0.888, + "punct_acc": null, + "threshold_t": 0.03291257843375206, + "threshold_adj": 0.025 + }, + "opus100": { + "u": 0.8750229568411388, + "t": 0.8633116883116883, + "punct": null, + "u_acc": 0.5826446280991735, + "t_acc": 0.5785123966942148, + "punct_acc": null, + "threshold_t": 0.10233175754547119, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9575063613231553, + "t": 0.8297709923664122, + "punct": null, + "u_acc": 0.8702290076335878, + "t_acc": 0.48854961832061067, + "punct_acc": null, + "threshold_t": 0.17582136392593384, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.7784396225874666, + "t": 0.7783418422022117, + "punct": null, + "u_acc": 0.3394934976043806, + "t_acc": 0.3394934976043806, + "punct_acc": null, + "threshold_t": 0.024909762665629387, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7570441878450094, + "t": 0.7661712522460389, + "punct": null, + "u_acc": 0.2929500342231348, + "t_acc": 0.32375085557837097, + "punct_acc": null, + "threshold_t": 0.009030105546116829, + "threshold_adj": 0.024999999999999998 + } + }, + "km": { + "ersatz": { + "u": 0.9368105999461932, + "t": 0.951129943502825, + "punct": null, + "u_acc": 0.7813559322033898, + "t_acc": 0.8542372881355932, + "punct_acc": null, + "threshold_t": 0.6576729416847229, + "threshold_adj": 0.024999999999999998 + }, + "opus100": { + "u": 0.7886167440806616, + "t": 0.7790574374079529, + "punct": null, + "u_acc": 0.35876288659793815, + "t_acc": 0.34845360824742266, + "punct_acc": null, + "threshold_t": 0.42202553153038025, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.9078052273540994, + "t": 0.8644110275689223, + "punct": null, + "u_acc": 0.6842105263157895, + "t_acc": 0.5789473684210527, + "punct_acc": null, + "threshold_t": 0.17317470908164978, + "threshold_adj": 0.024999999999999994 + }, + "ted2020-corrupted-social-media": { + "u": 0.8967776584317938, + "t": 0.8819548872180452, + "punct": null, + "u_acc": 0.6766917293233082, + "t_acc": 0.631578947368421, + "punct_acc": null, + "threshold_t": 0.09494873881340027, + "threshold_adj": 0.024999999999999994 + } + }, + "kn": { + "opus100": { + "u": 0.8060085686191881, + "t": 0.8155077960387694, + "punct": null, + "u_acc": 0.42035398230088494, + "t_acc": 0.43805309734513276, + "punct_acc": null, + "threshold_t": 0.09700502455234528, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.5970234311143402, + "t": 0.6080453472745962, + "punct": null, + "u_acc": 0.11888111888111888, + "t_acc": 0.13986013986013987, + "punct_acc": null, + "threshold_t": 0.032595276832580566, + "threshold_adj": 0.024999999999999994 + }, + "ted2020-corrupted-social-media": { + "u": 0.6609589379951372, + "t": 0.6769291314745861, + "punct": null, + "u_acc": 0.14335664335664336, + "t_acc": 0.16083916083916083, + "punct_acc": null, + "threshold_t": 0.07765907794237137, + "threshold_adj": 0.024999999999999994 + } + }, + "ko": { + "opus100": { + "u": 0.8306551635499004, + "t": 0.8371537818906241, + "punct": null, + "u_acc": 0.45546558704453444, + "t_acc": 0.48582995951417, + "punct_acc": null, + "threshold_t": 0.03852401301264763, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9807192807192806, + "t": 0.9841325341325341, + "punct": null, + "u_acc": 0.9318181818181818, + "t_acc": 0.9388111888111889, + "punct_acc": null, + "threshold_t": 0.02070559933781624, + "threshold_adj": 0.024999999999999994 + }, + "ted2020-corrupted-asr": { + "u": 0.792142352418823, + "t": 0.7932689408369408, + "punct": null, + "u_acc": 0.3788, + "t_acc": 0.376, + "punct_acc": null, + "threshold_t": 0.07698056846857071, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7684466608946608, + "t": 0.771019337107337, + "punct": null, + "u_acc": 0.3424, + "t_acc": 0.3448, + "punct_acc": null, + "threshold_t": 0.051460716873407364, + "threshold_adj": 0.024999999999999998 + } + }, + "ku": { + "opus100": { + "u": 0.8763310263310263, + "t": 0.8399267399267398, + "punct": null, + "u_acc": 0.5966735966735967, + "t_acc": 0.5072765072765073, + "punct_acc": null, + "threshold_t": 0.1698647290468216, + "threshold_adj": 0.025000000000000005 + }, + "ted2020-corrupted-asr": { + "u": 0.5630213450861874, + "t": 0.6288080778480778, + "punct": null, + "u_acc": 0.0928, + "t_acc": 0.1208, + "punct_acc": null, + "threshold_t": 0.06456588208675385, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.6100015687199489, + "t": 0.6326616504790538, + "punct": null, + "u_acc": 0.148, + "t_acc": 0.1656, + "punct_acc": null, + "threshold_t": 0.0347466878592968, + "threshold_adj": 0.024999999999999998 + } + }, + "ky": { + "opus100": { + "u": 0.90557067271353, + "t": 0.8969501133786848, + "punct": null, + "u_acc": 0.6857142857142857, + "t_acc": 0.6785714285714286, + "punct_acc": null, + "threshold_t": 0.08270005881786346, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.813741051976346, + "t": 0.8009492685963272, + "punct": null, + "u_acc": 0.4019607843137255, + "t_acc": 0.3627450980392157, + "punct_acc": null, + "threshold_t": 0.018293272703886032, + "threshold_adj": 0.024999999999999994 + }, + "ted2020-corrupted-social-media": { + "u": 0.7815281668222847, + "t": 0.7997976968565205, + "punct": null, + "u_acc": 0.3627450980392157, + "t_acc": 0.4019607843137255, + "punct_acc": null, + "threshold_t": 0.00572846457362175, + "threshold_adj": 0.024999999999999994 + } + }, + "la": { + "ud": { + "u": 0.8454331065759637, + "t": 0.9025271236699808, + "punct": null, + "u_acc": 0.5257142857142857, + "t_acc": 0.6780952380952381, + "punct_acc": null, + "threshold_t": 0.0073266164399683475, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.4904761904761905, + "t": 0.6, + "punct": null, + "u_acc": 0.0, + "t_acc": 0.0, + "punct_acc": null, + "threshold_t": 0.014356599189341068, + "threshold_adj": 0.025000000000000005 + }, + "ted2020-corrupted-social-media": { + "u": 0.7666666666666666, + "t": 0.4459984459984459, + "punct": null, + "u_acc": 0.3333333333333333, + "t_acc": 0.0, + "punct_acc": null, + "threshold_t": 0.00035805770312435925, + "threshold_adj": 0.025000000000000005 + } + }, + "lt": { + "ersatz": { + "u": 0.9789333333333333, + "t": 0.9775999999999999, + "punct": null, + "u_acc": 0.924, + "t_acc": 0.92, + "punct_acc": null, + "threshold_t": 0.031836457550525665, + "threshold_adj": 0.025 + }, + "opus100": { + "u": 0.9064105618185315, + "t": 0.9179942593249045, + "punct": null, + "u_acc": 0.6834677419354839, + "t_acc": 0.719758064516129, + "punct_acc": null, + "threshold_t": 0.041259873658418655, + "threshold_adj": 0.025000000000000005 + }, + "ud": { + "u": 0.9646996278575226, + "t": 0.9575048732943471, + "punct": null, + "u_acc": 0.8830409356725146, + "t_acc": 0.8654970760233918, + "punct_acc": null, + "threshold_t": 0.040202051401138306, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.7566520879120879, + "t": 0.7619136507936508, + "punct": null, + "u_acc": 0.3004, + "t_acc": 0.3156, + "punct_acc": null, + "threshold_t": 0.12067044526338577, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7687044895844896, + "t": 0.7700486646686647, + "punct": null, + "u_acc": 0.3356, + "t_acc": 0.3404, + "punct_acc": null, + "threshold_t": 0.022306077182292938, + "threshold_adj": 0.024999999999999998 + } + }, + "lv": { + "ersatz": { + "u": 0.976911976911977, + "t": 0.7822310405643739, + "punct": null, + "u_acc": 0.9166666666666666, + "t_acc": 0.3472222222222222, + "punct_acc": null, + "threshold_t": 0.5568537712097168, + "threshold_adj": 0.025 + }, + "opus100": { + "u": 0.9193511469373539, + "t": 0.9276731382208055, + "punct": null, + "u_acc": 0.7139959432048681, + "t_acc": 0.7464503042596349, + "punct_acc": null, + "threshold_t": 0.07159245014190674, + "threshold_adj": 0.024999999999999998 + }, + "ud": { + "u": 0.958493248045487, + "t": 0.9588959962094291, + "punct": null, + "u_acc": 0.8623548922056384, + "t_acc": 0.8623548922056384, + "punct_acc": null, + "threshold_t": 0.01997421309351921, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.7732926007326009, + "t": 0.7773880519480519, + "punct": null, + "u_acc": 0.3428, + "t_acc": 0.364, + "punct_acc": null, + "threshold_t": 0.06377746164798737, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7653261072261073, + "t": 0.7683756487956489, + "punct": null, + "u_acc": 0.3096, + "t_acc": 0.322, + "punct_acc": null, + "threshold_t": 0.012844519689679146, + "threshold_adj": 0.024999999999999998 + } + }, + "mg": { + "opus100": { + "u": 0.931958100379153, + "t": 0.9377289377289378, + "punct": null, + "u_acc": 0.7510121457489879, + "t_acc": 0.7874493927125507, + "punct_acc": null, + "threshold_t": 0.13172954320907593, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.6514283042060819, + "t": 0.6898321842766285, + "punct": null, + "u_acc": 0.18518518518518517, + "t_acc": 0.2037037037037037, + "punct_acc": null, + "threshold_t": 0.0876275822520256, + "threshold_adj": 0.02499999999999999 + }, + "ted2020-corrupted-social-media": { + "u": 0.7176660787771896, + "t": 0.7109374164929719, + "punct": null, + "u_acc": 0.25925925925925924, + "t_acc": 0.24074074074074073, + "punct_acc": null, + "threshold_t": 0.006002173293381929, + "threshold_adj": 0.02499999999999999 + } + }, + "mk": { + "opus100": { + "u": 0.9460285714285714, + "t": 0.9406571428571429, + "punct": null, + "u_acc": 0.788, + "t_acc": 0.768, + "punct_acc": null, + "threshold_t": 0.014635544270277023, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.7636171517371518, + "t": 0.7681002686202686, + "punct": null, + "u_acc": 0.31, + "t_acc": 0.32, + "punct_acc": null, + "threshold_t": 0.034029506146907806, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7716997491397491, + "t": 0.7763123065823065, + "punct": null, + "u_acc": 0.336, + "t_acc": 0.354, + "punct_acc": null, + "threshold_t": 0.01037675142288208, + "threshold_adj": 0.024999999999999998 + } + }, + "ml": { + "opus100": { + "u": 0.8744055587429082, + "t": 0.861388410786001, + "punct": null, + "u_acc": 0.5742971887550201, + "t_acc": 0.5602409638554217, + "punct_acc": null, + "threshold_t": 0.11174555122852325, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.6242638607717973, + "t": 0.6561427769761103, + "punct": null, + "u_acc": 0.13095238095238096, + "t_acc": 0.17063492063492064, + "punct_acc": null, + "threshold_t": 0.039386194199323654, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.702697956070972, + "t": 0.6996049878986386, + "punct": null, + "u_acc": 0.2261904761904762, + "t_acc": 0.22883597883597884, + "punct_acc": null, + "threshold_t": 0.03403574600815773, + "threshold_adj": 0.024999999999999998 + } + }, + "mn": { + "opus100": { + "u": 0.939403853144311, + "t": null, + "punct": null, + "u_acc": 0.7986641221374046, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.8342373626373626, + "t": 0.8230451370851369, + "punct": null, + "u_acc": 0.4972, + "t_acc": 0.468, + "punct_acc": null, + "threshold_t": 0.03796566277742386, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.789210695970696, + "t": 0.7966522994652406, + "punct": null, + "u_acc": 0.3736, + "t_acc": 0.3936, + "punct_acc": null, + "threshold_t": 0.015268196351826191, + "threshold_adj": 0.024999999999999998 + }, + "nllb": { + "u": 0.9304377777777778, + "t": 0.9282911111111113, + "punct": null, + "u_acc": 0.75, + "t_acc": 0.7472, + "punct_acc": null, + "threshold_t": 0.03747682645916939, + "threshold_adj": 0.024999999999999998 + } + }, + "mr": { + "opus100": { + "u": 0.9302387352790579, + "t": 0.8856278801843317, + "punct": null, + "u_acc": 0.7600806451612904, + "t_acc": 0.6512096774193549, + "punct_acc": null, + "threshold_t": 0.1326208859682083, + "threshold_adj": 0.025000000000000005 + }, + "ud": { + "u": 0.9416666666666668, + "t": 0.9416666666666668, + "punct": null, + "u_acc": 0.8333333333333334, + "t_acc": 0.8333333333333334, + "punct_acc": null, + "threshold_t": 0.024925915524363518, + "threshold_adj": 0.025000000000000005 + }, + "ted2020-corrupted-asr": { + "u": 0.6081290322405493, + "t": 0.6502421423021422, + "punct": null, + "u_acc": 0.1428, + "t_acc": 0.17, + "punct_acc": null, + "threshold_t": 0.06100095808506012, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.702936416916417, + "t": 0.7023944306673718, + "punct": null, + "u_acc": 0.2264, + "t_acc": 0.2292, + "punct_acc": null, + "threshold_t": 0.023292629048228264, + "threshold_adj": 0.024999999999999998 + } + }, + "ms": { + "opus100": { + "u": 0.9177248677248677, + "t": 0.9175191064079953, + "punct": null, + "u_acc": 0.6893004115226338, + "t_acc": 0.6934156378600823, + "punct_acc": null, + "threshold_t": 0.03117837756872177, + "threshold_adj": 0.025000000000000005 + }, + "ted2020-corrupted-asr": { + "u": 0.7225148904837096, + "t": 0.7330027230027231, + "punct": null, + "u_acc": 0.24583333333333332, + "t_acc": 0.2625, + "punct_acc": null, + "threshold_t": 0.0988440066576004, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-social-media": { + "u": 0.7460543472797453, + "t": 0.7507059301351097, + "punct": null, + "u_acc": 0.2863095238095238, + "t_acc": 0.3148809523809524, + "punct_acc": null, + "threshold_t": 0.0078031569719314575, + "threshold_adj": 0.025 + } + }, + "mt": { + "opus100": { + "u": 0.8591569698857149, + "t": 0.894841067614347, + "punct": null, + "u_acc": 0.5931174089068826, + "t_acc": 0.6882591093117408, + "punct_acc": null, + "threshold_t": 0.1883201152086258, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9343589743589744, + "t": 0.9274358974358974, + "punct": null, + "u_acc": 0.8153846153846154, + "t_acc": 0.8076923076923077, + "punct_acc": null, + "threshold_t": 0.062193091958761215, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.5855921855921855, + "t": 0.5634976134976134, + "punct": null, + "u_acc": 0.07692307692307693, + "t_acc": 0.07692307692307693, + "punct_acc": null, + "threshold_t": 0.03294555842876434, + "threshold_adj": 0.025000000000000005 + }, + "ted2020-corrupted-social-media": { + "u": 0.708974358974359, + "t": 0.7384615384615384, + "punct": null, + "u_acc": 0.19230769230769232, + "t_acc": 0.23076923076923078, + "punct_acc": null, + "threshold_t": 0.13653701543807983, + "threshold_adj": 0.025000000000000005 + } + }, + "my": { + "opus100": { + "u": 0.8023329493087559, + "t": 0.8250672043010752, + "punct": null, + "u_acc": 0.4576612903225806, + "t_acc": 0.5161290322580645, + "punct_acc": null, + "threshold_t": 0.18909141421318054, + "threshold_adj": 0.025000000000000005 + }, + "ted2020-corrupted-asr": { + "u": 0.9172263492063492, + "t": 0.91228, + "punct": null, + "u_acc": 0.724, + "t_acc": 0.74, + "punct_acc": null, + "threshold_t": 0.59529709815979, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.901103492063492, + "t": 0.8855333333333334, + "punct": null, + "u_acc": 0.6788, + "t_acc": 0.662, + "punct_acc": null, + "threshold_t": 0.49466800689697266, + "threshold_adj": 0.024999999999999998 + } + }, + "ne": { + "opus100": { + "u": 0.8050421155072318, + "t": 0.809332527937179, + "punct": null, + "u_acc": 0.3974630021141649, + "t_acc": 0.42283298097251587, + "punct_acc": null, + "threshold_t": 0.08369841426610947, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.728117449546021, + "t": 0.7297753690610833, + "punct": null, + "u_acc": 0.26833976833976836, + "t_acc": 0.2644787644787645, + "punct_acc": null, + "threshold_t": 0.04352688789367676, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-social-media": { + "u": 0.7141311069882499, + "t": 0.7115690829976544, + "punct": null, + "u_acc": 0.26833976833976836, + "t_acc": 0.26640926640926643, + "punct_acc": null, + "threshold_t": 0.028104158118367195, + "threshold_adj": 0.025 + } + }, + "nl": { + "opus100": { + "u": 0.9462952380952381, + "t": null, + "punct": null, + "u_acc": 0.764, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9483221476510068, + "t": 0.957718120805369, + "punct": null, + "u_acc": 0.8523489932885906, + "t_acc": 0.8791946308724832, + "punct_acc": null, + "threshold_t": 0.014717436395585537, + "threshold_adj": 0.024999999999999994 + }, + "ted2020-corrupted-asr": { + "u": 0.8135955331624897, + "t": 0.7934558730158731, + "punct": null, + "u_acc": 0.4324, + "t_acc": 0.3996, + "punct_acc": null, + "threshold_t": 0.0726659744977951, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7649247557643303, + "t": 0.769765803412274, + "punct": null, + "u_acc": 0.3132, + "t_acc": 0.328, + "punct_acc": null, + "threshold_t": 0.01751263253390789, + "threshold_adj": 0.024999999999999998 + } + }, + "no": { + "opus100": { + "u": 0.954646697388633, + "t": 0.9562596006144394, + "punct": null, + "u_acc": 0.8205645161290323, + "t_acc": 0.8245967741935484, + "punct_acc": null, + "threshold_t": 0.031833261251449585, + "threshold_adj": 0.025000000000000005 + }, + "ud": { + "u": 0.9748720975993702, + "t": 0.9823101141282959, + "punct": null, + "u_acc": 0.9214876033057852, + "t_acc": 0.9421487603305785, + "punct_acc": null, + "threshold_t": 0.012947076000273228, + "threshold_adj": 0.025 + } + }, + "pa": { + "opus100": { + "u": 0.8081772053083529, + "t": 0.7945582877959927, + "punct": null, + "u_acc": 0.39959016393442626, + "t_acc": 0.38934426229508196, + "punct_acc": null, + "threshold_t": 0.1068560853600502, + "threshold_adj": 0.025000000000000005 + }, + "ted2020-corrupted-asr": { + "u": 0.7246259060088848, + "t": 0.743439716312057, + "punct": null, + "u_acc": 0.24468085106382978, + "t_acc": 0.24468085106382978, + "punct_acc": null, + "threshold_t": 0.11993339657783508, + "threshold_adj": 0.02499999999999999 + }, + "ted2020-corrupted-social-media": { + "u": 0.7855116514690983, + "t": 0.7815771698750423, + "punct": null, + "u_acc": 0.39361702127659576, + "t_acc": 0.3829787234042553, + "punct_acc": null, + "threshold_t": 0.01919957809150219, + "threshold_adj": 0.02499999999999999 + } + }, + "pl": { + "ersatz": { + "u": 0.9479605387971921, + "t": 0.8033200531208498, + "punct": null, + "u_acc": 0.8326693227091634, + "t_acc": 0.41434262948207173, + "punct_acc": null, + "threshold_t": 0.4624512195587158, + "threshold_adj": 0.025 + }, + "opus100": { + "u": 0.953225806451613, + "t": 0.9510752688172043, + "punct": null, + "u_acc": 0.8205645161290323, + "t_acc": 0.8024193548387096, + "punct_acc": null, + "threshold_t": 0.0161663219332695, + "threshold_adj": 0.025000000000000005 + }, + "ud": { + "u": 0.9715259870494528, + "t": 0.9720388516417396, + "punct": null, + "u_acc": 0.8898916967509025, + "t_acc": 0.8898916967509025, + "punct_acc": null, + "threshold_t": 0.02646731026470661, + "threshold_adj": 0.024999999999999994 + }, + "ted2020-corrupted-asr": { + "u": 0.7827482339882339, + "t": 0.7828768342768342, + "punct": null, + "u_acc": 0.3592, + "t_acc": 0.3656, + "punct_acc": null, + "threshold_t": 0.04304394870996475, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7610100894660895, + "t": 0.7722441092241092, + "punct": null, + "u_acc": 0.306, + "t_acc": 0.3412, + "punct_acc": null, + "threshold_t": 0.006635318044573069, + "threshold_adj": 0.024999999999999998 + } + }, + "ps": { + "ersatz": { + "u": 0.9322091886608015, + "t": 0.9460922589954848, + "punct": null, + "u_acc": 0.7536656891495601, + "t_acc": 0.8093841642228738, + "punct_acc": null, + "threshold_t": 0.06968680769205093, + "threshold_adj": 0.024999999999999994 + }, + "opus100": { + "u": 0.8009226853324849, + "t": 0.7977551525435712, + "punct": null, + "u_acc": 0.4053452115812918, + "t_acc": 0.3986636971046771, + "punct_acc": null, + "threshold_t": 0.039608392864465714, + "threshold_adj": 0.025000000000000005 + }, + "ted2020-corrupted-asr": { + "u": 0.719904574219731, + "t": 0.7194110026226814, + "punct": null, + "u_acc": 0.2116788321167883, + "t_acc": 0.23357664233576642, + "punct_acc": null, + "threshold_t": 0.10991491377353668, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7029757954940437, + "t": 0.703548723468667, + "punct": null, + "u_acc": 0.19708029197080293, + "t_acc": 0.23357664233576642, + "punct_acc": null, + "threshold_t": 0.08554711937904358, + "threshold_adj": 0.024999999999999998 + } + }, + "pt": { + "opus100": { + "u": 0.9540515489908201, + "t": 0.942594419684203, + "punct": null, + "u_acc": 0.8218623481781376, + "t_acc": 0.7793522267206477, + "punct_acc": null, + "threshold_t": 0.010757233947515488, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9681506849315068, + "t": 0.968607305936073, + "punct": null, + "u_acc": 0.9006849315068494, + "t_acc": 0.8972602739726028, + "punct_acc": null, + "threshold_t": 0.01796933077275753, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.762014875700375, + "t": 0.7672156049912148, + "punct": null, + "u_acc": 0.296, + "t_acc": 0.3404, + "punct_acc": null, + "threshold_t": 0.09798134118318558, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.760727193839752, + "t": 0.7673577844377845, + "punct": null, + "u_acc": 0.318, + "t_acc": 0.3404, + "punct_acc": null, + "threshold_t": 0.009163901209831238, + "threshold_adj": 0.024999999999999998 + } + }, + "ro": { + "ersatz": { + "u": 0.981, + "t": 0.7769999999999999, + "punct": null, + "u_acc": 0.924, + "t_acc": 0.332, + "punct_acc": null, + "threshold_t": 0.6352580785751343, + "threshold_adj": 0.025 + }, + "opus100": { + "u": 0.9452364919031585, + "t": 0.9368883641610914, + "punct": null, + "u_acc": 0.8101010101010101, + "t_acc": 0.7818181818181819, + "punct_acc": null, + "threshold_t": 0.012439750134944916, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.8101475328270229, + "t": 0.8007684603971787, + "punct": null, + "u_acc": 0.4714828897338403, + "t_acc": 0.44866920152091255, + "punct_acc": null, + "threshold_t": 0.3236141800880432, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.7627340203340204, + "t": 0.7614035842293907, + "punct": null, + "u_acc": 0.3216, + "t_acc": 0.3284, + "punct_acc": null, + "threshold_t": 0.08552602678537369, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7558827927627928, + "t": 0.7558107281607281, + "punct": null, + "u_acc": 0.3036, + "t_acc": 0.3048, + "punct_acc": null, + "threshold_t": 0.01240621693432331, + "threshold_adj": 0.024999999999999998 + } + }, + "ru": { + "ersatz": { + "u": 0.9819892473118279, + "t": 0.9834869431643626, + "punct": null, + "u_acc": 0.9395161290322581, + "t_acc": 0.9435483870967742, + "punct_acc": null, + "threshold_t": 0.013904791325330734, + "threshold_adj": 0.025000000000000005 + }, + "opus100": { + "u": 0.9066582097319802, + "t": null, + "punct": null, + "u_acc": 0.6495901639344263, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + }, + "ud": { + "u": 0.8963649481831301, + "t": 0.8924891774891774, + "punct": null, + "u_acc": 0.6954545454545454, + "t_acc": 0.6818181818181818, + "punct_acc": null, + "threshold_t": 0.10041635483503342, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.7863558219558219, + "t": 0.7914839344738658, + "punct": null, + "u_acc": 0.3604, + "t_acc": 0.3908, + "punct_acc": null, + "threshold_t": 0.051204755902290344, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7722637118437118, + "t": 0.7773796425796426, + "punct": null, + "u_acc": 0.34, + "t_acc": 0.3584, + "punct_acc": null, + "threshold_t": 0.017175976186990738, + "threshold_adj": 0.024999999999999998 + } + }, + "si": { + "opus100": { + "u": 0.8719182027649769, + "t": 0.8738895289298515, + "punct": null, + "u_acc": 0.5504032258064516, + "t_acc": 0.5685483870967742, + "punct_acc": null, + "threshold_t": 0.030924929305911064, + "threshold_adj": 0.025000000000000005 + }, + "ted2020-corrupted-asr": { + "u": 0.6951496665082956, + "t": 0.743078626799557, + "punct": null, + "u_acc": 0.24031007751937986, + "t_acc": 0.3023255813953488, + "punct_acc": null, + "threshold_t": 0.0908355563879013, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7081187818029924, + "t": 0.7189872143360515, + "punct": null, + "u_acc": 0.24806201550387597, + "t_acc": 0.3023255813953488, + "punct_acc": null, + "threshold_t": 0.05225501209497452, + "threshold_adj": 0.024999999999999998 + } + }, + "sk": { + "opus100": { + "u": 0.9496858875891133, + "t": 0.9502272145417306, + "punct": null, + "u_acc": 0.8225806451612904, + "t_acc": 0.8266129032258065, + "punct_acc": null, + "threshold_t": 0.034150924533605576, + "threshold_adj": 0.025000000000000005 + }, + "ud": { + "u": 0.9571069182389936, + "t": 0.9637735849056603, + "punct": null, + "u_acc": 0.8754716981132076, + "t_acc": 0.8943396226415095, + "punct_acc": null, + "threshold_t": 0.021918751299381256, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.7839368452833716, + "t": 0.7872687717273298, + "punct": null, + "u_acc": 0.3728, + "t_acc": 0.3832, + "punct_acc": null, + "threshold_t": 0.03527330979704857, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7702272745142714, + "t": 0.7714387119313435, + "punct": null, + "u_acc": 0.3352, + "t_acc": 0.3412, + "punct_acc": null, + "threshold_t": 0.017996450886130333, + "threshold_adj": 0.024999999999999998 + } + }, + "sl": { + "opus100": { + "u": 0.9488366163064957, + "t": 0.946873207114171, + "punct": null, + "u_acc": 0.7871485943775101, + "t_acc": 0.7771084337349398, + "punct_acc": null, + "threshold_t": 0.020156603306531906, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9621130952380952, + "t": 0.9721577380952382, + "punct": null, + "u_acc": 0.875, + "t_acc": 0.9, + "punct_acc": null, + "threshold_t": 0.012981006875634193, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.7924288922188922, + "t": 0.7654711111111112, + "punct": null, + "u_acc": 0.3864, + "t_acc": 0.332, + "punct_acc": null, + "threshold_t": 0.12842607498168945, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7726845199245199, + "t": 0.7723022444923497, + "punct": null, + "u_acc": 0.3356, + "t_acc": 0.3692, + "punct_acc": null, + "threshold_t": 0.0037679332308471203, + "threshold_adj": 0.024999999999999998 + } + }, + "sq": { + "opus100": { + "u": 0.9377341944415115, + "t": 0.9396118560752708, + "punct": null, + "u_acc": 0.7682926829268293, + "t_acc": 0.7784552845528455, + "punct_acc": null, + "threshold_t": 0.027837995439767838, + "threshold_adj": 0.025 + }, + "ud": { + "u": 1.0, + "t": null, + "punct": null, + "u_acc": 1.0, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.02500000000000001 + }, + "ted2020-corrupted-asr": { + "u": 0.7407961394161393, + "t": 0.7565595670995672, + "punct": null, + "u_acc": 0.2744, + "t_acc": 0.3216, + "punct_acc": null, + "threshold_t": 0.09047670662403107, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.75526518879813, + "t": 0.7535440929005636, + "punct": null, + "u_acc": 0.2968, + "t_acc": 0.2888, + "punct_acc": null, + "threshold_t": 0.03415989130735397, + "threshold_adj": 0.024999999999999998 + } + }, + "sr": { + "opus100": { + "u": 0.953910881621725, + "t": 0.9462803595333716, + "punct": null, + "u_acc": 0.8032128514056225, + "t_acc": 0.7690763052208835, + "punct_acc": null, + "threshold_t": 0.015320368111133575, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.98, + "t": 0.9820512820512821, + "punct": null, + "u_acc": 0.9307692307692308, + "t_acc": 0.9307692307692308, + "punct_acc": null, + "threshold_t": 0.011502943001687527, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.755852282091431, + "t": 0.7649638672438672, + "punct": null, + "u_acc": 0.3096, + "t_acc": 0.3356, + "punct_acc": null, + "threshold_t": 0.08191700279712677, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7589203144224197, + "t": 0.7575096481296482, + "punct": null, + "u_acc": 0.3188, + "t_acc": 0.3128, + "punct_acc": null, + "threshold_t": 0.027849096804857254, + "threshold_adj": 0.024999999999999998 + } + }, + "sv": { + "opus100": { + "u": 0.9518072289156626, + "t": 0.9500860585197936, + "punct": null, + "u_acc": 0.7971887550200804, + "t_acc": 0.7931726907630522, + "punct_acc": null, + "threshold_t": 0.023536527529358864, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9660206718346254, + "t": 0.9622923588039867, + "punct": null, + "u_acc": 0.872093023255814, + "t_acc": 0.8604651162790697, + "punct_acc": null, + "threshold_t": 0.0153135284781456, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.7837960239760239, + "t": 0.780525137085137, + "punct": null, + "u_acc": 0.3624, + "t_acc": 0.3628, + "punct_acc": null, + "threshold_t": 0.07322077453136444, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7547117460317461, + "t": 0.7578333910533911, + "punct": null, + "u_acc": 0.2904, + "t_acc": 0.2992, + "punct_acc": null, + "threshold_t": 0.013466146774590015, + "threshold_adj": 0.024999999999999998 + } + }, + "ta": { + "ersatz": { + "u": 0.9650920129007778, + "t": 0.9532536520584328, + "punct": null, + "u_acc": 0.8565737051792829, + "t_acc": 0.8446215139442231, + "punct_acc": null, + "threshold_t": 0.07176318019628525, + "threshold_adj": 0.025 + }, + "opus100": { + "u": 0.7873350227008763, + "t": 0.7803619821912504, + "punct": null, + "u_acc": 0.3983739837398374, + "t_acc": 0.3638211382113821, + "punct_acc": null, + "threshold_t": 0.3753874599933624, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9755555555555556, + "t": 0.9755555555555556, + "punct": null, + "u_acc": 0.9, + "t_acc": 0.9, + "punct_acc": null, + "threshold_t": 0.025839949026703835, + "threshold_adj": 0.02500000000000001 + }, + "ted2020-corrupted-asr": { + "u": 0.6389709851093345, + "t": 0.7116471389425126, + "punct": null, + "u_acc": 0.15800711743772242, + "t_acc": 0.27473309608540925, + "punct_acc": null, + "threshold_t": 0.08055718243122101, + "threshold_adj": 0.024999999999999994 + }, + "ted2020-corrupted-social-media": { + "u": 0.7056366473841656, + "t": 0.7254165091531639, + "punct": null, + "u_acc": 0.23487544483985764, + "t_acc": 0.2590747330960854, + "punct_acc": null, + "threshold_t": 0.06779216229915619, + "threshold_adj": 0.024999999999999994 + } + }, + "te": { + "opus100": { + "u": 0.8499481697440882, + "t": 0.8551166180758017, + "punct": null, + "u_acc": 0.5448979591836735, + "t_acc": 0.5551020408163265, + "punct_acc": null, + "threshold_t": 0.06524220108985901, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.702753582436362, + "t": 0.7132039662251143, + "punct": null, + "u_acc": 0.2326283987915408, + "t_acc": 0.2311178247734139, + "punct_acc": null, + "threshold_t": 0.10408615320920944, + "threshold_adj": 0.024999999999999994 + }, + "ted2020-corrupted-social-media": { + "u": 0.7122062227802409, + "t": 0.7195427516424495, + "punct": null, + "u_acc": 0.24924471299093656, + "t_acc": 0.24471299093655588, + "punct_acc": null, + "threshold_t": 0.1023692786693573, + "threshold_adj": 0.024999999999999994 + } + }, + "tg": { + "opus100": { + "u": 0.863146035133987, + "t": 0.8886593995027731, + "punct": null, + "u_acc": 0.5341365461847389, + "t_acc": 0.6385542168674698, + "punct_acc": null, + "threshold_t": 0.09383110702037811, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.7837510442773601, + "t": 0.73796992481203, + "punct": null, + "u_acc": 0.35526315789473684, + "t_acc": 0.3026315789473684, + "punct_acc": null, + "threshold_t": 0.09483484923839569, + "threshold_adj": 0.024999999999999994 + }, + "ted2020-corrupted-social-media": { + "u": 0.8123015873015873, + "t": 0.8123015873015873, + "punct": null, + "u_acc": 0.4342105263157895, + "t_acc": 0.4342105263157895, + "punct_acc": null, + "threshold_t": 0.025673992931842804, + "threshold_adj": 0.024999999999999994 + } + }, + "th": { + "opus100": { + "u": 0.7975597242263908, + "t": 0.8282635882635881, + "punct": null, + "u_acc": 0.3111111111111111, + "t_acc": 0.45454545454545453, + "punct_acc": null, + "threshold_t": 0.10877402871847153, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.8901904761904762, + "t": null, + "punct": null, + "u_acc": 0.56, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.6942637985757276, + "t": 0.7442345344646828, + "punct": null, + "u_acc": 0.2016, + "t_acc": 0.29, + "punct_acc": null, + "threshold_t": 0.09512927383184433, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.6932719915927589, + "t": 0.7430681840164193, + "punct": null, + "u_acc": 0.2036, + "t_acc": 0.2916, + "punct_acc": null, + "threshold_t": 0.09190575033426285, + "threshold_adj": 0.024999999999999998 + } + }, + "tr": { + "ersatz": { + "u": 0.959137537993921, + "t": 0.9545276089159068, + "punct": null, + "u_acc": 0.8470744680851063, + "t_acc": 0.8377659574468085, + "punct_acc": null, + "threshold_t": 0.031176680698990822, + "threshold_adj": 0.024999999999999998 + }, + "opus100": { + "u": 0.9411027568922307, + "t": 0.9404022877707088, + "punct": null, + "u_acc": 0.7793522267206477, + "t_acc": 0.7692307692307693, + "punct_acc": null, + "threshold_t": 0.014212674461305141, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9693333333333333, + "t": 0.9664242424242424, + "punct": null, + "u_acc": 0.8872727272727273, + "t_acc": 0.88, + "punct_acc": null, + "threshold_t": 0.029714224860072136, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.7792540874970441, + "t": 0.7766845959931542, + "punct": null, + "u_acc": 0.3616, + "t_acc": 0.3572, + "punct_acc": null, + "threshold_t": 0.040564484894275665, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7419541991341991, + "t": 0.7493594016319597, + "punct": null, + "u_acc": 0.266, + "t_acc": 0.2912, + "punct_acc": null, + "threshold_t": 0.012117275968194008, + "threshold_adj": 0.024999999999999998 + } + }, + "uk": { + "opus100": { + "u": 0.9350197326100941, + "t": 0.9325237457767579, + "punct": null, + "u_acc": 0.7530120481927711, + "t_acc": 0.7389558232931727, + "punct_acc": null, + "threshold_t": 0.01724167913198471, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9428784013605442, + "t": 0.941390306122449, + "punct": null, + "u_acc": 0.8214285714285714, + "t_acc": 0.8169642857142857, + "punct_acc": null, + "threshold_t": 0.026036357507109642, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.7715948629148629, + "t": 0.7767519379844962, + "punct": null, + "u_acc": 0.3248, + "t_acc": 0.3576, + "punct_acc": null, + "threshold_t": 0.0690658688545227, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7747978643578645, + "t": 0.7815418410347822, + "punct": null, + "u_acc": 0.3476, + "t_acc": 0.37, + "punct_acc": null, + "threshold_t": 0.010968232527375221, + "threshold_adj": 0.024999999999999998 + } + }, + "ur": { + "opus100": { + "u": 0.7735357509721916, + "t": 0.7810145951035782, + "punct": null, + "u_acc": 0.3495762711864407, + "t_acc": 0.3644067796610169, + "punct_acc": null, + "threshold_t": 0.04047752171754837, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9619758351101634, + "t": 0.9542288557213929, + "punct": null, + "u_acc": 0.8582089552238806, + "t_acc": 0.835820895522388, + "punct_acc": null, + "threshold_t": 0.033104777336120605, + "threshold_adj": 0.024999999999999994 + }, + "ted2020-corrupted-asr": { + "u": 0.7253640016486882, + "t": 0.7204567814280045, + "punct": null, + "u_acc": 0.2687564234326824, + "t_acc": 0.2595066803699897, + "punct_acc": null, + "threshold_t": 0.020792214199900627, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-social-media": { + "u": 0.7347148312461776, + "t": 0.7401067586062449, + "punct": null, + "u_acc": 0.302672147995889, + "t_acc": 0.3078108941418294, + "punct_acc": null, + "threshold_t": 0.03968769684433937, + "threshold_adj": 0.025 + } + }, + "uz": { + "opus100": { + "u": 0.8536183997408487, + "t": 0.8468027210884354, + "punct": null, + "u_acc": 0.46938775510204084, + "t_acc": 0.536734693877551, + "punct_acc": null, + "threshold_t": 0.2479364424943924, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.7662954134473121, + "t": 0.7667576914412357, + "punct": null, + "u_acc": 0.33016877637130804, + "t_acc": 0.3333333333333333, + "punct_acc": null, + "threshold_t": 0.02676210179924965, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-social-media": { + "u": 0.7598126381354229, + "t": 0.7684387284070828, + "punct": null, + "u_acc": 0.3090717299578059, + "t_acc": 0.33544303797468356, + "punct_acc": null, + "threshold_t": 0.007710875943303108, + "threshold_adj": 0.025 + } + }, + "vi": { + "opus100": { + "u": 0.9482167352537724, + "t": 0.9459533607681756, + "punct": null, + "u_acc": 0.7983539094650206, + "t_acc": 0.7818930041152263, + "punct_acc": null, + "threshold_t": 0.016140282154083252, + "threshold_adj": 0.025000000000000005 + }, + "ud": { + "u": 0.9351666666666668, + "t": 0.9368333333333334, + "punct": null, + "u_acc": 0.735, + "t_acc": 0.74, + "punct_acc": null, + "threshold_t": 0.027428606525063515, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.7295103022124074, + "t": 0.7364365656565657, + "punct": null, + "u_acc": 0.248, + "t_acc": 0.2732, + "punct_acc": null, + "threshold_t": 0.09608954191207886, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7477895526695527, + "t": 0.7563450584022101, + "punct": null, + "u_acc": 0.2764, + "t_acc": 0.3444, + "punct_acc": null, + "threshold_t": 0.0032935317140072584, + "threshold_adj": 0.024999999999999998 + } + }, + "xh": { + "opus100": { + "u": 0.8990087597971416, + "t": 0.9063459131923862, + "punct": null, + "u_acc": 0.6680497925311203, + "t_acc": 0.6908713692946058, + "punct_acc": null, + "threshold_t": 0.06154816225171089, + "threshold_adj": 0.025 + } + }, + "yi": { + "opus100": { + "u": 0.7796984624570832, + "t": 0.7826690550828483, + "punct": null, + "u_acc": 0.322884012539185, + "t_acc": 0.3166144200626959, + "punct_acc": null, + "threshold_t": 0.020594267174601555, + "threshold_adj": 0.024999999999999994 + } + }, + "yo": { + "opus100": { + "u": 0.8140589832995976, + "t": null, + "punct": null, + "u_acc": 0.4304607508532423, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ud": { + "u": 0.8644642857142857, + "t": null, + "punct": null, + "u_acc": 0.575, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "nllb": { + "u": 0.8348383008804061, + "t": 0.8489485714285715, + "punct": null, + "u_acc": 0.486, + "t_acc": 0.5452, + "punct_acc": null, + "threshold_t": 0.47024381160736084, + "threshold_adj": 0.024999999999999998 + } + }, + "zh": { + "ersatz": { + "u": 0.8829999999999999, + "t": 0.9235523809523809, + "punct": null, + "u_acc": 0.644, + "t_acc": 0.748, + "punct_acc": null, + "threshold_t": 0.004477021284401417, + "threshold_adj": 0.025 + }, + "opus100": { + "u": 0.8233096994666412, + "t": 0.8014042407402568, + "punct": null, + "u_acc": 0.4607645875251509, + "t_acc": 0.3963782696177062, + "punct_acc": null, + "threshold_t": 0.007423441857099533, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9568, + "t": 0.9731047619047618, + "punct": null, + "u_acc": 0.864, + "t_acc": 0.912, + "punct_acc": null, + "threshold_t": 0.008310707286000252, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.6496724325198839, + "t": 0.6695837862915849, + "punct": null, + "u_acc": 0.15301085883514315, + "t_acc": 0.18311944718657452, + "punct_acc": null, + "threshold_t": 0.06761831045150757, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-social-media": { + "u": 0.6541910372169271, + "t": 0.6717792640289542, + "punct": null, + "u_acc": 0.1564659427443238, + "t_acc": 0.18114511352418558, + "punct_acc": null, + "threshold_t": 0.0465080663561821, + "threshold_adj": 0.025 + } + }, + "zu": { + "opus100": { + "u": 0.8860534527201194, + "t": 0.859659476326143, + "punct": null, + "u_acc": 0.6196581196581197, + "t_acc": 0.5683760683760684, + "punct_acc": null, + "threshold_t": 0.060935959219932556, + "threshold_adj": 0.025 + } + }, + "tr-de": {}, + "es-en": {}, + "vi-en": {}, + "en-de": {} +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/sat-12l_lora.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/sat-12l_lora.json new file mode 100644 index 0000000000000000000000000000000000000000..7f53be9c1690eed057780c2a1439f3e4bf4803bc --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/sat-12l_lora.json @@ -0,0 +1,1137 @@ +{ + "af": { + "ted2020-corrupted-asr": { + "u": 0.8441025641025642, + "t": 0.8580512820512821, + "punct": null, + "u_acc": 0.5723076923076923, + "t_acc": 0.6123076923076923, + "punct_acc": null, + "threshold_t": 0.19579030573368073, + "threshold_adj": 0.5 + } + }, + "am": { + "ted2020-corrupted-asr": { + "u": 0.7440104166666666, + "t": 0.7867187499999999, + "punct": null, + "u_acc": 0.2890625, + "t_acc": 0.4140625, + "punct_acc": null, + "threshold_t": 0.3118801414966583, + "threshold_adj": 0.5 + } + }, + "ar": { + "ersatz": { + "u": 0.9404255319148935, + "t": 0.915691489361702, + "punct": null, + "u_acc": 0.8218085106382979, + "t_acc": 0.7473404255319149, + "punct_acc": null, + "threshold_t": 0.9947788715362549, + "threshold_adj": 0.5 + }, + "ted2020-corrupted-asr": { + "u": 0.820327619047619, + "t": 0.8249466666666667, + "punct": null, + "u_acc": 0.5484, + "t_acc": 0.5652, + "punct_acc": null, + "threshold_t": 0.3529928922653198, + "threshold_adj": 0.5 + } + }, + "az": { + "ted2020-corrupted-asr": { + "u": 0.853230890464933, + "t": 0.8652876280535855, + "punct": null, + "u_acc": 0.6046099290780141, + "t_acc": 0.6465721040189125, + "punct_acc": null, + "threshold_t": 0.3037700057029724, + "threshold_adj": 0.5 + } + }, + "be": { + "ted2020-corrupted-asr": { + "u": 0.8668397144711227, + "t": 0.872853125675968, + "punct": null, + "u_acc": 0.6580142764438677, + "t_acc": 0.6781310837118754, + "punct_acc": null, + "threshold_t": 0.2582862079143524, + "threshold_adj": 0.5 + } + }, + "bg": { + "ted2020-corrupted-asr": { + "u": 0.8578800000000001, + "t": 0.8707866666666667, + "punct": null, + "u_acc": 0.6264, + "t_acc": 0.6624, + "punct_acc": null, + "threshold_t": 0.2115507870912552, + "threshold_adj": 0.5 + } + }, + "bn": { + "ted2020-corrupted-asr": { + "u": 0.7255897435897436, + "t": 0.7263882783882784, + "punct": null, + "u_acc": 0.3169230769230769, + "t_acc": 0.3230769230769231, + "punct_acc": null, + "threshold_t": 0.4404241442680359, + "threshold_adj": 0.5 + } + }, + "ca": { + "ted2020-corrupted-asr": { + "u": 0.8634933333333332, + "t": 0.8732533333333333, + "punct": null, + "u_acc": 0.6472, + "t_acc": 0.6648, + "punct_acc": null, + "threshold_t": 0.1559576392173767, + "threshold_adj": 0.5 + } + }, + "ceb": { + "ted2020-corrupted-asr": { + "u": 0.6904761904761905, + "t": 0.7357142857142857, + "punct": null, + "u_acc": 0.07142857142857142, + "t_acc": 0.2857142857142857, + "punct_acc": null, + "threshold_t": 0.29914459586143494, + "threshold_adj": 0.5 + } + }, + "cs": { + "ersatz": { + "u": 0.9532407407407406, + "t": 0.9612654320987654, + "punct": null, + "u_acc": 0.8587962962962963, + "t_acc": 0.8819444444444444, + "punct_acc": null, + "threshold_t": 0.19247128069400787, + "threshold_adj": 0.5 + }, + "ted2020-corrupted-asr": { + "u": 0.8686799999999999, + "t": 0.8644060606060606, + "punct": null, + "u_acc": 0.652, + "t_acc": 0.6404, + "punct_acc": null, + "threshold_t": 0.6012640595436096, + "threshold_adj": 0.5 + } + }, + "cy": {}, + "da": { + "ted2020-corrupted-asr": { + "u": 0.8879466666666666, + "t": 0.8923466666666665, + "punct": null, + "u_acc": 0.7028, + "t_acc": 0.7172, + "punct_acc": null, + "threshold_t": 0.3706859350204468, + "threshold_adj": 0.5 + } + }, + "de": { + "ersatz": { + "u": 0.9971486761710795, + "t": 0.9952477936184656, + "punct": null, + "u_acc": 0.9898167006109979, + "t_acc": 0.9857433808553971, + "punct_acc": null, + "threshold_t": 0.9587974548339844, + "threshold_adj": 0.5 + }, + "ted2020-corrupted-asr": { + "u": 0.8975200000000001, + "t": 0.90828, + "punct": null, + "u_acc": 0.7244, + "t_acc": 0.756, + "punct_acc": null, + "threshold_t": 0.1908755898475647, + "threshold_adj": 0.5 + } + }, + "el": { + "ted2020-corrupted-asr": { + "u": 0.8702799999999999, + "t": 0.8766507936507937, + "punct": null, + "u_acc": 0.6588, + "t_acc": 0.6752, + "punct_acc": null, + "threshold_t": 0.22551190853118896, + "threshold_adj": 0.5 + } + }, + "en": { + "ersatz": { + "u": 0.9948251990308065, + "t": 0.9941502249913464, + "punct": null, + "u_acc": 0.9844236760124611, + "t_acc": 0.9818276220145379, + "punct_acc": null, + "threshold_t": 0.913185715675354, + "threshold_adj": 0.5 + }, + "ted2020-corrupted-asr": { + "u": 0.8873022222222222, + "t": 0.8986133333333335, + "punct": null, + "u_acc": 0.7012, + "t_acc": 0.7316, + "punct_acc": null, + "threshold_t": 0.2006220817565918, + "threshold_adj": 0.5 + } + }, + "eo": { + "ted2020-corrupted-asr": { + "u": 0.8494152046783625, + "t": 0.864640768588137, + "punct": null, + "u_acc": 0.6109022556390977, + "t_acc": 0.649749373433584, + "punct_acc": null, + "threshold_t": 0.19565223157405853, + "threshold_adj": 0.5 + } + }, + "es": { + "ted2020-corrupted-asr": { + "u": 0.8610228571428572, + "t": 0.8745961904761905, + "punct": null, + "u_acc": 0.6332, + "t_acc": 0.6672, + "punct_acc": null, + "threshold_t": 0.19770503044128418, + "threshold_adj": 0.5 + } + }, + "et": { + "ersatz": { + "u": 0.9841269841269841, + "t": 0.9697089947089946, + "punct": null, + "u_acc": 0.9484126984126984, + "t_acc": 0.9067460317460317, + "punct_acc": null, + "threshold_t": 0.954222559928894, + "threshold_adj": 0.5 + }, + "ted2020-corrupted-asr": { + "u": 0.8734687719298244, + "t": 0.8884307692307691, + "punct": null, + "u_acc": 0.6692, + "t_acc": 0.7056, + "punct_acc": null, + "threshold_t": 0.11381562054157257, + "threshold_adj": 0.5 + } + }, + "eu": { + "ted2020-corrupted-asr": { + "u": 0.8090725806451613, + "t": 0.811491935483871, + "punct": null, + "u_acc": 0.5114247311827957, + "t_acc": 0.521505376344086, + "punct_acc": null, + "threshold_t": 0.4130879044532776, + "threshold_adj": 0.5 + } + }, + "fa": { + "ted2020-corrupted-asr": { + "u": 0.8414685714285713, + "t": 0.8513085714285713, + "punct": null, + "u_acc": 0.5824, + "t_acc": 0.6136, + "punct_acc": null, + "threshold_t": 0.29287630319595337, + "threshold_adj": 0.5 + } + }, + "fi": { + "ersatz": { + "u": 0.9986639946559785, + "t": 0.9866399465597862, + "punct": null, + "u_acc": 0.9959919839679359, + "t_acc": 0.9599198396793587, + "punct_acc": null, + "threshold_t": 0.9984474778175354, + "threshold_adj": 0.5 + }, + "ted2020-corrupted-asr": { + "u": 0.8743866666666666, + "t": 0.8867200000000001, + "punct": null, + "u_acc": 0.6648, + "t_acc": 0.6868, + "punct_acc": null, + "threshold_t": 0.10764780640602112, + "threshold_adj": 0.5 + } + }, + "fr": { + "ersatz": { + "u": 0.9925925925925926, + "t": 0.985829307568438, + "punct": null, + "u_acc": 0.9758454106280193, + "t_acc": 0.9565217391304348, + "punct_acc": null, + "threshold_t": 0.9767431616783142, + "threshold_adj": 0.5 + }, + "ted2020-corrupted-asr": { + "u": 0.87324, + "t": 0.8812933333333333, + "punct": null, + "u_acc": 0.6696, + "t_acc": 0.6908, + "punct_acc": null, + "threshold_t": 0.27513280510902405, + "threshold_adj": 0.5 + } + }, + "fy": {}, + "ga": { + "ted2020-corrupted-asr": { + "u": 0.638888888888889, + "t": 0.6376984126984128, + "punct": null, + "u_acc": 0.16666666666666666, + "t_acc": 0.25, + "punct_acc": null, + "threshold_t": 0.32635071873664856, + "threshold_adj": 0.5 + } + }, + "gd": {}, + "gl": { + "ted2020-corrupted-asr": { + "u": 0.8596, + "t": 0.8748419047619049, + "punct": null, + "u_acc": 0.6288, + "t_acc": 0.6728, + "punct_acc": null, + "threshold_t": 0.19677530229091644, + "threshold_adj": 0.5 + } + }, + "gu": { + "ersatz": { + "u": 0.9069553805774279, + "t": 0.8930446194225721, + "punct": null, + "u_acc": 0.7244094488188977, + "t_acc": 0.6811023622047244, + "punct_acc": null, + "threshold_t": 0.913463830947876, + "threshold_adj": 0.5 + }, + "ted2020-corrupted-asr": { + "u": 0.7578386056141364, + "t": 0.7618325388800616, + "punct": null, + "u_acc": 0.391304347826087, + "t_acc": 0.4089989888776542, + "punct_acc": null, + "threshold_t": 0.38816583156585693, + "threshold_adj": 0.5 + } + }, + "ha": { + "ted2020-corrupted-asr": { + "u": 0.7777777777777777, + "t": 0.6666666666666666, + "punct": null, + "u_acc": 0.3333333333333333, + "t_acc": 0.0, + "punct_acc": null, + "threshold_t": 0.7916362881660461, + "threshold_adj": 0.5 + } + }, + "he": { + "ted2020-corrupted-asr": { + "u": 0.8383009523809524, + "t": 0.8413142857142859, + "punct": null, + "u_acc": 0.5952, + "t_acc": 0.6036, + "punct_acc": null, + "threshold_t": 0.4341721832752228, + "threshold_adj": 0.5 + } + }, + "hi": { + "ersatz": { + "u": 0.8715873015873015, + "t": 0.8306878306878307, + "punct": null, + "u_acc": 0.6158730158730159, + "t_acc": 0.4936507936507937, + "punct_acc": null, + "threshold_t": 0.957030177116394, + "threshold_adj": 0.5 + }, + "ted2020-corrupted-asr": { + "u": 0.8040933333333333, + "t": 0.8094133333333334, + "punct": null, + "u_acc": 0.4988, + "t_acc": 0.516, + "punct_acc": null, + "threshold_t": 0.37882882356643677, + "threshold_adj": 0.5 + } + }, + "hu": { + "ted2020-corrupted-asr": { + "u": 0.8615333333333333, + "t": 0.8631733333333333, + "punct": null, + "u_acc": 0.6416, + "t_acc": 0.6472, + "punct_acc": null, + "threshold_t": 0.4466886818408966, + "threshold_adj": 0.5 + } + }, + "hy": { + "ted2020-corrupted-asr": { + "u": 0.8523733333333333, + "t": 0.8592933333333335, + "punct": null, + "u_acc": 0.6284, + "t_acc": 0.6432, + "punct_acc": null, + "threshold_t": 0.27335861325263977, + "threshold_adj": 0.5 + } + }, + "id": { + "ted2020-corrupted-asr": { + "u": 0.8466266666666666, + "t": 0.8632666666666666, + "punct": null, + "u_acc": 0.5992, + "t_acc": 0.6476, + "punct_acc": null, + "threshold_t": 0.19267326593399048, + "threshold_adj": 0.5 + } + }, + "ig": { + "ted2020-corrupted-asr": { + "u": 0.6602564102564104, + "t": 0.5974358974358973, + "punct": null, + "u_acc": 0.038461538461538464, + "t_acc": 0.07692307692307693, + "punct_acc": null, + "threshold_t": 0.2033560574054718, + "threshold_adj": 0.5 + } + }, + "is": { + "ted2020-corrupted-asr": { + "u": 0.8411365564037321, + "t": 0.8466497031382528, + "punct": null, + "u_acc": 0.5801526717557252, + "t_acc": 0.6030534351145038, + "punct_acc": null, + "threshold_t": 0.11891120672225952, + "threshold_adj": 0.5 + } + }, + "it": { + "ted2020-corrupted-asr": { + "u": 0.8621866666666667, + "t": 0.8683066666666668, + "punct": null, + "u_acc": 0.6384, + "t_acc": 0.6576, + "punct_acc": null, + "threshold_t": 0.30462852120399475, + "threshold_adj": 0.5 + } + }, + "ja": { + "ersatz": { + "u": 0.9463930348258707, + "t": 0.8967661691542288, + "punct": null, + "u_acc": 0.8395522388059702, + "t_acc": 0.6902985074626866, + "punct_acc": null, + "threshold_t": 0.9985142350196838, + "threshold_adj": 0.5 + }, + "ted2020-corrupted-asr": { + "u": 0.9796666666666668, + "t": 0.977, + "punct": null, + "u_acc": 0.9416, + "t_acc": 0.9336, + "punct_acc": null, + "threshold_t": 0.7422925233840942, + "threshold_adj": 0.5 + } + }, + "jv": {}, + "ka": { + "ted2020-corrupted-asr": { + "u": 0.8170533333333333, + "t": 0.8292666666666666, + "punct": null, + "u_acc": 0.5388, + "t_acc": 0.5672, + "punct_acc": null, + "threshold_t": 0.1828896701335907, + "threshold_adj": 0.5 + } + }, + "kk": { + "ersatz": { + "u": 0.9773333333333334, + "t": 0.9453333333333332, + "punct": null, + "u_acc": 0.932, + "t_acc": 0.836, + "punct_acc": null, + "threshold_t": 0.9638625979423523, + "threshold_adj": 0.5 + }, + "ted2020-corrupted-asr": { + "u": 0.8501026694045175, + "t": 0.87191421400867, + "punct": null, + "u_acc": 0.5879534565366188, + "t_acc": 0.6584531143052703, + "punct_acc": null, + "threshold_t": 0.1676095873117447, + "threshold_adj": 0.5 + } + }, + "km": { + "ersatz": { + "u": 0.9624858757062147, + "t": 0.963728813559322, + "punct": null, + "u_acc": 0.8932203389830509, + "t_acc": 0.8949152542372881, + "punct_acc": null, + "threshold_t": 0.8011752963066101, + "threshold_adj": 0.5 + }, + "ted2020-corrupted-asr": { + "u": 0.9395989974937343, + "t": 0.9433941997851771, + "punct": null, + "u_acc": 0.8270676691729323, + "t_acc": 0.8120300751879699, + "punct_acc": null, + "threshold_t": 0.17783597111701965, + "threshold_adj": 0.5 + } + }, + "kn": { + "ted2020-corrupted-asr": { + "u": 0.7015151515151515, + "t": 0.6996669996669997, + "punct": null, + "u_acc": 0.26223776223776224, + "t_acc": 0.2692307692307692, + "punct_acc": null, + "threshold_t": 0.3851678967475891, + "threshold_adj": 0.5 + } + }, + "ko": { + "ted2020-corrupted-asr": { + "u": 0.8284799999999999, + "t": 0.82836, + "punct": null, + "u_acc": 0.5404, + "t_acc": 0.54, + "punct_acc": null, + "threshold_t": 0.5049299001693726, + "threshold_adj": 0.5 + } + }, + "ku": { + "ted2020-corrupted-asr": { + "u": 0.7300800000000001, + "t": 0.7284666666666666, + "punct": null, + "u_acc": 0.32, + "t_acc": 0.3384, + "punct_acc": null, + "threshold_t": 0.3670436441898346, + "threshold_adj": 0.5 + } + }, + "ky": { + "ted2020-corrupted-asr": { + "u": 0.8065359477124183, + "t": 0.8052287581699347, + "punct": null, + "u_acc": 0.4411764705882353, + "t_acc": 0.43137254901960786, + "punct_acc": null, + "threshold_t": 0.5519641637802124, + "threshold_adj": 0.5 + } + }, + "la": { + "ted2020-corrupted-asr": { + "u": 0.611111111111111, + "t": 0.5555555555555555, + "punct": null, + "u_acc": 0.0, + "t_acc": 0.0, + "punct_acc": null, + "threshold_t": 0.2783312499523163, + "threshold_adj": 0.5 + } + }, + "lt": { + "ersatz": { + "u": 0.9665333333333334, + "t": 0.9433333333333332, + "punct": null, + "u_acc": 0.9, + "t_acc": 0.832, + "punct_acc": null, + "threshold_t": 0.9372919201850891, + "threshold_adj": 0.5 + }, + "ted2020-corrupted-asr": { + "u": 0.8645333333333333, + "t": 0.8694, + "punct": null, + "u_acc": 0.6472, + "t_acc": 0.6584, + "punct_acc": null, + "threshold_t": 0.372035950422287, + "threshold_adj": 0.5 + } + }, + "lv": { + "ersatz": { + "u": 0.987037037037037, + "t": 0.9605820105820105, + "punct": null, + "u_acc": 0.9603174603174603, + "t_acc": 0.8809523809523809, + "punct_acc": null, + "threshold_t": 0.9802069067955017, + "threshold_adj": 0.5 + }, + "ted2020-corrupted-asr": { + "u": 0.8688799999999999, + "t": 0.8791542857142857, + "punct": null, + "u_acc": 0.6612, + "t_acc": 0.6884, + "punct_acc": null, + "threshold_t": 0.22174270451068878, + "threshold_adj": 0.5 + } + }, + "mg": { + "ted2020-corrupted-asr": { + "u": 0.76358024691358, + "t": 0.7520576131687242, + "punct": null, + "u_acc": 0.3888888888888889, + "t_acc": 0.3333333333333333, + "punct_acc": null, + "threshold_t": 0.5807532072067261, + "threshold_adj": 0.5 + } + }, + "mk": { + "ted2020-corrupted-asr": { + "u": 0.8565142857142859, + "t": 0.8612993939393938, + "punct": null, + "u_acc": 0.6244, + "t_acc": 0.6404, + "punct_acc": null, + "threshold_t": 0.38633400201797485, + "threshold_adj": 0.5 + } + }, + "ml": { + "ted2020-corrupted-asr": { + "u": 0.7187389770723104, + "t": 0.7185689090450996, + "punct": null, + "u_acc": 0.2962962962962963, + "t_acc": 0.30687830687830686, + "punct_acc": null, + "threshold_t": 0.34563663601875305, + "threshold_adj": 0.5 + } + }, + "mn": { + "ted2020-corrupted-asr": { + "u": 0.9208864069264069, + "t": 0.9283752380952381, + "punct": null, + "u_acc": 0.7816, + "t_acc": 0.8032, + "punct_acc": null, + "threshold_t": 0.1847454309463501, + "threshold_adj": 0.5 + } + }, + "mr": { + "ted2020-corrupted-asr": { + "u": 0.7603200000000001, + "t": 0.7627009523809524, + "punct": null, + "u_acc": 0.3948, + "t_acc": 0.4172, + "punct_acc": null, + "threshold_t": 0.3679860234260559, + "threshold_adj": 0.5 + } + }, + "ms": { + "ted2020-corrupted-asr": { + "u": 0.8376280663780663, + "t": 0.8514365079365079, + "punct": null, + "u_acc": 0.575595238095238, + "t_acc": 0.6154761904761905, + "punct_acc": null, + "threshold_t": 0.22683577239513397, + "threshold_adj": 0.5 + } + }, + "mt": { + "ted2020-corrupted-asr": { + "u": 0.6794871794871795, + "t": 0.7012820512820513, + "punct": null, + "u_acc": 0.038461538461538464, + "t_acc": 0.11538461538461539, + "punct_acc": null, + "threshold_t": 0.30841144919395447, + "threshold_adj": 0.5 + } + }, + "my": { + "ted2020-corrupted-asr": { + "u": 0.9689599999999998, + "t": 0.9679333333333332, + "punct": null, + "u_acc": 0.9104, + "t_acc": 0.9072, + "punct_acc": null, + "threshold_t": 0.6025581955909729, + "threshold_adj": 0.5 + } + }, + "ne": { + "ted2020-corrupted-asr": { + "u": 0.7977691977691977, + "t": 0.7928785928785929, + "punct": null, + "u_acc": 0.49613899613899615, + "t_acc": 0.47297297297297297, + "punct_acc": null, + "threshold_t": 0.5876527428627014, + "threshold_adj": 0.5 + } + }, + "nl": { + "ted2020-corrupted-asr": { + "u": 0.9138266666666667, + "t": 0.9254609523809524, + "punct": null, + "u_acc": 0.764, + "t_acc": 0.7888, + "punct_acc": null, + "threshold_t": 0.08820687979459763, + "threshold_adj": 0.5 + } + }, + "no": {}, + "pa": { + "ted2020-corrupted-asr": { + "u": 0.8088652482269505, + "t": 0.8120567375886526, + "punct": null, + "u_acc": 0.44680851063829785, + "t_acc": 0.44680851063829785, + "punct_acc": null, + "threshold_t": 0.49258989095687866, + "threshold_adj": 0.5 + } + }, + "pl": { + "ersatz": { + "u": 0.9713147410358566, + "t": 0.9673306772908367, + "punct": null, + "u_acc": 0.9123505976095617, + "t_acc": 0.900398406374502, + "punct_acc": null, + "threshold_t": 0.9030606746673584, + "threshold_adj": 0.5 + }, + "ted2020-corrupted-asr": { + "u": 0.8744533333333333, + "t": 0.8789066666666666, + "punct": null, + "u_acc": 0.6716, + "t_acc": 0.6868, + "punct_acc": null, + "threshold_t": 0.3802283704280853, + "threshold_adj": 0.5 + } + }, + "ps": { + "ersatz": { + "u": 0.9789345063538611, + "t": 0.963782991202346, + "punct": null, + "u_acc": 0.9413489736070382, + "t_acc": 0.8944281524926686, + "punct_acc": null, + "threshold_t": 0.9997029900550842, + "threshold_adj": 0.5 + }, + "ted2020-corrupted-asr": { + "u": 0.8018248175182482, + "t": 0.7811030008110301, + "punct": null, + "u_acc": 0.5255474452554745, + "t_acc": 0.45985401459854014, + "punct_acc": null, + "threshold_t": 0.6427596807479858, + "threshold_adj": 0.5 + } + }, + "pt": { + "ted2020-corrupted-asr": { + "u": 0.8806933333333334, + "t": 0.8905066666666666, + "punct": null, + "u_acc": 0.6916, + "t_acc": 0.7164, + "punct_acc": null, + "threshold_t": 0.24612975120544434, + "threshold_adj": 0.5 + } + }, + "ro": { + "ersatz": { + "u": 0.936, + "t": 0.9046666666666665, + "punct": null, + "u_acc": 0.808, + "t_acc": 0.714, + "punct_acc": null, + "threshold_t": 0.9346901774406433, + "threshold_adj": 0.5 + }, + "ted2020-corrupted-asr": { + "u": 0.865415238095238, + "t": 0.8751085714285715, + "punct": null, + "u_acc": 0.6496, + "t_acc": 0.6732, + "punct_acc": null, + "threshold_t": 0.1866168975830078, + "threshold_adj": 0.5 + } + }, + "ru": { + "ersatz": { + "u": 0.9978494623655914, + "t": 0.9905913978494624, + "punct": null, + "u_acc": 0.9919354838709677, + "t_acc": 0.9717741935483871, + "punct_acc": null, + "threshold_t": 0.9972395896911621, + "threshold_adj": 0.5 + }, + "ted2020-corrupted-asr": { + "u": 0.8733375438596491, + "t": 0.8789961904761904, + "punct": null, + "u_acc": 0.6716, + "t_acc": 0.69, + "punct_acc": null, + "threshold_t": 0.2638762891292572, + "threshold_adj": 0.5 + } + }, + "si": { + "ted2020-corrupted-asr": { + "u": 0.7674418604651163, + "t": 0.775968992248062, + "punct": null, + "u_acc": 0.34108527131782945, + "t_acc": 0.3798449612403101, + "punct_acc": null, + "threshold_t": 0.42813217639923096, + "threshold_adj": 0.5 + } + }, + "sk": { + "ted2020-corrupted-asr": { + "u": 0.8788533333333333, + "t": 0.8840666666666668, + "punct": null, + "u_acc": 0.6788, + "t_acc": 0.6984, + "punct_acc": null, + "threshold_t": 0.36077985167503357, + "threshold_adj": 0.5 + } + }, + "sl": { + "ted2020-corrupted-asr": { + "u": 0.8806133333333334, + "t": 0.8925219047619048, + "punct": null, + "u_acc": 0.6792, + "t_acc": 0.7176, + "punct_acc": null, + "threshold_t": 0.2213369607925415, + "threshold_adj": 0.5 + } + }, + "sq": { + "ted2020-corrupted-asr": { + "u": 0.8482666666666666, + "t": 0.8580876190476192, + "punct": null, + "u_acc": 0.6084, + "t_acc": 0.632, + "punct_acc": null, + "threshold_t": 0.20154695212841034, + "threshold_adj": 0.5 + } + }, + "sr": { + "ted2020-corrupted-asr": { + "u": 0.8560666666666666, + "t": 0.8596342857142858, + "punct": null, + "u_acc": 0.624, + "t_acc": 0.6364, + "punct_acc": null, + "threshold_t": 0.4065939784049988, + "threshold_adj": 0.5 + } + }, + "sv": { + "ted2020-corrupted-asr": { + "u": 0.8836, + "t": 0.8968, + "punct": null, + "u_acc": 0.6864, + "t_acc": 0.7212, + "punct_acc": null, + "threshold_t": 0.20190034806728363, + "threshold_adj": 0.5 + } + }, + "ta": { + "ersatz": { + "u": 0.948074369189907, + "t": 0.9387782204515271, + "punct": null, + "u_acc": 0.8446215139442231, + "t_acc": 0.8167330677290837, + "punct_acc": null, + "threshold_t": 0.7620065808296204, + "threshold_adj": 0.5 + }, + "ted2020-corrupted-asr": { + "u": 0.7515302491103204, + "t": 0.7519132350449076, + "punct": null, + "u_acc": 0.3736654804270463, + "t_acc": 0.3822064056939502, + "punct_acc": null, + "threshold_t": 0.439586877822876, + "threshold_adj": 0.5 + } + }, + "te": { + "ted2020-corrupted-asr": { + "u": 0.7735649546827795, + "t": 0.7732628398791541, + "punct": null, + "u_acc": 0.43051359516616317, + "t_acc": 0.43202416918429004, + "punct_acc": null, + "threshold_t": 0.4583691358566284, + "threshold_adj": 0.5 + } + }, + "tg": { + "ted2020-corrupted-asr": { + "u": 0.8219298245614034, + "t": 0.8219298245614035, + "punct": null, + "u_acc": 0.5, + "t_acc": 0.5, + "punct_acc": null, + "threshold_t": 0.4422083795070648, + "threshold_adj": 0.5 + } + }, + "th": { + "ted2020-corrupted-asr": { + "u": 0.8222835294117645, + "t": 0.8294743394536498, + "punct": null, + "u_acc": 0.5416, + "t_acc": 0.5716, + "punct_acc": null, + "threshold_t": 0.25836485624313354, + "threshold_adj": 0.5 + } + }, + "tr": { + "ersatz": { + "u": 0.989095744680851, + "t": 0.983554964539007, + "punct": null, + "u_acc": 0.9654255319148937, + "t_acc": 0.9521276595744681, + "punct_acc": null, + "threshold_t": 0.9601643085479736, + "threshold_adj": 0.5 + }, + "ted2020-corrupted-asr": { + "u": 0.8487066666666666, + "t": 0.8664695438596491, + "punct": null, + "u_acc": 0.5808, + "t_acc": 0.6388, + "punct_acc": null, + "threshold_t": 0.1862250566482544, + "threshold_adj": 0.5 + } + }, + "uk": { + "ted2020-corrupted-asr": { + "u": 0.8644400000000001, + "t": 0.8778666666666668, + "punct": null, + "u_acc": 0.6456, + "t_acc": 0.6756, + "punct_acc": null, + "threshold_t": 0.1702127456665039, + "threshold_adj": 0.5 + } + }, + "ur": { + "ted2020-corrupted-asr": { + "u": 0.8148681055155874, + "t": 0.8337224098272402, + "punct": null, + "u_acc": 0.5231243576567317, + "t_acc": 0.5765673175745119, + "punct_acc": null, + "threshold_t": 0.1470322459936142, + "threshold_adj": 0.5 + } + }, + "uz": { + "ted2020-corrupted-asr": { + "u": 0.8401195499296765, + "t": 0.8565400843881856, + "punct": null, + "u_acc": 0.569620253164557, + "t_acc": 0.6181434599156118, + "punct_acc": null, + "threshold_t": 0.19590476155281067, + "threshold_adj": 0.5 + } + }, + "vi": { + "ted2020-corrupted-asr": { + "u": 0.8373466666666667, + "t": 0.8485638095238097, + "punct": null, + "u_acc": 0.574, + "t_acc": 0.6108, + "punct_acc": null, + "threshold_t": 0.2558405101299286, + "threshold_adj": 0.5 + } + }, + "xh": {}, + "yi": {}, + "yo": {}, + "zh": { + "ersatz": { + "u": 0.9690666666666666, + "t": 0.9607333333333333, + "punct": null, + "u_acc": 0.908, + "t_acc": 0.88, + "punct_acc": null, + "threshold_t": 0.9007353782653809, + "threshold_adj": 0.5 + }, + "ted2020-corrupted-asr": { + "u": 0.9358999670944389, + "t": 0.9241526818032249, + "punct": null, + "u_acc": 0.8371174728529122, + "t_acc": 0.7941757156959526, + "punct_acc": null, + "threshold_t": 0.8769904375076294, + "threshold_adj": 0.5 + } + }, + "zu": {}, + "tr-de": {}, + "es-en": {}, + "vi-en": {}, + "en-de": {} +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/sat-12l_lora_tweets.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/sat-12l_lora_tweets.json new file mode 100644 index 0000000000000000000000000000000000000000..22cba390cd359994f17c03364b0c9687e127db63 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/sat-12l_lora_tweets.json @@ -0,0 +1,125 @@ +{ + "af": {}, + "am": {}, + "ar": {}, + "az": {}, + "be": {}, + "bg": {}, + "bn": {}, + "ca": {}, + "ceb": {}, + "cs": {}, + "cy": {}, + "da": {}, + "de": {}, + "el": {}, + "en": {}, + "eo": {}, + "es": {}, + "et": {}, + "eu": {}, + "fa": {}, + "fi": {}, + "fr": {}, + "fy": {}, + "ga": {}, + "gd": {}, + "gl": {}, + "gu": {}, + "ha": {}, + "he": {}, + "hi": {}, + "hu": {}, + "hy": {}, + "id": {}, + "ig": {}, + "is": {}, + "it": {}, + "ja": {}, + "jv": {}, + "ka": {}, + "kk": {}, + "km": {}, + "kn": {}, + "ko": {}, + "ku": {}, + "ky": {}, + "la": {}, + "lt": {}, + "lv": {}, + "mg": {}, + "mk": {}, + "ml": {}, + "mn": {}, + "mr": {}, + "ms": {}, + "mt": {}, + "my": {}, + "ne": {}, + "nl": {}, + "no": {}, + "pa": {}, + "pl": {}, + "ps": {}, + "pt": {}, + "ro": {}, + "ru": {}, + "si": {}, + "sk": {}, + "sl": { + "short-sequences": { + "u": 0.9627205333766917, + "t": 0.9440463200452204, + "punct": null, + "acc_u": 0.8717008797653959, + "acc_t": 0.7972873900293255, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.8110346947773636, + "t": 0.8030101812084951, + "punct": null, + "acc_u": 0.4633431085043988, + "acc_t": 0.42998533724340177, + "acc_punct": null + } + }, + "sq": {}, + "sr": { + "short-sequences": { + "u": 0.9691633597883597, + "t": 0.9373585955846986, + "punct": null, + "acc_u": 0.890625, + "acc_t": 0.75, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.7763096856846857, + "t": 0.7737287307599808, + "punct": null, + "acc_u": 0.328125, + "acc_t": 0.3125, + "acc_punct": null + } + }, + "sv": {}, + "ta": {}, + "te": {}, + "tg": {}, + "th": {}, + "tr": {}, + "uk": {}, + "ur": {}, + "uz": {}, + "vi": {}, + "xh": {}, + "yi": {}, + "yo": {}, + "zh": {}, + "zu": {}, + "tr-de": {}, + "es-en": {}, + "vi-en": {}, + "en-de": {} +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/sat-12l_tweets.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/sat-12l_tweets.json new file mode 100644 index 0000000000000000000000000000000000000000..6b3b980aeb9e9422da6ca5e423f99133c8786c2f --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/sat-12l_tweets.json @@ -0,0 +1,159 @@ +{ + "af": {}, + "am": {}, + "ar": {}, + "az": {}, + "be": {}, + "bg": {}, + "bn": {}, + "ca": {}, + "ceb": {}, + "cs": {}, + "cy": {}, + "da": {}, + "de": {}, + "el": {}, + "en": {}, + "eo": {}, + "es": {}, + "et": { + "short-sequences": { + "u": 0.9180230295767641, + "t": 0.9165417991163024, + "punct": null, + "acc_u": 0.5270935960591133, + "acc_t": 0.5566502463054187, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.8198776683619725, + "t": 0.8139334270526614, + "punct": null, + "acc_u": 0.26108374384236455, + "acc_t": 0.26108374384236455, + "acc_punct": null + } + }, + "eu": {}, + "fa": {}, + "fi": {}, + "fr": {}, + "fy": {}, + "ga": {}, + "gd": {}, + "gl": {}, + "gu": {}, + "ha": {}, + "he": {}, + "hi": {}, + "hu": {}, + "hy": {}, + "id": {}, + "ig": {}, + "is": {}, + "it": {}, + "ja": {}, + "jv": {}, + "ka": {}, + "kk": {}, + "km": {}, + "kn": {}, + "ko": {}, + "ku": {}, + "ky": {}, + "la": {}, + "lt": {}, + "lv": {}, + "mg": {}, + "mk": {}, + "ml": {}, + "mn": {}, + "mr": {}, + "ms": {}, + "mt": {}, + "my": {}, + "ne": {}, + "nl": {}, + "no": {}, + "pa": {}, + "pl": {}, + "ps": {}, + "pt": {}, + "ro": {}, + "ru": {}, + "si": {}, + "sk": {}, + "sl": { + "short-sequences": { + "u": 0.9356535611667576, + "t": 0.9345102152653473, + "punct": null, + "acc_u": 0.7796920821114369, + "acc_t": 0.7796920821114369, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.7004176389348676, + "t": 0.7073805776335103, + "punct": null, + "acc_u": 0.2126099706744868, + "acc_t": 0.22324046920821114, + "acc_punct": null + } + }, + "sq": {}, + "sr": { + "short-sequences": { + "u": 0.9331013655462185, + "t": 0.9468621129007158, + "punct": null, + "acc_u": 0.7291666666666666, + "acc_t": 0.8020833333333334, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.76494708994709, + "t": 0.751862185846561, + "punct": null, + "acc_u": 0.2864583333333333, + "acc_t": 0.2864583333333333, + "acc_punct": null + } + }, + "sv": {}, + "ta": {}, + "te": {}, + "tg": {}, + "th": {}, + "tr": {}, + "uk": {}, + "ur": {}, + "uz": {}, + "vi": {}, + "xh": {}, + "yi": {}, + "yo": {}, + "zh": {}, + "zu": {}, + "tr-de": {}, + "es-en": {}, + "vi-en": {}, + "en-de": { + "short-sequences": { + "u": 0.903880519829076, + "t": 0.9202434746668512, + "punct": null, + "acc_u": 0.6029106029106029, + "acc_t": 0.6652806652806653, + "acc_punct": null + }, + "short-sequences-corrupted-asr": { + "u": 0.761724197223827, + "t": 0.7646821886950393, + "punct": null, + "acc_u": 0.24116424116424118, + "acc_t": 0.24532224532224534, + "acc_punct": null + } + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/sat-3l-no-limited-lookahead.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/sat-3l-no-limited-lookahead.json new file mode 100644 index 0000000000000000000000000000000000000000..6de716fcf00ae08ef09e57f0482d2c37086b2eb0 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/sat-3l-no-limited-lookahead.json @@ -0,0 +1,3346 @@ +{ + "af": { + "opus100": { + "u": 0.521967640887406, + "t": 0.8070075757575758, + "punct": null, + "u_acc": 0.08471074380165289, + "t_acc": 0.4256198347107438, + "punct_acc": null, + "threshold_t": 0.5024673938751221, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.19851761742278398, + "t": 0.6752518445914673, + "punct": null, + "u_acc": 0.0, + "t_acc": 0.1792452830188679, + "punct_acc": null, + "threshold_t": 0.4076896607875824, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.4270711839986823, + "t": 0.7073382173382173, + "punct": null, + "u_acc": 0.027692307692307693, + "t_acc": 0.24615384615384617, + "punct_acc": null, + "threshold_t": 0.11034274101257324, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.3951532959783299, + "t": 0.7235071595071595, + "punct": null, + "u_acc": 0.018461538461538463, + "t_acc": 0.25846153846153846, + "punct_acc": null, + "threshold_t": 0.2389264702796936, + "threshold_adj": 0.01 + } + }, + "am": { + "opus100": { + "u": 0.25769894457211784, + "t": 0.5828361830790527, + "punct": null, + "u_acc": 0.006024096385542169, + "t_acc": 0.12048192771084337, + "punct_acc": null, + "threshold_t": 0.5484523773193359, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.42072253380677294, + "t": 0.6735832093253968, + "punct": null, + "u_acc": 0.0234375, + "t_acc": 0.2109375, + "punct_acc": null, + "threshold_t": 0.16136817634105682, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.4049445985717712, + "t": 0.6494193000626824, + "punct": null, + "u_acc": 0.03125, + "t_acc": 0.1796875, + "punct_acc": null, + "threshold_t": 0.1827695667743683, + "threshold_adj": 0.01 + } + }, + "ar": { + "ersatz": { + "u": 0.2878579101925983, + "t": 0.7572139508183741, + "punct": null, + "u_acc": 0.007978723404255319, + "t_acc": 0.3404255319148936, + "punct_acc": null, + "threshold_t": 0.3436282277107239, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.38890433075570396, + "t": 0.7716676228724421, + "punct": null, + "u_acc": 0.014056224899598393, + "t_acc": 0.3493975903614458, + "punct_acc": null, + "threshold_t": 0.4760899543762207, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.30935300547291233, + "t": 0.7661607226622708, + "punct": null, + "u_acc": 0.047058823529411764, + "t_acc": 0.3588235294117647, + "punct_acc": null, + "threshold_t": 0.6849051117897034, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.3834993738648275, + "t": 0.663871663246641, + "punct": null, + "u_acc": 0.0076, + "t_acc": 0.1796, + "punct_acc": null, + "threshold_t": 0.11150094866752625, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.35829283940316903, + "t": 0.6649838038321397, + "punct": null, + "u_acc": 0.0068, + "t_acc": 0.1556, + "punct_acc": null, + "threshold_t": 0.20296695828437805, + "threshold_adj": 0.01 + } + }, + "az": { + "opus100": { + "u": 0.25841178560961264, + "t": 0.6518359807764486, + "punct": null, + "u_acc": 0.0, + "t_acc": 0.14457831325301204, + "punct_acc": null, + "threshold_t": 0.6439761519432068, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.5410323763063122, + "t": 0.7745450110698338, + "punct": null, + "u_acc": 0.0549645390070922, + "t_acc": 0.3723404255319149, + "punct_acc": null, + "threshold_t": 0.12293970584869385, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.5028897823768425, + "t": 0.7555240108314951, + "punct": null, + "u_acc": 0.057919621749408984, + "t_acc": 0.32210401891252954, + "punct_acc": null, + "threshold_t": 0.16099487245082855, + "threshold_adj": 0.009999999999999998 + } + }, + "be": { + "opus100": { + "u": 0.6091628123526518, + "t": 0.7807371967249768, + "punct": null, + "u_acc": 0.09368635437881874, + "t_acc": 0.39918533604887985, + "punct_acc": null, + "threshold_t": 0.40710073709487915, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.40163917913307373, + "t": 0.7418848298368725, + "punct": null, + "u_acc": 0.048327137546468404, + "t_acc": 0.38661710037174724, + "punct_acc": null, + "threshold_t": 0.5168027281761169, + "threshold_adj": 0.010000000000000002 + }, + "ted2020-corrupted-asr": { + "u": 0.4253592159836419, + "t": 0.6843723271253142, + "punct": null, + "u_acc": 0.014925373134328358, + "t_acc": 0.20246593121349774, + "punct_acc": null, + "threshold_t": 0.08617743849754333, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.4028413100736211, + "t": 0.6971245383736484, + "punct": null, + "u_acc": 0.025308241401687217, + "t_acc": 0.23491239454899415, + "punct_acc": null, + "threshold_t": 0.18470029532909393, + "threshold_adj": 0.009999999999999998 + } + }, + "bg": { + "opus100": { + "u": 0.5590600649335128, + "t": 0.820033718230111, + "punct": null, + "u_acc": 0.06412825651302605, + "t_acc": 0.46092184368737477, + "punct_acc": null, + "threshold_t": 0.6984277367591858, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.4091399813440077, + "t": 0.7381071338060585, + "punct": null, + "u_acc": 0.03942652329749104, + "t_acc": 0.24731182795698925, + "punct_acc": null, + "threshold_t": 0.6494974493980408, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.4701276513013281, + "t": 0.715176080621887, + "punct": null, + "u_acc": 0.018, + "t_acc": 0.2372, + "punct_acc": null, + "threshold_t": 0.13686493039131165, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.46069224229933314, + "t": 0.7382677045864764, + "punct": null, + "u_acc": 0.0372, + "t_acc": 0.322, + "punct_acc": null, + "threshold_t": 0.15192948281764984, + "threshold_adj": 0.01 + } + }, + "bn": { + "opus100": { + "u": 0.39793492008058584, + "t": 0.7728945545846955, + "punct": null, + "u_acc": 0.028169014084507043, + "t_acc": 0.34808853118712274, + "punct_acc": null, + "threshold_t": 0.437578946352005, + "threshold_adj": 0.010000000000000002 + }, + "ud": { + "u": 0.5302546659689517, + "t": null, + "punct": null, + "u_acc": 0.0, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.1775255952009422, + "t": 0.5601054288848407, + "punct": null, + "u_acc": 0.0007692307692307692, + "t_acc": 0.057692307692307696, + "punct_acc": null, + "threshold_t": 0.1189442127943039, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.3877424965519097, + "t": 0.6500288664520982, + "punct": null, + "u_acc": 0.024615384615384615, + "t_acc": 0.1723076923076923, + "punct_acc": null, + "threshold_t": 0.15231849253177643, + "threshold_adj": 0.009999999999999998 + } + }, + "ca": { + "opus100": { + "u": 0.45111656424735425, + "t": 0.790315206542387, + "punct": null, + "u_acc": 0.028397565922920892, + "t_acc": 0.3935091277890467, + "punct_acc": null, + "threshold_t": 0.7063705325126648, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.278314727713474, + "t": 0.7261755144149604, + "punct": null, + "u_acc": 0.023809523809523808, + "t_acc": 0.2878787878787879, + "punct_acc": null, + "threshold_t": 0.5014908313751221, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.4229462396709986, + "t": 0.6894989334848158, + "punct": null, + "u_acc": 0.0188, + "t_acc": 0.2096, + "punct_acc": null, + "threshold_t": 0.11531265079975128, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.41996055371873114, + "t": 0.7158137718147006, + "punct": null, + "u_acc": 0.0268, + "t_acc": 0.228, + "punct_acc": null, + "threshold_t": 0.26077574491500854, + "threshold_adj": 0.01 + } + }, + "ceb": { + "ud": { + "u": 0.45762542795017597, + "t": null, + "punct": null, + "u_acc": 0.06382978723404255, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.010000000000000002 + }, + "ted2020-corrupted-asr": { + "u": 0.3137255306981092, + "t": 0.6197278911564627, + "punct": null, + "u_acc": 0.0, + "t_acc": 0.07142857142857142, + "punct_acc": null, + "threshold_t": 0.16129904985427856, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.2800425316762703, + "t": 0.6452380952380953, + "punct": null, + "u_acc": 0.0, + "t_acc": 0.07142857142857142, + "punct_acc": null, + "threshold_t": 0.5037209987640381, + "threshold_adj": 0.009999999999999998 + }, + "nllb": { + "u": 0.30028402186682224, + "t": 0.7909240468028703, + "punct": null, + "u_acc": 0.002, + "t_acc": 0.4216, + "punct_acc": null, + "threshold_t": 0.5418758392333984, + "threshold_adj": 0.01 + } + }, + "cs": { + "ersatz": { + "u": 0.31812388986238604, + "t": 0.7513185759713537, + "punct": null, + "u_acc": 0.018518518518518517, + "t_acc": 0.3472222222222222, + "punct_acc": null, + "threshold_t": 0.3009216785430908, + "threshold_adj": 0.009999999999999998 + }, + "opus100": { + "u": 0.45687623105156716, + "t": 0.7855013550135502, + "punct": null, + "u_acc": 0.028455284552845527, + "t_acc": 0.38414634146341464, + "punct_acc": null, + "threshold_t": 0.7278257012367249, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.2886322330849818, + "t": 0.6920578399240807, + "punct": null, + "u_acc": 0.011435331230283912, + "t_acc": 0.24566246056782334, + "punct_acc": null, + "threshold_t": 0.3373522162437439, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.4233447006922392, + "t": 0.6703057523714974, + "punct": null, + "u_acc": 0.0172, + "t_acc": 0.2, + "punct_acc": null, + "threshold_t": 0.07741232216358185, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.40063617499620613, + "t": 0.7141713313014241, + "punct": null, + "u_acc": 0.0196, + "t_acc": 0.2616, + "punct_acc": null, + "threshold_t": 0.2162414938211441, + "threshold_adj": 0.01 + } + }, + "cy": { + "opus100": { + "u": 0.5278059902352108, + "t": 0.7606622998544396, + "punct": null, + "u_acc": 0.05458515283842795, + "t_acc": 0.31222707423580787, + "punct_acc": null, + "threshold_t": 0.3645476698875427, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.3252013441640572, + "t": 0.8636127178143985, + "punct": null, + "u_acc": 0.008403361344537815, + "t_acc": 0.6428571428571429, + "punct_acc": null, + "threshold_t": 0.3057078421115875, + "threshold_adj": 0.01 + } + }, + "da": { + "opus100": { + "u": 0.3833426779169783, + "t": 0.7795557824791696, + "punct": null, + "u_acc": 0.02217741935483871, + "t_acc": 0.36693548387096775, + "punct_acc": null, + "threshold_t": 0.7199528217315674, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.2609723808754446, + "t": 0.7180497989008626, + "punct": null, + "u_acc": 0.0070921985815602835, + "t_acc": 0.2907801418439716, + "punct_acc": null, + "threshold_t": 0.32445433735847473, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.4167771406987095, + "t": 0.722869888999889, + "punct": null, + "u_acc": 0.016, + "t_acc": 0.2784, + "punct_acc": null, + "threshold_t": 0.12204565852880478, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.3949923588646065, + "t": 0.7300375989896378, + "punct": null, + "u_acc": 0.016, + "t_acc": 0.3056, + "punct_acc": null, + "threshold_t": 0.14172229170799255, + "threshold_adj": 0.01 + } + }, + "de": { + "ersatz": { + "u": 0.3908950300453933, + "t": 0.7859018216132175, + "punct": null, + "u_acc": 0.04276985743380855, + "t_acc": 0.4093686354378819, + "punct_acc": null, + "threshold_t": 0.22927822172641754, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.3886227049383767, + "t": 0.7920362723787892, + "punct": null, + "u_acc": 0.0189873417721519, + "t_acc": 0.43248945147679324, + "punct_acc": null, + "threshold_t": 0.6417106986045837, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.3389659173656595, + "t": 0.7942125557311062, + "punct": null, + "u_acc": 0.02459016393442623, + "t_acc": 0.4672131147540984, + "punct_acc": null, + "threshold_t": 0.19273802638053894, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.42448111358151935, + "t": 0.7244389743589743, + "punct": null, + "u_acc": 0.0252, + "t_acc": 0.2768, + "punct_acc": null, + "threshold_t": 0.15264903008937836, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.42047747976672933, + "t": 0.7345618969973954, + "punct": null, + "u_acc": 0.0336, + "t_acc": 0.3172, + "punct_acc": null, + "threshold_t": 0.15832704305648804, + "threshold_adj": 0.01 + } + }, + "el": { + "opus100": { + "u": 0.41889758669134186, + "t": 0.7653040734366034, + "punct": null, + "u_acc": 0.024096385542168676, + "t_acc": 0.3132530120481928, + "punct_acc": null, + "threshold_t": 0.7307299971580505, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.23025940211706117, + "t": 0.7313166501931253, + "punct": null, + "u_acc": 0.0, + "t_acc": 0.3333333333333333, + "punct_acc": null, + "threshold_t": 0.4245646595954895, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.40600615328132805, + "t": 0.7086444501930818, + "punct": null, + "u_acc": 0.0068, + "t_acc": 0.244, + "punct_acc": null, + "threshold_t": 0.12853610515594482, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.3983140763279733, + "t": 0.7294659958531755, + "punct": null, + "u_acc": 0.0208, + "t_acc": 0.328, + "punct_acc": null, + "threshold_t": 0.14882992208003998, + "threshold_adj": 0.01 + } + }, + "en": { + "ersatz": { + "u": 0.18299034935225855, + "t": 0.6644001420685237, + "punct": null, + "u_acc": 0.004153686396677051, + "t_acc": 0.21754932502596053, + "punct_acc": null, + "threshold_t": 0.4363234341144562, + "threshold_adj": 0.009999999999999998 + }, + "opus100": { + "u": 0.46521479336645377, + "t": 0.8904060768980124, + "punct": null, + "u_acc": 0.020161290322580645, + "t_acc": 0.6350806451612904, + "punct_acc": null, + "threshold_t": 0.39582863450050354, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.27709980281069607, + "t": 0.6698127673773242, + "punct": null, + "u_acc": 0.043795620437956206, + "t_acc": 0.32116788321167883, + "punct_acc": null, + "threshold_t": 0.20434819161891937, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.38627203729571513, + "t": 0.6824455310759148, + "punct": null, + "u_acc": 0.014, + "t_acc": 0.2, + "punct_acc": null, + "threshold_t": 0.14244002103805542, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.3430675588552492, + "t": 0.6894563915426017, + "punct": null, + "u_acc": 0.0128, + "t_acc": 0.2416, + "punct_acc": null, + "threshold_t": 0.14985813200473785, + "threshold_adj": 0.01 + } + }, + "eo": { + "opus100": { + "u": 0.48275129417142915, + "t": 0.8407989188231123, + "punct": null, + "u_acc": 0.020161290322580645, + "t_acc": 0.5080645161290323, + "punct_acc": null, + "threshold_t": 0.6392757296562195, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.4455803200527005, + "t": 0.674942090073669, + "punct": null, + "u_acc": 0.020050125313283207, + "t_acc": 0.18609022556390978, + "punct_acc": null, + "threshold_t": 0.124610036611557, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.4114913665429389, + "t": 0.6975700454264318, + "punct": null, + "u_acc": 0.022556390977443608, + "t_acc": 0.2136591478696742, + "punct_acc": null, + "threshold_t": 0.22095653414726257, + "threshold_adj": 0.009999999999999998 + } + }, + "es": { + "ersatz": { + "u": 0.26389868389786314, + "t": null, + "punct": null, + "u_acc": 0.014360313315926894, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "opus100": { + "u": 0.3731113296296476, + "t": 0.8001046372899919, + "punct": null, + "u_acc": 0.024291497975708502, + "t_acc": 0.4392712550607287, + "punct_acc": null, + "threshold_t": 0.6376227140426636, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.1975627681713205, + "t": 0.7159048711386534, + "punct": null, + "u_acc": 0.011627906976744186, + "t_acc": 0.26744186046511625, + "punct_acc": null, + "threshold_t": 0.6900930404663086, + "threshold_adj": 0.009999999999999997 + }, + "ted2020-corrupted-asr": { + "u": 0.4192450527585557, + "t": 0.6957218337218337, + "punct": null, + "u_acc": 0.0124, + "t_acc": 0.2144, + "punct_acc": null, + "threshold_t": 0.14542968571186066, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.40475333985461615, + "t": 0.7355281214747025, + "punct": null, + "u_acc": 0.022, + "t_acc": 0.304, + "punct_acc": null, + "threshold_t": 0.17771370708942413, + "threshold_adj": 0.01 + } + }, + "et": { + "ersatz": { + "u": 0.31271612471496996, + "t": 0.7949768265244456, + "punct": null, + "u_acc": 0.021825396825396824, + "t_acc": 0.44841269841269843, + "punct_acc": null, + "threshold_t": 0.31253373622894287, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.38825956396266487, + "t": 0.7851413206676365, + "punct": null, + "u_acc": 0.010121457489878543, + "t_acc": 0.38866396761133604, + "punct_acc": null, + "threshold_t": 0.7011182904243469, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.29463138943363953, + "t": 0.7397855775219786, + "punct": null, + "u_acc": 0.011194029850746268, + "t_acc": 0.39427860696517414, + "punct_acc": null, + "threshold_t": 0.19267624616622925, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.427650549672095, + "t": 0.7119992113768584, + "punct": null, + "u_acc": 0.014, + "t_acc": 0.24, + "punct_acc": null, + "threshold_t": 0.13027848303318024, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.4150381130494448, + "t": 0.7370197518715242, + "punct": null, + "u_acc": 0.0164, + "t_acc": 0.3032, + "punct_acc": null, + "threshold_t": 0.17048287391662598, + "threshold_adj": 0.01 + } + }, + "eu": { + "opus100": { + "u": 0.39860346416457704, + "t": 0.7581779005308417, + "punct": null, + "u_acc": 0.01417004048582996, + "t_acc": 0.32793522267206476, + "punct_acc": null, + "threshold_t": 0.600071132183075, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.38179933627635076, + "t": 0.8211055647330158, + "punct": null, + "u_acc": 0.024444444444444446, + "t_acc": 0.4888888888888889, + "punct_acc": null, + "threshold_t": 0.21169915795326233, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.38766729515235065, + "t": 0.6372184614001503, + "punct": null, + "u_acc": 0.010752688172043012, + "t_acc": 0.14045698924731181, + "punct_acc": null, + "threshold_t": 0.09456989914178848, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.3803366972669077, + "t": 0.6917502908311733, + "punct": null, + "u_acc": 0.012096774193548387, + "t_acc": 0.1868279569892473, + "punct_acc": null, + "threshold_t": 0.23270253837108612, + "threshold_adj": 0.009999999999999998 + } + }, + "fa": { + "opus100": { + "u": 0.3480817639493688, + "t": 0.7017185295445604, + "punct": null, + "u_acc": 0.004008016032064128, + "t_acc": 0.26452905811623245, + "punct_acc": null, + "threshold_t": 0.20435580611228943, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.2927409976524515, + "t": 0.8407731157731159, + "punct": null, + "u_acc": 0.01098901098901099, + "t_acc": 0.5247252747252747, + "punct_acc": null, + "threshold_t": 0.34889939427375793, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.47482304872825426, + "t": 0.7266617543354629, + "punct": null, + "u_acc": 0.0444, + "t_acc": 0.2736, + "punct_acc": null, + "threshold_t": 0.16387945413589478, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.41968503707501886, + "t": 0.6995279103482293, + "punct": null, + "u_acc": 0.0376, + "t_acc": 0.226, + "punct_acc": null, + "threshold_t": 0.22550618648529053, + "threshold_adj": 0.01 + } + }, + "fi": { + "ersatz": { + "u": 0.41842569469768814, + "t": 0.7657696345071094, + "punct": null, + "u_acc": 0.050100200400801605, + "t_acc": 0.32064128256513025, + "punct_acc": null, + "threshold_t": 0.3611951172351837, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.45252277780980416, + "t": 0.7922950400817603, + "punct": null, + "u_acc": 0.018108651911468814, + "t_acc": 0.38028169014084506, + "punct_acc": null, + "threshold_t": 0.6777316927909851, + "threshold_adj": 0.010000000000000002 + }, + "ud": { + "u": 0.3286750094781122, + "t": 0.7633195254428151, + "punct": null, + "u_acc": 0.010309278350515464, + "t_acc": 0.41494845360824745, + "punct_acc": null, + "threshold_t": 0.2346176654100418, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.4141155491376356, + "t": 0.688358444640327, + "punct": null, + "u_acc": 0.0136, + "t_acc": 0.2056, + "punct_acc": null, + "threshold_t": 0.13156551122665405, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.4154603128774544, + "t": 0.7195460862124071, + "punct": null, + "u_acc": 0.0208, + "t_acc": 0.282, + "punct_acc": null, + "threshold_t": 0.13152842223644257, + "threshold_adj": 0.01 + } + }, + "fr": { + "ersatz": { + "u": 0.3470178102823959, + "t": 0.7912069987730687, + "punct": null, + "u_acc": 0.04589371980676329, + "t_acc": 0.4106280193236715, + "punct_acc": null, + "threshold_t": 0.44133540987968445, + "threshold_adj": 0.009999999999999997 + }, + "opus100": { + "u": 0.37021236637525373, + "t": null, + "punct": null, + "u_acc": 0.012170385395537525, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.25126126189231474, + "t": 0.7755950920424605, + "punct": null, + "u_acc": 0.0, + "t_acc": 0.4230769230769231, + "punct_acc": null, + "threshold_t": 0.3190906047821045, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.45276952014202687, + "t": 0.7075967794297207, + "punct": null, + "u_acc": 0.0164, + "t_acc": 0.2364, + "punct_acc": null, + "threshold_t": 0.15282650291919708, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.43400519238176966, + "t": 0.7390182684657576, + "punct": null, + "u_acc": 0.0232, + "t_acc": 0.3116, + "punct_acc": null, + "threshold_t": 0.15466813743114471, + "threshold_adj": 0.01 + } + }, + "fy": { + "opus100": { + "u": 0.6307731092859935, + "t": 0.7538775602080323, + "punct": null, + "u_acc": 0.17167381974248927, + "t_acc": 0.3218884120171674, + "punct_acc": null, + "threshold_t": 0.43880629539489746, + "threshold_adj": 0.01 + } + }, + "ga": { + "opus100": { + "u": 0.2806012672640505, + "t": 0.748908916488685, + "punct": null, + "u_acc": 0.014112903225806451, + "t_acc": 0.3709677419354839, + "punct_acc": null, + "threshold_t": 0.49839383363723755, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.25263674394000624, + "t": 0.6946140604035344, + "punct": null, + "u_acc": 0.0, + "t_acc": 0.17543859649122806, + "punct_acc": null, + "threshold_t": 0.7344586849212646, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.2140553546900296, + "t": 0.42400793650793656, + "punct": null, + "u_acc": 0.0, + "t_acc": 0.0, + "punct_acc": null, + "threshold_t": 0.1463191956281662, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.18596768034431407, + "t": 0.43002645502645503, + "punct": null, + "u_acc": 0.0, + "t_acc": 0.08333333333333333, + "punct_acc": null, + "threshold_t": 0.20506076514720917, + "threshold_adj": 0.009999999999999998 + } + }, + "gd": { + "opus100": { + "u": 0.4503124224873005, + "t": 0.7789006466784244, + "punct": null, + "u_acc": 0.044444444444444446, + "t_acc": 0.34814814814814815, + "punct_acc": null, + "threshold_t": 0.564015805721283, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.25136050115286257, + "t": 0.6649238220929398, + "punct": null, + "u_acc": 0.007352941176470588, + "t_acc": 0.13970588235294118, + "punct_acc": null, + "threshold_t": 0.6415706872940063, + "threshold_adj": 0.009999999999999998 + } + }, + "gl": { + "opus100": { + "u": 0.48223691213002273, + "t": 0.8555422623971011, + "punct": null, + "u_acc": 0.04435483870967742, + "t_acc": 0.530241935483871, + "punct_acc": null, + "threshold_t": 0.541753888130188, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.3061022337089955, + "t": 0.7905954600954601, + "punct": null, + "u_acc": 0.02, + "t_acc": 0.43, + "punct_acc": null, + "threshold_t": 0.41870152950286865, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.4238179602568559, + "t": 0.6864655579714403, + "punct": null, + "u_acc": 0.0128, + "t_acc": 0.2144, + "punct_acc": null, + "threshold_t": 0.1143961101770401, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.4131182364227959, + "t": 0.7176544779884718, + "punct": null, + "u_acc": 0.0228, + "t_acc": 0.2748, + "punct_acc": null, + "threshold_t": 0.15863759815692902, + "threshold_adj": 0.01 + } + }, + "gu": { + "ersatz": { + "u": 0.5940945694079052, + "t": 0.8734783180856533, + "punct": null, + "u_acc": 0.1968503937007874, + "t_acc": 0.6732283464566929, + "punct_acc": null, + "threshold_t": 0.14829501509666443, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.5933116587208659, + "t": 0.7728402701024473, + "punct": null, + "u_acc": 0.08695652173913043, + "t_acc": 0.33954451345755693, + "punct_acc": null, + "threshold_t": 0.4211757481098175, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.24551971909860396, + "t": 0.5972436962240827, + "punct": null, + "u_acc": 0.005055611729019211, + "t_acc": 0.08645096056622852, + "punct_acc": null, + "threshold_t": 0.21880076825618744, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.44783020562122505, + "t": 0.6403112833117576, + "punct": null, + "u_acc": 0.04095045500505561, + "t_acc": 0.15722952477249746, + "punct_acc": null, + "threshold_t": 0.20716062188148499, + "threshold_adj": 0.01 + } + }, + "ha": { + "opus100": { + "u": 0.18568671101882667, + "t": 0.6475019203019203, + "punct": null, + "u_acc": 0.0, + "t_acc": 0.162, + "punct_acc": null, + "threshold_t": 0.7470687031745911, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.2962962962962963, + "t": 0.7777777777777777, + "punct": null, + "u_acc": 0.0, + "t_acc": 0.3333333333333333, + "punct_acc": null, + "threshold_t": 0.2783623933792114, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.2748917748917749, + "t": 0.746031746031746, + "punct": null, + "u_acc": 0.0, + "t_acc": 0.3333333333333333, + "punct_acc": null, + "threshold_t": 0.3842974603176117, + "threshold_adj": 0.01 + } + }, + "he": { + "opus100": { + "u": 0.5227112337804309, + "t": 0.8007920603110984, + "punct": null, + "u_acc": 0.03406813627254509, + "t_acc": 0.4148296593186373, + "punct_acc": null, + "threshold_t": 0.6484558582305908, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.3089086648117721, + "t": 0.79444342505567, + "punct": null, + "u_acc": 0.030612244897959183, + "t_acc": 0.4489795918367347, + "punct_acc": null, + "threshold_t": 0.3178926706314087, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.39478970832757293, + "t": 0.6560826530085353, + "punct": null, + "u_acc": 0.006, + "t_acc": 0.174, + "punct_acc": null, + "threshold_t": 0.0832156091928482, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.3817378310447274, + "t": 0.6592268549472736, + "punct": null, + "u_acc": 0.0084, + "t_acc": 0.1936, + "punct_acc": null, + "threshold_t": 0.10318056493997574, + "threshold_adj": 0.01 + } + }, + "hi": { + "ersatz": { + "u": 0.3164674711356989, + "t": 0.7738432028707452, + "punct": null, + "u_acc": 0.03492063492063492, + "t_acc": 0.46984126984126984, + "punct_acc": null, + "threshold_t": 0.1370154768228531, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.40747111407919556, + "t": 0.672188449961643, + "punct": null, + "u_acc": 0.030364372469635626, + "t_acc": 0.2388663967611336, + "punct_acc": null, + "threshold_t": 0.5977523922920227, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.3711346761315546, + "t": 0.864151630897474, + "punct": null, + "u_acc": 0.040380047505938245, + "t_acc": 0.6247030878859857, + "punct_acc": null, + "threshold_t": 0.14456236362457275, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.2656445662081126, + "t": 0.6302322914523844, + "punct": null, + "u_acc": 0.0044, + "t_acc": 0.0828, + "punct_acc": null, + "threshold_t": 0.24836908280849457, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.4536634169688437, + "t": 0.6772450542856526, + "punct": null, + "u_acc": 0.0432, + "t_acc": 0.224, + "punct_acc": null, + "threshold_t": 0.1363130509853363, + "threshold_adj": 0.01 + } + }, + "hu": { + "opus100": { + "u": 0.5079459918264613, + "t": 0.7859038978494622, + "punct": null, + "u_acc": 0.03225806451612903, + "t_acc": 0.3810483870967742, + "punct_acc": null, + "threshold_t": 0.7287426590919495, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.24936912513608916, + "t": 0.734214406333629, + "punct": null, + "u_acc": 0.0, + "t_acc": 0.4375, + "punct_acc": null, + "threshold_t": 0.2928188145160675, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.4500096635274942, + "t": 0.6873695628639196, + "punct": null, + "u_acc": 0.0232, + "t_acc": 0.1892, + "punct_acc": null, + "threshold_t": 0.09975890070199966, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.44540573793349003, + "t": 0.7176260414925393, + "punct": null, + "u_acc": 0.0356, + "t_acc": 0.2716, + "punct_acc": null, + "threshold_t": 0.1661330908536911, + "threshold_adj": 0.01 + } + }, + "hy": { + "opus100": { + "u": 0.5385017811035355, + "t": null, + "punct": null, + "u_acc": 0.05922551252847381, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.3300403481010081, + "t": 0.6698131131280713, + "punct": null, + "u_acc": 0.02702702702702703, + "t_acc": 0.3108108108108108, + "punct_acc": null, + "threshold_t": 0.29583823680877686, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.4633727398156412, + "t": 0.7086721550872015, + "punct": null, + "u_acc": 0.0336, + "t_acc": 0.254, + "punct_acc": null, + "threshold_t": 0.08765432238578796, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.43872212967061486, + "t": 0.6956080660911704, + "punct": null, + "u_acc": 0.0432, + "t_acc": 0.2296, + "punct_acc": null, + "threshold_t": 0.1804531216621399, + "threshold_adj": 0.01 + } + }, + "id": { + "opus100": { + "u": 0.4670125796661096, + "t": 0.8425741608118656, + "punct": null, + "u_acc": 0.014344262295081968, + "t_acc": 0.5204918032786885, + "punct_acc": null, + "threshold_t": 0.6613414883613586, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.263515343631611, + "t": null, + "punct": null, + "u_acc": 0.004, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.423693461881264, + "t": 0.6889271082299343, + "punct": null, + "u_acc": 0.0136, + "t_acc": 0.2144, + "punct_acc": null, + "threshold_t": 0.08639590442180634, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.41031585947047006, + "t": 0.7326150568101321, + "punct": null, + "u_acc": 0.0144, + "t_acc": 0.3008, + "punct_acc": null, + "threshold_t": 0.1552732139825821, + "threshold_adj": 0.01 + } + }, + "ig": { + "opus100": { + "u": 0.48319069385805313, + "t": 0.7847357240132796, + "punct": null, + "u_acc": 0.050970873786407765, + "t_acc": 0.3762135922330097, + "punct_acc": null, + "threshold_t": 0.6178328990936279, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.21099086068272255, + "t": 0.6551282051282052, + "punct": null, + "u_acc": 0.0, + "t_acc": 0.07692307692307693, + "punct_acc": null, + "threshold_t": 0.19138501584529877, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.20330934590133617, + "t": 0.6646214896214897, + "punct": null, + "u_acc": 0.0, + "t_acc": 0.19230769230769232, + "punct_acc": null, + "threshold_t": 0.40933600068092346, + "threshold_adj": 0.01 + } + }, + "is": { + "opus100": { + "u": 0.3673461851262013, + "t": 0.8046948356807511, + "punct": null, + "u_acc": 0.0, + "t_acc": 0.4044265593561368, + "punct_acc": null, + "threshold_t": 0.7223008871078491, + "threshold_adj": 0.010000000000000002 + }, + "ud": { + "u": 0.14853591644544298, + "t": 0.5439528276707528, + "punct": null, + "u_acc": 0.0007757951900698216, + "t_acc": 0.05430566330488751, + "punct_acc": null, + "threshold_t": 0.7449227571487427, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.37894070451490663, + "t": 0.7065276538558981, + "punct": null, + "u_acc": 0.015267175572519083, + "t_acc": 0.2340966921119593, + "punct_acc": null, + "threshold_t": 0.1583557277917862, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.3824079198878915, + "t": 0.7491380403594144, + "punct": null, + "u_acc": 0.015267175572519083, + "t_acc": 0.3333333333333333, + "punct_acc": null, + "threshold_t": 0.20375104248523712, + "threshold_adj": 0.009999999999999998 + } + }, + "it": { + "opus100": { + "u": 0.40992361816707185, + "t": 0.7731401886643822, + "punct": null, + "u_acc": 0.016129032258064516, + "t_acc": 0.3588709677419355, + "punct_acc": null, + "threshold_t": 0.7547422051429749, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.3396045843612544, + "t": 0.8234519184519183, + "punct": null, + "u_acc": 0.041666666666666664, + "t_acc": 0.525, + "punct_acc": null, + "threshold_t": 0.37855446338653564, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.42641563679653827, + "t": 0.7001749864628125, + "punct": null, + "u_acc": 0.0168, + "t_acc": 0.2364, + "punct_acc": null, + "threshold_t": 0.11918587237596512, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.4193638503458323, + "t": 0.74888630302361, + "punct": null, + "u_acc": 0.02, + "t_acc": 0.3392, + "punct_acc": null, + "threshold_t": 0.16572310030460358, + "threshold_adj": 0.01 + } + }, + "ja": { + "ersatz": { + "u": 0.322511767000892, + "t": 0.7929021020438931, + "punct": null, + "u_acc": 0.0037313432835820895, + "t_acc": 0.4216417910447761, + "punct_acc": null, + "threshold_t": 0.6904107928276062, + "threshold_adj": 0.009999999999999998 + }, + "opus100": { + "u": 0.5697545010005377, + "t": 0.7740329282497956, + "punct": null, + "u_acc": 0.050200803212851405, + "t_acc": 0.3795180722891566, + "punct_acc": null, + "threshold_t": 0.38183656334877014, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.4461887519781366, + "t": 0.8276836725366138, + "punct": null, + "u_acc": 0.022058823529411766, + "t_acc": 0.5073529411764706, + "punct_acc": null, + "threshold_t": 0.4642960727214813, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.5504661254131532, + "t": 0.8171333333333333, + "punct": null, + "u_acc": 0.0704, + "t_acc": 0.4716, + "punct_acc": null, + "threshold_t": 0.3303981125354767, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.5299221397669595, + "t": 0.8012584126984128, + "punct": null, + "u_acc": 0.0624, + "t_acc": 0.4312, + "punct_acc": null, + "threshold_t": 0.3724038600921631, + "threshold_adj": 0.01 + } + }, + "jv": { + "ud": { + "u": 0.3083076910034501, + "t": null, + "punct": null, + "u_acc": 0.0, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "nllb": { + "u": 0.34095762104997396, + "t": 0.7910316564137616, + "punct": null, + "u_acc": 0.0076, + "t_acc": 0.3924, + "punct_acc": null, + "threshold_t": 0.6065859198570251, + "threshold_adj": 0.01 + } + }, + "ka": { + "opus100": { + "u": 0.3498051898858683, + "t": 0.6848488067488068, + "punct": null, + "u_acc": 0.01, + "t_acc": 0.188, + "punct_acc": null, + "threshold_t": 0.7527010440826416, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.40773317183813884, + "t": 0.6694971664936371, + "punct": null, + "u_acc": 0.0136, + "t_acc": 0.188, + "punct_acc": null, + "threshold_t": 0.11280657351016998, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.38481140244658957, + "t": 0.6467198219258423, + "punct": null, + "u_acc": 0.0124, + "t_acc": 0.1688, + "punct_acc": null, + "threshold_t": 0.12804466485977173, + "threshold_adj": 0.01 + } + }, + "kk": { + "ersatz": { + "u": 0.3377764956463363, + "t": 0.7664282005576124, + "punct": null, + "u_acc": 0.04, + "t_acc": 0.416, + "punct_acc": null, + "threshold_t": 0.34651538729667664, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.589306800446127, + "t": 0.818208054571691, + "punct": null, + "u_acc": 0.09090909090909091, + "t_acc": 0.4380165289256198, + "punct_acc": null, + "threshold_t": 0.4719393253326416, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.3841593854566553, + "t": 0.7056585484066399, + "punct": null, + "u_acc": 0.007633587786259542, + "t_acc": 0.13740458015267176, + "punct_acc": null, + "threshold_t": 0.9022212624549866, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.531861928239269, + "t": 0.7659037327415151, + "punct": null, + "u_acc": 0.055441478439425054, + "t_acc": 0.3319644079397673, + "punct_acc": null, + "threshold_t": 0.11501549184322357, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.47727153205638445, + "t": 0.7574239723268655, + "punct": null, + "u_acc": 0.0485968514715948, + "t_acc": 0.33675564681724846, + "punct_acc": null, + "threshold_t": 0.14708136022090912, + "threshold_adj": 0.01 + } + }, + "km": { + "ersatz": { + "u": 0.18073505533089923, + "t": 0.8896610169491527, + "punct": null, + "u_acc": 0.0, + "t_acc": 0.6694915254237288, + "punct_acc": null, + "threshold_t": 0.8915677666664124, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.4351406313443926, + "t": 0.7387317951235478, + "punct": null, + "u_acc": 0.03917525773195876, + "t_acc": 0.2824742268041237, + "punct_acc": null, + "threshold_t": 0.6720339059829712, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.3517531790220858, + "t": 0.7611886860007161, + "punct": null, + "u_acc": 0.015037593984962405, + "t_acc": 0.2932330827067669, + "punct_acc": null, + "threshold_t": 0.2595159113407135, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.3157542330176159, + "t": 0.7435057423779229, + "punct": null, + "u_acc": 0.015037593984962405, + "t_acc": 0.2932330827067669, + "punct_acc": null, + "threshold_t": 0.33763387799263, + "threshold_adj": 0.01 + } + }, + "kn": { + "opus100": { + "u": 0.6348707651268374, + "t": 0.7434225312543896, + "punct": null, + "u_acc": 0.1415929203539823, + "t_acc": 0.2743362831858407, + "punct_acc": null, + "threshold_t": 0.21482868492603302, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.2750911384216013, + "t": 0.5918157852248761, + "punct": null, + "u_acc": 0.0034965034965034965, + "t_acc": 0.10839160839160839, + "punct_acc": null, + "threshold_t": 0.11105097830295563, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.435620204122818, + "t": 0.6386560991456096, + "punct": null, + "u_acc": 0.02097902097902098, + "t_acc": 0.15384615384615385, + "punct_acc": null, + "threshold_t": 0.11358221620321274, + "threshold_adj": 0.01 + } + }, + "ko": { + "opus100": { + "u": 0.4667530749310872, + "t": 0.7764328676271997, + "punct": null, + "u_acc": 0.018218623481781375, + "t_acc": 0.32793522267206476, + "punct_acc": null, + "threshold_t": 0.45421165227890015, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.31116489038690814, + "t": 0.8142933011597628, + "punct": null, + "u_acc": 0.006993006993006993, + "t_acc": 0.49475524475524474, + "punct_acc": null, + "threshold_t": 0.15982823073863983, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.5331511388809557, + "t": 0.7723869064269064, + "punct": null, + "u_acc": 0.0748, + "t_acc": 0.3372, + "punct_acc": null, + "threshold_t": 0.23494939506053925, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.4735188843292641, + "t": 0.7493594866231476, + "punct": null, + "u_acc": 0.0544, + "t_acc": 0.3004, + "punct_acc": null, + "threshold_t": 0.24137845635414124, + "threshold_adj": 0.01 + } + }, + "ku": { + "opus100": { + "u": 0.499597316042814, + "t": 0.7212305712305712, + "punct": null, + "u_acc": 0.13097713097713098, + "t_acc": 0.21621621621621623, + "punct_acc": null, + "threshold_t": 0.8362497687339783, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.20165021781688278, + "t": 0.5590724262012498, + "punct": null, + "u_acc": 0.0016, + "t_acc": 0.0744, + "punct_acc": null, + "threshold_t": 0.1657210886478424, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.19324266817177344, + "t": 0.5209897352015108, + "punct": null, + "u_acc": 0.002, + "t_acc": 0.076, + "punct_acc": null, + "threshold_t": 0.20123344659805298, + "threshold_adj": 0.01 + } + }, + "ky": { + "opus100": { + "u": 0.6321481462233678, + "t": 0.8514663643235072, + "punct": null, + "u_acc": 0.14047619047619048, + "t_acc": 0.5404761904761904, + "punct_acc": null, + "threshold_t": 0.4113311767578125, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.4620032793043174, + "t": 0.7651882975412388, + "punct": null, + "u_acc": 0.00980392156862745, + "t_acc": 0.3137254901960784, + "punct_acc": null, + "threshold_t": 0.1600102037191391, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.4241790707721124, + "t": 0.7391666068136657, + "punct": null, + "u_acc": 0.0196078431372549, + "t_acc": 0.28431372549019607, + "punct_acc": null, + "threshold_t": 0.24029898643493652, + "threshold_adj": 0.009999999999999998 + } + }, + "la": { + "ud": { + "u": 0.26829816551840013, + "t": 0.6739570858482845, + "punct": null, + "u_acc": 0.0038095238095238095, + "t_acc": 0.17333333333333334, + "punct_acc": null, + "threshold_t": 0.25147974491119385, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.41425241425241427, + "t": 0.41111111111111115, + "punct": null, + "u_acc": 0.0, + "t_acc": 0.0, + "punct_acc": null, + "threshold_t": 0.17923101782798767, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.4263736263736264, + "t": 0.7111111111111111, + "punct": null, + "u_acc": 0.0, + "t_acc": 0.0, + "punct_acc": null, + "threshold_t": 0.31801173090934753, + "threshold_adj": 0.01 + } + }, + "lt": { + "ersatz": { + "u": 0.3224922723837521, + "t": 0.7818936174936175, + "punct": null, + "u_acc": 0.044, + "t_acc": 0.452, + "punct_acc": null, + "threshold_t": 0.3162079155445099, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.26019555928554106, + "t": 0.7319652096634021, + "punct": null, + "u_acc": 0.006048387096774193, + "t_acc": 0.3185483870967742, + "punct_acc": null, + "threshold_t": 0.5354177355766296, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.27311527978403727, + "t": 0.6995475585394656, + "punct": null, + "u_acc": 0.005847953216374269, + "t_acc": 0.24561403508771928, + "punct_acc": null, + "threshold_t": 0.5046713352203369, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.42336007504821344, + "t": 0.6728801960943726, + "punct": null, + "u_acc": 0.0148, + "t_acc": 0.1936, + "punct_acc": null, + "threshold_t": 0.0837005004286766, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.4024592341237283, + "t": 0.7164537806611025, + "punct": null, + "u_acc": 0.0224, + "t_acc": 0.2804, + "punct_acc": null, + "threshold_t": 0.16507850587368011, + "threshold_adj": 0.01 + } + }, + "lv": { + "ersatz": { + "u": 0.3245231034767783, + "t": 0.7778767993449919, + "punct": null, + "u_acc": 0.025793650793650792, + "t_acc": 0.4087301587301587, + "punct_acc": null, + "threshold_t": 0.3321951925754547, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.22859438487044323, + "t": 0.7394798350173604, + "punct": null, + "u_acc": 0.0, + "t_acc": 0.2738336713995943, + "punct_acc": null, + "threshold_t": 0.6188104748725891, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.31020146214449784, + "t": 0.7237814740964627, + "punct": null, + "u_acc": 0.014925373134328358, + "t_acc": 0.3283582089552239, + "punct_acc": null, + "threshold_t": 0.38707345724105835, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.4102671449449897, + "t": 0.6580736208453857, + "punct": null, + "u_acc": 0.0184, + "t_acc": 0.182, + "punct_acc": null, + "threshold_t": 0.0767885148525238, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.3896923270485317, + "t": 0.7052260852224592, + "punct": null, + "u_acc": 0.0172, + "t_acc": 0.2432, + "punct_acc": null, + "threshold_t": 0.16581319272518158, + "threshold_adj": 0.01 + } + }, + "mg": { + "opus100": { + "u": 0.36701340514801895, + "t": 0.8007413334991329, + "punct": null, + "u_acc": 0.06072874493927125, + "t_acc": 0.46963562753036436, + "punct_acc": null, + "threshold_t": 0.41540151834487915, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.36350823567271073, + "t": 0.6375700052600636, + "punct": null, + "u_acc": 0.0, + "t_acc": 0.1111111111111111, + "punct_acc": null, + "threshold_t": 0.10049842298030853, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.3606226003883956, + "t": 0.6729597562930896, + "punct": null, + "u_acc": 0.0, + "t_acc": 0.12962962962962962, + "punct_acc": null, + "threshold_t": 0.3035935163497925, + "threshold_adj": 0.01 + } + }, + "mk": { + "opus100": { + "u": 0.484172627155165, + "t": 0.803574603174603, + "punct": null, + "u_acc": 0.044, + "t_acc": 0.412, + "punct_acc": null, + "threshold_t": 0.7357097268104553, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.414640820723648, + "t": 0.698943082668965, + "punct": null, + "u_acc": 0.0092, + "t_acc": 0.2288, + "punct_acc": null, + "threshold_t": 0.12156397849321365, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.39764904369200443, + "t": 0.721722184046591, + "punct": null, + "u_acc": 0.0168, + "t_acc": 0.2876, + "punct_acc": null, + "threshold_t": 0.1695227473974228, + "threshold_adj": 0.01 + } + }, + "ml": { + "opus100": { + "u": 0.4910711807182493, + "t": 0.79727561037802, + "punct": null, + "u_acc": 0.03413654618473896, + "t_acc": 0.37751004016064255, + "punct_acc": null, + "threshold_t": 0.47262778878211975, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.22386957746758726, + "t": 0.5931349279797246, + "punct": null, + "u_acc": 0.0, + "t_acc": 0.10846560846560846, + "punct_acc": null, + "threshold_t": 0.1525401473045349, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.4139122825321271, + "t": 0.6622988339628606, + "punct": null, + "u_acc": 0.01455026455026455, + "t_acc": 0.2037037037037037, + "punct_acc": null, + "threshold_t": 0.12236393988132477, + "threshold_adj": 0.01 + } + }, + "mn": { + "opus100": { + "u": 0.6796200446409589, + "t": null, + "punct": null, + "u_acc": 0.11641221374045801, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.5322705303271447, + "t": 0.7923671690401103, + "punct": null, + "u_acc": 0.066, + "t_acc": 0.3972, + "punct_acc": null, + "threshold_t": 0.12924571335315704, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.5088994809626597, + "t": 0.7592578245185941, + "punct": null, + "u_acc": 0.0812, + "t_acc": 0.304, + "punct_acc": null, + "threshold_t": 0.1967243254184723, + "threshold_adj": 0.01 + }, + "nllb": { + "u": 0.42797490677603545, + "t": 0.7932679061679062, + "punct": null, + "u_acc": 0.03, + "t_acc": 0.3808, + "punct_acc": null, + "threshold_t": 0.34337902069091797, + "threshold_adj": 0.01 + } + }, + "mr": { + "opus100": { + "u": 0.5324991716701244, + "t": 0.8904665898617512, + "punct": null, + "u_acc": 0.02620967741935484, + "t_acc": 0.6532258064516129, + "punct_acc": null, + "threshold_t": 0.3082631230354309, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.4434815184815184, + "t": 0.8166666666666665, + "punct": null, + "u_acc": 0.0, + "t_acc": 0.4166666666666667, + "punct_acc": null, + "threshold_t": 0.6291423439979553, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.19822621349479747, + "t": 0.5908763790810526, + "punct": null, + "u_acc": 0.002, + "t_acc": 0.0716, + "punct_acc": null, + "threshold_t": 0.18327264487743378, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.4311443463716244, + "t": 0.6673460083958158, + "punct": null, + "u_acc": 0.0328, + "t_acc": 0.182, + "punct_acc": null, + "threshold_t": 0.17563383281230927, + "threshold_adj": 0.01 + } + }, + "ms": { + "opus100": { + "u": 0.4607167399740407, + "t": 0.8272449087263901, + "punct": null, + "u_acc": 0.02263374485596708, + "t_acc": 0.4835390946502058, + "punct_acc": null, + "threshold_t": 0.6307487487792969, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.41465960019460457, + "t": 0.6866286317823248, + "punct": null, + "u_acc": 0.01130952380952381, + "t_acc": 0.21666666666666667, + "punct_acc": null, + "threshold_t": 0.08745235204696655, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.40129124455208237, + "t": 0.7261702341383314, + "punct": null, + "u_acc": 0.01369047619047619, + "t_acc": 0.29642857142857143, + "punct_acc": null, + "threshold_t": 0.1473611444234848, + "threshold_adj": 0.009999999999999998 + } + }, + "mt": { + "opus100": { + "u": 0.21070878596949943, + "t": 0.6510943205930108, + "punct": null, + "u_acc": 0.006072874493927126, + "t_acc": 0.2125506072874494, + "punct_acc": null, + "threshold_t": 0.6171737313270569, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.19264840409882714, + "t": 0.6495542334408732, + "punct": null, + "u_acc": 0.0, + "t_acc": 0.17692307692307693, + "punct_acc": null, + "threshold_t": 0.5803362131118774, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.2991583764863117, + "t": 0.496571804264112, + "punct": null, + "u_acc": 0.0, + "t_acc": 0.07692307692307693, + "punct_acc": null, + "threshold_t": 0.0910859927535057, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.27881609935670426, + "t": 0.7102564102564103, + "punct": null, + "u_acc": 0.0, + "t_acc": 0.15384615384615385, + "punct_acc": null, + "threshold_t": 0.7143274545669556, + "threshold_adj": 0.01 + } + }, + "my": { + "opus100": { + "u": 0.4325299598408417, + "t": 0.7785365172461947, + "punct": null, + "u_acc": 0.014112903225806451, + "t_acc": 0.3971774193548387, + "punct_acc": null, + "threshold_t": 0.46084892749786377, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.5084464880867924, + "t": 0.9227200000000001, + "punct": null, + "u_acc": 0.0648, + "t_acc": 0.764, + "punct_acc": null, + "threshold_t": 0.50062495470047, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.43781066668403, + "t": 0.9019618559218557, + "punct": null, + "u_acc": 0.0432, + "t_acc": 0.7064, + "punct_acc": null, + "threshold_t": 0.6897393465042114, + "threshold_adj": 0.01 + } + }, + "ne": { + "opus100": { + "u": 0.6168429685948099, + "t": 0.7744368504410788, + "punct": null, + "u_acc": 0.10570824524312897, + "t_acc": 0.35517970401691334, + "punct_acc": null, + "threshold_t": 0.22984814643859863, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.4870736305554971, + "t": 0.6984358501439246, + "punct": null, + "u_acc": 0.04247104247104247, + "t_acc": 0.2277992277992278, + "punct_acc": null, + "threshold_t": 0.10392989218235016, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.43150823932302096, + "t": 0.6653533139817585, + "punct": null, + "u_acc": 0.03474903474903475, + "t_acc": 0.20077220077220076, + "punct_acc": null, + "threshold_t": 0.12047186493873596, + "threshold_adj": 0.01 + } + }, + "nl": { + "opus100": { + "u": 0.49084901737457576, + "t": null, + "punct": null, + "u_acc": 0.02, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.3579348939508534, + "t": 0.7878132307662508, + "punct": null, + "u_acc": 0.06040268456375839, + "t_acc": 0.4429530201342282, + "punct_acc": null, + "threshold_t": 0.23123392462730408, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.47366408819593, + "t": 0.7379543162598156, + "punct": null, + "u_acc": 0.0312, + "t_acc": 0.3004, + "punct_acc": null, + "threshold_t": 0.08386995643377304, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.4787092024730927, + "t": 0.758993913000006, + "punct": null, + "u_acc": 0.0404, + "t_acc": 0.3408, + "punct_acc": null, + "threshold_t": 0.12813983857631683, + "threshold_adj": 0.01 + } + }, + "no": { + "opus100": { + "u": 0.49438908224249517, + "t": 0.8492223502304147, + "punct": null, + "u_acc": 0.034274193548387094, + "t_acc": 0.5362903225806451, + "punct_acc": null, + "threshold_t": 0.6082062721252441, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.37338557047035575, + "t": 0.8301032186362763, + "punct": null, + "u_acc": 0.028925619834710745, + "t_acc": 0.5165289256198347, + "punct_acc": null, + "threshold_t": 0.25649911165237427, + "threshold_adj": 0.01 + } + }, + "pa": { + "opus100": { + "u": 0.6412439700361564, + "t": 0.7532944514501893, + "punct": null, + "u_acc": 0.1290983606557377, + "t_acc": 0.2848360655737705, + "punct_acc": null, + "threshold_t": 0.344348669052124, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.27104677980767655, + "t": 0.6471968929415738, + "punct": null, + "u_acc": 0.02127659574468085, + "t_acc": 0.06382978723404255, + "punct_acc": null, + "threshold_t": 0.29941871762275696, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.4869029075412054, + "t": 0.714630305615748, + "punct": null, + "u_acc": 0.07446808510638298, + "t_acc": 0.2978723404255319, + "punct_acc": null, + "threshold_t": 0.1484103500843048, + "threshold_adj": 0.01 + } + }, + "pl": { + "ersatz": { + "u": 0.28192599916379696, + "t": 0.7260915186506938, + "punct": null, + "u_acc": 0.01195219123505976, + "t_acc": 0.3386454183266932, + "punct_acc": null, + "threshold_t": 0.31171688437461853, + "threshold_adj": 0.009999999999999998 + }, + "opus100": { + "u": 0.45799499879072403, + "t": 0.8046658986175115, + "punct": null, + "u_acc": 0.02217741935483871, + "t_acc": 0.41935483870967744, + "punct_acc": null, + "threshold_t": 0.6313232779502869, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.28846519859459563, + "t": 0.7212746037148078, + "punct": null, + "u_acc": 0.0036101083032490976, + "t_acc": 0.35379061371841153, + "punct_acc": null, + "threshold_t": 0.2345314919948578, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.4362744389991041, + "t": 0.6721767300948106, + "punct": null, + "u_acc": 0.018, + "t_acc": 0.1904, + "punct_acc": null, + "threshold_t": 0.062415074557065964, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.4170220934000201, + "t": 0.721898220741369, + "punct": null, + "u_acc": 0.0276, + "t_acc": 0.2848, + "punct_acc": null, + "threshold_t": 0.1434328407049179, + "threshold_adj": 0.01 + } + }, + "ps": { + "ersatz": { + "u": 0.2277176666321959, + "t": 0.7474700916739903, + "punct": null, + "u_acc": 0.010263929618768328, + "t_acc": 0.31378299120234604, + "punct_acc": null, + "threshold_t": 0.33317115902900696, + "threshold_adj": 0.009999999999999998 + }, + "opus100": { + "u": 0.6580483238612413, + "t": 0.7458355428288612, + "punct": null, + "u_acc": 0.16481069042316257, + "t_acc": 0.2650334075723831, + "punct_acc": null, + "threshold_t": 0.2272968888282776, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.42326097450190087, + "t": 0.6891336217597479, + "punct": null, + "u_acc": 0.029197080291970802, + "t_acc": 0.20437956204379562, + "punct_acc": null, + "threshold_t": 0.18211594223976135, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.3947743539622683, + "t": 0.6772799530393127, + "punct": null, + "u_acc": 0.021897810218978103, + "t_acc": 0.19708029197080293, + "punct_acc": null, + "threshold_t": 0.1736682653427124, + "threshold_adj": 0.01 + } + }, + "pt": { + "opus100": { + "u": 0.40391453214702705, + "t": 0.7929904890431205, + "punct": null, + "u_acc": 0.020242914979757085, + "t_acc": 0.402834008097166, + "punct_acc": null, + "threshold_t": 0.6658387184143066, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.26728702741914884, + "t": 0.7490984701734861, + "punct": null, + "u_acc": 0.0136986301369863, + "t_acc": 0.3835616438356164, + "punct_acc": null, + "threshold_t": 0.33273911476135254, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.45397801188889514, + "t": 0.7256734088134088, + "punct": null, + "u_acc": 0.0172, + "t_acc": 0.2612, + "punct_acc": null, + "threshold_t": 0.12356603145599365, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.4394279199116224, + "t": 0.7444757942835342, + "punct": null, + "u_acc": 0.0256, + "t_acc": 0.3296, + "punct_acc": null, + "threshold_t": 0.15077932178974152, + "threshold_adj": 0.01 + } + }, + "ro": { + "ersatz": { + "u": 0.3020509743845155, + "t": 0.7901701693559278, + "punct": null, + "u_acc": 0.02, + "t_acc": 0.446, + "punct_acc": null, + "threshold_t": 0.37268954515457153, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.4990567767007847, + "t": 0.8061792528459194, + "punct": null, + "u_acc": 0.04242424242424243, + "t_acc": 0.4222222222222222, + "punct_acc": null, + "threshold_t": 0.6521342992782593, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.2359958787676145, + "t": 0.6680688890373524, + "punct": null, + "u_acc": 0.0076045627376425855, + "t_acc": 0.1634980988593156, + "punct_acc": null, + "threshold_t": 0.9467354416847229, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.4217370172328705, + "t": 0.6973003174603175, + "punct": null, + "u_acc": 0.0132, + "t_acc": 0.2148, + "punct_acc": null, + "threshold_t": 0.12991705536842346, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.42136078759553913, + "t": 0.7306758866792411, + "punct": null, + "u_acc": 0.0264, + "t_acc": 0.2672, + "punct_acc": null, + "threshold_t": 0.22507262229919434, + "threshold_adj": 0.01 + } + }, + "ru": { + "ersatz": { + "u": 0.35069861990543616, + "t": 0.7816572382393067, + "punct": null, + "u_acc": 0.020161290322580645, + "t_acc": 0.41935483870967744, + "punct_acc": null, + "threshold_t": 0.3912647068500519, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.15404095932422732, + "t": null, + "punct": null, + "u_acc": 0.0020491803278688526, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.36778389142637785, + "t": 0.7311505926461939, + "punct": null, + "u_acc": 0.00909090909090909, + "t_acc": 0.3, + "punct_acc": null, + "threshold_t": 0.7315654158592224, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.42847586222761286, + "t": 0.7037917748917749, + "punct": null, + "u_acc": 0.0148, + "t_acc": 0.2212, + "punct_acc": null, + "threshold_t": 0.1478848159313202, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.4024421799200235, + "t": 0.715346550075385, + "punct": null, + "u_acc": 0.022, + "t_acc": 0.28, + "punct_acc": null, + "threshold_t": 0.17024658620357513, + "threshold_adj": 0.01 + } + }, + "si": { + "opus100": { + "u": 0.47948013607144724, + "t": 0.8245135688684075, + "punct": null, + "u_acc": 0.024193548387096774, + "t_acc": 0.4536290322580645, + "punct_acc": null, + "threshold_t": 0.354104608297348, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.3742292415839828, + "t": 0.6650732127476314, + "punct": null, + "u_acc": 0.007751937984496124, + "t_acc": 0.18604651162790697, + "punct_acc": null, + "threshold_t": 0.16720549762248993, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.34693751672347195, + "t": 0.6351376638939833, + "punct": null, + "u_acc": 0.007751937984496124, + "t_acc": 0.17829457364341086, + "punct_acc": null, + "threshold_t": 0.17057611048221588, + "threshold_adj": 0.01 + } + }, + "sk": { + "opus100": { + "u": 0.4117589241942435, + "t": 0.8236585579979793, + "punct": null, + "u_acc": 0.010080645161290322, + "t_acc": 0.4838709677419355, + "punct_acc": null, + "threshold_t": 0.5317352414131165, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.33308108833505745, + "t": 0.7388684690571482, + "punct": null, + "u_acc": 0.0037735849056603774, + "t_acc": 0.2679245283018868, + "punct_acc": null, + "threshold_t": 0.34625244140625, + "threshold_adj": 0.010000000000000002 + }, + "ted2020-corrupted-asr": { + "u": 0.4334436462001355, + "t": 0.700415509999061, + "punct": null, + "u_acc": 0.0152, + "t_acc": 0.2304, + "punct_acc": null, + "threshold_t": 0.10826493799686432, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.4058088917597669, + "t": 0.7177116200632301, + "punct": null, + "u_acc": 0.0184, + "t_acc": 0.2796, + "punct_acc": null, + "threshold_t": 0.1887308806180954, + "threshold_adj": 0.01 + } + }, + "sl": { + "opus100": { + "u": 0.44168094769425664, + "t": 0.8315666962902966, + "punct": null, + "u_acc": 0.018072289156626505, + "t_acc": 0.5, + "punct_acc": null, + "threshold_t": 0.6474649906158447, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.24438953483963025, + "t": 0.6690964680099742, + "punct": null, + "u_acc": 0.003125, + "t_acc": 0.23125, + "punct_acc": null, + "threshold_t": 0.3525484502315521, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.40611816844164084, + "t": 0.707921559889386, + "punct": null, + "u_acc": 0.012, + "t_acc": 0.244, + "punct_acc": null, + "threshold_t": 0.12905976176261902, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.3833267620241752, + "t": 0.7177929227910033, + "punct": null, + "u_acc": 0.0152, + "t_acc": 0.2608, + "punct_acc": null, + "threshold_t": 0.22060173749923706, + "threshold_adj": 0.01 + } + }, + "sq": { + "opus100": { + "u": 0.3758610489811289, + "t": 0.7863369467028003, + "punct": null, + "u_acc": 0.014227642276422764, + "t_acc": 0.3800813008130081, + "punct_acc": null, + "threshold_t": 0.6846444010734558, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.33223147733492564, + "t": null, + "punct": null, + "u_acc": 0.0, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.38567672570564815, + "t": 0.6747178050707462, + "punct": null, + "u_acc": 0.01, + "t_acc": 0.1844, + "punct_acc": null, + "threshold_t": 0.12101588398218155, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.3669933704215542, + "t": 0.7032151125600052, + "punct": null, + "u_acc": 0.0148, + "t_acc": 0.2064, + "punct_acc": null, + "threshold_t": 0.3015010952949524, + "threshold_adj": 0.01 + } + }, + "sr": { + "opus100": { + "u": 0.4093117201443331, + "t": 0.8171638936699177, + "punct": null, + "u_acc": 0.006024096385542169, + "t_acc": 0.44176706827309237, + "punct_acc": null, + "threshold_t": 0.6719990968704224, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.2117817488550673, + "t": 0.7246520146520147, + "punct": null, + "u_acc": 0.0, + "t_acc": 0.2153846153846154, + "punct_acc": null, + "threshold_t": 0.6111785769462585, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.34784253057421866, + "t": 0.6612892254492945, + "punct": null, + "u_acc": 0.0044, + "t_acc": 0.1936, + "punct_acc": null, + "threshold_t": 0.1023489460349083, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.3220098081723597, + "t": 0.7044448745008711, + "punct": null, + "u_acc": 0.0068, + "t_acc": 0.262, + "punct_acc": null, + "threshold_t": 0.20772776007652283, + "threshold_adj": 0.01 + } + }, + "sv": { + "opus100": { + "u": 0.391631963284576, + "t": 0.8333095425676277, + "punct": null, + "u_acc": 0.010040160642570281, + "t_acc": 0.4939759036144578, + "punct_acc": null, + "threshold_t": 0.4864421784877777, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.28260339894972913, + "t": 0.7372752060940556, + "punct": null, + "u_acc": 0.015503875968992248, + "t_acc": 0.34108527131782945, + "punct_acc": null, + "threshold_t": 0.30563703179359436, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.37957465836547427, + "t": 0.7178665977273649, + "punct": null, + "u_acc": 0.0108, + "t_acc": 0.2616, + "punct_acc": null, + "threshold_t": 0.13750684261322021, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.36536887332714196, + "t": 0.7257535810845651, + "punct": null, + "u_acc": 0.014, + "t_acc": 0.2876, + "punct_acc": null, + "threshold_t": 0.18770626187324524, + "threshold_adj": 0.01 + } + }, + "ta": { + "ersatz": { + "u": 0.3261687284296153, + "t": 0.76828731251042, + "punct": null, + "u_acc": 0.0398406374501992, + "t_acc": 0.3705179282868526, + "punct_acc": null, + "threshold_t": 0.504767119884491, + "threshold_adj": 0.009999999999999998 + }, + "opus100": { + "u": 0.4943883817219157, + "t": 0.703314597136805, + "punct": null, + "u_acc": 0.07113821138211382, + "t_acc": 0.18902439024390244, + "punct_acc": null, + "threshold_t": 0.6789754629135132, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.3091085510732054, + "t": 0.7836766293288033, + "punct": null, + "u_acc": 0.03333333333333333, + "t_acc": 0.5, + "punct_acc": null, + "threshold_t": 0.32152900099754333, + "threshold_adj": 0.010000000000000002 + }, + "ted2020-corrupted-asr": { + "u": 0.22053268017632344, + "t": 0.6242369782620311, + "punct": null, + "u_acc": 0.00498220640569395, + "t_acc": 0.1409252669039146, + "punct_acc": null, + "threshold_t": 0.1699867993593216, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.39984980504035617, + "t": 0.6772698346164957, + "punct": null, + "u_acc": 0.025622775800711744, + "t_acc": 0.19501779359430604, + "punct_acc": null, + "threshold_t": 0.22463808953762054, + "threshold_adj": 0.009999999999999998 + } + }, + "te": { + "opus100": { + "u": 0.6005484349361901, + "t": 0.8037483564854513, + "punct": null, + "u_acc": 0.11632653061224489, + "t_acc": 0.44693877551020406, + "punct_acc": null, + "threshold_t": 0.4596131443977356, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.28126646456807264, + "t": 0.6663913629170427, + "punct": null, + "u_acc": 0.004531722054380665, + "t_acc": 0.12084592145015106, + "punct_acc": null, + "threshold_t": 0.20314504206180573, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.43739138071531086, + "t": 0.6827358558547469, + "punct": null, + "u_acc": 0.03172205438066465, + "t_acc": 0.2190332326283988, + "punct_acc": null, + "threshold_t": 0.16533248126506805, + "threshold_adj": 0.009999999999999998 + } + }, + "tg": { + "opus100": { + "u": 0.2661203799884946, + "t": 0.699313004894153, + "punct": null, + "u_acc": 0.008032128514056224, + "t_acc": 0.2429718875502008, + "punct_acc": null, + "threshold_t": 0.7639127373695374, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.2560995365381075, + "t": 0.7047305764411028, + "punct": null, + "u_acc": 0.013157894736842105, + "t_acc": 0.18421052631578946, + "punct_acc": null, + "threshold_t": 0.27024155855178833, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.23743669786870808, + "t": 0.6710196966775913, + "punct": null, + "u_acc": 0.013157894736842105, + "t_acc": 0.19736842105263158, + "punct_acc": null, + "threshold_t": 0.3450261652469635, + "threshold_adj": 0.01 + } + }, + "th": { + "opus100": { + "u": 0.7157940745463026, + "t": 0.762982202982203, + "punct": null, + "u_acc": 0.1696969696969697, + "t_acc": 0.28888888888888886, + "punct_acc": null, + "threshold_t": 0.30312761664390564, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.5976738372738373, + "t": null, + "punct": null, + "u_acc": 0.06, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.4938166878003025, + "t": 0.647736022430559, + "punct": null, + "u_acc": 0.0472, + "t_acc": 0.1736, + "punct_acc": null, + "threshold_t": 0.192801371216774, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.4927442230018878, + "t": 0.6341434908275159, + "punct": null, + "u_acc": 0.0472, + "t_acc": 0.1684, + "punct_acc": null, + "threshold_t": 0.192801371216774, + "threshold_adj": 0.01 + } + }, + "tr": { + "ersatz": { + "u": 0.33630156737378325, + "t": 0.8019537052781733, + "punct": null, + "u_acc": 0.018617021276595744, + "t_acc": 0.43351063829787234, + "punct_acc": null, + "threshold_t": 0.45274558663368225, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.5031222276057675, + "t": 0.8263800526958422, + "punct": null, + "u_acc": 0.02631578947368421, + "t_acc": 0.4797570850202429, + "punct_acc": null, + "threshold_t": 0.6764249801635742, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.45741940858561236, + "t": 0.8743589138134592, + "punct": null, + "u_acc": 0.02181818181818182, + "t_acc": 0.6290909090909091, + "punct_acc": null, + "threshold_t": 0.5112825632095337, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.46936960001702627, + "t": 0.7506185347985348, + "punct": null, + "u_acc": 0.034, + "t_acc": 0.3056, + "punct_acc": null, + "threshold_t": 0.17791053652763367, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.4435651259324174, + "t": 0.7491823487623488, + "punct": null, + "u_acc": 0.034, + "t_acc": 0.3116, + "punct_acc": null, + "threshold_t": 0.2015119343996048, + "threshold_adj": 0.01 + } + }, + "uk": { + "opus100": { + "u": 0.48034842041748926, + "t": 0.8028638362975712, + "punct": null, + "u_acc": 0.024096385542168676, + "t_acc": 0.42570281124497994, + "punct_acc": null, + "threshold_t": 0.6853594779968262, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.2717582684712486, + "t": 0.6800528588475017, + "punct": null, + "u_acc": 0.026785714285714284, + "t_acc": 0.17857142857142858, + "punct_acc": null, + "threshold_t": 0.7744089365005493, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.42344226297750964, + "t": 0.6919378203083466, + "punct": null, + "u_acc": 0.0128, + "t_acc": 0.2224, + "punct_acc": null, + "threshold_t": 0.1061800867319107, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.39431142325410035, + "t": 0.6967913008186645, + "punct": null, + "u_acc": 0.0172, + "t_acc": 0.266, + "punct_acc": null, + "threshold_t": 0.1314598023891449, + "threshold_adj": 0.01 + } + }, + "ur": { + "opus100": { + "u": 0.28093065342876805, + "t": 0.6099942333450417, + "punct": null, + "u_acc": 0.01694915254237288, + "t_acc": 0.13347457627118645, + "punct_acc": null, + "threshold_t": 0.4465469717979431, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.35549654235773454, + "t": 0.8527530368542698, + "punct": null, + "u_acc": 0.05223880597014925, + "t_acc": 0.6044776119402985, + "punct_acc": null, + "threshold_t": 0.2991543710231781, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.4921800929257538, + "t": 0.6986940004154804, + "punct": null, + "u_acc": 0.047790339157245634, + "t_acc": 0.25488180883864336, + "punct_acc": null, + "threshold_t": 0.1319136768579483, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.4440622795042769, + "t": 0.684054079320785, + "punct": null, + "u_acc": 0.040596094552929084, + "t_acc": 0.24665981500513876, + "punct_acc": null, + "threshold_t": 0.14746062457561493, + "threshold_adj": 0.01 + } + }, + "uz": { + "opus100": { + "u": 0.2796698719471827, + "t": 0.6929714381502464, + "punct": null, + "u_acc": 0.0163265306122449, + "t_acc": 0.24285714285714285, + "punct_acc": null, + "threshold_t": 0.8502880930900574, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.541939138358029, + "t": 0.759449452329199, + "punct": null, + "u_acc": 0.06329113924050633, + "t_acc": 0.3291139240506329, + "punct_acc": null, + "threshold_t": 0.09751009941101074, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.47693642749704207, + "t": 0.7447064145338825, + "punct": null, + "u_acc": 0.049578059071729956, + "t_acc": 0.2974683544303797, + "punct_acc": null, + "threshold_t": 0.16709184646606445, + "threshold_adj": 0.01 + } + }, + "vi": { + "opus100": { + "u": 0.4455856017661054, + "t": 0.8821444901691815, + "punct": null, + "u_acc": 0.03292181069958848, + "t_acc": 0.6172839506172839, + "punct_acc": null, + "threshold_t": 0.31977379322052, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.2896654299047212, + "t": 0.8049054834054834, + "punct": null, + "u_acc": 0.01, + "t_acc": 0.42, + "punct_acc": null, + "threshold_t": 0.22170884907245636, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.37553724765947555, + "t": 0.6594906416376881, + "punct": null, + "u_acc": 0.0076, + "t_acc": 0.1844, + "punct_acc": null, + "threshold_t": 0.06700824946165085, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.37280830274272203, + "t": 0.7165594136029529, + "punct": null, + "u_acc": 0.0204, + "t_acc": 0.2668, + "punct_acc": null, + "threshold_t": 0.13336573541164398, + "threshold_adj": 0.01 + } + }, + "xh": { + "opus100": { + "u": 0.3102777886508818, + "t": 0.6765196536980769, + "punct": null, + "u_acc": 0.004149377593360996, + "t_acc": 0.1991701244813278, + "punct_acc": null, + "threshold_t": 0.6137423515319824, + "threshold_adj": 0.01 + } + }, + "yi": { + "opus100": { + "u": 0.681648804549316, + "t": 0.7351649047573813, + "punct": null, + "u_acc": 0.19122257053291536, + "t_acc": 0.31347962382445144, + "punct_acc": null, + "threshold_t": 0.2753221392631531, + "threshold_adj": 0.01 + } + }, + "yo": { + "opus100": { + "u": 0.4203568766555455, + "t": null, + "punct": null, + "u_acc": 0.02303754266211604, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.11805303332445445, + "t": null, + "punct": null, + "u_acc": 0.0125, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "nllb": { + "u": 0.20478785575342864, + "t": 0.5977748151096539, + "punct": null, + "u_acc": 0.0, + "t_acc": 0.1612, + "punct_acc": null, + "threshold_t": 0.6112736463546753, + "threshold_adj": 0.01 + } + }, + "zh": { + "ersatz": { + "u": 0.48698955568291774, + "t": 0.7160172586152126, + "punct": null, + "u_acc": 0.086, + "t_acc": 0.33, + "punct_acc": null, + "threshold_t": 0.09756885468959808, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.5445174264388579, + "t": 0.6240166709497865, + "punct": null, + "u_acc": 0.07847082494969819, + "t_acc": 0.1488933601609658, + "punct_acc": null, + "threshold_t": 0.021776193752884865, + "threshold_adj": 0.010000000000000002 + }, + "ud": { + "u": 0.5359426730345916, + "t": 0.8055368631368632, + "punct": null, + "u_acc": 0.072, + "t_acc": 0.48, + "punct_acc": null, + "threshold_t": 0.16663222014904022, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.4474255135894836, + "t": 0.4466036385057679, + "punct": null, + "u_acc": 0.03060217176702863, + "t_acc": 0.03060217176702863, + "punct_acc": null, + "threshold_t": 0.009832530282437801, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.43075129917489535, + "t": 0.45429967370079094, + "punct": null, + "u_acc": 0.025172754195459033, + "t_acc": 0.032082922013820334, + "punct_acc": null, + "threshold_t": 0.021062834188342094, + "threshold_adj": 0.009999999999999998 + } + }, + "zu": { + "opus100": { + "u": 0.5742575352093462, + "t": 0.7800959842626509, + "punct": null, + "u_acc": 0.09829059829059829, + "t_acc": 0.33760683760683763, + "punct_acc": null, + "threshold_t": 0.6318753361701965, + "threshold_adj": 0.01 + } + }, + "tr-de": {}, + "es-en": {}, + "vi-en": {}, + "en-de": {} +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/sat-3l.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/sat-3l.json new file mode 100644 index 0000000000000000000000000000000000000000..9f2e8b488f650e82245b065bdc0f48e63dc14425 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/sat-3l.json @@ -0,0 +1,3346 @@ +{ + "af": { + "opus100": { + "u": 0.863229699593336, + "t": null, + "punct": null, + "u_acc": 0.5516528925619835, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9776729559748428, + "t": null, + "punct": null, + "u_acc": 0.9150943396226415, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6880179820179819, + "t": null, + "punct": null, + "u_acc": 0.2, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999994 + }, + "ted2020-corrupted-social-media": { + "u": 0.734940170940171, + "t": null, + "punct": null, + "u_acc": 0.2676923076923077, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999994 + } + }, + "am": { + "opus100": { + "u": 0.6864105909687617, + "t": null, + "punct": null, + "u_acc": 0.178714859437751, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.6405263573232323, + "t": null, + "punct": null, + "u_acc": 0.1640625, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + }, + "ted2020-corrupted-social-media": { + "u": 0.6503737148268398, + "t": null, + "punct": null, + "u_acc": 0.1640625, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + } + }, + "ar": { + "ersatz": { + "u": 0.8972517730496454, + "t": null, + "punct": null, + "u_acc": 0.6382978723404256, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "opus100": { + "u": 0.7991623057888118, + "t": null, + "punct": null, + "u_acc": 0.40160642570281124, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.8733706816059756, + "t": null, + "punct": null, + "u_acc": 0.6176470588235294, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999994 + }, + "ted2020-corrupted-asr": { + "u": 0.6245638252081596, + "t": null, + "punct": null, + "u_acc": 0.1352, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.6600427482459061, + "t": null, + "punct": null, + "u_acc": 0.1916, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "az": { + "opus100": { + "u": 0.7792317900751635, + "t": null, + "punct": null, + "u_acc": 0.26506024096385544, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.7661532944334362, + "t": null, + "punct": null, + "u_acc": 0.33865248226950356, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7550724065794987, + "t": null, + "punct": null, + "u_acc": 0.3049645390070922, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "be": { + "opus100": { + "u": 0.8168553139075168, + "t": null, + "punct": null, + "u_acc": 0.47046843177189407, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + }, + "ud": { + "u": 0.9192900862045843, + "t": null, + "punct": null, + "u_acc": 0.7360594795539034, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.638259878529355, + "t": null, + "punct": null, + "u_acc": 0.13887086307592472, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999994 + }, + "ted2020-corrupted-social-media": { + "u": 0.7343542786437011, + "t": null, + "punct": null, + "u_acc": 0.26865671641791045, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999994 + } + }, + "bg": { + "opus100": { + "u": 0.9379807233514648, + "t": null, + "punct": null, + "u_acc": 0.7555110220440882, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.973715651135006, + "t": null, + "punct": null, + "u_acc": 0.899641577060932, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999994 + }, + "ted2020-corrupted-asr": { + "u": 0.6658156894086306, + "t": null, + "punct": null, + "u_acc": 0.1716, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7486457655754207, + "t": null, + "punct": null, + "u_acc": 0.31, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "bn": { + "opus100": { + "u": 0.861070697690416, + "t": null, + "punct": null, + "u_acc": 0.5513078470824949, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9714285714285715, + "t": null, + "punct": null, + "u_acc": 0.8571428571428571, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + }, + "ted2020-corrupted-asr": { + "u": 0.46889861834997576, + "t": null, + "punct": null, + "u_acc": 0.03769230769230769, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-social-media": { + "u": 0.6637979035134906, + "t": null, + "punct": null, + "u_acc": 0.20384615384615384, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + } + }, + "ca": { + "opus100": { + "u": 0.9091519624630232, + "t": null, + "punct": null, + "u_acc": 0.6977687626774848, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ud": { + "u": 0.9856524427953, + "t": null, + "punct": null, + "u_acc": 0.948051948051948, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.6316930785554316, + "t": null, + "punct": null, + "u_acc": 0.1252, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7300369822334528, + "t": null, + "punct": null, + "u_acc": 0.2596, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "ceb": { + "ud": { + "u": 0.9872340425531916, + "t": null, + "punct": null, + "u_acc": 0.9361702127659575, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999988 + }, + "ted2020-corrupted-asr": { + "u": 0.5017573696145126, + "t": null, + "punct": null, + "u_acc": 0.0, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + }, + "ted2020-corrupted-social-media": { + "u": 0.6435374149659864, + "t": null, + "punct": null, + "u_acc": 0.14285714285714285, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + }, + "nllb": { + "u": 0.8341259052059052, + "t": null, + "punct": null, + "u_acc": 0.4756, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "cs": { + "ersatz": { + "u": 0.9465645208700764, + "t": null, + "punct": null, + "u_acc": 0.8148148148148148, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "opus100": { + "u": 0.9137674091942385, + "t": null, + "punct": null, + "u_acc": 0.6829268292682927, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9447708552400982, + "t": null, + "punct": null, + "u_acc": 0.8154574132492114, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6460104265325319, + "t": null, + "punct": null, + "u_acc": 0.1516, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7313816223776225, + "t": null, + "punct": null, + "u_acc": 0.2584, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "cy": { + "opus100": { + "u": 0.8327805503569696, + "t": null, + "punct": null, + "u_acc": 0.4759825327510917, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.988515406162465, + "t": null, + "punct": null, + "u_acc": 0.9537815126050421, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + } + }, + "da": { + "opus100": { + "u": 0.9301718219056928, + "t": null, + "punct": null, + "u_acc": 0.7217741935483871, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + }, + "ud": { + "u": 0.9397838568051332, + "t": null, + "punct": null, + "u_acc": 0.7730496453900709, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6696680144038967, + "t": null, + "punct": null, + "u_acc": 0.1884, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7369681562881563, + "t": null, + "punct": null, + "u_acc": 0.2668, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "de": { + "ersatz": { + "u": 0.9550868005043157, + "t": null, + "punct": null, + "u_acc": 0.8207739307535642, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + }, + "opus100": { + "u": 0.8582764047953921, + "t": null, + "punct": null, + "u_acc": 0.5147679324894515, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9715846994535519, + "t": null, + "punct": null, + "u_acc": 0.8975409836065574, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.6870578523437347, + "t": null, + "punct": null, + "u_acc": 0.2108, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7344572496469048, + "t": null, + "punct": null, + "u_acc": 0.2772, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "el": { + "opus100": { + "u": 0.9325487542355012, + "t": null, + "punct": null, + "u_acc": 0.7389558232931727, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9824561403508771, + "t": null, + "punct": null, + "u_acc": 0.9473684210526315, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.6432250462918575, + "t": null, + "punct": null, + "u_acc": 0.132, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7326416147904383, + "t": null, + "punct": null, + "u_acc": 0.2712, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "en": { + "ersatz": { + "u": 0.9700766167378656, + "t": null, + "punct": null, + "u_acc": 0.8920041536863966, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "opus100": { + "u": 0.9377208141321044, + "t": null, + "punct": null, + "u_acc": 0.7580645161290323, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + }, + "ud": { + "u": 0.9484995944849959, + "t": null, + "punct": null, + "u_acc": 0.8211678832116789, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999994 + }, + "ted2020-corrupted-asr": { + "u": 0.6498699004155071, + "t": null, + "punct": null, + "u_acc": 0.1612, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7216622094572094, + "t": null, + "punct": null, + "u_acc": 0.2528, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "eo": { + "opus100": { + "u": 0.9342645929339478, + "t": null, + "punct": null, + "u_acc": 0.7419354838709677, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + }, + "ted2020-corrupted-asr": { + "u": 0.6482359050028224, + "t": null, + "punct": null, + "u_acc": 0.15100250626566417, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + }, + "ted2020-corrupted-social-media": { + "u": 0.7217804160473333, + "t": null, + "punct": null, + "u_acc": 0.25125313283208023, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + } + }, + "es": { + "ersatz": { + "u": 0.9854345393509885, + "t": null, + "punct": null, + "u_acc": 0.9425587467362925, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "opus100": { + "u": 0.9290566158987211, + "t": null, + "punct": null, + "u_acc": 0.7530364372469636, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9716125734730385, + "t": null, + "punct": null, + "u_acc": 0.9, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.6437394954422943, + "t": null, + "punct": null, + "u_acc": 0.1392, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7354231830423319, + "t": null, + "punct": null, + "u_acc": 0.2676, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "et": { + "ersatz": { + "u": 0.9749433106575963, + "t": null, + "punct": null, + "u_acc": 0.9047619047619048, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "opus100": { + "u": 0.9000473419000387, + "t": null, + "punct": null, + "u_acc": 0.6720647773279352, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9471651482845515, + "t": null, + "punct": null, + "u_acc": 0.8383084577114428, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.6625343859874953, + "t": null, + "punct": null, + "u_acc": 0.17, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7435311154736736, + "t": null, + "punct": null, + "u_acc": 0.288, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "eu": { + "opus100": { + "u": 0.9038731993840352, + "t": null, + "punct": null, + "u_acc": 0.6659919028340081, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.973079365079365, + "t": null, + "punct": null, + "u_acc": 0.9022222222222223, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.5934480021173569, + "t": null, + "punct": null, + "u_acc": 0.09274193548387097, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7259788859587247, + "t": null, + "punct": null, + "u_acc": 0.2567204301075269, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "fa": { + "opus100": { + "u": 0.7543073720652408, + "t": null, + "punct": null, + "u_acc": 0.342685370741483, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9835164835164835, + "t": null, + "punct": null, + "u_acc": 0.9285714285714286, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999994 + }, + "ted2020-corrupted-asr": { + "u": 0.7045129884680349, + "t": null, + "punct": null, + "u_acc": 0.2416, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.715731425586472, + "t": null, + "punct": null, + "u_acc": 0.2628, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "fi": { + "ersatz": { + "u": 0.9771733944078633, + "t": null, + "punct": null, + "u_acc": 0.905811623246493, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "opus100": { + "u": 0.9425217974513749, + "t": null, + "punct": null, + "u_acc": 0.7706237424547284, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9582842415316642, + "t": null, + "punct": null, + "u_acc": 0.8479381443298969, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6499008109537521, + "t": null, + "punct": null, + "u_acc": 0.1516, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7300908453637865, + "t": null, + "punct": null, + "u_acc": 0.2584, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "fr": { + "ersatz": { + "u": 0.9750402576489532, + "t": null, + "punct": null, + "u_acc": 0.8961352657004831, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "opus100": { + "u": 0.9168131620464278, + "t": null, + "punct": null, + "u_acc": 0.6713995943204868, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ud": { + "u": 0.9717948717948718, + "t": null, + "punct": null, + "u_acc": 0.8846153846153846, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.6490696598826011, + "t": null, + "punct": null, + "u_acc": 0.1552, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7367693062493063, + "t": null, + "punct": null, + "u_acc": 0.2776, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "fy": { + "opus100": { + "u": 0.8260924970846708, + "t": null, + "punct": null, + "u_acc": 0.49141630901287553, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + } + }, + "ga": { + "opus100": { + "u": 0.8966877880184332, + "t": null, + "punct": null, + "u_acc": 0.6794354838709677, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + }, + "ud": { + "u": 0.9169721117089539, + "t": null, + "punct": null, + "u_acc": 0.7192982456140351, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.4623256373256373, + "t": null, + "punct": null, + "u_acc": 0.08333333333333333, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + }, + "ted2020-corrupted-social-media": { + "u": 0.7011363636363637, + "t": null, + "punct": null, + "u_acc": 0.25, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + } + }, + "gd": { + "opus100": { + "u": 0.8930630686186242, + "t": null, + "punct": null, + "u_acc": 0.6518518518518519, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.8088235294117647, + "t": null, + "punct": null, + "u_acc": 0.45588235294117646, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999994 + } + }, + "gl": { + "opus100": { + "u": 0.9098438300051204, + "t": null, + "punct": null, + "u_acc": 0.6633064516129032, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + }, + "ud": { + "u": 0.9767142857142858, + "t": null, + "punct": null, + "u_acc": 0.94, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999994 + }, + "ted2020-corrupted-asr": { + "u": 0.6389405556665557, + "t": null, + "punct": null, + "u_acc": 0.1368, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7346619280719281, + "t": null, + "punct": null, + "u_acc": 0.2612, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "gu": { + "ersatz": { + "u": 0.9292310052152571, + "t": null, + "punct": null, + "u_acc": 0.7795275590551181, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "opus100": { + "u": 0.8028102062080872, + "t": null, + "punct": null, + "u_acc": 0.40165631469979296, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + }, + "ted2020-corrupted-asr": { + "u": 0.543831411522384, + "t": null, + "punct": null, + "u_acc": 0.08796764408493428, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-social-media": { + "u": 0.6496186566206789, + "t": null, + "punct": null, + "u_acc": 0.1936299292214358, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + } + }, + "ha": { + "opus100": { + "u": 0.8500264957264958, + "t": null, + "punct": null, + "u_acc": 0.44, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.562962962962963, + "t": null, + "punct": null, + "u_acc": 0.0, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + }, + "ted2020-corrupted-social-media": { + "u": 0.611111111111111, + "t": null, + "punct": null, + "u_acc": 0.0, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + } + }, + "he": { + "opus100": { + "u": 0.90008588605783, + "t": null, + "punct": null, + "u_acc": 0.6352705410821643, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9714285714285714, + "t": null, + "punct": null, + "u_acc": 0.8775510204081632, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6071107343463434, + "t": null, + "punct": null, + "u_acc": 0.1236, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.6673864367314831, + "t": null, + "punct": null, + "u_acc": 0.2088, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "hi": { + "ersatz": { + "u": 0.9453363567649282, + "t": null, + "punct": null, + "u_acc": 0.7952380952380952, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "opus100": { + "u": 0.7629472060338105, + "t": null, + "punct": null, + "u_acc": 0.39068825910931176, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9630358556724352, + "t": null, + "punct": null, + "u_acc": 0.8669833729216152, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.60413746172407, + "t": null, + "punct": null, + "u_acc": 0.1416, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.6919090338900865, + "t": null, + "punct": null, + "u_acc": 0.2432, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "hu": { + "opus100": { + "u": 0.9323924731182797, + "t": null, + "punct": null, + "u_acc": 0.7258064516129032, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + }, + "ud": { + "u": 0.9640035559678416, + "t": null, + "punct": null, + "u_acc": 0.875, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.6299975377692483, + "t": null, + "punct": null, + "u_acc": 0.1236, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7390087607817021, + "t": null, + "punct": null, + "u_acc": 0.282, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "hy": { + "opus100": { + "u": 0.8919643726306599, + "t": null, + "punct": null, + "u_acc": 0.6093394077448747, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + }, + "ud": { + "u": 0.9827327327327329, + "t": null, + "punct": null, + "u_acc": 0.9256756756756757, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999994 + }, + "ted2020-corrupted-asr": { + "u": 0.6471330751910628, + "t": null, + "punct": null, + "u_acc": 0.1572, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.720166813646124, + "t": null, + "punct": null, + "u_acc": 0.256, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "id": { + "opus100": { + "u": 0.905425448868072, + "t": null, + "punct": null, + "u_acc": 0.6495901639344263, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + }, + "ud": { + "u": 0.9853333333333334, + "t": null, + "punct": null, + "u_acc": 0.932, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.6252756909756909, + "t": null, + "punct": null, + "u_acc": 0.1332, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7287052658452658, + "t": null, + "punct": null, + "u_acc": 0.2696, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "ig": { + "opus100": { + "u": 0.8804900601017106, + "t": null, + "punct": null, + "u_acc": 0.5995145631067961, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.5015279592202668, + "t": null, + "punct": null, + "u_acc": 0.11538461538461539, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + }, + "ted2020-corrupted-social-media": { + "u": 0.7463369963369964, + "t": null, + "punct": null, + "u_acc": 0.23076923076923078, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + } + }, + "is": { + "opus100": { + "u": 0.9292900258695028, + "t": null, + "punct": null, + "u_acc": 0.704225352112676, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.8598508754211559, + "t": null, + "punct": null, + "u_acc": 0.5950349107835532, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999994 + }, + "ted2020-corrupted-asr": { + "u": 0.6673959204493555, + "t": null, + "punct": null, + "u_acc": 0.17048346055979643, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7475117616338991, + "t": null, + "punct": null, + "u_acc": 0.30279898218829515, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "it": { + "opus100": { + "u": 0.906705024638782, + "t": null, + "punct": null, + "u_acc": 0.6693548387096774, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + }, + "ud": { + "u": 0.9802777777777778, + "t": null, + "punct": null, + "u_acc": 0.925, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + }, + "ted2020-corrupted-asr": { + "u": 0.6265294342355272, + "t": null, + "punct": null, + "u_acc": 0.126, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.748196835678941, + "t": null, + "punct": null, + "u_acc": 0.3172, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "ja": { + "ersatz": { + "u": 0.870124651467935, + "t": null, + "punct": null, + "u_acc": 0.5932835820895522, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "opus100": { + "u": 0.879320746188216, + "t": null, + "punct": null, + "u_acc": 0.6164658634538153, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9399859943977592, + "t": null, + "punct": null, + "u_acc": 0.7426470588235294, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999994 + }, + "ted2020-corrupted-asr": { + "u": 0.9209384704184704, + "t": null, + "punct": null, + "u_acc": 0.738, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.9111180952380954, + "t": null, + "punct": null, + "u_acc": 0.7164, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "jv": { + "ud": { + "u": 0.984, + "t": null, + "punct": null, + "u_acc": 0.936, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "nllb": { + "u": 0.8229475324675324, + "t": null, + "punct": null, + "u_acc": 0.4524, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "ka": { + "opus100": { + "u": 0.662182029082029, + "t": null, + "punct": null, + "u_acc": 0.122, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.5975965237514463, + "t": null, + "punct": null, + "u_acc": 0.1056, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.6518463616603555, + "t": null, + "punct": null, + "u_acc": 0.1796, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "kk": { + "ersatz": { + "u": 0.9783999999999999, + "t": null, + "punct": null, + "u_acc": 0.924, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "opus100": { + "u": 0.8465695920241375, + "t": null, + "punct": null, + "u_acc": 0.512396694214876, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9616493769165525, + "t": null, + "punct": null, + "u_acc": 0.8664122137404581, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.7393408933450002, + "t": null, + "punct": null, + "u_acc": 0.2950034223134839, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7601528226664113, + "t": null, + "punct": null, + "u_acc": 0.31143052703627655, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "km": { + "ersatz": { + "u": 0.9032928088860293, + "t": null, + "punct": null, + "u_acc": 0.6830508474576271, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "opus100": { + "u": 0.7233580279972033, + "t": null, + "punct": null, + "u_acc": 0.24329896907216494, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.8052929943907386, + "t": null, + "punct": null, + "u_acc": 0.43609022556390975, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999994 + }, + "ted2020-corrupted-social-media": { + "u": 0.8281119465329991, + "t": null, + "punct": null, + "u_acc": 0.5112781954887218, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999994 + } + }, + "kn": { + "opus100": { + "u": 0.8026625292112017, + "t": null, + "punct": null, + "u_acc": 0.3805309734513274, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.5344024138106015, + "t": null, + "punct": null, + "u_acc": 0.038461538461538464, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999994 + }, + "ted2020-corrupted-social-media": { + "u": 0.6486260947983435, + "t": null, + "punct": null, + "u_acc": 0.15384615384615385, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999994 + } + }, + "ko": { + "opus100": { + "u": 0.8068279673542832, + "t": null, + "punct": null, + "u_acc": 0.39878542510121456, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9873543123543124, + "t": null, + "punct": null, + "u_acc": 0.9440559440559441, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999994 + }, + "ted2020-corrupted-asr": { + "u": 0.7985828226428227, + "t": null, + "punct": null, + "u_acc": 0.3872, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7657896081696082, + "t": null, + "punct": null, + "u_acc": 0.3428, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "ku": { + "opus100": { + "u": 0.881990381990382, + "t": null, + "punct": null, + "u_acc": 0.6112266112266113, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + }, + "ted2020-corrupted-asr": { + "u": 0.5283324326149713, + "t": null, + "punct": null, + "u_acc": 0.0664, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.5873716816047158, + "t": null, + "punct": null, + "u_acc": 0.1268, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "ky": { + "opus100": { + "u": 0.8914644746787603, + "t": null, + "punct": null, + "u_acc": 0.65, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.7325396825396825, + "t": null, + "punct": null, + "u_acc": 0.2549019607843137, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999994 + }, + "ted2020-corrupted-social-media": { + "u": 0.7466697790227204, + "t": null, + "punct": null, + "u_acc": 0.3137254901960784, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999994 + } + }, + "la": { + "ud": { + "u": 0.8599455782312925, + "t": null, + "punct": null, + "u_acc": 0.5695238095238095, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.6793650793650795, + "t": null, + "punct": null, + "u_acc": 0.0, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + }, + "ted2020-corrupted-social-media": { + "u": 0.611111111111111, + "t": null, + "punct": null, + "u_acc": 0.0, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + } + }, + "lt": { + "ersatz": { + "u": 0.9729333333333334, + "t": null, + "punct": null, + "u_acc": 0.892, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "opus100": { + "u": 0.8817049806613374, + "t": null, + "punct": null, + "u_acc": 0.6189516129032258, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + }, + "ud": { + "u": 0.9750487329434698, + "t": null, + "punct": null, + "u_acc": 0.9064327485380117, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6220421526609076, + "t": null, + "punct": null, + "u_acc": 0.1188, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7362860916860917, + "t": null, + "punct": null, + "u_acc": 0.2984, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "lv": { + "ersatz": { + "u": 0.9796992029134887, + "t": null, + "punct": null, + "u_acc": 0.9186507936507936, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "opus100": { + "u": 0.9010449200363818, + "t": null, + "punct": null, + "u_acc": 0.6612576064908722, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ud": { + "u": 0.9575824580799706, + "t": null, + "punct": null, + "u_acc": 0.8557213930348259, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6313209032797268, + "t": null, + "punct": null, + "u_acc": 0.1308, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7248878876678877, + "t": null, + "punct": null, + "u_acc": 0.2532, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "mg": { + "opus100": { + "u": 0.9037439169018117, + "t": null, + "punct": null, + "u_acc": 0.6720647773279352, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.5502688463799577, + "t": null, + "punct": null, + "u_acc": 0.09259259259259259, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.02499999999999999 + }, + "ted2020-corrupted-social-media": { + "u": 0.7093768371546149, + "t": null, + "punct": null, + "u_acc": 0.24074074074074073, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.02499999999999999 + } + }, + "mk": { + "opus100": { + "u": 0.9351079365079366, + "t": null, + "punct": null, + "u_acc": 0.75, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.6455866259344519, + "t": null, + "punct": null, + "u_acc": 0.1524, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7506023391101652, + "t": null, + "punct": null, + "u_acc": 0.308, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "ml": { + "opus100": { + "u": 0.8511254252218108, + "t": null, + "punct": null, + "u_acc": 0.4759036144578313, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.5618589591309381, + "t": null, + "punct": null, + "u_acc": 0.07936507936507936, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.6802429052429052, + "t": null, + "punct": null, + "u_acc": 0.2037037037037037, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "mn": { + "opus100": { + "u": 0.9527262813522355, + "t": null, + "punct": null, + "u_acc": 0.8291984732824428, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.8182713597513598, + "t": null, + "punct": null, + "u_acc": 0.4516, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7829923809523811, + "t": null, + "punct": null, + "u_acc": 0.3672, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "nllb": { + "u": 0.9189271335200747, + "t": null, + "punct": null, + "u_acc": 0.7108, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "mr": { + "opus100": { + "u": 0.928849846390169, + "t": null, + "punct": null, + "u_acc": 0.7520161290322581, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + }, + "ud": { + "u": 0.9138888888888889, + "t": null, + "punct": null, + "u_acc": 0.75, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + }, + "ted2020-corrupted-asr": { + "u": 0.5455026894502127, + "t": null, + "punct": null, + "u_acc": 0.09, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.6811522732822732, + "t": null, + "punct": null, + "u_acc": 0.2176, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "ms": { + "opus100": { + "u": 0.911692468482592, + "t": null, + "punct": null, + "u_acc": 0.6604938271604939, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + }, + "ted2020-corrupted-asr": { + "u": 0.6268409842712697, + "t": null, + "punct": null, + "u_acc": 0.14642857142857144, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-social-media": { + "u": 0.7324338089159518, + "t": null, + "punct": null, + "u_acc": 0.2761904761904762, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + } + }, + "mt": { + "opus100": { + "u": 0.7685445123906036, + "t": null, + "punct": null, + "u_acc": 0.41295546558704455, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9204151404151405, + "t": null, + "punct": null, + "u_acc": 0.7615384615384615, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.49276556776556774, + "t": null, + "punct": null, + "u_acc": 0.038461538461538464, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + }, + "ted2020-corrupted-social-media": { + "u": 0.6978021978021978, + "t": null, + "punct": null, + "u_acc": 0.19230769230769232, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + } + }, + "my": { + "opus100": { + "u": 0.7817156298003073, + "t": null, + "punct": null, + "u_acc": 0.4173387096774194, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + }, + "ted2020-corrupted-asr": { + "u": 0.9138184704184705, + "t": null, + "punct": null, + "u_acc": 0.686, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.8934908513708513, + "t": null, + "punct": null, + "u_acc": 0.6344, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "ne": { + "opus100": { + "u": 0.79822541799286, + "t": null, + "punct": null, + "u_acc": 0.386892177589852, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.667786608913132, + "t": null, + "punct": null, + "u_acc": 0.19884169884169883, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-social-media": { + "u": 0.6762033027858884, + "t": null, + "punct": null, + "u_acc": 0.21042471042471042, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + } + }, + "nl": { + "opus100": { + "u": 0.9240603174603175, + "t": null, + "punct": null, + "u_acc": 0.686, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9491211249600511, + "t": null, + "punct": null, + "u_acc": 0.8590604026845637, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999994 + }, + "ted2020-corrupted-asr": { + "u": 0.7150776899571017, + "t": null, + "punct": null, + "u_acc": 0.236, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.747432265956266, + "t": null, + "punct": null, + "u_acc": 0.2848, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "no": { + "opus100": { + "u": 0.950624039938556, + "t": null, + "punct": null, + "u_acc": 0.7943548387096774, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + }, + "ud": { + "u": 0.984366391184573, + "t": null, + "punct": null, + "u_acc": 0.9400826446280992, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + } + }, + "pa": { + "opus100": { + "u": 0.7813709741988429, + "t": null, + "punct": null, + "u_acc": 0.32581967213114754, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + }, + "ted2020-corrupted-asr": { + "u": 0.6438000828958275, + "t": null, + "punct": null, + "u_acc": 0.1595744680851064, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.02499999999999999 + }, + "ted2020-corrupted-social-media": { + "u": 0.7459768659236746, + "t": null, + "punct": null, + "u_acc": 0.32978723404255317, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.02499999999999999 + } + }, + "pl": { + "ersatz": { + "u": 0.9465376588882566, + "t": null, + "punct": null, + "u_acc": 0.8167330677290837, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "opus100": { + "u": 0.9360407066052228, + "t": null, + "punct": null, + "u_acc": 0.75, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + }, + "ud": { + "u": 0.960515156724543, + "t": null, + "punct": null, + "u_acc": 0.8483754512635379, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999994 + }, + "ted2020-corrupted-asr": { + "u": 0.6653864335664336, + "t": null, + "punct": null, + "u_acc": 0.1636, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7381780064380065, + "t": null, + "punct": null, + "u_acc": 0.268, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "ps": { + "ersatz": { + "u": 0.9328073360331425, + "t": null, + "punct": null, + "u_acc": 0.7741935483870968, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999994 + }, + "opus100": { + "u": 0.7898928836568034, + "t": null, + "punct": null, + "u_acc": 0.35634743875278396, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + }, + "ted2020-corrupted-asr": { + "u": 0.6618457779041721, + "t": null, + "punct": null, + "u_acc": 0.1386861313868613, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.6637849914111418, + "t": null, + "punct": null, + "u_acc": 0.1678832116788321, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "pt": { + "opus100": { + "u": 0.9415493862862284, + "t": null, + "punct": null, + "u_acc": 0.7631578947368421, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9694063926940639, + "t": null, + "punct": null, + "u_acc": 0.886986301369863, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6628420914435071, + "t": null, + "punct": null, + "u_acc": 0.1576, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7419597757797758, + "t": null, + "punct": null, + "u_acc": 0.2848, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "ro": { + "ersatz": { + "u": 0.9778666666666666, + "t": null, + "punct": null, + "u_acc": 0.916, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "opus100": { + "u": 0.936350809684143, + "t": null, + "punct": null, + "u_acc": 0.7777777777777778, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.7865200556544774, + "t": null, + "punct": null, + "u_acc": 0.38783269961977185, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6426006072864517, + "t": null, + "punct": null, + "u_acc": 0.1396, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.740023830891331, + "t": null, + "punct": null, + "u_acc": 0.2816, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "ru": { + "ersatz": { + "u": 0.9787634408602152, + "t": null, + "punct": null, + "u_acc": 0.9153225806451613, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + }, + "opus100": { + "u": 0.8712697821304379, + "t": null, + "punct": null, + "u_acc": 0.555327868852459, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + }, + "ud": { + "u": 0.8840009233191051, + "t": null, + "punct": null, + "u_acc": 0.6454545454545455, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.6455473009691833, + "t": null, + "punct": null, + "u_acc": 0.1368, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7325907634893841, + "t": null, + "punct": null, + "u_acc": 0.2684, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "si": { + "opus100": { + "u": 0.844994879672299, + "t": null, + "punct": null, + "u_acc": 0.4737903225806452, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + }, + "ted2020-corrupted-asr": { + "u": 0.5915757799478729, + "t": null, + "punct": null, + "u_acc": 0.13178294573643412, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.631614036265199, + "t": null, + "punct": null, + "u_acc": 0.1937984496124031, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "sk": { + "opus100": { + "u": 0.9329534380522935, + "t": null, + "punct": null, + "u_acc": 0.7540322580645161, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + }, + "ud": { + "u": 0.9698292902066487, + "t": null, + "punct": null, + "u_acc": 0.9132075471698113, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.6636303501471794, + "t": null, + "punct": null, + "u_acc": 0.1664, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.738710593441646, + "t": null, + "punct": null, + "u_acc": 0.2848, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "sl": { + "opus100": { + "u": 0.9258999367433103, + "t": null, + "punct": null, + "u_acc": 0.6987951807228916, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9671329365079366, + "t": null, + "punct": null, + "u_acc": 0.875, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6604602775002775, + "t": null, + "punct": null, + "u_acc": 0.168, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7452566810966811, + "t": null, + "punct": null, + "u_acc": 0.3004, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "sq": { + "opus100": { + "u": 0.9221128239420922, + "t": null, + "punct": null, + "u_acc": 0.7154471544715447, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ud": { + "u": 1.0, + "t": null, + "punct": null, + "u_acc": 1.0, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.02500000000000001 + }, + "ted2020-corrupted-asr": { + "u": 0.6220624653334431, + "t": null, + "punct": null, + "u_acc": 0.1312, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7275737904317905, + "t": null, + "punct": null, + "u_acc": 0.2656, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "sr": { + "opus100": { + "u": 0.9401415184547716, + "t": null, + "punct": null, + "u_acc": 0.7469879518072289, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9815384615384615, + "t": null, + "punct": null, + "u_acc": 0.9230769230769231, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6222320001305883, + "t": null, + "punct": null, + "u_acc": 0.1332, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7391379686979688, + "t": null, + "punct": null, + "u_acc": 0.292, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "sv": { + "opus100": { + "u": 0.9335981733572095, + "t": null, + "punct": null, + "u_acc": 0.7269076305220884, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9498523440383906, + "t": null, + "punct": null, + "u_acc": 0.8178294573643411, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.6717040905499729, + "t": null, + "punct": null, + "u_acc": 0.1896, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7299555821955822, + "t": null, + "punct": null, + "u_acc": 0.2568, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "ta": { + "ersatz": { + "u": 0.961126920887877, + "t": null, + "punct": null, + "u_acc": 0.8565737051792829, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "opus100": { + "u": 0.7586286152396551, + "t": null, + "punct": null, + "u_acc": 0.32723577235772355, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.98, + "t": null, + "punct": null, + "u_acc": 0.9, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.02500000000000001 + }, + "ted2020-corrupted-asr": { + "u": 0.5406722761084798, + "t": null, + "punct": null, + "u_acc": 0.0704626334519573, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999994 + }, + "ted2020-corrupted-social-media": { + "u": 0.6827245273508619, + "t": null, + "punct": null, + "u_acc": 0.22277580071174377, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999994 + } + }, + "te": { + "opus100": { + "u": 0.8273002543464412, + "t": null, + "punct": null, + "u_acc": 0.47959183673469385, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.6220209381085513, + "t": null, + "punct": null, + "u_acc": 0.14350453172205438, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999994 + }, + "ted2020-corrupted-social-media": { + "u": 0.687992420469762, + "t": null, + "punct": null, + "u_acc": 0.22658610271903323, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999994 + } + }, + "tg": { + "opus100": { + "u": 0.8508453505441457, + "t": null, + "punct": null, + "u_acc": 0.4759036144578313, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.7152255639097744, + "t": null, + "punct": null, + "u_acc": 0.23684210526315788, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999994 + }, + "ted2020-corrupted-social-media": { + "u": 0.760233918128655, + "t": null, + "punct": null, + "u_acc": 0.3684210526315789, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999994 + } + }, + "th": { + "opus100": { + "u": 0.7616305916305917, + "t": null, + "punct": null, + "u_acc": 0.2404040404040404, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.7883492063492064, + "t": null, + "punct": null, + "u_acc": 0.276, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.6237335579205796, + "t": null, + "punct": null, + "u_acc": 0.1228, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.6252290279929908, + "t": null, + "punct": null, + "u_acc": 0.1236, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "tr": { + "ersatz": { + "u": 0.953888044579534, + "t": null, + "punct": null, + "u_acc": 0.8231382978723404, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "opus100": { + "u": 0.9379924169397853, + "t": null, + "punct": null, + "u_acc": 0.757085020242915, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9619740259740259, + "t": null, + "punct": null, + "u_acc": 0.850909090909091, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.7343103852711113, + "t": null, + "punct": null, + "u_acc": 0.2996, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7466053487253488, + "t": null, + "punct": null, + "u_acc": 0.2924, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "uk": { + "opus100": { + "u": 0.9122006953332253, + "t": null, + "punct": null, + "u_acc": 0.6726907630522089, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9485827664399092, + "t": null, + "punct": null, + "u_acc": 0.8169642857142857, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.6269374522741635, + "t": null, + "punct": null, + "u_acc": 0.124, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.734647517176546, + "t": null, + "punct": null, + "u_acc": 0.2772, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "ur": { + "opus100": { + "u": 0.7146106953310343, + "t": null, + "punct": null, + "u_acc": 0.2584745762711864, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9584577114427861, + "t": null, + "punct": null, + "u_acc": 0.8432835820895522, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999994 + }, + "ted2020-corrupted-asr": { + "u": 0.6726985589728169, + "t": null, + "punct": null, + "u_acc": 0.21120246659815006, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-social-media": { + "u": 0.6924162719036064, + "t": null, + "punct": null, + "u_acc": 0.24665981500513876, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + } + }, + "uz": { + "opus100": { + "u": 0.8256997084548106, + "t": null, + "punct": null, + "u_acc": 0.3489795918367347, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.7244066821598467, + "t": null, + "punct": null, + "u_acc": 0.2732067510548523, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-social-media": { + "u": 0.7518914198294612, + "t": null, + "punct": null, + "u_acc": 0.3037974683544304, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + } + }, + "vi": { + "opus100": { + "u": 0.9331373701744073, + "t": null, + "punct": null, + "u_acc": 0.742798353909465, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025000000000000005 + }, + "ud": { + "u": 0.9058571428571429, + "t": null, + "punct": null, + "u_acc": 0.66, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.6106368651438001, + "t": null, + "punct": null, + "u_acc": 0.1172, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7295761505161504, + "t": null, + "punct": null, + "u_acc": 0.2604, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "xh": { + "opus100": { + "u": 0.8731182602551897, + "t": null, + "punct": null, + "u_acc": 0.5975103734439834, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + } + }, + "yi": { + "opus100": { + "u": 0.7882768572423745, + "t": null, + "punct": null, + "u_acc": 0.3385579937304075, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999994 + } + }, + "yo": { + "opus100": { + "u": 0.8111159744692167, + "t": null, + "punct": null, + "u_acc": 0.42150170648464164, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "ud": { + "u": 0.7867478354978354, + "t": null, + "punct": null, + "u_acc": 0.375, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + }, + "nllb": { + "u": 0.7973184125334589, + "t": null, + "punct": null, + "u_acc": 0.41, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.024999999999999998 + } + }, + "zh": { + "ersatz": { + "u": 0.9010857142857142, + "t": null, + "punct": null, + "u_acc": 0.702, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "opus100": { + "u": 0.7822889719267989, + "t": null, + "punct": null, + "u_acc": 0.40643863179074446, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ud": { + "u": 0.9221333333333335, + "t": null, + "punct": null, + "u_acc": 0.76, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-asr": { + "u": 0.5346091635822449, + "t": null, + "punct": null, + "u_acc": 0.0508390918065153, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + }, + "ted2020-corrupted-social-media": { + "u": 0.5602375995954596, + "t": null, + "punct": null, + "u_acc": 0.07156959526159921, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + } + }, + "zu": { + "opus100": { + "u": 0.884469542802876, + "t": null, + "punct": null, + "u_acc": 0.6047008547008547, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.025 + } + }, + "tr-de": {}, + "es-en": {}, + "vi-en": {}, + "en-de": {} +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/sat-sm-12l-limited-lookahead.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/sat-sm-12l-limited-lookahead.json new file mode 100644 index 0000000000000000000000000000000000000000..7defa1623f2554dcf111042bc6147332d7d963fe --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/sat-sm-12l-limited-lookahead.json @@ -0,0 +1,3346 @@ +{ + "af": { + "opus100": { + "u": 0.9358913813459269, + "t": 0.9361078315623771, + "punct": null, + "u_acc": 0.762396694214876, + "t_acc": 0.78099173553719, + "punct_acc": null, + "threshold_t": 0.5267133712768555, + "threshold_adj": 0.25 + }, + "ud": { + "u": 1.0, + "t": 1.0, + "punct": null, + "u_acc": 1.0, + "t_acc": 1.0, + "punct_acc": null, + "threshold_t": 0.9878134727478027, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8296703296703296, + "t": 0.8082271062271061, + "punct": null, + "u_acc": 0.48, + "t_acc": 0.4246153846153846, + "punct_acc": null, + "threshold_t": 0.06166418269276619, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.894168498168498, + "t": 0.8958095238095239, + "punct": null, + "u_acc": 0.6369230769230769, + "t_acc": 0.6430769230769231, + "punct_acc": null, + "threshold_t": 0.33285531401634216, + "threshold_adj": 0.25 + } + }, + "am": { + "opus100": { + "u": 0.9068559954102122, + "t": 0.9058041690571812, + "punct": null, + "u_acc": 0.678714859437751, + "t_acc": 0.6726907630522089, + "punct_acc": null, + "threshold_t": 0.20142008364200592, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7088479662698413, + "t": 0.7015500992063493, + "punct": null, + "u_acc": 0.2265625, + "t_acc": 0.2265625, + "punct_acc": null, + "threshold_t": 0.05576714500784874, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7159908234126984, + "t": 0.6999131944444444, + "punct": null, + "u_acc": 0.25, + "t_acc": 0.21875, + "punct_acc": null, + "threshold_t": 0.047457821667194366, + "threshold_adj": 0.25 + } + }, + "ar": { + "ersatz": { + "u": 0.9006332320162107, + "t": 0.917160587639311, + "punct": null, + "u_acc": 0.675531914893617, + "t_acc": 0.7101063829787234, + "punct_acc": null, + "threshold_t": 0.06891521066427231, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.8879709313444254, + "t": 0.8761076050232678, + "punct": null, + "u_acc": 0.6405622489959839, + "t_acc": 0.5903614457831325, + "punct_acc": null, + "threshold_t": 0.08384105563163757, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9410737628384686, + "t": 0.9345378151260504, + "punct": null, + "u_acc": 0.7941176470588235, + "t_acc": 0.7823529411764706, + "punct_acc": null, + "threshold_t": 0.45716428756713867, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7413171428571428, + "t": 0.7222593967143968, + "punct": null, + "u_acc": 0.2776, + "t_acc": 0.2648, + "punct_acc": null, + "threshold_t": 0.03294433280825615, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.769233851294904, + "t": 0.769837158011071, + "punct": null, + "u_acc": 0.3416, + "t_acc": 0.3572, + "punct_acc": null, + "threshold_t": 0.09385097026824951, + "threshold_adj": 0.25 + } + }, + "az": { + "opus100": { + "u": 0.9132530120481926, + "t": 0.9131382673551348, + "punct": null, + "u_acc": 0.7008032128514057, + "t_acc": 0.6907630522088354, + "punct_acc": null, + "threshold_t": 0.15619401633739471, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8041450898720401, + "t": 0.8105881936555697, + "punct": null, + "u_acc": 0.4178486997635934, + "t_acc": 0.4391252955082742, + "punct_acc": null, + "threshold_t": 0.01600312441587448, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8558332395211827, + "t": 0.8619329055499269, + "punct": null, + "u_acc": 0.5460992907801419, + "t_acc": 0.5526004728132388, + "punct_acc": null, + "threshold_t": 0.024036891758441925, + "threshold_adj": 0.25 + } + }, + "be": { + "opus100": { + "u": 0.9332072543885171, + "t": 0.9324701774803608, + "punct": null, + "u_acc": 0.7841140529531568, + "t_acc": 0.780040733197556, + "punct_acc": null, + "threshold_t": 0.1734095960855484, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9468578509470703, + "t": 0.9427509293680297, + "punct": null, + "u_acc": 0.8327137546468402, + "t_acc": 0.8215613382899628, + "punct_acc": null, + "threshold_t": 0.49903181195259094, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.828099667294995, + "t": 0.8292620747195698, + "punct": null, + "u_acc": 0.49123945489941595, + "t_acc": 0.49059052563270605, + "punct_acc": null, + "threshold_t": 0.18859070539474487, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8931501910736176, + "t": 0.8932789468805044, + "punct": null, + "u_acc": 0.6489292667099286, + "t_acc": 0.6515249837767684, + "punct_acc": null, + "threshold_t": 0.275354266166687, + "threshold_adj": 0.25 + } + }, + "bg": { + "opus100": { + "u": 0.9702834239908388, + "t": 0.9705506250596431, + "punct": null, + "u_acc": 0.8617234468937875, + "t_acc": 0.8617234468937875, + "punct_acc": null, + "threshold_t": 0.26644113659858704, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9988052568697731, + "t": 0.9988052568697731, + "punct": null, + "u_acc": 0.996415770609319, + "t_acc": 0.996415770609319, + "punct_acc": null, + "threshold_t": 0.3684331178665161, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8301029810712164, + "t": 0.8291017082017083, + "punct": null, + "u_acc": 0.4984, + "t_acc": 0.4936, + "punct_acc": null, + "threshold_t": 0.21827085316181183, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8960122366522366, + "t": 0.8985462298812299, + "punct": null, + "u_acc": 0.6576, + "t_acc": 0.6708, + "punct_acc": null, + "threshold_t": 0.4103734493255615, + "threshold_adj": 0.25 + } + }, + "bn": { + "opus100": { + "u": 0.9442655935613682, + "t": 0.9399827536648462, + "punct": null, + "u_acc": 0.7847082494969819, + "t_acc": 0.7585513078470825, + "punct_acc": null, + "threshold_t": 0.19109474122524261, + "threshold_adj": 0.25 + }, + "ud": { + "u": 1.0, + "t": null, + "punct": null, + "u_acc": 1.0, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6364951330720562, + "t": 0.6038609125916818, + "punct": null, + "u_acc": 0.12384615384615384, + "t_acc": 0.09692307692307692, + "punct_acc": null, + "threshold_t": 0.14795920252799988, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7423357753357753, + "t": 0.7190091416878747, + "punct": null, + "u_acc": 0.28846153846153844, + "t_acc": 0.2553846153846154, + "punct_acc": null, + "threshold_t": 0.03250708058476448, + "threshold_adj": 0.25 + } + }, + "ca": { + "opus100": { + "u": 0.9631572169097525, + "t": 0.9559711868028298, + "punct": null, + "u_acc": 0.8519269776876268, + "t_acc": 0.8235294117647058, + "punct_acc": null, + "threshold_t": 0.08215601742267609, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9978354978354979, + "t": 0.9841269841269842, + "punct": null, + "u_acc": 0.9891774891774892, + "t_acc": 0.9523809523809523, + "punct_acc": null, + "threshold_t": 0.9989295601844788, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8205933333333334, + "t": 0.8000615584415585, + "punct": null, + "u_acc": 0.4788, + "t_acc": 0.404, + "punct_acc": null, + "threshold_t": 0.030712280422449112, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8955073015873015, + "t": 0.8940368831168831, + "punct": null, + "u_acc": 0.6688, + "t_acc": 0.6596, + "punct_acc": null, + "threshold_t": 0.19296707212924957, + "threshold_adj": 0.25 + } + }, + "ceb": { + "ud": { + "u": 0.9716312056737589, + "t": null, + "punct": null, + "u_acc": 0.9148936170212766, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6595238095238096, + "t": 0.6595238095238096, + "punct": null, + "u_acc": 0.07142857142857142, + "t_acc": 0.07142857142857142, + "punct_acc": null, + "threshold_t": 0.19813048839569092, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7642857142857143, + "t": 0.7880952380952381, + "punct": null, + "u_acc": 0.35714285714285715, + "t_acc": 0.42857142857142855, + "punct_acc": null, + "threshold_t": 0.17615289986133575, + "threshold_adj": 0.25 + }, + "nllb": { + "u": 0.9430304761904761, + "t": 0.9437771428571429, + "punct": null, + "u_acc": 0.8116, + "t_acc": 0.8184, + "punct_acc": null, + "threshold_t": 0.321523517370224, + "threshold_adj": 0.25 + } + }, + "cs": { + "ersatz": { + "u": 0.9902006172839506, + "t": 0.9929783950617285, + "punct": null, + "u_acc": 0.9606481481481481, + "t_acc": 0.9745370370370371, + "punct_acc": null, + "threshold_t": 0.9860545992851257, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.953203639179249, + "t": 0.9553619821912505, + "punct": null, + "u_acc": 0.8048780487804879, + "t_acc": 0.8170731707317073, + "punct_acc": null, + "threshold_t": 0.3447602689266205, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9817998597967053, + "t": 0.9786409043112514, + "punct": null, + "u_acc": 0.9388801261829653, + "t_acc": 0.9199526813880127, + "punct_acc": null, + "threshold_t": 0.09427179396152496, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8330733309940981, + "t": 0.8255898515976776, + "punct": null, + "u_acc": 0.4952, + "t_acc": 0.4716, + "punct_acc": null, + "threshold_t": 0.13281674683094025, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8916379346257607, + "t": 0.8899776171654432, + "punct": null, + "u_acc": 0.6408, + "t_acc": 0.6332, + "punct_acc": null, + "threshold_t": 0.2116090953350067, + "threshold_adj": 0.25 + } + }, + "cy": { + "opus100": { + "u": 0.9064497123449088, + "t": 0.9057946905108476, + "punct": null, + "u_acc": 0.6746724890829694, + "t_acc": 0.6681222707423581, + "punct_acc": null, + "threshold_t": 0.1902681589126587, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9991596638655462, + "t": 0.9985994397759105, + "punct": null, + "u_acc": 0.9957983193277311, + "t_acc": 0.9957983193277311, + "punct_acc": null, + "threshold_t": 0.6543346643447876, + "threshold_adj": 0.25 + } + }, + "da": { + "opus100": { + "u": 0.9676171274961597, + "t": 0.9666090629800307, + "punct": null, + "u_acc": 0.8669354838709677, + "t_acc": 0.8629032258064516, + "punct_acc": null, + "threshold_t": 0.20439939200878143, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9895981087470449, + "t": 0.9914893617021278, + "punct": null, + "u_acc": 0.9574468085106383, + "t_acc": 0.9716312056737588, + "punct_acc": null, + "threshold_t": 0.610223650932312, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8262991053391053, + "t": 0.8276295304695305, + "punct": null, + "u_acc": 0.4936, + "t_acc": 0.4844, + "punct_acc": null, + "threshold_t": 0.01671995222568512, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8999409523809525, + "t": 0.9001098412698413, + "punct": null, + "u_acc": 0.6804, + "t_acc": 0.6732, + "punct_acc": null, + "threshold_t": 0.08376247435808182, + "threshold_adj": 0.25 + } + }, + "de": { + "ersatz": { + "u": 0.9918533604887984, + "t": 0.9926680244399186, + "punct": null, + "u_acc": 0.9674134419551935, + "t_acc": 0.9714867617107943, + "punct_acc": null, + "threshold_t": 0.35526859760284424, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9325899136025719, + "t": 0.9185252159935705, + "punct": null, + "u_acc": 0.7426160337552743, + "t_acc": 0.6877637130801688, + "punct_acc": null, + "threshold_t": 0.03034534491598606, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9831967213114753, + "t": 0.980464480874317, + "punct": null, + "u_acc": 0.9467213114754098, + "t_acc": 0.9385245901639344, + "punct_acc": null, + "threshold_t": 0.597312867641449, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8490209523809524, + "t": 0.854089264069264, + "punct": null, + "u_acc": 0.5428, + "t_acc": 0.5456, + "punct_acc": null, + "threshold_t": 0.12303541600704193, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.9055657142857144, + "t": 0.9025673593073592, + "punct": null, + "u_acc": 0.6968, + "t_acc": 0.6764, + "punct_acc": null, + "threshold_t": 0.133021280169487, + "threshold_adj": 0.25 + } + }, + "el": { + "opus100": { + "u": 0.9686077643908969, + "t": 0.9683400267737617, + "punct": null, + "u_acc": 0.8654618473895582, + "t_acc": 0.8654618473895582, + "punct_acc": null, + "threshold_t": 0.21605639159679413, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.983625730994152, + "t": 0.9923976608187134, + "punct": null, + "u_acc": 0.9473684210526315, + "t_acc": 0.9736842105263158, + "punct_acc": null, + "threshold_t": 0.1934049427509308, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8296939090149615, + "t": 0.8134828428543135, + "punct": null, + "u_acc": 0.5148, + "t_acc": 0.4536, + "punct_acc": null, + "threshold_t": 0.013980056159198284, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.895189561684653, + "t": 0.8938963252959986, + "punct": null, + "u_acc": 0.6644, + "t_acc": 0.6556, + "punct_acc": null, + "threshold_t": 0.15795426070690155, + "threshold_adj": 0.25 + } + }, + "en": { + "ersatz": { + "u": 0.9902734510211145, + "t": 0.9925579785392868, + "punct": null, + "u_acc": 0.9595015576323987, + "t_acc": 0.9709241952232607, + "punct_acc": null, + "threshold_t": 0.5182924866676331, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.967741935483871, + "t": 0.956125192012289, + "punct": null, + "u_acc": 0.8649193548387096, + "t_acc": 0.8064516129032258, + "punct_acc": null, + "threshold_t": 0.012149212881922722, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9753041362530415, + "t": 0.9794403892944039, + "punct": null, + "u_acc": 0.9197080291970803, + "t_acc": 0.9306569343065694, + "punct_acc": null, + "threshold_t": 0.10314138978719711, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8218933333333335, + "t": 0.812737102897103, + "punct": null, + "u_acc": 0.4844, + "t_acc": 0.4508, + "punct_acc": null, + "threshold_t": 0.06911183893680573, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8970457142857143, + "t": 0.8954597402597403, + "punct": null, + "u_acc": 0.6644, + "t_acc": 0.6548, + "punct_acc": null, + "threshold_t": 0.18705546855926514, + "threshold_adj": 0.25 + } + }, + "eo": { + "opus100": { + "u": 0.9711021505376345, + "t": 0.9704397081413211, + "punct": null, + "u_acc": 0.8830645161290323, + "t_acc": 0.875, + "punct_acc": null, + "threshold_t": 0.15519686043262482, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7684185662569121, + "t": 0.7372478885636781, + "punct": null, + "u_acc": 0.35150375939849626, + "t_acc": 0.287593984962406, + "punct_acc": null, + "threshold_t": 0.005447076167911291, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8257479014997812, + "t": 0.8259575254876007, + "punct": null, + "u_acc": 0.4818295739348371, + "t_acc": 0.4667919799498747, + "punct_acc": null, + "threshold_t": 0.028809091076254845, + "threshold_adj": 0.25 + } + }, + "es": { + "ersatz": { + "u": 0.9964316797214969, + "t": null, + "punct": null, + "u_acc": 0.9856396866840731, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9686556133924555, + "t": 0.9580618212197162, + "punct": null, + "u_acc": 0.8724696356275303, + "t_acc": 0.8340080971659919, + "punct_acc": null, + "threshold_t": 0.045676928013563156, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9945736434108526, + "t": 0.9903875968992248, + "punct": null, + "u_acc": 0.9744186046511628, + "t_acc": 0.9674418604651163, + "punct_acc": null, + "threshold_t": 0.9583603739738464, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8154441188427396, + "t": 0.8183369885669884, + "punct": null, + "u_acc": 0.464, + "t_acc": 0.4664, + "punct_acc": null, + "threshold_t": 0.180559441447258, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.885909839121452, + "t": 0.8834520893485598, + "punct": null, + "u_acc": 0.6468, + "t_acc": 0.648, + "punct_acc": null, + "threshold_t": 0.42110100388526917, + "threshold_adj": 0.25 + } + }, + "et": { + "ersatz": { + "u": 0.99510582010582, + "t": 0.995899470899471, + "punct": null, + "u_acc": 0.9781746031746031, + "t_acc": 0.9821428571428571, + "punct_acc": null, + "threshold_t": 0.43015146255493164, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9598451256345993, + "t": 0.9605455947561211, + "punct": null, + "u_acc": 0.8380566801619433, + "t_acc": 0.840080971659919, + "punct_acc": null, + "threshold_t": 0.42653438448905945, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9868573797678276, + "t": 0.9878524046434495, + "punct": null, + "u_acc": 0.9564676616915423, + "t_acc": 0.9614427860696517, + "punct_acc": null, + "threshold_t": 0.2837121784687042, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8476597402597403, + "t": 0.8349727450327451, + "punct": null, + "u_acc": 0.5368, + "t_acc": 0.488, + "punct_acc": null, + "threshold_t": 0.05510525032877922, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.9019977777777778, + "t": 0.9037761904761905, + "punct": null, + "u_acc": 0.6768, + "t_acc": 0.6892, + "punct_acc": null, + "threshold_t": 0.39433321356773376, + "threshold_adj": 0.25 + } + }, + "eu": { + "opus100": { + "u": 0.9618854829381145, + "t": 0.9617505301715829, + "punct": null, + "u_acc": 0.8461538461538461, + "t_acc": 0.8481781376518218, + "punct_acc": null, + "threshold_t": 0.38719433546066284, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9958518518518519, + "t": 0.9954074074074073, + "punct": null, + "u_acc": 0.9822222222222222, + "t_acc": 0.9844444444444445, + "punct_acc": null, + "threshold_t": 0.9844362735748291, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7819631123058542, + "t": 0.7769931121745637, + "punct": null, + "u_acc": 0.39381720430107525, + "t_acc": 0.3629032258064516, + "punct_acc": null, + "threshold_t": 0.033414389938116074, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8676763312852022, + "t": 0.8647326762246117, + "punct": null, + "u_acc": 0.5987903225806451, + "t_acc": 0.581989247311828, + "punct_acc": null, + "threshold_t": 0.10609612613916397, + "threshold_adj": 0.25 + } + }, + "fa": { + "opus100": { + "u": 0.863482520596749, + "t": 0.8439694685185667, + "punct": null, + "u_acc": 0.5971943887775552, + "t_acc": 0.5290581162324649, + "punct_acc": null, + "threshold_t": 0.03637668862938881, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9952380952380951, + "t": 0.9967032967032966, + "punct": null, + "u_acc": 0.978021978021978, + "t_acc": 0.9835164835164835, + "punct_acc": null, + "threshold_t": 0.6403377056121826, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.797861483481058, + "t": 0.7979373193473193, + "punct": null, + "u_acc": 0.4224, + "t_acc": 0.4228, + "punct_acc": null, + "threshold_t": 0.24335354566574097, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8275830130625874, + "t": 0.8272251663891664, + "punct": null, + "u_acc": 0.4896, + "t_acc": 0.4888, + "punct_acc": null, + "threshold_t": 0.23424072563648224, + "threshold_adj": 0.25 + } + }, + "fi": { + "ersatz": { + "u": 0.9963927855711423, + "t": 0.9983967935871744, + "punct": null, + "u_acc": 0.9819639278557114, + "t_acc": 0.9919839679358717, + "punct_acc": null, + "threshold_t": 0.4159590005874634, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9759892689470154, + "t": 0.9692152917505031, + "punct": null, + "u_acc": 0.8853118712273642, + "t_acc": 0.8611670020120724, + "punct_acc": null, + "threshold_t": 0.043404825031757355, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9912371134020619, + "t": 0.9927835051546393, + "punct": null, + "u_acc": 0.9664948453608248, + "t_acc": 0.9742268041237113, + "punct_acc": null, + "threshold_t": 0.30064690113067627, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8359507936507936, + "t": 0.831853553113553, + "punct": null, + "u_acc": 0.5268, + "t_acc": 0.4924, + "punct_acc": null, + "threshold_t": 0.07716461271047592, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.898975238095238, + "t": 0.8993488888888889, + "punct": null, + "u_acc": 0.6792, + "t_acc": 0.6772, + "punct_acc": null, + "threshold_t": 0.19953423738479614, + "threshold_adj": 0.25 + } + }, + "fr": { + "ersatz": { + "u": 0.9959742351046699, + "t": 0.9948470209339775, + "punct": null, + "u_acc": 0.9830917874396136, + "t_acc": 0.9806763285024155, + "punct_acc": null, + "threshold_t": 0.6386837363243103, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9538974210373805, + "t": null, + "punct": null, + "u_acc": 0.8113590263691683, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9980769230769231, + "t": 0.9980769230769231, + "punct": null, + "u_acc": 0.9903846153846154, + "t_acc": 0.9903846153846154, + "punct_acc": null, + "threshold_t": 0.4889029264450073, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8098361904761905, + "t": 0.8192619913419912, + "punct": null, + "u_acc": 0.458, + "t_acc": 0.4576, + "punct_acc": null, + "threshold_t": 0.02904966101050377, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8874320634920634, + "t": 0.8797911688311689, + "punct": null, + "u_acc": 0.66, + "t_acc": 0.6136, + "punct_acc": null, + "threshold_t": 0.05259474739432335, + "threshold_adj": 0.25 + } + }, + "fy": { + "opus100": { + "u": 0.9376967095851216, + "t": 0.94241773962804, + "punct": null, + "u_acc": 0.8004291845493562, + "t_acc": 0.8090128755364807, + "punct_acc": null, + "threshold_t": 0.16877134144306183, + "threshold_adj": 0.25 + } + }, + "ga": { + "opus100": { + "u": 0.9409610215053764, + "t": 0.9460349462365591, + "punct": null, + "u_acc": 0.8044354838709677, + "t_acc": 0.8044354838709677, + "punct_acc": null, + "threshold_t": 0.07466644793748856, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9707602339181287, + "t": 0.9792397660818714, + "punct": null, + "u_acc": 0.9035087719298246, + "t_acc": 0.9210526315789473, + "punct_acc": null, + "threshold_t": 0.8677814602851868, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6793650793650793, + "t": 0.5842592592592593, + "punct": null, + "u_acc": 0.25, + "t_acc": 0.08333333333333333, + "punct_acc": null, + "threshold_t": 0.013184512965381145, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7365079365079364, + "t": 0.7611111111111111, + "punct": null, + "u_acc": 0.25, + "t_acc": 0.3333333333333333, + "punct_acc": null, + "threshold_t": 0.7664591073989868, + "threshold_adj": 0.25 + } + }, + "gd": { + "opus100": { + "u": 0.9326455026455026, + "t": 0.9251146384479718, + "punct": null, + "u_acc": 0.7666666666666667, + "t_acc": 0.7296296296296296, + "punct_acc": null, + "threshold_t": 0.1103217676281929, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.8970588235294118, + "t": 0.8958333333333334, + "punct": null, + "u_acc": 0.6838235294117647, + "t_acc": 0.6838235294117647, + "punct_acc": null, + "threshold_t": 0.213588148355484, + "threshold_adj": 0.25 + } + }, + "gl": { + "opus100": { + "u": 0.9617607526881721, + "t": 0.9606854838709677, + "punct": null, + "u_acc": 0.842741935483871, + "t_acc": 0.8387096774193549, + "punct_acc": null, + "threshold_t": 0.22174373269081116, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9913333333333333, + "t": 0.9913333333333333, + "punct": null, + "u_acc": 0.97, + "t_acc": 0.97, + "punct_acc": null, + "threshold_t": 0.27429941296577454, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8201342857142856, + "t": 0.819962857142857, + "punct": null, + "u_acc": 0.4792, + "t_acc": 0.4784, + "punct_acc": null, + "threshold_t": 0.24691839516162872, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8877987301587302, + "t": 0.8852650793650795, + "punct": null, + "u_acc": 0.6436, + "t_acc": 0.6252, + "punct_acc": null, + "threshold_t": 0.11226487159729004, + "threshold_adj": 0.25 + } + }, + "gu": { + "ersatz": { + "u": 0.9074990626171728, + "t": 0.9120922384701913, + "punct": null, + "u_acc": 0.7204724409448819, + "t_acc": 0.7283464566929134, + "punct_acc": null, + "threshold_t": 0.14198142290115356, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9200828157349896, + "t": 0.9226363008971704, + "punct": null, + "u_acc": 0.7412008281573499, + "t_acc": 0.7453416149068323, + "punct_acc": null, + "threshold_t": 0.2195306271314621, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6189243507494266, + "t": 0.6155107896260577, + "punct": null, + "u_acc": 0.12740141557128412, + "t_acc": 0.12487360970677452, + "punct_acc": null, + "threshold_t": 0.22590655088424683, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7109413211104395, + "t": 0.6816775088868838, + "punct": null, + "u_acc": 0.24014155712841254, + "t_acc": 0.21486349848331648, + "punct_acc": null, + "threshold_t": 0.03116069920361042, + "threshold_adj": 0.25 + } + }, + "ha": { + "opus100": { + "u": 0.9468666666666666, + "t": 0.9412, + "punct": null, + "u_acc": 0.788, + "t_acc": 0.794, + "punct_acc": null, + "threshold_t": 0.3944629728794098, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.611111111111111, + "t": 0.5555555555555555, + "punct": null, + "u_acc": 0.0, + "t_acc": 0.0, + "punct_acc": null, + "threshold_t": 0.05354507640004158, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.6888888888888888, + "t": 0.7777777777777777, + "punct": null, + "u_acc": 0.3333333333333333, + "t_acc": 0.3333333333333333, + "punct_acc": null, + "threshold_t": 0.9390864968299866, + "threshold_adj": 0.25 + } + }, + "he": { + "opus100": { + "u": 0.9423036549289054, + "t": 0.9391371487563873, + "punct": null, + "u_acc": 0.7775551102204409, + "t_acc": 0.7655310621242485, + "punct_acc": null, + "threshold_t": 0.15110965073108673, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9857142857142857, + "t": 0.9857142857142857, + "punct": null, + "u_acc": 0.9489795918367347, + "t_acc": 0.9489795918367347, + "punct_acc": null, + "threshold_t": 0.3192470669746399, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7823099456099457, + "t": 0.7816109785639198, + "punct": null, + "u_acc": 0.4044, + "t_acc": 0.4056, + "punct_acc": null, + "threshold_t": 0.18607929348945618, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8182166378066379, + "t": 0.8082583986383987, + "punct": null, + "u_acc": 0.4872, + "t_acc": 0.4548, + "punct_acc": null, + "threshold_t": 0.06886094808578491, + "threshold_adj": 0.25 + } + }, + "hi": { + "ersatz": { + "u": 0.9862962962962961, + "t": 0.9729100529100528, + "punct": null, + "u_acc": 0.9412698412698413, + "t_acc": 0.9142857142857143, + "punct_acc": null, + "threshold_t": 0.9687901735305786, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.8751079330026698, + "t": 0.8897210976158344, + "punct": null, + "u_acc": 0.5910931174089069, + "t_acc": 0.6376518218623481, + "punct_acc": null, + "threshold_t": 0.45361077785491943, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.998258115597783, + "t": 0.9979414093428345, + "punct": null, + "u_acc": 0.9928741092636579, + "t_acc": 0.9928741092636579, + "punct_acc": null, + "threshold_t": 0.6244473457336426, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7322349657749657, + "t": 0.7221934871664284, + "punct": null, + "u_acc": 0.2972, + "t_acc": 0.2796, + "punct_acc": null, + "threshold_t": 0.11981464922428131, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8108554221754222, + "t": 0.8097436761436761, + "punct": null, + "u_acc": 0.4444, + "t_acc": 0.436, + "punct_acc": null, + "threshold_t": 0.195551797747612, + "threshold_adj": 0.25 + } + }, + "hu": { + "opus100": { + "u": 0.969489247311828, + "t": 0.9667338709677419, + "punct": null, + "u_acc": 0.8528225806451613, + "t_acc": 0.8407258064516129, + "punct_acc": null, + "threshold_t": 0.07834309339523315, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9934523809523811, + "t": 0.9940476190476192, + "punct": null, + "u_acc": 0.9732142857142857, + "t_acc": 0.9821428571428571, + "punct_acc": null, + "threshold_t": 0.9795545339584351, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8186746031746032, + "t": 0.8054523742923743, + "punct": null, + "u_acc": 0.4816, + "t_acc": 0.4176, + "punct_acc": null, + "threshold_t": 0.0024567858781665564, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8961133333333333, + "t": 0.8963676190476192, + "punct": null, + "u_acc": 0.68, + "t_acc": 0.6816, + "punct_acc": null, + "threshold_t": 0.35802045464515686, + "threshold_adj": 0.25 + } + }, + "hy": { + "opus100": { + "u": 0.9415202299598655, + "t": null, + "punct": null, + "u_acc": 0.780751708428246, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9954954954954955, + "t": 0.9932432432432432, + "punct": null, + "u_acc": 0.9864864864864865, + "t_acc": 0.9797297297297297, + "punct_acc": null, + "threshold_t": 0.7635315656661987, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8168815238095238, + "t": 0.8119983449883451, + "punct": null, + "u_acc": 0.4616, + "t_acc": 0.4456, + "punct_acc": null, + "threshold_t": 0.015083407051861286, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8658086868686868, + "t": 0.865946232247285, + "punct": null, + "u_acc": 0.5708, + "t_acc": 0.578, + "punct_acc": null, + "threshold_t": 0.5937344431877136, + "threshold_adj": 0.25 + } + }, + "id": { + "opus100": { + "u": 0.9592213114754099, + "t": 0.9611338797814207, + "punct": null, + "u_acc": 0.819672131147541, + "t_acc": 0.8278688524590164, + "punct_acc": null, + "threshold_t": 0.3178315758705139, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9778666666666667, + "t": null, + "punct": null, + "u_acc": 0.932, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7709780952380952, + "t": 0.7628479542679543, + "punct": null, + "u_acc": 0.3516, + "t_acc": 0.3344, + "punct_acc": null, + "threshold_t": 0.013489384204149246, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8422314285714285, + "t": 0.8446371428571426, + "punct": null, + "u_acc": 0.5212, + "t_acc": 0.514, + "punct_acc": null, + "threshold_t": 0.03130241855978966, + "threshold_adj": 0.25 + } + }, + "ig": { + "opus100": { + "u": 0.943377253814147, + "t": 0.9458044382801664, + "punct": null, + "u_acc": 0.7985436893203883, + "t_acc": 0.8033980582524272, + "punct_acc": null, + "threshold_t": 0.22466032207012177, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6141941391941391, + "t": 0.5965506715506715, + "punct": null, + "u_acc": 0.07692307692307693, + "t_acc": 0.11538461538461539, + "punct_acc": null, + "threshold_t": 0.06332143396139145, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7512820512820514, + "t": 0.6554945054945054, + "punct": null, + "u_acc": 0.2692307692307692, + "t_acc": 0.2692307692307692, + "punct_acc": null, + "threshold_t": 0.01692948490381241, + "threshold_adj": 0.25 + } + }, + "is": { + "opus100": { + "u": 0.9738430583501007, + "t": 0.9742454728370221, + "punct": null, + "u_acc": 0.8853118712273642, + "t_acc": 0.8873239436619719, + "punct_acc": null, + "threshold_t": 0.2960386574268341, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9788355683623333, + "t": 0.9796039750267835, + "punct": null, + "u_acc": 0.91311093871218, + "t_acc": 0.9177657098525989, + "punct_acc": null, + "threshold_t": 0.3644753396511078, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8145320893412498, + "t": 0.8067571388182075, + "punct": null, + "u_acc": 0.455470737913486, + "t_acc": 0.42493638676844786, + "punct_acc": null, + "threshold_t": 0.020942457020282745, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8849266933236399, + "t": 0.883605961468557, + "punct": null, + "u_acc": 0.6361323155216285, + "t_acc": 0.6335877862595419, + "punct_acc": null, + "threshold_t": 0.08516617864370346, + "threshold_adj": 0.25 + } + }, + "it": { + "opus100": { + "u": 0.9451196876600103, + "t": 0.9459872340920729, + "punct": null, + "u_acc": 0.7721774193548387, + "t_acc": 0.7762096774193549, + "punct_acc": null, + "threshold_t": 0.36572980880737305, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9972222222222221, + "t": 0.9972222222222221, + "punct": null, + "u_acc": 0.9916666666666667, + "t_acc": 0.9916666666666667, + "punct_acc": null, + "threshold_t": 0.2613252103328705, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.813353137973138, + "t": 0.8020326118326119, + "punct": null, + "u_acc": 0.4496, + "t_acc": 0.4112, + "punct_acc": null, + "threshold_t": 0.09929787367582321, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8823837118437119, + "t": 0.888048253968254, + "punct": null, + "u_acc": 0.6052, + "t_acc": 0.6424, + "punct_acc": null, + "threshold_t": 0.5085493922233582, + "threshold_adj": 0.25 + } + }, + "ja": { + "ersatz": { + "u": 0.940316275764037, + "t": 0.9488805970149254, + "punct": null, + "u_acc": 0.8432835820895522, + "t_acc": 0.8656716417910447, + "punct_acc": null, + "threshold_t": 0.4914585053920746, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9114457831325301, + "t": 0.9050519538471345, + "punct": null, + "u_acc": 0.7269076305220884, + "t_acc": 0.6907630522088354, + "punct_acc": null, + "threshold_t": 0.08693736046552658, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9933823529411764, + "t": 0.9948529411764707, + "punct": null, + "u_acc": 0.9779411764705882, + "t_acc": 0.9852941176470589, + "punct_acc": null, + "threshold_t": 0.8192950487136841, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.896654188034188, + "t": 0.9051599023199022, + "punct": null, + "u_acc": 0.6604, + "t_acc": 0.6924, + "punct_acc": null, + "threshold_t": 0.6293315291404724, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8967719658119658, + "t": 0.9059933333333334, + "punct": null, + "u_acc": 0.6636, + "t_acc": 0.7016, + "punct_acc": null, + "threshold_t": 0.9002335071563721, + "threshold_adj": 0.25 + } + }, + "jv": { + "ud": { + "u": 0.9585333333333333, + "t": null, + "punct": null, + "u_acc": 0.868, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "nllb": { + "u": 0.9383390476190474, + "t": 0.943375238095238, + "punct": null, + "u_acc": 0.7868, + "t_acc": 0.8172, + "punct_acc": null, + "threshold_t": 0.5628132820129395, + "threshold_adj": 0.25 + } + }, + "ka": { + "opus100": { + "u": 0.9492, + "t": 0.952, + "punct": null, + "u_acc": 0.804, + "t_acc": 0.826, + "punct_acc": null, + "threshold_t": 0.45432156324386597, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7677546608946609, + "t": 0.743875024975025, + "punct": null, + "u_acc": 0.3644, + "t_acc": 0.3168, + "punct_acc": null, + "threshold_t": 0.015574936755001545, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7953453968253968, + "t": 0.7721173337773338, + "punct": null, + "u_acc": 0.4156, + "t_acc": 0.3548, + "punct_acc": null, + "threshold_t": 0.015574936755001545, + "threshold_adj": 0.25 + } + }, + "kk": { + "ersatz": { + "u": 1.0, + "t": 0.996, + "punct": null, + "u_acc": 1.0, + "t_acc": 0.988, + "punct_acc": null, + "threshold_t": 0.9699932336807251, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9628886265249902, + "t": 0.9609602518693428, + "punct": null, + "u_acc": 0.8491735537190083, + "t_acc": 0.859504132231405, + "punct_acc": null, + "threshold_t": 0.6338708996772766, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9946564885496184, + "t": 0.8511450381679388, + "punct": null, + "u_acc": 0.9809160305343512, + "t_acc": 0.5534351145038168, + "punct_acc": null, + "threshold_t": 0.9999616146087646, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8094564497028562, + "t": 0.8205453873831696, + "punct": null, + "u_acc": 0.43394934976043803, + "t_acc": 0.45927446954141, + "punct_acc": null, + "threshold_t": 0.007852358743548393, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8717881859565638, + "t": 0.8694555805438763, + "punct": null, + "u_acc": 0.5900068446269678, + "t_acc": 0.5660506502395619, + "punct_acc": null, + "threshold_t": 0.020687777549028397, + "threshold_adj": 0.25 + } + }, + "km": { + "ersatz": { + "u": 0.9146377351462098, + "t": 0.9412994350282488, + "punct": null, + "u_acc": 0.7067796610169491, + "t_acc": 0.8084745762711865, + "punct_acc": null, + "threshold_t": 0.823272705078125, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9224840451644575, + "t": 0.9130584192439862, + "punct": null, + "u_acc": 0.7608247422680412, + "t_acc": 0.7484536082474227, + "punct_acc": null, + "threshold_t": 0.828818678855896, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8175438596491228, + "t": 0.8189760114572144, + "punct": null, + "u_acc": 0.45112781954887216, + "t_acc": 0.47368421052631576, + "punct_acc": null, + "threshold_t": 0.08858813345432281, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.842857142857143, + "t": 0.8402434658073755, + "punct": null, + "u_acc": 0.518796992481203, + "t_acc": 0.5037593984962406, + "punct_acc": null, + "threshold_t": 0.09281837195158005, + "threshold_adj": 0.25 + } + }, + "kn": { + "opus100": { + "u": 0.9228613569321533, + "t": 0.921386430678466, + "punct": null, + "u_acc": 0.7610619469026548, + "t_acc": 0.7566371681415929, + "punct_acc": null, + "threshold_t": 0.26319289207458496, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6613858363858364, + "t": 0.6177322677322677, + "punct": null, + "u_acc": 0.13986013986013987, + "t_acc": 0.08041958041958042, + "punct_acc": null, + "threshold_t": 0.05583753064274788, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.6927794427794428, + "t": 0.6763098013098012, + "punct": null, + "u_acc": 0.1888111888111888, + "t_acc": 0.16783216783216784, + "punct_acc": null, + "threshold_t": 0.10854282230138779, + "threshold_adj": 0.25 + } + }, + "ko": { + "opus100": { + "u": 0.8908457040035987, + "t": 0.8718302165670586, + "punct": null, + "u_acc": 0.6214574898785425, + "t_acc": 0.5323886639676113, + "punct_acc": null, + "threshold_t": 0.011282003484666348, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9994172494172495, + "t": 0.9976689976689977, + "punct": null, + "u_acc": 0.9982517482517482, + "t_acc": 0.993006993006993, + "punct_acc": null, + "threshold_t": 0.9992959499359131, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8335778354978356, + "t": 0.8348299567099566, + "punct": null, + "u_acc": 0.4648, + "t_acc": 0.4748, + "punct_acc": null, + "threshold_t": 0.7320255041122437, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.835387619047619, + "t": 0.8376041269841269, + "punct": null, + "u_acc": 0.4688, + "t_acc": 0.478, + "punct_acc": null, + "threshold_t": 0.5552946925163269, + "threshold_adj": 0.25 + } + }, + "ku": { + "opus100": { + "u": 0.9437283437283436, + "t": 0.941025641025641, + "punct": null, + "u_acc": 0.817047817047817, + "t_acc": 0.817047817047817, + "punct_acc": null, + "threshold_t": 0.39672014117240906, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6614380952380953, + "t": 0.5717316132453718, + "punct": null, + "u_acc": 0.074, + "t_acc": 0.1012, + "punct_acc": null, + "threshold_t": 0.020911945030093193, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.6987790476190476, + "t": 0.6228972516200689, + "punct": null, + "u_acc": 0.168, + "t_acc": 0.1596, + "punct_acc": null, + "threshold_t": 0.025309398770332336, + "threshold_adj": 0.25 + } + }, + "ky": { + "opus100": { + "u": 0.9738095238095238, + "t": 0.9705668934240362, + "punct": null, + "u_acc": 0.8976190476190476, + "t_acc": 0.8857142857142857, + "punct_acc": null, + "threshold_t": 0.14161771535873413, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.757516339869281, + "t": 0.7592451121862888, + "punct": null, + "u_acc": 0.27450980392156865, + "t_acc": 0.3235294117647059, + "punct_acc": null, + "threshold_t": 0.006371109746396542, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.838888888888889, + "t": 0.8213352007469655, + "punct": null, + "u_acc": 0.5, + "t_acc": 0.4117647058823529, + "punct_acc": null, + "threshold_t": 0.015029974281787872, + "threshold_adj": 0.25 + } + }, + "la": { + "ud": { + "u": 0.9837460317460318, + "t": 0.985079365079365, + "punct": null, + "u_acc": 0.9352380952380952, + "t_acc": 0.9485714285714286, + "punct_acc": null, + "threshold_t": 0.7066066265106201, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6666666666666666, + "t": 0.6666666666666666, + "punct": null, + "u_acc": 0.3333333333333333, + "t_acc": 0.3333333333333333, + "punct_acc": null, + "threshold_t": 0.12331382185220718, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8333333333333334, + "t": 0.7222222222222222, + "punct": null, + "u_acc": 0.6666666666666666, + "t_acc": 0.3333333333333333, + "punct_acc": null, + "threshold_t": 0.017666436731815338, + "threshold_adj": 0.25 + } + }, + "lt": { + "ersatz": { + "u": 0.9968, + "t": 0.9952000000000001, + "punct": null, + "u_acc": 0.984, + "t_acc": 0.976, + "punct_acc": null, + "threshold_t": 0.02686471678316593, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9472254224270353, + "t": 0.9459197388632874, + "punct": null, + "u_acc": 0.8185483870967742, + "t_acc": 0.8145161290322581, + "punct_acc": null, + "threshold_t": 0.13773049414157867, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.989083820662768, + "t": 0.989083820662768, + "punct": null, + "u_acc": 0.9649122807017544, + "t_acc": 0.9649122807017544, + "punct_acc": null, + "threshold_t": 0.16340047121047974, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8229225396825397, + "t": 0.8231008080808082, + "punct": null, + "u_acc": 0.4768, + "t_acc": 0.4564, + "punct_acc": null, + "threshold_t": 0.026166867464780807, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8976031746031745, + "t": 0.8859110711510711, + "punct": null, + "u_acc": 0.6664, + "t_acc": 0.61, + "punct_acc": null, + "threshold_t": 0.04080215469002724, + "threshold_adj": 0.25 + } + }, + "lv": { + "ersatz": { + "u": 0.9978174603174603, + "t": 0.9982804232804232, + "punct": null, + "u_acc": 0.9920634920634921, + "t_acc": 0.9940476190476191, + "punct_acc": null, + "threshold_t": 0.930321455001831, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9550877114771639, + "t": 0.9545988156535824, + "punct": null, + "u_acc": 0.8417849898580122, + "t_acc": 0.8417849898580122, + "punct_acc": null, + "threshold_t": 0.2878369987010956, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9965174129353234, + "t": 0.9969596462133775, + "punct": null, + "u_acc": 0.988391376451078, + "t_acc": 0.9917081260364843, + "punct_acc": null, + "threshold_t": 0.6829102635383606, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8454939682539684, + "t": 0.8351733333333333, + "punct": null, + "u_acc": 0.542, + "t_acc": 0.4996, + "punct_acc": null, + "threshold_t": 0.08836416155099869, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.9030337085137086, + "t": 0.8945135531135531, + "punct": null, + "u_acc": 0.6828, + "t_acc": 0.6492, + "punct_acc": null, + "threshold_t": 0.13115759193897247, + "threshold_adj": 0.25 + } + }, + "mg": { + "opus100": { + "u": 0.9716695585116638, + "t": 0.9716695585116638, + "punct": null, + "u_acc": 0.888663967611336, + "t_acc": 0.888663967611336, + "punct_acc": null, + "threshold_t": 0.25100767612457275, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6867385700719032, + "t": 0.6408342686120464, + "punct": null, + "u_acc": 0.14814814814814814, + "t_acc": 0.14814814814814814, + "punct_acc": null, + "threshold_t": 0.009800557978451252, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8371252204585536, + "t": 0.83342151675485, + "punct": null, + "u_acc": 0.5, + "t_acc": 0.48148148148148145, + "punct_acc": null, + "threshold_t": 0.17500999569892883, + "threshold_adj": 0.25 + } + }, + "mk": { + "opus100": { + "u": 0.9636857142857143, + "t": 0.962952380952381, + "punct": null, + "u_acc": 0.842, + "t_acc": 0.834, + "punct_acc": null, + "threshold_t": 0.10753495991230011, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8001609523809524, + "t": 0.8008037695637695, + "punct": null, + "u_acc": 0.4216, + "t_acc": 0.4176, + "punct_acc": null, + "threshold_t": 0.045858338475227356, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8731060317460319, + "t": 0.8661448196248195, + "punct": null, + "u_acc": 0.6032, + "t_acc": 0.5668, + "punct_acc": null, + "threshold_t": 0.06459448486566544, + "threshold_adj": 0.25 + } + }, + "ml": { + "opus100": { + "u": 0.9271179957926946, + "t": 0.9195639701663798, + "punct": null, + "u_acc": 0.7228915662650602, + "t_acc": 0.6907630522088354, + "punct_acc": null, + "threshold_t": 0.1702415496110916, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6571487742122663, + "t": 0.6486557497470197, + "punct": null, + "u_acc": 0.15343915343915343, + "t_acc": 0.14947089947089948, + "punct_acc": null, + "threshold_t": 0.2101818025112152, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7322709330645838, + "t": 0.7145923153859661, + "punct": null, + "u_acc": 0.2857142857142857, + "t_acc": 0.24206349206349206, + "punct_acc": null, + "threshold_t": 0.05646508187055588, + "threshold_adj": 0.25 + } + }, + "mn": { + "opus100": { + "u": 0.865203562340967, + "t": null, + "punct": null, + "u_acc": 0.5906488549618321, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8473314285714285, + "t": 0.8612730158730159, + "punct": null, + "u_acc": 0.546, + "t_acc": 0.5708, + "punct_acc": null, + "threshold_t": 0.03928644210100174, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8877815873015872, + "t": 0.8951276767676767, + "punct": null, + "u_acc": 0.6552, + "t_acc": 0.656, + "punct_acc": null, + "threshold_t": 0.036739982664585114, + "threshold_adj": 0.25 + }, + "nllb": { + "u": 0.9729771428571429, + "t": 0.9716901587301587, + "punct": null, + "u_acc": 0.9004, + "t_acc": 0.8928, + "punct_acc": null, + "threshold_t": 0.1649118959903717, + "threshold_adj": 0.25 + } + }, + "mr": { + "opus100": { + "u": 0.9736655145929339, + "t": 0.9741263440860214, + "punct": null, + "u_acc": 0.9032258064516129, + "t_acc": 0.907258064516129, + "punct_acc": null, + "threshold_t": 0.4480428099632263, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9833333333333334, + "t": 1.0, + "punct": null, + "u_acc": 0.9166666666666666, + "t_acc": 1.0, + "punct_acc": null, + "threshold_t": 0.9346514344215393, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6451412343212344, + "t": 0.6462819669219669, + "punct": null, + "u_acc": 0.1764, + "t_acc": 0.1772, + "punct_acc": null, + "threshold_t": 0.2562134265899658, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7641590365190365, + "t": 0.7544944144744145, + "punct": null, + "u_acc": 0.338, + "t_acc": 0.3148, + "punct_acc": null, + "threshold_t": 0.0996399000287056, + "threshold_adj": 0.25 + } + }, + "ms": { + "opus100": { + "u": 0.9581324710954342, + "t": 0.9584068195179307, + "punct": null, + "u_acc": 0.8395061728395061, + "t_acc": 0.8395061728395061, + "punct_acc": null, + "threshold_t": 0.2698633074760437, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7658498677248677, + "t": 0.7547525853775854, + "punct": null, + "u_acc": 0.3392857142857143, + "t_acc": 0.31845238095238093, + "punct_acc": null, + "threshold_t": 0.015180590562522411, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8315906084656085, + "t": 0.8287844265522838, + "punct": null, + "u_acc": 0.4880952380952381, + "t_acc": 0.47559523809523807, + "punct_acc": null, + "threshold_t": 0.027027007192373276, + "threshold_adj": 0.25 + } + }, + "mt": { + "opus100": { + "u": 0.9148014266435318, + "t": 0.9156111432427222, + "punct": null, + "u_acc": 0.7348178137651822, + "t_acc": 0.7388663967611336, + "punct_acc": null, + "threshold_t": 0.2781420052051544, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9456410256410257, + "t": 0.9433333333333332, + "punct": null, + "u_acc": 0.8538461538461538, + "t_acc": 0.8307692307692308, + "punct_acc": null, + "threshold_t": 0.044065289199352264, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.685897435897436, + "t": 0.5904761904761904, + "punct": null, + "u_acc": 0.11538461538461539, + "t_acc": 0.15384615384615385, + "punct_acc": null, + "threshold_t": 0.0010553739266470075, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8205128205128205, + "t": 0.8014652014652015, + "punct": null, + "u_acc": 0.4230769230769231, + "t_acc": 0.38461538461538464, + "punct_acc": null, + "threshold_t": 0.04599367454648018, + "threshold_adj": 0.25 + } + }, + "my": { + "opus100": { + "u": 0.9473118279569893, + "t": 0.9471102150537634, + "punct": null, + "u_acc": 0.8225806451612904, + "t_acc": 0.8286290322580645, + "punct_acc": null, + "threshold_t": 0.41932639479637146, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.9420285714285713, + "t": 0.9417857142857143, + "punct": null, + "u_acc": 0.8132, + "t_acc": 0.802, + "punct_acc": null, + "threshold_t": 0.028562014922499657, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.9430019047619047, + "t": 0.9429577777777779, + "punct": null, + "u_acc": 0.818, + "t_acc": 0.8028, + "punct_acc": null, + "threshold_t": 0.01053391583263874, + "threshold_adj": 0.25 + } + }, + "ne": { + "opus100": { + "u": 0.9172052753448103, + "t": 0.9180509413067552, + "punct": null, + "u_acc": 0.7315010570824524, + "t_acc": 0.7272727272727273, + "punct_acc": null, + "threshold_t": 0.17043596506118774, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7444689587546731, + "t": 0.72167594089863, + "punct": null, + "u_acc": 0.305019305019305, + "t_acc": 0.2702702702702703, + "punct_acc": null, + "threshold_t": 0.02252039685845375, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7513194548908834, + "t": 0.7322153800094976, + "punct": null, + "u_acc": 0.29922779922779924, + "t_acc": 0.2857142857142857, + "punct_acc": null, + "threshold_t": 0.01884850673377514, + "threshold_adj": 0.25 + } + }, + "nl": { + "opus100": { + "u": 0.962, + "t": null, + "punct": null, + "u_acc": 0.818, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9744966442953019, + "t": 0.9762863534675615, + "punct": null, + "u_acc": 0.8993288590604027, + "t_acc": 0.8993288590604027, + "punct_acc": null, + "threshold_t": 0.05097693204879761, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8675166081871345, + "t": 0.868102574002574, + "punct": null, + "u_acc": 0.5872, + "t_acc": 0.5896, + "punct_acc": null, + "threshold_t": 0.2554411292076111, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.9096547034252297, + "t": 0.9115365422565422, + "punct": null, + "u_acc": 0.6836, + "t_acc": 0.6956, + "punct_acc": null, + "threshold_t": 0.306928426027298, + "threshold_adj": 0.25 + } + }, + "no": { + "opus100": { + "u": 0.9727953498114789, + "t": 0.9733294930875577, + "punct": null, + "u_acc": 0.8850806451612904, + "t_acc": 0.8850806451612904, + "punct_acc": null, + "threshold_t": 0.3140411078929901, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9946969696969697, + "t": 0.9934573002754822, + "punct": null, + "u_acc": 0.9834710743801653, + "t_acc": 0.9772727272727273, + "punct_acc": null, + "threshold_t": 0.16307611763477325, + "threshold_adj": 0.25 + } + }, + "pa": { + "opus100": { + "u": 0.9101190476190477, + "t": 0.9117486338797814, + "punct": null, + "u_acc": 0.7069672131147541, + "t_acc": 0.6926229508196722, + "punct_acc": null, + "threshold_t": 0.12786263227462769, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7392281477387862, + "t": 0.7397812589301951, + "punct": null, + "u_acc": 0.2765957446808511, + "t_acc": 0.2978723404255319, + "punct_acc": null, + "threshold_t": 0.05214986950159073, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7989868287740631, + "t": 0.7651937306192625, + "punct": null, + "u_acc": 0.43617021276595747, + "t_acc": 0.3829787234042553, + "punct_acc": null, + "threshold_t": 0.00515219010412693, + "threshold_adj": 0.25 + } + }, + "pl": { + "ersatz": { + "u": 0.9944223107569722, + "t": 0.9930942895086322, + "punct": null, + "u_acc": 0.9800796812749004, + "t_acc": 0.9760956175298805, + "punct_acc": null, + "threshold_t": 0.3285367488861084, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9694988479262674, + "t": 0.9637960829493087, + "punct": null, + "u_acc": 0.8649193548387096, + "t_acc": 0.8387096774193549, + "punct_acc": null, + "threshold_t": 0.05730303004384041, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9971119133574009, + "t": 0.9139590854392299, + "punct": null, + "u_acc": 0.9855595667870036, + "t_acc": 0.7418772563176895, + "punct_acc": null, + "threshold_t": 0.9999696016311646, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8309618070818071, + "t": 0.8433181529581528, + "punct": null, + "u_acc": 0.5116, + "t_acc": 0.5112, + "punct_acc": null, + "threshold_t": 0.036038294434547424, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.9019327561327561, + "t": 0.8879969408369408, + "punct": null, + "u_acc": 0.6936, + "t_acc": 0.6244, + "punct_acc": null, + "threshold_t": 0.03321656212210655, + "threshold_adj": 0.25 + } + }, + "ps": { + "ersatz": { + "u": 0.9229856165340037, + "t": 0.9237257366289625, + "punct": null, + "u_acc": 0.7346041055718475, + "t_acc": 0.7404692082111437, + "punct_acc": null, + "threshold_t": 0.7467349171638489, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9265033407572383, + "t": 0.9236080178173719, + "punct": null, + "u_acc": 0.7728285077951003, + "t_acc": 0.7661469933184856, + "punct_acc": null, + "threshold_t": 0.3107669949531555, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.724319314100336, + "t": 0.7157379927452919, + "punct": null, + "u_acc": 0.25547445255474455, + "t_acc": 0.26277372262773724, + "punct_acc": null, + "threshold_t": 0.07903829216957092, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7289885297184567, + "t": 0.7178550019394194, + "punct": null, + "u_acc": 0.26277372262773724, + "t_acc": 0.27007299270072993, + "punct_acc": null, + "threshold_t": 0.08234239369630814, + "threshold_adj": 0.25 + } + }, + "pt": { + "opus100": { + "u": 0.9679679969153653, + "t": 0.9697898592635436, + "punct": null, + "u_acc": 0.8582995951417004, + "t_acc": 0.8643724696356275, + "punct_acc": null, + "threshold_t": 0.3534495234489441, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9892694063926941, + "t": 0.9860730593607306, + "punct": null, + "u_acc": 0.9623287671232876, + "t_acc": 0.9554794520547946, + "punct_acc": null, + "threshold_t": 0.3783186078071594, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8387625152625152, + "t": 0.8331442767442768, + "punct": null, + "u_acc": 0.5264, + "t_acc": 0.4864, + "punct_acc": null, + "threshold_t": 0.07639459520578384, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.9011009523809523, + "t": 0.9021099567099568, + "punct": null, + "u_acc": 0.682, + "t_acc": 0.6896, + "punct_acc": null, + "threshold_t": 0.3179333806037903, + "threshold_adj": 0.25 + } + }, + "ro": { + "ersatz": { + "u": 0.9953333333333333, + "t": 0.996, + "punct": null, + "u_acc": 0.978, + "t_acc": 0.984, + "punct_acc": null, + "threshold_t": 0.8954811096191406, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9702356902356902, + "t": 0.9715824915824915, + "punct": null, + "u_acc": 0.8828282828282829, + "t_acc": 0.8868686868686869, + "punct_acc": null, + "threshold_t": 0.29380476474761963, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9936628643852978, + "t": 0.9860583016476552, + "punct": null, + "u_acc": 0.973384030418251, + "t_acc": 0.9581749049429658, + "punct_acc": null, + "threshold_t": 0.8251592516899109, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8206790764790763, + "t": 0.8228838095238094, + "punct": null, + "u_acc": 0.4892, + "t_acc": 0.478, + "punct_acc": null, + "threshold_t": 0.11436111479997635, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8928203174603175, + "t": 0.892424126984127, + "punct": null, + "u_acc": 0.6652, + "t_acc": 0.6608, + "punct_acc": null, + "threshold_t": 0.1856377124786377, + "threshold_adj": 0.25 + } + }, + "ru": { + "ersatz": { + "u": 0.996774193548387, + "t": 0.9962365591397849, + "punct": null, + "u_acc": 0.9838709677419355, + "t_acc": 0.9838709677419355, + "punct_acc": null, + "threshold_t": 0.5360589623451233, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9491217798594848, + "t": null, + "punct": null, + "u_acc": 0.8155737704918032, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9514357864357865, + "t": 0.955930735930736, + "punct": null, + "u_acc": 0.8318181818181818, + "t_acc": 0.85, + "punct_acc": null, + "threshold_t": 0.4840237498283386, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8387212698412699, + "t": 0.828416305916306, + "punct": null, + "u_acc": 0.514, + "t_acc": 0.4616, + "punct_acc": null, + "threshold_t": 0.07608737796545029, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.897336507936508, + "t": 0.8971288888888889, + "punct": null, + "u_acc": 0.6644, + "t_acc": 0.6628, + "punct_acc": null, + "threshold_t": 0.23210446536540985, + "threshold_adj": 0.25 + } + }, + "si": { + "opus100": { + "u": 0.9177515360983103, + "t": 0.9168682795698925, + "punct": null, + "u_acc": 0.6854838709677419, + "t_acc": 0.6975806451612904, + "punct_acc": null, + "threshold_t": 0.4628986120223999, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7501918408895153, + "t": 0.7053738808184774, + "punct": null, + "u_acc": 0.31007751937984496, + "t_acc": 0.2558139534883721, + "punct_acc": null, + "threshold_t": 0.013289653696119785, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7575008109891831, + "t": 0.7200122014075502, + "punct": null, + "u_acc": 0.3333333333333333, + "t_acc": 0.2713178294573643, + "punct_acc": null, + "threshold_t": 0.019190356135368347, + "threshold_adj": 0.25 + } + }, + "sk": { + "opus100": { + "u": 0.9716205837173578, + "t": 0.9709485407066052, + "punct": null, + "u_acc": 0.8870967741935484, + "t_acc": 0.8810483870967742, + "punct_acc": null, + "threshold_t": 0.11327581852674484, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9860377358490566, + "t": 0.981006289308176, + "punct": null, + "u_acc": 0.9584905660377359, + "t_acc": 0.9433962264150944, + "punct_acc": null, + "threshold_t": 0.5051817297935486, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8377268176268177, + "t": 0.8198992339078546, + "punct": null, + "u_acc": 0.5056, + "t_acc": 0.45, + "punct_acc": null, + "threshold_t": 0.050622206181287766, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8980011033411034, + "t": 0.8974491233912286, + "punct": null, + "u_acc": 0.6636, + "t_acc": 0.6676, + "punct_acc": null, + "threshold_t": 0.2900650203227997, + "threshold_adj": 0.25 + } + }, + "sl": { + "opus100": { + "u": 0.9664754255115701, + "t": 0.9609294320137693, + "punct": null, + "u_acc": 0.8493975903614458, + "t_acc": 0.8253012048192772, + "punct_acc": null, + "threshold_t": 0.05151665583252907, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9955357142857142, + "t": 0.9970833333333333, + "punct": null, + "u_acc": 0.98125, + "t_acc": 0.9875, + "punct_acc": null, + "threshold_t": 0.49169063568115234, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8435489466089466, + "t": 0.8443747355912062, + "punct": null, + "u_acc": 0.5404, + "t_acc": 0.5164, + "punct_acc": null, + "threshold_t": 0.05924160033464432, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.9066025974025975, + "t": 0.9066210101010099, + "punct": null, + "u_acc": 0.698, + "t_acc": 0.7024, + "punct_acc": null, + "threshold_t": 0.3213497996330261, + "threshold_adj": 0.25 + } + }, + "sq": { + "opus100": { + "u": 0.9715737514518002, + "t": 0.9746128532713898, + "punct": null, + "u_acc": 0.8841463414634146, + "t_acc": 0.8983739837398373, + "punct_acc": null, + "threshold_t": 0.5294507145881653, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9555555555555555, + "t": null, + "punct": null, + "u_acc": 0.8666666666666667, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7720403174603174, + "t": 0.7657260206460207, + "punct": null, + "u_acc": 0.3688, + "t_acc": 0.3504, + "punct_acc": null, + "threshold_t": 0.02996820956468582, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8452485714285715, + "t": 0.8302135353535354, + "punct": null, + "u_acc": 0.5348, + "t_acc": 0.4808, + "punct_acc": null, + "threshold_t": 0.02876061387360096, + "threshold_adj": 0.25 + } + }, + "sr": { + "opus100": { + "u": 0.9736278447121821, + "t": 0.9661311914323962, + "punct": null, + "u_acc": 0.8775100401606426, + "t_acc": 0.8453815261044176, + "punct_acc": null, + "threshold_t": 0.0625503733754158, + "threshold_adj": 0.25 + }, + "ud": { + "u": 1.0, + "t": 1.0, + "punct": null, + "u_acc": 1.0, + "t_acc": 1.0, + "punct_acc": null, + "threshold_t": 0.8676129579544067, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8230555572532042, + "t": 0.821675468975469, + "punct": null, + "u_acc": 0.4912, + "t_acc": 0.4892, + "punct_acc": null, + "threshold_t": 0.11506707221269608, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8994581041181041, + "t": 0.8992537662337663, + "punct": null, + "u_acc": 0.6784, + "t_acc": 0.6784, + "punct_acc": null, + "threshold_t": 0.2678655982017517, + "threshold_adj": 0.25 + } + }, + "sv": { + "opus100": { + "u": 0.967489003633582, + "t": 0.9672117039586919, + "punct": null, + "u_acc": 0.8554216867469879, + "t_acc": 0.8534136546184738, + "punct_acc": null, + "threshold_t": 0.11946509778499603, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9680878552971576, + "t": 0.9652454780361756, + "punct": null, + "u_acc": 0.8798449612403101, + "t_acc": 0.8682170542635659, + "punct_acc": null, + "threshold_t": 0.10406601428985596, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8363161904761907, + "t": 0.8405295815295817, + "punct": null, + "u_acc": 0.516, + "t_acc": 0.5152, + "punct_acc": null, + "threshold_t": 0.07248911261558533, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8979314285714285, + "t": 0.8997561904761904, + "punct": null, + "u_acc": 0.6668, + "t_acc": 0.6664, + "punct_acc": null, + "threshold_t": 0.19254335761070251, + "threshold_adj": 0.25 + } + }, + "ta": { + "ersatz": { + "u": 0.9835325365205844, + "t": 0.9811420982735723, + "punct": null, + "u_acc": 0.9282868525896414, + "t_acc": 0.9243027888446215, + "punct_acc": null, + "threshold_t": 0.9014356732368469, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.8999322493224932, + "t": 0.8989159891598916, + "punct": null, + "u_acc": 0.6666666666666666, + "t_acc": 0.6727642276422764, + "punct_acc": null, + "threshold_t": 0.48352038860321045, + "threshold_adj": 0.25 + }, + "ud": { + "u": 1.0, + "t": 1.0, + "punct": null, + "u_acc": 1.0, + "t_acc": 1.0, + "punct_acc": null, + "threshold_t": 0.9997159838676453, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7107241710444557, + "t": 0.6967592352289862, + "punct": null, + "u_acc": 0.2569395017793594, + "t_acc": 0.23416370106761566, + "punct_acc": null, + "threshold_t": 0.0626593828201294, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7764354585706899, + "t": 0.7594564352215598, + "punct": null, + "u_acc": 0.3501779359430605, + "t_acc": 0.3096085409252669, + "punct_acc": null, + "threshold_t": 0.030735300853848457, + "threshold_adj": 0.25 + } + }, + "te": { + "opus100": { + "u": 0.9148979591836734, + "t": 0.917687074829932, + "punct": null, + "u_acc": 0.7081632653061225, + "t_acc": 0.7163265306122449, + "punct_acc": null, + "threshold_t": 0.27271151542663574, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6925504505564929, + "t": 0.689035368793677, + "punct": null, + "u_acc": 0.1933534743202417, + "t_acc": 0.18882175226586104, + "punct_acc": null, + "threshold_t": 0.23542112112045288, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7423116577950416, + "t": 0.7391910036925142, + "punct": null, + "u_acc": 0.28700906344410876, + "t_acc": 0.283987915407855, + "punct_acc": null, + "threshold_t": 0.16129159927368164, + "threshold_adj": 0.25 + } + }, + "tg": { + "opus100": { + "u": 0.9488621151271753, + "t": 0.9437081659973225, + "punct": null, + "u_acc": 0.8172690763052208, + "t_acc": 0.8052208835341366, + "punct_acc": null, + "threshold_t": 0.3201037347316742, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7369883040935673, + "t": 0.7506787802840434, + "punct": null, + "u_acc": 0.2631578947368421, + "t_acc": 0.2894736842105263, + "punct_acc": null, + "threshold_t": 0.08675067126750946, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7809106098579782, + "t": 0.8110275689223058, + "punct": null, + "u_acc": 0.35526315789473684, + "t_acc": 0.42105263157894735, + "punct_acc": null, + "threshold_t": 0.03267653286457062, + "threshold_adj": 0.25 + } + }, + "th": { + "opus100": { + "u": 0.8636075036075036, + "t": 0.8624627224627226, + "punct": null, + "u_acc": 0.5050505050505051, + "t_acc": 0.498989898989899, + "punct_acc": null, + "threshold_t": 0.21616829931735992, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9085333333333333, + "t": null, + "punct": null, + "u_acc": 0.736, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.751109090909091, + "t": 0.7495839036825244, + "punct": null, + "u_acc": 0.3108, + "t_acc": 0.3068, + "punct_acc": null, + "threshold_t": 0.0045921653509140015, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.752932582972583, + "t": 0.7516781841846311, + "punct": null, + "u_acc": 0.3148, + "t_acc": 0.3124, + "punct_acc": null, + "threshold_t": 0.0045921653509140015, + "threshold_adj": 0.25 + } + }, + "tr": { + "ersatz": { + "u": 0.9891907294832828, + "t": 0.9888361195542047, + "punct": null, + "u_acc": 0.9601063829787234, + "t_acc": 0.9601063829787234, + "punct_acc": null, + "threshold_t": 0.3593780994415283, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9624156545209176, + "t": 0.9550607287449393, + "punct": null, + "u_acc": 0.8481781376518218, + "t_acc": 0.8097165991902834, + "punct_acc": null, + "threshold_t": 0.07877299189567566, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9867878787878788, + "t": 0.9859393939393939, + "punct": null, + "u_acc": 0.9490909090909091, + "t_acc": 0.9490909090909091, + "punct_acc": null, + "threshold_t": 0.6669154763221741, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8340050793650795, + "t": 0.8185655056055055, + "punct": null, + "u_acc": 0.4952, + "t_acc": 0.4464, + "punct_acc": null, + "threshold_t": 0.023632079362869263, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8856450793650794, + "t": 0.8845669841269842, + "punct": null, + "u_acc": 0.624, + "t_acc": 0.62, + "punct_acc": null, + "threshold_t": 0.17539633810520172, + "threshold_adj": 0.25 + } + }, + "uk": { + "opus100": { + "u": 0.9587779690189329, + "t": 0.9587779690189328, + "punct": null, + "u_acc": 0.8192771084337349, + "t_acc": 0.8192771084337349, + "punct_acc": null, + "threshold_t": 0.19237442314624786, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.975595238095238, + "t": 0.9764880952380952, + "punct": null, + "u_acc": 0.9241071428571429, + "t_acc": 0.9285714285714286, + "punct_acc": null, + "threshold_t": 0.5130528211593628, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8214952380952382, + "t": 0.806336015096015, + "punct": null, + "u_acc": 0.4796, + "t_acc": 0.4172, + "punct_acc": null, + "threshold_t": 0.02443261258304119, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8933983638583639, + "t": 0.8817654487734485, + "punct": null, + "u_acc": 0.6568, + "t_acc": 0.6036, + "punct_acc": null, + "threshold_t": 0.095364049077034, + "threshold_adj": 0.25 + } + }, + "ur": { + "opus100": { + "u": 0.8389489042031415, + "t": 0.8190908197264131, + "punct": null, + "u_acc": 0.5084745762711864, + "t_acc": 0.4385593220338983, + "punct_acc": null, + "threshold_t": 0.09457703679800034, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9848614072494669, + "t": 0.9833688699360341, + "punct": null, + "u_acc": 0.9477611940298507, + "t_acc": 0.9402985074626866, + "punct_acc": null, + "threshold_t": 0.18240685760974884, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7816052024942056, + "t": 0.7787401618593809, + "punct": null, + "u_acc": 0.3910585817060637, + "t_acc": 0.3854059609455293, + "punct_acc": null, + "threshold_t": 0.1797940731048584, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8067155409395903, + "t": 0.7990697979649676, + "punct": null, + "u_acc": 0.44964028776978415, + "t_acc": 0.4188078108941418, + "punct_acc": null, + "threshold_t": 0.10159841179847717, + "threshold_adj": 0.25 + } + }, + "uz": { + "opus100": { + "u": 0.9406122448979591, + "t": 0.9391836734693878, + "punct": null, + "u_acc": 0.763265306122449, + "t_acc": 0.7979591836734694, + "punct_acc": null, + "threshold_t": 0.529529869556427, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7705311097716162, + "t": 0.7627736831850757, + "punct": null, + "u_acc": 0.33016877637130804, + "t_acc": 0.3259493670886076, + "punct_acc": null, + "threshold_t": 0.00559146236628294, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8235483222824995, + "t": 0.825956901748041, + "punct": null, + "u_acc": 0.4588607594936709, + "t_acc": 0.4704641350210971, + "punct_acc": null, + "threshold_t": 0.03608600050210953, + "threshold_adj": 0.25 + } + }, + "vi": { + "opus100": { + "u": 0.9631393298059965, + "t": 0.9635508524397415, + "punct": null, + "u_acc": 0.8477366255144033, + "t_acc": 0.8497942386831275, + "punct_acc": null, + "threshold_t": 0.30781763792037964, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9933333333333334, + "t": 0.991, + "punct": null, + "u_acc": 0.97, + "t_acc": 0.965, + "punct_acc": null, + "threshold_t": 0.7917988300323486, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7986120634920635, + "t": 0.7889322144522144, + "punct": null, + "u_acc": 0.4304, + "t_acc": 0.3968, + "punct_acc": null, + "threshold_t": 0.015247425995767117, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8744546031746031, + "t": 0.8718650793650795, + "punct": null, + "u_acc": 0.602, + "t_acc": 0.5884, + "punct_acc": null, + "threshold_t": 0.13723838329315186, + "threshold_adj": 0.25 + } + }, + "xh": { + "opus100": { + "u": 0.9418395573997235, + "t": 0.9430843706777317, + "punct": null, + "u_acc": 0.7904564315352697, + "t_acc": 0.8008298755186722, + "punct_acc": null, + "threshold_t": 0.3049139678478241, + "threshold_adj": 0.25 + } + }, + "yi": { + "opus100": { + "u": 0.9334378265412747, + "t": 0.9426332288401253, + "punct": null, + "u_acc": 0.786833855799373, + "t_acc": 0.8119122257053292, + "punct_acc": null, + "threshold_t": 0.11939600855112076, + "threshold_adj": 0.25 + } + }, + "yo": { + "opus100": { + "u": 0.8417018798418117, + "t": null, + "punct": null, + "u_acc": 0.5085324232081911, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.8237500000000001, + "t": null, + "punct": null, + "u_acc": 0.4375, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "nllb": { + "u": 0.9475142857142856, + "t": 0.9498838095238094, + "punct": null, + "u_acc": 0.8148, + "t_acc": 0.8332, + "punct_acc": null, + "threshold_t": 0.39778682589530945, + "threshold_adj": 0.25 + } + }, + "zh": { + "ersatz": { + "u": 0.9652666666666666, + "t": 0.9640761904761905, + "punct": null, + "u_acc": 0.924, + "t_acc": 0.912, + "punct_acc": null, + "threshold_t": 0.00892738439142704, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9179505605058925, + "t": 0.8811392162498802, + "punct": null, + "u_acc": 0.744466800804829, + "t_acc": 0.5995975855130785, + "punct_acc": null, + "threshold_t": 0.005369078367948532, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.996, + "t": 0.9927999999999999, + "punct": null, + "u_acc": 0.992, + "t_acc": 0.976, + "punct_acc": null, + "threshold_t": 0.019473789259791374, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7272939876839185, + "t": 0.7080064500597572, + "punct": null, + "u_acc": 0.2561697926949654, + "t_acc": 0.24679170779861798, + "punct_acc": null, + "threshold_t": 0.007393041625618935, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7372103135429888, + "t": 0.7333701562230684, + "punct": null, + "u_acc": 0.2818361303060217, + "t_acc": 0.2917077986179664, + "punct_acc": null, + "threshold_t": 0.03242524340748787, + "threshold_adj": 0.25 + } + }, + "zu": { + "opus100": { + "u": 0.9611212861212861, + "t": 0.9554945054945055, + "punct": null, + "u_acc": 0.8653846153846154, + "t_acc": 0.8333333333333334, + "punct_acc": null, + "threshold_t": 0.0744938999414444, + "threshold_adj": 0.25 + } + }, + "tr-de": {}, + "es-en": {}, + "vi-en": {}, + "en-de": {} +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/sat-sm-12l.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/sat-sm-12l.json new file mode 100644 index 0000000000000000000000000000000000000000..7defa1623f2554dcf111042bc6147332d7d963fe --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/sat-sm-12l.json @@ -0,0 +1,3346 @@ +{ + "af": { + "opus100": { + "u": 0.9358913813459269, + "t": 0.9361078315623771, + "punct": null, + "u_acc": 0.762396694214876, + "t_acc": 0.78099173553719, + "punct_acc": null, + "threshold_t": 0.5267133712768555, + "threshold_adj": 0.25 + }, + "ud": { + "u": 1.0, + "t": 1.0, + "punct": null, + "u_acc": 1.0, + "t_acc": 1.0, + "punct_acc": null, + "threshold_t": 0.9878134727478027, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8296703296703296, + "t": 0.8082271062271061, + "punct": null, + "u_acc": 0.48, + "t_acc": 0.4246153846153846, + "punct_acc": null, + "threshold_t": 0.06166418269276619, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.894168498168498, + "t": 0.8958095238095239, + "punct": null, + "u_acc": 0.6369230769230769, + "t_acc": 0.6430769230769231, + "punct_acc": null, + "threshold_t": 0.33285531401634216, + "threshold_adj": 0.25 + } + }, + "am": { + "opus100": { + "u": 0.9068559954102122, + "t": 0.9058041690571812, + "punct": null, + "u_acc": 0.678714859437751, + "t_acc": 0.6726907630522089, + "punct_acc": null, + "threshold_t": 0.20142008364200592, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7088479662698413, + "t": 0.7015500992063493, + "punct": null, + "u_acc": 0.2265625, + "t_acc": 0.2265625, + "punct_acc": null, + "threshold_t": 0.05576714500784874, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7159908234126984, + "t": 0.6999131944444444, + "punct": null, + "u_acc": 0.25, + "t_acc": 0.21875, + "punct_acc": null, + "threshold_t": 0.047457821667194366, + "threshold_adj": 0.25 + } + }, + "ar": { + "ersatz": { + "u": 0.9006332320162107, + "t": 0.917160587639311, + "punct": null, + "u_acc": 0.675531914893617, + "t_acc": 0.7101063829787234, + "punct_acc": null, + "threshold_t": 0.06891521066427231, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.8879709313444254, + "t": 0.8761076050232678, + "punct": null, + "u_acc": 0.6405622489959839, + "t_acc": 0.5903614457831325, + "punct_acc": null, + "threshold_t": 0.08384105563163757, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9410737628384686, + "t": 0.9345378151260504, + "punct": null, + "u_acc": 0.7941176470588235, + "t_acc": 0.7823529411764706, + "punct_acc": null, + "threshold_t": 0.45716428756713867, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7413171428571428, + "t": 0.7222593967143968, + "punct": null, + "u_acc": 0.2776, + "t_acc": 0.2648, + "punct_acc": null, + "threshold_t": 0.03294433280825615, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.769233851294904, + "t": 0.769837158011071, + "punct": null, + "u_acc": 0.3416, + "t_acc": 0.3572, + "punct_acc": null, + "threshold_t": 0.09385097026824951, + "threshold_adj": 0.25 + } + }, + "az": { + "opus100": { + "u": 0.9132530120481926, + "t": 0.9131382673551348, + "punct": null, + "u_acc": 0.7008032128514057, + "t_acc": 0.6907630522088354, + "punct_acc": null, + "threshold_t": 0.15619401633739471, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8041450898720401, + "t": 0.8105881936555697, + "punct": null, + "u_acc": 0.4178486997635934, + "t_acc": 0.4391252955082742, + "punct_acc": null, + "threshold_t": 0.01600312441587448, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8558332395211827, + "t": 0.8619329055499269, + "punct": null, + "u_acc": 0.5460992907801419, + "t_acc": 0.5526004728132388, + "punct_acc": null, + "threshold_t": 0.024036891758441925, + "threshold_adj": 0.25 + } + }, + "be": { + "opus100": { + "u": 0.9332072543885171, + "t": 0.9324701774803608, + "punct": null, + "u_acc": 0.7841140529531568, + "t_acc": 0.780040733197556, + "punct_acc": null, + "threshold_t": 0.1734095960855484, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9468578509470703, + "t": 0.9427509293680297, + "punct": null, + "u_acc": 0.8327137546468402, + "t_acc": 0.8215613382899628, + "punct_acc": null, + "threshold_t": 0.49903181195259094, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.828099667294995, + "t": 0.8292620747195698, + "punct": null, + "u_acc": 0.49123945489941595, + "t_acc": 0.49059052563270605, + "punct_acc": null, + "threshold_t": 0.18859070539474487, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8931501910736176, + "t": 0.8932789468805044, + "punct": null, + "u_acc": 0.6489292667099286, + "t_acc": 0.6515249837767684, + "punct_acc": null, + "threshold_t": 0.275354266166687, + "threshold_adj": 0.25 + } + }, + "bg": { + "opus100": { + "u": 0.9702834239908388, + "t": 0.9705506250596431, + "punct": null, + "u_acc": 0.8617234468937875, + "t_acc": 0.8617234468937875, + "punct_acc": null, + "threshold_t": 0.26644113659858704, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9988052568697731, + "t": 0.9988052568697731, + "punct": null, + "u_acc": 0.996415770609319, + "t_acc": 0.996415770609319, + "punct_acc": null, + "threshold_t": 0.3684331178665161, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8301029810712164, + "t": 0.8291017082017083, + "punct": null, + "u_acc": 0.4984, + "t_acc": 0.4936, + "punct_acc": null, + "threshold_t": 0.21827085316181183, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8960122366522366, + "t": 0.8985462298812299, + "punct": null, + "u_acc": 0.6576, + "t_acc": 0.6708, + "punct_acc": null, + "threshold_t": 0.4103734493255615, + "threshold_adj": 0.25 + } + }, + "bn": { + "opus100": { + "u": 0.9442655935613682, + "t": 0.9399827536648462, + "punct": null, + "u_acc": 0.7847082494969819, + "t_acc": 0.7585513078470825, + "punct_acc": null, + "threshold_t": 0.19109474122524261, + "threshold_adj": 0.25 + }, + "ud": { + "u": 1.0, + "t": null, + "punct": null, + "u_acc": 1.0, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6364951330720562, + "t": 0.6038609125916818, + "punct": null, + "u_acc": 0.12384615384615384, + "t_acc": 0.09692307692307692, + "punct_acc": null, + "threshold_t": 0.14795920252799988, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7423357753357753, + "t": 0.7190091416878747, + "punct": null, + "u_acc": 0.28846153846153844, + "t_acc": 0.2553846153846154, + "punct_acc": null, + "threshold_t": 0.03250708058476448, + "threshold_adj": 0.25 + } + }, + "ca": { + "opus100": { + "u": 0.9631572169097525, + "t": 0.9559711868028298, + "punct": null, + "u_acc": 0.8519269776876268, + "t_acc": 0.8235294117647058, + "punct_acc": null, + "threshold_t": 0.08215601742267609, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9978354978354979, + "t": 0.9841269841269842, + "punct": null, + "u_acc": 0.9891774891774892, + "t_acc": 0.9523809523809523, + "punct_acc": null, + "threshold_t": 0.9989295601844788, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8205933333333334, + "t": 0.8000615584415585, + "punct": null, + "u_acc": 0.4788, + "t_acc": 0.404, + "punct_acc": null, + "threshold_t": 0.030712280422449112, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8955073015873015, + "t": 0.8940368831168831, + "punct": null, + "u_acc": 0.6688, + "t_acc": 0.6596, + "punct_acc": null, + "threshold_t": 0.19296707212924957, + "threshold_adj": 0.25 + } + }, + "ceb": { + "ud": { + "u": 0.9716312056737589, + "t": null, + "punct": null, + "u_acc": 0.9148936170212766, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6595238095238096, + "t": 0.6595238095238096, + "punct": null, + "u_acc": 0.07142857142857142, + "t_acc": 0.07142857142857142, + "punct_acc": null, + "threshold_t": 0.19813048839569092, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7642857142857143, + "t": 0.7880952380952381, + "punct": null, + "u_acc": 0.35714285714285715, + "t_acc": 0.42857142857142855, + "punct_acc": null, + "threshold_t": 0.17615289986133575, + "threshold_adj": 0.25 + }, + "nllb": { + "u": 0.9430304761904761, + "t": 0.9437771428571429, + "punct": null, + "u_acc": 0.8116, + "t_acc": 0.8184, + "punct_acc": null, + "threshold_t": 0.321523517370224, + "threshold_adj": 0.25 + } + }, + "cs": { + "ersatz": { + "u": 0.9902006172839506, + "t": 0.9929783950617285, + "punct": null, + "u_acc": 0.9606481481481481, + "t_acc": 0.9745370370370371, + "punct_acc": null, + "threshold_t": 0.9860545992851257, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.953203639179249, + "t": 0.9553619821912505, + "punct": null, + "u_acc": 0.8048780487804879, + "t_acc": 0.8170731707317073, + "punct_acc": null, + "threshold_t": 0.3447602689266205, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9817998597967053, + "t": 0.9786409043112514, + "punct": null, + "u_acc": 0.9388801261829653, + "t_acc": 0.9199526813880127, + "punct_acc": null, + "threshold_t": 0.09427179396152496, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8330733309940981, + "t": 0.8255898515976776, + "punct": null, + "u_acc": 0.4952, + "t_acc": 0.4716, + "punct_acc": null, + "threshold_t": 0.13281674683094025, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8916379346257607, + "t": 0.8899776171654432, + "punct": null, + "u_acc": 0.6408, + "t_acc": 0.6332, + "punct_acc": null, + "threshold_t": 0.2116090953350067, + "threshold_adj": 0.25 + } + }, + "cy": { + "opus100": { + "u": 0.9064497123449088, + "t": 0.9057946905108476, + "punct": null, + "u_acc": 0.6746724890829694, + "t_acc": 0.6681222707423581, + "punct_acc": null, + "threshold_t": 0.1902681589126587, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9991596638655462, + "t": 0.9985994397759105, + "punct": null, + "u_acc": 0.9957983193277311, + "t_acc": 0.9957983193277311, + "punct_acc": null, + "threshold_t": 0.6543346643447876, + "threshold_adj": 0.25 + } + }, + "da": { + "opus100": { + "u": 0.9676171274961597, + "t": 0.9666090629800307, + "punct": null, + "u_acc": 0.8669354838709677, + "t_acc": 0.8629032258064516, + "punct_acc": null, + "threshold_t": 0.20439939200878143, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9895981087470449, + "t": 0.9914893617021278, + "punct": null, + "u_acc": 0.9574468085106383, + "t_acc": 0.9716312056737588, + "punct_acc": null, + "threshold_t": 0.610223650932312, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8262991053391053, + "t": 0.8276295304695305, + "punct": null, + "u_acc": 0.4936, + "t_acc": 0.4844, + "punct_acc": null, + "threshold_t": 0.01671995222568512, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8999409523809525, + "t": 0.9001098412698413, + "punct": null, + "u_acc": 0.6804, + "t_acc": 0.6732, + "punct_acc": null, + "threshold_t": 0.08376247435808182, + "threshold_adj": 0.25 + } + }, + "de": { + "ersatz": { + "u": 0.9918533604887984, + "t": 0.9926680244399186, + "punct": null, + "u_acc": 0.9674134419551935, + "t_acc": 0.9714867617107943, + "punct_acc": null, + "threshold_t": 0.35526859760284424, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9325899136025719, + "t": 0.9185252159935705, + "punct": null, + "u_acc": 0.7426160337552743, + "t_acc": 0.6877637130801688, + "punct_acc": null, + "threshold_t": 0.03034534491598606, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9831967213114753, + "t": 0.980464480874317, + "punct": null, + "u_acc": 0.9467213114754098, + "t_acc": 0.9385245901639344, + "punct_acc": null, + "threshold_t": 0.597312867641449, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8490209523809524, + "t": 0.854089264069264, + "punct": null, + "u_acc": 0.5428, + "t_acc": 0.5456, + "punct_acc": null, + "threshold_t": 0.12303541600704193, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.9055657142857144, + "t": 0.9025673593073592, + "punct": null, + "u_acc": 0.6968, + "t_acc": 0.6764, + "punct_acc": null, + "threshold_t": 0.133021280169487, + "threshold_adj": 0.25 + } + }, + "el": { + "opus100": { + "u": 0.9686077643908969, + "t": 0.9683400267737617, + "punct": null, + "u_acc": 0.8654618473895582, + "t_acc": 0.8654618473895582, + "punct_acc": null, + "threshold_t": 0.21605639159679413, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.983625730994152, + "t": 0.9923976608187134, + "punct": null, + "u_acc": 0.9473684210526315, + "t_acc": 0.9736842105263158, + "punct_acc": null, + "threshold_t": 0.1934049427509308, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8296939090149615, + "t": 0.8134828428543135, + "punct": null, + "u_acc": 0.5148, + "t_acc": 0.4536, + "punct_acc": null, + "threshold_t": 0.013980056159198284, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.895189561684653, + "t": 0.8938963252959986, + "punct": null, + "u_acc": 0.6644, + "t_acc": 0.6556, + "punct_acc": null, + "threshold_t": 0.15795426070690155, + "threshold_adj": 0.25 + } + }, + "en": { + "ersatz": { + "u": 0.9902734510211145, + "t": 0.9925579785392868, + "punct": null, + "u_acc": 0.9595015576323987, + "t_acc": 0.9709241952232607, + "punct_acc": null, + "threshold_t": 0.5182924866676331, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.967741935483871, + "t": 0.956125192012289, + "punct": null, + "u_acc": 0.8649193548387096, + "t_acc": 0.8064516129032258, + "punct_acc": null, + "threshold_t": 0.012149212881922722, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9753041362530415, + "t": 0.9794403892944039, + "punct": null, + "u_acc": 0.9197080291970803, + "t_acc": 0.9306569343065694, + "punct_acc": null, + "threshold_t": 0.10314138978719711, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8218933333333335, + "t": 0.812737102897103, + "punct": null, + "u_acc": 0.4844, + "t_acc": 0.4508, + "punct_acc": null, + "threshold_t": 0.06911183893680573, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8970457142857143, + "t": 0.8954597402597403, + "punct": null, + "u_acc": 0.6644, + "t_acc": 0.6548, + "punct_acc": null, + "threshold_t": 0.18705546855926514, + "threshold_adj": 0.25 + } + }, + "eo": { + "opus100": { + "u": 0.9711021505376345, + "t": 0.9704397081413211, + "punct": null, + "u_acc": 0.8830645161290323, + "t_acc": 0.875, + "punct_acc": null, + "threshold_t": 0.15519686043262482, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7684185662569121, + "t": 0.7372478885636781, + "punct": null, + "u_acc": 0.35150375939849626, + "t_acc": 0.287593984962406, + "punct_acc": null, + "threshold_t": 0.005447076167911291, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8257479014997812, + "t": 0.8259575254876007, + "punct": null, + "u_acc": 0.4818295739348371, + "t_acc": 0.4667919799498747, + "punct_acc": null, + "threshold_t": 0.028809091076254845, + "threshold_adj": 0.25 + } + }, + "es": { + "ersatz": { + "u": 0.9964316797214969, + "t": null, + "punct": null, + "u_acc": 0.9856396866840731, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9686556133924555, + "t": 0.9580618212197162, + "punct": null, + "u_acc": 0.8724696356275303, + "t_acc": 0.8340080971659919, + "punct_acc": null, + "threshold_t": 0.045676928013563156, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9945736434108526, + "t": 0.9903875968992248, + "punct": null, + "u_acc": 0.9744186046511628, + "t_acc": 0.9674418604651163, + "punct_acc": null, + "threshold_t": 0.9583603739738464, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8154441188427396, + "t": 0.8183369885669884, + "punct": null, + "u_acc": 0.464, + "t_acc": 0.4664, + "punct_acc": null, + "threshold_t": 0.180559441447258, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.885909839121452, + "t": 0.8834520893485598, + "punct": null, + "u_acc": 0.6468, + "t_acc": 0.648, + "punct_acc": null, + "threshold_t": 0.42110100388526917, + "threshold_adj": 0.25 + } + }, + "et": { + "ersatz": { + "u": 0.99510582010582, + "t": 0.995899470899471, + "punct": null, + "u_acc": 0.9781746031746031, + "t_acc": 0.9821428571428571, + "punct_acc": null, + "threshold_t": 0.43015146255493164, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9598451256345993, + "t": 0.9605455947561211, + "punct": null, + "u_acc": 0.8380566801619433, + "t_acc": 0.840080971659919, + "punct_acc": null, + "threshold_t": 0.42653438448905945, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9868573797678276, + "t": 0.9878524046434495, + "punct": null, + "u_acc": 0.9564676616915423, + "t_acc": 0.9614427860696517, + "punct_acc": null, + "threshold_t": 0.2837121784687042, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8476597402597403, + "t": 0.8349727450327451, + "punct": null, + "u_acc": 0.5368, + "t_acc": 0.488, + "punct_acc": null, + "threshold_t": 0.05510525032877922, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.9019977777777778, + "t": 0.9037761904761905, + "punct": null, + "u_acc": 0.6768, + "t_acc": 0.6892, + "punct_acc": null, + "threshold_t": 0.39433321356773376, + "threshold_adj": 0.25 + } + }, + "eu": { + "opus100": { + "u": 0.9618854829381145, + "t": 0.9617505301715829, + "punct": null, + "u_acc": 0.8461538461538461, + "t_acc": 0.8481781376518218, + "punct_acc": null, + "threshold_t": 0.38719433546066284, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9958518518518519, + "t": 0.9954074074074073, + "punct": null, + "u_acc": 0.9822222222222222, + "t_acc": 0.9844444444444445, + "punct_acc": null, + "threshold_t": 0.9844362735748291, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7819631123058542, + "t": 0.7769931121745637, + "punct": null, + "u_acc": 0.39381720430107525, + "t_acc": 0.3629032258064516, + "punct_acc": null, + "threshold_t": 0.033414389938116074, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8676763312852022, + "t": 0.8647326762246117, + "punct": null, + "u_acc": 0.5987903225806451, + "t_acc": 0.581989247311828, + "punct_acc": null, + "threshold_t": 0.10609612613916397, + "threshold_adj": 0.25 + } + }, + "fa": { + "opus100": { + "u": 0.863482520596749, + "t": 0.8439694685185667, + "punct": null, + "u_acc": 0.5971943887775552, + "t_acc": 0.5290581162324649, + "punct_acc": null, + "threshold_t": 0.03637668862938881, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9952380952380951, + "t": 0.9967032967032966, + "punct": null, + "u_acc": 0.978021978021978, + "t_acc": 0.9835164835164835, + "punct_acc": null, + "threshold_t": 0.6403377056121826, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.797861483481058, + "t": 0.7979373193473193, + "punct": null, + "u_acc": 0.4224, + "t_acc": 0.4228, + "punct_acc": null, + "threshold_t": 0.24335354566574097, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8275830130625874, + "t": 0.8272251663891664, + "punct": null, + "u_acc": 0.4896, + "t_acc": 0.4888, + "punct_acc": null, + "threshold_t": 0.23424072563648224, + "threshold_adj": 0.25 + } + }, + "fi": { + "ersatz": { + "u": 0.9963927855711423, + "t": 0.9983967935871744, + "punct": null, + "u_acc": 0.9819639278557114, + "t_acc": 0.9919839679358717, + "punct_acc": null, + "threshold_t": 0.4159590005874634, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9759892689470154, + "t": 0.9692152917505031, + "punct": null, + "u_acc": 0.8853118712273642, + "t_acc": 0.8611670020120724, + "punct_acc": null, + "threshold_t": 0.043404825031757355, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9912371134020619, + "t": 0.9927835051546393, + "punct": null, + "u_acc": 0.9664948453608248, + "t_acc": 0.9742268041237113, + "punct_acc": null, + "threshold_t": 0.30064690113067627, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8359507936507936, + "t": 0.831853553113553, + "punct": null, + "u_acc": 0.5268, + "t_acc": 0.4924, + "punct_acc": null, + "threshold_t": 0.07716461271047592, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.898975238095238, + "t": 0.8993488888888889, + "punct": null, + "u_acc": 0.6792, + "t_acc": 0.6772, + "punct_acc": null, + "threshold_t": 0.19953423738479614, + "threshold_adj": 0.25 + } + }, + "fr": { + "ersatz": { + "u": 0.9959742351046699, + "t": 0.9948470209339775, + "punct": null, + "u_acc": 0.9830917874396136, + "t_acc": 0.9806763285024155, + "punct_acc": null, + "threshold_t": 0.6386837363243103, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9538974210373805, + "t": null, + "punct": null, + "u_acc": 0.8113590263691683, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9980769230769231, + "t": 0.9980769230769231, + "punct": null, + "u_acc": 0.9903846153846154, + "t_acc": 0.9903846153846154, + "punct_acc": null, + "threshold_t": 0.4889029264450073, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8098361904761905, + "t": 0.8192619913419912, + "punct": null, + "u_acc": 0.458, + "t_acc": 0.4576, + "punct_acc": null, + "threshold_t": 0.02904966101050377, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8874320634920634, + "t": 0.8797911688311689, + "punct": null, + "u_acc": 0.66, + "t_acc": 0.6136, + "punct_acc": null, + "threshold_t": 0.05259474739432335, + "threshold_adj": 0.25 + } + }, + "fy": { + "opus100": { + "u": 0.9376967095851216, + "t": 0.94241773962804, + "punct": null, + "u_acc": 0.8004291845493562, + "t_acc": 0.8090128755364807, + "punct_acc": null, + "threshold_t": 0.16877134144306183, + "threshold_adj": 0.25 + } + }, + "ga": { + "opus100": { + "u": 0.9409610215053764, + "t": 0.9460349462365591, + "punct": null, + "u_acc": 0.8044354838709677, + "t_acc": 0.8044354838709677, + "punct_acc": null, + "threshold_t": 0.07466644793748856, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9707602339181287, + "t": 0.9792397660818714, + "punct": null, + "u_acc": 0.9035087719298246, + "t_acc": 0.9210526315789473, + "punct_acc": null, + "threshold_t": 0.8677814602851868, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6793650793650793, + "t": 0.5842592592592593, + "punct": null, + "u_acc": 0.25, + "t_acc": 0.08333333333333333, + "punct_acc": null, + "threshold_t": 0.013184512965381145, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7365079365079364, + "t": 0.7611111111111111, + "punct": null, + "u_acc": 0.25, + "t_acc": 0.3333333333333333, + "punct_acc": null, + "threshold_t": 0.7664591073989868, + "threshold_adj": 0.25 + } + }, + "gd": { + "opus100": { + "u": 0.9326455026455026, + "t": 0.9251146384479718, + "punct": null, + "u_acc": 0.7666666666666667, + "t_acc": 0.7296296296296296, + "punct_acc": null, + "threshold_t": 0.1103217676281929, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.8970588235294118, + "t": 0.8958333333333334, + "punct": null, + "u_acc": 0.6838235294117647, + "t_acc": 0.6838235294117647, + "punct_acc": null, + "threshold_t": 0.213588148355484, + "threshold_adj": 0.25 + } + }, + "gl": { + "opus100": { + "u": 0.9617607526881721, + "t": 0.9606854838709677, + "punct": null, + "u_acc": 0.842741935483871, + "t_acc": 0.8387096774193549, + "punct_acc": null, + "threshold_t": 0.22174373269081116, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9913333333333333, + "t": 0.9913333333333333, + "punct": null, + "u_acc": 0.97, + "t_acc": 0.97, + "punct_acc": null, + "threshold_t": 0.27429941296577454, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8201342857142856, + "t": 0.819962857142857, + "punct": null, + "u_acc": 0.4792, + "t_acc": 0.4784, + "punct_acc": null, + "threshold_t": 0.24691839516162872, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8877987301587302, + "t": 0.8852650793650795, + "punct": null, + "u_acc": 0.6436, + "t_acc": 0.6252, + "punct_acc": null, + "threshold_t": 0.11226487159729004, + "threshold_adj": 0.25 + } + }, + "gu": { + "ersatz": { + "u": 0.9074990626171728, + "t": 0.9120922384701913, + "punct": null, + "u_acc": 0.7204724409448819, + "t_acc": 0.7283464566929134, + "punct_acc": null, + "threshold_t": 0.14198142290115356, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9200828157349896, + "t": 0.9226363008971704, + "punct": null, + "u_acc": 0.7412008281573499, + "t_acc": 0.7453416149068323, + "punct_acc": null, + "threshold_t": 0.2195306271314621, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6189243507494266, + "t": 0.6155107896260577, + "punct": null, + "u_acc": 0.12740141557128412, + "t_acc": 0.12487360970677452, + "punct_acc": null, + "threshold_t": 0.22590655088424683, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7109413211104395, + "t": 0.6816775088868838, + "punct": null, + "u_acc": 0.24014155712841254, + "t_acc": 0.21486349848331648, + "punct_acc": null, + "threshold_t": 0.03116069920361042, + "threshold_adj": 0.25 + } + }, + "ha": { + "opus100": { + "u": 0.9468666666666666, + "t": 0.9412, + "punct": null, + "u_acc": 0.788, + "t_acc": 0.794, + "punct_acc": null, + "threshold_t": 0.3944629728794098, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.611111111111111, + "t": 0.5555555555555555, + "punct": null, + "u_acc": 0.0, + "t_acc": 0.0, + "punct_acc": null, + "threshold_t": 0.05354507640004158, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.6888888888888888, + "t": 0.7777777777777777, + "punct": null, + "u_acc": 0.3333333333333333, + "t_acc": 0.3333333333333333, + "punct_acc": null, + "threshold_t": 0.9390864968299866, + "threshold_adj": 0.25 + } + }, + "he": { + "opus100": { + "u": 0.9423036549289054, + "t": 0.9391371487563873, + "punct": null, + "u_acc": 0.7775551102204409, + "t_acc": 0.7655310621242485, + "punct_acc": null, + "threshold_t": 0.15110965073108673, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9857142857142857, + "t": 0.9857142857142857, + "punct": null, + "u_acc": 0.9489795918367347, + "t_acc": 0.9489795918367347, + "punct_acc": null, + "threshold_t": 0.3192470669746399, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7823099456099457, + "t": 0.7816109785639198, + "punct": null, + "u_acc": 0.4044, + "t_acc": 0.4056, + "punct_acc": null, + "threshold_t": 0.18607929348945618, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8182166378066379, + "t": 0.8082583986383987, + "punct": null, + "u_acc": 0.4872, + "t_acc": 0.4548, + "punct_acc": null, + "threshold_t": 0.06886094808578491, + "threshold_adj": 0.25 + } + }, + "hi": { + "ersatz": { + "u": 0.9862962962962961, + "t": 0.9729100529100528, + "punct": null, + "u_acc": 0.9412698412698413, + "t_acc": 0.9142857142857143, + "punct_acc": null, + "threshold_t": 0.9687901735305786, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.8751079330026698, + "t": 0.8897210976158344, + "punct": null, + "u_acc": 0.5910931174089069, + "t_acc": 0.6376518218623481, + "punct_acc": null, + "threshold_t": 0.45361077785491943, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.998258115597783, + "t": 0.9979414093428345, + "punct": null, + "u_acc": 0.9928741092636579, + "t_acc": 0.9928741092636579, + "punct_acc": null, + "threshold_t": 0.6244473457336426, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7322349657749657, + "t": 0.7221934871664284, + "punct": null, + "u_acc": 0.2972, + "t_acc": 0.2796, + "punct_acc": null, + "threshold_t": 0.11981464922428131, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8108554221754222, + "t": 0.8097436761436761, + "punct": null, + "u_acc": 0.4444, + "t_acc": 0.436, + "punct_acc": null, + "threshold_t": 0.195551797747612, + "threshold_adj": 0.25 + } + }, + "hu": { + "opus100": { + "u": 0.969489247311828, + "t": 0.9667338709677419, + "punct": null, + "u_acc": 0.8528225806451613, + "t_acc": 0.8407258064516129, + "punct_acc": null, + "threshold_t": 0.07834309339523315, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9934523809523811, + "t": 0.9940476190476192, + "punct": null, + "u_acc": 0.9732142857142857, + "t_acc": 0.9821428571428571, + "punct_acc": null, + "threshold_t": 0.9795545339584351, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8186746031746032, + "t": 0.8054523742923743, + "punct": null, + "u_acc": 0.4816, + "t_acc": 0.4176, + "punct_acc": null, + "threshold_t": 0.0024567858781665564, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8961133333333333, + "t": 0.8963676190476192, + "punct": null, + "u_acc": 0.68, + "t_acc": 0.6816, + "punct_acc": null, + "threshold_t": 0.35802045464515686, + "threshold_adj": 0.25 + } + }, + "hy": { + "opus100": { + "u": 0.9415202299598655, + "t": null, + "punct": null, + "u_acc": 0.780751708428246, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9954954954954955, + "t": 0.9932432432432432, + "punct": null, + "u_acc": 0.9864864864864865, + "t_acc": 0.9797297297297297, + "punct_acc": null, + "threshold_t": 0.7635315656661987, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8168815238095238, + "t": 0.8119983449883451, + "punct": null, + "u_acc": 0.4616, + "t_acc": 0.4456, + "punct_acc": null, + "threshold_t": 0.015083407051861286, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8658086868686868, + "t": 0.865946232247285, + "punct": null, + "u_acc": 0.5708, + "t_acc": 0.578, + "punct_acc": null, + "threshold_t": 0.5937344431877136, + "threshold_adj": 0.25 + } + }, + "id": { + "opus100": { + "u": 0.9592213114754099, + "t": 0.9611338797814207, + "punct": null, + "u_acc": 0.819672131147541, + "t_acc": 0.8278688524590164, + "punct_acc": null, + "threshold_t": 0.3178315758705139, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9778666666666667, + "t": null, + "punct": null, + "u_acc": 0.932, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7709780952380952, + "t": 0.7628479542679543, + "punct": null, + "u_acc": 0.3516, + "t_acc": 0.3344, + "punct_acc": null, + "threshold_t": 0.013489384204149246, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8422314285714285, + "t": 0.8446371428571426, + "punct": null, + "u_acc": 0.5212, + "t_acc": 0.514, + "punct_acc": null, + "threshold_t": 0.03130241855978966, + "threshold_adj": 0.25 + } + }, + "ig": { + "opus100": { + "u": 0.943377253814147, + "t": 0.9458044382801664, + "punct": null, + "u_acc": 0.7985436893203883, + "t_acc": 0.8033980582524272, + "punct_acc": null, + "threshold_t": 0.22466032207012177, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6141941391941391, + "t": 0.5965506715506715, + "punct": null, + "u_acc": 0.07692307692307693, + "t_acc": 0.11538461538461539, + "punct_acc": null, + "threshold_t": 0.06332143396139145, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7512820512820514, + "t": 0.6554945054945054, + "punct": null, + "u_acc": 0.2692307692307692, + "t_acc": 0.2692307692307692, + "punct_acc": null, + "threshold_t": 0.01692948490381241, + "threshold_adj": 0.25 + } + }, + "is": { + "opus100": { + "u": 0.9738430583501007, + "t": 0.9742454728370221, + "punct": null, + "u_acc": 0.8853118712273642, + "t_acc": 0.8873239436619719, + "punct_acc": null, + "threshold_t": 0.2960386574268341, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9788355683623333, + "t": 0.9796039750267835, + "punct": null, + "u_acc": 0.91311093871218, + "t_acc": 0.9177657098525989, + "punct_acc": null, + "threshold_t": 0.3644753396511078, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8145320893412498, + "t": 0.8067571388182075, + "punct": null, + "u_acc": 0.455470737913486, + "t_acc": 0.42493638676844786, + "punct_acc": null, + "threshold_t": 0.020942457020282745, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8849266933236399, + "t": 0.883605961468557, + "punct": null, + "u_acc": 0.6361323155216285, + "t_acc": 0.6335877862595419, + "punct_acc": null, + "threshold_t": 0.08516617864370346, + "threshold_adj": 0.25 + } + }, + "it": { + "opus100": { + "u": 0.9451196876600103, + "t": 0.9459872340920729, + "punct": null, + "u_acc": 0.7721774193548387, + "t_acc": 0.7762096774193549, + "punct_acc": null, + "threshold_t": 0.36572980880737305, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9972222222222221, + "t": 0.9972222222222221, + "punct": null, + "u_acc": 0.9916666666666667, + "t_acc": 0.9916666666666667, + "punct_acc": null, + "threshold_t": 0.2613252103328705, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.813353137973138, + "t": 0.8020326118326119, + "punct": null, + "u_acc": 0.4496, + "t_acc": 0.4112, + "punct_acc": null, + "threshold_t": 0.09929787367582321, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8823837118437119, + "t": 0.888048253968254, + "punct": null, + "u_acc": 0.6052, + "t_acc": 0.6424, + "punct_acc": null, + "threshold_t": 0.5085493922233582, + "threshold_adj": 0.25 + } + }, + "ja": { + "ersatz": { + "u": 0.940316275764037, + "t": 0.9488805970149254, + "punct": null, + "u_acc": 0.8432835820895522, + "t_acc": 0.8656716417910447, + "punct_acc": null, + "threshold_t": 0.4914585053920746, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9114457831325301, + "t": 0.9050519538471345, + "punct": null, + "u_acc": 0.7269076305220884, + "t_acc": 0.6907630522088354, + "punct_acc": null, + "threshold_t": 0.08693736046552658, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9933823529411764, + "t": 0.9948529411764707, + "punct": null, + "u_acc": 0.9779411764705882, + "t_acc": 0.9852941176470589, + "punct_acc": null, + "threshold_t": 0.8192950487136841, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.896654188034188, + "t": 0.9051599023199022, + "punct": null, + "u_acc": 0.6604, + "t_acc": 0.6924, + "punct_acc": null, + "threshold_t": 0.6293315291404724, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8967719658119658, + "t": 0.9059933333333334, + "punct": null, + "u_acc": 0.6636, + "t_acc": 0.7016, + "punct_acc": null, + "threshold_t": 0.9002335071563721, + "threshold_adj": 0.25 + } + }, + "jv": { + "ud": { + "u": 0.9585333333333333, + "t": null, + "punct": null, + "u_acc": 0.868, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "nllb": { + "u": 0.9383390476190474, + "t": 0.943375238095238, + "punct": null, + "u_acc": 0.7868, + "t_acc": 0.8172, + "punct_acc": null, + "threshold_t": 0.5628132820129395, + "threshold_adj": 0.25 + } + }, + "ka": { + "opus100": { + "u": 0.9492, + "t": 0.952, + "punct": null, + "u_acc": 0.804, + "t_acc": 0.826, + "punct_acc": null, + "threshold_t": 0.45432156324386597, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7677546608946609, + "t": 0.743875024975025, + "punct": null, + "u_acc": 0.3644, + "t_acc": 0.3168, + "punct_acc": null, + "threshold_t": 0.015574936755001545, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7953453968253968, + "t": 0.7721173337773338, + "punct": null, + "u_acc": 0.4156, + "t_acc": 0.3548, + "punct_acc": null, + "threshold_t": 0.015574936755001545, + "threshold_adj": 0.25 + } + }, + "kk": { + "ersatz": { + "u": 1.0, + "t": 0.996, + "punct": null, + "u_acc": 1.0, + "t_acc": 0.988, + "punct_acc": null, + "threshold_t": 0.9699932336807251, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9628886265249902, + "t": 0.9609602518693428, + "punct": null, + "u_acc": 0.8491735537190083, + "t_acc": 0.859504132231405, + "punct_acc": null, + "threshold_t": 0.6338708996772766, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9946564885496184, + "t": 0.8511450381679388, + "punct": null, + "u_acc": 0.9809160305343512, + "t_acc": 0.5534351145038168, + "punct_acc": null, + "threshold_t": 0.9999616146087646, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8094564497028562, + "t": 0.8205453873831696, + "punct": null, + "u_acc": 0.43394934976043803, + "t_acc": 0.45927446954141, + "punct_acc": null, + "threshold_t": 0.007852358743548393, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8717881859565638, + "t": 0.8694555805438763, + "punct": null, + "u_acc": 0.5900068446269678, + "t_acc": 0.5660506502395619, + "punct_acc": null, + "threshold_t": 0.020687777549028397, + "threshold_adj": 0.25 + } + }, + "km": { + "ersatz": { + "u": 0.9146377351462098, + "t": 0.9412994350282488, + "punct": null, + "u_acc": 0.7067796610169491, + "t_acc": 0.8084745762711865, + "punct_acc": null, + "threshold_t": 0.823272705078125, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9224840451644575, + "t": 0.9130584192439862, + "punct": null, + "u_acc": 0.7608247422680412, + "t_acc": 0.7484536082474227, + "punct_acc": null, + "threshold_t": 0.828818678855896, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8175438596491228, + "t": 0.8189760114572144, + "punct": null, + "u_acc": 0.45112781954887216, + "t_acc": 0.47368421052631576, + "punct_acc": null, + "threshold_t": 0.08858813345432281, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.842857142857143, + "t": 0.8402434658073755, + "punct": null, + "u_acc": 0.518796992481203, + "t_acc": 0.5037593984962406, + "punct_acc": null, + "threshold_t": 0.09281837195158005, + "threshold_adj": 0.25 + } + }, + "kn": { + "opus100": { + "u": 0.9228613569321533, + "t": 0.921386430678466, + "punct": null, + "u_acc": 0.7610619469026548, + "t_acc": 0.7566371681415929, + "punct_acc": null, + "threshold_t": 0.26319289207458496, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6613858363858364, + "t": 0.6177322677322677, + "punct": null, + "u_acc": 0.13986013986013987, + "t_acc": 0.08041958041958042, + "punct_acc": null, + "threshold_t": 0.05583753064274788, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.6927794427794428, + "t": 0.6763098013098012, + "punct": null, + "u_acc": 0.1888111888111888, + "t_acc": 0.16783216783216784, + "punct_acc": null, + "threshold_t": 0.10854282230138779, + "threshold_adj": 0.25 + } + }, + "ko": { + "opus100": { + "u": 0.8908457040035987, + "t": 0.8718302165670586, + "punct": null, + "u_acc": 0.6214574898785425, + "t_acc": 0.5323886639676113, + "punct_acc": null, + "threshold_t": 0.011282003484666348, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9994172494172495, + "t": 0.9976689976689977, + "punct": null, + "u_acc": 0.9982517482517482, + "t_acc": 0.993006993006993, + "punct_acc": null, + "threshold_t": 0.9992959499359131, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8335778354978356, + "t": 0.8348299567099566, + "punct": null, + "u_acc": 0.4648, + "t_acc": 0.4748, + "punct_acc": null, + "threshold_t": 0.7320255041122437, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.835387619047619, + "t": 0.8376041269841269, + "punct": null, + "u_acc": 0.4688, + "t_acc": 0.478, + "punct_acc": null, + "threshold_t": 0.5552946925163269, + "threshold_adj": 0.25 + } + }, + "ku": { + "opus100": { + "u": 0.9437283437283436, + "t": 0.941025641025641, + "punct": null, + "u_acc": 0.817047817047817, + "t_acc": 0.817047817047817, + "punct_acc": null, + "threshold_t": 0.39672014117240906, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6614380952380953, + "t": 0.5717316132453718, + "punct": null, + "u_acc": 0.074, + "t_acc": 0.1012, + "punct_acc": null, + "threshold_t": 0.020911945030093193, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.6987790476190476, + "t": 0.6228972516200689, + "punct": null, + "u_acc": 0.168, + "t_acc": 0.1596, + "punct_acc": null, + "threshold_t": 0.025309398770332336, + "threshold_adj": 0.25 + } + }, + "ky": { + "opus100": { + "u": 0.9738095238095238, + "t": 0.9705668934240362, + "punct": null, + "u_acc": 0.8976190476190476, + "t_acc": 0.8857142857142857, + "punct_acc": null, + "threshold_t": 0.14161771535873413, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.757516339869281, + "t": 0.7592451121862888, + "punct": null, + "u_acc": 0.27450980392156865, + "t_acc": 0.3235294117647059, + "punct_acc": null, + "threshold_t": 0.006371109746396542, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.838888888888889, + "t": 0.8213352007469655, + "punct": null, + "u_acc": 0.5, + "t_acc": 0.4117647058823529, + "punct_acc": null, + "threshold_t": 0.015029974281787872, + "threshold_adj": 0.25 + } + }, + "la": { + "ud": { + "u": 0.9837460317460318, + "t": 0.985079365079365, + "punct": null, + "u_acc": 0.9352380952380952, + "t_acc": 0.9485714285714286, + "punct_acc": null, + "threshold_t": 0.7066066265106201, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6666666666666666, + "t": 0.6666666666666666, + "punct": null, + "u_acc": 0.3333333333333333, + "t_acc": 0.3333333333333333, + "punct_acc": null, + "threshold_t": 0.12331382185220718, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8333333333333334, + "t": 0.7222222222222222, + "punct": null, + "u_acc": 0.6666666666666666, + "t_acc": 0.3333333333333333, + "punct_acc": null, + "threshold_t": 0.017666436731815338, + "threshold_adj": 0.25 + } + }, + "lt": { + "ersatz": { + "u": 0.9968, + "t": 0.9952000000000001, + "punct": null, + "u_acc": 0.984, + "t_acc": 0.976, + "punct_acc": null, + "threshold_t": 0.02686471678316593, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9472254224270353, + "t": 0.9459197388632874, + "punct": null, + "u_acc": 0.8185483870967742, + "t_acc": 0.8145161290322581, + "punct_acc": null, + "threshold_t": 0.13773049414157867, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.989083820662768, + "t": 0.989083820662768, + "punct": null, + "u_acc": 0.9649122807017544, + "t_acc": 0.9649122807017544, + "punct_acc": null, + "threshold_t": 0.16340047121047974, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8229225396825397, + "t": 0.8231008080808082, + "punct": null, + "u_acc": 0.4768, + "t_acc": 0.4564, + "punct_acc": null, + "threshold_t": 0.026166867464780807, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8976031746031745, + "t": 0.8859110711510711, + "punct": null, + "u_acc": 0.6664, + "t_acc": 0.61, + "punct_acc": null, + "threshold_t": 0.04080215469002724, + "threshold_adj": 0.25 + } + }, + "lv": { + "ersatz": { + "u": 0.9978174603174603, + "t": 0.9982804232804232, + "punct": null, + "u_acc": 0.9920634920634921, + "t_acc": 0.9940476190476191, + "punct_acc": null, + "threshold_t": 0.930321455001831, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9550877114771639, + "t": 0.9545988156535824, + "punct": null, + "u_acc": 0.8417849898580122, + "t_acc": 0.8417849898580122, + "punct_acc": null, + "threshold_t": 0.2878369987010956, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9965174129353234, + "t": 0.9969596462133775, + "punct": null, + "u_acc": 0.988391376451078, + "t_acc": 0.9917081260364843, + "punct_acc": null, + "threshold_t": 0.6829102635383606, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8454939682539684, + "t": 0.8351733333333333, + "punct": null, + "u_acc": 0.542, + "t_acc": 0.4996, + "punct_acc": null, + "threshold_t": 0.08836416155099869, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.9030337085137086, + "t": 0.8945135531135531, + "punct": null, + "u_acc": 0.6828, + "t_acc": 0.6492, + "punct_acc": null, + "threshold_t": 0.13115759193897247, + "threshold_adj": 0.25 + } + }, + "mg": { + "opus100": { + "u": 0.9716695585116638, + "t": 0.9716695585116638, + "punct": null, + "u_acc": 0.888663967611336, + "t_acc": 0.888663967611336, + "punct_acc": null, + "threshold_t": 0.25100767612457275, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6867385700719032, + "t": 0.6408342686120464, + "punct": null, + "u_acc": 0.14814814814814814, + "t_acc": 0.14814814814814814, + "punct_acc": null, + "threshold_t": 0.009800557978451252, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8371252204585536, + "t": 0.83342151675485, + "punct": null, + "u_acc": 0.5, + "t_acc": 0.48148148148148145, + "punct_acc": null, + "threshold_t": 0.17500999569892883, + "threshold_adj": 0.25 + } + }, + "mk": { + "opus100": { + "u": 0.9636857142857143, + "t": 0.962952380952381, + "punct": null, + "u_acc": 0.842, + "t_acc": 0.834, + "punct_acc": null, + "threshold_t": 0.10753495991230011, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8001609523809524, + "t": 0.8008037695637695, + "punct": null, + "u_acc": 0.4216, + "t_acc": 0.4176, + "punct_acc": null, + "threshold_t": 0.045858338475227356, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8731060317460319, + "t": 0.8661448196248195, + "punct": null, + "u_acc": 0.6032, + "t_acc": 0.5668, + "punct_acc": null, + "threshold_t": 0.06459448486566544, + "threshold_adj": 0.25 + } + }, + "ml": { + "opus100": { + "u": 0.9271179957926946, + "t": 0.9195639701663798, + "punct": null, + "u_acc": 0.7228915662650602, + "t_acc": 0.6907630522088354, + "punct_acc": null, + "threshold_t": 0.1702415496110916, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6571487742122663, + "t": 0.6486557497470197, + "punct": null, + "u_acc": 0.15343915343915343, + "t_acc": 0.14947089947089948, + "punct_acc": null, + "threshold_t": 0.2101818025112152, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7322709330645838, + "t": 0.7145923153859661, + "punct": null, + "u_acc": 0.2857142857142857, + "t_acc": 0.24206349206349206, + "punct_acc": null, + "threshold_t": 0.05646508187055588, + "threshold_adj": 0.25 + } + }, + "mn": { + "opus100": { + "u": 0.865203562340967, + "t": null, + "punct": null, + "u_acc": 0.5906488549618321, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8473314285714285, + "t": 0.8612730158730159, + "punct": null, + "u_acc": 0.546, + "t_acc": 0.5708, + "punct_acc": null, + "threshold_t": 0.03928644210100174, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8877815873015872, + "t": 0.8951276767676767, + "punct": null, + "u_acc": 0.6552, + "t_acc": 0.656, + "punct_acc": null, + "threshold_t": 0.036739982664585114, + "threshold_adj": 0.25 + }, + "nllb": { + "u": 0.9729771428571429, + "t": 0.9716901587301587, + "punct": null, + "u_acc": 0.9004, + "t_acc": 0.8928, + "punct_acc": null, + "threshold_t": 0.1649118959903717, + "threshold_adj": 0.25 + } + }, + "mr": { + "opus100": { + "u": 0.9736655145929339, + "t": 0.9741263440860214, + "punct": null, + "u_acc": 0.9032258064516129, + "t_acc": 0.907258064516129, + "punct_acc": null, + "threshold_t": 0.4480428099632263, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9833333333333334, + "t": 1.0, + "punct": null, + "u_acc": 0.9166666666666666, + "t_acc": 1.0, + "punct_acc": null, + "threshold_t": 0.9346514344215393, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6451412343212344, + "t": 0.6462819669219669, + "punct": null, + "u_acc": 0.1764, + "t_acc": 0.1772, + "punct_acc": null, + "threshold_t": 0.2562134265899658, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7641590365190365, + "t": 0.7544944144744145, + "punct": null, + "u_acc": 0.338, + "t_acc": 0.3148, + "punct_acc": null, + "threshold_t": 0.0996399000287056, + "threshold_adj": 0.25 + } + }, + "ms": { + "opus100": { + "u": 0.9581324710954342, + "t": 0.9584068195179307, + "punct": null, + "u_acc": 0.8395061728395061, + "t_acc": 0.8395061728395061, + "punct_acc": null, + "threshold_t": 0.2698633074760437, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7658498677248677, + "t": 0.7547525853775854, + "punct": null, + "u_acc": 0.3392857142857143, + "t_acc": 0.31845238095238093, + "punct_acc": null, + "threshold_t": 0.015180590562522411, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8315906084656085, + "t": 0.8287844265522838, + "punct": null, + "u_acc": 0.4880952380952381, + "t_acc": 0.47559523809523807, + "punct_acc": null, + "threshold_t": 0.027027007192373276, + "threshold_adj": 0.25 + } + }, + "mt": { + "opus100": { + "u": 0.9148014266435318, + "t": 0.9156111432427222, + "punct": null, + "u_acc": 0.7348178137651822, + "t_acc": 0.7388663967611336, + "punct_acc": null, + "threshold_t": 0.2781420052051544, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9456410256410257, + "t": 0.9433333333333332, + "punct": null, + "u_acc": 0.8538461538461538, + "t_acc": 0.8307692307692308, + "punct_acc": null, + "threshold_t": 0.044065289199352264, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.685897435897436, + "t": 0.5904761904761904, + "punct": null, + "u_acc": 0.11538461538461539, + "t_acc": 0.15384615384615385, + "punct_acc": null, + "threshold_t": 0.0010553739266470075, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8205128205128205, + "t": 0.8014652014652015, + "punct": null, + "u_acc": 0.4230769230769231, + "t_acc": 0.38461538461538464, + "punct_acc": null, + "threshold_t": 0.04599367454648018, + "threshold_adj": 0.25 + } + }, + "my": { + "opus100": { + "u": 0.9473118279569893, + "t": 0.9471102150537634, + "punct": null, + "u_acc": 0.8225806451612904, + "t_acc": 0.8286290322580645, + "punct_acc": null, + "threshold_t": 0.41932639479637146, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.9420285714285713, + "t": 0.9417857142857143, + "punct": null, + "u_acc": 0.8132, + "t_acc": 0.802, + "punct_acc": null, + "threshold_t": 0.028562014922499657, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.9430019047619047, + "t": 0.9429577777777779, + "punct": null, + "u_acc": 0.818, + "t_acc": 0.8028, + "punct_acc": null, + "threshold_t": 0.01053391583263874, + "threshold_adj": 0.25 + } + }, + "ne": { + "opus100": { + "u": 0.9172052753448103, + "t": 0.9180509413067552, + "punct": null, + "u_acc": 0.7315010570824524, + "t_acc": 0.7272727272727273, + "punct_acc": null, + "threshold_t": 0.17043596506118774, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7444689587546731, + "t": 0.72167594089863, + "punct": null, + "u_acc": 0.305019305019305, + "t_acc": 0.2702702702702703, + "punct_acc": null, + "threshold_t": 0.02252039685845375, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7513194548908834, + "t": 0.7322153800094976, + "punct": null, + "u_acc": 0.29922779922779924, + "t_acc": 0.2857142857142857, + "punct_acc": null, + "threshold_t": 0.01884850673377514, + "threshold_adj": 0.25 + } + }, + "nl": { + "opus100": { + "u": 0.962, + "t": null, + "punct": null, + "u_acc": 0.818, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9744966442953019, + "t": 0.9762863534675615, + "punct": null, + "u_acc": 0.8993288590604027, + "t_acc": 0.8993288590604027, + "punct_acc": null, + "threshold_t": 0.05097693204879761, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8675166081871345, + "t": 0.868102574002574, + "punct": null, + "u_acc": 0.5872, + "t_acc": 0.5896, + "punct_acc": null, + "threshold_t": 0.2554411292076111, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.9096547034252297, + "t": 0.9115365422565422, + "punct": null, + "u_acc": 0.6836, + "t_acc": 0.6956, + "punct_acc": null, + "threshold_t": 0.306928426027298, + "threshold_adj": 0.25 + } + }, + "no": { + "opus100": { + "u": 0.9727953498114789, + "t": 0.9733294930875577, + "punct": null, + "u_acc": 0.8850806451612904, + "t_acc": 0.8850806451612904, + "punct_acc": null, + "threshold_t": 0.3140411078929901, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9946969696969697, + "t": 0.9934573002754822, + "punct": null, + "u_acc": 0.9834710743801653, + "t_acc": 0.9772727272727273, + "punct_acc": null, + "threshold_t": 0.16307611763477325, + "threshold_adj": 0.25 + } + }, + "pa": { + "opus100": { + "u": 0.9101190476190477, + "t": 0.9117486338797814, + "punct": null, + "u_acc": 0.7069672131147541, + "t_acc": 0.6926229508196722, + "punct_acc": null, + "threshold_t": 0.12786263227462769, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7392281477387862, + "t": 0.7397812589301951, + "punct": null, + "u_acc": 0.2765957446808511, + "t_acc": 0.2978723404255319, + "punct_acc": null, + "threshold_t": 0.05214986950159073, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7989868287740631, + "t": 0.7651937306192625, + "punct": null, + "u_acc": 0.43617021276595747, + "t_acc": 0.3829787234042553, + "punct_acc": null, + "threshold_t": 0.00515219010412693, + "threshold_adj": 0.25 + } + }, + "pl": { + "ersatz": { + "u": 0.9944223107569722, + "t": 0.9930942895086322, + "punct": null, + "u_acc": 0.9800796812749004, + "t_acc": 0.9760956175298805, + "punct_acc": null, + "threshold_t": 0.3285367488861084, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9694988479262674, + "t": 0.9637960829493087, + "punct": null, + "u_acc": 0.8649193548387096, + "t_acc": 0.8387096774193549, + "punct_acc": null, + "threshold_t": 0.05730303004384041, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9971119133574009, + "t": 0.9139590854392299, + "punct": null, + "u_acc": 0.9855595667870036, + "t_acc": 0.7418772563176895, + "punct_acc": null, + "threshold_t": 0.9999696016311646, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8309618070818071, + "t": 0.8433181529581528, + "punct": null, + "u_acc": 0.5116, + "t_acc": 0.5112, + "punct_acc": null, + "threshold_t": 0.036038294434547424, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.9019327561327561, + "t": 0.8879969408369408, + "punct": null, + "u_acc": 0.6936, + "t_acc": 0.6244, + "punct_acc": null, + "threshold_t": 0.03321656212210655, + "threshold_adj": 0.25 + } + }, + "ps": { + "ersatz": { + "u": 0.9229856165340037, + "t": 0.9237257366289625, + "punct": null, + "u_acc": 0.7346041055718475, + "t_acc": 0.7404692082111437, + "punct_acc": null, + "threshold_t": 0.7467349171638489, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9265033407572383, + "t": 0.9236080178173719, + "punct": null, + "u_acc": 0.7728285077951003, + "t_acc": 0.7661469933184856, + "punct_acc": null, + "threshold_t": 0.3107669949531555, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.724319314100336, + "t": 0.7157379927452919, + "punct": null, + "u_acc": 0.25547445255474455, + "t_acc": 0.26277372262773724, + "punct_acc": null, + "threshold_t": 0.07903829216957092, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7289885297184567, + "t": 0.7178550019394194, + "punct": null, + "u_acc": 0.26277372262773724, + "t_acc": 0.27007299270072993, + "punct_acc": null, + "threshold_t": 0.08234239369630814, + "threshold_adj": 0.25 + } + }, + "pt": { + "opus100": { + "u": 0.9679679969153653, + "t": 0.9697898592635436, + "punct": null, + "u_acc": 0.8582995951417004, + "t_acc": 0.8643724696356275, + "punct_acc": null, + "threshold_t": 0.3534495234489441, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9892694063926941, + "t": 0.9860730593607306, + "punct": null, + "u_acc": 0.9623287671232876, + "t_acc": 0.9554794520547946, + "punct_acc": null, + "threshold_t": 0.3783186078071594, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8387625152625152, + "t": 0.8331442767442768, + "punct": null, + "u_acc": 0.5264, + "t_acc": 0.4864, + "punct_acc": null, + "threshold_t": 0.07639459520578384, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.9011009523809523, + "t": 0.9021099567099568, + "punct": null, + "u_acc": 0.682, + "t_acc": 0.6896, + "punct_acc": null, + "threshold_t": 0.3179333806037903, + "threshold_adj": 0.25 + } + }, + "ro": { + "ersatz": { + "u": 0.9953333333333333, + "t": 0.996, + "punct": null, + "u_acc": 0.978, + "t_acc": 0.984, + "punct_acc": null, + "threshold_t": 0.8954811096191406, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9702356902356902, + "t": 0.9715824915824915, + "punct": null, + "u_acc": 0.8828282828282829, + "t_acc": 0.8868686868686869, + "punct_acc": null, + "threshold_t": 0.29380476474761963, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9936628643852978, + "t": 0.9860583016476552, + "punct": null, + "u_acc": 0.973384030418251, + "t_acc": 0.9581749049429658, + "punct_acc": null, + "threshold_t": 0.8251592516899109, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8206790764790763, + "t": 0.8228838095238094, + "punct": null, + "u_acc": 0.4892, + "t_acc": 0.478, + "punct_acc": null, + "threshold_t": 0.11436111479997635, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8928203174603175, + "t": 0.892424126984127, + "punct": null, + "u_acc": 0.6652, + "t_acc": 0.6608, + "punct_acc": null, + "threshold_t": 0.1856377124786377, + "threshold_adj": 0.25 + } + }, + "ru": { + "ersatz": { + "u": 0.996774193548387, + "t": 0.9962365591397849, + "punct": null, + "u_acc": 0.9838709677419355, + "t_acc": 0.9838709677419355, + "punct_acc": null, + "threshold_t": 0.5360589623451233, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9491217798594848, + "t": null, + "punct": null, + "u_acc": 0.8155737704918032, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9514357864357865, + "t": 0.955930735930736, + "punct": null, + "u_acc": 0.8318181818181818, + "t_acc": 0.85, + "punct_acc": null, + "threshold_t": 0.4840237498283386, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8387212698412699, + "t": 0.828416305916306, + "punct": null, + "u_acc": 0.514, + "t_acc": 0.4616, + "punct_acc": null, + "threshold_t": 0.07608737796545029, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.897336507936508, + "t": 0.8971288888888889, + "punct": null, + "u_acc": 0.6644, + "t_acc": 0.6628, + "punct_acc": null, + "threshold_t": 0.23210446536540985, + "threshold_adj": 0.25 + } + }, + "si": { + "opus100": { + "u": 0.9177515360983103, + "t": 0.9168682795698925, + "punct": null, + "u_acc": 0.6854838709677419, + "t_acc": 0.6975806451612904, + "punct_acc": null, + "threshold_t": 0.4628986120223999, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7501918408895153, + "t": 0.7053738808184774, + "punct": null, + "u_acc": 0.31007751937984496, + "t_acc": 0.2558139534883721, + "punct_acc": null, + "threshold_t": 0.013289653696119785, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7575008109891831, + "t": 0.7200122014075502, + "punct": null, + "u_acc": 0.3333333333333333, + "t_acc": 0.2713178294573643, + "punct_acc": null, + "threshold_t": 0.019190356135368347, + "threshold_adj": 0.25 + } + }, + "sk": { + "opus100": { + "u": 0.9716205837173578, + "t": 0.9709485407066052, + "punct": null, + "u_acc": 0.8870967741935484, + "t_acc": 0.8810483870967742, + "punct_acc": null, + "threshold_t": 0.11327581852674484, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9860377358490566, + "t": 0.981006289308176, + "punct": null, + "u_acc": 0.9584905660377359, + "t_acc": 0.9433962264150944, + "punct_acc": null, + "threshold_t": 0.5051817297935486, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8377268176268177, + "t": 0.8198992339078546, + "punct": null, + "u_acc": 0.5056, + "t_acc": 0.45, + "punct_acc": null, + "threshold_t": 0.050622206181287766, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8980011033411034, + "t": 0.8974491233912286, + "punct": null, + "u_acc": 0.6636, + "t_acc": 0.6676, + "punct_acc": null, + "threshold_t": 0.2900650203227997, + "threshold_adj": 0.25 + } + }, + "sl": { + "opus100": { + "u": 0.9664754255115701, + "t": 0.9609294320137693, + "punct": null, + "u_acc": 0.8493975903614458, + "t_acc": 0.8253012048192772, + "punct_acc": null, + "threshold_t": 0.05151665583252907, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9955357142857142, + "t": 0.9970833333333333, + "punct": null, + "u_acc": 0.98125, + "t_acc": 0.9875, + "punct_acc": null, + "threshold_t": 0.49169063568115234, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8435489466089466, + "t": 0.8443747355912062, + "punct": null, + "u_acc": 0.5404, + "t_acc": 0.5164, + "punct_acc": null, + "threshold_t": 0.05924160033464432, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.9066025974025975, + "t": 0.9066210101010099, + "punct": null, + "u_acc": 0.698, + "t_acc": 0.7024, + "punct_acc": null, + "threshold_t": 0.3213497996330261, + "threshold_adj": 0.25 + } + }, + "sq": { + "opus100": { + "u": 0.9715737514518002, + "t": 0.9746128532713898, + "punct": null, + "u_acc": 0.8841463414634146, + "t_acc": 0.8983739837398373, + "punct_acc": null, + "threshold_t": 0.5294507145881653, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9555555555555555, + "t": null, + "punct": null, + "u_acc": 0.8666666666666667, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7720403174603174, + "t": 0.7657260206460207, + "punct": null, + "u_acc": 0.3688, + "t_acc": 0.3504, + "punct_acc": null, + "threshold_t": 0.02996820956468582, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8452485714285715, + "t": 0.8302135353535354, + "punct": null, + "u_acc": 0.5348, + "t_acc": 0.4808, + "punct_acc": null, + "threshold_t": 0.02876061387360096, + "threshold_adj": 0.25 + } + }, + "sr": { + "opus100": { + "u": 0.9736278447121821, + "t": 0.9661311914323962, + "punct": null, + "u_acc": 0.8775100401606426, + "t_acc": 0.8453815261044176, + "punct_acc": null, + "threshold_t": 0.0625503733754158, + "threshold_adj": 0.25 + }, + "ud": { + "u": 1.0, + "t": 1.0, + "punct": null, + "u_acc": 1.0, + "t_acc": 1.0, + "punct_acc": null, + "threshold_t": 0.8676129579544067, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8230555572532042, + "t": 0.821675468975469, + "punct": null, + "u_acc": 0.4912, + "t_acc": 0.4892, + "punct_acc": null, + "threshold_t": 0.11506707221269608, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8994581041181041, + "t": 0.8992537662337663, + "punct": null, + "u_acc": 0.6784, + "t_acc": 0.6784, + "punct_acc": null, + "threshold_t": 0.2678655982017517, + "threshold_adj": 0.25 + } + }, + "sv": { + "opus100": { + "u": 0.967489003633582, + "t": 0.9672117039586919, + "punct": null, + "u_acc": 0.8554216867469879, + "t_acc": 0.8534136546184738, + "punct_acc": null, + "threshold_t": 0.11946509778499603, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9680878552971576, + "t": 0.9652454780361756, + "punct": null, + "u_acc": 0.8798449612403101, + "t_acc": 0.8682170542635659, + "punct_acc": null, + "threshold_t": 0.10406601428985596, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8363161904761907, + "t": 0.8405295815295817, + "punct": null, + "u_acc": 0.516, + "t_acc": 0.5152, + "punct_acc": null, + "threshold_t": 0.07248911261558533, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8979314285714285, + "t": 0.8997561904761904, + "punct": null, + "u_acc": 0.6668, + "t_acc": 0.6664, + "punct_acc": null, + "threshold_t": 0.19254335761070251, + "threshold_adj": 0.25 + } + }, + "ta": { + "ersatz": { + "u": 0.9835325365205844, + "t": 0.9811420982735723, + "punct": null, + "u_acc": 0.9282868525896414, + "t_acc": 0.9243027888446215, + "punct_acc": null, + "threshold_t": 0.9014356732368469, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.8999322493224932, + "t": 0.8989159891598916, + "punct": null, + "u_acc": 0.6666666666666666, + "t_acc": 0.6727642276422764, + "punct_acc": null, + "threshold_t": 0.48352038860321045, + "threshold_adj": 0.25 + }, + "ud": { + "u": 1.0, + "t": 1.0, + "punct": null, + "u_acc": 1.0, + "t_acc": 1.0, + "punct_acc": null, + "threshold_t": 0.9997159838676453, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7107241710444557, + "t": 0.6967592352289862, + "punct": null, + "u_acc": 0.2569395017793594, + "t_acc": 0.23416370106761566, + "punct_acc": null, + "threshold_t": 0.0626593828201294, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7764354585706899, + "t": 0.7594564352215598, + "punct": null, + "u_acc": 0.3501779359430605, + "t_acc": 0.3096085409252669, + "punct_acc": null, + "threshold_t": 0.030735300853848457, + "threshold_adj": 0.25 + } + }, + "te": { + "opus100": { + "u": 0.9148979591836734, + "t": 0.917687074829932, + "punct": null, + "u_acc": 0.7081632653061225, + "t_acc": 0.7163265306122449, + "punct_acc": null, + "threshold_t": 0.27271151542663574, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6925504505564929, + "t": 0.689035368793677, + "punct": null, + "u_acc": 0.1933534743202417, + "t_acc": 0.18882175226586104, + "punct_acc": null, + "threshold_t": 0.23542112112045288, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7423116577950416, + "t": 0.7391910036925142, + "punct": null, + "u_acc": 0.28700906344410876, + "t_acc": 0.283987915407855, + "punct_acc": null, + "threshold_t": 0.16129159927368164, + "threshold_adj": 0.25 + } + }, + "tg": { + "opus100": { + "u": 0.9488621151271753, + "t": 0.9437081659973225, + "punct": null, + "u_acc": 0.8172690763052208, + "t_acc": 0.8052208835341366, + "punct_acc": null, + "threshold_t": 0.3201037347316742, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7369883040935673, + "t": 0.7506787802840434, + "punct": null, + "u_acc": 0.2631578947368421, + "t_acc": 0.2894736842105263, + "punct_acc": null, + "threshold_t": 0.08675067126750946, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7809106098579782, + "t": 0.8110275689223058, + "punct": null, + "u_acc": 0.35526315789473684, + "t_acc": 0.42105263157894735, + "punct_acc": null, + "threshold_t": 0.03267653286457062, + "threshold_adj": 0.25 + } + }, + "th": { + "opus100": { + "u": 0.8636075036075036, + "t": 0.8624627224627226, + "punct": null, + "u_acc": 0.5050505050505051, + "t_acc": 0.498989898989899, + "punct_acc": null, + "threshold_t": 0.21616829931735992, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9085333333333333, + "t": null, + "punct": null, + "u_acc": 0.736, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.751109090909091, + "t": 0.7495839036825244, + "punct": null, + "u_acc": 0.3108, + "t_acc": 0.3068, + "punct_acc": null, + "threshold_t": 0.0045921653509140015, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.752932582972583, + "t": 0.7516781841846311, + "punct": null, + "u_acc": 0.3148, + "t_acc": 0.3124, + "punct_acc": null, + "threshold_t": 0.0045921653509140015, + "threshold_adj": 0.25 + } + }, + "tr": { + "ersatz": { + "u": 0.9891907294832828, + "t": 0.9888361195542047, + "punct": null, + "u_acc": 0.9601063829787234, + "t_acc": 0.9601063829787234, + "punct_acc": null, + "threshold_t": 0.3593780994415283, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9624156545209176, + "t": 0.9550607287449393, + "punct": null, + "u_acc": 0.8481781376518218, + "t_acc": 0.8097165991902834, + "punct_acc": null, + "threshold_t": 0.07877299189567566, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9867878787878788, + "t": 0.9859393939393939, + "punct": null, + "u_acc": 0.9490909090909091, + "t_acc": 0.9490909090909091, + "punct_acc": null, + "threshold_t": 0.6669154763221741, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8340050793650795, + "t": 0.8185655056055055, + "punct": null, + "u_acc": 0.4952, + "t_acc": 0.4464, + "punct_acc": null, + "threshold_t": 0.023632079362869263, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8856450793650794, + "t": 0.8845669841269842, + "punct": null, + "u_acc": 0.624, + "t_acc": 0.62, + "punct_acc": null, + "threshold_t": 0.17539633810520172, + "threshold_adj": 0.25 + } + }, + "uk": { + "opus100": { + "u": 0.9587779690189329, + "t": 0.9587779690189328, + "punct": null, + "u_acc": 0.8192771084337349, + "t_acc": 0.8192771084337349, + "punct_acc": null, + "threshold_t": 0.19237442314624786, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.975595238095238, + "t": 0.9764880952380952, + "punct": null, + "u_acc": 0.9241071428571429, + "t_acc": 0.9285714285714286, + "punct_acc": null, + "threshold_t": 0.5130528211593628, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8214952380952382, + "t": 0.806336015096015, + "punct": null, + "u_acc": 0.4796, + "t_acc": 0.4172, + "punct_acc": null, + "threshold_t": 0.02443261258304119, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8933983638583639, + "t": 0.8817654487734485, + "punct": null, + "u_acc": 0.6568, + "t_acc": 0.6036, + "punct_acc": null, + "threshold_t": 0.095364049077034, + "threshold_adj": 0.25 + } + }, + "ur": { + "opus100": { + "u": 0.8389489042031415, + "t": 0.8190908197264131, + "punct": null, + "u_acc": 0.5084745762711864, + "t_acc": 0.4385593220338983, + "punct_acc": null, + "threshold_t": 0.09457703679800034, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9848614072494669, + "t": 0.9833688699360341, + "punct": null, + "u_acc": 0.9477611940298507, + "t_acc": 0.9402985074626866, + "punct_acc": null, + "threshold_t": 0.18240685760974884, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7816052024942056, + "t": 0.7787401618593809, + "punct": null, + "u_acc": 0.3910585817060637, + "t_acc": 0.3854059609455293, + "punct_acc": null, + "threshold_t": 0.1797940731048584, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8067155409395903, + "t": 0.7990697979649676, + "punct": null, + "u_acc": 0.44964028776978415, + "t_acc": 0.4188078108941418, + "punct_acc": null, + "threshold_t": 0.10159841179847717, + "threshold_adj": 0.25 + } + }, + "uz": { + "opus100": { + "u": 0.9406122448979591, + "t": 0.9391836734693878, + "punct": null, + "u_acc": 0.763265306122449, + "t_acc": 0.7979591836734694, + "punct_acc": null, + "threshold_t": 0.529529869556427, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7705311097716162, + "t": 0.7627736831850757, + "punct": null, + "u_acc": 0.33016877637130804, + "t_acc": 0.3259493670886076, + "punct_acc": null, + "threshold_t": 0.00559146236628294, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8235483222824995, + "t": 0.825956901748041, + "punct": null, + "u_acc": 0.4588607594936709, + "t_acc": 0.4704641350210971, + "punct_acc": null, + "threshold_t": 0.03608600050210953, + "threshold_adj": 0.25 + } + }, + "vi": { + "opus100": { + "u": 0.9631393298059965, + "t": 0.9635508524397415, + "punct": null, + "u_acc": 0.8477366255144033, + "t_acc": 0.8497942386831275, + "punct_acc": null, + "threshold_t": 0.30781763792037964, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9933333333333334, + "t": 0.991, + "punct": null, + "u_acc": 0.97, + "t_acc": 0.965, + "punct_acc": null, + "threshold_t": 0.7917988300323486, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7986120634920635, + "t": 0.7889322144522144, + "punct": null, + "u_acc": 0.4304, + "t_acc": 0.3968, + "punct_acc": null, + "threshold_t": 0.015247425995767117, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8744546031746031, + "t": 0.8718650793650795, + "punct": null, + "u_acc": 0.602, + "t_acc": 0.5884, + "punct_acc": null, + "threshold_t": 0.13723838329315186, + "threshold_adj": 0.25 + } + }, + "xh": { + "opus100": { + "u": 0.9418395573997235, + "t": 0.9430843706777317, + "punct": null, + "u_acc": 0.7904564315352697, + "t_acc": 0.8008298755186722, + "punct_acc": null, + "threshold_t": 0.3049139678478241, + "threshold_adj": 0.25 + } + }, + "yi": { + "opus100": { + "u": 0.9334378265412747, + "t": 0.9426332288401253, + "punct": null, + "u_acc": 0.786833855799373, + "t_acc": 0.8119122257053292, + "punct_acc": null, + "threshold_t": 0.11939600855112076, + "threshold_adj": 0.25 + } + }, + "yo": { + "opus100": { + "u": 0.8417018798418117, + "t": null, + "punct": null, + "u_acc": 0.5085324232081911, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.8237500000000001, + "t": null, + "punct": null, + "u_acc": 0.4375, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "nllb": { + "u": 0.9475142857142856, + "t": 0.9498838095238094, + "punct": null, + "u_acc": 0.8148, + "t_acc": 0.8332, + "punct_acc": null, + "threshold_t": 0.39778682589530945, + "threshold_adj": 0.25 + } + }, + "zh": { + "ersatz": { + "u": 0.9652666666666666, + "t": 0.9640761904761905, + "punct": null, + "u_acc": 0.924, + "t_acc": 0.912, + "punct_acc": null, + "threshold_t": 0.00892738439142704, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9179505605058925, + "t": 0.8811392162498802, + "punct": null, + "u_acc": 0.744466800804829, + "t_acc": 0.5995975855130785, + "punct_acc": null, + "threshold_t": 0.005369078367948532, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.996, + "t": 0.9927999999999999, + "punct": null, + "u_acc": 0.992, + "t_acc": 0.976, + "punct_acc": null, + "threshold_t": 0.019473789259791374, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7272939876839185, + "t": 0.7080064500597572, + "punct": null, + "u_acc": 0.2561697926949654, + "t_acc": 0.24679170779861798, + "punct_acc": null, + "threshold_t": 0.007393041625618935, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7372103135429888, + "t": 0.7333701562230684, + "punct": null, + "u_acc": 0.2818361303060217, + "t_acc": 0.2917077986179664, + "punct_acc": null, + "threshold_t": 0.03242524340748787, + "threshold_adj": 0.25 + } + }, + "zu": { + "opus100": { + "u": 0.9611212861212861, + "t": 0.9554945054945055, + "punct": null, + "u_acc": 0.8653846153846154, + "t_acc": 0.8333333333333334, + "punct_acc": null, + "threshold_t": 0.0744938999414444, + "threshold_adj": 0.25 + } + }, + "tr-de": {}, + "es-en": {}, + "vi-en": {}, + "en-de": {} +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/sat-sm-3l-limited-looakahead.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/sat-sm-3l-limited-looakahead.json new file mode 100644 index 0000000000000000000000000000000000000000..b9104bde0c8153926215e4761752727f24ddc1cb --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/sat-sm-3l-limited-looakahead.json @@ -0,0 +1,3346 @@ +{ + "af": { + "opus100": { + "u": 0.9078217237308147, + "t": 0.911455761868985, + "punct": null, + "u_acc": 0.6818181818181818, + "t_acc": 0.6942148760330579, + "punct_acc": null, + "threshold_t": 0.28395751118659973, + "threshold_adj": 0.25 + }, + "ud": { + "u": 1.0, + "t": 1.0, + "punct": null, + "u_acc": 1.0, + "t_acc": 1.0, + "punct_acc": null, + "threshold_t": 0.8009100556373596, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7738754578754579, + "t": 0.7446549006549007, + "punct": null, + "u_acc": 0.39076923076923076, + "t_acc": 0.2923076923076923, + "punct_acc": null, + "threshold_t": 0.04073525592684746, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8715457875457875, + "t": 0.8739047619047617, + "punct": null, + "u_acc": 0.6215384615384615, + "t_acc": 0.6246153846153846, + "punct_acc": null, + "threshold_t": 0.2337186187505722, + "threshold_adj": 0.25 + } + }, + "am": { + "opus100": { + "u": 0.849158828676901, + "t": 0.8491970769079202, + "punct": null, + "u_acc": 0.5240963855421686, + "t_acc": 0.5261044176706827, + "punct_acc": null, + "threshold_t": 0.21086737513542175, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6757998511904761, + "t": 0.6626643602516764, + "punct": null, + "u_acc": 0.1796875, + "t_acc": 0.1875, + "punct_acc": null, + "threshold_t": 0.09794272482395172, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.6865017361111112, + "t": 0.6707532918470418, + "punct": null, + "u_acc": 0.203125, + "t_acc": 0.1875, + "punct_acc": null, + "threshold_t": 0.11277268826961517, + "threshold_adj": 0.25 + } + }, + "ar": { + "ersatz": { + "u": 0.9219098277608916, + "t": 0.9338779128672746, + "punct": null, + "u_acc": 0.7420212765957447, + "t_acc": 0.7659574468085106, + "punct_acc": null, + "threshold_t": 0.12341130524873734, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.8535666475425511, + "t": 0.8463504812902403, + "punct": null, + "u_acc": 0.5622489959839357, + "t_acc": 0.5321285140562249, + "punct_acc": null, + "threshold_t": 0.052781593054533005, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9091503267973855, + "t": 0.9123155929038282, + "punct": null, + "u_acc": 0.7058823529411765, + "t_acc": 0.7176470588235294, + "punct_acc": null, + "threshold_t": 0.3894990384578705, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6940686291486292, + "t": 0.6562026147083947, + "punct": null, + "u_acc": 0.1788, + "t_acc": 0.174, + "punct_acc": null, + "threshold_t": 0.03418400138616562, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7277521212121213, + "t": 0.6925875042604454, + "punct": null, + "u_acc": 0.2564, + "t_acc": 0.224, + "punct_acc": null, + "threshold_t": 0.03231871873140335, + "threshold_adj": 0.25 + } + }, + "az": { + "opus100": { + "u": 0.8837320421657772, + "t": 0.8842675174000475, + "punct": null, + "u_acc": 0.5903614457831325, + "t_acc": 0.5903614457831325, + "punct_acc": null, + "threshold_t": 0.24214908480644226, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7971889189087771, + "t": 0.7995948167933984, + "punct": null, + "u_acc": 0.39893617021276595, + "t_acc": 0.40484633569739953, + "punct_acc": null, + "threshold_t": 0.11989647895097733, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8686001350894968, + "t": 0.862863991144133, + "punct": null, + "u_acc": 0.5851063829787234, + "t_acc": 0.5537825059101655, + "punct_acc": null, + "threshold_t": 0.14061327278614044, + "threshold_adj": 0.25 + } + }, + "be": { + "opus100": { + "u": 0.9214043254776453, + "t": 0.9200465522257782, + "punct": null, + "u_acc": 0.7515274949083504, + "t_acc": 0.7474541751527495, + "punct_acc": null, + "threshold_t": 0.26165804266929626, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9328376703841388, + "t": 0.9245530182333156, + "punct": null, + "u_acc": 0.7806691449814126, + "t_acc": 0.7732342007434945, + "punct_acc": null, + "threshold_t": 0.5624202489852905, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7392797915185976, + "t": 0.7223003184716358, + "punct": null, + "u_acc": 0.2946138870863076, + "t_acc": 0.26216742375081115, + "punct_acc": null, + "threshold_t": 0.12178900092840195, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8611198665059794, + "t": 0.859686041840487, + "punct": null, + "u_acc": 0.5762491888384166, + "t_acc": 0.5743024010382868, + "punct_acc": null, + "threshold_t": 0.2369731217622757, + "threshold_adj": 0.25 + } + }, + "bg": { + "opus100": { + "u": 0.9659986639946561, + "t": 0.968002672010688, + "punct": null, + "u_acc": 0.843687374749499, + "t_acc": 0.8537074148296593, + "punct_acc": null, + "threshold_t": 0.3553542196750641, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9968936678614098, + "t": 0.9976105137395459, + "punct": null, + "u_acc": 0.989247311827957, + "t_acc": 0.992831541218638, + "punct_acc": null, + "threshold_t": 0.3046765923500061, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7702091713487458, + "t": 0.7515578676878677, + "punct": null, + "u_acc": 0.3664, + "t_acc": 0.322, + "punct_acc": null, + "threshold_t": 0.1414565145969391, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8659811680716945, + "t": 0.8719112842712843, + "punct": null, + "u_acc": 0.5784, + "t_acc": 0.6044, + "punct_acc": null, + "threshold_t": 0.365180641412735, + "threshold_adj": 0.25 + } + }, + "bn": { + "opus100": { + "u": 0.9109514228226502, + "t": 0.9187793427230047, + "punct": null, + "u_acc": 0.6720321931589537, + "t_acc": 0.7062374245472837, + "punct_acc": null, + "threshold_t": 0.3863508701324463, + "threshold_adj": 0.25 + }, + "ud": { + "u": 1.0, + "t": null, + "punct": null, + "u_acc": 1.0, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6011152693460385, + "t": 0.5695046104566229, + "punct": null, + "u_acc": 0.10692307692307693, + "t_acc": 0.08461538461538462, + "punct_acc": null, + "threshold_t": 0.16838279366493225, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7207353757353758, + "t": 0.6917146419693931, + "punct": null, + "u_acc": 0.2753846153846154, + "t_acc": 0.22923076923076924, + "punct_acc": null, + "threshold_t": 0.11269952356815338, + "threshold_adj": 0.25 + } + }, + "ca": { + "opus100": { + "u": 0.950568273286326, + "t": 0.9513796323126952, + "punct": null, + "u_acc": 0.8073022312373225, + "t_acc": 0.8113590263691683, + "punct_acc": null, + "threshold_t": 0.2675432562828064, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9948051948051948, + "t": 0.994083694083694, + "punct": null, + "u_acc": 0.9783549783549783, + "t_acc": 0.9805194805194806, + "punct_acc": null, + "threshold_t": 0.8572491407394409, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7437187301587302, + "t": 0.7044851111851113, + "punct": null, + "u_acc": 0.2968, + "t_acc": 0.2292, + "punct_acc": null, + "threshold_t": 0.050100263208150864, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8541269841269841, + "t": 0.8532521789321789, + "punct": null, + "u_acc": 0.5628, + "t_acc": 0.5536, + "punct_acc": null, + "threshold_t": 0.18309006094932556, + "threshold_adj": 0.25 + } + }, + "ceb": { + "ud": { + "u": 1.0, + "t": null, + "punct": null, + "u_acc": 1.0, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.661904761904762, + "t": 0.676530612244898, + "punct": null, + "u_acc": 0.07142857142857142, + "t_acc": 0.14285714285714285, + "punct_acc": null, + "threshold_t": 0.1490655094385147, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7666666666666668, + "t": 0.761904761904762, + "punct": null, + "u_acc": 0.35714285714285715, + "t_acc": 0.21428571428571427, + "punct_acc": null, + "threshold_t": 0.1554812788963318, + "threshold_adj": 0.25 + }, + "nllb": { + "u": 0.9162228571428572, + "t": 0.9224304761904761, + "punct": null, + "u_acc": 0.7188, + "t_acc": 0.7504, + "punct_acc": null, + "threshold_t": 0.4428407847881317, + "threshold_adj": 0.25 + } + }, + "cs": { + "ersatz": { + "u": 0.9861111111111112, + "t": 0.9876543209876543, + "punct": null, + "u_acc": 0.9351851851851852, + "t_acc": 0.9583333333333334, + "punct_acc": null, + "threshold_t": 0.9331504106521606, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.941831204026326, + "t": 0.9415602013162988, + "punct": null, + "u_acc": 0.7723577235772358, + "t_acc": 0.7723577235772358, + "punct_acc": null, + "threshold_t": 0.24762991070747375, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9652884182063992, + "t": 0.9666535226077813, + "punct": null, + "u_acc": 0.8820977917981072, + "t_acc": 0.889589905362776, + "punct_acc": null, + "threshold_t": 0.29216286540031433, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7496900321900323, + "t": 0.738980352980353, + "punct": null, + "u_acc": 0.328, + "t_acc": 0.3028, + "punct_acc": null, + "threshold_t": 0.1743413656949997, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8529134776334777, + "t": 0.85281443001443, + "punct": null, + "u_acc": 0.5524, + "t_acc": 0.552, + "punct_acc": null, + "threshold_t": 0.24930830299854279, + "threshold_adj": 0.25 + } + }, + "cy": { + "opus100": { + "u": 0.8717716781035558, + "t": 0.8781070215568032, + "punct": null, + "u_acc": 0.5851528384279476, + "t_acc": 0.5917030567685589, + "punct_acc": null, + "threshold_t": 0.09652791917324066, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9941176470588236, + "t": 0.9893557422969189, + "punct": null, + "u_acc": 0.9789915966386554, + "t_acc": 0.9663865546218487, + "punct_acc": null, + "threshold_t": 0.8157894611358643, + "threshold_adj": 0.25 + } + }, + "da": { + "opus100": { + "u": 0.9581509216589863, + "t": 0.9532642089093702, + "punct": null, + "u_acc": 0.8306451612903226, + "t_acc": 0.8084677419354839, + "punct_acc": null, + "threshold_t": 0.11336419731378555, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9848699763593382, + "t": 0.9869976359338063, + "punct": null, + "u_acc": 0.9432624113475178, + "t_acc": 0.950354609929078, + "punct_acc": null, + "threshold_t": 0.32878902554512024, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7641678388278388, + "t": 0.737719820832762, + "punct": null, + "u_acc": 0.3492, + "t_acc": 0.3004, + "punct_acc": null, + "threshold_t": 0.0560988187789917, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.868203492063492, + "t": 0.8569550700280113, + "punct": null, + "u_acc": 0.592, + "t_acc": 0.5556, + "punct_acc": null, + "threshold_t": 0.13909964263439178, + "threshold_adj": 0.25 + } + }, + "de": { + "ersatz": { + "u": 0.9847929395790902, + "t": 0.9929395790902918, + "punct": null, + "u_acc": 0.9307535641547862, + "t_acc": 0.9755600814663951, + "punct_acc": null, + "threshold_t": 0.811960756778717, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.922868528564731, + "t": 0.8957571495546178, + "punct": null, + "u_acc": 0.7109704641350211, + "t_acc": 0.6075949367088608, + "punct_acc": null, + "threshold_t": 0.0353015661239624, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9807377049180328, + "t": 0.9717213114754099, + "punct": null, + "u_acc": 0.9344262295081968, + "t_acc": 0.9139344262295082, + "punct_acc": null, + "threshold_t": 0.838326632976532, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7883968831168832, + "t": 0.7800205416805417, + "punct": null, + "u_acc": 0.412, + "t_acc": 0.3808, + "punct_acc": null, + "threshold_t": 0.13438603281974792, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8651190724983828, + "t": 0.8709632034632033, + "punct": null, + "u_acc": 0.5936, + "t_acc": 0.6124, + "punct_acc": null, + "threshold_t": 0.5476462841033936, + "threshold_adj": 0.25 + } + }, + "el": { + "opus100": { + "u": 0.9676037483266399, + "t": 0.9621916236374067, + "punct": null, + "u_acc": 0.8594377510040161, + "t_acc": 0.8393574297188755, + "punct_acc": null, + "threshold_t": 0.09388376772403717, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.987719298245614, + "t": 0.9894736842105263, + "punct": null, + "u_acc": 0.956140350877193, + "t_acc": 0.9649122807017544, + "punct_acc": null, + "threshold_t": 0.38936981558799744, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7579774861739568, + "t": 0.7514768327578853, + "punct": null, + "u_acc": 0.336, + "t_acc": 0.3252, + "punct_acc": null, + "threshold_t": 0.1190619096159935, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8599359307359308, + "t": 0.8521778191856453, + "punct": null, + "u_acc": 0.5848, + "t_acc": 0.552, + "punct_acc": null, + "threshold_t": 0.13192982971668243, + "threshold_adj": 0.25 + } + }, + "en": { + "ersatz": { + "u": 0.9858997181427088, + "t": 0.988871581862236, + "punct": null, + "u_acc": 0.942367601246106, + "t_acc": 0.9584631360332295, + "punct_acc": null, + "threshold_t": 0.4886789321899414, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9608870967741936, + "t": 0.9381336405529954, + "punct": null, + "u_acc": 0.8366935483870968, + "t_acc": 0.7318548387096774, + "punct_acc": null, + "threshold_t": 0.022869346663355827, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.969221411192214, + "t": 0.9683698296836984, + "punct": null, + "u_acc": 0.9014598540145985, + "t_acc": 0.8978102189781022, + "punct_acc": null, + "threshold_t": 0.30434298515319824, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7434850682650682, + "t": 0.7288909075719602, + "punct": null, + "u_acc": 0.306, + "t_acc": 0.2844, + "punct_acc": null, + "threshold_t": 0.13170211017131805, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.855158343878344, + "t": 0.8616907936507936, + "punct": null, + "u_acc": 0.5608, + "t_acc": 0.5876, + "punct_acc": null, + "threshold_t": 0.4541487693786621, + "threshold_adj": 0.25 + } + }, + "eo": { + "opus100": { + "u": 0.9624999999999999, + "t": 0.9634408602150538, + "punct": null, + "u_acc": 0.8366935483870968, + "t_acc": 0.8387096774193549, + "punct_acc": null, + "threshold_t": 0.20170512795448303, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.730784121197655, + "t": 0.7175588335362771, + "punct": null, + "u_acc": 0.2825814536340852, + "t_acc": 0.2581453634085213, + "punct_acc": null, + "threshold_t": 0.14823395013809204, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8215455666583488, + "t": 0.8296017822333612, + "punct": null, + "u_acc": 0.4667919799498747, + "t_acc": 0.487468671679198, + "punct_acc": null, + "threshold_t": 0.3877566158771515, + "threshold_adj": 0.25 + } + }, + "es": { + "ersatz": { + "u": 0.9947780678851175, + "t": null, + "punct": null, + "u_acc": 0.9765013054830287, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9605488079172291, + "t": 0.9590643274853802, + "punct": null, + "u_acc": 0.8380566801619433, + "t_acc": 0.8319838056680162, + "punct_acc": null, + "threshold_t": 0.17698802053928375, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9906976744186047, + "t": 0.9930232558139535, + "punct": null, + "u_acc": 0.958139534883721, + "t_acc": 0.9697674418604652, + "punct_acc": null, + "threshold_t": 0.5207982063293457, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7438039723239723, + "t": 0.7262262608888695, + "punct": null, + "u_acc": 0.2996, + "t_acc": 0.26, + "punct_acc": null, + "threshold_t": 0.06751208752393723, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8543998668714797, + "t": 0.8414034883634882, + "punct": null, + "u_acc": 0.5724, + "t_acc": 0.5256, + "punct_acc": null, + "threshold_t": 0.11529985815286636, + "threshold_adj": 0.25 + } + }, + "et": { + "ersatz": { + "u": 0.9924603174603176, + "t": 0.9944444444444445, + "punct": null, + "u_acc": 0.9662698412698413, + "t_acc": 0.9801587301587301, + "punct_acc": null, + "threshold_t": 0.7987955808639526, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9510025062656642, + "t": 0.9495999614420667, + "punct": null, + "u_acc": 0.8016194331983806, + "t_acc": 0.7975708502024291, + "punct_acc": null, + "threshold_t": 0.1956799328327179, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9823383084577114, + "t": 0.9816749585406301, + "punct": null, + "u_acc": 0.945273631840796, + "t_acc": 0.9440298507462687, + "punct_acc": null, + "threshold_t": 0.5361690521240234, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7846304761904762, + "t": 0.7640366617122715, + "punct": null, + "u_acc": 0.3864, + "t_acc": 0.3444, + "punct_acc": null, + "threshold_t": 0.11341187357902527, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8748435497835497, + "t": 0.8776247619047619, + "punct": null, + "u_acc": 0.6124, + "t_acc": 0.6316, + "punct_acc": null, + "threshold_t": 0.47976431250572205, + "threshold_adj": 0.25 + } + }, + "eu": { + "opus100": { + "u": 0.9440813572392519, + "t": 0.9446211683053789, + "punct": null, + "u_acc": 0.7834008097165992, + "t_acc": 0.791497975708502, + "punct_acc": null, + "threshold_t": 0.3417677879333496, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9982222222222222, + "t": 0.9973333333333334, + "punct": null, + "u_acc": 0.9911111111111112, + "t_acc": 0.9911111111111112, + "punct_acc": null, + "threshold_t": 0.8686845898628235, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7029768208195627, + "t": 0.6616744739728612, + "punct": null, + "u_acc": 0.22311827956989247, + "t_acc": 0.1700268817204301, + "punct_acc": null, + "threshold_t": 0.0583031140267849, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8250453362348522, + "t": 0.8371767793138761, + "punct": null, + "u_acc": 0.4838709677419355, + "t_acc": 0.5248655913978495, + "punct_acc": null, + "threshold_t": 0.5521674752235413, + "threshold_adj": 0.25 + } + }, + "fa": { + "opus100": { + "u": 0.815959841761445, + "t": 0.7955585774724051, + "punct": null, + "u_acc": 0.47695390781563124, + "t_acc": 0.40080160320641284, + "punct_acc": null, + "threshold_t": 0.05582612007856369, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9950549450549451, + "t": 0.9994505494505495, + "punct": null, + "u_acc": 0.9752747252747253, + "t_acc": 0.9972527472527473, + "punct_acc": null, + "threshold_t": 0.9416598081588745, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7569910134310135, + "t": 0.7405482446733377, + "punct": null, + "u_acc": 0.3328, + "t_acc": 0.2976, + "punct_acc": null, + "threshold_t": 0.09243491291999817, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7979064713064713, + "t": 0.7944469339810516, + "punct": null, + "u_acc": 0.4196, + "t_acc": 0.4088, + "punct_acc": null, + "threshold_t": 0.16517779231071472, + "threshold_adj": 0.25 + } + }, + "fi": { + "ersatz": { + "u": 0.9912491649966599, + "t": 0.9950567802271209, + "punct": null, + "u_acc": 0.9619238476953907, + "t_acc": 0.9819639278557114, + "punct_acc": null, + "threshold_t": 0.6271025538444519, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9748490945674044, + "t": 0.9589058158474658, + "punct": null, + "u_acc": 0.8893360160965795, + "t_acc": 0.8229376257545271, + "punct_acc": null, + "threshold_t": 0.026859693229198456, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9816273932253313, + "t": 0.9848060873834068, + "punct": null, + "u_acc": 0.9304123711340206, + "t_acc": 0.9458762886597938, + "punct_acc": null, + "threshold_t": 0.4718955457210541, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.76868, + "t": 0.7548841447441448, + "punct": null, + "u_acc": 0.3644, + "t_acc": 0.332, + "punct_acc": null, + "threshold_t": 0.11599007248878479, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8656038095238094, + "t": 0.8646298412698412, + "punct": null, + "u_acc": 0.5908, + "t_acc": 0.5956, + "punct_acc": null, + "threshold_t": 0.43992528319358826, + "threshold_adj": 0.25 + } + }, + "fr": { + "ersatz": { + "u": 0.9929146537842192, + "t": 0.9938808373590983, + "punct": null, + "u_acc": 0.966183574879227, + "t_acc": 0.9758454106280193, + "punct_acc": null, + "threshold_t": 0.5611417293548584, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.942956952896101, + "t": null, + "punct": null, + "u_acc": 0.7667342799188641, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9948717948717949, + "t": 0.9948717948717949, + "punct": null, + "u_acc": 0.9807692307692307, + "t_acc": 0.9807692307692307, + "punct_acc": null, + "threshold_t": 0.8726150989532471, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7597271062271062, + "t": 0.7508898590298589, + "punct": null, + "u_acc": 0.344, + "t_acc": 0.3312, + "punct_acc": null, + "threshold_t": 0.13249678909778595, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8576650394050396, + "t": 0.855729898989899, + "punct": null, + "u_acc": 0.5792, + "t_acc": 0.5832, + "punct_acc": null, + "threshold_t": 0.4650229811668396, + "threshold_adj": 0.25 + } + }, + "fy": { + "opus100": { + "u": 0.9144492131616595, + "t": 0.9150929899856938, + "punct": null, + "u_acc": 0.7124463519313304, + "t_acc": 0.721030042918455, + "punct_acc": null, + "threshold_t": 0.2946665585041046, + "threshold_adj": 0.25 + } + }, + "ga": { + "opus100": { + "u": 0.9133544546850998, + "t": 0.9158346134152586, + "punct": null, + "u_acc": 0.7258064516129032, + "t_acc": 0.7076612903225806, + "punct_acc": null, + "threshold_t": 0.02855587564408779, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9740183792815372, + "t": 0.9807017543859649, + "punct": null, + "u_acc": 0.9035087719298246, + "t_acc": 0.9210526315789473, + "punct_acc": null, + "threshold_t": 0.7773510813713074, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.5339285714285714, + "t": 0.5136363636363638, + "punct": null, + "u_acc": 0.16666666666666666, + "t_acc": 0.08333333333333333, + "punct_acc": null, + "threshold_t": 0.07124573737382889, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7444444444444445, + "t": 0.7111111111111111, + "punct": null, + "u_acc": 0.3333333333333333, + "t_acc": 0.25, + "punct_acc": null, + "threshold_t": 0.21263958513736725, + "threshold_adj": 0.25 + } + }, + "gd": { + "opus100": { + "u": 0.8931569664902999, + "t": 0.9083882783882784, + "punct": null, + "u_acc": 0.6592592592592592, + "t_acc": 0.6851851851851852, + "punct_acc": null, + "threshold_t": 0.05159343406558037, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.8843137254901962, + "t": 0.8813725490196078, + "punct": null, + "u_acc": 0.6617647058823529, + "t_acc": 0.6691176470588235, + "punct_acc": null, + "threshold_t": 0.15926139056682587, + "threshold_adj": 0.25 + } + }, + "gl": { + "opus100": { + "u": 0.9550499231950844, + "t": 0.9604166666666667, + "punct": null, + "u_acc": 0.8145161290322581, + "t_acc": 0.8387096774193549, + "punct_acc": null, + "threshold_t": 0.5499491691589355, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9873333333333334, + "t": 0.9826666666666667, + "punct": null, + "u_acc": 0.95, + "t_acc": 0.94, + "punct_acc": null, + "threshold_t": 0.6944289207458496, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7299739682539683, + "t": 0.7041172427572429, + "punct": null, + "u_acc": 0.2704, + "t_acc": 0.228, + "punct_acc": null, + "threshold_t": 0.026710689067840576, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8422396825396825, + "t": 0.84118126984127, + "punct": null, + "u_acc": 0.528, + "t_acc": 0.5248, + "punct_acc": null, + "threshold_t": 0.21374894678592682, + "threshold_adj": 0.25 + } + }, + "gu": { + "ersatz": { + "u": 0.8067372260285646, + "t": 0.8052936564747588, + "punct": null, + "u_acc": 0.41338582677165353, + "t_acc": 0.41338582677165353, + "punct_acc": null, + "threshold_t": 0.2202444076538086, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.8943803608399883, + "t": 0.8960070984915705, + "punct": null, + "u_acc": 0.6542443064182195, + "t_acc": 0.6770186335403726, + "punct_acc": null, + "threshold_t": 0.41234108805656433, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.5688017487346876, + "t": 0.5651449881264607, + "punct": null, + "u_acc": 0.09959555106167846, + "t_acc": 0.09908998988877654, + "punct_acc": null, + "threshold_t": 0.2356688380241394, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.655655716601116, + "t": 0.6426950129316402, + "punct": null, + "u_acc": 0.19059656218402427, + "t_acc": 0.18048533872598585, + "punct_acc": null, + "threshold_t": 0.15357056260108948, + "threshold_adj": 0.25 + } + }, + "ha": { + "opus100": { + "u": 0.9298761904761905, + "t": 0.9278761904761904, + "punct": null, + "u_acc": 0.712, + "t_acc": 0.728, + "punct_acc": null, + "threshold_t": 0.43042635917663574, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.5396825396825397, + "t": 0.5277777777777778, + "punct": null, + "u_acc": 0.0, + "t_acc": 0.0, + "punct_acc": null, + "threshold_t": 0.13105006515979767, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.6888888888888888, + "t": 0.7777777777777777, + "punct": null, + "u_acc": 0.3333333333333333, + "t_acc": 0.3333333333333333, + "punct_acc": null, + "threshold_t": 0.3760215640068054, + "threshold_adj": 0.25 + } + }, + "he": { + "opus100": { + "u": 0.9427139994274263, + "t": 0.9451856093138659, + "punct": null, + "u_acc": 0.7835671342685371, + "t_acc": 0.7955911823647295, + "punct_acc": null, + "threshold_t": 0.3843834400177002, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9707482993197278, + "t": 0.9707482993197278, + "punct": null, + "u_acc": 0.8877551020408163, + "t_acc": 0.8877551020408163, + "punct_acc": null, + "threshold_t": 0.22814008593559265, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.713946366966367, + "t": 0.6643509840543089, + "punct": null, + "u_acc": 0.2636, + "t_acc": 0.1832, + "punct_acc": null, + "threshold_t": 0.04085134342312813, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7635423953823953, + "t": 0.7575535642135642, + "punct": null, + "u_acc": 0.3596, + "t_acc": 0.3432, + "punct_acc": null, + "threshold_t": 0.1578773856163025, + "threshold_adj": 0.25 + } + }, + "hi": { + "ersatz": { + "u": 0.9776719576719576, + "t": 0.9830158730158731, + "punct": null, + "u_acc": 0.9079365079365079, + "t_acc": 0.9349206349206349, + "punct_acc": null, + "threshold_t": 0.6789791584014893, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.8319810306652411, + "t": 0.8309720980773614, + "punct": null, + "u_acc": 0.520242914979757, + "t_acc": 0.5242914979757085, + "punct_acc": null, + "threshold_t": 0.20742489397525787, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9985748218527315, + "t": 0.998258115597783, + "punct": null, + "u_acc": 0.9928741092636579, + "t_acc": 0.9928741092636579, + "punct_acc": null, + "threshold_t": 0.3663395345211029, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6895284848484848, + "t": 0.6903089321789322, + "punct": null, + "u_acc": 0.2268, + "t_acc": 0.2256, + "punct_acc": null, + "threshold_t": 0.27680352330207825, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.765889224109224, + "t": 0.7706947186147186, + "punct": null, + "u_acc": 0.3592, + "t_acc": 0.374, + "punct_acc": null, + "threshold_t": 0.3766213655471802, + "threshold_adj": 0.25 + } + }, + "hu": { + "opus100": { + "u": 0.967741935483871, + "t": 0.9665322580645161, + "punct": null, + "u_acc": 0.8467741935483871, + "t_acc": 0.8407258064516129, + "punct_acc": null, + "threshold_t": 0.10392607003450394, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9839285714285716, + "t": 0.9886904761904763, + "punct": null, + "u_acc": 0.9196428571428571, + "t_acc": 0.9553571428571429, + "punct_acc": null, + "threshold_t": 0.9734050631523132, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7410546031746031, + "t": 0.716186625966626, + "punct": null, + "u_acc": 0.294, + "t_acc": 0.2496, + "punct_acc": null, + "threshold_t": 0.03196019306778908, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8565571428571428, + "t": 0.8565571428571428, + "punct": null, + "u_acc": 0.5696, + "t_acc": 0.57, + "punct_acc": null, + "threshold_t": 0.2498149424791336, + "threshold_adj": 0.25 + } + }, + "hy": { + "opus100": { + "u": 0.9365901941642261, + "t": null, + "punct": null, + "u_acc": 0.7568337129840547, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9936936936936936, + "t": 0.9936936936936936, + "punct": null, + "u_acc": 0.972972972972973, + "t_acc": 0.972972972972973, + "punct_acc": null, + "threshold_t": 0.3888823688030243, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.758155561829475, + "t": 0.757712000945914, + "punct": null, + "u_acc": 0.3496, + "t_acc": 0.3464, + "punct_acc": null, + "threshold_t": 0.21877174079418182, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8327203174603174, + "t": 0.8416156132756132, + "punct": null, + "u_acc": 0.4948, + "t_acc": 0.524, + "punct_acc": null, + "threshold_t": 0.5661895871162415, + "threshold_adj": 0.25 + } + }, + "id": { + "opus100": { + "u": 0.94878024980484, + "t": 0.9558840749414519, + "punct": null, + "u_acc": 0.7786885245901639, + "t_acc": 0.8114754098360656, + "punct_acc": null, + "threshold_t": 0.37785643339157104, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9856, + "t": null, + "punct": null, + "u_acc": 0.944, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7298686868686869, + "t": 0.7124403363303363, + "punct": null, + "u_acc": 0.284, + "t_acc": 0.2552, + "punct_acc": null, + "threshold_t": 0.1283138394355774, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8335092640692641, + "t": 0.8170216716616716, + "punct": null, + "u_acc": 0.4932, + "t_acc": 0.458, + "punct_acc": null, + "threshold_t": 0.13014785945415497, + "threshold_adj": 0.25 + } + }, + "ig": { + "opus100": { + "u": 0.9531553398058253, + "t": 0.9526699029126213, + "punct": null, + "u_acc": 0.8349514563106796, + "t_acc": 0.8325242718446602, + "punct_acc": null, + "threshold_t": 0.24364778399467468, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6301282051282051, + "t": 0.5177738927738929, + "punct": null, + "u_acc": 0.038461538461538464, + "t_acc": 0.07692307692307693, + "punct_acc": null, + "threshold_t": 0.046659715473651886, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.78992673992674, + "t": 0.7795787545787547, + "punct": null, + "u_acc": 0.38461538461538464, + "t_acc": 0.4230769230769231, + "punct_acc": null, + "threshold_t": 0.0924156904220581, + "threshold_adj": 0.25 + } + }, + "is": { + "opus100": { + "u": 0.971495640509725, + "t": 0.9716297786720322, + "punct": null, + "u_acc": 0.8752515090543259, + "t_acc": 0.8772635814889336, + "punct_acc": null, + "threshold_t": 0.36820998787879944, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9720935387343456, + "t": 0.9762791384979129, + "punct": null, + "u_acc": 0.8844065166795966, + "t_acc": 0.9022498060512025, + "punct_acc": null, + "threshold_t": 0.46439334750175476, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7493638676844784, + "t": 0.7327399770147861, + "punct": null, + "u_acc": 0.30025445292620867, + "t_acc": 0.25190839694656486, + "punct_acc": null, + "threshold_t": 0.038970205932855606, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8556888404216647, + "t": 0.8561735126620623, + "punct": null, + "u_acc": 0.5776081424936387, + "t_acc": 0.549618320610687, + "punct_acc": null, + "threshold_t": 0.07952440530061722, + "threshold_adj": 0.25 + } + }, + "it": { + "opus100": { + "u": 0.9402420831856315, + "t": 0.9339856827760054, + "punct": null, + "u_acc": 0.7560483870967742, + "t_acc": 0.7358870967741935, + "punct_acc": null, + "threshold_t": 0.14387619495391846, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9983333333333333, + "t": 0.9983333333333333, + "punct": null, + "u_acc": 0.9916666666666667, + "t_acc": 0.9916666666666667, + "punct_acc": null, + "threshold_t": 0.21001183986663818, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7308187479187479, + "t": 0.7132005489934902, + "punct": null, + "u_acc": 0.2836, + "t_acc": 0.2556, + "punct_acc": null, + "threshold_t": 0.10696084797382355, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8456202775002774, + "t": 0.8539632323232323, + "punct": null, + "u_acc": 0.5264, + "t_acc": 0.558, + "punct_acc": null, + "threshold_t": 0.36582082509994507, + "threshold_adj": 0.25 + } + }, + "ja": { + "ersatz": { + "u": 0.9208955223880596, + "t": 0.9307213930348259, + "punct": null, + "u_acc": 0.7649253731343284, + "t_acc": 0.8097014925373134, + "punct_acc": null, + "threshold_t": 0.7521489262580872, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.8895104226429528, + "t": 0.8697966469050809, + "punct": null, + "u_acc": 0.6666666666666666, + "t_acc": 0.5602409638554217, + "punct_acc": null, + "threshold_t": 0.041926536709070206, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9889705882352942, + "t": 0.9914215686274508, + "punct": null, + "u_acc": 0.9558823529411765, + "t_acc": 0.9779411764705882, + "punct_acc": null, + "threshold_t": 0.9548282027244568, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.9059685714285713, + "t": 0.9154464069264068, + "punct": null, + "u_acc": 0.69, + "t_acc": 0.7292, + "punct_acc": null, + "threshold_t": 0.44640979170799255, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.9066799999999999, + "t": 0.9167378354978355, + "punct": null, + "u_acc": 0.6908, + "t_acc": 0.734, + "punct_acc": null, + "threshold_t": 0.44640979170799255, + "threshold_adj": 0.25 + } + }, + "jv": { + "ud": { + "u": 0.9869333333333334, + "t": null, + "punct": null, + "u_acc": 0.94, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "nllb": { + "u": 0.9012095238095239, + "t": 0.9095130158730159, + "punct": null, + "u_acc": 0.662, + "t_acc": 0.7148, + "punct_acc": null, + "threshold_t": 0.5438118577003479, + "threshold_adj": 0.25 + } + }, + "ka": { + "opus100": { + "u": 0.9516, + "t": 0.9509333333333334, + "punct": null, + "u_acc": 0.814, + "t_acc": 0.814, + "punct_acc": null, + "threshold_t": 0.3330555558204651, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6902264491064491, + "t": 0.6831193006993007, + "punct": null, + "u_acc": 0.2284, + "t_acc": 0.2176, + "punct_acc": null, + "threshold_t": 0.1976659744977951, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7318564857364857, + "t": 0.7268745787545787, + "punct": null, + "u_acc": 0.2968, + "t_acc": 0.2892, + "punct_acc": null, + "threshold_t": 0.21062205731868744, + "threshold_adj": 0.25 + } + }, + "kk": { + "ersatz": { + "u": 0.9927999999999999, + "t": 0.9890666666666666, + "punct": null, + "u_acc": 0.972, + "t_acc": 0.964, + "punct_acc": null, + "threshold_t": 0.7998679280281067, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9397579693034239, + "t": 0.938439590712318, + "punct": null, + "u_acc": 0.7768595041322314, + "t_acc": 0.78099173553719, + "punct_acc": null, + "threshold_t": 0.4592266082763672, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9958015267175572, + "t": 0.9223918575063613, + "punct": null, + "u_acc": 0.9847328244274809, + "t_acc": 0.767175572519084, + "punct_acc": null, + "threshold_t": 0.9947128891944885, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7955581037716561, + "t": 0.794635116195691, + "punct": null, + "u_acc": 0.4010951403148528, + "t_acc": 0.39561943874058864, + "punct_acc": null, + "threshold_t": 0.02466193586587906, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.871222689395174, + "t": 0.8662440381126214, + "punct": null, + "u_acc": 0.5900068446269678, + "t_acc": 0.5687885010266941, + "punct_acc": null, + "threshold_t": 0.07968486100435257, + "threshold_adj": 0.25 + } + }, + "km": { + "ersatz": { + "u": 0.8111358133392033, + "t": 0.881302125369922, + "punct": null, + "u_acc": 0.43389830508474575, + "t_acc": 0.6033898305084746, + "punct_acc": null, + "threshold_t": 0.7257884740829468, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9057273768613976, + "t": 0.8978006872852233, + "punct": null, + "u_acc": 0.6907216494845361, + "t_acc": 0.688659793814433, + "punct_acc": null, + "threshold_t": 0.6600852608680725, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.766595059076262, + "t": 0.7691013247404226, + "punct": null, + "u_acc": 0.3609022556390977, + "t_acc": 0.3684210526315789, + "punct_acc": null, + "threshold_t": 0.20853766798973083, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7883995703544575, + "t": 0.7848191908342285, + "punct": null, + "u_acc": 0.39849624060150374, + "t_acc": 0.39849624060150374, + "punct_acc": null, + "threshold_t": 0.19838058948516846, + "threshold_adj": 0.25 + } + }, + "kn": { + "opus100": { + "u": 0.9135693215339232, + "t": 0.903244837758112, + "punct": null, + "u_acc": 0.7522123893805309, + "t_acc": 0.7256637168141593, + "punct_acc": null, + "threshold_t": 0.4894944727420807, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6368631368631368, + "t": 0.5823214664123756, + "punct": null, + "u_acc": 0.13286713286713286, + "t_acc": 0.0944055944055944, + "punct_acc": null, + "threshold_t": 0.09349380433559418, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.682023532023532, + "t": 0.6235880281334826, + "punct": null, + "u_acc": 0.17482517482517482, + "t_acc": 0.09090909090909091, + "punct_acc": null, + "threshold_t": 0.05498673766851425, + "threshold_adj": 0.25 + } + }, + "ko": { + "opus100": { + "u": 0.8739541160593792, + "t": 0.8757759784075574, + "punct": null, + "u_acc": 0.5850202429149798, + "t_acc": 0.5789473684210527, + "punct_acc": null, + "threshold_t": 0.13147146999835968, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9996503496503496, + "t": 0.9990675990675991, + "punct": null, + "u_acc": 0.9982517482517482, + "t_acc": 0.9965034965034965, + "punct_acc": null, + "threshold_t": 0.7487348318099976, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8326662049062048, + "t": 0.832743492063492, + "punct": null, + "u_acc": 0.4608, + "t_acc": 0.47, + "punct_acc": null, + "threshold_t": 0.7495351433753967, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8360780426109837, + "t": 0.8380352380952379, + "punct": null, + "u_acc": 0.4672, + "t_acc": 0.4796, + "punct_acc": null, + "threshold_t": 0.7146012783050537, + "threshold_adj": 0.25 + } + }, + "ku": { + "opus100": { + "u": 0.929115929115929, + "t": 0.9226611226611225, + "punct": null, + "u_acc": 0.7567567567567568, + "t_acc": 0.7463617463617463, + "punct_acc": null, + "threshold_t": 0.4111398458480835, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6624587301587302, + "t": 0.5331789010034469, + "punct": null, + "u_acc": 0.044, + "t_acc": 0.0796, + "punct_acc": null, + "threshold_t": 0.019707048311829567, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7016450793650795, + "t": 0.5916668820030292, + "punct": null, + "u_acc": 0.1504, + "t_acc": 0.1392, + "punct_acc": null, + "threshold_t": 0.019686538726091385, + "threshold_adj": 0.25 + } + }, + "ky": { + "opus100": { + "u": 0.9534920634920636, + "t": 0.9519274376417233, + "punct": null, + "u_acc": 0.830952380952381, + "t_acc": 0.819047619047619, + "punct_acc": null, + "threshold_t": 0.16481271386146545, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7603174603174603, + "t": 0.7514939309056956, + "punct": null, + "u_acc": 0.3333333333333333, + "t_acc": 0.27450980392156865, + "punct_acc": null, + "threshold_t": 0.053619518876075745, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8307500778089014, + "t": 0.8259881730469965, + "punct": null, + "u_acc": 0.46078431372549017, + "t_acc": 0.47058823529411764, + "punct_acc": null, + "threshold_t": 0.10778642445802689, + "threshold_adj": 0.25 + } + }, + "la": { + "ud": { + "u": 0.9789206349206349, + "t": 0.979809523809524, + "punct": null, + "u_acc": 0.9161904761904762, + "t_acc": 0.9295238095238095, + "punct_acc": null, + "threshold_t": 0.48165076971054077, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.611111111111111, + "t": 0.6666666666666666, + "punct": null, + "u_acc": 0.0, + "t_acc": 0.0, + "punct_acc": null, + "threshold_t": 0.41791555285453796, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8333333333333334, + "t": 0.8666666666666667, + "punct": null, + "u_acc": 0.6666666666666666, + "t_acc": 0.3333333333333333, + "punct_acc": null, + "threshold_t": 0.049844175577163696, + "threshold_adj": 0.25 + } + }, + "lt": { + "ersatz": { + "u": 0.9881333333333334, + "t": 0.9796, + "punct": null, + "u_acc": 0.952, + "t_acc": 0.912, + "punct_acc": null, + "threshold_t": 0.04063809663057327, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9355062724014336, + "t": 0.9253683144812178, + "punct": null, + "u_acc": 0.780241935483871, + "t_acc": 0.7459677419354839, + "punct_acc": null, + "threshold_t": 0.09401948750019073, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9883040935672515, + "t": 0.9871345029239766, + "punct": null, + "u_acc": 0.9532163742690059, + "t_acc": 0.9590643274853801, + "punct_acc": null, + "threshold_t": 0.6304519772529602, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7442902164502164, + "t": 0.7073117593517594, + "punct": null, + "u_acc": 0.3004, + "t_acc": 0.2476, + "punct_acc": null, + "threshold_t": 0.044889580458402634, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8597834920634921, + "t": 0.8464124386724386, + "punct": null, + "u_acc": 0.5736, + "t_acc": 0.53, + "punct_acc": null, + "threshold_t": 0.11380349844694138, + "threshold_adj": 0.25 + } + }, + "lv": { + "ersatz": { + "u": 0.9949735449735451, + "t": 0.9961640211640211, + "punct": null, + "u_acc": 0.9761904761904762, + "t_acc": 0.9861111111111112, + "punct_acc": null, + "threshold_t": 0.8084164261817932, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9407222932577903, + "t": 0.9349460411123697, + "punct": null, + "u_acc": 0.795131845841785, + "t_acc": 0.7606490872210954, + "punct_acc": null, + "threshold_t": 0.06164511293172836, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9941956882255389, + "t": 0.9936428966279712, + "punct": null, + "u_acc": 0.9767827529021559, + "t_acc": 0.9751243781094527, + "punct_acc": null, + "threshold_t": 0.263686865568161, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7536313886113887, + "t": 0.7369654581675635, + "punct": null, + "u_acc": 0.3308, + "t_acc": 0.2996, + "punct_acc": null, + "threshold_t": 0.0962030366063118, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8571533910533912, + "t": 0.8606295815295816, + "punct": null, + "u_acc": 0.5668, + "t_acc": 0.5784, + "punct_acc": null, + "threshold_t": 0.2842962443828583, + "threshold_adj": 0.25 + } + }, + "mg": { + "opus100": { + "u": 0.9500867553499133, + "t": 0.9562945826103721, + "punct": null, + "u_acc": 0.8036437246963563, + "t_acc": 0.8380566801619433, + "punct_acc": null, + "threshold_t": 0.43859416246414185, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6773368606701938, + "t": 0.6675089984268726, + "punct": null, + "u_acc": 0.18518518518518517, + "t_acc": 0.24074074074074073, + "punct_acc": null, + "threshold_t": 0.1033320277929306, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8345679012345678, + "t": 0.8141975308641973, + "punct": null, + "u_acc": 0.5, + "t_acc": 0.42592592592592593, + "punct_acc": null, + "threshold_t": 0.347043514251709, + "threshold_adj": 0.25 + } + }, + "mk": { + "opus100": { + "u": 0.9614285714285714, + "t": 0.9646857142857143, + "punct": null, + "u_acc": 0.83, + "t_acc": 0.844, + "punct_acc": null, + "threshold_t": 0.3625500798225403, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7327476368076368, + "t": 0.7418584015984017, + "punct": null, + "u_acc": 0.294, + "t_acc": 0.312, + "punct_acc": null, + "threshold_t": 0.3185439705848694, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8421154689754691, + "t": 0.8541809523809523, + "punct": null, + "u_acc": 0.5176, + "t_acc": 0.5608, + "punct_acc": null, + "threshold_t": 0.604336678981781, + "threshold_adj": 0.25 + } + }, + "ml": { + "opus100": { + "u": 0.9018359150889272, + "t": 0.9113214763817172, + "punct": null, + "u_acc": 0.6365461847389559, + "t_acc": 0.6706827309236948, + "punct_acc": null, + "threshold_t": 0.3371252417564392, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6175523131638911, + "t": 0.6259365876195943, + "punct": null, + "u_acc": 0.1349206349206349, + "t_acc": 0.14814814814814814, + "punct_acc": null, + "threshold_t": 0.27491495013237, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7118285080586669, + "t": 0.6965482489292014, + "punct": null, + "u_acc": 0.22486772486772486, + "t_acc": 0.20238095238095238, + "punct_acc": null, + "threshold_t": 0.18105609714984894, + "threshold_adj": 0.25 + } + }, + "mn": { + "opus100": { + "u": 0.9168575063613231, + "t": null, + "punct": null, + "u_acc": 0.7356870229007634, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8573419047619047, + "t": 0.8565666666666666, + "punct": null, + "u_acc": 0.5496, + "t_acc": 0.5472, + "punct_acc": null, + "threshold_t": 0.24174167215824127, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.9031422222222222, + "t": 0.9070349206349206, + "punct": null, + "u_acc": 0.6716, + "t_acc": 0.6912, + "punct_acc": null, + "threshold_t": 0.32808011770248413, + "threshold_adj": 0.25 + }, + "nllb": { + "u": 0.9583676190476191, + "t": 0.9656438095238096, + "punct": null, + "u_acc": 0.8364, + "t_acc": 0.8764, + "punct_acc": null, + "threshold_t": 0.6051644682884216, + "threshold_adj": 0.25 + } + }, + "mr": { + "opus100": { + "u": 0.9628072196620584, + "t": 0.961050307219662, + "punct": null, + "u_acc": 0.8649193548387096, + "t_acc": 0.8649193548387096, + "punct_acc": null, + "threshold_t": 0.6243773102760315, + "threshold_adj": 0.25 + }, + "ud": { + "u": 1.0, + "t": 1.0, + "punct": null, + "u_acc": 1.0, + "t_acc": 1.0, + "punct_acc": null, + "threshold_t": 0.7459806799888611, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.590676487956488, + "t": 0.5990434942834943, + "punct": null, + "u_acc": 0.122, + "t_acc": 0.1356, + "punct_acc": null, + "threshold_t": 0.3285921812057495, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7086385747585747, + "t": 0.7281650216450216, + "punct": null, + "u_acc": 0.268, + "t_acc": 0.2956, + "punct_acc": null, + "threshold_t": 0.7544670104980469, + "threshold_adj": 0.25 + } + }, + "ms": { + "opus100": { + "u": 0.9433568489124043, + "t": 0.9544581618655693, + "punct": null, + "u_acc": 0.7613168724279835, + "t_acc": 0.8065843621399177, + "punct_acc": null, + "threshold_t": 0.3882980942726135, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7239693781553025, + "t": 0.723987329780397, + "punct": null, + "u_acc": 0.26845238095238094, + "t_acc": 0.26726190476190476, + "punct_acc": null, + "threshold_t": 0.25678184628486633, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.82237333433762, + "t": 0.8209174489531633, + "punct": null, + "u_acc": 0.4607142857142857, + "t_acc": 0.4583333333333333, + "punct_acc": null, + "threshold_t": 0.23651057481765747, + "threshold_adj": 0.25 + } + }, + "mt": { + "opus100": { + "u": 0.9014914909651752, + "t": 0.8903640219429694, + "punct": null, + "u_acc": 0.6882591093117408, + "t_acc": 0.6396761133603239, + "punct_acc": null, + "threshold_t": 0.036908455193042755, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9587179487179487, + "t": 0.9548717948717949, + "punct": null, + "u_acc": 0.8846153846153846, + "t_acc": 0.8769230769230769, + "punct_acc": null, + "threshold_t": 0.18629658222198486, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7051282051282052, + "t": 0.6782051282051282, + "punct": null, + "u_acc": 0.19230769230769232, + "t_acc": 0.15384615384615385, + "punct_acc": null, + "threshold_t": 0.0365469865500927, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8166666666666667, + "t": 0.8168498168498168, + "punct": null, + "u_acc": 0.46153846153846156, + "t_acc": 0.4230769230769231, + "punct_acc": null, + "threshold_t": 0.036908335983753204, + "threshold_adj": 0.25 + } + }, + "my": { + "opus100": { + "u": 0.9404569892473118, + "t": 0.939247311827957, + "punct": null, + "u_acc": 0.7903225806451613, + "t_acc": 0.7923387096774194, + "punct_acc": null, + "threshold_t": 0.2920242249965668, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.9457415873015872, + "t": 0.9415866666666667, + "punct": null, + "u_acc": 0.8144, + "t_acc": 0.7968, + "punct_acc": null, + "threshold_t": 0.16114193201065063, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.9501904761904761, + "t": 0.9475219047619048, + "punct": null, + "u_acc": 0.83, + "t_acc": 0.8176, + "punct_acc": null, + "threshold_t": 0.16551969945430756, + "threshold_adj": 0.25 + } + }, + "ne": { + "opus100": { + "u": 0.8846672707137823, + "t": 0.8846874056176381, + "punct": null, + "u_acc": 0.6300211416490487, + "t_acc": 0.627906976744186, + "punct_acc": null, + "threshold_t": 0.17074307799339294, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7100294171722743, + "t": 0.6884450132349291, + "punct": null, + "u_acc": 0.2548262548262548, + "t_acc": 0.21621621621621623, + "punct_acc": null, + "threshold_t": 0.07013026624917984, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7269488876631734, + "t": 0.7066558912672358, + "punct": null, + "u_acc": 0.27606177606177607, + "t_acc": 0.24324324324324326, + "punct_acc": null, + "threshold_t": 0.06265434622764587, + "threshold_adj": 0.25 + } + }, + "nl": { + "opus100": { + "u": 0.9582666666666666, + "t": null, + "punct": null, + "u_acc": 0.802, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9628635346756153, + "t": 0.956279961649089, + "punct": null, + "u_acc": 0.8791946308724832, + "t_acc": 0.87248322147651, + "punct_acc": null, + "threshold_t": 0.1372213363647461, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.814349341029341, + "t": 0.8185078273417404, + "punct": null, + "u_acc": 0.462, + "t_acc": 0.4748, + "punct_acc": null, + "threshold_t": 0.3212195336818695, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8827856898656898, + "t": 0.8936933333333332, + "punct": null, + "u_acc": 0.6212, + "t_acc": 0.6684, + "punct_acc": null, + "threshold_t": 0.5818445086479187, + "threshold_adj": 0.25 + } + }, + "no": { + "opus100": { + "u": 0.9709773425499233, + "t": 0.9738095238095239, + "punct": null, + "u_acc": 0.875, + "t_acc": 0.8870967741935484, + "punct_acc": null, + "threshold_t": 0.4330575168132782, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9921487603305785, + "t": 0.9918732782369146, + "punct": null, + "u_acc": 0.96900826446281, + "t_acc": 0.96900826446281, + "punct_acc": null, + "threshold_t": 0.22844962775707245, + "threshold_adj": 0.25 + } + }, + "pa": { + "opus100": { + "u": 0.8840456674473068, + "t": 0.8811085089773614, + "punct": null, + "u_acc": 0.6311475409836066, + "t_acc": 0.6311475409836066, + "punct_acc": null, + "threshold_t": 0.3601621687412262, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6871833839918947, + "t": 0.6808595069233367, + "punct": null, + "u_acc": 0.22340425531914893, + "t_acc": 0.2127659574468085, + "punct_acc": null, + "threshold_t": 0.23010942339897156, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7839581222559946, + "t": 0.7408169844340057, + "punct": null, + "u_acc": 0.40425531914893614, + "t_acc": 0.3191489361702128, + "punct_acc": null, + "threshold_t": 0.04414798319339752, + "threshold_adj": 0.25 + } + }, + "pl": { + "ersatz": { + "u": 0.9901726427622842, + "t": 0.9864541832669322, + "punct": null, + "u_acc": 0.9641434262948207, + "t_acc": 0.9561752988047809, + "punct_acc": null, + "threshold_t": 0.7999968528747559, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.96122311827957, + "t": 0.9596102150537635, + "punct": null, + "u_acc": 0.8326612903225806, + "t_acc": 0.8245967741935484, + "punct_acc": null, + "threshold_t": 0.20566344261169434, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9938628158844766, + "t": 0.9494584837545126, + "punct": null, + "u_acc": 0.9729241877256317, + "t_acc": 0.8483754512635379, + "punct_acc": null, + "threshold_t": 0.9983501434326172, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7634641269841269, + "t": 0.721223600724368, + "punct": null, + "u_acc": 0.342, + "t_acc": 0.2476, + "punct_acc": null, + "threshold_t": 0.05084637552499771, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8669728138528139, + "t": 0.8694342857142856, + "punct": null, + "u_acc": 0.5928, + "t_acc": 0.6012, + "punct_acc": null, + "threshold_t": 0.2887748181819916, + "threshold_adj": 0.25 + } + }, + "ps": { + "ersatz": { + "u": 0.8404482614160034, + "t": 0.8514222662316504, + "punct": null, + "u_acc": 0.4912023460410557, + "t_acc": 0.5293255131964809, + "punct_acc": null, + "threshold_t": 0.5151495933532715, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9092798812175203, + "t": 0.909502598366741, + "punct": null, + "u_acc": 0.7015590200445434, + "t_acc": 0.7104677060133631, + "punct_acc": null, + "threshold_t": 0.2887740433216095, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6270441642704416, + "t": 0.6186858154011439, + "punct": null, + "u_acc": 0.11678832116788321, + "t_acc": 0.12408759124087591, + "punct_acc": null, + "threshold_t": 0.18567009270191193, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.6485411992711262, + "t": 0.6590074969637014, + "punct": null, + "u_acc": 0.1386861313868613, + "t_acc": 0.16058394160583941, + "punct_acc": null, + "threshold_t": 0.33988407254219055, + "threshold_adj": 0.25 + } + }, + "pt": { + "opus100": { + "u": 0.963919413919414, + "t": 0.9621071910545594, + "punct": null, + "u_acc": 0.8421052631578947, + "t_acc": 0.8340080971659919, + "punct_acc": null, + "threshold_t": 0.1929858922958374, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9829908675799086, + "t": 0.9841324200913242, + "punct": null, + "u_acc": 0.9383561643835616, + "t_acc": 0.9417808219178082, + "punct_acc": null, + "threshold_t": 0.20606662333011627, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7692416161616162, + "t": 0.765777518037518, + "punct": null, + "u_acc": 0.3468, + "t_acc": 0.3372, + "punct_acc": null, + "threshold_t": 0.18211230635643005, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8666912842712842, + "t": 0.8686192481203009, + "punct": null, + "u_acc": 0.59, + "t_acc": 0.6008, + "punct_acc": null, + "threshold_t": 0.31040501594543457, + "threshold_adj": 0.25 + } + }, + "ro": { + "ersatz": { + "u": 0.9916, + "t": 0.9914666666666666, + "punct": null, + "u_acc": 0.966, + "t_acc": 0.968, + "punct_acc": null, + "threshold_t": 0.4203553795814514, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9705723905723905, + "t": 0.9672727272727274, + "punct": null, + "u_acc": 0.8848484848484849, + "t_acc": 0.8626262626262626, + "punct_acc": null, + "threshold_t": 0.10213588178157806, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9913814955640051, + "t": 0.9951837769328264, + "punct": null, + "u_acc": 0.9619771863117871, + "t_acc": 0.9809885931558935, + "punct_acc": null, + "threshold_t": 0.7139542698860168, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7353034920634921, + "t": 0.7283963924963925, + "punct": null, + "u_acc": 0.27, + "t_acc": 0.2696, + "punct_acc": null, + "threshold_t": 0.13634811341762543, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8558977777777778, + "t": 0.8526403174603177, + "punct": null, + "u_acc": 0.572, + "t_acc": 0.5648, + "punct_acc": null, + "threshold_t": 0.20732243359088898, + "threshold_adj": 0.25 + } + }, + "ru": { + "ersatz": { + "u": 0.9913978494623656, + "t": 0.9908602150537635, + "punct": null, + "u_acc": 0.967741935483871, + "t_acc": 0.967741935483871, + "punct_acc": null, + "threshold_t": 0.8984811305999756, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9229556986729119, + "t": null, + "punct": null, + "u_acc": 0.735655737704918, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9469696969696969, + "t": 0.9526190476190476, + "punct": null, + "u_acc": 0.8, + "t_acc": 0.8318181818181818, + "punct_acc": null, + "threshold_t": 0.49670398235321045, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7547609523809524, + "t": 0.7491067243867243, + "punct": null, + "u_acc": 0.3428, + "t_acc": 0.3216, + "punct_acc": null, + "threshold_t": 0.19894063472747803, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8573196825396826, + "t": 0.8686197402597403, + "punct": null, + "u_acc": 0.566, + "t_acc": 0.61, + "punct_acc": null, + "threshold_t": 0.4124561846256256, + "threshold_adj": 0.25 + } + }, + "si": { + "opus100": { + "u": 0.888892089093702, + "t": 0.9041090629800308, + "punct": null, + "u_acc": 0.594758064516129, + "t_acc": 0.6532258064516129, + "punct_acc": null, + "threshold_t": 0.5054563879966736, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6604151232058209, + "t": 0.6792174234034699, + "punct": null, + "u_acc": 0.20155038759689922, + "t_acc": 0.2248062015503876, + "punct_acc": null, + "threshold_t": 0.34431442618370056, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.685750425285309, + "t": 0.7013904269718223, + "punct": null, + "u_acc": 0.24806201550387597, + "t_acc": 0.2713178294573643, + "punct_acc": null, + "threshold_t": 0.2913288176059723, + "threshold_adj": 0.25 + } + }, + "sk": { + "opus100": { + "u": 0.9645353302611367, + "t": 0.9594470046082951, + "punct": null, + "u_acc": 0.8629032258064516, + "t_acc": 0.8407258064516129, + "punct_acc": null, + "threshold_t": 0.1614118367433548, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9808805031446541, + "t": 0.9725786163522013, + "punct": null, + "u_acc": 0.9320754716981132, + "t_acc": 0.9132075471698113, + "punct_acc": null, + "threshold_t": 0.5945528745651245, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7544524275724276, + "t": 0.7445339445349971, + "punct": null, + "u_acc": 0.3384, + "t_acc": 0.3188, + "punct_acc": null, + "threshold_t": 0.17079539597034454, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8527331313131313, + "t": 0.8651520634920634, + "punct": null, + "u_acc": 0.562, + "t_acc": 0.6028, + "punct_acc": null, + "threshold_t": 0.45705488324165344, + "threshold_adj": 0.25 + } + }, + "sl": { + "opus100": { + "u": 0.9674029451137884, + "t": 0.9613788487282463, + "punct": null, + "u_acc": 0.8534136546184738, + "t_acc": 0.8273092369477911, + "punct_acc": null, + "threshold_t": 0.12029329687356949, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9929166666666667, + "t": 0.9935416666666667, + "punct": null, + "u_acc": 0.96875, + "t_acc": 0.978125, + "punct_acc": null, + "threshold_t": 0.7412293553352356, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7793301875901876, + "t": 0.7496569075369075, + "punct": null, + "u_acc": 0.3896, + "t_acc": 0.316, + "punct_acc": null, + "threshold_t": 0.07570210099220276, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8772355555555558, + "t": 0.8664495238095238, + "punct": null, + "u_acc": 0.6244, + "t_acc": 0.5912, + "punct_acc": null, + "threshold_t": 0.15346601605415344, + "threshold_adj": 0.25 + } + }, + "sq": { + "opus100": { + "u": 0.9626790553619822, + "t": 0.9666085946573751, + "punct": null, + "u_acc": 0.8394308943089431, + "t_acc": 0.8577235772357723, + "punct_acc": null, + "threshold_t": 0.34419625997543335, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9866666666666667, + "t": null, + "punct": null, + "u_acc": 0.9333333333333333, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6990674254503666, + "t": 0.6975639070733188, + "punct": null, + "u_acc": 0.2412, + "t_acc": 0.2364, + "punct_acc": null, + "threshold_t": 0.2398364245891571, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8174268864468863, + "t": 0.830704721944722, + "punct": null, + "u_acc": 0.472, + "t_acc": 0.5096, + "punct_acc": null, + "threshold_t": 0.3592383563518524, + "threshold_adj": 0.25 + } + }, + "sr": { + "opus100": { + "u": 0.9731688659399503, + "t": 0.962459361254542, + "punct": null, + "u_acc": 0.8734939759036144, + "t_acc": 0.8273092369477911, + "punct_acc": null, + "threshold_t": 0.09887845814228058, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9953846153846152, + "t": 0.9953846153846152, + "punct": null, + "u_acc": 0.9769230769230769, + "t_acc": 0.9769230769230769, + "punct_acc": null, + "threshold_t": 0.4137810170650482, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7478758152958153, + "t": 0.716153016355625, + "punct": null, + "u_acc": 0.3212, + "t_acc": 0.27, + "punct_acc": null, + "threshold_t": 0.07007341086864471, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8604705753184014, + "t": 0.8633397402597403, + "punct": null, + "u_acc": 0.5836, + "t_acc": 0.6024, + "punct_acc": null, + "threshold_t": 0.47229593992233276, + "threshold_adj": 0.25 + } + }, + "sv": { + "opus100": { + "u": 0.9637884872824632, + "t": 0.9637884872824632, + "punct": null, + "u_acc": 0.8393574297188755, + "t_acc": 0.8393574297188755, + "punct_acc": null, + "threshold_t": 0.23179912567138672, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9751937984496125, + "t": 0.968217054263566, + "punct": null, + "u_acc": 0.9031007751937985, + "t_acc": 0.8682170542635659, + "punct_acc": null, + "threshold_t": 0.14057163894176483, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7766660317460317, + "t": 0.7771435497835498, + "punct": null, + "u_acc": 0.378, + "t_acc": 0.3832, + "punct_acc": null, + "threshold_t": 0.17338405549526215, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8670673015873015, + "t": 0.8669273015873016, + "punct": null, + "u_acc": 0.5908, + "t_acc": 0.592, + "punct_acc": null, + "threshold_t": 0.33059531450271606, + "threshold_adj": 0.25 + } + }, + "ta": { + "ersatz": { + "u": 0.9824701195219123, + "t": 0.9827357237715805, + "punct": null, + "u_acc": 0.9282868525896414, + "t_acc": 0.9322709163346613, + "punct_acc": null, + "threshold_t": 0.4892158806324005, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.8528027810040005, + "t": 0.8500120983352691, + "punct": null, + "u_acc": 0.5508130081300813, + "t_acc": 0.5487804878048781, + "punct_acc": null, + "threshold_t": 0.538057804107666, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9933333333333334, + "t": 1.0, + "punct": null, + "u_acc": 0.9666666666666667, + "t_acc": 1.0, + "punct_acc": null, + "threshold_t": 0.9955853223800659, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6792917481885453, + "t": 0.679462674533849, + "punct": null, + "u_acc": 0.200711743772242, + "t_acc": 0.2, + "punct_acc": null, + "threshold_t": 0.19745874404907227, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7503184478629319, + "t": 0.7469855055976052, + "punct": null, + "u_acc": 0.31316725978647686, + "t_acc": 0.305338078291815, + "punct_acc": null, + "threshold_t": 0.2187870740890503, + "threshold_adj": 0.25 + } + }, + "te": { + "opus100": { + "u": 0.9020814559590069, + "t": 0.913673469387755, + "punct": null, + "u_acc": 0.6551020408163265, + "t_acc": 0.7183673469387755, + "punct_acc": null, + "threshold_t": 0.4501913785934448, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6389553464326878, + "t": 0.6710749723589603, + "punct": null, + "u_acc": 0.1510574018126888, + "t_acc": 0.18580060422960726, + "punct_acc": null, + "threshold_t": 0.36309248208999634, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7239677744209466, + "t": 0.7295676881024313, + "punct": null, + "u_acc": 0.26435045317220546, + "t_acc": 0.27341389728096677, + "punct_acc": null, + "threshold_t": 0.3369843065738678, + "threshold_adj": 0.25 + } + }, + "tg": { + "opus100": { + "u": 0.9436507936507936, + "t": 0.9443105756358768, + "punct": null, + "u_acc": 0.7791164658634538, + "t_acc": 0.7911646586345381, + "punct_acc": null, + "threshold_t": 0.3496752083301544, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7451754385964912, + "t": 0.7202191083770031, + "punct": null, + "u_acc": 0.27631578947368424, + "t_acc": 0.25, + "punct_acc": null, + "threshold_t": 0.045236945152282715, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8535714285714285, + "t": 0.8355263157894737, + "punct": null, + "u_acc": 0.5657894736842105, + "t_acc": 0.5131578947368421, + "punct_acc": null, + "threshold_t": 0.3738732933998108, + "threshold_adj": 0.25 + } + }, + "th": { + "opus100": { + "u": 0.8054417187750521, + "t": 0.8166586499919833, + "punct": null, + "u_acc": 0.32525252525252524, + "t_acc": 0.3595959595959596, + "punct_acc": null, + "threshold_t": 0.3106255531311035, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.8377333333333333, + "t": null, + "punct": null, + "u_acc": 0.5, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7313562163440425, + "t": 0.7247102699733142, + "punct": null, + "u_acc": 0.2676, + "t_acc": 0.2552, + "punct_acc": null, + "threshold_t": 0.19142204523086548, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.733058864504671, + "t": 0.7273279790616116, + "punct": null, + "u_acc": 0.2688, + "t_acc": 0.2592, + "punct_acc": null, + "threshold_t": 0.19142204523086548, + "threshold_adj": 0.25 + } + }, + "tr": { + "ersatz": { + "u": 0.9857269503546099, + "t": 0.9850620567375886, + "punct": null, + "u_acc": 0.9428191489361702, + "t_acc": 0.949468085106383, + "punct_acc": null, + "threshold_t": 0.7887669801712036, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.957085020242915, + "t": 0.9574898785425101, + "punct": null, + "u_acc": 0.8238866396761133, + "t_acc": 0.8259109311740891, + "punct_acc": null, + "threshold_t": 0.2625616192817688, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9818181818181818, + "t": 0.9823030303030302, + "punct": null, + "u_acc": 0.9309090909090909, + "t_acc": 0.9309090909090909, + "punct_acc": null, + "threshold_t": 0.4290445148944855, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.796331754911755, + "t": 0.7840348171828172, + "punct": null, + "u_acc": 0.4048, + "t_acc": 0.3796, + "punct_acc": null, + "threshold_t": 0.10504572838544846, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8664743434343434, + "t": 0.8663676767676769, + "punct": null, + "u_acc": 0.5724, + "t_acc": 0.5712, + "punct_acc": null, + "threshold_t": 0.2455698698759079, + "threshold_adj": 0.25 + } + }, + "uk": { + "opus100": { + "u": 0.9488908013004398, + "t": 0.9525052591317652, + "punct": null, + "u_acc": 0.785140562248996, + "t_acc": 0.7991967871485943, + "punct_acc": null, + "threshold_t": 0.3211623430252075, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9741071428571428, + "t": 0.9755952380952381, + "punct": null, + "u_acc": 0.9107142857142857, + "t_acc": 0.9241071428571429, + "punct_acc": null, + "threshold_t": 0.5961913466453552, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7508872039072039, + "t": 0.7299967652637218, + "punct": null, + "u_acc": 0.3208, + "t_acc": 0.2736, + "punct_acc": null, + "threshold_t": 0.10120634734630585, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8594365079365079, + "t": 0.8556149206349206, + "punct": null, + "u_acc": 0.5772, + "t_acc": 0.5632, + "punct_acc": null, + "threshold_t": 0.19239981472492218, + "threshold_adj": 0.25 + } + }, + "ur": { + "opus100": { + "u": 0.76511803874092, + "t": 0.7590105986292427, + "punct": null, + "u_acc": 0.3411016949152542, + "t_acc": 0.3326271186440678, + "punct_acc": null, + "threshold_t": 0.17081527411937714, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9843283582089553, + "t": 0.9870646766169155, + "punct": null, + "u_acc": 0.9477611940298507, + "t_acc": 0.9552238805970149, + "punct_acc": null, + "threshold_t": 0.7371587157249451, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7183397623274295, + "t": 0.7168681010664567, + "punct": null, + "u_acc": 0.2857142857142857, + "t_acc": 0.2831449126413155, + "punct_acc": null, + "threshold_t": 0.19737547636032104, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7550214003194478, + "t": 0.7376827523281788, + "punct": null, + "u_acc": 0.35046248715313466, + "t_acc": 0.30883864337101746, + "punct_acc": null, + "threshold_t": 0.07652111351490021, + "threshold_adj": 0.25 + } + }, + "uz": { + "opus100": { + "u": 0.9080952380952382, + "t": 0.9172789115646259, + "punct": null, + "u_acc": 0.6306122448979592, + "t_acc": 0.6816326530612244, + "punct_acc": null, + "threshold_t": 0.32359009981155396, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7669162237200212, + "t": 0.7481809973898581, + "punct": null, + "u_acc": 0.34282700421940926, + "t_acc": 0.2921940928270042, + "punct_acc": null, + "threshold_t": 0.0508728101849556, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.838890563257652, + "t": 0.8309339628959882, + "punct": null, + "u_acc": 0.49683544303797467, + "t_acc": 0.4630801687763713, + "punct_acc": null, + "threshold_t": 0.08416768163442612, + "threshold_adj": 0.25 + } + }, + "vi": { + "opus100": { + "u": 0.9556927297668039, + "t": 0.9617969821673525, + "punct": null, + "u_acc": 0.8168724279835391, + "t_acc": 0.8436213991769548, + "punct_acc": null, + "threshold_t": 0.6637476086616516, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9913333333333333, + "t": 0.9973333333333332, + "punct": null, + "u_acc": 0.96, + "t_acc": 0.99, + "punct_acc": null, + "threshold_t": 0.7554530501365662, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7133611255411256, + "t": 0.6783471022750899, + "punct": null, + "u_acc": 0.2596, + "t_acc": 0.2192, + "punct_acc": null, + "threshold_t": 0.03646872565150261, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8252516017316016, + "t": 0.8401847619047618, + "punct": null, + "u_acc": 0.4764, + "t_acc": 0.5276, + "punct_acc": null, + "threshold_t": 0.5952385663986206, + "threshold_adj": 0.25 + } + }, + "xh": { + "opus100": { + "u": 0.9331258644536653, + "t": 0.9346473029045643, + "punct": null, + "u_acc": 0.7634854771784232, + "t_acc": 0.7676348547717843, + "punct_acc": null, + "threshold_t": 0.26028433442115784, + "threshold_adj": 0.25 + } + }, + "yi": { + "opus100": { + "u": 0.9308254963427377, + "t": 0.9308254963427377, + "punct": null, + "u_acc": 0.780564263322884, + "t_acc": 0.780564263322884, + "punct_acc": null, + "threshold_t": 0.24896521866321564, + "threshold_adj": 0.25 + } + }, + "yo": { + "opus100": { + "u": 0.8200031150116475, + "t": null, + "punct": null, + "u_acc": 0.45776450511945393, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9058333333333334, + "t": null, + "punct": null, + "u_acc": 0.625, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "nllb": { + "u": 0.9251263492063492, + "t": 0.9313142857142857, + "punct": null, + "u_acc": 0.738, + "t_acc": 0.7812, + "punct_acc": null, + "threshold_t": 0.6028544306755066, + "threshold_adj": 0.25 + } + }, + "zh": { + "ersatz": { + "u": 0.9578666666666666, + "t": 0.9552666666666666, + "punct": null, + "u_acc": 0.898, + "t_acc": 0.886, + "punct_acc": null, + "threshold_t": 0.0670655369758606, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.8984526204848137, + "t": 0.8576317936478901, + "punct": null, + "u_acc": 0.6800804828973843, + "t_acc": 0.5251509054325956, + "punct_acc": null, + "threshold_t": 0.012504776008427143, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9944, + "t": 0.996, + "punct": null, + "u_acc": 0.984, + "t_acc": 0.992, + "punct_acc": null, + "threshold_t": 0.9843558669090271, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6936778588308696, + "t": 0.6361195867859245, + "punct": null, + "u_acc": 0.1910167818361303, + "t_acc": 0.12882527147087858, + "punct_acc": null, + "threshold_t": 0.03832272067666054, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7071832412404969, + "t": 0.6504136342981359, + "punct": null, + "u_acc": 0.21520236920039487, + "t_acc": 0.1510365251727542, + "punct_acc": null, + "threshold_t": 0.037760261446237564, + "threshold_adj": 0.25 + } + }, + "zu": { + "opus100": { + "u": 0.9445258445258445, + "t": 0.9469474969474969, + "punct": null, + "u_acc": 0.8012820512820513, + "t_acc": 0.8162393162393162, + "punct_acc": null, + "threshold_t": 0.34569689631462097, + "threshold_adj": 0.25 + } + }, + "tr-de": {}, + "es-en": {}, + "vi-en": {}, + "en-de": {} +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/sat-sm-3l.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/sat-sm-3l.json new file mode 100644 index 0000000000000000000000000000000000000000..61fb6f76e1cf1341a757c6a6eb7bb40584d29896 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/sat-sm-3l.json @@ -0,0 +1,3346 @@ +{ + "af": { + "opus100": { + "u": 0.9035553289685522, + "t": 0.8966977925655611, + "punct": null, + "u_acc": 0.6652892561983471, + "t_acc": 0.6590909090909091, + "punct_acc": null, + "threshold_t": 0.5672795176506042, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9981132075471698, + "t": 1.0, + "punct": null, + "u_acc": 0.9905660377358491, + "t_acc": 1.0, + "punct_acc": null, + "threshold_t": 0.5845157504081726, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7796336996336997, + "t": 0.7862271062271063, + "punct": null, + "u_acc": 0.37846153846153846, + "t_acc": 0.38461538461538464, + "punct_acc": null, + "threshold_t": 0.12673918902873993, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8658461538461538, + "t": 0.8662564102564102, + "punct": null, + "u_acc": 0.5815384615384616, + "t_acc": 0.5907692307692308, + "punct_acc": null, + "threshold_t": 0.26620328426361084, + "threshold_adj": 0.25 + } + }, + "am": { + "opus100": { + "u": 0.8614840313635493, + "t": 0.8414164594887485, + "punct": null, + "u_acc": 0.5642570281124498, + "t_acc": 0.4859437751004016, + "punct_acc": null, + "threshold_t": 0.10477375239133835, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6976438492063493, + "t": 0.6729414682539683, + "punct": null, + "u_acc": 0.203125, + "t_acc": 0.1796875, + "punct_acc": null, + "threshold_t": 0.12089020758867264, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.6979972718253968, + "t": 0.6775669642857143, + "punct": null, + "u_acc": 0.2109375, + "t_acc": 0.1796875, + "punct_acc": null, + "threshold_t": 0.16365516185760498, + "threshold_adj": 0.25 + } + }, + "ar": { + "ersatz": { + "u": 0.9372467071935158, + "t": 0.9323834853090173, + "punct": null, + "u_acc": 0.7845744680851063, + "t_acc": 0.7553191489361702, + "punct_acc": null, + "threshold_t": 0.10988634824752808, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.8478867852361829, + "t": 0.8492159112641041, + "punct": null, + "u_acc": 0.5481927710843374, + "t_acc": 0.5321285140562249, + "punct_acc": null, + "threshold_t": 0.10203948616981506, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9227077497665732, + "t": 0.9191176470588235, + "punct": null, + "u_acc": 0.7470588235294118, + "t_acc": 0.7470588235294118, + "punct_acc": null, + "threshold_t": 0.5453125238418579, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.695127619047619, + "t": 0.6784363747363746, + "punct": null, + "u_acc": 0.1752, + "t_acc": 0.1912, + "punct_acc": null, + "threshold_t": 0.06754347681999207, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7339273015873016, + "t": 0.7231788167388168, + "punct": null, + "u_acc": 0.264, + "t_acc": 0.2676, + "punct_acc": null, + "threshold_t": 0.10123667120933533, + "threshold_adj": 0.25 + } + }, + "az": { + "opus100": { + "u": 0.8788869764773379, + "t": 0.8766685790782176, + "punct": null, + "u_acc": 0.6004016064257028, + "t_acc": 0.6044176706827309, + "punct_acc": null, + "threshold_t": 0.297425240278244, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7980660625164171, + "t": 0.8033082854891366, + "punct": null, + "u_acc": 0.41548463356973997, + "t_acc": 0.42080378250591016, + "punct_acc": null, + "threshold_t": 0.11619193851947784, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8667632931817328, + "t": 0.8671066456527449, + "punct": null, + "u_acc": 0.5774231678486997, + "t_acc": 0.5791962174940898, + "punct_acc": null, + "threshold_t": 0.25435149669647217, + "threshold_adj": 0.25 + } + }, + "be": { + "opus100": { + "u": 0.9143665341221349, + "t": 0.9135712669317557, + "punct": null, + "u_acc": 0.7230142566191446, + "t_acc": 0.7087576374745418, + "punct_acc": null, + "threshold_t": 0.12165829539299011, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9357290375877736, + "t": 0.9132589838909542, + "punct": null, + "u_acc": 0.8029739776951673, + "t_acc": 0.7434944237918215, + "punct_acc": null, + "threshold_t": 0.7319779396057129, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7492588815755591, + "t": 0.7288477619431545, + "punct": null, + "u_acc": 0.3101881894873459, + "t_acc": 0.2738481505515899, + "punct_acc": null, + "threshold_t": 0.11066217720508575, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8564310950423865, + "t": 0.8556369292255082, + "punct": null, + "u_acc": 0.5522388059701493, + "t_acc": 0.5483452303698897, + "punct_acc": null, + "threshold_t": 0.24338552355766296, + "threshold_adj": 0.25 + } + }, + "bg": { + "opus100": { + "u": 0.9624677927283138, + "t": 0.9589941788338582, + "punct": null, + "u_acc": 0.8296593186372746, + "t_acc": 0.8136272545090181, + "punct_acc": null, + "threshold_t": 0.1719895899295807, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9945041816009559, + "t": 0.9954599761051375, + "punct": null, + "u_acc": 0.974910394265233, + "t_acc": 0.982078853046595, + "punct_acc": null, + "threshold_t": 0.4141254425048828, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.774421645021645, + "t": 0.7616613852813853, + "punct": null, + "u_acc": 0.3784, + "t_acc": 0.342, + "punct_acc": null, + "threshold_t": 0.16401679813861847, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8666708225108225, + "t": 0.8784933333333335, + "punct": null, + "u_acc": 0.5812, + "t_acc": 0.6216, + "punct_acc": null, + "threshold_t": 0.4890952706336975, + "threshold_adj": 0.25 + } + }, + "bn": { + "opus100": { + "u": 0.911095142282265, + "t": 0.9265018683529749, + "punct": null, + "u_acc": 0.670020120724346, + "t_acc": 0.7263581488933601, + "punct_acc": null, + "threshold_t": 0.3940618932247162, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9857142857142858, + "t": null, + "punct": null, + "u_acc": 0.9285714285714286, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6112835497835497, + "t": 0.5489682253392661, + "punct": null, + "u_acc": 0.11076923076923077, + "t_acc": 0.06615384615384616, + "punct_acc": null, + "threshold_t": 0.13117575645446777, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7321387501387501, + "t": 0.7282150627150628, + "punct": null, + "u_acc": 0.29307692307692307, + "t_acc": 0.2815384615384615, + "punct_acc": null, + "threshold_t": 0.22325047850608826, + "threshold_adj": 0.25 + } + }, + "ca": { + "opus100": { + "u": 0.9461605331787888, + "t": 0.9514440258862166, + "punct": null, + "u_acc": 0.7849898580121704, + "t_acc": 0.8073022312373225, + "punct_acc": null, + "threshold_t": 0.43222224712371826, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9959595959595959, + "t": 0.9949494949494949, + "punct": null, + "u_acc": 0.9826839826839827, + "t_acc": 0.9848484848484849, + "punct_acc": null, + "threshold_t": 0.9294189214706421, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7499596825396826, + "t": 0.7375057231657232, + "punct": null, + "u_acc": 0.3136, + "t_acc": 0.2836, + "punct_acc": null, + "threshold_t": 0.10412970930337906, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8637266666666666, + "t": 0.8555076190476191, + "punct": null, + "u_acc": 0.588, + "t_acc": 0.5596, + "punct_acc": null, + "threshold_t": 0.16232265532016754, + "threshold_adj": 0.25 + } + }, + "ceb": { + "ud": { + "u": 1.0, + "t": null, + "punct": null, + "u_acc": 1.0, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6785714285714286, + "t": 0.6785714285714286, + "punct": null, + "u_acc": 0.21428571428571427, + "t_acc": 0.21428571428571427, + "punct_acc": null, + "threshold_t": 0.2463909387588501, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.780952380952381, + "t": 0.7785714285714285, + "punct": null, + "u_acc": 0.5, + "t_acc": 0.5, + "punct_acc": null, + "threshold_t": 0.30931833386421204, + "threshold_adj": 0.25 + }, + "nllb": { + "u": 0.9065301587301586, + "t": 0.9144977777777779, + "punct": null, + "u_acc": 0.6888, + "t_acc": 0.7176, + "punct_acc": null, + "threshold_t": 0.3400956094264984, + "threshold_adj": 0.25 + } + }, + "cs": { + "ersatz": { + "u": 0.9832561728395063, + "t": 0.9904320987654321, + "punct": null, + "u_acc": 0.9259259259259259, + "t_acc": 0.9629629629629629, + "punct_acc": null, + "threshold_t": 0.8599381446838379, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9338269454123113, + "t": 0.9349787069299264, + "punct": null, + "u_acc": 0.7479674796747967, + "t_acc": 0.7520325203252033, + "punct_acc": null, + "threshold_t": 0.283390611410141, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9635928346101849, + "t": 0.965209553853087, + "punct": null, + "u_acc": 0.875788643533123, + "t_acc": 0.8840694006309149, + "punct_acc": null, + "threshold_t": 0.3019171357154846, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7553373448773449, + "t": 0.7389278787878788, + "punct": null, + "u_acc": 0.3372, + "t_acc": 0.3008, + "punct_acc": null, + "threshold_t": 0.11701148748397827, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8550540836940836, + "t": 0.8429299567099566, + "punct": null, + "u_acc": 0.55, + "t_acc": 0.5132, + "punct_acc": null, + "threshold_t": 0.16647979617118835, + "threshold_adj": 0.25 + } + }, + "cy": { + "opus100": { + "u": 0.879302696333264, + "t": 0.8770049213280654, + "punct": null, + "u_acc": 0.5960698689956332, + "t_acc": 0.5633187772925764, + "punct_acc": null, + "threshold_t": 0.0997820645570755, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9896358543417368, + "t": 0.9915966386554622, + "punct": null, + "u_acc": 0.9537815126050421, + "t_acc": 0.9663865546218487, + "punct_acc": null, + "threshold_t": 0.6777300238609314, + "threshold_adj": 0.25 + } + }, + "da": { + "opus100": { + "u": 0.9560675883256529, + "t": 0.9611655145929341, + "punct": null, + "u_acc": 0.8185483870967742, + "t_acc": 0.8387096774193549, + "punct_acc": null, + "threshold_t": 0.43330398201942444, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9855791962174941, + "t": 0.9898345153664302, + "punct": null, + "u_acc": 0.9432624113475178, + "t_acc": 0.9645390070921985, + "punct_acc": null, + "threshold_t": 0.5075726509094238, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7740462515262516, + "t": 0.7547841658341659, + "punct": null, + "u_acc": 0.3704, + "t_acc": 0.3224, + "punct_acc": null, + "threshold_t": 0.06557260453701019, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8690501587301587, + "t": 0.8662835497835498, + "punct": null, + "u_acc": 0.5852, + "t_acc": 0.576, + "punct_acc": null, + "threshold_t": 0.21662300825119019, + "threshold_adj": 0.25 + } + }, + "de": { + "ersatz": { + "u": 0.9849287169042771, + "t": 0.9909029192124914, + "punct": null, + "u_acc": 0.9368635437881874, + "t_acc": 0.9653767820773931, + "punct_acc": null, + "threshold_t": 0.6139549016952515, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9187412095639944, + "t": 0.8905615832831022, + "punct": null, + "u_acc": 0.70042194092827, + "t_acc": 0.5843881856540084, + "punct_acc": null, + "threshold_t": 0.04052917659282684, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9826502732240437, + "t": 0.9703551912568307, + "punct": null, + "u_acc": 0.9385245901639344, + "t_acc": 0.9098360655737705, + "punct_acc": null, + "threshold_t": 0.8562579154968262, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7970587301587302, + "t": 0.790396792556103, + "punct": null, + "u_acc": 0.4308, + "t_acc": 0.4064, + "punct_acc": null, + "threshold_t": 0.15185381472110748, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8687726984126984, + "t": 0.8709129670329671, + "punct": null, + "u_acc": 0.5928, + "t_acc": 0.6044, + "punct_acc": null, + "threshold_t": 0.30734559893608093, + "threshold_adj": 0.25 + } + }, + "el": { + "opus100": { + "u": 0.9591030789825971, + "t": 0.9329638901928059, + "punct": null, + "u_acc": 0.8253012048192772, + "t_acc": 0.7329317269076305, + "punct_acc": null, + "threshold_t": 0.02661311812698841, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9912280701754386, + "t": 0.9906432748538012, + "punct": null, + "u_acc": 0.956140350877193, + "t_acc": 0.9649122807017544, + "punct_acc": null, + "threshold_t": 0.5075834393501282, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7668191311612365, + "t": 0.7535364131424132, + "punct": null, + "u_acc": 0.3608, + "t_acc": 0.3232, + "punct_acc": null, + "threshold_t": 0.0807659775018692, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8613504761904762, + "t": 0.8576441358641358, + "punct": null, + "u_acc": 0.5732, + "t_acc": 0.56, + "punct_acc": null, + "threshold_t": 0.19756051898002625, + "threshold_adj": 0.25 + } + }, + "en": { + "ersatz": { + "u": 0.9823146911931958, + "t": 0.9881446867428176, + "punct": null, + "u_acc": 0.9241952232606438, + "t_acc": 0.9574247144340602, + "punct_acc": null, + "threshold_t": 0.6076793670654297, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9571236559139785, + "t": 0.9269393241167435, + "punct": null, + "u_acc": 0.8225806451612904, + "t_acc": 0.7036290322580645, + "punct_acc": null, + "threshold_t": 0.01741454191505909, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9684914841849148, + "t": 0.9701946472019466, + "punct": null, + "u_acc": 0.8978102189781022, + "t_acc": 0.9051094890510949, + "punct_acc": null, + "threshold_t": 0.23031450808048248, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7411828571428573, + "t": 0.7135506981906983, + "punct": null, + "u_acc": 0.3072, + "t_acc": 0.2592, + "punct_acc": null, + "threshold_t": 0.08309231698513031, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8546539682539682, + "t": 0.863072380952381, + "punct": null, + "u_acc": 0.5516, + "t_acc": 0.5944, + "punct_acc": null, + "threshold_t": 0.5396727919578552, + "threshold_adj": 0.25 + } + }, + "eo": { + "opus100": { + "u": 0.9596102150537635, + "t": 0.9499615975422426, + "punct": null, + "u_acc": 0.8266129032258065, + "t_acc": 0.782258064516129, + "punct_acc": null, + "threshold_t": 0.09051860123872757, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7298336027659336, + "t": 0.7146764054658792, + "punct": null, + "u_acc": 0.26879699248120303, + "t_acc": 0.2462406015037594, + "punct_acc": null, + "threshold_t": 0.1003638356924057, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8278727572900505, + "t": 0.8339191232048375, + "punct": null, + "u_acc": 0.4780701754385965, + "t_acc": 0.5, + "punct_acc": null, + "threshold_t": 0.38197973370552063, + "threshold_adj": 0.25 + } + }, + "es": { + "ersatz": { + "u": 0.9957354221061793, + "t": null, + "punct": null, + "u_acc": 0.9804177545691906, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9589068825910931, + "t": 0.9507518796992481, + "punct": null, + "u_acc": 0.8299595141700404, + "t_acc": 0.8016194331983806, + "punct_acc": null, + "threshold_t": 0.12836161255836487, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9928682170542635, + "t": 0.9927131782945736, + "punct": null, + "u_acc": 0.9674418604651163, + "t_acc": 0.9697674418604652, + "punct_acc": null, + "threshold_t": 0.46723291277885437, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7481161904761905, + "t": 0.7273521028037682, + "punct": null, + "u_acc": 0.306, + "t_acc": 0.268, + "punct_acc": null, + "threshold_t": 0.06458457559347153, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8571622847522847, + "t": 0.8511795780195782, + "punct": null, + "u_acc": 0.5732, + "t_acc": 0.5512, + "punct_acc": null, + "threshold_t": 0.17071503400802612, + "threshold_adj": 0.25 + } + }, + "et": { + "ersatz": { + "u": 0.9904761904761903, + "t": 0.9927248677248678, + "punct": null, + "u_acc": 0.9563492063492064, + "t_acc": 0.9742063492063492, + "punct_acc": null, + "threshold_t": 0.8175488710403442, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.945879120879121, + "t": 0.9393435511856564, + "punct": null, + "u_acc": 0.7975708502024291, + "t_acc": 0.7692307692307693, + "punct_acc": null, + "threshold_t": 0.15120238065719604, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9801824212271975, + "t": 0.9798507462686568, + "punct": null, + "u_acc": 0.9328358208955224, + "t_acc": 0.9328358208955224, + "punct_acc": null, + "threshold_t": 0.27736952900886536, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7866196825396826, + "t": 0.7833787301587302, + "punct": null, + "u_acc": 0.3956, + "t_acc": 0.3792, + "punct_acc": null, + "threshold_t": 0.1746111661195755, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8772687301587303, + "t": 0.8654547763347762, + "punct": null, + "u_acc": 0.6196, + "t_acc": 0.5776, + "punct_acc": null, + "threshold_t": 0.15386232733726501, + "threshold_adj": 0.25 + } + }, + "eu": { + "opus100": { + "u": 0.9416811258916521, + "t": 0.9423558897243107, + "punct": null, + "u_acc": 0.7753036437246964, + "t_acc": 0.7773279352226721, + "punct_acc": null, + "threshold_t": 0.2336738556623459, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.989925925925926, + "t": 0.9965925925925927, + "punct": null, + "u_acc": 0.9511111111111111, + "t_acc": 0.9888888888888889, + "punct_acc": null, + "threshold_t": 0.8025250434875488, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7091305535861988, + "t": 0.6855007895330476, + "punct": null, + "u_acc": 0.23655913978494625, + "t_acc": 0.2049731182795699, + "punct_acc": null, + "threshold_t": 0.11044596880674362, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8220391130673388, + "t": 0.8374722648916197, + "punct": null, + "u_acc": 0.4825268817204301, + "t_acc": 0.5235215053763441, + "punct_acc": null, + "threshold_t": 0.5261484980583191, + "threshold_adj": 0.25 + } + }, + "fa": { + "opus100": { + "u": 0.8076950604505715, + "t": 0.7731013976003955, + "punct": null, + "u_acc": 0.4649298597194389, + "t_acc": 0.35070140280561124, + "punct_acc": null, + "threshold_t": 0.04136597365140915, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9910256410256411, + "t": 0.9994505494505495, + "punct": null, + "u_acc": 0.9587912087912088, + "t_acc": 0.9972527472527473, + "punct_acc": null, + "threshold_t": 0.8905432224273682, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7624981529581529, + "t": 0.7396880503179605, + "punct": null, + "u_acc": 0.348, + "t_acc": 0.2996, + "punct_acc": null, + "threshold_t": 0.08630064874887466, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7993924675324675, + "t": 0.8035864357864357, + "punct": null, + "u_acc": 0.4172, + "t_acc": 0.4376, + "punct_acc": null, + "threshold_t": 0.4264723062515259, + "threshold_adj": 0.25 + } + }, + "fi": { + "ersatz": { + "u": 0.9887107548430194, + "t": 0.9939211756847028, + "punct": null, + "u_acc": 0.9478957915831663, + "t_acc": 0.9779559118236473, + "punct_acc": null, + "threshold_t": 0.6612692475318909, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9717639168343394, + "t": 0.9605378301555365, + "punct": null, + "u_acc": 0.8752515090543259, + "t_acc": 0.8309859154929577, + "punct_acc": null, + "threshold_t": 0.04558681696653366, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9825724104074618, + "t": 0.9829160530191456, + "punct": null, + "u_acc": 0.9278350515463918, + "t_acc": 0.9329896907216495, + "punct_acc": null, + "threshold_t": 0.36347663402557373, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7668222222222223, + "t": 0.7490191630591632, + "punct": null, + "u_acc": 0.3636, + "t_acc": 0.3232, + "punct_acc": null, + "threshold_t": 0.09684503078460693, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8639873593073593, + "t": 0.8586822222222221, + "punct": null, + "u_acc": 0.5824, + "t_acc": 0.5648, + "punct_acc": null, + "threshold_t": 0.17985899746418, + "threshold_adj": 0.25 + } + }, + "fr": { + "ersatz": { + "u": 0.9901771336553947, + "t": 0.9938808373590983, + "punct": null, + "u_acc": 0.9541062801932367, + "t_acc": 0.9758454106280193, + "punct_acc": null, + "threshold_t": 0.8531123995780945, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9422582826233942, + "t": null, + "punct": null, + "u_acc": 0.7667342799188641, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9891025641025641, + "t": 0.9916666666666667, + "punct": null, + "u_acc": 0.9519230769230769, + "t_acc": 0.9711538461538461, + "punct_acc": null, + "threshold_t": 0.945523202419281, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7627819624819625, + "t": 0.7423641247641248, + "punct": null, + "u_acc": 0.348, + "t_acc": 0.3048, + "punct_acc": null, + "threshold_t": 0.06681599467992783, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8586044444444444, + "t": 0.8621907936507937, + "punct": null, + "u_acc": 0.578, + "t_acc": 0.5896, + "punct_acc": null, + "threshold_t": 0.3198995888233185, + "threshold_adj": 0.25 + } + }, + "fy": { + "opus100": { + "u": 0.916230979321108, + "t": 0.9105150214592276, + "punct": null, + "u_acc": 0.7124463519313304, + "t_acc": 0.6802575107296137, + "punct_acc": null, + "threshold_t": 0.16823291778564453, + "threshold_adj": 0.25 + } + }, + "ga": { + "opus100": { + "u": 0.9115015360983102, + "t": 0.9172843061955965, + "punct": null, + "u_acc": 0.7217741935483871, + "t_acc": 0.7298387096774194, + "punct_acc": null, + "threshold_t": 0.07625275105237961, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9582706766917293, + "t": 0.9760233918128655, + "punct": null, + "u_acc": 0.8421052631578947, + "t_acc": 0.9035087719298246, + "punct_acc": null, + "threshold_t": 0.5855487585067749, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.5180555555555556, + "t": 0.5116402116402117, + "punct": null, + "u_acc": 0.08333333333333333, + "t_acc": 0.08333333333333333, + "punct_acc": null, + "threshold_t": 0.06769172847270966, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.6753968253968253, + "t": 0.6444444444444445, + "punct": null, + "u_acc": 0.16666666666666666, + "t_acc": 0.16666666666666666, + "punct_acc": null, + "threshold_t": 0.1617395132780075, + "threshold_adj": 0.25 + } + }, + "gd": { + "opus100": { + "u": 0.908027898027898, + "t": 0.9107163207163207, + "punct": null, + "u_acc": 0.6962962962962963, + "t_acc": 0.6814814814814815, + "punct_acc": null, + "threshold_t": 0.11188694089651108, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.8735294117647058, + "t": 0.8644607843137254, + "punct": null, + "u_acc": 0.6029411764705882, + "t_acc": 0.5882352941176471, + "punct_acc": null, + "threshold_t": 0.18281881511211395, + "threshold_adj": 0.25 + } + }, + "gl": { + "opus100": { + "u": 0.9454717101894521, + "t": 0.9447996671786995, + "punct": null, + "u_acc": 0.7762096774193549, + "t_acc": 0.7741935483870968, + "punct_acc": null, + "threshold_t": 0.22017070651054382, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9803809523809524, + "t": 0.9893333333333334, + "punct": null, + "u_acc": 0.92, + "t_acc": 0.96, + "punct_acc": null, + "threshold_t": 0.5212786197662354, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7370850793650794, + "t": 0.7149710503531557, + "punct": null, + "u_acc": 0.2896, + "t_acc": 0.2404, + "punct_acc": null, + "threshold_t": 0.040345605462789536, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.845439365079365, + "t": 0.8489009523809523, + "punct": null, + "u_acc": 0.5384, + "t_acc": 0.5556, + "punct_acc": null, + "threshold_t": 0.7189522385597229, + "threshold_adj": 0.25 + } + }, + "gu": { + "ersatz": { + "u": 0.8803524559430072, + "t": 0.8682602174728158, + "punct": null, + "u_acc": 0.6181102362204725, + "t_acc": 0.5984251968503937, + "punct_acc": null, + "threshold_t": 0.4291118085384369, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.8936902297150743, + "t": 0.8970028591146603, + "punct": null, + "u_acc": 0.6521739130434783, + "t_acc": 0.6749482401656315, + "punct_acc": null, + "threshold_t": 0.29316797852516174, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.5761369799368669, + "t": 0.5602511884330935, + "punct": null, + "u_acc": 0.0980788675429727, + "t_acc": 0.09453993933265925, + "punct_acc": null, + "threshold_t": 0.1920454055070877, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.6656374156121375, + "t": 0.6422706917045963, + "punct": null, + "u_acc": 0.2057633973710819, + "t_acc": 0.1789686552072801, + "punct_acc": null, + "threshold_t": 0.09814157336950302, + "threshold_adj": 0.25 + } + }, + "ha": { + "opus100": { + "u": 0.9335428571428572, + "t": 0.926742857142857, + "punct": null, + "u_acc": 0.73, + "t_acc": 0.724, + "punct_acc": null, + "threshold_t": 0.40221336483955383, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6666666666666666, + "t": 0.6388888888888888, + "punct": null, + "u_acc": 0.3333333333333333, + "t_acc": 0.3333333333333333, + "punct_acc": null, + "threshold_t": 0.0806799978017807, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.6888888888888888, + "t": 0.8888888888888888, + "punct": null, + "u_acc": 0.3333333333333333, + "t_acc": 0.6666666666666666, + "punct_acc": null, + "threshold_t": 0.6340370178222656, + "threshold_adj": 0.25 + } + }, + "he": { + "opus100": { + "u": 0.935108311861819, + "t": 0.9393612622069536, + "punct": null, + "u_acc": 0.7535070140280561, + "t_acc": 0.7755511022044088, + "punct_acc": null, + "threshold_t": 0.35257992148399353, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9775510204081633, + "t": 0.9755102040816327, + "punct": null, + "u_acc": 0.9081632653061225, + "t_acc": 0.8979591836734694, + "punct_acc": null, + "threshold_t": 0.24024203419685364, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7178511111111111, + "t": 0.6642434786128903, + "punct": null, + "u_acc": 0.2692, + "t_acc": 0.1796, + "punct_acc": null, + "threshold_t": 0.05118756741285324, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7656580952380952, + "t": 0.7336789388389389, + "punct": null, + "u_acc": 0.3736, + "t_acc": 0.2888, + "punct_acc": null, + "threshold_t": 0.0852431058883667, + "threshold_adj": 0.25 + } + }, + "hi": { + "ersatz": { + "u": 0.975026455026455, + "t": 0.964126984126984, + "punct": null, + "u_acc": 0.8952380952380953, + "t_acc": 0.8841269841269841, + "punct_acc": null, + "threshold_t": 0.9306296110153198, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.8322917106972835, + "t": 0.8345312839894883, + "punct": null, + "u_acc": 0.5222672064777328, + "t_acc": 0.5182186234817814, + "punct_acc": null, + "threshold_t": 0.2702282965183258, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9971496437054631, + "t": 0.9990498812351545, + "punct": null, + "u_acc": 0.9857482185273159, + "t_acc": 0.995249406175772, + "punct_acc": null, + "threshold_t": 0.5798015594482422, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6910597498797498, + "t": 0.6672949427181005, + "punct": null, + "u_acc": 0.2344, + "t_acc": 0.1996, + "punct_acc": null, + "threshold_t": 0.10990544408559799, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7658595256205782, + "t": 0.768520757020757, + "punct": null, + "u_acc": 0.352, + "t_acc": 0.3564, + "punct_acc": null, + "threshold_t": 0.30355513095855713, + "threshold_adj": 0.25 + } + }, + "hu": { + "opus100": { + "u": 0.964516129032258, + "t": 0.964516129032258, + "punct": null, + "u_acc": 0.8346774193548387, + "t_acc": 0.8346774193548387, + "punct_acc": null, + "threshold_t": 0.24754725396633148, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9821428571428571, + "t": 0.9845238095238095, + "punct": null, + "u_acc": 0.9107142857142857, + "t_acc": 0.9285714285714286, + "punct_acc": null, + "threshold_t": 0.5812307596206665, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7455524098124099, + "t": 0.6930340925201539, + "punct": null, + "u_acc": 0.3044, + "t_acc": 0.2096, + "punct_acc": null, + "threshold_t": 0.014600473456084728, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.861027619047619, + "t": 0.8614771428571428, + "punct": null, + "u_acc": 0.5764, + "t_acc": 0.5776, + "punct_acc": null, + "threshold_t": 0.2541647255420685, + "threshold_adj": 0.25 + } + }, + "hy": { + "opus100": { + "u": 0.9262311530534766, + "t": null, + "punct": null, + "u_acc": 0.7175398633257403, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9900900900900901, + "t": 0.9900900900900901, + "punct": null, + "u_acc": 0.9594594594594594, + "t_acc": 0.9594594594594594, + "punct_acc": null, + "threshold_t": 0.5800442695617676, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7577726655719759, + "t": 0.7442942818292818, + "punct": null, + "u_acc": 0.3488, + "t_acc": 0.3164, + "punct_acc": null, + "threshold_t": 0.12584948539733887, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.830899456099456, + "t": 0.8364789841269842, + "punct": null, + "u_acc": 0.4892, + "t_acc": 0.5028, + "punct_acc": null, + "threshold_t": 0.31337404251098633, + "threshold_adj": 0.25 + } + }, + "id": { + "opus100": { + "u": 0.945852849336456, + "t": 0.9526834504293521, + "punct": null, + "u_acc": 0.7848360655737705, + "t_acc": 0.8073770491803278, + "punct_acc": null, + "threshold_t": 0.3757714629173279, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9866666666666667, + "t": null, + "punct": null, + "u_acc": 0.936, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7372041847041847, + "t": 0.7275404617604617, + "punct": null, + "u_acc": 0.2924, + "t_acc": 0.2752, + "punct_acc": null, + "threshold_t": 0.13857710361480713, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8431479365079365, + "t": 0.8488968253968254, + "punct": null, + "u_acc": 0.5152, + "t_acc": 0.5312, + "punct_acc": null, + "threshold_t": 0.3183785080909729, + "threshold_adj": 0.25 + } + }, + "ig": { + "opus100": { + "u": 0.9403721682847898, + "t": 0.9473300970873787, + "punct": null, + "u_acc": 0.7815533980582524, + "t_acc": 0.8228155339805825, + "punct_acc": null, + "threshold_t": 0.3897131085395813, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6314102564102563, + "t": 0.6128205128205128, + "punct": null, + "u_acc": 0.038461538461538464, + "t_acc": 0.038461538461538464, + "punct_acc": null, + "threshold_t": 0.13975082337856293, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8053113553113553, + "t": 0.7961538461538461, + "punct": null, + "u_acc": 0.46153846153846156, + "t_acc": 0.4230769230769231, + "punct_acc": null, + "threshold_t": 0.7732467651367188, + "threshold_adj": 0.25 + } + }, + "is": { + "opus100": { + "u": 0.966130114017438, + "t": 0.9670690811535881, + "punct": null, + "u_acc": 0.8551307847082495, + "t_acc": 0.8611670020120724, + "punct_acc": null, + "threshold_t": 0.29068222641944885, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9676432954167632, + "t": 0.9641337457473999, + "punct": null, + "u_acc": 0.8681148176881304, + "t_acc": 0.8533747090768037, + "punct_acc": null, + "threshold_t": 0.20999684929847717, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7526838725312007, + "t": 0.7342628392246713, + "punct": null, + "u_acc": 0.3053435114503817, + "t_acc": 0.2748091603053435, + "punct_acc": null, + "threshold_t": 0.04869750142097473, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8642069550466497, + "t": 0.8626681206833878, + "punct": null, + "u_acc": 0.5979643765903307, + "t_acc": 0.5750636132315522, + "punct_acc": null, + "threshold_t": 0.15659792721271515, + "threshold_adj": 0.25 + } + }, + "it": { + "opus100": { + "u": 0.932783189033189, + "t": 0.9454493087557604, + "punct": null, + "u_acc": 0.7258064516129032, + "t_acc": 0.7842741935483871, + "punct_acc": null, + "threshold_t": 0.5928462743759155, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.995, + "t": 0.9933333333333334, + "punct": null, + "u_acc": 0.975, + "t_acc": 0.9666666666666667, + "punct_acc": null, + "threshold_t": 0.22449921071529388, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7389206637806638, + "t": 0.6934805705405706, + "punct": null, + "u_acc": 0.2904, + "t_acc": 0.21, + "punct_acc": null, + "threshold_t": 0.050713226199150085, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8510568253968255, + "t": 0.8608304761904761, + "punct": null, + "u_acc": 0.5404, + "t_acc": 0.5776, + "punct_acc": null, + "threshold_t": 0.4877711236476898, + "threshold_adj": 0.25 + } + }, + "ja": { + "ersatz": { + "u": 0.9148009950248756, + "t": 0.9310945273631842, + "punct": null, + "u_acc": 0.7238805970149254, + "t_acc": 0.7985074626865671, + "punct_acc": null, + "threshold_t": 0.8466260433197021, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.8662841843564734, + "t": 0.8313826735513483, + "punct": null, + "u_acc": 0.5823293172690763, + "t_acc": 0.44779116465863456, + "punct_acc": null, + "threshold_t": 0.0176748875528574, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9845588235294118, + "t": 0.9889705882352942, + "punct": null, + "u_acc": 0.9338235294117647, + "t_acc": 0.9705882352941176, + "punct_acc": null, + "threshold_t": 0.9835341572761536, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8826108513708514, + "t": 0.9094857142857141, + "punct": null, + "u_acc": 0.616, + "t_acc": 0.712, + "punct_acc": null, + "threshold_t": 0.6386362314224243, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8818362481962482, + "t": 0.9105771428571429, + "punct": null, + "u_acc": 0.6152, + "t_acc": 0.7152, + "punct_acc": null, + "threshold_t": 0.676395058631897, + "threshold_adj": 0.25 + } + }, + "jv": { + "ud": { + "u": 0.9824, + "t": null, + "punct": null, + "u_acc": 0.912, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "nllb": { + "u": 0.8877346031746031, + "t": 0.9037307936507938, + "punct": null, + "u_acc": 0.6172, + "t_acc": 0.6868, + "punct_acc": null, + "threshold_t": 0.4282367527484894, + "threshold_adj": 0.25 + } + }, + "ka": { + "opus100": { + "u": 0.9370095238095238, + "t": 0.9486666666666668, + "punct": null, + "u_acc": 0.764, + "t_acc": 0.802, + "punct_acc": null, + "threshold_t": 0.39142605662345886, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6984101587301588, + "t": 0.6521189461518873, + "punct": null, + "u_acc": 0.238, + "t_acc": 0.1636, + "punct_acc": null, + "threshold_t": 0.08802679926156998, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7331545743145743, + "t": 0.7349831457431457, + "punct": null, + "u_acc": 0.2924, + "t_acc": 0.296, + "punct_acc": null, + "threshold_t": 0.267622709274292, + "threshold_adj": 0.25 + } + }, + "kk": { + "ersatz": { + "u": 0.9865523809523808, + "t": 0.9904, + "punct": null, + "u_acc": 0.948, + "t_acc": 0.968, + "punct_acc": null, + "threshold_t": 0.5664507746696472, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9354879968516332, + "t": 0.9357634789452971, + "punct": null, + "u_acc": 0.7603305785123967, + "t_acc": 0.7603305785123967, + "punct_acc": null, + "threshold_t": 0.2567903995513916, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9927480916030536, + "t": 0.9045801526717557, + "punct": null, + "u_acc": 0.9694656488549618, + "t_acc": 0.7137404580152672, + "punct_acc": null, + "threshold_t": 0.9913631677627563, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7942096043738754, + "t": 0.7829960897722705, + "punct": null, + "u_acc": 0.3928815879534565, + "t_acc": 0.37166324435318276, + "punct_acc": null, + "threshold_t": 0.022956227883696556, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8632046978042871, + "t": 0.8591283421878905, + "punct": null, + "u_acc": 0.5564681724845996, + "t_acc": 0.5359342915811088, + "punct_acc": null, + "threshold_t": 0.08708979189395905, + "threshold_adj": 0.25 + } + }, + "km": { + "ersatz": { + "u": 0.791251620319417, + "t": 0.9137288135593221, + "punct": null, + "u_acc": 0.3711864406779661, + "t_acc": 0.7067796610169491, + "punct_acc": null, + "threshold_t": 0.878945529460907, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.8971428571428571, + "t": 0.8991163475699557, + "punct": null, + "u_acc": 0.6659793814432989, + "t_acc": 0.6804123711340206, + "punct_acc": null, + "threshold_t": 0.4311942458152771, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7841926244181883, + "t": 0.7822711540756654, + "punct": null, + "u_acc": 0.41353383458646614, + "t_acc": 0.40601503759398494, + "punct_acc": null, + "threshold_t": 0.24746207892894745, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8109738632295023, + "t": 0.8305048335123523, + "punct": null, + "u_acc": 0.46616541353383456, + "t_acc": 0.518796992481203, + "punct_acc": null, + "threshold_t": 0.34483081102371216, + "threshold_adj": 0.25 + } + }, + "kn": { + "opus100": { + "u": 0.901622418879056, + "t": 0.896165191740413, + "punct": null, + "u_acc": 0.6991150442477876, + "t_acc": 0.672566371681416, + "punct_acc": null, + "threshold_t": 0.19623525440692902, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6526973026973028, + "t": 0.5674199272285397, + "punct": null, + "u_acc": 0.14685314685314685, + "t_acc": 0.055944055944055944, + "punct_acc": null, + "threshold_t": 0.08250460028648376, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.6826701076701076, + "t": 0.6695637695637696, + "punct": null, + "u_acc": 0.2097902097902098, + "t_acc": 0.16083916083916083, + "punct_acc": null, + "threshold_t": 0.15321309864521027, + "threshold_adj": 0.25 + } + }, + "ko": { + "opus100": { + "u": 0.8753325621746676, + "t": 0.8596475162264636, + "punct": null, + "u_acc": 0.5931174089068826, + "t_acc": 0.5222672064777328, + "punct_acc": null, + "threshold_t": 0.052615612745285034, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9965034965034965, + "t": 0.9975524475524475, + "punct": null, + "u_acc": 0.9825174825174825, + "t_acc": 0.9912587412587412, + "punct_acc": null, + "threshold_t": 0.9509378671646118, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8304629148629148, + "t": 0.8339939682539683, + "punct": null, + "u_acc": 0.45, + "t_acc": 0.4664, + "punct_acc": null, + "threshold_t": 0.7005537152290344, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8341737085137085, + "t": 0.8353479365079364, + "punct": null, + "u_acc": 0.458, + "t_acc": 0.4748, + "punct_acc": null, + "threshold_t": 0.7961071133613586, + "threshold_adj": 0.25 + } + }, + "ku": { + "opus100": { + "u": 0.9192159192159192, + "t": 0.9207306207306206, + "punct": null, + "u_acc": 0.735966735966736, + "t_acc": 0.7463617463617463, + "punct_acc": null, + "threshold_t": 0.3321411609649658, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6593942857142857, + "t": 0.48966983738337805, + "punct": null, + "u_acc": 0.0328, + "t_acc": 0.0516, + "punct_acc": null, + "threshold_t": 0.011615741066634655, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.6992438095238096, + "t": 0.5400501496560258, + "punct": null, + "u_acc": 0.1468, + "t_acc": 0.094, + "punct_acc": null, + "threshold_t": 0.01179587747901678, + "threshold_adj": 0.25 + } + }, + "ky": { + "opus100": { + "u": 0.953941798941799, + "t": 0.9535563114134542, + "punct": null, + "u_acc": 0.8428571428571429, + "t_acc": 0.8357142857142857, + "punct_acc": null, + "threshold_t": 0.15271322429180145, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7778244631185809, + "t": 0.7550887021475257, + "punct": null, + "u_acc": 0.3137254901960784, + "t_acc": 0.27450980392156865, + "punct_acc": null, + "threshold_t": 0.09765639156103134, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.83828197945845, + "t": 0.8374572051042639, + "punct": null, + "u_acc": 0.45098039215686275, + "t_acc": 0.46078431372549017, + "punct_acc": null, + "threshold_t": 0.21150235831737518, + "threshold_adj": 0.25 + } + }, + "la": { + "ud": { + "u": 0.9720634920634921, + "t": 0.9732063492063492, + "punct": null, + "u_acc": 0.8952380952380953, + "t_acc": 0.9047619047619048, + "punct_acc": null, + "threshold_t": 0.39277154207229614, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6666666666666666, + "t": 0.5555555555555555, + "punct": null, + "u_acc": 0.0, + "t_acc": 0.0, + "punct_acc": null, + "threshold_t": 0.11042903363704681, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8888888888888888, + "t": 0.8888888888888888, + "punct": null, + "u_acc": 0.6666666666666666, + "t_acc": 0.6666666666666666, + "punct_acc": null, + "threshold_t": 0.10955534130334854, + "threshold_adj": 0.25 + } + }, + "lt": { + "ersatz": { + "u": 0.9837333333333333, + "t": 0.9837333333333333, + "punct": null, + "u_acc": 0.924, + "t_acc": 0.924, + "punct_acc": null, + "threshold_t": 0.2452269345521927, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9295986943164363, + "t": 0.9260464669738864, + "punct": null, + "u_acc": 0.7620967741935484, + "t_acc": 0.7399193548387096, + "punct_acc": null, + "threshold_t": 0.1428060680627823, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9844054580896686, + "t": 0.9851851851851852, + "punct": null, + "u_acc": 0.9415204678362573, + "t_acc": 0.9532163742690059, + "punct_acc": null, + "threshold_t": 0.4787941873073578, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7420739682539683, + "t": 0.7101221423021423, + "punct": null, + "u_acc": 0.2992, + "t_acc": 0.2404, + "punct_acc": null, + "threshold_t": 0.048358459025621414, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8584180952380953, + "t": 0.847956507936508, + "punct": null, + "u_acc": 0.5688, + "t_acc": 0.528, + "punct_acc": null, + "threshold_t": 0.13472485542297363, + "threshold_adj": 0.25 + } + }, + "lv": { + "ersatz": { + "u": 0.9917989417989418, + "t": 0.9947089947089948, + "punct": null, + "u_acc": 0.9603174603174603, + "t_acc": 0.9801587301587301, + "punct_acc": null, + "threshold_t": 0.7658308148384094, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.939244460745475, + "t": 0.9243407707910751, + "punct": null, + "u_acc": 0.7910750507099391, + "t_acc": 0.7200811359026369, + "punct_acc": null, + "threshold_t": 0.042807742953300476, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9896627971254837, + "t": 0.9936428966279713, + "punct": null, + "u_acc": 0.9552238805970149, + "t_acc": 0.978441127694859, + "punct_acc": null, + "threshold_t": 0.5793221592903137, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7639006349206349, + "t": 0.7255520557220557, + "punct": null, + "u_acc": 0.3524, + "t_acc": 0.2692, + "punct_acc": null, + "threshold_t": 0.06567632406949997, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8625666666666666, + "t": 0.8608355555555554, + "punct": null, + "u_acc": 0.5776, + "t_acc": 0.5676, + "punct_acc": null, + "threshold_t": 0.21863380074501038, + "threshold_adj": 0.25 + } + }, + "mg": { + "opus100": { + "u": 0.951985733564681, + "t": 0.9561499903605166, + "punct": null, + "u_acc": 0.8117408906882592, + "t_acc": 0.840080971659919, + "punct_acc": null, + "threshold_t": 0.5223585963249207, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6812169312169309, + "t": 0.6650526428304204, + "punct": null, + "u_acc": 0.16666666666666666, + "t_acc": 0.2037037037037037, + "punct_acc": null, + "threshold_t": 0.051114484667778015, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8290123456790122, + "t": 0.8191358024691359, + "punct": null, + "u_acc": 0.48148148148148145, + "t_acc": 0.42592592592592593, + "punct_acc": null, + "threshold_t": 0.14101095497608185, + "threshold_adj": 0.25 + } + }, + "mk": { + "opus100": { + "u": 0.9507142857142857, + "t": 0.9615619047619047, + "punct": null, + "u_acc": 0.788, + "t_acc": 0.834, + "punct_acc": null, + "threshold_t": 0.5175517201423645, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7434209124209123, + "t": 0.7324252525252525, + "punct": null, + "u_acc": 0.3072, + "t_acc": 0.282, + "punct_acc": null, + "threshold_t": 0.17701329290866852, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8419260317460318, + "t": 0.856696507936508, + "punct": null, + "u_acc": 0.514, + "t_acc": 0.5612, + "punct_acc": null, + "threshold_t": 0.5153683423995972, + "threshold_adj": 0.25 + } + }, + "ml": { + "opus100": { + "u": 0.8968732071141711, + "t": 0.9129279020845286, + "punct": null, + "u_acc": 0.6224899598393574, + "t_acc": 0.6947791164658634, + "punct_acc": null, + "threshold_t": 0.48813119530677795, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6145707268489715, + "t": 0.6193986201922711, + "punct": null, + "u_acc": 0.12301587301587301, + "t_acc": 0.1283068783068783, + "punct_acc": null, + "threshold_t": 0.26139312982559204, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7121728653474686, + "t": 0.6945143260619451, + "punct": null, + "u_acc": 0.2275132275132275, + "t_acc": 0.20634920634920634, + "punct_acc": null, + "threshold_t": 0.17880332469940186, + "threshold_adj": 0.25 + } + }, + "mn": { + "opus100": { + "u": 0.9238231552162851, + "t": null, + "punct": null, + "u_acc": 0.7604961832061069, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8619173626373627, + "t": 0.8621040293040293, + "punct": null, + "u_acc": 0.5592, + "t_acc": 0.5604, + "punct_acc": null, + "threshold_t": 0.2510180175304413, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.9028121212121212, + "t": 0.9090521212121212, + "punct": null, + "u_acc": 0.6692, + "t_acc": 0.6976, + "punct_acc": null, + "threshold_t": 0.36725419759750366, + "threshold_adj": 0.25 + }, + "nllb": { + "u": 0.9521377777777777, + "t": 0.9641885714285714, + "punct": null, + "u_acc": 0.8104, + "t_acc": 0.8708, + "punct_acc": null, + "threshold_t": 0.6224234700202942, + "threshold_adj": 0.25 + } + }, + "mr": { + "opus100": { + "u": 0.9591781874039937, + "t": 0.9586405529953916, + "punct": null, + "u_acc": 0.8487903225806451, + "t_acc": 0.8508064516129032, + "punct_acc": null, + "threshold_t": 0.4154515266418457, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9666666666666667, + "t": 1.0, + "punct": null, + "u_acc": 0.8333333333333334, + "t_acc": 1.0, + "punct_acc": null, + "threshold_t": 0.7305238842964172, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.5687199651329063, + "t": 0.6105866333666333, + "punct": null, + "u_acc": 0.0992, + "t_acc": 0.134, + "punct_acc": null, + "threshold_t": 0.5853223204612732, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7097786968586968, + "t": 0.7240623088023088, + "punct": null, + "u_acc": 0.2624, + "t_acc": 0.2896, + "punct_acc": null, + "threshold_t": 0.5970684885978699, + "threshold_adj": 0.25 + } + }, + "ms": { + "opus100": { + "u": 0.9368541380887059, + "t": 0.9547423084460123, + "punct": null, + "u_acc": 0.742798353909465, + "t_acc": 0.8189300411522634, + "punct_acc": null, + "threshold_t": 0.6286869645118713, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7311164794200509, + "t": 0.7192740328454614, + "punct": null, + "u_acc": 0.28154761904761905, + "t_acc": 0.2625, + "punct_acc": null, + "threshold_t": 0.17396868765354156, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8274230828695115, + "t": 0.8375336270871986, + "punct": null, + "u_acc": 0.4744047619047619, + "t_acc": 0.5047619047619047, + "punct_acc": null, + "threshold_t": 0.45183947682380676, + "threshold_adj": 0.25 + } + }, + "mt": { + "opus100": { + "u": 0.908926745768851, + "t": 0.9065692517109522, + "punct": null, + "u_acc": 0.7206477732793523, + "t_acc": 0.6923076923076923, + "punct_acc": null, + "threshold_t": 0.16163022816181183, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9479487179487179, + "t": 0.9515384615384616, + "punct": null, + "u_acc": 0.8692307692307693, + "t_acc": 0.8769230769230769, + "punct_acc": null, + "threshold_t": 0.3406997323036194, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.703846153846154, + "t": 0.6432234432234433, + "punct": null, + "u_acc": 0.11538461538461539, + "t_acc": 0.15384615384615385, + "punct_acc": null, + "threshold_t": 0.03871966898441315, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8487179487179487, + "t": 0.8053113553113553, + "punct": null, + "u_acc": 0.5384615384615384, + "t_acc": 0.34615384615384615, + "punct_acc": null, + "threshold_t": 0.0424768291413784, + "threshold_adj": 0.25 + } + }, + "my": { + "opus100": { + "u": 0.9340725806451614, + "t": 0.9282258064516129, + "punct": null, + "u_acc": 0.780241935483871, + "t_acc": 0.7741935483870968, + "punct_acc": null, + "threshold_t": 0.5104498863220215, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.942927619047619, + "t": 0.9488076190476191, + "punct": null, + "u_acc": 0.806, + "t_acc": 0.8324, + "punct_acc": null, + "threshold_t": 0.39795809984207153, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.9483257142857143, + "t": 0.9530876190476191, + "punct": null, + "u_acc": 0.8256, + "t_acc": 0.8488, + "punct_acc": null, + "threshold_t": 0.47912418842315674, + "threshold_adj": 0.25 + } + }, + "ne": { + "opus100": { + "u": 0.8821302728279473, + "t": 0.8812846068660022, + "punct": null, + "u_acc": 0.6194503171247357, + "t_acc": 0.6152219873150105, + "punct_acc": null, + "threshold_t": 0.21476316452026367, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7210256174541889, + "t": 0.7049320585034871, + "punct": null, + "u_acc": 0.26640926640926643, + "t_acc": 0.24517374517374518, + "punct_acc": null, + "threshold_t": 0.10501459985971451, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.741398680684395, + "t": 0.708143039865729, + "punct": null, + "u_acc": 0.31467181467181465, + "t_acc": 0.24903474903474904, + "punct_acc": null, + "threshold_t": 0.059311334043741226, + "threshold_adj": 0.25 + } + }, + "nl": { + "opus100": { + "u": 0.9519333333333334, + "t": null, + "punct": null, + "u_acc": 0.78, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9709172259507831, + "t": 0.9744966442953019, + "punct": null, + "u_acc": 0.8993288590604027, + "t_acc": 0.912751677852349, + "punct_acc": null, + "threshold_t": 0.5421984195709229, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.8213136507936508, + "t": 0.8163633766233767, + "punct": null, + "u_acc": 0.4748, + "t_acc": 0.4584, + "punct_acc": null, + "threshold_t": 0.18556594848632812, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8865695238095239, + "t": 0.895831746031746, + "punct": null, + "u_acc": 0.6212, + "t_acc": 0.6724, + "punct_acc": null, + "threshold_t": 0.6364193558692932, + "threshold_adj": 0.25 + } + }, + "no": { + "opus100": { + "u": 0.9658218125960061, + "t": 0.968778801843318, + "punct": null, + "u_acc": 0.8548387096774194, + "t_acc": 0.8669354838709677, + "punct_acc": null, + "threshold_t": 0.3930370509624481, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9874655647382921, + "t": 0.9915977961432506, + "punct": null, + "u_acc": 0.9442148760330579, + "t_acc": 0.9648760330578512, + "punct_acc": null, + "threshold_t": 0.3106166124343872, + "threshold_adj": 0.25 + } + }, + "pa": { + "opus100": { + "u": 0.8804742388758783, + "t": 0.8834894613583137, + "punct": null, + "u_acc": 0.625, + "t_acc": 0.6229508196721312, + "punct_acc": null, + "threshold_t": 0.19879713654518127, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6910933038592613, + "t": 0.683680267722821, + "punct": null, + "u_acc": 0.2127659574468085, + "t_acc": 0.20212765957446807, + "punct_acc": null, + "threshold_t": 0.1596597135066986, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8169291701206594, + "t": 0.7649584753308158, + "punct": null, + "u_acc": 0.48936170212765956, + "t_acc": 0.3829787234042553, + "punct_acc": null, + "threshold_t": 0.05801982060074806, + "threshold_adj": 0.25 + } + }, + "pl": { + "ersatz": { + "u": 0.9861885790172644, + "t": 0.9861885790172644, + "punct": null, + "u_acc": 0.9442231075697212, + "t_acc": 0.9442231075697212, + "punct_acc": null, + "threshold_t": 0.26345428824424744, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9551110180142439, + "t": 0.9605606758832567, + "punct": null, + "u_acc": 0.8084677419354839, + "t_acc": 0.8326612903225806, + "punct_acc": null, + "threshold_t": 0.5306338667869568, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9930806257521059, + "t": 0.9302045728038506, + "punct": null, + "u_acc": 0.9693140794223827, + "t_acc": 0.7906137184115524, + "punct_acc": null, + "threshold_t": 0.9993952512741089, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7683549206349206, + "t": 0.7377114802844215, + "punct": null, + "u_acc": 0.348, + "t_acc": 0.2736, + "punct_acc": null, + "threshold_t": 0.05280245095491409, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8664628571428571, + "t": 0.853325772005772, + "punct": null, + "u_acc": 0.5852, + "t_acc": 0.5328, + "punct_acc": null, + "threshold_t": 0.10930672287940979, + "threshold_adj": 0.25 + } + }, + "ps": { + "ersatz": { + "u": 0.8717451007773589, + "t": 0.883677791742308, + "punct": null, + "u_acc": 0.5703812316715543, + "t_acc": 0.6070381231671554, + "punct_acc": null, + "threshold_t": 0.4288349747657776, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.8842613214550853, + "t": 0.883667409057164, + "punct": null, + "u_acc": 0.6169265033407573, + "t_acc": 0.6302895322939867, + "punct_acc": null, + "threshold_t": 0.35108014941215515, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6674566309602806, + "t": 0.6234367535999138, + "punct": null, + "u_acc": 0.1678832116788321, + "t_acc": 0.12408759124087591, + "punct_acc": null, + "threshold_t": 0.11175333708524704, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.6751134915368492, + "t": 0.6527022045270221, + "punct": null, + "u_acc": 0.17518248175182483, + "t_acc": 0.15328467153284672, + "punct_acc": null, + "threshold_t": 0.15166230499744415, + "threshold_adj": 0.25 + } + }, + "pt": { + "opus100": { + "u": 0.9575316496369127, + "t": 0.9680354732986313, + "punct": null, + "u_acc": 0.8178137651821862, + "t_acc": 0.8623481781376519, + "punct_acc": null, + "threshold_t": 0.6064178347587585, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9811643835616438, + "t": 0.9807077625570777, + "punct": null, + "u_acc": 0.9246575342465754, + "t_acc": 0.9383561643835616, + "punct_acc": null, + "threshold_t": 0.7765695452690125, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.772202886002886, + "t": 0.7648648196248196, + "punct": null, + "u_acc": 0.3604, + "t_acc": 0.3332, + "punct_acc": null, + "threshold_t": 0.14978329837322235, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8693853968253968, + "t": 0.8738673015873017, + "punct": null, + "u_acc": 0.5988, + "t_acc": 0.6196, + "punct_acc": null, + "threshold_t": 0.3290621340274811, + "threshold_adj": 0.25 + } + }, + "ro": { + "ersatz": { + "u": 0.9921333333333333, + "t": 0.9947999999999999, + "punct": null, + "u_acc": 0.966, + "t_acc": 0.982, + "punct_acc": null, + "threshold_t": 0.7932366132736206, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9645791245791246, + "t": 0.9644444444444444, + "punct": null, + "u_acc": 0.8606060606060606, + "t_acc": 0.8666666666666667, + "punct_acc": null, + "threshold_t": 0.4755313992500305, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9889733840304183, + "t": 0.9835234474017744, + "punct": null, + "u_acc": 0.9581749049429658, + "t_acc": 0.9505703422053232, + "punct_acc": null, + "threshold_t": 0.906254231929779, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7463857142857143, + "t": 0.7300784271284271, + "punct": null, + "u_acc": 0.2948, + "t_acc": 0.2712, + "punct_acc": null, + "threshold_t": 0.07128729671239853, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8593752380952381, + "t": 0.8571714285714286, + "punct": null, + "u_acc": 0.576, + "t_acc": 0.5684, + "punct_acc": null, + "threshold_t": 0.2266821265220642, + "threshold_adj": 0.25 + } + }, + "ru": { + "ersatz": { + "u": 0.9889784946236558, + "t": 0.9885752688172044, + "punct": null, + "u_acc": 0.9556451612903226, + "t_acc": 0.967741935483871, + "punct_acc": null, + "threshold_t": 0.9587193131446838, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.922352328909706, + "t": null, + "punct": null, + "u_acc": 0.7418032786885246, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9421861471861472, + "t": 0.9443073593073593, + "punct": null, + "u_acc": 0.7772727272727272, + "t_acc": 0.8, + "punct_acc": null, + "threshold_t": 0.3324502408504486, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7669371428571429, + "t": 0.7601752958152957, + "punct": null, + "u_acc": 0.3596, + "t_acc": 0.3444, + "punct_acc": null, + "threshold_t": 0.1602788120508194, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8638431746031745, + "t": 0.8699914285714285, + "punct": null, + "u_acc": 0.5772, + "t_acc": 0.6092, + "punct_acc": null, + "threshold_t": 0.4023711383342743, + "threshold_adj": 0.25 + } + }, + "si": { + "opus100": { + "u": 0.8767857142857143, + "t": 0.8983294930875576, + "punct": null, + "u_acc": 0.5524193548387096, + "t_acc": 0.6370967741935484, + "punct_acc": null, + "threshold_t": 0.4392794072628021, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6784606866002215, + "t": 0.6865325458348714, + "punct": null, + "u_acc": 0.21705426356589147, + "t_acc": 0.24806201550387597, + "punct_acc": null, + "threshold_t": 0.30695363879203796, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7057893441614372, + "t": 0.7103851359665313, + "punct": null, + "u_acc": 0.2558139534883721, + "t_acc": 0.2713178294573643, + "punct_acc": null, + "threshold_t": 0.3313850462436676, + "threshold_adj": 0.25 + } + }, + "sk": { + "opus100": { + "u": 0.9660138248847927, + "t": 0.9611751152073732, + "punct": null, + "u_acc": 0.8608870967741935, + "t_acc": 0.8407258064516129, + "punct_acc": null, + "threshold_t": 0.17712686955928802, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.968553459119497, + "t": 0.970062893081761, + "punct": null, + "u_acc": 0.8867924528301887, + "t_acc": 0.9056603773584906, + "punct_acc": null, + "threshold_t": 0.5350900292396545, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7647526984126984, + "t": 0.7477345720945721, + "punct": null, + "u_acc": 0.3544, + "t_acc": 0.3188, + "punct_acc": null, + "threshold_t": 0.13324253261089325, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8539290331890331, + "t": 0.8656257142857142, + "punct": null, + "u_acc": 0.556, + "t_acc": 0.6012, + "punct_acc": null, + "threshold_t": 0.4435036778450012, + "threshold_adj": 0.25 + } + }, + "sl": { + "opus100": { + "u": 0.9625836680053548, + "t": 0.9612449799196788, + "punct": null, + "u_acc": 0.8333333333333334, + "t_acc": 0.8293172690763052, + "punct_acc": null, + "threshold_t": 0.18043507635593414, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9930208333333332, + "t": 0.9942708333333334, + "punct": null, + "u_acc": 0.971875, + "t_acc": 0.978125, + "punct_acc": null, + "threshold_t": 0.3879781663417816, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7779704761904762, + "t": 0.7571816042780749, + "punct": null, + "u_acc": 0.3768, + "t_acc": 0.3216, + "punct_acc": null, + "threshold_t": 0.06725915521383286, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8803501587301588, + "t": 0.8632403174603176, + "punct": null, + "u_acc": 0.6248, + "t_acc": 0.574, + "punct_acc": null, + "threshold_t": 0.12307940423488617, + "threshold_adj": 0.25 + } + }, + "sq": { + "opus100": { + "u": 0.9562620983352691, + "t": 0.9655923344947734, + "punct": null, + "u_acc": 0.8089430894308943, + "t_acc": 0.8577235772357723, + "punct_acc": null, + "threshold_t": 0.5081035494804382, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9444444444444444, + "t": null, + "punct": null, + "u_acc": 0.8666666666666667, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7150706204906205, + "t": 0.696130251970252, + "punct": null, + "u_acc": 0.2584, + "t_acc": 0.2356, + "punct_acc": null, + "threshold_t": 0.15113134682178497, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8247391053391053, + "t": 0.8322622222222222, + "punct": null, + "u_acc": 0.4824, + "t_acc": 0.502, + "punct_acc": null, + "threshold_t": 0.3077636957168579, + "threshold_adj": 0.25 + } + }, + "sr": { + "opus100": { + "u": 0.965136737425894, + "t": 0.9727003251099637, + "punct": null, + "u_acc": 0.8413654618473896, + "t_acc": 0.8755020080321285, + "punct_acc": null, + "threshold_t": 0.5142064690589905, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9938461538461537, + "t": 1.0, + "punct": null, + "u_acc": 0.9692307692307692, + "t_acc": 1.0, + "punct_acc": null, + "threshold_t": 0.7687577605247498, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7527284544695071, + "t": 0.7242078758278758, + "punct": null, + "u_acc": 0.3372, + "t_acc": 0.2776, + "punct_acc": null, + "threshold_t": 0.06521148979663849, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8646656654456654, + "t": 0.8670893968253968, + "punct": null, + "u_acc": 0.5896, + "t_acc": 0.6056, + "punct_acc": null, + "threshold_t": 0.4538241922855377, + "threshold_adj": 0.25 + } + }, + "sv": { + "opus100": { + "u": 0.9635207496653281, + "t": 0.9665997322623828, + "punct": null, + "u_acc": 0.8353413654618473, + "t_acc": 0.8493975903614458, + "punct_acc": null, + "threshold_t": 0.45493221282958984, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9648578811369509, + "t": 0.9664082687338502, + "punct": null, + "u_acc": 0.8565891472868217, + "t_acc": 0.8643410852713178, + "punct_acc": null, + "threshold_t": 0.2939380407333374, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7808742857142857, + "t": 0.7715430303030304, + "punct": null, + "u_acc": 0.392, + "t_acc": 0.3608, + "punct_acc": null, + "threshold_t": 0.0773807168006897, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8669253968253968, + "t": 0.8709219047619048, + "punct": null, + "u_acc": 0.5852, + "t_acc": 0.6024, + "punct_acc": null, + "threshold_t": 0.43130090832710266, + "threshold_adj": 0.25 + } + }, + "ta": { + "ersatz": { + "u": 0.9780876494023905, + "t": 0.9798140770252324, + "punct": null, + "u_acc": 0.9123505976095617, + "t_acc": 0.9203187250996016, + "punct_acc": null, + "threshold_t": 0.7401787042617798, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.8511227255129693, + "t": 0.851589061345159, + "punct": null, + "u_acc": 0.5386178861788617, + "t_acc": 0.5426829268292683, + "punct_acc": null, + "threshold_t": 0.3950875401496887, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9933333333333334, + "t": 0.9888888888888889, + "punct": null, + "u_acc": 0.9666666666666667, + "t_acc": 0.9666666666666667, + "punct_acc": null, + "threshold_t": 0.9846197962760925, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6801233997319406, + "t": 0.6760079698869735, + "punct": null, + "u_acc": 0.21209964412811388, + "t_acc": 0.20284697508896798, + "punct_acc": null, + "threshold_t": 0.20718039572238922, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7482302434615602, + "t": 0.7536198538511706, + "punct": null, + "u_acc": 0.30391459074733096, + "t_acc": 0.31743772241992885, + "punct_acc": null, + "threshold_t": 0.402853786945343, + "threshold_adj": 0.25 + } + }, + "te": { + "opus100": { + "u": 0.9026627793974733, + "t": 0.9078231292517007, + "punct": null, + "u_acc": 0.6551020408163265, + "t_acc": 0.7, + "punct_acc": null, + "threshold_t": 0.4780767858028412, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6541209461904326, + "t": 0.6753787333847757, + "punct": null, + "u_acc": 0.1555891238670695, + "t_acc": 0.18277945619335348, + "punct_acc": null, + "threshold_t": 0.3297079801559448, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.726380115352925, + "t": 0.7394307773461853, + "punct": null, + "u_acc": 0.26435045317220546, + "t_acc": 0.29607250755287007, + "punct_acc": null, + "threshold_t": 0.3738456070423126, + "threshold_adj": 0.25 + } + }, + "tg": { + "opus100": { + "u": 0.936813922356091, + "t": 0.9327309236947792, + "punct": null, + "u_acc": 0.7610441767068273, + "t_acc": 0.7610441767068273, + "punct_acc": null, + "threshold_t": 0.32450544834136963, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.743922305764411, + "t": 0.7407268170426065, + "punct": null, + "u_acc": 0.25, + "t_acc": 0.2631578947368421, + "punct_acc": null, + "threshold_t": 0.06046656519174576, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8610275689223057, + "t": 0.8697994987468671, + "punct": null, + "u_acc": 0.5263157894736842, + "t_acc": 0.5263157894736842, + "punct_acc": null, + "threshold_t": 0.1752977818250656, + "threshold_adj": 0.25 + } + }, + "th": { + "opus100": { + "u": 0.8101875901875902, + "t": 0.8135930735930735, + "punct": null, + "u_acc": 0.3434343434343434, + "t_acc": 0.3515151515151515, + "punct_acc": null, + "threshold_t": 0.26050248742103577, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.8629523809523809, + "t": null, + "punct": null, + "u_acc": 0.592, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7427162837878967, + "t": 0.7389915906315906, + "punct": null, + "u_acc": 0.29, + "t_acc": 0.2816, + "punct_acc": null, + "threshold_t": 0.2073788344860077, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7441536983016983, + "t": 0.7397373515373515, + "punct": null, + "u_acc": 0.2916, + "t_acc": 0.282, + "punct_acc": null, + "threshold_t": 0.2073788344860077, + "threshold_adj": 0.25 + } + }, + "tr": { + "ersatz": { + "u": 0.9798378926038501, + "t": 0.9829343971631207, + "punct": null, + "u_acc": 0.9175531914893617, + "t_acc": 0.9414893617021277, + "punct_acc": null, + "threshold_t": 0.7831779718399048, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.9561499903605166, + "t": 0.9585791401580875, + "punct": null, + "u_acc": 0.8157894736842105, + "t_acc": 0.8279352226720648, + "punct_acc": null, + "threshold_t": 0.36859434843063354, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9847272727272728, + "t": 0.9830303030303031, + "punct": null, + "u_acc": 0.9309090909090909, + "t_acc": 0.9345454545454546, + "punct_acc": null, + "threshold_t": 0.6335538029670715, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7993467243867244, + "t": 0.7852118673483379, + "punct": null, + "u_acc": 0.4236, + "t_acc": 0.3812, + "punct_acc": null, + "threshold_t": 0.10223785787820816, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8671946608946608, + "t": 0.8673013275613277, + "punct": null, + "u_acc": 0.5684, + "t_acc": 0.5684, + "punct_acc": null, + "threshold_t": 0.2503863275051117, + "threshold_adj": 0.25 + } + }, + "uk": { + "opus100": { + "u": 0.9452094090648308, + "t": 0.9566360680818513, + "punct": null, + "u_acc": 0.7630522088353414, + "t_acc": 0.821285140562249, + "punct_acc": null, + "threshold_t": 0.7379667162895203, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9735119047619047, + "t": 0.9741071428571428, + "punct": null, + "u_acc": 0.9107142857142857, + "t_acc": 0.9196428571428571, + "punct_acc": null, + "threshold_t": 0.5434187054634094, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7498987301587302, + "t": 0.7210802932699484, + "punct": null, + "u_acc": 0.3188, + "t_acc": 0.254, + "punct_acc": null, + "threshold_t": 0.05720015615224838, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8588638672438672, + "t": 0.8574248196248194, + "punct": null, + "u_acc": 0.574, + "t_acc": 0.5684, + "punct_acc": null, + "threshold_t": 0.2214488983154297, + "threshold_adj": 0.25 + } + }, + "ur": { + "opus100": { + "u": 0.7637409200968522, + "t": 0.6976258675411218, + "punct": null, + "u_acc": 0.3453389830508475, + "t_acc": 0.23516949152542374, + "punct_acc": null, + "threshold_t": 0.03463957458734512, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9823738450604123, + "t": 0.9875621890547265, + "punct": null, + "u_acc": 0.9253731343283582, + "t_acc": 0.9477611940298507, + "punct_acc": null, + "threshold_t": 0.392752468585968, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7270786339388601, + "t": 0.7038153379109187, + "punct": null, + "u_acc": 0.2918807810894142, + "t_acc": 0.2420349434737924, + "punct_acc": null, + "threshold_t": 0.049974311143159866, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.7598837442105684, + "t": 0.7546752579383619, + "punct": null, + "u_acc": 0.35251798561151076, + "t_acc": 0.34121274409044194, + "punct_acc": null, + "threshold_t": 0.18472839891910553, + "threshold_adj": 0.25 + } + }, + "uz": { + "opus100": { + "u": 0.912312925170068, + "t": 0.9063945578231293, + "punct": null, + "u_acc": 0.6938775510204082, + "t_acc": 0.6510204081632653, + "punct_acc": null, + "threshold_t": 0.18522405624389648, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7739737641636375, + "t": 0.7325319078483636, + "punct": null, + "u_acc": 0.36603375527426163, + "t_acc": 0.2521097046413502, + "punct_acc": null, + "threshold_t": 0.03773416951298714, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8482142857142857, + "t": 0.8267869320084511, + "punct": null, + "u_acc": 0.5284810126582279, + "t_acc": 0.45464135021097046, + "punct_acc": null, + "threshold_t": 0.09298396855592728, + "threshold_adj": 0.25 + } + }, + "vi": { + "opus100": { + "u": 0.9465020576131687, + "t": 0.9572702331961591, + "punct": null, + "u_acc": 0.7757201646090535, + "t_acc": 0.8251028806584362, + "punct_acc": null, + "threshold_t": 0.5840871334075928, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.987, + "t": 0.9956666666666666, + "punct": null, + "u_acc": 0.935, + "t_acc": 0.985, + "punct_acc": null, + "threshold_t": 0.9163193702697754, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.7216463492063493, + "t": 0.7034495415695415, + "punct": null, + "u_acc": 0.276, + "t_acc": 0.2452, + "punct_acc": null, + "threshold_t": 0.09150715172290802, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.8294349206349205, + "t": 0.8211955555555556, + "punct": null, + "u_acc": 0.4856, + "t_acc": 0.4596, + "punct_acc": null, + "threshold_t": 0.17010951042175293, + "threshold_adj": 0.25 + } + }, + "xh": { + "opus100": { + "u": 0.910719225449516, + "t": 0.9206184548508201, + "punct": null, + "u_acc": 0.6721991701244814, + "t_acc": 0.7136929460580913, + "punct_acc": null, + "threshold_t": 0.3773551285266876, + "threshold_adj": 0.25 + } + }, + "yi": { + "opus100": { + "u": 0.9198537095088819, + "t": 0.919435736677116, + "punct": null, + "u_acc": 0.7460815047021944, + "t_acc": 0.7460815047021944, + "punct_acc": null, + "threshold_t": 0.25716787576675415, + "threshold_adj": 0.25 + } + }, + "yo": { + "opus100": { + "u": 0.8186860068259386, + "t": null, + "punct": null, + "u_acc": 0.4543515358361775, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9170833333333335, + "t": null, + "punct": null, + "u_acc": 0.6625, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.25 + }, + "nllb": { + "u": 0.9215853968253971, + "t": 0.9257720634920635, + "punct": null, + "u_acc": 0.718, + "t_acc": 0.7388, + "punct_acc": null, + "threshold_t": 0.3059988021850586, + "threshold_adj": 0.25 + } + }, + "zh": { + "ersatz": { + "u": 0.9604, + "t": 0.9635333333333334, + "punct": null, + "u_acc": 0.896, + "t_acc": 0.91, + "punct_acc": null, + "threshold_t": 0.4638150930404663, + "threshold_adj": 0.25 + }, + "opus100": { + "u": 0.8987592219986585, + "t": 0.8293685634731913, + "punct": null, + "u_acc": 0.6800804828973843, + "t_acc": 0.44668008048289737, + "punct_acc": null, + "threshold_t": 0.015144760720431805, + "threshold_adj": 0.25 + }, + "ud": { + "u": 0.9896, + "t": 0.9944, + "punct": null, + "u_acc": 0.96, + "t_acc": 0.984, + "punct_acc": null, + "threshold_t": 0.9433436393737793, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-asr": { + "u": 0.6496059167332613, + "t": 0.5896321000873582, + "punct": null, + "u_acc": 0.140177690029615, + "t_acc": 0.08835143139190524, + "punct_acc": null, + "threshold_t": 0.04079819843173027, + "threshold_adj": 0.25 + }, + "ted2020-corrupted-social-media": { + "u": 0.6701009887337627, + "t": 0.634694199625098, + "punct": null, + "u_acc": 0.175715695952616, + "t_acc": 0.1377097729516288, + "punct_acc": null, + "threshold_t": 0.08350198715925217, + "threshold_adj": 0.25 + } + }, + "zu": { + "opus100": { + "u": 0.9306980056980058, + "t": 0.9321937321937321, + "punct": null, + "u_acc": 0.7393162393162394, + "t_acc": 0.7521367521367521, + "punct_acc": null, + "threshold_t": 0.2889588475227356, + "threshold_adj": 0.25 + } + }, + "tr-de": {}, + "es-en": {}, + "vi-en": {}, + "en-de": {} +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/wtp-12l.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/wtp-12l.json new file mode 100644 index 0000000000000000000000000000000000000000..4b6187729976be8f497dd64791d689be6ff988a9 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/wtp-12l.json @@ -0,0 +1,3350 @@ +{ + "af": { + "opus100": { + "u": 0.8048474711697852, + "t": 0.8133093031853362, + "punct": 0.8901219992129084, + "u_acc": 0.4380165289256198, + "t_acc": 0.45867768595041325, + "punct_acc": 0.6508264462809917, + "threshold_t": 0.005403372924774885, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9742138364779874, + "t": 0.9773584905660376, + "punct": 0.9968553459119496, + "u_acc": 0.9150943396226415, + "t_acc": 0.9245283018867925, + "punct_acc": 0.9905660377358491, + "threshold_t": 0.009295427240431309, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.7086984126984127, + "t": 0.7114705977782901, + "punct": 0.8084395604395604, + "u_acc": 0.20615384615384616, + "t_acc": 0.2246153846153846, + "punct_acc": 0.46153846153846156, + "threshold_t": 0.002592954318970442, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7474383394383395, + "t": 0.765995781995782, + "punct": 0.8882197802197802, + "u_acc": 0.27076923076923076, + "t_acc": 0.3507692307692308, + "punct_acc": 0.6338461538461538, + "threshold_t": 0.001331276260316372, + "threshold_adj": 0.01 + } + }, + "am": { + "opus100": { + "u": 0.7073303982942537, + "t": 0.6944691074209147, + "punct": 0.7543220501051826, + "u_acc": 0.21084337349397592, + "t_acc": 0.1927710843373494, + "punct_acc": 0.2791164658634538, + "threshold_t": 0.007174979895353317, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6622283098845598, + "t": 0.5943464955183706, + "punct": 0.7328869047619049, + "u_acc": 0.1484375, + "t_acc": 0.1171875, + "punct_acc": 0.28125, + "threshold_t": 0.0008336202008649707, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.6714161706349207, + "t": 0.6588818860877684, + "punct": 0.7223214285714286, + "u_acc": 0.1640625, + "t_acc": 0.171875, + "punct_acc": 0.265625, + "threshold_t": 0.0034712133929133415, + "threshold_adj": 0.01 + } + }, + "ar": { + "ersatz": { + "u": 0.8820883608117651, + "t": 0.8819951030057412, + "punct": 0.9399316109422492, + "u_acc": 0.6143617021276596, + "t_acc": 0.6143617021276596, + "punct_acc": 0.7925531914893617, + "threshold_t": 0.01200223807245493, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.7897728888692743, + "t": 0.7985965841387528, + "punct": 0.8189374547808282, + "u_acc": 0.3855421686746988, + "t_acc": 0.40963855421686746, + "punct_acc": 0.4779116465863454, + "threshold_t": 0.01541497465223074, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9013445378151262, + "t": 0.8856862745098039, + "punct": 0.8683948731007556, + "u_acc": 0.6764705882352942, + "t_acc": 0.6411764705882353, + "punct_acc": 0.6588235294117647, + "threshold_t": 0.24522088468074799, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6584468697968697, + "t": 0.6464607630690602, + "punct": 0.7527269841269841, + "u_acc": 0.0948, + "t_acc": 0.14, + "punct_acc": 0.3252, + "threshold_t": 0.002449934370815754, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.67787555999556, + "t": 0.6624854910105374, + "punct": 0.7662092063492064, + "u_acc": 0.152, + "t_acc": 0.1644, + "punct_acc": 0.346, + "threshold_t": 0.0038563087582588196, + "threshold_adj": 0.01 + } + }, + "az": { + "opus100": { + "u": 0.8245713010773251, + "t": 0.8189711225855804, + "punct": 0.8642570281124498, + "u_acc": 0.4036144578313253, + "t_acc": 0.43775100401606426, + "punct_acc": 0.570281124497992, + "threshold_t": 0.08374238014221191, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6948816090660063, + "t": 0.7195275586570984, + "punct": 0.8210007880220646, + "u_acc": 0.11229314420803782, + "t_acc": 0.2641843971631206, + "punct_acc": 0.4739952718676123, + "threshold_t": 0.0003218701749574393, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.726713846306045, + "t": 0.7584719328941273, + "punct": 0.8665991219182708, + "u_acc": 0.20626477541371158, + "t_acc": 0.32978723404255317, + "punct_acc": 0.5910165484633569, + "threshold_t": 0.0005253333947621286, + "threshold_adj": 0.009999999999999998 + } + }, + "be": { + "opus100": { + "u": 0.7527950438337404, + "t": 0.7513868683929784, + "punct": 0.8944137329066045, + "u_acc": 0.3380855397148676, + "t_acc": 0.3319755600814664, + "punct_acc": 0.6517311608961304, + "threshold_t": 0.0016311279032379389, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9027261462205699, + "t": 0.8980350504514074, + "punct": 0.9207116303770579, + "u_acc": 0.6914498141263941, + "t_acc": 0.6691449814126395, + "punct_acc": 0.7695167286245354, + "threshold_t": 0.006256191525608301, + "threshold_adj": 0.010000000000000002 + }, + "ted2020-corrupted-asr": { + "u": 0.7049851907411935, + "t": 0.7109320739106593, + "punct": 0.8138237384506042, + "u_acc": 0.16937053861129137, + "t_acc": 0.21414665801427643, + "punct_acc": 0.4652822842310188, + "threshold_t": 0.003423084504902363, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.75907007406034, + "t": 0.7781802270121544, + "punct": 0.8785431022939135, + "u_acc": 0.3011031797534069, + "t_acc": 0.3744321868916288, + "punct_acc": 0.627514600908501, + "threshold_t": 0.002322097308933735, + "threshold_adj": 0.009999999999999998 + } + }, + "bg": { + "opus100": { + "u": 0.9105862518688169, + "t": 0.9177306994942265, + "punct": 0.9537837579921749, + "u_acc": 0.7034068136272545, + "t_acc": 0.6913827655310621, + "punct_acc": 0.8196392785571143, + "threshold_t": 0.0018652341095730662, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9453149001536097, + "t": 0.9569039085168117, + "punct": 0.9782556750298685, + "u_acc": 0.8207885304659498, + "t_acc": 0.8530465949820788, + "punct_acc": 0.931899641577061, + "threshold_t": 0.005350757855921984, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6911520634920636, + "t": 0.7046475790875791, + "punct": 0.8108739682539683, + "u_acc": 0.1096, + "t_acc": 0.1936, + "punct_acc": 0.4392, + "threshold_t": 0.0017837951891124249, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7456438672438673, + "t": 0.7760783520899649, + "punct": 0.8790765367965366, + "u_acc": 0.2608, + "t_acc": 0.3612, + "punct_acc": 0.6352, + "threshold_t": 0.00205629994161427, + "threshold_adj": 0.01 + } + }, + "bn": { + "opus100": { + "u": 0.8562579830185464, + "t": 0.8678068410462776, + "punct": 0.8671169876401266, + "u_acc": 0.5352112676056338, + "t_acc": 0.579476861167002, + "punct_acc": 0.5814889336016097, + "threshold_t": 0.1256358027458191, + "threshold_adj": 0.010000000000000002 + }, + "ud": { + "u": 0.9857142857142858, + "t": null, + "punct": null, + "u_acc": 0.9285714285714286, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.4793006405582141, + "t": 0.5712293006139161, + "punct": 0.6148774558774559, + "u_acc": 0.021538461538461538, + "t_acc": 0.03, + "punct_acc": 0.09615384615384616, + "threshold_t": 0.02392040751874447, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.6981119436119436, + "t": 0.6796049177067277, + "punct": 0.7825280830280831, + "u_acc": 0.19615384615384615, + "t_acc": 0.19692307692307692, + "punct_acc": 0.38384615384615384, + "threshold_t": 0.002451888285577297, + "threshold_adj": 0.009999999999999998 + } + }, + "ca": { + "opus100": { + "u": 0.8952939442797455, + "t": 0.8966047362599087, + "punct": 0.9314144048423967, + "u_acc": 0.6815415821501014, + "t_acc": 0.6855983772819473, + "punct_acc": 0.768762677484787, + "threshold_t": 0.003039239440113306, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9701748467982234, + "t": 0.9568167762972959, + "punct": 0.9833333333333333, + "u_acc": 0.9134199134199135, + "t_acc": 0.8744588744588745, + "punct_acc": 0.9502164502164502, + "threshold_t": 0.019431274384260178, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6893278195488723, + "t": 0.7055860293610758, + "punct": 0.8153451370851371, + "u_acc": 0.1076, + "t_acc": 0.2164, + "punct_acc": 0.4656, + "threshold_t": 0.0008482233970426023, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7552436075036075, + "t": 0.7647814114176869, + "punct": 0.8767777777777778, + "u_acc": 0.2812, + "t_acc": 0.3504, + "punct_acc": 0.6284, + "threshold_t": 0.000583290180657059, + "threshold_adj": 0.01 + } + }, + "ceb": { + "ud": { + "u": 0.9503546099290779, + "t": null, + "punct": null, + "u_acc": 0.851063829787234, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.010000000000000002 + }, + "ted2020-corrupted-asr": { + "u": 0.6867965367965366, + "t": 0.6845238095238094, + "punct": 0.7027210884353742, + "u_acc": 0.14285714285714285, + "t_acc": 0.14285714285714285, + "punct_acc": 0.14285714285714285, + "threshold_t": 0.019107719883322716, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7523809523809524, + "t": 0.6785714285714286, + "punct": 0.7142857142857142, + "u_acc": 0.2857142857142857, + "t_acc": 0.07142857142857142, + "punct_acc": 0.2857142857142857, + "threshold_t": 0.12547460198402405, + "threshold_adj": 0.009999999999999998 + }, + "nllb": { + "u": 0.8478277522477521, + "t": 0.8714170451770453, + "punct": 0.8983777777777777, + "u_acc": 0.5284, + "t_acc": 0.6108, + "punct_acc": 0.6884, + "threshold_t": 0.06593380123376846, + "threshold_adj": 0.01 + } + }, + "cs": { + "ersatz": { + "u": 0.9269510582010583, + "t": 0.9350639329805995, + "punct": 0.9799382716049382, + "u_acc": 0.7546296296296297, + "t_acc": 0.7777777777777778, + "punct_acc": 0.9305555555555556, + "threshold_t": 0.005268908571451902, + "threshold_adj": 0.009999999999999998 + }, + "opus100": { + "u": 0.8986449864498645, + "t": 0.8843349856135064, + "punct": 0.9139891950867561, + "u_acc": 0.6646341463414634, + "t_acc": 0.6178861788617886, + "punct_acc": 0.7154471544715447, + "threshold_t": 0.0014898094814270735, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9089736367733213, + "t": 0.9044458214410896, + "punct": 0.9560218566922039, + "u_acc": 0.7141167192429022, + "t_acc": 0.7011041009463722, + "punct_acc": 0.8623817034700315, + "threshold_t": 0.012753698974847794, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6916231746031747, + "t": 0.6907615375474199, + "punct": 0.8177609812409812, + "u_acc": 0.1228, + "t_acc": 0.1968, + "punct_acc": 0.4588, + "threshold_t": 0.0008177660638466477, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7478377777777778, + "t": 0.7569012698412698, + "punct": 0.8859790476190476, + "u_acc": 0.2696, + "t_acc": 0.3016, + "punct_acc": 0.6468, + "threshold_t": 0.0038859345950186253, + "threshold_adj": 0.01 + } + }, + "cy": { + "opus100": { + "u": 0.7665211062590976, + "t": 0.7787762213526406, + "punct": 0.8597872045470298, + "u_acc": 0.314410480349345, + "t_acc": 0.36026200873362446, + "punct_acc": 0.5611353711790393, + "threshold_t": 0.0012611985439434648, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9610644257703082, + "t": 0.9652661064425769, + "punct": 0.9893557422969188, + "u_acc": 0.8781512605042017, + "t_acc": 0.8907563025210085, + "punct_acc": 0.9663865546218487, + "threshold_t": 0.008918891660869122, + "threshold_adj": 0.01 + } + }, + "da": { + "opus100": { + "u": 0.9033762160778289, + "t": 0.9102566564260113, + "punct": 0.9356886840757809, + "u_acc": 0.6754032258064516, + "t_acc": 0.7016129032258065, + "punct_acc": 0.7600806451612904, + "threshold_t": 0.002597908955067396, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.925531914893617, + "t": 0.9144208037825059, + "punct": 0.9853427895981087, + "u_acc": 0.75177304964539, + "t_acc": 0.723404255319149, + "punct_acc": 0.950354609929078, + "threshold_t": 0.02169887162744999, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.689195457875458, + "t": 0.7175285113087956, + "punct": 0.8138933333333334, + "u_acc": 0.1016, + "t_acc": 0.2312, + "punct_acc": 0.4576, + "threshold_t": 0.0008742018835619092, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7434975438596492, + "t": 0.776485706747359, + "punct": 0.8807246527385658, + "u_acc": 0.2484, + "t_acc": 0.356, + "punct_acc": 0.6212, + "threshold_t": 0.0013343056198209524, + "threshold_adj": 0.01 + } + }, + "de": { + "ersatz": { + "u": 0.942983221801959, + "t": 0.9404131510037823, + "punct": 0.987101154107264, + "u_acc": 0.7983706720977597, + "t_acc": 0.7922606924643585, + "punct_acc": 0.9490835030549898, + "threshold_t": 0.01113155111670494, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.8565718973946822, + "t": 0.8256737051040849, + "punct": 0.9079878981777715, + "u_acc": 0.5295358649789029, + "t_acc": 0.4388185654008439, + "punct_acc": 0.6962025316455697, + "threshold_t": 0.0031019507441669703, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9495901639344262, + "t": 0.9531420765027322, + "punct": 0.9603825136612021, + "u_acc": 0.8319672131147541, + "t_acc": 0.8442622950819673, + "punct_acc": 0.8729508196721312, + "threshold_t": 0.008960246108472347, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.696210061050061, + "t": 0.7455628416028416, + "punct": 0.8349517460317462, + "u_acc": 0.1328, + "t_acc": 0.2896, + "punct_acc": 0.5032, + "threshold_t": 0.0016974055906757712, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7520000177600178, + "t": 0.7754551004551005, + "punct": 0.8802539194139194, + "u_acc": 0.2884, + "t_acc": 0.366, + "punct_acc": 0.6308, + "threshold_t": 0.0020241020247340202, + "threshold_adj": 0.01 + } + }, + "el": { + "opus100": { + "u": 0.9098680436029833, + "t": 0.911289602855868, + "punct": 0.9544272327404858, + "u_acc": 0.6947791164658634, + "t_acc": 0.6947791164658634, + "punct_acc": 0.8253012048192772, + "threshold_t": 0.005961057264357805, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9707602339181287, + "t": 0.962280701754386, + "punct": 0.9941520467836258, + "u_acc": 0.9122807017543859, + "t_acc": 0.8947368421052632, + "punct_acc": 0.9824561403508771, + "threshold_t": 0.02592281438410282, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6956608635808635, + "t": 0.7041541103341104, + "punct": 0.8126152380952382, + "u_acc": 0.1288, + "t_acc": 0.1864, + "punct_acc": 0.4588, + "threshold_t": 0.003526597283780575, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7428358241758242, + "t": 0.7618133593493595, + "punct": 0.8847492063492064, + "u_acc": 0.2564, + "t_acc": 0.3344, + "punct_acc": 0.6444, + "threshold_t": 0.0018985457718372345, + "threshold_adj": 0.01 + } + }, + "en": { + "ersatz": { + "u": 0.9629795207676828, + "t": 0.96363718778049, + "punct": 0.982274181339602, + "u_acc": 0.8696780893042575, + "t_acc": 0.8712357217030114, + "punct_acc": 0.9397715472481828, + "threshold_t": 0.009546288289129734, + "threshold_adj": 0.009999999999999998 + }, + "opus100": { + "u": 0.9093509984639018, + "t": 0.8461108218203343, + "punct": 0.9244623655913978, + "u_acc": 0.6995967741935484, + "t_acc": 0.5120967741935484, + "punct_acc": 0.7419354838709677, + "threshold_t": 0.00010237988317385316, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9150851581508516, + "t": 0.9234966979492527, + "punct": 0.940875912408759, + "u_acc": 0.7372262773722628, + "t_acc": 0.7445255474452555, + "punct_acc": 0.8211678832116789, + "threshold_t": 0.005100507754832506, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6691673593073594, + "t": 0.6750663302928009, + "punct": 0.807943492063492, + "u_acc": 0.0596, + "t_acc": 0.172, + "punct_acc": 0.4356, + "threshold_t": 0.0007762826862744987, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7317492063492064, + "t": 0.7404888288964868, + "punct": 0.8694876767676768, + "u_acc": 0.2316, + "t_acc": 0.308, + "punct_acc": 0.6032, + "threshold_t": 0.00044731906382367015, + "threshold_adj": 0.01 + } + }, + "eo": { + "opus100": { + "u": 0.9062115975422427, + "t": 0.891808057533864, + "punct": 0.9123655913978495, + "u_acc": 0.6975806451612904, + "t_acc": 0.6108870967741935, + "punct_acc": 0.7217741935483871, + "threshold_t": 0.0004765467601828277, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6826491960420533, + "t": 0.6944785818265474, + "punct": 0.7983395989974936, + "u_acc": 0.10964912280701754, + "t_acc": 0.20426065162907267, + "punct_acc": 0.43546365914786966, + "threshold_t": 0.0010796994902193546, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7309698759886729, + "t": 0.7330259739096483, + "punct": 0.8609853005529696, + "u_acc": 0.2337092731829574, + "t_acc": 0.3032581453634085, + "punct_acc": 0.5827067669172933, + "threshold_t": 0.00039862043922767043, + "threshold_adj": 0.009999999999999998 + } + }, + "es": { + "ersatz": { + "u": 0.9578826308591321, + "t": null, + "punct": null, + "u_acc": 0.8616187989556136, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "opus100": { + "u": 0.9005494505494506, + "t": 0.8924309608520135, + "punct": 0.9409099672257567, + "u_acc": 0.6558704453441295, + "t_acc": 0.6477732793522267, + "punct_acc": 0.7854251012145749, + "threshold_t": 0.0014283789787441492, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.9635145474680358, + "t": 0.9638246249874156, + "punct": 0.9742635658914729, + "u_acc": 0.8744186046511628, + "t_acc": 0.8744186046511628, + "punct_acc": 0.9302325581395349, + "threshold_t": 0.009587920270860195, + "threshold_adj": 0.009999999999999997 + }, + "ted2020-corrupted-asr": { + "u": 0.6721489494818906, + "t": 0.6713169025314784, + "punct": 0.8177292063492064, + "u_acc": 0.0744, + "t_acc": 0.1868, + "punct_acc": 0.4612, + "threshold_t": 0.0004072466981597245, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7377694660894661, + "t": 0.7689758013537891, + "punct": 0.8803532356532356, + "u_acc": 0.2432, + "t_acc": 0.356, + "punct_acc": 0.6268, + "threshold_t": 0.0010286110918968916, + "threshold_adj": 0.01 + } + }, + "et": { + "ersatz": { + "u": 0.9414682539682538, + "t": 0.9287698412698412, + "punct": 0.9917989417989418, + "u_acc": 0.8075396825396826, + "t_acc": 0.7757936507936508, + "punct_acc": 0.9722222222222222, + "threshold_t": 0.019468940794467926, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.8828725625939248, + "t": 0.8680947890568602, + "punct": 0.9202429149797571, + "u_acc": 0.645748987854251, + "t_acc": 0.611336032388664, + "punct_acc": 0.7408906882591093, + "threshold_t": 0.002200495218858123, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.9116974650556741, + "t": 0.9246564795072257, + "punct": 0.9736318407960198, + "u_acc": 0.7251243781094527, + "t_acc": 0.753731343283582, + "punct_acc": 0.9228855721393034, + "threshold_t": 0.004642595071345568, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.7187766107576634, + "t": 0.7271577688977688, + "punct": 0.827927619047619, + "u_acc": 0.1932, + "t_acc": 0.2468, + "punct_acc": 0.498, + "threshold_t": 0.0027815571520477533, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7550479349889876, + "t": 0.7792295711306237, + "punct": 0.8833733333333333, + "u_acc": 0.284, + "t_acc": 0.3652, + "punct_acc": 0.636, + "threshold_t": 0.0015734125627204776, + "threshold_adj": 0.01 + } + }, + "eu": { + "opus100": { + "u": 0.8747007943951917, + "t": 0.8591035291082922, + "punct": 0.895748987854251, + "u_acc": 0.6072874493927125, + "t_acc": 0.5668016194331984, + "punct_acc": 0.6720647773279352, + "threshold_t": 0.0027053426019847393, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.9437951431284765, + "t": 0.9349611992945327, + "punct": 0.989925925925926, + "u_acc": 0.8111111111111111, + "t_acc": 0.8, + "punct_acc": 0.9688888888888889, + "threshold_t": 0.027800235897302628, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6785267040307363, + "t": 0.6759614367326842, + "punct": 0.7805918245434376, + "u_acc": 0.10013440860215053, + "t_acc": 0.16532258064516128, + "punct_acc": 0.3817204301075269, + "threshold_t": 0.0017209631623700261, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7363800252913154, + "t": 0.743314365838638, + "punct": 0.8613149544601157, + "u_acc": 0.23588709677419356, + "t_acc": 0.28360215053763443, + "punct_acc": 0.5799731182795699, + "threshold_t": 0.0029673087410628796, + "threshold_adj": 0.009999999999999998 + } + }, + "fa": { + "opus100": { + "u": 0.7566603625721862, + "t": 0.7431504756655057, + "punct": 0.8109838725069186, + "u_acc": 0.34468937875751504, + "t_acc": 0.33867735470941884, + "punct_acc": 0.4529058116232465, + "threshold_t": 0.003364105010405183, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9567547531833247, + "t": 0.9653061224489796, + "punct": 0.999084249084249, + "u_acc": 0.8324175824175825, + "t_acc": 0.8736263736263736, + "punct_acc": 0.9972527472527473, + "threshold_t": 0.0378442257642746, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6745689466089466, + "t": 0.6762113694400005, + "punct": 0.7971028571428571, + "u_acc": 0.0968, + "t_acc": 0.2052, + "punct_acc": 0.4236, + "threshold_t": 0.000874185177963227, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7152530336330336, + "t": 0.6938481545778279, + "punct": 0.8131273015873015, + "u_acc": 0.2124, + "t_acc": 0.2164, + "punct_acc": 0.4492, + "threshold_t": 0.0016658874228596687, + "threshold_adj": 0.01 + } + }, + "fi": { + "ersatz": { + "u": 0.9437541750167, + "t": 0.9472277889111556, + "punct": 0.9918503674014696, + "u_acc": 0.8136272545090181, + "t_acc": 0.8176352705410822, + "punct_acc": 0.9739478957915831, + "threshold_t": 0.006680644582957029, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.891294084855453, + "t": 0.8928424313026041, + "punct": 0.9411899971256109, + "u_acc": 0.6559356136820925, + "t_acc": 0.6317907444668008, + "punct_acc": 0.7947686116700201, + "threshold_t": 0.0010179057717323303, + "threshold_adj": 0.010000000000000002 + }, + "ud": { + "u": 0.904741821752131, + "t": 0.9175425090373543, + "punct": 0.9611111111111112, + "u_acc": 0.7061855670103093, + "t_acc": 0.729381443298969, + "punct_acc": 0.8711340206185567, + "threshold_t": 0.005099939182400703, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.7011412698412699, + "t": 0.6913237183387648, + "punct": 0.8105165079365079, + "u_acc": 0.1552, + "t_acc": 0.2048, + "punct_acc": 0.4516, + "threshold_t": 0.0011576683027669787, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7470788455988457, + "t": 0.7575625108225109, + "punct": 0.8725371428571427, + "u_acc": 0.2656, + "t_acc": 0.2992, + "punct_acc": 0.6152, + "threshold_t": 0.004594860132783651, + "threshold_adj": 0.01 + } + }, + "fr": { + "ersatz": { + "u": 0.9569358178053831, + "t": 0.9628939498504717, + "punct": 0.9866344605475041, + "u_acc": 0.8454106280193237, + "t_acc": 0.8623188405797102, + "punct_acc": 0.9492753623188406, + "threshold_t": 0.008584747090935707, + "threshold_adj": 0.009999999999999997 + }, + "opus100": { + "u": 0.9063910621719953, + "t": null, + "punct": null, + "u_acc": 0.6734279918864098, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9647435897435899, + "t": 0.9608974358974359, + "punct": 0.983974358974359, + "u_acc": 0.8557692307692307, + "t_acc": 0.8557692307692307, + "punct_acc": 0.9519230769230769, + "threshold_t": 0.014244242571294308, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6822381529581529, + "t": 0.7071537946367358, + "punct": 0.8053752380952381, + "u_acc": 0.0892, + "t_acc": 0.2196, + "punct_acc": 0.4304, + "threshold_t": 0.0006602457724511623, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.743796507936508, + "t": 0.7687689066489067, + "punct": 0.8699695238095239, + "u_acc": 0.2608, + "t_acc": 0.3364, + "punct_acc": 0.6096, + "threshold_t": 0.0024180952459573746, + "threshold_adj": 0.01 + } + }, + "fy": { + "opus100": { + "u": 0.7140921786844534, + "t": 0.7494832182600423, + "punct": 0.8867770284079297, + "u_acc": 0.24034334763948498, + "t_acc": 0.34549356223175964, + "punct_acc": 0.630901287553648, + "threshold_t": 0.00040005584014579654, + "threshold_adj": 0.01 + } + }, + "ga": { + "opus100": { + "u": 0.861046088767863, + "t": 0.7615869650284911, + "punct": 0.8777745775729646, + "u_acc": 0.592741935483871, + "t_acc": 0.3588709677419355, + "punct_acc": 0.6209677419354839, + "threshold_t": 0.0007172009209170938, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9167336869552937, + "t": 0.9309802283486492, + "punct": 0.9807017543859649, + "u_acc": 0.7456140350877193, + "t_acc": 0.7807017543859649, + "punct_acc": 0.9473684210526315, + "threshold_t": 0.043403904885053635, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.630952380952381, + "t": 0.5077380952380952, + "punct": 0.6238095238095238, + "u_acc": 0.0, + "t_acc": 0.0, + "punct_acc": 0.08333333333333333, + "threshold_t": 0.00021879812993574888, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7333333333333334, + "t": 0.6587301587301587, + "punct": 0.6813492063492063, + "u_acc": 0.25, + "t_acc": 0.25, + "punct_acc": 0.25, + "threshold_t": 0.0033892274368554354, + "threshold_adj": 0.009999999999999998 + } + }, + "gd": { + "opus100": { + "u": 0.8011787184009406, + "t": 0.8203203997648442, + "punct": 0.9289101566552548, + "u_acc": 0.40370370370370373, + "t_acc": 0.4666666666666667, + "punct_acc": 0.7518518518518519, + "threshold_t": 0.0038611404597759247, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.8036764705882353, + "t": 0.7981559290382819, + "punct": 0.8103057889822596, + "u_acc": 0.4117647058823529, + "t_acc": 0.41911764705882354, + "punct_acc": 0.4632352941176471, + "threshold_t": 0.003175579709932208, + "threshold_adj": 0.009999999999999998 + } + }, + "gl": { + "opus100": { + "u": 0.8900953661034305, + "t": 0.8946556579621096, + "punct": 0.935157450076805, + "u_acc": 0.6290322580645161, + "t_acc": 0.6471774193548387, + "punct_acc": 0.7620967741935484, + "threshold_t": 0.006588101852685213, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.947969696969697, + "t": 0.9384444444444443, + "punct": 0.9913333333333333, + "u_acc": 0.85, + "t_acc": 0.81, + "punct_acc": 0.97, + "threshold_t": 0.01674182154238224, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6836185347985348, + "t": 0.6998197420075923, + "punct": 0.8142073593073593, + "u_acc": 0.0832, + "t_acc": 0.2176, + "punct_acc": 0.4644, + "threshold_t": 0.0003654438187368214, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7374019047619047, + "t": 0.7600711466311466, + "punct": 0.8753679653679654, + "u_acc": 0.238, + "t_acc": 0.318, + "punct_acc": 0.6204, + "threshold_t": 0.0012413231888785958, + "threshold_adj": 0.01 + } + }, + "gu": { + "ersatz": { + "u": 0.9390691548171863, + "t": 0.9180414948131483, + "punct": 0.968241469816273, + "u_acc": 0.8188976377952756, + "t_acc": 0.7480314960629921, + "punct_acc": 0.8976377952755905, + "threshold_t": 0.03372788801789284, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.7879098587173121, + "t": 0.7829546574888189, + "punct": 0.8329291136744553, + "u_acc": 0.38716356107660455, + "t_acc": 0.36853002070393376, + "punct_acc": 0.5196687370600414, + "threshold_t": 0.006124525330960751, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.4639522944957109, + "t": 0.5675239385078015, + "punct": 0.6443450914886709, + "u_acc": 0.04853387259858443, + "t_acc": 0.04600606673407482, + "punct_acc": 0.1557128412537917, + "threshold_t": 0.04128628224134445, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.6785394725485726, + "t": 0.6419568863223918, + "punct": 0.7766735679779158, + "u_acc": 0.19009100101112233, + "t_acc": 0.18149646107178968, + "punct_acc": 0.39282103134479274, + "threshold_t": 0.00227031740359962, + "threshold_adj": 0.01 + } + }, + "ha": { + "opus100": { + "u": 0.8964952380952381, + "t": 0.9004666666666667, + "punct": 0.9232666666666667, + "u_acc": 0.602, + "t_acc": 0.632, + "punct_acc": 0.714, + "threshold_t": 0.03500219061970711, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6666666666666666, + "t": 0.4444444444444444, + "punct": 0.6666666666666666, + "u_acc": 0.0, + "t_acc": 0.0, + "punct_acc": 0.0, + "threshold_t": 0.001197033328935504, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7777777777777777, + "t": 0.48461538461538467, + "punct": 0.7222222222222222, + "u_acc": 0.3333333333333333, + "t_acc": 0.0, + "punct_acc": 0.3333333333333333, + "threshold_t": 0.00022674397041555494, + "threshold_adj": 0.01 + } + }, + "he": { + "opus100": { + "u": 0.8609695581639468, + "t": 0.8903743995928365, + "punct": 0.9398988453096669, + "u_acc": 0.5571142284569138, + "t_acc": 0.6352705410821643, + "punct_acc": 0.7875751503006012, + "threshold_t": 0.002519678557291627, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9421768707482993, + "t": 0.938095238095238, + "punct": 0.982312925170068, + "u_acc": 0.7857142857142857, + "t_acc": 0.7857142857142857, + "punct_acc": 0.9387755102040817, + "threshold_t": 0.01783294789493084, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6669715617715618, + "t": 0.6725934777514654, + "punct": 0.7860718037518037, + "u_acc": 0.0772, + "t_acc": 0.1664, + "punct_acc": 0.3972, + "threshold_t": 0.001507981913164258, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.6988603929403929, + "t": 0.6899131762011639, + "punct": 0.8062769408369409, + "u_acc": 0.1844, + "t_acc": 0.2056, + "punct_acc": 0.4532, + "threshold_t": 0.0020292741246521473, + "threshold_adj": 0.01 + } + }, + "hi": { + "ersatz": { + "u": 0.9393373329826531, + "t": 0.913358757644472, + "punct": 0.9758730158730158, + "u_acc": 0.7857142857142857, + "t_acc": 0.734920634920635, + "punct_acc": 0.9222222222222223, + "threshold_t": 0.06708051264286041, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.7817085860608127, + "t": 0.782335646809331, + "punct": 0.8286581839213418, + "u_acc": 0.4048582995951417, + "t_acc": 0.39878542510121456, + "punct_acc": 0.49190283400809715, + "threshold_t": 0.014892883598804474, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.9703314104739283, + "t": 0.9659653885307092, + "punct": 0.9995249406175772, + "u_acc": 0.9002375296912114, + "t_acc": 0.8859857482185273, + "punct_acc": 0.997624703087886, + "threshold_t": 0.01500327792018652, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.640708427781369, + "t": 0.5271483116406035, + "punct": 0.6959791053391053, + "u_acc": 0.0348, + "t_acc": 0.0732, + "punct_acc": 0.23, + "threshold_t": 0.0005820001242682338, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7115688844488844, + "t": 0.711720594960595, + "punct": 0.8182742857142857, + "u_acc": 0.226, + "t_acc": 0.2188, + "punct_acc": 0.4808, + "threshold_t": 0.013141724281013012, + "threshold_adj": 0.01 + } + }, + "hu": { + "opus100": { + "u": 0.9003104198668715, + "t": 0.9124839989759345, + "punct": 0.9581989247311827, + "u_acc": 0.6491935483870968, + "t_acc": 0.6733870967741935, + "punct_acc": 0.8225806451612904, + "threshold_t": 0.004249497316777706, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9428996598639455, + "t": 0.9443452380952382, + "punct": 0.9830357142857142, + "u_acc": 0.7857142857142857, + "t_acc": 0.7946428571428571, + "punct_acc": 0.9464285714285714, + "threshold_t": 0.013934662565588951, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6894852958152958, + "t": 0.7009136980666393, + "punct": 0.796150061050061, + "u_acc": 0.1156, + "t_acc": 0.1976, + "punct_acc": 0.408, + "threshold_t": 0.0020104493014514446, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7497035708735709, + "t": 0.7657426235855648, + "punct": 0.8734886291486291, + "u_acc": 0.2744, + "t_acc": 0.3404, + "punct_acc": 0.6148, + "threshold_t": 0.0017690772656351328, + "threshold_adj": 0.01 + } + }, + "hy": { + "opus100": { + "u": 0.8422017933976932, + "t": null, + "punct": null, + "u_acc": 0.510250569476082, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.9664521664521665, + "t": 0.954890604890605, + "punct": 0.982110682110682, + "u_acc": 0.8918918918918919, + "t_acc": 0.8716216216216216, + "punct_acc": 0.9459459459459459, + "threshold_t": 0.04639922454953194, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6900074184295237, + "t": 0.6902829620488443, + "punct": 0.7824536507936507, + "u_acc": 0.144, + "t_acc": 0.1808, + "punct_acc": 0.3952, + "threshold_t": 0.004028676077723503, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7453316049676232, + "t": 0.7457495284933728, + "punct": 0.8368200746965453, + "u_acc": 0.2792, + "t_acc": 0.284, + "punct_acc": 0.5164, + "threshold_t": 0.008533341810107231, + "threshold_adj": 0.01 + } + }, + "id": { + "opus100": { + "u": 0.8949551131928181, + "t": 0.9001463700234192, + "punct": 0.9295765027322405, + "u_acc": 0.6475409836065574, + "t_acc": 0.6618852459016393, + "punct_acc": 0.7622950819672131, + "threshold_t": 0.006383171305060387, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9712000000000001, + "t": null, + "punct": null, + "u_acc": 0.9, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6768080977845684, + "t": 0.6851025691955104, + "punct": 0.7900387301587302, + "u_acc": 0.0848, + "t_acc": 0.1944, + "punct_acc": 0.4224, + "threshold_t": 0.0009660338400863111, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7366384873949581, + "t": 0.763811444437915, + "punct": 0.8711690476190476, + "u_acc": 0.2496, + "t_acc": 0.35, + "punct_acc": 0.6152, + "threshold_t": 0.0012099883751943707, + "threshold_adj": 0.01 + } + }, + "ig": { + "opus100": { + "u": 0.8240175681923255, + "t": 0.8202843273231624, + "punct": 0.8725728155339806, + "u_acc": 0.470873786407767, + "t_acc": 0.46116504854368934, + "punct_acc": 0.6140776699029126, + "threshold_t": 0.013676690869033337, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6130036630036629, + "t": 0.6032661782661782, + "punct": 0.6131868131868131, + "u_acc": 0.038461538461538464, + "t_acc": 0.15384615384615385, + "punct_acc": 0.0, + "threshold_t": 0.00447852211073041, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7076923076923077, + "t": 0.7217948717948719, + "punct": 0.7567765567765569, + "u_acc": 0.23076923076923078, + "t_acc": 0.15384615384615385, + "punct_acc": 0.38461538461538464, + "threshold_t": 0.08715179562568665, + "threshold_adj": 0.01 + } + }, + "is": { + "opus100": { + "u": 0.9254958321356711, + "t": 0.9283510587333526, + "punct": 0.9601609657947686, + "u_acc": 0.7404426559356136, + "t_acc": 0.7424547283702213, + "punct_acc": 0.8672032193158954, + "threshold_t": 0.003188732545822859, + "threshold_adj": 0.010000000000000002 + }, + "ud": { + "u": 0.8984556086961052, + "t": 0.8928492505684126, + "punct": 0.9455207063430493, + "u_acc": 0.660977501939488, + "t_acc": 0.65244375484872, + "punct_acc": 0.8223429014740109, + "threshold_t": 0.02984493412077427, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.7038814168585161, + "t": 0.6969662511647244, + "punct": 0.7945474372955289, + "u_acc": 0.1450381679389313, + "t_acc": 0.20610687022900764, + "punct_acc": 0.41475826972010177, + "threshold_t": 0.0013711093924939632, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7510844541378893, + "t": 0.7670835243354328, + "punct": 0.8517084696474009, + "u_acc": 0.2697201017811705, + "t_acc": 0.356234096692112, + "punct_acc": 0.5470737913486005, + "threshold_t": 0.0012404166627675295, + "threshold_adj": 0.009999999999999998 + } + }, + "it": { + "opus100": { + "u": 0.8930619559651818, + "t": 0.8616029388859086, + "punct": 0.9265685999951427, + "u_acc": 0.6391129032258065, + "t_acc": 0.5705645161290323, + "punct_acc": 0.7459677419354839, + "threshold_t": 0.001194305601529777, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9613636363636364, + "t": 0.9665873015873016, + "punct": 0.9897619047619047, + "u_acc": 0.875, + "t_acc": 0.8916666666666667, + "punct_acc": 0.9583333333333334, + "threshold_t": 0.006478204857558012, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6867250394050394, + "t": 0.6984212533871357, + "punct": 0.804948253968254, + "u_acc": 0.1148, + "t_acc": 0.202, + "punct_acc": 0.4328, + "threshold_t": 0.0011061977129429579, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7607810678210679, + "t": 0.7708966588966588, + "punct": 0.8771577777777778, + "u_acc": 0.3036, + "t_acc": 0.342, + "punct_acc": 0.6252, + "threshold_t": 0.003542883787304163, + "threshold_adj": 0.01 + } + }, + "ja": { + "ersatz": { + "u": 0.8782097670157372, + "t": 0.9080845771144279, + "punct": 0.9228855721393036, + "u_acc": 0.6343283582089553, + "t_acc": 0.7126865671641791, + "punct_acc": 0.7686567164179104, + "threshold_t": 0.09937432408332825, + "threshold_adj": 0.009999999999999998 + }, + "opus100": { + "u": 0.7797858099062916, + "t": 0.8400398129313792, + "punct": 0.885475234270415, + "u_acc": 0.3453815261044177, + "t_acc": 0.5301204819277109, + "punct_acc": 0.6566265060240963, + "threshold_t": 0.0004802313051186502, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9490196078431372, + "t": 0.9661764705882351, + "punct": 0.968627450980392, + "u_acc": 0.7867647058823529, + "t_acc": 0.8897058823529411, + "punct_acc": 0.8970588235294118, + "threshold_t": 0.09488753974437714, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.8346196825396827, + "t": 0.8676031746031746, + "punct": 0.9448133333333333, + "u_acc": 0.5008, + "t_acc": 0.59, + "punct_acc": 0.824, + "threshold_t": 0.003216678276658058, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.8289796825396825, + "t": 0.8652298412698414, + "punct": 0.9256647619047621, + "u_acc": 0.4832, + "t_acc": 0.5856, + "punct_acc": 0.7692, + "threshold_t": 0.002664644503965974, + "threshold_adj": 0.01 + } + }, + "jv": { + "ud": { + "u": 0.9536, + "t": null, + "punct": null, + "u_acc": 0.84, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "nllb": { + "u": 0.8274012543012544, + "t": 0.8329390476190476, + "punct": 0.8724780952380952, + "u_acc": 0.476, + "t_acc": 0.5008, + "punct_acc": 0.6116, + "threshold_t": 0.29006683826446533, + "threshold_adj": 0.01 + } + }, + "ka": { + "opus100": { + "u": 0.8545842157842157, + "t": 0.8681873015873016, + "punct": 0.9411428571428571, + "u_acc": 0.522, + "t_acc": 0.566, + "punct_acc": 0.786, + "threshold_t": 0.029384713619947433, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6807828460428461, + "t": 0.6816528583312113, + "punct": 0.7802353823953824, + "u_acc": 0.126, + "t_acc": 0.1996, + "punct_acc": 0.3856, + "threshold_t": 0.001499655656516552, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7071532067932068, + "t": 0.7014064660829367, + "punct": 0.794603492063492, + "u_acc": 0.2004, + "t_acc": 0.2048, + "punct_acc": 0.4164, + "threshold_t": 0.005463835783302784, + "threshold_adj": 0.01 + } + }, + "kk": { + "ersatz": { + "u": 0.9449212121212122, + "t": 0.923104761904762, + "punct": 0.9978666666666667, + "u_acc": 0.828, + "t_acc": 0.764, + "punct_acc": 0.992, + "threshold_t": 0.028192520141601562, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.7871547792670787, + "t": 0.7887617581467848, + "punct": 0.8897579693034239, + "u_acc": 0.38636363636363635, + "t_acc": 0.38636363636363635, + "punct_acc": 0.6632231404958677, + "threshold_t": 0.008526571094989777, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9243901984359999, + "t": 0.9256386954860237, + "punct": 0.9282442748091603, + "u_acc": 0.767175572519084, + "t_acc": 0.7748091603053435, + "punct_acc": 0.7786259541984732, + "threshold_t": 0.008626041933894157, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.7030083765196702, + "t": 0.7278443737633445, + "punct": 0.8283144834479536, + "u_acc": 0.14442162902121836, + "t_acc": 0.24845995893223818, + "punct_acc": 0.4839151266255989, + "threshold_t": 0.0013455207226797938, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7517710101899014, + "t": 0.7798758785290976, + "punct": 0.8762551198896168, + "u_acc": 0.28336755646817247, + "t_acc": 0.36413415468856947, + "punct_acc": 0.5913757700205339, + "threshold_t": 0.0012341352412477136, + "threshold_adj": 0.01 + } + }, + "km": { + "ersatz": { + "u": 0.8110367880706864, + "t": 0.9429378531073445, + "punct": 0.917171105730428, + "u_acc": 0.46271186440677964, + "t_acc": 0.8254237288135593, + "punct_acc": 0.7389830508474576, + "threshold_t": 0.598006546497345, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.7608003451302421, + "t": 0.7662052037309769, + "punct": 0.8297349042709867, + "u_acc": 0.29690721649484536, + "t_acc": 0.30721649484536084, + "punct_acc": 0.4742268041237113, + "threshold_t": 0.07829278707504272, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.790297171500179, + "t": 0.7849087003222341, + "punct": 0.8596491228070174, + "u_acc": 0.39097744360902253, + "t_acc": 0.39097744360902253, + "punct_acc": 0.5714285714285714, + "threshold_t": 0.005412713624536991, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.8025778732545649, + "t": 0.8058360186179735, + "punct": 0.8558897243107769, + "u_acc": 0.41353383458646614, + "t_acc": 0.43609022556390975, + "punct_acc": 0.5789473684210527, + "threshold_t": 0.005412713624536991, + "threshold_adj": 0.01 + } + }, + "kn": { + "opus100": { + "u": 0.733270760704389, + "t": 0.7355106054221099, + "punct": 0.8228824273072061, + "u_acc": 0.3053097345132743, + "t_acc": 0.2831858407079646, + "punct_acc": 0.4778761061946903, + "threshold_t": 0.03961662948131561, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.42677347143335786, + "t": 0.5363872461859667, + "punct": 0.6252664002664001, + "u_acc": 0.024475524475524476, + "t_acc": 0.027972027972027972, + "punct_acc": 0.11888111888111888, + "threshold_t": 0.03477584943175316, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.6688700188700188, + "t": 0.6747807747807747, + "punct": 0.7365523365523365, + "u_acc": 0.15734265734265734, + "t_acc": 0.15034965034965034, + "punct_acc": 0.2867132867132867, + "threshold_t": 0.012350098229944706, + "threshold_adj": 0.01 + } + }, + "ko": { + "opus100": { + "u": 0.7766146134567188, + "t": 0.7885866495178235, + "punct": 0.8461152882205515, + "u_acc": 0.3603238866396761, + "t_acc": 0.4008097165991903, + "punct_acc": 0.5242914979757085, + "threshold_t": 0.0013504737289622426, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.9365664638391911, + "t": 0.9366497139224411, + "punct": 0.9935481185481186, + "u_acc": 0.784965034965035, + "t_acc": 0.7832167832167832, + "punct_acc": 0.9790209790209791, + "threshold_t": 0.008036931045353413, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6997168253968253, + "t": 0.7586817902668368, + "punct": 0.8457180952380954, + "u_acc": 0.1476, + "t_acc": 0.328, + "punct_acc": 0.5212, + "threshold_t": 0.0007878690375946462, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.718831544011544, + "t": 0.7393208835608837, + "punct": 0.8454190476190475, + "u_acc": 0.2084, + "t_acc": 0.2792, + "punct_acc": 0.5, + "threshold_t": 0.0027212544810026884, + "threshold_adj": 0.01 + } + }, + "ku": { + "opus100": { + "u": 0.808378200685893, + "t": 0.783021483021483, + "punct": 0.8793485793485792, + "u_acc": 0.4407484407484408, + "t_acc": 0.367983367983368, + "punct_acc": 0.6299376299376299, + "threshold_t": 0.17452502250671387, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.5490761011369084, + "t": 0.5594416659990608, + "punct": 0.673648253968254, + "u_acc": 0.0656, + "t_acc": 0.0692, + "punct_acc": 0.1804, + "threshold_t": 0.0120484484359622, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.5923936865233748, + "t": 0.6016478876618613, + "punct": 0.6922889162299689, + "u_acc": 0.1288, + "t_acc": 0.134, + "punct_acc": 0.2268, + "threshold_t": 0.0120484484359622, + "threshold_adj": 0.01 + } + }, + "ky": { + "opus100": { + "u": 0.8299319727891156, + "t": 0.8422448979591837, + "punct": 0.9356823335394763, + "u_acc": 0.49523809523809526, + "t_acc": 0.5238095238095238, + "punct_acc": 0.7928571428571428, + "threshold_t": 0.003696126164868474, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.7226579520697168, + "t": 0.7232252496958381, + "punct": 0.7930438842203549, + "u_acc": 0.19607843137254902, + "t_acc": 0.23529411764705882, + "punct_acc": 0.3137254901960784, + "threshold_t": 0.0006440089782699943, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7504357298474947, + "t": 0.7793990323402089, + "punct": 0.846451914098973, + "u_acc": 0.29411764705882354, + "t_acc": 0.3627450980392157, + "punct_acc": 0.5392156862745098, + "threshold_t": 0.002526831580325961, + "threshold_adj": 0.009999999999999998 + } + }, + "la": { + "ud": { + "u": 0.8217142857142855, + "t": 0.8710735930735931, + "punct": 0.9741587301587301, + "u_acc": 0.4514285714285714, + "t_acc": 0.5866666666666667, + "punct_acc": 0.9104761904761904, + "threshold_t": 0.0016094123711809516, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.8222222222222223, + "t": 0.4783549783549783, + "punct": 0.6666666666666666, + "u_acc": 0.3333333333333333, + "t_acc": 0.0, + "punct_acc": 0.0, + "threshold_t": 0.00015214571612887084, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.9333333333333332, + "t": 0.6476190476190476, + "punct": 0.5222222222222221, + "u_acc": 0.6666666666666666, + "t_acc": 0.0, + "punct_acc": 0.0, + "threshold_t": 0.00022153020836412907, + "threshold_adj": 0.01 + } + }, + "lt": { + "ersatz": { + "u": 0.9757333333333333, + "t": 0.9584, + "punct": 0.9845333333333333, + "u_acc": 0.916, + "t_acc": 0.864, + "punct_acc": 0.944, + "threshold_t": 0.0299698319286108, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.8693253095470838, + "t": 0.8491671071414281, + "punct": 0.9155593958013313, + "u_acc": 0.6068548387096774, + "t_acc": 0.5645161290322581, + "punct_acc": 0.7237903225806451, + "threshold_t": 0.005509668495506048, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9503573749187785, + "t": 0.9464587394411955, + "punct": 0.9797270955165693, + "u_acc": 0.8421052631578947, + "t_acc": 0.8304093567251462, + "punct_acc": 0.9298245614035088, + "threshold_t": 0.01080250833183527, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6908921181742235, + "t": 0.69772620396564, + "punct": 0.7940434920634921, + "u_acc": 0.1236, + "t_acc": 0.2024, + "punct_acc": 0.3996, + "threshold_t": 0.001589826657436788, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7584143951473363, + "t": 0.779466827613391, + "punct": 0.8800137085137085, + "u_acc": 0.3012, + "t_acc": 0.3828, + "punct_acc": 0.628, + "threshold_t": 0.0010930800344794989, + "threshold_adj": 0.01 + } + }, + "lv": { + "ersatz": { + "u": 0.9610578574864289, + "t": 0.941537827252113, + "punct": 0.9890211640211641, + "u_acc": 0.8551587301587301, + "t_acc": 0.8095238095238095, + "punct_acc": 0.9623015873015873, + "threshold_t": 0.024003511294722557, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.8896232683250939, + "t": 0.9049454264464407, + "punct": 0.9281609195402298, + "u_acc": 0.6308316430020284, + "t_acc": 0.6977687626774848, + "punct_acc": 0.7565922920892495, + "threshold_t": 0.047713153064250946, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9238963910605702, + "t": 0.9355918818605384, + "punct": 0.9809286898839138, + "u_acc": 0.7512437810945274, + "t_acc": 0.7827529021558872, + "punct_acc": 0.9303482587064676, + "threshold_t": 0.006449972279369831, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6982940836940837, + "t": 0.706082966410954, + "punct": 0.8253476190476191, + "u_acc": 0.1388, + "t_acc": 0.2144, + "punct_acc": 0.4844, + "threshold_t": 0.002091840608045459, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.751643896103896, + "t": 0.7709847796647796, + "punct": 0.8846942857142857, + "u_acc": 0.2764, + "t_acc": 0.3444, + "punct_acc": 0.6408, + "threshold_t": 0.002323202323168516, + "threshold_adj": 0.01 + } + }, + "mg": { + "opus100": { + "u": 0.9305732279416489, + "t": 0.934885290148448, + "punct": 0.9554077501445921, + "u_acc": 0.742914979757085, + "t_acc": 0.7773279352226721, + "punct_acc": 0.8441295546558705, + "threshold_t": 0.0832650363445282, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6600823045267488, + "t": 0.6073395684862009, + "punct": 0.7114050558495003, + "u_acc": 0.07407407407407407, + "t_acc": 0.1111111111111111, + "punct_acc": 0.2037037037037037, + "threshold_t": 0.00037749644252471626, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7489078822412154, + "t": 0.7647707231040564, + "punct": 0.8126396237507348, + "u_acc": 0.2777777777777778, + "t_acc": 0.37037037037037035, + "punct_acc": 0.46296296296296297, + "threshold_t": 0.0007148262811824679, + "threshold_adj": 0.01 + } + }, + "mk": { + "opus100": { + "u": 0.9114761904761903, + "t": 0.9195809523809525, + "punct": 0.9389333333333333, + "u_acc": 0.69, + "t_acc": 0.714, + "punct_acc": 0.776, + "threshold_t": 0.0029990701004862785, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6960530946830946, + "t": 0.695734502510397, + "punct": 0.811977142857143, + "u_acc": 0.1212, + "t_acc": 0.202, + "punct_acc": 0.4604, + "threshold_t": 0.0009471482480876148, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7540027594627595, + "t": 0.7730623790588498, + "punct": 0.8728986613386612, + "u_acc": 0.2824, + "t_acc": 0.3492, + "punct_acc": 0.6168, + "threshold_t": 0.001782175968401134, + "threshold_adj": 0.01 + } + }, + "ml": { + "opus100": { + "u": 0.8610728628800918, + "t": 0.8370434117422068, + "punct": 0.8817364696882769, + "u_acc": 0.5301204819277109, + "t_acc": 0.5080321285140562, + "punct_acc": 0.6204819277108434, + "threshold_t": 0.14216329157352448, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.5203783332742746, + "t": 0.5729165741665742, + "punct": 0.6617966322331402, + "u_acc": 0.062169312169312166, + "t_acc": 0.056878306878306875, + "punct_acc": 0.1574074074074074, + "threshold_t": 0.01972765289247036, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.6957759759347062, + "t": 0.6722769273628653, + "punct": 0.7619583018392544, + "u_acc": 0.17857142857142858, + "t_acc": 0.18518518518518517, + "punct_acc": 0.33465608465608465, + "threshold_t": 0.0010858962778002024, + "threshold_adj": 0.01 + } + }, + "mn": { + "opus100": { + "u": 0.7844920029080333, + "t": null, + "punct": null, + "u_acc": 0.3606870229007634, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.7125196825396826, + "t": 0.7779661920741797, + "punct": 0.8977885714285714, + "u_acc": 0.1548, + "t_acc": 0.3744, + "punct_acc": 0.6812, + "threshold_t": 0.000560718763154, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7612256166056166, + "t": 0.8196447994063341, + "punct": 0.9193657142857145, + "u_acc": 0.2984, + "t_acc": 0.48, + "punct_acc": 0.75, + "threshold_t": 0.0006607499672099948, + "threshold_adj": 0.01 + }, + "nllb": { + "u": 0.902387124475112, + "t": 0.9000138705738705, + "punct": 0.9509149206349208, + "u_acc": 0.6828, + "t_acc": 0.6788, + "punct_acc": 0.838, + "threshold_t": 0.013891472481191158, + "threshold_adj": 0.01 + } + }, + "mr": { + "opus100": { + "u": 0.915937019969278, + "t": 0.8817972350230414, + "punct": 0.9448572708653353, + "u_acc": 0.7379032258064516, + "t_acc": 0.6451612903225806, + "punct_acc": 0.8044354838709677, + "threshold_t": 0.05551166087388992, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.8861111111111111, + "t": 0.8861111111111111, + "punct": 1.0, + "u_acc": 0.6666666666666666, + "t_acc": 0.6666666666666666, + "punct_acc": 1.0, + "threshold_t": 0.0109453359618783, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6020215971610089, + "t": 0.5682218060909392, + "punct": 0.6194806926406927, + "u_acc": 0.04, + "t_acc": 0.0428, + "punct_acc": 0.136, + "threshold_t": 0.005541761871427298, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.6864350826950828, + "t": 0.6552065714333827, + "punct": 0.7707029148629149, + "u_acc": 0.1572, + "t_acc": 0.1776, + "punct_acc": 0.3792, + "threshold_t": 0.0008000145899131894, + "threshold_adj": 0.01 + } + }, + "ms": { + "opus100": { + "u": 0.8491666541049258, + "t": 0.8490850027887065, + "punct": 0.9149256093700538, + "u_acc": 0.5123456790123457, + "t_acc": 0.5185185185185185, + "punct_acc": 0.7222222222222222, + "threshold_t": 0.014234498143196106, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6975478168780718, + "t": 0.6878195135750698, + "punct": 0.7893989476132333, + "u_acc": 0.1619047619047619, + "t_acc": 0.1982142857142857, + "punct_acc": 0.4089285714285714, + "threshold_t": 0.0029569296166300774, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7403077895882518, + "t": 0.7517354940176701, + "punct": 0.8570576728166015, + "u_acc": 0.2613095238095238, + "t_acc": 0.3273809523809524, + "punct_acc": 0.5607142857142857, + "threshold_t": 0.0020044376142323017, + "threshold_adj": 0.009999999999999998 + } + }, + "mt": { + "opus100": { + "u": 0.7932096085227783, + "t": 0.8720490036279509, + "punct": 0.908161721319616, + "u_acc": 0.44129554655870445, + "t_acc": 0.6174089068825911, + "punct_acc": 0.7327935222672065, + "threshold_t": 0.09421071410179138, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.9015384615384614, + "t": 0.9037362637362637, + "punct": 0.951025641025641, + "u_acc": 0.7153846153846154, + "t_acc": 0.7230769230769231, + "punct_acc": 0.8307692307692308, + "threshold_t": 0.015889717265963554, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6413364413364414, + "t": 0.5833028083028082, + "punct": 0.6155677655677655, + "u_acc": 0.038461538461538464, + "t_acc": 0.038461538461538464, + "punct_acc": 0.07692307692307693, + "threshold_t": 0.0017662838799878955, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7041420118343196, + "t": 0.691025641025641, + "punct": 0.7743589743589744, + "u_acc": 0.2692307692307692, + "t_acc": 0.07692307692307693, + "punct_acc": 0.38461538461538464, + "threshold_t": 0.19546979665756226, + "threshold_adj": 0.01 + } + }, + "my": { + "opus100": { + "u": 0.7802761530584111, + "t": 0.7935483870967741, + "punct": 0.8693772401433691, + "u_acc": 0.3911290322580645, + "t_acc": 0.3870967741935484, + "punct_acc": 0.6189516129032258, + "threshold_t": 0.1403409093618393, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.8955427594627595, + "t": 0.8917803751803752, + "punct": 0.9362285714285714, + "u_acc": 0.6564, + "t_acc": 0.6472, + "punct_acc": 0.8052, + "threshold_t": 0.014233574271202087, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.8722156132756133, + "t": 0.8408819047619048, + "punct": 0.9283530158730158, + "u_acc": 0.594, + "t_acc": 0.5144, + "punct_acc": 0.78, + "threshold_t": 0.048226624727249146, + "threshold_adj": 0.01 + } + }, + "ne": { + "opus100": { + "u": 0.7886875398503305, + "t": 0.7855867646565321, + "punct": 0.8182920438734393, + "u_acc": 0.386892177589852, + "t_acc": 0.38054968287526425, + "punct_acc": 0.44820295983086683, + "threshold_t": 0.014382201246917248, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6747691069119639, + "t": 0.6773415559129844, + "punct": 0.7719663541092112, + "u_acc": 0.13320463320463322, + "t_acc": 0.2084942084942085, + "punct_acc": 0.3667953667953668, + "threshold_t": 0.0019402262987568974, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.6822746215603357, + "t": 0.674194487684094, + "punct": 0.7880063737206594, + "u_acc": 0.1833976833976834, + "t_acc": 0.21428571428571427, + "punct_acc": 0.39768339768339767, + "threshold_t": 0.0022464487701654434, + "threshold_adj": 0.01 + } + }, + "nl": { + "opus100": { + "u": 0.9104412698412699, + "t": null, + "punct": null, + "u_acc": 0.678, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9077399110956157, + "t": 0.9100671140939599, + "punct": 0.9595078299776286, + "u_acc": 0.738255033557047, + "t_acc": 0.738255033557047, + "punct_acc": 0.8657718120805369, + "threshold_t": 0.014863362535834312, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.701529474969475, + "t": 0.7487962754892167, + "punct": 0.8611457142857144, + "u_acc": 0.1372, + "t_acc": 0.2932, + "punct_acc": 0.5924, + "threshold_t": 0.001353899366222322, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7455593162393163, + "t": 0.7882080866501919, + "punct": 0.9034109523809523, + "u_acc": 0.252, + "t_acc": 0.3768, + "punct_acc": 0.6952, + "threshold_t": 0.001340061309747398, + "threshold_adj": 0.01 + } + }, + "no": { + "opus100": { + "u": 0.9214573732718894, + "t": 0.9339896662477307, + "punct": 0.9545122887864823, + "u_acc": 0.7338709677419355, + "t_acc": 0.7520161290322581, + "punct_acc": 0.8346774193548387, + "threshold_t": 0.002115993294864893, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9520661157024792, + "t": 0.9656532861078315, + "punct": 0.9918044077134985, + "u_acc": 0.8450413223140496, + "t_acc": 0.8822314049586777, + "punct_acc": 0.9731404958677686, + "threshold_t": 0.002909543225541711, + "threshold_adj": 0.01 + } + }, + "pa": { + "opus100": { + "u": 0.7349466562581317, + "t": 0.7306648156033402, + "punct": 0.8137587822014052, + "u_acc": 0.26024590163934425, + "t_acc": 0.26434426229508196, + "punct_acc": 0.4426229508196721, + "threshold_t": 0.002816086867824197, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6221889221889222, + "t": 0.574810604522086, + "punct": 0.702195204322864, + "u_acc": 0.13829787234042554, + "t_acc": 0.1276595744680851, + "punct_acc": 0.2127659574468085, + "threshold_t": 0.0033891114871948957, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7359338061465722, + "t": 0.7059827760891592, + "punct": 0.7872340425531915, + "u_acc": 0.2765957446808511, + "t_acc": 0.2765957446808511, + "punct_acc": 0.32978723404255317, + "threshold_t": 0.0007667946629226208, + "threshold_adj": 0.01 + } + }, + "pl": { + "ersatz": { + "u": 0.9418706127869475, + "t": 0.9003035477139062, + "punct": 0.9743691899070385, + "u_acc": 0.8127490039840638, + "t_acc": 0.6892430278884463, + "punct_acc": 0.9123505976095617, + "threshold_t": 0.03214460238814354, + "threshold_adj": 0.009999999999999998 + }, + "opus100": { + "u": 0.8974750384024578, + "t": 0.9106182795698925, + "punct": 0.9538066436251921, + "u_acc": 0.6673387096774194, + "t_acc": 0.6754032258064516, + "punct_acc": 0.8185483870967742, + "threshold_t": 0.002397036412730813, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9339041753885668, + "t": 0.920045688366988, + "punct": 0.9728210417741102, + "u_acc": 0.7653429602888087, + "t_acc": 0.7364620938628159, + "punct_acc": 0.8971119133574007, + "threshold_t": 0.0028335493989288807, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6956676800976802, + "t": 0.7151130190511243, + "punct": 0.8140228571428572, + "u_acc": 0.126, + "t_acc": 0.2372, + "punct_acc": 0.4508, + "threshold_t": 0.0007515490869991481, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7461537085137085, + "t": 0.769615895868837, + "punct": 0.8838984704184705, + "u_acc": 0.262, + "t_acc": 0.342, + "punct_acc": 0.6408, + "threshold_t": 0.0016849649837240577, + "threshold_adj": 0.01 + } + }, + "ps": { + "ersatz": { + "u": 0.8777044155369887, + "t": 0.9335148722245497, + "punct": 0.9681818181818181, + "u_acc": 0.6231671554252199, + "t_acc": 0.7741935483870968, + "punct_acc": 0.8929618768328446, + "threshold_t": 0.08919066935777664, + "threshold_adj": 0.009999999999999998 + }, + "opus100": { + "u": 0.7603139251246156, + "t": 0.7655513133241417, + "punct": 0.8187506628486584, + "u_acc": 0.30734966592427615, + "t_acc": 0.33184855233853006, + "punct_acc": 0.4766146993318486, + "threshold_t": 0.0015340909594669938, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.675738616614529, + "t": 0.6604963427559428, + "punct": 0.7526242613833855, + "u_acc": 0.1386861313868613, + "t_acc": 0.1678832116788321, + "punct_acc": 0.35036496350364965, + "threshold_t": 0.002297863829880953, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.6707391959216776, + "t": 0.6425243653345842, + "punct": 0.7536559547508452, + "u_acc": 0.16058394160583941, + "t_acc": 0.145985401459854, + "punct_acc": 0.32116788321167883, + "threshold_t": 0.0013841110048815608, + "threshold_adj": 0.01 + } + }, + "pt": { + "opus100": { + "u": 0.9293428793428793, + "t": 0.9211268263899842, + "punct": 0.9615031167662748, + "u_acc": 0.757085020242915, + "t_acc": 0.7145748987854251, + "punct_acc": 0.8481781376518218, + "threshold_t": 0.002588944509625435, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.9449934768427919, + "t": 0.9447488584474886, + "punct": 0.9722602739726026, + "u_acc": 0.8184931506849316, + "t_acc": 0.815068493150685, + "punct_acc": 0.910958904109589, + "threshold_t": 0.00614231126382947, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6745786901986901, + "t": 0.7102251196629458, + "punct": 0.8246126984126985, + "u_acc": 0.0712, + "t_acc": 0.21, + "punct_acc": 0.4708, + "threshold_t": 0.0007137290667742491, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7366037118437119, + "t": 0.7661911830618642, + "punct": 0.8870933333333333, + "u_acc": 0.2372, + "t_acc": 0.3532, + "punct_acc": 0.6532, + "threshold_t": 0.0006967433728277683, + "threshold_adj": 0.01 + } + }, + "ro": { + "ersatz": { + "u": 0.9643523809523808, + "t": 0.9533428571428572, + "punct": 0.9846666666666666, + "u_acc": 0.876, + "t_acc": 0.848, + "punct_acc": 0.954, + "threshold_t": 0.01876607909798622, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.8985040885040885, + "t": 0.9111255411255411, + "punct": 0.9431746031746031, + "u_acc": 0.6808080808080809, + "t_acc": 0.7090909090909091, + "punct_acc": 0.806060606060606, + "threshold_t": 0.0010548844002187252, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.8428286120301329, + "t": 0.8836899686709572, + "punct": 0.9721166032953105, + "u_acc": 0.5057034220532319, + "t_acc": 0.623574144486692, + "punct_acc": 0.9049429657794676, + "threshold_t": 0.03254372999072075, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6904126569337096, + "t": 0.6983531785173891, + "punct": 0.7960514285714285, + "u_acc": 0.1268, + "t_acc": 0.2024, + "punct_acc": 0.4184, + "threshold_t": 0.0015166208613663912, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7404434905445433, + "t": 0.7623874636474637, + "punct": 0.8729109430438843, + "u_acc": 0.2552, + "t_acc": 0.3388, + "punct_acc": 0.6144, + "threshold_t": 0.001227794447913766, + "threshold_adj": 0.01 + } + }, + "ru": { + "ersatz": { + "u": 0.9549731182795698, + "t": 0.9544354838709677, + "punct": 0.9938172043010752, + "u_acc": 0.8588709677419355, + "t_acc": 0.8588709677419355, + "punct_acc": 0.9798387096774194, + "threshold_t": 0.010372277349233627, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.8615822474429032, + "t": null, + "punct": null, + "u_acc": 0.5348360655737705, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.878946608946609, + "t": 0.8631529581529581, + "punct": 0.9396969696969698, + "u_acc": 0.6272727272727273, + "t_acc": 0.5863636363636363, + "punct_acc": 0.7954545454545454, + "threshold_t": 0.05121195688843727, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6898352380952382, + "t": 0.7149715528915529, + "punct": 0.8122425396825396, + "u_acc": 0.1028, + "t_acc": 0.1912, + "punct_acc": 0.4564, + "threshold_t": 0.002826478099450469, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.74016, + "t": 0.767975044955045, + "punct": 0.8770638095238095, + "u_acc": 0.2404, + "t_acc": 0.3432, + "punct_acc": 0.6288, + "threshold_t": 0.001432988210581243, + "threshold_adj": 0.01 + } + }, + "si": { + "opus100": { + "u": 0.8427195340501792, + "t": 0.8416378648233487, + "punct": 0.880453149001536, + "u_acc": 0.5100806451612904, + "t_acc": 0.5, + "punct_acc": 0.6169354838709677, + "threshold_t": 0.01822473853826523, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6359698871326778, + "t": 0.6403995659809614, + "punct": 0.7518272425249171, + "u_acc": 0.08527131782945736, + "t_acc": 0.10077519379844961, + "punct_acc": 0.3333333333333333, + "threshold_t": 0.00975098367780447, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.6484199693502019, + "t": 0.6518160564672192, + "punct": 0.7348406546080966, + "u_acc": 0.10852713178294573, + "t_acc": 0.12403100775193798, + "punct_acc": 0.3023255813953488, + "threshold_t": 0.00975098367780447, + "threshold_adj": 0.01 + } + }, + "sk": { + "opus100": { + "u": 0.9023655332123074, + "t": 0.9031047805241353, + "punct": 0.9619911674347158, + "u_acc": 0.6915322580645161, + "t_acc": 0.6895161290322581, + "punct_acc": 0.8729838709677419, + "threshold_t": 0.009030788205564022, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9270440251572327, + "t": 0.9123270440251572, + "punct": 0.968805031446541, + "u_acc": 0.769811320754717, + "t_acc": 0.7283018867924528, + "punct_acc": 0.9169811320754717, + "threshold_t": 0.013241126202046871, + "threshold_adj": 0.010000000000000002 + }, + "ted2020-corrupted-asr": { + "u": 0.7068467826086957, + "t": 0.7196855233655234, + "punct": 0.8193914285714285, + "u_acc": 0.1544, + "t_acc": 0.2284, + "punct_acc": 0.4712, + "threshold_t": 0.0015598528552800417, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7481334125513439, + "t": 0.764362846121737, + "punct": 0.8817363987703118, + "u_acc": 0.27, + "t_acc": 0.346, + "punct_acc": 0.6412, + "threshold_t": 0.0012362783309072256, + "threshold_adj": 0.01 + } + }, + "sl": { + "opus100": { + "u": 0.8981098999171288, + "t": 0.9000223114680946, + "punct": 0.9533467202141901, + "u_acc": 0.6506024096385542, + "t_acc": 0.6405622489959839, + "punct_acc": 0.8092369477911646, + "threshold_t": 0.0023772097192704678, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.929404761904762, + "t": 0.929404761904762, + "punct": 0.9853124999999998, + "u_acc": 0.771875, + "t_acc": 0.771875, + "punct_acc": 0.95625, + "threshold_t": 0.00999584048986435, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.7149514463314462, + "t": 0.7201571945701358, + "punct": 0.8195923809523809, + "u_acc": 0.192, + "t_acc": 0.224, + "punct_acc": 0.4748, + "threshold_t": 0.005659130401909351, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7630048373848375, + "t": 0.7707302115662116, + "punct": 0.8856460317460318, + "u_acc": 0.3068, + "t_acc": 0.3424, + "punct_acc": 0.6444, + "threshold_t": 0.0021621347405016422, + "threshold_adj": 0.01 + } + }, + "sq": { + "opus100": { + "u": 0.9177792171694611, + "t": 0.9150401540645443, + "punct": 0.9455945928506904, + "u_acc": 0.7134146341463414, + "t_acc": 0.709349593495935, + "punct_acc": 0.8272357723577236, + "threshold_t": 0.015589025802910328, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9555555555555555, + "t": null, + "punct": null, + "u_acc": 0.8666666666666667, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6809482228882229, + "t": 0.7040733823868266, + "punct": 0.7954030303030303, + "u_acc": 0.078, + "t_acc": 0.19, + "punct_acc": 0.4164, + "threshold_t": 0.0012518084840849042, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7368758026768554, + "t": 0.7573137116374236, + "punct": 0.8755188455988456, + "u_acc": 0.2452, + "t_acc": 0.328, + "punct_acc": 0.6208, + "threshold_t": 0.0009632417350076139, + "threshold_adj": 0.01 + } + }, + "sr": { + "opus100": { + "u": 0.9299483648881239, + "t": 0.9341237967743993, + "punct": 0.9597819850831898, + "u_acc": 0.7429718875502008, + "t_acc": 0.7449799196787149, + "punct_acc": 0.8493975903614458, + "threshold_t": 0.003160073421895504, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9830769230769231, + "t": 0.977948717948718, + "punct": 0.9923076923076923, + "u_acc": 0.9307692307692308, + "t_acc": 0.9153846153846154, + "punct_acc": 0.9769230769230769, + "threshold_t": 0.015575236640870571, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6943886131646132, + "t": 0.6976331637665815, + "punct": 0.816083492063492, + "u_acc": 0.1376, + "t_acc": 0.1944, + "punct_acc": 0.4612, + "threshold_t": 0.0021513227839022875, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7564041767427975, + "t": 0.7707585379371586, + "punct": 0.8862838095238096, + "u_acc": 0.2956, + "t_acc": 0.35, + "punct_acc": 0.6548, + "threshold_t": 0.003059935290366411, + "threshold_adj": 0.01 + } + }, + "sv": { + "opus100": { + "u": 0.921113023522662, + "t": 0.9238382099827883, + "punct": 0.9610441767068274, + "u_acc": 0.7228915662650602, + "t_acc": 0.7168674698795181, + "punct_acc": 0.8353413654618473, + "threshold_t": 0.002073788084089756, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.928719084533038, + "t": 0.9332774890914426, + "punct": 0.9649870801033592, + "u_acc": 0.7635658914728682, + "t_acc": 0.7790697674418605, + "punct_acc": 0.8875968992248062, + "threshold_t": 0.002278465311974287, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6940012698412699, + "t": 0.684278354939308, + "punct": 0.8275320634920635, + "u_acc": 0.1228, + "t_acc": 0.2104, + "punct_acc": 0.4956, + "threshold_t": 0.00047577242366969585, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7445574603174603, + "t": 0.7500449897680728, + "punct": 0.8835571428571429, + "u_acc": 0.2584, + "t_acc": 0.322, + "punct_acc": 0.6408, + "threshold_t": 0.0004803015908692032, + "threshold_adj": 0.01 + } + }, + "ta": { + "ersatz": { + "u": 0.9471545276326153, + "t": 0.9377158034528553, + "punct": 0.9803452855245685, + "u_acc": 0.796812749003984, + "t_acc": 0.8007968127490039, + "punct_acc": 0.9203187250996016, + "threshold_t": 0.10213625431060791, + "threshold_adj": 0.009999999999999998 + }, + "opus100": { + "u": 0.7764224122760708, + "t": 0.8000709769002452, + "punct": 0.8141308555942702, + "u_acc": 0.37601626016260165, + "t_acc": 0.4369918699186992, + "punct_acc": 0.4532520325203252, + "threshold_t": 0.0627179890871048, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9800000000000001, + "t": 0.9755555555555556, + "punct": 0.9888888888888889, + "u_acc": 0.9, + "t_acc": 0.9, + "punct_acc": 0.9666666666666667, + "threshold_t": 0.028134286403656006, + "threshold_adj": 0.010000000000000002 + }, + "ted2020-corrupted-asr": { + "u": 0.48094809931028554, + "t": 0.5515180758115655, + "punct": 0.6465124555160142, + "u_acc": 0.050533807829181494, + "t_acc": 0.04199288256227758, + "punct_acc": 0.14590747330960854, + "threshold_t": 0.022067027166485786, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7007068968990677, + "t": 0.6942182015149405, + "punct": 0.7849449245890526, + "u_acc": 0.21779359430604983, + "t_acc": 0.23558718861209965, + "punct_acc": 0.39644128113879, + "threshold_t": 0.003350684652104974, + "threshold_adj": 0.009999999999999998 + } + }, + "te": { + "opus100": { + "u": 0.8110106899902818, + "t": 0.8087074829931973, + "punct": 0.8619533527696793, + "u_acc": 0.463265306122449, + "t_acc": 0.4489795918367347, + "punct_acc": 0.6020408163265306, + "threshold_t": 0.023087961599230766, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.5385427511124339, + "t": 0.5962825358595751, + "punct": 0.6967740634659064, + "u_acc": 0.061933534743202415, + "t_acc": 0.0649546827794562, + "punct_acc": 0.2280966767371601, + "threshold_t": 0.023867562413215637, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.6917005451748655, + "t": 0.6855312663998231, + "punct": 0.7679953396720768, + "u_acc": 0.18429003021148035, + "t_acc": 0.2084592145015106, + "punct_acc": 0.3580060422960725, + "threshold_t": 0.0027218549512326717, + "threshold_adj": 0.009999999999999998 + } + }, + "tg": { + "opus100": { + "u": 0.8432628059134083, + "t": 0.8369669152801682, + "punct": 0.906476700452604, + "u_acc": 0.5120481927710844, + "t_acc": 0.4839357429718876, + "punct_acc": 0.6947791164658634, + "threshold_t": 0.10495132952928543, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6913135110503531, + "t": 0.7326158344579398, + "punct": 0.8311403508771928, + "u_acc": 0.09210526315789473, + "t_acc": 0.27631578947368424, + "punct_acc": 0.4868421052631579, + "threshold_t": 0.0009544224594719708, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7776315789473685, + "t": 0.8169381787802841, + "punct": 0.8807017543859651, + "u_acc": 0.34210526315789475, + "t_acc": 0.4605263157894737, + "punct_acc": 0.6447368421052632, + "threshold_t": 0.0017570515628904104, + "threshold_adj": 0.01 + } + }, + "th": { + "opus100": { + "u": 0.7536142084626932, + "t": 0.7678502193653708, + "punct": 0.799570306236973, + "u_acc": 0.24646464646464647, + "t_acc": 0.296969696969697, + "punct_acc": 0.4161616161616162, + "threshold_t": 0.03527548536658287, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.7559555555555555, + "t": null, + "punct": null, + "u_acc": 0.2, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.5791199791301368, + "t": 0.7056715253855192, + "punct": 0.7666969408369408, + "u_acc": 0.0944, + "t_acc": 0.2296, + "punct_acc": 0.3448, + "threshold_t": 0.10469211637973785, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.5792567488975031, + "t": 0.7027966588577116, + "punct": 0.7659089466089466, + "u_acc": 0.0924, + "t_acc": 0.2248, + "punct_acc": 0.3536, + "threshold_t": 0.10916899144649506, + "threshold_adj": 0.01 + } + }, + "tr": { + "ersatz": { + "u": 0.9350493920972645, + "t": 0.9342029719689293, + "punct": 0.981477963525836, + "u_acc": 0.7632978723404256, + "t_acc": 0.7672872340425532, + "punct_acc": 0.9348404255319149, + "threshold_t": 0.01465278584510088, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.8904954694428378, + "t": 0.9102891260785997, + "punct": 0.9452123899492322, + "u_acc": 0.6417004048582996, + "t_acc": 0.6902834008097166, + "punct_acc": 0.8137651821862348, + "threshold_t": 0.0016057892935350537, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.912, + "t": 0.9047272727272727, + "punct": 0.9842424242424241, + "u_acc": 0.7127272727272728, + "t_acc": 0.6909090909090909, + "punct_acc": 0.9381818181818182, + "threshold_t": 0.011707439087331295, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6875467821067821, + "t": 0.7111565906608013, + "punct": 0.8287714285714286, + "u_acc": 0.0984, + "t_acc": 0.2196, + "punct_acc": 0.4928, + "threshold_t": 0.0010664652800187469, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7354191053391054, + "t": 0.7546382364268298, + "punct": 0.8795870418470418, + "u_acc": 0.2388, + "t_acc": 0.314, + "punct_acc": 0.624, + "threshold_t": 0.0015449285274371505, + "threshold_adj": 0.01 + } + }, + "uk": { + "opus100": { + "u": 0.902122776821572, + "t": 0.90419774335437, + "punct": 0.9433065595716198, + "u_acc": 0.6767068273092369, + "t_acc": 0.678714859437751, + "punct_acc": 0.7971887550200804, + "threshold_t": 0.00900915265083313, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9320365646258504, + "t": 0.9326318027210885, + "punct": 0.9747023809523808, + "u_acc": 0.7767857142857143, + "t_acc": 0.7767857142857143, + "punct_acc": 0.9285714285714286, + "threshold_t": 0.008841302245855331, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6864872582972583, + "t": 0.6933795201015015, + "punct": 0.8081711111111112, + "u_acc": 0.11, + "t_acc": 0.1928, + "punct_acc": 0.4376, + "threshold_t": 0.0013080823700875044, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7510851370851371, + "t": 0.777927502780444, + "punct": 0.8802225396825397, + "u_acc": 0.2756, + "t_acc": 0.3692, + "punct_acc": 0.606, + "threshold_t": 0.0012371470220386982, + "threshold_adj": 0.01 + } + }, + "ur": { + "opus100": { + "u": 0.7433607588268605, + "t": 0.7382244050676253, + "punct": 0.7880801049233254, + "u_acc": 0.3156779661016949, + "t_acc": 0.3135593220338983, + "punct_acc": 0.3919491525423729, + "threshold_t": 0.006838519591838121, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9642501776830135, + "t": 0.973134328358209, + "punct": 0.9932835820895521, + "u_acc": 0.8805970149253731, + "t_acc": 0.8955223880597015, + "punct_acc": 0.9776119402985075, + "threshold_t": 0.05981902778148651, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6775175567597269, + "t": 0.6622261842982843, + "punct": 0.7783867525645531, + "u_acc": 0.15159301130524153, + "t_acc": 0.1855087358684481, + "punct_acc": 0.37564234326824253, + "threshold_t": 0.001783285872079432, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7042760491025408, + "t": 0.7015243831261605, + "punct": 0.7912646135410781, + "u_acc": 0.2199383350462487, + "t_acc": 0.22199383350462487, + "punct_acc": 0.4090441932168551, + "threshold_t": 0.00599337462335825, + "threshold_adj": 0.01 + } + }, + "uz": { + "opus100": { + "u": 0.8235989633948817, + "t": 0.8302818270165209, + "punct": 0.882108843537415, + "u_acc": 0.37551020408163266, + "t_acc": 0.4020408163265306, + "punct_acc": 0.610204081632653, + "threshold_t": 0.04067651182413101, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6993972272453286, + "t": 0.7308675384624752, + "punct": 0.8213599223092893, + "u_acc": 0.1339662447257384, + "t_acc": 0.26476793248945146, + "punct_acc": 0.46835443037974683, + "threshold_t": 0.0005763447261415422, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7603657594163923, + "t": 0.7807745934328213, + "punct": 0.8658220998410873, + "u_acc": 0.29535864978902954, + "t_acc": 0.3744725738396624, + "punct_acc": 0.5864978902953587, + "threshold_t": 0.0014064916176721454, + "threshold_adj": 0.01 + } + }, + "vi": { + "opus100": { + "u": 0.916196355085244, + "t": 0.9174540822688972, + "punct": 0.9407407407407409, + "u_acc": 0.720164609053498, + "t_acc": 0.7057613168724279, + "punct_acc": 0.7942386831275721, + "threshold_t": 0.0020589306950569153, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.907904761904762, + "t": 0.9115000000000001, + "punct": 0.9773333333333334, + "u_acc": 0.675, + "t_acc": 0.7, + "punct_acc": 0.93, + "threshold_t": 0.04651244357228279, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6604281620340443, + "t": 0.6528622184074276, + "punct": 0.7631561416361416, + "u_acc": 0.0732, + "t_acc": 0.1348, + "punct_acc": 0.35, + "threshold_t": 0.002394621493294835, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7370065867465868, + "t": 0.7446608891875388, + "punct": 0.8562139682539682, + "u_acc": 0.2544, + "t_acc": 0.2936, + "punct_acc": 0.5672, + "threshold_t": 0.0035323884803801775, + "threshold_adj": 0.01 + } + }, + "xh": { + "opus100": { + "u": 0.876827702035171, + "t": 0.8585943175263988, + "punct": 0.8780082987551867, + "u_acc": 0.6099585062240664, + "t_acc": 0.578838174273859, + "punct_acc": 0.6120331950207469, + "threshold_t": 0.005200718995183706, + "threshold_adj": 0.01 + } + }, + "yi": { + "opus100": { + "u": 0.7138826690550828, + "t": 0.7179728317659353, + "punct": 0.8316912972085385, + "u_acc": 0.20376175548589343, + "t_acc": 0.21630094043887146, + "punct_acc": 0.45454545454545453, + "threshold_t": 0.008654620498418808, + "threshold_adj": 0.01 + } + }, + "yo": { + "opus100": { + "u": 0.7919615770085053, + "t": null, + "punct": null, + "u_acc": 0.38993174061433444, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.8486309523809524, + "t": null, + "punct": null, + "u_acc": 0.4875, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "nllb": { + "u": 0.8159989138931243, + "t": 0.8761993650793651, + "punct": 0.9116971428571429, + "u_acc": 0.464, + "t_acc": 0.614, + "punct_acc": 0.73, + "threshold_t": 0.15062545239925385, + "threshold_adj": 0.01 + } + }, + "zh": { + "ersatz": { + "u": 0.9598666666666665, + "t": 0.9638666666666666, + "punct": 0.9647333333333333, + "u_acc": 0.842, + "t_acc": 0.876, + "punct_acc": 0.878, + "threshold_t": 0.026914825662970543, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.8747101657564433, + "t": 0.8519625690651847, + "punct": 0.8876401264731244, + "u_acc": 0.6096579476861167, + "t_acc": 0.5492957746478874, + "punct_acc": 0.6519114688128773, + "threshold_t": 0.003753045340999961, + "threshold_adj": 0.010000000000000002 + }, + "ud": { + "u": 0.9872000000000001, + "t": 0.9413333333333332, + "punct": 0.9862095238095238, + "u_acc": 0.936, + "t_acc": 0.824, + "punct_acc": 0.96, + "threshold_t": 0.09598257392644882, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6805050220153872, + "t": 0.6687488693164902, + "punct": 0.7692885347623747, + "u_acc": 0.12142152023692004, + "t_acc": 0.12783810463968412, + "punct_acc": 0.3588351431391905, + "threshold_t": 0.005004240665584803, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.6823923909807423, + "t": 0.6677353495468007, + "punct": 0.7693638186974809, + "u_acc": 0.13228035538005922, + "t_acc": 0.13524185587364265, + "punct_acc": 0.34501480750246794, + "threshold_t": 0.004870083183050156, + "threshold_adj": 0.009999999999999998 + } + }, + "zu": { + "opus100": { + "u": 0.7740130240130242, + "t": 0.8164224664224665, + "punct": 0.9109788359788359, + "u_acc": 0.3311965811965812, + "t_acc": 0.4423076923076923, + "punct_acc": 0.7072649572649573, + "threshold_t": 0.0011468158336356282, + "threshold_adj": 0.01 + } + }, + "tr-de_TR": {}, + "tr-de_DE": {}, + "es-en_ES": {}, + "es-en_EN": {}, + "vi-en_VI": {}, + "vi-en_EN": {}, + "en-de_EN": {}, + "en-de_DE": {} +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/wtp-12l_tweets.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/wtp-12l_tweets.json new file mode 100644 index 0000000000000000000000000000000000000000..a5be1878ab0fdfdc5f0f124cd692d4cfa30bff1a --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/wtp-12l_tweets.json @@ -0,0 +1,180 @@ +{ + "af": {}, + "am": {}, + "ar": {}, + "az": {}, + "be": {}, + "bg": {}, + "bn": {}, + "ca": {}, + "ceb": {}, + "cs": {}, + "cy": {}, + "da": {}, + "de": {}, + "el": {}, + "en": {}, + "eo": {}, + "es": {}, + "et": { + "short-sequences": { + "u": 0.8829125840746824, + "t": 0.8855245017115672, + "punct": 0.9079843970929384, + "acc_u": 0.4433497536945813, + "acc_t": 0.4482758620689655, + "acc_punct": 0.49261083743842365 + }, + "short-sequences-corrupted-asr": { + "u": 0.6171645538960704, + "t": 0.6602964233616042, + "punct": 0.7486856297307082, + "acc_u": 0.06403940886699508, + "acc_t": 0.04926108374384237, + "acc_punct": 0.14285714285714285 + } + }, + "eu": {}, + "fa": {}, + "fi": {}, + "fr": {}, + "fy": {}, + "ga": {}, + "gd": {}, + "gl": {}, + "gu": {}, + "ha": {}, + "he": {}, + "hi": {}, + "hu": {}, + "hy": {}, + "id": {}, + "ig": {}, + "is": {}, + "it": {}, + "ja": {}, + "jv": {}, + "ka": {}, + "kk": {}, + "km": {}, + "kn": {}, + "ko": {}, + "ku": {}, + "ky": {}, + "la": {}, + "lt": {}, + "lv": {}, + "mg": {}, + "mk": {}, + "ml": {}, + "mn": {}, + "mr": {}, + "ms": {}, + "mt": {}, + "my": {}, + "ne": {}, + "nl": {}, + "no": {}, + "pa": {}, + "pl": {}, + "ps": {}, + "pt": {}, + "ro": {}, + "ru": {}, + "si": {}, + "sk": {}, + "sl": { + "short-sequences": { + "u": 0.9085448398131684, + "t": 0.9079413245194037, + "punct": 0.9398888858156581, + "acc_u": 0.7078445747800587, + "acc_t": 0.7041788856304986, + "acc_punct": 0.8013196480938416 + }, + "short-sequences-corrupted-asr": { + "u": 0.6414583936736389, + "t": 0.5854873362034304, + "punct": 0.7059886002083304, + "acc_u": 0.17045454545454544, + "acc_t": 0.10557184750733138, + "acc_punct": 0.25549853372434017 + } + }, + "sq": {}, + "sr": { + "short-sequences": { + "u": 0.9172517297517299, + "t": 0.9172517297517299, + "punct": 0.9489560786435787, + "acc_u": 0.7135416666666666, + "acc_t": 0.7135416666666666, + "acc_punct": 0.8229166666666666 + }, + "short-sequences-corrupted-asr": { + "u": 0.6433405425592925, + "t": 0.605067551949703, + "punct": 0.7221538299663299, + "acc_u": 0.125, + "acc_t": 0.07291666666666667, + "acc_punct": 0.23958333333333334 + } + }, + "sv": {}, + "ta": {}, + "te": {}, + "tg": {}, + "th": {}, + "tr": {}, + "uk": {}, + "ur": {}, + "uz": {}, + "vi": {}, + "xh": {}, + "yi": {}, + "yo": {}, + "zh": {}, + "zu": {}, + "tr-de_TR": {}, + "tr-de_DE": {}, + "es-en_ES": {}, + "es-en_EN": {}, + "vi-en_VI": {}, + "vi-en_EN": {}, + "en-de_EN": { + "short-sequences": { + "u": 0.8575288124071063, + "t": 0.8717474920460222, + "punct": 0.9640887802016966, + "acc_u": 0.4490644490644491, + "acc_t": 0.49480249480249483, + "acc_punct": 0.8108108108108109 + }, + "short-sequences-corrupted-asr": { + "u": 0.5723723655417591, + "t": 0.5674015324486495, + "punct": 0.6928170561931135, + "acc_u": 0.08316008316008316, + "acc_t": 0.06444906444906445, + "acc_punct": 0.13305613305613306 + } + }, + "en-de_DE": { + "short-sequences": { + "u": 0.8497220197841987, + "t": 0.8627792628885667, + "punct": 0.9597120673583887, + "acc_u": 0.42411642411642414, + "acc_t": 0.4698544698544699, + "acc_punct": 0.7837837837837838 + }, + "short-sequences-corrupted-asr": { + "u": 0.589604095022775, + "t": 0.5967495537073375, + "punct": 0.7116856667231113, + "acc_u": 0.079002079002079, + "acc_t": 0.058212058212058215, + "acc_punct": 0.1600831600831601 + } + } +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/wtp-3l.json b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/wtp-3l.json new file mode 100644 index 0000000000000000000000000000000000000000..bdf42743d39e4ed1f9aacbd697cad8cefb7dc3a6 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/evaluation_results/short/wtp-3l.json @@ -0,0 +1,3350 @@ +{ + "af": { + "opus100": { + "u": 0.7804082740033152, + "t": null, + "punct": null, + "u_acc": 0.371900826446281, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.986522911051213, + "t": null, + "punct": null, + "u_acc": 0.9433962264150944, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6871005516222908, + "t": null, + "punct": null, + "u_acc": 0.18461538461538463, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7551066711066711, + "t": null, + "punct": null, + "u_acc": 0.2953846153846154, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "am": { + "opus100": { + "u": 0.662516076070293, + "t": null, + "punct": null, + "u_acc": 0.1646586345381526, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6356887036574537, + "t": null, + "punct": null, + "u_acc": 0.0703125, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.6452876984126985, + "t": null, + "punct": null, + "u_acc": 0.125, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "ar": { + "ersatz": { + "u": 0.8941193853427896, + "t": null, + "punct": null, + "u_acc": 0.6382978723404256, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.7873603081434407, + "t": null, + "punct": null, + "u_acc": 0.3815261044176707, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.8708496732026143, + "t": null, + "punct": null, + "u_acc": 0.6058823529411764, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6453611669032722, + "t": null, + "punct": null, + "u_acc": 0.06, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.6666968837698249, + "t": null, + "punct": null, + "u_acc": 0.1388, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "az": { + "opus100": { + "u": 0.7925737582364087, + "t": null, + "punct": null, + "u_acc": 0.3112449799196787, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6787116777365004, + "t": null, + "punct": null, + "u_acc": 0.07033096926713948, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7220618034447822, + "t": null, + "punct": null, + "u_acc": 0.1979905437352246, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + } + }, + "be": { + "opus100": { + "u": 0.7232888406004495, + "t": null, + "punct": null, + "u_acc": 0.3034623217922607, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9232430518675873, + "t": null, + "punct": null, + "u_acc": 0.7360594795539034, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.010000000000000002 + }, + "ted2020-corrupted-asr": { + "u": 0.6717945764668671, + "t": null, + "punct": null, + "u_acc": 0.11291369240752758, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7483797837464288, + "t": null, + "punct": null, + "u_acc": 0.2835820895522388, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + } + }, + "bg": { + "opus100": { + "u": 0.943261125425454, + "t": null, + "punct": null, + "u_acc": 0.7955911823647295, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9671445639187576, + "t": null, + "punct": null, + "u_acc": 0.8924731182795699, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6883778932178933, + "t": null, + "punct": null, + "u_acc": 0.1224, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7476498501498501, + "t": null, + "punct": null, + "u_acc": 0.284, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "bn": { + "opus100": { + "u": 0.8440725159035019, + "t": null, + "punct": null, + "u_acc": 0.5150905432595574, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.010000000000000002 + }, + "ud": { + "u": 1.0, + "t": null, + "punct": null, + "u_acc": 1.0, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.5280338384423084, + "t": null, + "punct": null, + "u_acc": 0.023846153846153847, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.6775013546031645, + "t": null, + "punct": null, + "u_acc": 0.15615384615384614, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + } + }, + "ca": { + "opus100": { + "u": 0.9218259991079463, + "t": null, + "punct": null, + "u_acc": 0.7545638945233266, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9835226101459867, + "t": null, + "punct": null, + "u_acc": 0.9437229437229437, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6757361904761905, + "t": null, + "punct": null, + "u_acc": 0.0652, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7418190476190477, + "t": null, + "punct": null, + "u_acc": 0.2564, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "ceb": { + "ud": { + "u": 0.9957446808510638, + "t": null, + "punct": null, + "u_acc": 0.9787234042553191, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.010000000000000002 + }, + "ted2020-corrupted-asr": { + "u": 0.6352433281004709, + "t": null, + "punct": null, + "u_acc": 0.14285714285714285, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7095238095238096, + "t": null, + "punct": null, + "u_acc": 0.14285714285714285, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "nllb": { + "u": 0.8373864602064601, + "t": null, + "punct": null, + "u_acc": 0.5096, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "cs": { + "ersatz": { + "u": 0.9520429159318048, + "t": null, + "punct": null, + "u_acc": 0.8402777777777778, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "opus100": { + "u": 0.9039193642852179, + "t": null, + "punct": null, + "u_acc": 0.6788617886178862, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9288431293557475, + "t": null, + "punct": null, + "u_acc": 0.7661671924290221, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6635738195138196, + "t": null, + "punct": null, + "u_acc": 0.0836, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7352116483516484, + "t": null, + "punct": null, + "u_acc": 0.252, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "cy": { + "opus100": { + "u": 0.7246932834269079, + "t": null, + "punct": null, + "u_acc": 0.2052401746724891, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9883953581432573, + "t": null, + "punct": null, + "u_acc": 0.957983193277311, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "da": { + "opus100": { + "u": 0.9149337557603686, + "t": null, + "punct": null, + "u_acc": 0.7076612903225806, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9317122593718338, + "t": null, + "punct": null, + "u_acc": 0.75177304964539, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6729949206349206, + "t": null, + "punct": null, + "u_acc": 0.0432, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7375582106782107, + "t": null, + "punct": null, + "u_acc": 0.2356, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "de": { + "ersatz": { + "u": 0.9390101186435199, + "t": null, + "punct": null, + "u_acc": 0.7678207739307535, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.849109996894807, + "t": null, + "punct": null, + "u_acc": 0.5084388185654009, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9449193338537603, + "t": null, + "punct": null, + "u_acc": 0.8073770491803278, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6977131202131203, + "t": null, + "punct": null, + "u_acc": 0.178, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7411377666777668, + "t": null, + "punct": null, + "u_acc": 0.2712, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "el": { + "opus100": { + "u": 0.9380601772168038, + "t": null, + "punct": null, + "u_acc": 0.7751004016064257, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.970342522974102, + "t": null, + "punct": null, + "u_acc": 0.9035087719298246, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6642945432345433, + "t": null, + "punct": null, + "u_acc": 0.0708, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7359020290820292, + "t": null, + "punct": null, + "u_acc": 0.2396, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "en": { + "ersatz": { + "u": 0.9679862712572993, + "t": null, + "punct": null, + "u_acc": 0.8779854620976116, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "opus100": { + "u": 0.929800307219662, + "t": null, + "punct": null, + "u_acc": 0.7439516129032258, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9509732360097324, + "t": null, + "punct": null, + "u_acc": 0.8284671532846716, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6626590476190477, + "t": null, + "punct": null, + "u_acc": 0.0496, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7256028571428571, + "t": null, + "punct": null, + "u_acc": 0.2252, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "eo": { + "opus100": { + "u": 0.937797619047619, + "t": null, + "punct": null, + "u_acc": 0.7782258064516129, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6742281805509729, + "t": null, + "punct": null, + "u_acc": 0.09147869674185463, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7321170139152595, + "t": null, + "punct": null, + "u_acc": 0.24436090225563908, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + } + }, + "es": { + "ersatz": { + "u": 0.9811637448713167, + "t": null, + "punct": null, + "u_acc": 0.922976501305483, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "opus100": { + "u": 0.9186398396924713, + "t": null, + "punct": null, + "u_acc": 0.7145748987854251, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.9633821900853363, + "t": null, + "punct": null, + "u_acc": 0.8674418604651163, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999997 + }, + "ted2020-corrupted-asr": { + "u": 0.6632516283716284, + "t": null, + "punct": null, + "u_acc": 0.0756, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7402750072150073, + "t": null, + "punct": null, + "u_acc": 0.2636, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "et": { + "ersatz": { + "u": 0.9711482741244647, + "t": null, + "punct": null, + "u_acc": 0.8908730158730159, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.9094795555321871, + "t": null, + "punct": null, + "u_acc": 0.6882591093117408, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.93811318587438, + "t": null, + "punct": null, + "u_acc": 0.7997512437810945, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6890021585432112, + "t": null, + "punct": null, + "u_acc": 0.1316, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7472253153863682, + "t": null, + "punct": null, + "u_acc": 0.2696, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "eu": { + "opus100": { + "u": 0.9035147039195622, + "t": null, + "punct": null, + "u_acc": 0.6740890688259109, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.960701397368064, + "t": null, + "punct": null, + "u_acc": 0.8555555555555555, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6660068426197459, + "t": null, + "punct": null, + "u_acc": 0.07728494623655914, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7417358888125017, + "t": null, + "punct": null, + "u_acc": 0.2614247311827957, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + } + }, + "fa": { + "opus100": { + "u": 0.7469909960891924, + "t": null, + "punct": null, + "u_acc": 0.34468937875751504, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9415573742496821, + "t": null, + "punct": null, + "u_acc": 0.8076923076923077, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6649338239538239, + "t": null, + "punct": null, + "u_acc": 0.08, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.701142683982684, + "t": null, + "punct": null, + "u_acc": 0.1908, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "fi": { + "ersatz": { + "u": 0.9691478194484207, + "t": null, + "punct": null, + "u_acc": 0.8777555110220441, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.9343241521960898, + "t": null, + "punct": null, + "u_acc": 0.7706237424547284, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.010000000000000002 + }, + "ud": { + "u": 0.9412915880767211, + "t": null, + "punct": null, + "u_acc": 0.8041237113402062, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6613791672379908, + "t": null, + "punct": null, + "u_acc": 0.084, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7281137950937951, + "t": null, + "punct": null, + "u_acc": 0.2316, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "fr": { + "ersatz": { + "u": 0.9658615136876006, + "t": null, + "punct": null, + "u_acc": 0.8599033816425121, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999997 + }, + "opus100": { + "u": 0.9097459673524582, + "t": null, + "punct": null, + "u_acc": 0.665314401622718, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9568376068376069, + "t": null, + "punct": null, + "u_acc": 0.8269230769230769, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6692646442446443, + "t": null, + "punct": null, + "u_acc": 0.1076, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7419346031746032, + "t": null, + "punct": null, + "u_acc": 0.2688, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "fy": { + "opus100": { + "u": 0.6809952362148778, + "t": null, + "punct": null, + "u_acc": 0.148068669527897, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "ga": { + "opus100": { + "u": 0.8381684167724817, + "t": null, + "punct": null, + "u_acc": 0.5221774193548387, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9208868129920762, + "t": null, + "punct": null, + "u_acc": 0.7543859649122807, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.7083333333333334, + "t": null, + "punct": null, + "u_acc": 0.16666666666666666, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7182539682539683, + "t": null, + "punct": null, + "u_acc": 0.25, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + } + }, + "gd": { + "opus100": { + "u": 0.7812139917695472, + "t": null, + "punct": null, + "u_acc": 0.35185185185185186, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.8174019607843137, + "t": null, + "punct": null, + "u_acc": 0.45588235294117646, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + } + }, + "gl": { + "opus100": { + "u": 0.9089861751152074, + "t": null, + "punct": null, + "u_acc": 0.6834677419354839, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9606666666666667, + "t": null, + "punct": null, + "u_acc": 0.89, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6662523971453383, + "t": null, + "punct": null, + "u_acc": 0.078, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7290435675435676, + "t": null, + "punct": null, + "u_acc": 0.2356, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "gu": { + "ersatz": { + "u": 0.9211942257217849, + "t": null, + "punct": null, + "u_acc": 0.7559055118110236, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.759331708089472, + "t": null, + "punct": null, + "u_acc": 0.33126293995859213, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6042798718766486, + "t": null, + "punct": null, + "u_acc": 0.0621840242669363, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.660745398057143, + "t": null, + "punct": null, + "u_acc": 0.16835187057633974, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "ha": { + "opus100": { + "u": 0.8632238095238096, + "t": null, + "punct": null, + "u_acc": 0.474, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.611111111111111, + "t": null, + "punct": null, + "u_acc": 0.0, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.5555555555555555, + "t": null, + "punct": null, + "u_acc": 0.0, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "he": { + "opus100": { + "u": 0.9104717371250437, + "t": null, + "punct": null, + "u_acc": 0.7074148296593187, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9455782312925171, + "t": null, + "punct": null, + "u_acc": 0.7755102040816326, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6547168801133507, + "t": null, + "punct": null, + "u_acc": 0.054, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.6816121534021535, + "t": null, + "punct": null, + "u_acc": 0.16, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "hi": { + "ersatz": { + "u": 0.9199568370921754, + "t": null, + "punct": null, + "u_acc": 0.734920634920635, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.7735572906625539, + "t": null, + "punct": null, + "u_acc": 0.4068825910931174, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.9443415996985193, + "t": null, + "punct": null, + "u_acc": 0.8123515439429929, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6570798412698413, + "t": null, + "punct": null, + "u_acc": 0.0128, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.6899813275613277, + "t": null, + "punct": null, + "u_acc": 0.194, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "hu": { + "opus100": { + "u": 0.9348921240050273, + "t": null, + "punct": null, + "u_acc": 0.75, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9450821995464853, + "t": null, + "punct": null, + "u_acc": 0.8214285714285714, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6642794438894439, + "t": null, + "punct": null, + "u_acc": 0.0628, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7328561811391223, + "t": null, + "punct": null, + "u_acc": 0.2448, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "hy": { + "opus100": { + "u": 0.8384396355353075, + "t": null, + "punct": null, + "u_acc": 0.49658314350797267, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.9332046332046331, + "t": null, + "punct": null, + "u_acc": 0.7837837837837838, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6652877780698834, + "t": null, + "punct": null, + "u_acc": 0.0932, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7244541516962569, + "t": null, + "punct": null, + "u_acc": 0.2432, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "id": { + "opus100": { + "u": 0.9289032006245121, + "t": null, + "punct": null, + "u_acc": 0.75, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9686666666666668, + "t": null, + "punct": null, + "u_acc": 0.86, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6647670052170053, + "t": null, + "punct": null, + "u_acc": 0.0584, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7289819394984101, + "t": null, + "punct": null, + "u_acc": 0.2396, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "ig": { + "opus100": { + "u": 0.7663777161349976, + "t": null, + "punct": null, + "u_acc": 0.2936893203883495, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6525641025641027, + "t": null, + "punct": null, + "u_acc": 0.0, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7371794871794872, + "t": null, + "punct": null, + "u_acc": 0.23076923076923078, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "is": { + "opus100": { + "u": 0.9488358723771199, + "t": null, + "punct": null, + "u_acc": 0.7967806841046278, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.010000000000000002 + }, + "ud": { + "u": 0.8771227836645624, + "t": null, + "punct": null, + "u_acc": 0.6035686578743211, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6902463383379416, + "t": null, + "punct": null, + "u_acc": 0.16030534351145037, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7582737590371178, + "t": null, + "punct": null, + "u_acc": 0.31297709923664124, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + } + }, + "it": { + "opus100": { + "u": 0.8989934643266563, + "t": null, + "punct": null, + "u_acc": 0.6592741935483871, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9802777777777778, + "t": null, + "punct": null, + "u_acc": 0.925, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6661383289912702, + "t": null, + "punct": null, + "u_acc": 0.1, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.754206810966811, + "t": null, + "punct": null, + "u_acc": 0.3124, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "ja": { + "ersatz": { + "u": 0.8561448708836769, + "t": null, + "punct": null, + "u_acc": 0.5783582089552238, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "opus100": { + "u": 0.7714190093708165, + "t": null, + "punct": null, + "u_acc": 0.3273092369477912, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9368697478991597, + "t": null, + "punct": null, + "u_acc": 0.7647058823529411, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.7918085714285715, + "t": null, + "punct": null, + "u_acc": 0.3752, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7839819047619049, + "t": null, + "punct": null, + "u_acc": 0.3544, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "jv": { + "ud": { + "u": 0.9771878787878788, + "t": null, + "punct": null, + "u_acc": 0.9, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "nllb": { + "u": 0.8036559713489125, + "t": null, + "punct": null, + "u_acc": 0.4248, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "ka": { + "opus100": { + "u": 0.9109572871572872, + "t": null, + "punct": null, + "u_acc": 0.682, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6630827076191782, + "t": null, + "punct": null, + "u_acc": 0.0892, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.6868704073704074, + "t": null, + "punct": null, + "u_acc": 0.1672, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "kk": { + "ersatz": { + "u": 0.9398443992654519, + "t": null, + "punct": null, + "u_acc": 0.848, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.7437978687978688, + "t": null, + "punct": null, + "u_acc": 0.29545454545454547, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9439883256204482, + "t": null, + "punct": null, + "u_acc": 0.8396946564885496, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6945125450258921, + "t": null, + "punct": null, + "u_acc": 0.13826146475017112, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7391655040525679, + "t": null, + "punct": null, + "u_acc": 0.2532511978097194, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "km": { + "ersatz": { + "u": 0.8037201464409315, + "t": null, + "punct": null, + "u_acc": 0.4711864406779661, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.7482338280276424, + "t": null, + "punct": null, + "u_acc": 0.2618556701030928, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.7263515932688864, + "t": null, + "punct": null, + "u_acc": 0.19548872180451127, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7647332617257429, + "t": null, + "punct": null, + "u_acc": 0.3082706766917293, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "kn": { + "opus100": { + "u": 0.7207409110063977, + "t": null, + "punct": null, + "u_acc": 0.252212389380531, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.5765893362617798, + "t": null, + "punct": null, + "u_acc": 0.03146853146853147, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.6595487845487845, + "t": null, + "punct": null, + "u_acc": 0.15384615384615385, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "ko": { + "opus100": { + "u": 0.7750417710944025, + "t": null, + "punct": null, + "u_acc": 0.3643724696356275, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.9491357771170064, + "t": null, + "punct": null, + "u_acc": 0.8409090909090909, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6990387878787879, + "t": null, + "punct": null, + "u_acc": 0.1456, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7148075968475969, + "t": null, + "punct": null, + "u_acc": 0.2056, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "ku": { + "opus100": { + "u": 0.7658758081835004, + "t": null, + "punct": null, + "u_acc": 0.32432432432432434, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6230051753612744, + "t": null, + "punct": null, + "u_acc": 0.0468, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.6397663112663051, + "t": null, + "punct": null, + "u_acc": 0.1156, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "ky": { + "opus100": { + "u": 0.7574149659863947, + "t": null, + "punct": null, + "u_acc": 0.2833333333333333, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6944147355912063, + "t": null, + "punct": null, + "u_acc": 0.13725490196078433, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7419856831621539, + "t": null, + "punct": null, + "u_acc": 0.2549019607843137, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + } + }, + "la": { + "ud": { + "u": 0.9071201814058957, + "t": null, + "punct": null, + "u_acc": 0.6895238095238095, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.611111111111111, + "t": null, + "punct": null, + "u_acc": 0.0, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7777777777777777, + "t": null, + "punct": null, + "u_acc": 0.3333333333333333, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "lt": { + "ersatz": { + "u": 0.9676380952380953, + "t": null, + "punct": null, + "u_acc": 0.872, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.8486187088001604, + "t": null, + "punct": null, + "u_acc": 0.5665322580645161, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9696007696007696, + "t": null, + "punct": null, + "u_acc": 0.9005847953216374, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6762705345634757, + "t": null, + "punct": null, + "u_acc": 0.1256, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7595186486715898, + "t": null, + "punct": null, + "u_acc": 0.3136, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "lv": { + "ersatz": { + "u": 0.9699202913488628, + "t": null, + "punct": null, + "u_acc": 0.876984126984127, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.8628556816183592, + "t": null, + "punct": null, + "u_acc": 0.5557809330628803, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9595909342177998, + "t": null, + "punct": null, + "u_acc": 0.8474295190713101, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6732975757575758, + "t": null, + "punct": null, + "u_acc": 0.074, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.736772554112554, + "t": null, + "punct": null, + "u_acc": 0.2508, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "mg": { + "opus100": { + "u": 0.9070320030846347, + "t": null, + "punct": null, + "u_acc": 0.6680161943319838, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6543209876543208, + "t": null, + "punct": null, + "u_acc": 0.05555555555555555, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7498824221046441, + "t": null, + "punct": null, + "u_acc": 0.2777777777777778, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "mk": { + "opus100": { + "u": 0.9434190476190477, + "t": null, + "punct": null, + "u_acc": 0.784, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6754145632145633, + "t": null, + "punct": null, + "u_acc": 0.0716, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7508513886113887, + "t": null, + "punct": null, + "u_acc": 0.2828, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "ml": { + "opus100": { + "u": 0.8698699560145343, + "t": null, + "punct": null, + "u_acc": 0.5502008032128514, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.5933997638027935, + "t": null, + "punct": null, + "u_acc": 0.07539682539682539, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.6887365353635195, + "t": null, + "punct": null, + "u_acc": 0.18253968253968253, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "mn": { + "opus100": { + "u": 0.7264085786986549, + "t": null, + "punct": null, + "u_acc": 0.19083969465648856, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.685810920843862, + "t": null, + "punct": null, + "u_acc": 0.086, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7510536108336109, + "t": null, + "punct": null, + "u_acc": 0.2648, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "nllb": { + "u": 0.9093018484896748, + "t": null, + "punct": null, + "u_acc": 0.7016, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "mr": { + "opus100": { + "u": 0.9074884792626727, + "t": null, + "punct": null, + "u_acc": 0.7278225806451613, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9555555555555556, + "t": null, + "punct": null, + "u_acc": 0.8333333333333334, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6363191275391277, + "t": null, + "punct": null, + "u_acc": 0.0256, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.6725505228105229, + "t": null, + "punct": null, + "u_acc": 0.146, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "ms": { + "opus100": { + "u": 0.896554314455549, + "t": null, + "punct": null, + "u_acc": 0.6481481481481481, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6644228753402422, + "t": null, + "punct": null, + "u_acc": 0.08095238095238096, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.7264695433509372, + "t": null, + "punct": null, + "u_acc": 0.23273809523809524, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + } + }, + "mt": { + "opus100": { + "u": 0.7541711325112135, + "t": null, + "punct": null, + "u_acc": 0.3866396761133603, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.9207692307692308, + "t": null, + "punct": null, + "u_acc": 0.7692307692307693, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.5733211233211233, + "t": null, + "punct": null, + "u_acc": 0.0, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7655677655677656, + "t": null, + "punct": null, + "u_acc": 0.2692307692307692, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "my": { + "opus100": { + "u": 0.7647922194293162, + "t": null, + "punct": null, + "u_acc": 0.33064516129032256, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.8902053968253968, + "t": null, + "punct": null, + "u_acc": 0.6468, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.8619654545454545, + "t": null, + "punct": null, + "u_acc": 0.5616, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "ne": { + "opus100": { + "u": 0.742469545957918, + "t": null, + "punct": null, + "u_acc": 0.24312896405919662, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6589633232490375, + "t": null, + "punct": null, + "u_acc": 0.12934362934362933, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.6673394869823441, + "t": null, + "punct": null, + "u_acc": 0.18146718146718147, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "nl": { + "opus100": { + "u": 0.932695238095238, + "t": null, + "punct": null, + "u_acc": 0.722, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.942841163310962, + "t": null, + "punct": null, + "u_acc": 0.825503355704698, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6987863580863581, + "t": null, + "punct": null, + "u_acc": 0.1468, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7475412787212788, + "t": null, + "punct": null, + "u_acc": 0.276, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "no": { + "opus100": { + "u": 0.9498175883256529, + "t": null, + "punct": null, + "u_acc": 0.8104838709677419, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9738980716253444, + "t": null, + "punct": null, + "u_acc": 0.9049586776859504, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "pa": { + "opus100": { + "u": 0.6965147671090294, + "t": null, + "punct": null, + "u_acc": 0.17418032786885246, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6563829787234042, + "t": null, + "punct": null, + "u_acc": 0.0425531914893617, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7209726443768999, + "t": null, + "punct": null, + "u_acc": 0.24468085106382978, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "pl": { + "ersatz": { + "u": 0.9525327262379055, + "t": null, + "punct": null, + "u_acc": 0.8366533864541833, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "opus100": { + "u": 0.9337109575012801, + "t": null, + "punct": null, + "u_acc": 0.7520161290322581, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9489255630049853, + "t": null, + "punct": null, + "u_acc": 0.7978339350180506, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6779320634920636, + "t": null, + "punct": null, + "u_acc": 0.0984, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7362530158730158, + "t": null, + "punct": null, + "u_acc": 0.25, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "ps": { + "ersatz": { + "u": 0.8743201725424836, + "t": null, + "punct": null, + "u_acc": 0.5821114369501467, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "opus100": { + "u": 0.710913140311804, + "t": null, + "punct": null, + "u_acc": 0.16926503340757237, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6491104447692999, + "t": null, + "punct": null, + "u_acc": 0.10218978102189781, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.6554369500393319, + "t": null, + "punct": null, + "u_acc": 0.12408759124087591, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "pt": { + "opus100": { + "u": 0.9425294004241372, + "t": null, + "punct": null, + "u_acc": 0.7773279352226721, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.9590182648401827, + "t": null, + "punct": null, + "u_acc": 0.8595890410958904, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6749478876678877, + "t": null, + "punct": null, + "u_acc": 0.068, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7436949783549784, + "t": null, + "punct": null, + "u_acc": 0.2672, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "ro": { + "ersatz": { + "u": 0.976542857142857, + "t": null, + "punct": null, + "u_acc": 0.9, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.9412922879589546, + "t": null, + "punct": null, + "u_acc": 0.8, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.8616885860231868, + "t": null, + "punct": null, + "u_acc": 0.5437262357414449, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6729031290335127, + "t": null, + "punct": null, + "u_acc": 0.0908, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7447194397759104, + "t": null, + "punct": null, + "u_acc": 0.2688, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "ru": { + "ersatz": { + "u": 0.9743279569892472, + "t": null, + "punct": null, + "u_acc": 0.907258064516129, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.8484956414259694, + "t": null, + "punct": null, + "u_acc": 0.48975409836065575, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.8804545454545454, + "t": null, + "punct": null, + "u_acc": 0.6227272727272727, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6782184737484739, + "t": null, + "punct": null, + "u_acc": 0.0976, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7382855122655123, + "t": null, + "punct": null, + "u_acc": 0.2588, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "si": { + "opus100": { + "u": 0.8657066052227342, + "t": null, + "punct": null, + "u_acc": 0.5584677419354839, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6291497477543989, + "t": null, + "punct": null, + "u_acc": 0.08527131782945736, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.6445059677617817, + "t": null, + "punct": null, + "u_acc": 0.16279069767441862, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "sk": { + "opus100": { + "u": 0.9272788064770987, + "t": null, + "punct": null, + "u_acc": 0.7620967741935484, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9388679245283019, + "t": null, + "punct": null, + "u_acc": 0.8075471698113208, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.010000000000000002 + }, + "ted2020-corrupted-asr": { + "u": 0.6759671611761207, + "t": null, + "punct": null, + "u_acc": 0.1228, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7360581687420131, + "t": null, + "punct": null, + "u_acc": 0.2636, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "sl": { + "opus100": { + "u": 0.9381143622107477, + "t": null, + "punct": null, + "u_acc": 0.7590361445783133, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9596949404761904, + "t": null, + "punct": null, + "u_acc": 0.85625, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6723284441049148, + "t": null, + "punct": null, + "u_acc": 0.1052, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.74034988485199, + "t": null, + "punct": null, + "u_acc": 0.2656, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "sq": { + "opus100": { + "u": 0.924412827461608, + "t": null, + "punct": null, + "u_acc": 0.733739837398374, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.962962962962963, + "t": null, + "punct": null, + "u_acc": 0.9333333333333333, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6717976674306086, + "t": null, + "punct": null, + "u_acc": 0.0616, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7400613852813853, + "t": null, + "punct": null, + "u_acc": 0.2572, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "sr": { + "opus100": { + "u": 0.9466724039013197, + "t": null, + "punct": null, + "u_acc": 0.7931726907630522, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9820512820512821, + "t": null, + "punct": null, + "u_acc": 0.9307692307692308, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6794542985902986, + "t": null, + "punct": null, + "u_acc": 0.1024, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7451693568653569, + "t": null, + "punct": null, + "u_acc": 0.2744, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "sv": { + "opus100": { + "u": 0.9328679798559317, + "t": null, + "punct": null, + "u_acc": 0.7369477911646586, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9415282392026578, + "t": null, + "punct": null, + "u_acc": 0.7945736434108527, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6798023376623377, + "t": null, + "punct": null, + "u_acc": 0.1224, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7333801154401155, + "t": null, + "punct": null, + "u_acc": 0.2456, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "ta": { + "ersatz": { + "u": 0.9250300385758554, + "t": null, + "punct": null, + "u_acc": 0.7250996015936255, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "opus100": { + "u": 0.7667987387499582, + "t": null, + "punct": null, + "u_acc": 0.3821138211382114, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.9455555555555556, + "t": null, + "punct": null, + "u_acc": 0.8, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.010000000000000002 + }, + "ted2020-corrupted-asr": { + "u": 0.6492312551031413, + "t": null, + "punct": null, + "u_acc": 0.04341637010676157, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.6772378970637071, + "t": null, + "punct": null, + "u_acc": 0.19074733096085408, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + } + }, + "te": { + "opus100": { + "u": 0.8128409459021703, + "t": null, + "punct": null, + "u_acc": 0.4673469387755102, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6243554448237228, + "t": null, + "punct": null, + "u_acc": 0.05891238670694864, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.686216230060641, + "t": null, + "punct": null, + "u_acc": 0.15861027190332327, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + } + }, + "tg": { + "opus100": { + "u": 0.827755510888041, + "t": null, + "punct": null, + "u_acc": 0.4538152610441767, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.7181704260651628, + "t": null, + "punct": null, + "u_acc": 0.13157894736842105, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7964285714285714, + "t": null, + "punct": null, + "u_acc": 0.3815789473684211, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "th": { + "opus100": { + "u": 0.7503228533531564, + "t": null, + "punct": null, + "u_acc": 0.25656565656565655, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.7124386724386725, + "t": null, + "punct": null, + "u_acc": 0.144, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.5575228087732754, + "t": null, + "punct": null, + "u_acc": 0.0764, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.557464546230316, + "t": null, + "punct": null, + "u_acc": 0.0756, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "tr": { + "ersatz": { + "u": 0.918605087288598, + "t": null, + "punct": null, + "u_acc": 0.7007978723404256, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.93627337574706, + "t": null, + "punct": null, + "u_acc": 0.7631578947368421, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.9545165945165945, + "t": null, + "punct": null, + "u_acc": 0.8363636363636363, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.68017, + "t": null, + "punct": null, + "u_acc": 0.0768, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7267438095238096, + "t": null, + "punct": null, + "u_acc": 0.2252, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "uk": { + "opus100": { + "u": 0.9207815388538281, + "t": null, + "punct": null, + "u_acc": 0.7289156626506024, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.942311507936508, + "t": null, + "punct": null, + "u_acc": 0.7946428571428571, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6728641753671166, + "t": null, + "punct": null, + "u_acc": 0.1132, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7477155206884619, + "t": null, + "punct": null, + "u_acc": 0.288, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "ur": { + "opus100": { + "u": 0.7314591481964364, + "t": null, + "punct": null, + "u_acc": 0.3093220338983051, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ud": { + "u": 0.8819958648316858, + "t": null, + "punct": null, + "u_acc": 0.6567164179104478, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6539408893764419, + "t": null, + "punct": null, + "u_acc": 0.09198355601233299, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.6758485600598818, + "t": null, + "punct": null, + "u_acc": 0.17574511819116137, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "uz": { + "opus100": { + "u": 0.8036961451247165, + "t": null, + "punct": null, + "u_acc": 0.3081632653061224, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6962194275485414, + "t": null, + "punct": null, + "u_acc": 0.12130801687763713, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7565702230259193, + "t": null, + "punct": null, + "u_acc": 0.2974683544303797, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "vi": { + "opus100": { + "u": 0.929652491998171, + "t": null, + "punct": null, + "u_acc": 0.7530864197530864, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.8988333333333334, + "t": null, + "punct": null, + "u_acc": 0.62, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-asr": { + "u": 0.6595528427128428, + "t": null, + "punct": null, + "u_acc": 0.0464, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-social-media": { + "u": 0.7298919191919193, + "t": null, + "punct": null, + "u_acc": 0.2404, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "xh": { + "opus100": { + "u": 0.8488048834521863, + "t": null, + "punct": null, + "u_acc": 0.533195020746888, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "yi": { + "opus100": { + "u": 0.6967532467532467, + "t": null, + "punct": null, + "u_acc": 0.16300940438871472, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "yo": { + "opus100": { + "u": 0.7621673524617211, + "t": null, + "punct": null, + "u_acc": 0.3148464163822526, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ud": { + "u": 0.843154761904762, + "t": null, + "punct": null, + "u_acc": 0.475, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "nllb": { + "u": 0.8136430845865521, + "t": null, + "punct": null, + "u_acc": 0.46, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "zh": { + "ersatz": { + "u": 0.957031746031746, + "t": null, + "punct": null, + "u_acc": 0.846, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "opus100": { + "u": 0.8564849413943981, + "t": null, + "punct": null, + "u_acc": 0.545271629778672, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.010000000000000002 + }, + "ud": { + "u": 0.9779047619047619, + "t": null, + "punct": null, + "u_acc": 0.92, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + }, + "ted2020-corrupted-asr": { + "u": 0.6842542973095785, + "t": null, + "punct": null, + "u_acc": 0.1702862783810464, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + }, + "ted2020-corrupted-social-media": { + "u": 0.679640467572353, + "t": null, + "punct": null, + "u_acc": 0.17374136229022705, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.009999999999999998 + } + }, + "zu": { + "opus100": { + "u": 0.766096866096866, + "t": null, + "punct": null, + "u_acc": 0.31196581196581197, + "t_acc": null, + "punct_acc": null, + "threshold_t": 0, + "threshold_adj": 0.01 + } + }, + "tr-de_TR": {}, + "tr-de_DE": {}, + "es-en_ES": {}, + "es-en_EN": {}, + "vi-en_VI": {}, + "vi-en_EN": {}, + "en-de_EN": {}, + "en-de_DE": {} +} \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/extrinsic.py b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/extrinsic.py new file mode 100644 index 0000000000000000000000000000000000000000..b1716fd64854e464a26e70b8fdf4296c4612bad7 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/extrinsic.py @@ -0,0 +1,205 @@ +from dataclasses import dataclass + +import pandas as pd +import regex as re +import sacrebleu +import skops.io as sio +from datasets import load_dataset +from tqdm.auto import tqdm +from transformers import AutoModelForTokenClassification, HfArgumentParser, pipeline + +from wtpsplit.evaluation import ERSATZ_LANGUAGES, ersatz_sentencize, our_sentencize, preprocess_sentence +from wtpsplit.utils import Constants + + +@dataclass +class Args: + model_path: str + device: str = "cuda" + clfs_path: str = Constants.CACHE_DIR / "main_3layers_h0_clfs.pkl" + paragraph_length: int = 10 + + +def mt_eval( + sentence_model, + lang_code, + paragraph_length, + clf, + features, + threshold_transformed, + threshold_newline, +): + dset_name = Constants.LANGINFO.loc[lang_code, "opus100"] + dset_langs = dset_name.split("-") + target_lang = dset_langs[0] if dset_langs[1] == lang_code else dset_langs[1] + + dset = load_dataset("opus100", dset_name) + + try: + mt_pipeline = pipeline( + "translation", + model=f"Helsinki-NLP/opus-mt-{lang_code}-{target_lang}", + device=0, + ) + except OSError: + return (None, None, None, None) + + all_sentences = [x[lang_code] for x in dset["test"]["translation"]] + all_targets = [x[target_lang] for x in dset["test"]["translation"]] + + separator = Constants.SEPARATORS[lang_code] + + current_paragraph = [] + current_target = [] + + all_preds_ground_truth = [] + all_preds_ersatz = [] + all_preds_ours = [] + all_preds_naive = [] + all_preds_no_sentencize = [] + + all_target_texts = [] + + bar = tqdm(total=len(all_sentences)) + + while len(all_sentences) > 0: + while len(current_paragraph) < paragraph_length and len(all_sentences) > 0: + current_paragraph.append(preprocess_sentence(all_sentences.pop(0))) + current_target.append(all_targets.pop(0)) + + bar.update(1) + + paragraph_text = separator.join(current_paragraph) + target_text = separator.join(current_target) + + preds_ground_truth = separator.join( + [x["translation_text"] for x in mt_pipeline(current_paragraph, truncation=True)] + ) + + if lang_code in ERSATZ_LANGUAGES: + preds_ersatz = separator.join( + [ + x["translation_text"] + for x in mt_pipeline( + [x.strip() for x in ersatz_sentencize(lang_code, paragraph_text)], + truncation=True, + ) + ] + ) + else: + preds_ersatz = None + + preds_ours = separator.join( + [ + x["translation_text"] + for x in mt_pipeline( + [ + x.strip() + for x in our_sentencize( + sentence_model, + lang_code, + paragraph_text, + clf, + features, + threshold_transformed, + threshold_newline, + ) + ], + truncation=True, + ) + ] + ) + preds_no_sentencize = mt_pipeline(paragraph_text, truncation=True)[0]["translation_text"] + if Constants.LANGINFO.loc[lang_code, "no_whitespace"]: + naive_sentences = [ + paragraph_text[ + int(i * len(paragraph_text) / len(current_paragraph)) : int( + (i + 1) * len(paragraph_text) / len(current_paragraph) + ) + ] + for i in range(len(current_paragraph)) + ] + else: + words = [x for x in re.split(r"(\S+\s+)", paragraph_text) if len(x) > 0] + naive_sentences = [ + "".join( + words[ + int(i * len(words) / len(current_paragraph)) : int( + (i + 1) * len(words) / len(current_paragraph) + ) + ] + ) + for i in range(len(current_paragraph)) + ] + + assert "".join(naive_sentences) == paragraph_text + preds_naive = separator.join( + [x["translation_text"] for x in mt_pipeline([x.strip() for x in naive_sentences], truncation=True)] + ) + + all_preds_naive.append(preds_naive) + all_preds_ground_truth.append(preds_ground_truth) + if preds_ersatz is not None: + all_preds_ersatz.append(preds_ersatz) + all_preds_ours.append(preds_ours) + all_preds_no_sentencize.append(preds_no_sentencize) + + all_target_texts.append(target_text) + + current_paragraph = [] + current_target = [] + + bleu = sacrebleu.BLEU() + + return ( + bleu.corpus_score(all_preds_no_sentencize, [all_target_texts]).score, + bleu.corpus_score(all_preds_ground_truth, [all_target_texts]).score, + bleu.corpus_score(all_preds_naive, [all_target_texts]).score, + bleu.corpus_score(all_preds_ersatz, [all_target_texts]).score if len(all_preds_ersatz) > 0 else None, + bleu.corpus_score(all_preds_ours, [all_target_texts]).score, + ) + + +if __name__ == "__main__": + (args,) = HfArgumentParser([Args]).parse_args_into_dataclasses() + + model = AutoModelForTokenClassification.from_pretrained(args.model_path).to(args.device) + + clfs = sio.load(open(args.clfs_path, "rb"), ["numpy.float64", "numpy.float32"]) + + langs = [ + "ar", + "cs", + "de", + "en", + "es", + "fi", + "hi", + "ja", + "ka", + "lv", + "pl", + "th", + "xh", + "zh", + ] + + results = [] + + for lang_code in tqdm(langs): + results.append( + ( + lang_code, + *mt_eval( + model, + lang_code, + args.paragraph_length, + *clfs[lang_code]["opus100"], + ), + ), + ) + print(results[-1]) + + pd.DataFrame(results, columns=["lang", "no_sent", "ground_truth", "naive", "ersatz", "ours"]).to_csv( + "results.csv", index=False + ) diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/intrinsic_baselines.py b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/intrinsic_baselines.py new file mode 100644 index 0000000000000000000000000000000000000000..fbf03d677346cad88e7ca0c0057f2a93c35418cc --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/intrinsic_baselines.py @@ -0,0 +1,160 @@ +import json +from dataclasses import dataclass +from typing import List + +import torch +from tqdm import tqdm +from transformers import HfArgumentParser + +from wtpsplit.evaluation import ( + LanguageError, + ersatz_sentencize, + evaluate_sentences, + punkt_sentencize, + pysbd_sentencize, + spacy_dp_sentencize, + spacy_sent_sentencize, +) +from wtpsplit.utils import Constants + + +def split_language_data(eval_data): + # used if 2 language codes given (i.e., code-switching) + new_eval_data = {} + + for lang_code, lang_data in eval_data.items(): + if "-" in lang_code: + lang1, lang2 = lang_code.split("-") + new_lang1 = f"{lang_code}_{lang1.upper()}" + new_lang2 = f"{lang_code}_{lang2.upper()}" + + new_eval_data[new_lang1] = lang_data + new_eval_data[new_lang2] = lang_data + else: + new_eval_data[lang_code] = lang_data + + return new_eval_data + + +@dataclass +class Args: + eval_data_path: str = "data/all_data.pth" + include_langs: List[str] = None + exclude_every_k: int = 10 + + +if __name__ == "__main__": + (args,) = HfArgumentParser([Args]).parse_args_into_dataclasses() + + eval_data = torch.load(args.eval_data_path) + eval_data = split_language_data(eval_data) + results = {} + indices = {} + + for lang, lang_data in tqdm(eval_data.items()): + if args.include_langs is not None and lang not in args.include_langs: + continue + + results[lang] = {} + indices[lang] = {} + + for dataset_name, dataset in lang_data["sentence"].items(): + if "nllb" in dataset_name: + continue + if not dataset["data"]: + continue + results[lang][dataset_name] = {} + indices[lang][dataset_name] = {} + + if "-" in lang: + # code-switched data: eval 2x + lang_code = lang.split("_")[1].lower() + else: + lang_code = lang + + for f, name in [ + (punkt_sentencize, "punkt"), + (spacy_dp_sentencize, "spacy_dp"), + (spacy_sent_sentencize, "spacy_sent"), + (pysbd_sentencize, "pysbd"), + (ersatz_sentencize, "ersatz"), + ]: + print(f"Running {name} on {dataset_name} in {lang_code}...") + indices[lang][dataset_name][name] = {} + if "lyrics" in dataset_name or "short" in dataset_name: + exclude_every_k = 0 + else: + exclude_every_k = args.exclude_every_k + try: + if isinstance(dataset["data"][0], list): + all_sentences = dataset["data"] + metrics = [] + for i, sentences in enumerate(all_sentences): + text = Constants.SEPARATORS[lang_code].join(sentences) + doc_metrics = {} + doc_metrics = evaluate_sentences( + lang_code, + sentences, + f(lang_code, text), + return_indices=True, + exclude_every_k=exclude_every_k, + ) + f1 = doc_metrics[0] + doc_metrics = doc_metrics[1] + doc_metrics["f1"] = f1 + doc_metrics["length"] = [doc_metrics["length"]] + metrics.append(doc_metrics) + avg_results = {} + concat_indices = {} + for doc in metrics: + for key, value in doc.items(): + if not isinstance(value, list): + # numeric + if key not in avg_results: + avg_results[key] = [] + + avg_results[key].append(value) + elif isinstance(value, list): + # concat + if key not in concat_indices: + concat_indices[key] = [] + if key == "length": + concat_indices[key].append(value[0]) + else: + concat_indices[key].append(value) + + # avg + for key in list(avg_results): + if avg_results[key]: + avg_results[key] = sum(avg_results[key]) / len(avg_results[key]) + + # Store the results and indices + results[lang][dataset_name][name] = avg_results + indices[lang][dataset_name][name] = concat_indices + else: + # sentences = [preprocess_sentence(s) for s in dataset["data"]] + sentences = dataset["data"] + text = Constants.SEPARATORS[lang_code].join(sentences) + + metrics = evaluate_sentences( + lang_code, + sentences, + f(lang_code, text), + return_indices=True, + exclude_every_k=exclude_every_k, + ) + f1 = metrics[0] + metrics = metrics[1] + metrics["f1"] = f1 + print(f1) + indices[lang][dataset_name][name]["true_indices"] = [metrics.pop("true_indices")] + indices[lang][dataset_name][name]["predicted_indices"] = [metrics.pop("predicted_indices")] + indices[lang][dataset_name][name]["length"] = [metrics.pop("length")] + results[lang][dataset_name][name] = metrics + except LanguageError as e: + print("Language not supported for", name, e) + results[lang][dataset_name][name] = None + + json.dump(results, open(Constants.CACHE_DIR / "intrinsic_baselines.json", "w"), indent=4, default=int) + json.dump(indices, open(Constants.CACHE_DIR / "intrinsic_baselines_IDX.json", "w"), indent=4, default=int) + print(Constants.CACHE_DIR / "intrinsic_baselines.json") diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/intrinsic_baselines_multilingual.py b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/intrinsic_baselines_multilingual.py new file mode 100644 index 0000000000000000000000000000000000000000..8459974f315c543946606c590f492abbd91d742f --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/intrinsic_baselines_multilingual.py @@ -0,0 +1,152 @@ +import json +from dataclasses import dataclass +from typing import List + +import torch +from tqdm import tqdm +from transformers import HfArgumentParser + +from wtpsplit.evaluation import ( + LanguageError, + evaluate_sentences, + spacy_dp_sentencize, +) +from wtpsplit.utils import Constants + + +def split_language_data(eval_data): + # used if 2 language codes given (i.e., code-switching) + new_eval_data = {} + + for lang_code, lang_data in eval_data.items(): + if "-" in lang_code: + lang1, lang2 = lang_code.split("-") + new_lang1 = f"{lang_code}_{lang1.upper()}" + new_lang2 = f"{lang_code}_{lang2.upper()}" + + new_eval_data[new_lang1] = lang_data + new_eval_data[new_lang2] = lang_data + else: + new_eval_data[lang_code] = lang_data + + return new_eval_data + + +@dataclass +class Args: + eval_data_path: str = "data/all_data.pth" + include_langs: List[str] = None + exclude_every_k: int = 10 + + +if __name__ == "__main__": + (args,) = HfArgumentParser([Args]).parse_args_into_dataclasses() + + eval_data = torch.load(args.eval_data_path) + eval_data = split_language_data(eval_data) + results = {} + indices = {} + + for lang, lang_data in tqdm(eval_data.items()): + if args.include_langs is not None and lang not in args.include_langs: + continue + + results[lang] = {} + indices[lang] = {} + + for dataset_name, dataset in lang_data["sentence"].items(): + if "nllb" in dataset_name: + continue + if not dataset["data"]: + continue + results[lang][dataset_name] = {} + indices[lang][dataset_name] = {} + + if "-" in lang: + # code-switched data: eval 2x + lang_code = lang.split("_")[1].lower() + else: + lang_code = lang + + for f, name in [ + (spacy_dp_sentencize, "spacy_dp"), + # (spacy_sent_sentencize, "spacy_sent"), + ]: + print(f"Running {name} on {dataset_name} in {lang_code}...") + indices[lang][dataset_name][name] = {} + # exclude also here for fair comparison with others + if "lyrics" in dataset_name or "short" in dataset_name: + exclude_every_k = 0 + else: + exclude_every_k = args.exclude_every_k + try: + if isinstance(dataset["data"][0], list): + all_sentences = dataset["data"] + metrics = [] + for i, sentences in enumerate(all_sentences): + text = Constants.SEPARATORS[lang_code].join(sentences) + doc_metrics = {} + doc_metrics = evaluate_sentences( + lang_code, + sentences, + f("xx", text), # xx is multilingual key + return_indices=True, + exclude_every_k=exclude_every_k, + ) + f1 = doc_metrics[0] + doc_metrics = doc_metrics[1] + doc_metrics["f1"] = f1 + doc_metrics["length"] = [doc_metrics["length"]] + metrics.append(doc_metrics) + avg_results = {} + concat_indices = {} + for doc in metrics: + for key, value in doc.items(): + if not isinstance(value, list): + # numeric + if key not in avg_results: + avg_results[key] = [] + + avg_results[key].append(value) + elif isinstance(value, list): + # concat + if key not in concat_indices: + concat_indices[key] = [] + if key == "length": + concat_indices[key].append(value[0]) + else: + concat_indices[key].append(value) + + # avg + for key in list(avg_results): + if avg_results[key]: + avg_results[key] = sum(avg_results[key]) / len(avg_results[key]) + + results[lang][dataset_name][name] = avg_results + indices[lang][dataset_name][name] = concat_indices + else: + sentences = dataset["data"] + text = Constants.SEPARATORS[lang_code].join(sentences) + + metrics = evaluate_sentences( + lang_code, + sentences, + f("xx", text), + return_indices=True, + exclude_every_k=exclude_every_k, + ) + f1 = metrics[0] + metrics = metrics[1] + metrics["f1"] = f1 + print(f1) + indices[lang][dataset_name][name]["true_indices"] = [metrics.pop("true_indices")] + indices[lang][dataset_name][name]["predicted_indices"] = [metrics.pop("predicted_indices")] + indices[lang][dataset_name][name]["length"] = [metrics.pop("length")] + results[lang][dataset_name][name] = metrics + except LanguageError as l: + print("Language not supported for", name, l) + results[lang][dataset_name][name] = None + + json.dump(results, open(Constants.CACHE_DIR / "intrinsic_baselines_multi.json", "w"), indent=4, default=int) + json.dump(indices, open(Constants.CACHE_DIR / "intrinsic_baselines_multi_IDX.json", "w"), indent=4, default=int) + print(Constants.CACHE_DIR / "intrinsic_baselines_multi.json") diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/intrinsic_pairwise.py b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/intrinsic_pairwise.py new file mode 100644 index 0000000000000000000000000000000000000000..e6183d8df17fdfb60c2c9af799b70ec57af3a5c9 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/intrinsic_pairwise.py @@ -0,0 +1,518 @@ +import copy +import json +from dataclasses import dataclass +from typing import List, Tuple +import os +import time +import random +import sys +import logging + +import h5py +import torch +from datasets import load_dataset +from tqdm.auto import tqdm +from transformers import AutoModelForTokenClassification, HfArgumentParser +import numpy as np +import adapters + +import wtpsplit.models # noqa: F401 +from wtpsplit.evaluation import evaluate_mixture, get_labels, train_mixture +from wtpsplit.evaluation.intrinsic_baselines import split_language_data +from wtpsplit.extract import PyTorchWrapper +from wtpsplit.extract_batched import extract_batched +from wtpsplit.utils import Constants, token_to_char_probs +from wtpsplit.evaluation.adapt import compute_statistics + +logger = logging.getLogger() +logger.setLevel(logging.INFO) + + +@dataclass +class Args: + model_path: str + adapter_path: str = None + # eval data in the format: + # { + # "": { + # "sentence": { + # "": { + # "meta": { + # "train_data": ["train sentence 1", "train sentence 2"] + # }, + # "data": ["test sentence 1", "test sentence 2"] + # } + # } + # } + # } + eval_data_path: str = "data/all_data.pth" + valid_text_path: str = None # "data/sentence/valid.parquet" + device: str = "cpu" + block_size: int = 512 + batch_size: int = 128 + include_langs: List[str] = None + threshold: float = 0.01 + max_n_train_sentences: int = 1_000 + max_n_test_sentences: int = sys.maxsize + save_suffix: str = "" + skip_adaptation: bool = False + keep_logits: bool = True + skip_corrupted: bool = True + skip_punct: bool = True + return_indices: bool = True + clf_from_scratch: bool = False + + # k_mer-specific args + # k=2 means pairwise, k=3 triplets, ... + k: int = 2 + max_n_samples: int = sys.maxsize + sample_pct: float = 0.5 + min_k_mer_length: int = 0 + + +def process_logits_k_mers(pairs, model, lang_code, block_size, batch_size, verbose=True) -> List[np.ndarray]: + logits_list = [] + n_tokens_list = [] + # create batches of sentence pairs + batched_k_mers = [pairs[i : i + batch_size] for i in range(0, len(pairs), batch_size)] + for batch in tqdm(batched_k_mers, disable=not verbose): + k_mer_texts = [Constants.SEPARATORS[lang_code].join(pair) for pair in batch] + all_logits, offsets_mapping, tokenizer = extract_batched( + k_mer_texts, + model, + lang_code=lang_code, + block_size=block_size, + batch_size=batch_size, + pad_last_batch=True, + ) + + special_tokens = [tokenizer.cls_token, tokenizer.sep_token, tokenizer.pad_token] + + for k_mer, logit, offset_mapping in zip(k_mer_texts, all_logits, offsets_mapping): + if "xlm" in model.config.model_type: + tokens = tokenizer.tokenize(k_mer, verbose=False) + + # padding is also removed here (via offset_mapping) + logits = token_to_char_probs(k_mer, tokens, logit, special_tokens, offset_mapping) + logits_list.append(logits) + n_tokens_list.append(len(tokens)) + else: + if len(logit) < offset_mapping: + # truncated input --> pad back + logit = np.pad( + logit, ((0, offset_mapping - len(logit)), (0, 0)), "constant", constant_values=np.min(logit) + ) + # since we pad to equal length, we need to remove the padding + logits_list.append(logit[:offset_mapping]) + + return logits_list, n_tokens_list + + +def generate_k_mers( + sentences: List[str], + k: int, + sample_pct: float = 1, + max_n_samples: int = sys.maxsize, + min_k_mer_length: int = 0, +) -> List[Tuple[str, ...]]: + """Generate k-mers from a list of sentences. + + Args: + sentences (List[str]): Input list of sentences. + k (int): The number of sentences to include in each k-mer. + sample_pct (float): Percentage of k-mers to sample. + max_n_samples (int): Maximum number of k-mers to sample. + min_k_mer_length (int): Minimum length of a k-mer. + + Returns: + List[Tuple[str, ...]]: List of k-mers. + """ + random.seed(42) + n_k_mers = len(sentences) // k + sample_size = min(round(n_k_mers * sample_pct), max_n_samples) + + # sample if needed + if sample_size < n_k_mers: + sampled_indices = set(random.sample(range(n_k_mers), sample_size)) + all_k_mers = [ + tuple(sentences[i * k + j] for j in range(k)) + for i in sampled_indices + if sum(len(sentences[i * k + j]) for j in range(k)) > min_k_mer_length + ] + else: + # all + all_k_mers = [ + tuple(sentences[i + j] for j in range(k)) + for i in range(0, len(sentences) - k + 1, k) + if sum(len(sentences[i + j]) for j in range(k)) > min_k_mer_length + ] + + return all_k_mers + + +def load_or_compute_logits(args, model, eval_data, valid_data=None, save_str: str = None): + logits_path = Constants.CACHE_DIR / "intrinsic_pairwise" / f"{save_str}.h5" + + if not os.path.exists(Constants.CACHE_DIR / "intrinsic_pairwise"): + os.makedirs(Constants.CACHE_DIR / "intrinsic_pairwise") + + total_test_time = 0 + + start_time = time.time() + with h5py.File(logits_path, "a") as f, torch.no_grad(): + for lang_code in Constants.LANGINFO.index: + if args.include_langs is not None and lang_code not in args.include_langs: + continue + print(f"Processing {lang_code}...") + if lang_code not in f: + lang_group = f.create_group(lang_code) + else: + lang_group = f[lang_code] + + # eval data + for dataset_name, dataset in eval_data[lang_code]["sentence"].items(): + if args.skip_corrupted and "corrupted" in dataset_name and "ted2020" not in dataset_name: + continue + if "-" in lang_code and "canine" in args.model_path and "no-adapters" not in args.model_path: + # code-switched data: eval 2x + lang_code = lang_code.split("_")[1].lower() + try: + if args.adapter_path: + if args.clf_from_scratch: + model.model.classifier = torch.nn.Linear(model.model.classifier.in_features, 1) + elif args.model_path == "xlm-roberta-base" or args.model_path == "xlm-roberta-large": + # we train XLM-R using our wrapper, needs to be adapted for adapters to be loaded + model.model.classifier = torch.nn.Linear( + model.model.classifier.in_features, + 1, + ) + model.model.__class__.__name__ = "SubwordXLMForTokenClassification" + dataset_load_name = dataset_name + model.model.load_adapter( + args.adapter_path + "/" + dataset_load_name + "/" + lang_code, + set_active=True, + with_head=True, + load_as="text", + ) + except Exception as e: + print(f"Error loading adapter for {dataset_name} in {lang_code}: {e}") + continue + print(dataset_name) + if dataset_name not in lang_group: + dset_group = lang_group.create_group(dataset_name) + else: + dset_group = lang_group[dataset_name] + + if "test_logits" not in dset_group: + test_sentences = dataset["data"][: args.max_n_test_sentences] + if not test_sentences: + continue + if isinstance(test_sentences[0], list): + continue + all_pairs_test = generate_k_mers( + test_sentences, + k=args.k, + sample_pct=args.sample_pct, + max_n_samples=args.max_n_samples, + min_k_mer_length=args.min_k_mer_length, + ) + + start_time = time.time() + test_logits, test_n_logits = process_logits_k_mers( + all_pairs_test, + model, + lang_code, + args.block_size, + args.batch_size, + ) + end_time = time.time() + + test_logit_lengths = [] + # store start and end indices for each pair, used later to slice the logits + all_logit_lengths = np.append(0, np.cumsum([len(logits) for logits in test_logits])) + # append tuple of start and end indices for each pair + for i in range(len(test_logits)): + test_logit_lengths.append((all_logit_lengths[i], all_logit_lengths[i + 1] - 1)) + + test_logits = np.concatenate(test_logits) + total_test_time += end_time - start_time + + # get_labels returns 2nd label at end of seq, which we do not want. + # label is at position -2 --> remove and add back 0 to end of sequence + test_labels = [ + np.append(get_labels(lang_code, pair, after_space=False)[:-2], 0) for pair in all_pairs_test + ] + + # flatten; append 0 eos to account for later indexing/slicing + test_labels = np.append(np.concatenate(test_labels), 0) + assert len(test_labels) == len(test_logits) + 1 + + dset_group.create_dataset("test_logits", data=test_logits) + dset_group.create_dataset("test_labels", data=test_labels) + dset_group.create_dataset("test_logit_lengths", data=test_logit_lengths) + dset_group.create_dataset("test_n_logits", data=test_n_logits) + + train_sentences = dataset["meta"].get("train_data") + if train_sentences is not None and "train_logits" not in dset_group and not args.skip_adaptation: + train_sentences = train_sentences[: args.max_n_train_sentences] + all_pairs_train = generate_k_mers( + train_sentences, + k=args.k, + sample_pct=args.sample_pct, + max_n_samples=args.max_n_samples, + min_k_mer_length=args.min_k_mer_length, + ) + + train_logits, train_n_logits = process_logits_k_mers( + all_pairs_train, model, lang_code, args.block_size, args.batch_size + ) + train_logits = np.concatenate(train_logits) + + train_labels = [ + np.append(get_labels(lang_code, pair, after_space=False)[:-2], 0) for pair in all_pairs_train + ] + train_labels = np.append(np.concatenate(train_labels), 0) + assert len(train_labels) == len(train_logits) + 1 + + dset_group.create_dataset("train_logits", data=train_logits) + dset_group.create_dataset("train_labels", data=train_labels) + dset_group.create_dataset("train_n_logits", data=train_n_logits) + + end_time = time.time() + return h5py.File(logits_path, "r"), total_test_time / 60 # to minutes + + +def main(args): + save_model_path = args.model_path + if args.adapter_path: + save_model_path = args.adapter_path + save_str = f"{save_model_path.replace('/','_')}_b{args.block_size}_k{args.k}{args.save_suffix}" + + print(save_str) + eval_data = torch.load(args.eval_data_path) + if "canine" in args.model_path and "no-adapters" not in args.model_path: + eval_data = split_language_data(eval_data) + if args.valid_text_path is not None: + valid_data = load_dataset("parquet", data_files=args.valid_text_path, split="train") + else: + valid_data = None + + print("Loading model...") + model = PyTorchWrapper(AutoModelForTokenClassification.from_pretrained(args.model_path).to(args.device)) + if args.adapter_path: + model_type = model.model.config.model_type + # adapters need xlm-roberta as model type. + model.model.config.model_type = "xlm-roberta" + adapters.init(model.model) + # reset model type (used later) + model.model.config.model_type = model_type + + # first, logits for everything. + f, total_test_time = load_or_compute_logits(args, model, eval_data, valid_data, save_str) + save_str += f"_u{args.threshold}" + + # now, compute the intrinsic scores. + results = {} + clfs = {} + if args.return_indices: + indices = {} + # lists to store scores for each metric across *all* languages + u_scores, t_scores, punct_scores = [], [], [] + u_accs, t_accs, punct_accs = [], [], [] + thresholds_t, thresholds_adj = [], [] + + for lang_code, dsets in tqdm(eval_data.items()): + if args.include_langs is not None and lang_code not in args.include_langs: + continue + + print(f"Predicting {lang_code}...") + results[lang_code] = {} + clfs[lang_code] = {} + if args.return_indices: + indices[lang_code] = {} + + for dataset_name, dataset in dsets["sentence"].items(): + sentences = dataset["data"][: args.max_n_test_sentences] + if not sentences: + continue + if isinstance(sentences[0], list): + continue + sent_k_mers = generate_k_mers( + sentences, + k=args.k, + sample_pct=args.sample_pct, + max_n_samples=args.max_n_samples, + min_k_mer_length=args.min_k_mer_length, + ) + if lang_code not in f or dataset_name not in f[lang_code]: + continue + + if "train_logits" in f[lang_code][dataset_name] and not args.skip_adaptation: + feature_indices = None + # it is sufficient to feed in 1 long sequence of tokens here since we only use logits for LR + clf = train_mixture( + [lang_code], + f[lang_code][dataset_name]["train_logits"][:], + f[lang_code][dataset_name]["train_labels"][:], + features=feature_indices, + skip_punct=args.skip_punct, + ) + # XXX: clf thresholds are still fitted on max. F1 score, not accuracy! + # (but still without a positive label at the end) + if clf[0] is not None: + print(clf) + + score_t = [] + score_punct = [] + # acc: average of correct 100% pairwise (or: k-mer) segmentation + acc_t = [] + acc_punct = [] + + # evaluate each pair + for i, k_mer in enumerate(sent_k_mers): + start, end = f[lang_code][dataset_name]["test_logit_lengths"][i] + single_score_t, single_score_punct, info, t_indices, punct_indices = evaluate_mixture( + lang_code, + f[lang_code][dataset_name]["test_logits"][:][start:end], + list(k_mer), + args.return_indices, + 0, + *clf, + ) + score_t.append(single_score_t) + score_punct.append(single_score_punct) + acc_t.append(info["info_newline"]["correct_pairwise"] if info["info_newline"] else None) + acc_punct.append(info["info_transformed"]["correct_pairwise"] if info["info_transformed"] else None) + + clfs[lang_code][dataset_name] = clf + + clf = list(copy.deepcopy(clf)) + threshold_t = float(clf[-1]) + clf[-1] = args.threshold + else: + threshold_t = 0 + clf = [None, None, None, args.threshold] + score_t = score_punct = None + acc_t = acc_punct = None + + score_u = [] + acc_u = [] + thresholds = [] + u_indices, true_indices = [], [] + length = [] + for i, k_mer in enumerate(sent_k_mers): + start, end = f[lang_code][dataset_name]["test_logit_lengths"][i] + thresholds.append(args.threshold) + single_score_u, _, info, cur_u_indices, _ = evaluate_mixture( + lang_code, + f[lang_code][dataset_name]["test_logits"][:][start:end], + list(k_mer), + args.return_indices, + 0, + *clf, + ) + score_u.append(single_score_u) + acc_u.append(info["info_newline"]["correct_pairwise"]) + u_indices.append(cur_u_indices["pred_indices"] if cur_u_indices["pred_indices"] else []) + true_indices.append(cur_u_indices["true_indices"] if cur_u_indices["true_indices"] else []) + length.append(cur_u_indices["length"]) + + score_u = np.mean(score_u) + score_t = np.mean(score_t) if score_t and not args.skip_adaptation else None + score_punct = ( + np.mean(score_punct) if score_punct and not (args.skip_punct or args.skip_adaptation) else None + ) + acc_u = np.mean(acc_u) + acc_t = np.mean(acc_t) if score_t else None + acc_punct = np.mean(acc_punct) if score_punct else None + threshold = np.mean(thresholds) + + results[lang_code][dataset_name] = { + "u": score_u, + "t": score_t, + "punct": score_punct, + "u_acc": acc_u, + "t_acc": acc_t, + "punct_acc": acc_punct, + "threshold_t": threshold_t, + "threshold_adj": threshold, + } + + if args.return_indices: + indices[lang_code][dataset_name] = { + "u": {"predicted_indices": u_indices, "true_indices": true_indices, "length": length}, + } + # just for printing + score_t = score_t or 0.0 + score_punct = score_punct or 0.0 + acc_t = acc_t or 0.0 + acc_punct = acc_punct or 0.0 + + u_scores.append((score_u, lang_code)) + u_accs.append((acc_u, lang_code)) + t_scores.append((score_t, lang_code)) + t_accs.append((acc_t, lang_code)) + punct_scores.append((score_punct, lang_code)) + punct_accs.append((acc_punct, lang_code)) + thresholds_t.append((threshold_t, lang_code)) + thresholds_adj.append((threshold, lang_code)) + + print(f"{lang_code} {dataset_name} {score_u:.3f} {score_t:.3f} {score_punct:.3f}") + print(f"ACC: {acc_u:.3f} {acc_t:.3f} {acc_punct:.3f}") + print(f"Threshold_t: {threshold_t:.3f} Threshold_adj: {threshold:.3f}") + + # Compute statistics for each metric across all languages + results_avg = { + "u": compute_statistics(u_scores), + "t": compute_statistics(t_scores), + "punct": compute_statistics(punct_scores), + "u_acc": compute_statistics(u_accs), + "t_acc": compute_statistics(t_accs), + "punct_acc": compute_statistics(punct_accs), + "threshold_t": compute_statistics(thresholds_t), + "threshold_adj": compute_statistics(thresholds_adj), + "include_langs": args.include_langs, + } + + json.dump( + results, + open( + Constants.CACHE_DIR / "intrinsic_pairwise" / f"{save_str}.json", + "w", + ), + indent=4, + ) + + json.dump( + results_avg, + open( + Constants.CACHE_DIR / "intrinsic_pairwise" / f"{save_str}_AVG.json", + "w", + ), + indent=4, + ) + + if args.return_indices: + json.dump( + indices, + open( + Constants.CACHE_DIR / "intrinsic_pairwise" / f"{save_str}_IDX.json", + "w", + ), + default=int, + indent=4, + ) + print(Constants.CACHE_DIR / "intrinsic_pairwise" / f"{save_str}_IDX.json") + print("Indices saved to file.") + if not args.keep_logits: + os.remove(f.filename) + + print(results_avg) + print(save_str) + return results, results_avg, total_test_time + + +if __name__ == "__main__": + (args,) = HfArgumentParser([Args]).parse_args_into_dataclasses() + results, results_avg, total_test_time = main(args) + print(total_test_time) diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/intrinsic_ted.py b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/intrinsic_ted.py new file mode 100644 index 0000000000000000000000000000000000000000..9183f29aef922d8b04a86a8ce00c54830bce6f72 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/intrinsic_ted.py @@ -0,0 +1,400 @@ +import copy +import logging +import os +import sys +import time +from dataclasses import dataclass +from typing import List + +import h5py +import numpy as np +import spacy_alignments as tokenizations +import torch +from datasets import load_dataset +from tqdm.auto import tqdm +from transformers import AutoModelForTokenClassification, AutoTokenizer, HfArgumentParser + +import adapters +import wtpsplit.models # noqa: F401 +from wtpsplit.evaluation import get_labels, train_mixture +from wtpsplit.evaluation.evaluate_sepp_nlg_subtask1 import evaluate_subtask1 +from wtpsplit.evaluation.adapt import process_logits +from wtpsplit.extract import PyTorchWrapper, extract +from wtpsplit.utils import Constants, sigmoid + +logger = logging.getLogger() +logger.setLevel(logging.INFO) + + +def get_token_labels(a, b, a_labels): + a2b, b2a = tokenizations.get_alignments(a, b) + + b_labels = [] + + for i, label_indices in enumerate(b2a): + aligned_subwords = [] + + if label_indices: + for j in label_indices: + if j < len(a_labels): + aligned_subwords.append(a_labels[j]) + + if True in aligned_subwords: + b_labels.append(1) + else: + b_labels.append(0) + if not np.sum(a_labels) == sum(b_labels): + print(np.sum(a_labels), sum(b_labels)) + b_labels[-1] = 1 # last is always 1 + return b_labels + + +@dataclass +class Args: + model_path: str + adapter_path: str = None + # eval data in the format: + # { + # "": { + # "sentence": { + # "": { + # "meta": { + # "train_data": ["train sentence 1", "train sentence 2"] + # }, + # "data": ["test sentence 1", "test sentence 2"] + # } + # } + # } + # } + eval_data_path: str = "data/ted2020.pth" + valid_text_path: str = None # "data/sentence/valid.parquet" + device: str = "cpu" + block_size: int = 512 + stride: int = 64 + batch_size: int = 32 + include_langs: List[str] = None + include_splits: List[str] = None + threshold: float = 0.025 + max_n_train_sentences: int = 100 + max_n_test_sentences: int = sys.maxsize + save_suffix: str = "" + skip_adaptation: bool = False + clf_from_scratch: bool = False + skip_punct: bool = True + + +def process_logits_and_tokens(text, model, lang_code, args): + # variation of process_logits used in intrinsic.py for word-based evals, returning tokens as well. + if isinstance(text, list): + logits = [] + tokens = [] + for short_seq in tqdm(text, desc="Evaluating...", disable=False): + current_logits, current_offsets_mapping, tokenizer, _ = extract( + [short_seq], + model, + lang_code=lang_code, + stride=args.stride, + max_block_size=args.block_size, + batch_size=args.batch_size, + pad_last_batch=True, + verbose=False, + ) + current_logits = current_logits[0] + if current_offsets_mapping is not None: + current_offsets_mapping = current_offsets_mapping[0] + + current_tokens = tokenizer.encode(short_seq, verbose=False, add_special_tokens=False) + + logits.append(current_logits) + tokens.append(current_tokens) + else: + raise NotImplementedError + return logits, tokens + + +def load_or_compute_logits(args, model, eval_data, valid_data=None, save_str: str = None): + logits_path = Constants.CACHE_DIR / "ted2020" / f"{save_str}.h5" + + if not os.path.exists(Constants.CACHE_DIR / "ted2020"): + os.makedirs(Constants.CACHE_DIR / "ted2020") + + use_langs = eval_data.keys() + + total_test_time = 0 # Initialize total test processing time + + with h5py.File(logits_path, "a") as f, torch.no_grad(): + if not args.include_splits: + splits = ["surprise_test", "test"] + else: + splits = args.include_splits + for lang_code in tqdm(use_langs, desc="Languages"): + if args.include_langs is not None and lang_code not in args.include_langs: + continue + + if lang_code not in f: + lang_group = f.create_group(lang_code) + else: + lang_group = f[lang_code] + + # eval data + for dataset_name, dataset in tqdm(eval_data[lang_code]["sentence"].items(), desc=lang_code): + if dataset_name not in splits: + continue + try: + if args.adapter_path: + if args.clf_from_scratch: + model.model.classifier = torch.nn.Linear(model.model.classifier.in_features, 1) + # we trained adapters on "train" split but uniformly save as "surprise_test" + model.model.load_adapter( + args.adapter_path + "/" + "surprise_test" + "/" + lang_code, + set_active=True, + with_head=True, + load_as="text", + ) + if not os.path.exists(os.path.join(args.model_path, "pytorch_model.bin")) and not os.path.exists( + os.path.join(args.model_path, "model.safetensors") + ): + model_path = os.path.join(args.model_path, dataset_name, "en") + if not os.path.exists(model_path): + model_path = args.model_path + model = PyTorchWrapper( + AutoModelForTokenClassification.from_pretrained(model_path).to(args.device) + ) + except Exception as e: + print(f"Error loading adapter for {dataset_name} in {lang_code}: {e}") + continue + if dataset_name not in lang_group: + dset_group = lang_group.create_group(dataset_name) + else: + dset_group = lang_group[dataset_name] + + if "test_logits" not in dset_group: + test_sentences = dataset["data"][: args.max_n_test_sentences] + if isinstance(test_sentences[0], list): + # short-seq eval: list of lists + test_text = [ + Constants.SEPARATORS.get(lang_code, " ").join(sentence) for sentence in test_sentences + ] + else: + raise NotImplementedError + + start_time = time.time() + test_logits, test_tokens = process_logits_and_tokens(test_text, model, lang_code, args) + end_time = time.time() + total_test_time += end_time - start_time + if isinstance(test_sentences[0], list): + test_logit_lengths = [] + # store start and end indices for each pair, used later to slice the logits + # (h5py does not like different length np arrays as list elements) + all_logit_lengths = np.append(0, np.cumsum([len(logits) for logits in test_logits])) + # append tuple of start and end indices for each pair + for i in range(len(test_logits)): + test_logit_lengths.append((all_logit_lengths[i], all_logit_lengths[i + 1] - 1)) + test_logits = np.concatenate(test_logits) + test_tokens = np.concatenate(test_tokens) + + dset_group.create_dataset("test_logit_lengths", data=test_logit_lengths) + + dset_group.create_dataset("test_logits", data=test_logits) + dset_group.create_dataset("test_tokens", data=test_tokens) + + train_sentences = dataset["meta"].get("train_data") + if train_sentences is not None and "train_logits" not in dset_group and not args.skip_adaptation: + train_sentences = train_sentences[: args.max_n_train_sentences] + if isinstance(train_sentences[0], list): + # short-seq eval: list of lists + train_text = [ + Constants.SEPARATORS.get(lang_code, " ").join(sentence) for sentence in train_sentences + ] + train_logits = process_logits(train_text, model, lang_code, args) + if isinstance(train_sentences[0], list): + train_logits = np.concatenate(train_logits) + train_labels = [ + get_labels(lang_code, short_seq, after_space=False)[:-1] for short_seq in train_sentences + ] + + # flatten; append 0 eos to account for later indexing/slicing + train_labels = np.append(np.concatenate(train_labels), 1) + assert len(train_labels) == len(train_logits) + 1 + + dset_group.create_dataset("train_logits", data=train_logits) + dset_group.create_dataset("train_labels", data=train_labels) + + end_time = time.time() + return h5py.File(logits_path, "r"), total_test_time / 60 # to minutes + + +def compute_statistics(values): + if not values: # Check for empty values list + return {"mean": None, "median": None, "std": None, "min": None, "min_lang": None, "max": None, "max_lang": None} + + scores, langs = zip(*values) + min_index = np.argmin(scores) + max_index = np.argmax(scores) + return { + "mean": np.mean(scores), + "median": np.median(scores), + "std": np.std(scores), + "min": scores[min_index], + "min_lang": langs[min_index], + "max": scores[max_index], + "max_lang": langs[max_index], + } + + +def main(args): + save_model_path = args.model_path + if args.adapter_path: + save_model_path = args.adapter_path + save_str = f"{save_model_path.replace('/','_')}_b{args.block_size}_s{args.stride}" + + eval_data = torch.load(args.eval_data_path) + if args.valid_text_path is not None: + valid_data = load_dataset("parquet", data_files=args.valid_text_path, split="train") + else: + valid_data = None + + print("Loading model...") + # if model_path does not contain a model, take first subfolder + if not os.path.exists(os.path.join(args.model_path, "pytorch_model.bin")) and not os.path.exists( + os.path.join(args.model_path, "model.safetensors") + ): + try: + model_path = os.path.join(args.model_path, os.listdir(args.model_path)[0], "en") + except: # noqa + model_path = args.model_path + print(model_path) + else: + model_path = args.model_path + model = PyTorchWrapper(AutoModelForTokenClassification.from_pretrained(model_path).to(args.device)) + if args.adapter_path: + model_type = model.model.config.model_type + # adapters need xlm-roberta as model type. + model.model.config.model_type = "xlm-roberta" + adapters.init(model.model) + # reset model type (used later) + model.model.config.model_type = model_type + + save_str += f"{args.save_suffix}" + if args.max_n_test_sentences < sys.maxsize: + save_str += f"_n{args.max_n_test_sentences}" + + # first, logits for everything. + f, total_test_time = load_or_compute_logits(args, model, eval_data, valid_data, save_str) + + save_str += f"_u{args.threshold}" + + tokenizer = AutoTokenizer.from_pretrained(model.config.base_model) + + clfs = {} + # now, compute the intrinsic scores. + for lang_code, dsets in tqdm(eval_data.items()): + if args.include_langs is not None and lang_code not in args.include_langs: + continue + + print(f"Predicting {lang_code}...") + + for dataset_name, dataset in dsets["sentence"].items(): + if not os.path.exists(Constants.CACHE_DIR / "ted2020" / save_str / lang_code / dataset_name): + os.makedirs(Constants.CACHE_DIR / "ted2020" / save_str / lang_code / dataset_name) + for supervision in ["u", "t", "punct"]: + if not os.path.exists( + Constants.CACHE_DIR / "ted2020" / save_str / lang_code / dataset_name / supervision + ): + os.makedirs(Constants.CACHE_DIR / "ted2020" / save_str / lang_code / dataset_name / supervision) + if "surprise" not in dataset_name: + continue + sentences = dataset["data"][: args.max_n_test_sentences] + # check if f[lang_code][dataset_name] exists + if lang_code not in f or dataset_name not in f[lang_code]: + continue + + if "train_logits" in f[lang_code][dataset_name] and not args.skip_adaptation and "surprise" in dataset_name: + feature_indices = None + clf = train_mixture( + [lang_code], + f[lang_code][dataset_name]["train_logits"][:], + f[lang_code][dataset_name]["train_labels"][:], + features=feature_indices, + skip_punct=args.skip_punct, + ) + if clf[0] is not None: + print(clf) + + clf = list(copy.deepcopy(clf)) + # 1 clf for each lang: train data is same for both. + clfs[lang_code] = clf + + gt_dir = Constants.ROOT_DIR.parent / "data" / "sepp_nlg_2021_data" / lang_code / dataset_name + test_files = sorted([f for f in gt_dir.glob("*.tsv") if f.is_file()]) + + if isinstance(sentences[0], list): + for i, short_seq in enumerate(sentences): + start, end = f[lang_code][dataset_name]["test_logit_lengths"][i] + current_logits = f[lang_code][dataset_name]["test_logits"][:][start : end + 1] + current_tokens = tokenizer.convert_ids_to_tokens( + f[lang_code][dataset_name]["test_tokens"][:][start : end + 1] + ) + + with open(test_files[i], "r", encoding="utf-8") as file: + idx = test_files[i].name.split(".")[0] + lines = file.read().strip().split("\n") + rows = [line.split("\t") for line in lines] + gt_words = [row[0] for row in rows] + gt_labels = [row[1] for row in rows] + if gt_labels[-1] != "1": + print("0 label at end!") + u_preds = sigmoid(current_logits[:, 0]) > args.threshold + if not args.skip_adaptation: + t_preds = sigmoid(current_logits[:, 0]) > clfs[lang_code][-1] + else: + t_preds = None + if not args.skip_adaptation and not args.skip_punct: + punct_preds = clfs[lang_code][0].predict_proba(current_logits)[:, 1] > clf[2] + else: + punct_preds = None + + # write to tsv as per the challenge reqs + # can then be evaluated via evaluate_sepp_nlg_subtask1.py + for supervision, preds in zip(["u", "t", "punct"], [u_preds, t_preds, punct_preds]): + if preds is None: + continue + + word_labels = get_token_labels(current_tokens, gt_words, preds) + + with open( + Constants.CACHE_DIR + / "ted2020" + / save_str + / lang_code + / dataset_name + / supervision + / f"{idx}.tsv", + "w", + encoding="utf-8", + ) as file: + for word, label in zip(gt_words, word_labels): + file.write(f"{word}\t{label}\n") + else: + raise NotImplementedError + return total_test_time, save_str + + +if __name__ == "__main__": + (args,) = HfArgumentParser([Args]).parse_args_into_dataclasses() + total_test_time, save_str = main(args) + print(total_test_time) + supervision = ["u", "t", "punct"] + if args.skip_adaptation: + supervision.remove("t") + if args.skip_punct: + supervision.remove("punct") + if not args.include_langs: + include_langs = ["en", "de", "fr", "it"] + else: + include_langs = args.include_langs + if not args.include_splits: + include_splits = ["surprise_test", "test"] + else: + include_splits = args.include_splits + results = evaluate_subtask1(include_splits, include_langs, save_str, supervision, args.max_n_test_sentences) diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/legal_baselines.py b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/legal_baselines.py new file mode 100644 index 0000000000000000000000000000000000000000..88141d88f646d4ace2f26d687330fadc43b3eec1 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/legal_baselines.py @@ -0,0 +1,313 @@ +import json +import logging +import os +import sys +import time +from dataclasses import dataclass +from typing import List +import warnings + +import h5py +import numpy as np +import torch +from tqdm.auto import tqdm +from transformers import AutoModelForTokenClassification, AutoTokenizer, HfArgumentParser, pipeline + +from wtpsplit.evaluation import evaluate_mixture +from wtpsplit.utils import Constants + +logger = logging.getLogger() +logger.setLevel(logging.INFO) + +warnings.filterwarnings("ignore", category=UserWarning) + + +@dataclass +class Args: + eval_data_path: str = "data/all_data_11_05-all.pth" + device: str = "cpu" + include_langs: List[str] = None + max_n_test_sentences: int = sys.maxsize + stride: int = 64 + save_suffix: str = "" + return_indices: bool = False + type: str = "both" # laws, judgements, both, specific + lang_support: str = "multi" # mono, multi + + +def get_law_preds(texts, model, model_name, args) -> List[List[int]]: + tokenizer = AutoTokenizer.from_pretrained(model_name) + + pipe = pipeline( + "token-classification", + model=model, + tokenizer=tokenizer, + device=args.device, + aggregation_strategy="simple", + stride=args.stride, + ) + sentences = pipe(texts) + sent_end_preds_all = [] + for text, sent_preds in zip(texts, sentences): + sent_end_indices = [short_seq["end"] - 1 for short_seq in sent_preds] + # indices to binary list + sent_end_preds = [1 if i in sent_end_indices else 0 for i in range(len(text))] + sent_end_preds_all.append(sent_end_preds) + return sent_end_preds_all + + +def load_or_compute_logits(args, eval_data, save_str: str = None): + logits_path = Constants.CACHE_DIR / "law_bert" / f"{save_str}.h5" + base_name = "rcds/distilbert-SBD" # take from HF hub + + if not os.path.exists(Constants.CACHE_DIR / "law_bert"): + os.makedirs(Constants.CACHE_DIR / "law_bert") + + use_langs = ["fr", "es", "it", "en", "de", "pt"] + + total_test_time = 0 + + with h5py.File(logits_path, "a") as f, torch.no_grad(): + for lang_code in tqdm(use_langs, desc="Languages"): + if args.include_langs is not None and lang_code not in args.include_langs: + continue + if lang_code not in f: + lang_group = f.create_group(lang_code) + else: + lang_group = f[lang_code] + + # eval data + for dataset_name, dataset in tqdm(eval_data[lang_code]["sentence"].items(), desc=lang_code): + if "legal" not in dataset_name: + continue + if "legal" in dataset_name and not ("laws" in dataset_name or "judgements" in dataset_name): + continue + if "social-media" in dataset_name: + continue + current_name = base_name + # map to correct model + if args.lang_support == "multi": + current_name += "-fr-es-it-en-de" + elif args.lang_support == "mono": + if lang_code.split("_")[0] == "pt": + current_name += "-fr-es-it-en-de" + else: + current_name += f"-{lang_code.split('_')[0]}" + if lang_code.split("_")[0] == "en": + current_name += "-judgements-laws" + else: + raise NotImplementedError + if lang_code.split("_")[0] == "en" and args.lang_support == "mono": + pass + elif args.type == "laws": + current_name += "-laws" + elif args.type == "judgements": + current_name += "-judgements" + elif args.type == "both": + current_name += "-judgements-laws" + elif args.type == "specific": + current_name += f"-{dataset_name.split('-')[-1]}" + else: + raise NotImplementedError + + model = AutoModelForTokenClassification.from_pretrained(current_name).to(args.device) + logger.info(f"RUN {lang_code} {dataset_name} {current_name}") + if dataset_name not in lang_group: + dset_group = lang_group.create_group(dataset_name) + else: + dset_group = lang_group[dataset_name] + + if "test_logits" not in dset_group: + test_sentences = dataset["data"][: args.max_n_test_sentences] + if not test_sentences: + continue + if isinstance(test_sentences[0], list): + # short-seq eval: list of lists + test_text = [ + Constants.SEPARATORS.get(lang_code, " ").join(sentence) for sentence in test_sentences + ] + else: + raise NotImplementedError + + start_time = time.time() + test_logits = get_law_preds(test_text, model, current_name, args) + end_time = time.time() + total_test_time += end_time - start_time + if isinstance(test_sentences[0], list): + test_logit_lengths = [] + # store start and end indices for each pair, used later to slice the logits + # (h5py does not like different length np arrays as list elements) + all_logit_lengths = np.append(0, np.cumsum([len(logits) for logits in test_logits])) + # append tuple of start and end indices for each pair + for i in range(len(test_logits)): + test_logit_lengths.append((all_logit_lengths[i], all_logit_lengths[i + 1] - 1)) + test_logits = np.concatenate(test_logits) + test_logits = np.expand_dims(test_logits, axis=1) + dset_group.create_dataset("test_logit_lengths", data=test_logit_lengths) + else: + raise NotImplementedError + + dset_group.create_dataset("test_logits", data=test_logits) + + end_time = time.time() + return h5py.File(logits_path, "r"), total_test_time / 60 # to minutes + + +def compute_statistics(values): + if not values: # Check for empty values list + return {"mean": None, "median": None, "std": None, "min": None, "min_lang": None, "max": None, "max_lang": None} + + scores, langs = zip(*values) # Unpack scores and languages + min_index = np.argmin(scores) + max_index = np.argmax(scores) + return { + "mean": np.mean(scores), + "median": np.median(scores), + "std": np.std(scores), + "min": scores[min_index], + "min_lang": langs[min_index], + "max": scores[max_index], + "max_lang": langs[max_index], + } + + +def main(args): + save_model_path = f"rcds/distilbert-SBD-{args.lang_support}-{args.type}_s{args.stride}" + save_str = f"{save_model_path.replace('/','_')}" + + eval_data = torch.load(args.eval_data_path) + + save_str += f"{args.save_suffix}" + + # first, logits for everything. + f, total_test_time = load_or_compute_logits(args, eval_data, save_str) + + # now, compute scores. + results = {} + clfs = {} + if args.return_indices: + indices = {} + + u_scores = [] + + for lang_code, dsets in tqdm(eval_data.items()): + if args.include_langs is not None and lang_code not in args.include_langs: + continue + + print(f"Predicting {lang_code}...") + results[lang_code] = {} + clfs[lang_code] = {} + if args.return_indices: + indices[lang_code] = {} + + for dataset_name, dataset in dsets["sentence"].items(): + sentences = dataset["data"][: args.max_n_test_sentences] + if not sentences: + continue + # check if f[lang_code][dataset_name] exists + if lang_code not in f or dataset_name not in f[lang_code]: + continue + + clf = [None, None, None, 0.5] + + if isinstance(sentences[0], list): + acc_u = [] + score_u = [] + u_indices, true_indices = [], [] + length = 0 + for i, short_seq in enumerate(sentences): + start, end = f[lang_code][dataset_name]["test_logit_lengths"][i] + single_score_u, _, info, cur_u_indices, _ = evaluate_mixture( + lang_code, + f[lang_code][dataset_name]["test_logits"][:][start:end], + list(short_seq), + args.return_indices, + 0, + *clf, + ) + score_u.append(single_score_u) + acc_u.append(info["info_newline"]["correct_pairwise"]) + # indices: accumulate from start + u_indices.append( + [idx + start for idx in cur_u_indices["pred_indices"]] if cur_u_indices["pred_indices"] else [] + ) + true_indices.append( + [idx + start for idx in cur_u_indices["true_indices"]] if cur_u_indices["true_indices"] else [] + ) + length += cur_u_indices["length"] - 1 + + else: + raise NotImplementedError + + if isinstance(sentences[0], list): + score_u = np.mean(score_u) + acc_u = np.mean(acc_u) + + results[lang_code][dataset_name] = { + "u": score_u, + "acc_u": acc_u, + } + else: + raise NotImplementedError + + if args.return_indices: + if isinstance(sentences[0], list): + indices[lang_code][dataset_name] = { + "u": u_indices, + "true_indices": true_indices, + "length": length, + } + else: + raise NotImplementedError + + if score_u is not None: + u_scores.append((score_u, lang_code)) + + # just for printing + print(f"{lang_code} {dataset_name} {score_u:.3f}") + + # Compute statistics for each metric across all languages + results_avg = { + "u": compute_statistics(u_scores), + "include_langs": args.include_langs, + } + + json.dump( + results, + open( + Constants.CACHE_DIR / "law_bert" / f"{save_str}.json", + "w", + ), + indent=4, + ) + print(Constants.CACHE_DIR / "law_bert" / f"{save_str}.json") + + # Write results_avg to JSON + json.dump( + results_avg, + open( + Constants.CACHE_DIR / "law_bert" / f"{save_str}_AVG.json", + "w", + ), + indent=4, + ) + if args.return_indices: + json.dump( + indices, + open( + Constants.CACHE_DIR / "law_bert" / f"{save_str}_IDX.json", + "w", + ), + default=int, + # indent=4, + ) + print(Constants.CACHE_DIR / "law_bert" / f"{save_str}_IDX.json") + print("Indices saved to file.") + + return results, results_avg, total_test_time + + +if __name__ == "__main__": + (args,) = HfArgumentParser([Args]).parse_args_into_dataclasses() + results, results_avg, total_test_time = main(args) + print(total_test_time) diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/llm_sentence.py b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/llm_sentence.py new file mode 100644 index 0000000000000000000000000000000000000000..71c68194ce9b096309c99ab108f0d9bf11a8a7a0 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/llm_sentence.py @@ -0,0 +1,768 @@ +import json +import logging +import os +from dataclasses import dataclass +from datetime import datetime +from typing import List +import re +import sys + +import numpy as np +import h5py +import pandas as pd +import torch +from genalog.text import alignment +from pandarallel import pandarallel +from tqdm import tqdm +from transformers import HfArgumentParser +import cohere +import replicate + +from wtpsplit.evaluation import get_labels, evaluate_sentences_llm +from wtpsplit.evaluation.intrinsic_pairwise import generate_k_mers +from wtpsplit.utils import Constants +import time + +pandarallel.initialize(progress_bar=True, nb_workers=32) + +logging.getLogger().setLevel(logging.WARNING) + +SYSTEM_PROMPT = ( + "Separate the following text into sentences by adding a newline between each sentence. " + "Do not modify the text in any way and keep the exact ordering of words! " + "If you modify it, remove or add anything, you get fined $1000 per word. " + "Provide a concise answer without any introduction. " + "Indicate sentence boundaries only via a single newline, no more than this! " +) + +LYRICS_PROMPT = ( + "Separate the following song's lyrics into semantic units " + "(e.g., verse, chorus, bridge, intro/outro, etc - " + "similar to how they are presented in a lyrics booklet) " + "via double newlines, but do not annotate them. " + "Only include the song in the output, no annotations. " + "Do not modify the song in any way and keep the exact ordering of words! " + "If you modify it, remove or add anything, you get fined $1000 per word. " + "Indicate semantic units by double newlines. " +) + + +@dataclass +class Args: + eval_data_path: str = "data/all_data_11_05" + type: str = "lyrics" # all, lyrics, pairs, short_proc + llm_provider: str = "cohere" # cohere, replicate + label_delimiter: str = "|" # NOT \n or \n\n + gap_char = "@" + # model: str = "mistralai/mixtral-8x7b-instruct-v0.1" + # model: str = "meta/meta-llama-3-8b-instruct" + model: str = "command-r" + save_suffix: str = "Pv2" + include_langs: List[str] = None + custom_language_list: str = None + max_n_test_sentences: int = -1 + k: int = 10 + n_shots: int = 0 + + +def replicate_provider(text, train_data, lang_code, args): + api = replicate.Client(api_token=os.environ["REPLICATE_API_TOKEN"]) + llm_prompt = prompt_factory(text, train_data, lang_code, args) + # print(llm_prompt) + n_tries = 0 + while n_tries < 1: + try: + llm_input = { + "system_prompt": "", + "prompt": llm_prompt, + # "max_new_tokens": 50_000, + "max_tokens": 4000, + } + llm_output = api.run(args.model, llm_input) + llm_output = "".join(llm_output) + # print(llm_output) + return llm_output + except Exception as e: + n_tries += 1 + print(e) + time.sleep(10) + continue + return "" + + +def cohere_provider(text, train_data, lang_code, args): + api = cohere.Client(os.environ["COHERE_API_TOKEN"]) + llm_prompt = prompt_factory(text, train_data, lang_code, args) + n_tries = 0 + while True: + try: + llm_output = api.chat( + model=args.model, preamble="", message=llm_prompt, max_tokens=4000, seed=42 + ).text.replace("\\n", "\n") + return llm_output + except Exception as e: + status_code = getattr(e, "status_code", None) + if status_code and str(e.status_code)[0] == "4": + print("API refusal.") + llm_output = "" + return llm_output + elif status_code and str(e.status_code)[0] == "5": + # Cohere API issue: retry + n_tries += 1 + time.sleep(10) + continue + else: + raise e + + +def cohere_tokenize(text, args): + api = cohere.Client(os.environ["COHERE_API_TOKEN"]) + tokens = api.tokenize(text=text, model=args.model, offline=False).token_strings + return tokens + + +def load_h5_to_dataframe(filepath, args): + with h5py.File(filepath, "r") as h5file: + all_data = [] + + for lang_code, lang_group in h5file.items(): + for dataset_name, dset_group in lang_group.items(): + if ( + "test_preds" in dset_group + and "test_chunks" in dset_group + and not any("0" in key for key in dset_group.keys()) + ): + test_preds_data = dset_group["test_preds"].asstr()[:] + test_chunks_data = dset_group["test_chunks"].asstr()[:] + + if len(test_preds_data) != len(test_chunks_data): + raise ValueError("Mismatched lengths between test_preds and test_chunks.") + + # append item with metadata + for test_pred, test_chunk in zip(test_preds_data, test_chunks_data): + all_data.append( + { + "lang": lang_code, + "dataset_name": dataset_name, + "test_preds": test_pred, + "test_chunks": test_chunk.tolist(), + "doc_id": -1, + } + ) + elif any("0" in key for key in dset_group.keys()): + # each list is saved with x_i, x_i+1, ... + doc_ids = [key.split("_")[-1] for key in dset_group.keys() if "test_preds" in key] + for doc_id in doc_ids: + test_preds_data = dset_group[f"test_preds_{doc_id}"].asstr()[:] + test_chunks_data = dset_group[f"test_chunks_{doc_id}"].asstr()[:] + + if len(test_preds_data) != len(test_chunks_data): + raise ValueError("Mismatched lengths between test_preds and test_chunks.") + + # append item with metadata + for test_pred, test_chunk in zip(test_preds_data, test_chunks_data): + all_data.append( + { + "lang": lang_code, + "dataset_name": dataset_name, + "test_preds": test_pred, + "test_chunks": test_chunk.tolist(), + "doc_id": int(doc_id), + } + ) + else: + pass + + df = pd.DataFrame(all_data) + return df + + +def load_or_compute_logits(args, eval_data, save_str: str = None): + logits_dir = Constants.CACHE_DIR / "llm_sent" / "preds" + logits_dir.mkdir(parents=True, exist_ok=True) + logits_path = logits_dir / f"{save_str}.h5" + + if args.custom_language_list is not None: + with open(args.custom_language_list, "r") as f: + # file is a csv: l1,l2,... + use_langs = f.read().strip().split(",") + else: + use_langs = eval_data.keys() + + with h5py.File(logits_path, "a") as f: + for lang_code in tqdm(use_langs, desc="Languages"): + if args.include_langs is not None and lang_code not in args.include_langs: + continue + + print(f"Processing {lang_code}...") + if lang_code not in f: + lang_group = f.create_group(lang_code) + else: + lang_group = f[lang_code] + for dataset_name, dataset in tqdm(eval_data[lang_code]["sentence"].items(), desc=lang_code): + if "corrupted-asr" in dataset_name and ( + "lyrics" not in dataset_name + and "short" not in dataset_name + and "code" not in dataset_name + and "ted" not in dataset_name + and "legal" not in dataset_name + ): + print("SKIP: ", lang_code, dataset_name) + continue + if "legal" in dataset_name and not ("laws" in dataset_name or "judgements" in dataset_name): + print("SKIP: ", lang_code, dataset_name) + continue + if "social-media" in dataset_name: + continue + if "nllb" in dataset_name: + continue + if dataset_name not in lang_group: + dset_group = lang_group.create_group(dataset_name) + if args.type == "pairs" and dataset_name != "ersatz" and dataset_name != "ted2020-corrupted-asr": + continue + if (args.k != 10 or args.n_shots != 0) and dataset_name != "ersatz": + print("SKIP: ", lang_code, dataset_name) + continue + else: + dset_group = lang_group[dataset_name] + if "test_preds" not in dset_group and "test_preds_0" not in dset_group: + test_sentences = dataset["data"] + if not test_sentences: + continue + if ( + isinstance(test_sentences[0], list) + and "lyrics" not in dataset_name + and "short" not in dataset_name + and args.type != "pairs" + ): + # documents: only 10% of documents. 1000 sentences --> 100 docs + max_n_sentences = args.max_n_test_sentences // 10 + # shuffle docs + np.random.seed(42) + test_sentences = np.random.permutation(test_sentences).tolist() + else: + max_n_sentences = args.max_n_test_sentences + test_sentences = test_sentences[:max_n_sentences] + if isinstance(test_sentences[0], list) or args.type == "pairs": + if args.type == "pairs": + all_pairs = generate_k_mers( + test_sentences, k=2, do_lowercase=False, do_remove_punct=False, sample_pct=0.5 + ) + test_sentences = all_pairs + # list of lists: chunk each sublist + if "short" in dataset_name or "lyrics" in dataset_name or args.type == "pairs": + # only here: no chunking + test_chunks = test_sentences + test_texts = [ + [Constants.SEPARATORS[lang_code].join(test_chunk).strip()] for test_chunk in test_chunks + ] + else: + test_chunks = [ + [test_sentences[i][j : j + args.k] for j in range(0, len(test_sentences[i]), args.k)] + for i in range(len(test_sentences)) + ] + # last batch for each sublist: pad with None to enable saving w/ h5py + for i in range(len(test_chunks)): + test_chunks[i][-1] += [""] * (args.k - len(test_chunks[i][-1])) + # join sentences in each chunk + test_texts = [ + [ + Constants.SEPARATORS[lang_code].join(test_chunk).strip() + for test_chunk in test_sublist + ] + for test_sublist in test_chunks + ] + if args.n_shots: + train_sentences = eval_data[lang_code]["sentence"][dataset_name]["meta"]["train_data"][:100] + if train_sentences: + if "short" in dataset_name or args.type == "pairs": + # here: entire samples (tweets e.g.) + train_chunks = train_sentences + train_texts = ["\n".join(train_chunk).strip() for train_chunk in train_chunks] + elif "lyrics" in dataset_name: + # here: entire samples (songs) + train_chunks = train_sentences + train_texts = ["\n\n".join(train_chunk).strip() for train_chunk in train_chunks] + else: + # flatten to have diversity among lengthy few-shot examples + train_sentences = [item for sublist in train_sentences[:100] for item in sublist] + train_chunks = [ + train_sentences[i : i + args.k] for i in range(0, len(train_sentences), args.k) + ] + train_texts = ["\n".join(train_chunk).strip() for train_chunk in train_chunks] + else: + train_texts = None + else: + train_texts = None + for i in tqdm(range(len(test_texts))): + test_preds = get_llm_preds(test_texts[i], train_texts, lang_code, args, verbose=False) + dset_group.create_dataset(f"test_preds_{i}", data=test_preds) + dset_group.create_dataset( + f"test_chunks_{i}", + data=[test_chunks[i]] + if "short" in dataset_name or "lyrics" in dataset_name or args.type == "pairs" + else test_chunks[i], + ) + + else: + test_chunks = [test_sentences[i : i + args.k] for i in range(0, len(test_sentences), args.k)] + # last batch: pad with None to enable saving w/ h5py + test_chunks[-1] += [""] * (args.k - len(test_chunks[-1])) + test_texts = [ + Constants.SEPARATORS[lang_code].join(test_chunk).strip() for test_chunk in test_chunks + ] + if args.n_shots: + train_sentences = eval_data[lang_code]["sentence"][dataset_name]["meta"]["train_data"] + if train_sentences: + train_sentences = train_sentences[:100] + train_chunks = [ + train_sentences[i : i + args.k] for i in range(0, len(train_sentences), args.k) + ] + train_texts = ["\n".join(train_chunk).strip() for train_chunk in train_chunks] + else: + train_texts = None + else: + train_texts = None + test_preds = get_llm_preds(test_texts, train_texts, lang_code, args) + dset_group.create_dataset("test_preds", data=test_preds) + dset_group.create_dataset("test_chunks", data=test_chunks) + return h5py.File(logits_path, "r") + + +def get_llm_preds( + test_texts, + train_data, + lang_code, + args, + verbose=True, +): + if args.llm_provider == "cohere": + llm_provider = cohere_provider + elif args.llm_provider == "replicate": + llm_provider = replicate_provider + else: + raise ValueError(f"Unknown LLM provider: {args.llm_provider}") + output = [] + for test_chunk in tqdm(test_texts, disable=not verbose): + output.append(llm_provider(test_chunk, train_data, lang_code, args)) + return output + + +def prompt_factory(test_chunk, train_data, lang_code, args): + n_shots = args.n_shots if train_data is not None else 0 + main_prompt = LYRICS_PROMPT if args.type == "lyrics" else SYSTEM_PROMPT + + prompt_start = ( + main_prompt + + f"When provided with multiple examples, you are to respond only to the last one: Output {n_shots + 1}." + if n_shots + else main_prompt + ) + + llm_prompt = ( + prompt_start + + "\n\n" + + create_few_shot_prompt(train_data, lang_code, args) + + (f"# Input {n_shots + 1}:\n\n" if n_shots else "# Input:\n\n") + + test_chunk + + (f"\n\n# Output {n_shots + 1}:\n\n" if n_shots else "\n\n# Output:\n\n") + ) + return llm_prompt + + +def create_few_shot_prompt(train_data, lang_code, args): + if train_data is None: + return "" + num_samples = min(args.n_shots, len(train_data)) + samples_prompt = "" + counter = 1 + for _, sample in enumerate(train_data[:num_samples]): + current_input = sample.replace("\n", Constants.SEPARATORS.get(lang_code, " ")) + samples_prompt += f"# Input {counter}:\n\n{current_input}\n\n# Output {counter}:\n\n{sample}\n\n" + counter += 1 + return samples_prompt + + +def postprocess_llm_output(llm_output, lang): + """Clean LLM output by removing specified characters and cleaning up lines.""" + if llm_output == "": + # API refusal + return "" + llm_output = llm_output.strip(" -\n") + + # neither of them must be present in the output. + llm_output = llm_output.replace(args.gap_char, " ") + llm_output = llm_output.replace(args.label_delimiter, " ") + llm_output = llm_output.replace("\n\n", args.label_delimiter) + llm_output = llm_output.replace("\n", args.label_delimiter) + # replace multiple newlines with 1 + llm_output = re.sub(r"\n+", "\n", llm_output) + + # remove leading #, # Input, : + llm_output = llm_output.strip("#").strip().strip("Input").strip(":").strip() + # remove trailing #, Output, . + llm_output = llm_output.strip(":").strip("Output").strip().strip("#") + # replace multiple occurences of label_delimiter with only 1 + llm_output = re.sub(r"{0}+".format(re.escape(args.label_delimiter)), args.label_delimiter, llm_output) + + # Split into lines, strip each line, remove empty lines, and join back into a single string + llm_output = " ".join([line.strip() for line in llm_output.split("\n") if line.strip()]) + + return llm_output + + +def align_llm_output(row): + """Align input and output, including formatting.""" + try: + aligned_in, aligned_llm = alignment.align( + row["test_chunks"], + row["test_preds"], + gap_char=args.gap_char, + ) + # same as aligned_in, aligned_llm, but with additional formatting. Latter used to debug only. + formatted_alignment = alignment._format_alignment(aligned_in, aligned_llm).split("\n") + except: # noqa + print("Alignment failed: ", row.name) + formatted_alignment = [row["test_chunks"], "", " " * len(row["test_chunks"])] + return pd.Series( + { + "alignment": formatted_alignment[1], + "alignment_in": formatted_alignment[0], + "alignment_out": formatted_alignment[2], + } + ) + + +def process_alignment(row, args): + gt = row["alignment_in"] + preds = row["alignment_out"] + old_label_count = preds.count("|") + + # we need the following to ensure that no label is overwritten. + processed_gt = [] + processed_preds = [] + + pred_index = 0 # separate index for preds to handle skipped characters in gt + + for gt_char in gt: + if gt_char == args.gap_char: + # check if the corresponding preds char is a label delimiter and needs to be shifted + if pred_index < len(preds) and preds[pred_index] == args.label_delimiter: + # only shift if there's room and it's safe to shift back + if processed_preds: + processed_preds[-1] = args.label_delimiter + # do not add the gap character from gt to processed_gt + else: + processed_gt.append(gt_char) + # only add characters from preds if not out of bounds + if pred_index < len(preds): + processed_preds.append(preds[pred_index]) + + # Increment regardless of whether it's a gap to keep alignment + pred_index += 1 + + gt = "".join(processed_gt) + preds = "".join(processed_preds) + # re-check + new_label_count = preds.count(args.label_delimiter) + if old_label_count != new_label_count: + # happens in some garbage LLM predictions, which can be easily picked up, so it is fine (favors LLM; less FPs) + print("Gap char not removed correctly or labels shifted improperly: ", row.name, row.lang, row.dataset_name) + assert len(gt) == len(preds), f"Length mismatch: {len(gt)} vs {len(preds)}" + + if Constants.SEPARATORS.get(row["lang"], " ") == "": + # ensure that, after label calculation, both seqs are of same lengths & labels at proper positions. + missing_indices = [ + i for i, char in enumerate(gt) if char == args.label_delimiter and preds[i] != args.label_delimiter + ] + extra_indices = [ + i for i, char in enumerate(preds) if char == args.label_delimiter and gt[i] != args.label_delimiter + ] + preds = "".join([char for i, char in enumerate(preds) if i not in missing_indices]) + for i in extra_indices: + preds = preds[:i] + " " + preds[i:] + + # GT + sentences = gt.split(args.label_delimiter) + labels = get_labels(row.lang, sentences) + # PREDS + pred_sentences = preds.split(args.label_delimiter) + predictions = get_labels(row.lang, pred_sentences) + return labels, predictions + + +def calc_hallucination_deletion_rate(row): + gt = row["alignment_in"] + preds = row["alignment_out"] + if all([char == args.gap_char for char in preds]): + # all @: alignment failure, just garbage output + return 0.0, 0.0 + + hallucination_count = 0 + deletion_count = 0 + + for gt_char, pred_char in zip(gt, preds): + if gt_char == args.gap_char and pred_char != args.label_delimiter: + hallucination_count += 1 + if pred_char == args.gap_char and gt_char != args.label_delimiter: + deletion_count += 1 + + deletion_rate = deletion_count / len(gt) + hallucination_rate = hallucination_count / len(gt) + return hallucination_rate, deletion_rate + + +def calculate_global_metric_averages(results): + """dict of results[lang_code][dataset_name] -> dict of metrics -> float""" + metric_totals = {} + metric_counts = {} + + for lang_datasets in results.values(): + for metrics in lang_datasets.values(): + # aggregate + metrics = metrics[args.model] + for metric_key, metric_value in metrics.items(): + if isinstance(metric_value, (int, float)): + if metric_key not in metric_totals: + metric_totals[metric_key] = 0 + metric_counts[metric_key] = 0 + + metric_totals[metric_key] += metric_value + metric_counts[metric_key] += 1 + + # global average + global_metric_averages = { + metric: metric_totals[metric] / metric_counts[metric] for metric in metric_totals if metric_counts[metric] > 0 + } + + return global_metric_averages + + +def main(args): + print(args) + + # Define paths for different categories + avg_dir = Constants.CACHE_DIR / "llm_sent" / "AVG" + default_dir = Constants.CACHE_DIR / "llm_sent" / "results" + alignment_dir = Constants.CACHE_DIR / "llm_sent" / "alignments" + + # Ensure directories exist + avg_dir.mkdir(parents=True, exist_ok=True) + default_dir.mkdir(parents=True, exist_ok=True) + alignment_dir.mkdir(parents=True, exist_ok=True) + + if args.type == "all" or args.type == "pairs": + eval_data_path = args.eval_data_path + "-all.pth" + elif args.type == "lyrics": + eval_data_path = args.eval_data_path + "-lyrics.pth" + elif args.type == "short_proc": + eval_data_path = args.eval_data_path + "-short_proc.pth" + else: + raise ValueError(f"Unknown type: {args.type}") + + assert len(args.gap_char) == len(args.label_delimiter) == 1 + + eval_data = torch.load(eval_data_path) + + save_str = (f"{args.model.split('/')[-1]}_k{args.k}_s{args.n_shots}").replace("/", "_") + + if args.max_n_test_sentences < sys.maxsize and args.max_n_test_sentences != -1: + save_str += f"_n{args.max_n_test_sentences}" + if args.max_n_test_sentences == -1: + args.max_n_test_sentences = sys.maxsize + save_str += f"{args.save_suffix}" + save_str += f"-{args.type}" + + print(save_str) + + outputs = load_or_compute_logits(args, eval_data, save_str) + + # create df based on test_chunks and test_logits + df = load_h5_to_dataframe(outputs.filename, args) + print("Loaded df.") + # df = df[df["lang"].isin(["ja", "en"])] # DEBUG + + # postprocess + df["test_preds"] = df.apply(lambda row: postprocess_llm_output(row["test_preds"], row["lang"]), axis=1) + + # remove empty strings (just needed for h5py storage) + df["test_chunks"] = df["test_chunks"].apply(lambda x: [item for item in x if item != ""]) + # replace \n + # NOTE: length and labels remain the same, crucially! + df["test_chunks"] = df.apply( + lambda row: args.label_delimiter.join( + chunk.replace(args.label_delimiter, " ").replace(args.gap_char, " ") for chunk in row["test_chunks"] + ), + axis=1, + ) + print("Processed df.") + + # align with Needleman Wunsch algorithm + alignment = df.parallel_apply(align_llm_output, axis=1) + df = df.join(alignment) + print("Aligned df.") + + def concatenate_texts(group): + # refusal: @@@@ --> taken into account with success_METRIC + # alignment failure: " " --> garbage output, no pos. labels + return pd.Series( + { + "test_preds": args.label_delimiter.join(group["test_preds"]), + "test_chunks": args.label_delimiter.join(group["test_chunks"]), + "alignment": args.label_delimiter.join(group["alignment"]), + "alignment_in": args.label_delimiter.join(group["alignment_in"]), + "alignment_out": args.label_delimiter.join(group["alignment_out"]), + } + ) + + # concat chunks + # old_df = df.copy() + df = df.groupby(["lang", "dataset_name", "doc_id"]).apply(concatenate_texts).reset_index() + + df["hallucination_rate"], df["deletion_rate"] = zip( + *df.apply( + calc_hallucination_deletion_rate, + axis=1, + ) + ) + + results = {} + indices = {} + for lang_code in df["lang"].unique(): + results[lang_code] = {} + indices[lang_code] = {} + for dataset_name in df["dataset_name"].unique(): + results[lang_code][dataset_name] = {args.model: {}} # Initialize nested dict with model + indices[lang_code][dataset_name] = {args.model: {}} + if "lyrics" in dataset_name or "short" in dataset_name or args.type == "pairs": + exclude_every_k = 0 + else: + exclude_every_k = args.k + n_docs = len(df[(df["lang"] == lang_code) & (df["dataset_name"] == dataset_name)]) + if n_docs == 0: + # combination non-existing + continue + indices[lang_code][dataset_name][args.model] = {} + if n_docs > 1: + # list of lists, TODO + rows = df[(df["lang"] == lang_code) & (df["dataset_name"] == dataset_name)] + metrics = [] + for i, row in rows.iterrows(): + # apply processing before label calculation + labels, preds = process_alignment(row, args) + doc_metrics = {} + doc_metrics["refused"] = [ + int(len(set(row["alignment_out"])) == 1 and args.gap_char in set(row["alignment_out"])) + ] + if doc_metrics["refused"][0]: + preds[-1] = 0 + doc_metrics.update( + evaluate_sentences_llm(labels, preds, return_indices=True, exclude_every_k=exclude_every_k) + ) + doc_metrics["length"] = [doc_metrics["length"]] + doc_metrics["hallucination_rate"] = row["hallucination_rate"] + doc_metrics["deletion_rate"] = row["deletion_rate"] + + metrics.append(doc_metrics) + # Initialization and collection of data + avg_results = {} + concat_indices = {} + for doc in metrics: + for key, value in doc.items(): + if isinstance(value, (float, int)): + # Store all numeric results + if key not in avg_results: + avg_results[key] = [] + avg_results[key + "_success"] = [] # Initialize success list + + # Append to the general results + avg_results[key].append(value) + + # Append to success results if not refused + if not doc["refused"][0]: + avg_results[key + "_success"].append(value) + elif isinstance(value, list): + # Concatenate list values, handle 'refused' by only adding the first item of the list + if key not in concat_indices: + concat_indices[key] = [] + if key == "refused" or key == "length": + concat_indices[key].append(value[0]) # Only the first item for 'refused' + else: + concat_indices[key].append(value) # Extend with the full list otherwise + + # Calculate the average for numeric values and success metrics + for key in list(avg_results): # Use list to include newly added success keys safely during iteration + if avg_results[key]: # Ensure there's data to calculate average + avg_results[key] = sum(avg_results[key]) / len(avg_results[key]) + + # Store the results and indices + results[lang_code][dataset_name][args.model] = avg_results + indices[lang_code][dataset_name][args.model] = concat_indices + else: + # one long string + row = df[(df["lang"] == lang_code) & (df["dataset_name"] == dataset_name)].iloc[0] + + # apply processing before label calculation + labels, preds = process_alignment(row, args) + # metrics! + metrics = evaluate_sentences_llm(labels, preds, return_indices=True, exclude_every_k=exclude_every_k) + metrics["hallucination_rate"] = row["hallucination_rate"] + metrics["deletion_rate"] = row["deletion_rate"] + indices[lang_code][dataset_name][args.model]["true_indices"] = [metrics.pop("true_indices")] + indices[lang_code][dataset_name][args.model]["predicted_indices"] = [metrics.pop("predicted_indices")] + indices[lang_code][dataset_name][args.model]["length"] = [metrics.pop("length")] + results[lang_code][dataset_name][args.model] = metrics + + out_dict = { + "metrics": calculate_global_metric_averages(results), + "include_langs": args.include_langs, + "max_n_test_sentences": args.max_n_test_sentences, + "k": args.k, + "n_success": len(df[df["test_preds"] != ""]), + "success_rate": len(df[df["test_preds"] != ""]) / len(df), + "model": args.model, + "time": datetime.now().strftime("%Y-%m-%d %H:%M:%S"), + "system_prompt": LYRICS_PROMPT if args.type == "lyrics" else SYSTEM_PROMPT, + } + + json.dump( + out_dict, + open( + avg_dir / f"{save_str}.json", + "w", + encoding="utf-8", + ), + indent=4, + ) + json.dump( + results, + open( + default_dir / f"{save_str}.json", + "w", + encoding="utf-8", + ), + indent=4, + ) + json.dump( + indices, + open( + alignment_dir / f"{save_str}_IDX.json", + "w", + ), + default=int, + indent=4, + ) + print(alignment_dir / f"{save_str}_IDX.json") + print("Indices saved to file.") + + df.to_csv(default_dir / "csv" / f"{save_str}.csv", index=False) + print(out_dict) + print(save_str) + + print(avg_dir / f"{save_str}.json") + print(default_dir / f"{save_str}.json") + + +if __name__ == "__main__": + (args,) = HfArgumentParser([Args]).parse_args_into_dataclasses() + main(args) diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/punct_annotation.py b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/punct_annotation.py new file mode 100644 index 0000000000000000000000000000000000000000..aafc459fb727edab9a67da72ed026767c3876574 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/punct_annotation.py @@ -0,0 +1,326 @@ +import math +from dataclasses import dataclass +from functools import partial + +import numpy as np +import torch +import wandb +from datasets import load_dataset +from sklearn.metrics import f1_score +from torch import nn +from tqdm.auto import tqdm +from transformers import ( + AutoModel, + AutoModelForTokenClassification, + AutoTokenizer, + CanineTokenizer, + HfArgumentParser, + Trainer, + TrainingArguments, +) + +from wtpsplit.models import LACanineConfig, LACanineForTokenClassification, LACanineModel +from wtpsplit.utils import Constants + + +@dataclass +class Args: + name: str + lang: str + model_path: str = None + baseline: str = None + block_size: int = 256 + stride: int = 32 + use_lang_adapter: bool = False + use_deep_punctuation: bool = False + + +class DeepPunctuation(nn.Module): + def __init__(self, backbone, freeze_bert=False, lstm_dim=-1): + super(DeepPunctuation, self).__init__() + self.output_dim = 4 + self.bert_layer = backbone + # Freeze bert layers + if freeze_bert: + for p in self.bert_layer.parameters(): + p.requires_grad = False + bert_dim = backbone.config.hidden_size + if lstm_dim == -1: + hidden_size = bert_dim + else: + hidden_size = lstm_dim + self.lstm = nn.LSTM( + input_size=bert_dim, + hidden_size=hidden_size, + num_layers=1, + bidirectional=True, + ) + self.linear = nn.Linear(in_features=hidden_size * 2, out_features=self.output_dim) + + def forward(self, input_ids, attention_mask=None, labels=None): + # (B, N, E) -> (B, N, E) + x = self.bert_layer(input_ids, attention_mask=attention_mask)[0] + # (B, N, E) -> (N, B, E) + x = torch.transpose(x, 0, 1) + x, (_, _) = self.lstm(x) + # (N, B, E) -> (B, N, E) + x = torch.transpose(x, 0, 1) + x = self.linear(x) + + if labels is not None: + loss = nn.CrossEntropyLoss()(x.view(-1, 4), labels.view(-1)) + + return {"logits": x, "loss": loss} + + +def to_strided(input_ids, labels, offset_mapping, tokenizer, stride, block_size, add_sep_cls): + if add_sep_cls: + block_size -= 2 + stride -= 2 + + input_id_windows = [] + label_windows = [] + offset_mapping_windows = [] + + start_positions = [i * stride for i in range(len(input_ids) // stride - block_size // stride)] + if start_positions[-1] + block_size != len(input_ids): + start_positions[-1] = len(input_ids) - block_size + + for start in start_positions: + if add_sep_cls: + input_id_windows.append( + [tokenizer.cls_token_id] + input_ids[start : start + block_size] + [tokenizer.sep_token_id] + ) + label_windows.append([0] + labels[start : start + block_size] + [0]) + offset_mapping_windows.append([(0, 0)] + offset_mapping[start : start + block_size] + [(0, 0)]) + else: + input_id_windows.append(input_ids[start : start + block_size]) + label_windows.append(labels[start : start + block_size]) + offset_mapping_windows.append(offset_mapping[start : start + block_size]) + + return input_id_windows, label_windows, offset_mapping_windows + + +def process(data, tokenizer, stride, block_size, add_sep_cls, fix_space, return_chars=False): + char_labels = [] + + label_dict = { + "O": 0, + "QUESTION": 1, + "PERIOD": 2, + "COMMA": 3, + } + + text = "" + + for i, row in enumerate(data["text"]): + token, label = row.split("\t") + + if not fix_space or (i > 0 and token not in {"'m", "n't", "'ll", "'s"}): + text += " " + char_labels.append(0) + + text += token + char_labels.extend([0] * len(token)) + char_labels[-1] = label_dict[label] + + if isinstance(tokenizer, CanineTokenizer): + encoding = tokenizer(text, add_special_tokens=False) + + assert encoding["input_ids"] == [ord(c) for c in text] + offset_mapping = [(i, i + 1) for i in range(len(text))] + else: + encoding = tokenizer(text, return_offsets_mapping=True, add_special_tokens=False) + offset_mapping = encoding["offset_mapping"] + + labels = [char_labels[x[1] - 1] for x in offset_mapping] + + if return_chars: + return {"labels": char_labels} + + input_id_windows, label_windows, offset_mapping_windows = to_strided( + encoding["input_ids"], + labels, + offset_mapping, + tokenizer, + stride, + block_size, + add_sep_cls, + ) + + return { + "input_ids": input_id_windows, + "labels": label_windows, + "offset_mapping": offset_mapping_windows, + } + + +def load_iwslt(path, tokenizer, args, fix_space=True): + dataset = load_dataset("text", data_files=str(path), split="train") + dataset = dataset.map( + partial( + process, + tokenizer=tokenizer, + stride=args.stride, + block_size=args.block_size, + add_sep_cls=args.add_sep_cls, + fix_space=fix_space, + ), + batched=True, + batch_size=len(dataset), + remove_columns=["text"], + ) + + char_dataset = load_dataset("text", data_files=str(path), split="train") + char_labels = char_dataset.map( + partial( + process, + tokenizer=tokenizer, + stride=args.stride, + block_size=args.block_size, + add_sep_cls=args.add_sep_cls, + fix_space=fix_space, + return_chars=True, + ), + batched=True, + batch_size=len(char_dataset), + remove_columns=["text"], + )["labels"] + + if args.use_lang_adapter: + dataset = dataset.add_column("language_ids", [Constants.LANG_CODE_TO_INDEX[args.lang]] * len(dataset)) + + return dataset, np.array(char_labels) + + +def compute_metrics(_, test_dataset, test_char_labels): + global trainer + + model = trainer._wrap_model(trainer.model, training=False) + batch_size = trainer.args.per_device_eval_batch_size + + if trainer.args.process_index == 0: + char_preds = np.zeros((len(test_char_labels), 4)) + char_counts = np.zeros((len(test_char_labels))) + + n_batches = math.ceil(len(test_dataset) / batch_size) + for i in tqdm(range(n_batches)): + batch = test_dataset[(i * batch_size) : (i + 1) * batch_size] + while len(batch["input_ids"]) < batch_size: + batch["input_ids"].append([0] * len(batch["input_ids"][-1])) + batch["labels"].append([-100] * len(batch["input_ids"][-1])) + batch["offset_mapping"].append([(0, 0)] * len(batch["input_ids"][-1])) + + with torch.no_grad(): + output = model( + input_ids=torch.tensor(batch["input_ids"], device=model.device), + labels=torch.tensor(batch["labels"], device=model.device), + ) + + batch_logits = output["logits"].cpu().numpy() + for logits, offsets in zip(batch_logits, batch["offset_mapping"]): + for l, (start, end) in zip(logits, offsets): + if start != end: + char_preds[end - 1] += l + char_counts[end - 1] += 1 + + mask = test_char_labels != -100 + + comma, period, question = ( + f1_score(char_preds[mask].argmax(-1) == 3, test_char_labels[mask] == 3), + f1_score(char_preds[mask].argmax(-1) == 2, test_char_labels[mask] == 2), + f1_score(char_preds[mask].argmax(-1) == 1, test_char_labels[mask] == 1), + ) + + return { + "comma_f1": comma, + "period_f1": period, + "question_f1": question, + "overall_f1": np.mean([comma, period, question]), + } + else: + return {} + + +def _mp_fn(index): + # For xla_spawn (TPUs) + main() + + +def main(): + (args, training_args) = HfArgumentParser([Args, TrainingArguments]).parse_args_into_dataclasses() + + model_class = AutoModel if args.use_deep_punctuation else AutoModelForTokenClassification + our_model_class = LACanineModel if args.use_deep_punctuation else LACanineForTokenClassification + + if args.baseline: + assert not args.use_lang_adapter + + model = model_class.from_pretrained(args.baseline, num_labels=4) + tokenizer = AutoTokenizer.from_pretrained(args.baseline) + args.add_sep_cls = True + else: + config = LACanineConfig.from_pretrained( + args.model_path, + num_labels=4, + language_adapter="on" if args.use_lang_adapter else "off", + ) + model = our_model_class.from_pretrained(args.model_path, config=config, ignore_mismatched_sizes=True) + if args.use_lang_adapter: + model.set_language_adapters(args.lang) + + tokenizer = CanineTokenizer.from_pretrained("google/canine-s") + args.add_sep_cls = False + + if args.use_deep_punctuation: + model = DeepPunctuation(model) + + if args.lang == "en": + train_dataset, _ = load_iwslt( + Constants.ROOT_DIR / "data" / "external" / "punctuation_annotation" / "en" / "train2012", + tokenizer=tokenizer, + args=args, + ) + test_dataset, test_char_labels = load_iwslt( + Constants.ROOT_DIR / "data" / "external" / "punctuation_annotation" / "en" / "test2011", + tokenizer=tokenizer, + args=args, + ) + else: + train_dataset, _ = load_iwslt( + Constants.ROOT_DIR / "data" / "external" / "punctuation_annotation" / "bn" / "train", + tokenizer=tokenizer, + args=args, + ) + test_dataset, test_char_labels = load_iwslt( + Constants.ROOT_DIR / "data" / "external" / "punctuation_annotation" / "bn" / "test_ref", + tokenizer=tokenizer, + args=args, + ) + + if "wandb" in training_args.report_to and training_args.process_index == 0: + wandb.init(project="punct_annotation", name=args.name) + wandb.config.update(args) + wandb.config.update(training_args) + + # model.config.wandb_run_id = wandb.run.id + + trainer = Trainer( + model, + training_args, + train_dataset=train_dataset, + eval_dataset=test_dataset, + compute_metrics=partial( + compute_metrics, + test_dataset=test_dataset, + test_char_labels=test_char_labels, + ), + ) + + globals().update({"trainer": trainer}) + + trainer.train() + + +if __name__ == "__main__": + main() diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/punct_annotation_wtp.py b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/punct_annotation_wtp.py new file mode 100644 index 0000000000000000000000000000000000000000..3a8df9104091278a83345a8535254865ce99b7bf --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/punct_annotation_wtp.py @@ -0,0 +1,110 @@ +from dataclasses import dataclass +import json + +import numpy as np +from sklearn import linear_model +from sklearn.metrics import f1_score +from transformers import AutoModelForTokenClassification, HfArgumentParser + +import wtpsplit.models # noqa +from wtpsplit.extract import PyTorchWrapper +from wtpsplit.utils import Constants +from wtpsplit.evaluation.adapt import process_logits + + +@dataclass +class Args: + model_path: str + lang: str + block_size: int = 512 + stride: int = 64 + batch_size: int = 32 + n_subsample: int = None + device: str = "cpu" + + +def load_iwslt(path, fix_space=True): + char_labels = [] + + label_dict = { + "O": 0, + "QUESTION": 1, + "PERIOD": 2, + "COMMA": 3, + } + + text = "" + + for i, row in enumerate(open(path)): + token, label = row.rstrip().split("\t") + + if not fix_space or (i > 0 and token not in {"'m", "n't", "'ll", "'s"}): + text += " " + char_labels.append(0) + + text += token + char_labels.extend([0] * len(token)) + char_labels[-1] = label_dict[label] + + return text, np.array(char_labels) + + +if __name__ == "__main__": + (args,) = HfArgumentParser([Args]).parse_args_into_dataclasses() + + if args.lang == "en": + train_text, train_char_labels = load_iwslt( + Constants.ROOT_DIR / "data" / "external" / "punctuation_annotation" / "en" / "train2012", + ) + test_text, test_char_labels = load_iwslt( + Constants.ROOT_DIR / "data" / "external" / "punctuation_annotation" / "en" / "test2011", + ) + else: + train_text, train_char_labels = load_iwslt( + Constants.ROOT_DIR / "data" / "external" / "punctuation_annotation" / "bn" / "train", + ) + test_text, test_char_labels = load_iwslt( + Constants.ROOT_DIR / "data" / "external" / "punctuation_annotation" / "bn" / "test_ref", + ) + + print("Loading model...") + model = PyTorchWrapper(AutoModelForTokenClassification.from_pretrained(args.model_path).to(args.device)) + + if args.n_subsample is None: + args.n_subsample = len(train_text) + print("Using", args.n_subsample, "train samples...") + + train_logits = process_logits(train_text[: args.n_subsample], model, args.lang, args) + + clf = linear_model.LogisticRegression( + penalty=None, multi_class="multinomial", max_iter=10_000, random_state=42, verbose=1 + ) + clf.fit(train_logits, train_char_labels[: args.n_subsample]) + + test_logits = process_logits(test_text, model, args.lang, args) + + test_preds = clf.predict(test_logits) + + question, period, comma = ( + f1_score(test_char_labels == 1, test_preds == 1), + f1_score(test_char_labels == 2, test_preds == 2), + f1_score(test_char_labels == 3, test_preds == 3), + ) + avg = np.mean([question, period, comma]) + results = { + "C": comma, + "P": period, + "Q": question, + "AVG": avg, + } + print(results) + + if not (Constants.CACHE_DIR / "extrinsic").exists(): + (Constants.CACHE_DIR / "extrinsic").mkdir() + json.dump( + results, + open( + Constants.CACHE_DIR / "extrinsic" / f"iwslt_{args.model_path.replace('/','_')}_{args.lang}.json", + "w", + ), + ) diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/ar_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/ar_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..e18ecd6ee0d2185e97c1e94f8cf9fe3bd9853c04 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/ar_f.tex @@ -0,0 +1,30 @@ +\begin{tabular}{lrrrrrrrrrrr} +\toprule + & SaT-Lora-T & ersatz & WtP-P & L-3 & SaT-SM & SaT-T & SaT-U & WtP-T & WtP-U & C-R & pysbd \\ +\midrule +SaT-Lora-T & - & 0.235 & 0.151 & 0.087 & 0.018 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +ersatz & - & - & 0.812 & 0.328 & 0.172 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.413 & 0.262 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.915 & 0.013 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & - & - & 0.008 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.038 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & - & 0.003 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - & 0.000 \\ +pysbd & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.927 +% WtP-T: 0.887 +% WtP-U: 0.87 +% C-R: 0.558 +% L-3: 0.924 +% SaT-SM: 0.923 +% SaT-T: 0.911 +% SaT-U: 0.897 +% SaT-Lora-T: 0.931 +% SaT-Lora-U: 0.929 +% pysbd: 0.462 +% ersatz: 0.928 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/cs_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/cs_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..a6e01ceef56a8c5643ffb083c17b4089d6b5550d --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/cs_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & WtP-P & SaT-Lora-T & SaT-SM & ersatz & spacy-m & SaT-T & SaT-U & WtP-T & WtP-U \\ +\midrule +WtP-P & - & 0.009 & 0.023 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 1.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +ersatz & - & - & - & - & 0.019 & 0.004 & 0.000 & 0.000 & 0.000 \\ +spacy-m & - & - & - & - & - & 0.030 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.306 & 0.038 \\ +WtP-T & - & - & - & - & - & - & - & - & 0.017 \\ +WtP-U & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.99 +% WtP-T: 0.939 +% WtP-U: 0.936 +% SaT-SM: 0.985 +% SaT-T: 0.954 +% SaT-U: 0.943 +% SaT-Lora-T: 0.985 +% SaT-Lora-U: 0.983 +% spacy-m: 0.964 +% ersatz: 0.967 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/de_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/de_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..59000e7f91210f877c429a6cc6e792ce9d5d67e8 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/de_f.tex @@ -0,0 +1,34 @@ +\begin{tabular}{lrrrrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & L-3 & SaT-SM & SaT-T & SaT-U & spacy-dp & WtP-T & ersatz & pysbd & WtP-U & spacy-m & C-R \\ +\midrule +SaT-Lora-T & - & 0.711 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & 0.798 & 0.382 & 0.056 & 0.005 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & - & 0.519 & 0.037 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.031 & 0.025 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & 0.261 & 0.001 & 0.006 & 0.003 & 0.000 & 0.000 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & - & 0.077 & 0.049 & 0.022 & 0.003 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & - & 0.679 & 0.495 & 0.140 & 0.000 & 0.000 \\ +ersatz & - & - & - & - & - & - & - & - & - & 0.340 & 0.775 & 0.000 & 0.000 \\ +pysbd & - & - & - & - & - & - & - & - & - & - & 0.986 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & - & - & - & 0.001 & 0.000 \\ +spacy-m & - & - & - & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.993 +% WtP-T: 0.956 +% WtP-U: 0.953 +% C-R: 0.759 +% L-3: 0.973 +% SaT-SM: 0.972 +% SaT-T: 0.97 +% SaT-U: 0.966 +% SaT-Lora-T: 0.993 +% SaT-Lora-U: 0.992 +% spacy-dp: 0.963 +% spacy-m: 0.935 +% pysbd: 0.953 +% ersatz: 0.954 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/en_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/en_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..73a1c93a020a3de03c53660074ec04efbacd4200 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/en_f.tex @@ -0,0 +1,34 @@ +\begin{tabular}{lrrrrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & spacy-dp & SaT-SM & L-3 & ersatz & SaT-T & WtP-T & SaT-U & WtP-U & spacy-m & C-R & pysbd \\ +\midrule +SaT-Lora-T & - & 0.632 & 0.065 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.208 & 0.001 & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +spacy-dp & - & - & - & 0.120 & 0.041 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & - & 0.558 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +ersatz & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & - & 0.660 & 0.141 & 0.119 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & - & 0.803 & 0.004 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & - & - & 0.364 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +spacy-m & - & - & - & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - & - & - & 0.000 \\ +pysbd & - & - & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.986 +% WtP-T: 0.967 +% WtP-U: 0.965 +% C-R: 0.872 +% L-3: 0.982 +% SaT-SM: 0.983 +% SaT-T: 0.968 +% SaT-U: 0.967 +% SaT-Lora-T: 0.987 +% SaT-Lora-U: 0.987 +% spacy-dp: 0.985 +% spacy-m: 0.94 +% pysbd: 0.739 +% ersatz: 0.975 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/es_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/es_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..f6d937f8b8e2b267353de69011cf5fae123db722 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/es_f.tex @@ -0,0 +1,25 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-SM & WtP-U & SaT-U & L-3 & spacy-m & ersatz & spacy-dp & pysbd & C-R \\ +\midrule +SaT-SM & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & 0.075 & 0.087 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & 0.590 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +spacy-m & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 \\ +ersatz & - & - & - & - & - & - & 0.236 & 0.000 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +pysbd & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-U: 0.987 +% C-R: 0.768 +% L-3: 0.983 +% SaT-SM: 0.995 +% SaT-U: 0.984 +% spacy-dp: 0.964 +% spacy-m: 0.972 +% pysbd: 0.842 +% ersatz: 0.966 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/et_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/et_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..383e18d35c783c51c9a943d8afaf3fc4b418e231 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/et_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & SaT-Lora-T & SaT-SM & WtP-P & ersatz & L-3 & WtP-U & SaT-U & SaT-T & WtP-T & C-R \\ +\midrule +SaT-Lora-T & - & 0.407 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.874 & 0.002 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +ersatz & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & 0.016 & 0.004 & 0.001 & 0.001 & 0.000 \\ +WtP-U & - & - & - & - & - & - & 0.671 & 0.487 & 0.074 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.635 & 0.447 & 0.000 \\ +SaT-T & - & - & - & - & - & - & - & - & 0.637 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.98 +% WtP-T: 0.957 +% WtP-U: 0.96 +% C-R: 0.772 +% L-3: 0.97 +% SaT-SM: 0.989 +% SaT-T: 0.958 +% SaT-U: 0.959 +% SaT-Lora-T: 0.99 +% SaT-Lora-U: 0.991 +% ersatz: 0.98 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/fi_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/fi_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..1bb2986186f5cc6ed4ad19ffd7f0d37485dd75be --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/fi_f.tex @@ -0,0 +1,32 @@ +\begin{tabular}{lrrrrrrrrrrrr} +\toprule + & WtP-P & SaT-Lora-T & SaT-SM & SaT-T & SaT-U & WtP-U & WtP-T & L-3 & ersatz & spacy-dp & spacy-m & C-R \\ +\midrule +WtP-P & - & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.317 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.003 & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & 0.146 & 0.314 & 0.169 & 0.008 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & 0.518 & 0.335 & 0.014 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & 0.608 & 0.110 & 0.001 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & 0.199 & 0.004 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.003 & 0.000 & 0.000 & 0.000 \\ +ersatz & - & - & - & - & - & - & - & - & - & 0.030 & 0.000 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & - & - & - & - & 0.306 & 0.000 \\ +spacy-m & - & - & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.994 +% WtP-T: 0.972 +% WtP-U: 0.974 +% C-R: 0.788 +% L-3: 0.967 +% SaT-SM: 0.984 +% SaT-T: 0.977 +% SaT-U: 0.976 +% SaT-Lora-T: 0.986 +% SaT-Lora-U: 0.988 +% spacy-dp: 0.954 +% spacy-m: 0.95 +% ersatz: 0.96 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/fr_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/fr_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..5e099e3782532e6db8e77ba7b406a3ddfe02f1f4 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/fr_f.tex @@ -0,0 +1,36 @@ +\begin{tabular}{lrrrrrrrrrrrrrr} +\toprule + & SaT-Lora-T & SaT-SM & WtP-P & L-3 & SaT-U & WtP-U & SaT-T & WtP-T & spacy-m & ersatz & pysbd & nltk & spacy-dp & C-R \\ +\midrule +SaT-Lora-T & - & 0.001 & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & 0.654 & 0.021 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.077 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.056 & 0.047 & 0.012 & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & 0.655 & 0.221 & 0.004 & 0.015 & 0.010 & 0.001 & 0.002 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & 0.676 & 0.038 & 0.057 & 0.030 & 0.008 & 0.005 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & - & 0.096 & 0.051 & 0.024 & 0.002 & 0.006 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & - & 0.529 & 0.366 & 0.160 & 0.158 & 0.000 & 0.000 \\ +spacy-m & - & - & - & - & - & - & - & - & - & 0.411 & 0.095 & 0.047 & 0.000 & 0.000 \\ +ersatz & - & - & - & - & - & - & - & - & - & - & 0.286 & 0.120 & 0.000 & 0.000 \\ +pysbd & - & - & - & - & - & - & - & - & - & - & - & 0.997 & 0.000 & 0.000 \\ +nltk & - & - & - & - & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & - & - & - & - & - & - & - & 0.220 \\ +C-R & - & - & - & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.984 +% WtP-T: 0.966 +% WtP-U: 0.972 +% C-R: 0.846 +% L-3: 0.979 +% SaT-SM: 0.985 +% SaT-T: 0.971 +% SaT-U: 0.973 +% SaT-Lora-T: 0.991 +% SaT-Lora-U: 0.991 +% spacy-dp: 0.858 +% spacy-m: 0.964 +% pysbd: 0.96 +% ersatz: 0.963 +% nltk: 0.96 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/gu_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/gu_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..291786565a1fbaea580035d47bc8d448c37c6779 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/gu_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & WtP-P & SaT-Lora-T & ersatz & L-3 & SaT-U & SaT-T & WtP-U & WtP-T & C-R & SaT-SM \\ +\midrule +WtP-P & - & 0.007 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.061 & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +ersatz & - & - & - & 0.000 & 0.003 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.190 & 0.031 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & 0.139 & 0.001 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & 0.017 & 0.001 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.070 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & 0.017 \\ +SaT-SM & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.967 +% WtP-T: 0.889 +% WtP-U: 0.897 +% C-R: 0.748 +% L-3: 0.931 +% SaT-SM: 0.707 +% SaT-T: 0.913 +% SaT-U: 0.92 +% SaT-Lora-T: 0.954 +% SaT-Lora-U: 0.956 +% ersatz: 0.943 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/hi_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/hi_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..e92f00911d52c82ed3599317e2df64cbd01301f3 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/hi_f.tex @@ -0,0 +1,30 @@ +\begin{tabular}{lrrrrrrrrrrr} +\toprule + & SaT-SM & SaT-Lora-T & L-3 & ersatz & WtP-P & SaT-T & SaT-U & WtP-T & WtP-U & pysbd & C-R \\ +\midrule +SaT-SM & - & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.955 & 0.013 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & 0.025 & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +ersatz & - & - & - & - & 0.099 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & - & - & 0.006 & 0.004 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & 0.506 & 0.003 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.004 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & - & 0.007 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +pysbd & - & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.963 +% WtP-T: 0.946 +% WtP-U: 0.939 +% C-R: 0.849 +% L-3: 0.973 +% SaT-SM: 0.981 +% SaT-T: 0.955 +% SaT-U: 0.955 +% SaT-Lora-T: 0.973 +% SaT-Lora-U: 0.97 +% pysbd: 0.875 +% ersatz: 0.968 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/ja_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/ja_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..d7a3371fd667864281d0b1323a60c145c2d13168 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/ja_f.tex @@ -0,0 +1,32 @@ +\begin{tabular}{lrrrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & spacy-dp & SaT-SM & L-3 & SaT-T & pysbd & SaT-U & ersatz & WtP-T & WtP-U & C-R \\ +\midrule +SaT-Lora-T & - & 0.731 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +spacy-dp & - & - & - & 0.009 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & - & 0.036 & 0.014 & 0.026 & 0.001 & 0.001 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & 0.969 & 0.921 & 0.555 & 0.099 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & 0.975 & 0.374 & 0.218 & 0.000 & 0.000 & 0.000 \\ +pysbd & - & - & - & - & - & - & - & 0.605 & 0.101 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & - & 0.475 & 0.000 & 0.000 & 0.000 \\ +ersatz & - & - & - & - & - & - & - & - & - & 0.002 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & - & - & - & 0.018 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.944 +% WtP-T: 0.815 +% WtP-U: 0.802 +% C-R: 0.597 +% L-3: 0.871 +% SaT-SM: 0.891 +% SaT-T: 0.871 +% SaT-U: 0.865 +% SaT-Lora-T: 0.946 +% SaT-Lora-U: 0.939 +% spacy-dp: 0.91 +% pysbd: 0.87 +% ersatz: 0.857 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/kk_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/kk_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..f7d0dfa5ec533d21e3eb5588d7dd5b852aec2ea7 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/kk_f.tex @@ -0,0 +1,30 @@ +\begin{tabular}{lrrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & ersatz & L-3 & SaT-T & SaT-U & WtP-U & WtP-T & C-R & pysbd \\ +\midrule +SaT-Lora-T & - & 0.749 & 0.557 & 0.189 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.914 & 0.312 & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.479 & 0.003 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +ersatz & - & - & - & - & 0.014 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & 0.010 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.102 & 0.003 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & 0.008 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - & 0.000 \\ +pysbd & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.997 +% WtP-T: 0.957 +% WtP-U: 0.963 +% C-R: 0.867 +% L-3: 0.99 +% SaT-SM: 0.997 +% SaT-T: 0.98 +% SaT-U: 0.971 +% SaT-Lora-T: 0.998 +% SaT-Lora-U: 0.999 +% pysbd: 0.647 +% ersatz: 0.996 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/km_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/km_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..249dd62e2ae4277731c7eb5e139d3dfd3211448e --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/km_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & SaT-T & SaT-Lora-T & WtP-P & WtP-T & SaT-U & L-3 & SaT-SM & WtP-U & ersatz & C-R \\ +\midrule +SaT-T & - & 0.409 & 0.336 & 0.002 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.844 & 0.030 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.015 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & 0.013 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +ersatz & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.92 +% WtP-T: 0.914 +% WtP-U: 0.702 +% C-R: 0.067 +% L-3: 0.856 +% SaT-SM: 0.839 +% SaT-T: 0.923 +% SaT-U: 0.894 +% SaT-Lora-T: 0.92 +% SaT-Lora-U: 0.913 +% ersatz: 0.313 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/lt_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/lt_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..c7b9d673c0c0bc2cb6fd869c91cb56f390eeb5a9 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/lt_f.tex @@ -0,0 +1,32 @@ +\begin{tabular}{lrrrrrrrrrrrr} +\toprule + & WtP-P & SaT-Lora-T & SaT-SM & SaT-T & WtP-U & WtP-T & SaT-U & ersatz & L-3 & spacy-m & C-R & spacy-dp \\ +\midrule +WtP-P & - & 0.004 & 0.010 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.835 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & 1.000 & 0.712 & 0.074 & 0.015 & 0.008 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & 0.741 & 0.628 & 0.020 & 0.010 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & 0.855 & 0.041 & 0.013 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.043 & 0.023 & 0.000 & 0.000 & 0.000 \\ +ersatz & - & - & - & - & - & - & - & - & 0.891 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & - & 0.002 & 0.000 & 0.000 \\ +spacy-m & - & - & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - & - & 0.034 \\ +spacy-dp & - & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.992 +% WtP-T: 0.964 +% WtP-U: 0.965 +% C-R: 0.783 +% L-3: 0.949 +% SaT-SM: 0.983 +% SaT-T: 0.965 +% SaT-U: 0.963 +% SaT-Lora-T: 0.984 +% SaT-Lora-U: 0.982 +% spacy-dp: 0.749 +% spacy-m: 0.933 +% ersatz: 0.95 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/lv_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/lv_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..40376710e471981fcf3ad420d1e16772456efd62 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/lv_f.tex @@ -0,0 +1,30 @@ +\begin{tabular}{lrrrrrrrrrrr} +\toprule + & SaT-Lora-T & SaT-SM & WtP-P & L-3 & ersatz & spacy-m & SaT-T & SaT-U & WtP-T & WtP-U & C-R \\ +\midrule +SaT-Lora-T & - & 0.632 & 0.630 & 0.002 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & 0.853 & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.013 & 0.001 & 0.002 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.653 & 0.562 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +ersatz & - & - & - & - & - & 0.706 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +spacy-m & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & - & 0.239 & 0.019 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & - & 0.111 & 0.004 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & - & - & 0.091 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.993 +% WtP-T: 0.972 +% WtP-U: 0.969 +% C-R: 0.827 +% L-3: 0.988 +% SaT-SM: 0.993 +% SaT-T: 0.977 +% SaT-U: 0.975 +% SaT-Lora-T: 0.994 +% SaT-Lora-U: 0.994 +% spacy-m: 0.986 +% ersatz: 0.987 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/pl_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/pl_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..395a3a7bbd9b6b5471ee2120accb11e282c82c24 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/pl_f.tex @@ -0,0 +1,32 @@ +\begin{tabular}{lrrrrrrrrrrrr} +\toprule + & SaT-SM & SaT-Lora-T & WtP-P & L-3 & ersatz & WtP-U & spacy-dp & SaT-U & SaT-T & WtP-T & C-R & pysbd \\ +\midrule +SaT-SM & - & 0.339 & 0.089 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.292 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.377 & 0.227 & 0.058 & 0.006 & 0.000 & 0.000 & 0.000 & 0.000 \\ +ersatz & - & - & - & - & - & 0.593 & 0.132 & 0.041 & 0.004 & 0.005 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & 0.900 & 0.045 & 0.002 & 0.000 & 0.000 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & - & 0.188 & 0.029 & 0.039 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & - & 0.001 & 0.200 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & - & - & - & 0.810 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - & - & 0.000 \\ +pysbd & - & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.977 +% WtP-T: 0.928 +% WtP-U: 0.946 +% C-R: 0.701 +% L-3: 0.954 +% SaT-SM: 0.983 +% SaT-T: 0.929 +% SaT-U: 0.935 +% SaT-Lora-T: 0.981 +% SaT-Lora-U: 0.981 +% spacy-dp: 0.945 +% pysbd: 0.457 +% ersatz: 0.949 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/ps_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/ps_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..668e29aaceac21213b9eb31bc77d0ec887d8718e --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/ps_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & L-3 & SaT-Lora-T & WtP-P & ersatz & SaT-T & SaT-U & WtP-T & WtP-U & SaT-SM & C-R \\ +\midrule +L-3 & - & 0.273 & 0.110 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.450 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +ersatz & - & - & - & - & 0.014 & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.028 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & 0.052 & 0.000 \\ +SaT-SM & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.959 +% WtP-T: 0.91 +% WtP-U: 0.837 +% C-R: 0.707 +% L-3: 0.963 +% SaT-SM: 0.827 +% SaT-T: 0.929 +% SaT-U: 0.924 +% SaT-Lora-T: 0.961 +% SaT-Lora-U: 0.957 +% ersatz: 0.937 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/ro_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/ro_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..379631e79343ac1495cc520f39e3748b5b637942 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/ro_f.tex @@ -0,0 +1,32 @@ +\begin{tabular}{lrrrrrrrrrrrr} +\toprule + & WtP-P & SaT-Lora-T & SaT-SM & L-3 & WtP-U & SaT-U & WtP-T & SaT-T & ersatz & spacy-m & spacy-dp & C-R \\ +\midrule +WtP-P & - & 0.296 & 0.060 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.234 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.694 & 0.552 & 0.027 & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & 0.695 & 0.007 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & 0.023 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & 0.141 & 0.034 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & - & - & 0.282 & 0.000 & 0.000 & 0.000 \\ +ersatz & - & - & - & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +spacy-m & - & - & - & - & - & - & - & - & - & - & 0.262 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.994 +% WtP-T: 0.969 +% WtP-U: 0.975 +% C-R: 0.713 +% L-3: 0.977 +% SaT-SM: 0.991 +% SaT-T: 0.964 +% SaT-U: 0.975 +% SaT-Lora-T: 0.993 +% SaT-Lora-U: 0.993 +% spacy-dp: 0.944 +% spacy-m: 0.948 +% ersatz: 0.96 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/ru_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/ru_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..b5fdd46be879ca2e234db98b0e36b4edc274a476 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/ru_f.tex @@ -0,0 +1,34 @@ +\begin{tabular}{lrrrrrrrrrrrrr} +\toprule + & WtP-P & SaT-SM & SaT-Lora-T & WtP-T & WtP-U & SaT-U & SaT-T & L-3 & ersatz & spacy-dp & spacy-m & C-R & pysbd \\ +\midrule +WtP-P & - & 0.036 & 0.017 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & 0.941 & 0.004 & 0.002 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & - & 0.004 & 0.003 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & 0.502 & 0.255 & 0.250 & 0.253 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & 0.418 & 0.430 & 0.362 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & 0.824 & 0.644 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & - & 0.794 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +ersatz & - & - & - & - & - & - & - & - & - & 0.579 & 0.023 & 0.000 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & - & - & - & - & 0.061 & 0.000 & 0.000 \\ +spacy-m & - & - & - & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - & - & - & 0.000 \\ +pysbd & - & - & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.994 +% WtP-T: 0.976 +% WtP-U: 0.975 +% C-R: 0.802 +% L-3: 0.97 +% SaT-SM: 0.988 +% SaT-T: 0.972 +% SaT-U: 0.972 +% SaT-Lora-T: 0.988 +% SaT-Lora-U: 0.987 +% spacy-dp: 0.941 +% spacy-m: 0.932 +% pysbd: 0.552 +% ersatz: 0.942 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/ta_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/ta_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..8636cb75063a09e93c970c602dfcc00f81a33f15 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/ta_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & SaT-SM & SaT-Lora-T & WtP-P & SaT-U & SaT-T & L-3 & ersatz & WtP-T & WtP-U & C-R \\ +\midrule +SaT-SM & - & 0.136 & 0.020 & 0.011 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.352 & 0.224 & 0.003 & 0.004 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.679 & 0.054 & 0.046 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & 0.045 & 0.150 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.808 & 0.001 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & 0.002 & 0.000 & 0.000 & 0.000 \\ +ersatz & - & - & - & - & - & - & - & 0.421 & 0.108 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & - & 0.168 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.978 +% WtP-T: 0.947 +% WtP-U: 0.941 +% C-R: 0.013 +% L-3: 0.97 +% SaT-SM: 0.985 +% SaT-T: 0.971 +% SaT-U: 0.976 +% SaT-Lora-T: 0.981 +% SaT-Lora-U: 0.982 +% ersatz: 0.952 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/tr_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/tr_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..bd64bd3bd592d89d932cfbed7dc7fa552efc334c --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/tr_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & WtP-P & SaT-Lora-T & SaT-SM & ersatz & L-3 & SaT-T & SaT-U & WtP-T & WtP-U & C-R \\ +\midrule +WtP-P & - & 0.413 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +ersatz & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & 0.225 & 0.041 & 0.002 & 0.001 & 0.000 \\ +SaT-T & - & - & - & - & - & - & 0.015 & 0.005 & 0.001 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.089 & 0.039 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & - & 0.570 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.983 +% WtP-T: 0.93 +% WtP-U: 0.928 +% C-R: 0.718 +% L-3: 0.943 +% SaT-SM: 0.975 +% SaT-T: 0.938 +% SaT-U: 0.935 +% SaT-Lora-T: 0.982 +% SaT-Lora-U: 0.984 +% ersatz: 0.962 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/zh_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/zh_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..2555a9aa54a20e4ed7bfaa0225b7c3ff430e6878 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/ersatz/zh_f.tex @@ -0,0 +1,32 @@ +\begin{tabular}{lrrrrrrrrrrrr} +\toprule + & WtP-P & spacy-dp & SaT-Lora-T & L-3 & WtP-U & WtP-T & pysbd & SaT-SM & SaT-T & ersatz & SaT-U & C-R \\ +\midrule +WtP-P & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +spacy-dp & - & - & 0.050 & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & - & 0.356 & 0.016 & 0.002 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.133 & 0.042 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & 0.528 & 0.091 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & 0.221 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +pysbd & - & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & - & - & - & 0.980 & 0.000 & 0.000 \\ +ersatz & - & - & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.979 +% WtP-T: 0.934 +% WtP-U: 0.937 +% C-R: 0.705 +% L-3: 0.945 +% SaT-SM: 0.905 +% SaT-T: 0.874 +% SaT-U: 0.841 +% SaT-Lora-T: 0.95 +% SaT-Lora-U: 0.952 +% spacy-dp: 0.959 +% pysbd: 0.927 +% ersatz: 0.874 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/af_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/af_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..e9b935165729039bcb5d6d43cd5cf08347dcde93 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/af_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & SaT-T & SaT-U & WtP-T & WtP-U & L-3 & C-R & spacy-m \\ +\midrule +SaT-Lora-T & - & 0.118 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.014 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & 0.006 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & 0.001 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & 0.400 \\ +spacy-m & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.939 +% WtP-T: 0.877 +% WtP-U: 0.865 +% C-R: 0.71 +% L-3: 0.827 +% SaT-SM: 0.931 +% SaT-T: 0.897 +% SaT-U: 0.888 +% SaT-Lora-T: 0.943 +% SaT-Lora-U: 0.943 +% spacy-m: 0.701 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/am_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/am_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..5a34e179cd48fcb85f67d90f172ee182b1c2bb0d --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/am_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & SaT-SM & WtP-P & WtP-T & SaT-T & WtP-U & SaT-U & L-3 & C-R \\ +\midrule +SaT-Lora-T & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & 0.747 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.149 & 0.041 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & 0.597 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.705 +% WtP-T: 0.637 +% WtP-U: 0.582 +% C-R: 0.066 +% L-3: 0.362 +% SaT-SM: 0.708 +% SaT-T: 0.591 +% SaT-U: 0.58 +% SaT-Lora-T: 0.759 +% SaT-Lora-U: 0.675 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ar_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ar_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..b4697adf9a97067843eee7c758983f3d682016c4 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ar_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & SaT-T & WtP-T & SaT-U & L-3 & WtP-U & C-R \\ +\midrule +SaT-Lora-T & - & 0.016 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.625 & 0.096 & 0.042 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & 0.124 & 0.015 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & 0.912 & 0.002 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & 0.002 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & 0.111 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.854 +% WtP-T: 0.799 +% WtP-U: 0.773 +% C-R: 0.586 +% L-3: 0.782 +% SaT-SM: 0.807 +% SaT-T: 0.805 +% SaT-U: 0.799 +% SaT-Lora-T: 0.863 +% SaT-Lora-U: 0.822 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/az_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/az_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..66b0b49bdae2a313ad3eaef1235c9f454675a142 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/az_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-SM & SaT-Lora-T & WtP-P & L-3 & SaT-U & WtP-U & WtP-T & SaT-T & C-R \\ +\midrule +SaT-SM & - & 0.655 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.002 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.004 & 0.004 & 0.001 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & 0.789 & 0.463 & 0.366 & 0.000 \\ +WtP-U & - & - & - & - & - & - & 0.605 & 0.534 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & 0.854 & 0.000 \\ +SaT-T & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.83 +% WtP-T: 0.746 +% WtP-U: 0.749 +% C-R: 0.605 +% L-3: 0.768 +% SaT-SM: 0.853 +% SaT-T: 0.745 +% SaT-U: 0.75 +% SaT-Lora-T: 0.85 +% SaT-Lora-U: 0.817 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/be_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/be_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..4ce1e066caf8f99f170dd60bd11c66c46f20f80f --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/be_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-SM & WtP-P & SaT-Lora-T & WtP-T & WtP-U & SaT-T & SaT-U & L-3 & C-R \\ +\midrule +SaT-SM & - & 0.794 & 0.430 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.603 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & 0.125 & 0.019 & 0.026 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & 0.125 & 0.130 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & 0.988 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.905 +% WtP-T: 0.806 +% WtP-U: 0.803 +% C-R: 0.521 +% L-3: 0.713 +% SaT-SM: 0.906 +% SaT-T: 0.797 +% SaT-U: 0.797 +% SaT-Lora-T: 0.903 +% SaT-Lora-U: 0.899 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/bg_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/bg_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..9b0d33adac1bd4022544ff319841301fa5d48fb5 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/bg_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & L-3 & SaT-T & SaT-U & WtP-U & WtP-T & C-R \\ +\midrule +SaT-Lora-T & - & 0.835 & 0.041 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.234 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.281 & 0.231 & 0.234 & 0.043 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.768 & 0.905 & 0.184 & 0.000 \\ +SaT-U & - & - & - & - & - & - & 0.991 & 0.217 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.979 +% WtP-T: 0.954 +% WtP-U: 0.957 +% C-R: 0.674 +% L-3: 0.96 +% SaT-SM: 0.977 +% SaT-T: 0.957 +% SaT-U: 0.957 +% SaT-Lora-T: 0.979 +% SaT-Lora-U: 0.978 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/bn_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/bn_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..81a565c361c508fd5811743539bf95d469f91983 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/bn_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & WtP-T & SaT-T & SaT-U & L-3 & WtP-U & C-R \\ +\midrule +SaT-Lora-T & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.447 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & 0.835 & 0.000 & 0.001 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.000 & 0.001 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & 0.381 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & 0.005 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.865 +% WtP-T: 0.821 +% WtP-U: 0.779 +% C-R: 0.048 +% L-3: 0.8 +% SaT-SM: 0.861 +% SaT-T: 0.82 +% SaT-U: 0.805 +% SaT-Lora-T: 0.886 +% SaT-Lora-U: 0.888 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ca_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ca_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..c822a12a9745874dbcf40e804ea0ded1659763d6 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ca_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & L-3 & SaT-T & spacy-dp & WtP-T & SaT-U & WtP-U & C-R \\ +\midrule +SaT-Lora-T & - & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.010 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.015 & 0.000 & 0.000 & 0.000 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & 0.915 & 0.341 & 0.060 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & 0.204 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & - & 0.141 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.968 +% WtP-T: 0.935 +% WtP-U: 0.93 +% C-R: 0.713 +% L-3: 0.951 +% SaT-SM: 0.963 +% SaT-T: 0.942 +% SaT-U: 0.933 +% SaT-Lora-T: 0.972 +% SaT-Lora-U: 0.972 +% spacy-dp: 0.936 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/cs_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/cs_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..e8f0bc4b9cf7f91db815659772dc590dc6d38e8b --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/cs_f.tex @@ -0,0 +1,24 @@ +\begin{tabular}{lrrrrrrrr} +\toprule + & WtP-P & SaT-Lora-T & SaT-SM & SaT-T & WtP-T & SaT-U & WtP-U & spacy-m \\ +\midrule +WtP-P & - & 0.080 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & 0.034 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & 0.155 & 0.000 & 0.003 \\ +SaT-U & - & - & - & - & - & - & 0.001 & 0.026 \\ +WtP-U & - & - & - & - & - & - & - & 0.914 \\ +spacy-m & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.964 +% WtP-T: 0.92 +% WtP-U: 0.911 +% SaT-SM: 0.957 +% SaT-T: 0.924 +% SaT-U: 0.917 +% SaT-Lora-T: 0.962 +% SaT-Lora-U: 0.961 +% spacy-m: 0.911 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/cy_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/cy_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..804e38ecebfd53f070fbe07923b2773cb0ab37c4 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/cy_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & WtP-T & SaT-T & SaT-U & WtP-U & L-3 & C-R \\ +\midrule +SaT-Lora-T & - & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.055 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & 0.762 & 0.005 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.001 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & 0.001 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.902 +% WtP-T: 0.867 +% WtP-U: 0.839 +% C-R: 0.603 +% L-3: 0.725 +% SaT-SM: 0.895 +% SaT-T: 0.866 +% SaT-U: 0.856 +% SaT-Lora-T: 0.913 +% SaT-Lora-U: 0.914 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/da_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/da_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..39cef1a54ad78997be2c724db7581421f08c985e --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/da_f.tex @@ -0,0 +1,30 @@ +\begin{tabular}{lrrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & L-3 & SaT-T & SaT-U & spacy-m & WtP-T & spacy-dp & WtP-U & C-R \\ +\midrule +SaT-Lora-T & - & 0.245 & 0.002 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.050 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.305 & 0.048 & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.006 & 0.021 & 0.000 & 0.003 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & 0.195 & 0.004 & 0.038 & 0.000 & 0.000 \\ +spacy-m & - & - & - & - & - & - & - & 0.521 & 0.355 & 0.095 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & - & 0.869 & 0.012 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & - & - & - & 0.423 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.967 +% WtP-T: 0.922 +% WtP-U: 0.917 +% C-R: 0.746 +% L-3: 0.942 +% SaT-SM: 0.963 +% SaT-T: 0.937 +% SaT-U: 0.932 +% SaT-Lora-T: 0.97 +% SaT-Lora-U: 0.969 +% spacy-dp: 0.921 +% spacy-m: 0.925 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/de_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/de_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..aa5ae6d7fe95eb267f20411efab8b904d395c5f2 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/de_f.tex @@ -0,0 +1,30 @@ +\begin{tabular}{lrrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & L-3 & SaT-T & WtP-T & SaT-U & WtP-U & spacy-dp & spacy-m & C-R \\ +\midrule +SaT-Lora-T & - & 0.061 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.422 & 0.063 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.126 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & 0.603 & 0.000 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +spacy-m & - & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.95 +% WtP-T: 0.92 +% WtP-U: 0.892 +% C-R: 0.791 +% L-3: 0.926 +% SaT-SM: 0.94 +% SaT-T: 0.924 +% SaT-U: 0.904 +% SaT-Lora-T: 0.954 +% SaT-Lora-U: 0.953 +% spacy-dp: 0.89 +% spacy-m: 0.847 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/el_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/el_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..9c59bb3da8ac4376def4a03d8258a4dd29acb4a7 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/el_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & SaT-Lora-T & SaT-SM & WtP-P & SaT-T & SaT-U & WtP-T & L-3 & WtP-U & spacy-dp & C-R \\ +\midrule +SaT-Lora-T & - & 0.032 & 0.013 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & 0.805 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & 0.000 & 0.004 & 0.024 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & 0.963 & 0.475 & 0.016 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & 0.502 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & 0.477 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.969 +% WtP-T: 0.948 +% WtP-U: 0.941 +% C-R: 0.659 +% L-3: 0.945 +% SaT-SM: 0.969 +% SaT-T: 0.955 +% SaT-U: 0.948 +% SaT-Lora-T: 0.975 +% SaT-Lora-U: 0.967 +% spacy-dp: 0.925 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/en_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/en_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..898e830b5290af0e7cee3cdb3ff6ae1b82d40962 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/en_f.tex @@ -0,0 +1,30 @@ +\begin{tabular}{lrrrrrrrrrrr} +\toprule + & WtP-P & SaT-Lora-T & SaT-SM & L-3 & WtP-U & SaT-U & WtP-T & SaT-T & spacy-dp & spacy-m & C-R \\ +\midrule +WtP-P & - & 0.978 & 0.136 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.103 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & 0.210 & 0.000 & 0.029 & 0.001 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & 0.645 & 0.149 & 0.008 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & 0.658 & 0.042 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & - & - & 0.058 & 0.000 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +spacy-m & - & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.967 +% WtP-T: 0.935 +% WtP-U: 0.939 +% C-R: 0.846 +% L-3: 0.952 +% SaT-SM: 0.965 +% SaT-T: 0.934 +% SaT-U: 0.936 +% SaT-Lora-T: 0.967 +% SaT-Lora-U: 0.967 +% spacy-dp: 0.929 +% spacy-m: 0.915 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/eo_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/eo_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..cf0e8fbea981a1c92b2c72142d58e3c75a024289 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/eo_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & L-3 & WtP-U & WtP-T & SaT-U & SaT-T & C-R \\ +\midrule +SaT-Lora-T & - & 0.193 & 0.007 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.341 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.186 & 0.033 & 0.005 & 0.006 & 0.000 \\ +WtP-U & - & - & - & - & - & 0.006 & 0.069 & 0.065 & 0.000 \\ +WtP-T & - & - & - & - & - & - & 0.620 & 0.610 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 1.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.954 +% WtP-T: 0.905 +% WtP-U: 0.909 +% C-R: 0.846 +% L-3: 0.916 +% SaT-SM: 0.952 +% SaT-T: 0.903 +% SaT-U: 0.903 +% SaT-Lora-T: 0.958 +% SaT-Lora-U: 0.957 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/es_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/es_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..7eb40f565b040712791c935b76b6b9e0f9b7aa54 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/es_f.tex @@ -0,0 +1,30 @@ +\begin{tabular}{lrrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & L-3 & SaT-T & spacy-m & WtP-T & SaT-U & spacy-dp & WtP-U & C-R \\ +\midrule +SaT-Lora-T & - & 0.007 & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.780 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.671 & 0.021 & 0.000 & 0.002 & 0.000 & 0.000 \\ +spacy-m & - & - & - & - & - & - & 0.253 & 0.128 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & 0.577 & 0.079 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & - & 0.150 & 0.000 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & - & - & - & 0.348 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.974 +% WtP-T: 0.942 +% WtP-U: 0.932 +% C-R: 0.81 +% L-3: 0.96 +% SaT-SM: 0.973 +% SaT-T: 0.946 +% SaT-U: 0.94 +% SaT-Lora-T: 0.977 +% SaT-Lora-U: 0.977 +% spacy-dp: 0.935 +% spacy-m: 0.945 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/et_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/et_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..f73bbcc7ba4f3437e305704942d9bb4f579a8300 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/et_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & L-3 & SaT-T & WtP-T & SaT-U & WtP-U & C-R \\ +\midrule +SaT-Lora-T & - & 0.066 & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.228 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.006 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.001 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.969 +% WtP-T: 0.92 +% WtP-U: 0.904 +% C-R: 0.731 +% L-3: 0.934 +% SaT-SM: 0.967 +% SaT-T: 0.926 +% SaT-U: 0.911 +% SaT-Lora-T: 0.971 +% SaT-Lora-U: 0.97 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/eu_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/eu_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..31ed5b35707531e420c5e7ac96e28009156695f8 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/eu_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & WtP-T & SaT-T & L-3 & WtP-U & SaT-U & C-R \\ +\midrule +SaT-Lora-T & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & 0.020 & 0.061 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.840 & 0.371 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & 0.670 & 0.002 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.957 +% WtP-T: 0.916 +% WtP-U: 0.908 +% C-R: 0.686 +% L-3: 0.909 +% SaT-SM: 0.95 +% SaT-T: 0.91 +% SaT-U: 0.896 +% SaT-Lora-T: 0.964 +% SaT-Lora-U: 0.964 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/fa_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/fa_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..6cefa0d9d313e1353ae02f10dabea92827bbf2c0 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/fa_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & L-3 & SaT-SM & WtP-T & WtP-U & SaT-T & SaT-U & spacy-m & C-R \\ +\midrule +SaT-Lora-T & - & 0.036 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & 0.808 & 0.002 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & - & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & 0.095 & 0.037 & 0.013 & 0.005 & 0.000 \\ +WtP-U & - & - & - & - & - & - & 0.484 & 0.139 & 0.043 & 0.000 \\ +SaT-T & - & - & - & - & - & - & - & 0.380 & 0.138 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & - & 0.259 & 0.000 \\ +spacy-m & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.863 +% WtP-T: 0.786 +% WtP-U: 0.781 +% C-R: 0.692 +% L-3: 0.801 +% SaT-SM: 0.8 +% SaT-T: 0.779 +% SaT-U: 0.776 +% SaT-Lora-T: 0.87 +% SaT-Lora-U: 0.872 +% spacy-m: 0.772 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/fi_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/fi_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..a51bbf5338771c11e4308730f80820518b6e526b --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/fi_f.tex @@ -0,0 +1,30 @@ +\begin{tabular}{lrrrrrrrrrrr} +\toprule + & WtP-P & SaT-Lora-T & SaT-SM & L-3 & SaT-T & SaT-U & WtP-T & spacy-dp & spacy-m & WtP-U & C-R \\ +\midrule +WtP-P & - & 0.436 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.011 & 0.058 & 0.114 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & 0.683 & 0.683 & 0.012 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & 0.943 & 0.038 & 0.000 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & - & - & 0.013 & 0.016 & 0.000 \\ +spacy-m & - & - & - & - & - & - & - & - & - & 0.751 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.977 +% WtP-T: 0.941 +% WtP-U: 0.934 +% C-R: 0.741 +% L-3: 0.955 +% SaT-SM: 0.969 +% SaT-T: 0.945 +% SaT-U: 0.942 +% SaT-Lora-T: 0.975 +% SaT-Lora-U: 0.976 +% spacy-dp: 0.941 +% spacy-m: 0.935 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/fr_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/fr_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..953f1c993294907d87c5d085f4cb45e440f0ed26 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/fr_f.tex @@ -0,0 +1,30 @@ +\begin{tabular}{lrrrrrrrrrrr} +\toprule + & SaT-Lora-T & L-3 & SaT-SM & WtP-P & SaT-U & SaT-T & WtP-U & WtP-T & spacy-m & spacy-dp & C-R \\ +\midrule +SaT-Lora-T & - & 0.011 & 0.010 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & 0.741 & 0.640 & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.801 & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & - & 0.009 & 0.003 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & 0.117 & 0.022 & 0.002 & 0.010 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & 0.133 & 0.026 & 0.033 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.383 & 0.276 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & - & 0.426 & 0.000 & 0.000 \\ +spacy-m & - & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & - & - & - & - & 0.819 \\ +C-R & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.983 +% WtP-T: 0.966 +% WtP-U: 0.968 +% C-R: 0.885 +% L-3: 0.985 +% SaT-SM: 0.984 +% SaT-T: 0.972 +% SaT-U: 0.974 +% SaT-Lora-T: 0.99 +% SaT-Lora-U: 0.99 +% spacy-dp: 0.887 +% spacy-m: 0.962 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/fy_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/fy_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..6f59f11d55fd1650a99eab2dc736afd88ff2b4e5 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/fy_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-SM & SaT-Lora-T & WtP-P & SaT-T & SaT-U & WtP-T & WtP-U & L-3 & C-R \\ +\midrule +SaT-SM & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.203 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.159 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.881 +% WtP-T: 0.61 +% WtP-U: 0.444 +% C-R: 0.306 +% L-3: 0.424 +% SaT-SM: 0.91 +% SaT-T: 0.677 +% SaT-U: 0.649 +% SaT-Lora-T: 0.888 +% SaT-Lora-U: 0.888 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ga_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ga_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..2b8b4be78867cc18e49f26e6a1947277bd0ef763 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ga_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & SaT-T & SaT-U & WtP-T & L-3 & WtP-U & spacy-m & C-R \\ +\midrule +SaT-Lora-T & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.004 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & 0.065 & 0.011 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & 0.191 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & 0.018 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & 0.006 & 0.000 \\ +spacy-m & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.928 +% WtP-T: 0.839 +% WtP-U: 0.811 +% C-R: 0.647 +% L-3: 0.829 +% SaT-SM: 0.881 +% SaT-T: 0.863 +% SaT-U: 0.848 +% SaT-Lora-T: 0.947 +% SaT-Lora-U: 0.95 +% spacy-m: 0.786 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/gd_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/gd_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..6e6c510e561796bcac71505ef759ef2c0ed85295 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/gd_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & WtP-U & WtP-T & SaT-T & SaT-U & L-3 & C-R \\ +\midrule +SaT-Lora-T & - & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.002 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & 0.813 & 0.028 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & 0.073 & 0.014 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & 0.223 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.861 +% WtP-T: 0.772 +% WtP-U: 0.774 +% C-R: 0.524 +% L-3: 0.652 +% SaT-SM: 0.834 +% SaT-T: 0.757 +% SaT-U: 0.748 +% SaT-Lora-T: 0.884 +% SaT-Lora-U: 0.875 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/gl_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/gl_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..fb0772d063cc519c9d5adcba5fe2012e92400972 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/gl_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & WtP-T & WtP-U & SaT-T & L-3 & SaT-U & C-R \\ +\midrule +SaT-Lora-T & - & 0.069 & 0.003 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.300 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & 0.000 & 0.008 & 0.022 & 0.001 & 0.000 \\ +WtP-U & - & - & - & - & - & 0.764 & 0.552 & 0.332 & 0.000 \\ +SaT-T & - & - & - & - & - & - & 0.697 & 0.222 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & 0.941 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.963 +% WtP-T: 0.938 +% WtP-U: 0.93 +% C-R: 0.727 +% L-3: 0.927 +% SaT-SM: 0.96 +% SaT-T: 0.929 +% SaT-U: 0.926 +% SaT-Lora-T: 0.967 +% SaT-Lora-U: 0.966 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/gu_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/gu_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..235124f4c688ffafa95554c098204cfb2d6dbbe9 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/gu_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-U & SaT-T & WtP-U & WtP-T & SaT-SM & L-3 & C-R \\ +\midrule +SaT-Lora-T & - & 0.002 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & 0.286 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & 0.543 & 0.002 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & 0.005 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.866 +% WtP-T: 0.792 +% WtP-U: 0.794 +% C-R: 0.458 +% L-3: 0.631 +% SaT-SM: 0.77 +% SaT-T: 0.815 +% SaT-U: 0.818 +% SaT-Lora-T: 0.88 +% SaT-Lora-U: 0.877 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ha_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ha_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..499174373ad4f173f776ddb7bb0a9fd926309931 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ha_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & WtP-P & SaT-SM & SaT-Lora-T & WtP-T & SaT-T & L-3 & SaT-U & WtP-U & C-R \\ +\midrule +WtP-P & - & 0.829 & 0.317 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & 0.409 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & 0.146 & 0.079 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.515 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.915 +% WtP-T: 0.889 +% WtP-U: 0.828 +% C-R: 0.658 +% L-3: 0.881 +% SaT-SM: 0.914 +% SaT-T: 0.884 +% SaT-U: 0.838 +% SaT-Lora-T: 0.91 +% SaT-Lora-U: 0.894 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/he_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/he_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..8b5e71e460792777a478d92635cb0e4f14a9aed2 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/he_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & WtP-P & SaT-Lora-T & SaT-SM & WtP-T & WtP-U & SaT-T & L-3 & SaT-U & C-R \\ +\midrule +WtP-P & - & 0.509 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.008 & 0.008 & 0.000 & 0.004 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & 0.760 & 0.789 & 0.691 & 0.014 & 0.000 \\ +WtP-U & - & - & - & - & - & 0.971 & 0.823 & 0.054 & 0.000 \\ +SaT-T & - & - & - & - & - & - & 0.810 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & 0.159 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.955 +% WtP-T: 0.927 +% WtP-U: 0.927 +% C-R: 0.699 +% L-3: 0.925 +% SaT-SM: 0.938 +% SaT-T: 0.926 +% SaT-U: 0.918 +% SaT-Lora-T: 0.952 +% SaT-Lora-U: 0.945 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/hi_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/hi_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..4766b7c1a646aa3bc4dc06f50e8f5b9a797be0b0 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/hi_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & L-3 & WtP-T & WtP-U & SaT-U & SaT-T & C-R \\ +\midrule +SaT-Lora-T & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.034 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.395 & 0.168 & 0.050 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & 0.143 & 0.146 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & 0.541 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.908 +% WtP-T: 0.852 +% WtP-U: 0.85 +% C-R: 0.72 +% L-3: 0.856 +% SaT-SM: 0.903 +% SaT-T: 0.842 +% SaT-U: 0.849 +% SaT-Lora-T: 0.929 +% SaT-Lora-U: 0.927 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/hu_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/hu_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..30802e1fcc52c6d2888ed64fe3368d42e5217da9 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/hu_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & L-3 & SaT-T & SaT-U & WtP-T & WtP-U & C-R \\ +\midrule +SaT-Lora-T & - & 0.705 & 0.092 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.210 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.023 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.002 & 0.007 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & 0.174 & 0.007 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & 0.092 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.979 +% WtP-T: 0.942 +% WtP-U: 0.938 +% C-R: 0.679 +% L-3: 0.962 +% SaT-SM: 0.977 +% SaT-T: 0.952 +% SaT-U: 0.946 +% SaT-Lora-T: 0.979 +% SaT-Lora-U: 0.98 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/hy_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/hy_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..2ffbe4a70bc80a918c498918216f81f681939870 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/hy_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & WtP-P & SaT-SM & SaT-Lora-T & SaT-U & SaT-T & WtP-T & WtP-U & L-3 & C-R \\ +\midrule +WtP-P & - & 0.785 & 0.809 & 0.089 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & 1.000 & 0.135 & 0.004 & 0.001 & 0.001 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & - & 0.175 & 0.003 & 0.001 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & 0.021 & 0.019 & 0.013 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.446 & 0.294 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & 0.726 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.985 +% WtP-T: 0.962 +% WtP-U: 0.96 +% C-R: 0.503 +% L-3: 0.92 +% SaT-SM: 0.984 +% SaT-T: 0.967 +% SaT-U: 0.976 +% SaT-Lora-T: 0.983 +% SaT-Lora-U: 0.981 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/id_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/id_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..dfe1c5be32e94549ee7c262b04c50045afd5a415 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/id_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & L-3 & spacy-m & WtP-T & WtP-U & SaT-T & SaT-U & C-R \\ +\midrule +SaT-Lora-T & - & 0.588 & 0.111 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.422 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.002 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +spacy-m & - & - & - & - & - & 0.950 & 0.213 & 0.149 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & 0.002 & 0.024 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.838 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.939 +% WtP-T: 0.895 +% WtP-U: 0.889 +% C-R: 0.713 +% L-3: 0.923 +% SaT-SM: 0.937 +% SaT-T: 0.889 +% SaT-U: 0.866 +% SaT-Lora-T: 0.941 +% SaT-Lora-U: 0.939 +% spacy-m: 0.896 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ig_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ig_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..0c684baede6e40e83735689198ab376835fc6564 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ig_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & SaT-SM & WtP-P & SaT-T & WtP-T & SaT-U & WtP-U & L-3 & C-R \\ +\midrule +SaT-Lora-T & - & 0.717 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & 0.095 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & 0.534 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.902 +% WtP-T: 0.821 +% WtP-U: 0.786 +% C-R: 0.28 +% L-3: 0.393 +% SaT-SM: 0.921 +% SaT-T: 0.833 +% SaT-U: 0.817 +% SaT-Lora-T: 0.923 +% SaT-Lora-U: 0.923 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/is_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/is_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..5719bc2283ba210f91659c16c9f3dbc8ddaae473 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/is_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & L-3 & WtP-T & WtP-U & SaT-T & SaT-U & C-R \\ +\midrule +SaT-Lora-T & - & 0.295 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.966 +% WtP-T: 0.916 +% WtP-U: 0.898 +% C-R: 0.762 +% L-3: 0.946 +% SaT-SM: 0.961 +% SaT-T: 0.864 +% SaT-U: 0.836 +% SaT-Lora-T: 0.967 +% SaT-Lora-U: 0.968 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/it_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/it_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..9707de081fa6b4b2ddd452e1259de4c262fc69cf --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/it_f.tex @@ -0,0 +1,30 @@ +\begin{tabular}{lrrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & L-3 & SaT-T & spacy-dp & SaT-U & WtP-T & WtP-U & spacy-m & C-R \\ +\midrule +SaT-Lora-T & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.251 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.966 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & 0.111 & 0.008 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.117 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & - & 0.000 & 0.002 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & - & 0.807 & 0.000 \\ +spacy-m & - & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.964 +% WtP-T: 0.91 +% WtP-U: 0.892 +% C-R: 0.837 +% L-3: 0.944 +% SaT-SM: 0.948 +% SaT-T: 0.924 +% SaT-U: 0.917 +% SaT-Lora-T: 0.97 +% SaT-Lora-U: 0.969 +% spacy-dp: 0.924 +% spacy-m: 0.89 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ja_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ja_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..0b2dab701bc6ae12833fc60c81fc8881f9ab2764 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ja_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-T & SaT-U & SaT-SM & WtP-T & spacy-dp & WtP-U & L-3 & C-R \\ +\midrule +SaT-Lora-T & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & 0.187 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.931 +% WtP-T: 0.856 +% WtP-U: 0.727 +% C-R: 0.522 +% L-3: 0.647 +% SaT-SM: 0.881 +% SaT-T: 0.896 +% SaT-U: 0.886 +% SaT-Lora-T: 0.944 +% SaT-Lora-U: 0.942 +% spacy-dp: 0.771 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ka_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ka_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..15e6382c3f023f10846698414d01b52b742a4af8 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ka_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-SM & SaT-Lora-T & WtP-P & WtP-U & WtP-T & L-3 & SaT-T & SaT-U & C-R \\ +\midrule +SaT-SM & - & 0.073 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.010 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & 0.149 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.928 +% WtP-T: 0.911 +% WtP-U: 0.913 +% C-R: 0.256 +% L-3: 0.892 +% SaT-SM: 0.936 +% SaT-T: 0.839 +% SaT-U: 0.757 +% SaT-Lora-T: 0.933 +% SaT-Lora-U: 0.934 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/kk_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/kk_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..12f0785ff09c99ea6f89bc28839e1a909aaaa4f3 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/kk_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-SM & WtP-P & SaT-U & SaT-Lora-T & SaT-T & WtP-U & L-3 & WtP-T & C-R \\ +\midrule +SaT-SM & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.009 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & 0.313 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & - & - & 0.000 & 0.002 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.528 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & 0.780 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.922 +% WtP-T: 0.845 +% WtP-U: 0.891 +% C-R: 0.691 +% L-3: 0.846 +% SaT-SM: 0.971 +% SaT-T: 0.893 +% SaT-U: 0.911 +% SaT-Lora-T: 0.906 +% SaT-Lora-U: 0.963 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/km_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/km_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..37e17bb721264558d2595b64ac9e36097d427146 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/km_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & WtP-T & SaT-T & SaT-U & WtP-U & L-3 & C-R \\ +\midrule +SaT-Lora-T & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.672 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & 0.423 & 0.003 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.001 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.855 +% WtP-T: 0.812 +% WtP-U: 0.71 +% C-R: 0.055 +% L-3: 0.477 +% SaT-SM: 0.853 +% SaT-T: 0.809 +% SaT-U: 0.799 +% SaT-Lora-T: 0.899 +% SaT-Lora-U: 0.892 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/kn_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/kn_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..0071b6a9940e91ca8fa869c0eb5ccc834db81816 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/kn_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-SM & SaT-Lora-T & WtP-P & SaT-U & SaT-T & WtP-U & WtP-T & L-3 & C-R \\ +\midrule +SaT-SM & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & 0.315 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.78 +% WtP-T: 0.604 +% WtP-U: 0.645 +% C-R: 0.055 +% L-3: 0.267 +% SaT-SM: 0.879 +% SaT-T: 0.699 +% SaT-U: 0.702 +% SaT-Lora-T: 0.839 +% SaT-Lora-U: 0.828 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ko_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ko_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..276aaae0b7333392389f63f61a3b259753d2f5f5 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ko_f.tex @@ -0,0 +1,30 @@ +\begin{tabular}{lrrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & SaT-T & SaT-U & L-3 & WtP-T & WtP-U & spacy-m & spacy-dp & C-R \\ +\midrule +SaT-Lora-T & - & 0.564 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & 0.041 & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & 0.049 & 0.004 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & 0.725 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +spacy-m & - & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.907 +% WtP-T: 0.849 +% WtP-U: 0.78 +% C-R: 0.594 +% L-3: 0.851 +% SaT-SM: 0.894 +% SaT-T: 0.867 +% SaT-U: 0.86 +% SaT-Lora-T: 0.909 +% SaT-Lora-U: 0.91 +% spacy-dp: 0.733 +% spacy-m: 0.753 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ku_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ku_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..cb6ebd71778277b48bdfe277b00335a03769a0c9 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ku_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-SM & SaT-Lora-T & WtP-P & WtP-U & SaT-U & SaT-T & WtP-T & L-3 & C-R \\ +\midrule +SaT-SM & - & 0.750 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & 0.183 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & 0.172 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.851 +% WtP-T: 0.664 +% WtP-U: 0.781 +% C-R: 0.298 +% L-3: 0.419 +% SaT-SM: 0.911 +% SaT-T: 0.677 +% SaT-U: 0.772 +% SaT-Lora-T: 0.909 +% SaT-Lora-U: 0.909 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ky_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ky_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..23c33b1884d75d3d91a70f7a28e430edc8c645b2 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ky_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & SaT-SM & WtP-P & WtP-U & WtP-T & SaT-T & SaT-U & L-3 & C-R \\ +\midrule +SaT-Lora-T & - & 0.624 & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & 0.006 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & 0.846 & 0.591 & 0.537 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & 0.664 & 0.615 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & 0.704 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.903 +% WtP-T: 0.844 +% WtP-U: 0.845 +% C-R: 0.265 +% L-3: 0.583 +% SaT-SM: 0.918 +% SaT-T: 0.841 +% SaT-U: 0.841 +% SaT-Lora-T: 0.92 +% SaT-Lora-U: 0.92 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/la_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/la_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..b3f7207f77c26cafa1715efb789d2f8bede05c92 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/la_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & L-3 & WtP-T & WtP-U & SaT-T & SaT-U & C-R \\ +\midrule +SaT-Lora-T & - & 0.291 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.028 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.195 & 0.097 & 0.007 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & 0.707 & 0.087 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & 0.175 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & - & 0.028 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.973 +% WtP-T: 0.893 +% WtP-U: 0.892 +% C-R: 0.651 +% L-3: 0.9 +% SaT-SM: 0.966 +% SaT-T: 0.884 +% SaT-U: 0.678 +% SaT-Lora-T: 0.975 +% SaT-Lora-U: 0.974 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/lt_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/lt_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..403a5aecb6218ed2709d9069d65a4b32f65efeac --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/lt_f.tex @@ -0,0 +1,30 @@ +\begin{tabular}{lrrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & SaT-T & WtP-T & SaT-U & L-3 & WtP-U & spacy-m & spacy-dp & C-R \\ +\midrule +SaT-Lora-T & - & 0.559 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & 0.776 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & 0.002 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & 0.002 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & 0.549 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +spacy-m & - & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.963 +% WtP-T: 0.928 +% WtP-U: 0.904 +% C-R: 0.714 +% L-3: 0.907 +% SaT-SM: 0.954 +% SaT-T: 0.929 +% SaT-U: 0.92 +% SaT-Lora-T: 0.964 +% SaT-Lora-U: 0.963 +% spacy-dp: 0.819 +% spacy-m: 0.879 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/lv_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/lv_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..670e9bf8c1c84f30ee54e2e64b8b39794250025e --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/lv_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & SaT-T & WtP-T & L-3 & SaT-U & spacy-m & WtP-U & C-R \\ +\midrule +SaT-Lora-T & - & 0.003 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.003 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & 0.809 & 0.609 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & 0.739 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & 0.009 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.019 & 0.000 & 0.000 \\ +spacy-m & - & - & - & - & - & - & - & - & 0.013 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.966 +% WtP-T: 0.931 +% WtP-U: 0.904 +% C-R: 0.742 +% L-3: 0.93 +% SaT-SM: 0.961 +% SaT-T: 0.931 +% SaT-U: 0.922 +% SaT-Lora-T: 0.97 +% SaT-Lora-U: 0.971 +% spacy-m: 0.914 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/mg_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/mg_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..ec5f5f729c4eaea6a780f928d23acf616560102c --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/mg_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & WtP-T & SaT-T & WtP-U & SaT-U & L-3 & C-R \\ +\midrule +SaT-Lora-T & - & 0.701 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.735 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.189 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & 0.164 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.953 +% WtP-T: 0.915 +% WtP-U: 0.891 +% C-R: 0.64 +% L-3: 0.857 +% SaT-SM: 0.916 +% SaT-T: 0.896 +% SaT-U: 0.885 +% SaT-Lora-T: 0.954 +% SaT-Lora-U: 0.955 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/mk_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/mk_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..5116a4e1271cef37dfe9ba04eb4da72f94c3962f --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/mk_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & WtP-P & SaT-Lora-T & SaT-SM & L-3 & SaT-U & SaT-T & WtP-T & WtP-U & spacy-dp & C-R \\ +\midrule +WtP-P & - & 0.436 & 0.210 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.592 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.005 & 0.006 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & 1.000 & 0.015 & 0.007 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & 0.015 & 0.005 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & 0.128 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.956 +% WtP-T: 0.924 +% WtP-U: 0.923 +% C-R: 0.482 +% L-3: 0.941 +% SaT-SM: 0.954 +% SaT-T: 0.93 +% SaT-U: 0.93 +% SaT-Lora-T: 0.955 +% SaT-Lora-U: 0.955 +% spacy-dp: 0.822 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ml_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ml_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..755f83a835f8cdf16fd376a9dffbc0e4cff35026 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ml_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & WtP-P & SaT-Lora-T & SaT-SM & WtP-T & SaT-T & L-3 & WtP-U & SaT-U & C-R \\ +\midrule +WtP-P & - & 0.931 & 0.193 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.135 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & 0.110 & 0.213 & 0.001 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.893 & 0.040 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & 0.197 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.865 +% WtP-T: 0.817 +% WtP-U: 0.8 +% C-R: 0.007 +% L-3: 0.809 +% SaT-SM: 0.859 +% SaT-T: 0.81 +% SaT-U: 0.776 +% SaT-Lora-T: 0.865 +% SaT-Lora-U: 0.87 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/mr_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/mr_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..8663e1520b0198cd0a447f51f817e7fa511cd200 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/mr_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & SaT-SM & WtP-P & SaT-Lora-T & WtP-T & SaT-T & spacy-m & L-3 & WtP-U & SaT-U & C-R \\ +\midrule +SaT-SM & - & 0.673 & 0.134 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.374 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & - & 0.000 & 0.000 & 0.002 & 0.006 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & 0.718 & 0.680 & 0.610 & 0.168 & 0.107 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.975 & 0.842 & 0.726 & 0.012 & 0.000 \\ +spacy-m & - & - & - & - & - & - & 0.740 & 0.834 & 0.335 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & 0.974 & 0.452 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & 0.284 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.961 +% WtP-T: 0.903 +% WtP-U: 0.889 +% C-R: 0.684 +% L-3: 0.891 +% SaT-SM: 0.967 +% SaT-T: 0.896 +% SaT-U: 0.867 +% SaT-Lora-T: 0.951 +% SaT-Lora-U: 0.959 +% spacy-m: 0.895 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ms_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ms_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..08cfb6acbbac9aba805948b4a32b2bcebbd6f335 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ms_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-SM & WtP-P & SaT-Lora-T & L-3 & WtP-T & SaT-T & WtP-U & SaT-U & C-R \\ +\midrule +SaT-SM & - & 0.691 & 0.221 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.461 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & 0.165 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & 0.338 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.004 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.94 +% WtP-T: 0.879 +% WtP-U: 0.87 +% C-R: 0.679 +% L-3: 0.91 +% SaT-SM: 0.941 +% SaT-T: 0.874 +% SaT-U: 0.858 +% SaT-Lora-T: 0.938 +% SaT-Lora-U: 0.941 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/mt_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/mt_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..7e23fbf2bc4fc40ef3036ea612fedf96f08a5f0a --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/mt_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & WtP-P & SaT-Lora-T & SaT-SM & L-3 & WtP-T & SaT-T & WtP-U & SaT-U & C-R \\ +\midrule +WtP-P & - & 0.033 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.048 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & 0.225 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.119 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.91 +% WtP-T: 0.838 +% WtP-U: 0.752 +% C-R: 0.676 +% L-3: 0.866 +% SaT-SM: 0.891 +% SaT-T: 0.831 +% SaT-U: 0.745 +% SaT-Lora-T: 0.901 +% SaT-Lora-U: 0.902 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/my_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/my_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..02c0f2ad86684cf27aef7cb70f22d9a9468aefd0 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/my_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-SM & SaT-Lora-T & WtP-P & SaT-T & WtP-T & SaT-U & WtP-U & C-R & L-3 \\ +\midrule +SaT-SM & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & 0.498 & 0.160 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & 0.763 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & 0.433 \\ +L-3 & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.822 +% WtP-T: 0.743 +% WtP-U: 0.689 +% C-R: 0.171 +% L-3: 0.163 +% SaT-SM: 0.894 +% SaT-T: 0.749 +% SaT-U: 0.741 +% SaT-Lora-T: 0.867 +% SaT-Lora-U: 0.86 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ne_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ne_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..ed8424afdb8ebffe7faf2ea8f7a13cc5edab1297 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ne_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-SM & SaT-Lora-T & WtP-P & SaT-T & SaT-U & WtP-U & WtP-T & L-3 & C-R \\ +\midrule +SaT-SM & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & 0.103 & 0.066 & 0.038 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & 0.240 & 0.140 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & 0.660 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.743 +% WtP-T: 0.687 +% WtP-U: 0.689 +% C-R: 0.233 +% L-3: 0.397 +% SaT-SM: 0.82 +% SaT-T: 0.703 +% SaT-U: 0.698 +% SaT-Lora-T: 0.773 +% SaT-Lora-U: 0.763 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/nl_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/nl_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..5d140899ce3b4c5713efdf7b0082d2f05a511713 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/nl_f.tex @@ -0,0 +1,30 @@ +\begin{tabular}{lrrrrrrrrrrr} +\toprule + & WtP-P & SaT-Lora-T & L-3 & SaT-SM & WtP-U & spacy-dp & WtP-T & spacy-m & SaT-U & SaT-T & C-R \\ +\midrule +WtP-P & - & 0.071 & 0.105 & 0.009 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.975 & 0.582 & 0.011 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & 0.709 & 0.029 & 0.001 & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & - & 0.043 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & 0.265 & 0.036 & 0.160 & 0.057 & 0.000 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & 0.788 & 0.710 & 0.570 & 0.022 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & 0.919 & 0.704 & 0.007 & 0.000 \\ +spacy-m & - & - & - & - & - & - & - & - & 0.835 & 0.090 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & - & - & 0.012 & 0.000 \\ +SaT-T & - & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.97 +% WtP-T: 0.929 +% WtP-U: 0.941 +% C-R: 0.663 +% L-3: 0.96 +% SaT-SM: 0.957 +% SaT-T: 0.91 +% SaT-U: 0.926 +% SaT-Lora-T: 0.96 +% SaT-Lora-U: 0.971 +% spacy-dp: 0.931 +% spacy-m: 0.928 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/no_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/no_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..2b832924692db48b8b3f8389cca4f4be3102ebfa --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/no_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & WtP-P & SaT-Lora-T & SaT-SM & SaT-T & SaT-U & WtP-T & WtP-U & spacy-m & L-3 & C-R \\ +\midrule +WtP-P & - & 0.797 & 0.016 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.004 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & 0.208 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & 0.007 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & 0.060 & 0.085 & 0.075 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.280 & 0.243 & 0.000 \\ +spacy-m & - & - & - & - & - & - & - & - & 0.836 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.977 +% WtP-T: 0.963 +% WtP-U: 0.962 +% C-R: 0.705 +% L-3: 0.959 +% SaT-SM: 0.974 +% SaT-T: 0.968 +% SaT-U: 0.967 +% SaT-Lora-T: 0.977 +% SaT-Lora-U: 0.978 +% spacy-m: 0.959 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/pa_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/pa_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..e0012074c3772f16922f76e6bc719a06ae1d7865 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/pa_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-SM & SaT-Lora-T & WtP-P & SaT-T & SaT-U & WtP-T & WtP-U & L-3 & C-R \\ +\midrule +SaT-SM & - & 0.016 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.002 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & 0.932 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.773 +% WtP-T: 0.622 +% WtP-U: 0.556 +% C-R: 0.144 +% L-3: 0.267 +% SaT-SM: 0.81 +% SaT-T: 0.695 +% SaT-U: 0.695 +% SaT-Lora-T: 0.796 +% SaT-Lora-U: 0.783 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/pl_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/pl_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..7bbbdae0e0dad9145e8d82e9574c6c3d96e592a8 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/pl_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & SaT-SM & SaT-Lora-T & WtP-P & L-3 & spacy-dp & SaT-T & SaT-U & WtP-U & WtP-T & C-R \\ +\midrule +SaT-SM & - & 0.790 & 0.285 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.372 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +spacy-dp & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & 0.014 & 0.073 & 0.026 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.487 & 0.285 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & 0.592 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.975 +% WtP-T: 0.935 +% WtP-U: 0.936 +% C-R: 0.786 +% L-3: 0.962 +% SaT-SM: 0.977 +% SaT-T: 0.94 +% SaT-U: 0.937 +% SaT-Lora-T: 0.977 +% SaT-Lora-U: 0.978 +% spacy-dp: 0.953 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ps_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ps_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..6b724921cdec83a158a8302f18fca8651d47e3cd --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ps_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & SaT-T & WtP-T & SaT-U & WtP-U & L-3 & C-R \\ +\midrule +SaT-Lora-T & - & 0.035 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & 0.488 & 0.030 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & 0.680 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.86 +% WtP-T: 0.807 +% WtP-U: 0.735 +% C-R: 0.389 +% L-3: 0.612 +% SaT-SM: 0.841 +% SaT-T: 0.81 +% SaT-U: 0.805 +% SaT-Lora-T: 0.869 +% SaT-Lora-U: 0.861 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/pt_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/pt_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..2418b2f2ea2e79c3324ca1cecc52721b60ad45ae --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/pt_f.tex @@ -0,0 +1,30 @@ +\begin{tabular}{lrrrrrrrrrrr} +\toprule + & WtP-P & SaT-Lora-T & SaT-SM & SaT-T & spacy-dp & SaT-U & L-3 & WtP-T & spacy-m & WtP-U & C-R \\ +\midrule +WtP-P & - & 0.082 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & 0.928 & 0.023 & 0.047 & 0.000 & 0.000 & 0.000 & 0.000 \\ +spacy-dp & - & - & - & - & - & 0.365 & 0.070 & 0.003 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & 0.279 & 0.004 & 0.013 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & 0.429 & 0.120 & 0.017 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & - & 0.578 & 0.000 & 0.000 \\ +spacy-m & - & - & - & - & - & - & - & - & - & 0.274 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.969 +% WtP-T: 0.935 +% WtP-U: 0.929 +% C-R: 0.765 +% L-3: 0.938 +% SaT-SM: 0.955 +% SaT-T: 0.945 +% SaT-U: 0.942 +% SaT-Lora-T: 0.966 +% SaT-Lora-U: 0.965 +% spacy-dp: 0.945 +% spacy-m: 0.933 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ro_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ro_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..d5f40c4b90842feb5084bfac5a48c1d4cee614ad --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ro_f.tex @@ -0,0 +1,30 @@ +\begin{tabular}{lrrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & L-3 & spacy-m & spacy-dp & WtP-T & SaT-T & WtP-U & SaT-U & C-R \\ +\midrule +SaT-Lora-T & - & 0.039 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.013 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +spacy-m & - & - & - & - & - & 0.002 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & 0.022 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & - & - & 0.009 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.985 +% WtP-T: 0.931 +% WtP-U: 0.89 +% C-R: 0.671 +% L-3: 0.954 +% SaT-SM: 0.98 +% SaT-T: 0.898 +% SaT-U: 0.872 +% SaT-Lora-T: 0.987 +% SaT-Lora-U: 0.987 +% spacy-dp: 0.939 +% spacy-m: 0.947 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ru_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ru_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..5b51d22bfaff10d0e42b82ee6be24eb96fa03f9f --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ru_f.tex @@ -0,0 +1,30 @@ +\begin{tabular}{lrrrrrrrrrrr} +\toprule + & WtP-P & SaT-Lora-T & SaT-SM & L-3 & WtP-T & WtP-U & SaT-T & SaT-U & spacy-m & spacy-dp & C-R \\ +\midrule +WtP-P & - & 0.129 & 0.055 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.622 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.270 & 0.005 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & 0.031 & 0.003 & 0.001 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & - & 0.100 & 0.017 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & - & 0.061 & 0.000 & 0.000 \\ +spacy-m & - & - & - & - & - & - & - & - & - & 0.005 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.963 +% WtP-T: 0.922 +% WtP-U: 0.912 +% C-R: 0.707 +% L-3: 0.928 +% SaT-SM: 0.956 +% SaT-T: 0.903 +% SaT-U: 0.9 +% SaT-Lora-T: 0.958 +% SaT-Lora-U: 0.954 +% spacy-dp: 0.872 +% spacy-m: 0.887 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/si_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/si_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..0ea4f1b375895559dc30748ac5dafee363dca196 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/si_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & SaT-SM & WtP-P & SaT-T & WtP-T & WtP-U & SaT-U & L-3 & C-R \\ +\midrule +SaT-Lora-T & - & 0.269 & 0.209 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & 0.903 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & 0.494 & 0.090 & 0.004 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & 0.123 & 0.044 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & 0.496 & 0.001 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.002 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.854 +% WtP-T: 0.801 +% WtP-U: 0.795 +% C-R: 0.086 +% L-3: 0.769 +% SaT-SM: 0.854 +% SaT-T: 0.804 +% SaT-U: 0.792 +% SaT-Lora-T: 0.859 +% SaT-Lora-U: 0.855 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/sk_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/sk_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..e360261c3e0e9342e994c83ff46c53239b60ac17 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/sk_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & WtP-P & SaT-Lora-T & SaT-SM & WtP-T & SaT-T & SaT-U & WtP-U & L-3 & spacy-m & C-R \\ +\midrule +WtP-P & - & 0.170 & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.025 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & 0.815 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & 0.412 & 0.160 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.439 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +spacy-m & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.97 +% WtP-T: 0.941 +% WtP-U: 0.929 +% C-R: 0.742 +% L-3: 0.925 +% SaT-SM: 0.962 +% SaT-T: 0.94 +% SaT-U: 0.931 +% SaT-Lora-T: 0.967 +% SaT-Lora-U: 0.964 +% spacy-m: 0.909 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/sl_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/sl_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..adeeb94a34940d374cf83a77c4f330d2d17b12b3 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/sl_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-SM & SaT-Lora-T & WtP-P & L-3 & SaT-T & WtP-T & SaT-U & WtP-U & C-R \\ +\midrule +SaT-SM & - & 0.761 & 0.106 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.168 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.021 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & 0.300 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.001 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.97 +% WtP-T: 0.945 +% WtP-U: 0.935 +% C-R: 0.696 +% L-3: 0.962 +% SaT-SM: 0.973 +% SaT-T: 0.949 +% SaT-U: 0.942 +% SaT-Lora-T: 0.972 +% SaT-Lora-U: 0.974 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/sq_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/sq_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..0f0e421938aa25642d972ed26d5e7432e18ce2b1 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/sq_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-SM & WtP-P & SaT-Lora-T & L-3 & SaT-T & WtP-T & SaT-U & WtP-U & C-R \\ +\midrule +SaT-SM & - & 0.447 & 0.221 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.899 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.013 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.001 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & 0.537 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.003 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.955 +% WtP-T: 0.899 +% WtP-U: 0.887 +% C-R: 0.593 +% L-3: 0.923 +% SaT-SM: 0.957 +% SaT-T: 0.911 +% SaT-U: 0.897 +% SaT-Lora-T: 0.955 +% SaT-Lora-U: 0.954 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/sr_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/sr_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..d82a8ccd3d9a0b7a3d5cb00e793e9dcd285a2a13 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/sr_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & WtP-P & SaT-Lora-T & SaT-SM & SaT-T & WtP-T & spacy-m & SaT-U & WtP-U & L-3 & C-R \\ +\midrule +WtP-P & - & 0.173 & 0.005 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.044 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & 0.899 & 0.850 & 0.050 & 0.077 & 0.046 & 0.000 \\ +WtP-T & - & - & - & - & - & 0.933 & 0.324 & 0.003 & 0.073 & 0.000 \\ +spacy-m & - & - & - & - & - & - & 0.491 & 0.288 & 0.039 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.532 & 0.217 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & 0.517 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.981 +% WtP-T: 0.963 +% WtP-U: 0.958 +% C-R: 0.746 +% L-3: 0.956 +% SaT-SM: 0.976 +% SaT-T: 0.963 +% SaT-U: 0.96 +% SaT-Lora-T: 0.979 +% SaT-Lora-U: 0.977 +% spacy-m: 0.962 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/sv_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/sv_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..80dfa3cc2dbb3e0777c8d94654bfdc4868b1f2df --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/sv_f.tex @@ -0,0 +1,30 @@ +\begin{tabular}{lrrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & L-3 & spacy-m & SaT-T & WtP-T & SaT-U & WtP-U & spacy-dp & C-R \\ +\midrule +SaT-Lora-T & - & 0.665 & 0.002 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.004 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.014 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.002 & 0.002 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +spacy-m & - & - & - & - & - & 0.964 & 0.490 & 0.011 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & 0.359 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & 0.012 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & - & 0.011 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.961 +% WtP-T: 0.937 +% WtP-U: 0.926 +% C-R: 0.749 +% L-3: 0.949 +% SaT-SM: 0.956 +% SaT-T: 0.939 +% SaT-U: 0.932 +% SaT-Lora-T: 0.962 +% SaT-Lora-U: 0.962 +% spacy-dp: 0.886 +% spacy-m: 0.939 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ta_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ta_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..a32543bbf5efda6685998a4b4aa5bfe631585bec --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ta_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & WtP-T & SaT-U & SaT-T & WtP-U & L-3 & C-R \\ +\midrule +SaT-Lora-T & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.892 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & 0.774 & 0.079 & 0.041 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & 0.033 & 0.084 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & 0.918 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.911 +% WtP-T: 0.86 +% WtP-U: 0.851 +% C-R: 0.011 +% L-3: 0.796 +% SaT-SM: 0.91 +% SaT-T: 0.851 +% SaT-U: 0.859 +% SaT-Lora-T: 0.93 +% SaT-Lora-U: 0.919 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/te_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/te_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..9041d495cdacf5d897b9c3f9ab86e1d61a808912 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/te_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & SaT-SM & SaT-Lora-T & WtP-P & WtP-T & WtP-U & SaT-U & SaT-T & L-3 & spacy-m & C-R \\ +\midrule +SaT-SM & - & 0.024 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & 0.928 & 0.100 & 0.012 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & 0.118 & 0.015 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & 0.055 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.021 & 0.000 \\ +spacy-m & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.836 +% WtP-T: 0.775 +% WtP-U: 0.774 +% C-R: 0.361 +% L-3: 0.659 +% SaT-SM: 0.868 +% SaT-T: 0.76 +% SaT-U: 0.765 +% SaT-Lora-T: 0.856 +% SaT-Lora-U: 0.854 +% spacy-m: 0.641 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/tg_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/tg_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..0ffd57c90df0ed26f0a79c0d808fda984d2fd523 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/tg_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-SM & SaT-Lora-T & WtP-P & WtP-T & SaT-T & WtP-U & SaT-U & L-3 & C-R \\ +\midrule +SaT-SM & - & 0.523 & 0.002 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.009 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & 0.090 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.013 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & 0.255 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.91 +% WtP-T: 0.827 +% WtP-U: 0.801 +% C-R: 0.549 +% L-3: 0.761 +% SaT-SM: 0.923 +% SaT-T: 0.817 +% SaT-U: 0.796 +% SaT-Lora-T: 0.921 +% SaT-Lora-U: 0.91 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/th_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/th_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..60a316cafb22068257e431934bde73f90e4464c5 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/th_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & SaT-SM & WtP-P & SaT-T & WtP-T & SaT-U & WtP-U & L-3 & C-R \\ +\midrule +SaT-Lora-T & - & 0.098 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & 0.004 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.257 & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & 0.037 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & 0.000 & 0.046 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.587 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.713 +% WtP-T: 0.697 +% WtP-U: 0.666 +% C-R: 0.106 +% L-3: 0.66 +% SaT-SM: 0.729 +% SaT-T: 0.707 +% SaT-U: 0.68 +% SaT-Lora-T: 0.737 +% SaT-Lora-U: 0.729 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/tr_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/tr_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..56f10f8fa389a2ab04205f7f0c1c7c3dc106016f --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/tr_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & WtP-P & SaT-Lora-T & SaT-SM & L-3 & SaT-T & SaT-U & WtP-T & WtP-U & C-R \\ +\midrule +WtP-P & - & 0.957 & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.005 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.002 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & 0.006 & 0.004 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & 0.873 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.973 +% WtP-T: 0.939 +% WtP-U: 0.939 +% C-R: 0.687 +% L-3: 0.952 +% SaT-SM: 0.969 +% SaT-T: 0.946 +% SaT-U: 0.943 +% SaT-Lora-T: 0.973 +% SaT-Lora-U: 0.974 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/uk_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/uk_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..9caed73dd4e46e4941d6e93e19f3ffd3bcea83e9 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/uk_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & WtP-P & SaT-Lora-T & SaT-SM & spacy-dp & L-3 & SaT-T & WtP-T & SaT-U & WtP-U & C-R \\ +\midrule +WtP-P & - & 1.000 & 0.030 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.021 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +spacy-dp & - & - & - & - & 0.747 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & 0.433 & 0.017 & 0.017 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & 0.860 & 0.012 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & - & 0.153 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.964 +% WtP-T: 0.906 +% WtP-U: 0.901 +% C-R: 0.71 +% L-3: 0.93 +% SaT-SM: 0.959 +% SaT-T: 0.908 +% SaT-U: 0.905 +% SaT-Lora-T: 0.964 +% SaT-Lora-U: 0.963 +% spacy-dp: 0.931 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ur_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ur_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..433b8adc55ec0ab0fc3e960f594d929735d66555 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/ur_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & SaT-T & SaT-U & WtP-T & WtP-U & L-3 & C-R \\ +\midrule +SaT-Lora-T & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & 0.500 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & 0.033 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & 0.125 & 0.167 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.903 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.829 +% WtP-T: 0.732 +% WtP-U: 0.724 +% C-R: 0.544 +% L-3: 0.723 +% SaT-SM: 0.799 +% SaT-T: 0.749 +% SaT-U: 0.745 +% SaT-Lora-T: 0.857 +% SaT-Lora-U: 0.841 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/uz_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/uz_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..6d87090f03377ed56380c9fc0941eaa1280d8c58 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/uz_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & WtP-T & SaT-T & WtP-U & SaT-U & L-3 & C-R \\ +\midrule +SaT-Lora-T & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.920 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.833 & 0.572 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & 0.817 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.85 +% WtP-T: 0.789 +% WtP-U: 0.764 +% C-R: 0.448 +% L-3: 0.674 +% SaT-SM: 0.849 +% SaT-T: 0.765 +% SaT-U: 0.763 +% SaT-Lora-T: 0.876 +% SaT-Lora-U: 0.873 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/vi_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/vi_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..1ef2b6b838371ce8c486a9a48afaa4941a13b564 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/vi_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & SaT-SM & SaT-Lora-T & WtP-P & L-3 & SaT-T & spacy-m & WtP-T & SaT-U & WtP-U & C-R \\ +\midrule +SaT-SM & - & 0.950 & 0.775 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.854 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.663 & 0.000 & 0.000 & 0.000 & 0.000 \\ +spacy-m & - & - & - & - & - & - & 0.007 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & 0.006 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.971 +% WtP-T: 0.92 +% WtP-U: 0.893 +% C-R: 0.848 +% L-3: 0.957 +% SaT-SM: 0.971 +% SaT-T: 0.932 +% SaT-U: 0.909 +% SaT-Lora-T: 0.971 +% SaT-Lora-U: 0.971 +% spacy-m: 0.931 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/xh_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/xh_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..f086fdda806a01c98ea7ec23f9d2013b8ac2ffd0 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/xh_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & WtP-T & SaT-U & SaT-T & WtP-U & L-3 & C-R \\ +\midrule +SaT-Lora-T & - & 0.016 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.632 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & 0.500 & 0.472 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & 0.751 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.898 +% WtP-T: 0.807 +% WtP-U: 0.772 +% C-R: 0.561 +% L-3: 0.717 +% SaT-SM: 0.896 +% SaT-T: 0.803 +% SaT-U: 0.803 +% SaT-Lora-T: 0.908 +% SaT-Lora-U: 0.907 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/yi_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/yi_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..d0bd4e3a217fae0794be5c987b2bc8a45a0d6f80 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/yi_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-SM & SaT-Lora-T & WtP-P & WtP-T & WtP-U & SaT-T & SaT-U & L-3 & C-R \\ +\midrule +SaT-SM & - & 0.002 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & 0.132 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & 0.002 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.807 +% WtP-T: 0.739 +% WtP-U: 0.73 +% C-R: 0.083 +% L-3: 0.136 +% SaT-SM: 0.89 +% SaT-T: 0.702 +% SaT-U: 0.611 +% SaT-Lora-T: 0.866 +% SaT-Lora-U: 0.831 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/zh_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/zh_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..2f66b17c72f128d9ceb24672c7b4c27dce320b99 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/zh_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & WtP-P & SaT-Lora-T & WtP-U & WtP-T & SaT-SM & spacy-dp & SaT-T & L-3 & SaT-U & C-R \\ +\midrule +WtP-P & - & 0.014 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & 0.241 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & - & - & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & - & 0.023 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.955 +% WtP-T: 0.893 +% WtP-U: 0.907 +% C-R: 0.737 +% L-3: 0.82 +% SaT-SM: 0.889 +% SaT-T: 0.831 +% SaT-U: 0.78 +% SaT-Lora-T: 0.949 +% SaT-Lora-U: 0.95 +% spacy-dp: 0.877 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/zu_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/zu_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..5c519fad16af591cb6ceebb1aff3c13406794d55 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/main_table_mean/zu_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-SM & SaT-Lora-T & WtP-P & SaT-T & WtP-T & SaT-U & WtP-U & L-3 & C-R \\ +\midrule +SaT-SM & - & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.002 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & 0.003 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & 0.134 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.906 +% WtP-T: 0.831 +% WtP-U: 0.727 +% C-R: 0.349 +% L-3: 0.425 +% SaT-SM: 0.933 +% SaT-T: 0.848 +% SaT-U: 0.821 +% SaT-Lora-T: 0.92 +% SaT-Lora-U: 0.919 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/af_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/af_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..f8339f3cc464579183a41507bd0c591a9367e850 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/af_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & SaT-T & SaT-U & WtP-T & WtP-U & L-3 & C-R & spacy-m \\ +\midrule +SaT-Lora-T & - & 0.173 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.004 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & 0.002 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & 0.003 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & 0.002 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & 0.000 \\ +spacy-m & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.878 +% WtP-T: 0.764 +% WtP-U: 0.746 +% C-R: 0.558 +% L-3: 0.654 +% SaT-SM: 0.862 +% SaT-T: 0.799 +% SaT-U: 0.784 +% SaT-Lora-T: 0.885 +% SaT-Lora-U: 0.885 +% spacy-m: 0.419 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/am_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/am_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..f1b614d6779d4c3a76d06005401bd48196df2822 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/am_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & SaT-Lora-T & SaT-SM & WtP-P & WtP-T & SaT-T & WtP-U & SaT-U & L-3 & C-R & pysbd \\ +\midrule +SaT-Lora-T & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & 0.743 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.157 & 0.041 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & 0.590 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & 0.522 \\ +pysbd & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.705 +% WtP-T: 0.637 +% WtP-U: 0.582 +% C-R: 0.066 +% L-3: 0.362 +% SaT-SM: 0.708 +% SaT-T: 0.591 +% SaT-U: 0.58 +% SaT-Lora-T: 0.759 +% SaT-Lora-U: 0.675 +% pysbd: 0.059 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ar_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ar_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..139b4a55498f2024fc6e94e98282a969c1595ca5 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ar_f.tex @@ -0,0 +1,30 @@ +\begin{tabular}{lrrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-T & SaT-U & SaT-SM & WtP-T & WtP-U & L-3 & ersatz & C-R & pysbd \\ +\midrule +SaT-Lora-T & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & 0.938 & 0.041 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & 0.026 & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & - & - & 0.540 & 0.428 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & 0.463 & 0.021 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.027 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +ersatz & - & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - & 0.000 \\ +pysbd & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.761 +% WtP-T: 0.646 +% WtP-U: 0.645 +% C-R: 0.445 +% L-3: 0.622 +% SaT-SM: 0.652 +% SaT-T: 0.67 +% SaT-U: 0.67 +% SaT-Lora-T: 0.791 +% SaT-Lora-U: 0.794 +% pysbd: 0.38 +% ersatz: 0.592 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/az_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/az_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..44bba3c5bc8ddb7864e7c24e4183458f95531e9e --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/az_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-SM & SaT-Lora-T & WtP-P & L-3 & SaT-U & WtP-U & WtP-T & SaT-T & C-R \\ +\midrule +SaT-SM & - & 0.656 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.005 & 0.004 & 0.002 & 0.001 & 0.000 \\ +SaT-U & - & - & - & - & - & 0.798 & 0.453 & 0.356 & 0.000 \\ +WtP-U & - & - & - & - & - & - & 0.607 & 0.531 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & 0.857 & 0.000 \\ +SaT-T & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.83 +% WtP-T: 0.746 +% WtP-U: 0.749 +% C-R: 0.605 +% L-3: 0.768 +% SaT-SM: 0.853 +% SaT-T: 0.745 +% SaT-U: 0.75 +% SaT-Lora-T: 0.85 +% SaT-Lora-U: 0.817 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/be_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/be_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..eb00821b4cb71f5005436158166ab7e99c1ded51 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/be_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & WtP-T & WtP-U & SaT-T & SaT-U & L-3 & C-R \\ +\midrule +SaT-Lora-T & - & 0.537 & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.025 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & 0.032 & 0.007 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & 0.179 & 0.033 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & 0.037 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.891 +% WtP-T: 0.725 +% WtP-U: 0.717 +% C-R: 0.361 +% L-3: 0.545 +% SaT-SM: 0.878 +% SaT-T: 0.709 +% SaT-U: 0.704 +% SaT-Lora-T: 0.894 +% SaT-Lora-U: 0.892 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/bg_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/bg_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..95735c85f36753d0f87911ab0ac3cde11488f5de --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/bg_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & L-3 & SaT-U & SaT-T & WtP-U & WtP-T & pysbd & C-R \\ +\midrule +SaT-Lora-T & - & 0.183 & 0.108 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 1.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.001 & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & 0.180 & 0.215 & 0.005 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & 0.447 & 0.019 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.001 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +pysbd & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.962 +% WtP-T: 0.928 +% WtP-U: 0.932 +% C-R: 0.579 +% L-3: 0.946 +% SaT-SM: 0.962 +% SaT-T: 0.934 +% SaT-U: 0.935 +% SaT-Lora-T: 0.964 +% SaT-Lora-U: 0.962 +% pysbd: 0.729 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/bn_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/bn_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..f3ae7492572dec75a569b5fcf9c2e19529dd19fd --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/bn_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & WtP-T & SaT-T & SaT-U & L-3 & WtP-U & C-R \\ +\midrule +SaT-Lora-T & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.453 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & 0.845 & 0.001 & 0.001 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.000 & 0.001 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & 0.377 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & 0.006 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.865 +% WtP-T: 0.821 +% WtP-U: 0.779 +% C-R: 0.048 +% L-3: 0.8 +% SaT-SM: 0.861 +% SaT-T: 0.82 +% SaT-U: 0.805 +% SaT-Lora-T: 0.886 +% SaT-Lora-U: 0.888 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ca_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ca_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..e402f90ce56345cbcdaa6fa63bcb5d6ec92f6c7b --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ca_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & L-3 & SaT-T & WtP-T & SaT-U & WtP-U & spacy-dp & C-R \\ +\midrule +SaT-Lora-T & - & 0.016 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.006 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.004 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & 0.007 & 0.000 & 0.014 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.919 & 0.476 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & 0.526 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.94 +% WtP-T: 0.886 +% WtP-U: 0.877 +% C-R: 0.66 +% L-3: 0.909 +% SaT-SM: 0.93 +% SaT-T: 0.896 +% SaT-U: 0.877 +% SaT-Lora-T: 0.946 +% SaT-Lora-U: 0.944 +% spacy-dp: 0.873 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/cs_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/cs_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..8289319172d4624237c77973c9425374aea7a4a0 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/cs_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & SaT-T & WtP-T & SaT-U & WtP-U & spacy-m & ersatz \\ +\midrule +SaT-Lora-T & - & 0.642 & 0.002 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.045 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & 0.415 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & 0.034 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & 0.000 & 0.002 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.774 & 0.175 \\ +spacy-m & - & - & - & - & - & - & - & - & 0.114 \\ +ersatz & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.949 +% WtP-T: 0.9 +% WtP-U: 0.875 +% SaT-SM: 0.943 +% SaT-T: 0.903 +% SaT-U: 0.892 +% SaT-Lora-T: 0.95 +% SaT-Lora-U: 0.95 +% spacy-m: 0.873 +% ersatz: 0.865 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/cy_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/cy_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..7a3049adbda27943feacf4b479960004658faf49 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/cy_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & WtP-T & SaT-T & SaT-U & WtP-U & L-3 & C-R \\ +\midrule +SaT-Lora-T & - & 0.002 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.069 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & 0.763 & 0.007 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.002 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & 0.001 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.81 +% WtP-T: 0.742 +% WtP-U: 0.687 +% C-R: 0.398 +% L-3: 0.463 +% SaT-SM: 0.796 +% SaT-T: 0.74 +% SaT-U: 0.72 +% SaT-Lora-T: 0.83 +% SaT-Lora-U: 0.831 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/da_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/da_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..e024a874c56fb2a3f8a5d0c48624ff6b788e7330 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/da_f.tex @@ -0,0 +1,32 @@ +\begin{tabular}{lrrrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & L-3 & SaT-T & SaT-U & spacy-m & spacy-dp & WtP-T & WtP-U & C-R & pysbd \\ +\midrule +SaT-Lora-T & - & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.023 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.034 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.014 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & 0.179 & 0.146 & 0.017 & 0.000 & 0.000 & 0.000 \\ +spacy-m & - & - & - & - & - & - & - & 0.987 & 0.841 & 0.000 & 0.000 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & - & - & 0.834 & 0.001 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - & - & 0.000 \\ +pysbd & - & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.945 +% WtP-T: 0.901 +% WtP-U: 0.882 +% C-R: 0.754 +% L-3: 0.932 +% SaT-SM: 0.94 +% SaT-T: 0.921 +% SaT-U: 0.909 +% SaT-Lora-T: 0.952 +% SaT-Lora-U: 0.952 +% spacy-dp: 0.902 +% spacy-m: 0.902 +% pysbd: 0.702 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/de_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/de_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..5b291cfafee0ad76f71a31bde9b56bcdd213798f --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/de_f.tex @@ -0,0 +1,34 @@ +\begin{tabular}{lrrrrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & WtP-T & L-3 & SaT-T & SaT-U & WtP-U & C-R & spacy-dp & ersatz & spacy-m & pysbd \\ +\midrule +SaT-Lora-T & - & 0.098 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & 0.237 & 0.018 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & 0.733 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.001 & 0.037 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & 0.613 & 0.001 & 0.001 & 0.000 & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & 0.034 & 0.005 & 0.002 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & - & - & - & - & 0.242 & 0.139 & 0.000 \\ +ersatz & - & - & - & - & - & - & - & - & - & - & - & 0.726 & 0.000 \\ +spacy-m & - & - & - & - & - & - & - & - & - & - & - & - & 0.000 \\ +pysbd & - & - & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.894 +% WtP-T: 0.846 +% WtP-U: 0.767 +% C-R: 0.762 +% L-3: 0.838 +% SaT-SM: 0.869 +% SaT-T: 0.836 +% SaT-U: 0.782 +% SaT-Lora-T: 0.901 +% SaT-Lora-U: 0.902 +% spacy-dp: 0.74 +% spacy-m: 0.729 +% pysbd: 0.665 +% ersatz: 0.731 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/el_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/el_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..48067ecdbd23b3d389118b97dd7cce666ad65d2d --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/el_f.tex @@ -0,0 +1,30 @@ +\begin{tabular}{lrrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & L-3 & SaT-T & SaT-U & WtP-T & spacy-dp & WtP-U & C-R & pysbd \\ +\midrule +SaT-Lora-T & - & 0.289 & 0.261 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.984 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & 0.581 & 0.031 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & 0.071 & 0.000 & 0.000 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & - & - & 0.805 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - & 0.103 \\ +pysbd & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.959 +% WtP-T: 0.919 +% WtP-U: 0.909 +% C-R: 0.651 +% L-3: 0.943 +% SaT-SM: 0.959 +% SaT-T: 0.93 +% SaT-U: 0.92 +% SaT-Lora-T: 0.961 +% SaT-Lora-U: 0.961 +% spacy-dp: 0.911 +% pysbd: 0.627 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/en_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/en_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..b130763961aa855c23dd27febfd631001e8edf3b --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/en_f.tex @@ -0,0 +1,34 @@ +\begin{tabular}{lrrrrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & L-3 & WtP-U & SaT-U & SaT-T & C-R & WtP-T & spacy-dp & spacy-m & ersatz & pysbd \\ +\midrule +SaT-Lora-T & - & 0.837 & 0.346 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.550 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & 0.409 & 0.001 & 0.057 & 0.000 & 0.001 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & 0.000 & 0.132 & 0.010 & 0.001 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & - & 0.985 & 0.897 & 0.382 & 0.189 & 0.001 & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & 0.961 & 0.465 & 0.286 & 0.003 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & - & - & 0.463 & 0.254 & 0.002 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & - & - & - & - & 0.540 & 0.000 & 0.000 \\ +spacy-m & - & - & - & - & - & - & - & - & - & - & - & 0.002 & 0.000 \\ +ersatz & - & - & - & - & - & - & - & - & - & - & - & - & 0.000 \\ +pysbd & - & - & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.947 +% WtP-T: 0.894 +% WtP-U: 0.906 +% C-R: 0.895 +% L-3: 0.928 +% SaT-SM: 0.946 +% SaT-T: 0.895 +% SaT-U: 0.904 +% SaT-Lora-T: 0.948 +% SaT-Lora-U: 0.949 +% spacy-dp: 0.89 +% spacy-m: 0.888 +% pysbd: 0.596 +% ersatz: 0.876 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/eo_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/eo_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..8d6acfea59dd94aeb10f815969823f9b59e41c29 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/eo_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & L-3 & WtP-U & WtP-T & SaT-U & SaT-T & C-R \\ +\midrule +SaT-Lora-T & - & 0.197 & 0.006 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.346 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.187 & 0.033 & 0.005 & 0.005 & 0.000 \\ +WtP-U & - & - & - & - & - & 0.005 & 0.066 & 0.071 & 0.000 \\ +WtP-T & - & - & - & - & - & - & 0.621 & 0.611 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 1.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.954 +% WtP-T: 0.905 +% WtP-U: 0.909 +% C-R: 0.846 +% L-3: 0.916 +% SaT-SM: 0.952 +% SaT-T: 0.903 +% SaT-U: 0.903 +% SaT-Lora-T: 0.958 +% SaT-Lora-U: 0.957 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/es_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/es_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..8a7c3a6e6ba16cd0c22b2fb05ad37a91348f99e0 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/es_f.tex @@ -0,0 +1,34 @@ +\begin{tabular}{lrrrrrrrrrrrrr} +\toprule + & SaT-Lora-T & SaT-SM & WtP-P & L-3 & SaT-T & WtP-T & SaT-U & spacy-m & ersatz & WtP-U & spacy-dp & C-R & pysbd \\ +\midrule +SaT-Lora-T & - & 0.005 & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & 0.305 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.004 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & 0.380 & 0.044 & 0.011 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.149 & 0.044 & 0.001 & 0.000 & 0.000 & 0.000 \\ +spacy-m & - & - & - & - & - & - & - & - & 0.294 & 0.452 & 0.000 & 0.000 & 0.000 \\ +ersatz & - & - & - & - & - & - & - & - & - & 0.986 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & - & - & 0.003 & 0.000 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - & - & - & 0.000 \\ +pysbd & - & - & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.95 +% WtP-T: 0.914 +% WtP-U: 0.899 +% C-R: 0.801 +% L-3: 0.936 +% SaT-SM: 0.953 +% SaT-T: 0.923 +% SaT-U: 0.911 +% SaT-Lora-T: 0.958 +% SaT-Lora-U: 0.957 +% spacy-dp: 0.88 +% spacy-m: 0.904 +% pysbd: 0.676 +% ersatz: 0.9 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/et_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/et_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..576d1baff19465f28bddee554177cca88d966a07 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/et_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & SaT-T & L-3 & WtP-T & ersatz & SaT-U & WtP-U & C-R \\ +\midrule +SaT-Lora-T & - & 0.634 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & 0.598 & 0.000 & 0.003 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & 0.036 & 0.006 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & 0.690 & 0.000 & 0.000 & 0.000 \\ +ersatz & - & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.946 +% WtP-T: 0.877 +% WtP-U: 0.825 +% C-R: 0.672 +% L-3: 0.89 +% SaT-SM: 0.93 +% SaT-T: 0.893 +% SaT-U: 0.846 +% SaT-Lora-T: 0.947 +% SaT-Lora-U: 0.944 +% ersatz: 0.874 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/eu_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/eu_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..1815ea95b92ceace2a4a95f030d8dbc3ee43b4b9 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/eu_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & WtP-T & SaT-T & L-3 & WtP-U & SaT-U & C-R \\ +\midrule +SaT-Lora-T & - & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & 0.003 & 0.032 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.883 & 0.648 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & 0.863 & 0.001 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.916 +% WtP-T: 0.86 +% WtP-U: 0.844 +% C-R: 0.578 +% L-3: 0.845 +% SaT-SM: 0.9 +% SaT-T: 0.846 +% SaT-U: 0.822 +% SaT-Lora-T: 0.928 +% SaT-Lora-U: 0.929 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/fa_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/fa_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..442b1bc6112150ecc1c34133733fe777c1f1523d --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/fa_f.tex @@ -0,0 +1,30 @@ +\begin{tabular}{lrrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & L-3 & SaT-SM & WtP-U & WtP-T & SaT-T & SaT-U & spacy-m & C-R & pysbd \\ +\midrule +SaT-Lora-T & - & 0.036 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & 0.654 & 0.360 & 0.256 & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & - & 0.543 & 0.391 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & 0.564 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & - & 0.787 & 0.009 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & - & 0.002 & 0.000 & 0.000 \\ +spacy-m & - & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - & 0.277 \\ +pysbd & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.727 +% WtP-T: 0.593 +% WtP-U: 0.596 +% C-R: 0.429 +% L-3: 0.604 +% SaT-SM: 0.601 +% SaT-T: 0.569 +% SaT-U: 0.568 +% SaT-Lora-T: 0.741 +% SaT-Lora-U: 0.745 +% spacy-m: 0.545 +% pysbd: 0.413 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/fi_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/fi_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..ba82bedcbd6f224bd764447e3cf6e5d5ab1affda --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/fi_f.tex @@ -0,0 +1,32 @@ +\begin{tabular}{lrrrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & L-3 & spacy-m & ersatz & SaT-T & WtP-T & spacy-dp & SaT-U & WtP-U & C-R \\ +\midrule +SaT-Lora-T & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.243 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.005 & 0.003 & 0.001 & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 \\ +spacy-m & - & - & - & - & - & 0.718 & 0.480 & 0.385 & 0.031 & 0.001 & 0.000 & 0.000 \\ +ersatz & - & - & - & - & - & - & 0.764 & 0.639 & 0.136 & 0.005 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & - & 0.793 & 0.228 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & - & 0.311 & 0.000 & 0.000 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & - & - & - & 0.054 & 0.002 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & - & - & - & 0.138 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.955 +% WtP-T: 0.925 +% WtP-U: 0.908 +% C-R: 0.684 +% L-3: 0.939 +% SaT-SM: 0.953 +% SaT-T: 0.926 +% SaT-U: 0.913 +% SaT-Lora-T: 0.963 +% SaT-Lora-U: 0.964 +% spacy-dp: 0.921 +% spacy-m: 0.929 +% ersatz: 0.927 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/fr_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/fr_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..3c89788f48a9c54494e551b1175762bd76d1363c --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/fr_f.tex @@ -0,0 +1,27 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & SaT-SM & L-3 & SaT-U & WtP-U & ersatz & nltk & spacy-m & spacy-dp & pysbd & C-R \\ +\midrule +SaT-SM & - & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & 0.182 & 0.084 & 0.017 & 0.001 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & 0.346 & 0.136 & 0.011 & 0.000 & 0.000 & 0.000 \\ +ersatz & - & - & - & - & - & 0.274 & 0.025 & 0.001 & 0.000 & 0.000 \\ +nltk & - & - & - & - & - & - & 0.111 & 0.002 & 0.000 & 0.000 \\ +spacy-m & - & - & - & - & - & - & - & 0.105 & 0.000 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +pysbd & - & - & - & - & - & - & - & - & - & 0.964 \\ +C-R & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-U: 0.868 +% C-R: 0.808 +% L-3: 0.914 +% SaT-SM: 0.926 +% SaT-U: 0.873 +% spacy-dp: 0.841 +% spacy-m: 0.851 +% pysbd: 0.809 +% ersatz: 0.861 +% nltk: 0.858 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/fy_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/fy_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..25c23bf3320051fc7d4095183b2d1d84750625f6 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/fy_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-SM & SaT-Lora-T & WtP-P & SaT-T & SaT-U & WtP-T & WtP-U & L-3 & C-R \\ +\midrule +SaT-SM & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.207 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.161 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.881 +% WtP-T: 0.61 +% WtP-U: 0.444 +% C-R: 0.306 +% L-3: 0.424 +% SaT-SM: 0.91 +% SaT-T: 0.677 +% SaT-U: 0.649 +% SaT-Lora-T: 0.888 +% SaT-Lora-U: 0.888 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ga_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ga_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..e94e987df71f2a4c8ec206eb65ea5d5c14766d34 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ga_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-U & SaT-T & SaT-SM & WtP-U & WtP-T & L-3 & spacy-m & C-R \\ +\midrule +SaT-Lora-T & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & 0.017 & 0.066 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & 0.212 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & - & - & 0.003 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +spacy-m & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.875 +% WtP-T: 0.773 +% WtP-U: 0.778 +% C-R: 0.559 +% L-3: 0.713 +% SaT-SM: 0.808 +% SaT-T: 0.818 +% SaT-U: 0.823 +% SaT-Lora-T: 0.906 +% SaT-Lora-U: 0.91 +% spacy-m: 0.61 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/gd_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/gd_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..534d8bc49f9bee40e7c07fe6da7c30e91f638183 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/gd_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & WtP-T & WtP-U & SaT-T & SaT-SM & SaT-U & L-3 & C-R \\ +\midrule +SaT-Lora-T & - & 0.002 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & 0.796 & 0.423 & 0.223 & 0.005 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & 0.568 & 0.267 & 0.008 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.487 & 0.002 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & - & - & - & 0.302 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.927 +% WtP-T: 0.837 +% WtP-U: 0.835 +% C-R: 0.505 +% L-3: 0.628 +% SaT-SM: 0.825 +% SaT-T: 0.831 +% SaT-U: 0.816 +% SaT-Lora-T: 0.945 +% SaT-Lora-U: 0.935 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/gl_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/gl_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..ba962682f09a727f7bdf4a0cac2d2a22e8240b90 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/gl_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & L-3 & WtP-T & SaT-T & WtP-U & SaT-U & C-R \\ +\midrule +SaT-Lora-T & - & 0.006 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.017 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & 0.771 & 0.000 & 0.006 & 0.000 \\ +SaT-T & - & - & - & - & - & - & 0.384 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.111 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.939 +% WtP-T: 0.889 +% WtP-U: 0.885 +% C-R: 0.716 +% L-3: 0.908 +% SaT-SM: 0.931 +% SaT-T: 0.888 +% SaT-U: 0.879 +% SaT-Lora-T: 0.946 +% SaT-Lora-U: 0.944 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/gu_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/gu_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..917d058d97321535f0d031b8cbfae3993528eff1 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/gu_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & SaT-SM & SaT-Lora-T & WtP-P & SaT-T & SaT-U & WtP-T & WtP-U & L-3 & ersatz & C-R \\ +\midrule +SaT-SM & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & 0.613 & 0.007 & 0.001 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & 0.013 & 0.002 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & 0.367 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +ersatz & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.765 +% WtP-T: 0.696 +% WtP-U: 0.692 +% C-R: 0.167 +% L-3: 0.33 +% SaT-SM: 0.834 +% SaT-T: 0.716 +% SaT-U: 0.715 +% SaT-Lora-T: 0.805 +% SaT-Lora-U: 0.797 +% ersatz: 0.212 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ha_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ha_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..88984b681bb889fad427db9e5cdb2f35ddbb8c0b --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ha_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & WtP-P & SaT-SM & SaT-Lora-T & WtP-T & SaT-T & L-3 & SaT-U & WtP-U & C-R \\ +\midrule +WtP-P & - & 0.832 & 0.327 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & 0.401 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & 0.143 & 0.073 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.512 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.001 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.915 +% WtP-T: 0.889 +% WtP-U: 0.828 +% C-R: 0.658 +% L-3: 0.881 +% SaT-SM: 0.914 +% SaT-T: 0.884 +% SaT-U: 0.838 +% SaT-Lora-T: 0.91 +% SaT-Lora-U: 0.894 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/he_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/he_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..40b3c323dc941b6c9b71dc2a7f9bb5c6ef1dee2f --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/he_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & L-3 & SaT-T & WtP-U & WtP-T & SaT-U & C-R \\ +\midrule +SaT-Lora-T & - & 0.175 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.203 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.150 & 0.003 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.003 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & 0.000 & 0.002 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & 0.883 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.938 +% WtP-T: 0.894 +% WtP-U: 0.902 +% C-R: 0.627 +% L-3: 0.916 +% SaT-SM: 0.922 +% SaT-T: 0.91 +% SaT-U: 0.894 +% SaT-Lora-T: 0.941 +% SaT-Lora-U: 0.941 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/hi_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/hi_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..7cec8c5041b562e4520828a4d99b6fb965ddd4fe --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/hi_f.tex @@ -0,0 +1,30 @@ +\begin{tabular}{lrrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & WtP-U & WtP-T & SaT-U & SaT-T & L-3 & ersatz & C-R & pysbd \\ +\midrule +SaT-Lora-T & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & 0.004 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & 0.026 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & 0.000 & 0.001 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & - & 0.411 & 0.013 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.038 & 0.000 & 0.000 \\ +ersatz & - & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - & 0.000 \\ +pysbd & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.763 +% WtP-T: 0.643 +% WtP-U: 0.651 +% C-R: 0.393 +% L-3: 0.596 +% SaT-SM: 0.728 +% SaT-T: 0.604 +% SaT-U: 0.629 +% SaT-Lora-T: 0.815 +% SaT-Lora-U: 0.812 +% pysbd: 0.23 +% ersatz: 0.58 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/hu_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/hu_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..706eaa4f203dc4e5a5015eae3b9bfc64bbdec643 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/hu_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & L-3 & SaT-T & SaT-U & WtP-T & WtP-U & C-R \\ +\midrule +SaT-Lora-T & - & 0.467 & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.028 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.105 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & 0.406 & 0.007 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.962 +% WtP-T: 0.921 +% WtP-U: 0.916 +% C-R: 0.626 +% L-3: 0.942 +% SaT-SM: 0.958 +% SaT-T: 0.935 +% SaT-U: 0.923 +% SaT-Lora-T: 0.963 +% SaT-Lora-U: 0.963 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/hy_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/hy_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..92d0c2456e8752a9e6d63a2178eb6b9c4ebae24c --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/hy_f.tex @@ -0,0 +1,19 @@ +\begin{tabular}{lrrrrrr} +\toprule + & SaT-SM & SaT-U & WtP-U & L-3 & pysbd & C-R \\ +\midrule +SaT-SM & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & 0.480 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.000 & 0.000 \\ +pysbd & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-U: 0.851 +% C-R: 0.467 +% L-3: 0.731 +% SaT-SM: 0.906 +% SaT-U: 0.853 +% pysbd: 0.584 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/id_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/id_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..23b77be7d104df67e699b2ebe754c6f5da8fa409 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/id_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & L-3 & spacy-m & WtP-T & WtP-U & SaT-T & SaT-U & C-R \\ +\midrule +SaT-Lora-T & - & 0.589 & 0.105 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.419 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.002 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +spacy-m & - & - & - & - & - & 0.950 & 0.210 & 0.151 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & 0.003 & 0.025 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.835 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.939 +% WtP-T: 0.895 +% WtP-U: 0.889 +% C-R: 0.713 +% L-3: 0.923 +% SaT-SM: 0.937 +% SaT-T: 0.889 +% SaT-U: 0.866 +% SaT-Lora-T: 0.941 +% SaT-Lora-U: 0.939 +% spacy-m: 0.896 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ig_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ig_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..eb342db8990eabc9b1b02a153296cffdf96913e1 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ig_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & SaT-SM & WtP-P & SaT-T & WtP-T & SaT-U & WtP-U & L-3 & C-R \\ +\midrule +SaT-Lora-T & - & 0.712 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & 0.107 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & 0.546 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.902 +% WtP-T: 0.821 +% WtP-U: 0.786 +% C-R: 0.28 +% L-3: 0.393 +% SaT-SM: 0.921 +% SaT-T: 0.833 +% SaT-U: 0.817 +% SaT-Lora-T: 0.923 +% SaT-Lora-U: 0.923 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/is_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/is_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..bcf6ee631780603e98dfc2fa8707748c97c71054 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/is_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & L-3 & SaT-T & WtP-T & WtP-U & SaT-U & C-R \\ +\midrule +SaT-Lora-T & - & 0.860 & 0.352 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.669 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.029 & 0.020 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.722 & 0.029 & 0.002 & 0.000 \\ +WtP-T & - & - & - & - & - & - & 0.000 & 0.003 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.484 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.966 +% WtP-T: 0.944 +% WtP-U: 0.939 +% C-R: 0.777 +% L-3: 0.951 +% SaT-SM: 0.965 +% SaT-T: 0.945 +% SaT-U: 0.937 +% SaT-Lora-T: 0.966 +% SaT-Lora-U: 0.966 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/it_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/it_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..2eaec6630857102669869ced9a4c230045053b28 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/it_f.tex @@ -0,0 +1,32 @@ +\begin{tabular}{lrrrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & L-3 & SaT-T & WtP-T & SaT-U & spacy-m & spacy-dp & WtP-U & C-R & pysbd \\ +\midrule +SaT-Lora-T & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.616 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.006 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.005 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.056 & 0.005 & 0.000 & 0.000 & 0.000 \\ +spacy-m & - & - & - & - & - & - & - & - & 0.352 & 0.108 & 0.000 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & - & - & - & 0.322 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - & - & 0.000 \\ +pysbd & - & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.934 +% WtP-T: 0.884 +% WtP-U: 0.846 +% C-R: 0.786 +% L-3: 0.907 +% SaT-SM: 0.909 +% SaT-T: 0.894 +% SaT-U: 0.87 +% SaT-Lora-T: 0.943 +% SaT-Lora-U: 0.943 +% spacy-dp: 0.853 +% spacy-m: 0.858 +% pysbd: 0.702 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ja_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ja_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..0f9dfeac70747f556e456c87b939b4d70faabf54 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ja_f.tex @@ -0,0 +1,32 @@ +\begin{tabular}{lrrrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-T & SaT-U & WtP-T & SaT-SM & WtP-U & pysbd & spacy-dp & ersatz & L-3 & C-R \\ +\midrule +SaT-Lora-T & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & 0.093 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.326 & 0.091 & 0.000 & 0.000 & 0.000 \\ +pysbd & - & - & - & - & - & - & - & - & 0.002 & 0.000 & 0.000 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +ersatz & - & - & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & - & - & - & 0.001 \\ +C-R & - & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.867 +% WtP-T: 0.795 +% WtP-U: 0.446 +% C-R: 0.06 +% L-3: 0.09 +% SaT-SM: 0.78 +% SaT-T: 0.846 +% SaT-U: 0.831 +% SaT-Lora-T: 0.905 +% SaT-Lora-U: 0.905 +% spacy-dp: 0.426 +% pysbd: 0.434 +% ersatz: 0.288 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ka_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ka_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..406db6a4d178c4ba43dc4364b3f93e9da263e8e4 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ka_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-SM & SaT-Lora-T & WtP-P & WtP-U & WtP-T & L-3 & SaT-T & SaT-U & C-R \\ +\midrule +SaT-SM & - & 0.078 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.012 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & 0.150 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.928 +% WtP-T: 0.911 +% WtP-U: 0.913 +% C-R: 0.256 +% L-3: 0.892 +% SaT-SM: 0.936 +% SaT-T: 0.839 +% SaT-U: 0.757 +% SaT-Lora-T: 0.933 +% SaT-Lora-U: 0.934 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/kk_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/kk_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..c7f37bd4fddb465b5c5c5d879148a5b018306385 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/kk_f.tex @@ -0,0 +1,30 @@ +\begin{tabular}{lrrrrrrrrrrr} +\toprule + & SaT-SM & SaT-Lora-T & WtP-P & SaT-U & SaT-T & WtP-T & WtP-U & L-3 & ersatz & pysbd & C-R \\ +\midrule +SaT-SM & - & 0.756 & 0.744 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.962 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & 0.064 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +ersatz & - & - & - & - & - & - & - & - & - & 0.000 & 0.004 \\ +pysbd & - & - & - & - & - & - & - & - & - & - & 0.280 \\ +C-R & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.921 +% WtP-T: 0.749 +% WtP-U: 0.734 +% C-R: 0.345 +% L-3: 0.564 +% SaT-SM: 0.922 +% SaT-T: 0.799 +% SaT-U: 0.803 +% SaT-Lora-T: 0.921 +% SaT-Lora-U: 0.922 +% pysbd: 0.357 +% ersatz: 0.379 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/km_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/km_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..b5c6e0b65d94d257970b9e1ba52d6c29451caa17 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/km_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & SaT-Lora-T & SaT-SM & WtP-P & WtP-U & WtP-T & SaT-U & SaT-T & L-3 & C-R & ersatz \\ +\midrule +SaT-Lora-T & - & 0.017 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & 0.184 & 0.070 & 0.004 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & 0.375 & 0.043 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & 0.064 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & 0.000 \\ +ersatz & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.79 +% WtP-T: 0.711 +% WtP-U: 0.718 +% C-R: 0.043 +% L-3: 0.099 +% SaT-SM: 0.866 +% SaT-T: 0.695 +% SaT-U: 0.704 +% SaT-Lora-T: 0.878 +% SaT-Lora-U: 0.87 +% ersatz: 0.0 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/kn_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/kn_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..0d132ae43ce6e9f79a0d58c2586645997250cb4c --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/kn_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-SM & SaT-Lora-T & WtP-P & SaT-U & SaT-T & WtP-U & WtP-T & L-3 & C-R \\ +\midrule +SaT-SM & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & 0.316 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.78 +% WtP-T: 0.604 +% WtP-U: 0.645 +% C-R: 0.055 +% L-3: 0.267 +% SaT-SM: 0.879 +% SaT-T: 0.699 +% SaT-U: 0.702 +% SaT-Lora-T: 0.839 +% SaT-Lora-U: 0.828 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ko_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ko_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..64b99105d94a953bfd1c6780be443a9bf3e95abb --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ko_f.tex @@ -0,0 +1,30 @@ +\begin{tabular}{lrrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & SaT-T & SaT-U & WtP-T & L-3 & WtP-U & spacy-m & spacy-dp & C-R \\ +\midrule +SaT-Lora-T & - & 0.555 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & 0.045 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & 0.010 & 0.029 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & 0.924 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +spacy-m & - & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.816 +% WtP-T: 0.704 +% WtP-U: 0.567 +% C-R: 0.389 +% L-3: 0.703 +% SaT-SM: 0.789 +% SaT-T: 0.737 +% SaT-U: 0.724 +% SaT-Lora-T: 0.818 +% SaT-Lora-U: 0.82 +% spacy-dp: 0.466 +% spacy-m: 0.509 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ku_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ku_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..797172f72a21ab791940c0ce85894595df178fbf --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ku_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-SM & SaT-Lora-T & WtP-P & WtP-U & SaT-U & SaT-T & WtP-T & L-3 & C-R \\ +\midrule +SaT-SM & - & 0.752 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & 0.184 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & 0.173 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.851 +% WtP-T: 0.664 +% WtP-U: 0.781 +% C-R: 0.298 +% L-3: 0.419 +% SaT-SM: 0.911 +% SaT-T: 0.677 +% SaT-U: 0.772 +% SaT-Lora-T: 0.909 +% SaT-Lora-U: 0.909 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ky_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ky_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..97a248d18fa275955be610d87c1e7c0d7b234aae --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ky_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & SaT-SM & WtP-P & WtP-U & WtP-T & SaT-T & SaT-U & L-3 & C-R \\ +\midrule +SaT-Lora-T & - & 0.627 & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & 0.004 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & 0.846 & 0.587 & 0.541 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & 0.662 & 0.614 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & 0.709 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.903 +% WtP-T: 0.844 +% WtP-U: 0.845 +% C-R: 0.265 +% L-3: 0.583 +% SaT-SM: 0.918 +% SaT-T: 0.841 +% SaT-U: 0.841 +% SaT-Lora-T: 0.92 +% SaT-Lora-U: 0.92 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/lt_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/lt_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..33979fb80adad03d5bca36903c6d3af8a879e8ea --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/lt_f.tex @@ -0,0 +1,32 @@ +\begin{tabular}{lrrrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & SaT-T & WtP-T & L-3 & SaT-U & spacy-dp & ersatz & spacy-m & WtP-U & C-R \\ +\midrule +SaT-Lora-T & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.860 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & 0.090 & 0.006 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & 0.097 & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & 0.825 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & - & - & 0.006 & 0.001 & 0.009 & 0.000 \\ +ersatz & - & - & - & - & - & - & - & - & - & 0.469 & 0.611 & 0.000 \\ +spacy-m & - & - & - & - & - & - & - & - & - & - & 0.995 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.901 +% WtP-T: 0.841 +% WtP-U: 0.765 +% C-R: 0.703 +% L-3: 0.828 +% SaT-SM: 0.9 +% SaT-T: 0.849 +% SaT-U: 0.826 +% SaT-Lora-T: 0.926 +% SaT-Lora-U: 0.927 +% spacy-dp: 0.789 +% spacy-m: 0.765 +% ersatz: 0.77 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/lv_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/lv_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..4483f94f63b04df39ef8021365873ab3e63da958 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/lv_f.tex @@ -0,0 +1,30 @@ +\begin{tabular}{lrrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & WtP-T & SaT-T & L-3 & SaT-U & WtP-U & ersatz & spacy-m & C-R \\ +\midrule +SaT-Lora-T & - & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & 0.574 & 0.002 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.004 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & 0.511 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & 0.691 & 0.282 & 0.000 \\ +ersatz & - & - & - & - & - & - & - & - & - & 0.288 & 0.000 \\ +spacy-m & - & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.915 +% WtP-T: 0.856 +% WtP-U: 0.78 +% C-R: 0.704 +% L-3: 0.831 +% SaT-SM: 0.897 +% SaT-T: 0.854 +% SaT-U: 0.826 +% SaT-Lora-T: 0.928 +% SaT-Lora-U: 0.93 +% spacy-m: 0.769 +% ersatz: 0.776 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/mg_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/mg_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..4e10a035dd114ec38678a1873c6d3cccfde0e625 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/mg_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & WtP-T & SaT-T & WtP-U & SaT-U & L-3 & C-R \\ +\midrule +SaT-Lora-T & - & 0.704 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.737 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.195 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & 0.169 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.953 +% WtP-T: 0.915 +% WtP-U: 0.891 +% C-R: 0.64 +% L-3: 0.857 +% SaT-SM: 0.916 +% SaT-T: 0.896 +% SaT-U: 0.885 +% SaT-Lora-T: 0.954 +% SaT-Lora-U: 0.955 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/mk_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/mk_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..1b4324897a91d6c647b78969034d46dbee3a81b3 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/mk_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & WtP-P & SaT-Lora-T & SaT-SM & L-3 & SaT-U & SaT-T & WtP-T & WtP-U & spacy-dp & C-R \\ +\midrule +WtP-P & - & 0.451 & 0.208 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.600 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.006 & 0.006 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & 1.000 & 0.016 & 0.006 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & 0.015 & 0.007 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & 0.122 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.956 +% WtP-T: 0.924 +% WtP-U: 0.923 +% C-R: 0.482 +% L-3: 0.941 +% SaT-SM: 0.954 +% SaT-T: 0.93 +% SaT-U: 0.93 +% SaT-Lora-T: 0.955 +% SaT-Lora-U: 0.955 +% spacy-dp: 0.822 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ml_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ml_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..efd2101d26ae17b3aa6f03c957a09afa6baeb6cf --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ml_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & WtP-P & SaT-Lora-T & SaT-SM & WtP-T & SaT-T & L-3 & WtP-U & SaT-U & C-R \\ +\midrule +WtP-P & - & 0.935 & 0.193 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.130 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & 0.109 & 0.214 & 0.001 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.884 & 0.041 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & 0.203 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.865 +% WtP-T: 0.817 +% WtP-U: 0.8 +% C-R: 0.007 +% L-3: 0.809 +% SaT-SM: 0.859 +% SaT-T: 0.81 +% SaT-U: 0.776 +% SaT-Lora-T: 0.865 +% SaT-Lora-U: 0.87 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/mn_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/mn_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..d0d8998eb6eda696e5297a1da3a98df693d7e8da --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/mn_f.tex @@ -0,0 +1,17 @@ +\begin{tabular}{lrrrrr} +\toprule + & SaT-SM & WtP-U & SaT-U & L-3 & C-R \\ +\midrule +SaT-SM & - & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-U: 0.807 +% C-R: 0.266 +% L-3: 0.493 +% SaT-SM: 0.901 +% SaT-U: 0.735 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/mr_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/mr_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..99e26d0878c76d455db2d8ad68bdacbb688121bc --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/mr_f.tex @@ -0,0 +1,30 @@ +\begin{tabular}{lrrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & SaT-T & SaT-U & WtP-T & WtP-U & L-3 & spacy-m & pysbd & C-R \\ +\midrule +SaT-Lora-T & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.656 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & 0.239 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & 0.664 & 0.392 & 0.001 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.557 & 0.002 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +spacy-m & - & - & - & - & - & - & - & - & - & 0.511 & 0.000 \\ +pysbd & - & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.935 +% WtP-T: 0.886 +% WtP-U: 0.885 +% C-R: 0.652 +% L-3: 0.881 +% SaT-SM: 0.933 +% SaT-T: 0.901 +% SaT-U: 0.899 +% SaT-Lora-T: 0.949 +% SaT-Lora-U: 0.953 +% spacy-m: 0.865 +% pysbd: 0.862 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ms_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ms_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..27982a6406731f5a689cf8da0c56d50e1b8c4a0a --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ms_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-SM & WtP-P & SaT-Lora-T & L-3 & WtP-T & SaT-T & WtP-U & SaT-U & C-R \\ +\midrule +SaT-SM & - & 0.685 & 0.223 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.461 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & 0.165 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & 0.325 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.004 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.94 +% WtP-T: 0.879 +% WtP-U: 0.87 +% C-R: 0.679 +% L-3: 0.91 +% SaT-SM: 0.941 +% SaT-T: 0.874 +% SaT-U: 0.858 +% SaT-Lora-T: 0.938 +% SaT-Lora-U: 0.941 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/mt_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/mt_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..0743f5d088683dfd701c36602deabda0a0d185c0 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/mt_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & WtP-T & L-3 & SaT-T & C-R & SaT-U & WtP-U \\ +\midrule +SaT-Lora-T & - & 0.117 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & 0.074 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & 0.086 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +C-R & - & - & - & - & - & - & - & 0.013 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & - & 0.001 \\ +WtP-U & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.884 +% WtP-T: 0.804 +% WtP-U: 0.606 +% C-R: 0.651 +% L-3: 0.788 +% SaT-SM: 0.851 +% SaT-T: 0.773 +% SaT-U: 0.622 +% SaT-Lora-T: 0.892 +% SaT-Lora-U: 0.894 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/my_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/my_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..8f7f099172ce149071f43e3afe71a57deabe2959 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/my_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & SaT-SM & SaT-Lora-T & WtP-P & SaT-T & WtP-T & SaT-U & WtP-U & pysbd & C-R & L-3 \\ +\midrule +SaT-SM & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & 0.495 & 0.161 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & 0.753 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +pysbd & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & 0.431 \\ +L-3 & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.822 +% WtP-T: 0.743 +% WtP-U: 0.689 +% C-R: 0.171 +% L-3: 0.163 +% SaT-SM: 0.894 +% SaT-T: 0.749 +% SaT-U: 0.741 +% SaT-Lora-T: 0.867 +% SaT-Lora-U: 0.86 +% pysbd: 0.274 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ne_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ne_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..57ffc89e3f7b591617994f0d3e7d9334a728726c --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ne_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-SM & SaT-Lora-T & WtP-P & SaT-T & SaT-U & WtP-U & WtP-T & L-3 & C-R \\ +\midrule +SaT-SM & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & 0.107 & 0.062 & 0.039 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & 0.234 & 0.147 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & 0.659 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.743 +% WtP-T: 0.687 +% WtP-U: 0.689 +% C-R: 0.233 +% L-3: 0.397 +% SaT-SM: 0.82 +% SaT-T: 0.703 +% SaT-U: 0.698 +% SaT-Lora-T: 0.773 +% SaT-Lora-U: 0.763 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/nl_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/nl_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..c6a378658546c138fafae4ef2f77ca33fc5d9ac7 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/nl_f.tex @@ -0,0 +1,23 @@ +\begin{tabular}{lrrrrrrrr} +\toprule + & SaT-SM & L-3 & spacy-m & spacy-dp & SaT-U & WtP-U & C-R & pysbd \\ +\midrule +SaT-SM & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & 0.019 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +spacy-m & - & - & - & 0.077 & 0.004 & 0.000 & 0.000 & 0.000 \\ +spacy-dp & - & - & - & - & 0.245 & 0.007 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & 0.015 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & 0.000 & 0.000 \\ +C-R & - & - & - & - & - & - & - & 0.000 \\ +pysbd & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-U: 0.915 +% C-R: 0.748 +% L-3: 0.937 +% SaT-SM: 0.948 +% SaT-U: 0.921 +% spacy-dp: 0.924 +% spacy-m: 0.93 +% pysbd: 0.182 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/no_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/no_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..c2c108124a465bb3b6a31f960a5954d50b02c262 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/no_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & L-3 & SaT-T & spacy-m & SaT-U & WtP-T & WtP-U & C-R \\ +\midrule +SaT-Lora-T & - & 0.091 & 0.002 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.224 & 0.007 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.052 & 0.000 & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.263 & 0.193 & 0.081 & 0.001 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.924 & 0.081 & 0.001 & 0.000 & 0.000 \\ +spacy-m & - & - & - & - & - & - & 0.524 & 0.020 & 0.009 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.008 & 0.001 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & - & 0.287 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.961 +% WtP-T: 0.943 +% WtP-U: 0.942 +% C-R: 0.715 +% L-3: 0.953 +% SaT-SM: 0.958 +% SaT-T: 0.95 +% SaT-U: 0.948 +% SaT-Lora-T: 0.963 +% SaT-Lora-U: 0.964 +% spacy-m: 0.95 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/pa_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/pa_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..b74771491d3c55e89dd599375db4128bdf4a6035 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/pa_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-SM & SaT-Lora-T & WtP-P & SaT-T & SaT-U & WtP-T & WtP-U & L-3 & C-R \\ +\midrule +SaT-SM & - & 0.015 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.002 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & 0.932 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.773 +% WtP-T: 0.622 +% WtP-U: 0.556 +% C-R: 0.144 +% L-3: 0.267 +% SaT-SM: 0.81 +% SaT-T: 0.695 +% SaT-U: 0.695 +% SaT-Lora-T: 0.796 +% SaT-Lora-U: 0.783 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/pl_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/pl_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..101af6504db68824e0875a3d87165015ad1f2108 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/pl_f.tex @@ -0,0 +1,32 @@ +\begin{tabular}{lrrrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & L-3 & SaT-T & spacy-dp & SaT-U & WtP-T & ersatz & WtP-U & C-R & pysbd \\ +\midrule +SaT-Lora-T & - & 0.081 & 0.029 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.701 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.263 & 0.019 & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.192 & 0.000 & 0.000 & 0.003 & 0.000 & 0.000 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & 0.194 & 0.085 & 0.031 & 0.005 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.543 & 0.457 & 0.027 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & - & 0.717 & 0.012 & 0.000 & 0.000 \\ +ersatz & - & - & - & - & - & - & - & - & - & 0.517 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - & - & 0.000 \\ +pysbd & - & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.956 +% WtP-T: 0.922 +% WtP-U: 0.918 +% C-R: 0.744 +% L-3: 0.938 +% SaT-SM: 0.956 +% SaT-T: 0.933 +% SaT-U: 0.924 +% SaT-Lora-T: 0.96 +% SaT-Lora-U: 0.96 +% spacy-dp: 0.929 +% pysbd: 0.175 +% ersatz: 0.921 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ps_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ps_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..a0089452a65f4ebdfda5ab3ad11c97740f6c81e5 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ps_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & SaT-SM & SaT-Lora-T & WtP-P & WtP-T & SaT-T & SaT-U & WtP-U & L-3 & C-R & ersatz \\ +\midrule +SaT-SM & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.053 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & 0.156 & 0.044 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.177 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & 0.000 \\ +ersatz & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.761 +% WtP-T: 0.704 +% WtP-U: 0.633 +% C-R: 0.072 +% L-3: 0.261 +% SaT-SM: 0.856 +% SaT-T: 0.692 +% SaT-U: 0.686 +% SaT-Lora-T: 0.776 +% SaT-Lora-U: 0.766 +% ersatz: 0.018 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/pt_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/pt_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..a5af2a13563c191a2cea5cf810c6e662cf496adb --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/pt_f.tex @@ -0,0 +1,30 @@ +\begin{tabular}{lrrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & L-3 & SaT-SM & SaT-T & SaT-U & spacy-m & WtP-T & spacy-dp & WtP-U & C-R \\ +\midrule +SaT-Lora-T & - & 0.963 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & 0.349 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.011 & 0.138 & 0.007 & 0.001 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & 0.829 & 0.294 & 0.029 & 0.000 & 0.000 \\ +spacy-m & - & - & - & - & - & - & - & 0.667 & 0.046 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & - & 0.151 & 0.000 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & - & - & - & 0.039 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.953 +% WtP-T: 0.914 +% WtP-U: 0.899 +% C-R: 0.808 +% L-3: 0.941 +% SaT-SM: 0.938 +% SaT-T: 0.923 +% SaT-U: 0.917 +% SaT-Lora-T: 0.954 +% SaT-Lora-U: 0.954 +% spacy-dp: 0.908 +% spacy-m: 0.916 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ro_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ro_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..470bd296e5112b3ef34ac78fe201909b77151727 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ro_f.tex @@ -0,0 +1,32 @@ +\begin{tabular}{lrrrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & L-3 & SaT-T & ersatz & spacy-dp & spacy-m & SaT-U & WtP-T & WtP-U & C-R \\ +\midrule +SaT-Lora-T & - & 0.003 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.002 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.010 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.817 & 0.043 & 0.002 & 0.000 & 0.000 & 0.000 & 0.000 \\ +ersatz & - & - & - & - & - & - & 0.024 & 0.001 & 0.004 & 0.000 & 0.000 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & - & 0.133 & 0.149 & 0.000 & 0.000 & 0.000 \\ +spacy-m & - & - & - & - & - & - & - & - & 0.777 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.967 +% WtP-T: 0.89 +% WtP-U: 0.885 +% C-R: 0.704 +% L-3: 0.949 +% SaT-SM: 0.959 +% SaT-T: 0.929 +% SaT-U: 0.911 +% SaT-Lora-T: 0.973 +% SaT-Lora-U: 0.974 +% spacy-dp: 0.919 +% spacy-m: 0.913 +% ersatz: 0.928 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ru_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ru_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..0dd3899ea53d103c019561a65cdb5bb2a87f1814 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ru_f.tex @@ -0,0 +1,25 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & L-3 & C-R & SaT-SM & SaT-U & WtP-U & spacy-dp & spacy-m & ersatz & pysbd \\ +\midrule +L-3 & - & 0.078 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +C-R & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.025 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & 0.816 & 0.000 & 0.000 \\ +spacy-m & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +ersatz & - & - & - & - & - & - & - & - & 0.000 \\ +pysbd & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-U: 0.806 +% C-R: 0.881 +% L-3: 0.893 +% SaT-SM: 0.841 +% SaT-U: 0.828 +% spacy-dp: 0.754 +% spacy-m: 0.752 +% pysbd: 0.649 +% ersatz: 0.686 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/si_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/si_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..aee26522625c155b9b54aa619819372edc539f84 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/si_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & SaT-SM & WtP-P & SaT-T & WtP-T & WtP-U & SaT-U & L-3 & C-R \\ +\midrule +SaT-Lora-T & - & 0.263 & 0.216 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & 0.909 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & 0.501 & 0.086 & 0.004 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & 0.118 & 0.047 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & 0.496 & 0.001 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.002 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.854 +% WtP-T: 0.801 +% WtP-U: 0.795 +% C-R: 0.086 +% L-3: 0.769 +% SaT-SM: 0.854 +% SaT-T: 0.804 +% SaT-U: 0.792 +% SaT-Lora-T: 0.859 +% SaT-Lora-U: 0.855 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/sk_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/sk_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..ba9c84a302eae4735a28ccd225bd0ce986198a1a --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/sk_f.tex @@ -0,0 +1,30 @@ +\begin{tabular}{lrrrrrrrrrrr} +\toprule + & SaT-Lora-T & SaT-SM & WtP-P & L-3 & SaT-T & WtP-T & spacy-m & SaT-U & WtP-U & C-R & pysbd \\ +\midrule +SaT-Lora-T & - & 0.004 & 0.006 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & 0.960 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.090 & 0.005 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & 0.112 & 0.002 & 0.000 & 0.000 & 0.000 \\ +spacy-m & - & - & - & - & - & - & - & 0.637 & 0.001 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - & 0.000 \\ +pysbd & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.959 +% WtP-T: 0.924 +% WtP-U: 0.897 +% C-R: 0.748 +% L-3: 0.943 +% SaT-SM: 0.959 +% SaT-T: 0.93 +% SaT-U: 0.914 +% SaT-Lora-T: 0.965 +% SaT-Lora-U: 0.965 +% spacy-m: 0.916 +% pysbd: 0.295 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/sl_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/sl_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..027b0fb6fe36ce7c81da139d85d8921fdce1561b --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/sl_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-SM & SaT-Lora-T & WtP-P & L-3 & SaT-T & WtP-T & SaT-U & WtP-U & C-R \\ +\midrule +SaT-SM & - & 0.708 & 0.084 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.175 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.017 & 0.005 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.462 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.246 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.95 +% WtP-T: 0.927 +% WtP-U: 0.913 +% C-R: 0.638 +% L-3: 0.938 +% SaT-SM: 0.953 +% SaT-T: 0.929 +% SaT-U: 0.916 +% SaT-Lora-T: 0.953 +% SaT-Lora-U: 0.955 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/sq_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/sq_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..d32ee23e5e69d9a7494d8d9349f571b70b5a82e5 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/sq_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-SM & WtP-P & SaT-Lora-T & L-3 & SaT-T & WtP-T & SaT-U & WtP-U & C-R \\ +\midrule +SaT-SM & - & 0.447 & 0.217 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.904 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.011 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.001 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & 0.534 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.003 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.955 +% WtP-T: 0.899 +% WtP-U: 0.887 +% C-R: 0.593 +% L-3: 0.923 +% SaT-SM: 0.957 +% SaT-T: 0.911 +% SaT-U: 0.897 +% SaT-Lora-T: 0.955 +% SaT-Lora-U: 0.954 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/sr_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/sr_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..5294d3e60d26080ea3a4210bd1e13b3effc1369e --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/sr_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & WtP-P & SaT-Lora-T & SaT-SM & spacy-m & L-3 & SaT-T & WtP-T & SaT-U & WtP-U & C-R \\ +\midrule +WtP-P & - & 0.086 & 0.004 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.071 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +spacy-m & - & - & - & - & 0.988 & 0.638 & 0.305 & 0.047 & 0.010 & 0.000 \\ +L-3 & - & - & - & - & - & 0.697 & 0.362 & 0.079 & 0.016 & 0.000 \\ +SaT-T & - & - & - & - & - & - & 0.379 & 0.000 & 0.001 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & 0.159 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & - & 0.265 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.964 +% WtP-T: 0.943 +% WtP-U: 0.938 +% C-R: 0.672 +% L-3: 0.946 +% SaT-SM: 0.959 +% SaT-T: 0.945 +% SaT-U: 0.94 +% SaT-Lora-T: 0.961 +% SaT-Lora-U: 0.962 +% spacy-m: 0.946 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/sv_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/sv_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..4126f3f6e9aa5b4607f2a7f7bffbb26209ac67cc --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/sv_f.tex @@ -0,0 +1,30 @@ +\begin{tabular}{lrrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & L-3 & spacy-m & SaT-T & WtP-T & SaT-U & WtP-U & spacy-dp & C-R \\ +\midrule +SaT-Lora-T & - & 0.578 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.033 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.000 & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +spacy-m & - & - & - & - & - & 0.707 & 0.111 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & 0.076 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & - & 0.003 & 0.012 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & - & 0.676 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.958 +% WtP-T: 0.925 +% WtP-U: 0.904 +% C-R: 0.769 +% L-3: 0.943 +% SaT-SM: 0.95 +% SaT-T: 0.929 +% SaT-U: 0.913 +% SaT-Lora-T: 0.959 +% SaT-Lora-U: 0.959 +% spacy-dp: 0.902 +% spacy-m: 0.931 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ta_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ta_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..1ccd49530a7a5222e38ae9deda3e0d62ceeb49e9 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ta_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & WtP-T & WtP-U & SaT-U & SaT-T & ersatz & L-3 & C-R \\ +\midrule +SaT-Lora-T & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.637 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & 0.060 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & 0.041 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +ersatz & - & - & - & - & - & - & - & - & 0.997 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.754 +% WtP-T: 0.657 +% WtP-U: 0.643 +% C-R: 0.019 +% L-3: 0.453 +% SaT-SM: 0.75 +% SaT-T: 0.588 +% SaT-U: 0.605 +% SaT-Lora-T: 0.808 +% SaT-Lora-U: 0.779 +% ersatz: 0.453 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/te_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/te_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..ff1ca1e50600132b95df68ec5eef34647b41cfa7 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/te_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & SaT-SM & SaT-Lora-T & WtP-P & WtP-T & WtP-U & SaT-U & SaT-T & L-3 & spacy-m & C-R \\ +\midrule +SaT-SM & - & 0.027 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & 0.928 & 0.101 & 0.011 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & 0.118 & 0.016 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & 0.053 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.025 & 0.000 \\ +spacy-m & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.836 +% WtP-T: 0.775 +% WtP-U: 0.774 +% C-R: 0.361 +% L-3: 0.659 +% SaT-SM: 0.868 +% SaT-T: 0.76 +% SaT-U: 0.765 +% SaT-Lora-T: 0.856 +% SaT-Lora-U: 0.854 +% spacy-m: 0.641 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/tg_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/tg_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..760f7f253fd92082bde0bd12c011fb5d927cdd5d --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/tg_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-SM & SaT-Lora-T & WtP-P & WtP-T & SaT-T & WtP-U & SaT-U & L-3 & C-R \\ +\midrule +SaT-SM & - & 0.526 & 0.002 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.009 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & 0.086 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.009 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & 0.252 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.91 +% WtP-T: 0.827 +% WtP-U: 0.801 +% C-R: 0.549 +% L-3: 0.761 +% SaT-SM: 0.923 +% SaT-T: 0.817 +% SaT-U: 0.796 +% SaT-Lora-T: 0.921 +% SaT-Lora-U: 0.91 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/th_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/th_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..cdd4c99386bd788da79056b58b0e93da7d714912 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/th_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & SaT-SM & WtP-P & SaT-T & WtP-T & SaT-U & WtP-U & L-3 & C-R \\ +\midrule +SaT-Lora-T & - & 0.100 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & 0.004 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.270 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & 0.035 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & 0.000 & 0.047 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.585 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.713 +% WtP-T: 0.697 +% WtP-U: 0.666 +% C-R: 0.106 +% L-3: 0.66 +% SaT-SM: 0.729 +% SaT-T: 0.707 +% SaT-U: 0.68 +% SaT-Lora-T: 0.737 +% SaT-Lora-U: 0.729 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/tr_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/tr_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..6a6f11ee73eb8eda06a4e7ffa94c77dc6ab155d7 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/tr_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & L-3 & SaT-T & SaT-U & WtP-T & WtP-U & ersatz & C-R \\ +\midrule +SaT-Lora-T & - & 0.719 & 0.002 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.008 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.003 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.404 & 0.068 & 0.039 & 0.008 & 0.003 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.008 & 0.027 & 0.002 & 0.031 & 0.000 \\ +SaT-U & - & - & - & - & - & - & 0.581 & 0.109 & 0.216 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & 0.063 & 0.370 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & 0.675 & 0.000 \\ +ersatz & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.953 +% WtP-T: 0.931 +% WtP-U: 0.928 +% C-R: 0.724 +% L-3: 0.938 +% SaT-SM: 0.947 +% SaT-T: 0.935 +% SaT-U: 0.932 +% SaT-Lora-T: 0.954 +% SaT-Lora-U: 0.954 +% ersatz: 0.927 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/uk_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/uk_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..ea5caaec120d5d54da2498fe96201235fd561020 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/uk_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & L-3 & spacy-dp & SaT-T & WtP-T & SaT-U & WtP-U & C-R \\ +\midrule +SaT-Lora-T & - & 0.091 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.025 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +spacy-dp & - & - & - & - & - & 0.076 & 0.078 & 0.002 & 0.001 & 0.000 \\ +SaT-T & - & - & - & - & - & - & 0.952 & 0.000 & 0.011 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & 0.035 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & - & 0.690 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.943 +% WtP-T: 0.89 +% WtP-U: 0.882 +% C-R: 0.798 +% L-3: 0.911 +% SaT-SM: 0.935 +% SaT-T: 0.89 +% SaT-U: 0.883 +% SaT-Lora-T: 0.947 +% SaT-Lora-U: 0.944 +% spacy-dp: 0.898 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ur_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ur_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..def79c19cf2cd1f112a23b89a70b113224f14184 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/ur_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & WtP-U & SaT-T & SaT-U & WtP-T & L-3 & pysbd & C-R \\ +\midrule +SaT-Lora-T & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & 0.259 & 0.016 & 0.012 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.561 & 0.014 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & 0.489 & 0.001 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & 0.006 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +pysbd & - & - & - & - & - & - & - & - & - & 0.003 \\ +C-R & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.663 +% WtP-T: 0.507 +% WtP-U: 0.53 +% C-R: 0.266 +% L-3: 0.476 +% SaT-SM: 0.605 +% SaT-T: 0.519 +% SaT-U: 0.513 +% SaT-Lora-T: 0.72 +% SaT-Lora-U: 0.687 +% pysbd: 0.314 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/uz_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/uz_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..9cf7c32ba9dd1e70f8dc8cbde27472f0eefd8cb9 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/uz_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & WtP-T & SaT-T & WtP-U & SaT-U & L-3 & C-R \\ +\midrule +SaT-Lora-T & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.918 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & 0.823 & 0.578 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & 0.819 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.85 +% WtP-T: 0.789 +% WtP-U: 0.764 +% C-R: 0.448 +% L-3: 0.674 +% SaT-SM: 0.849 +% SaT-T: 0.765 +% SaT-U: 0.763 +% SaT-Lora-T: 0.876 +% SaT-Lora-U: 0.873 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/vi_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/vi_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..b4b80b88ab9682a0c8803c9a9af25b03de334185 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/vi_f.tex @@ -0,0 +1,28 @@ +\begin{tabular}{lrrrrrrrrrr} +\toprule + & SaT-Lora-T & SaT-SM & WtP-P & L-3 & SaT-U & SaT-T & WtP-T & spacy-m & WtP-U & C-R \\ +\midrule +SaT-Lora-T & - & 0.520 & 0.146 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & 0.365 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & 1.000 & 0.007 & 0.019 & 0.002 & 0.000 \\ +SaT-T & - & - & - & - & - & - & 0.005 & 0.019 & 0.001 & 0.000 \\ +WtP-T & - & - & - & - & - & - & - & 0.746 & 0.292 & 0.000 \\ +spacy-m & - & - & - & - & - & - & - & - & 0.927 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.945 +% WtP-T: 0.903 +% WtP-U: 0.901 +% C-R: 0.772 +% L-3: 0.929 +% SaT-SM: 0.947 +% SaT-T: 0.911 +% SaT-U: 0.911 +% SaT-Lora-T: 0.948 +% SaT-Lora-U: 0.949 +% spacy-m: 0.901 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/xh_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/xh_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..38d90b03951d1c6f10d8d6dfa66cdbc462747257 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/xh_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & SaT-SM & WtP-T & SaT-U & SaT-T & WtP-U & L-3 & C-R \\ +\midrule +SaT-Lora-T & - & 0.019 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.629 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & 0.501 & 0.472 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & 0.750 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.898 +% WtP-T: 0.807 +% WtP-U: 0.772 +% C-R: 0.561 +% L-3: 0.717 +% SaT-SM: 0.896 +% SaT-T: 0.803 +% SaT-U: 0.803 +% SaT-Lora-T: 0.908 +% SaT-Lora-U: 0.907 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/yi_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/yi_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..8639a33341511bb0055bd961711ae3d854ff4767 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/yi_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-SM & SaT-Lora-T & WtP-P & WtP-T & WtP-U & SaT-T & SaT-U & L-3 & C-R \\ +\midrule +SaT-SM & - & 0.002 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & 0.128 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & 0.002 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.807 +% WtP-T: 0.739 +% WtP-U: 0.73 +% C-R: 0.083 +% L-3: 0.136 +% SaT-SM: 0.89 +% SaT-T: 0.702 +% SaT-U: 0.611 +% SaT-Lora-T: 0.866 +% SaT-Lora-U: 0.831 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/yo_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/yo_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..c9aa850ab9cf2f5d83c9baad6d45e4a4f1510e1b --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/yo_f.tex @@ -0,0 +1,17 @@ +\begin{tabular}{lrrrrr} +\toprule + & WtP-U & SaT-U & SaT-SM & L-3 & C-R \\ +\midrule +WtP-U & - & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & 0.000 & 0.000 \\ +L-3 & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-U: 0.754 +% C-R: 0.266 +% L-3: 0.375 +% SaT-SM: 0.523 +% SaT-U: 0.673 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/zh_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/zh_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..72f78019616bddf390409c5e83b39c9cf25cc214 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/zh_f.tex @@ -0,0 +1,32 @@ +\begin{tabular}{lrrrrrrrrrrrr} +\toprule + & SaT-Lora-T & WtP-P & WtP-U & SaT-SM & WtP-T & pysbd & spacy-dp & SaT-T & C-R & L-3 & SaT-U & ersatz \\ +\midrule +SaT-Lora-T & - & 0.004 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-SM & - & - & - & - & 0.283 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +pysbd & - & - & - & - & - & - & 0.149 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +spacy-dp & - & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - & 0.007 & 0.021 & 0.003 \\ +L-3 & - & - & - & - & - & - & - & - & - & - & 0.952 & 0.418 \\ +SaT-U & - & - & - & - & - & - & - & - & - & - & - & 0.495 \\ +ersatz & - & - & - & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.888 +% WtP-T: 0.766 +% WtP-U: 0.805 +% C-R: 0.587 +% L-3: 0.557 +% SaT-SM: 0.775 +% SaT-T: 0.641 +% SaT-U: 0.556 +% SaT-Lora-T: 0.905 +% SaT-Lora-U: 0.904 +% spacy-dp: 0.682 +% pysbd: 0.69 +% ersatz: 0.547 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/zu_f.tex b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/zu_f.tex new file mode 100644 index 0000000000000000000000000000000000000000..35c091f58b302a9baaebb573006606c6f5472837 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/main-table-p-values/opus100/zu_f.tex @@ -0,0 +1,26 @@ +\begin{tabular}{lrrrrrrrrr} +\toprule + & SaT-SM & SaT-Lora-T & WtP-P & SaT-T & WtP-T & SaT-U & WtP-U & L-3 & C-R \\ +\midrule +SaT-SM & - & 0.001 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-Lora-T & - & - & 0.003 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-P & - & - & - & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 & 0.000 \\ +SaT-T & - & - & - & - & 0.003 & 0.000 & 0.000 & 0.000 & 0.000 \\ +WtP-T & - & - & - & - & - & 0.140 & 0.000 & 0.000 & 0.000 \\ +SaT-U & - & - & - & - & - & - & 0.000 & 0.000 & 0.000 \\ +WtP-U & - & - & - & - & - & - & - & 0.000 & 0.000 \\ +L-3 & - & - & - & - & - & - & - & - & 0.000 \\ +C-R & - & - & - & - & - & - & - & - & - \\ +\bottomrule +\end{tabular} + +% WtP-P: 0.906 +% WtP-T: 0.831 +% WtP-U: 0.727 +% C-R: 0.349 +% L-3: 0.425 +% SaT-SM: 0.933 +% SaT-T: 0.848 +% SaT-U: 0.821 +% SaT-Lora-T: 0.92 +% SaT-Lora-U: 0.919 \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/permutation_test.py b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/permutation_test.py new file mode 100644 index 0000000000000000000000000000000000000000..4eb442b9267b9c81d96532f9bed67168e0bba7b0 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/permutation_test.py @@ -0,0 +1,167 @@ +import argparse +import pickle +from collections import defaultdict +from pathlib import Path + +import numpy as np +import pandas as pd + +from wtpsplit.evaluation.stat_tests.permutation_test_utils import ( + compute_prf, + permutation_test, + print_latex, + reverse_where, +) + +parser = argparse.ArgumentParser() + +parser.add_argument("--lang", type=str, required=True) +parser.add_argument("--table", type=str, required=True) + +args = parser.parse_args() + +ALL_DIR = Path("../data/permutation-test-data/") + +raw_data = defaultdict(lambda: defaultdict(dict)) +val_results = defaultdict(lambda: defaultdict(dict)) + + +DATA_DIR = ALL_DIR / f"all-stat-test-data/{args.table}" +LATEX_DIR = ALL_DIR / "p-values" +RESULTS_DATA_DIR = ALL_DIR / "results_data" + +spacy_langs = open("../data/permutation-test-data/all-stat-test-data/spacy_m_langs.txt").read().splitlines() + +with open(DATA_DIR / f"{args.table}_raw_data.pkl", "rb") as f: + raw_data = pickle.load(f) + +with open(DATA_DIR / f"{args.table}_val_results.pkl", "rb") as f: + val_results = pickle.load(f) + +# results taken from wtpsplit/evaluation/evaluation_results +# file names possibly need to be changed; content remains same. +all_systems_mapping = { + "benjamin_wtp-canine-s-3l_b512_s64_u0.01_k10-punct": "WtP-P", + "benjamin_wtp-canine-s-3l_b512_s64_u0.01_k10-t": "WtP-T", + "benjamin_wtp-canine-s-3l_b512_s64_u0.01_k10-u": "WtP-U", + "command-r_k10_s0Pv2-all-command-r": "C-R", + "meta-llama-3-8b-instruct_k10_s0Pv2-all-meta/meta-llama-3-8b-instruct": "L-3", + "xlmr-3l-v3_lc0.1-mix2-FT-33-33-33-v2-CorrSep_b512_s64_u0.25_k10-u": "SaT-SM", + "xlmr-3l-v3_look48_lc0.1-mix2_b512_s64_u0.025_k10-t": "SaT-T", + "xlmr-3l-v3_look48_lc0.1-mix2_b512_s64_u0.025_k10-u": "SaT-U", + "xlmr-3l-v4_LL_lora-v2_ep30_s10k_b512_s64_u0.5_k10-t": "SaT-Lora-T", + "xlmr-3l-v4_LL_lora-v2_ep30_s10k_b512_s64_u0.5_k10-u": "SaT-Lora-U", + "intrinsic_baselines-spacy_dp": "spacy-dp", + "intrinsic_baselines_multi-spacy_dp": "spacy-m", +} + +# not using "t" adaptation +lora_filter_data = [ + ["ceb", "ted2020-corrupted-asr"], + ["et", "short-sequences"], + ["et", "short-sequences-corrupted-asr"], + ["ga", "ted2020-corrupted-asr"], + ["ha", "ted2020-corrupted-asr"], + ["ig", "ted2020-corrupted-asr"], + ["kk", "ud"], + ["ky", "ted2020-corrupted-asr"], + ["la", "ted2020-corrupted-asr"], + ["mg", "ted2020-corrupted-asr"], + ["mr", "ud"], + ["mt", "ted2020-corrupted-asr"], + ["pa", "ted2020-corrupted-asr"], + ["ta", "ud"], + ["tg", "ted2020-corrupted-asr"], + ["en-de", "short-sequences"], + ["en-de", "short-sequences-corrupted-asr"], + ["sr", "short-sequences"], + ["sr", "short-sequences-corrupted-asr"], + ["sl", "short-sequences"], + ["sl", "short-sequences-corrupted-asr"], +] + +for dataset in raw_data[args.lang].keys(): + systems = list(all_systems_mapping.keys()).copy() + + if [args.lang, dataset] in lora_filter_data: + systems.remove("xlmr-3l-v4_LL_lora-v2_ep30_s10k_b512_s64_u0.5_k10-t") + else: + systems.remove("xlmr-3l-v4_LL_lora-v2_ep30_s10k_b512_s64_u0.5_k10-u") + + systems = [ + s for s in systems if s in val_results[args.lang][dataset] and val_results[args.lang][dataset][s] is not None + ] + + systems = sorted(systems, key=lambda x: val_results[args.lang][dataset][x], reverse=True) + + num_systems = len(systems) + + p_pvalues = pd.DataFrame(-100 + np.zeros((num_systems, num_systems)), index=systems, columns=systems) + r_pvalues = pd.DataFrame(-100 + np.zeros((num_systems, num_systems)), index=systems, columns=systems) + f_pvalues = pd.DataFrame(-100 + np.zeros((num_systems, num_systems)), index=systems, columns=systems) + + all_diffs = {system1: {} for system1 in systems} + + total_permutation_tests = num_systems * (num_systems - 1) // 2 + + for model in systems: + true_indices = raw_data[args.lang][dataset]["true_indices"] + pred_indices = raw_data[args.lang][dataset][model] + if pred_indices is None: + continue + lengths = raw_data[args.lang][dataset]["lengths"] + y_true, y_pred = reverse_where(true_indices, pred_indices, lengths) + num_docs = len(y_true) + + _, _, f1 = compute_prf(y_true, y_pred, num_docs) + + assert np.allclose( + f1, val_results[args.lang][dataset][model] + ), f" MISMATCH! {args.lang} {dataset} {model} F1: {f1} intrinsic_py_out: {val_results[args.lang][dataset][model]}" + + for i in range(num_systems): + for j in range(i + 1, num_systems): + true_indices = raw_data[args.lang][dataset]["true_indices"] + pred1_indices = raw_data[args.lang][dataset][systems[i]] + pred2_indices = raw_data[args.lang][dataset][systems[j]] + lengths = raw_data[args.lang][dataset]["lengths"] + y_true, y_pred1 = reverse_where(true_indices, pred1_indices, lengths) + y_true, y_pred2 = reverse_where(true_indices, pred2_indices, lengths) + + diffs, p_pvalue, r_pvalue, f_pvalue = permutation_test( + y_pred1, + y_pred2, + y_true, + num_rounds=10000, + ) + + p_pvalues.at[systems[i], systems[j]] = p_pvalue + r_pvalues.at[systems[i], systems[j]] = r_pvalue + f_pvalues.at[systems[i], systems[j]] = f_pvalue + + all_diffs[systems[i]][systems[j]] = diffs + + print_latex( + f_pvalues, + systems, + all_systems_mapping, + val_results[args.lang][dataset], + LATEX_DIR / f"{dataset}/{args.lang}_f.tex", + ) + + saving_data = { + "p_pvalues": p_pvalues, + "r_pvalues": r_pvalues, + "f_pvalues": f_pvalues, + "all_diffs": all_diffs, + } + + if not (RESULTS_DATA_DIR / dataset).exists(): + (RESULTS_DATA_DIR / dataset).mkdir() + + with open(RESULTS_DATA_DIR / f"{dataset}/{args.lang}_data.pkl", "wb") as f: + pickle.dump(saving_data, f) + + print(f"Finished {args.lang} {dataset}") + +print("All validation tests passed and significance tests done!") diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/permutation_test_data.py b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/permutation_test_data.py new file mode 100644 index 0000000000000000000000000000000000000000..58b52d124c206a0e666c64a87636e611a74b11ea --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/permutation_test_data.py @@ -0,0 +1,237 @@ +import json +from collections import defaultdict +from pathlib import Path + +from tqdm import tqdm +import pickle + +ALL_DIR = Path("../data/permutation-test-data/") + +raw_data = defaultdict(lambda: defaultdict(dict)) +val_results = defaultdict(lambda: defaultdict(dict)) + + +DATA_DIR = ALL_DIR / "all-stat-test-data/main_all" +LATEX_DIR = ALL_DIR / "p-values" +RESULTS_DATA_DIR = ALL_DIR / "results_data" + +# https://spacy.io/models/xx +spacy_langs = open("../data/permutation-test-data/all-stat-test-data/spacy_m_langs.txt").read().splitlines() + + +for file in tqdm(DATA_DIR.glob("*IDX.json"), desc="Loading indices"): + model = str(file.stem)[:-4] + with open(file, "r") as f: + data = json.load(f) + for lang in data.keys(): + if file.stem.startswith("intrinsic_baselines_multi") and lang not in spacy_langs: + continue + + for dataset in data[lang].keys(): + if ( + dataset.startswith("legal") + or dataset.startswith("ted") + or "corrupted-asr" in dataset + or "short-sequences" in dataset + or "code-switching" in dataset + ): + continue + + for model_type in data[lang][dataset].keys(): + if model_type.startswith("spacy_sent"): + continue + + if ( + ( + model_type == "true_indices" + or model_type == "length" + or model_type == "lengths" + or model_type == "refused" + ) + or data[lang][dataset][model_type] is None + or "predicted_indices" not in data[lang][dataset][model_type] + ): + continue + + data_list = data[lang][dataset][model_type]["predicted_indices"] + + if data_list is None: + continue + + if len(data_list) == 0: + data_list = [[]] + if isinstance(data_list[0], int): + data_list = [data_list] + + raw_data[lang][dataset][model + "-" + model_type] = data_list + + true_indices = data[lang][dataset][model_type]["true_indices"] + + if isinstance(true_indices[0], int): + true_indices = [true_indices] + + if "true_indicies" in raw_data[lang][dataset]: + assert raw_data[lang][dataset]["true_indices"] == true_indices + else: + raw_data[lang][dataset]["true_indices"] = true_indices + + data_lengths = ( + data[lang][dataset][model_type]["length"] + if "length" in data[lang][dataset][model_type] + else data[lang][dataset][model_type]["lengths"] + ) + + if isinstance(data_lengths, int): + data_lengths = [data_lengths] + + if "lengths" in raw_data[lang][dataset]: + assert ( + raw_data[lang][dataset]["lengths"] == data_lengths + ), f"{lang}, {dataset}, {model_type}... [lengths assertion] before: {raw_data[lang][dataset]['lengths']} after: {data_lengths}" + else: + raw_data[lang][dataset]["lengths"] = data_lengths + + +for file in tqdm(DATA_DIR.glob("*.json"), desc="Loading F1s"): + if file.stem.endswith("IDX"): + continue + + with open(file, "r") as f: + data = json.load(f) + + model = file.stem + + for lang in data.keys(): + if file.stem.startswith("intrinsic_baselines_multi") and lang not in spacy_langs: + continue + + for dataset in data[lang].keys(): + for model_type in data[lang][dataset].keys(): + if model_type == "f1": + renamed_model_type = "llm" + else: + renamed_model_type = model_type + result = data[lang][dataset][model_type] + + if result is None or result == {}: + continue + elif not isinstance(result, float): + result = result["f1"] + + val_results[lang][dataset][model + "-" + renamed_model_type] = result + + +# taken from wtpsplit/evaluation/evaluation_results +# file names possibly need to be changed; content remains same. +all_systems_mapping = { + "benjamin_wtp-canine-s-3l_b512_s64_u0.01_k10-punct": "WtP-P", + "benjamin_wtp-canine-s-3l_b512_s64_u0.01_k10-t": "WtP-T", + "benjamin_wtp-canine-s-3l_b512_s64_u0.01_k10-u": "WtP-U", + "command-r_k10_s0Pv2-all-command-r": "C-R", + "meta-llama-3-8b-instruct_k10_s0Pv2-all-meta/meta-llama-3-8b-instruct": "L-3", + "xlmr-3l-v3_lc0.1-mix2-FT-33-33-33-v2-CorrSep_b512_s64_u0.25_k10-u": "SaT-SM", + "xlmr-3l-v3_look48_lc0.1-mix2_b512_s64_u0.025_k10-t": "SaT-T", + "xlmr-3l-v3_look48_lc0.1-mix2_b512_s64_u0.025_k10-u": "SaT-U", + "xlmr-3l-v4_LL_lora-v2_ep30_s10k_b512_s64_u0.5_k10-t": "SaT-Lora-T", + "xlmr-3l-v4_LL_lora-v2_ep30_s10k_b512_s64_u0.5_k10-u": "SaT-Lora-U", + "intrinsic_baselines-spacy_dp": "spacy-dp", + "intrinsic_baselines_multi-spacy_dp": "spacy-m", +} + +# no train data here; for fair comparison +main_table_exclude = [ + ["bn", "ud"], + ["ceb", "ud"], + ["es", "ersatz"], + ["fr", "opus100"], + ["hy", "opus100"], + ["id", "ud"], + ["jv", "ud"], + ["mn", "opus100"], + ["nl", "opus100"], + ["ru", "opus100"], + ["sq", "ud"], + ["th", "ud"], + ["yo", "opus100"], + ["yo", "ud"], +] + + +for lang in raw_data.keys(): + for system in all_systems_mapping.keys(): + main_results = [] + if ( + "opus100" in raw_data[lang] + and system in raw_data[lang]["opus100"] + and [lang, "opus100"] not in main_table_exclude + ): + main_results.append(val_results[lang]["opus100"][system]) + if "ud" in raw_data[lang] and system in raw_data[lang]["ud"] and [lang, "ud"] not in main_table_exclude: + main_results.append(val_results[lang]["ud"][system]) + if ( + "ersatz" in raw_data[lang] + and system in raw_data[lang]["ersatz"] + and [lang, "ersatz"] not in main_table_exclude + ): + main_results.append(val_results[lang]["ersatz"][system]) + + if main_results == []: + continue + + avg_f1 = sum(main_results) / len(main_results) + + preds_main_results_indicies = [] + trues_main_results_indicies = [] + lengths_main_results = [] + + val_results[lang]["main_table_mean"][system] = avg_f1 + + if ( + "opus100" in raw_data[lang] + and system in raw_data[lang]["opus100"] + and [lang, "opus100"] not in main_table_exclude + ): + preds_main_results_indicies.append(raw_data[lang]["opus100"][system][0]) + trues_main_results_indicies.append(raw_data[lang]["opus100"]["true_indices"]) + lengths_main_results.append(raw_data[lang]["opus100"]["lengths"][0]) + + if "ud" in raw_data[lang] and system in raw_data[lang]["ud"] and [lang, "ud"] not in main_table_exclude: + preds_main_results_indicies.append(raw_data[lang]["ud"][system][0]) + trues_main_results_indicies.append(raw_data[lang]["ud"]["true_indices"]) + lengths_main_results.append(raw_data[lang]["ud"]["lengths"][0]) + + if ( + "ersatz" in raw_data[lang] + and system in raw_data[lang]["ersatz"] + and [lang, "ersatz"] not in main_table_exclude + ): + preds_main_results_indicies.append(raw_data[lang]["ersatz"][system][0]) + trues_main_results_indicies.append(raw_data[lang]["ersatz"]["true_indices"]) + lengths_main_results.append(raw_data[lang]["ersatz"]["lengths"][0]) + + raw_data[lang]["main_table_mean"][system] = preds_main_results_indicies + + if "true_indices" in raw_data[lang]["main_table_mean"]: + assert ( + raw_data[lang]["main_table_mean"]["true_indices"] == trues_main_results_indicies + ), f"{lang} {system}, {[len(i) for i in trues_main_results_indicies]}, {[len(i) for i in raw_data[lang]['main_table_mean']['true_indices']]}" + else: + raw_data[lang]["main_table_mean"]["true_indices"] = trues_main_results_indicies + + if "lengths" in raw_data[lang]["main_table_mean"]: + assert ( + raw_data[lang]["main_table_mean"]["lengths"] == lengths_main_results + ), f"{lang} {system} {raw_data[lang]['main_table_mean']['lengths']} {lengths_main_results}" + else: + raw_data[lang]["main_table_mean"]["lengths"] = lengths_main_results + + +raw_data = {k: dict(v) for k, v in raw_data.items()} + +with open(DATA_DIR / "main_all_raw_data.pkl", "wb") as f: + pickle.dump(raw_data, f) + +val_results = {k: dict(v) for k, v in val_results.items()} + +with open(DATA_DIR / "main_all_val_results.pkl", "wb") as f: + pickle.dump(val_results, f) diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/permutation_test_utils.py b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/permutation_test_utils.py new file mode 100644 index 0000000000000000000000000000000000000000..b8692b6d5389c7d51e52ae3d6eab454e0e78019c --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/evaluation/stat_tests/permutation_test_utils.py @@ -0,0 +1,135 @@ +from multiprocessing import Pool + +import numpy as np +from tqdm import tqdm + + +def compute_prf(true_values, predicted_values, num_docs): + f1 = 0 + r = 0 + p = 0 + + for true, pred in zip(true_values, predicted_values): + TP = np.sum((pred == 1) & (true == 1)) + FP = np.sum((pred == 1) & (true == 0)) + FN = np.sum((pred == 0) & (true == 1)) + + precision = TP / (TP + FP) if (TP + FP) > 0 else 0 + recall = TP / (TP + FN) if (TP + FN) > 0 else 0 + + p += precision + r += recall + f1 += 2 * (precision * recall) / (precision + recall) if (precision + recall) > 0 else 0 + + p /= num_docs + r /= num_docs + f1 /= num_docs + + return p, r, f1 + + +def test_func(x, y, true, num_docs): + p_x, r_x, f1_x = compute_prf(true, x, num_docs) + p_y, r_y, f1_y = compute_prf(true, y, num_docs) + + diff_p = np.abs(p_x - p_y) + diff_r = np.abs(r_x - r_y) + diff_f1 = np.abs(f1_x - f1_y) + + return diff_p, diff_r, diff_f1 + + +def permutation_test_single_round(x, y, true, y_lengths, num_docs, flips): + sample_x = [np.where(flips[:m], y[i], x[i]) for i, m in enumerate(y_lengths)] + sample_y = [np.where(flips[:m], x[i], y[i]) for i, m in enumerate(y_lengths)] + + return test_func(sample_x, sample_y, true, num_docs) + + +def permutation_test( + x, + y, + true, + num_rounds=10000, +): + # print(num_rounds) + + x_lengths = [len(i) for i in x] + y_lengths = [len(i) for i in y] + + for i, j in zip(x_lengths, y_lengths): + assert i == j + + p_at_least_as_extreme = 0.0 + r_at_least_as_extreme = 0.0 + f_at_least_as_extreme = 0.0 + + num_docs = len(true) + + p_reference_stat, r_reference_stat, f_reference_stat = test_func(x, y, true, num_docs) + + flips = np.random.randint(2, size=(num_rounds, max(y_lengths))) + + with Pool(5) as pool: + results = list( + pool.starmap( + permutation_test_single_round, + tqdm( + [(x, y, true, y_lengths, num_docs, flips[i]) for i in range(num_rounds)], + total=num_rounds, + ), + ), + ) + + for diff_p, diff_r, diff_f in results: + if diff_p > p_reference_stat or np.isclose(diff_p, p_reference_stat): + p_at_least_as_extreme += 1.0 + + if diff_r > r_reference_stat or np.isclose(diff_r, r_reference_stat): + r_at_least_as_extreme += 1.0 + + if diff_f > f_reference_stat or np.isclose(diff_f, f_reference_stat): + f_at_least_as_extreme += 1.0 + + return ( + results, + p_at_least_as_extreme / num_rounds, + r_at_least_as_extreme / num_rounds, + f_at_least_as_extreme / num_rounds, + ) + + +def print_latex(df, systems, all_systems_mapping, results, filename): + filename.parent.mkdir(parents=True, exist_ok=True) + + with open(filename, "w") as f: + latex = df.to_latex(float_format="%.3f", escape=False, columns=systems) + while " " in latex: + latex = latex.replace(" ", " ") + latex = latex.replace("-100.000", "-") + + for system, system_name in all_systems_mapping.items(): + latex = latex.replace(system, system_name) + + for system, system_name in all_systems_mapping.items(): + if system in results: + latex += "\n" + latex += f"% {system_name}: {round(results[system], 3)}" + + f.write(latex) + + +def reverse_where(true_indices, pred_indices, lengths): + y_true_all = [] + y_pred_all = [] + + for true, pred, length in zip(true_indices, pred_indices, lengths): + y_true = np.zeros(length) + y_true[true] = 1 + y_pred = np.zeros(length) + y_pred[pred] = 1 + + y_true_all.append(y_true) + y_pred_all.append(y_pred) + + return y_true_all, y_pred_all diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/extract.py b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/extract.py new file mode 100644 index 0000000000000000000000000000000000000000..26938026bfd0c12de9a831a57c8aacbb4c49c2f0 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/extract.py @@ -0,0 +1,279 @@ +import math +import sys +import logging +from typing import Literal + +import numpy as np +from tqdm.auto import tqdm +from transformers import AutoTokenizer + +from wtpsplit.utils import Constants, hash_encode + +logger = logging.getLogger(__name__) + + +class BertCharORTWrapper: + def __init__(self, config, ort_session): + self.config = config + self.ort_session = ort_session + + def __getattr__(self, name): + assert hasattr(self, "ort_session") + return getattr(self.ort_session, name) + + def __call__(self, hashed_ids, attention_mask): + logits = self.ort_session.run( + ["logits"], + { + "attention_mask": attention_mask.astype(np.float16), # ORT expects fp16 mask + "hashed_ids": hashed_ids, + }, + )[0] + + return {"logits": logits} + + +class SaTORTWrapper: + def __init__(self, config, ort_session): + self.config = config + self.ort_session = ort_session + + def __getattr__(self, name): + assert hasattr(self, "ort_session") + return getattr(self.ort_session, name) + + def __call__(self, input_ids, attention_mask): + logits = self.ort_session.run( + ["logits"], + { + "attention_mask": attention_mask.astype(np.float16), + "input_ids": input_ids.astype(np.int64), + }, + )[0] + + return {"logits": logits} + + +class PyTorchWrapper: + def __init__(self, model): + self.model = model + self.config = model.config + + def __getattr__(self, name): + assert hasattr(self, "model") + return getattr(self.model, name) + + def __call__(self, attention_mask, hashed_ids=None, language_ids=None, input_ids=None): + try: + import torch + except ImportError: + raise ImportError("`torch` must be installed to use PyTorch models!") + + with torch.no_grad(): + logits = ( + self.model( + input_ids=torch.from_numpy(input_ids).to(self.model.device) if input_ids is not None else None, + hashed_ids=torch.from_numpy(hashed_ids).to(self.model.device) if hashed_ids is not None else None, + attention_mask=torch.from_numpy(attention_mask).to(self.model.device), + language_ids=( + torch.from_numpy(language_ids).to(self.model.device) if language_ids is not None else None + ), + )["logits"] + .cpu() + .numpy() + ) + + return {"logits": logits} + + +def extract( + batch_of_texts, + model, + stride, + max_block_size, + batch_size, + lang_code=None, + pad_last_batch=False, + weighting: Literal["uniform", "hat"] = "uniform", + verbose=False, + tokenizer=None, +): + """ + Computes logits for the given batch of texts by: + 1. slicing the texts into chunks of size `block_size`. + 2. passing every chunk through the model forward. + 3. stitching predictings back together by averaging chunk logits. + + ad 1.: text is sliced into partially overlapping chunks by moving forward by a `stride` parameter (think conv1d). + """ + if "xlm" in model.config.model_type: + use_subwords = True + if tokenizer is None: + tokenizer = AutoTokenizer.from_pretrained( + "facebookAI/xlm-roberta-base", + ) + # tokenizer.add_special_tokens({"additional_special_tokens": [AddedToken("\n")]}) + tokens = tokenizer(batch_of_texts, return_offsets_mapping=True, verbose=False, add_special_tokens=False) + # remove CLS and SEP tokens, they are added later anyhow + # batch_of_texts = [text[1:-1] for text in tokens["input_ids"]] + batch_of_texts = tokens["input_ids"] + # offset_mapping = [offset[1:-1] for offset in tokens["offset_mapping"]] + offset_mapping = tokens["offset_mapping"] + cls_token_id = tokenizer.cls_token_id + sep_token_id = tokenizer.sep_token_id + pad_token_id = tokenizer.pad_token_id + else: + pad_token_id = 0 + use_subwords = False + + text_lengths = [len(text) for text in batch_of_texts] + # reduce block size if possible + block_size = min(max_block_size, max(text_lengths)) + if use_subwords and block_size > 510: + overflow_length = block_size - 510 + block_size -= overflow_length # account for CLS and SEP tokens + + # make sure block_size is a multiple of downsampling rate + downsampling_rate = getattr(model.config, "downsampling_rate", 1) + block_size = math.ceil(block_size / downsampling_rate) * downsampling_rate + + # total number of forward passes + num_chunks = sum(math.ceil(max(length - block_size, 0) / stride) + 1 for length in text_lengths) + + # preallocate a buffer for all input hashes & attention masks + if not use_subwords: + input_hashes = np.zeros((num_chunks, block_size, model.config.num_hash_functions), dtype=np.int64) + attention_mask = np.zeros((num_chunks, block_size), dtype=np.float32) + else: + input_ids = np.zeros((num_chunks, block_size + 2), dtype=np.int64) + attention_mask = np.zeros((num_chunks, block_size + 2), dtype=np.float32) + + # locs keep track of the location of every chunk with a 3-tuple (text_idx, char_start, char_end) that indexes + # back into the batch_of_texts + locs = np.zeros((num_chunks, 3), dtype=np.int32) + + if not use_subwords: + # this is equivalent to (but faster than) np.array([ord(c) for c in "".join(batch_of_texts)]) + codec = "utf-32-le" if sys.byteorder == "little" else "utf-32-be" + ordinals = np.frombuffer(bytearray("".join(batch_of_texts), encoding=codec), dtype=np.int32) + # hash encode all ids + flat_hashed_ids = hash_encode( + ordinals, num_hashes=model.config.num_hash_functions, num_buckets=model.config.num_hash_buckets + ) + # note that ordinals and flat_hashed_ids have the same length + offset = 0 + current_chunk = 0 + + # create chunks + for i in range(len(batch_of_texts)): + for j in range(0, text_lengths[i], stride): + # for every chunk, assign input hashes, attention mask and loc + start, end = j, j + block_size + done = False + + if end >= text_lengths[i]: + end = text_lengths[i] + start = max(end - block_size, 0) + done = True + + if not use_subwords: + input_hashes[current_chunk, : end - start] = flat_hashed_ids[offset + start : offset + end] + attention_mask[current_chunk, : end - start] = 1 + else: + chunk = [cls_token_id] + batch_of_texts[i][start:end] + [sep_token_id] + input_ids[current_chunk, : len(chunk)] = chunk + attention_mask[current_chunk, : len(chunk)] = 1 + + locs[current_chunk, :] = [i, start, end] + current_chunk += 1 + + if done: + break + + offset += text_lengths[i] + + assert current_chunk == num_chunks + n_batches = math.ceil(len(attention_mask) / batch_size) + + # containers for the final logits + all_logits = [ + np.zeros( + (length, model.config.num_labels), + dtype=np.float16, + ) + for length in text_lengths + ] + # container for the number of chunks that any character was part of (to average chunk predictions) + all_counts = [np.zeros(length, dtype=np.float16) for length in text_lengths] + + uses_lang_adapters = getattr(model.config, "language_adapter", "off") == "on" + if uses_lang_adapters: + if lang_code is None: + raise ValueError("Please specify a `lang_code` when using a model with language adapters.") + + if isinstance(model, BertCharORTWrapper): + raise ValueError("Language adapters are not supported in ONNX models.") + + language_ids = np.array( + [Constants.LANG_CODE_TO_INDEX[lang_code]] * batch_size, + dtype=int, + ) + else: + language_ids = None + + # compute weights for the given weighting scheme + if weighting == "uniform": + weights = np.ones(block_size, dtype=np.float16) + elif weighting == "hat": + x = np.linspace(-(1 - 1 / block_size), 1 - 1 / block_size, block_size, dtype=np.float16) + weights = 1 - np.abs(x) + + # forward passes through all chunks + for batch_idx in tqdm(range(n_batches), disable=not verbose): + start, end = batch_idx * batch_size, min(len(attention_mask), (batch_idx + 1) * batch_size) + + if not use_subwords: + batch_input_hashes = input_hashes[start:end] + else: + batch_input_ids = input_ids[start:end] + batch_attention_mask = attention_mask[start:end] + + if len(batch_attention_mask) < batch_size and pad_last_batch: + n_missing = batch_size - len(batch_attention_mask) + + if not use_subwords: + batch_input_hashes = np.pad(batch_input_hashes, ((0, n_missing), (0, 0), (0, 0))) + else: + # Pad with the specific pad_token_id for the tokenizer + batch_input_ids = np.pad(batch_input_ids, ((0, n_missing), (0, 0)), constant_values=pad_token_id) + batch_attention_mask = np.pad(batch_attention_mask, ((0, n_missing), (0, 0))) + + kwargs = {"language_ids": language_ids[: len(batch_attention_mask)]} if uses_lang_adapters else {} + if use_subwords: + kwargs["input_ids"] = batch_input_ids + else: + kwargs["hashed_ids"] = batch_input_hashes + + logits = model( + attention_mask=batch_attention_mask, + **kwargs, + )["logits"] + + if use_subwords: + logits = logits[:, 1:-1, :] # remove CLS and SEP tokens + + for i in range(start, end): + original_idx, start_char_idx, end_char_idx = locs[i] + n = end_char_idx - start_char_idx + all_logits[original_idx][start_char_idx:end_char_idx] += weights[:n, np.newaxis] * logits[i - start, :n] + all_counts[original_idx][start_char_idx:end_char_idx] += weights[:n] + + # so far, logits are summed, so we average them here + all_logits = [(logits / counts[:, None]).astype(np.float16) for logits, counts in zip(all_logits, all_counts)] + + return ( + all_logits, + offset_mapping if use_subwords else None, + tokenizer if use_subwords else None, + tokens if use_subwords else None, + ) diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/extract_batched.py b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/extract_batched.py new file mode 100644 index 0000000000000000000000000000000000000000..ead162aaa533eaf5e64158b6bdf66c64e82a8125 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/extract_batched.py @@ -0,0 +1,138 @@ +import math +import sys +import logging + +import numpy as np +from transformers import AutoTokenizer +from tokenizers import AddedToken + +from wtpsplit.utils import Constants, hash_encode +from wtpsplit.extract import BertCharORTWrapper + +logger = logging.getLogger(__name__) + + +def extract_batched( + batch_of_texts, + model, + block_size, + batch_size, + lang_code=None, + pad_last_batch=False, + verbose=False, +): + """ + Like extract.py, but does not split the input into chunks of block_size. + Instead, it processes the input in batches. So each input batch must be smaller than block_size. + """ + if "xlm" in model.config.model_type: + use_subwords = True + tokenizer = AutoTokenizer.from_pretrained("xlm-roberta-base") + tokenizer.add_special_tokens({"additional_special_tokens": [AddedToken("\n")]}) + tokens = tokenizer( + batch_of_texts, + return_offsets_mapping=True, + verbose=False, + padding="max_length", # pad to max length (TPUs need fixed length inputs) + return_tensors="np", + truncation=True, + max_length=block_size, + ) + attention_mask = tokens["attention_mask"] + input_ids = tokens["input_ids"] + offset_mapping = [offset[1:-1] for offset in tokens.pop("offset_mapping")] + pad_token_id = tokenizer.pad_token_id + text_lengths = [len(text) for text in input_ids] + else: + pad_token_id = 0 + use_subwords = False + input_ids = batch_of_texts.copy() + text_lengths = [len(text) for text in input_ids] + offset_mapping = text_lengths + + # when using ChLMs, it can be that the input is too long --> simply truncate + if max(text_lengths) > block_size: + # truncate + longer_than_block_size = [i for i, length in enumerate(text_lengths) if length > block_size] + if verbose: + logger.info(f"Truncating {len(longer_than_block_size)} texts longer than block_size={block_size}") + for i in longer_than_block_size: + input_ids[i] = input_ids[i][:block_size] + + # make sure block_size is a multiple of downsampling rate + downsampling_rate = getattr(model.config, "downsampling_rate", 1) + block_size = math.ceil(block_size / downsampling_rate) * downsampling_rate + + if not use_subwords: + codec = "utf-32-le" if sys.byteorder == "little" else "utf-32-be" + hashed_ids = [] + attention_mask = np.ones((len(input_ids), block_size), dtype=int) + for i, text in enumerate(input_ids): + ord = np.frombuffer(bytearray(text, encoding=codec), dtype=np.int32) + # pad + if len(ord) < block_size: + # mask out padding + attention_mask[i, len(ord) :] = 0 + # pad to max length, i.e., block size (no truncation due to TPUs) + ord = np.pad(ord, (0, block_size - len(ord))) + hashed_ids.append(hash_encode(ord, model.config.num_hash_functions, model.config.num_hash_buckets)) + hashed_ids = np.array(hashed_ids) + + uses_lang_adapters = getattr(model.config, "language_adapter", "off") == "on" + if uses_lang_adapters: + if lang_code is None: + raise ValueError("Please specify a `lang_code` when using a model with language adapters.") + + if isinstance(model, BertCharORTWrapper): + raise ValueError("Language adapters are not supported in ONNX models.") + + language_ids = np.array( + [Constants.LANG_CODE_TO_INDEX[lang_code]] * batch_size, + dtype=int, + ) + else: + language_ids = None + + if len(attention_mask) < batch_size and pad_last_batch: + n_missing = batch_size - len(attention_mask) + + if not use_subwords: + hashed_ids = np.pad(hashed_ids, ((0, n_missing), (0, 0), (0, 0))) + else: + # Pad with the specific pad_token_id for the tokenizer + input_ids = np.pad(input_ids, ((0, n_missing), (0, 0)), constant_values=pad_token_id) + attention_mask = np.pad(attention_mask, ((0, n_missing), (0, 0))) + else: + n_missing = 0 + + kwargs = {"language_ids": language_ids} if uses_lang_adapters else {} + + if use_subwords and model.config.model_type == "xlm-roberta": + # TODO: generalize + import torch + + with torch.no_grad(): + logits = ( + model.model( + input_ids=torch.from_numpy(input_ids).to(model.model.device), + attention_mask=torch.from_numpy(attention_mask).to(model.model.device), + **kwargs, + )["logits"] + .cpu() + .numpy() + ) + else: + logits = model( + input_ids=input_ids if use_subwords else None, + hashed_ids=None if use_subwords else hashed_ids, + attention_mask=attention_mask, + **kwargs, + )["logits"] + if use_subwords: + logits = logits[:, 1:-1, :] # remove CLS and SEP tokens + + return ( + logits[: batch_size - n_missing], + offset_mapping, + tokenizer if use_subwords else None, + ) diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/models.py b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/models.py new file mode 100644 index 0000000000000000000000000000000000000000..b68d0e85044608bbb7f0962087687e46cba2495f --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/models.py @@ -0,0 +1,1421 @@ +import copy +import math +from typing import List, Optional, Tuple, Union + +import torch +from torch import Tensor, nn +from torch.nn import CrossEntropyLoss +from transformers import AutoModel, AutoModelForTokenClassification +from transformers.modeling_outputs import ( + BaseModelOutputWithPoolingAndCrossAttentions, + BaseModelOutputWithPastAndCrossAttentions, +) +from transformers.modeling_utils import ModuleUtilsMixin +from transformers.models.bert.modeling_bert import BertEncoder, BertForTokenClassification, BertModel, BertPooler +from transformers.models.canine.modeling_canine import ( + _PRIMES, + ACT2FN, + BaseModelOutput, + CanineAttention, + CanineEmbeddings, + CanineEncoder, + CanineForTokenClassification, + CanineIntermediate, + CanineLayer, + CanineModel, + CanineModelOutputWithPooling, + CanineOutput, + CaninePooler, + CanineSelfAttention, + CanineSelfOutput, + CharactersToMolecules, + ConvProjection, + TokenClassifierOutput, +) +from transformers.models.xlm_roberta import ( + XLMRobertaForTokenClassification, + XLMRobertaModel, +) +from transformers.models.xlm_roberta.modeling_xlm_roberta import ( + XLMRobertaEmbeddings, + XLMRobertaPooler, + XLMRobertaLayer, +) + +from wtpsplit.configs import BertCharConfig, LACanineConfig, SubwordXLMConfig +from wtpsplit.utils import Constants + + +# added n-gram representations +class LACanineEmbeddings(CanineEmbeddings): + def __init__(self, config): + super().__init__(config) + + self.ngram_order = getattr(config, "ngram_order", 1) + if self.ngram_order > 1: + raise NotImplementedError("n-gram representations are not implemented.") + + shard_embedding_size = config.hidden_size // config.num_hash_functions + for j in range(2, self.ngram_order + 1): + for i in range(config.num_hash_functions): + name = f"HashBucketCodepointEmbedder_{i}_{j}" + setattr( + self, + name, + nn.Embedding(config.num_hash_buckets, shard_embedding_size), + ) + + def _embed_hash_buckets(self, input_ids=None, hashed_ids=None): + embedding_size = self.config.hidden_size + num_hashes = self.config.num_hash_functions + num_buckets = self.config.num_hash_buckets + + assert (input_ids is None) + ( + hashed_ids is None + ) == 1, "Either `input_ids` or `hashed_ids` must be provided (and not both!)." + + """Converts IDs (e.g. codepoints) into embeddings via multiple hashing.""" + if embedding_size % num_hashes != 0: + raise ValueError(f"Expected `embedding_size` ({embedding_size}) % `num_hashes` ({num_hashes}) == 0") + + if num_hashes > len(_PRIMES): + raise ValueError(f"`num_hashes` must be <= {len(_PRIMES)}") + + embedding_shards = [] + for i in range(num_hashes): + name = f"HashBucketCodepointEmbedder_{i}" + + hash_ids = ((input_ids + 1) * _PRIMES[i]) % num_buckets if hashed_ids is None else hashed_ids[:, :, i] + + shard_embeddings = getattr(self, name)(hash_ids) + embedding_shards.append(shard_embeddings) + + return torch.cat(embedding_shards, dim=-1) + + def forward( + self, + input_ids: Optional[torch.LongTensor] = None, + hashed_ids: Optional[torch.LongTensor] = None, + token_type_ids: Optional[torch.LongTensor] = None, + position_ids: Optional[torch.LongTensor] = None, + inputs_embeds: Optional[torch.FloatTensor] = None, + **kwargs, + ) -> torch.FloatTensor: + if input_ids is not None: + input_shape = input_ids.size() + elif hashed_ids is not None: + input_shape = hashed_ids.size()[:-1] + else: + input_shape = inputs_embeds.size()[:-1] + + seq_length = input_shape[1] + + if position_ids is None: + position_ids = self.position_ids[:, :seq_length] + + if token_type_ids is None: + token_type_ids = torch.zeros(input_shape, dtype=torch.long, device=self.position_ids.device) + + if inputs_embeds is None: + inputs_embeds = self._embed_hash_buckets(input_ids, hashed_ids) + + token_type_embeddings = self.token_type_embeddings(token_type_ids) + + embeddings = inputs_embeds + token_type_embeddings + + if self.position_embedding_type == "absolute": + position_embeddings = self.char_position_embeddings(position_ids) + embeddings += position_embeddings + embeddings = self.LayerNorm(embeddings) + embeddings = self.dropout(embeddings) + return embeddings + + +class LACanineSelfAttention(CanineSelfAttention): + def __init__(self, config): + super(CanineSelfAttention, self).__init__() + if config.hidden_size % config.num_attention_heads != 0 and not hasattr(config, "embedding_size"): + raise ValueError( + f"The hidden size ({config.hidden_size}) is not a multiple of the number of attention " + f"heads ({config.num_attention_heads})" + ) + + self.lookahead = config.lookahead + self.lookahead_block_size = config.lookahead_block_size + + if self.lookahead is not None: + max_positions = config.max_position_embeddings + assert max_positions % self.lookahead_block_size == 0 + + self.register_buffer( + "bias", + torch.tril( + torch.ones( + ( + max_positions // self.lookahead_block_size, + max_positions // self.lookahead_block_size, + ), + dtype=torch.uint8, + ), + diagonal=self.lookahead, + ) + .repeat_interleave(self.lookahead_block_size, dim=1) + .repeat_interleave(self.lookahead_block_size, dim=0) + .view( + 1, + 1, + max_positions, + max_positions, + ), + ) + + self.num_attention_heads = config.num_attention_heads + self.attention_head_size = int(config.hidden_size / config.num_attention_heads) + self.all_head_size = self.num_attention_heads * self.attention_head_size + + self.query = nn.Linear(config.hidden_size, self.all_head_size) + self.key = nn.Linear(config.hidden_size, self.all_head_size) + self.value = nn.Linear(config.hidden_size, self.all_head_size) + + self.dropout = nn.Dropout(config.attention_probs_dropout_prob) + self.position_embedding_type = getattr(config, "position_embedding_type", "absolute") + if self.position_embedding_type == "relative_key" or self.position_embedding_type == "relative_key_query": + self.max_position_embeddings = config.max_position_embeddings + self.distance_embedding = nn.Embedding(2 * config.max_position_embeddings - 1, self.attention_head_size) + + def transpose_for_scores(self, x): + new_x_shape = x.size()[:-1] + ( + self.num_attention_heads, + self.attention_head_size, + ) + x = x.view(*new_x_shape) + return x.permute(0, 2, 1, 3) + + def forward( + self, + from_tensor: torch.Tensor, + to_tensor: torch.Tensor, + attention_mask: Optional[torch.FloatTensor] = None, + head_mask: Optional[torch.FloatTensor] = None, + output_attentions: Optional[bool] = False, + ) -> Tuple[torch.Tensor, Optional[torch.Tensor]]: + mixed_query_layer = self.query(from_tensor) + + # If this is instantiated as a cross-attention module, the keys + # and values come from an encoder; the attention mask needs to be + # such that the encoder's padding tokens are not attended to. + + key_layer = self.transpose_for_scores(self.key(to_tensor)) + value_layer = self.transpose_for_scores(self.value(to_tensor)) + + query_layer = self.transpose_for_scores(mixed_query_layer) + + # Take the dot product between "query" and "key" to get the raw attention scores. + attention_scores = torch.matmul(query_layer, key_layer.transpose(-1, -2)) + + if self.position_embedding_type == "relative_key" or self.position_embedding_type == "relative_key_query": + seq_length = from_tensor.size()[1] + position_ids_l = torch.arange(seq_length, dtype=torch.long, device=from_tensor.device).view(-1, 1) + position_ids_r = torch.arange(seq_length, dtype=torch.long, device=from_tensor.device).view(1, -1) + distance = position_ids_l - position_ids_r + positional_embedding = self.distance_embedding(distance + self.max_position_embeddings - 1) + positional_embedding = positional_embedding.to(dtype=query_layer.dtype) # fp16 compatibility + + if self.position_embedding_type == "relative_key": + relative_position_scores = torch.einsum("bhld,lrd->bhlr", query_layer, positional_embedding) + attention_scores = attention_scores + relative_position_scores + elif self.position_embedding_type == "relative_key_query": + relative_position_scores_query = torch.einsum("bhld,lrd->bhlr", query_layer, positional_embedding) + relative_position_scores_key = torch.einsum("bhrd,lrd->bhlr", key_layer, positional_embedding) + attention_scores = attention_scores + relative_position_scores_query + relative_position_scores_key + + attention_scores = attention_scores / math.sqrt(self.attention_head_size) + if attention_mask is not None: + if attention_mask.ndim == 3: + # if attention_mask is 3D, do the following: + attention_mask = torch.unsqueeze(attention_mask, dim=1) + # Since attention_mask is 1.0 for positions we want to attend and 0.0 for + # masked positions, this operation will create a tensor which is 0.0 for + # positions we want to attend and -10000.0 for masked positions. + attention_mask = (1.0 - attention_mask.to(attention_scores.dtype)) * torch.finfo( + attention_scores.dtype + ).min + + # Apply the attention mask (precomputed for all layers in CanineModel forward() function) + attention_scores = attention_scores + attention_mask + + if self.lookahead is not None: + query_length, key_length = query_layer.size(-2), key_layer.size(-2) + causal_mask = self.bias[ + :, + :, + key_length - query_length : key_length, + :key_length, + ].to(torch.bool) + mask_value = torch.finfo(attention_scores.dtype).min + mask_value = torch.tensor(mask_value, dtype=attention_scores.dtype).to(attention_scores.device) + attention_scores = torch.where( + causal_mask, + attention_scores, + mask_value, + ) + + # Normalize the attention scores to probabilities. + attention_probs = nn.functional.softmax(attention_scores, dim=-1) + + # This is actually dropping out entire tokens to attend to, which might + # seem a bit unusual, but is taken from the original Transformer paper. + attention_probs = self.dropout(attention_probs) + + # Mask heads if we want to + if head_mask is not None: + attention_probs = attention_probs * head_mask + + context_layer = torch.matmul(attention_probs, value_layer) + + context_layer = context_layer.permute(0, 2, 1, 3).contiguous() + new_context_layer_shape = context_layer.size()[:-2] + (self.all_head_size,) + context_layer = context_layer.view(*new_context_layer_shape) + + outputs = (context_layer, attention_probs) if output_attentions else (context_layer,) + + return outputs + + +class LACanineAttention(CanineAttention): + """ + Additional arguments related to local attention: + + - **local** (`bool`, *optional*, defaults to `False`) -- Whether to apply local attention. + - **always_attend_to_first_position** (`bool`, *optional*, defaults to `False`) -- Should all blocks be able to + attend + to the `to_tensor`'s first position (e.g. a [CLS] position)? - **first_position_attends_to_all** (`bool`, + *optional*, defaults to `False`) -- Should the *from_tensor*'s first position be able to attend to all + positions within the *from_tensor*? - **attend_from_chunk_width** (`int`, *optional*, defaults to 128) -- The + width of each block-wise chunk in `from_tensor`. - **attend_from_chunk_stride** (`int`, *optional*, defaults to + 128) -- The number of elements to skip when moving to the next block in `from_tensor`. - + **attend_to_chunk_width** (`int`, *optional*, defaults to 128) -- The width of each block-wise chunk in + *to_tensor*. - **attend_to_chunk_stride** (`int`, *optional*, defaults to 128) -- The number of elements to + skip when moving to the next block in `to_tensor`. + """ + + def __init__( + self, + config, + local=False, + always_attend_to_first_position: bool = False, + first_position_attends_to_all: bool = False, + attend_from_chunk_width: int = 128, + attend_from_chunk_stride: int = 128, + attend_to_chunk_width: int = 128, + attend_to_chunk_stride: int = 128, + ): + super(CanineAttention, self).__init__() + self.self = LACanineSelfAttention(config) + self.output = CanineSelfOutput(config) + self.pruned_heads = set() + + # additional arguments related to local attention + self.local = local + if attend_from_chunk_width < attend_from_chunk_stride: + raise ValueError( + "`attend_from_chunk_width` < `attend_from_chunk_stride` would cause sequence positions to get skipped." + ) + if attend_to_chunk_width < attend_to_chunk_stride: + raise ValueError( + "`attend_to_chunk_width` < `attend_to_chunk_stride`would cause sequence positions to get skipped." + ) + self.always_attend_to_first_position = always_attend_to_first_position + self.first_position_attends_to_all = first_position_attends_to_all + self.attend_from_chunk_width = attend_from_chunk_width + self.attend_from_chunk_stride = attend_from_chunk_stride + self.attend_to_chunk_width = attend_to_chunk_width + self.attend_to_chunk_stride = attend_to_chunk_stride + + +class LACanineOutput(CanineOutput): + def __init__(self, config): + super().__init__(config) + self.bottleneck_size = config.hidden_size // config.bottleneck_factor + self.hidden_size = config.hidden_size + + if isinstance(config.hidden_act, str): + self.act_fn = ACT2FN[config.hidden_act] + else: + self.act_fn = config.hidden_act + + self.language_adapter = config.language_adapter + + if self.language_adapter in {"on", "shared"}: + # language adapter init + dummy_ff_downs = [nn.Linear(self.hidden_size, self.bottleneck_size) for _ in range(config.n_languages)] + dummy_ff_ups = [nn.Linear(self.bottleneck_size, self.hidden_size) for _ in range(config.n_languages)] + + self.lang_ff_down_weights = nn.Embedding( + config.n_languages, + (self.hidden_size * self.bottleneck_size), + _weight=torch.stack([l.weight.data.T.reshape(-1) for l in dummy_ff_downs]), + ) + self.lang_ff_up_weights = nn.Embedding( + config.n_languages, + (self.bottleneck_size * self.hidden_size), + _weight=torch.stack([l.weight.data.T.reshape(-1) for l in dummy_ff_ups]), + ) + self.lang_ff_down_biases = nn.Embedding( + config.n_languages, + self.bottleneck_size, + _weight=torch.stack([l.bias.data for l in dummy_ff_downs]), + ) + self.lang_ff_up_biases = nn.Embedding( + config.n_languages, + self.hidden_size, + _weight=torch.stack([l.bias.data for l in dummy_ff_ups]), + ) + + def forward( + self, + hidden_states: Tuple[torch.FloatTensor], + input_tensor: torch.FloatTensor, + language_ids: Optional[torch.LongTensor], + ) -> torch.FloatTensor: + hidden_states = self.dense(hidden_states) + hidden_states = self.dropout(hidden_states) + + hidden_states = self.LayerNorm(hidden_states + input_tensor) + + if self.language_adapter == "off": + return hidden_states + elif self.language_adapter == "on": + ff_down_weights = self.lang_ff_down_weights(language_ids) + ff_up_weights = self.lang_ff_up_weights(language_ids) + ff_down_biases = self.lang_ff_down_biases(language_ids) + ff_up_biases = self.lang_ff_up_biases(language_ids) + elif self.language_adapter == "shared": + ff_down_weights = self.lang_ff_down_weights.weight.mean(0, keepdim=True) + ff_up_weights = self.lang_ff_up_weights.weight.mean(0, keepdim=True) + ff_down_biases = self.lang_ff_down_biases.weight.mean(0, keepdim=True) + ff_up_biases = self.lang_ff_up_biases.weight.mean(0, keepdim=True) + + ff_down_weights = ff_down_weights.view(-1, self.hidden_size, self.bottleneck_size) + ff_up_weights = ff_down_weights.view(-1, self.bottleneck_size, self.hidden_size) + + down = self.act_fn(torch.matmul(hidden_states, ff_down_weights) + ff_down_biases.unsqueeze(1)) + up = torch.matmul(down, ff_up_weights) + ff_up_biases.unsqueeze(1) + + hidden_states = self.LayerNorm(hidden_states + up) + + return hidden_states + + +class LACanineLayer(CanineLayer): + def __init__( + self, + config, + local, + always_attend_to_first_position, + first_position_attends_to_all, + attend_from_chunk_width, + attend_from_chunk_stride, + attend_to_chunk_width, + attend_to_chunk_stride, + ): + super(CanineLayer, self).__init__() + self.chunk_size_feed_forward = config.chunk_size_feed_forward + assert self.chunk_size_feed_forward == 0 + self.seq_len_dim = 1 + self.attention = LACanineAttention( + config, + local, + always_attend_to_first_position, + first_position_attends_to_all, + attend_from_chunk_width, + attend_from_chunk_stride, + attend_to_chunk_width, + attend_to_chunk_stride, + ) + self.intermediate = CanineIntermediate(config) + self.output = LACanineOutput(config) + + def forward( + self, + hidden_states: Tuple[torch.FloatTensor], + language_ids: Optional[torch.LongTensor] = None, + attention_mask: Optional[torch.FloatTensor] = None, + head_mask: Optional[torch.FloatTensor] = None, + output_attentions: Optional[bool] = False, + ) -> Tuple[torch.FloatTensor, Optional[torch.FloatTensor]]: + self_attention_outputs = self.attention( + hidden_states, + attention_mask, + head_mask, + output_attentions=output_attentions, + ) + attention_output = self_attention_outputs[0] + + outputs = self_attention_outputs[1:] # add self attentions if we output attention weights + + intermediate_output = self.intermediate(attention_output) + layer_output = self.output(intermediate_output, attention_output, language_ids) + + outputs = (layer_output,) + outputs + + return outputs + + def feed_forward_chunk(self, attention_output): + raise NotImplementedError() + + +class LACanineEncoder(CanineEncoder): + def __init__( + self, + config, + local=False, + always_attend_to_first_position=False, + first_position_attends_to_all=False, + attend_from_chunk_width=128, + attend_from_chunk_stride=128, + attend_to_chunk_width=128, + attend_to_chunk_stride=128, + ): + super(CanineEncoder, self).__init__() + self.config = config + self.layer = nn.ModuleList( + [ + LACanineLayer( + config, + local, + always_attend_to_first_position, + first_position_attends_to_all, + attend_from_chunk_width, + attend_from_chunk_stride, + attend_to_chunk_width, + attend_to_chunk_stride, + ) + for _ in range(config.num_hidden_layers) + ] + ) + self.gradient_checkpointing = False + + def forward( + self, + hidden_states: Tuple[torch.FloatTensor], + language_ids: Optional[torch.LongTensor] = None, + attention_mask: Optional[torch.FloatTensor] = None, + head_mask: Optional[torch.FloatTensor] = None, + output_attentions: Optional[bool] = False, + output_hidden_states: Optional[bool] = False, + return_dict: Optional[bool] = True, + ) -> Union[Tuple, BaseModelOutput]: + all_hidden_states = () if output_hidden_states else None + all_self_attentions = () if output_attentions else None + + for i, layer_module in enumerate(self.layer): + if output_hidden_states: + all_hidden_states = all_hidden_states + (hidden_states,) + + layer_head_mask = head_mask[i] if head_mask is not None else None + + if self.gradient_checkpointing and self.training: + + def create_custom_forward(module): + def custom_forward(*inputs): + return module(*inputs, output_attentions) + + return custom_forward + + layer_outputs = torch.utils.checkpoint.checkpoint( + create_custom_forward(layer_module), + hidden_states, + language_ids, + attention_mask, + layer_head_mask, + ) + else: + layer_outputs = layer_module( + hidden_states, + language_ids, + attention_mask, + layer_head_mask, + output_attentions, + ) + + hidden_states = layer_outputs[0] + if output_attentions: + all_self_attentions = all_self_attentions + (layer_outputs[1],) + + if output_hidden_states: + all_hidden_states = all_hidden_states + (hidden_states,) + + if not return_dict: + return tuple(v for v in [hidden_states, all_hidden_states, all_self_attentions] if v is not None) + return BaseModelOutput( + last_hidden_state=hidden_states, + hidden_states=all_hidden_states, + attentions=all_self_attentions, + ) + + +class CausalCharactersToMolecules(CharactersToMolecules): + """Convert character sequence to initial molecule sequence (i.e. downsample) using strided convolutions.""" + + def forward(self, char_encoding: torch.Tensor) -> torch.Tensor: + # MODIFIED: no cls encoding! + assert char_encoding.shape[1] % self.conv.stride[0] == 0 + + # char_encoding has shape [batch, char_seq, hidden_size] + # We transpose it to be [batch, hidden_size, char_seq] + char_encoding = torch.transpose(char_encoding, 1, 2) + downsampled = self.conv(char_encoding) + downsampled = torch.transpose(downsampled, 1, 2) + downsampled = self.activation(downsampled) + + result = downsampled + + result = self.LayerNorm(result) + + return result + + +class LACanineModel(CanineModel): + config_class = LACanineConfig + + def __init__(self, config, add_pooling_layer=True): + super(CanineModel, self).__init__(config) + self.config = config + final_shallow_config = copy.deepcopy(config) + final_shallow_config.num_hidden_layers = 1 + + initial_shallow_config = copy.deepcopy(config) + initial_shallow_config.num_hidden_layers = 1 + + if config.lookahead is not None: + initial_shallow_config.lookahead = config.lookahead + initial_shallow_config.lookahead_block_size = config.downsampling_rate + + # the ConvProjection must not leak future context (ks = 1) + final_shallow_config.lookahead_block_size = config.downsampling_rate + final_shallow_config.lookahead = 0 + + config.lookahead = 0 + + self.char_embeddings = LACanineEmbeddings(config) + # shallow/low-dim transformer encoder to get a initial character encoding + self.initial_char_encoder = LACanineEncoder( + initial_shallow_config, + local=True, + always_attend_to_first_position=False, + first_position_attends_to_all=False, + attend_from_chunk_width=config.local_transformer_stride, + attend_from_chunk_stride=config.local_transformer_stride, + attend_to_chunk_width=config.local_transformer_stride, + attend_to_chunk_stride=config.local_transformer_stride, + ) + self.chars_to_molecules = CausalCharactersToMolecules(config) + # deep transformer encoder + self.encoder = LACanineEncoder(config) + self.projection = ConvProjection(config) + # shallow/low-dim transformer encoder to get a final character encoding + self.final_char_encoder = LACanineEncoder(final_shallow_config) + + self.pooler = CaninePooler(config) if add_pooling_layer else None + + # Initialize weights and apply final processing + self.post_init() + + def _repeat_molecules(self, molecules: torch.Tensor, char_seq_length: torch.Tensor) -> torch.Tensor: + """Repeats molecules to make them the same length as the char sequence.""" + + rate = self.config.downsampling_rate + + return torch.repeat_interleave(molecules, repeats=rate, dim=-2) + + def _downsample_attention_mask(self, char_attention_mask: torch.Tensor, downsampling_rate: int): + """Downsample 2D character attention mask to 2D molecule attention mask using MaxPool1d layer.""" + + # if broadcasted, use MaxPool1d to just pool the last dimension + if char_attention_mask.shape[2] == 1: + return torch.nn.MaxPool1d(kernel_size=downsampling_rate, stride=downsampling_rate)( + char_attention_mask.squeeze(2) + ).unsqueeze(2) + + return torch.nn.MaxPool2d(kernel_size=downsampling_rate, stride=downsampling_rate)(char_attention_mask) + + def forward( + self, + input_ids: Optional[torch.LongTensor] = None, + language_ids: Optional[torch.LongTensor] = None, + attention_mask: Optional[torch.FloatTensor] = None, + token_type_ids: Optional[torch.LongTensor] = None, + position_ids: Optional[torch.LongTensor] = None, + head_mask: Optional[torch.FloatTensor] = None, + inputs_embeds: Optional[torch.FloatTensor] = None, + output_attentions: Optional[bool] = None, + output_hidden_states: Optional[bool] = None, + return_dict: Optional[bool] = None, + ) -> Union[Tuple, CanineModelOutputWithPooling]: + output_attentions = output_attentions if output_attentions is not None else self.config.output_attentions + output_hidden_states = ( + output_hidden_states if output_hidden_states is not None else self.config.output_hidden_states + ) + all_hidden_states = () if output_hidden_states else None + all_self_attentions = () if output_attentions else None + return_dict = return_dict if return_dict is not None else self.config.use_return_dict + + if input_ids is not None and inputs_embeds is not None: + raise ValueError("You cannot specify both input_ids and inputs_embeds at the same time") + elif input_ids is not None: + input_shape = input_ids.size() + elif inputs_embeds is not None: + input_shape = inputs_embeds.size()[:-1] + else: + raise ValueError("You have to specify either input_ids or inputs_embeds") + + batch_size, seq_length = input_shape + device = input_ids.device if input_ids is not None else inputs_embeds.device + + if attention_mask is None: + attention_mask = torch.ones(((batch_size, seq_length)), device=device) + if token_type_ids is None: + token_type_ids = torch.zeros(input_shape, dtype=torch.long, device=device) + + # We can provide a self-attention mask of dimensions [batch_size, from_seq_length, to_seq_length] + # ourselves in which case we just need to make it broadcastable to all heads. + extended_attention_mask: torch.Tensor = self.get_extended_attention_mask(attention_mask, input_shape) + extended_molecule_attention_mask = self._downsample_attention_mask( + extended_attention_mask, downsampling_rate=self.config.downsampling_rate + ) + + # Prepare head mask if needed + # 1.0 in head_mask indicate we keep the head + # attention_probs has shape bsz x n_heads x N x N + # input head_mask has shape [num_heads] or [num_hidden_layers x num_heads] + # and head_mask is converted to shape [num_hidden_layers x batch x num_heads x seq_length x seq_length] + head_mask = self.get_head_mask(head_mask, self.config.num_hidden_layers) + + # `input_char_embeddings`: shape (batch_size, char_seq, char_dim) + input_char_embeddings = self.char_embeddings( + input_ids=input_ids, + position_ids=position_ids, + token_type_ids=token_type_ids, + inputs_embeds=inputs_embeds, + ) + + # Contextualize character embeddings using shallow Transformer. + # We use a 3D attention mask for the local attention. + # `input_char_encoding`: shape (batch_size, char_seq_len, char_dim) + if attention_mask.ndim == 2: + char_attention_mask = self._create_3d_attention_mask_from_input_mask( + input_ids or inputs_embeds, attention_mask + ) + else: + char_attention_mask = attention_mask + init_chars_encoder_outputs = self.initial_char_encoder( + input_char_embeddings, + language_ids=language_ids, + attention_mask=char_attention_mask, + output_attentions=output_attentions, + output_hidden_states=output_hidden_states, + ) + input_char_encoding = init_chars_encoder_outputs.last_hidden_state + + # Downsample chars to molecules. + # The following lines have dimensions: [batch, molecule_seq, molecule_dim]. + # In this transformation, we change the dimensionality from `char_dim` to + # `molecule_dim`, but do *NOT* add a resnet connection. Instead, we rely on + # the resnet connections (a) from the final char transformer stack back into + # the original char transformer stack and (b) the resnet connections from + # the final char transformer stack back into the deep BERT stack of + # molecules. + # + # Empirically, it is critical to use a powerful enough transformation here: + # mean pooling causes training to diverge with huge gradient norms in + # this region of the model; using a convolution here resolves this issue. From + # this, it seems that molecules and characters require a very different + # feature space; intuitively, this makes sense. + init_molecule_encoding = self.chars_to_molecules(input_char_encoding) + + # Deep BERT encoder + # `molecule_sequence_output`: shape (batch_size, mol_seq_len, mol_dim) + encoder_outputs = self.encoder( + init_molecule_encoding, + language_ids=language_ids, + attention_mask=extended_molecule_attention_mask, + head_mask=head_mask, + output_attentions=output_attentions, + output_hidden_states=output_hidden_states, + return_dict=return_dict, + ) + molecule_sequence_output = encoder_outputs[0] + pooled_output = self.pooler(molecule_sequence_output) if self.pooler is not None else None + + # Upsample molecules back to characters. + # `repeated_molecules`: shape (batch_size, char_seq_len, mol_hidden_size) + repeated_molecules = self._repeat_molecules(molecule_sequence_output, char_seq_length=input_shape[-1]) + + # Concatenate representations (contextualized char embeddings and repeated molecules): + # `concat`: shape [batch_size, char_seq_len, molecule_hidden_size+char_hidden_final] + concat = torch.cat([input_char_encoding, repeated_molecules], dim=-1) + + # Project representation dimension back to hidden_size + # `sequence_output`: shape (batch_size, char_seq_len, hidden_size]) + sequence_output = self.projection(concat) + + # Apply final shallow Transformer + # `sequence_output`: shape (batch_size, char_seq_len, hidden_size]) + final_chars_encoder_outputs = self.final_char_encoder( + sequence_output, + language_ids=language_ids, + attention_mask=extended_attention_mask, + output_attentions=output_attentions, + output_hidden_states=output_hidden_states, + ) + sequence_output = final_chars_encoder_outputs.last_hidden_state + + if output_hidden_states: + deep_encoder_hidden_states = encoder_outputs.hidden_states if return_dict else encoder_outputs[1] + all_hidden_states = ( + all_hidden_states + + init_chars_encoder_outputs.hidden_states + + deep_encoder_hidden_states + + final_chars_encoder_outputs.hidden_states + ) + + if output_attentions: + deep_encoder_self_attentions = encoder_outputs.attentions if return_dict else encoder_outputs[-1] + all_self_attentions = ( + all_self_attentions + + init_chars_encoder_outputs.attentions + + deep_encoder_self_attentions + + final_chars_encoder_outputs.attentions + ) + + if not return_dict: + output = (sequence_output, pooled_output) + output += tuple(v for v in [all_hidden_states, all_self_attentions] if v is not None) + return output + + return CanineModelOutputWithPooling( + last_hidden_state=sequence_output, + pooler_output=pooled_output, + hidden_states=all_hidden_states, + attentions=all_self_attentions, + ) + + +class LACanineForTokenClassification(CanineForTokenClassification): + config_class = LACanineConfig + + def __init__(self, config): + super(CanineForTokenClassification, self).__init__(config) + self.num_labels = config.num_labels + + self.canine = LACanineModel(config) + self.dropout = nn.Dropout(config.hidden_dropout_prob) + self.classifier = nn.Linear(config.hidden_size, config.num_labels) + + # Initialize weights and apply final processing + self.post_init() + + def set_language_adapters(self, lang): + lang_index = Constants.LANG_CODE_TO_INDEX[lang] + + for module in self.modules(): + if isinstance(module, LACanineOutput): + module.lang_ff_down_biases.weight = nn.Parameter(module.lang_ff_down_biases.weight[[lang_index]]) + module.lang_ff_down_weights.weight = nn.Parameter(module.lang_ff_down_weights.weight[[lang_index]]) + module.lang_ff_up_biases.weight = nn.Parameter(module.lang_ff_up_biases.weight[[lang_index]]) + module.lang_ff_up_weights.weight = nn.Parameter(module.lang_ff_up_weights.weight[[lang_index]]) + module.language_adapter = "shared" + + def forward( + self, + input_ids: Optional[torch.LongTensor] = None, + language_ids: Optional[torch.LongTensor] = None, + attention_mask: Optional[torch.FloatTensor] = None, + token_type_ids: Optional[torch.LongTensor] = None, + position_ids: Optional[torch.LongTensor] = None, + head_mask: Optional[torch.FloatTensor] = None, + inputs_embeds: Optional[torch.FloatTensor] = None, + labels: Optional[torch.LongTensor] = None, + output_attentions: Optional[bool] = None, + output_hidden_states: Optional[bool] = None, + hashed_ids: Optional[torch.Tensor] = None, + return_dict: Optional[bool] = None, + ) -> Union[Tuple, TokenClassifierOutput]: + r""" + labels (`torch.LongTensor` of shape `(batch_size, sequence_length)`, *optional*): + Labels for computing the token classification loss. Indices should be in `[0, ..., config.num_labels - 1]`. + """ + inputs_embeds = self.canine.char_embeddings._embed_hash_buckets( + input_ids=input_ids, + hashed_ids=hashed_ids, + ) + input_ids = None + + return_dict = return_dict if return_dict is not None else self.config.use_return_dict + + outputs = self.canine( + input_ids, + language_ids=language_ids, + attention_mask=attention_mask, + token_type_ids=token_type_ids, + position_ids=position_ids, + head_mask=head_mask, + inputs_embeds=inputs_embeds, + output_attentions=output_attentions, + output_hidden_states=output_hidden_states, + return_dict=return_dict, + ) + + sequence_output = outputs[0] + + sequence_output = self.dropout(sequence_output) + logits = self.classifier(sequence_output) + + loss = None + if labels is not None: + loss_fct = nn.CrossEntropyLoss() + loss = loss_fct(logits.view(-1, self.num_labels), labels.view(-1)) + + if not return_dict: + output = (logits,) + outputs[2:] + return ((loss,) + output) if loss is not None else output + + return TokenClassifierOutput( + loss=loss, + logits=logits, + hidden_states=outputs.hidden_states, + attentions=outputs.attentions, + ) + + +class BertCharModel(BertModel): + config_class = BertCharConfig + + """ + The model can behave as an encoder (with only self-attention) as well as a decoder, in which case a layer of + cross-attention is added between the self-attention layers, following the architecture described in [Attention is + all you need](https://arxiv.org/abs/1706.03762) by Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, + Llion Jones, Aidan N. Gomez, Lukasz Kaiser and Illia Polosukhin. + To behave as an decoder the model needs to be initialized with the `is_decoder` argument of the configuration set + to `True`. To be used in a Seq2Seq model, the model needs to initialized with both `is_decoder` argument and + `add_cross_attention` set to `True`; an `encoder_hidden_states` is then expected as an input to the forward pass. + """ + + def __init__(self, config, add_pooling_layer=True): + super().__init__(config) + self.config = config + + self.embeddings = LACanineEmbeddings(config) + self.encoder = BertEncoder(config) + + self.pooler = BertPooler(config) if add_pooling_layer else None + + # Initialize weights and apply final processing + self.post_init() + + def get_input_embeddings(self): + return self.embeddings + + +class BertCharForTokenClassification(BertForTokenClassification): + config_class = BertCharConfig + + _keys_to_ignore_on_load_unexpected = [r"pooler"] + + def __init__(self, config): + super().__init__(config) + self.num_labels = config.num_labels + + self.bert = BertCharModel(config, add_pooling_layer=False) + classifier_dropout = ( + config.classifier_dropout if config.classifier_dropout is not None else config.hidden_dropout_prob + ) + self.dropout = nn.Dropout(classifier_dropout) + self.classifier = nn.Linear(config.hidden_size, config.num_labels) + + # Initialize weights and apply final processing + self.post_init() + + def forward( + self, + input_ids: Optional[torch.Tensor] = None, + attention_mask: Optional[torch.Tensor] = None, + token_type_ids: Optional[torch.Tensor] = None, + position_ids: Optional[torch.Tensor] = None, + head_mask: Optional[torch.Tensor] = None, + inputs_embeds: Optional[torch.Tensor] = None, + labels: Optional[torch.Tensor] = None, + output_attentions: Optional[bool] = None, + output_hidden_states: Optional[bool] = None, + hashed_ids: Optional[torch.Tensor] = None, + language_ids=None, + return_dict: Optional[bool] = None, + ): + inputs_embeds = self.bert.embeddings._embed_hash_buckets( + input_ids=input_ids, + hashed_ids=hashed_ids, + ) + input_ids = None + + return super().forward( + input_ids, + attention_mask, + token_type_ids, + position_ids, + head_mask, + inputs_embeds, + labels, + output_attentions, + output_hidden_states, + return_dict, + ) + + +class SubwordXLMForTokenClassification(XLMRobertaForTokenClassification): + config_class = SubwordXLMConfig + + _keys_to_ignore_on_load_unexpected = [r"pooler"] + _keys_to_ignore_on_load_missing = [r"position_ids"] + + def __init__(self, config): + super().__init__(config) + self.num_labels = config.num_labels + + self.roberta = SubwordXLMRobertaModel(config, add_pooling_layer=False) + classifier_dropout = ( + config.classifier_dropout if config.classifier_dropout is not None else config.hidden_dropout_prob + ) + self.dropout = nn.Dropout(classifier_dropout) + self.classifier = nn.Linear(config.hidden_size, config.num_labels) + + # Initialize weights and apply final processing + self.post_init() + + def forward( + self, + input_ids: Optional[torch.LongTensor] = None, + attention_mask: Optional[torch.FloatTensor] = None, + token_type_ids: Optional[torch.LongTensor] = None, + position_ids: Optional[torch.LongTensor] = None, + head_mask: Optional[torch.FloatTensor] = None, + inputs_embeds: Optional[torch.FloatTensor] = None, + labels: Optional[torch.LongTensor] = None, + output_attentions: Optional[bool] = None, + output_hidden_states: Optional[bool] = None, + hashed_ids: Optional[torch.Tensor] = None, + language_ids=None, + return_dict: Optional[bool] = None, + ) -> Union[Tuple[torch.Tensor], TokenClassifierOutput]: + r""" + labels (`torch.LongTensor` of shape `(batch_size, sequence_length)`, *optional*): + Labels for computing the token classification loss. Indices should be in `[0, ..., config.num_labels - 1]`. + """ + return_dict = return_dict if return_dict is not None else self.config.use_return_dict + + outputs = self.roberta( + input_ids, + attention_mask=attention_mask, + token_type_ids=token_type_ids, + position_ids=position_ids, + head_mask=head_mask, + inputs_embeds=inputs_embeds, + output_attentions=output_attentions, + output_hidden_states=output_hidden_states, + return_dict=return_dict, + ) + + sequence_output = outputs[0] + + sequence_output = self.dropout(sequence_output) + logits = self.classifier(sequence_output) + + loss = None + if labels is not None: + # move labels to correct device to enable model parallelism + labels = labels.to(logits.device) + loss_fct = CrossEntropyLoss() + loss = loss_fct(logits.view(-1, self.num_labels), labels.view(-1)) + + if not return_dict: + output = (logits,) + outputs[2:] + return ((loss,) + output) if loss is not None else output + + return TokenClassifierOutput( + loss=loss, + logits=logits, + hidden_states=outputs.hidden_states, + attentions=outputs.attentions, + ) + + +class SubwordXLMRobertaModel(XLMRobertaModel): + _keys_to_ignore_on_load_missing = [r"position_ids"] + + # Copied from transformers.models.bert.modeling_bert.BertModel.__init__ with Bert->XLMRoberta + def __init__(self, config, add_pooling_layer=True): + super().__init__(config) + self.config = config + + self.embeddings = XLMRobertaEmbeddings(config) + self.encoder = SubwordXLMRobertaEncoder(config) + self.lookahead_split_layers = config.lookahead_split_layers + self.pooler = XLMRobertaPooler(config) if add_pooling_layer else None + if config.lookahead is not None: + divide_value = ( + self.lookahead_split_layers if self.lookahead_split_layers is not None else config.num_hidden_layers + ) + if config.lookahead_split_layers is not None: + assert self.lookahead_split_layers <= config.num_hidden_layers + self.effective_lookahead = config.lookahead // divide_value + else: + self.effective_lookahead = None + + # Initialize weights and apply final processing + self.post_init() + + # Copied from transformers.models.bert.modeling_bert.BertModel.forward + def forward( + self, + input_ids: Optional[torch.Tensor] = None, + attention_mask: Optional[torch.Tensor] = None, + token_type_ids: Optional[torch.Tensor] = None, + position_ids: Optional[torch.Tensor] = None, + head_mask: Optional[torch.Tensor] = None, + inputs_embeds: Optional[torch.Tensor] = None, + encoder_hidden_states: Optional[torch.Tensor] = None, + encoder_attention_mask: Optional[torch.Tensor] = None, + past_key_values: Optional[List[torch.FloatTensor]] = None, + use_cache: Optional[bool] = None, + output_attentions: Optional[bool] = None, + output_hidden_states: Optional[bool] = None, + return_dict: Optional[bool] = None, + ) -> Union[Tuple[torch.Tensor], BaseModelOutputWithPoolingAndCrossAttentions]: + r""" + encoder_hidden_states (`torch.FloatTensor` of shape `(batch_size, sequence_length, hidden_size)`, *optional*): + Sequence of hidden-states at the output of the last layer of the encoder. Used in the cross-attention if + the model is configured as a decoder. + encoder_attention_mask (`torch.FloatTensor` of shape `(batch_size, sequence_length)`, *optional*): + Mask to avoid performing attention on the padding token indices of the encoder input. This mask is used in + the cross-attention if the model is configured as a decoder. Mask values selected in `[0, 1]`: + + - 1 for tokens that are **not masked**, + - 0 for tokens that are **masked**. + past_key_values (`tuple(tuple(torch.FloatTensor))` of length `config.n_layers` with each tuple having 4 tensors of shape `(batch_size, num_heads, sequence_length - 1, embed_size_per_head)`): + Contains precomputed key and value hidden states of the attention blocks. Can be used to speed up decoding. + + If `past_key_values` are used, the user can optionally input only the last `decoder_input_ids` (those that + don't have their past key value states given to this model) of shape `(batch_size, 1)` instead of all + `decoder_input_ids` of shape `(batch_size, sequence_length)`. + use_cache (`bool`, *optional*): + If set to `True`, `past_key_values` key value states are returned and can be used to speed up decoding (see + `past_key_values`). + """ + output_attentions = output_attentions if output_attentions is not None else self.config.output_attentions + output_hidden_states = ( + output_hidden_states if output_hidden_states is not None else self.config.output_hidden_states + ) + return_dict = return_dict if return_dict is not None else self.config.use_return_dict + + if self.config.is_decoder: + use_cache = use_cache if use_cache is not None else self.config.use_cache + else: + use_cache = False + + if input_ids is not None and inputs_embeds is not None: + raise ValueError("You cannot specify both input_ids and inputs_embeds at the same time") + elif input_ids is not None: + input_shape = input_ids.size() + elif inputs_embeds is not None: + input_shape = inputs_embeds.size()[:-1] + else: + raise ValueError("You have to specify either input_ids or inputs_embeds") + + batch_size, seq_length = input_shape + device = input_ids.device if input_ids is not None else inputs_embeds.device + + # past_key_values_length + past_key_values_length = past_key_values[0][0].shape[2] if past_key_values is not None else 0 + + if attention_mask is None: + attention_mask = torch.ones(((batch_size, seq_length + past_key_values_length)), device=device) + + if token_type_ids is None: + if hasattr(self.embeddings, "token_type_ids"): + buffered_token_type_ids = self.embeddings.token_type_ids[:, :seq_length] + buffered_token_type_ids_expanded = buffered_token_type_ids.expand(batch_size, seq_length) + token_type_ids = buffered_token_type_ids_expanded + else: + token_type_ids = torch.zeros(input_shape, dtype=torch.long, device=device) + + # We can provide a self-attention mask of dimensions [batch_size, from_seq_length, to_seq_length] + # ourselves in which case we just need to make it broadcastable to all heads. + extended_attention_mask: torch.Tensor = get_extended_attention_mask( + self.config, attention_mask, input_shape, self.effective_lookahead, device, self.dtype + ) + + # If a 2D or 3D attention mask is provided for the cross-attention + # we need to make broadcastable to [batch_size, num_heads, seq_length, seq_length] + if self.config.is_decoder and encoder_hidden_states is not None: + encoder_batch_size, encoder_sequence_length, _ = encoder_hidden_states.size() + encoder_hidden_shape = (encoder_batch_size, encoder_sequence_length) + if encoder_attention_mask is None: + encoder_attention_mask = torch.ones(encoder_hidden_shape, device=device) + encoder_extended_attention_mask = self.invert_attention_mask(encoder_attention_mask) + else: + encoder_extended_attention_mask = None + + # Prepare head mask if needed + # 1.0 in head_mask indicate we keep the head + # attention_probs has shape bsz x n_heads x N x N + # input head_mask has shape [num_heads] or [num_hidden_layers x num_heads] + # and head_mask is converted to shape [num_hidden_layers x batch x num_heads x seq_length x seq_length] + head_mask = self.get_head_mask(head_mask, self.config.num_hidden_layers) + + embedding_output = self.embeddings( + input_ids=input_ids, + position_ids=position_ids, + token_type_ids=token_type_ids, + inputs_embeds=inputs_embeds, + past_key_values_length=past_key_values_length, + ) + encoder_outputs = self.encoder( + embedding_output, + attention_mask=extended_attention_mask, + head_mask=head_mask, + encoder_hidden_states=encoder_hidden_states, + encoder_attention_mask=encoder_extended_attention_mask, + past_key_values=past_key_values, + use_cache=use_cache, + output_attentions=output_attentions, + output_hidden_states=output_hidden_states, + return_dict=return_dict, + init_attention_mask=attention_mask, + dtype=self.dtype, + ) + sequence_output = encoder_outputs[0] + pooled_output = self.pooler(sequence_output) if self.pooler is not None else None + + if not return_dict: + return (sequence_output, pooled_output) + encoder_outputs[1:] + + return BaseModelOutputWithPoolingAndCrossAttentions( + last_hidden_state=sequence_output, + pooler_output=pooled_output, + past_key_values=encoder_outputs.past_key_values, + hidden_states=encoder_outputs.hidden_states, + attentions=encoder_outputs.attentions, + cross_attentions=encoder_outputs.cross_attentions, + ) + + +def get_extended_attention_mask( + config, + attention_mask: Tensor, + input_shape: Tuple[int], + lookahead: Optional[int] = None, + device: torch.device = None, + dtype: torch.float = None, +) -> Tensor: + """ + Makes broadcastable attention and causal masks so that future and masked tokens are ignored. + + Arguments: + attention_mask (`torch.Tensor`): + Mask with ones indicating tokens to attend to, zeros for tokens to ignore. + input_shape (`Tuple[int]`): + The shape of the input to the model. + + Returns: + `torch.Tensor` The extended attention mask, with a the same dtype as `attention_mask.dtype`. + """ + + # if not (attention_mask.dim() == 2 and config.is_decoder): + # show warning only if it won't be shown in `create_extended_attention_mask_for_decoder` + # if device is not None: + # warnings.warn( + # "The `device` argument is deprecated and will be removed in v5 of Transformers.", FutureWarning + # ) + # We can provide a self-attention mask of dimensions [batch_size, from_seq_length, to_seq_length] + # ourselves in which case we just need to make it broadcastable to all heads. + if attention_mask.dim() == 3: + extended_attention_mask = attention_mask[:, None, :, :] + + elif attention_mask.dim() == 2: + # Provided a padding mask of dimensions [batch_size, seq_length] + # - if the model is a decoder, apply a causal mask in addition to the padding mask + # - if the model is an encoder, make the mask broadcastable to [batch_size, num_heads, seq_length, seq_length] + if config.is_decoder: + extended_attention_mask = ModuleUtilsMixin.create_extended_attention_mask_for_decoder( + input_shape, attention_mask, device + ) + if lookahead is not None: + # lookahead mask of shape [batch_size, 1, seq_length, seq_length] + # the current token should attend to the next `lookahead` tokens + # the current token should not attend to the previous `lookahead` tokens + _, seq_length = attention_mask.shape + # Create a lookahead mask + lookahead_mask = torch.tril(torch.ones(seq_length, seq_length), diagonal=lookahead, out=None).to( + attention_mask.device + ) + # Combine the attention mask with the lookahead mask + extended_attention_mask = attention_mask[:, None, None, :] * lookahead_mask + else: + extended_attention_mask = attention_mask[:, None, None, :] + else: + raise ValueError( + f"Wrong shape for input_ids (shape {input_shape}) or attention_mask (shape {attention_mask.shape})" + ) + + # Since attention_mask is 1.0 for positions we want to attend and 0.0 for + # masked positions, this operation will create a tensor which is 0.0 for + # positions we want to attend and the dtype's smallest value for masked positions. + # Since we are adding it to the raw scores before the softmax, this is + # effectively the same as removing these entirely. + extended_attention_mask = extended_attention_mask.to(dtype=dtype) # fp16 compatibility + extended_attention_mask = (1.0 - extended_attention_mask) * torch.finfo(dtype).min + return extended_attention_mask + + +# Copied from transformers.models.roberta.modeling_roberta.RobertaEncoder with Roberta->XLMRoberta +class SubwordXLMRobertaEncoder(nn.Module): + def __init__(self, config): + super().__init__() + self.config = config + self.layer = nn.ModuleList([XLMRobertaLayer(config) for _ in range(config.num_hidden_layers)]) + self.gradient_checkpointing = False + + def forward( + self, + hidden_states: torch.Tensor, + attention_mask: Optional[torch.FloatTensor] = None, + head_mask: Optional[torch.FloatTensor] = None, + encoder_hidden_states: Optional[torch.FloatTensor] = None, + encoder_attention_mask: Optional[torch.FloatTensor] = None, + past_key_values: Optional[Tuple[Tuple[torch.FloatTensor]]] = None, + use_cache: Optional[bool] = None, + output_attentions: Optional[bool] = False, + output_hidden_states: Optional[bool] = False, + return_dict: Optional[bool] = True, + init_attention_mask: Optional[torch.Tensor] = None, + dtype: torch.float = None, + ) -> Union[Tuple[torch.Tensor], BaseModelOutputWithPastAndCrossAttentions]: + all_hidden_states = () if output_hidden_states else None + all_self_attentions = () if output_attentions else None + all_cross_attentions = () if output_attentions and self.config.add_cross_attention else None + + if self.gradient_checkpointing and self.training: + if use_cache: + print("`use_cache=True` is incompatible with gradient checkpointing. Setting `use_cache=False`...") + use_cache = False + + next_decoder_cache = () if use_cache else None + for i, layer_module in enumerate(self.layer): + # MODIFIED: if lookahead_split_layers is given, use causal mask starting from that layer + if self.config.lookahead_split_layers is not None: + if i == self.config.lookahead_split_layers: + attention_mask = get_extended_attention_mask( + self.config, init_attention_mask, init_attention_mask.shape, 0, hidden_states.device, dtype + ) + + if output_hidden_states: + all_hidden_states = all_hidden_states + (hidden_states,) + + layer_head_mask = head_mask[i] if head_mask is not None else None + past_key_value = past_key_values[i] if past_key_values is not None else None + + if self.gradient_checkpointing and self.training: + + def create_custom_forward(module): + def custom_forward(*inputs): + return module(*inputs, past_key_value, output_attentions) + + return custom_forward + + layer_outputs = torch.utils.checkpoint.checkpoint( + create_custom_forward(layer_module), + hidden_states, + attention_mask, + layer_head_mask, + encoder_hidden_states, + encoder_attention_mask, + ) + else: + layer_outputs = layer_module( + hidden_states, + attention_mask, + layer_head_mask, + encoder_hidden_states, + encoder_attention_mask, + past_key_value, + output_attentions, + ) + + hidden_states = layer_outputs[0] + if use_cache: + next_decoder_cache += (layer_outputs[-1],) + if output_attentions: + all_self_attentions = all_self_attentions + (layer_outputs[1],) + if self.config.add_cross_attention: + all_cross_attentions = all_cross_attentions + (layer_outputs[2],) + + if output_hidden_states: + all_hidden_states = all_hidden_states + (hidden_states,) + + if not return_dict: + return tuple( + v + for v in [ + hidden_states, + next_decoder_cache, + all_hidden_states, + all_self_attentions, + all_cross_attentions, + ] + if v is not None + ) + return BaseModelOutputWithPastAndCrossAttentions( + last_hidden_state=hidden_states, + past_key_values=next_decoder_cache, + hidden_states=all_hidden_states, + attentions=all_self_attentions, + cross_attentions=all_cross_attentions, + ) + + +AutoModel.register(LACanineConfig, LACanineModel) +AutoModelForTokenClassification.register(LACanineConfig, LACanineForTokenClassification) + +AutoModel.register(BertCharConfig, BertCharModel) +AutoModelForTokenClassification.register(BertCharConfig, BertCharForTokenClassification) + +AutoModel.register(SubwordXLMConfig, SubwordXLMForTokenClassification) +AutoModelForTokenClassification.register(SubwordXLMConfig, SubwordXLMForTokenClassification) + +# if __name__ == "__main__": +# # test XLM +# from transformers import AutoTokenizer + +# model_str = "xlm-roberta-base" +# config = SubwordXLMConfig.from_pretrained(model_str) +# config.num_labels = 4 +# config.num_hidden_layers = 12 +# config.lookahead = 48 +# config.lookahead_split_layers = 6 +# backbone = SubwordXLMForTokenClassification.from_pretrained(model_str, config=config) +# print(summary(backbone, depth=4)) + +# # some sample input +# text = "A sentence. Now we move on. And on and this is the last sentence. Now, we are starting to move on to the next sentence. This is the last sentence." +# tokenizer = AutoTokenizer.from_pretrained(model_str) + +# tokens = tokenizer(text, return_tensors="pt", add_special_tokens=False, pad_to_multiple_of=512, padding=True) +# from tokenizers import AddedToken + +# tokenizer.add_special_tokens({"additional_special_tokens": [AddedToken("\n")]}) +# print(tokenizer.tokenize(text)) +# print(tokenizer.encode(text)) +# print(tokens) + +# # forward pass +# print(backbone(**tokens)) diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/train/__init__.py b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/train/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/train/adaptertrainer.py b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/train/adaptertrainer.py new file mode 100644 index 0000000000000000000000000000000000000000..51cd2eb689066a57ed3a18e999b439acc1fe1f99 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/train/adaptertrainer.py @@ -0,0 +1,621 @@ +import os +from typing import Dict + +import numpy as np +import torch +from torch import nn + +from transformers import PreTrainedModel +from transformers.modeling_utils import unwrap_model + + +from transformers.trainer import ( + ALL_LAYERNORM_LAYERS, + WEIGHTS_NAME, + DataLoader, + EvalLoopOutput, + IterableDatasetShard, + List, + Optional, + deepspeed_init, + denumpify_detensorize, + find_batch_size, + get_parameter_names, + has_length, + is_sagemaker_mp_enabled, + is_torch_tpu_available, + nested_concat, + nested_numpify, + nested_truncate, +) + +""" + + +from typing import Any, List, Optional +from torch.utils.data import DataLoader + +from transformers.trainer_pt_utils import ( + IterableDatasetShard, + find_batch_size, + get_parameter_names, + nested_concat, + nested_numpify, + nested_truncate, +) + +try: + from transformers.trainer_pt_utils import has_length +except Exception: + try: + from transformers.utils import has_length + except Exception: + + def has_length(x): + try: + len(x) + return True + except Exception: + return False + +from transformers.trainer_utils import denumpify_detensorize +from transformers.deepspeed import deepspeed_init +from transformers.pytorch_utils import ALL_LAYERNORM_LAYERS +from transformers.utils import WEIGHTS_NAME, is_sagemaker_mp_enabled, is_torch_tpu_available + +try: + from transformers.trainer import EvalLoopOutput +except Exception: + EvalLoopOutput = Any + +""" + + + +from wtpsplit.train.utils import Model + +if is_torch_tpu_available(check_device=False): + import torch_xla.core.xla_model as xm # noqa: F401 + import torch_xla.debug.metrics as met # noqa: F401 + import torch_xla.distributed.parallel_loader as pl # noqa: F401 + +import re +from typing import Callable, Tuple, Union + +from packaging import version +from torch.utils.data import Dataset +from transformers import Trainer, __version__ +from transformers.configuration_utils import PretrainedConfig +from transformers.data.data_collator import DataCollator +from transformers.tokenization_utils_base import PreTrainedTokenizerBase +from transformers.trainer_callback import ( + TrainerCallback, + TrainerControl, + TrainerState, +) +from transformers.trainer_utils import ( + EvalPrediction, +) +from transformers.training_args import TrainingArguments +from transformers.utils import ( + CONFIG_NAME, + is_accelerate_available, + is_apex_available, + is_torch_tpu_available, + logging, +) + +from adapters.composition import AdapterCompositionBlock, Fuse + +if is_apex_available(): + pass + +if is_sagemaker_mp_enabled(): + import smdistributed.modelparallel.torch as smp + +skip_first_batches = None +if is_accelerate_available(): + from accelerate import __version__ as accelerate_version + + if version.parse(accelerate_version) >= version.parse("0.16"): + pass +logger = logging.get_logger(__name__) + +TRAINING_ARGS_NAME = "training_args.bin" + + +class AdapterTrainer(Trainer): + def __init__( + self, + model: Union[PreTrainedModel, nn.Module] = None, + args: TrainingArguments = None, + data_collator: Optional[DataCollator] = None, + train_dataset: Optional[Dataset] = None, + eval_dataset: Optional[Dataset] = None, + tokenizer: Optional[PreTrainedTokenizerBase] = None, + model_init: Callable[[], PreTrainedModel] = None, + compute_metrics: Optional[Callable[[EvalPrediction], Dict]] = None, + callbacks: Optional[List[TrainerCallback]] = None, + adapter_names: Optional[List[List[str]]] = None, + optimizers: Tuple[torch.optim.Optimizer, torch.optim.lr_scheduler.LambdaLR] = (None, None), + preprocess_logits_for_metrics: Callable[[torch.Tensor, torch.Tensor], torch.Tensor] = None, + logging_prefix="", + skip_eval_loss: bool = False, + ): + super().__init__( + model, + args, + data_collator, + train_dataset, + eval_dataset, + tokenizer=tokenizer, + model_init=model_init, + compute_metrics=compute_metrics, + callbacks=[AdapterTrainerCallback(self)] + callbacks if callbacks else [AdapterTrainerCallback(self)], + optimizers=optimizers, + preprocess_logits_for_metrics=preprocess_logits_for_metrics, + ) + + self.logging_prefix = logging_prefix + self.skip_eval_loss = skip_eval_loss + + if adapter_names is not None: + self.model.backbone.set_active_adapters(adapter_names) + # Set the defaults for loading/ saving model & adapters + if isinstance(self.model.backbone, PreTrainedModel): + model_frozen = getattr(self.model.backbone.base_model, "model_frozen", False) + else: + model_frozen = False + if model_frozen and self.model.backbone.active_adapters: + # Check if training AdapterFusion + self.train_adapter_fusion = ( + isinstance(self.model.backbone.active_adapters, Fuse) + or isinstance(self.model.backbone.active_adapters, AdapterCompositionBlock) + and any([isinstance(child, Fuse) for child in self.model.backbone.active_adapters.children]) + ) + if self.model.backbone.active_adapters is None: + raise ValueError( + "Expected a model with an active adapter setup." + "If you want to fully finetune the model use the Trainer class." + ) + if (self.label_names is None or len(self.label_names) < 1) and self.model.active_head is not None: + all_label_names = set() + for head in self.model.backbone._active_heads: + all_label_names |= set(self.model.backbone.heads[head].get_label_names()) + self.label_names = list(all_label_names) + + def create_optimizer(self): + """ + Setup the optimizer. + + We provide a reasonable default that works well. If you want to use something else, you can pass a tuple in the + Trainer's init through `optimizers`, or subclass and override this method in a subclass. + """ + opt_model = self.model_wrapped if is_sagemaker_mp_enabled() else self.model + + if self.optimizer is None: + decay_parameters = get_parameter_names(opt_model, ALL_LAYERNORM_LAYERS) + decay_parameters = [name for name in decay_parameters if "bias" not in name] + if hasattr(self.model, "config") and hasattr(self.model.config, "adapters"): + match_str = r"adapter_fusion_layer\..*\.value" + decay_parameters = [name for name in decay_parameters if not re.match(match_str, name)] + optimizer_grouped_parameters = [ + { + "params": [ + p for n, p in opt_model.named_parameters() if (n in decay_parameters and p.requires_grad) + ], + "weight_decay": self.args.weight_decay, + }, + { + "params": [ + p for n, p in opt_model.named_parameters() if (n not in decay_parameters and p.requires_grad) + ], + "weight_decay": 0.0, + }, + ] + + optimizer_cls, optimizer_kwargs = Trainer.get_optimizer_cls_and_kwargs(self.args) + self.optimizer = optimizer_cls(optimizer_grouped_parameters, **optimizer_kwargs) + + if is_sagemaker_mp_enabled(): + self.optimizer = smp.DistributedOptimizer(self.optimizer) + + return self.optimizer + + def _save(self, output_dir: Optional[str] = None, state_dict=None): + # If we are executing this function, we are the process zero, so we don't check for that. + output_dir = output_dir if output_dir is not None else self.args.output_dir + os.makedirs(output_dir, exist_ok=True) + logger.info(f"Saving model checkpoint to {output_dir}") + # Save a trained model and configuration using `save_pretrained()`. + # They can then be reloaded using `from_pretrained()` + if not isinstance(self.model, PreTrainedModel): + if isinstance(unwrap_model(self.model), PreTrainedModel): + if state_dict is None: + state_dict = self.model.state_dict() + unwrap_model(self.model).save_pretrained(output_dir, state_dict=state_dict) + else: + logger.info("Trainer.model is not a `PreTrainedModel`, only saving its state dict.") + if state_dict is None: + state_dict = self.model.state_dict() + torch.save(state_dict, os.path.join(output_dir, WEIGHTS_NAME)) + else: + self.model.save_all_adapters(output_dir) + if self.train_adapter_fusion: + self.model.save_all_adapter_fusions(output_dir) + if hasattr(self.model, "heads"): + self.model.save_all_heads(output_dir) + if self.tokenizer is not None: + self.tokenizer.save_pretrained(output_dir) + + # Good practice: save your training arguments together with the trained model + torch.save(self.args, os.path.join(output_dir, "training_args.bin")) + + def _load_from_checkpoint(self, resume_from_checkpoint): + args = self.args + if os.path.isfile(os.path.join(resume_from_checkpoint, WEIGHTS_NAME)): + logger.info(f"Loading model from {resume_from_checkpoint}).") + + if os.path.isfile(os.path.join(resume_from_checkpoint, CONFIG_NAME)): + config = PretrainedConfig.from_json_file(os.path.join(resume_from_checkpoint, CONFIG_NAME)) + checkpoint_version = config.transformers_version + if checkpoint_version is not None and checkpoint_version != __version__: + logger.warn( + f"You are resuming training from a checkpoint trained with {checkpoint_version} of " + f"Transformers but your current version is {__version__}. This is not recommended and could " + "yield to errors or unwanted behaviors." + ) + + if args.deepspeed: + # will be resumed in deepspeed_init + pass + else: + adapter_loaded = False + if os.path.isdir(resume_from_checkpoint): + adapter_loaded = self._load_adapters(resume_from_checkpoint) + self._load_adapter_fusions(resume_from_checkpoint) + # Save all heads for a model with heads + if hasattr(self.model, "heads"): + self._load_heads(resume_from_checkpoint) + + if not adapter_loaded: + raise Exception("Can't find a valid checkpoint at {}".format(resume_from_checkpoint)) + + def _load_adapters(self, resume_from_checkpoint): + adapter_loaded = False + for file_name in os.listdir(resume_from_checkpoint): + if os.path.isdir(os.path.join(resume_from_checkpoint, file_name)): + if "," not in file_name and "adapter_config.json" in os.listdir( + os.path.join(resume_from_checkpoint, file_name) + ): + self.model.load_adapter(os.path.join(os.path.join(resume_from_checkpoint, file_name))) + adapter_loaded = True + return adapter_loaded + + def _load_adapter_fusions(self, resume_from_checkpoint): + for file_name in os.listdir(resume_from_checkpoint): + if os.path.isdir(os.path.join(resume_from_checkpoint, file_name)): + if "," in file_name: + self.model.load_adapter_fusion(os.path.join(resume_from_checkpoint, file_name)) + + def _load_heads(self, resume_from_checkpoint): + for file_name in os.listdir(resume_from_checkpoint): + if os.path.isdir(os.path.join(resume_from_checkpoint, file_name)): + if "," not in file_name and "head_config.json" in os.listdir( + os.path.join(resume_from_checkpoint, file_name) + ): + self.model.load_head(os.path.join(resume_from_checkpoint, file_name)) + + def _load_best_model(self): + model = self.model_wrapped if is_sagemaker_mp_enabled() else self.model + logger.info( + f"Loading best adapter(s) from {self.state.best_model_checkpoint} (score: {self.state.best_metric})." + ) + # attempt to re-load all adapters from checkpoint + for adapter in model.adapters_config.adapters: + adapter_dir = os.path.join(self.state.best_model_checkpoint, adapter) + if os.path.exists(adapter_dir): + model.load_adapter(adapter_dir) + if self.train_adapter_fusion: + logger.info( + f"Loading best adapter fusion(s) from {self.state.best_model_checkpoint} (score:" + f" {self.state.best_metric})." + ) + # attempt to re-load all adapter fusions from checkpoint + for fusion in model.adapters_config.fusions: + fusion_dir = os.path.join(self.state.best_model_checkpoint, fusion) + if os.path.exists(fusion_dir): + model.load_adapter_fusion(fusion_dir) + model.to(self.args.device) + + def evaluation_loop( + self, + dataloader: DataLoader, + description: str, + prediction_loss_only: Optional[bool] = None, + ignore_keys: Optional[List[str]] = None, + metric_key_prefix: str = "eval", + ) -> EvalLoopOutput: + """ + Prediction/evaluation loop, shared by `Trainer.evaluate()` and `Trainer.predict()`. + + Works both with or without labels. + """ + args = self.args + + prediction_loss_only = prediction_loss_only if prediction_loss_only is not None else args.prediction_loss_only + + # if eval is called w/o train init deepspeed here + if args.deepspeed and not self.deepspeed: + # XXX: eval doesn't have `resume_from_checkpoint` arg but we should be able to do eval + # from the checkpoint eventually + deepspeed_engine, _, _ = deepspeed_init( + self, num_training_steps=0, resume_from_checkpoint=None, inference=True + ) + self.model = deepspeed_engine.module + self.model_wrapped = deepspeed_engine + self.deepspeed = deepspeed_engine + + model = self._wrap_model(self.model, training=False, dataloader=dataloader) + + if not self.skip_eval_loss: + # if full fp16 or bf16 eval is wanted and this ``evaluation`` or ``predict`` isn't called + # while ``train`` is running, cast it to the right dtype first and then put on device + if not self.is_in_train: + if args.fp16_full_eval: + model = model.to(dtype=torch.float16, device=args.device) + elif args.bf16_full_eval: + model = model.to(dtype=torch.bfloat16, device=args.device) + + batch_size = self.args.eval_batch_size + + logger.warning(f"***** Running {description} *****") + if has_length(dataloader): + logger.warning(f" Num examples = {self.num_examples(dataloader)}") + else: + logger.info(" Num examples: Unknown") + logger.info(f" Batch size = {batch_size}") + + model.eval() + + self.callback_handler.eval_dataloader = dataloader + # Do this before wrapping. + eval_dataset = getattr(dataloader, "dataset", None) + + # MODIFIED: not necessary. + if is_torch_tpu_available(): + dataloader = pl.MpDeviceLoader(dataloader, args.device) # .per_device_loader(args.device) + + if args.past_index >= 0: + self._past = None + + # Initialize containers + # losses/preds/labels on GPU/TPU (accumulated for eval_accumulation_steps) + losses_host = None + preds_host = None + labels_host = None + inputs_host = None + + # losses/preds/labels on CPU (final containers) + all_losses = None + all_preds = None + all_labels = None + all_inputs = None + # Will be useful when we have an iterable dataset so don't know its length. + + observed_num_examples = 0 + # Main evaluation loop + for step, inputs in enumerate(dataloader): + # Update the observed num examples + observed_batch_size = find_batch_size(inputs) + if observed_batch_size is not None: + observed_num_examples += observed_batch_size + # For batch samplers, batch_size is not known by the dataloader in advance. + if batch_size is None: + batch_size = observed_batch_size + + # Prediction step + loss, logits, labels = self.prediction_step( + model, inputs, prediction_loss_only, ignore_keys=ignore_keys + ) + inputs_decode = self._prepare_input(inputs["input_ids"]) if args.include_inputs_for_metrics else None + + # MODIFIED: not necessary. + if is_torch_tpu_available(): + xm.mark_step() + + # Update containers on host + if loss is not None: + # MODIFIED: do not gather across devices. (different loss on each device) + losses = loss.repeat(batch_size) + losses_host = losses if losses_host is None else torch.cat((losses_host, losses), dim=0) + if labels is not None: + labels = self._pad_across_processes(labels) + # MODIFIED: do not gather across devices. + labels = self._nested_gather(labels) + labels_host = ( + labels if labels_host is None else nested_concat(labels_host, labels, padding_index=-100) + ) + if inputs_decode is not None: + inputs_decode = self._pad_across_processes(inputs_decode) + # MODIFIED: do not gather across devices. + inputs_decode = self._nested_gather(inputs_decode) + inputs_host = ( + inputs_decode + if inputs_host is None + else nested_concat(inputs_host, inputs_decode, padding_index=-100) + ) + if logits is not None: + logits = self._pad_across_processes(logits) + # logits = self._nested_gather(logits) + if self.preprocess_logits_for_metrics is not None: + logits = self.preprocess_logits_for_metrics(logits, labels) + preds_host = logits if preds_host is None else nested_concat(preds_host, logits, padding_index=-100) + self.control = self.callback_handler.on_prediction_step(args, self.state, self.control) + + # Gather all tensors and put them back on the CPU if we have done enough accumulation steps. + if args.eval_accumulation_steps is not None and (step + 1) % args.eval_accumulation_steps == 0: + if losses_host is not None: + losses = nested_numpify(losses_host) + all_losses = losses if all_losses is None else np.concatenate((all_losses, losses), axis=0) + if preds_host is not None: + logits = nested_numpify(preds_host) + all_preds = ( + logits if all_preds is None else nested_concat(all_preds, logits, padding_index=-100) + ) + if inputs_host is not None: + inputs_decode = nested_numpify(inputs_host) + all_inputs = ( + inputs_decode + if all_inputs is None + else nested_concat(all_inputs, inputs_decode, padding_index=-100) + ) + if labels_host is not None: + labels = nested_numpify(labels_host) + all_labels = ( + labels if all_labels is None else nested_concat(all_labels, labels, padding_index=-100) + ) + + # Set back to None to begin a new accumulation + losses_host, preds_host, inputs_host, labels_host = ( + None, + None, + None, + None, + ) + + if args.past_index and hasattr(self, "_past"): + # Clean the state at the end of the evaluation loop + delattr(self, "_past") + + # Gather all remaining tensors and put them back on the CPU + if losses_host is not None: + losses = nested_numpify(losses_host) + all_losses = losses if all_losses is None else np.concatenate((all_losses, losses), axis=0) + if preds_host is not None: + logits = nested_numpify(preds_host) + all_preds = logits if all_preds is None else nested_concat(all_preds, logits, padding_index=-100) + if inputs_host is not None: + inputs_decode = nested_numpify(inputs_host) + all_inputs = ( + inputs_decode + if all_inputs is None + else nested_concat(all_inputs, inputs_decode, padding_index=-100) + ) + if labels_host is not None: + labels = nested_numpify(labels_host) + all_labels = labels if all_labels is None else nested_concat(all_labels, labels, padding_index=-100) + + # Number of samples + if has_length(eval_dataset): + num_samples = len(eval_dataset) + # The instance check is weird and does not actually check for the type, but whether the dataset has the right + # methods. Therefore we need to make sure it also has the attribute. + elif isinstance(eval_dataset, IterableDatasetShard) and hasattr(eval_dataset, "num_examples"): + num_samples = eval_dataset.num_examples + else: + if has_length(dataloader): + num_samples = self.num_examples(dataloader) + else: # both len(dataloader.dataset) and len(dataloader) fail + num_samples = observed_num_examples + + # Number of losses has been rounded to a multiple of batch_size and in a distributed training, the number of + # samplers has been rounded to a multiple of batch_size, so we truncate. + if all_losses is not None: + all_losses = all_losses[:num_samples] + if all_preds is not None: + all_preds = nested_truncate(all_preds, num_samples) + if all_labels is not None: + all_labels = nested_truncate(all_labels, num_samples) + if all_inputs is not None: + all_inputs = nested_truncate(all_inputs, num_samples) + else: + if is_torch_tpu_available(): + xm.rendezvous("eval_metrics") + all_losses, all_preds, all_labels, all_inputs, num_samples = None, None, None, None, 0 + + # Metrics! + if is_torch_tpu_available(): + xm.rendezvous("eval_metrics") + # MODIFIED: always compute metrics + if self.compute_metrics is not None: + metrics = self.compute_metrics(self) + else: + metrics = {} + + # To be JSON-serializable, we need to remove numpy types or zero-d tensors + metrics = denumpify_detensorize(metrics) + + if all_losses is not None: + # MODIFIED: no gather, add prefix + loss = all_losses.mean().item() + metrics[f"{metric_key_prefix}_{self.logging_prefix}loss"] = loss + metrics[f"{metric_key_prefix}_loss"] = loss + + # Prefix all keys with metric_key_prefix + '_' + for key in list(metrics.keys()): + if not key.startswith(f"{metric_key_prefix}_"): + metrics[f"{metric_key_prefix}_{key}"] = metrics.pop(key) + + return EvalLoopOutput( + predictions=all_preds, + label_ids=all_labels, + metrics=metrics, + num_samples=num_samples, + ) + + def _save_tpu(self, output_dir: Optional[str] = None): + output_dir = output_dir if output_dir is not None else self.args.output_dir + logger.info(f"Saving model checkpoint to {output_dir}") + + # MODIFIED: also save on other devices + if xm.is_master_ordinal(): + os.makedirs(output_dir, exist_ok=True) + torch.save(self.args, os.path.join(output_dir, TRAINING_ARGS_NAME)) + + # # Save a trained model and configuration using `save_pretrained()`. + # # They can then be reloaded using `from_pretrained()` + xm.rendezvous("saving_checkpoint") + if isinstance(self.model, Model): + actual_model = self.model.backbone + else: + actual_model = self.model + if not isinstance(actual_model, PreTrainedModel): + if isinstance(unwrap_model(actual_model), PreTrainedModel): + unwrap_model(actual_model).save_pretrained( + output_dir, + is_main_process=self.args.should_save, + state_dict=actual_model.state_dict(), + save_function=xm.save, + ) + else: + logger.warning("Trainer.model is not a `PreTrainedModel`, only saving its state dict.") + state_dict = actual_model.state_dict() + xm.save(state_dict, os.path.join(output_dir, WEIGHTS_NAME)) + else: + actual_model.save_pretrained(output_dir, is_main_process=self.args.should_save, save_function=xm.save) + if self.tokenizer is not None and self.args.should_save: + self.tokenizer.save_pretrained(output_dir) + + +class AdapterTrainerCallback(TrainerCallback): + def __init__(self, trainer): + super().__init__() + self.trainer = trainer + + def on_train_begin(self, args: TrainingArguments, state: TrainerState, control: TrainerControl, **kwargs): + model = kwargs.pop("model") + model_frozen = getattr(model.backbone.base_model, "model_frozen", False) + if not model_frozen: + raise ValueError( + "The pre-trained model weights are not frozen. For training adapters, please call the train_adapter()" + " method" + ) + + def on_step_end(self, args: TrainingArguments, state: TrainerState, control: TrainerControl, **kwargs): + # apply adapter fusion weight regularization on the value matrix + model = kwargs.pop("model") + if self.trainer.train_adapter_fusion: + fusion_reg_loss = model.backbone.base_model.get_fusion_regularization_loss() + if fusion_reg_loss is not None: + fusion_reg_loss.backward() diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/train/evaluate.py b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/train/evaluate.py new file mode 100644 index 0000000000000000000000000000000000000000..bbed3a95edc962bed53d5a100064acbfd2664dec --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/train/evaluate.py @@ -0,0 +1,299 @@ +import logging +import sys +from typing import Literal + +import numpy as np +import pysbd +import sklearn.metrics + +from wtpsplit.evaluation.intrinsic_pairwise import generate_k_mers, process_logits_k_mers +from wtpsplit.extract import PyTorchWrapper, extract +from wtpsplit.utils import Constants, sigmoid, corrupt, token_to_char_probs + +logger = logging.getLogger(__name__) + + +def compute_iou(a, b): + return len(set(a) & set(b)) / len(set(a) | set(b)) + + +def compute_f1(pred, true): + pred = set(pred) + true = set(true) + + tp = len(true & pred) + fp = len(pred - true) + fn = len(true - pred) + + precision = tp / (tp + fp) + recall = tp / (tp + fn) + + f1 = 2 * (precision * recall) / (precision + recall) + + return ( + f1, + precision, + ) + + +def get_metrics(labels, preds, threshold: float = 0.01): + # Compute precision-recall curve and AUC + precision, recall, thresholds = sklearn.metrics.precision_recall_curve(labels, sigmoid(preds)) + pr_auc = sklearn.metrics.auc(recall, precision) + + # Compute F1 scores for all thresholds + f1_scores = 2 * (precision * recall) / (precision + recall + 1e-10) + + # Find best F1 score and its corresponding threshold + best_f1_index = np.argmax(f1_scores[:-1]) # Exclude last value because it corresponds to recall of 0. + best_f1 = f1_scores[best_f1_index] + best_threshold = thresholds[best_f1_index] + + # Compute F1 score for a specific threshold (e.g., 0.01 after applying sigmoid) + f1_at_specific_threshold = sklearn.metrics.f1_score(labels, sigmoid(preds) > threshold) + + metrics = {"pr_auc": pr_auc} + info = { + "probs": preds, + "labels": labels, + "recalls": recall, + "precisions": precision, + "f1_scores": f1_scores, + "f1_best": best_f1, + "threshold_best": sigmoid(best_threshold).item(), + "f1": f1_at_specific_threshold, + "thresholds": thresholds, + } + + return metrics, info + + +def evaluate_sentence( + lang_code, + sentences, + model, + stride, + block_size, + batch_size, + weighting: Literal["uniform", "hat"] = "uniform", + use_pysbd=False, + positive_index=None, + do_lowercase=False, + do_remove_punct=False, + threshold: float = 0.01, +): + if positive_index is None: + positive_index = Constants.NEWLINE_INDEX + + # preprocessing, many OPUS100 (and some UD) sentences start with "- " + sentences = [sentence.lstrip("-").strip() for sentence in sentences] + + separator = Constants.SEPARATORS[lang_code] + sentences = [corrupt(sentence, do_lowercase, do_remove_punct) for sentence in sentences] + text = separator.join(sentences) + + logits, offsets_mapping, tokenizer, _ = extract( + [text], + PyTorchWrapper(model.backbone), + lang_code=lang_code, + stride=stride, + max_block_size=block_size, + batch_size=batch_size, + weighting=weighting, + ) + logits = logits[0] + if offsets_mapping is not None: + offsets_mapping = offsets_mapping[0] + + true_end_indices = np.cumsum(np.array([len(s) for s in sentences])) + np.arange(len(sentences)) * len(separator) + newline_labels = np.zeros(len(text)) + newline_labels[true_end_indices - 1] = 1 + + if "xlm" in model.config.model_type: + tokens = tokenizer.tokenize(text, verbose=False) + char_probs = token_to_char_probs( + text, tokens, logits, [tokenizer.cls_token, tokenizer.sep_token, tokenizer.pad_token], offsets_mapping + ) + else: + char_probs = logits + newline_probs = char_probs[:, positive_index] + metrics, info = get_metrics(newline_labels, newline_probs, threshold=threshold) + + info["newline_labels"] = newline_labels + + if use_pysbd: + segmenter = pysbd.Segmenter(language=lang_code, clean=False, char_span=True) + predicted_end_indices_pysbd = np.array([x.start + len(x.sent.rstrip()) for x in segmenter.segment(text)]) + newline_probs_pysbd = np.zeros(len(text)) + newline_probs_pysbd[predicted_end_indices_pysbd - 1] = 1.0 + + info["newline_probs_pysbd"] = newline_probs_pysbd + + return metrics["pr_auc"], info + + +def evaluate_sentence_pairwise( + lang_code, + sentences, + model, + stride, + block_size, + batch_size, + pair_sample_pct: float = 0.1, + max_pairs: int = sys.maxsize, + use_pysbd=False, + positive_index=None, + do_lowercase=False, + do_remove_punct=False, + threshold: float = 0.01, +): + if positive_index is None: + positive_index = Constants.NEWLINE_INDEX + + # Preprocess sentences + sentences = [sentence.lstrip("-").strip() for sentence in sentences] + + separator = Constants.SEPARATORS[lang_code] + metrics_list = [] + accuracy_list = [] + + # get pairs of sentences (non-overlapping) + sampled_pairs = generate_k_mers( + sentences=sentences, + k=2, + sample_pct=pair_sample_pct, + max_n_samples=max_pairs, + min_k_mer_length=0, + ) + + # get logits for each pair + logits, n_tokens_list = process_logits_k_mers( + pairs=sampled_pairs, + model=PyTorchWrapper(model.backbone), + lang_code=lang_code, + block_size=block_size, + batch_size=batch_size, + verbose=False, + ) + + # simulate performance for WtP-U + for i, (sentence1, sentence2) in enumerate(sampled_pairs): + newline_probs = logits[i][:, positive_index] + + pair_text = sentence1 + separator + sentence2 + + # Calculate newline labels and probabilities + true_end_indices = np.cumsum(np.array([len(s) for s in [sentence1, sentence2]])) + np.arange(2) * len(separator) + newline_labels = np.zeros(len(pair_text)) + newline_labels[true_end_indices - 1] = 1 + + # Get metrics for the pair + pair_metrics, _ = get_metrics(newline_labels, newline_probs, threshold=threshold) + metrics_list.append(pair_metrics["pr_auc"]) + predicted_labels = newline_probs > np.log(threshold / (1 - threshold)) # inverse sigmoid + # for accuracy, check if the single label in between is correctly predicted (ignore the one at the end) + if sum(predicted_labels[:-1]) > 0: + correct = (np.where(newline_labels[:-1])[0] == np.where(predicted_labels[:-1])[0]).all() + accuracy_list.append(correct) + else: + accuracy_list.append(False) + + # Compute and return the average metric + average_metric = np.mean(metrics_list) + avg_accuracy = np.mean(accuracy_list) + return average_metric, avg_accuracy + + +def evaluate_sentence_kmers( + lang_code, + sentences, + model, + stride, + block_size, + batch_size, + k: int = 3, + sample_pct: float = 0.1, + max_n_samples: int = sys.maxsize, + use_pysbd=False, + positive_index=None, + do_lowercase=False, + do_remove_punct=False, + threshold: float = 0.01, +): + if positive_index is None: + positive_index = Constants.NEWLINE_INDEX + + # Preprocess sentences + sentences = [sentence.lstrip("-").strip() for sentence in sentences] + + separator = Constants.SEPARATORS[lang_code] + metrics_list = [] + accuracy_list = [] + accuracy_list_optimal = [] + info_list = [] + + # get pairs of sentences (non-overlapping) + sampled_k_mers = generate_k_mers( + sentences=sentences, + k=k, + do_lowercase=do_lowercase, + do_remove_punct=do_remove_punct, + sample_pct=sample_pct, + max_n_samples=max_n_samples, + min_k_mer_length=0, + ) + + # get logits for each pair + logits, n_tokens_list = process_logits_k_mers( + pairs=sampled_k_mers, + model=PyTorchWrapper(model.backbone), + lang_code=lang_code, + block_size=block_size, + batch_size=batch_size, + verbose=False, + ) + + for i, k_mer in enumerate(sampled_k_mers): + newline_probs = logits[i][:, positive_index] + + k_mer_text = separator.join(k_mer) + true_end_indices = np.cumsum(np.array([len(s) for s in k_mer])) + np.arange(len(k_mer)) * len(separator) + newline_labels = np.zeros(len(k_mer_text)) + newline_labels[true_end_indices - 1] = 1 + + # Get metrics for the k-mer + k_mer_metrics, info = get_metrics(newline_labels, newline_probs, threshold=threshold) + metrics_list.append(k_mer_metrics["pr_auc"]) + info_list.append(info) + + predicted_labels = newline_probs > np.log(threshold / (1 - threshold)) # inverse sigmoid + predicted_labels_optimal = newline_probs > np.log( + info["threshold_best"] / (1 - info["threshold_best"]) + ) # inverse sigmoid + # For accuracy, check if all the labels in between are correctly predicted (ignore the one at the end) + intermediate_newline_labels = newline_labels[:-1] # Exclude the end + intermediate_predicted_labels = predicted_labels[:-1] + intermediate_predicted_labels_opt = predicted_labels_optimal[:-1] + correct = np.array_equal(intermediate_newline_labels, intermediate_predicted_labels) + correct_optimal = np.array_equal(intermediate_newline_labels, intermediate_predicted_labels_opt) + accuracy_list.append(correct) + accuracy_list_optimal.append(correct_optimal) + + # Compute and return the average metric and accuracy + average_metric = np.mean(metrics_list) + avg_accuracy = np.mean(accuracy_list) + # get averages for info_list + # print(len(info_list), len(sampled_k_mers)) + if len(sampled_k_mers) > 0: + avg_info = { + key: np.mean([info[key] for info in info_list]) + for key in info_list[0].keys() + if isinstance(info_list[0][key], (int, float)) + } + avg_info["accuracy_optimal"] = np.mean(accuracy_list_optimal) + else: + avg_info = {} + avg_info["f1"] = 0 + avg_info["f1_best"] = 0 + avg_info["threshold_best"] = 0 + return average_metric, avg_accuracy, avg_info diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/train/train.py b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/train/train.py new file mode 100644 index 0000000000000000000000000000000000000000..51c7ffeb050316c77b611d572334dfba86a105fd --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/train/train.py @@ -0,0 +1,707 @@ +import logging +import math +import os +import random +import shutil +import sys + +# import time +from collections import Counter, defaultdict +from dataclasses import dataclass +from functools import partial +from glob import glob +from typing import List, Optional + +import datasets +import numpy as np +import torch +import transformers +from datasets import load_dataset + +# from datasets.download import DownloadConfig +from tokenizers import AddedToken +from torchinfo import summary +from tqdm.auto import tqdm +from transformers import AutoTokenizer, HfArgumentParser, TrainingArguments, set_seed +from transformers.trainer import is_torch_tpu_available + +import wandb +from wtpsplit.models import ( + BertCharConfig, + BertCharForTokenClassification, + LACanineConfig, + LACanineForTokenClassification, + SubwordXLMConfig, + SubwordXLMForTokenClassification, +) +from wtpsplit.train.evaluate import evaluate_sentence +from wtpsplit.train.trainer import Trainer +from wtpsplit.train.utils import Model + +# from wtpsplit.train.utils import cleanup_cache_files +from wtpsplit.utils import Constants, LabelArgs, corrupt_training, get_label_dict, get_subword_label_dict + +logger = logging.getLogger(__name__) + + +def setup_logging(training_args: transformers.TrainingArguments) -> None: + logging.basicConfig( + format="%(asctime)s - %(levelname)s - %(name)s - %(message)s", + datefmt="%m/%d/%Y %H:%M:%S", + handlers=[logging.StreamHandler(sys.stdout)], + ) + log_level = training_args.get_process_log_level() + logger.setLevel(log_level) + datasets.utils.logging.set_verbosity_warning() + transformers.utils.logging.set_verbosity_warning() + transformers.utils.logging.enable_default_handler() + transformers.utils.logging.enable_explicit_format() + # Log on each process the small summary: + logger.warning( + ( + f"Process rank: {training_args.local_rank}, device: {training_args.device}, n_gpu: {training_args.n_gpu}" + + f"distributed training: {training_args.local_rank != -1}, 16-bits training: {training_args.fp16}" + ) + ) + + +@dataclass +class Args: + model_name_or_path: str + shuffle: bool = False + use_logits: bool = False + is_decoder: bool = False + use_bert: bool = False + train_text_path: str = "data/train.parquet" + valid_text_path: str = "data/valid.parquet" + include_languages: List[str] = None + eval_data_path: str = "data/all_data.pth" + num_hidden_layers: int = 3 + preprocessing_num_workers: int = 6 + block_size: int = 512 + overflow_size: int = 16 + eval_stride: int = 256 + loss_margin: float = 0.5 + from_scratch: bool = False + pack_samples: bool = False + one_sample_per_line: bool = False + use_loss_weights: bool = False + do_sentence_training: bool = True + do_auxiliary_training: bool = True + aux_training_weight: float = 1.0 + ignore_non_hyphen: bool = False + non_punctuation_sample_ratio: float = None + text_column: str = "text" + threshold: float = 0.01 # just for eval + # WtP-related args + ngram_order: int = 1 + language_adapter: str = "on" + adapter_warmup_steps: int = 0 + adapter_lr_multiplier: float = 1.0 + # SaT-related args + use_subwords: bool = False # uses XLM-R + lookahead: int = None + lookahead_split_layers: Optional[int] = None + sample_non_whitespace: int = 1 + + +def collate_fn(batch, args, label_args, label_dict, tokenizer, add_lang_ids: bool = False): + all_input_ids = [] + all_labels = [] + all_language_ids = [] + + all_attention_masks = [] + all_position_ids = [] + all_label_weights = [] + + for sample in batch: + # subword-level + if args.use_subwords: + # already tokenized! + input_ids = sample["input_ids"] + # char-level + else: + input_ids = [ord(c) for c in sample["input_ids"]] + lang = sample["lang"] + + while len(input_ids) < args.block_size + args.overflow_size: + if tokenizer: + input_ids.append(tokenizer.pad_token_id) + else: + input_ids.append(0) + + block_ids = [0] * len(input_ids) + + input_ids, _, labels = corrupt_training( + input_ids, + block_ids, + lang, + label_args, + label_dict=label_dict, + pack_samples=args.pack_samples, + # min_length=args.block_size, + tokenizer=tokenizer if args.use_subwords else None, + ) + + actual_block_size = args.block_size - 2 if args.use_subwords else args.block_size + + if len(input_ids) > args.block_size: + start = np.random.randint(0, len(input_ids) - actual_block_size) + input_ids = input_ids[start : start + actual_block_size] + labels = labels[start : start + actual_block_size] + elif len(input_ids) < actual_block_size: + padding = actual_block_size - len(input_ids) + input_ids += [tokenizer.pad_token_id] * padding if tokenizer else [0] * padding + labels += [0] * padding + + if tokenizer: + input_ids = [tokenizer.cls_token_id] + input_ids[:actual_block_size] + [tokenizer.sep_token_id] + # labels for CLS and SEP tokens are 0 (none) + labels = [0] + labels[:actual_block_size] + [0] + else: + input_ids = input_ids[:actual_block_size] + labels = labels[:actual_block_size] + + input_ids = torch.tensor(input_ids, dtype=torch.long) + labels = torch.tensor(labels, dtype=torch.long) + position_ids = torch.arange(len(input_ids), dtype=torch.long) + label_weights = torch.ones(args.block_size, dtype=torch.float32) + if tokenizer: + attention_mask = (input_ids != tokenizer.pad_token_id).to(torch.float32) + else: + attention_mask = (input_ids != 0).to(torch.float32) + + all_input_ids.append(input_ids) + all_label_weights.append(label_weights) + all_labels.append(labels) + all_language_ids.append(Constants.LANG_CODE_TO_INDEX[lang] if add_lang_ids else 0) + + all_attention_masks.append(attention_mask) + all_position_ids.append(position_ids) + + out = { + "input_ids": torch.stack(all_input_ids, 0), + "attention_mask": torch.stack(all_attention_masks, 0), + "position_ids": torch.stack(all_position_ids, 0), + "language_ids": torch.tensor(all_language_ids, dtype=torch.long), + "label_weights": torch.stack(all_label_weights, 0), + "labels": torch.stack(all_labels, 0), + } + + return out + + +def main(): + parser = HfArgumentParser([Args, TrainingArguments, LabelArgs]) + + if sys.argv[1].endswith(".json"): + (args, training_args, label_args) = parser.parse_json_file(sys.argv[1]) + wandb_name = os.path.splitext(os.path.basename(sys.argv[1]))[0] + else: + (args, training_args, label_args) = parser.parse_args_into_dataclasses() + wandb_name = None + + if is_torch_tpu_available(): + import torch_xla.core.xla_model as xm + + world_size = xm.xrt_world_size() + if world_size == 4: + # ensure same batch size on TPUv3 and TPUv4 using same config.json + training_args.per_device_train_batch_size *= 2 + elif torch.cuda.is_available(): + world_size = torch.cuda.device_count() + else: + world_size = 1 + + logger.warning(f"Per device train batch size: {training_args.per_device_train_batch_size}") + logger.warning( + f"Total train batch size: {training_args.per_device_train_batch_size * training_args.gradient_accumulation_steps * world_size}" + ) + + setup_logging(training_args) + set_seed(training_args.seed) + training_args.hub_strategy = "end" + training_args.save_total_limit = 1 + + num_labels = Constants.AUX_OFFSET + ((1 + len(Constants.PUNCTUATION_CHARS)) if args.do_auxiliary_training else 0) + if args.use_subwords: + # SaT models + if args.from_scratch: + config = SubwordXLMConfig( + args.model_name_or_path, + num_hidden_layers=args.num_hidden_layers, + num_labels=num_labels, + lookahead=args.lookahead, + lookahead_split_layers=args.lookahead_split_layers, + ) + backbone = SubwordXLMForTokenClassification(config) + + else: + config = SubwordXLMConfig.from_pretrained( + args.model_name_or_path, + num_hidden_layers=args.num_hidden_layers, + num_labels=num_labels, + lookahead=args.lookahead, + lookahead_split_layers=args.lookahead_split_layers, + ) + backbone = SubwordXLMForTokenClassification.from_pretrained( + args.model_name_or_path, + config=config, + ) + + backbone.config.base_model = args.model_name_or_path + tokenizer = AutoTokenizer.from_pretrained(args.model_name_or_path) + # needed since we create labels in collate_fn based on tokens + tokenizer.add_special_tokens({"additional_special_tokens": [AddedToken("\n")]}) + custom_token_id = tokenizer.convert_tokens_to_ids("\n") + # used later to filter out special tokens + special_tokens_ids = set(tokenizer.all_special_ids) + special_tokens_ids.discard(custom_token_id) + if args.lookahead: + # we split lookahead evenly into N layers + assert args.lookahead % args.num_hidden_layers == 0 + + else: + # WtP models (char-based) + tokenizer = None + config = LACanineConfig.from_pretrained( + args.model_name_or_path, + raw_lookahead=args.lookahead, + num_hidden_layers=args.num_hidden_layers, + num_labels=num_labels, + n_languages=len(Constants.LANG_CODE_TO_INDEX), + ngram_order=args.ngram_order, + language_adapter=args.language_adapter, + # upsampling kernel size > 1 is problematic for packing + # using ks=1 doesn't allow reusing the pretrained weights + # but if we warm it up alongside the adapters + # there is almost no difference. + upsampling_kernel_size=1, + ) + if args.use_bert: + config = BertCharConfig.from_pretrained( + args.model_name_or_path, + num_labels=num_labels, + ) + backbone = BertCharForTokenClassification(config) + elif args.from_scratch: + backbone = LACanineForTokenClassification(config) + else: + backbone = LACanineForTokenClassification.from_pretrained( + args.model_name_or_path, ignore_mismatched_sizes=True, config=config + ) + + model = Model( + backbone, + loss_margin=args.loss_margin, + use_loss_weights=args.use_loss_weights, + do_sentence_training=args.do_sentence_training, + do_auxiliary_training=args.do_auxiliary_training, + aux_training_weight=args.aux_training_weight, + ) + + if training_args.local_rank == 0: + logger.warning(summary(model, depth=4)) + + def prepare_dataset( + num_workers=1, + include_languages=None, + shuffle=False, + split="train", + ): + with training_args.main_process_first(): + # this can be used if space issues arise + # dlconf = DownloadConfig(cache_dir="/home/Markus/.cache/huggingface/datasets") + # dataset = load_dataset("markus583/mC4-TEST", split=split, download_config=dlconf) + dataset = load_dataset("markus583/mC4-TEST", split=split) + logger.warning(f"Loaded {split} dataset.") + # optional: delete downloaded dataset, it is stored in cache_dir now (but we delete it later) + # ~40GB on disk + # os.system("rm -rf /home/Markus/.cache/huggingface/datasets") + + if include_languages is not None: + include_languages = set(include_languages) + + dataset = dataset.filter( + lambda example: example["lang"] in include_languages, + num_proc=args.preprocessing_num_workers, + ) + logger.warning(f"Filtered to {len(dataset)} examples.") + + if shuffle: + dataset = dataset.shuffle(seed=42) + logger.warning("Shuffled dataset.") + + # not used for sentence segmentation, ignore. + if args.ignore_non_hyphen: + with training_args.main_process_first(): + dataset = dataset.filter( + lambda sample: any(c in sample[args.text_column] for c in label_args.hyphen_chars), + num_proc=args.preprocessing_num_workers, + ) + logger.info(f"Filtered to {len(dataset)} examples.") + + # "punctuation-specific sampling" in the WtP paper + if args.non_punctuation_sample_ratio is not None: + languages_without_punctuation = { + lang_code + for lang_code in Constants.LANGINFO.index + if Constants.LANGINFO.loc[lang_code, "no_punctuation"] + } + + def drop_some_non_punctuation_samples(examples): + include_indices = set( + np.where([lang_code not in languages_without_punctuation for lang_code in examples["lang"]])[0] + ) + punctuation_indices = { + i for i in np.where(examples["ends_with_punctuation"])[0] if i in include_indices + } + + target_n_non_punct = int( + (len(punctuation_indices) * args.non_punctuation_sample_ratio) + / (1 - args.non_punctuation_sample_ratio) + ) + n_drop = (len(include_indices) - len(punctuation_indices)) - target_n_non_punct + + out = [True for _ in range(len(examples["ends_with_punctuation"]))] + + if n_drop <= 0: + return out + drop_indices = np.random.choice( + list(include_indices - punctuation_indices), + n_drop, + replace=False, + ) + + for i in drop_indices: + out[i] = False + + return out + + with training_args.main_process_first(): + dataset = dataset.filter( + drop_some_non_punctuation_samples, + batched=True, + batch_size=1_000_000, + num_proc=num_workers, + ) + + def tokenize_texts(examples): + # do not return CLS and SEP token here + # there should only be 1 of these per block later, not multiple + # we still can't use return_special_tokens=False since we need the \n token later for the labels + tokenized = tokenizer(examples[args.text_column], verbose=False) + return {"input_ids": [example[1:-1] for example in tokenized["input_ids"]]} + + # similar to group_texts in huggingface's run_clm.py / run_mlm.py: https://github.com/huggingface/transformers/blob/main/examples/pytorch/language-modeling/run_mlm.py + def group_texts(examples): + all_input_blocks = [] + all_input_block_lengths = [] + all_langs = [] + + def maybe_pad(text): + if args.pack_samples: + padding = config.downsampling_rate - (len(text) % config.downsampling_rate) + if padding == config.downsampling_rate: + padding = 0 + + text += chr(0) * padding + + return text + + for current_lang in set(examples["lang"]): + if not args.use_subwords: + lang_texts = [ + maybe_pad(text) + for text, lang in zip(examples["input_ids"], examples["lang"]) + if lang == current_lang + ] + else: + # only retain current_lang examples (all columns) + lang_subwords = [ + subwords + for subwords, lang in zip(examples["input_ids"], examples["lang"]) + if lang == current_lang + ] + # filter out some special tokens + # from html tags, mostly in Latin, Thai & Korean + lang_subwords = [ + [subword for subword in subwords if subword not in special_tokens_ids] + for subwords in lang_subwords + ] + # pack_samples used for the compound part, so irrelevant + if args.pack_samples: + if args.use_subwords: + raise NotImplementedError + blocks = [] + block_ids = [] + + current_block = ["", []] + + for i, text in enumerate(lang_texts): + if len(text) > args.block_size: + continue + + current_block[0] += text + current_block[1] += [i] * len(text) + + if i + 1 < len(lang_texts) and len(current_block[0]) + len(lang_texts[i + 1]) > args.block_size: + padding = args.block_size - len(current_block[0]) + + current_block[0] += chr(0) * padding + current_block[1] += [i] * padding + blocks.append(current_block[0]) + block_ids.append(current_block[1]) + + current_block = ["", []] + + if len(current_block[0]) > 0: + padding = args.block_size - len(current_block[0]) + + current_block[0] += chr(0) * padding + current_block[1] += [i] * padding + blocks.append(current_block[0]) + block_ids.append(current_block[1]) + else: + if not args.use_subwords: + concatenated_texts = "".join(lang_texts) + concatenated_ids = [i for i, text in enumerate(lang_texts) for _ in text] + else: + # concatenate token lists + concatenated_texts = [item for sublist in lang_subwords for item in sublist] + concatenated_ids = [i for i, subwords in enumerate(lang_subwords) for _ in subwords] + + total_length = len(concatenated_texts) + + best_length = math.ceil(total_length / args.block_size) * args.block_size + args.overflow_size + while best_length > total_length: + best_length -= args.block_size + + if best_length < 0: + continue + + concatenated_texts = concatenated_texts[:best_length] + concatenated_ids = concatenated_ids[:best_length] + + blocks = [ + concatenated_texts[i : i + args.block_size + args.overflow_size] + for i in range(0, best_length - args.block_size, args.block_size) + ] + block_ids = [ + concatenated_ids[i : i + args.block_size + args.overflow_size] + for i in range(0, best_length - args.block_size, args.block_size) + ] + + block_langs = [current_lang] * len(blocks) + + all_input_blocks.extend(blocks) + all_input_block_lengths.extend([list(Counter(ids).values()) for ids in block_ids]) + all_langs.extend(block_langs) + + if args.sample_non_whitespace > 1: + separator = Constants.SEPARATORS.get(current_lang, " ") + if separator == "": + for i in range(args.sample_non_whitespace - 1): + all_input_blocks.extend(blocks) + all_input_block_lengths.extend([list(Counter(ids).values()) for ids in block_ids]) + all_langs.extend(block_langs) + + return { + "input_ids": all_input_blocks, + "block_lengths": all_input_block_lengths, + "lang": all_langs, + } + + if args.do_auxiliary_training: + assert label_args.use_auxiliary + + if args.pack_samples: + assert not args.one_sample_per_line + + if args.use_subwords: + with training_args.main_process_first(): + dataset = dataset.map( + tokenize_texts, + batched=True, + num_proc=num_workers, + remove_columns=[args.text_column], + ) + else: + # this column is no longer used and would cause an error otherwise + with training_args.main_process_first(): + dataset = dataset.rename_column(args.text_column, "input_ids") + logger.warning(f"Tokenized {split} dataset.") + + # uncomment if space issues arise (e.g., on TPU VMs): + # if split == "train" and args.use_subwords: + # with training_args.main_process_first(): + # for root, dirs, files in os.walk(os.environ.get("HF_DATASETS_CACHE")): + # for file in files: + # if file.startswith("m_c4-test-train"): + # logger.warning(f"Removing {os.path.join(root, file)}") + # os.remove(os.path.join(root, file)) + + if not args.one_sample_per_line: + with training_args.main_process_first(): + dataset = dataset.map( + group_texts, + batched=True, + num_proc=num_workers, + # a bit hacky but oh well, only drop if sentence + remove_columns=["ends_with_punctuation"] if args.text_column == "text" else [], + ) + logger.warning(f"Grouped {split} dataset.") + + return dataset + + valid_dataset = prepare_dataset( + num_workers=args.preprocessing_num_workers, + include_languages=args.include_languages, + shuffle=False, + split="valid", + ) + logger.warning(f"Valid dataset has {len(valid_dataset)} examples.") + + train_dataset = prepare_dataset( + num_workers=args.preprocessing_num_workers, + include_languages=args.include_languages, + shuffle=args.shuffle, + split="train", + ) + logger.warning(f"Train dataset has {len(train_dataset)} examples.") + + # print some samples from the dataset + count = 0 + while count < 5: + index = random.choice(range(len(train_dataset))) + sample = train_dataset[index] + + logger.warning(f"Sample {index} of the training set: {sample}.") + if tokenizer: + logger.warning(tokenizer.decode(sample["input_ids"])) + count += 1 + + eval_data = torch.load( + args.eval_data_path, + ) + + def compute_metrics(trainer): + metrics = {} + avg_metrics = defaultdict(lambda: []) + + model = trainer._wrap_model(trainer.model, training=False) + + for lang_code, lang_data in tqdm(eval_data.items(), desc="Evaluate!"): + if args.include_languages is not None and lang_code not in args.include_languages: + continue + + if trainer.args.process_index == 0 and args.do_sentence_training: + for dataset_name, dataset in lang_data["sentence"].items(): + if not dataset["data"][0]: + continue + + if isinstance(dataset["data"][0], list): + # too slow here + continue + score, info = evaluate_sentence( + lang_code, + dataset["data"], + model, + stride=args.eval_stride, + block_size=args.block_size, + batch_size=training_args.per_device_eval_batch_size, + threshold=args.threshold, + ) + metrics[f"{lang_code}_{dataset_name}_pr_auc"] = score + metrics[f"{lang_code}_{dataset_name}_f1"] = info["f1"] + metrics[f"{lang_code}_{dataset_name}_f1_best"] = info["f1_best"] + metrics[f"{lang_code}_{dataset_name}_threshold_best"] = info["threshold_best"] + avg_metrics[f"average_{dataset_name}_pr_auc"].append(score) + avg_metrics[f"average_{dataset_name}_f1"].append(info["f1"]) + avg_metrics[f"average_{dataset_name}_f1_best"].append(info["f1_best"]) + avg_metrics[f"average_{dataset_name}_threshold_best"].append(info["threshold_best"]) + + if lang_code in ["zh", "ja", "my", "km"]: + avg_metrics[f"average_nonwhitespace_{dataset_name}_pr_auc"].append(score) + avg_metrics[f"average_nonwhitespace_{dataset_name}_f1"].append(info["f1"]) + avg_metrics[f"average_nonwhitespace_{dataset_name}_f1_best"].append(info["f1_best"]) + avg_metrics[f"average_nonwhitespace_{dataset_name}_threshold_best"].append( + info["threshold_best"] + ) + else: + avg_metrics[f"average_whitespace_{dataset_name}_pr_auc"].append(score) + avg_metrics[f"average_whitespace_{dataset_name}_f1"].append(info["f1"]) + avg_metrics[f"average_whitespace_{dataset_name}_f1_best"].append(info["f1_best"]) + avg_metrics[f"average_whitespace_{dataset_name}_threshold_best"].append(info["threshold_best"]) + + for name, values in avg_metrics.items(): + if len(values) > 1: + metrics[name] = np.mean(values) + + return metrics + + if "wandb" in training_args.report_to and training_args.process_index == 0: + wandb.init(name=wandb_name, project="sentence") + wandb.config.update(args) + wandb.config.update(training_args) + wandb.config.update(label_args) + + model.config.wandb_run_id = wandb.run.id + + for file in glob(os.path.join(os.path.dirname(__file__), "*.py")): + wandb.save(os.path.abspath(file), policy="now") + # also 1 dir above + wandb.save(os.path.abspath(os.path.join(os.path.dirname(__file__), "..", file)), policy="now") + + label_dict = get_subword_label_dict(label_args, tokenizer) if args.use_subwords else get_label_dict(label_args) + logger.info(f"Label dict has {len(label_dict)} entries.") + + # needed in the trainer + training_args.adapter_warmup_steps = args.adapter_warmup_steps + training_args.adapter_lr_multiplier = args.adapter_lr_multiplier + + # again: uncomment this if space issues arise. + # give .map in multiprocessing enough of time to finish, to be safe + # time.sleep(10) + # if training_args.local_rank == 0: + # # since both share the *same* cache_dir, we cannot simply call dataset.cleanup_cache_files() + # # because that would remove the cache files of the other dataset! + # cleanup_cache_files([train_dataset, valid_dataset]) + # logger.warning("Cleaned up cache files.") + # time.sleep(10) + + trainer = Trainer( + model, + training_args, + train_dataset=train_dataset, + eval_dataset=valid_dataset, + compute_metrics=compute_metrics, + data_collator=partial( + collate_fn, + args=args, + label_args=label_args, + label_dict=label_dict, + tokenizer=tokenizer if args.use_subwords else None, + add_lang_ids=not args.use_subwords, + ), + ) + + trainer.train(resume_from_checkpoint=training_args.resume_from_checkpoint) + trainer.save_model() + trainer.save_state() + + # remove old checkpoints to save space + checkpoint_pattern = os.path.join(training_args.output_dir, "checkpoint-*") + + for checkpoint_dir in glob(checkpoint_pattern): + if os.path.isdir(checkpoint_dir): + shutil.rmtree(checkpoint_dir) + + +def _mp_fn(index): + # For xla_spawn (TPUs) + main() + + +if __name__ == "__main__": + main() diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/train/train_SM.py b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/train/train_SM.py new file mode 100644 index 0000000000000000000000000000000000000000..e5bc38ed504be9e947a6e0bc5e82716ca05c660b --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/train/train_SM.py @@ -0,0 +1,519 @@ +import math +import random +import sys +from collections import defaultdict +from dataclasses import dataclass +from itertools import cycle +from typing import Iterable, List, Sequence, Tuple + +import numpy as np +import torch +import transformers +from datasets import Dataset +from torch.utils.data import BatchSampler, ConcatDataset, DataLoader, SubsetRandomSampler +from tqdm import tqdm +from transformers import AutoTokenizer, HfArgumentParser, Trainer, TrainerCallback, TrainingArguments + +import wandb +from wtpsplit.models import SubwordXLMForTokenClassification +from wtpsplit.utils import Constants + + +@dataclass +class Args: + block_size: int = 256 + num_layers: int = 12 # number of layers + lim_lookahead: bool = False # our "Lookahead" ablation + without_pretraining: bool = False # our "No pre-training" ablation + no_sm_corruption: bool = False # our "Only clean text" ablation + + +# Parsing command line arguments or JSON config files as needed +parser = HfArgumentParser([Args, TrainingArguments]) + +if len(sys.argv) > 1 and sys.argv[1].endswith(".json"): + args, training_args = parser.parse_json_file(sys.argv[1]) +else: + args, training_args = parser.parse_args_into_dataclasses() + +data_path = "data/all_data_11_05-all.pth" +all_data = torch.load(data_path) + +block_size = args.block_size + +train_sentences = defaultdict(lambda: defaultdict(list)) +test_sentences = defaultdict(lambda: defaultdict(list)) + +punct_chars = set(Constants.PUNCTUATION_CHARS) + + +for lang_code in tqdm(all_data, desc="Loading data"): + if "-" in lang_code or "_" in lang_code: + # we only train on monolingual data in SM, so no "en-de" code-switching for example! + pass + elif ( + "ud" in all_data[lang_code]["sentence"] + and all_data[lang_code]["sentence"]["ud"]["meta"]["train_data"] is not None + ): + train_data = all_data[lang_code]["sentence"]["ud"]["meta"]["train_data"] + + if len(train_data) < 10000: + # some languages have an insufficient number of sentences to fill a single batch + # this is just a quick way to upsample these so we don't run into problems later + # later we will use a uniform round-robin sampler for all languages + train_data = train_data * (10000 // len(train_data) + 1) + + train_sentences[lang_code]["uncorrupted"].extend(train_data) + + if not args.no_sm_corruption: + train_data = all_data[lang_code]["sentence"]["ud-corrupted-asr"]["meta"]["train_data"] + + if len(train_data) < 5000: + # some languages have an insufficient number of sentences to fill a single batch + # this is just a quick way to upsample these so we don't run into problems later + # later we will use a uniform round-robin sampler for all languages + train_data = train_data * (10000 // len(train_data) + 1) + + train_sentences[lang_code]["corrupted-asr"].extend(train_data) + + train_data = all_data[lang_code]["sentence"]["ud-corrupted-social-media"]["meta"]["train_data"] + + if len(train_data) < 5000: + # some languages have an insufficient number of sentences to fill a single batch + # this is just a quick way to upsample these so we don't run into problems later + # later we will use a uniform round-robin sampler for all languages + train_data = train_data * (10000 // len(train_data) + 1) + + train_sentences[lang_code]["corrupted-social-media"].extend(train_data) + + elif ( + "opus100" in all_data[lang_code]["sentence"] + and all_data[lang_code]["sentence"]["opus100"]["meta"]["train_data"] is not None + ): + train_data = all_data[lang_code]["sentence"]["opus100"]["meta"]["train_data"] + train_sentences[lang_code]["uncorrupted"].extend(train_data) + + if not args.no_sm_corruption: + train_data = all_data[lang_code]["sentence"]["opus100-corrupted-asr"]["meta"]["train_data"] + train_sentences[lang_code]["corrupted-asr"].extend(train_data) + + train_data = all_data[lang_code]["sentence"]["opus100-corrupted-social-media"]["meta"]["train_data"] + train_sentences[lang_code]["corrupted-social-media"].extend(train_data) + else: + train_data = all_data[lang_code]["sentence"]["nllb"]["meta"]["train_data"] + train_sentences[lang_code]["uncorrupted"].extend(train_data) + + if not args.no_sm_corruption: + train_data = all_data[lang_code]["sentence"]["nllb-corrupted-asr"]["meta"]["train_data"] + train_sentences[lang_code]["corrupted-asr"].extend(train_data) + + train_data = all_data[lang_code]["sentence"]["nllb-corrupted-social-media"]["meta"]["train_data"] + train_sentences[lang_code]["corrupted-social-media"].extend(train_data) + + for dataset in all_data[lang_code]["sentence"]: + if any(dataset.startswith(x) for x in ["short-sequences", "legal"]): + continue + + test_data = all_data[lang_code]["sentence"][dataset]["data"] + test_sentences[lang_code][dataset].extend(test_data[:200]) + + +tokenizer_checkpoint = "xlm-roberta-base" + +if args.without_pretraining: + model_checkpoint = "xlm-roberta-base" +elif args.num_layers == 1: + if not args.lim_lookahead: + model_checkpoint = "segment-any-text/sat-1l-no-limited-lookahead" + else: + model_checkpoint = "segment-any-text/sat-1l" +elif args.num_layers == 3: + if not args.lim_lookahead: + model_checkpoint = "segment-any-text/sat-3l-no-limited-lookahead" + else: + model_checkpoint = "segment-any-text/sat-3" +elif args.num_layers == 6: + if not args.lim_lookahead: + model_checkpoint = "segment-any-text/sat-6l-no-limited-lookahead" + else: + model_checkpoint = "segment-any-text/sat-6l" +elif args.num_layers == 9: + if not args.lim_lookahead: + model_checkpoint = "segment-any-text/sat-9l-no-limited-lookahead" + else: + model_checkpoint = "segment-any-text/sat-9l" +elif args.num_layers == 12: + if not args.lim_lookahead: + model_checkpoint = "segment-any-text/sat-12l-no-limited-lookahead" + else: + model_checkpoint = "segment-any-text/sat-12l" +else: + raise ValueError("Invalid number of layers. Valid values are 1, 3, 6, 9, 12.") + +print(model_checkpoint) + +tokenizer = AutoTokenizer.from_pretrained(tokenizer_checkpoint) +assert isinstance(tokenizer, transformers.PreTrainedTokenizerFast) + +if args.num_layers == 3 and args.without_pretraining: + # special case for one of our ablations, where we trim XLM-R (without any of our newline pretraining) to 3 layers + model = SubwordXLMForTokenClassification.from_pretrained( + model_checkpoint, + num_labels=1, + ignore_mismatched_sizes=True, + num_hidden_layers=3, + ) +else: + model = SubwordXLMForTokenClassification.from_pretrained( + model_checkpoint, + num_labels=1, + ignore_mismatched_sizes=True, + ) + + +def tokenize_and_get_labels(sentences, lang_code, dataset_name): + separator = Constants.SEPARATORS.get(lang_code, " ") + + joined_sentence = "" + sentence_start_positions = [] + current_position = 0 + + for sentence in sentences: + if random.random() < 0.1 and sentence[-1] in punct_chars and dataset_name == "corrupted-social-media": + if separator == " ": + separator_used = "" + else: + separator_used = " " + else: + separator_used = separator + + if joined_sentence: + joined_sentence += separator_used + current_position += len(separator_used) + start_position = current_position + joined_sentence += sentence + current_position += len(sentence) + sentence_start_positions.append(start_position + len(sentence) - 1) + + tokenized_input = tokenizer( + joined_sentence, + return_offsets_mapping=True, + add_special_tokens=False, + truncation=False, + ) + + tokens = tokenized_input.tokens() + offsets = tokenized_input["offset_mapping"] + sentence_ending_labels = [0] * len(tokens) + + sentence_ending_labels[-1] = 1 + sentence_index = 0 + + for i in range(len(offsets)): + if offsets[i][0] > sentence_start_positions[sentence_index]: + sentence_ending_labels[i - 1] = 1 + sentence_index += 1 + + input_ids = [0] + tokenized_input["input_ids"] + [2] + labels = [0] + sentence_ending_labels + [0] + + return input_ids, labels + + +def pack_sentences(input_data_dict, block_size): + packed_data = defaultdict(lambda: defaultdict(lambda: {"input_ids": [], "attention_mask": [], "labels": []})) + + for lang_code in tqdm(input_data_dict): + for dataset_name, sentences in input_data_dict[lang_code].items(): + if dataset_name == "corrupted-social-media": + p_add_to_block = 0.5 + else: + p_add_to_block = 1.0 + + token_count, one_block_sentences = 0, [] + + for sentence in sentences: + num_sentence_tokens = len(tokenizer(sentence, add_special_tokens=False)["input_ids"]) + + if not sentence or sentence.isnumeric() or num_sentence_tokens == 0: + continue + + if token_count + num_sentence_tokens < block_size - 4 and ( + random.random() <= p_add_to_block or len(one_block_sentences) == 0 + ): + one_block_sentences.append(sentence) + token_count += num_sentence_tokens + else: + if one_block_sentences: + input_ids, labels = tokenize_and_get_labels(one_block_sentences, lang_code, dataset_name) + + num_to_pad = block_size - len(input_ids) + attention_mask = [1] * len(input_ids) + [0] * num_to_pad + input_ids += [tokenizer.pad_token_id] * num_to_pad + labels += [-100] * num_to_pad + + assert len(input_ids) == block_size, len(input_ids) + assert len(input_ids) == len(labels), ( + len(input_ids), + len(labels), + ) + + packed_data[lang_code][dataset_name]["input_ids"].append(input_ids) + packed_data[lang_code][dataset_name]["attention_mask"].append(attention_mask) + packed_data[lang_code][dataset_name]["labels"].append(labels) + + if num_sentence_tokens > block_size - 4: + one_block_sentences = [] + token_count = 0 + else: + one_block_sentences = [sentence] + token_count = num_sentence_tokens + + if one_block_sentences: + input_ids, labels = tokenize_and_get_labels(one_block_sentences, lang_code, dataset_name) + + num_to_pad = block_size - len(input_ids) + attention_mask = [1] * len(input_ids) + [0] * num_to_pad + input_ids += [tokenizer.pad_token_id] * num_to_pad + labels += [-100] * num_to_pad + + assert len(input_ids) == block_size, len(input_ids) + assert len(input_ids) == len(labels), (len(input_ids), len(labels)) + + packed_data[lang_code][dataset_name]["input_ids"].append(input_ids) + packed_data[lang_code][dataset_name]["attention_mask"].append(attention_mask) + packed_data[lang_code][dataset_name]["labels"].append(labels) + + assert len(packed_data[lang_code][dataset_name]["input_ids"]) == len( + packed_data[lang_code][dataset_name]["labels"] + ) + + return packed_data + + +packed_train_data = pack_sentences(train_sentences, block_size) +packed_test_data = pack_sentences(test_sentences, block_size) +test_dataset = {lang_code: defaultdict(dict) for lang_code in packed_test_data} + +for lang_code in packed_test_data: + for dataset_name in packed_test_data[lang_code]: + test_dataset[lang_code][dataset_name] = Dataset.from_dict(packed_test_data[lang_code][dataset_name]) + +experiment_name = model_checkpoint.split("/")[-1] + +if args.no_sm_corruption: + experiment_name += "-no-corruption" + +training_args.output_dir = experiment_name + + +def compute_prf(true_values, predicted_values): + TP = np.sum((predicted_values == 1) & (true_values == 1)) + FP = np.sum((predicted_values == 1) & (true_values == 0)) + FN = np.sum((predicted_values == 0) & (true_values == 1)) + + precision = TP / (TP + FP) if (TP + FP) > 0 else 0 + recall = TP / (TP + FN) if (TP + FN) > 0 else 0 + f1_score = 2 * (precision * recall) / (precision + recall) if (precision + recall) > 0 else 0 + + return precision, recall, f1_score + + +def sigmoid_array(x): + return 1 / (1 + np.exp(-x)) + + +def compute_metrics(p): + predictions, labels = p + + predictions = np.reshape(predictions, (-1,)) + labels = np.reshape(labels, (-1,)) + + predictions = sigmoid_array(predictions) + + predictions = predictions[labels != -100] + labels = labels[labels != -100] + + threshold = 0.25 + + preds = (predictions > threshold).astype(int) + + precision, recall, f1 = compute_prf(labels, preds) + + output_dict = { + "precision": precision, + "recall": recall, + "f1": f1, + } + + return output_dict + + +class MultiDatasetEvalCallback(TrainerCallback): + def __init__(self, eval_datasets): + self.eval_datasets = eval_datasets + + def on_evaluate(self, args, state, control, metrics=None, **kwargs): + pass + + def on_step_end(self, args, state, control, **kwargs): + if state.global_step % args.eval_steps == 0: + for lang_code in self.eval_datasets: + for dataset_name, eval_dataset in self.eval_datasets[lang_code].items(): + metrics = trainer.evaluate(eval_dataset) + for metric, result in metrics.items(): + wandb.log( + { + f"eval/{dataset_name}/{lang_code}/{metric}": result, + "train/global_step": state.global_step, + } + ) + + +multi_dataset_eval_callback = MultiDatasetEvalCallback(test_dataset) + +train_datasets = [] + +for lang_code in packed_train_data: + for dataset_name in packed_train_data[lang_code]: + train_datasets.append(Dataset.from_dict(packed_train_data[lang_code][dataset_name])) + +random.shuffle(train_datasets) + +train_datasets = ConcatDataset(train_datasets) + +run = wandb.init(project="sentence") +wandb.run.name = experiment_name + +# args = TrainingArguments( +# output_dir=experiment_name, +# overwrite_output_dir=True, +# evaluation_strategy="steps", +# eval_steps=250, +# report_to="wandb", +# learning_rate=3e-5, +# warmup_steps=500, +# per_device_train_batch_size=128, +# per_device_eval_batch_size=128, +# weight_decay=0.01, +# push_to_hub=False, +# save_total_limit=1, +# save_strategy="steps", +# save_steps=1000, +# load_best_model_at_end=False, +# max_steps=20000, +# ) + + +class RoundRobinSampler: + def __init__(self, samplers: Sequence[Iterable], reinit: bool = False): + self.samplers = samplers + self.reinit = reinit + + def __iter__(self): + iterators = [iter(sampler) for sampler in self.samplers] + + for i in cycle(range(len(iterators))): + it = iterators[i] + + try: + yield next(it) + + except StopIteration: + if not self.reinit: + break + + it = iter(self.samplers[i]) + iterators[i] = it + yield next(it) + + +def get_subset(length: int, i: int, k: int, offset: int = 0) -> Tuple[int, int]: + assert i < k + s = math.ceil(length / k) # size of one split + start = i * s + end = min((i + 1) * s, length) + return offset + start, offset + end + + +class DistributedRoundRobinBatchSampler: + def __init__( + self, + lengths: List[int], + batch_size: int, + rank: int, + num_replicas: int, + drop_last: bool = False, + seed: int = 0, + shuffle: bool = True, + reinit: bool = False, + ): + self.lengths = lengths + offsets = [sum(lengths[:i]) for i in range(len(lengths))] + self.ranges = [get_subset(length, rank, num_replicas, offset) for offset, length in zip(offsets, lengths)] + self.seed = seed + self.shuffle = shuffle + self.drop_last = drop_last + self.epoch = 0 + self.reinit = reinit + self.batch_size = batch_size + self.batch_start = 0 + + def __iter__(self): + g = torch.Generator() + g.manual_seed(self.seed + self.epoch) + + batch_samplers = [ + BatchSampler( + (SubsetRandomSampler(range(start, end), generator=g) if self.shuffle else range(start, end)), + self.batch_size, + self.drop_last, + ) + for (start, end) in self.ranges + ] + + sampler = RoundRobinSampler(batch_samplers, reinit=self.reinit) + return iter(sampler) + + def __len__(self): + return min(length for length in self.lengths) // self.batch_size + + +class CustomTrainer(Trainer): + def get_train_dataloader(self) -> DataLoader: + dataset = self.train_dataset + + if isinstance(dataset, ConcatDataset): + sizes = [len(ds) for ds in dataset.datasets] + else: + sizes = [len(dataset)] + + loader = DataLoader( + dataset, + batch_sampler=DistributedRoundRobinBatchSampler( + lengths=sizes, + batch_size=self.args.train_batch_size, + drop_last=False, + rank=self.args.process_index, + num_replicas=self.args.world_size, + seed=self.args.seed, + reinit=True, + ), + num_workers=self.args.dataloader_num_workers, + pin_memory=self.args.dataloader_pin_memory, + collate_fn=self.data_collator, + ) + return loader + + +trainer = CustomTrainer( + model=model, + args=training_args, + train_dataset=train_datasets, + eval_dataset=None, + compute_metrics=compute_metrics, + tokenizer=tokenizer, + callbacks=[multi_dataset_eval_callback], +) + +trainer.train() diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/train/train_full_param.py b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/train/train_full_param.py new file mode 100644 index 0000000000000000000000000000000000000000..82e915f796412490536bd43c4aa8fbf7c9436d2c --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/train/train_full_param.py @@ -0,0 +1,397 @@ +import copy +import logging +import math +import os +import random +import sys +from collections import Counter +from dataclasses import dataclass +from functools import partial +from glob import glob +from typing import List, Optional, Union + +import datasets +import numpy as np +import torch +from tokenizers import AddedToken +from tqdm import tqdm +from transformers import AutoTokenizer, HfArgumentParser, TrainingArguments, set_seed + +import wandb +from wtpsplit.models import SubwordXLMConfig, SubwordXLMForTokenClassification +from wtpsplit.train.evaluate import evaluate_sentence +from wtpsplit.train.train import collate_fn, setup_logging +from wtpsplit.train.trainer import Trainer +from wtpsplit.train.utils import Model +from wtpsplit.utils import Constants, LabelArgs, get_label_dict, get_subword_label_dict + +logger = logging.getLogger(__name__) + +os.environ["TOKENIZERS_PARALLELISM"] = "false" + + +@dataclass +class Args: + model_name_or_path: str + base_model: str = "xlm-roberta-base" + shuffle: bool = True + text_path: str = "data/all_data.pth" + include_languages: List[str] = None + preprocessing_num_workers: int = 1 + block_size: int = 512 + overflow_size: int = 16 + eval_stride: int = 256 + loss_margin: float = 0.5 + pack_samples: bool = False + one_sample_per_line: bool = False + use_loss_weights: bool = False + do_sentence_training: bool = True + do_auxiliary_training: bool = False + aux_training_weight: float = 1.0 + ignore_non_hyphen: bool = False + non_punctuation_sample_ratio: float = None + text_column: str = "text" + num_hidden_layers: int = 0 + + # NEW PARAMS + use_subwords: bool = True + freeze_classifier: bool = False + clf_from_scratch: bool = False + unfreeze_ln: bool = False + do_process: bool = False + meta_clf: bool = False + wandb_project: str = "sentence" + eval_every: int = 5 + # corruption + skip_eval_loss: bool = False + subsample: Optional[float] = None + + +def main(): + parser = HfArgumentParser([Args, TrainingArguments, LabelArgs]) + if sys.argv[1].endswith(".json"): + (args, training_args, label_args) = parser.parse_json_file(sys.argv[1]) + wandb_name = training_args.output_dir + else: + (args, training_args, label_args) = parser.parse_args_into_dataclasses() + wandb_name = None + + setup_logging(training_args) + set_seed(training_args.seed) + + num_labels = Constants.AUX_OFFSET + ( + (1 + len(Constants.PUNCTUATION_CHARS)) + if (label_args.use_auxiliary or args.do_auxiliary_training or args.meta_clf) + else 0 + ) + + if args.num_hidden_layers: + config = SubwordXLMConfig.from_pretrained( + args.model_name_or_path, + num_labels=num_labels, + num_hidden_layers=args.num_hidden_layers, + ) + else: + config = SubwordXLMConfig.from_pretrained(args.model_name_or_path, num_labels=num_labels) + + def prepare_dataset( + data, + num_workers=1, + include_languages=None, + dataset_name="ud", + shuffle=False, + split="train", + subsample: Union[None, int, float] = None, + one_sample_per_line: bool = False, + ): + with training_args.main_process_first(): + # this only uses 1 dataset-language combination, but can be easily adapted if needed + for lang in include_languages: + if split == "train": + dataset = data[lang]["sentence"][dataset_name]["meta"]["train_data"] + elif split == "valid": + dataset = data[lang]["sentence"][dataset_name]["data"] + if dataset is None: + return None + + if one_sample_per_line or isinstance(dataset[0], list): + processed_dataset = [] + for chunk in dataset: + if any("\n" in sample for sample in chunk): + raise ValueError( + "Newlines in text are not supported! Data needs to be processed as a list of sentences." + ) + processed_chunk = {} + processed_chunk["lang"] = lang + processed_chunk["ends_with_punctuation"] = chunk[-1].endswith( + tuple(Constants.PUNCTUATION_CHARS) + ) + # join all chunks + processed_chunk[args.text_column] = "\n".join(chunk) + processed_dataset.append(processed_chunk) + dataset = datasets.Dataset.from_list(processed_dataset) + + else: + for i, chunk in enumerate(dataset): + if "\n" in chunk: + raise ValueError( + "Newlines in text are not supported! Data needs to be processed as a list of sentences." + ) + dataset = datasets.Dataset.from_list( + [ + { + args.text_column: sample + "\n" if sample and sample[-1] != "\n" else sample, + "lang": lang, + "ends_with_punctuation": sample.endswith(tuple(Constants.PUNCTUATION_CHARS)), + } + for sample in dataset + ] + ) + with training_args.main_process_first(): + logger.warning(f"Loaded {len(dataset)} examples for {lang} {dataset_name} {split} dataset.") + + if shuffle: + dataset = dataset.shuffle(seed=training_args.seed) + if subsample: + old_length = len(dataset) + if isinstance(subsample, int): + # ensure that we don't try to select more than the dataset length + subsample = min(subsample, len(dataset)) + dataset = dataset.select(range(subsample)) + elif isinstance(subsample, float): + dataset = dataset.select(range(int(subsample * len(dataset)))) + logger.warning(f"Subsampled {len(dataset)} examples from {old_length}.") + + # ignore + if args.ignore_non_hyphen: + with training_args.main_process_first(): + dataset = dataset.filter( + lambda sample: any(c in sample[args.text_column] for c in label_args.hyphen_chars), + num_proc=args.preprocessing_num_workers, + ) + with training_args.main_process_first(): + logger.info(f"Filtered to {len(dataset)} examples.") + + # "punctuation-specific sampling" in the WtP paper + if args.non_punctuation_sample_ratio is not None: + languages_without_punctuation = { + lang_code + for lang_code in Constants.LANGINFO.index + if Constants.LANGINFO.loc[lang_code, "no_punctuation"] + } + + def drop_some_non_punctuation_samples(examples): + include_indices = set( + np.where([lang_code not in languages_without_punctuation for lang_code in examples["lang"]])[0] + ) + punctuation_indices = { + i for i in np.where(examples["ends_with_punctuation"])[0] if i in include_indices + } + + target_n_non_punct = int( + (len(punctuation_indices) * args.non_punctuation_sample_ratio) + / (1 - args.non_punctuation_sample_ratio) + ) + n_drop = (len(include_indices) - len(punctuation_indices)) - target_n_non_punct + + out = [True for _ in range(len(examples["ends_with_punctuation"]))] + + if n_drop <= 0: + return out + drop_indices = np.random.choice( + list(include_indices - punctuation_indices), + n_drop, + replace=False, + ) + + for i in drop_indices: + out[i] = False + + return out + + with training_args.main_process_first(): + dataset = dataset.filter( + drop_some_non_punctuation_samples, + batched=True, + batch_size=1_000_000, + num_proc=num_workers, + ) + + def tokenize_texts(examples): + tokenized = tokenizer(examples[args.text_column], verbose=False) + return {"input_ids": [example[1:-1] for example in tokenized["input_ids"]]} + + def group_texts(examples): + concatenated_texts = sum(examples["input_ids"], []) + concatenated_ids = [i for i, text in enumerate(examples["input_ids"]) for _ in text] + concatenated_langs = [ + lang for lang, text in zip(examples["lang"], examples["input_ids"]) for _ in text + ] + + total_length = len(concatenated_texts) + + best_length = math.ceil(total_length / args.block_size) * args.block_size + args.overflow_size + while best_length > total_length: + best_length -= args.block_size + + if best_length < 0: + return {"input_ids": [], "block_lengths": [], "lang": []} + + concatenated_texts = concatenated_texts[:best_length] + concatenated_ids = concatenated_ids[:best_length] + concatenated_langs = concatenated_langs[:best_length] + + blocks = [ + concatenated_texts[i : i + args.block_size + args.overflow_size] + for i in range(0, best_length - args.block_size, args.block_size) + ] + block_ids = [ + concatenated_ids[i : i + args.block_size + args.overflow_size] + for i in range(0, best_length - args.block_size, args.block_size) + ] + block_langs = [ + concatenated_langs[i] for i in range(0, best_length - args.block_size, args.block_size) + ] + + return { + "input_ids": blocks, + "block_lengths": [list(Counter(ids).values()) for ids in block_ids], + "lang": block_langs, + } + + with training_args.main_process_first(): + dataset = dataset.map( + tokenize_texts, + batched=True, + num_proc=num_workers, + remove_columns=[args.text_column], + ) + + if not args.one_sample_per_line: + with training_args.main_process_first(): + dataset = dataset.map( + group_texts, + batched=True, + num_proc=num_workers, + remove_columns=["ends_with_punctuation"], + ) + + return dataset + + # Load data + data = torch.load(args.text_path) + logger.warning(f"Loaded data from {args.text_path}") + + # Load model (full fine-tuning - no adapters) + model = SubwordXLMForTokenClassification.from_pretrained( + args.model_name_or_path, + config=config, + ignore_mismatched_sizes=True, + ) + + # Load tokenizer + tokenizer = AutoTokenizer.from_pretrained(args.base_model) + tokenizer.add_special_tokens({"additional_special_tokens": [AddedToken("\n")]}) + + # Resize token embeddings to accommodate new tokens + model.resize_token_embeddings(len(tokenizer)) + + custom_token_id = tokenizer.convert_tokens_to_ids("\n") + special_tokens_ids = set(tokenizer.all_special_ids) + special_tokens_ids.discard(custom_token_id) + + # Find available datasets dynamically (like train_lora.py does) + train_dataset = None + valid_dataset = None + + for lang in data.keys(): + if lang in args.include_languages: + for dataset_name in data[lang]["sentence"].keys(): + logger.warning(f"Found dataset: {dataset_name} for language: {lang}") + + # Prepare datasets + train_dataset = prepare_dataset( + data, + num_workers=args.preprocessing_num_workers, + include_languages=[lang], + dataset_name=dataset_name, + shuffle=args.shuffle, + split="train", + subsample=args.subsample, + one_sample_per_line=args.one_sample_per_line, + ) + + valid_dataset = prepare_dataset( + data, + num_workers=args.preprocessing_num_workers, + include_languages=[lang], + dataset_name=dataset_name, + shuffle=False, + split="valid", + subsample=args.subsample, + one_sample_per_line=args.one_sample_per_line, + ) + + if train_dataset is not None and valid_dataset is not None: + logger.warning(f"Train dataset has {len(train_dataset)} examples.") + logger.warning(f"Valid dataset has {len(valid_dataset)} examples.") + break + + if train_dataset is not None: + break + + if train_dataset is None or valid_dataset is None: + logger.error("Failed to load datasets") + return + + # Create model wrapper + model_wrapper = Model( + model, + loss_margin=args.loss_margin, + use_loss_weights=args.use_loss_weights, + do_sentence_training=args.do_sentence_training, + do_auxiliary_training=args.do_auxiliary_training, + aux_training_weight=args.aux_training_weight, + ) + + # Create label dictionary + label_dict = get_subword_label_dict(label_args, tokenizer) + logger.info(f"Label dict has {len(label_dict)} entries.") + + # Add adapter attributes to training_args for compatibility with trainer.py + training_args.adapter_warmup_steps = 0 + training_args.adapter_lr_multiplier = 1.0 + + # Initialize wandb + if "wandb" in training_args.report_to and training_args.process_index == 0: + wandb.init(name=wandb_name, project=args.wandb_project) + wandb.config.update(args) + wandb.config.update(training_args) + wandb.config.update(label_args) + + # Create trainer + trainer = Trainer( + model_wrapper, + training_args, + train_dataset=train_dataset, + eval_dataset=valid_dataset, + data_collator=partial( + collate_fn, + args=args, + label_args=label_args, + label_dict=label_dict, + tokenizer=tokenizer, + add_lang_ids=False, + ), + ) + + # Train the model + trainer.train(resume_from_checkpoint=training_args.resume_from_checkpoint) + trainer.save_model() + trainer.save_state() + + logger.warning("Training completed!") + + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/train/train_lora.py b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/train/train_lora.py new file mode 100644 index 0000000000000000000000000000000000000000..76ddc39745212f9b68629e7c6668ef7a41e96c2d --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/train/train_lora.py @@ -0,0 +1,592 @@ +import copy +import logging +import math +import os +import random +import sys +from collections import Counter +from dataclasses import dataclass +from functools import partial +from glob import glob +from typing import List, Optional, Union + +import adapters +import datasets +import numpy as np +import torch +from adapters import AdapterArguments +from adapters.models import MODEL_MIXIN_MAPPING +from adapters.models.bert.mixin_bert import BertModelAdaptersMixin +from tokenizers import AddedToken +from tqdm import tqdm +from transformers import AutoTokenizer, HfArgumentParser, TrainingArguments, set_seed + +import wandb +from wtpsplit.models import SubwordXLMConfig, SubwordXLMForTokenClassification +from wtpsplit.train.adaptertrainer import AdapterTrainer +from wtpsplit.train.evaluate import evaluate_sentence +from wtpsplit.train.train import collate_fn, setup_logging +from wtpsplit.train.trainer import Trainer +from wtpsplit.train.utils import Model +from wtpsplit.utils import Constants, LabelArgs, get_label_dict, get_subword_label_dict + +logger = logging.getLogger(__name__) + +os.environ["TOKENIZERS_PARALLELISM"] = "false" + +MODEL_MIXIN_MAPPING["SubwordXLMRobertaModel"] = BertModelAdaptersMixin + + +@dataclass +class Args: + model_name_or_path: str + base_model: str = "xlm-roberta-base" + shuffle: bool = True + text_path: str = "data/all_data.pth" + include_languages: List[str] = None + preprocessing_num_workers: int = 1 + block_size: int = 512 + overflow_size: int = 16 + eval_stride: int = 256 + loss_margin: float = 0.5 + pack_samples: bool = False + one_sample_per_line: bool = False + use_loss_weights: bool = False + do_sentence_training: bool = True + do_auxiliary_training: bool = False + aux_training_weight: float = 1.0 + ignore_non_hyphen: bool = False + non_punctuation_sample_ratio: float = None + adapter_warmup_steps: int = 0 + adapter_lr_multiplier: float = 1.0 + text_column: str = "text" + num_hidden_layers: int = 0 + + # NEW PARAMS + use_subwords: bool = False + freeze_classifier: bool = False + clf_from_scratch: bool = False + unfreeze_ln: bool = False + do_process: bool = False + meta_clf: bool = False + wandb_project: str = "sentence" + eval_every: int = 5 + # corruption + skip_eval_loss: bool = False + subsample: Optional[float] = None + + +def main(): + parser = HfArgumentParser([Args, TrainingArguments, LabelArgs, AdapterArguments]) + if sys.argv[1].endswith(".json"): + (args, training_args, label_args, adapter_args) = parser.parse_json_file(sys.argv[1]) + wandb_name = training_args.output_dir + else: + (args, training_args, label_args, adapter_args) = parser.parse_args_into_dataclasses() + wandb_name = None + + setup_logging(training_args) + set_seed(training_args.seed) + + num_labels = Constants.AUX_OFFSET + ( + (1 + len(Constants.PUNCTUATION_CHARS)) + if (label_args.use_auxiliary or args.do_auxiliary_training or args.meta_clf) + else 0 + ) + + if args.num_hidden_layers: + config = SubwordXLMConfig.from_pretrained( + args.model_name_or_path, + num_labels=num_labels, + num_hidden_layers=args.num_hidden_layers, + ) + else: + config = SubwordXLMConfig.from_pretrained(args.model_name_or_path, num_labels=num_labels) + + def prepare_dataset( + data, + num_workers=1, + include_languages=None, + dataset_name="ud", + shuffle=False, + split="train", + subsample: Union[None, int, float] = None, + one_sample_per_line: bool = False, + ): + with training_args.main_process_first(): + # this only uses 1 dataset-language combination, but can be easily adapted if needed + for lang in include_languages: + if split == "train": + dataset = data[lang]["sentence"][dataset_name]["meta"]["train_data"] + elif split == "valid": + dataset = data[lang]["sentence"][dataset_name]["data"] + if dataset is None: + return None + + if one_sample_per_line or isinstance(dataset[0], list): + processed_dataset = [] + for chunk in dataset: + if "\n" in chunk: + raise ValueError( + "Newlines in text are not supported! Data needs to be processed as a list of sentences." + ) + processed_chunk = {} + processed_chunk["lang"] = lang + processed_chunk["ends_with_punctuation"] = chunk[-1].endswith( + tuple(Constants.PUNCTUATION_CHARS) + ) + # join all chunks + processed_chunk[args.text_column] = "\n".join(chunk) + processed_dataset.append(processed_chunk) + dataset = datasets.Dataset.from_list(processed_dataset) + + else: + for i, chunk in enumerate(dataset): + if "\n" in chunk: + raise ValueError( + "Newlines in text are not supported! Data needs to be processed as a list of sentences." + ) + dataset = datasets.Dataset.from_list( + [ + { + args.text_column: sample + "\n" if sample and sample[-1] != "\n" else sample, + "lang": lang, + "ends_with_punctuation": sample.endswith(tuple(Constants.PUNCTUATION_CHARS)), + } + for sample in dataset + ] + ) + with training_args.main_process_first(): + logger.warning(f"Loaded {len(dataset)} examples for {lang} {dataset_name} {split} dataset.") + + if shuffle: + dataset = dataset.shuffle(seed=training_args.seed) + if subsample: + old_length = len(dataset) + if isinstance(subsample, int): + # ensure that we don't try to select more than the dataset length + subsample = min(subsample, len(dataset)) + dataset = dataset.select(range(subsample)) + elif isinstance(subsample, float): + dataset = dataset.select(range(int(subsample * len(dataset)))) + logger.warning(f"Subsampled {len(dataset)} examples from {old_length}.") + + # ignore + if args.ignore_non_hyphen: + with training_args.main_process_first(): + dataset = dataset.filter( + lambda sample: any(c in sample[args.text_column] for c in label_args.hyphen_chars), + num_proc=args.preprocessing_num_workers, + ) + with training_args.main_process_first(): + logger.info(f"Filtered to {len(dataset)} examples.") + + # "punctuation-specific sampling" in the WtP paper + if args.non_punctuation_sample_ratio is not None: + languages_without_punctuation = { + lang_code + for lang_code in Constants.LANGINFO.index + if Constants.LANGINFO.loc[lang_code, "no_punctuation"] + } + + def drop_some_non_punctuation_samples(examples): + include_indices = set( + np.where([lang_code not in languages_without_punctuation for lang_code in examples["lang"]])[0] + ) + punctuation_indices = { + i for i in np.where(examples["ends_with_punctuation"])[0] if i in include_indices + } + + target_n_non_punct = int( + (len(punctuation_indices) * args.non_punctuation_sample_ratio) + / (1 - args.non_punctuation_sample_ratio) + ) + n_drop = (len(include_indices) - len(punctuation_indices)) - target_n_non_punct + + out = [True for _ in range(len(examples["ends_with_punctuation"]))] + + if n_drop <= 0: + return out + drop_indices = np.random.choice( + list(include_indices - punctuation_indices), + n_drop, + replace=False, + ) + + for i in drop_indices: + out[i] = False + + return out + + with training_args.main_process_first(): + dataset = dataset.filter( + drop_some_non_punctuation_samples, + batched=True, + batch_size=1_000_000, + num_proc=num_workers, + ) + + def tokenize_texts(examples): + # do not return CLS and SEP token here + # there should only be 1 of these per block later, not multiple + # we still can't use return_special_tokens=False since we need the \n token later for the labels + tokenized = tokenizer(examples[args.text_column], verbose=False) + return {"input_ids": [example[1:-1] for example in tokenized["input_ids"]]} + + # similar to group_texts in huggingface's run_clm.py / run_mlm.py: https://github.com/huggingface/transformers/blob/main/examples/pytorch/language-modeling/run_mlm.py + def group_texts(examples): + all_input_blocks = [] + all_input_block_lengths = [] + all_langs = [] + + def maybe_pad(text): + if args.pack_samples: + padding = model.backbone.config.downsampling_rate - (len(text) % model.backbone.downsampling_rate) + if padding == model.backbone.downsampling_rate: + padding = 0 + + text += chr(0) * padding + + return text + + for current_lang in set(examples["lang"]): + if not args.use_subwords: + lang_texts = [ + maybe_pad(text) + for text, lang in zip(examples["input_ids"], examples["lang"]) + if lang == current_lang + ] + else: + # only retain current_lang examples (all columns) + lang_subwords = [ + subwords + for subwords, lang in zip(examples["input_ids"], examples["lang"]) + if lang == current_lang + ] + # filter out some special tokens + # from html tags, mostly in Latin, Thai & Korean + lang_subwords = [ + [subword for subword in subwords if subword not in special_tokens_ids] + for subwords in lang_subwords + ] + # pack_samples used for the compound part, so irrelevant + if args.pack_samples: + if args.use_subwords: + raise NotImplementedError + blocks = [] + block_ids = [] + + current_block = ["", []] + + for i, text in enumerate(lang_texts): + if len(text) > args.block_size: + continue + + current_block[0] += text + current_block[1] += [i] * len(text) + + if i + 1 < len(lang_texts) and len(current_block[0]) + len(lang_texts[i + 1]) > args.block_size: + padding = args.block_size - len(current_block[0]) + + current_block[0] += chr(0) * padding + current_block[1] += [i] * padding + blocks.append(current_block[0]) + block_ids.append(current_block[1]) + + current_block = ["", []] + + if len(current_block[0]) > 0: + padding = args.block_size - len(current_block[0]) + + current_block[0] += chr(0) * padding + current_block[1] += [i] * padding + blocks.append(current_block[0]) + block_ids.append(current_block[1]) + else: + if not args.use_subwords: + concatenated_texts = "".join(lang_texts) + concatenated_ids = [i for i, text in enumerate(lang_texts) for _ in text] + else: + # concatenate token lists + concatenated_texts = [item for sublist in lang_subwords for item in sublist] + concatenated_ids = [i for i, subwords in enumerate(lang_subwords) for _ in subwords] + + total_length = len(concatenated_texts) + + best_length = math.ceil(total_length / args.block_size) * args.block_size + args.overflow_size + while best_length > total_length: + best_length -= args.block_size + if best_length < args.block_size: + best_length = args.block_size + 1 + + if best_length < 0: + continue + + concatenated_texts = concatenated_texts[:best_length] + concatenated_ids = concatenated_ids[:best_length] + + blocks = [ + concatenated_texts[i : i + args.block_size + args.overflow_size] + for i in range(0, best_length - args.block_size, args.block_size) + ] + block_ids = [ + concatenated_ids[i : i + args.block_size + args.overflow_size] + for i in range(0, best_length - args.block_size, args.block_size) + ] + + block_langs = [current_lang] * len(blocks) + + all_input_blocks.extend(blocks) + all_input_block_lengths.extend([list(Counter(ids).values()) for ids in block_ids]) + all_langs.extend(block_langs) + + return { + "input_ids": all_input_blocks, + "block_lengths": all_input_block_lengths, + "lang": all_langs, + } + + if args.pack_samples: + assert not one_sample_per_line + + if args.use_subwords: + with training_args.main_process_first(): + dataset = dataset.map( + tokenize_texts, + batched=True, + num_proc=num_workers, + remove_columns=[args.text_column], + desc="Tokenizing", + ) + else: + # this is no longer used and would cause an error otherwise + with training_args.main_process_first(): + dataset = dataset.rename_column(args.text_column, "input_ids") + + if not one_sample_per_line: + with training_args.main_process_first(): + dataset = dataset.map( + group_texts, + batched=True, + num_proc=num_workers, + # a bit hacky but oh well, only drop if sentence + remove_columns=["ends_with_punctuation"] if args.text_column == "text" else [], + desc="Grouping", + ) + + return dataset + + with training_args.main_process_first(): + data = torch.load( + args.text_path, + ) + # sort alphabetically by key for alphabetical filtering + data = dict(sorted(data.items())) + + if not args.include_languages: + args.include_languages = list(data.keys()) # use all + + # 1 wandb run for all language-dataset combinations + if "wandb" in training_args.report_to and training_args.process_index == 0: + wandb.init(name=wandb_name, project=args.wandb_project, group=wandb_name) + wandb.config.update(args) + wandb.config.update(training_args) + wandb.config.update(label_args) + wandb.config.update(adapter_args) + + for file in glob(os.path.join(os.path.dirname(__file__), "*.py")): + wandb.save(os.path.abspath(file), policy="now") + + for lang in tqdm(data.keys(), desc="Language"): + if lang in args.include_languages: + for dataset_name in data[lang]["sentence"].keys(): + print("RUNNING:", dataset_name, lang) + # do model stuff here; otherwise, head params would be overwritten every time + backbone = SubwordXLMForTokenClassification.from_pretrained( + args.model_name_or_path, config=copy.deepcopy(config), ignore_mismatched_sizes=True + ) + backbone.config.base_model = args.base_model + + # setup adapters + model_type = backbone.config.model_type + # adapters need xlm-roberta as model type. + backbone.config.model_type = "xlm-roberta" # needed for adapter setup + adapters.init(backbone) + # reset model type (used later) + backbone.config.model_type = model_type + + tokenizer = AutoTokenizer.from_pretrained(args.base_model) + # needed since we create labels in collate_fn based on tokens + tokenizer.add_special_tokens({"additional_special_tokens": [AddedToken("\n")]}) + custom_token_id = tokenizer.convert_tokens_to_ids("\n") + # used later to filter out special tokens + special_tokens_ids = set(tokenizer.all_special_ids) + special_tokens_ids.discard(custom_token_id) + + # add this line try to address assertion error + backbone.resize_token_embeddings(len(tokenizer)) + + if "short" in dataset_name: + one_sample_per_line = True + else: + one_sample_per_line = args.one_sample_per_line # used for lyrics + + model = Model( + backbone, + loss_margin=args.loss_margin, + use_loss_weights=args.use_loss_weights, + do_sentence_training=args.do_sentence_training, + do_auxiliary_training=args.do_auxiliary_training, + aux_training_weight=args.aux_training_weight, + ) + + with training_args.main_process_first(): + valid_dataset = prepare_dataset( + data=data, + num_workers=1, + include_languages=[lang], + dataset_name=dataset_name, + shuffle=False, + split="valid", + one_sample_per_line=one_sample_per_line, + ) + logger.warning(f"Valid ds for {lang} {dataset_name} has {len(valid_dataset)} examples.") + + train_dataset = prepare_dataset( + data=data, + num_workers=args.preprocessing_num_workers, + include_languages=[lang], + dataset_name=dataset_name, + shuffle=args.shuffle, + split="train", + subsample=args.subsample, + one_sample_per_line=one_sample_per_line, + ) + if train_dataset is None or valid_dataset is None: + logger.warning(f"Skipping {lang} {dataset_name} due to missing data.") + continue + logger.warning(f"Train ds for {lang} {dataset_name} has {len(train_dataset)} examples.") + + # print some samples from the dataset + count = 0 + while count < 1: + index = random.choice(range(len(train_dataset))) + sample = train_dataset[index] + + logger.warning(f"Sample {index} of the training set: {sample}.") + if tokenizer: + logger.warning(tokenizer.decode(sample["input_ids"])) + count += 1 + + def compute_metrics(trainer): + metrics = {} + eval_data = data[lang]["sentence"][dataset_name]["data"] + + model = trainer._wrap_model(trainer.model, training=False) + + with training_args.main_process_first(): + # feeding in single samples is too slow --> feed in as one long text + if args.one_sample_per_line: + eval_data = [item for sublist in eval_data for item in sublist] + elif isinstance(eval_data[0], list): + eval_data = [item for sublist in eval_data for item in sublist] + score, info = evaluate_sentence( + lang, + eval_data, + model, + stride=args.eval_stride, + block_size=args.block_size, + batch_size=training_args.per_device_eval_batch_size, + ) + metrics[f"{dataset_name}/{lang}/pr_auc"] = score + metrics[f"{dataset_name}/{lang}/f1"] = info["f1"] + metrics[f"{dataset_name}/{lang}/f1_best"] = info["f1_best"] + metrics[f"{dataset_name}/{lang}/threshold_best"] = info["threshold_best"] + + return metrics + + label_dict = ( + get_subword_label_dict(label_args, tokenizer) if args.use_subwords else get_label_dict(label_args) + ) + + if adapter_args.train_adapter: + # init new adapter + model.backbone.add_adapter( + "text", config=adapter_args.adapter_config, set_active=True, overwrite_ok=True + ) + model.backbone.train_adapter("text") + kwargs = {"logging_prefix": f"{dataset_name}/{lang}/", "skip_eval_loss": args.skip_eval_loss} + else: + # needed in the trainer otherwise (WtP-related only) + training_args.adapter_warmup_steps = args.adapter_warmup_steps + training_args.adapter_lr_multiplier = args.adapter_lr_multiplier + kwargs = {} + + with training_args.main_process_first(): + logger.warning(model.backbone.adapter_summary()) + + if args.freeze_classifier: + for n, p in model.backbone.named_parameters(): + if "classifier" in n: + p.requires_grad = False + # not done: keeping clf head is much better + if args.clf_from_scratch: + model.backbone.classifier = torch.nn.Linear(model.backbone.config.hidden_size, num_labels) + + # eval only 5x during the entire training + training_args.evaluation_strategy = "steps" + training_args.eval_steps = max( + ( + len(train_dataset) + // training_args.per_device_train_batch_size + // training_args.gradient_accumulation_steps + // args.eval_every + * training_args.num_train_epochs + ), + args.eval_every, + ) + + trainer_cls = AdapterTrainer if adapter_args.train_adapter else Trainer + + trainer = trainer_cls( + model, + training_args, + train_dataset=train_dataset, + eval_dataset=valid_dataset, + compute_metrics=compute_metrics, + data_collator=partial( + collate_fn, + args=args, + label_args=label_args, + label_dict=label_dict, + tokenizer=tokenizer, + add_lang_ids=False, + ), + **kwargs, + ) + trainer.train(resume_from_checkpoint=training_args.resume_from_checkpoint) + logger.warning(f"Finished training for {lang} {dataset_name}.") + + # only save trained module + if training_args.local_rank == 0: + if not os.path.exists(os.path.join(training_args.output_dir, dataset_name, lang)): + os.makedirs(os.path.join(training_args.output_dir, dataset_name, lang)) + save_model = copy.deepcopy(model.backbone) + save_model = save_model.to("cpu") + if adapter_args.train_adapter: + save_model.to("cpu").save_adapter( + adapter_name="text", + save_directory=os.path.join(training_args.output_dir, dataset_name, lang), + with_head=True, + ) + else: + save_model.to("cpu").save_pretrained(os.path.join(training_args.output_dir, dataset_name, lang)) + + +def _mp_fn(index): + # For xla_spawn (TPUs) + main() + + +if __name__ == "__main__": + main() diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/train/trainer.py b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/train/trainer.py new file mode 100644 index 0000000000000000000000000000000000000000..ca25780b4a8d509d2b72615d9ad7a644d693cb4f --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/train/trainer.py @@ -0,0 +1,449 @@ +import os +from typing import Dict + +import numpy as np +import torch +import transformers +from torch import nn +from torch.optim.lr_scheduler import LambdaLR +from transformers import PreTrainedModel +from transformers.trainer import ( + ALL_LAYERNORM_LAYERS, + TRAINING_ARGS_NAME, + WEIGHTS_NAME, + DataLoader, + EvalLoopOutput, + IterableDatasetShard, + List, + Optional, + ShardedDDPOption, + deepspeed_init, + denumpify_detensorize, + find_batch_size, + get_parameter_names, + has_length, + is_sagemaker_mp_enabled, + is_torch_tpu_available, + logger, + nested_concat, + nested_numpify, + nested_truncate, +) +from transformers.modeling_utils import unwrap_model + +from wtpsplit.train.utils import Model + +if is_torch_tpu_available(check_device=False): + import torch_xla.core.xla_model as xm # noqa: F401 + import torch_xla.debug.metrics as met # noqa: F401 + import torch_xla.distributed.parallel_loader as pl # noqa: F401 + + +class Trainer(transformers.Trainer): + def get_param_groups(self): + opt_model = self.model_wrapped if is_sagemaker_mp_enabled() else self.model + + decay_parameters = get_parameter_names(opt_model, ALL_LAYERNORM_LAYERS) + decay_parameters = [name for name in decay_parameters if "bias" not in name] + + lang_adapter_parameters = [ + name + for name, _ in opt_model.named_parameters() + if "lang" in name or "classifier" in name or "projection" in name or "HashBucketCodepointEmbedder" in name + ] + + optimizer_grouped_parameters = [ + { + "params": [ + p + for n, p in opt_model.named_parameters() + if n in decay_parameters and n not in lang_adapter_parameters + ], + "weight_decay": self.args.weight_decay, + }, + { + "params": [ + p + for n, p in opt_model.named_parameters() + if n not in decay_parameters and n not in lang_adapter_parameters + ], + "weight_decay": 0.0, + }, + ] + + if len(lang_adapter_parameters) > 0: + optimizer_grouped_parameters.extend( + [ + { + "params": [ + p + for n, p in opt_model.named_parameters() + if n in decay_parameters and n in lang_adapter_parameters + ], + "weight_decay": self.args.weight_decay, + }, + { + "params": [ + p + for n, p in opt_model.named_parameters() + if n not in decay_parameters and n in lang_adapter_parameters + ], + "weight_decay": 0.0, + }, + ] + ) + + return optimizer_grouped_parameters + + def create_optimizer(self): + """ + Setup the optimizer. + We provide a reasonable default that works well. If you want to use something else, you can pass a tuple in the + Trainer's init through `optimizers`, or subclass and override this method in a subclass. + """ + opt_model = self.model_wrapped if is_sagemaker_mp_enabled() else self.model + + if self.optimizer is None: + optimizer_grouped_parameters = self.get_param_groups() + + optimizer_cls, optimizer_kwargs = Trainer.get_optimizer_cls_and_kwargs(self.args) + + if self.sharded_ddp == ShardedDDPOption.SIMPLE: + raise NotImplementedError() + else: + self.optimizer = optimizer_cls(optimizer_grouped_parameters, **optimizer_kwargs) + if optimizer_cls.__name__ == "Adam8bit": + import bitsandbytes + + manager = bitsandbytes.optim.GlobalOptimManager.get_instance() + + for module in opt_model.modules(): + if isinstance(module, nn.Embedding): + manager.register_module_override(module, "weight", {"optim_bits": 32}) + logger.debug(f"bitsandbytes: will optimize {module} in fp32") + + if is_sagemaker_mp_enabled(): + raise NotImplementedError() + + return self.optimizer + + def create_scheduler(self, num_training_steps: int, optimizer: torch.optim.Optimizer = None): + if self.lr_scheduler is None: + warmup_steps = self.args.get_warmup_steps(self.args.max_steps) + + # MODIFIED: add lang adapter lr scheduler (wtp only) + def lr_lambda(current_step: int): + if current_step < self.args.adapter_warmup_steps: + return 0.0 + + step = current_step - self.args.adapter_warmup_steps + + if step < warmup_steps: + return float(step) / float(warmup_steps) + else: + return max( + 0.0, + float(num_training_steps - step) / float(max(1, num_training_steps - warmup_steps)), + ) + + def lr_lambda_lang_adapter(current_step: int): + if current_step < self.args.adapter_warmup_steps: + return self.args.adapter_lr_multiplier + else: + return self.args.adapter_lr_multiplier * lr_lambda(current_step) + + self.lr_scheduler = LambdaLR( + optimizer=self.optimizer if optimizer is None else optimizer, + lr_lambda=[ + lr_lambda, + lr_lambda, + lr_lambda_lang_adapter, + lr_lambda_lang_adapter, + ] + if len(self.get_param_groups()) == 4 + else [lr_lambda, lr_lambda], + ) + + return self.lr_scheduler + + def _maybe_log_save_evaluate(self, tr_loss, model, trial, epoch, ignore_keys_for_eval): + if self.control.should_log: + if is_torch_tpu_available(): + xm.mark_step() + + logs: Dict[str, float] = {} + + # all_gather + mean() to get average loss over all processes + tr_loss_scalar = self._nested_gather(tr_loss).mean().item() + + # reset tr_loss to zero + tr_loss -= tr_loss + + logs["loss"] = round( + tr_loss_scalar / (self.state.global_step - self._globalstep_last_logged), + 4, + ) + ( + logs["learning_rate"], + _, + logs["learning_rate_adapter"], + _, + ) = self.lr_scheduler.get_last_lr() + + self._total_loss_scalar += tr_loss_scalar + self._globalstep_last_logged = self.state.global_step + self.store_flos() + + self.log(logs) + + metrics = None + if self.control.should_evaluate: + metrics = self.evaluate(ignore_keys=ignore_keys_for_eval) + self._report_to_hp_search(trial, self.state.global_step, metrics) + + if self.control.should_save: + self._save_checkpoint(model, trial, metrics=metrics) + self.control = self.callback_handler.on_save(self.args, self.state, self.control) + + def evaluation_loop( + self, + dataloader: DataLoader, + description: str, + prediction_loss_only: Optional[bool] = None, + ignore_keys: Optional[List[str]] = None, + metric_key_prefix: str = "eval", + ) -> EvalLoopOutput: + """ + Prediction/evaluation loop, shared by `Trainer.evaluate()` and `Trainer.predict()`. + + Works both with or without labels. + """ + args = self.args + + prediction_loss_only = prediction_loss_only if prediction_loss_only is not None else args.prediction_loss_only + + # if eval is called w/o train init deepspeed here + if args.deepspeed and not self.deepspeed: + # XXX: eval doesn't have `resume_from_checkpoint` arg but we should be able to do eval + # from the checkpoint eventually + deepspeed_engine, _, _ = deepspeed_init( + self, num_training_steps=0, resume_from_checkpoint=None, inference=True + ) + self.model = deepspeed_engine.module + self.model_wrapped = deepspeed_engine + self.deepspeed = deepspeed_engine + + model = self._wrap_model(self.model, training=False, dataloader=dataloader) + + # if full fp16 or bf16 eval is wanted and this ``evaluation`` or ``predict`` isn't called + # while ``train`` is running, cast it to the right dtype first and then put on device + if not self.is_in_train: + if args.fp16_full_eval: + model = model.to(dtype=torch.float16, device=args.device) + elif args.bf16_full_eval: + model = model.to(dtype=torch.bfloat16, device=args.device) + + batch_size = self.args.eval_batch_size + + logger.warning(f"***** Running {description} *****") + if has_length(dataloader): + logger.warning(f" Num examples = {self.num_examples(dataloader)}") + else: + logger.warning(" Num examples: Unknown") + logger.warning(f" Batch size = {batch_size}") + + model.eval() + + self.callback_handler.eval_dataloader = dataloader + # Do this before wrapping. + eval_dataset = getattr(dataloader, "dataset", None) + + if is_torch_tpu_available(): + dataloader = pl.ParallelLoader(dataloader, [args.device]).per_device_loader(args.device) + + if args.past_index >= 0: + self._past = None + + # Initialize containers + # losses/preds/labels on GPU/TPU (accumulated for eval_accumulation_steps) + losses_host = None + preds_host = None + labels_host = None + inputs_host = None + + # losses/preds/labels on CPU (final containers) + all_losses = None + all_preds = None + all_labels = None + all_inputs = None + # Will be useful when we have an iterable dataset so don't know its length. + + observed_num_examples = 0 + # Main evaluation loop + for step, inputs in enumerate(dataloader): + # Update the observed num examples + observed_batch_size = find_batch_size(inputs) + if observed_batch_size is not None: + observed_num_examples += observed_batch_size + # For batch samplers, batch_size is not known by the dataloader in advance. + if batch_size is None: + batch_size = observed_batch_size + + # Prediction step + loss, logits, labels = self.prediction_step(model, inputs, prediction_loss_only, ignore_keys=ignore_keys) + inputs_decode = self._prepare_input(inputs["input_ids"]) if args.include_inputs_for_metrics else None + + if is_torch_tpu_available(): + xm.mark_step() + + # Update containers on host + if loss is not None: + losses = self._nested_gather(loss.repeat(batch_size)) + losses_host = losses if losses_host is None else torch.cat((losses_host, losses), dim=0) + if labels is not None: + labels = self._pad_across_processes(labels) + labels = self._nested_gather(labels) + labels_host = labels if labels_host is None else nested_concat(labels_host, labels, padding_index=-100) + if inputs_decode is not None: + inputs_decode = self._pad_across_processes(inputs_decode) + inputs_decode = self._nested_gather(inputs_decode) + inputs_host = ( + inputs_decode + if inputs_host is None + else nested_concat(inputs_host, inputs_decode, padding_index=-100) + ) + if logits is not None: + logits = self._pad_across_processes(logits) + logits = self._nested_gather(logits) + if self.preprocess_logits_for_metrics is not None: + logits = self.preprocess_logits_for_metrics(logits, labels) + preds_host = logits if preds_host is None else nested_concat(preds_host, logits, padding_index=-100) + self.control = self.callback_handler.on_prediction_step(args, self.state, self.control) + + # Gather all tensors and put them back on the CPU if we have done enough accumulation steps. + if args.eval_accumulation_steps is not None and (step + 1) % args.eval_accumulation_steps == 0: + if losses_host is not None: + losses = nested_numpify(losses_host) + all_losses = losses if all_losses is None else np.concatenate((all_losses, losses), axis=0) + if preds_host is not None: + logits = nested_numpify(preds_host) + all_preds = logits if all_preds is None else nested_concat(all_preds, logits, padding_index=-100) + if inputs_host is not None: + inputs_decode = nested_numpify(inputs_host) + all_inputs = ( + inputs_decode + if all_inputs is None + else nested_concat(all_inputs, inputs_decode, padding_index=-100) + ) + if labels_host is not None: + labels = nested_numpify(labels_host) + all_labels = labels if all_labels is None else nested_concat(all_labels, labels, padding_index=-100) + + # Set back to None to begin a new accumulation + losses_host, preds_host, inputs_host, labels_host = ( + None, + None, + None, + None, + ) + + if args.past_index and hasattr(self, "_past"): + # Clean the state at the end of the evaluation loop + delattr(self, "_past") + + # Gather all remaining tensors and put them back on the CPU + if losses_host is not None: + losses = nested_numpify(losses_host) + all_losses = losses if all_losses is None else np.concatenate((all_losses, losses), axis=0) + if preds_host is not None: + logits = nested_numpify(preds_host) + all_preds = logits if all_preds is None else nested_concat(all_preds, logits, padding_index=-100) + if inputs_host is not None: + inputs_decode = nested_numpify(inputs_host) + all_inputs = ( + inputs_decode if all_inputs is None else nested_concat(all_inputs, inputs_decode, padding_index=-100) + ) + if labels_host is not None: + labels = nested_numpify(labels_host) + all_labels = labels if all_labels is None else nested_concat(all_labels, labels, padding_index=-100) + + # Number of samples + if has_length(eval_dataset): + num_samples = len(eval_dataset) + # The instance check is weird and does not actually check for the type, but whether the dataset has the right + # methods. Therefore we need to make sure it also has the attribute. + elif isinstance(eval_dataset, IterableDatasetShard) and hasattr(eval_dataset, "num_examples"): + num_samples = eval_dataset.num_examples + else: + if has_length(dataloader): + num_samples = self.num_examples(dataloader) + else: # both len(dataloader.dataset) and len(dataloader) fail + num_samples = observed_num_examples + + # Number of losses has been rounded to a multiple of batch_size and in a distributed training, the number of + # samplers has been rounded to a multiple of batch_size, so we truncate. + if all_losses is not None: + all_losses = all_losses[:num_samples] + if all_preds is not None: + all_preds = nested_truncate(all_preds, num_samples) + if all_labels is not None: + all_labels = nested_truncate(all_labels, num_samples) + if all_inputs is not None: + all_inputs = nested_truncate(all_inputs, num_samples) + + # Metrics! + # MODIFIED: always compute metrics + if self.compute_metrics is not None: + metrics = self.compute_metrics(self) + else: + metrics = {} + + # To be JSON-serializable, we need to remove numpy types or zero-d tensors + metrics = denumpify_detensorize(metrics) + + if all_losses is not None: + metrics[f"{metric_key_prefix}_loss"] = all_losses.mean().item() + + # Prefix all keys with metric_key_prefix + '_' + for key in list(metrics.keys()): + if not key.startswith(f"{metric_key_prefix}_"): + metrics[f"{metric_key_prefix}_{key}"] = metrics.pop(key) + + return EvalLoopOutput( + predictions=all_preds, + label_ids=all_labels, + metrics=metrics, + num_samples=num_samples, + ) + + def _save_tpu(self, output_dir: Optional[str] = None): + output_dir = output_dir if output_dir is not None else self.args.output_dir + logger.warning(f"Saving model checkpoint to {output_dir}") + + if xm.is_master_ordinal(): + os.makedirs(output_dir, exist_ok=True) + torch.save(self.args, os.path.join(output_dir, TRAINING_ARGS_NAME)) + + # Save a trained model and configuration using `save_pretrained()`. + # They can then be reloaded using `from_pretrained()` + xm.rendezvous("saving_checkpoint") + if isinstance(self.model, Model): + actual_model = self.model.backbone + else: + actual_model = self.model + if not isinstance(actual_model, PreTrainedModel): + if isinstance(unwrap_model(actual_model), PreTrainedModel): + unwrap_model(actual_model).save_pretrained( + output_dir, + is_main_process=self.args.should_save, + state_dict=actual_model.state_dict(), + save_function=xm.save, + ) + else: + logger.warning("Trainer.model is not a `PreTrainedModel`, only saving its state dict.") + state_dict = actual_model.state_dict() + xm.save(state_dict, os.path.join(output_dir, WEIGHTS_NAME)) + else: + actual_model.save_pretrained(output_dir, is_main_process=self.args.should_save, save_function=xm.save) + if self.tokenizer is not None and self.args.should_save: + self.tokenizer.save_pretrained(output_dir) diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/train/utils.py b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/train/utils.py new file mode 100644 index 0000000000000000000000000000000000000000..92dafd98bca34583839b7f4f9d1ba0a432266a4f --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/train/utils.py @@ -0,0 +1,151 @@ +import logging +import os +import torch +import torch.nn as nn +from wtpsplit.utils import Constants + +logger = logging.getLogger(__name__) + + +class Model(nn.Module): + def __init__( + self, + backbone, + loss_margin=0.5, + use_loss_weights=False, + do_sentence_training=True, + do_auxiliary_training=False, + aux_training_weight=1.0, + ): + super().__init__() + self.backbone = backbone + self.config = self.backbone.config + + assert loss_margin <= 0.5 + + self.loss_margin = loss_margin + self.use_loss_weights = use_loss_weights + self.do_sentence_training = do_sentence_training + self.do_auxiliary_training = do_auxiliary_training + self.aux_training_weight = aux_training_weight + + @property + def device(self): + return self.backbone.device + + def forward( + self, + input_ids, + language_ids=None, + attention_mask=None, + position_ids=None, + labels=None, + label_weights=None, + **kwargs, + ): + if position_ids is not None: + # XXX: 1 is pad token id + if "xlm" in self.config.model_type: + reduced_attention_mask = (input_ids != 1).to(torch.long) + else: + reduced_attention_mask = (input_ids != 0).to(torch.long) + + output = dict( + self.backbone.forward( + input_ids=input_ids, + language_ids=language_ids, + attention_mask=attention_mask, + position_ids=position_ids, + **kwargs, + ) + ) + logits = output["logits"] + + if labels is not None: + loss_fn = nn.BCEWithLogitsLoss(reduction="none") + + # main (newline prediction) objective + if self.do_sentence_training: + # label smoothing + sentence_labels = (0.5 - self.loss_margin) + (labels == Constants.NEWLINE_INDEX + 1).to( + logits.dtype + ).view(-1) * self.loss_margin * 2 + sentence_logits = logits[:, :, Constants.NEWLINE_INDEX].view(-1) + + loss = ( + loss_fn( + sentence_logits, + sentence_labels, + ) + * (label_weights.view(-1) if label_weights is not None and self.use_loss_weights else 1) + * reduced_attention_mask.view(-1) + ).sum() / reduced_attention_mask.sum() + + # auxiliary (punctuation prediction) objective + if self.do_auxiliary_training: + loss_fn = nn.CrossEntropyLoss() + + # exclude newline and no labels + aux_labels = torch.where( + (labels == 0) | (labels == Constants.NEWLINE_INDEX + 1), + 0, + labels - Constants.AUX_OFFSET, + ) + # exclude reduced_attention_mask tokens from labels + aux_labels = torch.where( + reduced_attention_mask == 1, + aux_labels, + loss_fn.ignore_index, + ) + + aux_loss = loss_fn( + logits[:, :, Constants.AUX_OFFSET :].view(-1, self.config.num_labels - Constants.AUX_OFFSET), + aux_labels.view(-1), + ) + + loss = loss + self.aux_training_weight * aux_loss + + output["loss"] = loss + + return output + + +def cleanup_cache_files(datasets) -> int: + """Clean up all cache files in the dataset cache directory, except those currently used by any of the provided datasets. + + Args: + datasets (List[Dataset]): A list of dataset objects. + + Be careful when running this command that no other process is currently using other cache files. + + Returns: + int: Number of removed files. + """ + if not datasets: + return 0 + + # Collect all current cache files from the provided datasets + current_cache_files = set() + for dataset in datasets: + dataset_cache_files = [os.path.abspath(cache_file["filename"]) for cache_file in dataset.cache_files] + current_cache_files.update(dataset_cache_files) + logger.warning(f"Found {len(current_cache_files)} cache files used by the provided datasets.") + + if not current_cache_files: + return 0 + + # Assuming all datasets have cache files in the same directory + cache_directory = os.path.dirname(next(iter(current_cache_files))) + + files = os.listdir(cache_directory) + files_to_remove = [] + for f_name in files: + full_name = os.path.abspath(os.path.join(cache_directory, f_name)) + if f_name.startswith("cache-") and f_name.endswith(".arrow") and full_name not in current_cache_files: + files_to_remove.append(full_name) + + for file_path in files_to_remove: + logger.warning(f"Removing {file_path}") + os.remove(file_path) + + return len(files_to_remove) diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/utils/__init__.py b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/utils/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..b535bfb9b9991d2eecadfbdbf4170c747e64e0e2 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/utils/__init__.py @@ -0,0 +1,487 @@ +import json +import logging +import os +import random +from collections import defaultdict +from dataclasses import dataclass, field +from pathlib import Path +from typing import List + +import numpy as np +import pandas as pd +from cached_property import cached_property +from mosestokenizer import MosesTokenizer +from transformers import AutoTokenizer + +# same as in CANINE +PRIMES = [31, 43, 59, 61, 73, 97, 103, 113, 137, 149, 157, 173, 181, 193, 211, 223] + +logger = logging.getLogger(__name__) + + +class ConstantsClass: + NEWLINE_INDEX = 0 + AUX_OFFSET = 1 + DEFAULT_PUNCTUATION_FILE = "punctuation.txt" + _PUNCTUATION_FILE = "punctuation.txt" + + @classmethod + def set_punctuation_file(cls, file_name): + cls._PUNCTUATION_FILE = file_name + + @cached_property + def ROOT_DIR(self): + return Path(os.path.abspath(os.path.join(os.path.dirname(__file__), ".."))) + + @cached_property + def CACHE_DIR(self): + CACHE_DIR = self.ROOT_DIR / ".cache" + CACHE_DIR.mkdir(exist_ok=True) + return CACHE_DIR + + @cached_property + def LANGINFO(self): + return pd.read_csv(os.path.join(self.ROOT_DIR, "data", "language_info.csv"), index_col=0) + + @property + def PUNCTUATION_CHARS(self): + punctuation_path = os.path.join(self.ROOT_DIR, "data", self._PUNCTUATION_FILE) + if os.path.exists(punctuation_path): + return [x.strip() for x in open(punctuation_path).readlines()] + else: + raise FileNotFoundError(f"The file {punctuation_path} does not exist.") + + @cached_property + def PUNCTUATION_MAP(self): + return json.load(open(os.path.join(self.ROOT_DIR, "data", "punctuation.json"))) + + @cached_property + def LANG_CODE_TO_INDEX(self): + return {lang: i for i, lang in enumerate(self.LANGINFO.index)} + + @cached_property + def SEPARATORS(self): + return defaultdict( + lambda: " ", {lang: ("" if row["no_whitespace"] else " ") for lang, row in self.LANGINFO.iterrows()} + ) + + +Constants = ConstantsClass() + + +@dataclass +class LabelArgs: + newline_remove_prob: float = 1.0 + auxiliary_remove_prob: float = 0.5 + hyphen_remove_prob: float = 0.9 + newline_whitespace_prob: float = 0.99 + hyphen_smooth_prob: float = 0.9 + newline_chars: List[str] = field(default_factory=lambda: ["\n"]) + auxiliary_chars: List[str] = field(default_factory=lambda: []) + hyphen_chars: List[str] = field(default_factory=lambda: ["-", "‐"]) + use_auxiliary: bool = False + custom_punctuation_file: str = None + retain_first_consecutive_punctuation: bool = True + non_whitespace_remove_spaces: bool = True + corrupt_entire_chunk_prob: float = 0.0 + corrupt_entire_chunk_strategy: str = "mix" + corrupt_entire_chunk_prob_full: float = 0.5 + + def __post_init__(self): + if self.custom_punctuation_file: + Constants.set_punctuation_file(self.custom_punctuation_file) + else: + Constants.set_punctuation_file("punctuation.txt") + self.auxiliary_chars = Constants.DEFAULT_PUNCTUATION_FILE + + +def get_label_dict(label_args): + label_dict = {} + + for i, c in enumerate(Constants.PUNCTUATION_CHARS): + label_dict[ord(c)] = 1 + Constants.AUX_OFFSET + i + + for c in label_args.newline_chars: + label_dict[ord(c)] = 1 + Constants.NEWLINE_INDEX + + return label_dict + + +def get_subword_label_dict(label_args, tokenizer): + label_dict = {} + + n_unks = 0 + # Map auxiliary characters to token IDs with labels + logger.info(f"Using {Constants.PUNCTUATION_CHARS} auxiliary characters.") + for i, c in enumerate(Constants.PUNCTUATION_CHARS): + token_id = tokenizer.convert_tokens_to_ids(c) + label_dict[token_id] = 1 + Constants.AUX_OFFSET + i + + if token_id == tokenizer.unk_token_id: + n_unks += 1 + + logger.info(f"found {n_unks} UNK tokens in auxiliary characters") + + # Map newline characters to token IDs with labels + for c in label_args.newline_chars: + token_id = tokenizer.convert_tokens_to_ids(c) + label_dict[token_id] = 1 + Constants.NEWLINE_INDEX + logger.info(f"newline character {c} has token ID {token_id} and label {label_dict[token_id]}, decoded:") + logger.info(f"{tokenizer.decode([token_id])}") + + return label_dict + + +def sigmoid(x): + return 1 / (1 + np.exp(-x.astype(np.float32))) # fp32 for better precision + + +def encode(text): + return [ord(c) for c in text] + + +def hash_encode(encoding, num_hashes=8, num_buckets=8192): + if num_hashes > len(PRIMES): + raise ValueError(f"`num_hashes` must be <= {len(PRIMES)}") + + hash_ids = np.zeros((len(encoding), num_hashes), dtype=np.int64) + for i in range(num_hashes): + shard_ids = (encoding + 1) * PRIMES[i] + hash_ids[:, i] = shard_ids % num_buckets + + return hash_ids + + +def label(input_ids, label_dict): + return [label_dict.get(input_id, 0) for input_id in input_ids[1:]] + [0] + + +def lang_code_to_lang(lang_code): + from iso639 import languages + + if lang_code == "el": + return "Greek" + elif lang_code == "tl": + return "Filipino" + elif lang_code == "ug": + return "Uyghur" + + try: + return languages.get(alpha2=lang_code).name + except KeyError: + return languages.get(part3=lang_code).name + + +def corrupt(text: str, do_lowercase: bool, do_remove_punct: bool): + if do_lowercase: + text = text.lower() + if do_remove_punct: + for punct in Constants.PUNCTUATION_CHARS: + text = text.replace(punct, "") + return text + + +def corrupt_asr(text: str, lang): + if text is None: + return None + + separator = Constants.SEPARATORS.get(lang, " ") + + sentences = text.split("\n") + + if separator == "": + corrupted_sentences = [ + "".join([char for char in sentence if char not in Constants.PUNCTUATION_CHARS]).lower() + for sentence in sentences + ] + return corrupted_sentences + + try: + tokenizer = MosesTokenizer(lang) + + tokenized_sentences = [tokenizer.tokenize(sentence) for sentence in sentences] + corrupted_tokenized_sentences = [ + [token for token in tokens if token not in Constants.PUNCTUATION_CHARS] for tokens in tokenized_sentences + ] + corrupted_sentences = [ + tokenizer.detokenize(corrupted_tokens).lower() for corrupted_tokens in corrupted_tokenized_sentences + ] + except: # noqa + corrupted_sentences = [ + "".join([char for char in sentence if char not in Constants.PUNCTUATION_CHARS]).lower() + for sentence in sentences + ] + return corrupted_sentences + + return corrupted_sentences + + +def corrupt_training( + input_ids, + block_ids, + lang, + label_args, + label_dict, + pack_samples=False, + min_length=None, + tokenizer=None, +): + input_ids = input_ids.copy() + block_ids = block_ids.copy() + if random.random() < label_args.corrupt_entire_chunk_prob: + # choose corruption strategy + if label_args.corrupt_entire_chunk_strategy == "mix": + corrupt_strategy = "full" # if random.random() < label_args.corrupt_entire_chunk_prob_full else "asr" + else: + corrupt_strategy = label_args.corrupt_entire_chunk_strategy + + input_text = tokenizer.decode(input_ids) + if corrupt_strategy == "tokenizer": + if not tokenizer: + raise NotImplementedError() + corrupted = corrupt(input_text, do_lowercase=True, do_remove_punct=False) + input_ids = tokenizer.encode(corrupted, add_special_tokens=False, verbose=False) + # remove ALL punct *tokens* + auxiliary_remove_prob = 1.0 + elif corrupt_strategy == "full": + # remove all punct *characters* + corrupted = corrupt(input_text, do_lowercase=True, do_remove_punct=True) + input_ids = tokenizer.encode(corrupted, add_special_tokens=False, verbose=False) + auxiliary_remove_prob = 1.0 # just for safety/consistency + elif corrupt_strategy == "asr": + if not tokenizer: + raise NotImplementedError() + corrupted_sentences = corrupt_asr(input_text, lang) + corrupted_text = "\n".join(corrupted_sentences) + input_ids = tokenizer.encode(corrupted_text, add_special_tokens=False, verbose=False) + auxiliary_remove_prob = 0.0 # do not remove additional characters. + block_ids = [0] * len(input_ids) + + else: + auxiliary_remove_prob = label_args.auxiliary_remove_prob + + labels = label(input_ids, label_dict) + + separator = Constants.SEPARATORS[lang] + + try: + i = next(index for index, label in enumerate(labels) if label != 0) + except StopIteration: + return input_ids, block_ids, labels + + if tokenizer: + # account for CLS and SEP token, added later + min_length = min_length - 2 if min_length is not None else None + while min_length is None or len(input_ids) > min_length: + if labels[i] == Constants.NEWLINE_INDEX + 1: + if random.random() < label_args.newline_remove_prob: + if separator == " " and random.random() < label_args.newline_whitespace_prob: + if tokenizer: + # inserting " " leaks \n information + # the token is never there naturally, so it is a 1:1 proxy for \n + del input_ids[i + 1] + del labels[i + 1] + del block_ids[i + 1] + else: + input_ids[i + 1] = ord(" ") + else: + del input_ids[i + 1] + del labels[i + 1] + + if pack_samples: + last_index_in_block = i + while ( + last_index_in_block + 1 == len(block_ids) + or last_index_in_block < len(block_ids) + and block_ids[last_index_in_block + 1] == block_ids[last_index_in_block] + ): + last_index_in_block += 1 + input_ids.insert(last_index_in_block, 0) + labels.insert(last_index_in_block, 0) + else: + del block_ids[i + 1] + if ( + tokenizer + and separator == "" + and label_args.non_whitespace_remove_spaces + and i + 1 < len(input_ids) + ): + # tokenizer.decode() retains the space that leaks the information + # so we need to get the position within the tokenized text and then remove the space + # (so there is no more space when fed into the tokenizer call) + if input_ids[i + 1] == tokenizer.convert_tokens_to_ids("▁"): + # remove artificial space + del input_ids[i + 1] + del labels[i + 1] + del block_ids[i + 1] + if i + 1 < len(input_ids): + next_token = tokenizer.convert_ids_to_tokens(input_ids[i + 1]) + if next_token.startswith("▁"): + # next token starts with _ --> remove the _ from the token and re-tokenize + remove_next = False + remaining_token = tokenizer.convert_ids_to_tokens(input_ids[i + 1]) + if len(remaining_token) > 1: + # ▁Test --> Test + remaining_token = remaining_token[1:] + else: + # ▁ --> remove + remove_next = True + remaining_id = tokenizer.convert_tokens_to_ids(remaining_token) + # replace the token with the remaining token + if remaining_id != tokenizer.unk_token_id: + input_ids[i + 1] = remaining_id + else: + # UNK token, remove it + remove_next = True + if remove_next: + del input_ids[i + 1] + del labels[i + 1] + del block_ids[i + 1] + + elif label_args.use_auxiliary and labels[i] > Constants.AUX_OFFSET: # auxiliary + if pack_samples: + raise NotImplementedError() + + if random.random() < auxiliary_remove_prob: + if label_args.retain_first_consecutive_punctuation: + # remove only if the next token is not a newline + # this retains the current auxiliary character, even though we decided to remove it + # it may skew the statistics since an auxiliary character is a better proxy for a newline + if labels[i + 1] != 1: + del input_ids[i + 1] + del labels[i + 1] + del block_ids[i + 1] + else: + # in case of something like ".\n", this removes the "." and the \n label (=1) + # so the newline in the text is kept, but the label is removed! + del input_ids[i + 1] + del labels[i + 1] + del block_ids[i + 1] + + try: + i = i + 1 + next(index for index, label in enumerate(labels[i + 1 :]) if label != 0) + except StopIteration: + break + + return input_ids, block_ids, labels + + +def indices_to_sentences(text, indices, strip_whitespace=False): + sentences = [] + + offset = 0 + idx = 0 + for idx in indices: + idx = idx + 1 + while idx < len(text) and text[idx].isspace(): + idx += 1 + + sentence = text[offset:idx] + if strip_whitespace: + # NB: I would have thought that this is slower than + # adjusting the start and end indices since there are + # two string copies, but it seems to be faster + # (at least on short strings). more reason to port to Rust? + sentence = sentence.strip() + + if len(sentence) > 0: + sentences.append(sentence) + + offset = idx + + if idx != len(text): + last_sentence = text[idx:] + if strip_whitespace: + last_sentence = last_sentence.strip() + + if len(last_sentence) > 0: + sentences.append(last_sentence) + + return sentences + + +def reconstruct_sentences(text, partial_sentences): + # for consistency + partial_sentences = [x.strip() for x in partial_sentences] + + fixed_sentences = [] + i = 0 + for x in partial_sentences: + try: + idx = i + text[i:].index(x[:-1]) + except ValueError: + reduced = x[:-2] + + while len(reduced) > 0 and not reduced.isspace(): + idx = i + text[i:].find(reduced) + + if idx == -1: + reduced = reduced[:-1] + else: + break + + if idx == -1: + raise ValueError("irrecoverable error in reconstruction") + + if idx > i: + fixed_sentences.append(text[i:idx]) + i = idx + + if i != len(text): + fixed_sentences.append(text[i:]) + + return fixed_sentences + + +def get_token_spans(offsets_mapping, tokens, special_tokens): + # Filter out special tokens and get their character start and end positions + valid_indices = np.array( + [idx for idx, token in enumerate(tokens) if idx < len(offsets_mapping) and token not in special_tokens] + ) + valid_offsets = np.array(offsets_mapping)[valid_indices] + return valid_indices, valid_offsets + + +def token_to_char_probs(text, tokens, token_logits, special_tokens, offsets_mapping): + """Map from token probabilities to character probabilities""" + char_probs = np.full((len(text), token_logits.shape[1]), -np.inf) # Initialize with very low numbers + + valid_indices, valid_offsets = get_token_spans(offsets_mapping, tokens, special_tokens) + + # Assign the token's probability to the last character of the token + # Here, `valid_offsets[:, 1] - 1` computes the index of the last character for each token, + # and `token_logits[valid_indices]` provides the corresponding probabilities for those tokens. + char_probs[valid_offsets[:, 1] - 1] = token_logits[valid_indices] + + return char_probs + + +if __name__ == "__main__": + # test corrupt function + from tokenizers import AddedToken + + tokenizer = AutoTokenizer.from_pretrained("xlm-roberta-base") + tokenizer.add_special_tokens({"additional_special_tokens": [AddedToken("\n")]}) + text = "That's right, Five!\n!\n!!!\n!\n Always lay the!Blame on others!" + input_ids = tokenizer(text)["input_ids"] + block_ids = [0] * len(input_ids) + label_args = LabelArgs( + custom_punctuation_file="punctuation_xlmr_unk.txt", + use_auxiliary=True, + auxiliary_remove_prob=1.0, + newline_whitespace_prob=1.0, + ) + label_dict = get_subword_label_dict(label_args, tokenizer) + print(len(label_dict)) + # print all tokens with a number in it (from label_dict only) + print( + [tokenizer.decode(input_id) for input_id in input_ids if any(c.isdigit() for c in tokenizer.decode(input_id))] + ) + # corrupt + input_ids, block_ids, labels = corrupt_training( + input_ids, block_ids, "en", label_args, label_dict, tokenizer=tokenizer + ) + print(input_ids) + print(labels) + print(tokenizer.tokenize(text)) + print([(tokenizer.decode([input_id]), label) for input_id, label in zip(input_ids, labels)]) diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/utils/clean_tweets.py b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/utils/clean_tweets.py new file mode 100644 index 0000000000000000000000000000000000000000..b35f868e19a6d4746a1a28df8d120e89e9fcfda8 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/utils/clean_tweets.py @@ -0,0 +1,68 @@ +import re +import torch + + +def remove_emojis_and_special_chars(text): + emoji_pattern = re.compile( + "[" + "\U0001f600-\U0001f64f" # emoticons + "\U0001f300-\U0001f5ff" # symbols & pictographs + "\U0001f680-\U0001f6ff" # transport & map symbols + "\U0001f700-\U0001f77f" # alchemical symbols + "\U0001f780-\U0001f7ff" # Geometric Shapes Extended + "\U0001f800-\U0001f8ff" # Supplemental Arrows-C + "\U0001f900-\U0001f9ff" # Supplemental Symbols and Pictographs + "\U0001fa00-\U0001fa6f" # Chess Symbols + "\U0001fa70-\U0001faff" # Symbols and Pictographs Extended-A + "\U00002702-\U000027b0" # Dingbats + "\U000024c2-\U0001f251" + "]+", + flags=re.UNICODE, + ) + text = emoji_pattern.sub(r"", text) + text = re.sub(r"[:;=Xx][\-oO\']*[\)\(\[\]DdPp3><\|\\\/]", "", text) + return text + + +def transform_data(data): + def pair_sentences(sequences): + paired_sequences = [] + for sequence in sequences: + processed_sequence = [] + for sentence in sequence: + words = sentence.strip().split() + filtered_words = [ + remove_emojis_and_special_chars(word) + for word in words + if not (word.startswith("http") or word.startswith("#") or word.startswith("@")) + ] + cleaned_sentence = " ".join(filtered_words) # fine for our langs. + if cleaned_sentence and len(cleaned_sentence.split()) > 0: + processed_sequence.append(cleaned_sentence.strip()) + if processed_sequence and len(processed_sequence) < 6: + paired_sequences.append(processed_sequence) + return paired_sequences + + transformed_data = {} + for lang_code, lang_data in data.items(): + transformed_data[lang_code] = {} + for content_type, datasets in lang_data.items(): + if content_type != "sentence": + continue + transformed_data[lang_code] = {} + transformed_data[lang_code][content_type] = {} + for dataset_name, content in datasets.items(): + if "short" not in dataset_name: + continue + transformed_data[lang_code][content_type][dataset_name] = { + "meta": {"train_data": pair_sentences(content["meta"]["train_data"])}, + "data": pair_sentences(content["data"]), + } + + return transformed_data + + +data = torch.load("data/all_data.pth") + +transformed_data = transform_data(data) +torch.save(transformed_data, "data/all_data_tweets_cleaned.pth") diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/utils/create_dummy_data.py b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/utils/create_dummy_data.py new file mode 100644 index 0000000000000000000000000000000000000000..92cd14503aae470c8ce4f871cd6ba3c088447e04 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/utils/create_dummy_data.py @@ -0,0 +1,19 @@ +import torch + +torch.save( + { + "language_code": { + "sentence": { + "dummy-dataset": { + "meta": { + "train_data": ["train sentence 1", "train sentence 2"], + }, + "data": [ + "train sentence 1", "train sentence 2" + ] + } + } + } + }, + "dummy-dataset.pth" +) \ No newline at end of file diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/utils/download_spacy.py b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/utils/download_spacy.py new file mode 100644 index 0000000000000000000000000000000000000000..bd1d1956e740c4c744b947374c8d0d6586285c60 --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/utils/download_spacy.py @@ -0,0 +1,37 @@ +import subprocess + +SPACY_LANG_TO_DP_MODEL = { + # "ca": "ca_core_news_sm", + # "zh": "zh_core_web_sm", + # "hr": "hr_core_news_sm", + # "da": "da_core_news_sm", + # "nl": "nl_core_news_sm", + # "en": "en_core_web_sm", + # "fi": "fi_core_news_sm", + # "fr": "fr_core_news_sm", + # "de": "de_core_news_sm", + # "el": "el_core_news_sm", + # "it": "it_core_news_sm", + # "ja": "ja_core_news_sm", + # "ko": "ko_core_news_sm", + # "lt": "lt_core_news_sm", + # "mk": "mk_core_news_sm", + # "nb": "nb_core_news_sm", + # "pl": "pl_core_news_sm", + # "pt": "pt_core_news_sm", + # "ro": "ro_core_news_sm", + # "ru": "ru_core_news_sm", + # "es": "es_core_news_sm", + # "sv": "sv_core_news_sm", + # "uk": "uk_core_news_sm", + "multi": "xx_sent_ud_sm" +} + + +def download_models(): + for lang, model in SPACY_LANG_TO_DP_MODEL.items(): + subprocess.run(["python3", "-m", "spacy", "download", model]) + + +if __name__ == "__main__": + download_models() diff --git a/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/utils/remove_unks.py b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/utils/remove_unks.py new file mode 100644 index 0000000000000000000000000000000000000000..718440c8157ae48613fd7bd0641aa4739702a5eb --- /dev/null +++ b/segmentation/models/SaT_cunit_with_maze/wtpsplit/wtpsplit/utils/remove_unks.py @@ -0,0 +1,69 @@ +import os +from transformers import AutoTokenizer +from tokenizers import AddedToken +from wtpsplit.utils import Constants, LabelArgs + + +def get_subword_label_dict(label_args, tokenizer): + label_dict = {} + + n_unks = 0 + # Map auxiliary characters to token IDs with labels + for i, c in enumerate(Constants.PUNCTUATION_CHARS): + token_id = tokenizer.convert_tokens_to_ids(c) + label_dict[token_id] = 1 + Constants.AUX_OFFSET + i + + print( + f"auxiliary character {c} has token ID {token_id} and label {label_dict[token_id]}, decoded: {tokenizer.decode([token_id])}" + ) + if token_id == tokenizer.unk_token_id: + n_unks += 1 + + print(f"found {n_unks} UNK tokens in auxiliary characters") + + # Map newline characters to token IDs with labels + for c in label_args.newline_chars: + token_id = tokenizer.convert_tokens_to_ids(c) + label_dict[token_id] = 1 + Constants.NEWLINE_INDEX + print(f"newline character {c} has token ID {token_id} and label {label_dict[token_id]}, decoded:") + print(r"{}".format(tokenizer.decode([token_id]))) + + return label_dict + + +tokenizer = AutoTokenizer.from_pretrained("xlm-roberta-base") +tokenizer.add_special_tokens({"additional_special_tokens": [AddedToken("\n")]}) + +label_dict = get_subword_label_dict(LabelArgs(), tokenizer) +print(len(label_dict)) + + +def write_punctuation_file(): + with open(os.path.join(Constants.ROOT_DIR, "punctuation_xlmr.txt"), "w", encoding="utf-8") as file: + for char in Constants.PUNCTUATION_CHARS: + token_id = tokenizer.convert_tokens_to_ids(char) + if token_id != tokenizer.unk_token_id: + file.write(char + "\n") + + +def write_punctuation_file_unk(): + added_unk = False + with open(os.path.join(Constants.ROOT_DIR, "punctuation_xlmr_unk.txt"), "w", encoding="utf-8") as file: + for char in Constants.PUNCTUATION_CHARS: + token_id = tokenizer.convert_tokens_to_ids(char) + if token_id != tokenizer.unk_token_id: + file.write(char + "\n") + elif not added_unk: + print("added unk") + file.write("\n") + added_unk = True + + +write_punctuation_file() +write_punctuation_file_unk() + +label_args_default = LabelArgs() +print(Constants.PUNCTUATION_CHARS, len(Constants.PUNCTUATION_CHARS)) + +label_args_custom = LabelArgs(custom_punctuation_file="punctuation_xlmr.txt") +print(Constants.PUNCTUATION_CHARS, len(Constants.PUNCTUATION_CHARS)) diff --git a/segmentation/segment.py b/segmentation/segment.py new file mode 100644 index 0000000000000000000000000000000000000000..a3cfbb8e40dcb56ad4af75059a48b05bd665d69f --- /dev/null +++ b/segmentation/segment.py @@ -0,0 +1,239 @@ +import json +import os +import re +from typing import List, Dict, Any, Callable, Tuple + + +def map_special_tokens_to_word_positions(text: str, word_list: List[Dict[str, Any]]) -> List[Dict[str, Any]]: + special_token_map: List[Dict[str, Any]] = [] + for m in re.finditer(r'<[^>]*?>', text): + special_token_map.append({ + "token": m.group(), + "char_start": m.start(), # index in original text + }) + + if not special_token_map: + return [] + + visible_offset_map = {} + visible_idx = 0 + i = 0 + while i < len(text): + if text[i] == '<': + j = text.find('>', i) + 1 + i = j + continue + visible_offset_map[i] = visible_idx + visible_idx += 1 + i += 1 + + clean_text = re.sub(r'<[^>]*?>', '', text) + + # locate each word in clean_text + word_positions = [] + cur = 0 + for w in word_list: + pos = clean_text.find(w["word"], cur) + if pos != -1: + word_positions.append({ + "word": w["word"], + "start": pos, + "end": pos + len(w["word"]) + }) + cur = pos + len(w["word"]) + + # map each token + for sp in special_token_map: + # how many visible chars are before this token? + raw_idx = sp["char_start"] + visible_before = 0 + # find largest key <= raw_idx in visible_offset_map + keys = [k for k in visible_offset_map.keys() if k < raw_idx] + if keys: + visible_before = visible_offset_map[max(keys)] + 1 # +1 because map stores idx of char at k + + insert_after = -1 + for i, wp in enumerate(word_positions): + if visible_before >= wp["end"]: + insert_after = i + else: + break + sp["insert_after_word_idx"] = insert_after + + return special_token_map + + +def reorganize_transcription_c_unit( + session_id: str, + segment_func: Callable[[str], List[int]], + base_dir: str = "session_data", + device: str = "cuda" +) -> Tuple[int, int]: + """Segment utterances into C-units with rules: + 1. Boundaries inside or are ignored. + 2. Trailing moves to next C-unit prefix. + + Returns (total_cunit_count, ignored_boundary_count). + """ + + session_dir = os.path.join(base_dir, session_id) + input_file = os.path.join(session_dir, "transcription.json") + output_file = os.path.join(session_dir, "transcription_cunit.json") + + if not os.path.exists(input_file): + raise FileNotFoundError(input_file) + + with open(input_file, "r", encoding="utf-8") as f: + data = json.load(f) + # Handle both old and new format + if "segments" in data: + transcription_data = data["segments"] + else: + transcription_data = data + + cunit_data: List[Dict[str, Any]] = [] + ignored_boundary_count = 0 + + + for utt in transcription_data: + original_text = utt["text"] + words_meta = utt.get("words", []) + + clean_text = re.sub(r'<[^>]*?>', '', original_text).strip() + if not clean_text: + continue + + # build word list + if words_meta: + word_data = [w for w in words_meta if w["word"] not in {"?", ",", ".", "!"}] + word_texts = [w["word"] for w in word_data] + else: + word_texts = re.sub(r'[\?\.,!]', '', clean_text).split() + word_data = [{"word": w, "start": utt["start"], "end": utt["end"]} for w in word_texts] + + if not word_texts: + continue + + # token positions & special ranges + special_token_map = map_special_tokens_to_word_positions(original_text, word_data) + + rep_ranges, rev_ranges = _build_special_ranges(special_token_map) + def inside_special(idx: int) -> bool: + return any(s <= idx <= e for s, e in rep_ranges) or any(s <= idx <= e for s, e in rev_ranges) + + # segmentation labels + labels = segment_func(' '.join(word_texts)) + if len(labels) != len(word_texts): + raise ValueError( + f"Segmentation length mismatch: {len(word_texts)} words vs {len(labels)} labels" + ) + + current_words: List[str] = [] + current_meta: List[Dict[str, Any]] = [] + cunit_start_idx = 0 # global word idx of first word in current c‑unit + cunit_start_time = word_data[0]["start"] + carry_over_tokens: List[str] = [] + + for i, (word, label) in enumerate(zip(word_texts, labels)): + current_words.append(word) + current_meta.append(word_data[i]) + + is_last_word = i == len(word_texts) - 1 + boundary_from_model = label == 1 and not inside_special(i) + if label == 1 and inside_special(i): + ignored_boundary_count += 1 + + make_boundary = boundary_from_model or is_last_word + if not make_boundary: + continue + + # -------- assemble C‑unit -------- + text_parts: List[str] = [] + + # 2a. prefix: carried‑over + if carry_over_tokens: + text_parts.extend(carry_over_tokens) + carry_over_tokens = [] + + for j, w in enumerate(current_words): + global_word_idx = cunit_start_idx + j + + # sentence‑initial tokens & ‑1 insertion + if global_word_idx == 0: + text_parts.extend( + [sp["token"] for sp in special_token_map if sp["insert_after_word_idx"] == -1] + ) + + text_parts.append(w) + + # tokens that follow this word + text_parts.extend( + [sp["token"] for sp in special_token_map if sp["insert_after_word_idx"] == global_word_idx] + ) + + # 2b. move trailing to next c‑unit + while text_parts and text_parts[-1].upper() == '': + carry_over_tokens.insert(0, text_parts.pop()) + + # 2c. move trailing or to next c‑unit + while text_parts and text_parts[-1].upper() in {'', ''}: + carry_over_tokens.insert(0, text_parts.pop()) + + # Create text_token (with special tokens) and text (only words) + text_token = ' '.join(text_parts) + text_words_only = ' '.join(current_words) + + cunit_data.append({ + "start": cunit_start_time, + "end": current_meta[-1]["end"], + "speaker": "", # Initialize as empty + "text_token": text_token, + "text": text_words_only, + "words": [ + { + "word": word["word"], + "start": word["start"], + "end": word["end"] + } for word in current_meta + ] + }) + + # reset for next C‑unit + cunit_start_idx = i + 1 + current_words, current_meta = [], [] + if cunit_start_idx < len(word_data): + cunit_start_time = word_data[cunit_start_idx]["start"] + + + # Wrap in segments structure to match original format + output_data = { + "segments": cunit_data + } + + with open(output_file, "w", encoding="utf-8") as f: + json.dump(output_data, f, indent=2, ensure_ascii=False) + + print(f"C-unit segmentation done → {output_file}") + return len(cunit_data), ignored_boundary_count + + + + + +def _build_special_ranges(special_token_map: List[Dict[str, Any]]): + rep_ranges, rev_ranges = [], [] + rep_start, rev_start = None, None + for sp in special_token_map: + tok = sp["token"].upper() + idx = sp["insert_after_word_idx"] + if tok == '': + rep_start = idx + 1 + elif tok == '' and rep_start is not None: + rep_ranges.append((rep_start, idx)) + rep_start = None + elif tok == '': + rev_start = idx + 1 + elif tok == '' and rev_start is not None: + rev_ranges.append((rev_start, idx)) + rev_start = None + return rep_ranges, rev_ranges diff --git a/segmentation/segmentation_SaT_cunit_12l_full.py b/segmentation/segmentation_SaT_cunit_12l_full.py new file mode 100644 index 0000000000000000000000000000000000000000..2c71cf3f94cbb2bebaa27a75c110389e1f648575 --- /dev/null +++ b/segmentation/segmentation_SaT_cunit_12l_full.py @@ -0,0 +1,131 @@ +# Segmentation function using wtpsplit SaT 12l full fine-tuned model + +from wtpsplit import SaT +from typing import List +import torch + + +# Global SaT model instance (lazy loading) +_sat_model = None + + +def get_sat_model(model_name: str = "sat-12l", device: str = "cuda") -> SaT: + """ + Get or create global SaT model instance + + Args: + model_name: Model name from segment-any-text + device: Device to run model on + + Returns: + SaT model instance + """ + global _sat_model + + if _sat_model is None: + print(f"Loading SaT 12l full fine-tuned model: {model_name}") + # Load model with full fine-tuned weights + _sat_model = SaT("models/SaT_cunit_with_maze/model_finetuned/sat-12l_full_ENNI") + + # Move to GPU if available and requested + if device == "cuda" and torch.cuda.is_available(): + _sat_model.half().to("cuda") + print(f"SaT 12l full model loaded on GPU") + else: + print(f"SaT 12l full model loaded on CPU") + + return _sat_model + + +# input is the list of words, no punctuation, all lower case, +# output is the list of label: 0 represent the correspounding word is not the last word of c-unit, +# 1 represent the correspounding word is the last word of c-unit +def segment_SaT(text: str) -> List[int]: + """ + Segment text using wtpsplit SaT 12l full fine-tuned model + + Args: + text: Input text to segment + + Returns: + List of labels: 0 = word is not the last word of c-unit, + 1 = word is the last word of c-unit + """ + if not text.strip(): + return [] + + # Clean text (consistent with segment_batchalign) + cleaned_text = text.lower().replace(".", "").replace(",", "") + words = cleaned_text.strip().split() + if not words: + return [] + + # Get SaT model + sat_model = get_sat_model() + + # Use SaT to split the text into sentences + try: + sentences = sat_model.split(cleaned_text) + + # Convert sentence boundaries to word-level labels + word_labels = [0] * len(words) + + # Track position in original text + word_idx = 0 + + for sentence in sentences: + sentence_words = sentence.strip().split() + + # Mark the last word of each sentence as segment boundary + if sentence_words: + # Find the last word of this sentence in the original word list + sentence_end_idx = word_idx + len(sentence_words) - 1 + + # Ensure we don't go out of bounds + if sentence_end_idx < len(words): + word_labels[sentence_end_idx] = 1 + + word_idx += len(sentence_words) + + return word_labels + + except Exception as e: + print(f"Error in SaT 12l full segmentation: {e}") + return [0] * len(words) + + + +# read ASR transcription file, segment to c-unit, save to new json file +def reorganize_transcription_c_unit(session_id, base_dir="session_data"): + return + + + +if __name__ == "__main__": + # Test the segmentation + test_text = "once a horse met elephant and then they saw a ball in a pool and then the horse tried to swim and get the ball they might be the same but they are doing something what do you think they are doing" + + print(f"Input text: {test_text}") + print(f"Words: {test_text.split()}") + + labels = segment_SaT(test_text) + print(f"Segment labels: {labels}") + + # Show segmented text + words = test_text.split() + segments = [] + current_segment = [] + + for word, label in zip(words, labels): + current_segment.append(word) + if label == 1: + segments.append(" ".join(current_segment)) + current_segment = [] + + # Add remaining words if any + if current_segment: + segments.append(" ".join(current_segment)) + + print("\nSegmented text:") + for i, segment in enumerate(segments, 1): + print(f"Segment {i}: {segment}") \ No newline at end of file diff --git a/segmentation/segmentation_SaT_cunit_12l_lora.py b/segmentation/segmentation_SaT_cunit_12l_lora.py new file mode 100644 index 0000000000000000000000000000000000000000..4f62b5187eff16de295a602b713fec50dee0802a --- /dev/null +++ b/segmentation/segmentation_SaT_cunit_12l_lora.py @@ -0,0 +1,132 @@ +# Segmentation function using wtpsplit SaT model + +from wtpsplit import SaT +from typing import List +import torch + + +# Global SaT model instance (lazy loading) +_sat_model = None + + +def get_sat_model(model_name: str = "sat-12l", device: str = "cuda") -> SaT: + """ + Get or create global SaT model instance + + Args: + model_name: Model name from segment-any-text + device: Device to run model on + + Returns: + SaT model instance + """ + global _sat_model + + if _sat_model is None: + print(f"Loading SaT model: {model_name}") + # _sat_model = SaT(model_name) + # load model with finetuned lora adapter + _sat_model = SaT("sat-12l", lora_path = "models/SaT_cunit_with_maze/model_finetuned/sat-12l_lora_ENNI/enni-salt/en") + + # Move to GPU if available and requested + if device == "cuda" and torch.cuda.is_available(): + _sat_model.half().to("cuda") + print(f"SaT model loaded on GPU") + else: + print(f"SaT model loaded on CPU") + + return _sat_model + + +# input is the list of words, no punctuation, all lower case, +# output is the list of label: 0 represent the correspounding word is not the last word of c-unit, +# 1 represent the correspounding word is the last word of c-unit +def segment_SaT(text: str) -> List[int]: + """ + Segment text using wtpsplit SaT model + + Args: + text: Input text to segment + + Returns: + List of labels: 0 = word is not the last word of c-unit, + 1 = word is the last word of c-unit + """ + if not text.strip(): + return [] + + # Clean text (consistent with segment_batchalign) + cleaned_text = text.lower().replace(".", "").replace(",", "") + words = cleaned_text.strip().split() + if not words: + return [] + + # Get SaT model + sat_model = get_sat_model() + + # Use SaT to split the text into sentences + try: + sentences = sat_model.split(cleaned_text) + + # Convert sentence boundaries to word-level labels + word_labels = [0] * len(words) + + # Track position in original text + word_idx = 0 + + for sentence in sentences: + sentence_words = sentence.strip().split() + + # Mark the last word of each sentence as segment boundary + if sentence_words: + # Find the last word of this sentence in the original word list + sentence_end_idx = word_idx + len(sentence_words) - 1 + + # Ensure we don't go out of bounds + if sentence_end_idx < len(words): + word_labels[sentence_end_idx] = 1 + + word_idx += len(sentence_words) + + return word_labels + + except Exception as e: + print(f"Error in SaT segmentation: {e}") + return [0] * len(words) + + + +# read ASR transcription file, segment to c-unit, save to new json file +def reorganize_transcription_c_unit(session_id, base_dir="session_data"): + return + + + +if __name__ == "__main__": + # Test the segmentation + test_text = "once a horse met elephant and then they saw a ball in a pool and then the horse tried to swim and get the ball they might be the same but they are doing something what do you think they are doing" + + print(f"Input text: {test_text}") + print(f"Words: {test_text.split()}") + + labels = segment_SaT(test_text) + print(f"Segment labels: {labels}") + + # Show segmented text + words = test_text.split() + segments = [] + current_segment = [] + + for word, label in zip(words, labels): + current_segment.append(word) + if label == 1: + segments.append(" ".join(current_segment)) + current_segment = [] + + # Add remaining words if any + if current_segment: + segments.append(" ".join(current_segment)) + + print("\nSegmented text:") + for i, segment in enumerate(segments, 1): + print(f"Segment {i}: {segment}") \ No newline at end of file diff --git a/segmentation/segmentation_SaT_cunit_3l_full.py b/segmentation/segmentation_SaT_cunit_3l_full.py new file mode 100644 index 0000000000000000000000000000000000000000..62e4a06ef6d6f553a18c7850403ac366d25ec1fe --- /dev/null +++ b/segmentation/segmentation_SaT_cunit_3l_full.py @@ -0,0 +1,170 @@ +# Segmentation function using wtpsplit SaT 3l full fine-tuned model + +from wtpsplit import SaT +from typing import List +import torch + + +# Global SaT model instance (lazy loading) +_sat_model = None + + +def get_sat_model(model_name: str = "sat-3l", device: str = "cuda") -> SaT: + """ + Get or create global SaT model instance + + Args: + model_name: Model name from segment-any-text + device: Device to run model on + + Returns: + SaT model instance + """ + global _sat_model + + if _sat_model is None: + print(f"Loading SaT 3l full fine-tuned model: {model_name}") + # Load model with full fine-tuned weights + # First load the base model, then load the fine-tuned weights + _sat_model = SaT("sat-3l") + # Load the fine-tuned weights + import torch + model_path = "models/SaT_cunit_with_maze/model_finetuned/sat-3l_full_ENNI/pytorch_model.bin" + state_dict = torch.load(model_path, map_location="cpu") + + # Remove "backbone." prefix from keys to match the expected model structure + new_state_dict = {} + for key, value in state_dict.items(): + if key.startswith("backbone."): + new_key = key[9:] # Remove "backbone." prefix + new_state_dict[new_key] = value + else: + new_state_dict[key] = value + + # Adjust model sizes to match the fine-tuned model + # Check word embeddings size + if "roberta.embeddings.word_embeddings.weight" in new_state_dict: + fine_tuned_vocab_size = new_state_dict["roberta.embeddings.word_embeddings.weight"].shape[0] + current_vocab_size = _sat_model.model.roberta.embeddings.word_embeddings.weight.shape[0] + if fine_tuned_vocab_size != current_vocab_size: + print(f"Resizing word embeddings from {current_vocab_size} to {fine_tuned_vocab_size}") + _sat_model.model.resize_token_embeddings(fine_tuned_vocab_size) + + # Check classifier size + if "classifier.weight" in new_state_dict: + fine_tuned_num_labels = new_state_dict["classifier.weight"].shape[0] + current_num_labels = _sat_model.model.classifier.weight.shape[0] + if fine_tuned_num_labels != current_num_labels: + print(f"Resizing classifier from {current_num_labels} to {fine_tuned_num_labels}") + # Resize classifier + import torch.nn as nn + _sat_model.model.classifier = nn.Linear( + _sat_model.model.classifier.in_features, + fine_tuned_num_labels + ) + _sat_model.model.num_labels = fine_tuned_num_labels + + _sat_model.model.load_state_dict(new_state_dict, strict=False) + + # Move to GPU if available and requested + if device == "cuda" and torch.cuda.is_available(): + _sat_model.half().to("cuda") + print(f"SaT 3l full model loaded on GPU") + else: + print(f"SaT 3l full model loaded on CPU") + + return _sat_model + + +# input is the list of words, no punctuation, all lower case, +# output is the list of label: 0 represent the correspounding word is not the last word of c-unit, +# 1 represent the correspounding word is the last word of c-unit +def segment_SaT(text: str) -> List[int]: + """ + Segment text using wtpsplit SaT 3l full fine-tuned model + + Args: + text: Input text to segment + + Returns: + List of labels: 0 = word is not the last word of c-unit, + 1 = word is the last word of c-unit + """ + if not text.strip(): + return [] + + # Clean text (consistent with segment_batchalign) + cleaned_text = text.lower().replace(".", "").replace(",", "") + words = cleaned_text.strip().split() + if not words: + return [] + + # Get SaT model + sat_model = get_sat_model() + + # Use SaT to split the text into sentences + try: + sentences = sat_model.split(cleaned_text) + + # Convert sentence boundaries to word-level labels + word_labels = [0] * len(words) + + # Track position in original text + word_idx = 0 + + for sentence in sentences: + sentence_words = sentence.strip().split() + + # Mark the last word of each sentence as segment boundary + if sentence_words: + # Find the last word of this sentence in the original word list + sentence_end_idx = word_idx + len(sentence_words) - 1 + + # Ensure we don't go out of bounds + if sentence_end_idx < len(words): + word_labels[sentence_end_idx] = 1 + + word_idx += len(sentence_words) + + return word_labels + + except Exception as e: + print(f"Error in SaT 3l full segmentation: {e}") + return [0] * len(words) + + + +# read ASR transcription file, segment to c-unit, save to new json file +def reorganize_transcription_c_unit(session_id, base_dir="session_data"): + return + + + +if __name__ == "__main__": + # Test the segmentation + test_text = "once a horse met elephant and then they saw a ball in a pool and then the horse tried to swim and get the ball they might be the same but they are doing something what do you think they are doing" + + print(f"Input text: {test_text}") + print(f"Words: {test_text.split()}") + + labels = segment_SaT(test_text) + print(f"Segment labels: {labels}") + + # Show segmented text + words = test_text.split() + segments = [] + current_segment = [] + + for word, label in zip(words, labels): + current_segment.append(word) + if label == 1: + segments.append(" ".join(current_segment)) + current_segment = [] + + # Add remaining words if any + if current_segment: + segments.append(" ".join(current_segment)) + + print("\nSegmented text:") + for i, segment in enumerate(segments, 1): + print(f"Segment {i}: {segment}") \ No newline at end of file diff --git a/segmentation/segmentation_SaT_cunit_3l_lora.py b/segmentation/segmentation_SaT_cunit_3l_lora.py new file mode 100644 index 0000000000000000000000000000000000000000..7bd8fc319386c7c426205df7942c0908743e6406 --- /dev/null +++ b/segmentation/segmentation_SaT_cunit_3l_lora.py @@ -0,0 +1,132 @@ +# Segmentation function using wtpsplit SaT model + +from wtpsplit import SaT +from typing import List +import torch + + +# Global SaT model instance (lazy loading) +_sat_model = None + + +def get_sat_model(model_name: str = "sat-3l", device: str = "cuda") -> SaT: + """ + Get or create global SaT model instance + + Args: + model_name: Model name from segment-any-text + device: Device to run model on + + Returns: + SaT model instance + """ + global _sat_model + + if _sat_model is None: + print(f"Loading SaT model: {model_name}") + # _sat_model = SaT(model_name) + # load model with finetuned lora adapter + _sat_model = SaT("sat-3l", lora_path = "models/SaT_cunit_with_maze/model_finetuned/sat-3l_lora_ENNI/enni-salt/en") + + # Move to GPU if available and requested + if device == "cuda" and torch.cuda.is_available(): + _sat_model.half().to("cuda") + print(f"SaT model loaded on GPU") + else: + print(f"SaT model loaded on CPU") + + return _sat_model + + +# input is the list of words, no punctuation, all lower case, +# output is the list of label: 0 represent the correspounding word is not the last word of c-unit, +# 1 represent the correspounding word is the last word of c-unit +def segment_SaT(text: str) -> List[int]: + """ + Segment text using wtpsplit SaT model + + Args: + text: Input text to segment + + Returns: + List of labels: 0 = word is not the last word of c-unit, + 1 = word is the last word of c-unit + """ + if not text.strip(): + return [] + + # Clean text (consistent with segment_batchalign) + cleaned_text = text.lower().replace(".", "").replace(",", "") + words = cleaned_text.strip().split() + if not words: + return [] + + # Get SaT model + sat_model = get_sat_model() + + # Use SaT to split the text into sentences + try: + sentences = sat_model.split(cleaned_text) + + # Convert sentence boundaries to word-level labels + word_labels = [0] * len(words) + + # Track position in original text + word_idx = 0 + + for sentence in sentences: + sentence_words = sentence.strip().split() + + # Mark the last word of each sentence as segment boundary + if sentence_words: + # Find the last word of this sentence in the original word list + sentence_end_idx = word_idx + len(sentence_words) - 1 + + # Ensure we don't go out of bounds + if sentence_end_idx < len(words): + word_labels[sentence_end_idx] = 1 + + word_idx += len(sentence_words) + + return word_labels + + except Exception as e: + print(f"Error in SaT segmentation: {e}") + return [0] * len(words) + + + +# read ASR transcription file, segment to c-unit, save to new json file +def reorganize_transcription_c_unit(session_id, base_dir="session_data"): + return + + + +if __name__ == "__main__": + # Test the segmentation + test_text = "once a horse met elephant and then they saw a ball in a pool and then the horse tried to swim and get the ball they might be the same but they are doing something what do you think they are doing" + + print(f"Input text: {test_text}") + print(f"Words: {test_text.split()}") + + labels = segment_SaT(test_text) + print(f"Segment labels: {labels}") + + # Show segmented text + words = test_text.split() + segments = [] + current_segment = [] + + for word, label in zip(words, labels): + current_segment.append(word) + if label == 1: + segments.append(" ".join(current_segment)) + current_segment = [] + + # Add remaining words if any + if current_segment: + segments.append(" ".join(current_segment)) + + print("\nSegmented text:") + for i, segment in enumerate(segments, 1): + print(f"Segment {i}: {segment}") \ No newline at end of file diff --git a/segmentation/segmentation_SaT_cunit_3l_no_shuffle_lora.py b/segmentation/segmentation_SaT_cunit_3l_no_shuffle_lora.py new file mode 100644 index 0000000000000000000000000000000000000000..69eeb1d9dcc462e848b27709924c0a120ef6ba33 --- /dev/null +++ b/segmentation/segmentation_SaT_cunit_3l_no_shuffle_lora.py @@ -0,0 +1,132 @@ +# Segmentation function using wtpsplit SaT model + +from wtpsplit import SaT +from typing import List +import torch + + +# Global SaT model instance (lazy loading) +_sat_model = None + + +def get_sat_model(model_name: str = "sat-3l", device: str = "cuda") -> SaT: + """ + Get or create global SaT model instance + + Args: + model_name: Model name from segment-any-text + device: Device to run model on + + Returns: + SaT model instance + """ + global _sat_model + + if _sat_model is None: + print(f"Loading SaT model: {model_name}") + # _sat_model = SaT(model_name) + # load model with finetuned lora adapter + _sat_model = SaT("sat-3l", lora_path = "models/SaT_cunit_with_maze/model_finetuned/sat-3l_no_shuffle_lora_ENNI/enni-salt/en") + + # Move to GPU if available and requested + if device == "cuda" and torch.cuda.is_available(): + _sat_model.half().to("cuda") + print(f"SaT model loaded on GPU") + else: + print(f"SaT model loaded on CPU") + + return _sat_model + + +# input is the list of words, no punctuation, all lower case, +# output is the list of label: 0 represent the correspounding word is not the last word of c-unit, +# 1 represent the correspounding word is the last word of c-unit +def segment_SaT(text: str) -> List[int]: + """ + Segment text using wtpsplit SaT model + + Args: + text: Input text to segment + + Returns: + List of labels: 0 = word is not the last word of c-unit, + 1 = word is the last word of c-unit + """ + if not text.strip(): + return [] + + # Clean text (consistent with segment_batchalign) + cleaned_text = text.lower().replace(".", "").replace(",", "") + words = cleaned_text.strip().split() + if not words: + return [] + + # Get SaT model + sat_model = get_sat_model() + + # Use SaT to split the text into sentences + try: + sentences = sat_model.split(cleaned_text) + + # Convert sentence boundaries to word-level labels + word_labels = [0] * len(words) + + # Track position in original text + word_idx = 0 + + for sentence in sentences: + sentence_words = sentence.strip().split() + + # Mark the last word of each sentence as segment boundary + if sentence_words: + # Find the last word of this sentence in the original word list + sentence_end_idx = word_idx + len(sentence_words) - 1 + + # Ensure we don't go out of bounds + if sentence_end_idx < len(words): + word_labels[sentence_end_idx] = 1 + + word_idx += len(sentence_words) + + return word_labels + + except Exception as e: + print(f"Error in SaT segmentation: {e}") + return [0] * len(words) + + + +# read ASR transcription file, segment to c-unit, save to new json file +def reorganize_transcription_c_unit(session_id, base_dir="session_data"): + return + + + +if __name__ == "__main__": + # Test the segmentation + test_text = "once a horse met elephant and then they saw a ball in a pool and then the horse tried to swim and get the ball they might be the same but they are doing something what do you think they are doing" + + print(f"Input text: {test_text}") + print(f"Words: {test_text.split()}") + + labels = segment_SaT(test_text) + print(f"Segment labels: {labels}") + + # Show segmented text + words = test_text.split() + segments = [] + current_segment = [] + + for word, label in zip(words, labels): + current_segment.append(word) + if label == 1: + segments.append(" ".join(current_segment)) + current_segment = [] + + # Add remaining words if any + if current_segment: + segments.append(" ".join(current_segment)) + + print("\nSegmented text:") + for i, segment in enumerate(segments, 1): + print(f"Segment {i}: {segment}") \ No newline at end of file diff --git a/segmentation/segmentation_SaT_cunit_3l_r32a64_lora.py b/segmentation/segmentation_SaT_cunit_3l_r32a64_lora.py new file mode 100644 index 0000000000000000000000000000000000000000..704d994c00c190a20e4f2f1b057e4e18bbbdcd67 --- /dev/null +++ b/segmentation/segmentation_SaT_cunit_3l_r32a64_lora.py @@ -0,0 +1,132 @@ +# Segmentation function using wtpsplit SaT model + +from wtpsplit import SaT +from typing import List +import torch + + +# Global SaT model instance (lazy loading) +_sat_model = None + + +def get_sat_model(model_name: str = "sat-3l", device: str = "cuda") -> SaT: + """ + Get or create global SaT model instance + + Args: + model_name: Model name from segment-any-text + device: Device to run model on + + Returns: + SaT model instance + """ + global _sat_model + + if _sat_model is None: + print(f"Loading SaT model: {model_name}") + # _sat_model = SaT(model_name) + # load model with finetuned lora adapter + _sat_model = SaT("sat-3l", lora_path = "models/SaT_cunit_with_maze/model_finetuned/sat-3l_r32a64_lora_ENNI/enni-salt/en") + + # Move to GPU if available and requested + if device == "cuda" and torch.cuda.is_available(): + _sat_model.half().to("cuda") + print(f"SaT model loaded on GPU") + else: + print(f"SaT model loaded on CPU") + + return _sat_model + + +# input is the list of words, no punctuation, all lower case, +# output is the list of label: 0 represent the correspounding word is not the last word of c-unit, +# 1 represent the correspounding word is the last word of c-unit +def segment_SaT(text: str) -> List[int]: + """ + Segment text using wtpsplit SaT model + + Args: + text: Input text to segment + + Returns: + List of labels: 0 = word is not the last word of c-unit, + 1 = word is the last word of c-unit + """ + if not text.strip(): + return [] + + # Clean text (consistent with segment_batchalign) + cleaned_text = text.lower().replace(".", "").replace(",", "") + words = cleaned_text.strip().split() + if not words: + return [] + + # Get SaT model + sat_model = get_sat_model() + + # Use SaT to split the text into sentences + try: + sentences = sat_model.split(cleaned_text) + + # Convert sentence boundaries to word-level labels + word_labels = [0] * len(words) + + # Track position in original text + word_idx = 0 + + for sentence in sentences: + sentence_words = sentence.strip().split() + + # Mark the last word of each sentence as segment boundary + if sentence_words: + # Find the last word of this sentence in the original word list + sentence_end_idx = word_idx + len(sentence_words) - 1 + + # Ensure we don't go out of bounds + if sentence_end_idx < len(words): + word_labels[sentence_end_idx] = 1 + + word_idx += len(sentence_words) + + return word_labels + + except Exception as e: + print(f"Error in SaT segmentation: {e}") + return [0] * len(words) + + + +# read ASR transcription file, segment to c-unit, save to new json file +def reorganize_transcription_c_unit(session_id, base_dir="session_data"): + return + + + +if __name__ == "__main__": + # Test the segmentation + test_text = "once a horse met elephant and then they saw a ball in a pool and then the horse tried to swim and get the ball they might be the same but they are doing something what do you think they are doing" + + print(f"Input text: {test_text}") + print(f"Words: {test_text.split()}") + + labels = segment_SaT(test_text) + print(f"Segment labels: {labels}") + + # Show segmented text + words = test_text.split() + segments = [] + current_segment = [] + + for word, label in zip(words, labels): + current_segment.append(word) + if label == 1: + segments.append(" ".join(current_segment)) + current_segment = [] + + # Add remaining words if any + if current_segment: + segments.append(" ".join(current_segment)) + + print("\nSegmented text:") + for i, segment in enumerate(segments, 1): + print(f"Segment {i}: {segment}") \ No newline at end of file diff --git a/segmentation/segmentation_SaT_cunit_3l_r64a128_lora.py b/segmentation/segmentation_SaT_cunit_3l_r64a128_lora.py new file mode 100644 index 0000000000000000000000000000000000000000..60bf68578ea1167ee1edb3facc29c8d51401a1c9 --- /dev/null +++ b/segmentation/segmentation_SaT_cunit_3l_r64a128_lora.py @@ -0,0 +1,132 @@ +# Segmentation function using wtpsplit SaT model + +from wtpsplit import SaT +from typing import List +import torch + + +# Global SaT model instance (lazy loading) +_sat_model = None + + +def get_sat_model(model_name: str = "sat-3l", device: str = "cuda") -> SaT: + """ + Get or create global SaT model instance + + Args: + model_name: Model name from segment-any-text + device: Device to run model on + + Returns: + SaT model instance + """ + global _sat_model + + if _sat_model is None: + print(f"Loading SaT model: {model_name}") + # _sat_model = SaT(model_name) + # load model with finetuned lora adapter + _sat_model = SaT("sat-3l", lora_path = "models/SaT_cunit_with_maze/model_finetuned/sat-3l_r64a128_lora_ENNI/enni-salt/en") + + # Move to GPU if available and requested + if device == "cuda" and torch.cuda.is_available(): + _sat_model.half().to("cuda") + print(f"SaT model loaded on GPU") + else: + print(f"SaT model loaded on CPU") + + return _sat_model + + +# input is the list of words, no punctuation, all lower case, +# output is the list of label: 0 represent the correspounding word is not the last word of c-unit, +# 1 represent the correspounding word is the last word of c-unit +def segment_SaT(text: str) -> List[int]: + """ + Segment text using wtpsplit SaT model + + Args: + text: Input text to segment + + Returns: + List of labels: 0 = word is not the last word of c-unit, + 1 = word is the last word of c-unit + """ + if not text.strip(): + return [] + + # Clean text (consistent with segment_batchalign) + cleaned_text = text.lower().replace(".", "").replace(",", "") + words = cleaned_text.strip().split() + if not words: + return [] + + # Get SaT model + sat_model = get_sat_model() + + # Use SaT to split the text into sentences + try: + sentences = sat_model.split(cleaned_text) + + # Convert sentence boundaries to word-level labels + word_labels = [0] * len(words) + + # Track position in original text + word_idx = 0 + + for sentence in sentences: + sentence_words = sentence.strip().split() + + # Mark the last word of each sentence as segment boundary + if sentence_words: + # Find the last word of this sentence in the original word list + sentence_end_idx = word_idx + len(sentence_words) - 1 + + # Ensure we don't go out of bounds + if sentence_end_idx < len(words): + word_labels[sentence_end_idx] = 1 + + word_idx += len(sentence_words) + + return word_labels + + except Exception as e: + print(f"Error in SaT segmentation: {e}") + return [0] * len(words) + + + +# read ASR transcription file, segment to c-unit, save to new json file +def reorganize_transcription_c_unit(session_id, base_dir="session_data"): + return + + + +if __name__ == "__main__": + # Test the segmentation + test_text = "once a horse met elephant and then they saw a ball in a pool and then the horse tried to swim and get the ball they might be the same but they are doing something what do you think they are doing" + + print(f"Input text: {test_text}") + print(f"Words: {test_text.split()}") + + labels = segment_SaT(test_text) + print(f"Segment labels: {labels}") + + # Show segmented text + words = test_text.split() + segments = [] + current_segment = [] + + for word, label in zip(words, labels): + current_segment.append(word) + if label == 1: + segments.append(" ".join(current_segment)) + current_segment = [] + + # Add remaining words if any + if current_segment: + segments.append(" ".join(current_segment)) + + print("\nSegmented text:") + for i, segment in enumerate(segments, 1): + print(f"Segment {i}: {segment}") \ No newline at end of file diff --git a/segmentation/segmentation_SaT_orig_3lsm.py b/segmentation/segmentation_SaT_orig_3lsm.py new file mode 100644 index 0000000000000000000000000000000000000000..2ea978139bc8a95cfcfd625785b0b8ecc3ae335b --- /dev/null +++ b/segmentation/segmentation_SaT_orig_3lsm.py @@ -0,0 +1,130 @@ +# Segmentation function using wtpsplit SaT model + +from wtpsplit import SaT +from typing import List +import torch + + +# Global SaT model instance (lazy loading) +_sat_model = None + + +def get_sat_model(model_name: str = "sat-3l-sm", device: str = "cuda") -> SaT: + """ + Get or create global SaT model instance + + Args: + model_name: Model name from segment-any-text + device: Device to run model on + + Returns: + SaT model instance + """ + global _sat_model + + if _sat_model is None: + print(f"Loading SaT model: {model_name}") + _sat_model = SaT(model_name) + + # Move to GPU if available and requested + if device == "cuda" and torch.cuda.is_available(): + _sat_model.half().to("cuda") + print(f"SaT model loaded on GPU") + else: + print(f"SaT model loaded on CPU") + + return _sat_model + + +# input is the list of words, no punctuation, all lower case, +# output is the list of label: 0 represent the correspounding word is not the last word of c-unit, +# 1 represent the correspounding word is the last word of c-unit +def segment_SaT(text: str) -> List[int]: + """ + Segment text using wtpsplit SaT model + + Args: + text: Input text to segment + + Returns: + List of labels: 0 = word is not the last word of c-unit, + 1 = word is the last word of c-unit + """ + if not text.strip(): + return [] + + # Clean text (consistent with segment_batchalign) + cleaned_text = text.lower().replace(".", "").replace(",", "") + words = cleaned_text.strip().split() + if not words: + return [] + + # Get SaT model + sat_model = get_sat_model() + + # Use SaT to split the text into sentences + try: + sentences = sat_model.split(cleaned_text) + + # Convert sentence boundaries to word-level labels + word_labels = [0] * len(words) + + # Track position in original text + word_idx = 0 + + for sentence in sentences: + sentence_words = sentence.strip().split() + + # Mark the last word of each sentence as segment boundary + if sentence_words: + # Find the last word of this sentence in the original word list + sentence_end_idx = word_idx + len(sentence_words) - 1 + + # Ensure we don't go out of bounds + if sentence_end_idx < len(words): + word_labels[sentence_end_idx] = 1 + + word_idx += len(sentence_words) + + return word_labels + + except Exception as e: + print(f"Error in SaT segmentation: {e}") + return [0] * len(words) + + + +# read ASR transcription file, segment to c-unit, save to new json file +def reorganize_transcription_c_unit(session_id, base_dir="session_data"): + return + + + +if __name__ == "__main__": + # Test the segmentation + test_text = "once a horse met elephant and then they saw a ball in a pool and then the horse tried to swim and get the ball they might be the same but they are doing something what do you think they are doing" + + print(f"Input text: {test_text}") + print(f"Words: {test_text.split()}") + + labels = segment_SaT(test_text) + print(f"Segment labels: {labels}") + + # Show segmented text + words = test_text.split() + segments = [] + current_segment = [] + + for word, label in zip(words, labels): + current_segment.append(word) + if label == 1: + segments.append(" ".join(current_segment)) + current_segment = [] + + # Add remaining words if any + if current_segment: + segments.append(" ".join(current_segment)) + + print("\nSegmented text:") + for i, segment in enumerate(segments, 1): + print(f"Segment {i}: {segment}") \ No newline at end of file diff --git a/segmentation/segmentation_batchalign.py b/segmentation/segmentation_batchalign.py new file mode 100644 index 0000000000000000000000000000000000000000..37472fa45dd94a90dee8f067e06000da50403d2c --- /dev/null +++ b/segmentation/segmentation_batchalign.py @@ -0,0 +1,111 @@ +# Segmentation function from Batchalign +import json +import os +import re +import torch +from transformers import AutoTokenizer, AutoModelForTokenClassification +from nltk.tokenize import sent_tokenize + +# input is the list of words, no punctuation, all lower case, +# output is the list of label: 0 represent the correspounding word is not the last word of c-unit, +# 1 represent the correspounding word is the last word of c-unit +def segment_batchalign(text: str) -> list[int]: + DEVICE = torch.device("cuda" if torch.cuda.is_available() else "cpu") + + # Load tokenizer and model locally + model_path = "talkbank/CHATUtterance-en" + tokenizer = AutoTokenizer.from_pretrained(model_path) + model = AutoModelForTokenClassification.from_pretrained(model_path) + model.to(DEVICE) + model.eval() + + text = text.lower().replace(".", "").replace(",", "") + words = text.split() + + # Tokenize + tokd = tokenizer([words], return_tensors="pt", is_split_into_words=True).to(DEVICE) + with torch.no_grad(): + logits = model(**tokd).logits + predictions = torch.argmax(logits, dim=2).squeeze(0).cpu().tolist() + + # Align predictions with words + word_ids = tokd.word_ids(0) + result_words = [] + seen = set() + + for i, word_idx in enumerate(word_ids): + if word_idx is None or word_idx in seen: + continue + seen.add(word_idx) + + pred = predictions[i] + word = words[word_idx] + + if pred == 1: + word = word[0].upper() + word[1:] + elif pred == 2: + word += "." + elif pred == 3: + word += "?" + elif pred == 4: + word += "!" + elif pred == 5: + word += "," + + result_words.append(word) + + # Convert tokens back to string and split into sentences + sentence = tokenizer.convert_tokens_to_string(result_words) + try: + sentences = sent_tokenize(sentence) + except LookupError: + import nltk + nltk.download('punkt') + sentences = sent_tokenize(sentence) + + # Convert sentences to boundary labels + boundaries = [] + for sent in sentences: + sent_word_count = len(sent.split()) + boundaries += [0] * (sent_word_count - 1) + [1] + + for i in range(1, len(boundaries)): + if boundaries[i - 1] == 1 and boundaries[i] == 1: + boundaries[i - 1] = 0 + + return boundaries + + + + + + + +if __name__ == "__main__": + # Test the segmentation + # test_text = "once a horse met elephant and then they saw a ball in a pool and then the horse tried to swim and get the ball they might be the same but they are doing something what do you think they are doing" + test_text = "sir can I have balloon and the sir say yes you can and he said five dollars that xxx and and he is like where is that they his tether is right there and and he said and the bunny said oopsies I do not have money and the doc and the and the and the bunny runned for the doctor an and he says doctor doctor I want a balloon here is the money and you can have the balloons both of them now they are happy the end" + print(f"Input text: {test_text}") + print(f"Words: {test_text.split()}") + + labels = segment_batchalign(test_text) + print(f"Segment labels: {labels}") + + # Show segmented text + words = test_text.split() + segments = [] + current_segment = [] + + for word, label in zip(words, labels): + current_segment.append(word) + if label == 1: + segments.append(" ".join(current_segment)) + current_segment = [] + + # Add remaining words if any + if current_segment: + segments.append(" ".join(current_segment)) + + print("\nSegmented text:") + for i, segment in enumerate(segments, 1): + print(f"Segment {i}: {segment}") \ No newline at end of file diff --git a/test_eval_segmentation.py b/test_eval_segmentation.py new file mode 100644 index 0000000000000000000000000000000000000000..dc92b92cef1329915ffa51ded825fa2e4b3f71d8 --- /dev/null +++ b/test_eval_segmentation.py @@ -0,0 +1,30 @@ +from segmentation import segment_batchalign + +chunk = [ + "once a horse met elephant and then they saw a ball", + "in a pool and then the horse tried to swim", + "and get the ball they might be the same", +] + +def clean_text(text): + import re + return re.sub(r"[^\w\s]", "", text.lower()).strip() + +word_sequence = [] +gt_label_sequence = [] + +for row in chunk: + cleaned = clean_text(row) + words = cleaned.split() + word_sequence.extend(words) + gt_label_sequence.extend([0] * (len(words) - 1) + [1]) + +input_text = " ".join(word_sequence) +predicted_labels = segment_batchalign(input_text) + +print("Word sequence:", input_text) +print("GT:", " ".join(map(str, gt_label_sequence))) +print("Pred:", " ".join(map(str, predicted_labels))) + + +print("Length match:", len(gt_label_sequence) == len(predicted_labels)) \ No newline at end of file diff --git a/transcription/.gitignore b/transcription/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..ff4f7525f0cd61e1cdcf585b7afb7fa049288fe1 --- /dev/null +++ b/transcription/.gitignore @@ -0,0 +1,3 @@ +maze_whisper/ +mazewhisper_hf/ +*.zip diff --git a/transcription/__init__.py b/transcription/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..586997d12dcde4c2dc25b8a9124db8b6ffe84e24 --- /dev/null +++ b/transcription/__init__.py @@ -0,0 +1 @@ +from .transcription import translate_audio_file \ No newline at end of file diff --git a/transcription/hf.py b/transcription/hf.py new file mode 100644 index 0000000000000000000000000000000000000000..46b8a8e3df78fe2e9abbb67dfd49991c0944a45a --- /dev/null +++ b/transcription/hf.py @@ -0,0 +1,7 @@ +from huggingface_hub import upload_folder + +upload_folder( + folder_path="mazewhisper_hf", + repo_id="Sven33/maze-whisper-3000", + commit_message="upload" +) diff --git a/transcription/test_hf.py b/transcription/test_hf.py new file mode 100644 index 0000000000000000000000000000000000000000..836f06fffce01a69b6a36239442561c5921c159e --- /dev/null +++ b/transcription/test_hf.py @@ -0,0 +1,27 @@ +import torch +import torchaudio +from transformers import WhisperProcessor, WhisperForConditionalGeneration + +repo_id = "Sven33/maze-whisper-3000" + +processor = WhisperProcessor.from_pretrained(repo_id) +model = WhisperForConditionalGeneration.from_pretrained(repo_id) + +device = "cuda" if torch.cuda.is_available() else "cpu" +model.to(device) + +speech_array, sampling_rate = torchaudio.load("../../data/test_audio/673_clip.wav") +if sampling_rate != 16000: + resampler = torchaudio.transforms.Resample(orig_freq=sampling_rate, new_freq=16000) + speech_array = resampler(speech_array) + +input_audio = speech_array[0].numpy() + +inputs = processor(input_audio, sampling_rate=16000, return_tensors="pt").input_features.to(device) + +predicted_ids = model.generate(inputs) + +transcription = processor.batch_decode(predicted_ids, skip_special_tokens=True)[0] + +print("Transcription:") +print(transcription) diff --git a/transcription/transcription.py b/transcription/transcription.py new file mode 100644 index 0000000000000000000000000000000000000000..ea6b2cfa672adb57f1ad9df68ddd3100f544ea09 --- /dev/null +++ b/transcription/transcription.py @@ -0,0 +1,375 @@ +import os +import json +import torch +import numpy as np +import soundfile as sf +import re +from pathlib import Path +from typing import Optional, Union, List, Dict, Any +from transformers import WhisperProcessor, WhisperForConditionalGeneration + +from .whisperx.audio import load_audio, SAMPLE_RATE +from .whisperx.vads import Pyannote, Silero +from .whisperx.types import TranscriptionResult, SingleSegment, AlignedTranscriptionResult +from .whisperx.alignment import load_align_model, align + + +class MazeWhisperModel: + def __init__(self, model_name: str = "Sven33/maze-whisper-3000", device: str = "cuda"): + self.device = device + self.model_name = model_name + + print(f"Loading Maze Whisper model: {model_name}") + self.processor = WhisperProcessor.from_pretrained(model_name) + self.model = WhisperForConditionalGeneration.from_pretrained(model_name).to(device) + self.tokenizer = self.processor.tokenizer + self.model.eval() + + def transcribe_segment(self, audio_segment: np.ndarray) -> str: + with torch.no_grad(): + inputs = self.processor( + audio_segment, + sampling_rate=SAMPLE_RATE, + return_tensors="pt" + ).to(self.device) + + generated_ids = self.model.generate( + inputs["input_features"], + max_length=448, + num_beams=5, + early_stopping=True, + use_cache=True + ) + + transcription = self.processor.batch_decode( + generated_ids, + skip_special_tokens=True + )[0] + + return transcription.strip() + + +class WhisperXPipeline: + def __init__(self, model_name: str = "Sven33/maze-whisper-3000", device: str = "cuda", + vad_method: str = "pyannote", chunk_size: int = 30, + enable_alignment: bool = True, align_language: str = "en"): + self.device = device + self.chunk_size = chunk_size + self.enable_alignment = enable_alignment + self.align_language = align_language + + self.whisper_model = MazeWhisperModel(model_name, device) + self._init_vad_model(vad_method) + + self.align_model = None + self.align_metadata = None + if enable_alignment: + self._init_alignment_model() + + def _init_vad_model(self, vad_method: str): + default_vad_options = { + "chunk_size": self.chunk_size, + "vad_onset": 0.500, + "vad_offset": 0.363 + } + + if vad_method == "silero": + self.vad_model = Silero(**default_vad_options) + elif vad_method == "pyannote": + device_vad = f'cuda:0' if self.device == 'cuda' else self.device + self.vad_model = Pyannote(torch.device(device_vad), **default_vad_options) + else: + raise ValueError(f"Invalid vad_method: {vad_method}") + + def _init_alignment_model(self): + try: + print(f"Loading alignment model for language: {self.align_language}") + self.align_model, self.align_metadata = load_align_model( + self.align_language, + self.device + ) + except Exception as e: + print(f"Warning: Could not load alignment model: {e}") + print("Continuing without forced alignment...") + self.enable_alignment = False + + def transcribe(self, audio: Union[str, np.ndarray], verbose: bool = False) -> Union[TranscriptionResult, AlignedTranscriptionResult]: + if isinstance(audio, str): + audio_path = audio + audio = load_audio(audio) + else: + audio_path = None + + if hasattr(self.vad_model, 'preprocess_audio'): + waveform = self.vad_model.preprocess_audio(audio) + else: + waveform = torch.from_numpy(audio).unsqueeze(0) + + vad_segments = self.vad_model({"waveform": waveform, "sample_rate": SAMPLE_RATE}) + + if hasattr(self.vad_model, 'merge_chunks'): + vad_segments = self.vad_model.merge_chunks( + vad_segments, + self.chunk_size, + onset=0.500, + offset=0.363, + ) + + segments: List[SingleSegment] = [] + + print(f"Processing {len(vad_segments)} segments...") + + for idx, seg in enumerate(vad_segments): + start_sample = int(seg['start'] * SAMPLE_RATE) + end_sample = int(seg['end'] * SAMPLE_RATE) + audio_segment = audio[start_sample:end_sample] + + text = self.whisper_model.transcribe_segment(audio_segment) + + if not text.strip() or len(text.strip()) < 2: + if verbose: + print(f"Skipping empty/short segment {idx+1}: [{seg['start']:.3f}s - {seg['end']:.3f}s]") + continue + + if verbose: + print(f"Segment {idx+1}/{len(vad_segments)}: [{seg['start']:.3f}s - {seg['end']:.3f}s] {text}") + + segments.append({ + "text": text, + "start": round(seg['start'], 3), + "end": round(seg['end'], 3) + }) + + result = {"segments": segments, "language": self.align_language} + + if self.enable_alignment and self.align_model is not None and len(segments) > 0: + print("Preparing segments for forced alignment...") + + cleaned_segments = [] + for segment in segments: + original_text = segment["text"] + cleaned_text = clean_text_for_alignment(original_text) + + if cleaned_text.strip() and len(cleaned_text.strip()) >= 2: + cleaned_segment = { + "text": cleaned_text, + "start": segment["start"], + "end": segment["end"] + } + cleaned_segments.append({ + "cleaned": cleaned_segment, + "original": segment + }) + + if len(cleaned_segments) > 0: + print(f"Performing forced alignment on {len(cleaned_segments)} segments...") + try: + segments_for_alignment = [item["cleaned"] for item in cleaned_segments] + + aligned_result = align( + segments_for_alignment, + self.align_model, + self.align_metadata, + audio_path if audio_path else audio, + self.device, + interpolate_method="nearest", + return_char_alignments=False, + print_progress=verbose + ) + + final_segments = [] + aligned_segments = aligned_result.get("segments", []) + + for i, aligned_seg in enumerate(aligned_segments): + if i < len(cleaned_segments): + original_segment = cleaned_segments[i]["original"] + + final_segment = { + "text": original_segment["text"], + "start": aligned_seg["start"], + "end": aligned_seg["end"], + "words": aligned_seg.get("words", []) + } + + if "words" in final_segment and final_segment["words"]: + final_segment["words"] = fix_word_alignment( + final_segment["words"], + original_segment["text"], + cleaned_segments[i]["cleaned"]["text"] + ) + + final_segments.append(final_segment) + + final_result = { + "segments": final_segments, + "word_segments": [], + "language": self.align_language + } + + for segment in final_segments: + if "words" in segment: + final_result["word_segments"].extend(segment["words"]) + + print(f"Alignment completed! {len(final_segments)} segments with {len(final_result['word_segments'])} words") + return final_result + + except Exception as e: + print(f"Warning: Alignment failed: {e}") + print("Returning transcription without alignment...") + else: + print("Warning: No segments remaining after cleaning for alignment") + + return result + + +def clean_text_for_alignment(text: str) -> str: + cleaned_text = re.sub(r'<[^>]*>', '', text) + cleaned_text = re.sub(r'[\[\]{}]', '', cleaned_text) + cleaned_text = re.sub(r'[^\w\s\.\,\?\!\-\']', '', cleaned_text) + cleaned_text = cleaned_text.replace('.', '') + cleaned_text = re.sub(r'\s+', ' ', cleaned_text).strip() + return cleaned_text + + +def fix_word_alignment(words: List[Dict], original_text: str, cleaned_text: str) -> List[Dict]: + try: + original_tokens = original_text.split() + cleaned_tokens = cleaned_text.split() + + if len(words) == 0 or len(cleaned_tokens) == 0: + return words + + if abs(len(original_tokens) - len(cleaned_tokens)) <= 1: + return words + + # print(f"Warning: Word alignment might be imperfect due to text cleaning") + return words + + except Exception as e: + print(f"Warning: Could not fix word alignment: {e}") + return words + + +def generate_session_id() -> str: + session_data_dir = Path("./session_data") + + if not session_data_dir.exists(): + return "000001" + + existing_sessions = [] + for item in session_data_dir.iterdir(): + if item.is_dir() and item.name.isdigit() and len(item.name) == 6: + existing_sessions.append(int(item.name)) + + if not existing_sessions: + return "000001" + + next_id = max(existing_sessions) + 1 + return f"{next_id:06d}" + + + + +def translate_audio_file(model: str = "mazeWhisper", audio_path: str = "", device: str = "cuda", + enable_alignment: bool = True, align_language: str = "en", original_filename: str = None) -> Dict[str, Any]: + if model != "mazeWhisper": + raise ValueError("Currently only 'mazeWhisper' model is supported") + + if not os.path.exists(audio_path): + raise FileNotFoundError(f"Audio file not found: {audio_path}") + + session_id = generate_session_id() + session_data_dir = Path("./session_data") + session_dir = session_data_dir / session_id + session_dir.mkdir(parents=True, exist_ok=True) + + print(f"Session ID: {session_id}") + print(f"Session directory: {session_dir}") + + try: + pipeline = WhisperXPipeline( + model_name="Sven33/maze-whisper-3000", + device=device, + vad_method="pyannote", + chunk_size=10, + enable_alignment=enable_alignment, + align_language=align_language + ) + + audio = load_audio(audio_path) + + print("Starting transcription...") + result = pipeline.transcribe(audio_path, verbose=True) + + has_word_timestamps = ( + isinstance(result, dict) and + "segments" in result and + len(result["segments"]) > 0 and + "words" in result["segments"][0] + ) + + formatted_segments = [] + for segment in result["segments"]: + formatted_segment = { + "start": segment["start"], + "end": segment["end"], + "speaker": "", # Initialize as empty + "text": segment["text"], + "words": [] + } + + if "words" in segment and segment["words"]: + for word_info in segment["words"]: + formatted_word = { + "word": word_info["word"], + "start": word_info["start"], + "end": word_info["end"] + } + formatted_segment["words"].append(formatted_word) + + formatted_segments.append(formatted_segment) + + # Create final output structure with segments wrapper + filename = original_filename if original_filename else os.path.basename(audio_path) + output_data = { + "filename": filename, + "segments": formatted_segments + } + + json_path = session_dir / "transcription.json" + with open(json_path, 'w', encoding='utf-8') as f: + json.dump(output_data, f, ensure_ascii=False, indent=2) + + print(f"Transcription saved: {json_path}") + + if has_word_timestamps: + total_words = sum(len(seg.get("words", [])) for seg in result["segments"]) + print(f"Forced alignment completed! Total words with timestamps: {total_words}") + elif enable_alignment: + print("Forced alignment was enabled but failed - only segment-level timestamps available") + else: + print("Forced alignment disabled - only segment-level timestamps available") + + + print(f"Transcription complete! Session: {session_id}") + + result_data = { + "session_id": session_id, + "audio_path": audio_path, + "model": "Sven33/maze-whisper-3000", + "device": device, + "alignment_enabled": enable_alignment, + "has_word_timestamps": has_word_timestamps, + "align_language": align_language, + "transcription": result + } + + return result_data, session_id + + except Exception as e: + print(f"Error during transcription: {str(e)}") + raise + + +if __name__ == "__main__": + print("use main_socket to test transcription model") \ No newline at end of file diff --git a/transcription/whisperx/SubtitlesProcessor.py b/transcription/whisperx/SubtitlesProcessor.py new file mode 100644 index 0000000000000000000000000000000000000000..1a50ec801a4decdccf5b58e2101e65a755a36e2a --- /dev/null +++ b/transcription/whisperx/SubtitlesProcessor.py @@ -0,0 +1,226 @@ +import math +from whisperx.conjunctions import get_conjunctions, get_comma + +def normal_round(n): + if n - math.floor(n) < 0.5: + return math.floor(n) + return math.ceil(n) + + +def format_timestamp(seconds: float, is_vtt: bool = False): + + assert seconds >= 0, "non-negative timestamp expected" + milliseconds = round(seconds * 1000.0) + + hours = milliseconds // 3_600_000 + milliseconds -= hours * 3_600_000 + + minutes = milliseconds // 60_000 + milliseconds -= minutes * 60_000 + + seconds = milliseconds // 1_000 + milliseconds -= seconds * 1_000 + + separator = '.' if is_vtt else ',' + + hours_marker = f"{hours:02d}:" + return ( + f"{hours_marker}{minutes:02d}:{seconds:02d}{separator}{milliseconds:03d}" + ) + + + +class SubtitlesProcessor: + def __init__(self, segments, lang, max_line_length = 45, min_char_length_splitter = 30, is_vtt = False): + self.comma = get_comma(lang) + self.conjunctions = set(get_conjunctions(lang)) + self.segments = segments + self.lang = lang + self.max_line_length = max_line_length + self.min_char_length_splitter = min_char_length_splitter + self.is_vtt = is_vtt + complex_script_languages = ['th', 'lo', 'my', 'km', 'am', 'ko', 'ja', 'zh', 'ti', 'ta', 'te', 'kn', 'ml', 'hi', 'ne', 'mr', 'ar', 'fa', 'ur', 'ka'] + if self.lang in complex_script_languages: + self.max_line_length = 30 + self.min_char_length_splitter = 20 + + def estimate_timestamp_for_word(self, words, i, next_segment_start_time=None): + k = 0.25 + has_prev_end = i > 0 and 'end' in words[i - 1] + has_next_start = i < len(words) - 1 and 'start' in words[i + 1] + + if has_prev_end: + words[i]['start'] = words[i - 1]['end'] + if has_next_start: + words[i]['end'] = words[i + 1]['start'] + else: + if next_segment_start_time: + words[i]['end'] = next_segment_start_time if next_segment_start_time - words[i - 1]['end'] <= 1 else next_segment_start_time - 0.5 + else: + words[i]['end'] = words[i]['start'] + len(words[i]['word']) * k + + elif has_next_start: + words[i]['start'] = words[i + 1]['start'] - len(words[i]['word']) * k + words[i]['end'] = words[i + 1]['start'] + + else: + if next_segment_start_time: + words[i]['start'] = next_segment_start_time - 1 + words[i]['end'] = next_segment_start_time - 0.5 + else: + words[i]['start'] = 0 + words[i]['end'] = 0 + + + + def process_segments(self, advanced_splitting=True): + subtitles = [] + for i, segment in enumerate(self.segments): + next_segment_start_time = self.segments[i + 1]['start'] if i + 1 < len(self.segments) else None + + if advanced_splitting: + + split_points = self.determine_advanced_split_points(segment, next_segment_start_time) + subtitles.extend(self.generate_subtitles_from_split_points(segment, split_points, next_segment_start_time)) + else: + words = segment['words'] + for i, word in enumerate(words): + if 'start' not in word or 'end' not in word: + self.estimate_timestamp_for_word(words, i, next_segment_start_time) + + subtitles.append({ + 'start': segment['start'], + 'end': segment['end'], + 'text': segment['text'] + }) + + return subtitles + + def determine_advanced_split_points(self, segment, next_segment_start_time=None): + split_points = [] + last_split_point = 0 + char_count = 0 + + words = segment.get('words', segment['text'].split()) + add_space = 0 if self.lang in ['zh', 'ja'] else 1 + + total_char_count = sum(len(word['word']) if isinstance(word, dict) else len(word) + add_space for word in words) + char_count_after = total_char_count + + for i, word in enumerate(words): + word_text = word['word'] if isinstance(word, dict) else word + word_length = len(word_text) + add_space + char_count += word_length + char_count_after -= word_length + + char_count_before = char_count - word_length + + if isinstance(word, dict) and ('start' not in word or 'end' not in word): + self.estimate_timestamp_for_word(words, i, next_segment_start_time) + + if char_count >= self.max_line_length: + midpoint = normal_round((last_split_point + i) / 2) + if char_count_before >= self.min_char_length_splitter: + split_points.append(midpoint) + last_split_point = midpoint + 1 + char_count = sum(len(words[j]['word']) if isinstance(words[j], dict) else len(words[j]) + add_space for j in range(last_split_point, i + 1)) + + elif word_text.endswith(self.comma) and char_count_before >= self.min_char_length_splitter and char_count_after >= self.min_char_length_splitter: + split_points.append(i) + last_split_point = i + 1 + char_count = 0 + + elif word_text.lower() in self.conjunctions and char_count_before >= self.min_char_length_splitter and char_count_after >= self.min_char_length_splitter: + split_points.append(i - 1) + last_split_point = i + char_count = word_length + + return split_points + + + def generate_subtitles_from_split_points(self, segment, split_points, next_start_time=None): + subtitles = [] + + words = segment.get('words', segment['text'].split()) + total_word_count = len(words) + total_time = segment['end'] - segment['start'] + elapsed_time = segment['start'] + prefix = ' ' if self.lang not in ['zh', 'ja'] else '' + start_idx = 0 + for split_point in split_points: + + fragment_words = words[start_idx:split_point + 1] + current_word_count = len(fragment_words) + + + if isinstance(fragment_words[0], dict): + start_time = fragment_words[0]['start'] + end_time = fragment_words[-1]['end'] + next_start_time_for_word = words[split_point + 1]['start'] if split_point + 1 < len(words) else None + if next_start_time_for_word and (next_start_time_for_word - end_time) <= 0.8: + end_time = next_start_time_for_word + else: + fragment = prefix.join(fragment_words).strip() + current_duration = (current_word_count / total_word_count) * total_time + start_time = elapsed_time + end_time = elapsed_time + current_duration + elapsed_time += current_duration + + + subtitles.append({ + 'start': start_time, + 'end': end_time, + 'text': fragment if not isinstance(fragment_words[0], dict) else prefix.join(word['word'] for word in fragment_words) + }) + + start_idx = split_point + 1 + + # Handle the last fragment + if start_idx < len(words): + fragment_words = words[start_idx:] + current_word_count = len(fragment_words) + + if isinstance(fragment_words[0], dict): + start_time = fragment_words[0]['start'] + end_time = fragment_words[-1]['end'] + else: + fragment = prefix.join(fragment_words).strip() + current_duration = (current_word_count / total_word_count) * total_time + start_time = elapsed_time + end_time = elapsed_time + current_duration + + if next_start_time and (next_start_time - end_time) <= 0.8: + end_time = next_start_time + + subtitles.append({ + 'start': start_time, + 'end': end_time if end_time is not None else segment['end'], + 'text': fragment if not isinstance(fragment_words[0], dict) else prefix.join(word['word'] for word in fragment_words) + }) + + return subtitles + + + + def save(self, filename="subtitles.srt", advanced_splitting=True): + + subtitles = self.process_segments(advanced_splitting) + + def write_subtitle(file, idx, start_time, end_time, text): + + file.write(f"{idx}\n") + file.write(f"{start_time} --> {end_time}\n") + file.write(text + "\n\n") + + with open(filename, 'w', encoding='utf-8') as file: + if self.is_vtt: + file.write("WEBVTT\n\n") + + if advanced_splitting: + for idx, subtitle in enumerate(subtitles, 1): + start_time = format_timestamp(subtitle['start'], self.is_vtt) + end_time = format_timestamp(subtitle['end'], self.is_vtt) + text = subtitle['text'].strip() + write_subtitle(file, idx, start_time, end_time, text) + + return len(subtitles) \ No newline at end of file diff --git a/transcription/whisperx/__init__.py b/transcription/whisperx/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..3553cb6c6849e6907ecf10af918be19aeaeafe25 --- /dev/null +++ b/transcription/whisperx/__init__.py @@ -0,0 +1,31 @@ +import importlib + + +def _lazy_import(name): + module = importlib.import_module(f".{name}", package=__name__) + return module + + +def load_align_model(*args, **kwargs): + alignment = _lazy_import("alignment") + return alignment.load_align_model(*args, **kwargs) + + +def align(*args, **kwargs): + alignment = _lazy_import("alignment") + return alignment.align(*args, **kwargs) + + +def load_model(*args, **kwargs): + asr = _lazy_import("asr") + return asr.load_model(*args, **kwargs) + + +def load_audio(*args, **kwargs): + audio = _lazy_import("audio") + return audio.load_audio(*args, **kwargs) + + +def assign_word_speakers(*args, **kwargs): + diarize = _lazy_import("diarize") + return diarize.assign_word_speakers(*args, **kwargs) diff --git a/transcription/whisperx/__main__.py b/transcription/whisperx/__main__.py new file mode 100644 index 0000000000000000000000000000000000000000..d1fd16de096eb0a5428791c859d0c6cf2da113f5 --- /dev/null +++ b/transcription/whisperx/__main__.py @@ -0,0 +1,89 @@ +import argparse +import importlib.metadata +import platform + +import torch + +from whisperx.utils import (LANGUAGES, TO_LANGUAGE_CODE, optional_float, + optional_int, str2bool) + + +def cli(): + # fmt: off + parser = argparse.ArgumentParser(formatter_class=argparse.ArgumentDefaultsHelpFormatter) + parser.add_argument("audio", nargs="+", type=str, help="audio file(s) to transcribe") + parser.add_argument("--model", default="small", help="name of the Whisper model to use") + parser.add_argument("--model_cache_only", type=str2bool, default=False, help="If True, will not attempt to download models, instead using cached models from --model_dir") + parser.add_argument("--model_dir", type=str, default=None, help="the path to save model files; uses ~/.cache/whisper by default") + parser.add_argument("--device", default="cuda" if torch.cuda.is_available() else "cpu", help="device to use for PyTorch inference") + parser.add_argument("--device_index", default=0, type=int, help="device index to use for FasterWhisper inference") + parser.add_argument("--batch_size", default=8, type=int, help="the preferred batch size for inference") + parser.add_argument("--compute_type", default="float16", type=str, choices=["float16", "float32", "int8"], help="compute type for computation") + + parser.add_argument("--output_dir", "-o", type=str, default=".", help="directory to save the outputs") + parser.add_argument("--output_format", "-f", type=str, default="all", choices=["all", "srt", "vtt", "txt", "tsv", "json", "aud"], help="format of the output file; if not specified, all available formats will be produced") + parser.add_argument("--verbose", type=str2bool, default=True, help="whether to print out the progress and debug messages") + + parser.add_argument("--task", type=str, default="transcribe", choices=["transcribe", "translate"], help="whether to perform X->X speech recognition ('transcribe') or X->English translation ('translate')") + parser.add_argument("--language", type=str, default=None, choices=sorted(LANGUAGES.keys()) + sorted([k.title() for k in TO_LANGUAGE_CODE.keys()]), help="language spoken in the audio, specify None to perform language detection") + + # alignment params + parser.add_argument("--align_model", default=None, help="Name of phoneme-level ASR model to do alignment") + parser.add_argument("--interpolate_method", default="nearest", choices=["nearest", "linear", "ignore"], help="For word .srt, method to assign timestamps to non-aligned words, or merge them into neighbouring.") + parser.add_argument("--no_align", action='store_true', help="Do not perform phoneme alignment") + parser.add_argument("--return_char_alignments", action='store_true', help="Return character-level alignments in the output json file") + + # vad params + parser.add_argument("--vad_method", type=str, default="pyannote", choices=["pyannote", "silero"], help="VAD method to be used") + parser.add_argument("--vad_onset", type=float, default=0.500, help="Onset threshold for VAD (see pyannote.audio), reduce this if speech is not being detected") + parser.add_argument("--vad_offset", type=float, default=0.363, help="Offset threshold for VAD (see pyannote.audio), reduce this if speech is not being detected.") + parser.add_argument("--chunk_size", type=int, default=30, help="Chunk size for merging VAD segments. Default is 30, reduce this if the chunk is too long.") + + # diarization params + parser.add_argument("--diarize", action="store_true", help="Apply diarization to assign speaker labels to each segment/word") + parser.add_argument("--min_speakers", default=None, type=int, help="Minimum number of speakers to in audio file") + parser.add_argument("--max_speakers", default=None, type=int, help="Maximum number of speakers to in audio file") + parser.add_argument("--diarize_model", default="pyannote/speaker-diarization-3.1", type=str, help="Name of the speaker diarization model to use") + parser.add_argument("--speaker_embeddings", action="store_true", help="Include speaker embeddings in JSON output (only works with --diarize)") + + parser.add_argument("--temperature", type=float, default=0, help="temperature to use for sampling") + parser.add_argument("--best_of", type=optional_int, default=5, help="number of candidates when sampling with non-zero temperature") + parser.add_argument("--beam_size", type=optional_int, default=5, help="number of beams in beam search, only applicable when temperature is zero") + parser.add_argument("--patience", type=float, default=1.0, help="optional patience value to use in beam decoding, as in https://arxiv.org/abs/2204.05424, the default (1.0) is equivalent to conventional beam search") + parser.add_argument("--length_penalty", type=float, default=1.0, help="optional token length penalty coefficient (alpha) as in https://arxiv.org/abs/1609.08144, uses simple length normalization by default") + + parser.add_argument("--suppress_tokens", type=str, default="-1", help="comma-separated list of token ids to suppress during sampling; '-1' will suppress most special characters except common punctuations") + parser.add_argument("--suppress_numerals", action="store_true", help="whether to suppress numeric symbols and currency symbols during sampling, since wav2vec2 cannot align them correctly") + + parser.add_argument("--initial_prompt", type=str, default=None, help="optional text to provide as a prompt for the first window.") + parser.add_argument("--condition_on_previous_text", type=str2bool, default=False, help="if True, provide the previous output of the model as a prompt for the next window; disabling may make the text inconsistent across windows, but the model becomes less prone to getting stuck in a failure loop") + parser.add_argument("--fp16", type=str2bool, default=True, help="whether to perform inference in fp16; True by default") + + parser.add_argument("--temperature_increment_on_fallback", type=optional_float, default=0.2, help="temperature to increase when falling back when the decoding fails to meet either of the thresholds below") + parser.add_argument("--compression_ratio_threshold", type=optional_float, default=2.4, help="if the gzip compression ratio is higher than this value, treat the decoding as failed") + parser.add_argument("--logprob_threshold", type=optional_float, default=-1.0, help="if the average log probability is lower than this value, treat the decoding as failed") + parser.add_argument("--no_speech_threshold", type=optional_float, default=0.6, help="if the probability of the <|nospeech|> token is higher than this value AND the decoding has failed due to `logprob_threshold`, consider the segment as silence") + + parser.add_argument("--max_line_width", type=optional_int, default=None, help="(not possible with --no_align) the maximum number of characters in a line before breaking the line") + parser.add_argument("--max_line_count", type=optional_int, default=None, help="(not possible with --no_align) the maximum number of lines in a segment") + parser.add_argument("--highlight_words", type=str2bool, default=False, help="(not possible with --no_align) underline each word as it is spoken in srt and vtt") + parser.add_argument("--segment_resolution", type=str, default="sentence", choices=["sentence", "chunk"], help="(not possible with --no_align) the maximum number of characters in a line before breaking the line") + + parser.add_argument("--threads", type=optional_int, default=0, help="number of threads used by torch for CPU inference; supercedes MKL_NUM_THREADS/OMP_NUM_THREADS") + + parser.add_argument("--hf_token", type=str, default=None, help="Hugging Face Access Token to access PyAnnote gated models") + + parser.add_argument("--print_progress", type=str2bool, default = False, help = "if True, progress will be printed in transcribe() and align() methods.") + parser.add_argument("--version", "-V", action="version", version=f"%(prog)s {importlib.metadata.version('whisperx')}",help="Show whisperx version information and exit") + parser.add_argument("--python-version", "-P", action="version", version=f"Python {platform.python_version()} ({platform.python_implementation()})",help="Show python version information and exit") + # fmt: on + + args = parser.parse_args().__dict__ + + from whisperx.transcribe import transcribe_task + + transcribe_task(args, parser) + + +if __name__ == "__main__": + cli() diff --git a/transcription/whisperx/alignment.py b/transcription/whisperx/alignment.py new file mode 100644 index 0000000000000000000000000000000000000000..b49b3f0fca0af1056b5d2e86124fc4381520f373 --- /dev/null +++ b/transcription/whisperx/alignment.py @@ -0,0 +1,629 @@ +""" +Forced Alignment with Whisper +C. Max Bain +""" +import math + +from dataclasses import dataclass +from typing import Iterable, Optional, Union, List + +import numpy as np +import pandas as pd +import torch +import torchaudio +from transformers import Wav2Vec2ForCTC, Wav2Vec2Processor + +from .audio import SAMPLE_RATE, load_audio +from .utils import interpolate_nans +from .types import ( + AlignedTranscriptionResult, + SingleSegment, + SingleAlignedSegment, + SingleWordSegment, + SegmentData, +) +from nltk.tokenize.punkt import PunktSentenceTokenizer, PunktParameters + +PUNKT_ABBREVIATIONS = ['dr', 'vs', 'mr', 'mrs', 'prof'] + +LANGUAGES_WITHOUT_SPACES = ["ja", "zh"] + +DEFAULT_ALIGN_MODELS_TORCH = { + "en": "WAV2VEC2_ASR_BASE_960H", + "fr": "VOXPOPULI_ASR_BASE_10K_FR", + "de": "VOXPOPULI_ASR_BASE_10K_DE", + "es": "VOXPOPULI_ASR_BASE_10K_ES", + "it": "VOXPOPULI_ASR_BASE_10K_IT", +} + +DEFAULT_ALIGN_MODELS_HF = { + "ja": "jonatasgrosman/wav2vec2-large-xlsr-53-japanese", + "zh": "jonatasgrosman/wav2vec2-large-xlsr-53-chinese-zh-cn", + "nl": "jonatasgrosman/wav2vec2-large-xlsr-53-dutch", + "uk": "Yehor/wav2vec2-xls-r-300m-uk-with-small-lm", + "pt": "jonatasgrosman/wav2vec2-large-xlsr-53-portuguese", + "ar": "jonatasgrosman/wav2vec2-large-xlsr-53-arabic", + "cs": "comodoro/wav2vec2-xls-r-300m-cs-250", + "ru": "jonatasgrosman/wav2vec2-large-xlsr-53-russian", + "pl": "jonatasgrosman/wav2vec2-large-xlsr-53-polish", + "hu": "jonatasgrosman/wav2vec2-large-xlsr-53-hungarian", + "fi": "jonatasgrosman/wav2vec2-large-xlsr-53-finnish", + "fa": "jonatasgrosman/wav2vec2-large-xlsr-53-persian", + "el": "jonatasgrosman/wav2vec2-large-xlsr-53-greek", + "tr": "mpoyraz/wav2vec2-xls-r-300m-cv7-turkish", + "da": "saattrupdan/wav2vec2-xls-r-300m-ftspeech", + "he": "imvladikon/wav2vec2-xls-r-300m-hebrew", + "vi": 'nguyenvulebinh/wav2vec2-base-vi', + "ko": "kresnik/wav2vec2-large-xlsr-korean", + "ur": "kingabzpro/wav2vec2-large-xls-r-300m-Urdu", + "te": "anuragshas/wav2vec2-large-xlsr-53-telugu", + "hi": "theainerd/Wav2Vec2-large-xlsr-hindi", + "ca": "softcatala/wav2vec2-large-xlsr-catala", + "ml": "gvs/wav2vec2-large-xlsr-malayalam", + "no": "NbAiLab/nb-wav2vec2-1b-bokmaal-v2", + "nn": "NbAiLab/nb-wav2vec2-1b-nynorsk", + "sk": "comodoro/wav2vec2-xls-r-300m-sk-cv8", + "sl": "anton-l/wav2vec2-large-xlsr-53-slovenian", + "hr": "classla/wav2vec2-xls-r-parlaspeech-hr", + "ro": "gigant/romanian-wav2vec2", + "eu": "stefan-it/wav2vec2-large-xlsr-53-basque", + "gl": "ifrz/wav2vec2-large-xlsr-galician", + "ka": "xsway/wav2vec2-large-xlsr-georgian", + "lv": "jimregan/wav2vec2-large-xlsr-latvian-cv", + "tl": "Khalsuu/filipino-wav2vec2-l-xls-r-300m-official", +} + + +def load_align_model(language_code: str, device: str, model_name: Optional[str] = None, model_dir=None): + if model_name is None: + # use default model + if language_code in DEFAULT_ALIGN_MODELS_TORCH: + model_name = DEFAULT_ALIGN_MODELS_TORCH[language_code] + elif language_code in DEFAULT_ALIGN_MODELS_HF: + model_name = DEFAULT_ALIGN_MODELS_HF[language_code] + else: + print(f"There is no default alignment model set for this language ({language_code}).\ + Please find a wav2vec2.0 model finetuned on this language in https://huggingface.co/models, then pass the model name in --align_model [MODEL_NAME]") + raise ValueError(f"No default align-model for language: {language_code}") + + if model_name in torchaudio.pipelines.__all__: + pipeline_type = "torchaudio" + bundle = torchaudio.pipelines.__dict__[model_name] + align_model = bundle.get_model(dl_kwargs={"model_dir": model_dir}).to(device) + labels = bundle.get_labels() + align_dictionary = {c.lower(): i for i, c in enumerate(labels)} + else: + try: + processor = Wav2Vec2Processor.from_pretrained(model_name, cache_dir=model_dir) + align_model = Wav2Vec2ForCTC.from_pretrained(model_name, cache_dir=model_dir) + except Exception as e: + print(e) + print(f"Error loading model from huggingface, check https://huggingface.co/models for finetuned wav2vec2.0 models") + raise ValueError(f'The chosen align_model "{model_name}" could not be found in huggingface (https://huggingface.co/models) or torchaudio (https://pytorch.org/audio/stable/pipelines.html#id14)') + pipeline_type = "huggingface" + align_model = align_model.to(device) + labels = processor.tokenizer.get_vocab() + align_dictionary = {char.lower(): code for char,code in processor.tokenizer.get_vocab().items()} + + align_metadata = {"language": language_code, "dictionary": align_dictionary, "type": pipeline_type} + + return align_model, align_metadata + + +def align( + transcript: Iterable[SingleSegment], + model: torch.nn.Module, + align_model_metadata: dict, + audio: Union[str, np.ndarray, torch.Tensor], + device: str, + interpolate_method: str = "nearest", + return_char_alignments: bool = False, + print_progress: bool = False, + combined_progress: bool = False, +) -> AlignedTranscriptionResult: + """ + Align phoneme recognition predictions to known transcription. + """ + + if not torch.is_tensor(audio): + if isinstance(audio, str): + audio = load_audio(audio) + audio = torch.from_numpy(audio) + if len(audio.shape) == 1: + audio = audio.unsqueeze(0) + + MAX_DURATION = audio.shape[1] / SAMPLE_RATE + + model_dictionary = align_model_metadata["dictionary"] + model_lang = align_model_metadata["language"] + model_type = align_model_metadata["type"] + + # 1. Preprocess to keep only characters in dictionary + total_segments = len(transcript) + # Store temporary processing values + segment_data: dict[int, SegmentData] = {} + for sdx, segment in enumerate(transcript): + # strip spaces at beginning / end, but keep track of the amount. + if print_progress: + base_progress = ((sdx + 1) / total_segments) * 100 + percent_complete = (50 + base_progress / 2) if combined_progress else base_progress + print(f"Progress: {percent_complete:.2f}%...") + + num_leading = len(segment["text"]) - len(segment["text"].lstrip()) + num_trailing = len(segment["text"]) - len(segment["text"].rstrip()) + text = segment["text"] + + # split into words + if model_lang not in LANGUAGES_WITHOUT_SPACES: + per_word = text.split(" ") + else: + per_word = text + + clean_char, clean_cdx = [], [] + for cdx, char in enumerate(text): + char_ = char.lower() + # wav2vec2 models use "|" character to represent spaces + if model_lang not in LANGUAGES_WITHOUT_SPACES: + char_ = char_.replace(" ", "|") + + # ignore whitespace at beginning and end of transcript + if cdx < num_leading: + pass + elif cdx > len(text) - num_trailing - 1: + pass + elif char_ in model_dictionary.keys(): + clean_char.append(char_) + clean_cdx.append(cdx) + else: + # add placeholder + clean_char.append('*') + clean_cdx.append(cdx) + + clean_wdx = [] + for wdx, wrd in enumerate(per_word): + if any([c in model_dictionary.keys() for c in wrd.lower()]): + clean_wdx.append(wdx) + else: + # index for placeholder + clean_wdx.append(wdx) + + + punkt_param = PunktParameters() + punkt_param.abbrev_types = set(PUNKT_ABBREVIATIONS) + sentence_splitter = PunktSentenceTokenizer(punkt_param) + sentence_spans = list(sentence_splitter.span_tokenize(text)) + + segment_data[sdx] = { + "clean_char": clean_char, + "clean_cdx": clean_cdx, + "clean_wdx": clean_wdx, + "sentence_spans": sentence_spans + } + + aligned_segments: List[SingleAlignedSegment] = [] + + # 2. Get prediction matrix from alignment model & align + for sdx, segment in enumerate(transcript): + + t1 = segment["start"] + t2 = segment["end"] + text = segment["text"] + + aligned_seg: SingleAlignedSegment = { + "start": t1, + "end": t2, + "text": text, + "words": [], + "chars": None, + } + + if return_char_alignments: + aligned_seg["chars"] = [] + + # check we can align + if len(segment_data[sdx]["clean_char"]) == 0: + print(f'Failed to align segment ("{segment["text"]}"): no characters in this segment found in model dictionary, resorting to original...') + aligned_segments.append(aligned_seg) + continue + + if t1 >= MAX_DURATION: + print(f'Failed to align segment ("{segment["text"]}"): original start time longer than audio duration, skipping...') + aligned_segments.append(aligned_seg) + continue + + text_clean = "".join(segment_data[sdx]["clean_char"]) + tokens = [model_dictionary.get(c, -1) for c in text_clean] + + f1 = int(t1 * SAMPLE_RATE) + f2 = int(t2 * SAMPLE_RATE) + + # TODO: Probably can get some speedup gain with batched inference here + waveform_segment = audio[:, f1:f2] + # Handle the minimum input length for wav2vec2 models + if waveform_segment.shape[-1] < 400: + lengths = torch.as_tensor([waveform_segment.shape[-1]]).to(device) + waveform_segment = torch.nn.functional.pad( + waveform_segment, (0, 400 - waveform_segment.shape[-1]) + ) + else: + lengths = None + + with torch.inference_mode(): + if model_type == "torchaudio": + emissions, _ = model(waveform_segment.to(device), lengths=lengths) + elif model_type == "huggingface": + emissions = model(waveform_segment.to(device)).logits + else: + raise NotImplementedError(f"Align model of type {model_type} not supported.") + emissions = torch.log_softmax(emissions, dim=-1) + + emission = emissions[0].cpu().detach() + + blank_id = 0 + for char, code in model_dictionary.items(): + if char == '[pad]' or char == '': + blank_id = code + + trellis = get_trellis(emission, tokens, blank_id) + # path = backtrack(trellis, emission, tokens, blank_id) + path = backtrack_beam(trellis, emission, tokens, blank_id, beam_width=2) + + if path is None: + print(f'Failed to align segment ("{segment["text"]}"): backtrack failed, resorting to original...') + aligned_segments.append(aligned_seg) + continue + + char_segments = merge_repeats(path, text_clean) + + duration = t2 - t1 + ratio = duration * waveform_segment.size(0) / (trellis.size(0) - 1) + + # assign timestamps to aligned characters + char_segments_arr = [] + word_idx = 0 + for cdx, char in enumerate(text): + start, end, score = None, None, None + if cdx in segment_data[sdx]["clean_cdx"]: + char_seg = char_segments[segment_data[sdx]["clean_cdx"].index(cdx)] + start = round(char_seg.start * ratio + t1, 3) + end = round(char_seg.end * ratio + t1, 3) + score = round(char_seg.score, 3) + + char_segments_arr.append( + { + "char": char, + "start": start, + "end": end, + "score": score, + "word-idx": word_idx, + } + ) + + # increment word_idx, nltk word tokenization would probably be more robust here, but us space for now... + if model_lang in LANGUAGES_WITHOUT_SPACES: + word_idx += 1 + elif cdx == len(text) - 1 or text[cdx+1] == " ": + word_idx += 1 + + char_segments_arr = pd.DataFrame(char_segments_arr) + + aligned_subsegments = [] + # assign sentence_idx to each character index + char_segments_arr["sentence-idx"] = None + for sdx2, (sstart, send) in enumerate(segment_data[sdx]["sentence_spans"]): + curr_chars = char_segments_arr.loc[(char_segments_arr.index >= sstart) & (char_segments_arr.index <= send)] + char_segments_arr.loc[(char_segments_arr.index >= sstart) & (char_segments_arr.index <= send), "sentence-idx"] = sdx2 + + sentence_text = text[sstart:send] + sentence_start = curr_chars["start"].min() + end_chars = curr_chars[curr_chars["char"] != ' '] + sentence_end = end_chars["end"].max() + sentence_words = [] + + for word_idx in curr_chars["word-idx"].unique(): + word_chars = curr_chars.loc[curr_chars["word-idx"] == word_idx] + word_text = "".join(word_chars["char"].tolist()).strip() + if len(word_text) == 0: + continue + + # dont use space character for alignment + word_chars = word_chars[word_chars["char"] != " "] + + word_start = word_chars["start"].min() + word_end = word_chars["end"].max() + word_score = round(word_chars["score"].mean(), 3) + + # -1 indicates unalignable + word_segment = {"word": word_text} + + if not np.isnan(word_start): + word_segment["start"] = word_start + if not np.isnan(word_end): + word_segment["end"] = word_end + if not np.isnan(word_score): + word_segment["score"] = word_score + + sentence_words.append(word_segment) + + aligned_subsegments.append({ + "text": sentence_text, + "start": sentence_start, + "end": sentence_end, + "words": sentence_words, + }) + + if return_char_alignments: + curr_chars = curr_chars[["char", "start", "end", "score"]] + curr_chars.fillna(-1, inplace=True) + curr_chars = curr_chars.to_dict("records") + curr_chars = [{key: val for key, val in char.items() if val != -1} for char in curr_chars] + aligned_subsegments[-1]["chars"] = curr_chars + + aligned_subsegments = pd.DataFrame(aligned_subsegments) + aligned_subsegments["start"] = interpolate_nans(aligned_subsegments["start"], method=interpolate_method) + aligned_subsegments["end"] = interpolate_nans(aligned_subsegments["end"], method=interpolate_method) + # concatenate sentences with same timestamps + agg_dict = {"text": " ".join, "words": "sum"} + if model_lang in LANGUAGES_WITHOUT_SPACES: + agg_dict["text"] = "".join + if return_char_alignments: + agg_dict["chars"] = "sum" + aligned_subsegments= aligned_subsegments.groupby(["start", "end"], as_index=False).agg(agg_dict) + aligned_subsegments = aligned_subsegments.to_dict('records') + aligned_segments += aligned_subsegments + + # create word_segments list + word_segments: List[SingleWordSegment] = [] + for segment in aligned_segments: + word_segments += segment["words"] + + return {"segments": aligned_segments, "word_segments": word_segments} + +""" +source: https://pytorch.org/tutorials/intermediate/forced_alignment_with_torchaudio_tutorial.html +""" + + +def get_trellis(emission, tokens, blank_id=0): + num_frame = emission.size(0) + num_tokens = len(tokens) + + trellis = torch.zeros((num_frame, num_tokens)) + trellis[1:, 0] = torch.cumsum(emission[1:, blank_id], 0) + trellis[0, 1:] = -float("inf") + trellis[-num_tokens + 1:, 0] = float("inf") + + for t in range(num_frame - 1): + trellis[t + 1, 1:] = torch.maximum( + # Score for staying at the same token + trellis[t, 1:] + emission[t, blank_id], + # Score for changing to the next token + # trellis[t, :-1] + emission[t, tokens[1:]], + trellis[t, :-1] + get_wildcard_emission(emission[t], tokens[1:], blank_id), + ) + return trellis + + +def get_wildcard_emission(frame_emission, tokens, blank_id): + """Processing token emission scores containing wildcards (vectorized version) + + Args: + frame_emission: Emission probability vector for the current frame + tokens: List of token indices + blank_id: ID of the blank token + + Returns: + tensor: Maximum probability score for each token position + """ + assert 0 <= blank_id < len(frame_emission) + + # Convert tokens to a tensor if they are not already + tokens = torch.tensor(tokens) if not isinstance(tokens, torch.Tensor) else tokens + + # Create a mask to identify wildcard positions + wildcard_mask = (tokens == -1) + + # Get scores for non-wildcard positions + regular_scores = frame_emission[tokens.clamp(min=0).long()] # clamp to avoid -1 index + + # Create a mask and compute the maximum value without modifying frame_emission + max_valid_score = frame_emission.clone() # Create a copy + max_valid_score[blank_id] = float('-inf') # Modify the copy to exclude the blank token + max_valid_score = max_valid_score.max() + + # Use where operation to combine results + result = torch.where(wildcard_mask, max_valid_score, regular_scores) + + return result + + +@dataclass +class Point: + token_index: int + time_index: int + score: float + + +def backtrack(trellis, emission, tokens, blank_id=0): + t, j = trellis.size(0) - 1, trellis.size(1) - 1 + + path = [Point(j, t, emission[t, blank_id].exp().item())] + while j > 0: + # Should not happen but just in case + assert t > 0 + + # 1. Figure out if the current position was stay or change + # Frame-wise score of stay vs change + p_stay = emission[t - 1, blank_id] + # p_change = emission[t - 1, tokens[j]] + p_change = get_wildcard_emission(emission[t - 1], [tokens[j]], blank_id)[0] + + # Context-aware score for stay vs change + stayed = trellis[t - 1, j] + p_stay + changed = trellis[t - 1, j - 1] + p_change + + # Update position + t -= 1 + if changed > stayed: + j -= 1 + + # Store the path with frame-wise probability. + prob = (p_change if changed > stayed else p_stay).exp().item() + path.append(Point(j, t, prob)) + + # Now j == 0, which means, it reached the SoS. + # Fill up the rest for the sake of visualization + while t > 0: + prob = emission[t - 1, blank_id].exp().item() + path.append(Point(j, t - 1, prob)) + t -= 1 + + return path[::-1] + + + +@dataclass +class Path: + points: List[Point] + score: float + + +@dataclass +class BeamState: + """State in beam search.""" + token_index: int # Current token position + time_index: int # Current time step + score: float # Cumulative score + path: List[Point] # Path history + + +def backtrack_beam(trellis, emission, tokens, blank_id=0, beam_width=5): + """Standard CTC beam search backtracking implementation. + + Args: + trellis (torch.Tensor): The trellis (or lattice) of shape (T, N), where T is the number of time steps + and N is the number of tokens (including the blank token). + emission (torch.Tensor): The emission probabilities of shape (T, N). + tokens (List[int]): List of token indices (excluding the blank token). + blank_id (int, optional): The ID of the blank token. Defaults to 0. + beam_width (int, optional): The number of top paths to keep during beam search. Defaults to 5. + + Returns: + List[Point]: the best path + """ + T, J = trellis.size(0) - 1, trellis.size(1) - 1 + + init_state = BeamState( + token_index=J, + time_index=T, + score=trellis[T, J], + path=[Point(J, T, emission[T, blank_id].exp().item())] + ) + + beams = [init_state] + + while beams and beams[0].token_index > 0: + next_beams = [] + + for beam in beams: + t, j = beam.time_index, beam.token_index + + if t <= 0: + continue + + p_stay = emission[t - 1, blank_id] + p_change = get_wildcard_emission(emission[t - 1], [tokens[j]], blank_id)[0] + + stay_score = trellis[t - 1, j] + change_score = trellis[t - 1, j - 1] if j > 0 else float('-inf') + + # Stay + if not math.isinf(stay_score): + new_path = beam.path.copy() + new_path.append(Point(j, t - 1, p_stay.exp().item())) + next_beams.append(BeamState( + token_index=j, + time_index=t - 1, + score=stay_score, + path=new_path + )) + + # Change + if j > 0 and not math.isinf(change_score): + new_path = beam.path.copy() + new_path.append(Point(j - 1, t - 1, p_change.exp().item())) + next_beams.append(BeamState( + token_index=j - 1, + time_index=t - 1, + score=change_score, + path=new_path + )) + + # sort by score + beams = sorted(next_beams, key=lambda x: x.score, reverse=True)[:beam_width] + + if not beams: + break + + if not beams: + return None + + best_beam = beams[0] + t = best_beam.time_index + j = best_beam.token_index + while t > 0: + prob = emission[t - 1, blank_id].exp().item() + best_beam.path.append(Point(j, t - 1, prob)) + t -= 1 + + return best_beam.path[::-1] + + +# Merge the labels +@dataclass +class Segment: + label: str + start: int + end: int + score: float + + def __repr__(self): + return f"{self.label}\t({self.score:4.2f}): [{self.start:5d}, {self.end:5d})" + + @property + def length(self): + return self.end - self.start + +def merge_repeats(path, transcript): + i1, i2 = 0, 0 + segments = [] + while i1 < len(path): + while i2 < len(path) and path[i1].token_index == path[i2].token_index: + i2 += 1 + score = sum(path[k].score for k in range(i1, i2)) / (i2 - i1) + segments.append( + Segment( + transcript[path[i1].token_index], + path[i1].time_index, + path[i2 - 1].time_index + 1, + score, + ) + ) + i1 = i2 + return segments + +def merge_words(segments, separator="|"): + words = [] + i1, i2 = 0, 0 + while i1 < len(segments): + if i2 >= len(segments) or segments[i2].label == separator: + if i1 != i2: + segs = segments[i1:i2] + word = "".join([seg.label for seg in segs]) + score = sum(seg.score * seg.length for seg in segs) / sum(seg.length for seg in segs) + words.append(Segment(word, segments[i1].start, segments[i2 - 1].end, score)) + i1 = i2 + 1 + i2 = i1 + else: + i2 += 1 + return words diff --git a/transcription/whisperx/asr.py b/transcription/whisperx/asr.py new file mode 100644 index 0000000000000000000000000000000000000000..0b47127daadf9ee643f7dda4c35ad9bab498c6ad --- /dev/null +++ b/transcription/whisperx/asr.py @@ -0,0 +1,420 @@ +import os +from typing import List, Optional, Union +from dataclasses import replace + +import ctranslate2 +import faster_whisper +import numpy as np +import torch +from faster_whisper.tokenizer import Tokenizer +from faster_whisper.transcribe import TranscriptionOptions, get_ctranslate2_storage +from transformers import Pipeline +from transformers.pipelines.pt_utils import PipelineIterator + +from whisperx.audio import N_SAMPLES, SAMPLE_RATE, load_audio, log_mel_spectrogram +from whisperx.types import SingleSegment, TranscriptionResult +from whisperx.vads import Vad, Silero, Pyannote + + +def find_numeral_symbol_tokens(tokenizer): + numeral_symbol_tokens = [] + for i in range(tokenizer.eot): + token = tokenizer.decode([i]).removeprefix(" ") + has_numeral_symbol = any(c in "0123456789%$£" for c in token) + if has_numeral_symbol: + numeral_symbol_tokens.append(i) + return numeral_symbol_tokens + +class WhisperModel(faster_whisper.WhisperModel): + ''' + FasterWhisperModel provides batched inference for faster-whisper. + Currently only works in non-timestamp mode and fixed prompt for all samples in batch. + ''' + + def generate_segment_batched( + self, + features: np.ndarray, + tokenizer: Tokenizer, + options: TranscriptionOptions, + encoder_output=None, + ): + batch_size = features.shape[0] + all_tokens = [] + prompt_reset_since = 0 + if options.initial_prompt is not None: + initial_prompt = " " + options.initial_prompt.strip() + initial_prompt_tokens = tokenizer.encode(initial_prompt) + all_tokens.extend(initial_prompt_tokens) + previous_tokens = all_tokens[prompt_reset_since:] + prompt = self.get_prompt( + tokenizer, + previous_tokens, + without_timestamps=options.without_timestamps, + prefix=options.prefix, + hotwords=options.hotwords + ) + + encoder_output = self.encode(features) + + max_initial_timestamp_index = int( + round(options.max_initial_timestamp / self.time_precision) + ) + + result = self.model.generate( + encoder_output, + [prompt] * batch_size, + beam_size=options.beam_size, + patience=options.patience, + length_penalty=options.length_penalty, + max_length=self.max_length, + suppress_blank=options.suppress_blank, + suppress_tokens=options.suppress_tokens, + ) + + tokens_batch = [x.sequences_ids[0] for x in result] + + def decode_batch(tokens: List[List[int]]) -> str: + res = [] + for tk in tokens: + res.append([token for token in tk if token < tokenizer.eot]) + # text_tokens = [token for token in tokens if token < self.eot] + return tokenizer.tokenizer.decode_batch(res) + + text = decode_batch(tokens_batch) + + return text + + def encode(self, features: np.ndarray) -> ctranslate2.StorageView: + # When the model is running on multiple GPUs, the encoder output should be moved + # to the CPU since we don't know which GPU will handle the next job. + to_cpu = self.model.device == "cuda" and len(self.model.device_index) > 1 + # unsqueeze if batch size = 1 + if len(features.shape) == 2: + features = np.expand_dims(features, 0) + features = get_ctranslate2_storage(features) + + return self.model.encode(features, to_cpu=to_cpu) + +class FasterWhisperPipeline(Pipeline): + """ + Huggingface Pipeline wrapper for FasterWhisperModel. + """ + # TODO: + # - add support for timestamp mode + # - add support for custom inference kwargs + + def __init__( + self, + model: WhisperModel, + vad, + vad_params: dict, + options: TranscriptionOptions, + tokenizer: Optional[Tokenizer] = None, + device: Union[int, str, "torch.device"] = -1, + framework="pt", + language: Optional[str] = None, + suppress_numerals: bool = False, + **kwargs, + ): + self.model = model + self.tokenizer = tokenizer + self.options = options + self.preset_language = language + self.suppress_numerals = suppress_numerals + self._batch_size = kwargs.pop("batch_size", None) + self._num_workers = 1 + self._preprocess_params, self._forward_params, self._postprocess_params = self._sanitize_parameters(**kwargs) + self.call_count = 0 + self.framework = framework + if self.framework == "pt": + if isinstance(device, torch.device): + self.device = device + elif isinstance(device, str): + self.device = torch.device(device) + elif device < 0: + self.device = torch.device("cpu") + else: + self.device = torch.device(f"cuda:{device}") + else: + self.device = device + + super(Pipeline, self).__init__() + self.vad_model = vad + self._vad_params = vad_params + + def _sanitize_parameters(self, **kwargs): + preprocess_kwargs = {} + if "tokenizer" in kwargs: + preprocess_kwargs["maybe_arg"] = kwargs["maybe_arg"] + return preprocess_kwargs, {}, {} + + def preprocess(self, audio): + audio = audio['inputs'] + model_n_mels = self.model.feat_kwargs.get("feature_size") + features = log_mel_spectrogram( + audio, + n_mels=model_n_mels if model_n_mels is not None else 80, + padding=N_SAMPLES - audio.shape[0], + ) + return {'inputs': features} + + def _forward(self, model_inputs): + outputs = self.model.generate_segment_batched(model_inputs['inputs'], self.tokenizer, self.options) + return {'text': outputs} + + def postprocess(self, model_outputs): + return model_outputs + + def get_iterator( + self, + inputs, + num_workers: int, + batch_size: int, + preprocess_params: dict, + forward_params: dict, + postprocess_params: dict, + ): + dataset = PipelineIterator(inputs, self.preprocess, preprocess_params) + if "TOKENIZERS_PARALLELISM" not in os.environ: + os.environ["TOKENIZERS_PARALLELISM"] = "false" + # TODO hack by collating feature_extractor and image_processor + + def stack(items): + return {'inputs': torch.stack([x['inputs'] for x in items])} + dataloader = torch.utils.data.DataLoader(dataset, num_workers=num_workers, batch_size=batch_size, collate_fn=stack) + model_iterator = PipelineIterator(dataloader, self.forward, forward_params, loader_batch_size=batch_size) + final_iterator = PipelineIterator(model_iterator, self.postprocess, postprocess_params) + return final_iterator + + def transcribe( + self, + audio: Union[str, np.ndarray], + batch_size: Optional[int] = None, + num_workers=0, + language: Optional[str] = None, + task: Optional[str] = None, + chunk_size=30, + print_progress=False, + combined_progress=False, + verbose=False, + ) -> TranscriptionResult: + if isinstance(audio, str): + audio = load_audio(audio) + + def data(audio, segments): + for seg in segments: + f1 = int(seg['start'] * SAMPLE_RATE) + f2 = int(seg['end'] * SAMPLE_RATE) + # print(f2-f1) + yield {'inputs': audio[f1:f2]} + + # Pre-process audio and merge chunks as defined by the respective VAD child class + # In case vad_model is manually assigned (see 'load_model') follow the functionality of pyannote toolkit + if issubclass(type(self.vad_model), Vad): + waveform = self.vad_model.preprocess_audio(audio) + merge_chunks = self.vad_model.merge_chunks + else: + waveform = Pyannote.preprocess_audio(audio) + merge_chunks = Pyannote.merge_chunks + + vad_segments = self.vad_model({"waveform": waveform, "sample_rate": SAMPLE_RATE}) + vad_segments = merge_chunks( + vad_segments, + chunk_size, + onset=self._vad_params["vad_onset"], + offset=self._vad_params["vad_offset"], + ) + if self.tokenizer is None: + language = language or self.detect_language(audio) + task = task or "transcribe" + self.tokenizer = Tokenizer( + self.model.hf_tokenizer, + self.model.model.is_multilingual, + task=task, + language=language, + ) + else: + language = language or self.tokenizer.language_code + task = task or self.tokenizer.task + if task != self.tokenizer.task or language != self.tokenizer.language_code: + self.tokenizer = Tokenizer( + self.model.hf_tokenizer, + self.model.model.is_multilingual, + task=task, + language=language, + ) + + if self.suppress_numerals: + previous_suppress_tokens = self.options.suppress_tokens + numeral_symbol_tokens = find_numeral_symbol_tokens(self.tokenizer) + print(f"Suppressing numeral and symbol tokens") + new_suppressed_tokens = numeral_symbol_tokens + self.options.suppress_tokens + new_suppressed_tokens = list(set(new_suppressed_tokens)) + self.options = replace(self.options, suppress_tokens=new_suppressed_tokens) + + segments: List[SingleSegment] = [] + batch_size = batch_size or self._batch_size + total_segments = len(vad_segments) + for idx, out in enumerate(self.__call__(data(audio, vad_segments), batch_size=batch_size, num_workers=num_workers)): + if print_progress: + base_progress = ((idx + 1) / total_segments) * 100 + percent_complete = base_progress / 2 if combined_progress else base_progress + print(f"Progress: {percent_complete:.2f}%...") + text = out['text'] + if batch_size in [0, 1, None]: + text = text[0] + if verbose: + print(f"Transcript: [{round(vad_segments[idx]['start'], 3)} --> {round(vad_segments[idx]['end'], 3)}] {text}") + segments.append( + { + "text": text, + "start": round(vad_segments[idx]['start'], 3), + "end": round(vad_segments[idx]['end'], 3) + } + ) + + # revert the tokenizer if multilingual inference is enabled + if self.preset_language is None: + self.tokenizer = None + + # revert suppressed tokens if suppress_numerals is enabled + if self.suppress_numerals: + self.options = replace(self.options, suppress_tokens=previous_suppress_tokens) + + return {"segments": segments, "language": language} + + def detect_language(self, audio: np.ndarray) -> str: + if audio.shape[0] < N_SAMPLES: + print("Warning: audio is shorter than 30s, language detection may be inaccurate.") + model_n_mels = self.model.feat_kwargs.get("feature_size") + segment = log_mel_spectrogram(audio[: N_SAMPLES], + n_mels=model_n_mels if model_n_mels is not None else 80, + padding=0 if audio.shape[0] >= N_SAMPLES else N_SAMPLES - audio.shape[0]) + encoder_output = self.model.encode(segment) + results = self.model.model.detect_language(encoder_output) + language_token, language_probability = results[0][0] + language = language_token[2:-2] + print(f"Detected language: {language} ({language_probability:.2f}) in first 30s of audio...") + return language + + +def load_model( + whisper_arch: str, + device: str, + device_index=0, + compute_type="float16", + asr_options: Optional[dict] = None, + language: Optional[str] = None, + vad_model: Optional[Vad]= None, + vad_method: Optional[str] = "pyannote", + vad_options: Optional[dict] = None, + model: Optional[WhisperModel] = None, + task="transcribe", + download_root: Optional[str] = None, + local_files_only=False, + threads=4, +) -> FasterWhisperPipeline: + """Load a Whisper model for inference. + Args: + whisper_arch - The name of the Whisper model to load. + device - The device to load the model on. + compute_type - The compute type to use for the model. + vad_method - The vad method to use. vad_model has higher priority if is not None. + options - A dictionary of options to use for the model. + language - The language of the model. (use English for now) + model - The WhisperModel instance to use. + download_root - The root directory to download the model to. + local_files_only - If `True`, avoid downloading the file and return the path to the local cached file if it exists. + threads - The number of cpu threads to use per worker, e.g. will be multiplied by num workers. + Returns: + A Whisper pipeline. + """ + + if whisper_arch.endswith(".en"): + language = "en" + + model = model or WhisperModel(whisper_arch, + device=device, + device_index=device_index, + compute_type=compute_type, + download_root=download_root, + local_files_only=local_files_only, + cpu_threads=threads) + if language is not None: + tokenizer = Tokenizer(model.hf_tokenizer, model.model.is_multilingual, task=task, language=language) + else: + print("No language specified, language will be first be detected for each audio file (increases inference time).") + tokenizer = None + + default_asr_options = { + "beam_size": 5, + "best_of": 5, + "patience": 1, + "length_penalty": 1, + "repetition_penalty": 1, + "no_repeat_ngram_size": 0, + "temperatures": [0.0, 0.2, 0.4, 0.6, 0.8, 1.0], + "compression_ratio_threshold": 2.4, + "log_prob_threshold": -1.0, + "no_speech_threshold": 0.6, + "condition_on_previous_text": False, + "prompt_reset_on_temperature": 0.5, + "initial_prompt": None, + "prefix": None, + "suppress_blank": True, + "suppress_tokens": [-1], + "without_timestamps": True, + "max_initial_timestamp": 0.0, + "word_timestamps": False, + "prepend_punctuations": "\"'“¿([{-", + "append_punctuations": "\"'.。,,!!??::”)]}、", + "multilingual": model.model.is_multilingual, + "suppress_numerals": False, + "max_new_tokens": None, + "clip_timestamps": None, + "hallucination_silence_threshold": None, + "hotwords": None, + } + + if asr_options is not None: + default_asr_options.update(asr_options) + + suppress_numerals = default_asr_options["suppress_numerals"] + del default_asr_options["suppress_numerals"] + + default_asr_options = TranscriptionOptions(**default_asr_options) + + default_vad_options = { + "chunk_size": 30, # needed by silero since binarization happens before merge_chunks + "vad_onset": 0.500, + "vad_offset": 0.363 + } + + if vad_options is not None: + default_vad_options.update(vad_options) + + # Note: manually assigned vad_model has higher priority than vad_method! + if vad_model is not None: + print("Use manually assigned vad_model. vad_method is ignored.") + vad_model = vad_model + else: + if vad_method == "silero": + vad_model = Silero(**default_vad_options) + elif vad_method == "pyannote": + if device == 'cuda': + device_vad = f'cuda:{device_index}' + else: + device_vad = device + vad_model = Pyannote(torch.device(device_vad), use_auth_token=None, **default_vad_options) + else: + raise ValueError(f"Invalid vad_method: {vad_method}") + + return FasterWhisperPipeline( + model=model, + vad=vad_model, + options=default_asr_options, + tokenizer=tokenizer, + language=language, + suppress_numerals=suppress_numerals, + vad_params=default_vad_options, + ) diff --git a/transcription/whisperx/assets/mel_filters.npz b/transcription/whisperx/assets/mel_filters.npz new file mode 100644 index 0000000000000000000000000000000000000000..cc5204d86199d18f715b92afa2c2b644f176c56c --- /dev/null +++ b/transcription/whisperx/assets/mel_filters.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7450ae70723a5ef9d341e3cee628c7cb0177f36ce42c44b7ed2bf3325f0f6d4c +size 4271 diff --git a/transcription/whisperx/audio.py b/transcription/whisperx/audio.py new file mode 100644 index 0000000000000000000000000000000000000000..42f97b882b161fb0c7a5c10dc088c89d2c7bcd8f --- /dev/null +++ b/transcription/whisperx/audio.py @@ -0,0 +1,159 @@ +import os +import subprocess +from functools import lru_cache +from typing import Optional, Union + +import numpy as np +import torch +import torch.nn.functional as F + +from .utils import exact_div + +# hard-coded audio hyperparameters +SAMPLE_RATE = 16000 +N_FFT = 400 +HOP_LENGTH = 160 +CHUNK_LENGTH = 30 +N_SAMPLES = CHUNK_LENGTH * SAMPLE_RATE # 480000 samples in a 30-second chunk +N_FRAMES = exact_div(N_SAMPLES, HOP_LENGTH) # 3000 frames in a mel spectrogram input + +N_SAMPLES_PER_TOKEN = HOP_LENGTH * 2 # the initial convolutions has stride 2 +FRAMES_PER_SECOND = exact_div(SAMPLE_RATE, HOP_LENGTH) # 10ms per audio frame +TOKENS_PER_SECOND = exact_div(SAMPLE_RATE, N_SAMPLES_PER_TOKEN) # 20ms per audio token + + +def load_audio(file: str, sr: int = SAMPLE_RATE) -> np.ndarray: + """ + Open an audio file and read as mono waveform, resampling as necessary + + Parameters + ---------- + file: str + The audio file to open + + sr: int + The sample rate to resample the audio if necessary + + Returns + ------- + A NumPy array containing the audio waveform, in float32 dtype. + """ + try: + # Launches a subprocess to decode audio while down-mixing and resampling as necessary. + # Requires the ffmpeg CLI to be installed. + cmd = [ + "ffmpeg", + "-nostdin", + "-threads", + "0", + "-i", + file, + "-f", + "s16le", + "-ac", + "1", + "-acodec", + "pcm_s16le", + "-ar", + str(sr), + "-", + ] + out = subprocess.run(cmd, capture_output=True, check=True).stdout + except subprocess.CalledProcessError as e: + raise RuntimeError(f"Failed to load audio: {e.stderr.decode()}") from e + + return np.frombuffer(out, np.int16).flatten().astype(np.float32) / 32768.0 + + +def pad_or_trim(array, length: int = N_SAMPLES, *, axis: int = -1): + """ + Pad or trim the audio array to N_SAMPLES, as expected by the encoder. + """ + if torch.is_tensor(array): + if array.shape[axis] > length: + array = array.index_select( + dim=axis, index=torch.arange(length, device=array.device) + ) + + if array.shape[axis] < length: + pad_widths = [(0, 0)] * array.ndim + pad_widths[axis] = (0, length - array.shape[axis]) + array = F.pad(array, [pad for sizes in pad_widths[::-1] for pad in sizes]) + else: + if array.shape[axis] > length: + array = array.take(indices=range(length), axis=axis) + + if array.shape[axis] < length: + pad_widths = [(0, 0)] * array.ndim + pad_widths[axis] = (0, length - array.shape[axis]) + array = np.pad(array, pad_widths) + + return array + + +@lru_cache(maxsize=None) +def mel_filters(device, n_mels: int) -> torch.Tensor: + """ + load the mel filterbank matrix for projecting STFT into a Mel spectrogram. + Allows decoupling librosa dependency; saved using: + + np.savez_compressed( + "mel_filters.npz", + mel_80=librosa.filters.mel(sr=16000, n_fft=400, n_mels=80), + ) + """ + assert n_mels in [80, 128], f"Unsupported n_mels: {n_mels}" + with np.load( + os.path.join(os.path.dirname(__file__), "assets", "mel_filters.npz") + ) as f: + return torch.from_numpy(f[f"mel_{n_mels}"]).to(device) + + +def log_mel_spectrogram( + audio: Union[str, np.ndarray, torch.Tensor], + n_mels: int, + padding: int = 0, + device: Optional[Union[str, torch.device]] = None, +): + """ + Compute the log-Mel spectrogram of + + Parameters + ---------- + audio: Union[str, np.ndarray, torch.Tensor], shape = (*) + The path to audio or either a NumPy array or Tensor containing the audio waveform in 16 kHz + + n_mels: int + The number of Mel-frequency filters, only 80 is supported + + padding: int + Number of zero samples to pad to the right + + device: Optional[Union[str, torch.device]] + If given, the audio tensor is moved to this device before STFT + + Returns + ------- + torch.Tensor, shape = (80, n_frames) + A Tensor that contains the Mel spectrogram + """ + if not torch.is_tensor(audio): + if isinstance(audio, str): + audio = load_audio(audio) + audio = torch.from_numpy(audio) + + if device is not None: + audio = audio.to(device) + if padding > 0: + audio = F.pad(audio, (0, padding)) + window = torch.hann_window(N_FFT).to(audio.device) + stft = torch.stft(audio, N_FFT, HOP_LENGTH, window=window, return_complex=True) + magnitudes = stft[..., :-1].abs() ** 2 + + filters = mel_filters(audio.device, n_mels) + mel_spec = filters @ magnitudes + + log_spec = torch.clamp(mel_spec, min=1e-10).log10() + log_spec = torch.maximum(log_spec, log_spec.max() - 8.0) + log_spec = (log_spec + 4.0) / 4.0 + return log_spec diff --git a/transcription/whisperx/conjunctions.py b/transcription/whisperx/conjunctions.py new file mode 100644 index 0000000000000000000000000000000000000000..24d63fc1fce426a919af0998bc13051b4942b9ee --- /dev/null +++ b/transcription/whisperx/conjunctions.py @@ -0,0 +1,47 @@ +# conjunctions.py + +from typing import Set + + +conjunctions_by_language = { + 'en': {'and', 'whether', 'or', 'as', 'but', 'so', 'for', 'nor', 'which', 'yet', 'although', 'since', 'unless', 'when', 'while', 'because', 'if', 'how', 'that', 'than', 'who', 'where', 'what', 'near', 'before', 'after', 'across', 'through', 'until', 'once', 'whereas', 'even', 'both', 'either', 'neither', 'though'}, + 'fr': {'et', 'ou', 'mais', 'parce', 'bien', 'pendant', 'quand', 'où', 'comme', 'si', 'que', 'avant', 'après', 'aussitôt', 'jusqu’à', 'à', 'malgré', 'donc', 'tant', 'puisque', 'ni', 'soit', 'bien', 'encore', 'dès', 'lorsque'}, + 'de': {'und', 'oder', 'aber', 'weil', 'obwohl', 'während', 'wenn', 'wo', 'wie', 'dass', 'bevor', 'nachdem', 'sobald', 'bis', 'außer', 'trotzdem', 'also', 'sowie', 'indem', 'weder', 'sowohl', 'zwar', 'jedoch'}, + 'es': {'y', 'o', 'pero', 'porque', 'aunque', 'sin', 'mientras', 'cuando', 'donde', 'como', 'si', 'que', 'antes', 'después', 'tan', 'hasta', 'a', 'a', 'por', 'ya', 'ni', 'sino'}, + 'it': {'e', 'o', 'ma', 'perché', 'anche', 'mentre', 'quando', 'dove', 'come', 'se', 'che', 'prima', 'dopo', 'appena', 'fino', 'a', 'nonostante', 'quindi', 'poiché', 'né', 'ossia', 'cioè'}, + 'ja': {'そして', 'または', 'しかし', 'なぜなら', 'もし', 'それとも', 'だから', 'それに', 'なのに', 'そのため', 'かつ', 'それゆえに', 'ならば', 'もしくは', 'ため'}, + 'zh': {'和', '或', '但是', '因为', '任何', '也', '虽然', '而且', '所以', '如果', '除非', '尽管', '既然', '即使', '只要', '直到', '然后', '因此', '不但', '而是', '不过'}, + 'nl': {'en', 'of', 'maar', 'omdat', 'hoewel', 'terwijl', 'wanneer', 'waar', 'zoals', 'als', 'dat', 'voordat', 'nadat', 'zodra', 'totdat', 'tenzij', 'ondanks', 'dus', 'zowel', 'noch', 'echter', 'toch'}, + 'uk': {'та', 'або', 'але', 'тому', 'хоча', 'поки', 'бо', 'коли', 'де', 'як', 'якщо', 'що', 'перш', 'після', 'доки', 'незважаючи', 'тому', 'ані'}, + 'pt': {'e', 'ou', 'mas', 'porque', 'embora', 'enquanto', 'quando', 'onde', 'como', 'se', 'que', 'antes', 'depois', 'assim', 'até', 'a', 'apesar', 'portanto', 'já', 'pois', 'nem', 'senão'}, + 'ar': {'و', 'أو', 'لكن', 'لأن', 'مع', 'بينما', 'عندما', 'حيث', 'كما', 'إذا', 'الذي', 'قبل', 'بعد', 'فور', 'حتى', 'إلا', 'رغم', 'لذلك', 'بما'}, + 'cs': {'a', 'nebo', 'ale', 'protože', 'ačkoli', 'zatímco', 'když', 'kde', 'jako', 'pokud', 'že', 'než', 'poté', 'jakmile', 'dokud', 'pokud ne', 'navzdory', 'tak', 'stejně', 'ani', 'tudíž'}, + 'ru': {'и', 'или', 'но', 'потому', 'хотя', 'пока', 'когда', 'где', 'как', 'если', 'что', 'перед', 'после', 'несмотря', 'таким', 'также', 'ни', 'зато'}, + 'pl': {'i', 'lub', 'ale', 'ponieważ', 'chociaż', 'podczas', 'kiedy', 'gdzie', 'jak', 'jeśli', 'że', 'zanim', 'po', 'jak tylko', 'dopóki', 'chyba', 'pomimo', 'więc', 'tak', 'ani', 'czyli'}, + 'hu': {'és', 'vagy', 'de', 'mert', 'habár', 'míg', 'amikor', 'ahol', 'ahogy', 'ha', 'hogy', 'mielőtt', 'miután', 'amint', 'amíg', 'hacsak', 'ellenére', 'tehát', 'úgy', 'sem', 'vagyis'}, + 'fi': {'ja', 'tai', 'mutta', 'koska', 'vaikka', 'kun', 'missä', 'kuten', 'jos', 'että', 'ennen', 'sen jälkeen', 'heti', 'kunnes', 'ellei', 'huolimatta', 'siis', 'sekä', 'eikä', 'vaan'}, + 'fa': {'و', 'یا', 'اما', 'چون', 'اگرچه', 'در حالی', 'وقتی', 'کجا', 'چگونه', 'اگر', 'که', 'قبل', 'پس', 'به محض', 'تا زمانی', 'مگر', 'با وجود', 'پس', 'همچنین', 'نه'}, + 'el': {'και', 'ή', 'αλλά', 'επειδή', 'αν', 'ενώ', 'όταν', 'όπου', 'όπως', 'αν', 'που', 'προτού', 'αφού', 'μόλις', 'μέχρι', 'εκτός', 'παρά', 'έτσι', 'όπως', 'ούτε', 'δηλαδή'}, + 'tr': {'ve', 'veya', 'ama', 'çünkü', 'her ne', 'iken', 'nerede', 'nasıl', 'eğer', 'ki', 'önce', 'sonra', 'hemen', 'kadar', 'rağmen', 'hem', 'ne', 'yani'}, + 'da': {'og', 'eller', 'men', 'fordi', 'selvom', 'mens', 'når', 'hvor', 'som', 'hvis', 'at', 'før', 'efter', 'indtil', 'medmindre', 'således', 'ligesom', 'hverken', 'altså'}, + 'he': {'ו', 'או', 'אבל', 'כי', 'אף', 'בזמן', 'כאשר', 'היכן', 'כיצד', 'אם', 'ש', 'לפני', 'אחרי', 'ברגע', 'עד', 'אלא', 'למרות', 'לכן', 'כמו', 'לא', 'אז'}, + 'vi': {'và', 'hoặc', 'nhưng', 'bởi', 'mặc', 'trong', 'khi', 'ở', 'như', 'nếu', 'rằng', 'trước', 'sau', 'ngay', 'cho', 'trừ', 'mặc', 'vì', 'giống', 'cũng', 'tức'}, + 'ko': {'그리고', '또는','그런데','그래도', '이나', '결국', '마지막으로', '마찬가지로', '반면에', '아니면', '거나', '또는', '그럼에도', '그렇기', '때문에', '덧붙이자면', '게다가', '그러나', '고', '그래서', '랑', '한다면', '하지만', '무엇', '왜냐하면', '비록', '동안', '언제', '어디서', '어떻게', '만약', '그', '전에', '후에', '즉시', '까지', '아니라면', '불구하고', '따라서', '같은', '도'}, + 'ur': {'اور', 'یا', 'مگر', 'کیونکہ', 'اگرچہ', 'جبکہ', 'جب', 'کہاں', 'کس طرح', 'اگر', 'کہ', 'سے پہلے', 'کے بعد', 'جیسے ہی', 'تک', 'اگر نہیں تو', 'کے باوجود', 'اس لئے', 'جیسے', 'نہ'}, + 'hi': {'और', 'या', 'पर', 'तो', 'न', 'फिर', 'हालांकि', 'चूंकि', 'अगर', 'कैसे', 'वह', 'से', 'जो', 'जहां', 'क्या', 'नजदीक', 'पहले', 'बाद', 'के', 'पार', 'माध्यम', 'तक', 'एक', 'जबकि', 'यहां', 'तक', 'दोनों', 'या', 'न', 'हालांकि'} + +} + +commas_by_language = { + 'ja': '、', + 'zh': ',', + 'fa': '،', + 'ur': '،' +} + +def get_conjunctions(lang_code: str) -> Set[str]: + return conjunctions_by_language.get(lang_code, set()) + + +def get_comma(lang_code: str) -> str: + return commas_by_language.get(lang_code, ",") diff --git a/transcription/whisperx/diarize.py b/transcription/whisperx/diarize.py new file mode 100644 index 0000000000000000000000000000000000000000..3546895dc76298b785e76292d241f838f75f1393 --- /dev/null +++ b/transcription/whisperx/diarize.py @@ -0,0 +1,146 @@ +import numpy as np +import pandas as pd +from pyannote.audio import Pipeline +from typing import Optional, Union +import torch + +from .audio import load_audio, SAMPLE_RATE +from .types import TranscriptionResult, AlignedTranscriptionResult + + +class DiarizationPipeline: + def __init__( + self, + model_name=None, + use_auth_token=None, + device: Optional[Union[str, torch.device]] = "cpu", + ): + if isinstance(device, str): + device = torch.device(device) + model_config = model_name or "pyannote/speaker-diarization-3.1" + self.model = Pipeline.from_pretrained(model_config, use_auth_token=use_auth_token).to(device) + + def __call__( + self, + audio: Union[str, np.ndarray], + num_speakers: Optional[int] = None, + min_speakers: Optional[int] = None, + max_speakers: Optional[int] = None, + return_embeddings: bool = False, + ) -> Union[tuple[pd.DataFrame, Optional[dict[str, list[float]]]], pd.DataFrame]: + """ + Perform speaker diarization on audio. + + Args: + audio: Path to audio file or audio array + num_speakers: Exact number of speakers (if known) + min_speakers: Minimum number of speakers to detect + max_speakers: Maximum number of speakers to detect + return_embeddings: Whether to return speaker embeddings + + Returns: + If return_embeddings is True: + Tuple of (diarization dataframe, speaker embeddings dictionary) + Otherwise: + Just the diarization dataframe + """ + if isinstance(audio, str): + audio = load_audio(audio) + audio_data = { + 'waveform': torch.from_numpy(audio[None, :]), + 'sample_rate': SAMPLE_RATE + } + + if return_embeddings: + diarization, embeddings = self.model( + audio_data, + num_speakers=num_speakers, + min_speakers=min_speakers, + max_speakers=max_speakers, + return_embeddings=True, + ) + else: + diarization = self.model( + audio_data, + num_speakers=num_speakers, + min_speakers=min_speakers, + max_speakers=max_speakers, + ) + embeddings = None + + diarize_df = pd.DataFrame(diarization.itertracks(yield_label=True), columns=['segment', 'label', 'speaker']) + diarize_df['start'] = diarize_df['segment'].apply(lambda x: x.start) + diarize_df['end'] = diarize_df['segment'].apply(lambda x: x.end) + + if return_embeddings and embeddings is not None: + speaker_embeddings = {speaker: embeddings[s].tolist() for s, speaker in enumerate(diarization.labels())} + return diarize_df, speaker_embeddings + + # For backwards compatibility + if return_embeddings: + return diarize_df, None + else: + return diarize_df + + +def assign_word_speakers( + diarize_df: pd.DataFrame, + transcript_result: Union[AlignedTranscriptionResult, TranscriptionResult], + speaker_embeddings: Optional[dict[str, list[float]]] = None, + fill_nearest: bool = False, +) -> Union[AlignedTranscriptionResult, TranscriptionResult]: + """ + Assign speakers to words and segments in the transcript. + + Args: + diarize_df: Diarization dataframe from DiarizationPipeline + transcript_result: Transcription result to augment with speaker labels + speaker_embeddings: Optional dictionary mapping speaker IDs to embedding vectors + fill_nearest: If True, assign speakers even when there's no direct time overlap + + Returns: + Updated transcript_result with speaker assignments and optionally embeddings + """ + transcript_segments = transcript_result["segments"] + for seg in transcript_segments: + # assign speaker to segment (if any) + diarize_df['intersection'] = np.minimum(diarize_df['end'], seg['end']) - np.maximum(diarize_df['start'], seg['start']) + diarize_df['union'] = np.maximum(diarize_df['end'], seg['end']) - np.minimum(diarize_df['start'], seg['start']) + # remove no hit, otherwise we look for closest (even negative intersection...) + if not fill_nearest: + dia_tmp = diarize_df[diarize_df['intersection'] > 0] + else: + dia_tmp = diarize_df + if len(dia_tmp) > 0: + # sum over speakers + speaker = dia_tmp.groupby("speaker")["intersection"].sum().sort_values(ascending=False).index[0] + seg["speaker"] = speaker + + # assign speaker to words + if 'words' in seg: + for word in seg['words']: + if 'start' in word: + diarize_df['intersection'] = np.minimum(diarize_df['end'], word['end']) - np.maximum(diarize_df['start'], word['start']) + diarize_df['union'] = np.maximum(diarize_df['end'], word['end']) - np.minimum(diarize_df['start'], word['start']) + # remove no hit + if not fill_nearest: + dia_tmp = diarize_df[diarize_df['intersection'] > 0] + else: + dia_tmp = diarize_df + if len(dia_tmp) > 0: + # sum over speakers + speaker = dia_tmp.groupby("speaker")["intersection"].sum().sort_values(ascending=False).index[0] + word["speaker"] = speaker + + # Add speaker embeddings to the result if provided + if speaker_embeddings is not None: + transcript_result["speaker_embeddings"] = speaker_embeddings + + return transcript_result + + +class Segment: + def __init__(self, start:int, end:int, speaker:Optional[str]=None): + self.start = start + self.end = end + self.speaker = speaker diff --git a/transcription/whisperx/transcribe.py b/transcription/whisperx/transcribe.py new file mode 100644 index 0000000000000000000000000000000000000000..46a7746888faf58462e53b6c4579d4cd40edbe66 --- /dev/null +++ b/transcription/whisperx/transcribe.py @@ -0,0 +1,234 @@ +import argparse +import gc +import os +import warnings + +import numpy as np +import torch + +from whisperx.alignment import align, load_align_model +from whisperx.asr import load_model +from whisperx.audio import load_audio +from whisperx.diarize import DiarizationPipeline, assign_word_speakers +from whisperx.types import AlignedTranscriptionResult, TranscriptionResult +from whisperx.utils import LANGUAGES, TO_LANGUAGE_CODE, get_writer + + +def transcribe_task(args: dict, parser: argparse.ArgumentParser): + """Transcription task to be called from CLI. + + Args: + args: Dictionary of command-line arguments. + parser: argparse.ArgumentParser object. + """ + # fmt: off + + model_name: str = args.pop("model") + batch_size: int = args.pop("batch_size") + model_dir: str = args.pop("model_dir") + model_cache_only: bool = args.pop("model_cache_only") + output_dir: str = args.pop("output_dir") + output_format: str = args.pop("output_format") + device: str = args.pop("device") + device_index: int = args.pop("device_index") + compute_type: str = args.pop("compute_type") + verbose: bool = args.pop("verbose") + + # model_flush: bool = args.pop("model_flush") + os.makedirs(output_dir, exist_ok=True) + + align_model: str = args.pop("align_model") + interpolate_method: str = args.pop("interpolate_method") + no_align: bool = args.pop("no_align") + task: str = args.pop("task") + if task == "translate": + # translation cannot be aligned + no_align = True + + return_char_alignments: bool = args.pop("return_char_alignments") + + hf_token: str = args.pop("hf_token") + vad_method: str = args.pop("vad_method") + vad_onset: float = args.pop("vad_onset") + vad_offset: float = args.pop("vad_offset") + + chunk_size: int = args.pop("chunk_size") + + diarize: bool = args.pop("diarize") + min_speakers: int = args.pop("min_speakers") + max_speakers: int = args.pop("max_speakers") + diarize_model_name: str = args.pop("diarize_model") + print_progress: bool = args.pop("print_progress") + return_speaker_embeddings: bool = args.pop("speaker_embeddings") + + if return_speaker_embeddings and not diarize: + warnings.warn("--speaker_embeddings has no effect without --diarize") + + if args["language"] is not None: + args["language"] = args["language"].lower() + if args["language"] not in LANGUAGES: + if args["language"] in TO_LANGUAGE_CODE: + args["language"] = TO_LANGUAGE_CODE[args["language"]] + else: + raise ValueError(f"Unsupported language: {args['language']}") + + if model_name.endswith(".en") and args["language"] != "en": + if args["language"] is not None: + warnings.warn( + f"{model_name} is an English-only model but received '{args['language']}'; using English instead." + ) + args["language"] = "en" + align_language = ( + args["language"] if args["language"] is not None else "en" + ) # default to loading english if not specified + + temperature = args.pop("temperature") + if (increment := args.pop("temperature_increment_on_fallback")) is not None: + temperature = tuple(np.arange(temperature, 1.0 + 1e-6, increment)) + else: + temperature = [temperature] + + faster_whisper_threads = 4 + if (threads := args.pop("threads")) > 0: + torch.set_num_threads(threads) + faster_whisper_threads = threads + + asr_options = { + "beam_size": args.pop("beam_size"), + "patience": args.pop("patience"), + "length_penalty": args.pop("length_penalty"), + "temperatures": temperature, + "compression_ratio_threshold": args.pop("compression_ratio_threshold"), + "log_prob_threshold": args.pop("logprob_threshold"), + "no_speech_threshold": args.pop("no_speech_threshold"), + "condition_on_previous_text": False, + "initial_prompt": args.pop("initial_prompt"), + "suppress_tokens": [int(x) for x in args.pop("suppress_tokens").split(",")], + "suppress_numerals": args.pop("suppress_numerals"), + } + + writer = get_writer(output_format, output_dir) + word_options = ["highlight_words", "max_line_count", "max_line_width"] + if no_align: + for option in word_options: + if args[option]: + parser.error(f"--{option} not possible with --no_align") + if args["max_line_count"] and not args["max_line_width"]: + warnings.warn("--max_line_count has no effect without --max_line_width") + writer_args = {arg: args.pop(arg) for arg in word_options} + + # Part 1: VAD & ASR Loop + results = [] + tmp_results = [] + # model = load_model(model_name, device=device, download_root=model_dir) + model = load_model( + model_name, + device=device, + device_index=device_index, + download_root=model_dir, + compute_type=compute_type, + language=args["language"], + asr_options=asr_options, + vad_method=vad_method, + vad_options={ + "chunk_size": chunk_size, + "vad_onset": vad_onset, + "vad_offset": vad_offset, + }, + task=task, + local_files_only=model_cache_only, + threads=faster_whisper_threads, + ) + + for audio_path in args.pop("audio"): + audio = load_audio(audio_path) + # >> VAD & ASR + print(">>Performing transcription...") + result: TranscriptionResult = model.transcribe( + audio, + batch_size=batch_size, + chunk_size=chunk_size, + print_progress=print_progress, + verbose=verbose, + ) + results.append((result, audio_path)) + + # Unload Whisper and VAD + del model + gc.collect() + torch.cuda.empty_cache() + + # Part 2: Align Loop + if not no_align: + tmp_results = results + results = [] + align_model, align_metadata = load_align_model( + align_language, device, model_name=align_model + ) + for result, audio_path in tmp_results: + # >> Align + if len(tmp_results) > 1: + input_audio = audio_path + else: + # lazily load audio from part 1 + input_audio = audio + + if align_model is not None and len(result["segments"]) > 0: + if result.get("language", "en") != align_metadata["language"]: + # load new language + print( + f"New language found ({result['language']})! Previous was ({align_metadata['language']}), loading new alignment model for new language..." + ) + align_model, align_metadata = load_align_model( + result["language"], device + ) + print(">>Performing alignment...") + result: AlignedTranscriptionResult = align( + result["segments"], + align_model, + align_metadata, + input_audio, + device, + interpolate_method=interpolate_method, + return_char_alignments=return_char_alignments, + print_progress=print_progress, + ) + + results.append((result, audio_path)) + + # Unload align model + del align_model + gc.collect() + torch.cuda.empty_cache() + + # >> Diarize + if diarize: + if hf_token is None: + print( + "Warning, no --hf_token used, needs to be saved in environment variable, otherwise will throw error loading diarization model..." + ) + tmp_results = results + print(">>Performing diarization...") + print(">>Using model:", diarize_model_name) + results = [] + diarize_model = DiarizationPipeline(model_name=diarize_model_name, use_auth_token=hf_token, device=device) + for result, input_audio_path in tmp_results: + diarize_result = diarize_model( + input_audio_path, + min_speakers=min_speakers, + max_speakers=max_speakers, + return_embeddings=return_speaker_embeddings + ) + + if return_speaker_embeddings: + diarize_segments, speaker_embeddings = diarize_result + else: + diarize_segments = diarize_result + speaker_embeddings = None + + result = assign_word_speakers(diarize_segments, result, speaker_embeddings) + results.append((result, input_audio_path)) + # >> Write + for result, audio_path in results: + result["language"] = align_language + writer(result, audio_path, writer_args) diff --git a/transcription/whisperx/types.py b/transcription/whisperx/types.py new file mode 100644 index 0000000000000000000000000000000000000000..70b10a7b066073acbe69e14831523e6112215cf3 --- /dev/null +++ b/transcription/whisperx/types.py @@ -0,0 +1,69 @@ +from typing import TypedDict, Optional, List, Tuple + + +class SingleWordSegment(TypedDict): + """ + A single word of a speech. + """ + word: str + start: float + end: float + score: float + +class SingleCharSegment(TypedDict): + """ + A single char of a speech. + """ + char: str + start: float + end: float + score: float + + +class SingleSegment(TypedDict): + """ + A single segment (up to multiple sentences) of a speech. + """ + + start: float + end: float + text: str + + +class SegmentData(TypedDict): + """ + Temporary processing data used during alignment. + Contains cleaned and preprocessed data for each segment. + """ + clean_char: List[str] # Cleaned characters that exist in model dictionary + clean_cdx: List[int] # Original indices of cleaned characters + clean_wdx: List[int] # Indices of words containing valid characters + sentence_spans: List[Tuple[int, int]] # Start and end indices of sentences + + +class SingleAlignedSegment(TypedDict): + """ + A single segment (up to multiple sentences) of a speech with word alignment. + """ + + start: float + end: float + text: str + words: List[SingleWordSegment] + chars: Optional[List[SingleCharSegment]] + + +class TranscriptionResult(TypedDict): + """ + A list of segments and word segments of a speech. + """ + segments: List[SingleSegment] + language: str + + +class AlignedTranscriptionResult(TypedDict): + """ + A list of segments and word segments of a speech. + """ + segments: List[SingleAlignedSegment] + word_segments: List[SingleWordSegment] diff --git a/transcription/whisperx/utils.py b/transcription/whisperx/utils.py new file mode 100644 index 0000000000000000000000000000000000000000..dfe3cf2e9c9fcd652f3d2b239386f640460349c7 --- /dev/null +++ b/transcription/whisperx/utils.py @@ -0,0 +1,442 @@ +import json +import os +import re +import sys +import zlib +from typing import Callable, Optional, TextIO + +LANGUAGES = { + "en": "english", + "zh": "chinese", + "de": "german", + "es": "spanish", + "ru": "russian", + "ko": "korean", + "fr": "french", + "ja": "japanese", + "pt": "portuguese", + "tr": "turkish", + "pl": "polish", + "ca": "catalan", + "nl": "dutch", + "ar": "arabic", + "sv": "swedish", + "it": "italian", + "id": "indonesian", + "hi": "hindi", + "fi": "finnish", + "vi": "vietnamese", + "he": "hebrew", + "uk": "ukrainian", + "el": "greek", + "ms": "malay", + "cs": "czech", + "ro": "romanian", + "da": "danish", + "hu": "hungarian", + "ta": "tamil", + "no": "norwegian", + "th": "thai", + "ur": "urdu", + "hr": "croatian", + "bg": "bulgarian", + "lt": "lithuanian", + "la": "latin", + "mi": "maori", + "ml": "malayalam", + "cy": "welsh", + "sk": "slovak", + "te": "telugu", + "fa": "persian", + "lv": "latvian", + "bn": "bengali", + "sr": "serbian", + "az": "azerbaijani", + "sl": "slovenian", + "kn": "kannada", + "et": "estonian", + "mk": "macedonian", + "br": "breton", + "eu": "basque", + "is": "icelandic", + "hy": "armenian", + "ne": "nepali", + "mn": "mongolian", + "bs": "bosnian", + "kk": "kazakh", + "sq": "albanian", + "sw": "swahili", + "gl": "galician", + "mr": "marathi", + "pa": "punjabi", + "si": "sinhala", + "km": "khmer", + "sn": "shona", + "yo": "yoruba", + "so": "somali", + "af": "afrikaans", + "oc": "occitan", + "ka": "georgian", + "be": "belarusian", + "tg": "tajik", + "sd": "sindhi", + "gu": "gujarati", + "am": "amharic", + "yi": "yiddish", + "lo": "lao", + "uz": "uzbek", + "fo": "faroese", + "ht": "haitian creole", + "ps": "pashto", + "tk": "turkmen", + "nn": "nynorsk", + "mt": "maltese", + "sa": "sanskrit", + "lb": "luxembourgish", + "my": "myanmar", + "bo": "tibetan", + "tl": "tagalog", + "mg": "malagasy", + "as": "assamese", + "tt": "tatar", + "haw": "hawaiian", + "ln": "lingala", + "ha": "hausa", + "ba": "bashkir", + "jw": "javanese", + "su": "sundanese", + "yue": "cantonese", +} + +# language code lookup by name, with a few language aliases +TO_LANGUAGE_CODE = { + **{language: code for code, language in LANGUAGES.items()}, + "burmese": "my", + "valencian": "ca", + "flemish": "nl", + "haitian": "ht", + "letzeburgesch": "lb", + "pushto": "ps", + "panjabi": "pa", + "moldavian": "ro", + "moldovan": "ro", + "sinhalese": "si", + "castilian": "es", +} + +LANGUAGES_WITHOUT_SPACES = ["ja", "zh"] + +system_encoding = sys.getdefaultencoding() + +if system_encoding != "utf-8": + + def make_safe(string): + # replaces any character not representable using the system default encoding with an '?', + # avoiding UnicodeEncodeError (https://github.com/openai/whisper/discussions/729). + return string.encode(system_encoding, errors="replace").decode(system_encoding) + +else: + + def make_safe(string): + # utf-8 can encode any Unicode code point, so no need to do the round-trip encoding + return string + + +def exact_div(x, y): + assert x % y == 0 + return x // y + + +def str2bool(string): + str2val = {"True": True, "False": False} + if string in str2val: + return str2val[string] + else: + raise ValueError(f"Expected one of {set(str2val.keys())}, got {string}") + + +def optional_int(string): + return None if string == "None" else int(string) + + +def optional_float(string): + return None if string == "None" else float(string) + + +def compression_ratio(text) -> float: + text_bytes = text.encode("utf-8") + return len(text_bytes) / len(zlib.compress(text_bytes)) + + +def format_timestamp( + seconds: float, always_include_hours: bool = False, decimal_marker: str = "." +): + assert seconds >= 0, "non-negative timestamp expected" + milliseconds = round(seconds * 1000.0) + + hours = milliseconds // 3_600_000 + milliseconds -= hours * 3_600_000 + + minutes = milliseconds // 60_000 + milliseconds -= minutes * 60_000 + + seconds = milliseconds // 1_000 + milliseconds -= seconds * 1_000 + + hours_marker = f"{hours:02d}:" if always_include_hours or hours > 0 else "" + return ( + f"{hours_marker}{minutes:02d}:{seconds:02d}{decimal_marker}{milliseconds:03d}" + ) + + +class ResultWriter: + extension: str + + def __init__(self, output_dir: str): + self.output_dir = output_dir + + def __call__(self, result: dict, audio_path: str, options: dict): + audio_basename = os.path.basename(audio_path) + audio_basename = os.path.splitext(audio_basename)[0] + output_path = os.path.join( + self.output_dir, audio_basename + "." + self.extension + ) + + with open(output_path, "w", encoding="utf-8") as f: + self.write_result(result, file=f, options=options) + + def write_result(self, result: dict, file: TextIO, options: dict): + raise NotImplementedError + + +class WriteTXT(ResultWriter): + extension: str = "txt" + + def write_result(self, result: dict, file: TextIO, options: dict): + for segment in result["segments"]: + speaker = segment.get("speaker") + text = segment["text"].strip() + if speaker is not None: + print(f"[{speaker}]: {text}", file=file, flush=True) + else: + print(text, file=file, flush=True) + + +class SubtitlesWriter(ResultWriter): + always_include_hours: bool + decimal_marker: str + + def iterate_result(self, result: dict, options: dict): + raw_max_line_width: Optional[int] = options["max_line_width"] + max_line_count: Optional[int] = options["max_line_count"] + highlight_words: bool = options["highlight_words"] + max_line_width = 1000 if raw_max_line_width is None else raw_max_line_width + preserve_segments = max_line_count is None or raw_max_line_width is None + + if len(result["segments"]) == 0: + return + + def iterate_subtitles(): + line_len = 0 + line_count = 1 + # the next subtitle to yield (a list of word timings with whitespace) + subtitle: list[dict] = [] + times: list[tuple] = [] + last = result["segments"][0]["start"] + for segment in result["segments"]: + for i, original_timing in enumerate(segment["words"]): + timing = original_timing.copy() + long_pause = not preserve_segments + if "start" in timing: + long_pause = long_pause and timing["start"] - last > 3.0 + else: + long_pause = False + has_room = line_len + len(timing["word"]) <= max_line_width + seg_break = i == 0 and len(subtitle) > 0 and preserve_segments + if line_len > 0 and has_room and not long_pause and not seg_break: + # line continuation + line_len += len(timing["word"]) + else: + # new line + timing["word"] = timing["word"].strip() + if ( + len(subtitle) > 0 + and max_line_count is not None + and (long_pause or line_count >= max_line_count) + or seg_break + ): + # subtitle break + yield subtitle, times + subtitle = [] + times = [] + line_count = 1 + elif line_len > 0: + # line break + line_count += 1 + timing["word"] = "\n" + timing["word"] + line_len = len(timing["word"].strip()) + subtitle.append(timing) + times.append((segment["start"], segment["end"], segment.get("speaker"))) + if "start" in timing: + last = timing["start"] + if len(subtitle) > 0: + yield subtitle, times + + if "words" in result["segments"][0]: + for subtitle, _ in iterate_subtitles(): + sstart, ssend, speaker = _[0] + subtitle_start = self.format_timestamp(sstart) + subtitle_end = self.format_timestamp(ssend) + if result["language"] in LANGUAGES_WITHOUT_SPACES: + subtitle_text = "".join([word["word"] for word in subtitle]) + else: + subtitle_text = " ".join([word["word"] for word in subtitle]) + has_timing = any(["start" in word for word in subtitle]) + + # add [$SPEAKER_ID]: to each subtitle if speaker is available + prefix = "" + if speaker is not None: + prefix = f"[{speaker}]: " + + if highlight_words and has_timing: + last = subtitle_start + all_words = [timing["word"] for timing in subtitle] + for i, this_word in enumerate(subtitle): + if "start" in this_word: + start = self.format_timestamp(this_word["start"]) + end = self.format_timestamp(this_word["end"]) + if last != start: + yield last, start, prefix + subtitle_text + + yield start, end, prefix + " ".join( + [ + re.sub(r"^(\s*)(.*)$", r"\1\2", word) + if j == i + else word + for j, word in enumerate(all_words) + ] + ) + last = end + else: + yield subtitle_start, subtitle_end, prefix + subtitle_text + else: + for segment in result["segments"]: + segment_start = self.format_timestamp(segment["start"]) + segment_end = self.format_timestamp(segment["end"]) + segment_text = segment["text"].strip().replace("-->", "->") + if "speaker" in segment: + segment_text = f"[{segment['speaker']}]: {segment_text}" + yield segment_start, segment_end, segment_text + + def format_timestamp(self, seconds: float): + return format_timestamp( + seconds=seconds, + always_include_hours=self.always_include_hours, + decimal_marker=self.decimal_marker, + ) + + +class WriteVTT(SubtitlesWriter): + extension: str = "vtt" + always_include_hours: bool = False + decimal_marker: str = "." + + def write_result(self, result: dict, file: TextIO, options: dict): + print("WEBVTT\n", file=file) + for start, end, text in self.iterate_result(result, options): + print(f"{start} --> {end}\n{text}\n", file=file, flush=True) + + +class WriteSRT(SubtitlesWriter): + extension: str = "srt" + always_include_hours: bool = True + decimal_marker: str = "," + + def write_result(self, result: dict, file: TextIO, options: dict): + for i, (start, end, text) in enumerate( + self.iterate_result(result, options), start=1 + ): + print(f"{i}\n{start} --> {end}\n{text}\n", file=file, flush=True) + + +class WriteTSV(ResultWriter): + """ + Write a transcript to a file in TSV (tab-separated values) format containing lines like: + \t\t + + Using integer milliseconds as start and end times means there's no chance of interference from + an environment setting a language encoding that causes the decimal in a floating point number + to appear as a comma; also is faster and more efficient to parse & store, e.g., in C++. + """ + + extension: str = "tsv" + + def write_result(self, result: dict, file: TextIO, options: dict): + print("start", "end", "text", sep="\t", file=file) + for segment in result["segments"]: + print(round(1000 * segment["start"]), file=file, end="\t") + print(round(1000 * segment["end"]), file=file, end="\t") + print(segment["text"].strip().replace("\t", " "), file=file, flush=True) + +class WriteAudacity(ResultWriter): + """ + Write a transcript to a text file that audacity can import as labels. + The extension used is "aud" to distinguish it from the txt file produced by WriteTXT. + Yet this is not an audacity project but only a label file! + + Please note : Audacity uses seconds in timestamps not ms! + Also there is no header expected. + + If speaker is provided it is prepended to the text between double square brackets [[]]. + """ + + extension: str = "aud" + + def write_result(self, result: dict, file: TextIO, options: dict): + ARROW = " " + for segment in result["segments"]: + print(segment["start"], file=file, end=ARROW) + print(segment["end"], file=file, end=ARROW) + print( ( ("[[" + segment["speaker"] + "]]") if "speaker" in segment else "") + segment["text"].strip().replace("\t", " "), file=file, flush=True) + + + +class WriteJSON(ResultWriter): + extension: str = "json" + + def write_result(self, result: dict, file: TextIO, options: dict): + json.dump(result, file, ensure_ascii=False) + + +def get_writer( + output_format: str, output_dir: str +) -> Callable[[dict, TextIO, dict], None]: + writers = { + "txt": WriteTXT, + "vtt": WriteVTT, + "srt": WriteSRT, + "tsv": WriteTSV, + "json": WriteJSON, + } + optional_writers = { + "aud": WriteAudacity, + } + + if output_format == "all": + all_writers = [writer(output_dir) for writer in writers.values()] + + def write_all(result: dict, file: TextIO, options: dict): + for writer in all_writers: + writer(result, file, options) + + return write_all + + if output_format in optional_writers: + return optional_writers[output_format](output_dir) + return writers[output_format](output_dir) + +def interpolate_nans(x, method='nearest'): + if x.notnull().sum() > 1: + return x.interpolate(method=method).ffill().bfill() + else: + return x.ffill().bfill() diff --git a/transcription/whisperx/vads/__init__.py b/transcription/whisperx/vads/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..b1ba6b1c46b9c507ea8ae52e1042742206be5b9f --- /dev/null +++ b/transcription/whisperx/vads/__init__.py @@ -0,0 +1,3 @@ +from .pyannote import Pyannote as Pyannote +from .silero import Silero as Silero +from .vad import Vad as Vad diff --git a/transcription/whisperx/vads/pyannote.py b/transcription/whisperx/vads/pyannote.py new file mode 100644 index 0000000000000000000000000000000000000000..fd99b4cdc5585fb97e8092d9c60f390ddb29746b --- /dev/null +++ b/transcription/whisperx/vads/pyannote.py @@ -0,0 +1,263 @@ +import os +from typing import Callable, Text, Union +from typing import Optional + +import numpy as np +import torch +from pyannote.audio import Model +from pyannote.audio.core.io import AudioFile +from pyannote.audio.pipelines import VoiceActivityDetection +from pyannote.audio.pipelines.utils import PipelineModel +from pyannote.core import Annotation, SlidingWindowFeature +from pyannote.core import Segment + +from ..diarize import Segment as SegmentX +from .vad import Vad + + +def load_vad_model(device, vad_onset=0.500, vad_offset=0.363, use_auth_token=None, model_fp=None): + model_dir = torch.hub._get_torch_home() + + main_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + + os.makedirs(model_dir, exist_ok = True) + if model_fp is None: + # Dynamically resolve the path to the model file + model_fp = os.path.join(main_dir, "assets", "pytorch_model.bin") + model_fp = os.path.abspath(model_fp) # Ensure the path is absolute + else: + model_fp = os.path.abspath(model_fp) # Ensure any provided path is absolute + + # Check if the resolved model file exists + if not os.path.exists(model_fp): + raise FileNotFoundError(f"Model file not found at {model_fp}") + + if os.path.exists(model_fp) and not os.path.isfile(model_fp): + raise RuntimeError(f"{model_fp} exists and is not a regular file") + + model_bytes = open(model_fp, "rb").read() + + vad_model = Model.from_pretrained(model_fp, use_auth_token=use_auth_token) + hyperparameters = {"onset": vad_onset, + "offset": vad_offset, + "min_duration_on": 0.1, + "min_duration_off": 0.1} + vad_pipeline = VoiceActivitySegmentation(segmentation=vad_model, device=torch.device(device)) + vad_pipeline.instantiate(hyperparameters) + + return vad_pipeline + +class Binarize: + """Binarize detection scores using hysteresis thresholding, with min-cut operation + to ensure not segments are longer than max_duration. + + Parameters + ---------- + onset : float, optional + Onset threshold. Defaults to 0.5. + offset : float, optional + Offset threshold. Defaults to `onset`. + min_duration_on : float, optional + Remove active regions shorter than that many seconds. Defaults to 0s. + min_duration_off : float, optional + Fill inactive regions shorter than that many seconds. Defaults to 0s. + pad_onset : float, optional + Extend active regions by moving their start time by that many seconds. + Defaults to 0s. + pad_offset : float, optional + Extend active regions by moving their end time by that many seconds. + Defaults to 0s. + max_duration: float + The maximum length of an active segment, divides segment at timestamp with lowest score. + Reference + --------- + Gregory Gelly and Jean-Luc Gauvain. "Minimum Word Error Training of + RNN-based Voice Activity Detection", InterSpeech 2015. + + Modified by Max Bain to include WhisperX's min-cut operation + https://arxiv.org/abs/2303.00747 + + Pyannote-audio + """ + + def __init__( + self, + onset: float = 0.5, + offset: Optional[float] = None, + min_duration_on: float = 0.0, + min_duration_off: float = 0.0, + pad_onset: float = 0.0, + pad_offset: float = 0.0, + max_duration: float = float('inf') + ): + + super().__init__() + + self.onset = onset + self.offset = offset or onset + + self.pad_onset = pad_onset + self.pad_offset = pad_offset + + self.min_duration_on = min_duration_on + self.min_duration_off = min_duration_off + + self.max_duration = max_duration + + def __call__(self, scores: SlidingWindowFeature) -> Annotation: + """Binarize detection scores + Parameters + ---------- + scores : SlidingWindowFeature + Detection scores. + Returns + ------- + active : Annotation + Binarized scores. + """ + + num_frames, num_classes = scores.data.shape + frames = scores.sliding_window + timestamps = [frames[i].middle for i in range(num_frames)] + + # annotation meant to store 'active' regions + active = Annotation() + for k, k_scores in enumerate(scores.data.T): + + label = k if scores.labels is None else scores.labels[k] + + # initial state + start = timestamps[0] + is_active = k_scores[0] > self.onset + curr_scores = [k_scores[0]] + curr_timestamps = [start] + t = start + for t, y in zip(timestamps[1:], k_scores[1:]): + # currently active + if is_active: + curr_duration = t - start + if curr_duration > self.max_duration: + search_after = len(curr_scores) // 2 + # divide segment + min_score_div_idx = search_after + np.argmin(curr_scores[search_after:]) + min_score_t = curr_timestamps[min_score_div_idx] + region = Segment(start - self.pad_onset, min_score_t + self.pad_offset) + active[region, k] = label + start = curr_timestamps[min_score_div_idx] + curr_scores = curr_scores[min_score_div_idx + 1:] + curr_timestamps = curr_timestamps[min_score_div_idx + 1:] + # switching from active to inactive + elif y < self.offset: + region = Segment(start - self.pad_onset, t + self.pad_offset) + active[region, k] = label + start = t + is_active = False + curr_scores = [] + curr_timestamps = [] + curr_scores.append(y) + curr_timestamps.append(t) + # currently inactive + else: + # switching from inactive to active + if y > self.onset: + start = t + is_active = True + + # if active at the end, add final region + if is_active: + region = Segment(start - self.pad_onset, t + self.pad_offset) + active[region, k] = label + + # because of padding, some active regions might be overlapping: merge them. + # also: fill same speaker gaps shorter than min_duration_off + if self.pad_offset > 0.0 or self.pad_onset > 0.0 or self.min_duration_off > 0.0: + if self.max_duration < float("inf"): + raise NotImplementedError(f"This would break current max_duration param") + active = active.support(collar=self.min_duration_off) + + # remove tracks shorter than min_duration_on + if self.min_duration_on > 0: + for segment, track in list(active.itertracks()): + if segment.duration < self.min_duration_on: + del active[segment, track] + + return active + + +class VoiceActivitySegmentation(VoiceActivityDetection): + def __init__( + self, + segmentation: PipelineModel = "pyannote/segmentation", + fscore: bool = False, + use_auth_token: Union[Text, None] = None, + **inference_kwargs, + ): + + super().__init__(segmentation=segmentation, fscore=fscore, use_auth_token=use_auth_token, **inference_kwargs) + + def apply(self, file: AudioFile, hook: Optional[Callable] = None) -> Annotation: + """Apply voice activity detection + + Parameters + ---------- + file : AudioFile + Processed file. + hook : callable, optional + Hook called after each major step of the pipeline with the following + signature: hook("step_name", step_artefact, file=file) + + Returns + ------- + speech : Annotation + Speech regions. + """ + + # setup hook (e.g. for debugging purposes) + hook = self.setup_hook(file, hook=hook) + + # apply segmentation model (only if needed) + # output shape is (num_chunks, num_frames, 1) + if self.training: + if self.CACHED_SEGMENTATION in file: + segmentations = file[self.CACHED_SEGMENTATION] + else: + segmentations = self._segmentation(file) + file[self.CACHED_SEGMENTATION] = segmentations + else: + segmentations: SlidingWindowFeature = self._segmentation(file) + + return segmentations + + +class Pyannote(Vad): + + def __init__(self, device, use_auth_token=None, model_fp=None, **kwargs): + print(">>Performing voice activity detection using Pyannote...") + super().__init__(kwargs['vad_onset']) + self.vad_pipeline = load_vad_model(device, use_auth_token=use_auth_token, model_fp=model_fp) + + def __call__(self, audio: AudioFile, **kwargs): + return self.vad_pipeline(audio) + + @staticmethod + def preprocess_audio(audio): + return torch.from_numpy(audio).unsqueeze(0) + + @staticmethod + def merge_chunks(segments, + chunk_size, + onset: float = 0.5, + offset: Optional[float] = None, + ): + assert chunk_size > 0 + binarize = Binarize(max_duration=chunk_size, onset=onset, offset=offset) + segments = binarize(segments) + segments_list = [] + for speech_turn in segments.get_timeline(): + segments_list.append(SegmentX(speech_turn.start, speech_turn.end, "UNKNOWN")) + + if len(segments_list) == 0: + print("No active speech found in audio") + return [] + assert segments_list, "segments_list is empty." + return Vad.merge_chunks(segments_list, chunk_size, onset, offset) diff --git a/transcription/whisperx/vads/silero.py b/transcription/whisperx/vads/silero.py new file mode 100644 index 0000000000000000000000000000000000000000..83ddbd42e0c66e9271812757ce25fb4b82cc7590 --- /dev/null +++ b/transcription/whisperx/vads/silero.py @@ -0,0 +1,66 @@ +from io import IOBase +from pathlib import Path +from typing import Mapping, Text +from typing import Optional +from typing import Union + +import torch + +from ..diarize import Segment as SegmentX +from .vad import Vad + +AudioFile = Union[Text, Path, IOBase, Mapping] + + +class Silero(Vad): + # check again default values + def __init__(self, **kwargs): + print(">>Performing voice activity detection using Silero...") + super().__init__(kwargs['vad_onset']) + + self.vad_onset = kwargs['vad_onset'] + self.chunk_size = kwargs['chunk_size'] + self.vad_pipeline, vad_utils = torch.hub.load(repo_or_dir='snakers4/silero-vad', + model='silero_vad', + force_reload=False, + onnx=False, + trust_repo=True) + (self.get_speech_timestamps, _, self.read_audio, _, _) = vad_utils + + def __call__(self, audio: AudioFile, **kwargs): + """use silero to get segments of speech""" + # Only accept 16000 Hz for now. + # Note: Silero models support both 8000 and 16000 Hz. Although other values are not directly supported, + # multiples of 16000 (e.g. 32000 or 48000) are cast to 16000 inside of the JIT model! + sample_rate = audio["sample_rate"] + if sample_rate != 16000: + raise ValueError("Only 16000Hz sample rate is allowed") + + timestamps = self.get_speech_timestamps(audio["waveform"], + model=self.vad_pipeline, + sampling_rate=sample_rate, + max_speech_duration_s=self.chunk_size, + threshold=self.vad_onset + # min_silence_duration_ms = self.min_duration_off/1000 + # min_speech_duration_ms = self.min_duration_on/1000 + # ... + # See silero documentation for full option list + ) + return [SegmentX(i['start'] / sample_rate, i['end'] / sample_rate, "UNKNOWN") for i in timestamps] + + @staticmethod + def preprocess_audio(audio): + return audio + + @staticmethod + def merge_chunks(segments_list, + chunk_size, + onset: float = 0.5, + offset: Optional[float] = None, + ): + assert chunk_size > 0 + if len(segments_list) == 0: + print("No active speech found in audio") + return [] + assert segments_list, "segments_list is empty." + return Vad.merge_chunks(segments_list, chunk_size, onset, offset) diff --git a/transcription/whisperx/vads/vad.py b/transcription/whisperx/vads/vad.py new file mode 100644 index 0000000000000000000000000000000000000000..32521328e03069071e485019e3c2a1e8450e6efb --- /dev/null +++ b/transcription/whisperx/vads/vad.py @@ -0,0 +1,54 @@ +from typing import Optional + +import pandas as pd +from pyannote.core import Annotation, Segment + + +class Vad: + def __init__(self, vad_onset): + if not (0 < vad_onset < 1): + raise ValueError( + "vad_onset is a decimal value between 0 and 1." + ) + + @staticmethod + def preprocess_audio(audio): + pass + + # keep merge_chunks as static so it can be also used by manually assigned vad_model (see 'load_model') + @staticmethod + def merge_chunks(segments, + chunk_size, + onset: float, + offset: Optional[float]): + """ + Merge operation described in paper + """ + curr_end = 0 + merged_segments = [] + seg_idxs: list[tuple]= [] + speaker_idxs: list[Optional[str]] = [] + + curr_start = segments[0].start + for seg in segments: + if seg.end - curr_start > chunk_size and curr_end - curr_start > 0: + merged_segments.append({ + "start": curr_start, + "end": curr_end, + "segments": seg_idxs, + }) + curr_start = seg.start + seg_idxs = [] + speaker_idxs = [] + curr_end = seg.end + seg_idxs.append((seg.start, seg.end)) + speaker_idxs.append(seg.speaker) + # add final + merged_segments.append({ + "start": curr_start, + "end": curr_end, + "segments": seg_idxs, + }) + + return merged_segments +